diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS index 8cae3e783679..c40c007aeceb 100644 --- a/.github/CODEOWNERS +++ b/.github/CODEOWNERS @@ -66,8 +66,9 @@ testsuite/ @uyuni-project/qe # mgr-libmod susemanager-utils/mgr-libmod/ @cbbayburt -# Generic fallback for Java +# Generic fallback for Java, apart from changelog files java/ @uyuni-project/java +java/*.changes* # Individual Java packages diff --git a/.github/workflows/acceptance_tests_secondary.yml b/.github/workflows/acceptance_tests_secondary.yml index 9bcb0d2c42b9..ad14472f39f2 100644 --- a/.github/workflows/acceptance_tests_secondary.yml +++ b/.github/workflows/acceptance_tests_secondary.yml @@ -8,6 +8,8 @@ on: - '.github/workflows/acceptance_tests_secondary.yml' - '.github/workflows/acceptance_tests_common.yml' - '!java/*.changes*' + schedule: + - cron: '0 6 * * *' jobs: test-uyuni: uses: ./.github/workflows/acceptance_tests_common.yml diff --git a/.github/workflows/acceptance_tests_secondary_parallel.yml b/.github/workflows/acceptance_tests_secondary_parallel.yml index 8bdad85b778c..ab94718a3de9 100644 --- a/.github/workflows/acceptance_tests_secondary_parallel.yml +++ b/.github/workflows/acceptance_tests_secondary_parallel.yml @@ -8,6 +8,8 @@ on: - '.github/workflows/acceptance_tests_secondary_parallel.yml' - '.github/workflows/acceptance_tests_common.yml' - '!java/*.changes*' + schedule: + - cron: '0 6 * * *' jobs: test-uyuni: uses: ./.github/workflows/acceptance_tests_common.yml diff --git a/.github/workflows/external_pr_labeler.yml b/.github/workflows/external_pr_labeler.yml new file mode 100644 index 000000000000..4d411abc23aa --- /dev/null +++ b/.github/workflows/external_pr_labeler.yml @@ -0,0 +1,31 @@ +name: External PR labeler + +on: + pull_request_target: + types: + - opened + +jobs: + label_prs: + name: Label external PRs + runs-on: ubuntu-latest + permissions: + pull-requests: write + steps: + - id: is_member + name: Check if author is an org member + env: + GH_TOKEN: ${{ secrets.ORG_READ_TOKEN }} + run: | + # The following API call returns 404 if user is not a member of the uyuni-project org + # See: https://docs.github.com/rest/orgs/members#check-organization-membership-for-a-user--status-codes + RESULT=`gh api orgs/uyuni-project/members/${{ github.actor }} -i | head -1 | awk '{ print $2 }'` + echo "result=$RESULT" >> "$GITHUB_OUTPUT" + - name: Label the PR + # If not a member of org + if: ${{ steps.is_member.outputs.result == 404 }} + uses: christianvuerings/add-labels@v1 + with: + labels: "community" + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} diff --git a/client/debian/DEBIAN-HOWTO b/client/debian/DEBIAN-HOWTO deleted file mode 100644 index ba27aaffe8bd..000000000000 --- a/client/debian/DEBIAN-HOWTO +++ /dev/null @@ -1,43 +0,0 @@ -HOW TO BUILD DEBIAN PACKAGES - -The client packages are built using debbuild. - -The following packages make up the client stack: -* apt-spacewalk (in client/debian) -* rhn-client-tools (in client/tools) -* rhnlib (in client/rhel) -* rhnsd (in client/rhel) -* rhncfg (in client/tools) -* spacewalk-usix (in usix) - -The following external packages are also part of the client stack: -* python-dmidecode (in client/debian) -* python-hwdata (in client/debian) - -Preparation steps: - -1. Install debbuild from https://github.com/ascherer/debbuild/releases - -2. Create the debbuild package build tree - -mkdir -p ~/debbuild/{SPECS,SOURCES,SDEBS,DEBS,BUILD,BUILDROOT} - -To build the non-external packages, these are the following steps: - -1. Switch to the directory of the package source (ex. for apt-spacewalk, cd client/debian/apt-spacewalk) - -2. Use tito to build tarball (tito build --tgz) - -3. Copy the tarball to ~/debbuild/SOURCES and spec to ~/debbuild/SPECS - -4. Change to ~/debbuild/SPECS and run "debbuild -ba" on the spec. (ex. for apt-spacewalk, debbuild -ba apt-spacewalk.spec) - -For external packages, the only difference is step 2, where you use spectool to fetch the tarball instead. -For example, for python-hwdata, "spectool -g python-hwdata.spec" is sufficient to get the sources. - - -How to regenerate repo: ------------------------ -cd spacewalk/debian -dpkg-scanpackages dists/spacewalk-unstable/binary-amd64 |gzip >dists/spacewalk-unstable/binary-amd64/Packages.gz -dpkg-scanpackages dists/spacewalk-unstable/binary-i386 |gzip >dists/spacewalk-unstable/binary-i386/Packages.gz diff --git a/client/debian/apt-spacewalk/50spacewalk b/client/debian/apt-spacewalk/50spacewalk deleted file mode 100644 index a80904711033..000000000000 --- a/client/debian/apt-spacewalk/50spacewalk +++ /dev/null @@ -1,15 +0,0 @@ -# -# The configuration for apt-spacewalk -# - -APT { - Update { - List-Refresh "true"; - Pre-Invoke { - "if [ -x /usr/lib/apt-spacewalk/post_invoke.py ]; then /usr/lib/apt-spacewalk/post_invoke.py; fi"; - } - } -}; -DPkg::Post-Invoke { - "/usr/lib/apt-spacewalk/post_invoke.py"; -}; diff --git a/client/debian/apt-spacewalk/Makefile.python b/client/debian/apt-spacewalk/Makefile.python deleted file mode 100644 index 86f6fbcfa101..000000000000 --- a/client/debian/apt-spacewalk/Makefile.python +++ /dev/null @@ -1,19 +0,0 @@ -THIS_MAKEFILE := $(realpath $(lastword $(MAKEFILE_LIST))) -CURRENT_DIR := $(dir $(THIS_MAKEFILE)) -include $(CURRENT_DIR)../../../rel-eng/Makefile.python - -# Docker tests variables -DOCKER_CONTAINER_BASE = systemsmanagement/uyuni/master/docker/containers/uyuni-master -DOCKER_REGISTRY = registry.opensuse.org -DOCKER_RUN_EXPORT = "PYTHONPATH=$PYTHONPATH" -DOCKER_VOLUMES = -v "$(CURDIR)/../../../:/manager" - -__pylint :: - $(call update_pip_env) - pylint --rcfile=pylintrc $(shell find -name '*.py') > reports/pylint.log || true - -docker_pylint :: - docker run --rm -e $(DOCKER_RUN_EXPORT) $(DOCKER_VOLUMES) $(DOCKER_REGISTRY)/$(DOCKER_CONTAINER_BASE)-pgsql /bin/sh -c "cd /manager/client/debian/apt-spacewalk; make -f Makefile.python __pylint" - -docker_shell :: - docker run -t -i --rm -e $(DOCKER_RUN_EXPORT) $(DOCKER_VOLUMES) $(DOCKER_REGISTRY)/$(DOCKER_CONTAINER_BASE)-pgsql /bin/bash diff --git a/client/debian/apt-spacewalk/apt-spacewalk.spec b/client/debian/apt-spacewalk/apt-spacewalk.spec deleted file mode 100644 index e2ecd961e9ed..000000000000 --- a/client/debian/apt-spacewalk/apt-spacewalk.spec +++ /dev/null @@ -1,162 +0,0 @@ -%{!?__python2:%global __python2 /usr/bin/python2} - -%if %{undefined python2_version} -%global python2_version %(%{__python2} -Esc "import sys; sys.stdout.write('{0.major}.{0.minor}'.format(sys.version_info))") -%endif - -%if %{undefined python2_sitelib} -%global python2_sitelib %(%{__python2} -c "from distutils.sysconfig import get_python_lib; print(get_python_lib())") -%endif - -Name: apt-spacewalk -Summary: Spacewalk plugin for Advanced Packaging Tool -%if %{_vendor} == "debbuild" -Packager: Uyuni Project -Group: admin -%endif -Version: 1.0.15 -Release: 1%{?dist} -License: GPLv2 -Source0: %{name}-%{version}.tar.gz -URL: https://github.com/uyuni-project/uyuni -BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) -BuildArch: noarch -BuildRequires: python - -%description -apt-spacewalk is plugin used on Debian clients -to acquire content from Spacewalk server - -%package -n apt-transport-spacewalk -Summary: APT transport for communicating with Spacewalk servers -Requires: apt -Requires: python-apt -Requires: rhn-client-tools -Requires: python-six - -Recommends: mgr-daemon - -%description -n apt-transport-spacewalk - Supplies the APT method for fetching packages from Spacewalk. - Adds transaction hooks to: - 1) Update APT's sourcelist with subscribed spacewalk channels - before updating - 2) Register the machine's installed packages with the Spacewalk - server after any dpkg invocation - -%prep -%setup -q - -%build -# Nothing to build - -%install -mkdir -p $RPM_BUILD_ROOT/%{_prefix}/lib/apt-spacewalk -cp -a *_invoke.py $RPM_BUILD_ROOT/%{_prefix}/lib/apt-spacewalk -mkdir -p $RPM_BUILD_ROOT/%{_prefix}/lib/apt/methods -cp -a spacewalk $RPM_BUILD_ROOT/%{_prefix}/lib/apt/methods -mkdir -p $RPM_BUILD_ROOT/%{_sysconfdir}/apt/apt.conf.d -cp -a 50spacewalk $RPM_BUILD_ROOT/%{_sysconfdir}/apt/apt.conf.d -mkdir -p $RPM_BUILD_ROOT/%{python2_sitelib}/rhn/actions -cp -a packages.py $RPM_BUILD_ROOT/%{python2_sitelib}/rhn/actions - -%files -n apt-transport-spacewalk -%license LICENSE -%{_prefix}/lib/apt-spacewalk/ -%{_prefix}/lib/apt/methods/spacewalk -%config(noreplace) %{_sysconfdir}/apt/apt.conf.d/50spacewalk -%{python2_sitelib}/rhn/actions/packages.py - -%if %{_vendor} == "debbuild" -%pre -n apt-transport-spacewalk -hook=/etc/apt/apt.conf.d/50spacewalk -if test -f $hook.disabled -then - mv $hook.disabled $hook -fi - -%postun -n apt-transport-spacewalk -hook=/etc/apt/apt.conf.d/50spacewalk -sourcelist=/etc/apt/sources.list.d/spacewalk.list - -case "$1" in - purge) - rm -f $hook.disabled - rm -f $sourcelist.disabled - ;; - - remove) - mv $hook $hook.disabled || : - mv $sourcelist $sourcelist.disabled || : - ;; - - abort-install) - if test "x$2" != "x" && test -f $hook - then - mv $hook $hook.disabled || : - mv $sourcelist $sourcelist.disabled || : - fi - ;; - - upgrade|failed-upgrade|abort-upgrade|disappear) - ;; - - *) - echo "postrm called with unknown argument \`$1'" >&2 - exit 1 -esac -%endif - -%changelog -* Thu Oct 25 2018 Tomas Kasparek 1.0.15-1 -- client, usix: Rework how client packaging is done for Debian/Ubuntu -- Move apt-spacewalk to the client/debian/ directory - -* Mon Jun 18 2018 Michael Mraka 1.0.14-1 -- client/debian: Port apt-spacewalk to be Python 3 ready - -* Mon Apr 16 2018 Tomas Kasparek 1.0.13-1 -- apt-transport-spacewalk: missed part of patch within pre_invoke -- further modifications on apt-transport-spacewalk -- modify apt-transport-spacewalk to support signed repos - -* Fri Feb 09 2018 Michael Mraka 1.0.12-1 -- removed BuildRoot from specfiles - -* Mon Jul 17 2017 Jan Dobes 1.0.11-1 -- Migrating Fedorahosted to GitHub - -* Tue Feb 24 2015 Matej Kollar 1.0.10-1 -- Getting rid of Tabs and trailing spaces in LICENSE, COPYING, and README files - -* Mon Sep 30 2013 Michael Mraka 1.0.9-1 -- removed trailing whitespaces - -* Thu Mar 21 2013 Jan Pazdziora 1.0.8-1 -- forward port debian bugs #703207, 700821 - -* Wed Feb 06 2013 Jan Pazdziora 1.0.7-1 -- update documentation on Debian packages - -* Sun Jun 17 2012 Miroslav Suchý 1.0.6-1 -- add copyright information to header of .py files -- ListRefresh is in APT:Update namespace - -* Sun Jun 17 2012 Miroslav Suchý 1.0.5-1 -- add LICENSE file for apt-spacewalk tar.gz -- %%defattr is not needed since rpm 4.4 - -* Thu Apr 28 2011 Simon Lukasik 1.0.4-1 -- The method can be killed by the keyboard interrupt (slukasik@redhat.com) - -* Sun Apr 17 2011 Simon Lukasik 1.0.3-1 -- Introducing actions.packages dispatcher (slukasik@redhat.com) -- Do not use rpmUtils on Debian (slukasik@redhat.com) -- Skip the extra lines sent by Apt (slukasik@redhat.com) - -* Wed Apr 13 2011 Jan Pazdziora 1.0.2-1 -- utilize config.getServerlURL() (msuchy@redhat.com) - -* Thu Mar 17 2011 Simon Lukasik 1.0.1-1 -- new package - diff --git a/client/debian/apt-spacewalk/packages.py b/client/debian/apt-spacewalk/packages.py deleted file mode 100644 index 11798f53a627..000000000000 --- a/client/debian/apt-spacewalk/packages.py +++ /dev/null @@ -1,187 +0,0 @@ -# -# actions.packages dispatcher for Debian clients -# -# Author: Simon Lukasik -# Lukas Durfina -# License: GPLv2 -# -# TODO: Be strict on architectures and package versions -# Staging content -# -# Copyright (c) 2012 Red Hat, Inc. -# -# This software is licensed to you under the GNU General Public License, -# version 2 (GPLv2). There is NO WARRANTY for this software, express or -# implied, including the implied warranties of MERCHANTABILITY or FITNESS -# FOR A PARTICULAR PURPOSE. You should have received a copy of GPLv2 -# along with this software; if not, see -# http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt. - -from __future__ import print_function - -import os -import sys -import time -import apt - -sys.path.append("/usr/share/rhn/") -from up2date_client import up2dateLog -from up2date_client import pkgUtils -from up2date_client import rhnPackageInfo - -log = up2dateLog.initLog() - -# file used to keep track of the next time rhn_check -# is allowed to update the package list on the server -LAST_UPDATE_FILE="/var/lib/up2date/dbtimestamp" - -__rhnexport__ = [ - 'update', - 'remove', - 'refresh_list', - 'fullUpdate', - 'checkNeedUpdate', - 'runTransaction', - 'verify' -] - -def remove(package_list, cache_only=None): - """We have been told that we should remove packages""" - if cache_only: - return (0, "no-ops for caching", {}) - if type(package_list) != type([]): - return (13, "Invalid arguments passed to function", {}) - log.log_debug("Called remove_packages", package_list) - - try: - cache = apt.Cache() - cache.update() - cache.open(None) - for pkg in package_list: - try: - package = cache[pkg[0]] - package.mark_delete() - except: - log.log_debug("Failed to remove package", pkg) - return (1, "remove_packages failed", {}) - cache.commit() - return (0, "remove_packages OK", {}) - except: - return (1, "remove_packages failed", {}) - -def update(package_list, cache_only=None): - """We have been told that we should retrieve/install packages""" - if type(package_list) != type([]): - return (13, "Invalid arguments passed to function", {}) - log.log_debug("Called update", package_list) - - try: - cache = apt.Cache() - cache.update() - cache.open(None) - for pkg in package_list: - try: - package = cache[pkg[0]] - if not package.is_installed: - package.mark_install() - else: - package.mark_upgrade() - except: - log.log_debug("Failed to update package", pkg) - return (1, "update failed", {}) - cache.commit() - return (0, "update OK", {}) - except: - return (1, "update failed", {}) - -def fullUpdate(force=0, cache_only=None): - """ Update all packages on the system. """ - log.log_debug("Called packages.fullUpdate") - try: - cache = apt.Cache() - cache.update() - cache.open(None) - cache.upgrade(True) - cache.commit() - except: - return (1, "packages.fullUpdate failed", {}) - return (0, "packages.fullUpdate OK", {}) - -def checkNeedUpdate(rhnsd=None, cache_only=None): - """ Check if the locally installed package list changed, if - needed the list is updated on the server - In case of error avoid pushing data to stay safe - """ - if cache_only: - return (0, "no-ops for caching", {}) - try: - last = os.stat(LAST_UPDATE_FILE)[8] - except: - last = 0 - - # Never update the package list more than once every 1/2 hour - if int(time.time()) - last <= 60: - return (0, "dpkg database not modified since last update (or package " - "list recently updated)", {}) - - if last == 0: - try: - file = open(LAST_UPDATE_FILE, "w+") - file.close() - except: - return (0, "unable to open the timestamp file", {}) - - # call the refresh_list action with a argument so we know it's - # from rhnsd - return refresh_list(rhnsd=1) - - -def refresh_list(rhnsd=None, cache_only=None): - """ push again the list of rpm packages to the server """ - if cache_only: - return (0, "no-ops for caching", {}) - log.log_debug("Called refresh_list") - - try: - rhnPackageInfo.updatePackageProfile() - except: - print("ERROR: refreshing remote package list for System Profile") - return (20, "Error refreshing package list", {}) - - touch_time_stamp() - return (0, "package list refreshed", {}) - -def touch_time_stamp(): - try: - file_d = open(LAST_UPDATE_FILE, "w+") - file_d.close() - except: - return (0, "unable to open the timestamp file", {}) - # Never update the package list more than once every hour. - t = time.time() - try: - os.utime(LAST_UPDATE_FILE, (t, t)) - except: - return (0, "unable to set the time stamp on the time stamp file %s" - % LAST_UPDATE_FILE, {}) - -def verify(packages, cache_only=None): - log.log_debug("Called packages.verify") - if cache_only: - return (0, "no-ops for caching", {}) - - data = {} - data['name'] = "packages.verify" - data['version'] = 0 - ret, missing_packages = pkgUtils.verifyPackages(packages) - - data['verify_info'] = ret - - if len(missing_packages): - data['name'] = "packages.verify.missing_packages" - data['version'] = 0 - data['missing_packages'] = missing_packages - return(43, "packages requested to be verified are missing " - "in the Apt cache", data) - - return (0, "packages verified", data) diff --git a/client/debian/apt-spacewalk/post_invoke.py b/client/debian/apt-spacewalk/post_invoke.py deleted file mode 100755 index 0cfce4d4f35e..000000000000 --- a/client/debian/apt-spacewalk/post_invoke.py +++ /dev/null @@ -1,45 +0,0 @@ -#!/usr/bin/python -# -# DPkg::Post-Invoke hook for updating Debian package profile -# -# Author: Simon Lukasik -# Date: 2011-03-14 -# License: GPLv2 -# -# Copyright (c) 1999--2012 Red Hat, Inc. -# -# This software is licensed to you under the GNU General Public License, -# version 2 (GPLv2). There is NO WARRANTY for this software, express or -# implied, including the implied warranties of MERCHANTABILITY or FITNESS -# FOR A PARTICULAR PURPOSE. You should have received a copy of GPLv2 -# along with this software; if not, see -# http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt. - - -from __future__ import print_function - -import sys - -# Once we have the up2date stuff in a site-packages, -# we won't have to do path magic. -import warnings -warnings.filterwarnings("ignore", - message='the md5 module is deprecated; use hashlib instead') -sys.path.append("/usr/share/rhn/") -from up2date_client import up2dateAuth -from up2date_client import up2dateErrors -from up2date_client import rhnserver -from up2date_client import pkgUtils - - -if __name__ == '__main__': - systemid = up2dateAuth.getSystemId() - if systemid: - try: - print("Apt-Spacewalk: Updating package profile") - s = rhnserver.RhnServer() - s.registration.update_packages(systemid, - pkgUtils.getInstalledPackageList(getArch=1)) - except up2dateErrors.RhnServerException as e: - print("Package profile information could not be sent.") - print(str(e)) diff --git a/client/debian/apt-spacewalk/pre_invoke.py b/client/debian/apt-spacewalk/pre_invoke.py deleted file mode 100755 index 8d27f48825e3..000000000000 --- a/client/debian/apt-spacewalk/pre_invoke.py +++ /dev/null @@ -1,86 +0,0 @@ -#!/usr/bin/python -# -# APT::Update::Pre-Invoke hook for updating sources.list -# -# Author: Simon Lukasik -# Date: 2011-03-14 -# License: GPLv2 -# -# Copyright (c) 1999--2012 Red Hat, Inc. -# -# This software is licensed to you under the GNU General Public License, -# version 2 (GPLv2). There is NO WARRANTY for this software, express or -# implied, including the implied warranties of MERCHANTABILITY or FITNESS -# FOR A PARTICULAR PURPOSE. You should have received a copy of GPLv2 -# along with this software; if not, see -# http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt. - - -from __future__ import print_function - -import sys -import os -from six.moves.urllib.parse import urlparse -from aptsources import sourceslist -import apt_pkg - -# Once we have the up2date stuff in a site-packages, -# we don't have to do path magic -import warnings -warnings.filterwarnings("ignore", - message='the md5 module is deprecated; use hashlib instead') -sys.path.append('/usr/share/rhn/') -from up2date_client import config -from up2date_client import rhnChannel -from up2date_client import up2dateAuth -from up2date_client import up2dateErrors - - -def get_channels(): - """Return channels associated with a machine""" - try: - channels = ['main'] - for channel in rhnChannel.getChannelDetails(): - if channel['parent_channel']: - channels.append(channel['label']) - return channels - except up2dateErrors.Error: - return [] - -def get_server(): - """Spacewalk server fqdn""" - return urlparse(config.getServerlURL()[0]).netloc - -def get_conf_file(): - """Path to spacewalk.list configuration file""" - apt_pkg.init_config() - directory = apt_pkg.config.get('Dir::Etc::sourceparts', - 'sources.list.d') - if not os.path.isabs(directory): - directory = os.path.join('/etc/apt', directory) - return os.path.join(directory, 'spacewalk.list') - -def update_sources_list(): - sources = sourceslist.SourcesList() - sw_source = [] - for source in sources.list: - if source.uri.startswith('spacewalk://'): - source.set_enabled(False) - sw_source.append(source) - - if up2dateAuth.getSystemId(): - channels = get_channels() - if len(channels): - for source in sw_source: - sources.remove(source) - sources.add(type='deb', - uri='spacewalk://' + get_server(), - dist='channels:', - orig_comps=channels, - file=get_conf_file() - ) - sources.save() - -if __name__ == '__main__': - print("Apt-Spacewalk: Updating sources.list") - update_sources_list() diff --git a/client/debian/apt-spacewalk/pylintrc b/client/debian/apt-spacewalk/pylintrc deleted file mode 100644 index 82ba454c4c46..000000000000 --- a/client/debian/apt-spacewalk/pylintrc +++ /dev/null @@ -1,188 +0,0 @@ -# apt-spacewalk package pylint configuration - -[MASTER] - -# Profiled execution. -profile=no - -# Pickle collected data for later comparisons. -persistent=no - - -[MESSAGES CONTROL] - -# Disable the message(s) with the given id(s). - - -disable=I0011, - C0302, - C0111, - R0801, - R0902, - R0903, - R0904, - R0912, - R0913, - R0914, - R0915, - R0921, - R0922, - W0142, - W0403, - W0603, - C1001, - W0121, - useless-else-on-loop, - bad-whitespace, - unpacking-non-sequence, - superfluous-parens, - cyclic-import, - redefined-variable-type, - no-else-return, - - # Uyuni disabled - E0203, - E0611, - E1101, - E1102 - -# list of disabled messages: -#I0011: 62: Locally disabling R0201 -#C0302: 1: Too many lines in module (2425) -#C0111: 1: Missing docstring -#R0902: 19:RequestedChannels: Too many instance attributes (9/7) -#R0903: Too few public methods -#R0904: 26:Transport: Too many public methods (22/20) -#R0912:171:set_slots_from_cert: Too many branches (59/20) -#R0913:101:GETServer.__init__: Too many arguments (11/10) -#R0914:171:set_slots_from_cert: Too many local variables (38/20) -#R0915:171:set_slots_from_cert: Too many statements (169/50) -#W0142:228:MPM_Package.write: Used * or ** magic -#W0403: 28: Relative import 'rhnLog', should be 'backend.common.rhnLog' -#W0603: 72:initLOG: Using the global statement -# for pylint-1.0 we also disable -#C1001: 46, 0: Old-style class defined. (old-style-class) -#W0121: 33,16: Use raise ErrorClass(args) instead of raise ErrorClass, args. (old-raise-syntax) -#W:243, 8: Else clause on loop without a break statement (useless-else-on-loop) -# pylint-1.1 checks -#C:334, 0: No space allowed after bracket (bad-whitespace) -#W:162, 8: Attempting to unpack a non-sequence defined at line 6 of (unpacking-non-sequence) -#C: 37, 0: Unnecessary parens after 'not' keyword (superfluous-parens) -#C:301, 0: Unnecessary parens after 'if' keyword (superfluous-parens) - -[REPORTS] - -# Set the output format. Available formats are text, parseable, colorized, msvs -# (visual studio) and html -output-format=parseable - -# Include message's id in output -include-ids=yes - -# Tells whether to display a full report or only the messages -reports=yes - -# Template used to display messages. This is a python new-style format string -# used to format the message information. See doc for all details -msg-template="{path}:{line}: [{msg_id}({symbol}), {obj}] {msg}" - -[VARIABLES] - -# A regular expression matching names used for dummy variables (i.e. not used). -dummy-variables-rgx=_|dummy - - -[BASIC] - -# Regular expression which should only match correct module names -#module-rgx=(([a-z_][a-z0-9_]*)|([A-Z][a-zA-Z0-9]+))$ -module-rgx=([a-zA-Z_][a-zA-Z0-9_]+)$ - -# Regular expression which should only match correct module level names -const-rgx=(([a-zA-Z_][a-zA-Z0-9_]*)|(__.*__))$ - -# Regular expression which should only match correct class names -class-rgx=[a-zA-Z_][a-zA-Z0-9_]+$ - -# Regular expression which should only match correct function names -function-rgx=[a-z_][a-zA-Z0-9_]{,42}$ - -# Regular expression which should only match correct method names -method-rgx=[a-z_][a-zA-Z0-9_]{,42}$ - -# Regular expression which should only match correct instance attribute names -attr-rgx=[a-z_][a-zA-Z0-9_]{,30}$ - -# Regular expression which should only match correct argument names -argument-rgx=[a-z_][a-zA-Z0-9_]{,30}$ - -# Regular expression which should only match correct variable names -variable-rgx=[a-z_][a-zA-Z0-9_]{,30}$ - -# Regular expression which should only match correct list comprehension / -# generator expression variable names -inlinevar-rgx=[A-Za-z_][A-Za-z0-9_]*$ - -# Regular expression which should only match correct class sttribute names -class-attribute-rgx=([A-Za-z_][A-Za-z0-9_]{2,42}|(__.*__))$ - -# Good variable names which should always be accepted, separated by a comma -good-names=i,j,k,ex,Run,_ - -# Bad variable names which should always be refused, separated by a comma -bad-names=foo,bar,baz,toto,tutu,tata - -# List of builtins function names that should not be used, separated by a comma -bad-functions=apply,input - - -[DESIGN] - -# Maximum number of arguments for function / method -max-args=10 - -# Maximum number of locals for function / method body -max-locals=20 - -# Maximum number of return / yield for function / method body -max-returns=6 - -# Maximum number of branch for function / method body -max-branchs=20 - -# Maximum number of statements in function / method body -max-statements=50 - -# Maximum number of parents for a class (see R0901). -max-parents=7 - -# Maximum number of attributes for a class (see R0902). -max-attributes=7 - -# Minimum number of public methods for a class (see R0903). -min-public-methods=1 - -# Maximum number of public methods for a class (see R0904). -max-public-methods=20 - - -[CLASSES] - - -[FORMAT] - -# Maximum number of characters on a single line. -max-line-length=120 - -# Maximum number of lines in a module -max-module-lines=1000 - -# String used as indentation unit. This is usually " " (4 spaces) or "\t" (1 -# tab). -indent-string=' ' - - -[MISCELLANEOUS] - -# List of note tags to take in consideration, separated by a comma. -notes= diff --git a/client/debian/apt-spacewalk/spacewalk b/client/debian/apt-spacewalk/spacewalk deleted file mode 100755 index d07d1915c30e..000000000000 --- a/client/debian/apt-spacewalk/spacewalk +++ /dev/null @@ -1,301 +0,0 @@ -#!/usr/bin/python -u -# -# The Spacewalk Acquire Method -# -# Author: Simon Lukasik -# Date: 2011-01-01 -# License: GPLv2 -# -# Copyright (c) 1999--2012 Red Hat, Inc. -# -# This software is licensed to you under the GNU General Public License, -# version 2 (GPLv2). There is NO WARRANTY for this software, express or -# implied, including the implied warranties of MERCHANTABILITY or FITNESS -# FOR A PARTICULAR PURPOSE. You should have received a copy of GPLv2 -# along with this software; if not, see -# http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt. - - -from __future__ import print_function - -import sys -import os -import re -import hashlib - -import warnings -warnings.filterwarnings("ignore", message="the md5 module is deprecated; use hashlib instead") -sys.path.append("/usr/share/rhn/") - -from six.moves.urllib.parse import urlparse -from rhn.connections import HTTPConnection, HTTPSConnection -from up2date_client import config -from up2date_client import rhnChannel -from up2date_client import up2dateAuth -from up2date_client import up2dateErrors -from rhn.stringutils import bstr - - - -class pkg_acquire_method: - """ - This is slightly modified python variant of apt-pkg/acquire-method. - It is a skeleton class that implements only very basic of apt methods - functionality. - """ - __eof = False - - def __init__(self): - print("100 Capabilities\nVersion: 1.0\nSingle-Instance: true\n\n", end='') - - def __get_next_msg(self): - """ - Apt uses for communication with its methods the text protocol similar - to http. This function parses the protocol messages from stdin. - """ - if self.__eof: - return None - result = {}; - line = sys.stdin.readline() - while line == '\n': - line = sys.stdin.readline() - if not line: - self.__eof = True - return None - s = line.split(" ", 1) - result['_number'] = int(s[0]) - result['_text'] = s[1].strip() - - while not self.__eof: - line = sys.stdin.readline() - if not line: - self.__eof = True - return result - if line == '\n': - return result - s = line.split(":", 1) - result[s[0]] = s[1].strip() - - def __dict2msg(self, msg): - """Convert dictionary to http like message""" - result = "" - for item in list(msg.keys()): - if msg[item] != None: - result += item + ": " + msg[item] + "\n" - return result - - def status(self, **kwargs): - print("102 Status\n%s\n" % self.__dict2msg(kwargs), end='') - - def uri_start(self, msg): - print("200 URI Start\n%s\n" % self.__dict2msg(msg), end='') - - def uri_done(self, msg): - print("201 URI Done\n%s\n" % self.__dict2msg(msg), end='') - - def uri_failure(self, msg): - print("400 URI Failure\n%s\n" % self.__dict2msg(msg), end='') - - def run(self): - """Loop through requests on stdin""" - while True: - msg = self.__get_next_msg() - if msg == None: - return 0 - if msg['_number'] == 600: - try: - self.fetch(msg) - except Exception as e: - self.fail(e.__class__.__name__ + ": " + str(e)) - except up2dateErrors.Error as e: - self.fail(e.__class__.__name__ + ": " + str(e)) - else: - return 100 - - - -def get_ssl_ca_cert(up2date_cfg): - if not ('sslCACert' in up2date_cfg and up2date_cfg['sslCACert']): - raise BadSslCaCertConfig - - ca_certs = up2date_cfg['sslCACert'] - if type(ca_certs) == list: - return ca_certs - return [ca_certs] - - - -class spacewalk_method(pkg_acquire_method): - """ - Spacewalk acquire method - """ - up2date_cfg = None - login_info = None - current_url = None - svr_channels = None - http_headers = None - base_channel = None - conn = None - not_registered_msg = 'This system is not registered with the spacewalk server' - - def fail(self, message = not_registered_msg): - self.uri_failure({'URI': self.uri, - 'Message': message}) - - - def __load_config(self): - if self.up2date_cfg == None: - self.up2date_cfg = config.initUp2dateConfig() - self.up2date_server = urlparse(config.getServerlURL()[0]) - # TODO: proxy settings - - - def __login(self): - if self.login_info == None: - self.status(URI = self.uri, Message = 'Logging into the spacewalk server') - self.login_info = up2dateAuth.getLoginInfo() - if not self.login_info: - raise up2date_client.AuthenticationError(self.not_registered_msg) - self.status(URI = self.uri, Message = 'Logged in') - - - def __init_channels(self): - if self.svr_channels == None: - self.svr_channels = rhnChannel.getChannelDetails() - for channel in self.svr_channels: - if channel['parent_channel'] == '': - self.base_channel = channel['label'] - - - def __init_headers(self): - if self.http_headers == None: - rhn_needed_headers = ['X-RHN-Server-Id', - 'X-RHN-Auth-User-Id', - 'X-RHN-Auth', - 'X-RHN-Auth-Server-Time', - 'X-RHN-Auth-Expire-Offset'] - self.http_headers = {}; - for header in rhn_needed_headers: - if header not in self.login_info: - raise up2date_client.AuthenticationError( - "Missing required login information %s" % (header)) - self.http_headers[header] = self.login_info[header] - self.http_headers['X-RHN-Transport-Capability'] = 'follow-redirects=3' - - - def __make_conn(self): - if self.conn == None: - if self.up2date_server.scheme == 'http' \ - or self.up2date_cfg['useNoSSLForPackages'] == 1: - self.conn = HTTPConnection(self.up2date_server.netloc) - else: - self.conn = HTTPSConnection(self.up2date_server.netloc, - trusted_certs=get_ssl_ca_cert(self.up2date_cfg)) - - - def __transform_document(self, document): - """Transform url given by apt to real spacewalk url""" - document = document.replace('dists/channels:/main/', - 'dists/channels:/' + self.base_channel + '/', 1) - document = re.sub('/binary-[\d\w]*/', '/repodata/', document, 1) - document = document.replace('dists/channels:/', '/XMLRPC/GET-REQ/', 1) - return document - - - def fetch(self, msg): - """ - Fetch the content from spacewalk server to the file. - - Acording to the apt protocol msg must contain: 'URI' and 'Filename'. - Other possible keys are: 'Last-Modified', 'Index-File', 'Fail-Ignore' - """ - self.uri = msg['URI'] - self.uri_parsed = urlparse(msg['URI']) - self.filename = msg['Filename'] - - self.__load_config() - if self.uri_parsed.netloc != self.up2date_server.netloc: - return self.fail() - self.__login() - self.__init_channels() - - document = self.__transform_document(self.uri_parsed.path) - - self.__init_headers() - self.__make_conn() - - hdrs = self.http_headers; - # check is partially downloaded file present - if os.path.isfile(self.filename): - fsize = os.stat(self.filename).st_size - if fsize > 0: - # resume aborted download by requesting tail of the file - # using Range HTTP header - hdrs['Range'] = 'bytes=' + str(fsize) + '-' - - self.conn.request("GET", "/" + document, headers = hdrs) - self.status(URI = self.uri, Message = 'Waiting for headers') - - res = self.conn.getresponse() - - if res.status == 200: - f = open(self.filename, "wb") - elif res.status == 206: - f = open(self.filename, "ab") - else: - self.uri_failure({'URI': self.uri, - 'Message': str(res.status) + ' ' + res.reason, - 'FailReason': 'HttpError' + str(res.status)}) - while True: - data = res.read(4096) - if not len(data): break - res.close() - return - - self.uri_start({'URI': self.uri, - 'Size': res.getheader('content-length'), - 'Last-Modified': res.getheader('last-modified')}) - - while True: - data = res.read(4096) - if not len(data): - break - f.write(data) - res.close() - f.close() - - f = open(self.filename, "r") - hash_sha256 = hashlib.sha256() - hash_md5 = hashlib.md5() - fsize = 0 - while True: - data = f.read(4096) - if not len(data): - break - fsize += len(data) - hash_sha256.update(data) - hash_md5.update(data) - f.close() - - self.uri_done({'URI': self.uri, - 'Filename': self.filename, - 'Size': str(fsize), - 'Last-Modified': res.getheader('last-modified'), - 'MD5-Hash': hash_md5.hexdigest(), - 'MD5Sum-Hash': hash_md5.hexdigest(), - 'SHA256-Hash': hash_sha256.hexdigest()}) - - - def __del__(self): - if self.conn: - self.conn.close() - - - -if __name__ == '__main__': - try: - method = spacewalk_method() - ret = method.run() - sys.exit(ret) - except KeyboardInterrupt: - pass diff --git a/client/debian/apt-spacewalk/src/apt-spacewalk.changes b/client/debian/apt-spacewalk/src/apt-spacewalk.changes deleted file mode 100644 index f55d5c2f0c72..000000000000 --- a/client/debian/apt-spacewalk/src/apt-spacewalk.changes +++ /dev/null @@ -1,9 +0,0 @@ -------------------------------------------------------------------- -Fri Apr 20 14:24:42 CEST 2012 - mc@suse.de - -- version 1.0.4.1-1 -- The method can be killed by the keyboard interrupt -- Introducing actions.packages dispatcher -- Do not use rpmUtils on Debian -- Skip the extra lines sent by Apt - diff --git a/client/debian/python-dmidecode/Stop-linking-with-libxml2mod.patch b/client/debian/python-dmidecode/Stop-linking-with-libxml2mod.patch deleted file mode 100644 index 68a00e1a5ee0..000000000000 --- a/client/debian/python-dmidecode/Stop-linking-with-libxml2mod.patch +++ /dev/null @@ -1,72 +0,0 @@ -From 6698dabbd45a2d93199d2d3d5abb84f8c260667d Mon Sep 17 00:00:00 2001 -From: Sandro Tosi -Date: Tue, 5 Dec 2017 18:52:09 -0500 -Subject: Stop linking with libxml2mod - -Copy the two funcions used instead of linking with libxml2mod. - -Author: Adrian Bunk ---- - src/dmidecodemodule.c | 27 ++++++++++++++++++++++++++- - src/setup_common.py | 3 --- - 2 files changed, 26 insertions(+), 4 deletions(-) - -diff --git a/src/dmidecodemodule.c b/src/dmidecodemodule.c -index b31c002..007a892 100644 ---- a/src/dmidecodemodule.c -+++ b/src/dmidecodemodule.c -@@ -42,7 +42,6 @@ - #include - - #include --#include "libxml_wrap.h" - - #include "dmidecodemodule.h" - #include "dmixml.h" -@@ -64,6 +63,32 @@ char *PyUnicode_AsUTF8(PyObject *unicode) { - } - #endif - -+static PyObject * -+libxml_xmlDocPtrWrap(xmlDocPtr doc) -+{ -+ PyObject *ret; -+ -+ if (doc == NULL) { -+ Py_INCREF(Py_None); -+ return (Py_None); -+ } -+ ret = PyCapsule_New((void *) doc, (char *) "xmlDocPtr", NULL); -+ return (ret); -+} -+ -+static PyObject * -+libxml_xmlNodePtrWrap(xmlNodePtr node) -+{ -+ PyObject *ret; -+ -+ if (node == NULL) { -+ Py_INCREF(Py_None); -+ return (Py_None); -+ } -+ ret = PyCapsule_New((void *) node, (char *) "xmlNodePtr", NULL); -+ return (ret); -+} -+ - static void init(options *opt) - { - opt->devmem = DEFAULT_MEM_DEV; -diff --git a/src/setup_common.py b/src/setup_common.py -index aec1f9b..6b678ef 100644 ---- a/src/setup_common.py -+++ b/src/setup_common.py -@@ -68,9 +68,6 @@ def libxml2_lib(libdir, libs): - elif l.find('-l') == 0: - libs.append(l.replace("-l", "", 1)) - -- # this library is not reported and we need it anyway -- libs.append('xml2mod') -- - - - # Get version from src/version.h diff --git a/client/debian/python-dmidecode/python-dmidecode.spec b/client/debian/python-dmidecode/python-dmidecode.spec deleted file mode 100644 index 452b5f031198..000000000000 --- a/client/debian/python-dmidecode/python-dmidecode.spec +++ /dev/null @@ -1,324 +0,0 @@ -%if %{_vendor} == "debbuild" -# Debian points /bin/sh to /bin/dash by default. This breaks a lot of common -# scripts that rely on bash-specific behavior, so changing the shell preempts -# a lot of these breakages. -%global _buildshell /bin/bash -%endif - - -# Setuptools install flags -%if %{_vendor} == "debbuild" -%global pyinstflags --no-compile -O0 -%global pytargetflags --install-layout=deb -%else -%global pyinstflags -O1 -%global pytargetflags %{nil} -%endif - -# For systems (mostly debian) that don't define these things ------------------- -%{!?__python2:%global __python2 /usr/bin/python2} -%{!?__python3:%global __python3 /usr/bin/python3} - -%if %{undefined python2_sitearch} -%global python2_sitearch %(%{__python2} -c "from distutils.sysconfig import get_python_lib; print(get_python_lib(1))") -%endif - -%if %{undefined python3_sitearch} -%global python3_sitearch %(%{__python3} -c "from distutils.sysconfig import get_python_lib; print(get_python_lib(1))") -%endif - -%{!?py3dir: %global py3dir %{_builddir}/python3-%{name}-%{version}-%{release}} - -# ----------------------------------------------------------------------------- - - -Name: python-dmidecode -Summary: Python module to access DMI data -Version: 3.12.2 -Release: 10%{?dist} - -%if %{_vendor} == "debbuild" -Packager: Neal Gompa -License: GPL-2.0 -Group: python -%else -License: GPLv2 -Group: System Environment/Libraries -%endif -URL: https://github.com/nima/python-dmidecode -Source0: https://github.com/nima/%{name}/archive/v%{version}/%{name}-%{version}.tar.gz - -Patch666: Stop-linking-with-libxml2mod.patch - -%if %{_vendor} == "debbuild" -BuildRequires: libxml2-dev - -BuildRequires: python-dev -BuildRequires: python-libxml2 - -BuildRequires: python3-dev -BuildRequires: python3-libxml2 -%else -BuildRequires: libxml2-devel - -BuildRequires: python2-devel -BuildRequires: libxml2-python - -BuildRequires: python3-devel -BuildRequires: libxml2-python3 -%endif - -%description -python-dmidecode is a Python extension module that uses the -code-base of the 'dmidecode' utility, and presents the data -as python data structures or as XML data using libxml2. - -%package -n python2-dmidecode -Summary: Python 2 module to access DMI data -%if %{_vendor} == "debbuild" -Requires: python-libxml2 -# Replaces Debian's python-dmidecode -Provides: python-dmidecode -Obsoletes: python-dmidecode -# For scriptlets -Requires(preun): python-minimal -Requires(post): python-minimal -%else -Requires: libxml2-python -%endif -%{?python_provide:%python_provide python2-dmidecode} - -%description -n python2-dmidecode -python2-dmidecode is a Python 2 extension module that uses the -code-base of the 'dmidecode' utility, and presents the data -as python data structures or as XML data using libxml2. - -%package -n python3-dmidecode -Summary: Python 3 module to access DMI data -%if %{_vendor} == "debbuild" -Requires: python3-libxml2 -# For scriptlets -Requires(preun): python3-minimal -Requires(post): python3-minimal -%else -Requires: libxml2-python3 -%endif - -%description -n python3-dmidecode -python3-dmidecode is a Python 3 extension module that uses the -code-base of the 'dmidecode' utility, and presents the data -as Python 3 data structures or as XML data using libxml2. - - - -%prep -%setup -qc - -%if %{_vendor} == "debbuild" -# Apply patches for debian -pushd %{name}-%{version} -%patch666 -p1 -popd -%endif - -mv %{name}-%{version} python2 -cp -a python{2,3} - -pushd python3 -sed -i 's/python2/python3/g' Makefile unit-tests/Makefile -popd - - -%build -# Not to get undefined symbol: dmixml_GetContent -export CFLAGS="${CFLAGS-} -std=gnu89" - - -for PY in python2 python3; do - pushd $PY - make build - popd -done - -%install -pushd python2 -%{__python2} src/setup.py install %{?pyinstflags} --skip-build --root %{buildroot} %{?pytargetflags} --prefix=%{_prefix} -popd - -pushd python3 -%{__python3} src/setup.py install %{?pyinstflags} --skip-build --root %{buildroot} %{?pytargetflags} --prefix=%{_prefix} -popd - - -%if %{_vendor} != "debbuild" -%check -for PY in python2 python3; do - pushd $PY/unit-tests - make - popd -done -%endif - -%files -n python2-dmidecode -%license python2/doc/LICENSE python2/doc/AUTHORS python2/doc/AUTHORS.upstream -%doc python2/README python2/doc/README.upstream -%{python2_sitearch}/* -%{_datadir}/python-dmidecode/ - -%files -n python3-dmidecode -%license python3/doc/LICENSE python3/doc/AUTHORS python3/doc/AUTHORS.upstream -%doc python3/README python3/doc/README.upstream -%{python3_sitearch}/* -%{_datadir}/python-dmidecode/ - -%if %{_vendor} == "debbuild" - -%post -n python2-dmidecode -# Do late-stage bytecompilation, per debian policy -pycompile -p python2-dmidecode -V -3.0 - -%preun -n python2-dmidecode -# Ensure all *.py[co] files are deleted, per debian policy -pyclean -p python2-dmidecode - -%post -n python3-dmidecode -# Do late-stage bytecompilation, per debian policy -py3compile -p python3-dmidecode -V -4.0 - -%preun -n python3-dmidecode -# Ensure all *.py[co] files are deleted, per debian policy -py3clean -p python3-dmidecode - -%endif - - -%changelog -* Fri Jul 06 2018 Neal Gompa - 3.12.2-10 -- Add Debian/Ubuntu support - -* Sat Aug 19 2017 Zbigniew Jędrzejewski-Szmek - 3.12.2-9 -- Python 2 binary package renamed to python2-dmidecode - See https://fedoraproject.org/wiki/FinalizingFedoraSwitchtoPython3 - -* Thu Aug 03 2017 Fedora Release Engineering - 3.12.2-8 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild - -* Thu Jul 27 2017 Fedora Release Engineering - 3.12.2-7 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild - -* Sat Feb 11 2017 Fedora Release Engineering - 3.12.2-6 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild - -* Mon Dec 19 2016 Miro Hrončok - 3.12.2-5 -- Rebuild for Python 3.6 - -* Tue Jul 19 2016 Fedora Release Engineering - 3.12.2-4 -- https://fedoraproject.org/wiki/Changes/Automatic_Provides_for_Python_RPM_Packages - -* Thu Feb 04 2016 Fedora Release Engineering - 3.12.2-3 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild - -* Sat Nov 07 2015 Robert Kuska - 3.12.2-2 -- Rebuilt for Python3.5 rebuild - -* Fri Jul 10 2015 Miro Hrončok - 3.12.2-1 -- Update to 3.12.2 -- Add Python 3 subpackage (#1236000) -- Removed deprecated statements -- Moved some docs to license -- Removed pacthes -- Corrected bogus dates in %%changelog -- Build with -std=gnu89 - -* Thu Jun 18 2015 Fedora Release Engineering - 3.10.13-13 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild - -* Sun Aug 17 2014 Fedora Release Engineering - 3.10.13-12 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild - -* Sat Jun 07 2014 Fedora Release Engineering - 3.10.13-11 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild - -* Sun Aug 04 2013 Fedora Release Engineering - 3.10.13-10 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild - -* Thu Jun 20 2013 Ales Ledvinka - 3.10.13-9 -- Attribute installed may appear as duplicate and cause invalid XML. - -* Mon Jun 17 2013 Ales Ledvinka - 3.10.13-8 -- Attribute dmispec may cause invalid XML on some hardware. -- Signal handler for SIGILL. - -* Thu Feb 14 2013 Fedora Release Engineering - 3.10.13-7 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild - -* Sat Jul 21 2012 Fedora Release Engineering - 3.10.13-6 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild - -* Thu Jul 19 2012 Ales Ledvinka 3.10.14-5 -- Upstream relocated. Document source tag and tarball generation. - -* Sat Jan 14 2012 Fedora Release Engineering - 3.10.13-4 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild - -* Tue Feb 08 2011 Fedora Release Engineering - 3.10.13-3 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild - -* Thu Jul 22 2010 David Malcolm - 3.10.13-2 -- Rebuilt for https://fedoraproject.org/wiki/Features/Python_2.7/MassRebuild - -* Tue Jun 15 2010 Roman Rakus - 3.10.13-1 -- Update to new release - -* Fri Mar 12 2010 Nima Talebi - 3.10.12-1 -- Update to new release - -* Tue Feb 16 2010 Nima Talebi - 3.10.11-1 -- Update to new release - -* Tue Jan 12 2010 Nima Talebi - 3.10.10-1 -- Update to new release - -* Thu Jan 07 2010 Nima Talebi - 3.10.9-1 -- Update to new release - - -* Tue Dec 15 2009 Nima Talebi - 3.10.8-1 -- New Upstream release. -- Big-endian and little-endian approved. -- Packaged unit-test to tarball. -- Rewritten unit-test to be able to run as non-root user, where it will not - try to read /dev/mem. -- Added two dmidump data files to the unit-test. - -* Thu Nov 26 2009 David Sommerseth - 3.10.7-3 -- Fixed even more .spec file issues and removed explicit mentioning - of /usr/share/python-dmidecode/pymap.xml - -* Wed Nov 25 2009 David Sommerseth - 3.10.7-2 -- Fixed some .spec file issues (proper Requires, use _datadir macro) - -* Wed Sep 23 2009 Nima Talebi - 3.10.7-1 -- Updated source0 to new 3.10.7 tar ball - -* Mon Jul 13 2009 David Sommerseth - 3.10.6-6 -- Only build the python-dmidecode module, not everything - -* Mon Jul 13 2009 David Sommerseth - 3.10.6-5 -- Added missing BuildRequres for libxml2-python - -* Mon Jul 13 2009 David Sommerseth - 3.10.6-4 -- Added missing BuildRequres for python-devel - -* Mon Jul 13 2009 David Sommerseth - 3.10.6-3 -- Added missing BuildRequres for libxml2-devel - -* Mon Jul 13 2009 David Sommerseth - 3.10.6-2 -- Updated release, to avoid build conflict - -* Wed Jun 10 2009 David Sommerseth - 3.10.6-1 -- Updated to work with the new XML based python-dmidecode - -* Sat Mar 7 2009 Clark Williams - 2.10.3-1 -- Initial build. - diff --git a/client/debian/python-hwdata/python-hwdata.spec b/client/debian/python-hwdata/python-hwdata.spec deleted file mode 100644 index 85f64be1a59e..000000000000 --- a/client/debian/python-hwdata/python-hwdata.spec +++ /dev/null @@ -1,255 +0,0 @@ -%if 0%{?fedora} || 0%{?rhel} > 7 -# Enable python3 build by default -%bcond_without python3 -%else -%bcond_with python3 -%endif - -%if 0%{?rhel} > 7 || 0%{?fedora} > 29 -# Disable python2 build by default -%bcond_with python2 -%else -%bcond_without python2 -%endif - -%if %{_vendor} == "debbuild" -# Debian points /bin/sh to /bin/dash by default. This breaks a lot of common -# scripts that rely on bash-specific behavior, so changing the shell preempts -# a lot of these breakages. -%global _buildshell /bin/bash -%endif - - -# Setuptools install flags -%if %{_vendor} == "debbuild" -%global pyinstflags --no-compile -O0 -%global pytargetflags --install-layout=deb -%else -%global pyinstflags -O1 -%global pytargetflags %{nil} -%endif - -# For systems (mostly debian) that don't define these things ------------------- -%{!?__python2:%global __python2 /usr/bin/python2} -%{!?__python3:%global __python3 /usr/bin/python3} - -%if %{undefined python2_sitelib} -%global python2_sitelib %(%{__python2} -c "from distutils.sysconfig import get_python_lib; print(get_python_lib())") -%endif - -%if %{undefined python3_sitelib} -%global python3_sitelib %(%{__python3} -c "from distutils.sysconfig import get_python_lib; print(get_python_lib())") -%endif - -%{!?py2_build: %global py2_build CFLAGS="%{optflags}" %{__python2} setup.py build} -%{!?py2_install: %global py2_install %{__python2} setup.py install %{?pyinstflags} --skip-build --root %{buildroot} %{?pytargetflags}} -%{!?py3_build: %global py3_build CFLAGS="%{optflags}" %{__python3} setup.py build} -%{!?py3_install: %global py3_install %{__python3} setup.py install %{?pyinstflags} --skip-build --root %{buildroot} %{?pytargetflags}} - -%{!?py3dir: %global py3dir %{_builddir}/python3-%{name}-%{version}-%{release}} - -# ----------------------------------------------------------------------------- - -# tito tags with version-release -%global origrel 1 - -Name: python-hwdata -Version: 2.3.7 -Release: 1%{?dist} -Summary: Python bindings to hwdata package -%if %{_vendor} == "debbuild" -Group: python -Packager: Miroslav Suchý -%else -Group: Development/Libraries -%endif -BuildArch: noarch -License: GPLv2 -URL: https://github.com/xsuchy/python-hwdata -Source0: https://github.com/xsuchy/%{name}/archive/%{name}-%{version}-%{origrel}.tar.gz - -%description -Provide python interface to database stored in hwdata package. -It allows you to get human readable description of USB and PCI devices. - -%if %{with python2} -%package -n python2-hwdata -Summary: Python bindings to hwdata package - -%if %{_vendor} == "debbuild" -BuildRequires: python-dev -Requires(preun): python-minimal -Requires(post): python-minimal -%else -BuildRequires: python2-devel -%endif - -Requires: hwdata -%{?python_provide:%python_provide python2-hwdata} -%if 0%{?rhel} < 8 -Provides: python-hwdata = %{version}-%{release} -%endif - -%description -n python2-hwdata -Provide python interface to database stored in hwdata package. -It allows you to get human readable description of USB and PCI devices. - -This is the Python 2 build of the module. - -%endif # with python2 - -%if %{with python3} -%package -n python3-hwdata -Summary: Python bindings to hwdata package - -%if %{_vendor} == "debbuild" -BuildRequires: python3-dev -BuildRequires: pylint3 -Requires(preun): python3-minimal -Requires(post): python3-minimal -%else -BuildRequires: python3-devel -BuildRequires: python3-pylint -%endif -Requires: hwdata -%{?python_provide:%python_provide python3-hwdata} - -%description -n python3-hwdata -Provide python interface to database stored in hwdata package. -It allows you to get human readable description of USB and PCI devices. - -This is the Python 3 build of the module. -%endif # with python3 - -%prep -%setup -q -n %{name}-%{name}-%{version}-%{origrel} - -%if %{with python3} -rm -rf %{py3dir} -cp -a . %{py3dir} -%endif # with python3 - -%build -%if %{with python2} -%py2_build -%endif # with python2 - -%if %{with python3} -pushd %{py3dir} -%py3_build -popd -%endif # with python3 - -%install -%if %{with python2} -%py2_install -%endif # with python2 - -%if %{with python3} -pushd %{py3dir} -%py3_install -popd -%endif # with python3 - -%if %{_vendor} != "debbuild" -%check -%if %{with python3} -pylint-3 hwdata.py example.py || : -%endif # with python3 -%endif - -%if %{with python2} -%files -n python2-hwdata -%license LICENSE -%doc README.md example.py -%doc html -%{python2_sitelib}/* -%endif # with python2 - -%if %{with python3} -%files -n python3-hwdata -%license LICENSE -%doc README.md example.py -%doc html -%{python3_sitelib}/* -%endif # with python3 - -%if %{_vendor} == "debbuild" - -%if %{with python2} -%post -n python2-hwdata -# Do late-stage bytecompilation, per debian policy -pycompile -p python2-hwdata -V -3.0 - -%preun -n python2-hwdata -# Ensure all *.py[co] files are deleted, per debian policy -pyclean -p python2-hwdata -%endif - -%if %{with python3} -%post -n python3-hwdata -# Do late-stage bytecompilation, per debian policy -py3compile -p python3-hwdata -V -4.0 - -%preun -n python3-hwdata -# Ensure all *.py[co] files are deleted, per debian policy -py3clean -p python3-hwdata -%endif - -%endif - -%changelog -* Tue Jun 12 2018 Dalton Miner 2.3.7-2 -- Updating packaging for debian systems - -* Fri Mar 23 2018 Miroslav Suchý 2.3.7-1 -- remove python2 subpackage for F30+ - -* Mon Feb 12 2018 Miroslav Suchý 2.3.6-1 -- Update Python 2 dependency declarations to new packaging standards - -* Wed Aug 09 2017 Miroslav Suchý 2.3.5-1 -- create python2-hwdata subpackage -- use dnf instead of yum in README -- remove rhel5 compatibilities from spec - -* Thu Sep 22 2016 Miroslav Suchý 2.3.4-1 -- run pylint in %%check -- require hwdata in python 3 package too (jdobes@redhat.com) -- implement PNP interface -- errors in usb.ids should not be fatal -- change upstream url in setup.py - -* Wed Jan 28 2015 Miroslav Suchý 2.3.3-1 -- upstream location changed - -* Wed Jan 28 2015 Miroslav Suchý -- move upstream location - -* Wed Dec 04 2013 Miroslav Suchý 1.10.1-1 -- create python3-hwdata subpackage -- Bumping package versions for 1.9 -- %%defattr is not needed since rpm 4.4 - -* Fri Mar 02 2012 Miroslav Suchý 1.7.3-1 -- 798375 - fix PCI device name translation (Joshua.Roys@gtri.gatech.edu) -- use setup from distutils - -* Fri Mar 02 2012 Jan Pazdziora 1.7.2-1 -- Update the copyright year info. - -* Fri Mar 02 2012 Jan Pazdziora 1.7.1-1 -- correct indentation (mzazrivec@redhat.com) - -* Mon Oct 31 2011 Miroslav Suchý 1.6.2-1 -- point URL to specific python-hwdata page - -* Fri Jul 22 2011 Jan Pazdziora 1.6.1-1 -- We only support version 14 and newer of Fedora, removing conditions for old - versions. - -* Mon Apr 26 2010 Miroslav Suchý 1.2-1 -- 585138 - change %%files section and patial support for python3 - -* Fri Apr 23 2010 Miroslav Suchý 1.1-1 -- initial release diff --git a/client/tools/mgr-push/rhnpush_config.py b/client/tools/mgr-push/rhnpush_config.py index 938ff841d75b..22c7c7f35a23 100644 --- a/client/tools/mgr-push/rhnpush_config.py +++ b/client/tools/mgr-push/rhnpush_config.py @@ -66,7 +66,7 @@ def __init__(self, filename=None, ensure_consistency=False): 'no_session_caching': '0', 'proxy': '', 'tolerant': '0', - 'ca_chain': '/usr/share/rhn/RHN-ORG-TRUSTED-SSL-CERT', + 'ca_chain': '/etc/pki/trust/anchors/LOCAL-RHN-ORG-TRUSTED-SSL-CERT', 'timeout': None } diff --git a/client/tools/mgr-push/rhnpushrc b/client/tools/mgr-push/rhnpushrc index 1d63522f73a9..670c09256911 100644 --- a/client/tools/mgr-push/rhnpushrc +++ b/client/tools/mgr-push/rhnpushrc @@ -74,7 +74,7 @@ no_session_caching = 0 tolerant = 0 #The CA cert used to verify the ssl server -ca_chain = /usr/share/rhn/RHN-ORG-TRUSTED-SSL-CERT +ca_chain = /etc/pki/trust/anchors/LOCAL-RHN-ORG-TRUSTED-SSL-CERT #Default connection timeout, (no value for default) timeout = 300 diff --git a/containers/doc/server-kubernetes/README.md b/containers/doc/server-kubernetes/README.md new file mode 100644 index 000000000000..65298462a83a --- /dev/null +++ b/containers/doc/server-kubernetes/README.md @@ -0,0 +1,327 @@ +# Prerequisites + +The following assumes you have either a single-node RKE2 or K3s cluster ready or a server with Podman installed and enough resources for the Uyuni server. +When installing on a Kubernetes cluster, it also assumes that `kubectl` and `helm` are installed on the server and configured to connect to the cluster. + +# Preparing the installation + +## Podman specific setup + +There is nothing to prepare for a Podman installation. + +## RKE2 specific setup + +Copy the `rke2-ingress-nginx-config.yaml` file to `/var/lib/rancher/rke2/server/manifests/rke2-ingress-nginx-config.yaml` on your RKE2 node. +Wait for the ingress controller to restart. +Run this command to watch it restart: + +``` +watch kubectl get -n kube-system pod -lapp.kubernetes.io/name=rke2-ingress-nginx +``` + +## K3s specific setup + + +Copy the `k3s-traefik-config.yaml` file to `/var/lib/rancher/k3s/server/manifests/` on your K3s node. +Wait for trafik to restart. +Run this commant to watch it restart: + +``` +watch kubectl get -n kube-system pod -lapp.kubernetes.io/name=traefik +``` + +# Offline installation + + +## For K3s + +With K3s it is possible to preload the container images and avoid it to be fetched from a registry. +For this, on a machine with internet access, pull the image using `podman`, `docker` or `skopeo` and save it as a `tar` archive. +For example: + +⚠️ **TODO**: Verify instructions +``` +for image in cert-manager-cainjector cert-manager-controller cert-manager-ctl cert-manager-webhook; do + podman pull quay.io/jetstack/$image + podman save --output $image.tar quay.io/jetstack/$image:latest +done + +podman pull registry.opensuse.org/systemsmanagement/uyuni/master/servercontainer/containers/uyuni/server:latest + +podman save --output server.tar registry.opensuse.org/systemsmanagement/uyuni/master/servercontainer/containers/uyuni/server:latest +``` + +or + +⚠️ **TODO**: Verify instructions +``` +for image in cert-manager-cainjector cert-manager-controller cert-manager-ctl cert-manager-webhook; do + skopeo copy docker://quay.io/jetstack/$image:latest docker-archive:$image.tar:quay.io/jetstack/$image:latest +done + +skopeo copy docker://registry.opensuse.org/systemsmanagement/uyuni/master/servercontainer/containers/uyuni/server:latest docker-archive:server.tar:registry.opensuse.org/systemsmanagement/uyuni/master/servercontainer/containers/uyuni/server:latest +``` + +Copy the `cert-manager` and `uyuni/server` helm charts locally: + +⚠️ **TODO**: verify instructions + +``` +helm pull --repo https://charts.jetstack.io --destination . cert-manager +helm pull --destination . oci://registry.opensuse.org/uyuni/server +``` + +Transfer the resulting `*.tar` images to the K3s node and load them using the following command: + +``` +for archive in `ls *.tar`; do + k3s ctr images import $archive +done +``` + +In order to tell K3s to not pull the images, set the image pull policy needs to be set to `Never`. +This needs to be done for both Uyuni and cert-manager helm charts. + +For the Uyuni helm chart, set the `pullPolicy` chart value to `Never` by passing a `--helm-uyuni-values=uyuni-values.yaml` parameter to `uyuniadm install` with the following `uyuni-values.yaml` file content: + +``` +pullPolicy: Never +``` + +For the cert-manager helm chart, create a `cert-values.yaml` file with the following content and pass `--helm-certmanager-values=values.yaml` parameter to `uyuniadm install`: + +``` +image: + pullPolicy: Never +``` + +⚠️ **TODO**: verify the file names +To use the downloaded helm charts instead of the default ones, pass `--helm-uyuni-chart=server.tgz` and `--helm-certmanager-chart=cert-manager.tgz` or add the following to the `uyuniadm` configuration file: + +``` +helm: + uyuni: + chart: server.tgz + values: uyuni-values.yaml + certmanager: + chart: cert-manager.tgz + values: cert.values.yaml +``` + +## For RKE2 + +RKE2 doesn't allow to preload images on the nodes. +Instead, use `skopeo` to import the images in a local registry and use this one to install. + +Copy the `cert-manager` and `uyuni/server` helm charts locally: + +⚠️ **TODO**: verify instructions + +``` +helm pull --repo https://charts.jetstack.io --destination . cert-manager +helm pull --destination . oci://registry.opensuse.org/uyuni/server +``` + +⚠️ **TODO** Prepare instructions +``` +# TODO Copy the cert-manager and uyuni images +# TODO Set the uyuniadm parameters +``` + +## For Podman + +With K3s it is possible to preload the container images and avoid it to be fetched from a registry. +For this, on a machine with internet access, pull the image using `podman`, `docker` or `skopeo` and save it as a `tar` archive. +For example: + +``` +podman pull registry.opensuse.org/systemsmanagement/uyuni/master/servercontainer/containers/uyuni/server:latest +podman save --output server-image.tar registry.opensuse.org/systemsmanagement/uyuni/master/servercontainer/containers/uyuni/server:latest +``` + +or + +``` +skopeo copy docker://registry.opensuse.org/systemsmanagement/uyuni/master/servercontainer/containers/uyuni/server:latest docker-archive:server-image.tar:registry.opensuse.org/systemsmanagement/uyuni/master/servercontainer/containers/uyuni/server:latest +``` + +Transfer the resulting `server-image.tar` to the server and load it using the following command: + +``` +podman load -i server-image.tar +``` + +# Migrating from a regular server + +In order to migrate a regular Uyuni server to containers, a new machine is required: it is not possible to perform an in-place migration. +The old server is designated as the source server and the new machine is the destination one. + +The migration procedure does not perform any hostname rename. +The fully qualified domain name will be the same on the new server than on the source one. +This means the DNS records need to be adjusted after the migration to use the new server. + +## Preparing + +### Stop the source server + +Stop the source services: + +``` +spacewalk-service stop +systemctl stop postgresql +``` + +### Preparing the SSH connection + +The `SSH` configuration and agent should be ready on the host for a password less connection to the source server. +The migration script only uses the source server fully qualified domain name in the SSH command. +This means that every other configuration required to connect needs to be defined in the `~/.ssh/config` file. + +For a password less connection, the migration script will use an SSH agent on the server. +If none is running yet, run `eval $(ssh-agent)`. +Add the SSH key to the running agent using `ssh-add /path/to/the/private/key`. +The private key password will be prompted. + +### Prepare for Kubernetes + +Since the migration job will start the container from scratch the Persistent Volumes need to be defined before running the `uyuniadm migrate command`. +Refer to the installation section for more details on the volumes preparation. + +## Migrating + +Run the following command to install a new Uyuni server from the source one after replacing the `uyuni.source.fqdn` by the proper source server FQDN: +This command will synchronize all the data from the source server to the new one: this can take time! + +``` +uyuniadm migrate uyuni.source.fqdn +``` + +## Notes for Kubernetes + +⚠️ **TODO** Revisit this section! + +Once done, both the job and its pod will remain until the user deletes them to allow checking logs. + +Certificates migration also needs to be documented, but that can be guessed for now with the instructions to setup a server from scratch. + + +# Installing Uyuni + +## Volumes preparation + +### For Kubernetes + +⚠️ **TODO** Document this + +### For Podman + +⚠️ **TODO** Document this + +## Installing + +The installation using `uyuniadm install` will ask for the password if those are not provided using the command line parameters or the configuration file. +For security reason, using command line parameters to specify passwords should be avoided: use the configuration file with proper permissions instead. + +Prepare an `uyuniadm.yaml` file like the following: + +``` +db: + password: MySuperSecretDBPass +cert: + password: MySuperSecretCAPass +``` + +To dismiss the email prompts add the `email` and `emailFrom` configurations to the above file or use the `--email` and `--emailFrom` parameters for `uyuniadm install`. + +Run the following command to install after replacing the `uyuni.example.com` by the FQDN of the server to install: + +``` +uyuniadm -c uyuniadm.yaml install --image registry.opensuse.org/systemsmanagement/uyuni/master/servercontainer/containers/uyuni/server uyuni.example.com +``` + +### Podman specific configuration + +Additional parameters can be passed to Podman using `--podman-arg` parameters or configuration like the following in `uyuniadm.yaml`: + +``` +podman: + arg: + - -p 8000:8000 + - -p 8001:8001 +``` + +is equivalent to passing `--podman-arg "-p 8000:8000" --podman-arg "-p 8001:8001"` to `uyuniadm install` + +This can be usefull to expose ports like the Java debugging ones or mount additional volumes. + +### Kubernetes specific configuration + +The `uyuniadm install` command comes with parameters and thus configuration values for advanced helm chart configuration. +To pass additional values to the Uyuni helm chart at installation time, use the `--helm-uyuni-values chart-values.yaml` parameter or a configuration like the following: + +``` +helm: + uyuni: + values: chart-values.yaml +``` + +The path set as value for this configuration is a YAML file passed to the Uyuni Helm chart. +Be aware that some of the values in this file will be overriden by the `uyuniadm install` parameters. + +For example, to expose the Java debugging ports, add the `exposeJavaDebug: true` line to the helm chart values file. +You can also set more variables like `sccUser` or `sccPass`. +Check the [server-helm/values.yaml](https://github.com/uyuni-project/uyuni/blob/server-container/containers/server-helm/values.yaml) file for the complete list. + +If deploying on RKE2, add the `ingress: nginx` line to the Helm chart values file. + +Note that the Helm chart installs a deployment with one replica. +The pod name is automatically generated by Kubernetes and changes at every start. + + +# Using Uyuni in containers + +To getting a shell in the pod run `uyunictl exec -ti bash`. +Note that this command can be use to run any command to run inside the server like `uyunictl exec tail /var/log/rhn/rhn_web_ui.log` + +To copy files to the server, use the `uyunictl cp server:` command. +Conversely to copy files from the server use `uyunictl cp server: `. + +# Developping with the containers + +## Deploying code + +To deploy java code on the pod change to the `java` directory and run: + +``` +ant -f manager-build.xml refresh-branding-jar deploy-restart-kube +``` + +In case you changed the pod namespace, pass the corresponding `-Ddeploy.namespace=` parameter. + +**Note** To deploy TSX or Salt code, use the `deploy-static-resources-kube` and `deploy-salt-files-kube` tasks of the ant file. + +## Attaching a java debugger + +First enable the JDWP options in both tomcat and taskomatic using the following command: + +``` +ant -f manager-build.xml enable-java-debug-kube +``` + +Then restart tomcat and taskomatic using ant too: + +``` +ant -f manager-build.xml restart-tomcat-kube restart-taskomatic-kube +``` + +The debugger can now be attached to the usual ports (8000 for tomcat and 8001 for taskomatic) on the host FQDN. + +# Uninstalling + +To remove everything including the volumes, run the following command: + +``` +uyuniadm uninstall --purge-volumes +``` + +Note that `cert-manager` will not be uninstalled if it was not installed by `uyuniadm`. diff --git a/containers/doc/server-kubernetes/cert-manager-selfsigned-issuer.yaml b/containers/doc/server-kubernetes/cert-manager-selfsigned-issuer.yaml new file mode 100644 index 000000000000..afa7660e0b66 --- /dev/null +++ b/containers/doc/server-kubernetes/cert-manager-selfsigned-issuer.yaml @@ -0,0 +1,44 @@ +apiVersion: cert-manager.io/v1 +kind: Issuer +metadata: + name: uyuni-issuer + namespace: default +spec: + selfSigned: {} +--- +apiVersion: cert-manager.io/v1 +kind: Certificate +metadata: + name: uyuni-ca + namespace: default +spec: + isCA: true + subject: + countries: ["FR"] + provinces: ["Burgundy"] + localities: ["Macon"] + organizations: ["SUSE"] + organizationalUnits: ["BCL"] + emailAddresses: + - sylvestre@world-co.com + commonName: uyuni-dev.world-co.com + dnsNames: + - uyuni-dev.world-co.com + secretName: uyuni-ca + privateKey: + algorithm: ECDSA + size: 256 + issuerRef: + name: uyuni-issuer + kind: Issuer + group: cert-manager.io +--- +apiVersion: cert-manager.io/v1 +kind: Issuer +metadata: + name: uyuni-ca-issuer + namespace: default +spec: + ca: + secretName: + uyuni-ca diff --git a/containers/doc/server-kubernetes/k3s-traefik-config.yaml b/containers/doc/server-kubernetes/k3s-traefik-config.yaml new file mode 100644 index 000000000000..fd78e0024d47 --- /dev/null +++ b/containers/doc/server-kubernetes/k3s-traefik-config.yaml @@ -0,0 +1,53 @@ +apiVersion: helm.cattle.io/v1 +kind: HelmChartConfig +metadata: + name: traefik + namespace: kube-system +spec: + valuesContent: |- + ports: + postgres: + port: 5432 + expose: true + exposedPort: 5432 + protocol: TCP + salt-publish: + port: 4505 + expose: true + exposedPort: 4505 + protocol: TCP + salt-request: + port: 4506 + expose: true + exposedPort: 4506 + protocol: TCP + cobbler: + port: 25151 + expose: true + exposedPort: 25151 + protocol: TCP + tomcat-debug: + port: 8080 + expose: true + exposedPort: 8000 + protocol: TCP + tasko-debug: + port: 8081 + expose: true + exposedPort: 8001 + protocol: TCP + psql-metrics: + port: 9187 + expose: true + exposedPort: 9187 + protocol: TCP + node-metrics: + port: 9101 + expose: true + exposedPort: 9101 + protocol: TCP + tftp: + port: 69 + expose: true + exposedPort: 69 + protocol: UDP diff --git a/containers/doc/server-kubernetes/rhn-ssl-tool.yaml b/containers/doc/server-kubernetes/rhn-ssl-tool.yaml new file mode 100644 index 000000000000..2e0aad7049b8 --- /dev/null +++ b/containers/doc/server-kubernetes/rhn-ssl-tool.yaml @@ -0,0 +1,54 @@ +apiVersion: batch/v1 +kind: Job +metadata: + labels: + run: rhn-ssl-tool + name: rhn-ssl-tool +spec: + backoffLimit: 0 + template: + spec: + restartPolicy: Never + initContainers: + - name: gen-ca + image: registry.opensuse.org/systemsmanagement/uyuni/master/servercontainer/containers/uyuni/server + command: + - rhn-ssl-tool + - --gen-ca + - --no-rpm + - --set-common-name=uyuni-dev.world-co.com + - --set-country=FR + - --set-state=Burgundy + - --set-city=Macon + - --set-org=SUSE + - --set-org-unit=BCL + - --set-email=sylvestre@world-co.com + - --password-file=/ssl-build/password + volumeMounts: + - name: ssl-build + mountPath: /ssl-build + containers: + - name: gen-server + image: registry.opensuse.org/systemsmanagement/uyuni/master/servercontainer/containers/uyuni/server + command: + - rhn-ssl-tool + - --gen-server + - --no-rpm + - --set-cname=uyuni-dev.world-co.com + - --set-country=FR + - --set-state=Burgundy + - --set-city=Macon + - --set-org=SUSE + - --set-org-unit=BCL + - --set-email=sylvestre@world-co.com + - --set-hostname=uyuni-dev + - --set-cname=uyuni.world-co.com + - --password-file=/ssl-build/password + volumeMounts: + - name: ssl-build + mountPath: /ssl-build + volumes: + - name: ssl-build + hostPath: + path: /var/uyuni/ssl-build + type: Directory diff --git a/containers/doc/server-kubernetes/rke2-ingress-nginx-config.yaml b/containers/doc/server-kubernetes/rke2-ingress-nginx-config.yaml new file mode 100644 index 000000000000..2180adcf6c87 --- /dev/null +++ b/containers/doc/server-kubernetes/rke2-ingress-nginx-config.yaml @@ -0,0 +1,19 @@ +apiVersion: helm.cattle.io/v1 +kind: HelmChartConfig +metadata: + name: rke2-ingress-nginx + namespace: kube-system +spec: + valuesContent: |- + controller: + config: + hsts: "false" + tcp: + 4505: "default/uyuni-tcp:4505" + 4506: "default/uyuni-tcp:4506" + 5432: "default/uyuni-tcp:5432" + 8000: "default/uyuni-tcp:8000" + 8001: "default/uyuni-tcp:8001" + 25151: "default/uyuni-tcp:25151" + udp: + 69: "default/uyuni-udp:69" diff --git a/containers/hub-xmlrpc-api-image/Dockerfile b/containers/hub-xmlrpc-api-image/Dockerfile new file mode 100644 index 000000000000..7f5103edf688 --- /dev/null +++ b/containers/hub-xmlrpc-api-image/Dockerfile @@ -0,0 +1,27 @@ +# SPDX-License-Identifier: MIT +#!BuildTag: uyuni/hub-xmlrpc-api:latest uyuni/hub-xmlrpc-api:4.4.0 uyuni/hub-xmlrpc-api:4.4.0.%RELEASE% + +ARG INIT_BASE=registry.opensuse.org/bci/bci-micro +FROM $INIT_BASE + +RUN zypper --gpg-auto-import-keys --non-interactive install hub-xmlrpc-api + +# LABELs +ARG PRODUCT=Uyuni +ARG VENDOR="Uyuni project" +ARG URL="https://www.uyuni-project.org/" +ARG REFERENCE_PREFIX="registry.opensuse.org/uyuni" + +# Build Service required labels +# labelprefix=org.opensuse.uyuni.hub-xmlrpc-api +LABEL org.opencontainers.image.title="${PRODUCT} Hub XML-RPC API container" +LABEL org.opencontainers.image.description="${PRODUCT} Hub XML-RPC API image" +LABEL org.opencontainers.image.created="%BUILDTIME%" +LABEL org.opencontainers.image.vendor="${VENDOR}" +LABEL org.opencontainers.image.url="${URL}" +LABEL org.opencontainers.image.version="4.4.0" +LABEL org.openbuildservice.disturl="%DISTURL%" +LABEL org.opensuse.reference="${REFERENCE_PREFIX}/server:4.4.0.%RELEASE%" +# endlabelprefix + +CMD ["/usr/bin/hub-xmlrpc-api"] diff --git a/containers/hub-xmlrpc-api-image/_service b/containers/hub-xmlrpc-api-image/_service new file mode 100644 index 000000000000..bde87fa5bc1f --- /dev/null +++ b/containers/hub-xmlrpc-api-image/_service @@ -0,0 +1,4 @@ + + + + diff --git a/containers/hub-xmlrpc-api-image/hub-xmlrpc-api.changes b/containers/hub-xmlrpc-api-image/hub-xmlrpc-api.changes new file mode 100644 index 000000000000..e2637480450b --- /dev/null +++ b/containers/hub-xmlrpc-api-image/hub-xmlrpc-api.changes @@ -0,0 +1,4 @@ +------------------------------------------------------------------- +Thu Jun 22 07:30:36 UTC 2023 - Cédric Bosdonnat + +- Initial image for Uyuni Hub XML-RPC API diff --git a/containers/hub-xmlrpc-api-image/tito.props b/containers/hub-xmlrpc-api-image/tito.props new file mode 100644 index 000000000000..f22069cb8efa --- /dev/null +++ b/containers/hub-xmlrpc-api-image/tito.props @@ -0,0 +1,2 @@ +[buildconfig] +tagger = tito.tagger.SUSEContainerTagger diff --git a/containers/server-helm/.helmignore b/containers/server-helm/.helmignore new file mode 100644 index 000000000000..0e8a0eb36f4c --- /dev/null +++ b/containers/server-helm/.helmignore @@ -0,0 +1,23 @@ +# Patterns to ignore when building packages. +# This supports shell glob matching, relative path matching, and +# negation (prefixed with !). Only one pattern per line. +.DS_Store +# Common VCS dirs +.git/ +.gitignore +.bzr/ +.bzrignore +.hg/ +.hgignore +.svn/ +# Common backup files +*.swp +*.bak +*.tmp +*.orig +*~ +# Various IDEs +.project +.idea/ +*.tmproj +.vscode/ diff --git a/containers/server-helm/Chart.yaml b/containers/server-helm/Chart.yaml new file mode 100644 index 000000000000..84bebb20b9db --- /dev/null +++ b/containers/server-helm/Chart.yaml @@ -0,0 +1,11 @@ +# SPDX-License-Identifier: MIT +#!BuildTag: uyuni/server:latest +#!BuildTag: uyuni/server:4.4.0 +#!BuildTag: uyuni/server:4.4.0-build%RELEASE% +apiVersion: v2 +name: server +description: Uyuni server containers. +type: application +home: https://www.uyuni-project.org/ +icon: https://www.uyuni-project.org/img/uyuni-logo.svg +version: 4.4.0 diff --git a/containers/server-helm/_service b/containers/server-helm/_service new file mode 100644 index 000000000000..dc713a1f9381 --- /dev/null +++ b/containers/server-helm/_service @@ -0,0 +1,3 @@ + + + diff --git a/containers/server-helm/charts/.gitkeep b/containers/server-helm/charts/.gitkeep new file mode 100644 index 000000000000..e69de29bb2d1 diff --git a/containers/server-helm/server-helm.changes b/containers/server-helm/server-helm.changes new file mode 100644 index 000000000000..efc36b9365e0 --- /dev/null +++ b/containers/server-helm/server-helm.changes @@ -0,0 +1,4 @@ +------------------------------------------------------------------- +Thu Mar 9 13:43:51 UTC 2023 - Cédric Bosdonnat + +- Initial version diff --git a/containers/server-helm/templates/_helpers.tpl b/containers/server-helm/templates/_helpers.tpl new file mode 100644 index 000000000000..2cba9281b6b8 --- /dev/null +++ b/containers/server-helm/templates/_helpers.tpl @@ -0,0 +1,11 @@ +{{- define "deployment.container.image" -}} +{{- $imageName := .name -}} +{{- $uri := (printf "%s/%s:%s" .global.Values.repository $imageName .global.Values.version) | default .global.Chart.AppVersion -}} +{{- if .global.Values.images -}} +{{- $image := (get .global.Values.images $imageName) -}} +{{- if $image -}} +{{- $uri = $image -}} +{{- end -}} +{{- end -}} +{{- $uri -}} +{{- end -}} \ No newline at end of file diff --git a/containers/server-helm/templates/deployment.yaml b/containers/server-helm/templates/deployment.yaml new file mode 100644 index 000000000000..524a934ac099 --- /dev/null +++ b/containers/server-helm/templates/deployment.yaml @@ -0,0 +1,583 @@ +apiVersion: apps/v1 +kind: Deployment +metadata: + name: uyuni + namespace: "{{ .Release.Namespace }}" +spec: + replicas: 1 + selector: + matchLabels: + app: uyuni + template: + metadata: + labels: + app: uyuni + spec: + initContainers: + - name: init-etc-tls + image: {{- include "deployment.container.image" (dict "name" "server" "global" .) | indent 1}} + imagePullPolicy: {{ .Values.pullPolicy }} + command: + - sh + - -x + - -c + - > + chown --reference=/etc/pki/tls /mnt; + chmod --reference=/etc/pki/tls /mnt; + if [ -z "$(ls -A /mnt)" ]; then + cp -a /etc/pki/tls/. /mnt; + ln -s /etc/pki/spacewalk-tls/spacewalk.crt /mnt/certs/spacewalk.crt; + ln -s /etc/pki/spacewalk-tls/spacewalk.key /mnt/private/spacewalk.key; + cp /etc/pki/spacewalk-tls/spacewalk.key /mnt/private/pg-spacewalk.key; + chown postgres:postgres /mnt/private/pg-spacewalk.key; + fi + volumeMounts: + - mountPath: /mnt + name: etc-tls + - name: tls-key + mountPath: /etc/pki/spacewalk-tls + - name: init-var-cobbler + image: {{- include "deployment.container.image" (dict "name" "server" "global" .) | indent 1}} + imagePullPolicy: {{ .Values.pullPolicy }} + command: + - sh + - -x + - -c + - > + chown --reference=/var/lib/cobbler /mnt; + chmod --reference=/var/lib/cobbler /mnt; + if [ -z "$(ls -A /mnt)" ]; then + cp -a /var/lib/cobbler/. /mnt; + fi + volumeMounts: + - mountPath: /mnt + name: var-cobbler + - name: init-var-pgsql + image: {{- include "deployment.container.image" (dict "name" "server" "global" .) | indent 1}} + imagePullPolicy: {{ .Values.pullPolicy }} + command: + - sh + - -x + - -c + - > + chown --reference=/var/lib/pgsql /mnt; + chmod --reference=/var/lib/pgsql /mnt; + if [ -z "$(ls -A /mnt)" ]; then + cp -a /var/lib/pgsql/. /mnt; + fi + volumeMounts: + - mountPath: /mnt + name: var-pgsql + - name: init-var-cache + image: {{- include "deployment.container.image" (dict "name" "server" "global" .) | indent 1}} + imagePullPolicy: {{ .Values.pullPolicy }} + command: + - sh + - -x + - -c + - > + chown --reference=/var/cache /mnt; + chmod --reference=/var/cache /mnt; + if [ -z "$(ls -A /mnt)" ]; then + cp -a /var/cache/. /mnt; + fi + volumeMounts: + - mountPath: /mnt + name: var-cache + - name: init-var-log + image: {{- include "deployment.container.image" (dict "name" "server" "global" .) | indent 1}} + imagePullPolicy: {{ .Values.pullPolicy }} + command: + - sh + - -x + - -c + - > + chown --reference=/var/log /mnt; + chmod --reference=/var/log /mnt; + if [ -z "$(ls -A /mnt)" ]; then + cp -a /var/log/. /mnt; + fi + volumeMounts: + - mountPath: /mnt + name: var-log + - name: init-srv-salt + image: {{- include "deployment.container.image" (dict "name" "server" "global" .) | indent 1}} + imagePullPolicy: {{ .Values.pullPolicy }} + command: + - sh + - -x + - -c + - > + chown --reference=/srv/salt /mnt; + chmod --reference=/srv/salt /mnt + volumeMounts: + - mountPath: /mnt + name: srv-salt + - name: init-srv-www-pub + image: {{- include "deployment.container.image" (dict "name" "server" "global" .) | indent 1}} + imagePullPolicy: {{ .Values.pullPolicy }} + command: + - sh + - -x + - -c + - > + chown --reference=/srv/www/htdocs/pub /mnt; + chmod --reference=/srv/www/htdocs/pub /mnt; + if [ -z "$(ls -A /mnt)" ]; then + cp -a /srv/www/htdocs/pub/. /mnt; + ln -s /etc/pki/trust/anchors/LOCAL-RHN-ORG-TRUSTED-SSL-CERT /mnt/RHN-ORG-TRUSTED-SSL-CERT; + fi + volumeMounts: + - mountPath: /mnt + name: srv-www-pub + - name: init-srv-www-cobbler + image: {{- include "deployment.container.image" (dict "name" "server" "global" .) | indent 1}} + imagePullPolicy: {{ .Values.pullPolicy }} + command: + - sh + - -x + - -c + - > + chown --reference=/srv/www/cobbler /mnt; + chmod --reference=/srv/www/cobbler /mnt; + if [ -z "$(ls -A /mnt)" ]; then + cp -a /srv/www/cobbler/. /mnt; + fi + volumeMounts: + - mountPath: /mnt + name: srv-www-cobbler + - name: init-srv-www-osimages + image: {{- include "deployment.container.image" (dict "name" "server" "global" .) | indent 1}} + imagePullPolicy: {{ .Values.pullPolicy }} + command: + - sh + - -x + - -c + - > + chown --reference=/srv/www/os-images /mnt; + chmod --reference=/srv/www/os-images /mnt + volumeMounts: + - mountPath: /mnt + name: srv-www-osimages + - name: init-srv-tftpboot + image: {{- include "deployment.container.image" (dict "name" "server" "global" .) | indent 1}} + imagePullPolicy: {{ .Values.pullPolicy }} + command: + - sh + - -x + - -c + - > + chown --reference=/srv/tftpboot /mnt; + chmod --reference=/srv/tftpboot /mnt; + if [ -z "$(ls -A /mnt)" ]; then + cp -a /srv/tftpboot/. /mnt; + fi + volumeMounts: + - mountPath: /mnt + name: srv-tftpboot + - name: init-srv-formulametadata + image: {{- include "deployment.container.image" (dict "name" "server" "global" .) | indent 1}} + imagePullPolicy: {{ .Values.pullPolicy }} + command: + - sh + - -x + - -c + - > + chown --reference=/srv/formula_metadata /mnt; + chmod --reference=/srv/formula_metadata /mnt; + if [ -z "$(ls -A /mnt)" ]; then + cp -a /srv/formula_metadata/. /mnt; + fi + volumeMounts: + - mountPath: /mnt + name: srv-formulametadata + - name: init-srv-pillar + image: {{- include "deployment.container.image" (dict "name" "server" "global" .) | indent 1}} + imagePullPolicy: {{ .Values.pullPolicy }} + command: + - sh + - -x + - -c + - > + chown --reference=/srv/pillar /mnt; + chmod --reference=/srv/pillar /mnt; + if [ -z "$(ls -A /mnt)" ]; then + cp -a /srv/pillar/. /mnt; + fi + volumeMounts: + - mountPath: /mnt + name: srv-pillar + - name: init-srv-susemanager + image: {{- include "deployment.container.image" (dict "name" "server" "global" .) | indent 1}} + imagePullPolicy: {{ .Values.pullPolicy }} + command: + - sh + - -x + - -c + - > + chown --reference=/srv/susemanager /mnt; + chmod --reference=/srv/susemanager /mnt; + if [ -z "$(ls -A /mnt)" ]; then + cp -a /srv/susemanager/. /mnt; + fi + volumeMounts: + - mountPath: /mnt + name: srv-susemanager + - name: init-srv-spacewalk + image: {{- include "deployment.container.image" (dict "name" "server" "global" .) | indent 1}} + imagePullPolicy: {{ .Values.pullPolicy }} + command: + - sh + - -x + - -c + - > + chown --reference=/srv/spacewalk /mnt; + chmod --reference=/srv/spacewalk /mnt; + if [ -z "$(ls -A /mnt)" ]; then + cp -a /srv/spacewalk/. /mnt; + fi + volumeMounts: + - mountPath: /mnt + name: srv-spacewalk + - name: init-root + image: {{- include "deployment.container.image" (dict "name" "server" "global" .) | indent 1}} + imagePullPolicy: {{ .Values.pullPolicy }} + command: + - sh + - -x + - -c + - > + chown --reference=/root /mnt; + chmod --reference=/root /mnt; + if [ -z "$(ls -A /mnt)" ]; then + cp -a /root/. /mnt; + fi + volumeMounts: + - mountPath: /mnt + name: root + - name: init-etc-apache2 + image: {{- include "deployment.container.image" (dict "name" "server" "global" .) | indent 1}} + imagePullPolicy: {{ .Values.pullPolicy }} + command: + - sh + - -x + - -c + - > + chown --reference=/etc/apache2 /mnt; + chmod --reference=/etc/apache2 /mnt; + if [ -z "$(ls -A /mnt)" ]; then + cp -a /etc/apache2/. /mnt; + fi + volumeMounts: + - mountPath: /mnt + name: etc-apache2 + - name: init-etc-rhn + image: {{- include "deployment.container.image" (dict "name" "server" "global" .) | indent 1}} + imagePullPolicy: {{ .Values.pullPolicy }} + command: + - sh + - -x + - -c + - > + chown --reference=/etc/rhn /mnt; + chmod --reference=/etc/rhn /mnt; + if [ -z "$(ls -A /mnt)" ]; then + cp -a /etc/rhn/. /mnt; + fi + volumeMounts: + - mountPath: /mnt + name: etc-rhn + - name: init-etc-systemd + image: {{- include "deployment.container.image" (dict "name" "server" "global" .) | indent 1}} + imagePullPolicy: {{ .Values.pullPolicy }} + command: + - sh + - -x + - -c + - > + chown --reference=/etc/systemd/system/multi-user.target.wants /mnt; + chmod --reference=/etc/systemd/system/multi-user.target.wants /mnt; + if [ -z "$(ls -A /mnt)" ]; then + cp -a /etc/systemd/system/multi-user.target.wants/. /mnt; + fi + volumeMounts: + - mountPath: /mnt + name: etc-systemd + - name: init-etc-salt + image: {{- include "deployment.container.image" (dict "name" "server" "global" .) | indent 1}} + imagePullPolicy: {{ .Values.pullPolicy }} + command: + - sh + - -x + - -c + - > + chown --reference=/etc/salt /mnt; + chmod --reference=/etc/salt /mnt; + if [ -z "$(ls -A /mnt)" ]; then + cp -a /etc/salt/. /mnt; + fi + volumeMounts: + - mountPath: /mnt + name: etc-salt + - name: init-etc-tomcat + image: {{- include "deployment.container.image" (dict "name" "server" "global" .) | indent 1}} + imagePullPolicy: {{ .Values.pullPolicy }} + command: + - sh + - -x + - -c + - > + chown --reference=/etc/tomcat /mnt; + chmod --reference=/etc/tomcat /mnt; + if [ -z "$(ls -A /mnt)" ]; then + cp -a /etc/tomcat/. /mnt; + fi + volumeMounts: + - mountPath: /mnt + name: etc-tomcat + - name: init-etc-cobbler + image: {{- include "deployment.container.image" (dict "name" "server" "global" .) | indent 1}} + imagePullPolicy: {{ .Values.pullPolicy }} + command: + - sh + - -x + - -c + - > + chown --reference=/etc/cobbler /mnt; + chmod --reference=/etc/cobbler /mnt; + if [ -z "$(ls -A /mnt)" ]; then + cp -a /etc/cobbler/. /mnt; + fi + volumeMounts: + - mountPath: /mnt + name: etc-cobbler + - name: init-etc-sysconfig + image: {{- include "deployment.container.image" (dict "name" "server" "global" .) | indent 1}} + imagePullPolicy: {{ .Values.pullPolicy }} + command: + - sh + - -x + - -c + - > + chown --reference=/etc/sysconfig /mnt; + chmod --reference=/etc/sysconfig /mnt; + if [ -z "$(ls -A /mnt)" ]; then + cp -a /etc/sysconfig/. /mnt; + fi + volumeMounts: + - mountPath: /mnt + name: etc-sysconfig + - name: init-etc-postfix + image: {{- include "deployment.container.image" (dict "name" "server" "global" .) | indent 1}} + imagePullPolicy: {{ .Values.pullPolicy }} + command: + - sh + - -x + - -c + - > + chown --reference=/etc/postfix /mnt; + chmod --reference=/etc/postfix /mnt; + if [ -z "$(ls -A /mnt)" ]; then + cp -a /etc/postfix/. /mnt; + fi + volumeMounts: + - mountPath: /mnt + name: etc-postfix + containers: + - name: uyuni + image: {{- include "deployment.container.image" (dict "name" "server" "global" .) | indent 1}} + imagePullPolicy: {{ .Values.pullPolicy }} + ports: + - containerPort: 443 + - containerPort: 80 + - containerPort: 4505 + - containerPort: 4506 + - containerPort: 69 +{{- if .Values.enableMonitoring | default true }} + - containerPort: 9100 + - containerPort: 9187 + - containerPort: 9800 +{{- end }} + protocol: UDP + - containerPort: 25151 + - containerPort: 5432 +{{- if .Values.exposeJavaDebug | default false }} + - containerPort: 8000 + - containerPort: 8001 +{{- end }} + env: + - name: TZ + value: {{ .Values.timezone | default "Etc/UTC" }} +{{- if and .Values.mirror (or .Values.mirror.claimName .Values.mirror.hostPath) }} + - name: MIRROR_PATH + value: /mirror +{{- end }} + volumeMounts: + - mountPath: /run + name: tmp + - mountPath: /sys/fs/cgroup + name: cgroup + - mountPath: /var/lib/cobbler + name: var-cobbler + - mountPath: /var/lib/pgsql + name: var-pgsql + - mountPath: /var/cache + name: var-cache + - mountPath: /var/spacewalk + name: var-spacewalk + - mountPath: /var/log + name: var-log + - mountPath: /srv/salt + name: srv-salt + - mountPath: /srv/www/htdocs/pub + name: srv-www-pub + - mountPath: /srv/www/cobbler + name: srv-www-cobbler + - mountPath: /srv/www/os-images + name: srv-www-osimages + - mountPath: /srv/tftpboot + name: srv-tftpboot + - mountPath: /srv/formula_metadata + name: srv-formulametadata + - mountPath: /srv/pillar + name: srv-pillar + - mountPath: /srv/susemanager + name: srv-susemanager + - mountPath: /srv/spacewalk + name: srv-spacewalk + - mountPath: /root + name: root + - mountPath: /etc/apache2 + name: etc-apache2 + - mountPath: /etc/rhn + name: etc-rhn + - mountPath: /etc/systemd/system/multi-user.target.wants + name: etc-systemd + - mountPath: /etc/salt + name: etc-salt + - mountPath: /etc/tomcat + name: etc-tomcat + - mountPath: /etc/cobbler + name: etc-cobbler + - mountPath: /etc/sysconfig + name: etc-sysconfig + - mountPath: /etc/pki/tls + name: etc-tls + - mountPath: /etc/postfix + name: etc-postfix + - name: ca-cert + mountPath: /etc/pki/trust/anchors/LOCAL-RHN-ORG-TRUSTED-SSL-CERT + readOnly: true + subPath: ca.crt + - name: tls-key + mountPath: /etc/pki/spacewalk-tls +{{- if and .Values.mirror (or .Values.mirror.claimName .Values.mirror.hostPath) }} + - name: mirror + mountPath: /mirror +{{- end }} + volumes: + - name: tmp + emptyDir: + medium: Memory + sizeLimit: 256Mi + - name: cgroup + hostPath: + path: /sys/fs/cgroup + type: Directory + - name: var-cobbler + persistentVolumeClaim: + claimName: var-cobbler + - name: var-pgsql + persistentVolumeClaim: + claimName: var-pgsql + - name: var-cache + persistentVolumeClaim: + claimName: var-cache + - name: var-spacewalk + persistentVolumeClaim: + claimName: var-spacewalk + - name: var-log + persistentVolumeClaim: + claimName: var-log + - name: srv-salt + persistentVolumeClaim: + claimName: srv-salt + - name: srv-www-pub + persistentVolumeClaim: + claimName: srv-www-pub + - name: srv-www-cobbler + persistentVolumeClaim: + claimName: srv-www-cobbler + - name: srv-www-osimages + persistentVolumeClaim: + claimName: srv-www-osimages + - name: srv-tftpboot + persistentVolumeClaim: + claimName: srv-tftpboot + - name: srv-formulametadata + persistentVolumeClaim: + claimName: srv-formulametadata + - name: srv-pillar + persistentVolumeClaim: + claimName: srv-pillar + - name: srv-susemanager + persistentVolumeClaim: + claimName: srv-susemanager + - name: srv-spacewalk + persistentVolumeClaim: + claimName: srv-spacewalk + - name: root + persistentVolumeClaim: + claimName: root + - name: etc-apache2 + persistentVolumeClaim: + claimName: etc-apache2 + - name: etc-rhn + persistentVolumeClaim: + claimName: etc-rhn + - name: etc-systemd + persistentVolumeClaim: + claimName: etc-systemd + - name: etc-salt + persistentVolumeClaim: + claimName: etc-salt + - name: etc-tomcat + persistentVolumeClaim: + claimName: etc-tomcat + - name: etc-cobbler + persistentVolumeClaim: + claimName: etc-cobbler + - name: etc-sysconfig + persistentVolumeClaim: + claimName: etc-sysconfig + - name: etc-postfix + persistentVolumeClaim: + claimName: etc-postfix + - name: ca-cert + configMap: + name: uyuni-ca + - name: etc-tls + persistentVolumeClaim: + claimName: etc-tls + - name: tls-key + secret: + secretName: uyuni-cert + items: + - key: tls.crt + path: spacewalk.crt + - key: tls.key + path: spacewalk.key + mode: 0600 +{{- if .Values.mirror }} + {{- if .Values.mirror.claimName }} + - name: mirror + persistentVolumeClaim: + claimName: {{ .Values.mirror.claimName }} + {{- else if .Values.mirror.hostPath }} + - name: mirror + hostPath: + path: {{ .Values.mirror.hostPath }} + {{- end }} +{{- end }} + dnsPolicy: ClusterFirst + restartPolicy: Always diff --git a/containers/server-helm/templates/ingress.yaml b/containers/server-helm/templates/ingress.yaml new file mode 100644 index 000000000000..0d24433f18b1 --- /dev/null +++ b/containers/server-helm/templates/ingress.yaml @@ -0,0 +1,185 @@ +apiVersion: networking.k8s.io/v1 +kind: Ingress +metadata: + creationTimestamp: null + name: uyuni-ingress-ssl + namespace: "{{ .Release.Namespace }}" + annotations: +{{- if eq .Values.ingress "traefik" }} + traefik.ingress.kubernetes.io/router.tls: "true" + traefik.ingress.kubernetes.io/router.tls.domains.n.main: "{{ .Values.fqdn }}" + traefik.ingress.kubernetes.io/router.entrypoints: "websecure,web" +{{- end }} +{{- if .Values.ingressSslAnnotations }} +{{ toYaml .Values.ingressSslAnnotations | indent 4 }} +{{- end }} + labels: + app: uyuni +spec: + tls: + - hosts: + - {{ .Values.fqdn }} + secretName: uyuni-cert + rules: + - host: {{ .Values.fqdn }} + http: + paths: + - backend: + service: + name: uyuni-tcp + port: + number: 80 + path: / + pathType: Prefix +{{- if eq .Values.ingress "traefik" }} +--- +apiVersion: networking.k8s.io/v1 +kind: Ingress +metadata: + creationTimestamp: null + name: uyuni-ingress-ssl-redirect + namespace: "{{ .Release.Namespace }}" + annotations: + traefik.ingress.kubernetes.io/router.middlewares: "default-uyuni-https-redirect@kubernetescrd" + traefik.ingress.kubernetes.io/router.entrypoints: "web" + labels: + app: uyuni +spec: + rules: + - host: {{ .Values.fqdn }} + http: + paths: + - backend: + service: + name: uyuni-tcp + port: + number: 80 + path: / + pathType: Prefix +{{- end }} +--- +apiVersion: networking.k8s.io/v1 +kind: Ingress +metadata: + creationTimestamp: null + name: uyuni-ingress-nossl + namespace: "{{ .Release.Namespace }}" + annotations: +{{- if eq .Values.ingress "nginx" }} + nginx.ingress.kubernetes.io/ssl-redirect: "false" +{{- else if eq .Values.ingress "traefik" }} + traefik.ingress.kubernetes.io/router.tls: "false" + traefik.ingress.kubernetes.io/router.entrypoints: "web" +{{- end }} + labels: + app: uyuni +spec: + rules: + - host: {{ .Values.fqdn }} + http: + paths: + - backend: + service: + name: uyuni-tcp + port: + number: 80 + path: /pub + pathType: Prefix + - backend: + service: + name: uyuni-tcp + port: + number: 80 + path: /rhn/([^/])+/DownloadFile + pathType: Prefix + - backend: + service: + name: uyuni-tcp + port: + number: 80 + path: /(rhn/)?rpc/api + pathType: Prefix + - backend: + service: + name: uyuni-tcp + port: + number: 80 + path: /rhn/errors + pathType: Prefix + - backend: + service: + name: uyuni-tcp + port: + number: 80 + path: /rhn/ty/TinyUrl + pathType: Prefix + - backend: + service: + name: uyuni-tcp + port: + number: 80 + path: /rhn/websocket + pathType: Prefix + - backend: + service: + name: uyuni-tcp + port: + number: 80 + path: /rhn/metrics + pathType: Prefix + - backend: + service: + name: uyuni-tcp + port: + number: 80 + path: /cobbler_api + pathType: Prefix + - backend: + service: + name: uyuni-tcp + port: + number: 80 + path: /cblr + pathType: Prefix + - backend: + service: + name: uyuni-tcp + port: + number: 80 + path: /httpboot + pathType: Prefix + - backend: + service: + name: uyuni-tcp + port: + number: 80 + path: /images + pathType: Prefix + - backend: + service: + name: uyuni-tcp + port: + number: 80 + path: /cobbler + pathType: Prefix + - backend: + service: + name: uyuni-tcp + port: + number: 80 + path: /os-images + pathType: Prefix + - backend: + service: + name: uyuni-tcp + port: + number: 80 + path: /tftp + pathType: Prefix + - backend: + service: + name: uyuni-tcp + port: + number: 80 + path: /docs + pathType: Prefix diff --git a/containers/server-helm/templates/k3s-ingress-routes.yaml b/containers/server-helm/templates/k3s-ingress-routes.yaml new file mode 100644 index 000000000000..1a2ccad1e0d3 --- /dev/null +++ b/containers/server-helm/templates/k3s-ingress-routes.yaml @@ -0,0 +1,140 @@ +{{- if eq .Values.ingress "traefik" }} +apiVersion: traefik.containo.us/v1alpha1 +kind: Middleware +metadata: + name: uyuni-https-redirect + namespace: "{{ .Release.Namespace }}" +spec: + redirectScheme: + scheme: https + permanent: true +--- +apiVersion: traefik.containo.us/v1alpha1 +kind: IngressRouteTCP +metadata: + name: postgresql-router + namespace: "{{ .Release.Namespace }}" +spec: + entryPoints: + - postgres + routes: + - match: HostSNI(`*`) + services: + - name: uyuni-tcp + port: 5432 +--- +apiVersion: traefik.containo.us/v1alpha1 +kind: IngressRouteTCP +metadata: + name: salt-publish-router + namespace: "{{ .Release.Namespace }}" +spec: + entryPoints: + - salt-publish + routes: + - match: HostSNI(`*`) + services: + - name: uyuni-tcp + port: 4505 +--- +apiVersion: traefik.containo.us/v1alpha1 +kind: IngressRouteTCP +metadata: + name: salt-request-router + namespace: "{{ .Release.Namespace }}" +spec: + entryPoints: + - salt-request + routes: + - match: HostSNI(`*`) + services: + - name: uyuni-tcp + port: 4506 +--- +apiVersion: traefik.containo.us/v1alpha1 +kind: IngressRouteTCP +metadata: + name: cobbler-router + namespace: "{{ .Release.Namespace }}" +spec: + entryPoints: + - cobbler + routes: + - match: HostSNI(`*`) + services: + - name: uyuni-tcp + port: 25151 +{{- if .Values.enableMonitoring | default true }} +--- +apiVersion: traefik.containo.us/v1alpha1 +kind: IngressRouteTCP +metadata: + name: node-exporter-router + namespace: "{{ .Release.Namespace }}" +spec: + entryPoints: + - node-metrics + routes: + - match: HostSNI(`*`) + services: + - name: uyuni-tcp + port: 9100 +--- +apiVersion: traefik.containo.us/v1alpha1 +kind: IngressRouteTCP +metadata: + name: postgresql-exporter-router + namespace: "{{ .Release.Namespace }}" +spec: + entryPoints: + - psql-metrics + routes: + - match: HostSNI(`*`) + services: + - name: uyuni-tcp + port: 9187 +{{- end }} +{{- if .Values.exposeJavaDebug }} +--- +apiVersion: traefik.containo.us/v1alpha1 +kind: IngressRouteTCP +metadata: + name: tomcat-debug-router + namespace: "{{ .Release.Namespace }}" +spec: + entryPoints: + - tomcat-debug + routes: + - match: HostSNI(`*`) + services: + - name: uyuni-tcp + port: 8000 +--- +apiVersion: traefik.containo.us/v1alpha1 +kind: IngressRouteTCP +metadata: + name: tasko-debug-router + namespace: "{{ .Release.Namespace }}" +spec: + entryPoints: + - tasko-debug + routes: + - match: HostSNI(`*`) + services: + - name: uyuni-tcp + port: 8001 +{{- end }} +--- +apiVersion: traefik.containo.us/v1alpha1 +kind: IngressRouteUDP +metadata: + name: tftp-router + namespace: "{{ .Release.Namespace }}" +spec: + entryPoints: + - tftp + routes: + - services: + - name: uyuni-udp + port: 69 +{{- end }} diff --git a/containers/server-helm/templates/service.yaml b/containers/server-helm/templates/service.yaml new file mode 100644 index 000000000000..a0fa7301d8b7 --- /dev/null +++ b/containers/server-helm/templates/service.yaml @@ -0,0 +1,81 @@ +apiVersion: v1 +kind: Service +metadata: + labels: + app: uyuni + name: uyuni-tcp + namespace: "{{ .Release.Namespace }}" +{{- if .Values.servicesAnnotations }} + annotations: +{{ toYaml .Values.servicesAnnotations | indent 4 }} +{{- end }} +spec: + ports: + - name: http + port: 80 + protocol: TCP + targetPort: 80 + - name: salt-publish + port: 4505 + protocol: TCP + targetPort: 4505 + - name: salt-request + port: 4506 + protocol: TCP + targetPort: 4506 + - name: cobbler + port: 25151 + protocol: TCP + targetPort: 25151 + - name: postgresql + port: 5432 + protocol: TCP + targetPort: 5432 +{{- if .Values.enableMonitoring | default true }} + - name: node-exporter + port: 9100 + protocol: TCP + targetPort: 9100 + - name: postgres-exporter + port: 9187 + protocol: TCP + targetPort: 9187 + - name: taskomatic + port: 9800 + protocol: TCP + targetPort: 9800 +{{- end }} +{{- if .Values.exposeJavaDebug | default false }} + - name: tomcat-debug + port: 8000 + protocol: TCP + targetPort: 8000 + - name: tasko-debug + port: 8001 + protocol: TCP + targetPort: 8001 +{{- end }} + selector: + app: uyuni + type: ClusterIP +--- +apiVersion: v1 +kind: Service +metadata: + labels: + app: uyuni + name: uyuni-udp + namespace: "{{ .Release.Namespace }}" +{{- if .Values.servicesAnnotations }} + annotations: +{{ toYaml .Values.servicesAnnotations | indent 4 }} +{{- end }} +spec: + ports: + - name: tftp + port: 69 + protocol: UDP + targetPort: 69 + selector: + app: uyuni + type: ClusterIP diff --git a/containers/server-helm/templates/volumes.yaml b/containers/server-helm/templates/volumes.yaml new file mode 100644 index 000000000000..8ad678d3842b --- /dev/null +++ b/containers/server-helm/templates/volumes.yaml @@ -0,0 +1,575 @@ +apiVersion: v1 +kind: PersistentVolumeClaim +metadata: + name: var-cobbler + namespace: "{{ .Release.Namespace }}" +spec: +{{- if .Values.storageClass }} +{{- if (eq "-" .Values.storageClass) }} + storageClassName: "" +{{- else }} + storageClassName: "{{ .Values.storageClass }}" +{{- end }} +{{- end }} + accessModes: +{{ toYaml .Values.accessModes | indent 4 }} + resources: + requests: + storage: 100Gi +{{- if .Values.matchPvByLabel }} + selector: + matchLabels: + data: var-cobbler +{{- end }} +--- +apiVersion: v1 +kind: PersistentVolumeClaim +metadata: + name: var-pgsql + namespace: "{{ .Release.Namespace }}" +spec: +{{- if .Values.storageClass }} +{{- if (eq "-" .Values.storageClass) }} + storageClassName: "" +{{- else }} + storageClassName: "{{ .Values.storageClass }}" +{{- end }} +{{- end }} + accessModes: +{{ toYaml .Values.accessModes | indent 4 }} + resources: + requests: + storage: 100Gi +{{- if .Values.matchPvByLabel }} + selector: + matchLabels: + data: var-pgsql +{{- end }} +--- +apiVersion: v1 +kind: PersistentVolumeClaim +metadata: + name: var-cache + namespace: "{{ .Release.Namespace }}" +spec: +{{- if .Values.storageClass }} +{{- if (eq "-" .Values.storageClass) }} + storageClassName: "" +{{- else }} + storageClassName: "{{ .Values.storageClass }}" +{{- end }} +{{- end }} + accessModes: +{{ toYaml .Values.accessModes | indent 4 }} + resources: + requests: + storage: 100Gi +{{- if .Values.matchPvByLabel }} + selector: + matchLabels: + data: var-cache +{{- end }} +--- +apiVersion: v1 +kind: PersistentVolumeClaim +metadata: + name: var-spacewalk + namespace: "{{ .Release.Namespace }}" +spec: +{{- if .Values.storageClass }} +{{- if (eq "-" .Values.storageClass) }} + storageClassName: "" +{{- else }} + storageClassName: "{{ .Values.storageClass }}" +{{- end }} +{{- end }} + accessModes: +{{ toYaml .Values.accessModes | indent 4 }} + resources: + requests: + storage: 100Gi +{{- if .Values.matchPvByLabel }} + selector: + matchLabels: + data: var-spacewalk +{{- end }} +--- +apiVersion: v1 +kind: PersistentVolumeClaim +metadata: + name: var-log + namespace: "{{ .Release.Namespace }}" +spec: +{{- if .Values.storageClass }} +{{- if (eq "-" .Values.storageClass) }} + storageClassName: "" +{{- else }} + storageClassName: "{{ .Values.storageClass }}" +{{- end }} +{{- end }} + accessModes: +{{ toYaml .Values.accessModes | indent 4 }} + resources: + requests: + storage: 2Gi +{{- if .Values.matchPvByLabel }} + selector: + matchLabels: + data: var-log +{{- end }} +--- +apiVersion: v1 +kind: PersistentVolumeClaim +metadata: + name: srv-salt + namespace: "{{ .Release.Namespace }}" +spec: +{{- if .Values.storageClass }} +{{- if (eq "-" .Values.storageClass) }} + storageClassName: "" +{{- else }} + storageClassName: "{{ .Values.storageClass }}" +{{- end }} +{{- end }} + accessModes: +{{ toYaml .Values.accessModes | indent 4 }} + resources: + requests: + storage: 100Mi +{{- if .Values.matchPvByLabel }} + selector: + matchLabels: + data: srv-salt +{{- end }} +--- +apiVersion: v1 +kind: PersistentVolumeClaim +metadata: + name: srv-www-pub + namespace: "{{ .Release.Namespace }}" +spec: +{{- if .Values.storageClass }} +{{- if (eq "-" .Values.storageClass) }} + storageClassName: "" +{{- else }} + storageClassName: "{{ .Values.storageClass }}" +{{- end }} +{{- end }} + accessModes: +{{ toYaml .Values.accessModes | indent 4 }} + resources: + requests: + storage: 100Mi +{{- if .Values.matchPvByLabel }} + selector: + matchLabels: + data: srv-www-pub +{{- end }} +--- +apiVersion: v1 +kind: PersistentVolumeClaim +metadata: + name: srv-www-cobbler + namespace: "{{ .Release.Namespace }}" +spec: +{{- if .Values.storageClass }} +{{- if (eq "-" .Values.storageClass) }} + storageClassName: "" +{{- else }} + storageClassName: "{{ .Values.storageClass }}" +{{- end }} +{{- end }} + accessModes: +{{ toYaml .Values.accessModes | indent 4 }} + resources: + requests: + storage: 100Mi +{{- if .Values.matchPvByLabel }} + selector: + matchLabels: + data: srv-www-cobbler +{{- end }} +--- +apiVersion: v1 +kind: PersistentVolumeClaim +metadata: + name: srv-www-osimages + namespace: "{{ .Release.Namespace }}" +spec: +{{- if .Values.storageClass }} +{{- if (eq "-" .Values.storageClass) }} + storageClassName: "" +{{- else }} + storageClassName: "{{ .Values.storageClass }}" +{{- end }} +{{- end }} + accessModes: +{{ toYaml .Values.accessModes | indent 4 }} + resources: + requests: + storage: 100Mi +{{- if .Values.matchPvByLabel }} + selector: + matchLabels: + data: srv-www-osimages +{{- end }} +--- +apiVersion: v1 +kind: PersistentVolumeClaim +metadata: + name: srv-tftpboot + namespace: "{{ .Release.Namespace }}" +spec: +{{- if .Values.storageClass }} +{{- if (eq "-" .Values.storageClass) }} + storageClassName: "" +{{- else }} + storageClassName: "{{ .Values.storageClass }}" +{{- end }} +{{- end }} + accessModes: +{{ toYaml .Values.accessModes | indent 4 }} + resources: + requests: + storage: 100Mi +{{- if .Values.matchPvByLabel }} + selector: + matchLabels: + data: srv-tftpboot +{{- end }} +--- +apiVersion: v1 +kind: PersistentVolumeClaim +metadata: + name: srv-formulametadata + namespace: "{{ .Release.Namespace }}" +spec: +{{- if .Values.storageClass }} +{{- if (eq "-" .Values.storageClass) }} + storageClassName: "" +{{- else }} + storageClassName: "{{ .Values.storageClass }}" +{{- end }} +{{- end }} + accessModes: +{{ toYaml .Values.accessModes | indent 4 }} + resources: + requests: + storage: 100Mi +{{- if .Values.matchPvByLabel }} + selector: + matchLabels: + data: srv-formulametadata +{{- end }} +--- +apiVersion: v1 +kind: PersistentVolumeClaim +metadata: + name: srv-pillar + namespace: "{{ .Release.Namespace }}" +spec: +{{- if .Values.storageClass }} +{{- if (eq "-" .Values.storageClass) }} + storageClassName: "" +{{- else }} + storageClassName: "{{ .Values.storageClass }}" +{{- end }} +{{- end }} + accessModes: +{{ toYaml .Values.accessModes | indent 4 }} + resources: + requests: + storage: 100Mi +{{- if .Values.matchPvByLabel }} + selector: + matchLabels: + data: srv-pillar +{{- end }} +--- +apiVersion: v1 +kind: PersistentVolumeClaim +metadata: + name: srv-susemanager + namespace: "{{ .Release.Namespace }}" +spec: +{{- if .Values.storageClass }} +{{- if (eq "-" .Values.storageClass) }} + storageClassName: "" +{{- else }} + storageClassName: "{{ .Values.storageClass }}" +{{- end }} +{{- end }} + accessModes: +{{ toYaml .Values.accessModes | indent 4 }} + resources: + requests: + storage: 100Mi +{{- if .Values.matchPvByLabel }} + selector: + matchLabels: + data: srv-susemanager +{{- end }} +--- +apiVersion: v1 +kind: PersistentVolumeClaim +metadata: + name: srv-spacewalk + namespace: "{{ .Release.Namespace }}" +spec: +{{- if .Values.storageClass }} +{{- if (eq "-" .Values.storageClass) }} + storageClassName: "" +{{- else }} + storageClassName: "{{ .Values.storageClass }}" +{{- end }} +{{- end }} + accessModes: +{{ toYaml .Values.accessModes | indent 4 }} + resources: + requests: + storage: 100Mi +{{- if .Values.matchPvByLabel }} + selector: + matchLabels: + data: srv-spacewalk +{{- end }} +--- +apiVersion: v1 +kind: PersistentVolumeClaim +metadata: + name: root + namespace: "{{ .Release.Namespace }}" +spec: +{{- if .Values.storageClass }} +{{- if (eq "-" .Values.storageClass) }} + storageClassName: "" +{{- else }} + storageClassName: "{{ .Values.storageClass }}" +{{- end }} +{{- end }} + accessModes: +{{ toYaml .Values.accessModes | indent 4 }} + resources: + requests: + storage: 10Mi +{{- if .Values.matchPvByLabel }} + selector: + matchLabels: + data: root +{{- end }} +--- +apiVersion: v1 +kind: PersistentVolumeClaim +metadata: + name: etc-apache2 + namespace: "{{ .Release.Namespace }}" +spec: +{{- if .Values.storageClass }} +{{- if (eq "-" .Values.storageClass) }} + storageClassName: "" +{{- else }} + storageClassName: "{{ .Values.storageClass }}" +{{- end }} +{{- end }} + accessModes: +{{ toYaml .Values.accessModes | indent 4 }} + resources: + requests: + storage: 10Mi +{{- if .Values.matchPvByLabel }} + selector: + matchLabels: + data: etc-apache2 +{{- end }} +--- +apiVersion: v1 +kind: PersistentVolumeClaim +metadata: + name: etc-rhn + namespace: "{{ .Release.Namespace }}" +spec: +{{- if .Values.storageClass }} +{{- if (eq "-" .Values.storageClass) }} + storageClassName: "" +{{- else }} + storageClassName: "{{ .Values.storageClass }}" +{{- end }} +{{- end }} + accessModes: +{{ toYaml .Values.accessModes | indent 4 }} + resources: + requests: + storage: 10Mi +{{- if .Values.matchPvByLabel }} + selector: + matchLabels: + data: etc-rhn +{{- end }} +--- +apiVersion: v1 +kind: PersistentVolumeClaim +metadata: + name: etc-systemd + namespace: "{{ .Release.Namespace }}" +spec: +{{- if .Values.storageClass }} +{{- if (eq "-" .Values.storageClass) }} + storageClassName: "" +{{- else }} + storageClassName: "{{ .Values.storageClass }}" +{{- end }} +{{- end }} + accessModes: +{{ toYaml .Values.accessModes | indent 4 }} + resources: + requests: + storage: 10Mi +{{- if .Values.matchPvByLabel }} + selector: + matchLabels: + data: etc-systemd +{{- end }} +--- +apiVersion: v1 +kind: PersistentVolumeClaim +metadata: + name: etc-salt + namespace: "{{ .Release.Namespace }}" +spec: +{{- if .Values.storageClass }} +{{- if (eq "-" .Values.storageClass) }} + storageClassName: "" +{{- else }} + storageClassName: "{{ .Values.storageClass }}" +{{- end }} +{{- end }} + accessModes: +{{ toYaml .Values.accessModes | indent 4 }} + resources: + requests: + storage: 10Mi +{{- if .Values.matchPvByLabel }} + selector: + matchLabels: + data: etc-salt +{{- end }} +--- +apiVersion: v1 +kind: PersistentVolumeClaim +metadata: + name: etc-tomcat + namespace: "{{ .Release.Namespace }}" +spec: +{{- if .Values.storageClass }} +{{- if (eq "-" .Values.storageClass) }} + storageClassName: "" +{{- else }} + storageClassName: "{{ .Values.storageClass }}" +{{- end }} +{{- end }} + accessModes: +{{ toYaml .Values.accessModes | indent 4 }} + resources: + requests: + storage: 10Mi +{{- if .Values.matchPvByLabel }} + selector: + matchLabels: + data: etc-tomcat +{{- end }} +--- +apiVersion: v1 +kind: PersistentVolumeClaim +metadata: + name: etc-cobbler + namespace: "{{ .Release.Namespace }}" +spec: +{{- if .Values.storageClass }} +{{- if (eq "-" .Values.storageClass) }} + storageClassName: "" +{{- else }} + storageClassName: "{{ .Values.storageClass }}" +{{- end }} +{{- end }} + accessModes: +{{ toYaml .Values.accessModes | indent 4 }} + resources: + requests: + storage: 1Mi +{{- if .Values.matchPvByLabel }} + selector: + matchLabels: + data: etc-cobbler +{{- end }} +--- +apiVersion: v1 +kind: PersistentVolumeClaim +metadata: + name: etc-sysconfig + namespace: "{{ .Release.Namespace }}" +spec: +{{- if .Values.storageClass }} +{{- if (eq "-" .Values.storageClass) }} + storageClassName: "" +{{- else }} + storageClassName: "{{ .Values.storageClass }}" +{{- end }} +{{- end }} + accessModes: +{{ toYaml .Values.accessModes | indent 4 }} + resources: + requests: + storage: 1Mi +{{- if .Values.matchPvByLabel }} + selector: + matchLabels: + data: etc-sysconfig +{{- end }} +--- +apiVersion: v1 +kind: PersistentVolumeClaim +metadata: + name: etc-tls + namespace: "{{ .Release.Namespace }}" +spec: +{{- if .Values.storageClass }} +{{- if (eq "-" .Values.storageClass) }} + storageClassName: "" +{{- else }} + storageClassName: "{{ .Values.storageClass }}" +{{- end }} +{{- end }} + accessModes: +{{ toYaml .Values.accessModes | indent 4 }} + resources: + requests: + storage: 1Mi +{{- if .Values.matchPvByLabel }} + selector: + matchLabels: + data: etc-tls +{{- end }} +--- +apiVersion: v1 +kind: PersistentVolumeClaim +metadata: + name: etc-postfix + namespace: "{{ .Release.Namespace }}" +spec: +{{- if .Values.storageClass }} +{{- if (eq "-" .Values.storageClass) }} + storageClassName: "" +{{- else }} + storageClassName: "{{ .Values.storageClass }}" +{{- end }} +{{- end }} + accessModes: +{{ toYaml .Values.accessModes | indent 4 }} + resources: + requests: + storage: 1Mi +{{- if .Values.matchPvByLabel }} + selector: + matchLabels: + data: etc-postfix +{{- end }} diff --git a/containers/server-helm/tito.props b/containers/server-helm/tito.props new file mode 100644 index 000000000000..f22069cb8efa --- /dev/null +++ b/containers/server-helm/tito.props @@ -0,0 +1,2 @@ +[buildconfig] +tagger = tito.tagger.SUSEContainerTagger diff --git a/containers/server-helm/values.yaml b/containers/server-helm/values.yaml new file mode 100644 index 000000000000..cf85d631e853 --- /dev/null +++ b/containers/server-helm/values.yaml @@ -0,0 +1,70 @@ +# The default repository and image version if not defined otherwise +repository: registry.opensuse.org/uyuni +version: latest + +## Allows to override the default URI for an image if defined +## Requires a full URI in a form of /: +## +images: + # server: // + + +## Ref: https://kubernetes.io/docs/concepts/containers/images/#image-pull-policy +## +pullPolicy: "IfNotPresent" + +## uyuni server overall Persistent Volume access modes +## Must match those of existing PV or dynamic provisioner +## Ref: http://kubernetes.io/docs/user-guide/persistent-volumes/ +## +accessModes: + - ReadWriteOnce + +## If defined, storageClassName: +## If set to "-", storageClassName: "", which disables dynamic provisioning +## If undefined (the default) or set to null, no storageClassName spec is +## set, choosing the default provisioner. (gp2 on AWS, standard on +## GKE, AWS & OpenStack) +## +# storageClass: "-" + +## matchPvByLabel adds selectors on each claim to select a PV with a 'data' label matching the PVC name. +## This can be helpful for static PV management. +matchPvByLabel: false + +## mirror defines a volume or host path to mount in the container as server.susemanager.fromdir value. +## Use either claimName or hostPath to reference the volume source. +## +## When using claimName, both claims and PVs need to be defined before running the chart +## Note that hostPath will not work on multi-node cluster +## +## If the value is set before the first run of the server, the rhn.conf file will be adjusted during the setup. +#mirror: +# claimName: mirror +# hostPath: /srv/mirror + +# TODO Parametrize big volumes sizes + +## servicesAnnotations are annotations to set on both TCP and UDP services. +## This can be useful to share the same IP when using metallb +# servicesAnnotations: + +## exposeJavaDebug will expose the 8000 and 8001 ports to connect a Java debugger +## to tomcat and taskomatic respectively +# exposeJavaDebug: true + +## enableMonitoring will expose the 9100 9187 5556 5557 9500 9800 ports for prometheus to scrape +enableMonitoring: true + +## ingress defines the ingress that is used in the cluster. +## It can be either "nginx", "traefik" or any other value. +ingress: "traefik" + +## ingressSsl are annotations to pass the SSL ingress. +## This can be used to set a cert-manager issuer like: +## ingressSslAnnotations: +## cert-manager.io/cluster-issuer: uyuniIssuer +# ingressSslAnnotations: + +# The time zone to set in the containers +timezone: "Etc/UTC" diff --git a/containers/server-image/.env b/containers/server-image/.env new file mode 100644 index 000000000000..cce186fe910a --- /dev/null +++ b/containers/server-image/.env @@ -0,0 +1,23 @@ +# MANAGER_USER= +# MANAGER_PASS= +# MANAGER_ADMIN_EMAIL= +# CERT_O= +# CERT_OU= +# CERT_CITY= +# CERT_STATE= +# CERT_COUNTRY= +# CERT_EMAIL= +# CERT_PASS= +# USE_EXISTING_CERTS= +# MANAGER_DB_NAME= +# MANAGER_DB_HOST= +# MANAGER_DB_PORT= +# MANAGER_DB_PROTOCOL= +# MANAGER_ENABLE_TFTP= +# SCC_USER= +# SCC_PASS= +# REPORT_DB_HOST= +# REPORT_DB_PORT= +# REPORT_DB_NAME= +# REPORT_DB_USER= +# REPORT_DB_PASS= diff --git a/containers/server-image/Dockerfile b/containers/server-image/Dockerfile new file mode 100644 index 000000000000..958765818f84 --- /dev/null +++ b/containers/server-image/Dockerfile @@ -0,0 +1,95 @@ +# SPDX-License-Identifier: MIT +#!BuildTag: uyuni/server:latest uyuni/server:4.4.0 uyuni/server:4.4.0.%RELEASE% + +ARG INIT_BASE=registry.suse.com/bci/bci-base:15.4 +FROM $INIT_BASE + +ARG PRODUCT_REPO +ARG PRODUCT_PATTERN_PREFIX="patterns-uyuni" + +# Add distro and product repos +COPY add_repos.sh /usr/bin +COPY timezone_alignment.sh /usr/bin +RUN sh add_repos.sh ${PRODUCT_REPO} + +COPY timezone_alignment.service /usr/lib/systemd/system/ + +COPY remove_unused.sh . +RUN echo "rpm.install.excludedocs = yes" >>/etc/zypp/zypp.conf + +# Main packages +RUN zypper ref && zypper --non-interactive up +RUN zypper --gpg-auto-import-keys --non-interactive install --auto-agree-with-licenses --force-resolution \ + ${PRODUCT_PATTERN_PREFIX}_server \ + ${PRODUCT_PATTERN_PREFIX}_retail \ + susemanager-tftpsync \ + golang-github-prometheus-node_exporter \ + prometheus-postgres_exporter \ + golang-github-QubitProducts-exporter_exporter \ + prometheus-jmx_exporter \ + prometheus-jmx_exporter-tomcat \ + spacecmd \ + grafana-formula \ + locale-formula \ + prometheus-exporters-formula \ + prometheus-formula \ + registry-formula \ + virtualization-formulas \ + uyuni-config-formula \ + inter-server-sync \ + golang-github-lusitaniae-apache_exporter \ + golang-github-prometheus-node_exporter \ + prometheus-postgres_exporter \ + golang-github-QubitProducts-exporter_exporter \ + prometheus-jmx_exporter \ + spacecmd \ + javamail \ + libyui-ncurses-pkg16 \ + virtual-host-gatherer-Kubernetes \ + virtual-host-gatherer-libcloud \ + virtual-host-gatherer-Libvirt \ + virtual-host-gatherer-Nutanix \ + virtual-host-gatherer-VMware \ + vim \ + ipmitool + +RUN sed -i 's/sysctl kernel.shmmax/#sysctl kernel.shmmax/g' /usr/bin/uyuni-setup-reportdb + +RUN mkdir -p /etc/postgres_exporter \ + /etc/prometheus-jmx_exporter/tomcat \ + /usr/lib/systemd/system/tomcat.service.d \ + /etc/prometheus-jmx_exporter/taskomatic \ + /usr/lib/systemd/system/taskomatic.service.d + +COPY postgres_exporter_queries.yaml /etc/postgres_exporter/postgres_exporter_queries.yaml +COPY postgres-exporter /etc/sysconfig/prometheus-postgres_exporter +COPY java_agent.yaml /etc/prometheus-jmx_exporter/tomcat/java_agent.yml +COPY java_agent.yaml /etc/prometheus-jmx_exporter/taskomatic/java_agent.yml +COPY tomcat_jmx.conf /usr/lib/systemd/system/tomcat.service.d/jmx.conf +COPY taskomatic_jmx.conf /usr/lib/systemd/system/taskomatic.service.d/jmx.conf + +RUN chmod -R 755 /usr/bin/timezone_alignment.sh + +RUN systemctl enable prometheus-node_exporter; \ + systemctl enable timezone_alignment; + +# LABELs +ARG PRODUCT=Uyuni +ARG VENDOR="Uyuni project" +ARG URL="https://www.uyuni-project.org/" +ARG REFERENCE_PREFIX="registry.opensuse.org/uyuni" + +# Build Service required labels +# labelprefix=org.opensuse.uyuni.server +LABEL org.opencontainers.image.title="${PRODUCT} server container" +LABEL org.opencontainers.image.description="All-in-one ${PRODUCT} server image" +LABEL org.opencontainers.image.created="%BUILDTIME%" +LABEL org.opencontainers.image.vendor="${VENDOR}" +LABEL org.opencontainers.image.url="${URL}" +LABEL org.opencontainers.image.version="4.4.0" +LABEL org.openbuildservice.disturl="%DISTURL%" +LABEL org.opensuse.reference="${REFERENCE_PREFIX}/server:4.4.0.%RELEASE%" +# endlabelprefix + +CMD ["/usr/lib/systemd/systemd"] +HEALTHCHECK --interval=5s --timeout=5s --retries=5 CMD ["/usr/bin/systemctl", "is-active", "multi-user.target"] diff --git a/containers/server-image/README.md b/containers/server-image/README.md new file mode 100644 index 000000000000..5739e65d5f95 --- /dev/null +++ b/containers/server-image/README.md @@ -0,0 +1,5 @@ +# Known issues + +* Apache fails to start to start in the container is apparmor is enabled on the host. +* Avahi names are not resolved inside the container + diff --git a/containers/server-image/_constraints b/containers/server-image/_constraints new file mode 100644 index 000000000000..e6e2c4c0e019 --- /dev/null +++ b/containers/server-image/_constraints @@ -0,0 +1,7 @@ + + + + 10 + + + diff --git a/containers/server-image/_service b/containers/server-image/_service new file mode 100644 index 000000000000..bde87fa5bc1f --- /dev/null +++ b/containers/server-image/_service @@ -0,0 +1,4 @@ + + + + diff --git a/containers/server-image/add_repos.sh b/containers/server-image/add_repos.sh new file mode 100644 index 000000000000..a77e8b755b18 --- /dev/null +++ b/containers/server-image/add_repos.sh @@ -0,0 +1,18 @@ +#!/bin/bash + +if [ -n "$1" ]; then + # update + zypper ar -G http://download.opensuse.org/update/leap/15.4/sle/ sle_update_repo + zypper ar -G http://download.opensuse.org/update/leap/15.4/oss/ os_update_repo + zypper ar -G http://download.opensuse.org/update/leap/15.4/backports/ backports_update_repo + + # distribution + zypper ar -G http://download.opensuse.org/distribution/leap/15.4/repo/oss/ os_pool_repo + + # product + #TODO uncomment when changes are in master branch + #zypper ar -G http://download.opensuse.org/repositories/systemsmanagement:/Uyuni:/Master/images/repo/Uyuni-Server-POOL-x86_64-Media1/ server_pool_repo + zypper ar -G http://download.opensuse.org/repositories/systemsmanagement:/Uyuni:/Master/images/repo/Testing-Overlay-POOL-x86_64-Media1/ testing_overlay_devel_repo + + zypper addrepo $1 product +fi diff --git a/containers/server-image/java_agent.yaml b/containers/server-image/java_agent.yaml new file mode 100644 index 000000000000..50cd72ebba9f --- /dev/null +++ b/containers/server-image/java_agent.yaml @@ -0,0 +1,6 @@ +whitelistObjectNames: + - java.lang:type=Threading,* + - java.lang:type=Memory,* + - Catalina:type=ThreadPool,name=* +rules: + - pattern: ".*" diff --git a/containers/server-image/postgres-exporter b/containers/server-image/postgres-exporter new file mode 100644 index 000000000000..4a8011acf428 --- /dev/null +++ b/containers/server-image/postgres-exporter @@ -0,0 +1,19 @@ +## Path: Applications/PostgreSQLExporter +## Description: Prometheus exporter for PostgreSQL +## Type: string() +## Default: "postgresql://user:passwd@localhost:5432/database?sslmode=disable" +## ServiceRestart: postgres-exporter +# +# Connection URL to postgresql instance +# +DATA_SOURCE_NAME="postgresql://spacewalk:spacewalk@localhost:5432/susemanager?sslmode=disable" + +## Path: Applications/PostgreSQLExporter +## Description: Prometheus exporter for PostgreSQL +## Type: string() +## Default: "" +## ServiceRestart: postgres-exporter +# +# Extra options for postgres-exporter +# +POSTGRES_EXPORTER_PARAMS="--extend.query-path /etc/postgres_exporter/postgres_exporter_queries.yaml" diff --git a/containers/server-image/postgres_exporter_queries.yaml b/containers/server-image/postgres_exporter_queries.yaml new file mode 100644 index 000000000000..f6b3d362880f --- /dev/null +++ b/containers/server-image/postgres_exporter_queries.yaml @@ -0,0 +1,52 @@ +mgr_serveractions: + query: | + SELECT ( + SELECT COUNT(*) + FROM rhnServerAction + WHERE status = ( + SELECT id FROM rhnActionStatus WHERE name = 'Queued' + ) + ) AS queued, + ( + SELECT COUNT(*) + FROM rhnServerAction + WHERE status = ( + SELECT id FROM rhnActionStatus WHERE name = 'Picked Up' + ) + ) AS picked_up, + ( + SELECT COUNT(*) + FROM rhnServerAction + WHERE status = ( + SELECT id FROM rhnActionStatus WHERE name IN ('Completed') + ) + ) AS completed, + ( + SELECT COUNT(*) + FROM rhnServerAction + WHERE status = ( + SELECT id FROM rhnActionStatus WHERE name IN ('Failed') + ) + ) AS failed; + metrics: + - queued: + usage: "GAUGE" + description: "Count of queued Actions" + - picked_up: + usage: "GAUGE" + description: "Count of picked up Actions" + - completed: + usage: "COUNTER" + description: "Count of completed Actions" + - failed: + usage: "COUNTER" + description: "Count of failed Actions" + salt_events: + query: | + SELECT COUNT(*) + FROM suseSaltEvent + AS salt_events_count; + metrics: + - salt_events_count: + usage: "GAUGE" + description: "Count of suse salt events" diff --git a/containers/server-image/remove_unused.sh b/containers/server-image/remove_unused.sh new file mode 100755 index 000000000000..ac95e70ecf0f --- /dev/null +++ b/containers/server-image/remove_unused.sh @@ -0,0 +1,7 @@ +#!/bin/bash +# Removes any unnecessary files and packages before moving to the next build stage + +set -xe + +zypper clean --all +rpm -e zypper diff --git a/containers/server-image/server-image.changes b/containers/server-image/server-image.changes new file mode 100644 index 000000000000..3d281727b618 --- /dev/null +++ b/containers/server-image/server-image.changes @@ -0,0 +1 @@ +- Initialized a server image diff --git a/containers/server-image/taskomatic_jmx.conf b/containers/server-image/taskomatic_jmx.conf new file mode 100644 index 000000000000..7f19d11ddb83 --- /dev/null +++ b/containers/server-image/taskomatic_jmx.conf @@ -0,0 +1,2 @@ +[Service] +Environment="JAVA_AGENT=-javaagent:/usr/share/java/jmx_prometheus_javaagent.jar=5557:/etc/prometheus-jmx_exporter/taskomatic/java_agent.yml" diff --git a/containers/server-image/timezone_alignment.service b/containers/server-image/timezone_alignment.service new file mode 100644 index 000000000000..d091ff8329f9 --- /dev/null +++ b/containers/server-image/timezone_alignment.service @@ -0,0 +1,10 @@ +[Unit] +Description=Timezone alignment +After=postgresql.service + +[Service] +ExecStart=timezone_alignment.sh +Type=oneshot + +[Install] +WantedBy=multi-user.target diff --git a/containers/server-image/timezone_alignment.sh b/containers/server-image/timezone_alignment.sh new file mode 100755 index 000000000000..9f66b822c86a --- /dev/null +++ b/containers/server-image/timezone_alignment.sh @@ -0,0 +1,5 @@ +#!/bin/bash + +if [[ ! -z "$TZ" ]]; then + timedatectl set-timezone $TZ +fi diff --git a/containers/server-image/tito.props b/containers/server-image/tito.props new file mode 100644 index 000000000000..f22069cb8efa --- /dev/null +++ b/containers/server-image/tito.props @@ -0,0 +1,2 @@ +[buildconfig] +tagger = tito.tagger.SUSEContainerTagger diff --git a/containers/server-image/tomcat_jmx.conf b/containers/server-image/tomcat_jmx.conf new file mode 100644 index 000000000000..a31b816897fe --- /dev/null +++ b/containers/server-image/tomcat_jmx.conf @@ -0,0 +1,2 @@ +[Service] +Environment="CATALINA_OPTS=-javaagent:/usr/share/java/jmx_prometheus_javaagent.jar=5556:/etc/prometheus-jmx_exporter/tomcat/java_agent.yml" diff --git a/java/buildconf/build-props.xml b/java/buildconf/build-props.xml index 585a0daed654..3d030ae67831 100644 --- a/java/buildconf/build-props.xml +++ b/java/buildconf/build-props.xml @@ -71,7 +71,8 @@ - + + diff --git a/java/buildconf/ivy/ivy-suse.xml b/java/buildconf/ivy/ivy-suse.xml index 0dca994c5b1b..4207fc7803df 100644 --- a/java/buildconf/ivy/ivy-suse.xml +++ b/java/buildconf/ivy/ivy-suse.xml @@ -143,6 +143,7 @@ + diff --git a/java/code/src/com/redhat/rhn/GlobalInstanceHolder.java b/java/code/src/com/redhat/rhn/GlobalInstanceHolder.java index 0869937ead11..4a3de4665f41 100644 --- a/java/code/src/com/redhat/rhn/GlobalInstanceHolder.java +++ b/java/code/src/com/redhat/rhn/GlobalInstanceHolder.java @@ -28,6 +28,7 @@ import com.redhat.rhn.manager.system.entitling.SystemEntitler; import com.redhat.rhn.manager.system.entitling.SystemUnentitler; +import com.suse.cloud.CloudPaygManager; import com.suse.manager.kubernetes.KubernetesManager; import com.suse.manager.utils.SaltKeyUtils; import com.suse.manager.utils.SaltUtils; @@ -61,6 +62,7 @@ private GlobalInstanceHolder() { private static final SaltService SALT_SERVICE = new SaltService(); public static final SystemQuery SYSTEM_QUERY = SALT_SERVICE; public static final SaltApi SALT_API = SALT_SERVICE; + public static final CloudPaygManager PAYG_MANAGER = new CloudPaygManager(); public static final ServerGroupManager SERVER_GROUP_MANAGER = new ServerGroupManager(SALT_API); public static final FormulaManager FORMULA_MANAGER = new FormulaManager(SALT_API); public static final SaltUtils SALT_UTILS = new SaltUtils(SYSTEM_QUERY, SALT_API); @@ -77,9 +79,9 @@ private GlobalInstanceHolder() { public static final KubernetesManager KUBERNETES_MANAGER = new KubernetesManager(SALT_API); public static final VirtManager VIRT_MANAGER = new VirtManagerSalt(SALT_API); public static final RegularMinionBootstrapper REGULAR_MINION_BOOTSTRAPPER = - new RegularMinionBootstrapper(SYSTEM_QUERY, SALT_API); + new RegularMinionBootstrapper(SYSTEM_QUERY, SALT_API, PAYG_MANAGER); public static final SSHMinionBootstrapper SSH_MINION_BOOTSTRAPPER = - new SSHMinionBootstrapper(SYSTEM_QUERY, SALT_API); + new SSHMinionBootstrapper(SYSTEM_QUERY, SALT_API, PAYG_MANAGER); public static final MonitoringManager MONITORING_MANAGER = new FormulaMonitoringManager(SALT_API); public static final SystemEntitlementManager SYSTEM_ENTITLEMENT_MANAGER = new SystemEntitlementManager( new SystemUnentitler(VIRT_MANAGER, MONITORING_MANAGER, SERVER_GROUP_MANAGER), diff --git a/java/code/src/com/redhat/rhn/common/conf/ConfigDefaults.java b/java/code/src/com/redhat/rhn/common/conf/ConfigDefaults.java index b773ca1fcae3..246950a5500e 100644 --- a/java/code/src/com/redhat/rhn/common/conf/ConfigDefaults.java +++ b/java/code/src/com/redhat/rhn/common/conf/ConfigDefaults.java @@ -374,6 +374,11 @@ public class ConfigDefaults { */ public static final String NO_SSL = "server.no_ssl"; + /** + * Specify if custom repositories for RHUI should be created with a different org than 1 + */ + public static final String RHUI_DEFAULT_ORG_ID = "java.rhui_default_org_id"; + private ConfigDefaults() { } @@ -846,21 +851,13 @@ private String buildConnectionString(String name, String backend, String host, S } connectionUrl.append(name); - if (useSsl) { + if (!"localhost".equals(host) && useSsl) { connectionUrl.append("?ssl=true&sslrootcert=" + sslrootcert + "&sslmode=" + sslmode); } return connectionUrl.toString(); } - /** - * is documentation available - * @return true if so - */ - public boolean isDocAvailable() { - return !isSpacewalk(); - } - /** * Returns Max taskomatic channel repodata workers * @return Max taskomatic channel repodata workers @@ -1141,4 +1138,13 @@ public boolean isCustomChannelManagementUnificationEnabled() { public boolean isSsl() { return !Config.get().getBoolean(NO_SSL, false); } + + /** + * Returns the organization id which should be used to create custom repositories for + * when creating RHUI repos. Configure via rhn.conf with java.rhui_default_org_id + * @return the org id + */ + public long getRhuiDefaultOrgId() { + return Config.get().getInt(RHUI_DEFAULT_ORG_ID, 1); + } } diff --git a/java/code/src/com/redhat/rhn/common/db/datasource/Elaborator.java b/java/code/src/com/redhat/rhn/common/db/datasource/Elaborator.java index f41f175aef46..b8bed3359f3f 100644 --- a/java/code/src/com/redhat/rhn/common/db/datasource/Elaborator.java +++ b/java/code/src/com/redhat/rhn/common/db/datasource/Elaborator.java @@ -16,13 +16,14 @@ import org.hibernate.Session; +import java.io.Serializable; import java.util.List; /** * Elaboratable */ -public interface Elaborator { +public interface Elaborator extends Serializable { /** * Returns an elaborated list for the given List of objects diff --git a/java/code/src/com/redhat/rhn/common/db/datasource/ModeElaborator.java b/java/code/src/com/redhat/rhn/common/db/datasource/ModeElaborator.java index 02992e4803ab..dde06db159fb 100644 --- a/java/code/src/com/redhat/rhn/common/db/datasource/ModeElaborator.java +++ b/java/code/src/com/redhat/rhn/common/db/datasource/ModeElaborator.java @@ -17,7 +17,7 @@ import org.hibernate.Session; -import java.io.Serializable; +import java.util.HashMap; import java.util.List; import java.util.Map; @@ -25,9 +25,9 @@ /** * ModeElaborator */ -public class ModeElaborator implements Elaborator, Serializable { +public class ModeElaborator implements Elaborator { private SelectMode mode; - private Map params; + private final HashMap params; // increase this number on any data change private static final long serialVersionUID = 1L; @@ -36,9 +36,14 @@ public class ModeElaborator implements Elaborator, Serializable { * @param select Select mode * @param elabParams elaborator params */ - public ModeElaborator(SelectMode select, Map elabParams) { + public ModeElaborator(SelectMode select, Map elabParams) { mode = select; - params = elabParams; + if (elabParams != null) { + params = new HashMap<>(elabParams); + } + else { + params = null; + } } /** diff --git a/java/code/src/com/redhat/rhn/common/db/datasource/xml/Action_queries.xml b/java/code/src/com/redhat/rhn/common/db/datasource/xml/Action_queries.xml index b5f8b2b37159..0ac761194d9f 100644 --- a/java/code/src/com/redhat/rhn/common/db/datasource/xml/Action_queries.xml +++ b/java/code/src/com/redhat/rhn/common/db/datasource/xml/Action_queries.xml @@ -24,7 +24,7 @@ SELECT EVENT_ID as ID, WHERE SH.server_id = :sid UNION SELECT SA.action_id EVENT_ID, - AType.name || ' scheduled by ' || NVL(U.login, '(none)') AS SUMMARY, + AType.name || ' scheduled by ' || NVL(U.login, '(system)') AS SUMMARY, SA.created, SA.pickup_time AS picked_up, SA.completion_time AS completed, diff --git a/java/code/src/com/redhat/rhn/common/db/datasource/xml/System_queries.xml b/java/code/src/com/redhat/rhn/common/db/datasource/xml/System_queries.xml index 71253a4bd3c5..056903e58ebf 100644 --- a/java/code/src/com/redhat/rhn/common/db/datasource/xml/System_queries.xml +++ b/java/code/src/com/redhat/rhn/common/db/datasource/xml/System_queries.xml @@ -1016,7 +1016,7 @@ SELECT DISTINCT ST.element AS ID SELECT DISTINCT S.id, S.name, SI.server_id AS MGR_SERVER, - PI.server_id AS PROXY, + PI.server_id is not null AS PROXY, TO_CHAR(Sinfo.checkin, 'YYYY-MM-DD HH24:MI:SS') AS LAST_CHECKIN, SO.SECURITY_ERRATA, SO.BUG_ERRATA, SO.ENHANCEMENT_ERRATA, SO.LOCKED, SO.OUTDATED_PACKAGES, SO.SERVER_NAME, SO.SERVER_ADMINS, SO.GROUP_COUNT, @@ -1798,7 +1798,7 @@ select event_id as id, where SH.server_id = :sid union select SA.action_id event_id, - COALESCE(A.name, AType.name) || ' scheduled by ' || NVL(U.login, '(none)') as summary, + COALESCE(A.name, AType.name) || ' scheduled by ' || NVL(U.login, '(system)') as summary, SA.created, SA.pickup_time as picked_up, SA.completion_time as completed, @@ -1852,7 +1852,7 @@ order by completed desc, picked_up desc, all_events.created desc, event_id desc AND SH.id = :eid union select SA.action_id event_id, - COALESCE(A.name, AType.name) || ' scheduled by ' || NVL(U.login, '(none)') as summary, + COALESCE(A.name, AType.name) || ' scheduled by ' || NVL(U.login, '(system)') as summary, SA.created, SA.pickup_time as picked_up, SA.completion_time as completed, @@ -1888,7 +1888,7 @@ select count(action_id) as count class="com.redhat.rhn.frontend.dto.SystemPendingEventDto"> SELECT SA.action_id AS id - , COALESCE(A.name, AType.name) || ' scheduled by ' || NVL(U.login, '(none)') AS summary + , COALESCE(A.name, AType.name) || ' scheduled by ' || NVL(U.login, '(system)') AS summary , A.earliest_action AS scheduled_for , AType.label AS history_type , AType.name AS history_type_name @@ -1910,7 +1910,7 @@ ORDER BY scheduled_for DESC, prereq_aid NULLS FIRST class="com.redhat.rhn.frontend.dto.SystemPendingEventDto"> SELECT SA.action_id AS ID - , COALESCE(A.name, AType.name) || ' scheduled by ' || NVL(U.login, '(none)') AS summary + , COALESCE(A.name, AType.name) || ' scheduled by ' || NVL(U.login, '(system)') AS summary , A.earliest_action AS scheduled_for , AType.label AS history_type , AType.name AS history_type_name diff --git a/java/code/src/com/redhat/rhn/common/finder/CompositeFinder.java b/java/code/src/com/redhat/rhn/common/finder/CompositeFinder.java new file mode 100644 index 000000000000..6acd8c5e570d --- /dev/null +++ b/java/code/src/com/redhat/rhn/common/finder/CompositeFinder.java @@ -0,0 +1,40 @@ +/* + * Copyright (c) 2023 SUSE LLC + * + * This software is licensed to you under the GNU General Public License, + * version 2 (GPLv2). There is NO WARRANTY for this software, express or + * implied, including the implied warranties of MERCHANTABILITY or FITNESS + * FOR A PARTICULAR PURPOSE. You should have received a copy of GPLv2 + * along with this software; if not, see + * http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt. + * + * Red Hat trademarks are not licensed under GPLv2. No permission is + * granted to use or replicate Red Hat trademarks that are incorporated + * in this software or its documentation. + */ + +package com.redhat.rhn.common.finder; + +import java.util.ArrayList; +import java.util.Collection; +import java.util.List; +import java.util.stream.Collectors; + +/** + * A Finder implementation that uses multiple finders to search + */ +class CompositeFinder implements Finder { + + private final List finderList; + + CompositeFinder(Collection finders) { + this.finderList = new ArrayList<>(finders); + } + + @Override + public List findExcluding(String[] excluding, String endStr) { + return this.finderList.stream() + .flatMap(finder -> finder.findExcluding(excluding, endStr).stream()) + .collect(Collectors.toList()); + } +} diff --git a/java/code/src/com/redhat/rhn/common/finder/FileFinder.java b/java/code/src/com/redhat/rhn/common/finder/FileFinder.java index 0d28b9b20507..b6550e1cbf19 100644 --- a/java/code/src/com/redhat/rhn/common/finder/FileFinder.java +++ b/java/code/src/com/redhat/rhn/common/finder/FileFinder.java @@ -20,6 +20,7 @@ import java.io.File; import java.util.Arrays; +import java.util.Collections; import java.util.LinkedList; import java.util.List; @@ -41,13 +42,6 @@ class FileFinder implements Finder { } } - /** {@inheritDoc} */ - @Override - public List find(String endStr) { - return findExcluding(null, endStr); - } - - /** {@inheritDoc} */ @Override public List findExcluding(String[] excludes, String endStr) { List results = new LinkedList<>(); @@ -55,7 +49,7 @@ public List findExcluding(String[] excludes, String endStr) { if (!startDir.exists()) { // Shouldn't ever happen, because the FinderFactory should only // return a FileFinder. - return null; + return Collections.emptyList(); } String[] fileList = startDir.list(); diff --git a/java/code/src/com/redhat/rhn/common/finder/Finder.java b/java/code/src/com/redhat/rhn/common/finder/Finder.java index 6d81a605ce3d..53cbd843b5d8 100644 --- a/java/code/src/com/redhat/rhn/common/finder/Finder.java +++ b/java/code/src/com/redhat/rhn/common/finder/Finder.java @@ -31,7 +31,9 @@ public interface Finder { * @return a list of all classes within the package that end with the * specified string */ - List find(String endStr); + default List find(String endStr) { + return findExcluding(null, endStr); + } /** * Find all files within a package that end with the specified string diff --git a/java/code/src/com/redhat/rhn/common/finder/FinderFactory.java b/java/code/src/com/redhat/rhn/common/finder/FinderFactory.java index 19ee49fb1d43..1875f5cc13a3 100644 --- a/java/code/src/com/redhat/rhn/common/finder/FinderFactory.java +++ b/java/code/src/com/redhat/rhn/common/finder/FinderFactory.java @@ -15,8 +15,17 @@ package com.redhat.rhn.common.finder; +import org.apache.commons.lang3.StringUtils; +import org.apache.logging.log4j.LogManager; +import org.apache.logging.log4j.Logger; + import java.io.File; +import java.io.IOException; import java.net.URL; +import java.util.Collections; +import java.util.Enumeration; +import java.util.List; +import java.util.stream.Collectors; /** * A factory that returns the correct type of finder. @@ -24,6 +33,8 @@ */ public class FinderFactory { + private static final Logger LOGGER = LogManager.getLogger(FinderFactory.class); + private FinderFactory() { } @@ -33,27 +44,53 @@ private FinderFactory() { * @return Finder to use for given package name. */ public static Finder getFinder(String packageName) { - // Start by translating into an absolute path. - String name = packageName; - if (!packageName.startsWith("/")) { - name = "/" + name; + // Extract all the possible URLs for a package + List possibleUrls = getAllUrlsForPackage(packageName); + if (possibleUrls.isEmpty()) { + throw new IllegalArgumentException("Not a well-formed jar file"); + } + + if (possibleUrls.size() == 1) { + return getFinderForPackage(packageName, possibleUrls.get(0)); } - name = name.replace('.', '/'); - URL packageUrl = FinderFactory.class.getResource(name); + return possibleUrls.stream() + .map(packageUrl -> getFinderForPackage(packageName, packageUrl)) + .collect(Collectors.collectingAndThen(Collectors.toList(), CompositeFinder::new)); + } + + private static List getAllUrlsForPackage(String packageName) { + try { + ClassLoader classLoader = FinderFactory.class.getClassLoader(); + Enumeration systemResources = classLoader.getResources(packageName.replace('.', '/')); + if (systemResources == null || !systemResources.hasMoreElements()) { + LOGGER.warn("No valid URLs found for package {}", packageName); + return Collections.emptyList(); + } - // This only happens if the .jar file isn't well-formed, so we - // shouldn't have this problem, ever. - if (packageUrl == null) { - throw new IllegalArgumentException("Not a well formed jar file"); + return Collections.list(systemResources); } + catch (SecurityException ex) { + throw new IllegalStateException("Unable to access the class loader for searching " + packageName, ex); + } + catch (IOException ex) { + LOGGER.warn("Unable to find URLs for package {}", packageName, ex); + return Collections.emptyList(); + } + } + private static Finder getFinderForPackage(String packageName, URL packageUrl) { File directory = new File(packageUrl.getFile()); if (!directory.isFile() && !directory.isDirectory()) { // This is a jar file that we are dealing with. return new JarFinder(packageUrl); } - return new FileFinder(directory, name); + + return new FileFinder(directory, getAbsolutePath(packageName)); + } + + private static String getAbsolutePath(String packageName) { + return StringUtils.prependIfMissing(packageName, "/").replace('.', '/'); } } diff --git a/java/code/src/com/redhat/rhn/common/finder/JarFinder.java b/java/code/src/com/redhat/rhn/common/finder/JarFinder.java index 0cbc6b845e1e..595ca2f60637 100644 --- a/java/code/src/com/redhat/rhn/common/finder/JarFinder.java +++ b/java/code/src/com/redhat/rhn/common/finder/JarFinder.java @@ -41,13 +41,6 @@ class JarFinder implements Finder { url = packageUrl; } - /** {@inheritDoc} */ - @Override - public List find(String endStr) { - return findExcluding(null, endStr); - } - - /** {@inheritDoc} */ @Override public List findExcluding(String[] excludes, String endStr) { try { diff --git a/java/code/src/com/redhat/rhn/common/finder/test/FileFinderTest.java b/java/code/src/com/redhat/rhn/common/finder/test/FileFinderTest.java index 396c79332a85..05c446c618de 100644 --- a/java/code/src/com/redhat/rhn/common/finder/test/FileFinderTest.java +++ b/java/code/src/com/redhat/rhn/common/finder/test/FileFinderTest.java @@ -51,7 +51,7 @@ public void testFindFilesSubDir() { assertNotNull(f); List result = f.find(".class"); - assertEquals(6, result.size()); + assertEquals(7, result.size()); } @Test @@ -60,7 +60,7 @@ public void testFindExcluding() { assertNotNull(f); String[] sarr = {"Test"}; List result = f.findExcluding(sarr, "class"); - assertEquals(4, result.size()); + assertEquals(5, result.size()); } } diff --git a/java/code/src/com/redhat/rhn/common/hibernate/AnnotationRegistry.java b/java/code/src/com/redhat/rhn/common/hibernate/AnnotationRegistry.java index 1c2e77ab8de4..4fd9799bfe5d 100644 --- a/java/code/src/com/redhat/rhn/common/hibernate/AnnotationRegistry.java +++ b/java/code/src/com/redhat/rhn/common/hibernate/AnnotationRegistry.java @@ -15,6 +15,7 @@ package com.redhat.rhn.common.hibernate; import com.redhat.rhn.domain.cloudpayg.CloudRmtHost; +import com.redhat.rhn.domain.cloudpayg.PaygCredentialsProduct; import com.redhat.rhn.domain.cloudpayg.PaygSshData; import com.redhat.rhn.domain.contentmgmt.ContentEnvironment; import com.redhat.rhn.domain.contentmgmt.ContentFilter; @@ -80,6 +81,8 @@ import com.redhat.rhn.domain.server.virtualhostmanager.VirtualHostManagerNodeInfo; import com.redhat.rhn.domain.task.Task; +import com.suse.cloud.domain.PaygDimensionComputation; +import com.suse.cloud.domain.PaygDimensionResult; import com.suse.manager.model.maintenance.MaintenanceCalendar; import com.suse.manager.model.maintenance.MaintenanceSchedule; @@ -158,12 +161,15 @@ private AnnotationRegistry() { Pillar.class, CloudRmtHost.class, PaygSshData.class, + PaygCredentialsProduct.class, Task.class, RecurringHighstate.class, RecurringState.class, RecurringConfigChannel.class, RecurringInternalState.class, - InternalState.class + InternalState.class, + PaygDimensionComputation.class, + PaygDimensionResult.class ); /** diff --git a/java/code/src/com/redhat/rhn/common/hibernate/HibernateFactory.java b/java/code/src/com/redhat/rhn/common/hibernate/HibernateFactory.java index 6eb3a9409fac..49bdb2065b8d 100644 --- a/java/code/src/com/redhat/rhn/common/hibernate/HibernateFactory.java +++ b/java/code/src/com/redhat/rhn/common/hibernate/HibernateFactory.java @@ -69,7 +69,7 @@ public abstract class HibernateFactory { private static ConnectionManager connectionManager = ConnectionManagerFactory.defaultConnectionManager(); private static final Logger LOG = LogManager.getLogger(HibernateFactory.class); - private static final int LIST_BATCH_MAX_SIZE = 1000; + public static final int LIST_BATCH_MAX_SIZE = 1000; public static final String ROLLBACK_MSG = "Error during transaction. Rolling back"; diff --git a/java/code/src/com/redhat/rhn/common/messaging/SmtpMail.java b/java/code/src/com/redhat/rhn/common/messaging/SmtpMail.java index 66c6c4d4b38c..bab19d43ee96 100644 --- a/java/code/src/com/redhat/rhn/common/messaging/SmtpMail.java +++ b/java/code/src/com/redhat/rhn/common/messaging/SmtpMail.java @@ -248,7 +248,7 @@ public String toString() { buf.append(this.message.getContent()); } catch (IOException | MessagingException e) { - log.error(e); + log.error(e.getMessage(), e); } return buf.toString(); } diff --git a/java/code/src/com/redhat/rhn/common/security/SessionSwap.java b/java/code/src/com/redhat/rhn/common/security/SessionSwap.java index 316d3ab85286..e3d8d973daf0 100644 --- a/java/code/src/com/redhat/rhn/common/security/SessionSwap.java +++ b/java/code/src/com/redhat/rhn/common/security/SessionSwap.java @@ -147,11 +147,6 @@ public static String rhnHmacData(List text) { String joinedText = StringUtils.join(text.iterator(), "\0"); - - if (log.isDebugEnabled()) { - log.debug("Data : [{}]", joinedText); - log.debug("Key : [{}]", swapKey); - } String retval = HMAC.sha256(joinedText, swapKey.toString()); if (log.isDebugEnabled()) { log.debug("retval: {}", retval); diff --git a/java/code/src/com/redhat/rhn/common/util/FileUtils.java b/java/code/src/com/redhat/rhn/common/util/FileUtils.java index 5b4258c81508..1d34b5c54e4a 100644 --- a/java/code/src/com/redhat/rhn/common/util/FileUtils.java +++ b/java/code/src/com/redhat/rhn/common/util/FileUtils.java @@ -114,6 +114,20 @@ public static void setAttributes(Path path, String user, String group, Set - - SELECT COUNT(*) AS count - FROM rhnChannel c - JOIN rhnAvailableChannels ac ON c.id = ac.channel_id - WHERE c.label = :channel_label - AND ac.org_id = :org_id + + diff --git a/java/code/src/com/redhat/rhn/domain/channel/Channel.java b/java/code/src/com/redhat/rhn/domain/channel/Channel.java index 762ee762c1fb..007957deb4bb 100644 --- a/java/code/src/com/redhat/rhn/domain/channel/Channel.java +++ b/java/code/src/com/redhat/rhn/domain/channel/Channel.java @@ -20,6 +20,7 @@ import com.redhat.rhn.domain.org.Org; import com.redhat.rhn.domain.product.SUSEProductChannel; import com.redhat.rhn.domain.rhnpackage.Package; +import com.redhat.rhn.domain.rhnpackage.PackageFactory; import com.redhat.rhn.domain.server.Server; import com.redhat.rhn.domain.user.User; import com.redhat.rhn.manager.channel.ChannelManager; @@ -1012,14 +1013,14 @@ private String getArchTypeLabel() { * @return whether the channel is a RPM chanel or not */ public boolean isTypeRpm() { - return "rpm".equalsIgnoreCase(getArchTypeLabel()); + return PackageFactory.ARCH_TYPE_RPM.equalsIgnoreCase(getArchTypeLabel()); } /** * @return whether the channel is a DEB chanel or not */ public boolean isTypeDeb() { - return "deb".equalsIgnoreCase(getArchTypeLabel()); + return PackageFactory.ARCH_TYPE_DEB.equalsIgnoreCase(getArchTypeLabel()); } /** diff --git a/java/code/src/com/redhat/rhn/domain/channel/ChannelFactory.java b/java/code/src/com/redhat/rhn/domain/channel/ChannelFactory.java index 84cbfdd12027..1da8c7c9496e 100644 --- a/java/code/src/com/redhat/rhn/domain/channel/ChannelFactory.java +++ b/java/code/src/com/redhat/rhn/domain/channel/ChannelFactory.java @@ -1224,6 +1224,23 @@ public static ContentSource findVendorContentSourceByRepo(String repoUrl) { return (ContentSource) criteria.uniqueResult(); } + /** + * Find {@link ContentSource} with source url containing urlPart. + * Uses SQL wildcard paramter '%'. When urlPart does contain a wildcard parameter, it is passed directly to + * the query. If not, a wildcard is added and the begining and the end. + * @param urlPart part of the url + * @return list of found {@link ContentSource} + */ + public static List findContentSourceLikeUrl(String urlPart) { + String urllike = urlPart; + if (!urlPart.contains("%")) { + urllike = String.format("%%%s%%", urlPart); + } + return getSession().createNamedQuery("ContentSource.findLikeUrl", ContentSource.class) + .setParameter("urllike", urllike) + .list(); + } + /** * Find a {@link ChannelProduct} for given name and version. * @param product the product diff --git a/java/code/src/com/redhat/rhn/domain/channel/ChannelFamily.java b/java/code/src/com/redhat/rhn/domain/channel/ChannelFamily.java index ba2c5e303839..95acb5c0f1ec 100644 --- a/java/code/src/com/redhat/rhn/domain/channel/ChannelFamily.java +++ b/java/code/src/com/redhat/rhn/domain/channel/ChannelFamily.java @@ -29,8 +29,6 @@ */ public class ChannelFamily extends BaseDomainHelper { - public static final String TOOLS_CHANNEL_FAMILY_LABEL = "SLE-M-T"; - private Long id; private String name; private String label; @@ -42,6 +40,20 @@ public class ChannelFamily extends BaseDomainHelper { private PublicChannelFamily publicChannelFamily; + /** + * Default constructor. + */ + public ChannelFamily() { + } + + /** + * Constructor that create the family with the specified label. Meant for unit testing only. + * @param labelIn the label + */ + public ChannelFamily(String labelIn) { + this.label = labelIn; + } + /** * @return Returns the channels. */ @@ -124,10 +136,10 @@ public boolean equals(final Object other) { } ChannelFamily castOther = (ChannelFamily) other; - return new EqualsBuilder().append(id, castOther.id) - .append(label, castOther.label) - .append(name, castOther.name) - .append(org, castOther.org) + return new EqualsBuilder().append(id, castOther.getId()) + .append(label, castOther.getLabel()) + .append(name, castOther.getName()) + .append(org, castOther.getOrg()) .isEquals(); } diff --git a/java/code/src/com/redhat/rhn/domain/channel/ChannelFamilyFactory.java b/java/code/src/com/redhat/rhn/domain/channel/ChannelFamilyFactory.java index 671fd2417ab5..bcb04671c0da 100644 --- a/java/code/src/com/redhat/rhn/domain/channel/ChannelFamilyFactory.java +++ b/java/code/src/com/redhat/rhn/domain/channel/ChannelFamilyFactory.java @@ -41,8 +41,11 @@ public class ChannelFamilyFactory extends HibernateFactory { private static ChannelFamilyFactory singleton = new ChannelFamilyFactory(); private static Logger log = LogManager.getLogger(ChannelFamilyFactory.class); + public static final String TOOLS_CHANNEL_FAMILY_LABEL = "SLE-M-T"; public static final String SATELLITE_CHANNEL_FAMILY_LABEL = "SMS"; public static final String PROXY_CHANNEL_FAMILY_LABEL = "SMP"; + public static final String MODULE_CHANNEL_FAMILY_LABEL = "MODULE"; + public static final String OPENSUSE_CHANNEL_FAMILY_LABEL = "OPENSUSE"; private ChannelFamilyFactory() { super(); @@ -177,6 +180,13 @@ public static void save(ChannelFamily cfam) { * @param cfam ChannelFamily to be removed from database. */ public static void remove(ChannelFamily cfam) { + if (cfam.isPublic()) { + singleton.removeObject(cfam.getPublicChannelFamily()); + } + else { + cfam.getPrivateChannelFamilies() + .forEach(pcf -> singleton.removeObject(pcf)); + } singleton.removeObject(cfam); } diff --git a/java/code/src/com/redhat/rhn/domain/channel/ContentSource.hbm.xml b/java/code/src/com/redhat/rhn/domain/channel/ContentSource.hbm.xml index de44d3b74f68..5c591c95c397 100644 --- a/java/code/src/com/redhat/rhn/domain/channel/ContentSource.hbm.xml +++ b/java/code/src/com/redhat/rhn/domain/channel/ContentSource.hbm.xml @@ -78,6 +78,10 @@ PUBLIC "-//Hibernate/Hibernate Mapping DTD 3.0//EN" AND c.type.id = :type_id AND c.sourceUrl = :url]]> + + + productInfos) { + Session session = getSession(); + + // First delete all the existing products + session.createNamedQuery("PaygCredentialsProduct.deleteByCredentials") + .setParameter("creds", credentials) + .executeUpdate(); + + if (CollectionUtils.isEmpty(productInfos)) { + return; + } + + // Store the products + productInfos.stream() + .map(product -> new PaygCredentialsProduct(credentials, product)) + .forEach(session::save); + } + + /** + * Retrieves all the products associated with the given credentials + * @param credentials the credentials + * @return the list of products associated with the credentials or an empty list if none are set. + */ + public static List getProductsForCredentials(Credentials credentials) { + return getSession().createNamedQuery("PaygCredentialsProduct.listByCredentials", PaygCredentialsProduct.class) + .setParameter("creds", credentials) + .stream() + .map(p -> new PaygProductInfo(p.getName(), p.getVersion(), p.getArch())) + .collect(Collectors.toList()); + } + + /** + * Updates the repository authorization for the products associated with the specified credentials + * @param credentials the credentials + * @param products the products + * @return the list of authorization that have been processed + */ + public static List refreshRepositoriesAuths(Credentials credentials, + Collection products) { + List existingAuths = SCCCachingFactory.lookupRepositoryAuthByCredential(credentials); + + List processedAuths = new ArrayList<>(); + PaygProductFactory.getRepositoryForProducts(products).forEach(repository -> { + SCCRepositoryAuth authRepo = getOrCreateRepositoryAuth(existingAuths, repository); + + authRepo.setCredentials(credentials); + // Update content source URL, since it should be pointing to a Credentials record, and it may have changed + if (authRepo.getContentSource() != null) { + authRepo.getContentSource().setSourceUrl(authRepo.getUrl()); + } + + SCCCachingFactory.saveRepositoryAuth(authRepo); + processedAuths.add(authRepo); + }); + + existingAuths.stream() + .filter(er -> processedAuths.stream().noneMatch(pr -> er.getId().equals(pr.getId()))) + .forEach(SCCCachingFactory::deleteRepositoryAuth); + + return processedAuths; + } + + private static SCCRepositoryAuth getOrCreateRepositoryAuth(List auths, + SCCRepository repository) { + return auths.stream() + .filter(r -> r.getRepo().getId().equals(repository.getId())) + .findFirst() + .orElseGet(() -> { + SCCRepositoryCloudRmtAuth newAuth = new SCCRepositoryCloudRmtAuth(); + newAuth.setRepo(repository); + return newAuth; + }); + } + + /** + * Retrieves the repositories associated with the specified products + * @param products the list of products + * @return the set of repositories + */ + private static Stream getRepositoryForProducts(Collection products) { + return products.stream() + .map(product -> { + if (product.getName().equalsIgnoreCase("suse-manager-proxy")) { + return SCCCachingFactory.lookupRepositoriesByRootProductNameVersionArchForPayg( + product.getName(), product.getVersion(), product.getArch()); + } + + return SCCCachingFactory.lookupRepositoriesByProductNameAndArchForPayg( + product.getName(), product.getArch()) + .stream() + // We add Tools Channels directly to SLE12 products, but they are not accessible + // via the SLES credentials. We need to remove them from all except the sle-manager-tools + // product + .filter(r -> !(!product.getName().equalsIgnoreCase("sle-manager-tools") && + r.getName().toLowerCase(Locale.ROOT).startsWith("sle-manager-tools12"))) + .collect(Collectors.toSet()); + + }) + .flatMap(Set::stream); + } + + /** + * Lists the additional products that are accessible when SUSE Manager is PAYG. These are: + * 1) SUSE Manager Tools products with RPM architecture (DEB are not yet supported) + * 2) SUSE Manager proxy products with version >= 4.2 + * @return the list of additional products that are accessible when SUSE Manager is PAYG + */ + public static List listAdditionalProductsForSUMAPayg() { + return SUSEProductFactory.findAllSUSEProducts().stream() + .filter(p -> Objects.nonNull(p.getChannelFamily()) && Objects.nonNull(p.getArch())) + .filter(p -> isSupportedToolsProduct(p) || isSupportedProxyProduct(p) || isSupportedOpenSUSEProduct(p)) + .map(p -> new PaygProductInfo(p.getName(), p.getVersion(), p.getArch().getLabel())) + .collect(Collectors.toList()); + } + + private static boolean isSupportedToolsProduct(SUSEProduct product) { + ChannelFamily family = product.getChannelFamily(); + ArchType architecture = product.getArch().getArchType(); + + return ChannelFamilyFactory.TOOLS_CHANNEL_FAMILY_LABEL.equals(family.getLabel()) && + // TODO: deb not yet available on RMT + PackageFactory.ARCH_TYPE_RPM.equals(architecture.getLabel()); + } + + private static boolean isSupportedProxyProduct(SUSEProduct product) { + ChannelFamily family = product.getChannelFamily(); + String version = product.getVersion(); + + return ChannelFamilyFactory.PROXY_CHANNEL_FAMILY_LABEL.equals(family.getLabel()) && + RPM_VERSION_COMPARATOR.compare(version, "4.2") >= 0; + } + + private static boolean isSupportedOpenSUSEProduct(SUSEProduct product) { + ChannelFamily family = product.getChannelFamily(); + + return ChannelFamilyFactory.OPENSUSE_CHANNEL_FAMILY_LABEL.equals(family.getLabel()); + } +} diff --git a/java/code/src/com/redhat/rhn/domain/cloudpayg/PaygSshData.java b/java/code/src/com/redhat/rhn/domain/cloudpayg/PaygSshData.java index 581d53446639..80b11a19e620 100644 --- a/java/code/src/com/redhat/rhn/domain/cloudpayg/PaygSshData.java +++ b/java/code/src/com/redhat/rhn/domain/cloudpayg/PaygSshData.java @@ -33,6 +33,7 @@ import javax.persistence.OneToOne; import javax.persistence.SequenceGenerator; import javax.persistence.Table; +import javax.persistence.Transient; @Entity @Table(name = "susePaygSshData") @@ -306,6 +307,15 @@ public void setRmtHosts(CloudRmtHost rmtHostsIn) { this.rmtHosts = rmtHostsIn; } + /** + * Identifies a connection for SUSE Manager PAYG + * @return true if this SSH data refers to a SUSE Manager PAYG connection. + */ + @Transient + public boolean isSUSEManagerPayg() { + return "localhost".equals(host); + } + @Override public boolean equals(Object o) { if (this == o) { diff --git a/java/code/src/com/redhat/rhn/domain/cloudpayg/PaygSshDataFactory.java b/java/code/src/com/redhat/rhn/domain/cloudpayg/PaygSshDataFactory.java index a772cf358f30..7d0447e7baaf 100644 --- a/java/code/src/com/redhat/rhn/domain/cloudpayg/PaygSshDataFactory.java +++ b/java/code/src/com/redhat/rhn/domain/cloudpayg/PaygSshDataFactory.java @@ -16,6 +16,7 @@ package com.redhat.rhn.domain.cloudpayg; import com.redhat.rhn.common.hibernate.HibernateFactory; +import com.redhat.rhn.domain.channel.ContentSource; import org.apache.logging.log4j.LogManager; import org.apache.logging.log4j.Logger; @@ -97,7 +98,7 @@ public static Optional lookupById(Integer id) { * @return list of payg ssh daa objects */ public static List lookupPaygSshData() { - return getSession().createQuery("FROM PaygSshData").list(); + return getSession().createQuery("FROM PaygSshData", PaygSshData.class).list(); } /** @@ -107,4 +108,16 @@ public static List lookupPaygSshData() { public static void deletePaygSshData(PaygSshData data) { getSession().delete(data); } + + /** + * @param instance the instance + * @return return a list of {@link ContentSource} created by the given instance + */ + public static List listRhuiRepositoriesCreatedByInstance(PaygSshData instance) { + String qString = String.format("%%-i%d", instance.getId()); + return getSession() + .createQuery("FROM ContentSource WHERE label like :label", ContentSource.class) + .setParameter("label", qString) + .list(); + } } diff --git a/java/code/src/com/redhat/rhn/domain/common/ArchType.java b/java/code/src/com/redhat/rhn/domain/common/ArchType.java index b7e9dcf1e009..e72e7a3e3466 100644 --- a/java/code/src/com/redhat/rhn/domain/common/ArchType.java +++ b/java/code/src/com/redhat/rhn/domain/common/ArchType.java @@ -15,6 +15,7 @@ package com.redhat.rhn.domain.common; import com.redhat.rhn.domain.BaseDomainHelper; +import com.redhat.rhn.domain.rhnpackage.PackageFactory; import com.redhat.rhn.domain.rhnpackage.PackageType; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -79,10 +80,10 @@ public void setName(String n) { public PackageType getPackageType() { String archType = getLabel(); - if (archType.equals("deb")) { + if (archType.equals(PackageFactory.ARCH_TYPE_DEB)) { return PackageType.DEB; } - else if (archType.equals("rpm")) { + else if (archType.equals(PackageFactory.ARCH_TYPE_RPM)) { return PackageType.RPM; } else { diff --git a/java/code/src/com/redhat/rhn/domain/contentmgmt/modulemd/ModulemdApi.java b/java/code/src/com/redhat/rhn/domain/contentmgmt/modulemd/ModulemdApi.java index 6cd908a3b4bc..ac65a8433d87 100644 --- a/java/code/src/com/redhat/rhn/domain/contentmgmt/modulemd/ModulemdApi.java +++ b/java/code/src/com/redhat/rhn/domain/contentmgmt/modulemd/ModulemdApi.java @@ -41,7 +41,7 @@ public class ModulemdApi { private static final String MOUNT_POINT_PATH = Config.get().getString(ConfigDefaults.MOUNT_POINT); - private static final String API_EXE = "mgr-libmod"; + private static final String API_EXE = "/usr/bin/mgr-libmod"; public static final Gson GSON = new GsonBuilder().setFieldNamingPolicy(FieldNamingPolicy.LOWER_CASE_WITH_UNDERSCORES).create(); diff --git a/java/code/src/com/redhat/rhn/domain/credentials/Credentials.hbm.xml b/java/code/src/com/redhat/rhn/domain/credentials/Credentials.hbm.xml index a265cca88f6f..95721e69333a 100644 --- a/java/code/src/com/redhat/rhn/domain/credentials/Credentials.hbm.xml +++ b/java/code/src/com/redhat/rhn/domain/credentials/Credentials.hbm.xml @@ -20,6 +20,17 @@ PUBLIC "-//Hibernate/Hibernate Mapping DTD 3.0//EN" - + + + + + + + + + + diff --git a/java/code/src/com/redhat/rhn/domain/credentials/Credentials.java b/java/code/src/com/redhat/rhn/domain/credentials/Credentials.java index 8e5c5b648be0..9d082074e2e6 100644 --- a/java/code/src/com/redhat/rhn/domain/credentials/Credentials.java +++ b/java/code/src/com/redhat/rhn/domain/credentials/Credentials.java @@ -16,6 +16,7 @@ package com.redhat.rhn.domain.credentials; import com.redhat.rhn.domain.BaseDomainHelper; +import com.redhat.rhn.domain.cloudpayg.PaygCredentialsProduct; import com.redhat.rhn.domain.cloudpayg.PaygSshData; import com.redhat.rhn.domain.user.User; @@ -25,6 +26,9 @@ import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; +import java.util.Optional; +import java.util.Set; + /** * Credentials - Java representation of the table SUSECREDENTIALS. * @@ -39,6 +43,7 @@ public class Credentials extends BaseDomainHelper { public static final String TYPE_REGISTRY = "registrycreds"; public static final String TYPE_CLOUD_RMT = "cloudrmt"; public static final String TYPE_REPORT_CREDS = "reportcreds"; + public static final String TYPE_RHUI = "rhui"; private Long id; private User user; @@ -50,6 +55,8 @@ public class Credentials extends BaseDomainHelper { private PaygSshData paygSshData; + private Set paygProducts; + /** * Get the ID of this object. * @return id @@ -186,6 +193,14 @@ public void setPaygSshData(PaygSshData paygSshDataIn) { this.paygSshData = paygSshDataIn; } + public Set getPaygProducts() { + return paygProducts; + } + + public void setPaygProducts(Set paygProductsIn) { + this.paygProducts = paygProductsIn; + } + /** * Credentials are considered as valid as soon as we have a user and a * password. @@ -214,7 +229,19 @@ public boolean isEmpty() { * is at the moment denoted by having the url field set. */ public boolean isPrimarySCCCredential() { - return type.getLabel().equals(TYPE_SCC) && url != null; + return isTypeOf(TYPE_SCC) && url != null; + } + + /** + * Check if this credential is of type credentialType + * @param credentialType type to check for + * @return true if the type match, otherwise false + */ + public boolean isTypeOf(String credentialType) { + return Optional.ofNullable(getType()) + .map(CredentialsType::getLabel) + .filter(s -> s.equals(credentialType)) + .isPresent(); } /** @@ -227,10 +254,12 @@ public boolean equals(Object other) { } Credentials otherCredentials = (Credentials) other; return new EqualsBuilder() - .append(getType(), otherCredentials.getType()) - .append(getUsername(), otherCredentials.getUsername()) - .append(getPassword(), otherCredentials.getPassword()) - .isEquals(); + .append(getType(), otherCredentials.getType()) + .append(getUsername(), otherCredentials.getUsername()) + .append(getPassword(), otherCredentials.getPassword()) + .append(getUrl(), otherCredentials.getUrl()) + .append(getExtraAuthData(), otherCredentials.getExtraAuthData()) + .isEquals(); } /** diff --git a/java/code/src/com/redhat/rhn/domain/credentials/CredentialsFactory.java b/java/code/src/com/redhat/rhn/domain/credentials/CredentialsFactory.java index a40f2bde2bd5..5664c1c8052d 100644 --- a/java/code/src/com/redhat/rhn/domain/credentials/CredentialsFactory.java +++ b/java/code/src/com/redhat/rhn/domain/credentials/CredentialsFactory.java @@ -20,10 +20,7 @@ import org.apache.commons.lang3.StringUtils; import org.apache.logging.log4j.LogManager; import org.apache.logging.log4j.Logger; -import org.hibernate.Criteria; import org.hibernate.Session; -import org.hibernate.criterion.Order; -import org.hibernate.criterion.Restrictions; import java.util.Date; import java.util.List; @@ -93,15 +90,8 @@ public static Credentials createSCCCredentials() { * Helper method for looking up SCC credentials. * @return credentials or null */ - @SuppressWarnings("unchecked") - public static List lookupSCCCredentials() { - Session session = getSession(); - Criteria c = session.createCriteria(Credentials.class); - c.add(Restrictions.eq("type", CredentialsFactory - .findCredentialsTypeByLabel(Credentials.TYPE_SCC))); - c.addOrder(Order.asc("url")); - c.addOrder(Order.asc("id")); - return c.list(); + public static List listSCCCredentials() { + return listCredentialsByType(Credentials.TYPE_SCC); } /** @@ -148,6 +138,17 @@ public static Credentials createCloudRmtCredentials() { return creds; } + /** + * Helper method for creating new RHUI {@link Credentials} + * @return new credential with type RHUI + */ + public static Credentials createRhuiCredentials() { + Credentials creds = createCredentials(); + creds.setType(CredentialsFactory + .findCredentialsTypeByLabel(Credentials.TYPE_RHUI)); + return creds; + } + /** * Helper method for creating new Virtual Host Manager {@link Credentials} * @return new credential with type Virtual Host Manager @@ -164,11 +165,9 @@ public static Credentials createReportCredentials() { * @param username - the username * @param password - the password * @param credentialsType - credentials type - * @param params - optional paramaters * @return new Credentials instance */ - public static Credentials createCredentials(String username, String password, - String credentialsType, Map params) { + public static Credentials createCredentials(String username, String password, String credentialsType) { if (StringUtils.isEmpty(username)) { return null; } @@ -186,6 +185,9 @@ else if (credentialsType.equals(Credentials.TYPE_SCC)) { else if (credentialsType.equals(Credentials.TYPE_CLOUD_RMT)) { credentials = CredentialsFactory.createCloudRmtCredentials(); } + else if (credentialsType.equals(Credentials.TYPE_RHUI)) { + credentials = CredentialsFactory.createRhuiCredentials(); + } else if (credentialsType.equals(Credentials.TYPE_REPORT_CREDS)) { credentials = CredentialsFactory.createReportCredentials(); } @@ -199,6 +201,18 @@ else if (credentialsType.equals(Credentials.TYPE_REPORT_CREDS)) { return credentials; } + /** + * @param type the credential type label + * @return return a list of credentials of the given type + */ + public static List listCredentialsByType(String type) { + return getSession() + .createNamedQuery("Credentials.listByType", Credentials.class) + .setParameter("type", findCredentialsTypeByLabel(type)) + .list(); + } + + @Override protected Logger getLogger() { return log; diff --git a/java/code/src/com/redhat/rhn/domain/entitlement/Entitlement.java b/java/code/src/com/redhat/rhn/domain/entitlement/Entitlement.java index 977a5b4035ca..a5c07f2fc5d5 100644 --- a/java/code/src/com/redhat/rhn/domain/entitlement/Entitlement.java +++ b/java/code/src/com/redhat/rhn/domain/entitlement/Entitlement.java @@ -20,13 +20,15 @@ import com.suse.manager.reactor.utils.ValueMap; import org.apache.commons.lang3.builder.CompareToBuilder; +import org.apache.commons.lang3.builder.EqualsBuilder; +import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; /** * Entitlements */ public abstract class Entitlement implements Comparable { - private String label; + private final String label; /** * Constructs an Entitlement labeled lbl. @@ -68,6 +70,26 @@ public String toString() { return new ToStringBuilder(this).append("label", label).toString(); } + @Override + public boolean equals(Object o) { + if (this == o) { + return true; + } + + if (!(o instanceof Entitlement)) { + return false; + } + + Entitlement that = (Entitlement) o; + + return new EqualsBuilder().append(label, that.label).isEquals(); + } + + @Override + public int hashCode() { + return new HashCodeBuilder(17, 37).append(label).toHashCode(); + } + /** * {@inheritDoc} */ diff --git a/java/code/src/com/redhat/rhn/domain/errata/AdvisoryStatusEnumType.java b/java/code/src/com/redhat/rhn/domain/errata/AdvisoryStatusEnumType.java index 8af8cbf2cf94..b09e4106829b 100644 --- a/java/code/src/com/redhat/rhn/domain/errata/AdvisoryStatusEnumType.java +++ b/java/code/src/com/redhat/rhn/domain/errata/AdvisoryStatusEnumType.java @@ -17,11 +17,12 @@ /** * AdvisoryStatusEnumType */ -public class AdvisoryStatusEnumType extends CustomEnumType { +public class AdvisoryStatusEnumType extends CustomEnumType { /** * Constructor */ public AdvisoryStatusEnumType() { - super(AdvisoryStatus.class, AdvisoryStatus::getMetadataValue, s -> AdvisoryStatus.fromMetadata(s).get()); + super(AdvisoryStatus.class, String.class, AdvisoryStatus::getMetadataValue, + s -> AdvisoryStatus.fromMetadata(s).orElse(null)); } } diff --git a/java/code/src/com/redhat/rhn/domain/errata/CustomEnumType.java b/java/code/src/com/redhat/rhn/domain/errata/CustomEnumType.java index 00d377e7e583..545ec2bc22a8 100644 --- a/java/code/src/com/redhat/rhn/domain/errata/CustomEnumType.java +++ b/java/code/src/com/redhat/rhn/domain/errata/CustomEnumType.java @@ -22,38 +22,63 @@ import java.sql.PreparedStatement; import java.sql.ResultSet; import java.sql.SQLException; +import java.sql.Types; import java.util.function.Function; /** - * CustomEnumType - * @param type + * Allows to maps enum in a custom way + * @param enum class + * @param type class */ -public class CustomEnumType> implements UserType { +public abstract class CustomEnumType, K> implements UserType { - private final Class clazz; - private final Function toDb; - private final Function fromDb; + private final Class enumClass; + + private final Class typeClass; + private final Function toDb; + private final Function fromDb; /** * Constructor - * @param clazzIn the class + * @param enumClassIn the enum class + * @param typeClassIn the type class to store in the database. Currently supported: String, Integer * @param toDbIn to db * @param fromDbIn from db */ - public CustomEnumType(Class clazzIn, Function toDbIn, Function fromDbIn) { - this.clazz = clazzIn; + protected CustomEnumType(Class enumClassIn, Class typeClassIn, Function toDbIn, + Function fromDbIn) { + // Enforce type check + if (!typeClassIn.equals(Integer.class) && !typeClassIn.equals(String.class)) { + throw new IllegalArgumentException("Unsupported type class " + typeClassIn.getSimpleName()); + } + + this.enumClass = enumClassIn; + this.typeClass = typeClassIn; this.toDb = toDbIn; this.fromDb = fromDbIn; } + /** + * Defines the sql type to use + * @return a value from {@link java.sql.SQLType} + */ + public int getSqlType() { + if (typeClass.equals(String.class)) { + return Types.VARCHAR; + } + + // Return numeric as type check is enforced in the constructor + return Types.NUMERIC; + } + @Override public int[] sqlTypes() { - return new int[]{12}; + return new int[]{getSqlType()}; } @Override public Class returnedClass() { - return clazz; + return enumClass; } @Override @@ -70,7 +95,7 @@ public int hashCode(Object o) throws HibernateException { public Object nullSafeGet(ResultSet resultSet, String[] names, SharedSessionContractImplementor session, Object o) throws HibernateException, SQLException { String name = names[0]; - String value = resultSet.getString(name); + K value = resultSet.getObject(name, typeClass); if (resultSet.wasNull()) { return null; } @@ -82,12 +107,12 @@ public Object nullSafeGet(ResultSet resultSet, String[] names, SharedSessionCont @Override public void nullSafeSet(PreparedStatement statement, Object value, int position, SharedSessionContractImplementor session) throws HibernateException, SQLException { - String jdbcValue = value == null ? null : toDb.apply((T)value); + K jdbcValue = value == null ? null : toDb.apply(enumClass.cast(value)); if (jdbcValue == null) { statement.setNull(position, 12); } else { - statement.setString(position, jdbcValue); + statement.setObject(position, jdbcValue, getSqlType()); } } diff --git a/java/code/src/com/redhat/rhn/domain/image/ImageStoreFactory.java b/java/code/src/com/redhat/rhn/domain/image/ImageStoreFactory.java index e6ad11d8f798..0bf07eb31b34 100644 --- a/java/code/src/com/redhat/rhn/domain/image/ImageStoreFactory.java +++ b/java/code/src/com/redhat/rhn/domain/image/ImageStoreFactory.java @@ -219,6 +219,6 @@ public static Credentials createCredentials(Map params, ImageSto else { return null; } - return CredentialsFactory.createCredentials(params.get(USER_KEY), params.get(PASS_KEY), type, null); + return CredentialsFactory.createCredentials(params.get(USER_KEY), params.get(PASS_KEY), type); } } diff --git a/java/code/src/com/redhat/rhn/domain/notification/NotificationMessage.java b/java/code/src/com/redhat/rhn/domain/notification/NotificationMessage.java index d4fcc9b3da87..5466b26f94c3 100644 --- a/java/code/src/com/redhat/rhn/domain/notification/NotificationMessage.java +++ b/java/code/src/com/redhat/rhn/domain/notification/NotificationMessage.java @@ -150,7 +150,7 @@ public String getTypeAsString() { case ChannelSyncFinished: return "Channel sync finished"; case CreateBootstrapRepoFailed: return "Creating Bootstrap Repository failed"; case StateApplyFailed: return "State apply failed"; - case PaygAuthenticationUpdateFailed: return "Pay-as-you-go refresh authentication data failed"; + case PaygAuthenticationUpdateFailed: return "PAYG refresh failed"; case EndOfLifePeriod: return "End of Life Period"; case SubscriptionWarning: return "Subscription Warning"; default: return getType().name(); diff --git a/java/code/src/com/redhat/rhn/domain/notification/UserNotificationFactory.java b/java/code/src/com/redhat/rhn/domain/notification/UserNotificationFactory.java index 29bfd56d7eea..148b5bf7ec19 100644 --- a/java/code/src/com/redhat/rhn/domain/notification/UserNotificationFactory.java +++ b/java/code/src/com/redhat/rhn/domain/notification/UserNotificationFactory.java @@ -53,13 +53,21 @@ */ public class UserNotificationFactory extends HibernateFactory { - private static UserNotificationFactory singleton = new UserNotificationFactory(); private static Logger log = LogManager.getLogger(UserNotificationFactory.class); - + private static UserNotificationFactory singleton = new UserNotificationFactory(); private static Mail mailer; private UserNotificationFactory() { super(); + try { + configureMailer(); + } + catch (Exception e) { + log.error("Unable to configure the mailer: {}", e.getMessage(), e); + } + } + + private static void configureMailer() { String clazz = Config.get().getString("web.mailer_class"); if (clazz == null) { mailer = new SmtpMail(); @@ -79,7 +87,7 @@ private UserNotificationFactory() { * @param mailerIn the mailer */ public static void setMailer(Mail mailerIn) { - singleton.mailer = mailerIn; + mailer = mailerIn; } /** @@ -90,9 +98,7 @@ public static void setMailer(Mail mailerIn) { * @return new UserNotification */ public static UserNotification create(User userIn, NotificationMessage messageIn) { - UserNotification userNotification = - new UserNotification(userIn, messageIn); - return userNotification; + return new UserNotification(userIn, messageIn); } /** @@ -133,8 +139,7 @@ private static void store(UserNotification userNotificationIn) { * @return new notificationMessage */ public static NotificationMessage createNotificationMessage(NotificationData notification) { - NotificationMessage notificationMessage = new NotificationMessage(notification); - return notificationMessage; + return new NotificationMessage(notification); } /** @@ -158,7 +163,7 @@ public static void storeForUsers(NotificationMessage notificationMessageIn, Set< .filter(user -> user.getEmailNotify() == 1) .map(User::getEmail) .toArray(String[]::new); - if (receipients.length > 0) { + if (receipients.length > 0 && mailer != null) { String subject = String.format("%s Notification from %s: %s", MailHelper.PRODUCT_PREFIX, ConfigDefaults.get().getHostname(), @@ -168,8 +173,8 @@ public static void storeForUsers(NotificationMessage notificationMessageIn, Set< if (!StringUtils.isBlank(data.getDetails())) { message += "\n\n" + data.getDetails(); } - MailHelper.withMailer(singleton.mailer) - .sendEmail(receipients, subject, message.replaceAll("\\<.*?\\>", "")); + MailHelper.withMailer(mailer) + .sendEmail(receipients, subject, message.replaceAll("<.+>", "")); } } // Update Notification WebSocket Sessions right now @@ -318,7 +323,7 @@ public static int deleteNotificationMessagesBefore(Date before) { CriteriaBuilder builder = getSession().getCriteriaBuilder(); CriteriaDelete delete = builder.createCriteriaDelete(NotificationMessage.class); Root root = delete.from(NotificationMessage.class); - delete.where(builder.lessThan(root.get("created"), before)); + delete.where(builder.lessThan(root.get("created"), before)); return getSession().createQuery(delete).executeUpdate(); } diff --git a/java/code/src/com/redhat/rhn/domain/notification/types/ChannelSyncFailed.java b/java/code/src/com/redhat/rhn/domain/notification/types/ChannelSyncFailed.java index 3868658fa139..4c7008dd25a7 100644 --- a/java/code/src/com/redhat/rhn/domain/notification/types/ChannelSyncFailed.java +++ b/java/code/src/com/redhat/rhn/domain/notification/types/ChannelSyncFailed.java @@ -75,8 +75,11 @@ public NotificationType getType() { */ @Override public String getSummary() { - return LocalizationService.getInstance().getMessage("notification.channelsyncfailed", - getChannelId().toString(), getChannelName()); + if (getChannelId() != null && getChannelName() != null) { + return LocalizationService.getInstance().getMessage("notification.channelsyncfailed", + getChannelId().toString(), getChannelName()); + } + return LocalizationService.getInstance().getMessage("notification.channelsyncforbidden"); } /** @@ -84,6 +87,9 @@ public String getSummary() { */ @Override public String getDetails() { - return details; + if (details != null) { + return String.format("
%s
", details); + } + return ""; } } diff --git a/java/code/src/com/redhat/rhn/domain/notification/types/CreateBootstrapRepoFailed.java b/java/code/src/com/redhat/rhn/domain/notification/types/CreateBootstrapRepoFailed.java index b376072ea71c..9b26d4e91a7a 100644 --- a/java/code/src/com/redhat/rhn/domain/notification/types/CreateBootstrapRepoFailed.java +++ b/java/code/src/com/redhat/rhn/domain/notification/types/CreateBootstrapRepoFailed.java @@ -74,6 +74,9 @@ public String getSummary() { */ @Override public String getDetails() { - return details; + if (details != null) { + return String.format("
%s
", details); + } + return ""; } } diff --git a/java/code/src/com/redhat/rhn/domain/notification/types/OnboardingFailed.java b/java/code/src/com/redhat/rhn/domain/notification/types/OnboardingFailed.java index 863a8b718e97..a19ba397b013 100644 --- a/java/code/src/com/redhat/rhn/domain/notification/types/OnboardingFailed.java +++ b/java/code/src/com/redhat/rhn/domain/notification/types/OnboardingFailed.java @@ -82,6 +82,9 @@ public String getSummary() { */ @Override public String getDetails() { - return details; + if (details != null) { + return String.format("
%s
", details.replaceAll("\\\\n", "\n")); + } + return ""; } } diff --git a/java/code/src/com/redhat/rhn/domain/notification/types/PaygAuthenticationUpdateFailed.java b/java/code/src/com/redhat/rhn/domain/notification/types/PaygAuthenticationUpdateFailed.java index 820643afe9ee..e04b36f83b58 100644 --- a/java/code/src/com/redhat/rhn/domain/notification/types/PaygAuthenticationUpdateFailed.java +++ b/java/code/src/com/redhat/rhn/domain/notification/types/PaygAuthenticationUpdateFailed.java @@ -42,7 +42,7 @@ public Long getPaygDataId() { @Override public NotificationMessage.NotificationMessageSeverity getSeverity() { - return null; + return NotificationMessage.NotificationMessageSeverity.error; } @Override diff --git a/java/code/src/com/redhat/rhn/domain/org/test/CustomDataKeyTest.java b/java/code/src/com/redhat/rhn/domain/org/test/CustomDataKeyTest.java index 8dd2e98f7b81..103bed3f94a6 100644 --- a/java/code/src/com/redhat/rhn/domain/org/test/CustomDataKeyTest.java +++ b/java/code/src/com/redhat/rhn/domain/org/test/CustomDataKeyTest.java @@ -59,4 +59,15 @@ public static CustomDataKey createTestCustomDataKey(User user) { return key; } + + public static CustomDataKey createTestCustomDataKey(User user, String label) { + CustomDataKey key = new CustomDataKey(); + key.setCreator(user); + key.setLabel(label); + key.setDescription("testkey description"); + key.setOrg(user.getOrg()); + TestUtils.saveAndFlush(key); + + return key; + } } diff --git a/java/code/src/com/redhat/rhn/domain/product/SUSEProduct.java b/java/code/src/com/redhat/rhn/domain/product/SUSEProduct.java index 9a89d4205c95..23c7ce429b5f 100644 --- a/java/code/src/com/redhat/rhn/domain/product/SUSEProduct.java +++ b/java/code/src/com/redhat/rhn/domain/product/SUSEProduct.java @@ -21,12 +21,12 @@ import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; +import org.apache.commons.lang3.builder.ToStringBuilder; import java.io.Serializable; import java.util.HashSet; import java.util.Optional; import java.util.Set; -import java.util.StringJoiner; /** * POJO for a suseProducts row. @@ -81,6 +81,22 @@ public class SUSEProduct extends BaseDomainHelper implements Serializable { /** repositories */ private Set repositories = new HashSet<>(); + /** + * Default constructor. + */ + public SUSEProduct() { + // Just create an empty object + } + + /** + * Create a product with the given name. Convenience constructor for unit testing. + * + * @param nameIn the product name + */ + public SUSEProduct(String nameIn) { + this.name = nameIn; + } + /** * Gets the id. * @return the id @@ -371,15 +387,19 @@ public int hashCode() { .toHashCode(); } + /** + * {@inheritDoc} + */ @Override public String toString() { - return new StringJoiner(", ", SUSEProduct.class.getSimpleName() + "[", "]") - .add(Long.toString(getId())) - .add(getName()) - .add(getVersion()) - .add(getRelease()) - .add(getArch().getLabel()) - .add("SCCid=" + Long.toString(getProductId())) + return new ToStringBuilder(this) + .append("id", getId()) + .append("name", getName()) + .append("version", getVersion()) + .append("release", getRelease()) + .append("arch", getArch().getLabel()) + .append("productId", getProductId()) + .append("friendlyName", getFriendlyName()) .toString(); } } diff --git a/java/code/src/com/redhat/rhn/domain/product/SUSEProductExtension.hbm.xml b/java/code/src/com/redhat/rhn/domain/product/SUSEProductExtension.hbm.xml index 45d350d49801..ff3e8903d2d8 100644 --- a/java/code/src/com/redhat/rhn/domain/product/SUSEProductExtension.hbm.xml +++ b/java/code/src/com/redhat/rhn/domain/product/SUSEProductExtension.hbm.xml @@ -60,4 +60,14 @@ PUBLIC "-//Hibernate/Hibernate Mapping DTD 3.0//EN" ]]> + + + + + diff --git a/java/code/src/com/redhat/rhn/domain/product/SUSEProductFactory.java b/java/code/src/com/redhat/rhn/domain/product/SUSEProductFactory.java index a2148ce26ac5..a72f914d9af2 100644 --- a/java/code/src/com/redhat/rhn/domain/product/SUSEProductFactory.java +++ b/java/code/src/com/redhat/rhn/domain/product/SUSEProductFactory.java @@ -59,6 +59,8 @@ public class SUSEProductFactory extends HibernateFactory { private static Logger log = LogManager.getLogger(SUSEProductFactory.class); private static SUSEProductFactory singleton = new SUSEProductFactory(); + private static final RpmVersionComparator RPM_VERSION_COMPARATOR = new RpmVersionComparator(); + private SUSEProductFactory() { super(); } @@ -130,10 +132,9 @@ public static List lookupPSRByChannelLabel(String chan Session session = getSession(); Criteria c = session.createCriteria(SUSEProductSCCRepository.class); c.add(Restrictions.eq("channelLabel", channelLabel)); - RpmVersionComparator rpmVersionComparator = new RpmVersionComparator(); return ((List) c.list()).stream() .sorted((a, b) -> - rpmVersionComparator.compare(b.getProduct().getVersion(), a.getProduct().getVersion())) + RPM_VERSION_COMPARATOR.compare(b.getProduct().getVersion(), a.getProduct().getVersion())) .collect(Collectors.toList()); } @@ -230,11 +231,10 @@ public static List lookupByChannelName(String name) { * @return SUSEProductSCCRepository entry with the newest product */ public static Optional lookupByChannelLabelFirst(String channelLabel) { - RpmVersionComparator rpmVersionComparator = new RpmVersionComparator(); return lookupByChannelLabel(channelLabel) .stream() // sort so we always choose the latest version - .sorted((a, b) -> rpmVersionComparator.compare(b.getProduct().getVersion(), + .sorted((a, b) -> RPM_VERSION_COMPARATOR.compare(b.getProduct().getVersion(), a.getProduct().getVersion())) // We take the first item since there can be more than one entry. @@ -385,7 +385,7 @@ public static Stream findAllMandatoryChannels(String c */ public static Stream findNotSyncedMandatoryChannels(String channelLabel) { return findAllMandatoryChannels(channelLabel). - filter(spsr -> !Optional.ofNullable(ChannelFactory.lookupByLabel(spsr.getChannelLabel())).isPresent()) + filter(spsr -> Objects.nonNull(ChannelFactory.lookupByLabel(spsr.getChannelLabel()))) .sorted(Comparator.comparing(SUSEProductSCCRepository::getParentChannelLabel, Comparator.nullsFirst(Comparator.naturalOrder()))); } @@ -521,12 +521,9 @@ public static SUSEProduct lookupByProductId(long productId) { */ public static Map productsByProductIds() { Session session = getSession(); - Criteria c = session.createCriteria(SUSEProduct.class); - Map result = new HashMap<>(); - for (SUSEProduct prd: (List) c.list()) { - result.put(prd.getProductId(), prd); - } - return result; + return session.createQuery("from com.redhat.rhn.domain.product.SUSEProduct", SUSEProduct.class) + .stream() + .collect(Collectors.toMap(SUSEProduct::getProductId, p -> p)); } /** @@ -659,6 +656,19 @@ public static List findAllSUSEProducts() { return getSession().createCriteria(SUSEProduct.class).list(); } + /** + * Find all extensions of a given root product. When the given product + * is not a root product, the result is empty. + * @param root the root product + * @return List of {@link SUSEProduct} extensions + */ + public static List findAllExtensionsOfRootProduct(SUSEProduct root) { + return getSession() + .createNamedQuery("SUSEProductExtension.findAllExtensionsOfRootProduct", SUSEProduct.class) + .setParameter("rootId", root.getId()) + .list(); + } + /** * Find an {@link InstalledProduct} given by name, version, * release, arch and isBaseProduct flag. diff --git a/java/code/src/com/redhat/rhn/domain/product/test/SUSEProductTestUtils.java b/java/code/src/com/redhat/rhn/domain/product/test/SUSEProductTestUtils.java index afce2faa733b..285a457e15d2 100644 --- a/java/code/src/com/redhat/rhn/domain/product/test/SUSEProductTestUtils.java +++ b/java/code/src/com/redhat/rhn/domain/product/test/SUSEProductTestUtils.java @@ -23,6 +23,7 @@ import com.redhat.rhn.domain.channel.ChannelFamilyFactory; import com.redhat.rhn.domain.channel.test.ChannelFactoryTest; import com.redhat.rhn.domain.channel.test.ChannelFamilyFactoryTest; +import com.redhat.rhn.domain.channel.test.ChannelFamilyTest; import com.redhat.rhn.domain.common.ManagerInfoFactory; import com.redhat.rhn.domain.credentials.Credentials; import com.redhat.rhn.domain.credentials.CredentialsFactory; @@ -54,6 +55,7 @@ import com.google.gson.GsonBuilder; import com.google.gson.reflect.TypeToken; +import org.apache.commons.collections.CollectionUtils; import org.apache.logging.log4j.LogManager; import org.apache.logging.log4j.Logger; import org.hibernate.Session; @@ -61,6 +63,7 @@ import java.io.File; import java.io.InputStream; import java.io.InputStreamReader; +import java.util.Collection; import java.util.HashSet; import java.util.List; import java.util.Random; @@ -72,6 +75,7 @@ */ public class SUSEProductTestUtils extends HibernateFactory { + private static final Random RANDOM = new Random(); private static Logger log = LogManager.getLogger(SUSEProductTestUtils.class); /** @@ -85,15 +89,25 @@ private SUSEProductTestUtils() { * @param family the channel family * @return the newly created SUSE product */ - public static SUSEProduct createTestSUSEProduct(ChannelFamily family) { + public static SUSEProduct createTestSUSEProduct(ChannelFamily family) throws Exception { + return createTestSUSEProduct(family, TestUtils.randomString().toLowerCase()); + } + + /** + * Create a SUSE product (which is different from a {@link com.redhat.rhn.domain.channel.ChannelProduct}). + * @param family the channel family + * @param name the product name + * @return the newly created SUSE product + * @throws Exception if anything goes wrong + */ + public static SUSEProduct createTestSUSEProduct(ChannelFamily family, String name) throws Exception { SUSEProduct product = new SUSEProduct(); - String name = TestUtils.randomString().toLowerCase(); product.setName(name); product.setVersion("1"); product.setFriendlyName("SUSE Test product " + name); product.setArch(PackageFactory.lookupPackageArchByLabel("x86_64")); product.setRelease("test"); - product.setProductId(new Random().nextInt(999999)); + product.setProductId(RANDOM.nextInt(999999)); product.setBase(true); product.setReleaseStage(ReleaseStage.released); product.setChannelFamily(family); @@ -103,6 +117,35 @@ public static SUSEProduct createTestSUSEProduct(ChannelFamily family) { return product; } + /** + * Create a SUSEProduct for test with the given pieces of information. + * @param user the user + * @param name the name of the product + * @param version the version + * @param arch the architecture + * @param family the channel family + * @param isBase true if it is a base product + * @return the created SUSEProduct + */ + public static SUSEProduct createTestSUSEProduct(User user, String name, String version, String arch, String family, + boolean isBase) { + SUSEProduct product = new SUSEProduct(); + + product.setName(name); + product.setVersion(version); + product.setFriendlyName("SUSE Test product " + name); + product.setArch(PackageFactory.lookupPackageArchByLabel(arch)); + product.setRelease("test"); + product.setProductId(RANDOM.nextInt(999999)); + product.setBase(isBase); + product.setReleaseStage(ReleaseStage.released); + product.setChannelFamily(ChannelFamilyTest.ensureChannelFamilyExists(user, family)); + + product = TestUtils.saveAndReload(product); + + return product; + } + /** * Create SUSEProductSCCRepository for the product * @param baseProduct Base product @@ -219,6 +262,33 @@ public static void installSUSEProductOnServer(SUSEProduct product, Server server HibernateFactory.getSession().flush(); } + /** + * Install the specified products on the server + * @param server the server + * @param products the collection of products to install + */ + public static void installSUSEProductsOnServer(Server server, Collection products) { + if (CollectionUtils.isEmpty(products)) { + return; + } + + products.stream() + .map(product -> { + InstalledProduct prd = new InstalledProduct(); + + prd.setName(product.getName()); + prd.setVersion(product.getVersion()); + prd.setRelease(product.getRelease()); + prd.setArch(product.getArch()); + prd.setBaseproduct(product.isBase()); + + return prd; + }) + .forEach(server::addInstalledProduct); + + HibernateFactory.getSession().flush(); + } + /** * Create two standard SUSE Vendor products. * @@ -617,7 +687,7 @@ public static void clearAllProducts() { */ public static SCCRepository createSCCRepository() { SCCRepository bRepo = new SCCRepository(); - bRepo.setSccId(new Random().nextLong()); + bRepo.setSccId(RANDOM.nextLong()); bRepo.setAutorefresh(true); bRepo.setDescription(TestUtils.randomString()); bRepo.setDistroTarget("sle-15-x86_64"); diff --git a/java/code/src/com/redhat/rhn/domain/scc/SCCCachingFactory.java b/java/code/src/com/redhat/rhn/domain/scc/SCCCachingFactory.java index 5662679f30b6..93b8956e79e5 100644 --- a/java/code/src/com/redhat/rhn/domain/scc/SCCCachingFactory.java +++ b/java/code/src/com/redhat/rhn/domain/scc/SCCCachingFactory.java @@ -17,10 +17,12 @@ import com.redhat.rhn.common.conf.Config; import com.redhat.rhn.common.conf.ConfigDefaults; import com.redhat.rhn.common.hibernate.HibernateFactory; +import com.redhat.rhn.domain.channel.ChannelFamilyFactory; import com.redhat.rhn.domain.channel.ContentSource; import com.redhat.rhn.domain.credentials.Credentials; -import com.redhat.rhn.domain.credentials.CredentialsFactory; import com.redhat.rhn.domain.product.SUSEProduct; +import com.redhat.rhn.domain.product.SUSEProductFactory; +import com.redhat.rhn.domain.product.SUSEProductSCCRepository; import com.redhat.rhn.domain.server.Server; import com.suse.scc.model.SCCRepositoryJson; @@ -32,13 +34,13 @@ import org.apache.logging.log4j.Logger; import org.hibernate.Criteria; import org.hibernate.Session; -import org.hibernate.criterion.Projections; import org.hibernate.criterion.Restrictions; import java.math.BigDecimal; import java.util.ArrayList; import java.util.Calendar; import java.util.Collection; +import java.util.Collections; import java.util.Date; import java.util.HashMap; import java.util.HashSet; @@ -323,30 +325,29 @@ public static void clearOrderItems() { * @return true if refresh is needed, false otherwise */ public static boolean refreshNeeded(Optional lastRefreshDateIn) { - Session session = getSession(); - Criteria c = session.createCriteria(Credentials.class); - c.add(Restrictions.eq("type", CredentialsFactory - .findCredentialsTypeByLabel(Credentials.TYPE_SCC))); - c = c.setProjection(Projections.max("modified")); - Date modifiedCreds = (Date) c.uniqueResult(); - if (modifiedCreds == null) { - log.debug("REFRESH NEEDED - no credentials found"); - return true; - } - - // When was the cache last modified? - return Opt.fold( - lastRefreshDateIn, - () -> { - log.debug("REFRESH NEEDED - never refreshed"); + return getSession() + .createQuery( + "SELECT MAX(modified) FROM Credentials WHERE type.label IN ('scc', 'cloudrmt')", Date.class) + .uniqueResultOptional() + .map(lastModified -> { + // When was the cache last modified? + return Opt.fold( + lastRefreshDateIn, + () -> { + log.debug("REFRESH NEEDED - never refreshed"); + return true; + }, + modifiedCache -> { + log.debug("COMPARE: {} and {} : {}", modifiedCache, lastModified, + lastModified.compareTo(modifiedCache)); + return lastModified.compareTo(modifiedCache) > 0; + } + ); + }) + .orElseGet(() -> { + log.debug("REFRESH NEEDED - no credentials found"); return true; - }, - modifiedCache -> { - log.debug("COMPARE: {} and {} : {}", modifiedCache, modifiedCreds, - modifiedCache.compareTo(modifiedCreds)); - return modifiedCache.compareTo(modifiedCreds) < 0; - } - ); + }); } /** @@ -456,25 +457,51 @@ public static List lookupRepositoryIdsWithAuth() { * @return list of {@link SCCRepository} for the given channel family label */ public static List lookupRepositoriesByChannelFamily(String channelFamily) { - return getSession().getNamedQuery("SCCRepository.lookupByChannelFamily") + return getSession().createNamedQuery("SCCRepository.lookupByChannelFamily", SCCRepository.class) .setParameter("channelFamily", channelFamily).getResultList(); } /** - * Returns a list of repositories for a product, independent of the version, and arch. + * Returns a set of repositories for a product, independent of the version, and arch. * * @param productName name of the product we want to filter * @param archName arch name we want to filter - * @return List of repositories for all version of one product and arch + * @return Set of repositories for all version of one product and arch */ - public static List lookupRepositoriesByProductNameAndArchForPayg(String productName, - String archName) { - return getSession().getNamedQuery("SCCRepository.lookupByProductNameAndArchForPayg") + public static Set lookupRepositoriesByProductNameAndArchForPayg( + String productName, String archName) { + return new HashSet<>(getSession() + .createNamedQuery("SCCRepository.lookupByProductNameAndArchForPayg", SCCRepository.class) .setParameter("product_name", productName) .setParameter("arch_name", archName) - .getResultList(); + .list()); } + /** + * Returns a set of repositories for a root product + * + * @param productName name of the product we want to filter + * @param productVersion version of the product we want to filter + * @param archName arch name we want to filter + * @return Set of repositories for one root product with extensions + */ + public static Set lookupRepositoriesByRootProductNameVersionArchForPayg( + String productName, String productVersion, String archName) { + SUSEProduct product = SUSEProductFactory.findSUSEProduct(productName, productVersion, null, archName, true); + if (product == null) { + return Collections.emptySet(); + } + List prds = SUSEProductFactory.findAllExtensionsOfRootProduct(product); + prds.add(product); + List cfList = List.of(product.getChannelFamily().getLabel(), + ChannelFamilyFactory.MODULE_CHANNEL_FAMILY_LABEL); + return prds.stream() + .filter(p -> cfList.contains(p.getChannelFamily().getLabel())) + .flatMap(p -> p.getRepositories().stream()) + .map(SUSEProductSCCRepository::getRepository) + .collect(Collectors.toSet()); + } + /** * Find a compatible SCCRepository using a json repository * @param repos collection of available repositories diff --git a/java/code/src/com/redhat/rhn/domain/scc/SCCRepository.java b/java/code/src/com/redhat/rhn/domain/scc/SCCRepository.java index 2acc3d203f2e..7d9aee83034a 100644 --- a/java/code/src/com/redhat/rhn/domain/scc/SCCRepository.java +++ b/java/code/src/com/redhat/rhn/domain/scc/SCCRepository.java @@ -277,17 +277,17 @@ public Optional getBestAuth() { Optional result = Optional.empty(); for (SCCRepositoryAuth a : getRepositoryAuth()) { if (Config.get().getString(ContentSyncManager.RESOURCE_PATH, null) != null) { - if (!a.getOptionalCredentials().isPresent()) { + if (a.getOptionalCredentials().isEmpty()) { return Optional.of(a); } } // Credentials present else if (a.getOptionalCredentials().isPresent()) { Credentials ct = a.getOptionalCredentials().get(); //NOSONAR empty option is check in previous line - if (ct.getType().getLabel().equals(Credentials.TYPE_CLOUD_RMT)) { + if (ct.isTypeOf(Credentials.TYPE_CLOUD_RMT)) { // if it's Cloud rmt authentication, we want to use it only if SCC credential is not available if (result.flatMap(SCCRepositoryAuth::getOptionalCredentials) - .map(c -> !Credentials.TYPE_SCC.equals(c.getType().getLabel())) + .map(c -> !c.isTypeOf(Credentials.TYPE_SCC)) .orElse(true)) { result = Optional.of(a); } diff --git a/java/code/src/com/redhat/rhn/domain/scc/SCCRepositoryAuth.java b/java/code/src/com/redhat/rhn/domain/scc/SCCRepositoryAuth.java index b541126843ed..29758844851f 100644 --- a/java/code/src/com/redhat/rhn/domain/scc/SCCRepositoryAuth.java +++ b/java/code/src/com/redhat/rhn/domain/scc/SCCRepositoryAuth.java @@ -20,7 +20,9 @@ import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; +import org.apache.commons.lang3.builder.ToStringBuilder; +import java.util.Objects; import java.util.Optional; import java.util.function.Function; @@ -185,6 +187,13 @@ public Optional noAuth() { return fold(b -> Optional.empty(), Optional::of, t -> Optional.empty(), c -> Optional.empty()); } + /** + * @return {@link Optional} {@link SCCRepositoryCloudRmtAuth} + */ + public Optional cloudRmtAuth() { + return fold(b -> Optional.empty(), n -> Optional.empty(), t -> Optional.empty(), Optional::of); + } + /** * {@inheritDoc} */ @@ -211,4 +220,15 @@ public int hashCode() { .append(getRepo()) .toHashCode(); } + + /** + * {@inheritDoc} + */ + @Override + public String toString() { + return new ToStringBuilder(this) + .append("id", getId()) + .append("repo", Objects.toString(getRepo())) + .toString(); + } } diff --git a/java/code/src/com/redhat/rhn/domain/scc/SCCRepositoryBasicAuth.java b/java/code/src/com/redhat/rhn/domain/scc/SCCRepositoryBasicAuth.java index b92cc419c8ac..a9699dcbb683 100644 --- a/java/code/src/com/redhat/rhn/domain/scc/SCCRepositoryBasicAuth.java +++ b/java/code/src/com/redhat/rhn/domain/scc/SCCRepositoryBasicAuth.java @@ -15,6 +15,7 @@ package com.redhat.rhn.domain.scc; import org.apache.commons.lang3.StringUtils; +import org.apache.commons.lang3.builder.ToStringBuilder; import org.apache.logging.log4j.LogManager; import org.apache.logging.log4j.Logger; @@ -79,4 +80,15 @@ public T fold( Function cloudRmtAuth) { return basicAuth.apply(this); } + + /** + * {@inheritDoc} + */ + @Override + public String toString() { + return new ToStringBuilder(this) + .appendSuper(super.toString()) + .append("authType", "basic") + .toString(); + } } diff --git a/java/code/src/com/redhat/rhn/domain/scc/SCCRepositoryCloudRmtAuth.java b/java/code/src/com/redhat/rhn/domain/scc/SCCRepositoryCloudRmtAuth.java index 9a7b77dcea50..d9d1558f002d 100644 --- a/java/code/src/com/redhat/rhn/domain/scc/SCCRepositoryCloudRmtAuth.java +++ b/java/code/src/com/redhat/rhn/domain/scc/SCCRepositoryCloudRmtAuth.java @@ -15,7 +15,10 @@ package com.redhat.rhn.domain.scc; +import com.redhat.rhn.manager.content.MgrSyncUtils; + import org.apache.commons.lang3.StringUtils; +import org.apache.commons.lang3.builder.ToStringBuilder; import org.apache.logging.log4j.LogManager; import org.apache.logging.log4j.Logger; @@ -56,6 +59,17 @@ public SCCRepositoryCloudRmtAuth() { } public String getUrl() { try { URI url = new URI(getRepo().getUrl()); + if (!url.getHost().startsWith(MgrSyncUtils.OFFICIAL_SUSE_UPDATE_HOST)) { + /* + SCC data contain repositories which point to external server and are free to access. + Examples are openSUSE and nVidia repositories. These repos are not available on the RMT servers + and the URLs shoudl not be re-written. Creating them at type {@link SCCRepositoryNoAuth} + requires to get the json definition of the repo somehow as input into + {@link ContentSyncManager#refreshRepositoriesAuthentication}. Otherwise the repo will be removed again. + Just returning the original URL here is better to understand. + */ + return getRepo().getUrl(); + } URI credUrl = new URI(getCredentials().getUrl()); List sourceParams = new ArrayList<>(Arrays.asList( @@ -81,4 +95,15 @@ public T fold( Function cloudRmtAuth) { return cloudRmtAuth.apply(this); } + + /** + * {@inheritDoc} + */ + @Override + public String toString() { + return new ToStringBuilder(this) + .appendSuper(super.toString()) + .append("authType", "rmtAuth") + .toString(); + } } diff --git a/java/code/src/com/redhat/rhn/domain/scc/SCCRepositoryNoAuth.java b/java/code/src/com/redhat/rhn/domain/scc/SCCRepositoryNoAuth.java index 84005295a79b..f4c719246f04 100644 --- a/java/code/src/com/redhat/rhn/domain/scc/SCCRepositoryNoAuth.java +++ b/java/code/src/com/redhat/rhn/domain/scc/SCCRepositoryNoAuth.java @@ -14,8 +14,12 @@ */ package com.redhat.rhn.domain.scc; +import com.redhat.rhn.common.conf.Config; +import com.redhat.rhn.manager.content.ContentSyncManager; import com.redhat.rhn.manager.content.MgrSyncUtils; +import org.apache.commons.lang3.builder.ToStringBuilder; + import java.util.function.Function; import javax.persistence.DiscriminatorValue; @@ -40,7 +44,7 @@ public SCCRepositoryNoAuth() { } @Override @Transient public String getUrl() { - if (getCredentials() == null) { + if (Config.get().getString(ContentSyncManager.RESOURCE_PATH, null) != null) { return MgrSyncUtils.urlToFSPath(getRepo().getUrl(), getRepo().getName()).toString(); } return getRepo().getUrl(); @@ -54,4 +58,15 @@ public T fold( Function cloudRmtAuth) { return noAuth.apply(this); } + + /** + * {@inheritDoc} + */ + @Override + public String toString() { + return new ToStringBuilder(this) + .appendSuper(super.toString()) + .append("authType", "none") + .toString(); + } } diff --git a/java/code/src/com/redhat/rhn/domain/scc/SCCRepositoryTokenAuth.java b/java/code/src/com/redhat/rhn/domain/scc/SCCRepositoryTokenAuth.java index 32f782b76eb9..6857b3ab7d3c 100644 --- a/java/code/src/com/redhat/rhn/domain/scc/SCCRepositoryTokenAuth.java +++ b/java/code/src/com/redhat/rhn/domain/scc/SCCRepositoryTokenAuth.java @@ -14,6 +14,7 @@ */ package com.redhat.rhn.domain.scc; +import org.apache.commons.lang3.builder.ToStringBuilder; import org.apache.logging.log4j.LogManager; import org.apache.logging.log4j.Logger; @@ -93,4 +94,14 @@ public T fold( return tokenAuth.apply(this); } + /** + * {@inheritDoc} + */ + @Override + public String toString() { + return new ToStringBuilder(this) + .appendSuper(super.toString()) + .append("authType", "token") + .toString(); + } } diff --git a/java/code/src/com/redhat/rhn/domain/scc/test/SCCCachingFactoryTest.java b/java/code/src/com/redhat/rhn/domain/scc/test/SCCCachingFactoryTest.java index 2e194e900fd7..f37adbf7cccc 100644 --- a/java/code/src/com/redhat/rhn/domain/scc/test/SCCCachingFactoryTest.java +++ b/java/code/src/com/redhat/rhn/domain/scc/test/SCCCachingFactoryTest.java @@ -22,9 +22,10 @@ import com.redhat.rhn.domain.common.ManagerInfoFactory; import com.redhat.rhn.domain.credentials.Credentials; import com.redhat.rhn.domain.credentials.CredentialsFactory; +import com.redhat.rhn.domain.product.test.SUSEProductTestUtils; import com.redhat.rhn.domain.scc.SCCCachingFactory; import com.redhat.rhn.domain.scc.SCCRepository; -import com.redhat.rhn.testing.RhnBaseTestCase; +import com.redhat.rhn.testing.BaseTestCaseWithUser; import com.redhat.rhn.testing.TestUtils; import org.junit.jupiter.api.BeforeEach; @@ -33,11 +34,13 @@ import java.util.Date; import java.util.List; import java.util.Optional; +import java.util.Set; +import java.util.stream.Collectors; /** * Tests for {@link SCCCachingFactory}. */ -public class SCCCachingFactoryTest extends RhnBaseTestCase { +public class SCCCachingFactoryTest extends BaseTestCaseWithUser { /** * Test if initially an empty list is returned. @@ -73,7 +76,7 @@ public void testRepositoriesInsertAndLookup() { */ @Test public void testRefreshNeeded() { - for (Credentials c : CredentialsFactory.lookupSCCCredentials()) { + for (Credentials c : CredentialsFactory.listSCCCredentials()) { CredentialsFactory.removeCredentials(c); } Credentials creds = CredentialsFactory.createSCCCredentials(); @@ -94,6 +97,20 @@ public void testRefreshNeeded() { assertTrue(SCCCachingFactory.refreshNeeded(lastRefreshDate)); } + @Test + public void testListReposForRootProduct() throws Exception { + SUSEProductTestUtils.createVendorSUSEProductEnvironment(user, null, true); + HibernateFactory.getSession().flush(); + HibernateFactory.getSession().clear(); + + Set repos = SCCCachingFactory.lookupRepositoriesByRootProductNameVersionArchForPayg( + "sles", "12", "x86_64"); + List repoNames = repos.stream().map(SCCRepository::getName).collect(Collectors.toList()); + assertContains(repoNames, "SUSE-PackageHub-12-Pool"); + assertContains(repoNames, "SLE-Module-Web-Scripting12-Pool"); + assertContains(repoNames, "SLES12-Updates"); + assertContains(repoNames, "SLE-Manager-Tools12-Pool"); + } /** * Repo for testing setting random strings and a given ID. * @return repository @@ -114,7 +131,8 @@ private SCCRepository createTestRepo(Long id) { */ @Override @BeforeEach - public void setUp() { + public void setUp() throws Exception { + super.setUp(); SCCCachingFactory.clearRepositories(); } } diff --git a/java/code/src/com/redhat/rhn/domain/server/MinionServer.java b/java/code/src/com/redhat/rhn/domain/server/MinionServer.java index b1f84ae16ac6..37563977e564 100644 --- a/java/code/src/com/redhat/rhn/domain/server/MinionServer.java +++ b/java/code/src/com/redhat/rhn/domain/server/MinionServer.java @@ -192,6 +192,13 @@ public void setPillars(Set pillarsIn) { pillars.addAll(pillarsIn); } + /** + * @param pillarIn value of pillar + */ + public void addPillar(Pillar pillarIn) { + pillars.add(pillarIn); + } + /** * Get the pillar corresponding to a category. * diff --git a/java/code/src/com/redhat/rhn/domain/server/Server.java b/java/code/src/com/redhat/rhn/domain/server/Server.java index 915226c97825..ea6caedecef1 100644 --- a/java/code/src/com/redhat/rhn/domain/server/Server.java +++ b/java/code/src/com/redhat/rhn/domain/server/Server.java @@ -2007,6 +2007,19 @@ public Set getInstalledProducts() { return installedProducts; } + /** + * Add an InstalledProduct to this server + * + * @param product the product + */ + public void addInstalledProduct(InstalledProduct product) { + if (this.installedProducts == null) { + this.installedProducts = new HashSet<>(); + } + + this.installedProducts.add(product); + } + /** * Return the installed products or null in case of no products found. * @return installed products diff --git a/java/code/src/com/redhat/rhn/domain/server/ServerFactory.java b/java/code/src/com/redhat/rhn/domain/server/ServerFactory.java index 2f6d17939855..954561c04c87 100644 --- a/java/code/src/com/redhat/rhn/domain/server/ServerFactory.java +++ b/java/code/src/com/redhat/rhn/domain/server/ServerFactory.java @@ -1342,6 +1342,15 @@ public static List list(boolean fetchingVirtualGuests, boolean fetchingG } + /** + * Returns a list of ids of all the servers. + * + * @return the list of all the ids of the servers + */ + public static List listAllServerIds() { + return getSession().createNamedQuery("Server.listAllServerIds", Long.class).list(); + } + /** * Get all SLES systems containing the name query string * diff --git a/java/code/src/com/redhat/rhn/domain/server/Server_legacyUser.hbm.xml b/java/code/src/com/redhat/rhn/domain/server/Server_legacyUser.hbm.xml index f5a8ed22fbdb..2971c38d84ad 100644 --- a/java/code/src/com/redhat/rhn/domain/server/Server_legacyUser.hbm.xml +++ b/java/code/src/com/redhat/rhn/domain/server/Server_legacyUser.hbm.xml @@ -515,7 +515,7 @@ PUBLIC "-//Hibernate/Hibernate Mapping DTD 3.0//EN" CASE WHEN (SELECT COUNT(*) FROM rhnErrataPackage k WHERE e.id = k.errata_id AND k.package_id IN (SELECT id FROM rhnPackage p WHERE p.name_id IN - (SELECT id FROM rhnPackageName pn WHERE pn.name = 'salt'))) > 0 + (SELECT id FROM rhnPackageName pn WHERE pn.name = 'salt' OR pn.name = 'venv-salt-minion'))) > 0 THEN 1 ELSE 0 END AS includeSalt @@ -619,4 +619,11 @@ PUBLIC "-//Hibernate/Hibernate Mapping DTD 3.0//EN" AND status in ( 0, 1 )]]>
+ + + + diff --git a/java/code/src/com/redhat/rhn/domain/server/test/CustomDataValueTest.java b/java/code/src/com/redhat/rhn/domain/server/test/CustomDataValueTest.java index 0605c823c227..b5132fad28bb 100644 --- a/java/code/src/com/redhat/rhn/domain/server/test/CustomDataValueTest.java +++ b/java/code/src/com/redhat/rhn/domain/server/test/CustomDataValueTest.java @@ -69,4 +69,15 @@ public static CustomDataValue createTestCustomDataValue(User user, return val; } + + public static CustomDataValue createTestCustomDataValue(User user, CustomDataKey key, Server server, String value) { + CustomDataValue val = new CustomDataValue(); + val.setCreator(user); + val.setKey(key); + val.setServer(server); + val.setValue(value); + TestUtils.saveAndFlush(val); + + return val; + } } diff --git a/java/code/src/com/redhat/rhn/domain/server/test/MinionServerFactoryTest.java b/java/code/src/com/redhat/rhn/domain/server/test/MinionServerFactoryTest.java index be6ed439b602..241fa6c7478a 100644 --- a/java/code/src/com/redhat/rhn/domain/server/test/MinionServerFactoryTest.java +++ b/java/code/src/com/redhat/rhn/domain/server/test/MinionServerFactoryTest.java @@ -136,9 +136,8 @@ public void testListMinionsByActions() throws Exception { * * @param owner the user owning the server * @return the MinionServer object - * @throws Exception in case of an error */ - public static MinionServer createTestMinionServer(User owner) throws Exception { + public static MinionServer createTestMinionServer(User owner) { return (MinionServer) ServerFactoryTest.createTestServer(owner, true, ServerConstants.getServerGroupTypeSaltEntitled(), ServerFactoryTest.TYPE_SERVER_MINION); diff --git a/java/code/src/com/redhat/rhn/domain/server/test/MinionServerTest.java b/java/code/src/com/redhat/rhn/domain/server/test/MinionServerTest.java index da800e1bab73..0fa6f5806d08 100644 --- a/java/code/src/com/redhat/rhn/domain/server/test/MinionServerTest.java +++ b/java/code/src/com/redhat/rhn/domain/server/test/MinionServerTest.java @@ -26,6 +26,7 @@ import org.junit.jupiter.api.Test; +import java.util.Collections; import java.util.HashMap; import java.util.HashSet; import java.util.Map; @@ -55,8 +56,7 @@ public void testPillars() throws Exception { pillars.add(new Pillar("category2", pillar2, minionServer)); minionServer.setPillars(pillars); - TestUtils.saveAndFlush(minionServer); - minionServer = reload(minionServer); + minionServer = TestUtils.saveAndReload(minionServer); Pillar actual = minionServer.getPillarByCategory("category1").get(); assertNotNull(actual); @@ -66,4 +66,26 @@ public void testPillars() throws Exception { assertFalse(actual.isGroupPillar()); assertFalse(actual.isOrgPillar()); } + + @Test + public void testMinionPillarAdding() throws Exception { + MinionServer minion = MinionServerFactoryTest.createTestMinionServer(user); + + Set pillars = new HashSet<>(); + for (int i = 0; i < 2; i++) { + Map data = Collections.singletonMap("key", String.format("value%d", i)); + Pillar pillar = new Pillar(String.format("original_pillar%d", i), data, minion); + pillars.add(pillar); + } + minion.setPillars(pillars); + minion = TestUtils.saveAndReload(minion); + assertEquals(3, minion.getPillars().size()); + + Pillar newPillar = new Pillar("new_pillar", Collections.singletonMap("key", "value"), minion); + minion.addPillar(newPillar); + + minion = TestUtils.saveAndReload(minion); + + assertEquals(4, minion.getPillars().size()); + } } diff --git a/java/code/src/com/redhat/rhn/domain/server/test/ServerFactoryTest.java b/java/code/src/com/redhat/rhn/domain/server/test/ServerFactoryTest.java index bfac63a32a82..e096a397d12c 100644 --- a/java/code/src/com/redhat/rhn/domain/server/test/ServerFactoryTest.java +++ b/java/code/src/com/redhat/rhn/domain/server/test/ServerFactoryTest.java @@ -608,8 +608,7 @@ public static Server createTestServer(User owner, boolean ensureOwnerAccess, } - public static Server createTestServer(User owner, boolean ensureOwnerAccess, - ServerGroupType type, int stype) { + public static Server createTestServer(User owner, boolean ensureOwnerAccess, ServerGroupType type, int stype) { return createTestServer(owner, ensureOwnerAccess, type, stype, new Date()); } @@ -747,7 +746,7 @@ private static void populateServer(Server s, User owner, int type) { info.setVersion(PackageEvrFactory.lookupOrCreatePackageEvr(null, "2022.03", "0", s.getPackageType())); info.setReportDbName("reportdb"); info.setReportDbCredentials(CredentialsFactory.createCredentials( - "pythia", "secret", Credentials.TYPE_REPORT_CREDS, null)); + "pythia", "secret", Credentials.TYPE_REPORT_CREDS)); info.setReportDbHost("localhost"); info.setReportDbPort(5432); info.setServer(minionServer); diff --git a/java/code/src/com/redhat/rhn/frontend/action/audit/ssm/SsmScheduleXccdfConfirmAction.java b/java/code/src/com/redhat/rhn/frontend/action/audit/ssm/SsmScheduleXccdfConfirmAction.java index 0e9f60762733..76ede0d2ff2f 100644 --- a/java/code/src/com/redhat/rhn/frontend/action/audit/ssm/SsmScheduleXccdfConfirmAction.java +++ b/java/code/src/com/redhat/rhn/frontend/action/audit/ssm/SsmScheduleXccdfConfirmAction.java @@ -91,8 +91,7 @@ private ActionForward processForm(ActionMapping mapping, new ActionMessage("message.entitlement.missing", e.getMessage())); } catch (TaskomaticApiException e) { - log.error("Could not schedule XCCDF evaluation:"); - log.error(e); + log.error("Could not schedule XCCDF evaluation:", e); strutsDelegate.addError(errors, "taskscheduler.down"); } diff --git a/java/code/src/com/redhat/rhn/frontend/action/channel/manage/EditChannelAction.java b/java/code/src/com/redhat/rhn/frontend/action/channel/manage/EditChannelAction.java index 7ead42d10aba..1221b2332670 100644 --- a/java/code/src/com/redhat/rhn/frontend/action/channel/manage/EditChannelAction.java +++ b/java/code/src/com/redhat/rhn/frontend/action/channel/manage/EditChannelAction.java @@ -44,6 +44,7 @@ import com.redhat.rhn.manager.channel.ChannelManager; import com.redhat.rhn.manager.channel.CloneChannelCommand; import com.redhat.rhn.manager.channel.CreateChannelCommand; +import com.redhat.rhn.manager.channel.ForbiddenCloneChannelPAYGException; import com.redhat.rhn.manager.channel.InvalidGPGFingerprintException; import com.redhat.rhn.manager.channel.UpdateChannelCommand; import com.redhat.rhn.manager.download.DownloadManager; @@ -500,6 +501,10 @@ private Long createChannelHelper(CreateChannelCommand command, DynaActionForm fo catch (IllegalArgumentException iae) { errors.add(ActionMessages.GLOBAL_MESSAGE, new ActionMessage(iae.getMessage())); } + catch (ForbiddenCloneChannelPAYGException f) { + errors.add(ActionMessages.GLOBAL_MESSAGE, new ActionMessage( + "edit.channel.forbiddenclonechannelpayg")); + } return null; } diff --git a/java/code/src/com/redhat/rhn/frontend/action/channel/ssm/BaseSubscribeAction.java b/java/code/src/com/redhat/rhn/frontend/action/channel/ssm/BaseSubscribeAction.java index fc55d60d31dc..76eb72bcef2e 100644 --- a/java/code/src/com/redhat/rhn/frontend/action/channel/ssm/BaseSubscribeAction.java +++ b/java/code/src/com/redhat/rhn/frontend/action/channel/ssm/BaseSubscribeAction.java @@ -683,7 +683,7 @@ protected ActionMessages buildMessages(User u, Map> successes, if (srvrs.isEmpty()) { continue; } - else if (toId == -1L) { + else if (toId != null && toId == -1L) { am = new ActionMessage("basesub.jsp.success-default", srvrs.size()); msgs.add(ActionMessages.GLOBAL_MESSAGE, am); } @@ -697,7 +697,7 @@ else if (toId == -1L) { if (srvrs.isEmpty()) { continue; } - else if (toId == -1L) { + else if (toId != null && toId == -1L) { am = new ActionMessage("basesub.jsp.skip-default", srvrs.size()); msgs.add(ActionMessages.GLOBAL_MESSAGE, am); } diff --git a/java/code/src/com/redhat/rhn/frontend/action/common/TinyUrlAction.java b/java/code/src/com/redhat/rhn/frontend/action/common/TinyUrlAction.java index 26dde432c0ce..d3a0de0a104e 100644 --- a/java/code/src/com/redhat/rhn/frontend/action/common/TinyUrlAction.java +++ b/java/code/src/com/redhat/rhn/frontend/action/common/TinyUrlAction.java @@ -14,7 +14,6 @@ */ package com.redhat.rhn.frontend.action.common; -import com.redhat.rhn.common.util.StringUtil; import com.redhat.rhn.domain.common.CommonFactory; import com.redhat.rhn.domain.common.TinyUrl; import com.redhat.rhn.frontend.struts.RhnAction; @@ -25,8 +24,6 @@ import org.apache.struts.action.ActionForward; import org.apache.struts.action.ActionMapping; -import java.util.Enumeration; - import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; @@ -47,15 +44,6 @@ public ActionForward execute(ActionMapping mapping, ActionForm form, HttpServletRequest request, HttpServletResponse response) throws Exception { String token = request.getParameter(TY_TOKEN); - if (log.isDebugEnabled()) { - log.debug("token: {}", StringUtil.sanitizeLogInput(token)); - Enumeration e = request.getParameterNames(); - while (e.hasMoreElements()) { - String name = e.nextElement(); - log.debug("param.name: {} val: {}", StringUtil.sanitizeLogInput(name), - StringUtil.sanitizeLogInput(request.getParameter(name))); - } - } TinyUrl turl = CommonFactory.lookupTinyUrl(token); if (turl != null) { diff --git a/java/code/src/com/redhat/rhn/frontend/action/configuration/BaseAddFilesAction.java b/java/code/src/com/redhat/rhn/frontend/action/configuration/BaseAddFilesAction.java index 9a3bd8a0fb5b..af668cc4a76e 100644 --- a/java/code/src/com/redhat/rhn/frontend/action/configuration/BaseAddFilesAction.java +++ b/java/code/src/com/redhat/rhn/frontend/action/configuration/BaseAddFilesAction.java @@ -136,7 +136,7 @@ protected ActionForward doCreate(HttpServletRequest req, getStrutsDelegate().saveMessages(req, ve.getResult()); } catch (Exception e) { - LOG.error(e); + LOG.error(e.getMessage(), e); } // If we got here, something went wrong - try again return getStrutsDelegate().forwardParams( diff --git a/java/code/src/com/redhat/rhn/frontend/action/configuration/files/FileDetailsAction.java b/java/code/src/com/redhat/rhn/frontend/action/configuration/files/FileDetailsAction.java index 6d255d9bedab..9f3dd94e1abf 100644 --- a/java/code/src/com/redhat/rhn/frontend/action/configuration/files/FileDetailsAction.java +++ b/java/code/src/com/redhat/rhn/frontend/action/configuration/files/FileDetailsAction.java @@ -14,7 +14,6 @@ */ package com.redhat.rhn.frontend.action.configuration.files; -import com.redhat.rhn.common.conf.ConfigDefaults; import com.redhat.rhn.common.util.StringUtil; import com.redhat.rhn.common.validator.ValidatorException; import com.redhat.rhn.domain.config.ConfigFile; @@ -98,7 +97,6 @@ public ActionForward execute(ActionMapping mapping, ActionForm form, cff.updateFromRevision(request, cr); setupRequestParams(context, cr); request.setAttribute("form", cff); - request.setAttribute("documentation", ConfigDefaults.get().isDocAvailable()); request.setAttribute(ManageRevisionSetup.MAX_SIZE, StringUtil .displayFileSize(ConfigFile.getMaxFileSize())); diff --git a/java/code/src/com/redhat/rhn/frontend/action/configuration/files/FileDownloadAction.java b/java/code/src/com/redhat/rhn/frontend/action/configuration/files/FileDownloadAction.java index fb4618ce365e..f4f06c125ee0 100644 --- a/java/code/src/com/redhat/rhn/frontend/action/configuration/files/FileDownloadAction.java +++ b/java/code/src/com/redhat/rhn/frontend/action/configuration/files/FileDownloadAction.java @@ -14,7 +14,6 @@ */ package com.redhat.rhn.frontend.action.configuration.files; -import com.redhat.rhn.common.conf.ConfigDefaults; import com.redhat.rhn.domain.config.ConfigRevision; import com.redhat.rhn.frontend.action.configuration.ConfigActionHelper; import com.redhat.rhn.frontend.action.configuration.ConfigFileForm; @@ -48,7 +47,6 @@ public ActionForward execute(ActionMapping mapping, ActionForm form, ConfigFileForm cff = (ConfigFileForm) form; request.setAttribute(CSRF_TOKEN, request.getSession().getAttribute("csrf_token")); - request.setAttribute("documentation", ConfigDefaults.get().isDocAvailable()); ConfigRevision cr = ConfigActionHelper.findRevision(request); diff --git a/java/code/src/com/redhat/rhn/frontend/action/configuration/files/GlobalRevisionDeployConfirmSubmit.java b/java/code/src/com/redhat/rhn/frontend/action/configuration/files/GlobalRevisionDeployConfirmSubmit.java index 041adff69a38..38c489bb773c 100644 --- a/java/code/src/com/redhat/rhn/frontend/action/configuration/files/GlobalRevisionDeployConfirmSubmit.java +++ b/java/code/src/com/redhat/rhn/frontend/action/configuration/files/GlobalRevisionDeployConfirmSubmit.java @@ -122,8 +122,7 @@ public ActionForward scheduleDeploy( } } catch (TaskomaticApiException e) { - log.error("Could not schedule configuration deploy:"); - log.error(e); + log.error("Could not schedule configuration deploy:", e); } } diff --git a/java/code/src/com/redhat/rhn/frontend/action/configuration/overview/TargetSystemsSubmitAction.java b/java/code/src/com/redhat/rhn/frontend/action/configuration/overview/TargetSystemsSubmitAction.java index 4a93244807fb..b80362fde07f 100644 --- a/java/code/src/com/redhat/rhn/frontend/action/configuration/overview/TargetSystemsSubmitAction.java +++ b/java/code/src/com/redhat/rhn/frontend/action/configuration/overview/TargetSystemsSubmitAction.java @@ -120,8 +120,7 @@ public ActionForward enableSystems(ActionMapping mapping, return mapping.findForward("default"); } catch (TaskomaticApiException e) { - log.error("Could not schedule configuration enablement:"); - log.error(e); + log.error("Could not schedule configuration enablement:", e); ValidatorError verrors = new ValidatorError("taskscheduler.down"); ActionErrors errors = RhnValidationHelper.validatorErrorToActionErrors(verrors); getStrutsDelegate().saveMessages(request, errors); diff --git a/java/code/src/com/redhat/rhn/frontend/action/configuration/sdc/FileListConfirmSubmitAction.java b/java/code/src/com/redhat/rhn/frontend/action/configuration/sdc/FileListConfirmSubmitAction.java index 63df0a20f75a..ff71c1bb8613 100644 --- a/java/code/src/com/redhat/rhn/frontend/action/configuration/sdc/FileListConfirmSubmitAction.java +++ b/java/code/src/com/redhat/rhn/frontend/action/configuration/sdc/FileListConfirmSubmitAction.java @@ -126,8 +126,7 @@ public ActionForward importFile(ActionMapping mapping, ActionForm formIn, } } catch (TaskomaticApiException e) { - log.error("Could not schedule config upload:"); - log.error(e); + log.error("Could not schedule config upload:", e); return createErrorMessage(request, mapping, formIn, server.getId(), "taskscheduler.down"); } @@ -203,8 +202,7 @@ private ActionForward createRevisionAction(HttpServletRequest request, ActionFor } } catch (TaskomaticApiException e) { - log.error("Could not schedule config actions:"); - log.error(e); + log.error("Could not schedule config actions:", e); return createErrorMessage(request, mapping, form, sid, "taskscheduler.down"); } diff --git a/java/code/src/com/redhat/rhn/frontend/action/configuration/ssm/EnableSubmitAction.java b/java/code/src/com/redhat/rhn/frontend/action/configuration/ssm/EnableSubmitAction.java index 2eb2c4a40c0b..69b436b81b97 100644 --- a/java/code/src/com/redhat/rhn/frontend/action/configuration/ssm/EnableSubmitAction.java +++ b/java/code/src/com/redhat/rhn/frontend/action/configuration/ssm/EnableSubmitAction.java @@ -95,8 +95,7 @@ public ActionForward enable(ActionMapping mapping, return mapping.findForward("default"); } catch (TaskomaticApiException e) { - log.error("Could not schedule configuration enablement:"); - log.error(e); + log.error("Could not schedule configuration enablement:", e); ValidatorError verrors = new ValidatorError("taskscheduler.down"); ActionErrors errors = RhnValidationHelper.validatorErrorToActionErrors(verrors); getStrutsDelegate().saveMessages(request, errors); diff --git a/java/code/src/com/redhat/rhn/frontend/action/errata/CloneErrataAction.java b/java/code/src/com/redhat/rhn/frontend/action/errata/CloneErrataAction.java index c9526a8b8031..9dce0c65baa8 100644 --- a/java/code/src/com/redhat/rhn/frontend/action/errata/CloneErrataAction.java +++ b/java/code/src/com/redhat/rhn/frontend/action/errata/CloneErrataAction.java @@ -18,6 +18,7 @@ import com.redhat.rhn.common.localization.LocalizationService; import com.redhat.rhn.domain.channel.Channel; import com.redhat.rhn.domain.channel.ClonedChannel; +import com.redhat.rhn.domain.rhnpackage.PackageFactory; import com.redhat.rhn.domain.user.User; import com.redhat.rhn.frontend.dto.ClonableErrataDto; import com.redhat.rhn.frontend.struts.RequestContext; @@ -117,7 +118,7 @@ private void populateChannelDropDown(RequestContext rctx) { if (channels != null) { for (Channel c : channels) { // /me wonders if this shouldn't be part of the query. - if ("rpm".equals(c.getChannelArch().getArchType().getLabel())) { + if (PackageFactory.ARCH_TYPE_RPM.equals(c.getChannelArch().getArchType().getLabel())) { displayList.add(new LabelValueBean(c.getName(), "channel_" + c.getId())); } diff --git a/java/code/src/com/redhat/rhn/frontend/action/errata/ErrataConfirmAction.java b/java/code/src/com/redhat/rhn/frontend/action/errata/ErrataConfirmAction.java index 0e8204b25305..42e1e81f2890 100644 --- a/java/code/src/com/redhat/rhn/frontend/action/errata/ErrataConfirmAction.java +++ b/java/code/src/com/redhat/rhn/frontend/action/errata/ErrataConfirmAction.java @@ -137,8 +137,7 @@ public ActionForward confirmErrata(ActionMapping mapping, MinionActionManager.scheduleStagingJobsForMinions(singletonList(update), user.getOrg()); } catch (TaskomaticApiException e) { - log.error("Could not schedule errata application:"); - log.error(e); + log.error("Could not schedule errata application:", e); return createErrorMessage(mapping, formIn, request, strutsDelegate, "taskscheduler.down"); } diff --git a/java/code/src/com/redhat/rhn/frontend/action/kickstart/KickstartHelper.java b/java/code/src/com/redhat/rhn/frontend/action/kickstart/KickstartHelper.java index 508f9b0a10b5..51831f48230e 100644 --- a/java/code/src/com/redhat/rhn/frontend/action/kickstart/KickstartHelper.java +++ b/java/code/src/com/redhat/rhn/frontend/action/kickstart/KickstartHelper.java @@ -145,7 +145,6 @@ public Map parseKickstartUrl(String url) { KickstartSessionUpdateCommand cmd = new KickstartSessionUpdateCommand(kssid); ksdata = cmd.getKsdata(); retval.put(SESSION, cmd.getKickstartSession()); - log.debug("session: {}", retval.get(SESSION)); cmd.setSessionState(KickstartFactory.SESSION_STATE_CONFIG_ACCESSED); cmd.store(); mode = SESSION; @@ -192,8 +191,6 @@ else if (mode.equals(ORG_DEFAULT)) { if (log.isDebugEnabled()) { - log.debug("session : {}", - StringUtil.sanitizeLogInput(retval.get(SESSION).toString())); log.debug("options.containsKey(VIEW_LABEL): {}", options.containsKey(VIEW_LABEL)); log.debug("ksdata : {}", ksdata); } @@ -278,7 +275,6 @@ public String getKickstartHost() { // gsaTRKpX6AxkUFQ11A==:fjs-0-12.rhndev.redhat.com String proxyHeader = request.getHeader(XRHNPROXYAUTH); - log.debug("X-RHN-Proxy-Auth : {}", proxyHeader); if (!StringUtils.isEmpty(proxyHeader)) { String[] proxies = StringUtils.split(proxyHeader, ","); @@ -288,7 +284,6 @@ public String getKickstartHost() { log.debug("first1: {}", firstProxy); String[] chunks = StringUtils.split(firstProxy, ":"); firstProxy = chunks[chunks.length - 1]; - log.debug("first2: {}", firstProxy); log.debug("Kickstart host from proxy header: {}", firstProxy); return firstProxy; } diff --git a/java/code/src/com/redhat/rhn/frontend/action/renderers/TasksRenderer.java b/java/code/src/com/redhat/rhn/frontend/action/renderers/TasksRenderer.java index 5772aa2568b1..ca1717d8c431 100644 --- a/java/code/src/com/redhat/rhn/frontend/action/renderers/TasksRenderer.java +++ b/java/code/src/com/redhat/rhn/frontend/action/renderers/TasksRenderer.java @@ -16,7 +16,6 @@ package com.redhat.rhn.frontend.action.renderers; import com.redhat.rhn.GlobalInstanceHolder; -import com.redhat.rhn.common.conf.ConfigDefaults; import com.redhat.rhn.domain.user.User; import com.redhat.rhn.frontend.listview.PageControl; import com.redhat.rhn.manager.system.SystemManager; @@ -37,7 +36,6 @@ public class TasksRenderer extends BaseFragmentRenderer { @Override protected void render(User user, PageControl pc, HttpServletRequest request) { request.setAttribute(TASKS, Boolean.TRUE); - request.setAttribute("documentation", ConfigDefaults.get().isDocAvailable()); request.setAttribute("amountOfMinions", GlobalInstanceHolder.SALT_API.getKeys().getUnacceptedMinions().size()); request.setAttribute("requiringReboot", SystemManager.requiringRebootList(user).size()); diff --git a/java/code/src/com/redhat/rhn/frontend/action/renderers/setupwizard/MirrorCredentialsRenderer.java b/java/code/src/com/redhat/rhn/frontend/action/renderers/setupwizard/MirrorCredentialsRenderer.java index a9affeecf970..d6c218e996ef 100644 --- a/java/code/src/com/redhat/rhn/frontend/action/renderers/setupwizard/MirrorCredentialsRenderer.java +++ b/java/code/src/com/redhat/rhn/frontend/action/renderers/setupwizard/MirrorCredentialsRenderer.java @@ -89,9 +89,7 @@ public String saveCredentials(HttpServletRequest request, Long id, String user, creds = new MirrorCredentialsDto(user, password); } - if (logger.isDebugEnabled()) { - logger.debug("Saving credentials: {}:{}", user, password); - } + logger.debug("Saving credentials for user '{}'", user); try { credsManager.storeMirrorCredentials(creds, request); } diff --git a/java/code/src/com/redhat/rhn/frontend/action/rhnpackage/BaseSystemPackagesConfirmAction.java b/java/code/src/com/redhat/rhn/frontend/action/rhnpackage/BaseSystemPackagesConfirmAction.java index a8142595e47b..17890dbd943a 100644 --- a/java/code/src/com/redhat/rhn/frontend/action/rhnpackage/BaseSystemPackagesConfirmAction.java +++ b/java/code/src/com/redhat/rhn/frontend/action/rhnpackage/BaseSystemPackagesConfirmAction.java @@ -228,8 +228,7 @@ public ActionForward executePackageAction(ActionMapping mapping, strutsDelegate.saveMessages(request, msgs); } catch (TaskomaticApiException e) { - log.error("Could not schedule package action:"); - log.error(e); + log.error("Could not schedule package action:", e); ActionErrors errors = new ActionErrors(); strutsDelegate.addError("taskscheduler.down", errors); strutsDelegate.saveMessages(request, errors); diff --git a/java/code/src/com/redhat/rhn/frontend/action/rhnpackage/LockPackageAction.java b/java/code/src/com/redhat/rhn/frontend/action/rhnpackage/LockPackageAction.java index 761b5765ccdc..e74a3a613120 100644 --- a/java/code/src/com/redhat/rhn/frontend/action/rhnpackage/LockPackageAction.java +++ b/java/code/src/com/redhat/rhn/frontend/action/rhnpackage/LockPackageAction.java @@ -144,8 +144,7 @@ else if (context.wasDispatched("pkg.lock.requestunlock")) { } } catch (TaskomaticApiException e) { - LOG.error("Could not schedule package lock action:"); - LOG.error(e); + LOG.error("Could not schedule package lock action:", e); this.getStrutsDelegate().addError(errorMessages, "taskscheduler.down"); } } diff --git a/java/code/src/com/redhat/rhn/frontend/action/rhnpackage/PackageDetailsAction.java b/java/code/src/com/redhat/rhn/frontend/action/rhnpackage/PackageDetailsAction.java index 4fa847b80c7e..e0f2f189f085 100644 --- a/java/code/src/com/redhat/rhn/frontend/action/rhnpackage/PackageDetailsAction.java +++ b/java/code/src/com/redhat/rhn/frontend/action/rhnpackage/PackageDetailsAction.java @@ -74,7 +74,6 @@ public ActionForward execute(ActionMapping mapping, throw new PermissionException("Invalid pid"); } - request.setAttribute("type", "rpm"); request.setAttribute(PACKAGE_NAME, pkg.getFilename()); if (!pkg.getPackageKeys().isEmpty()) { request.setAttribute(PACKAGE_KEY, pkg.getPackageKeys().iterator().next() diff --git a/java/code/src/com/redhat/rhn/frontend/action/rhnpackage/PackageIndexAction.java b/java/code/src/com/redhat/rhn/frontend/action/rhnpackage/PackageIndexAction.java index c66ce76e0bc0..8841822603ea 100644 --- a/java/code/src/com/redhat/rhn/frontend/action/rhnpackage/PackageIndexAction.java +++ b/java/code/src/com/redhat/rhn/frontend/action/rhnpackage/PackageIndexAction.java @@ -88,8 +88,7 @@ public ActionForward update(ActionMapping mapping, SdcHelper.ssmCheck(request, sid, user); } catch (TaskomaticApiException e) { - log.error("Could not schedule package refresh action:"); - log.error(e); + log.error("Could not schedule package refresh action:", e); ActionErrors errors = new ActionErrors(); getStrutsDelegate().addError("taskscheduler.down", errors); diff --git a/java/code/src/com/redhat/rhn/frontend/action/rhnpackage/TargetSystemsConfirmAction.java b/java/code/src/com/redhat/rhn/frontend/action/rhnpackage/TargetSystemsConfirmAction.java index 5f0e0a61f206..e1079b030973 100644 --- a/java/code/src/com/redhat/rhn/frontend/action/rhnpackage/TargetSystemsConfirmAction.java +++ b/java/code/src/com/redhat/rhn/frontend/action/rhnpackage/TargetSystemsConfirmAction.java @@ -182,8 +182,7 @@ public ActionForward executePackageAction(ActionMapping mapping, ActionForm form strutsDelegate.saveMessages(request, msgs); } catch (TaskomaticApiException e) { - log.error("Could not schedule package installs:"); - log.error(e); + log.error("Could not schedule package installs:", e); ActionErrors errors = new ActionErrors(); strutsDelegate.addError(errors, "taskscheduler.down"); strutsDelegate.saveMessages(request, errors); diff --git a/java/code/src/com/redhat/rhn/frontend/action/rhnpackage/profile/MissingPackageAction.java b/java/code/src/com/redhat/rhn/frontend/action/rhnpackage/profile/MissingPackageAction.java index 79f332ad1d73..e8ccc43509f6 100644 --- a/java/code/src/com/redhat/rhn/frontend/action/rhnpackage/profile/MissingPackageAction.java +++ b/java/code/src/com/redhat/rhn/frontend/action/rhnpackage/profile/MissingPackageAction.java @@ -160,8 +160,7 @@ public ActionForward removePackagesFromSync(ActionMapping mapping, syncToVictim(context, sid, pkgIdCombos, ProfileManager.OPTION_REMOVE); } catch (TaskomaticApiException e) { - log.error("Could not schedule package synchronization:"); - log.error(e); + log.error("Could not schedule package synchronization:", e); ActionErrors errors = new ActionErrors(); getStrutsDelegate().addError(errors, "taskscheduler.down"); getStrutsDelegate().saveMessages(request, errors); @@ -195,8 +194,7 @@ public ActionForward subscribeToChannels(ActionMapping mapping, ProfileManager.OPTION_SUBSCRIBE); } catch (TaskomaticApiException e) { - log.error("Could not schedule package synchronization:"); - log.error(e); + log.error("Could not schedule package synchronization:", e); ActionErrors errors = new ActionErrors(); getStrutsDelegate().addError(errors, "taskscheduler.down"); getStrutsDelegate().saveMessages(request, errors); diff --git a/java/code/src/com/redhat/rhn/frontend/action/rhnpackage/profile/SyncProfilesAction.java b/java/code/src/com/redhat/rhn/frontend/action/rhnpackage/profile/SyncProfilesAction.java index 3efc8397a1a6..6dbe462d77a8 100644 --- a/java/code/src/com/redhat/rhn/frontend/action/rhnpackage/profile/SyncProfilesAction.java +++ b/java/code/src/com/redhat/rhn/frontend/action/rhnpackage/profile/SyncProfilesAction.java @@ -120,8 +120,7 @@ public ActionForward scheduleSync(ActionMapping mapping, params); } catch (TaskomaticApiException e) { - log.error("Could not schedule package synchronization:"); - log.error(e); + log.error("Could not schedule package synchronization:", e); ActionErrors errors = new ActionErrors(); getStrutsDelegate().addError(errors, "taskscheduler.down"); getStrutsDelegate().saveMessages(request, errors); diff --git a/java/code/src/com/redhat/rhn/frontend/action/rhnpackage/profile/SyncSystemsProfilesAction.java b/java/code/src/com/redhat/rhn/frontend/action/rhnpackage/profile/SyncSystemsProfilesAction.java index 6c8c47f6ebf4..485eee001136 100644 --- a/java/code/src/com/redhat/rhn/frontend/action/rhnpackage/profile/SyncSystemsProfilesAction.java +++ b/java/code/src/com/redhat/rhn/frontend/action/rhnpackage/profile/SyncSystemsProfilesAction.java @@ -120,8 +120,7 @@ public ActionForward scheduleSync(ActionMapping mapping, params); } catch (TaskomaticApiException e) { - log.error("Could not schedule package synchronization:"); - log.error(e); + log.error("Could not schedule package synchronization:", e); ActionErrors errors = new ActionErrors(); getStrutsDelegate().addError(errors, "taskscheduler.down"); getStrutsDelegate().saveMessages(request, errors); diff --git a/java/code/src/com/redhat/rhn/frontend/action/schedule/FailedSystemsAction.java b/java/code/src/com/redhat/rhn/frontend/action/schedule/FailedSystemsAction.java index e7de3e27971a..6e6e0efe6254 100644 --- a/java/code/src/com/redhat/rhn/frontend/action/schedule/FailedSystemsAction.java +++ b/java/code/src/com/redhat/rhn/frontend/action/schedule/FailedSystemsAction.java @@ -147,8 +147,7 @@ public ActionForward handleDispatch(ListSessionSetHelper helper, getStrutsDelegate().saveMessages(request, msgs); } catch (TaskomaticApiException e) { - log.error("Could not reschedule action:"); - log.error(e); + log.error("Could not reschedule action:", e); ActionErrors errors = new ActionErrors(); getStrutsDelegate().addError(errors, "taskscheduler.down"); getStrutsDelegate().saveMessages(request, errors); diff --git a/java/code/src/com/redhat/rhn/frontend/action/schedule/InProgressSystemsAction.java b/java/code/src/com/redhat/rhn/frontend/action/schedule/InProgressSystemsAction.java index 655c7de5a9e4..0a783942e133 100644 --- a/java/code/src/com/redhat/rhn/frontend/action/schedule/InProgressSystemsAction.java +++ b/java/code/src/com/redhat/rhn/frontend/action/schedule/InProgressSystemsAction.java @@ -110,8 +110,7 @@ public ActionForward unscheduleAction(ActionMapping mapping, strutsDelegate.saveMessages(request, msgs); } catch (TaskomaticApiException e) { - log.error("Could not unschedule action:"); - log.error(e); + log.error("Could not unschedule action:", e); ActionErrors errors = new ActionErrors(); strutsDelegate.addError(errors, "taskscheduler.down"); strutsDelegate.saveMessages(request, errors); diff --git a/java/code/src/com/redhat/rhn/frontend/action/schedule/PendingActionsDeleteConfirmAction.java b/java/code/src/com/redhat/rhn/frontend/action/schedule/PendingActionsDeleteConfirmAction.java index 21173f332f82..edcd6c8d00fd 100644 --- a/java/code/src/com/redhat/rhn/frontend/action/schedule/PendingActionsDeleteConfirmAction.java +++ b/java/code/src/com/redhat/rhn/frontend/action/schedule/PendingActionsDeleteConfirmAction.java @@ -126,7 +126,7 @@ private ActionForward cancelActions(ActionMapping mapping, HttpServletRequest re strutsDelegate.saveMessages(request, msgs); } catch (TaskomaticApiException e) { - LOG.error(e); + LOG.error(e.getMessage(), e); createErrorMessage(request, "message.actionCancelServerFailure.taskscheduler.down", StringUtils.EMPTY); diff --git a/java/code/src/com/redhat/rhn/frontend/action/ssm/PowerManagementConfigurationAction.java b/java/code/src/com/redhat/rhn/frontend/action/ssm/PowerManagementConfigurationAction.java index 5d6fdefca601..1f33858a4e94 100644 --- a/java/code/src/com/redhat/rhn/frontend/action/ssm/PowerManagementConfigurationAction.java +++ b/java/code/src/com/redhat/rhn/frontend/action/ssm/PowerManagementConfigurationAction.java @@ -87,7 +87,7 @@ public ActionForward execute(ActionMapping mapping, ActionForm formIn, } } catch (XmlRpcException e) { - log.error(e); + log.error(e.getMessage(), e); } } diff --git a/java/code/src/com/redhat/rhn/frontend/action/ssm/RollbackToTagAction.java b/java/code/src/com/redhat/rhn/frontend/action/ssm/RollbackToTagAction.java index 9ec1bbd5d481..89500f78919d 100644 --- a/java/code/src/com/redhat/rhn/frontend/action/ssm/RollbackToTagAction.java +++ b/java/code/src/com/redhat/rhn/frontend/action/ssm/RollbackToTagAction.java @@ -64,8 +64,7 @@ public ActionForward execute(ActionMapping mapping, ActionForm form, rollback(context, tagId); } catch (TaskomaticApiException e) { - log.error("Could not schedule rollback to tag:"); - log.error(e); + log.error("Could not schedule rollback to tag:", e); ActionErrors errors = new ActionErrors(); getStrutsDelegate().addError(errors, "taskscheduler.down"); getStrutsDelegate().saveMessages(request, errors); diff --git a/java/code/src/com/redhat/rhn/frontend/action/systems/ErrataConfirmSetupAction.java b/java/code/src/com/redhat/rhn/frontend/action/systems/ErrataConfirmSetupAction.java index f86a2dc531bc..43c35f3fb4d4 100644 --- a/java/code/src/com/redhat/rhn/frontend/action/systems/ErrataConfirmSetupAction.java +++ b/java/code/src/com/redhat/rhn/frontend/action/systems/ErrataConfirmSetupAction.java @@ -179,8 +179,7 @@ public ActionForward confirmErrata(ActionMapping mapping, hparams); } catch (TaskomaticApiException e) { - log.error("Could not schedule errata application:"); - log.error(e); + log.error("Could not schedule errata application:", e); ActionErrors errors = new ActionErrors(); strutsDelegate.addError(errors, "taskscheduler.down"); strutsDelegate.saveMessages(request, errors); diff --git a/java/code/src/com/redhat/rhn/frontend/action/systems/SPMigrationAction.java b/java/code/src/com/redhat/rhn/frontend/action/systems/SPMigrationAction.java index 6485519b3d8d..56d18b4df991 100644 --- a/java/code/src/com/redhat/rhn/frontend/action/systems/SPMigrationAction.java +++ b/java/code/src/com/redhat/rhn/frontend/action/systems/SPMigrationAction.java @@ -14,6 +14,7 @@ */ package com.redhat.rhn.frontend.action.systems; +import com.redhat.rhn.GlobalInstanceHolder; import com.redhat.rhn.common.localization.LocalizationService; import com.redhat.rhn.common.util.DatePicker; import com.redhat.rhn.common.util.DynamicComparator; @@ -40,6 +41,7 @@ import com.redhat.rhn.frontend.struts.RhnAction; import com.redhat.rhn.manager.channel.ChannelManager; import com.redhat.rhn.manager.distupgrade.DistUpgradeManager; +import com.redhat.rhn.manager.distupgrade.DistUpgradePaygException; import com.redhat.rhn.manager.errata.ErrataManager; import com.redhat.rhn.manager.rhnpackage.PackageManager; @@ -48,6 +50,7 @@ import org.apache.commons.lang3.BooleanUtils; import org.apache.logging.log4j.LogManager; import org.apache.logging.log4j.Logger; +import org.apache.struts.action.ActionErrors; import org.apache.struts.action.ActionForm; import org.apache.struts.action.ActionForward; import org.apache.struts.action.ActionMapping; @@ -110,14 +113,15 @@ public class SPMigrationAction extends RhnAction { private static final String MSG_SCHEDULED_MIGRATION = "spmigration.message.scheduled"; private static final String MSG_SCHEDULED_DRYRUN = "spmigration.message.scheduled.dry-run"; + private static final String MSG_ERROR_PAYG_MIGRATION = "spmigration.message.payg.error"; /** * {@inheritDoc} */ @Override public ActionForward execute(ActionMapping actionMapping, - ActionForm actionForm, HttpServletRequest request, - HttpServletResponse response) throws Exception { + ActionForm actionForm, HttpServletRequest request, + HttpServletResponse response) throws Exception { // Bind the server object to the request RequestContext ctx = new RequestContext(request); Server server = ctx.lookupAndBindServer(); @@ -313,7 +317,9 @@ else if (forward.getName().equals(SCHEDULE)) { // Setup list of channels to subscribe to List channelIDs = new ArrayList<>(); - channelIDs.addAll(Arrays.asList(targetChildChannels)); + if (targetChildChannels != null) { + channelIDs.addAll(Arrays.asList(targetChildChannels)); + } channelIDs.add(targetBaseChannel); // Schedule the dist upgrade action @@ -321,7 +327,8 @@ else if (forward.getName().equals(SCHEDULE)) { DatePicker.YEAR_RANGE_POSITIVE); try { Long actionID = DistUpgradeManager.scheduleDistUpgrade(ctx.getCurrentUser(), - server, targetProductSet, channelIDs, dryRun, allowVendorChange, earliest); + server, targetProductSet, channelIDs, dryRun, allowVendorChange, earliest, + GlobalInstanceHolder.PAYG_MANAGER.isPaygInstance()); // Display a message to the user String product = targetProductSet.getBaseProduct().getFriendlyName(); @@ -338,6 +345,24 @@ else if (forward.getName().equals(SCHEDULE)) { request.setAttribute(NO_MAINTENANCE_WINDOW, true); forward = actionMapping.findForward(CONFIRM); } + catch (DistUpgradePaygException e) { + Optional installedProducts = server.getInstalledProductSet(); + List migrationTargets = getMigrationTargets( + request, + installedProducts, + server.getServerArch().getCompatibleChannelArch(), + ctx.getCurrentUser() + ); + request.setAttribute(TARGET_PRODUCTS, migrationTargets); + + ActionErrors errors = new ActionErrors(); + // We do not support migration with individual channels in UI. So we only + // need 1 error message as the second case can only happens in API + getStrutsDelegate().addError(errors, MSG_ERROR_PAYG_MIGRATION); + getStrutsDelegate().saveMessages(request, errors); + + forward = actionMapping.findForward(TARGET); + } } return forward; @@ -498,7 +523,9 @@ private List getChannelDTOs(RequestContext ctx, */ private SUSEProductSet createProductSet(Long baseProduct, Long[] addonProducts) { List addonProductsList = new ArrayList<>(); - addonProductsList.addAll(Arrays.asList(addonProducts)); + if (addonProducts != null) { + addonProductsList.addAll(Arrays.asList(addonProducts)); + } return new SUSEProductSet(baseProduct, addonProductsList); } diff --git a/java/code/src/com/redhat/rhn/frontend/action/systems/SSMUpdateHardwareProfileConfirm.java b/java/code/src/com/redhat/rhn/frontend/action/systems/SSMUpdateHardwareProfileConfirm.java index ded405c2aa54..82947e51bb06 100644 --- a/java/code/src/com/redhat/rhn/frontend/action/systems/SSMUpdateHardwareProfileConfirm.java +++ b/java/code/src/com/redhat/rhn/frontend/action/systems/SSMUpdateHardwareProfileConfirm.java @@ -101,8 +101,7 @@ public ActionForward execute(ActionMapping mapping, mapping.findForward("success"), params); } catch (TaskomaticApiException e) { - log.error("Could not schedule hardware refresh:"); - log.error(e); + log.error("Could not schedule hardware refresh:", e); ActionErrors errors = new ActionErrors(); getStrutsDelegate().addError(errors, "taskscheduler.down"); getStrutsDelegate().saveMessages(request, errors); diff --git a/java/code/src/com/redhat/rhn/frontend/action/systems/SSMUpdateSoftwareProfileConfirm.java b/java/code/src/com/redhat/rhn/frontend/action/systems/SSMUpdateSoftwareProfileConfirm.java index 5c4f54c5e903..8e3b242ab28c 100644 --- a/java/code/src/com/redhat/rhn/frontend/action/systems/SSMUpdateSoftwareProfileConfirm.java +++ b/java/code/src/com/redhat/rhn/frontend/action/systems/SSMUpdateSoftwareProfileConfirm.java @@ -101,8 +101,7 @@ public ActionForward execute(ActionMapping mapping, mapping.findForward("success"), params); } catch (TaskomaticApiException e) { - log.error("Could not schedule package refresh:"); - log.error(e); + log.error("Could not schedule package refresh:", e); ActionErrors errors = new ActionErrors(); getStrutsDelegate().addError(errors, "taskscheduler.down"); getStrutsDelegate().saveMessages(request, errors); diff --git a/java/code/src/com/redhat/rhn/frontend/action/systems/SystemRemoteCommandAction.java b/java/code/src/com/redhat/rhn/frontend/action/systems/SystemRemoteCommandAction.java index fe37be8cabae..3674734b7a2e 100644 --- a/java/code/src/com/redhat/rhn/frontend/action/systems/SystemRemoteCommandAction.java +++ b/java/code/src/com/redhat/rhn/frontend/action/systems/SystemRemoteCommandAction.java @@ -337,8 +337,7 @@ public ActionForward execute(ActionMapping mapping, } } catch (TaskomaticApiException e) { - log.error("Could not schedule remote command:"); - log.error(e); + log.error("Could not schedule remote command:", e); getStrutsDelegate().addError(errorMessages, "taskscheduler.down"); } } diff --git a/java/code/src/com/redhat/rhn/frontend/action/systems/audit/ScheduleXccdfAction.java b/java/code/src/com/redhat/rhn/frontend/action/systems/audit/ScheduleXccdfAction.java index 24e98e538df0..c11834c6aac0 100644 --- a/java/code/src/com/redhat/rhn/frontend/action/systems/audit/ScheduleXccdfAction.java +++ b/java/code/src/com/redhat/rhn/frontend/action/systems/audit/ScheduleXccdfAction.java @@ -110,8 +110,7 @@ private ActionMessages processForm(User user, Server server, DynaActionForm f) { return msgs; } catch (TaskomaticApiException e) { - log.error("Could not schedule package refresh:"); - log.error(e); + log.error("Could not schedule package refresh:", e); ActionErrors errors = new ActionErrors(); getStrutsDelegate().addError(errors, "taskscheduler.down"); return errors; diff --git a/java/code/src/com/redhat/rhn/frontend/action/systems/sdc/SnapshotRollbackAction.java b/java/code/src/com/redhat/rhn/frontend/action/systems/sdc/SnapshotRollbackAction.java index 832f4cda7ed2..bd19b6d43dad 100644 --- a/java/code/src/com/redhat/rhn/frontend/action/systems/sdc/SnapshotRollbackAction.java +++ b/java/code/src/com/redhat/rhn/frontend/action/systems/sdc/SnapshotRollbackAction.java @@ -121,8 +121,7 @@ private String rollback(HttpServletRequest request, User user, } } catch (TaskomaticApiException e) { - log.error("Could not schedule rollbacks:"); - log.error(e); + log.error("Could not schedule rollbacks:", e); createErrorMessage(request, "taskscheduler.down", null); } diff --git a/java/code/src/com/redhat/rhn/frontend/action/systems/sdc/SystemDetailsEditAction.java b/java/code/src/com/redhat/rhn/frontend/action/systems/sdc/SystemDetailsEditAction.java index 144424e0c43e..3ccd8f7d0b03 100644 --- a/java/code/src/com/redhat/rhn/frontend/action/systems/sdc/SystemDetailsEditAction.java +++ b/java/code/src/com/redhat/rhn/frontend/action/systems/sdc/SystemDetailsEditAction.java @@ -15,7 +15,6 @@ package com.redhat.rhn.frontend.action.systems.sdc; import com.redhat.rhn.GlobalInstanceHolder; -import com.redhat.rhn.common.conf.ConfigDefaults; import com.redhat.rhn.common.localization.LocalizationService; import com.redhat.rhn.common.validator.ValidatorError; import com.redhat.rhn.common.validator.ValidatorResult; @@ -295,16 +294,10 @@ private boolean applyAddonEntitlementChanges(HttpServletRequest request, } log.debug("adding entitlement success msg"); - if (ConfigDefaults.get().isDocAvailable()) { - createSuccessMessage(request, - "system.entitle.added." + e.getLabel(), - s.getId().toString()); - } - else { - createSuccessMessage(request, - "system.entitle.added." + e.getLabel() + ".nodoc", - s.getId().toString()); - } + createMessage(request, + "system.entitle.added." + e.getLabel(), + s.getId().toString(), + GlobalInstanceHolder.USER_PREFERENCE_UTILS.getDocsLocale(user)); } } else if ((daForm.get(e.getLabel()) == null || diff --git a/java/code/src/com/redhat/rhn/frontend/action/systems/sdc/SystemHardwareAction.java b/java/code/src/com/redhat/rhn/frontend/action/systems/sdc/SystemHardwareAction.java index c537a7c14005..910458d49b31 100644 --- a/java/code/src/com/redhat/rhn/frontend/action/systems/sdc/SystemHardwareAction.java +++ b/java/code/src/com/redhat/rhn/frontend/action/systems/sdc/SystemHardwareAction.java @@ -101,8 +101,7 @@ public ActionForward execute(ActionMapping mapping, createMessage(request, "message.refeshScheduled", messageParams); } catch (TaskomaticApiException e) { - log.error("Could not unschedule action:"); - log.error(e); + log.error("Could not unschedule action:", e); createErrorMessage(request, "taskscheduler.down", StringUtils.EMPTY); } diff --git a/java/code/src/com/redhat/rhn/frontend/action/systems/sdc/SystemHistoryEventAction.java b/java/code/src/com/redhat/rhn/frontend/action/systems/sdc/SystemHistoryEventAction.java index 50fcd328227d..156caa43539e 100644 --- a/java/code/src/com/redhat/rhn/frontend/action/systems/sdc/SystemHistoryEventAction.java +++ b/java/code/src/com/redhat/rhn/frontend/action/systems/sdc/SystemHistoryEventAction.java @@ -124,8 +124,7 @@ public ActionForward execute(ActionMapping mapping, TASKOMATIC_API.scheduleActionExecution(action); } catch (TaskomaticApiException e) { - log.error("Could not reschedule action {}", action.getId()); - log.error(e); + log.error("Could not reschedule action {}", action.getId(), e); ActionErrors errors = new ActionErrors(); getStrutsDelegate().addError(errors, "taskscheduler.down"); getStrutsDelegate().saveMessages(request, errors); diff --git a/java/code/src/com/redhat/rhn/frontend/action/systems/sdc/SystemPendingEventsCancelAction.java b/java/code/src/com/redhat/rhn/frontend/action/systems/sdc/SystemPendingEventsCancelAction.java index 0947862e850a..8037268aed6d 100644 --- a/java/code/src/com/redhat/rhn/frontend/action/systems/sdc/SystemPendingEventsCancelAction.java +++ b/java/code/src/com/redhat/rhn/frontend/action/systems/sdc/SystemPendingEventsCancelAction.java @@ -81,7 +81,7 @@ public ActionForward execute(ActionMapping mapping, ActionForm formIn, Integer.toString(result.size())); } catch (TaskomaticApiException e) { - LOG.error(e); + LOG.error(e.getMessage(), e); createErrorMessage(request, "system.event.pending.canceled.taskscheduler.down", StringUtils.EMPTY); diff --git a/java/code/src/com/redhat/rhn/frontend/action/systems/sdc/SystemRebootAction.java b/java/code/src/com/redhat/rhn/frontend/action/systems/sdc/SystemRebootAction.java index 4448ec87de15..d0655a0f2399 100644 --- a/java/code/src/com/redhat/rhn/frontend/action/systems/sdc/SystemRebootAction.java +++ b/java/code/src/com/redhat/rhn/frontend/action/systems/sdc/SystemRebootAction.java @@ -95,8 +95,7 @@ public ActionForward execute(ActionMapping mapping, ActionForm formIn, } } catch (TaskomaticApiException e) { - log.error("Could not schedule rollback to tag:"); - log.error(e); + log.error("Could not schedule rollback to tag:", e); createErrorMessage(request, "taskscheduler.down", StringUtils.EMPTY); } diff --git a/java/code/src/com/redhat/rhn/frontend/action/tasko/SatSchedulesAction.java b/java/code/src/com/redhat/rhn/frontend/action/tasko/SatSchedulesAction.java index c94a8aef7bca..e813a40d0c9b 100644 --- a/java/code/src/com/redhat/rhn/frontend/action/tasko/SatSchedulesAction.java +++ b/java/code/src/com/redhat/rhn/frontend/action/tasko/SatSchedulesAction.java @@ -56,7 +56,9 @@ public ActionForward execute(ActionMapping mapping, public List> getResult(RequestContext contextIn) { User user = contextIn.getCurrentUser(); try { - return new TaskomaticApi().findActiveSchedules(user); + List> activeSchedules = new TaskomaticApi().findActiveSchedules(user); + activeSchedules.removeIf(s -> s.get("job_label").equals("payg-dimension-computation-default")); + return activeSchedules; } catch (TaskomaticApiException e) { createErrorMessage(contextIn.getRequest(), diff --git a/java/code/src/com/redhat/rhn/frontend/action/tasko/ScheduleDetailAction.java b/java/code/src/com/redhat/rhn/frontend/action/tasko/ScheduleDetailAction.java index ce290d40280e..04a76a548a5b 100644 --- a/java/code/src/com/redhat/rhn/frontend/action/tasko/ScheduleDetailAction.java +++ b/java/code/src/com/redhat/rhn/frontend/action/tasko/ScheduleDetailAction.java @@ -186,6 +186,10 @@ private void setupForm(HttpServletRequest request, DynaActionForm form) { TaskomaticApi tapi = new TaskomaticApi(); Map schedule = tapi.lookupScheduleById(loggedInUser, schid); String scheduleName = (String) schedule.get("job_label"); + if (scheduleName.equals("payg-dimension-computation-default")) { + // not modifiable + return; + } String bunchName = (String) schedule.get("bunch"); request.setAttribute("schedulename", scheduleName); form.set("schedulename", scheduleName); diff --git a/java/code/src/com/redhat/rhn/frontend/dto/AuditDto.java b/java/code/src/com/redhat/rhn/frontend/dto/AuditDto.java index e5fc6480de16..b45528126630 100644 --- a/java/code/src/com/redhat/rhn/frontend/dto/AuditDto.java +++ b/java/code/src/com/redhat/rhn/frontend/dto/AuditDto.java @@ -16,6 +16,7 @@ import java.util.Date; import java.util.LinkedHashMap; +import java.util.Map; /** * AuditDto @@ -27,7 +28,7 @@ public class AuditDto extends BaseDto { private int milli; private String node; - private LinkedHashMap kvmap; + private Map kvmap; private String type; @@ -39,8 +40,7 @@ public class AuditDto extends BaseDto { * @param nodeIn Audit generating node * @param kvmapIn HashMap of audit data */ - public AuditDto(int serialIn, Date timeIn, int milliIn, String nodeIn, - LinkedHashMap kvmapIn) { + public AuditDto(int serialIn, Date timeIn, int milliIn, String nodeIn, Map kvmapIn) { this.id = (long) serialIn; this.serial = serialIn; this.time = timeIn; @@ -91,7 +91,7 @@ public String getNode() { /** * @return Returns the key-value audit data. */ - public LinkedHashMap getKvmap() { + public Map getKvmap() { return kvmap; } diff --git a/java/code/src/com/redhat/rhn/frontend/dto/HistoryEvent.java b/java/code/src/com/redhat/rhn/frontend/dto/HistoryEvent.java index aec0570934f1..1d508b168760 100644 --- a/java/code/src/com/redhat/rhn/frontend/dto/HistoryEvent.java +++ b/java/code/src/com/redhat/rhn/frontend/dto/HistoryEvent.java @@ -77,10 +77,9 @@ public void setCompleted(String completedIn) { try { this.completed = format.parse(completedIn); } - catch (ParseException e) { - logger.error("Cannot parse {} according to format {}", completedIn, dateFormat); - logger.error(e); - } + catch (ParseException e) { + logger.error("Cannot parse {} according to format {}", completedIn, dateFormat, e); + } } /** diff --git a/java/code/src/com/redhat/rhn/frontend/events/BaseMailAction.java b/java/code/src/com/redhat/rhn/frontend/events/BaseMailAction.java index 0c4e80a02182..efa61a5c1e91 100644 --- a/java/code/src/com/redhat/rhn/frontend/events/BaseMailAction.java +++ b/java/code/src/com/redhat/rhn/frontend/events/BaseMailAction.java @@ -22,6 +22,8 @@ import com.suse.manager.utils.MailHelper; +import org.apache.logging.log4j.Logger; + /** * BaseMailAction - basic abstract class to encapsulate some common Action logic. */ @@ -37,7 +39,12 @@ public abstract class BaseMailAction { */ public void execute(EventMessage msg) { BaseEvent aevt = (BaseEvent) msg; - MailHelper.withMailer(getMail()).sendEmail(getRecipients(aevt.getUser()), getSubject(aevt), msg.toText()); + try { + MailHelper.withMailer(getMail()).sendEmail(getRecipients(aevt.getUser()), getSubject(aevt), msg.toText()); + } + catch (Exception e) { + getLogger().error("Unable to configure a mailer: {}", e.getMessage(), e); + } } /** @@ -58,4 +65,12 @@ protected Mail getMail() { return new SmtpMail(); } } + + /** + * Get the Logger for the derived class so log messages show up on the + * correct class + * @return Logger for this class. + */ + protected abstract Logger getLogger(); + } diff --git a/java/code/src/com/redhat/rhn/frontend/events/NewUserAction.java b/java/code/src/com/redhat/rhn/frontend/events/NewUserAction.java index cba5884fd567..0da7b79453d8 100644 --- a/java/code/src/com/redhat/rhn/frontend/events/NewUserAction.java +++ b/java/code/src/com/redhat/rhn/frontend/events/NewUserAction.java @@ -80,7 +80,12 @@ public void execute(EventMessage msg) { getMessage("email.newuser.subject", evt.getUserLocale(), subjectArgs); String body = LocalizationService.getInstance(). getMessage("email.newuser.body", evt.getUserLocale(), bodyArgs); - MailHelper.withMailer(getMail()).sendEmail(getEmails(evt), subject, body); + try { + MailHelper.withMailer(getMail()).sendEmail(getEmails(evt), subject, body); + } + catch (Exception e) { + logger.error("Unable to get a mailer: {}", e.getMessage(), e); + } if (logger.isDebugEnabled()) { logger.debug("execute(EventMessage) - end"); @@ -136,4 +141,9 @@ protected String[] getRecipients(User userIn) { public boolean needsTransactionHandling() { return false; } + + @Override + protected Logger getLogger() { + return logger; + } } diff --git a/java/code/src/com/redhat/rhn/frontend/events/ScheduleRepoSyncAction.java b/java/code/src/com/redhat/rhn/frontend/events/ScheduleRepoSyncAction.java index 8903c730ecb6..5b07d1018d41 100644 --- a/java/code/src/com/redhat/rhn/frontend/events/ScheduleRepoSyncAction.java +++ b/java/code/src/com/redhat/rhn/frontend/events/ScheduleRepoSyncAction.java @@ -69,8 +69,7 @@ private void scheduleRepoSync(List channelLabels, Long userId) { new TaskomaticApi().scheduleSingleRepoSync(channels); } catch (TaskomaticApiException e) { - logger.error("Could not schedule repository synchronization for: {}", channels); - logger.error(e); + logger.error("Could not schedule repository synchronization for: {}", channels, e); } } } diff --git a/java/code/src/com/redhat/rhn/frontend/events/SsmPackagesAction.java b/java/code/src/com/redhat/rhn/frontend/events/SsmPackagesAction.java index bc8ffd4c87d7..1c717f08fe05 100644 --- a/java/code/src/com/redhat/rhn/frontend/events/SsmPackagesAction.java +++ b/java/code/src/com/redhat/rhn/frontend/events/SsmPackagesAction.java @@ -94,8 +94,7 @@ public void execute(EventMessage msg) { } } catch (TaskomaticApiException e) { - LOG.error("Could not schedule package action:"); - LOG.error(e); + LOG.error("Could not schedule package action:", e); throw new RuntimeException(e); } catch (Exception e) { diff --git a/java/code/src/com/redhat/rhn/frontend/events/SsmPowerManagementAction.java b/java/code/src/com/redhat/rhn/frontend/events/SsmPowerManagementAction.java index 14ec9c86afb0..f5cadd2d9165 100644 --- a/java/code/src/com/redhat/rhn/frontend/events/SsmPowerManagementAction.java +++ b/java/code/src/com/redhat/rhn/frontend/events/SsmPowerManagementAction.java @@ -69,7 +69,7 @@ public void execute(EventMessage msgIn) { error = new CobblerPowerCommand(user, server, operation).store(); } catch (XmlRpcException e) { - log.error(e); + log.error(e.getMessage(), e); error = new ValidatorError( "ssm.provisioning.powermanagement.cobbler_error"); } diff --git a/java/code/src/com/redhat/rhn/frontend/events/SsmSystemRebootAction.java b/java/code/src/com/redhat/rhn/frontend/events/SsmSystemRebootAction.java index b44f3b71f5d4..186db03f6c70 100644 --- a/java/code/src/com/redhat/rhn/frontend/events/SsmSystemRebootAction.java +++ b/java/code/src/com/redhat/rhn/frontend/events/SsmSystemRebootAction.java @@ -52,8 +52,7 @@ public void execute(EventMessage msg) { event.getEarliest(), actionChain); } catch (TaskomaticApiException e) { - log.error("Could not schedule reboot:"); - log.error(e); + log.error("Could not schedule reboot:", e); throw new RuntimeException(e); } SsmOperationManager.completeOperation(user, diff --git a/java/code/src/com/redhat/rhn/frontend/events/TraceBackAction.java b/java/code/src/com/redhat/rhn/frontend/events/TraceBackAction.java index 8ff9fa2b4535..c4be5b7a10da 100644 --- a/java/code/src/com/redhat/rhn/frontend/events/TraceBackAction.java +++ b/java/code/src/com/redhat/rhn/frontend/events/TraceBackAction.java @@ -47,7 +47,7 @@ protected String getSubject(BaseEvent evtIn) { } catch (java.net.UnknownHostException uhe) { String message = "TraceBackAction can't find localhost!"; - log.warn(message); + getLogger().warn(message); throw new MessageExecuteException(message); } subject.append(" ("); @@ -79,4 +79,9 @@ protected String[] getRecipients(User userIn) { public boolean needsTransactionHandling() { return false; } + + @Override + protected Logger getLogger() { + return log; + } } diff --git a/java/code/src/com/redhat/rhn/frontend/events/TransactionHelper.java b/java/code/src/com/redhat/rhn/frontend/events/TransactionHelper.java index 36d3981a6214..403ec7fc6b43 100644 --- a/java/code/src/com/redhat/rhn/frontend/events/TransactionHelper.java +++ b/java/code/src/com/redhat/rhn/frontend/events/TransactionHelper.java @@ -64,7 +64,7 @@ private static Optional run(Runnable r) { return empty(); } catch (Exception e) { - log.error(e); + log.error(e.getMessage(), e); return of(e); } } diff --git a/java/code/src/com/redhat/rhn/frontend/strings/database/StringResource_mk.xml b/java/code/src/com/redhat/rhn/frontend/strings/database/StringResource_mk.xml index a1901103d142..e4b904498564 100644 --- a/java/code/src/com/redhat/rhn/frontend/strings/database/StringResource_mk.xml +++ b/java/code/src/com/redhat/rhn/frontend/strings/database/StringResource_mk.xml @@ -526,7 +526,7 @@ Basic regular expression - + Основен правилен израз /rhn/systems/details/probes/ProbeEdit.do @@ -554,21 +554,21 @@ Critical 1 min - + Критично 1 мин /rhn/systems/details/probes/ProbeEdit.do Critical 15 min - + Критично 15 мин /rhn/systems/details/probes/ProbeEdit.do Critical 5 min - + Критично 5 мин /rhn/systems/details/probes/ProbeEdit.do diff --git a/java/code/src/com/redhat/rhn/frontend/strings/java/StringResource_bn_IN.xml b/java/code/src/com/redhat/rhn/frontend/strings/java/StringResource_bn_IN.xml index 724f9df4aad4..a757040887a3 100644 --- a/java/code/src/com/redhat/rhn/frontend/strings/java/StringResource_bn_IN.xml +++ b/java/code/src/com/redhat/rhn/frontend/strings/java/StringResource_bn_IN.xml @@ -9619,24 +9619,12 @@ Alternatively, you will want to download <strong>Incremental Channel Conte /rhn/systems/details/Overview.do - - <strong>Container Build Host</strong> type has been applied.<br/><strong>Note:</strong> This action will <em>not</em> result in state application. To apply the state, either use the <a href="/rhn/manager/systems/details/highstate?sid={0}">states page</a> or run <code class="text-info">state.highstate</code> from the command line. - - /rhn/systems/details/Overview.do - - <strong>OS Image Build Host</strong> type has been applied.<br/><strong>Note:</strong> This action will <em>not</em> result in state application. To apply the state, either use the <a href="/rhn/manager/systems/details/highstate?sid={0}">states page</a> or run <code class="text-info">state.highstate</code> from the command line. /rhn/systems/details/Overview.do - - <strong>OS Image Build Host</strong> type has been applied.<br/><strong>Note:</strong> This action will <em>not</em> result in state application. To apply the state, either use the <a href="/rhn/manager/systems/details/highstate?sid={0}">states page</a> or run <code class="text-info">state.highstate</code> from the command line. - - /rhn/systems/details/Overview.do - - Since you added a Virtualization system type to the system we also performed some extra steps to ensure your system will be able to manage virtual guests better. See <a href="/docs/administration/virtualization.html">here</a> for more info. @@ -9644,21 +9632,8 @@ Alternatively, you will want to download <strong>Incremental Channel Conte সিস্টেমে Virtualization এনটাইটেলমেন্ট স্থাপন করার ফলে সিস্টেম দ্বারা ভার্চুয়াল গেস্ট পরিচালনা কর্মে সহায়তার জন্য অতিরিক্ত কিছু কর্ম সঞ্চালিত হয়েছে। অধিক বিবরণের জন্য <a href="{0}">এইখানে দেখুন</a> দেখুন। - - Since you added a Virtualization system type to the system we also performed some extra steps to ensure your system will be able to manage virtual guests better. - - /rhn/systems/details/Overview.do - - - <strong>Monitoring</strong> type has been applied.<br/><strong>Note:</strong> Since you added the Monitoring system type we automatically assigned the Prometheus Exporters formula to the system. Please apply the <a href="/rhn/manager/systems/details/highstate?sid={0}">Highstate</a> in order to install and enable the Prometheus metrics exporters. - - /rhn/systems/details/Overview.do - - - - - <strong>Monitoring</strong> type has been applied.<br/><strong>Note:</strong> Since you added the Monitoring system type we automatically assigned the Prometheus Exporters formula to the system. Please apply the <a href="/rhn/manager/systems/details/highstate?sid={0}">Highstate</a> in order to install and enable the Prometheus metrics exporters. + <strong>Monitoring</strong> type has been applied.<br/><strong>Note:</strong> Since you added the Monitoring system type we automatically assigned the Prometheus Exporters formula to the system. Please apply the <a href="/rhn/manager/systems/details/highstate?sid={0}">Highstate</a> in order to install and enable the Prometheus metrics exporters.<br/><strong>Note:</strong> Please make sure to open the <a href="/docs/{1}/installation-and-upgrade/ports.html#_external_client_ports" target="_blank">required network ports</a> for all installed exporters. /rhn/systems/details/Overview.do @@ -10137,13 +10112,6 @@ Alternatively, you will want to download <strong>Incremental Channel Conte /rhn/systems/details/Overview.do - - - <strong>Ansible Control Node</strong> type has been applied.<br/><strong>Note:</strong> This action will <em>not</em> result in state application. To apply the state, either use the <a href="/rhn/manager/systems/details/highstate?sid={0}">states page</a> or run <code class="text-info">state.highstate</code> from the command line. - - /rhn/systems/details/Overview.do - - Invalid path (must be a valid absolute path) @@ -10301,28 +10269,28 @@ Alternatively, you will want to download <strong>Incremental Channel Conte - Pay-as-you-go {0} created successfully - + PAYG {0} created successfully + - Pay-as-you-go host already exists - + PAYG host already exists + - Pay-as-you-go {0} deleted successfully - + PAYG {0} deleted successfully + Error when updating authentication data from: <a href="/rhn/manager/admin/setup/payg/{0}">{1}</a> - Pay-as-you-go authentication update - + PAYG authentication update + - Pay-as-you-go update RMT hosts - + PAYG update RMT hosts + Product data needs refresh. @@ -10578,6 +10546,45 @@ Alternatively, you will want to download <strong>Incremental Channel Conte Sync Salt states to the target system - + + Cloning of channels under different product channels on PAYG instances is forbidden + + /channels/manage/Edit + + + + + PAYG ALERT: Cross product migration attempt detected. Please note, migration from openSUSE to SLES or similar is not permitted under your current PAYG plan. Operation has been aborted. + + + + Syncing channels forbidden + + + + Synchronization of repositories is forbidden as @@PRODUCT_NAME@@ PAYG is unable to send accounting data to the cloud provider. +For a detailed analysis, please refer to the log files. + + + + +The action you attempted could not be executed because the @@PRODUCT_NAME@@ PAYG system is unable to send accounting data to the cloud provider. +For a detailed analysis, please refer to the log files. + + + + + Systems with conflicting minion ID and machine ID were found ({0}, {1}). Onboarding aborted. Please remove conflicting systems first ({2}, {3}) + + + + Registration of '{0}' on SUSE Manager Server rejected. \nTo manage Datacenter clients you have to configure SCC Credentials at Admin => Setup Wizard => Organization Credentials. + + + + Registration of '{0}' on SUSE Manager Server rejected. \nTo manage BYOS (Bring-your-own-Subscription) clients you have to configure SCC Credentials at Admin => Setup Wizard => Organization Credentials. \n\nIf the instance being onboarded is PAYG, ensure the `python-instance-billing-flavor-check` package is installed and try again. + + + diff --git a/java/code/src/com/redhat/rhn/frontend/strings/java/StringResource_ca.xml b/java/code/src/com/redhat/rhn/frontend/strings/java/StringResource_ca.xml index 36e3dd2c8525..9557d43721c6 100644 --- a/java/code/src/com/redhat/rhn/frontend/strings/java/StringResource_ca.xml +++ b/java/code/src/com/redhat/rhn/frontend/strings/java/StringResource_ca.xml @@ -9146,24 +9146,12 @@ Alternatively, you will want to download <strong>Incremental Channel Conte /rhn/systems/details/Overview.do - - <strong>Container Build Host</strong> type has been applied.<br/><strong>Note:</strong> This action will <em>not</em> result in state application. To apply the state, either use the <a href="/rhn/manager/systems/details/highstate?sid={0}">states page</a> or run <code class="text-info">state.highstate</code> from the command line. - - /rhn/systems/details/Overview.do - - <strong>OS Image Build Host</strong> type has been applied.<br/><strong>Note:</strong> This action will <em>not</em> result in state application. To apply the state, either use the <a href="/rhn/manager/systems/details/highstate?sid={0}">states page</a> or run <code class="text-info">state.highstate</code> from the command line. /rhn/systems/details/Overview.do - - <strong>OS Image Build Host</strong> type has been applied.<br/><strong>Note:</strong> This action will <em>not</em> result in state application. To apply the state, either use the <a href="/rhn/manager/systems/details/highstate?sid={0}">states page</a> or run <code class="text-info">state.highstate</code> from the command line. - - /rhn/systems/details/Overview.do - - Since you added a Virtualization system type to the system we also performed some extra steps to ensure your system will be able to manage virtual guests better. See <a href="/docs/administration/virtualization.html">here</a> for more info. @@ -9171,21 +9159,8 @@ Alternatively, you will want to download <strong>Incremental Channel Conte - - Since you added a Virtualization system type to the system we also performed some extra steps to ensure your system will be able to manage virtual guests better. - - /rhn/systems/details/Overview.do - - - <strong>Monitoring</strong> type has been applied.<br/><strong>Note:</strong> Since you added the Monitoring system type we automatically assigned the Prometheus Exporters formula to the system. Please apply the <a href="/rhn/manager/systems/details/highstate?sid={0}">Highstate</a> in order to install and enable the Prometheus metrics exporters. - - /rhn/systems/details/Overview.do - - - - - <strong>Monitoring</strong> type has been applied.<br/><strong>Note:</strong> Since you added the Monitoring system type we automatically assigned the Prometheus Exporters formula to the system. Please apply the <a href="/rhn/manager/systems/details/highstate?sid={0}">Highstate</a> in order to install and enable the Prometheus metrics exporters. + <strong>Monitoring</strong> type has been applied.<br/><strong>Note:</strong> Since you added the Monitoring system type we automatically assigned the Prometheus Exporters formula to the system. Please apply the <a href="/rhn/manager/systems/details/highstate?sid={0}">Highstate</a> in order to install and enable the Prometheus metrics exporters.<br/><strong>Note:</strong> Please make sure to open the <a href="/docs/{1}/installation-and-upgrade/ports.html#_external_client_ports" target="_blank">required network ports</a> for all installed exporters. /rhn/systems/details/Overview.do @@ -9665,13 +9640,6 @@ Alternatively, you will want to download <strong>Incremental Channel Conte - - <strong>Ansible Control Node</strong> type has been applied.<br/><strong>Note:</strong> This action will <em>not</em> result in state application. To apply the state, either use the <a href="/rhn/manager/systems/details/highstate?sid={0}">states page</a> or run <code class="text-info">state.highstate</code> from the command line. - - /rhn/systems/details/Overview.do - - - Invalid path (must be a valid absolute path) @@ -9828,28 +9796,28 @@ Alternatively, you will want to download <strong>Incremental Channel Conte - Pay-as-you-go {0} created successfully - + PAYG {0} created successfully + - Pay-as-you-go host already exists - + PAYG host already exists + - Pay-as-you-go {0} deleted successfully - + PAYG {0} deleted successfully + Error when updating authentication data from: <a href="/rhn/manager/admin/setup/payg/{0}">{1}</a> - Pay-as-you-go authentication update - + PAYG authentication update + - Pay-as-you-go update RMT hosts - + PAYG update RMT hosts + Product data needs refresh. @@ -10105,6 +10073,45 @@ Alternatively, you will want to download <strong>Incremental Channel Conte Sync Salt states to the target system - + + Cloning of channels under different product channels on PAYG instances is forbidden + + /channels/manage/Edit + + + + + PAYG ALERT: Cross product migration attempt detected. Please note, migration from openSUSE to SLES or similar is not permitted under your current PAYG plan. Operation has been aborted. + + + + Syncing channels forbidden + + + + Synchronization of repositories is forbidden as @@PRODUCT_NAME@@ PAYG is unable to send accounting data to the cloud provider. +For a detailed analysis, please refer to the log files. + + + + +The action you attempted could not be executed because the @@PRODUCT_NAME@@ PAYG system is unable to send accounting data to the cloud provider. +For a detailed analysis, please refer to the log files. + + + + + Systems with conflicting minion ID and machine ID were found ({0}, {1}). Onboarding aborted. Please remove conflicting systems first ({2}, {3}) + + + + Registration of '{0}' on SUSE Manager Server rejected. \nTo manage Datacenter clients you have to configure SCC Credentials at Admin => Setup Wizard => Organization Credentials. + + + + Registration of '{0}' on SUSE Manager Server rejected. \nTo manage BYOS (Bring-your-own-Subscription) clients you have to configure SCC Credentials at Admin => Setup Wizard => Organization Credentials. \n\nIf the instance being onboarded is PAYG, ensure the `python-instance-billing-flavor-check` package is installed and try again. + + + diff --git a/java/code/src/com/redhat/rhn/frontend/strings/java/StringResource_cs.xml b/java/code/src/com/redhat/rhn/frontend/strings/java/StringResource_cs.xml index a48064fd2807..d54ef14ffd5b 100644 --- a/java/code/src/com/redhat/rhn/frontend/strings/java/StringResource_cs.xml +++ b/java/code/src/com/redhat/rhn/frontend/strings/java/StringResource_cs.xml @@ -10314,13 +10314,6 @@ Alternatively, you will want to download <strong>Incremental Channel Conte /rhn/systems/details/Overview.do - - <strong>Container Build Host</strong> type has been applied.<br/><strong>Note:</strong> This action will <em>not</em> result in state application. To apply the state, either use the <a href="/rhn/manager/systems/details/highstate?sid={0}">states page</a> or run <code class="text-info">state.highstate</code> from the command line. - - - /rhn/systems/details/Overview.do - - <strong>OS Image Build Host</strong> type has been applied.<br/><strong>Note:</strong> This action will <em>not</em> result in state application. To apply the state, either use the <a href="/rhn/manager/systems/details/highstate?sid={0}">states page</a> or run <code class="text-info">state.highstate</code> from the command line. @@ -10328,13 +10321,6 @@ Alternatively, you will want to download <strong>Incremental Channel Conte /rhn/systems/details/Overview.do - - <strong>OS Image Build Host</strong> type has been applied.<br/><strong>Note:</strong> This action will <em>not</em> result in state application. To apply the state, either use the <a href="/rhn/manager/systems/details/highstate?sid={0}">states page</a> or run <code class="text-info">state.highstate</code> from the command line. - - - /rhn/systems/details/Overview.do - - Since you added a Virtualization system type to the system we also performed some extra steps to ensure your system will be able to manage virtual guests better. See <a href="/docs/administration/virtualization.html">here</a> for more info. @@ -10342,22 +10328,8 @@ Alternatively, you will want to download <strong>Incremental Channel Conte /rhn/systems/details/Overview.do - - Since you added a Virtualization system type to the system we also performed some extra steps to ensure your system will be able to manage virtual guests better. - - - /rhn/systems/details/Overview.do - - - <strong>Monitoring</strong> type has been applied.<br/><strong>Note:</strong> Since you added the Monitoring system type we automatically assigned the Prometheus Exporters formula to the system. Please apply the <a href="/rhn/manager/systems/details/highstate?sid={0}">Highstate</a> in order to install and enable the Prometheus metrics exporters. - - - /rhn/systems/details/Overview.do - - - - <strong>Monitoring</strong> type has been applied.<br/><strong>Note:</strong> Since you added the Monitoring system type we automatically assigned the Prometheus Exporters formula to the system. Please apply the <a href="/rhn/manager/systems/details/highstate?sid={0}">Highstate</a> in order to install and enable the Prometheus metrics exporters. + <strong>Monitoring</strong> type has been applied.<br/><strong>Note:</strong> Since you added the Monitoring system type we automatically assigned the Prometheus Exporters formula to the system. Please apply the <a href="/rhn/manager/systems/details/highstate?sid={0}">Highstate</a> in order to install and enable the Prometheus metrics exporters.<br/><strong>Note:</strong> Please make sure to open the <a href="/docs/{1}/installation-and-upgrade/ports.html#_external_client_ports" target="_blank">required network ports</a> for all installed exporters. /rhn/systems/details/Overview.do @@ -10766,13 +10738,6 @@ Alternatively, you will want to download <strong>Incremental Channel Conte - - <strong>Ansible Control Node</strong> type has been applied.<br/><strong>Note:</strong> This action will <em>not</em> result in state application. To apply the state, either use the <a href="/rhn/manager/systems/details/highstate?sid={0}">states page</a> or run <code class="text-info">state.highstate</code> from the command line. - - /rhn/systems/details/Overview.do - - - Invalid path (must be a valid absolute path) @@ -10929,28 +10894,28 @@ Alternatively, you will want to download <strong>Incremental Channel Conte - Pay-as-you-go {0} created successfully - + PAYG {0} created successfully + - Pay-as-you-go host already exists - + PAYG host already exists + - Pay-as-you-go {0} deleted successfully - + PAYG {0} deleted successfully + Error when updating authentication data from: <a href="/rhn/manager/admin/setup/payg/{0}">{1}</a> - Pay-as-you-go authentication update - + PAYG authentication update + - Pay-as-you-go update RMT hosts - + PAYG update RMT hosts + Product data needs refresh. @@ -11206,6 +11171,45 @@ Alternatively, you will want to download <strong>Incremental Channel Conte Sync Salt states to the target system - + + Cloning of channels under different product channels on PAYG instances is forbidden + + /channels/manage/Edit + + + + + PAYG ALERT: Cross product migration attempt detected. Please note, migration from openSUSE to SLES or similar is not permitted under your current PAYG plan. Operation has been aborted. + + + + Syncing channels forbidden + + + + Synchronization of repositories is forbidden as @@PRODUCT_NAME@@ PAYG is unable to send accounting data to the cloud provider. +For a detailed analysis, please refer to the log files. + + + + +The action you attempted could not be executed because the @@PRODUCT_NAME@@ PAYG system is unable to send accounting data to the cloud provider. +For a detailed analysis, please refer to the log files. + + + + + Systems with conflicting minion ID and machine ID were found ({0}, {1}). Onboarding aborted. Please remove conflicting systems first ({2}, {3}) + + + + Registration of '{0}' on SUSE Manager Server rejected. \nTo manage Datacenter clients you have to configure SCC Credentials at Admin => Setup Wizard => Organization Credentials. + + + + Registration of '{0}' on SUSE Manager Server rejected. \nTo manage BYOS (Bring-your-own-Subscription) clients you have to configure SCC Credentials at Admin => Setup Wizard => Organization Credentials. \n\nIf the instance being onboarded is PAYG, ensure the `python-instance-billing-flavor-check` package is installed and try again. + + + diff --git a/java/code/src/com/redhat/rhn/frontend/strings/java/StringResource_de.xml b/java/code/src/com/redhat/rhn/frontend/strings/java/StringResource_de.xml index 653478a731e1..bf4c331147d2 100644 --- a/java/code/src/com/redhat/rhn/frontend/strings/java/StringResource_de.xml +++ b/java/code/src/com/redhat/rhn/frontend/strings/java/StringResource_de.xml @@ -10048,24 +10048,12 @@ Alternatively, you will want to download <strong>Incremental Channel Conte /rhn/systems/details/Overview.do - - <strong>Container Build Host</strong> type has been applied.<br/><strong>Note:</strong> This action will <em>not</em> result in state application. To apply the state, either use the <a href="/rhn/manager/systems/details/highstate?sid={0}">states page</a> or run <code class="text-info">state.highstate</code> from the command line. - - /rhn/systems/details/Overview.do - - <strong>OS Image Build Host</strong> type has been applied.<br/><strong>Note:</strong> This action will <em>not</em> result in state application. To apply the state, either use the <a href="/rhn/manager/systems/details/highstate?sid={0}">states page</a> or run <code class="text-info">state.highstate</code> from the command line. /rhn/systems/details/Overview.do - - <strong>OS Image Build Host</strong> type has been applied.<br/><strong>Note:</strong> This action will <em>not</em> result in state application. To apply the state, either use the <a href="/rhn/manager/systems/details/highstate?sid={0}">states page</a> or run <code class="text-info">state.highstate</code> from the command line. - - /rhn/systems/details/Overview.do - - Since you added a Virtualization system type to the system we also performed some extra steps to ensure your system will be able to manage virtual guests better. See <a href="/docs/administration/virtualization.html">here</a> for more info. @@ -10073,22 +10061,8 @@ Alternatively, you will want to download <strong>Incremental Channel Conte Da Sie dem System eine Virtualisierungsberechtigung hinzugefügt haben, haben wir zusätzlich einige extra Schritte durchgeführt, um sicherzustellen, dass Ihr System in der Lage ist, virtuelle Gäste besser zu verwalten. Mehr Informationen hierzu finden Sie <a href="{0}">hier</a>. - - Since you added a Virtualization system type to the system we also performed some extra steps to ensure your system will be able to manage virtual guests better. - - /rhn/systems/details/Overview.do - - Da Sie dem System eine Virtualisierungsberechtigung hinzugefügt haben, haben wir zusätzlich einige extra Schritte durchgeführt, um sicherzustellen, dass Ihr System in der Lage ist, virtuelle Gäste besser zu verwalten. - - <strong>Monitoring</strong> type has been applied.<br/><strong>Note:</strong> Since you added the Monitoring system type we automatically assigned the Prometheus Exporters formula to the system. Please apply the <a href="/rhn/manager/systems/details/highstate?sid={0}">Highstate</a> in order to install and enable the Prometheus metrics exporters. - - /rhn/systems/details/Overview.do - - - - - <strong>Monitoring</strong> type has been applied.<br/><strong>Note:</strong> Since you added the Monitoring system type we automatically assigned the Prometheus Exporters formula to the system. Please apply the <a href="/rhn/manager/systems/details/highstate?sid={0}">Highstate</a> in order to install and enable the Prometheus metrics exporters. + <strong>Monitoring</strong> type has been applied.<br/><strong>Note:</strong> Since you added the Monitoring system type we automatically assigned the Prometheus Exporters formula to the system. Please apply the <a href="/rhn/manager/systems/details/highstate?sid={0}">Highstate</a> in order to install and enable the Prometheus metrics exporters.<br/><strong>Note:</strong> Please make sure to open the <a href="/docs/{1}/installation-and-upgrade/ports.html#_external_client_ports" target="_blank">required network ports</a> for all installed exporters. /rhn/systems/details/Overview.do @@ -10568,13 +10542,6 @@ Alternatively, you will want to download <strong>Incremental Channel Conte - - <strong>Ansible Control Node</strong> type has been applied.<br/><strong>Note:</strong> This action will <em>not</em> result in state application. To apply the state, either use the <a href="/rhn/manager/systems/details/highstate?sid={0}">states page</a> or run <code class="text-info">state.highstate</code> from the command line. - - /rhn/systems/details/Overview.do - - - Invalid path (must be a valid absolute path) @@ -10731,28 +10698,28 @@ Alternatively, you will want to download <strong>Incremental Channel Conte - Pay-as-you-go {0} created successfully - + PAYG {0} created successfully + - Pay-as-you-go host already exists - + PAYG host already exists + - Pay-as-you-go {0} deleted successfully - + PAYG {0} deleted successfully + Error when updating authentication data from: <a href="/rhn/manager/admin/setup/payg/{0}">{1}</a> - Pay-as-you-go authentication update - + PAYG authentication update + - Pay-as-you-go update RMT hosts - + PAYG update RMT hosts + Product data needs refresh. @@ -11008,6 +10975,45 @@ Alternatively, you will want to download <strong>Incremental Channel Conte Sync Salt states to the target system + + Cloning of channels under different product channels on PAYG instances is forbidden + + /channels/manage/Edit + + + + + PAYG ALERT: Cross product migration attempt detected. Please note, migration from openSUSE to SLES or similar is not permitted under your current PAYG plan. Operation has been aborted. + + + + Syncing channels forbidden + + + + Synchronization of repositories is forbidden as @@PRODUCT_NAME@@ PAYG is unable to send accounting data to the cloud provider. +For a detailed analysis, please refer to the log files. + + + + +The action you attempted could not be executed because the @@PRODUCT_NAME@@ PAYG system is unable to send accounting data to the cloud provider. +For a detailed analysis, please refer to the log files. + + + + + Systems with conflicting minion ID and machine ID were found ({0}, {1}). Onboarding aborted. Please remove conflicting systems first ({2}, {3}) + + + + Registration of '{0}' on SUSE Manager Server rejected. \nTo manage Datacenter clients you have to configure SCC Credentials at Admin => Setup Wizard => Organization Credentials. + + + + Registration of '{0}' on SUSE Manager Server rejected. \nTo manage BYOS (Bring-your-own-Subscription) clients you have to configure SCC Credentials at Admin => Setup Wizard => Organization Credentials. \n\nIf the instance being onboarded is PAYG, ensure the `python-instance-billing-flavor-check` package is installed and try again. + + diff --git a/java/code/src/com/redhat/rhn/frontend/strings/java/StringResource_en_US.xml b/java/code/src/com/redhat/rhn/frontend/strings/java/StringResource_en_US.xml index cf6859a213dc..59f747f1c5ec 100644 --- a/java/code/src/com/redhat/rhn/frontend/strings/java/StringResource_en_US.xml +++ b/java/code/src/com/redhat/rhn/frontend/strings/java/StringResource_en_US.xml @@ -8261,6 +8261,12 @@ Follow this url to see the full list of inactive systems: /channels/manage/Edit + + Cloning of channels under different product channels on PAYG instances is forbidden + + /channels/manage/Edit + + Channel <strong>'{0}'</strong> has been deleted. @@ -8718,6 +8724,9 @@ Alternatively, you will want to download <strong>Incremental Channel Conte This system is scheduled for a dry run of the migration to <strong>{2}</strong>. Once the action completed successfully you can schedule the full migration <a href="/rhn/systems/details/history/Event.do?sid={0}&aid={1}">here</a> + + PAYG ALERT: Cross product migration attempt detected. Please note, migration from openSUSE to SLES or similar is not permitted under your current PAYG plan. Operation has been aborted. + Run mgr-register @@ -8755,10 +8764,10 @@ Alternatively, you will want to download <strong>Incremental Channel Conte Cleanup channel tokens - Pay-as-you-go authentication update + PAYG authentication update - Pay-as-you-go update RMT hosts + PAYG update RMT hosts Registers @@PRODUCT_NAME@@ clients @@ -8968,13 +8977,13 @@ Alternatively, you will want to download <strong>Incremental Channel Conte Bastion SSH Private Key Passphrase must not exceed 32 characters. - Pay-as-you-go {0} created successfully + PAYG {0} created successfully - Pay-as-you-go host already exists + PAYG host already exists - Pay-as-you-go {0} deleted successfully + PAYG {0} deleted successfully CVE Audit @@ -9030,44 +9039,20 @@ Alternatively, you will want to download <strong>Incremental Channel Conte /rhn/systems/details/Overview.do - - <strong>Container Build Host</strong> type has been applied.<br/><strong>Note:</strong> This action will <em>not</em> result in state application. To apply the state, either use the <a href="/rhn/manager/systems/details/highstate?sid={0}">states page</a> or run <code class="text-info">state.highstate</code> from the command line. - - /rhn/systems/details/Overview.do - - <strong>OS Image Build Host</strong> type has been applied.<br/><strong>Note:</strong> This action will <em>not</em> result in state application. To apply the state, either use the <a href="/rhn/manager/systems/details/highstate?sid={0}">states page</a> or run <code class="text-info">state.highstate</code> from the command line. /rhn/systems/details/Overview.do - - <strong>OS Image Build Host</strong> type has been applied.<br/><strong>Note:</strong> This action will <em>not</em> result in state application. To apply the state, either use the <a href="/rhn/manager/systems/details/highstate?sid={0}">states page</a> or run <code class="text-info">state.highstate</code> from the command line. - - /rhn/systems/details/Overview.do - - Since you added a Virtualization system type to the system we also performed some extra steps to ensure your system will be able to manage virtual guests better. See <a href="/docs/administration/virtualization.html">here</a> for more info. /rhn/systems/details/Overview.do - - Since you added a Virtualization system type to the system we also performed some extra steps to ensure your system will be able to manage virtual guests better. - - /rhn/systems/details/Overview.do - - - <strong>Monitoring</strong> type has been applied.<br/><strong>Note:</strong> Since you added the Monitoring system type we automatically assigned the Prometheus Exporters formula to the system. Please apply the <a href="/rhn/manager/systems/details/highstate?sid={0}">Highstate</a> in order to install and enable the Prometheus metrics exporters. - - /rhn/systems/details/Overview.do - - - - <strong>Monitoring</strong> type has been applied.<br/><strong>Note:</strong> Since you added the Monitoring system type we automatically assigned the Prometheus Exporters formula to the system. Please apply the <a href="/rhn/manager/systems/details/highstate?sid={0}">Highstate</a> in order to install and enable the Prometheus metrics exporters. + <strong>Monitoring</strong> type has been applied.<br/><strong>Note:</strong> Since you added the Monitoring system type we automatically assigned the Prometheus Exporters formula to the system. Please apply the <a href="/rhn/manager/systems/details/highstate?sid={0}">Highstate</a> in order to install and enable the Prometheus metrics exporters.<br/><strong>Note:</strong> Please make sure to open the <a href="/docs/{1}/installation-and-upgrade/ports.html#_external_client_ports" target="_blank">required network ports</a> for all installed exporters. /rhn/systems/details/Overview.do @@ -9078,12 +9063,6 @@ Alternatively, you will want to download <strong>Incremental Channel Conte /rhn/systems/details/Overview.do - - <strong>Ansible Control Node</strong> type has been applied.<br/><strong>Note:</strong> This action will <em>not</em> result in state application. To apply the state, either use the <a href="/rhn/manager/systems/details/highstate?sid={0}">states page</a> or run <code class="text-info">state.highstate</code> from the command line. - - /rhn/systems/details/Overview.do - - Invalid path (must be a valid absolute path) @@ -9327,6 +9306,13 @@ Alternatively, you will want to download <strong>Incremental Channel Conte Error syncing the channel: <a href="/rhn/channels/ChannelDetail.do?cid={0}">{1}</a> + + Syncing channels forbidden + + + Synchronization of repositories is forbidden as @@PRODUCT_NAME@@ PAYG is unable to send accounting data to the cloud provider. +For a detailed analysis, please refer to the log files. + Channel <a href="/rhn/channels/ChannelDetail.do?cid={0}">{1}</a> sync completed @@ -9456,6 +9442,21 @@ Alternatively, you will want to download <strong>Incremental Channel Conte This action was not executed because its earliest execution date was too old. When more than {0} hours pass between the scheduling and the picking up, the action is discarded because it is considered no longer relevant. Please reschedule this action if you really want it to be executed. + + +The action you attempted could not be executed because the @@PRODUCT_NAME@@ PAYG system is unable to send accounting data to the cloud provider. +For a detailed analysis, please refer to the log files. + + + + Systems with conflicting minion ID and machine ID were found ({0}, {1}). Onboarding aborted. Please remove conflicting systems first ({2}, {3}) + + + Registration of '{0}' on SUSE Manager Server rejected. \nTo manage Datacenter clients you have to configure SCC Credentials at Admin => Setup Wizard => Organization Credentials. + + + Registration of '{0}' on SUSE Manager Server rejected. \nTo manage BYOS (Bring-your-own-Subscription) clients you have to configure SCC Credentials at Admin => Setup Wizard => Organization Credentials. \n\nIf the instance being onboarded is PAYG, ensure the `python-instance-billing-flavor-check` package is installed and try again. + diff --git a/java/code/src/com/redhat/rhn/frontend/strings/java/StringResource_es.xml b/java/code/src/com/redhat/rhn/frontend/strings/java/StringResource_es.xml index 25c19fda78fc..f7fd2f98b138 100644 --- a/java/code/src/com/redhat/rhn/frontend/strings/java/StringResource_es.xml +++ b/java/code/src/com/redhat/rhn/frontend/strings/java/StringResource_es.xml @@ -9987,24 +9987,12 @@ Alternatively, you will want to download <strong>Incremental Channel Conte /rhn/systems/details/Overview.do - - <strong>Container Build Host</strong> type has been applied.<br/><strong>Note:</strong> This action will <em>not</em> result in state application. To apply the state, either use the <a href="/rhn/manager/systems/details/highstate?sid={0}">states page</a> or run <code class="text-info">state.highstate</code> from the command line. - - /rhn/systems/details/Overview.do - - <strong>OS Image Build Host</strong> type has been applied.<br/><strong>Note:</strong> This action will <em>not</em> result in state application. To apply the state, either use the <a href="/rhn/manager/systems/details/highstate?sid={0}">states page</a> or run <code class="text-info">state.highstate</code> from the command line. /rhn/systems/details/Overview.do - - <strong>OS Image Build Host</strong> type has been applied.<br/><strong>Note:</strong> This action will <em>not</em> result in state application. To apply the state, either use the <a href="/rhn/manager/systems/details/highstate?sid={0}">states page</a> or run <code class="text-info">state.highstate</code> from the command line. - - /rhn/systems/details/Overview.do - - Since you added a Virtualization system type to the system we also performed some extra steps to ensure your system will be able to manage virtual guests better. See <a href="/docs/administration/virtualization.html">here</a> for more info. @@ -10012,27 +10000,13 @@ Alternatively, you will want to download <strong>Incremental Channel Conte Ya que usted ha añadido derechos de virtualización al sistema, también hemos llevado a cabo algunos pasos adicionales para estar seguros de que su sistema pueda administrar mejor los huéspedes virtuales. Para obtener más información, consulte <a href="{0}">aquí</a> - - Since you added a Virtualization system type to the system we also performed some extra steps to ensure your system will be able to manage virtual guests better. - - /rhn/systems/details/Overview.do - - Ya que usted ha añadido derechos de virtualización al sistema, hemos llevado a cabo algunos pasos adicionales para estar seguros de que su sistema pueda administrar mejor los huéspedes virtuales. - - <strong>Monitoring</strong> type has been applied.<br/><strong>Note:</strong> Since you added the Monitoring system type we automatically assigned the Prometheus Exporters formula to the system. Please apply the <a href="/rhn/manager/systems/details/highstate?sid={0}">Highstate</a> in order to install and enable the Prometheus metrics exporters. + <strong>Monitoring</strong> type has been applied.<br/><strong>Note:</strong> Since you added the Monitoring system type we automatically assigned the Prometheus Exporters formula to the system. Please apply the <a href="/rhn/manager/systems/details/highstate?sid={0}">Highstate</a> in order to install and enable the Prometheus metrics exporters.<br/><strong>Note:</strong> Please make sure to open the <a href="/docs/{1}/installation-and-upgrade/ports.html#_external_client_ports" target="_blank">required network ports</a> for all installed exporters. Como ha añadido el tipo de sistema Supervisión, hemos asignado automáticamente la fórmula Exportadores de Prometheus al sistema. Aplique <a href="/rhn/manager/systems/details/highstate?sid={0}">Highstate</a> para instalar y activar los exportadores de métricas de Prometheus. /rhn/systems/details/Overview.do - - <strong>Monitoring</strong> type has been applied.<br/><strong>Note:</strong> Since you added the Monitoring system type we automatically assigned the Prometheus Exporters formula to the system. Please apply the <a href="/rhn/manager/systems/details/highstate?sid={0}">Highstate</a> in order to install and enable the Prometheus metrics exporters. - - /rhn/systems/details/Overview.do - - - There was a problem assigning the Prometheus Exporters formula. Se produjo un problema al asignar la fórmula Exportadores de Prometheus. @@ -10515,13 +10489,6 @@ Alternatively, you will want to download <strong>Incremental Channel Conte /rhn/systems/details/Overview.do - - - <strong>Ansible Control Node</strong> type has been applied.<br/><strong>Note:</strong> This action will <em>not</em> result in state application. To apply the state, either use the <a href="/rhn/manager/systems/details/highstate?sid={0}">states page</a> or run <code class="text-info">state.highstate</code> from the command line. - - /rhn/systems/details/Overview.do - - Invalid path (must be a valid absolute path) @@ -10679,28 +10646,28 @@ Alternatively, you will want to download <strong>Incremental Channel Conte - Pay-as-you-go {0} created successfully - + PAYG {0} created successfully + - Pay-as-you-go host already exists - + PAYG host already exists + - Pay-as-you-go {0} deleted successfully - + PAYG {0} deleted successfully + Error when updating authentication data from: <a href="/rhn/manager/admin/setup/payg/{0}">{1}</a> - Pay-as-you-go authentication update - + PAYG authentication update + - Pay-as-you-go update RMT hosts - + PAYG update RMT hosts + Product data needs refresh. @@ -10956,6 +10923,45 @@ Alternatively, you will want to download <strong>Incremental Channel Conte Sync Salt states to the target system - + + Cloning of channels under different product channels on PAYG instances is forbidden + + /channels/manage/Edit + + + + + PAYG ALERT: Cross product migration attempt detected. Please note, migration from openSUSE to SLES or similar is not permitted under your current PAYG plan. Operation has been aborted. + + + + Syncing channels forbidden + + + + Synchronization of repositories is forbidden as @@PRODUCT_NAME@@ PAYG is unable to send accounting data to the cloud provider. +For a detailed analysis, please refer to the log files. + + + + +The action you attempted could not be executed because the @@PRODUCT_NAME@@ PAYG system is unable to send accounting data to the cloud provider. +For a detailed analysis, please refer to the log files. + + + + + Systems with conflicting minion ID and machine ID were found ({0}, {1}). Onboarding aborted. Please remove conflicting systems first ({2}, {3}) + + + + Registration of '{0}' on SUSE Manager Server rejected. \nTo manage Datacenter clients you have to configure SCC Credentials at Admin => Setup Wizard => Organization Credentials. + + + + Registration of '{0}' on SUSE Manager Server rejected. \nTo manage BYOS (Bring-your-own-Subscription) clients you have to configure SCC Credentials at Admin => Setup Wizard => Organization Credentials. \n\nIf the instance being onboarded is PAYG, ensure the `python-instance-billing-flavor-check` package is installed and try again. + + + diff --git a/java/code/src/com/redhat/rhn/frontend/strings/java/StringResource_fr.xml b/java/code/src/com/redhat/rhn/frontend/strings/java/StringResource_fr.xml index 47a33c1524ee..919f283311cb 100644 --- a/java/code/src/com/redhat/rhn/frontend/strings/java/StringResource_fr.xml +++ b/java/code/src/com/redhat/rhn/frontend/strings/java/StringResource_fr.xml @@ -10023,24 +10023,12 @@ Alternatively, you will want to download <strong>Incremental Channel Conte /rhn/systems/details/Overview.do - - <strong>Container Build Host</strong> type has been applied.<br/><strong>Note:</strong> This action will <em>not</em> result in state application. To apply the state, either use the <a href="/rhn/manager/systems/details/highstate?sid={0}">states page</a> or run <code class="text-info">state.highstate</code> from the command line. - - /rhn/systems/details/Overview.do - - <strong>OS Image Build Host</strong> type has been applied.<br/><strong>Note:</strong> This action will <em>not</em> result in state application. To apply the state, either use the <a href="/rhn/manager/systems/details/highstate?sid={0}">states page</a> or run <code class="text-info">state.highstate</code> from the command line. /rhn/systems/details/Overview.do - - <strong>OS Image Build Host</strong> type has been applied.<br/><strong>Note:</strong> This action will <em>not</em> result in state application. To apply the state, either use the <a href="/rhn/manager/systems/details/highstate?sid={0}">states page</a> or run <code class="text-info">state.highstate</code> from the command line. - - /rhn/systems/details/Overview.do - - Since you added a Virtualization system type to the system we also performed some extra steps to ensure your system will be able to manage virtual guests better. See <a href="/docs/administration/virtualization.html">here</a> for more info. @@ -10048,22 +10036,8 @@ Alternatively, you will want to download <strong>Incremental Channel Conte Étant donné que vous avez ajouté un droit d'accès Virtualisation au système, nous avons également effectué quelques étapes supplémentaires pour nous assurer que votre système sera capable de mieux gérer les invités virtuels. Cliquez <a href="{0}">ici</a> pour davantage d'informations. - - Since you added a Virtualization system type to the system we also performed some extra steps to ensure your system will be able to manage virtual guests better. - - /rhn/systems/details/Overview.do - - Comme vous avez ajouté un droit d'accès Virtualisation au système, nous avons également effectué quelques étapes supplémentaires pour nous assurer que votre système sera capable de mieux gérer les invités virtuels. - - <strong>Monitoring</strong> type has been applied.<br/><strong>Note:</strong> Since you added the Monitoring system type we automatically assigned the Prometheus Exporters formula to the system. Please apply the <a href="/rhn/manager/systems/details/highstate?sid={0}">Highstate</a> in order to install and enable the Prometheus metrics exporters. - - /rhn/systems/details/Overview.do - - - - - <strong>Monitoring</strong> type has been applied.<br/><strong>Note:</strong> Since you added the Monitoring system type we automatically assigned the Prometheus Exporters formula to the system. Please apply the <a href="/rhn/manager/systems/details/highstate?sid={0}">Highstate</a> in order to install and enable the Prometheus metrics exporters. + <strong>Monitoring</strong> type has been applied.<br/><strong>Note:</strong> Since you added the Monitoring system type we automatically assigned the Prometheus Exporters formula to the system. Please apply the <a href="/rhn/manager/systems/details/highstate?sid={0}">Highstate</a> in order to install and enable the Prometheus metrics exporters.<br/><strong>Note:</strong> Please make sure to open the <a href="/docs/{1}/installation-and-upgrade/ports.html#_external_client_ports" target="_blank">required network ports</a> for all installed exporters. /rhn/systems/details/Overview.do @@ -10542,13 +10516,6 @@ Alternatively, you will want to download <strong>Incremental Channel Conte /rhn/systems/details/Overview.do - - - <strong>Ansible Control Node</strong> type has been applied.<br/><strong>Note:</strong> This action will <em>not</em> result in state application. To apply the state, either use the <a href="/rhn/manager/systems/details/highstate?sid={0}">states page</a> or run <code class="text-info">state.highstate</code> from the command line. - - /rhn/systems/details/Overview.do - - Invalid path (must be a valid absolute path) @@ -10706,28 +10673,28 @@ Alternatively, you will want to download <strong>Incremental Channel Conte - Pay-as-you-go {0} created successfully - + PAYG {0} created successfully + - Pay-as-you-go host already exists - + PAYG host already exists + - Pay-as-you-go {0} deleted successfully - + PAYG {0} deleted successfully + Error when updating authentication data from: <a href="/rhn/manager/admin/setup/payg/{0}">{1}</a> - Pay-as-you-go authentication update - + PAYG authentication update + - Pay-as-you-go update RMT hosts - + PAYG update RMT hosts + Product data needs refresh. @@ -10983,6 +10950,45 @@ Alternatively, you will want to download <strong>Incremental Channel Conte Sync Salt states to the target system - + + Cloning of channels under different product channels on PAYG instances is forbidden + + /channels/manage/Edit + + + + + PAYG ALERT: Cross product migration attempt detected. Please note, migration from openSUSE to SLES or similar is not permitted under your current PAYG plan. Operation has been aborted. + + + + Syncing channels forbidden + + + + Synchronization of repositories is forbidden as @@PRODUCT_NAME@@ PAYG is unable to send accounting data to the cloud provider. +For a detailed analysis, please refer to the log files. + + + + +The action you attempted could not be executed because the @@PRODUCT_NAME@@ PAYG system is unable to send accounting data to the cloud provider. +For a detailed analysis, please refer to the log files. + + + + + Systems with conflicting minion ID and machine ID were found ({0}, {1}). Onboarding aborted. Please remove conflicting systems first ({2}, {3}) + + + + Registration of '{0}' on SUSE Manager Server rejected. \nTo manage Datacenter clients you have to configure SCC Credentials at Admin => Setup Wizard => Organization Credentials. + + + + Registration of '{0}' on SUSE Manager Server rejected. \nTo manage BYOS (Bring-your-own-Subscription) clients you have to configure SCC Credentials at Admin => Setup Wizard => Organization Credentials. \n\nIf the instance being onboarded is PAYG, ensure the `python-instance-billing-flavor-check` package is installed and try again. + + + diff --git a/java/code/src/com/redhat/rhn/frontend/strings/java/StringResource_gu.xml b/java/code/src/com/redhat/rhn/frontend/strings/java/StringResource_gu.xml index f86fab4e7938..c74f57a7c870 100644 --- a/java/code/src/com/redhat/rhn/frontend/strings/java/StringResource_gu.xml +++ b/java/code/src/com/redhat/rhn/frontend/strings/java/StringResource_gu.xml @@ -9709,24 +9709,12 @@ Alternatively, you will want to download <strong>Incremental Channel Conte /rhn/systems/details/Overview.do - - <strong>Container Build Host</strong> type has been applied.<br/><strong>Note:</strong> This action will <em>not</em> result in state application. To apply the state, either use the <a href="/rhn/manager/systems/details/highstate?sid={0}">states page</a> or run <code class="text-info">state.highstate</code> from the command line. - - /rhn/systems/details/Overview.do - - <strong>OS Image Build Host</strong> type has been applied.<br/><strong>Note:</strong> This action will <em>not</em> result in state application. To apply the state, either use the <a href="/rhn/manager/systems/details/highstate?sid={0}">states page</a> or run <code class="text-info">state.highstate</code> from the command line. /rhn/systems/details/Overview.do - - <strong>OS Image Build Host</strong> type has been applied.<br/><strong>Note:</strong> This action will <em>not</em> result in state application. To apply the state, either use the <a href="/rhn/manager/systems/details/highstate?sid={0}">states page</a> or run <code class="text-info">state.highstate</code> from the command line. - - /rhn/systems/details/Overview.do - - Since you added a Virtualization system type to the system we also performed some extra steps to ensure your system will be able to manage virtual guests better. See <a href="/docs/administration/virtualization.html">here</a> for more info. @@ -9734,21 +9722,8 @@ Alternatively, you will want to download <strong>Incremental Channel Conte તમે સિસ્ટમમાં વર્ચ્યુઅલાઈઝેશન ઉમેદવારી ઉમેરેલી હોવાથી અમે તમારી સિસ્ટમ વર્ચ્યુઅલ મહેમાનો વધુ સારી રીતે વ્યવસ્થાપિત કરવા માટે સક્ષમ છે કે નહિં તેના માટે અમુક વધારાનાં પગલાંઓ પણ ભર્યા છે. વધુ જાણકારી માટે <a href="{0}">અહિં</a> જુઓ. - - Since you added a Virtualization system type to the system we also performed some extra steps to ensure your system will be able to manage virtual guests better. - - /rhn/systems/details/Overview.do - - - <strong>Monitoring</strong> type has been applied.<br/><strong>Note:</strong> Since you added the Monitoring system type we automatically assigned the Prometheus Exporters formula to the system. Please apply the <a href="/rhn/manager/systems/details/highstate?sid={0}">Highstate</a> in order to install and enable the Prometheus metrics exporters. - - /rhn/systems/details/Overview.do - - - - - <strong>Monitoring</strong> type has been applied.<br/><strong>Note:</strong> Since you added the Monitoring system type we automatically assigned the Prometheus Exporters formula to the system. Please apply the <a href="/rhn/manager/systems/details/highstate?sid={0}">Highstate</a> in order to install and enable the Prometheus metrics exporters. + <strong>Monitoring</strong> type has been applied.<br/><strong>Note:</strong> Since you added the Monitoring system type we automatically assigned the Prometheus Exporters formula to the system. Please apply the <a href="/rhn/manager/systems/details/highstate?sid={0}">Highstate</a> in order to install and enable the Prometheus metrics exporters.<br/><strong>Note:</strong> Please make sure to open the <a href="/docs/{1}/installation-and-upgrade/ports.html#_external_client_ports" target="_blank">required network ports</a> for all installed exporters. /rhn/systems/details/Overview.do @@ -10227,13 +10202,6 @@ Alternatively, you will want to download <strong>Incremental Channel Conte /rhn/systems/details/Overview.do - - - <strong>Ansible Control Node</strong> type has been applied.<br/><strong>Note:</strong> This action will <em>not</em> result in state application. To apply the state, either use the <a href="/rhn/manager/systems/details/highstate?sid={0}">states page</a> or run <code class="text-info">state.highstate</code> from the command line. - - /rhn/systems/details/Overview.do - - Invalid path (must be a valid absolute path) @@ -10391,28 +10359,28 @@ Alternatively, you will want to download <strong>Incremental Channel Conte - Pay-as-you-go {0} created successfully - + PAYG {0} created successfully + - Pay-as-you-go host already exists - + PAYG host already exists + - Pay-as-you-go {0} deleted successfully - + PAYG {0} deleted successfully + Error when updating authentication data from: <a href="/rhn/manager/admin/setup/payg/{0}">{1}</a> - Pay-as-you-go authentication update - + PAYG authentication update + - Pay-as-you-go update RMT hosts - + PAYG update RMT hosts + Product data needs refresh. @@ -10668,6 +10636,45 @@ Alternatively, you will want to download <strong>Incremental Channel Conte Sync Salt states to the target system - + + Cloning of channels under different product channels on PAYG instances is forbidden + + /channels/manage/Edit + + + + + PAYG ALERT: Cross product migration attempt detected. Please note, migration from openSUSE to SLES or similar is not permitted under your current PAYG plan. Operation has been aborted. + + + + Syncing channels forbidden + + + + Synchronization of repositories is forbidden as @@PRODUCT_NAME@@ PAYG is unable to send accounting data to the cloud provider. +For a detailed analysis, please refer to the log files. + + + + +The action you attempted could not be executed because the @@PRODUCT_NAME@@ PAYG system is unable to send accounting data to the cloud provider. +For a detailed analysis, please refer to the log files. + + + + + Systems with conflicting minion ID and machine ID were found ({0}, {1}). Onboarding aborted. Please remove conflicting systems first ({2}, {3}) + + + + Registration of '{0}' on SUSE Manager Server rejected. \nTo manage Datacenter clients you have to configure SCC Credentials at Admin => Setup Wizard => Organization Credentials. + + + + Registration of '{0}' on SUSE Manager Server rejected. \nTo manage BYOS (Bring-your-own-Subscription) clients you have to configure SCC Credentials at Admin => Setup Wizard => Organization Credentials. \n\nIf the instance being onboarded is PAYG, ensure the `python-instance-billing-flavor-check` package is installed and try again. + + + diff --git a/java/code/src/com/redhat/rhn/frontend/strings/java/StringResource_hi.xml b/java/code/src/com/redhat/rhn/frontend/strings/java/StringResource_hi.xml index d701b4650045..553d3e41bbc3 100644 --- a/java/code/src/com/redhat/rhn/frontend/strings/java/StringResource_hi.xml +++ b/java/code/src/com/redhat/rhn/frontend/strings/java/StringResource_hi.xml @@ -9709,24 +9709,12 @@ Alternatively, you will want to download <strong>Incremental Channel Conte /rhn/systems/details/Overview.do - - <strong>Container Build Host</strong> type has been applied.<br/><strong>Note:</strong> This action will <em>not</em> result in state application. To apply the state, either use the <a href="/rhn/manager/systems/details/highstate?sid={0}">states page</a> or run <code class="text-info">state.highstate</code> from the command line. - - /rhn/systems/details/Overview.do - - <strong>OS Image Build Host</strong> type has been applied.<br/><strong>Note:</strong> This action will <em>not</em> result in state application. To apply the state, either use the <a href="/rhn/manager/systems/details/highstate?sid={0}">states page</a> or run <code class="text-info">state.highstate</code> from the command line. /rhn/systems/details/Overview.do - - <strong>OS Image Build Host</strong> type has been applied.<br/><strong>Note:</strong> This action will <em>not</em> result in state application. To apply the state, either use the <a href="/rhn/manager/systems/details/highstate?sid={0}">states page</a> or run <code class="text-info">state.highstate</code> from the command line. - - /rhn/systems/details/Overview.do - - Since you added a Virtualization system type to the system we also performed some extra steps to ensure your system will be able to manage virtual guests better. See <a href="/docs/administration/virtualization.html">here</a> for more info. @@ -9734,21 +9722,8 @@ Alternatively, you will want to download <strong>Incremental Channel Conte चूंकि आपने सिस्टम में वर्चुअलाइजेशन एंटाइटेलमेंट सिस्टम में दिया है हमने भी कुछ अतिरिक्त चरण किया है यह सुनिश्चित करने के लिये आपका सिस्टम वर्चुअल अतिथि को बेहतर तरीके से प्रबंधित करने में समर्थ होगा. ज्यादा सूचना के लिये <a href="{0}">यहाँ</a> देखें. - - Since you added a Virtualization system type to the system we also performed some extra steps to ensure your system will be able to manage virtual guests better. - - /rhn/systems/details/Overview.do - - - <strong>Monitoring</strong> type has been applied.<br/><strong>Note:</strong> Since you added the Monitoring system type we automatically assigned the Prometheus Exporters formula to the system. Please apply the <a href="/rhn/manager/systems/details/highstate?sid={0}">Highstate</a> in order to install and enable the Prometheus metrics exporters. - - /rhn/systems/details/Overview.do - - - - - <strong>Monitoring</strong> type has been applied.<br/><strong>Note:</strong> Since you added the Monitoring system type we automatically assigned the Prometheus Exporters formula to the system. Please apply the <a href="/rhn/manager/systems/details/highstate?sid={0}">Highstate</a> in order to install and enable the Prometheus metrics exporters. + <strong>Monitoring</strong> type has been applied.<br/><strong>Note:</strong> Since you added the Monitoring system type we automatically assigned the Prometheus Exporters formula to the system. Please apply the <a href="/rhn/manager/systems/details/highstate?sid={0}">Highstate</a> in order to install and enable the Prometheus metrics exporters.<br/><strong>Note:</strong> Please make sure to open the <a href="/docs/{1}/installation-and-upgrade/ports.html#_external_client_ports" target="_blank">required network ports</a> for all installed exporters. /rhn/systems/details/Overview.do @@ -10227,13 +10202,6 @@ Alternatively, you will want to download <strong>Incremental Channel Conte /rhn/systems/details/Overview.do - - - <strong>Ansible Control Node</strong> type has been applied.<br/><strong>Note:</strong> This action will <em>not</em> result in state application. To apply the state, either use the <a href="/rhn/manager/systems/details/highstate?sid={0}">states page</a> or run <code class="text-info">state.highstate</code> from the command line. - - /rhn/systems/details/Overview.do - - Invalid path (must be a valid absolute path) @@ -10391,28 +10359,28 @@ Alternatively, you will want to download <strong>Incremental Channel Conte - Pay-as-you-go {0} created successfully - + PAYG {0} created successfully + - Pay-as-you-go host already exists - + PAYG host already exists + - Pay-as-you-go {0} deleted successfully - + PAYG {0} deleted successfully + Error when updating authentication data from: <a href="/rhn/manager/admin/setup/payg/{0}">{1}</a> - Pay-as-you-go authentication update - + PAYG authentication update + - Pay-as-you-go update RMT hosts - + PAYG update RMT hosts + Product data needs refresh. @@ -10668,6 +10636,45 @@ Alternatively, you will want to download <strong>Incremental Channel Conte Sync Salt states to the target system - + + Cloning of channels under different product channels on PAYG instances is forbidden + + /channels/manage/Edit + + + + + PAYG ALERT: Cross product migration attempt detected. Please note, migration from openSUSE to SLES or similar is not permitted under your current PAYG plan. Operation has been aborted. + + + + Syncing channels forbidden + + + + Synchronization of repositories is forbidden as @@PRODUCT_NAME@@ PAYG is unable to send accounting data to the cloud provider. +For a detailed analysis, please refer to the log files. + + + + +The action you attempted could not be executed because the @@PRODUCT_NAME@@ PAYG system is unable to send accounting data to the cloud provider. +For a detailed analysis, please refer to the log files. + + + + + Systems with conflicting minion ID and machine ID were found ({0}, {1}). Onboarding aborted. Please remove conflicting systems first ({2}, {3}) + + + + Registration of '{0}' on SUSE Manager Server rejected. \nTo manage Datacenter clients you have to configure SCC Credentials at Admin => Setup Wizard => Organization Credentials. + + + + Registration of '{0}' on SUSE Manager Server rejected. \nTo manage BYOS (Bring-your-own-Subscription) clients you have to configure SCC Credentials at Admin => Setup Wizard => Organization Credentials. \n\nIf the instance being onboarded is PAYG, ensure the `python-instance-billing-flavor-check` package is installed and try again. + + + diff --git a/java/code/src/com/redhat/rhn/frontend/strings/java/StringResource_it.xml b/java/code/src/com/redhat/rhn/frontend/strings/java/StringResource_it.xml index 5f4524d1f308..b835d3b1da19 100644 --- a/java/code/src/com/redhat/rhn/frontend/strings/java/StringResource_it.xml +++ b/java/code/src/com/redhat/rhn/frontend/strings/java/StringResource_it.xml @@ -10285,13 +10285,6 @@ In alternativa, potrai scaricare le <strong>ISO incrementali del contenuto /rhn/systems/details/Overview.do - - <strong>Container Build Host</strong> type has been applied.<br/><strong>Note:</strong> This action will <em>not</em> result in state application. To apply the state, either use the <a href="/rhn/manager/systems/details/highstate?sid={0}">states page</a> or run <code class="text-info">state.highstate</code> from the command line. - Il tipo <strong>Container Build Host</strong> è stato applicato.<br/><strong>Nota:</strong> Questa azione <em>non</em> avrà come risultato l'applicazione dello stato. Per applicare lo stato, usa la <a href="/rhn/manager/systems/details/highstate?sid={0}">pagina degli stati</a> o esegui <code class="text-info">state.highstate</code> dalla riga di comando. - - /rhn/systems/details/Overview.do - - <strong>OS Image Build Host</strong> type has been applied.<br/><strong>Note:</strong> This action will <em>not</em> result in state application. To apply the state, either use the <a href="/rhn/manager/systems/details/highstate?sid={0}">states page</a> or run <code class="text-info">state.highstate</code> from the command line. Il tipo <strong>OS Image Build Host</strong> è stato applicato.<br/><strong>Note:</strong> Questa azione <em>non</em> provocherà l'applicazione dello stato. Per applicare lo stato, usa la <a href="/rhn/manager/systems/details/highstate?sid={0}">pagina degli stati</a> o esegui <code class="text-info">state.highstate</code> dalla riga di comando. @@ -10299,13 +10292,6 @@ In alternativa, potrai scaricare le <strong>ISO incrementali del contenuto /rhn/systems/details/Overview.do - - <strong>OS Image Build Host</strong> type has been applied.<br/><strong>Note:</strong> This action will <em>not</em> result in state application. To apply the state, either use the <a href="/rhn/manager/systems/details/highstate?sid={0}">states page</a> or run <code class="text-info">state.highstate</code> from the command line. - Il tipo <strong>OS Image Build Host</strong> è stato applicato.<br/><strong>Note:</strong> Questa azione <em>non</em> provocherà l'applicazione dello stato. Per applicare lo stato, usa la <a href="/rhn/manager/systems/details/highstate?sid={0}">pagina degli stati</a> o esegui <code class="text-info">state.highstate</code> dalla riga di comando. - - /rhn/systems/details/Overview.do - - Since you added a Virtualization system type to the system we also performed some extra steps to ensure your system will be able to manage virtual guests better. See <a href="/docs/administration/virtualization.html">here</a> for more info. @@ -10313,22 +10299,8 @@ In alternativa, potrai scaricare le <strong>ISO incrementali del contenuto Poichè è stato aggiunto un entitlement di Virtualizzazione al sistema, abbiamo eseguito alcune fasi aggiuntive in modo da assicurare una gestione migliore dei guest virtuali. Per maggiori informazioni consultate <a href="{0}">qui</a> - - Since you added a Virtualization system type to the system we also performed some extra steps to ensure your system will be able to manage virtual guests better. - - /rhn/systems/details/Overview.do - - Poichè è stato aggiunto un entitlement di Virtualizzazione al sistema abbiamo eseguito alcune fasi aggiuntive in modo da assicurare una gestione migliore dei guest virtuali. - - <strong>Monitoring</strong> type has been applied.<br/><strong>Note:</strong> Since you added the Monitoring system type we automatically assigned the Prometheus Exporters formula to the system. Please apply the <a href="/rhn/manager/systems/details/highstate?sid={0}">Highstate</a> in order to install and enable the Prometheus metrics exporters. - Poichè hai aggiunto il tipo di sistema Monitoraggio, abbiamo assegnato automaticamente la formula Prometheus Exporters al sistema. Applica lo <a href="/rhn/manager/systems/details/highstate?sid={0}">Stato Alto</a> per installare e abilitare gli esportatori di metriche Prometheus. - - /rhn/systems/details/Overview.do - - - - <strong>Monitoring</strong> type has been applied.<br/><strong>Note:</strong> Since you added the Monitoring system type we automatically assigned the Prometheus Exporters formula to the system. Please apply the <a href="/rhn/manager/systems/details/highstate?sid={0}">Highstate</a> in order to install and enable the Prometheus metrics exporters. + <strong>Monitoring</strong> type has been applied.<br/><strong>Note:</strong> Since you added the Monitoring system type we automatically assigned the Prometheus Exporters formula to the system. Please apply the <a href="/rhn/manager/systems/details/highstate?sid={0}">Highstate</a> in order to install and enable the Prometheus metrics exporters.<br/><strong>Note:</strong> Please make sure to open the <a href="/docs/{1}/installation-and-upgrade/ports.html#_external_client_ports" target="_blank">required network ports</a> for all installed exporters. Poichè hai aggiunto il tipo di sistema Monitoraggio, abbiamo assegnato automaticamente la formula Prometheus Exporters al sistema. Applica lo <a href="/rhn/manager/systems/details/highstate?sid={0}">Stato Alto</a> per installare e abilitare gli esportatori di metriche Prometheus. /rhn/systems/details/Overview.do @@ -10848,13 +10820,6 @@ In alternativa, potrai scaricare le <strong>ISO incrementali del contenuto /rhn/systems/details/Overview.do - - - <strong>Ansible Control Node</strong> type has been applied.<br/><strong>Note:</strong> This action will <em>not</em> result in state application. To apply the state, either use the <a href="/rhn/manager/systems/details/highstate?sid={0}">states page</a> or run <code class="text-info">state.highstate</code> from the command line. - - /rhn/systems/details/Overview.do - - Invalid path (must be a valid absolute path) @@ -11012,28 +10977,28 @@ In alternativa, potrai scaricare le <strong>ISO incrementali del contenuto - Pay-as-you-go {0} created successfully - + PAYG {0} created successfully + - Pay-as-you-go host already exists - + PAYG host already exists + - Pay-as-you-go {0} deleted successfully - + PAYG {0} deleted successfully + Error when updating authentication data from: <a href="/rhn/manager/admin/setup/payg/{0}">{1}</a> - Pay-as-you-go authentication update - + PAYG authentication update + - Pay-as-you-go update RMT hosts - + PAYG update RMT hosts + Product data needs refresh. @@ -11289,6 +11254,45 @@ In alternativa, potrai scaricare le <strong>ISO incrementali del contenuto Sync Salt states to the target system - + + Cloning of channels under different product channels on PAYG instances is forbidden + + /channels/manage/Edit + + + + + PAYG ALERT: Cross product migration attempt detected. Please note, migration from openSUSE to SLES or similar is not permitted under your current PAYG plan. Operation has been aborted. + + + + Syncing channels forbidden + + + + Synchronization of repositories is forbidden as @@PRODUCT_NAME@@ PAYG is unable to send accounting data to the cloud provider. +For a detailed analysis, please refer to the log files. + + + + +The action you attempted could not be executed because the @@PRODUCT_NAME@@ PAYG system is unable to send accounting data to the cloud provider. +For a detailed analysis, please refer to the log files. + + + + + Systems with conflicting minion ID and machine ID were found ({0}, {1}). Onboarding aborted. Please remove conflicting systems first ({2}, {3}) + + + + Registration of '{0}' on SUSE Manager Server rejected. \nTo manage Datacenter clients you have to configure SCC Credentials at Admin => Setup Wizard => Organization Credentials. + + + + Registration of '{0}' on SUSE Manager Server rejected. \nTo manage BYOS (Bring-your-own-Subscription) clients you have to configure SCC Credentials at Admin => Setup Wizard => Organization Credentials. \n\nIf the instance being onboarded is PAYG, ensure the `python-instance-billing-flavor-check` package is installed and try again. + + + diff --git a/java/code/src/com/redhat/rhn/frontend/strings/java/StringResource_ja.xml b/java/code/src/com/redhat/rhn/frontend/strings/java/StringResource_ja.xml index d4f7dcfbc0ba..f1f890d9517e 100644 --- a/java/code/src/com/redhat/rhn/frontend/strings/java/StringResource_ja.xml +++ b/java/code/src/com/redhat/rhn/frontend/strings/java/StringResource_ja.xml @@ -10284,13 +10284,6 @@ Alternatively, you will want to download <strong>Incremental Channel Conte /rhn/systems/details/Overview.do - - <strong>Container Build Host</strong> type has been applied.<br/><strong>Note:</strong> This action will <em>not</em> result in state application. To apply the state, either use the <a href="/rhn/manager/systems/details/highstate?sid={0}">states page</a> or run <code class="text-info">state.highstate</code> from the command line. - <strong>コンテナビルドホスト</strong> の種類を適用しました。 <br/><strong>注意:</strong> この処理は状態を適用するものでは <em>ありません</em> 。状態を適用したい場合は、 <a href="/rhn/manager/systems/details/highstate?sid={0}">状態ページ</a> を使用するか、もしくはコマンドラインから <code class="text-info">state.highstate</code> を実行してください。 - - /rhn/systems/details/Overview.do - - <strong>OS Image Build Host</strong> type has been applied.<br/><strong>Note:</strong> This action will <em>not</em> result in state application. To apply the state, either use the <a href="/rhn/manager/systems/details/highstate?sid={0}">states page</a> or run <code class="text-info">state.highstate</code> from the command line. <strong>OS イメージビルドホスト</strong> の種類を適用しました。 <br/><strong>注意:</strong> この処理は状態を適用するものでは <em>ありません</em> 。状態を適用したい場合は、 <a href="/rhn/manager/systems/details/highstate?sid={0}">状態ページ</a> を使用するか、もしくはコマンドラインから <code class="text-info">state.highstate</code> を実行してください。 @@ -10298,13 +10291,6 @@ Alternatively, you will want to download <strong>Incremental Channel Conte /rhn/systems/details/Overview.do - - <strong>OS Image Build Host</strong> type has been applied.<br/><strong>Note:</strong> This action will <em>not</em> result in state application. To apply the state, either use the <a href="/rhn/manager/systems/details/highstate?sid={0}">states page</a> or run <code class="text-info">state.highstate</code> from the command line. - <strong>OS イメージビルドホスト</strong> の種類を適用しました。 <br/><strong>注意:</strong> この処理は状態を適用するものでは <em>ありません</em> 。状態を適用したい場合は、 <a href="/rhn/manager/systems/details/highstate?sid={0}">状態ページ</a> を使用するか、もしくはコマンドラインから <code class="text-info">state.highstate</code> を実行してください。 - - /rhn/systems/details/Overview.do - - Since you added a Virtualization system type to the system we also performed some extra steps to ensure your system will be able to manage virtual guests better. See <a href="/docs/administration/virtualization.html">here</a> for more info. システムに対して仮想化システムの種類を追加したため、仮想化ゲストの管理を管理しやすくするための追加ステップを実行しました。詳しくは <a href="/docs/administration/virtualization.html">here</a> をお読みください。 @@ -10312,23 +10298,9 @@ Alternatively, you will want to download <strong>Incremental Channel Conte /rhn/systems/details/Overview.do - - Since you added a Virtualization system type to the system we also performed some extra steps to ensure your system will be able to manage virtual guests better. - システムに対して仮想化システムの種類を追加したため、仮想化ゲストの管理を管理しやすくするための追加ステップを実行しました。 - - /rhn/systems/details/Overview.do - - - <strong>Monitoring</strong> type has been applied.<br/><strong>Note:</strong> Since you added the Monitoring system type we automatically assigned the Prometheus Exporters formula to the system. Please apply the <a href="/rhn/manager/systems/details/highstate?sid={0}">Highstate</a> in order to install and enable the Prometheus metrics exporters. - <strong>モニタリング</strong> の種類を適用しました。<br/><strong>注意:</strong>システムに対してモニタリングの種類を追加したため、自動的に Prometheus Exporters formula の割り当ても行ないました。 Prometheus metrics exporters のインストールと有効化については<a href="/rhn/manager/systems/details/highstate?sid={0}">Highstate</a>を適用してください。 - - /rhn/systems/details/Overview.do - - - - <strong>Monitoring</strong> type has been applied.<br/><strong>Note:</strong> Since you added the Monitoring system type we automatically assigned the Prometheus Exporters formula to the system. Please apply the <a href="/rhn/manager/systems/details/highstate?sid={0}">Highstate</a> in order to install and enable the Prometheus metrics exporters. - <strong>モニタリング</strong> の種類を適用しました。<br/><strong>注意:</strong> システムに対してモニタリングの種類を追加したため、自動的に Prometheus Exporters formula の割り当ても行ないました。 Prometheus metrics exporters のインストールと有効化については<a href="/rhn/manager/systems/details/highstate?sid={0}">Highstate</a>を適用してください。 + <strong>Monitoring</strong> type has been applied.<br/><strong>Note:</strong> Since you added the Monitoring system type we automatically assigned the Prometheus Exporters formula to the system. Please apply the <a href="/rhn/manager/systems/details/highstate?sid={0}">Highstate</a> in order to install and enable the Prometheus metrics exporters.<br/><strong>Note:</strong> Please make sure to open the <a href="/docs/{1}/installation-and-upgrade/ports.html#_external_client_ports" target="_blank">required network ports</a> for all installed exporters. + <strong>モニタリング</strong> の種類を適用しました。<br/><strong>注意:</strong>システムに対してモニタリングの種類を追加したため、自動的に Prometheus Exporters formula の割り当ても行ないました。 Prometheus metrics exporters のインストールと有効化については<a href="/rhn/manager/systems/details/highstate?sid={0}">Highstate</a>を適用してください。 /rhn/systems/details/Overview.do @@ -10855,13 +10827,6 @@ Alternatively, you will want to download <strong>Incremental Channel Conte <strong>ansible 制御ノード</strong> の種類を適用しました。<br/><strong>注意:</strong> この動作では状態の適用は <em>行なわれません</em> 。状態を適用するには <a href="/rhn/manager/systems/details/highstate?sid={0}">状態ページ</a> を使用するか、もしくはコマンドラインから <code class="text-info">state.highstate</code> を実行してください。 - - <strong>Ansible Control Node</strong> type has been applied.<br/><strong>Note:</strong> This action will <em>not</em> result in state application. To apply the state, either use the <a href="/rhn/manager/systems/details/highstate?sid={0}">states page</a> or run <code class="text-info">state.highstate</code> from the command line. - - /rhn/systems/details/Overview.do - - <strong>ansible 制御ノード</strong> の種類を適用しました。<br/><strong>注意:</strong> この動作では状態の適用は <em>行なわれません</em> 。状態を適用するには <a href="/rhn/manager/systems/details/highstate?sid={0}">状態ページ</a> を使用するか、もしくはコマンドラインから <code class="text-info">state.highstate</code> を実行してください。 - Invalid path (must be a valid absolute path) @@ -11018,28 +10983,28 @@ Alternatively, you will want to download <strong>Incremental Channel Conte 要塞SSH機密鍵パスフレーズは32文字を超えてはなりません。 - Pay-as-you-go {0} created successfully - 従量課金制の {0} が正常に作成されました + PAYG {0} created successfully + PAYGの {0} が正常に作成されました - Pay-as-you-go host already exists - 従量課金制のホストはすでに存在します + PAYG host already exists + PAYGのホストはすでに存在します - Pay-as-you-go {0} deleted successfully - 従量課金制の {0} が正常に削除されました + PAYG {0} deleted successfully + PAYGの {0} が正常に削除されました Error when updating authentication data from: <a href="/rhn/manager/admin/setup/payg/{0}">{1}</a> 次の場所から認証データを更新するときにエラーが発生しました: <a href="/rhn/manager/admin/setup/payg/{0}">{1}</a> - Pay-as-you-go authentication update - 従量課金制の認証の更新 + PAYG authentication update + PAYGの認証の更新 - Pay-as-you-go update RMT hosts - 従量課金制のRMTホストの更新 + PAYG update RMT hosts + PAYGのRMTホストの更新 Product data needs refresh. @@ -11298,6 +11263,49 @@ Alternatively, you will want to download <strong>Incremental Channel Conte Sync Salt states to the target system Salt状態をターゲットシステムに同期します + + Cloning of channels under different product channels on PAYG instances is forbidden + + /channels/manage/Edit + + PAYGインスタンスの異なる製品チャンネルにおけるチャンネルの複製は禁止されています + + + PAYG ALERT: Cross product migration attempt detected. Please note, migration from openSUSE to SLES or similar is not permitted under your current PAYG plan. Operation has been aborted. + PAYGアラート: 製品間の移行試行が検出されました。現在のPAYGプランでは、openSUSEからSLESなどへの移行は許可されていないことに注意してください。操作は中止されました。 + + + Syncing channels forbidden + チャンネルの同期は禁止されています + + + Synchronization of repositories is forbidden as @@PRODUCT_NAME@@ PAYG is unable to send accounting data to the cloud provider. +For a detailed analysis, please refer to the log files. + @@PRODUCT_NAME@@ PAYGは会計データをクラウドプロバイダに送信できないため、リポジトリの同期は禁止されています。 +詳細な分析については、ログファイルを参照してください。 + + + +The action you attempted could not be executed because the @@PRODUCT_NAME@@ PAYG system is unable to send accounting data to the cloud provider. +For a detailed analysis, please refer to the log files. + + +@@PRODUCT_NAME@@ PAYGシステムが会計データをクラウドプロバイダに送信できないため、試行したアクションを実行できませんでした。 +詳細な分析については、ログ ファイルを参照してください。 + + + + Systems with conflicting minion ID and machine ID were found ({0}, {1}). Onboarding aborted. Please remove conflicting systems first ({2}, {3}) + 競合するminion IDとマシンIDを持つシステムが見つかりました({0}、{1})。オンボーディングが中止されました。まず競合するシステムを削除してください({2}、{3}) + + + Registration of '{0}' on SUSE Manager Server rejected. \nTo manage Datacenter clients you have to configure SCC Credentials at Admin => Setup Wizard => Organization Credentials. + SUSE Manager Serverでの「{0}」の登録が拒否されました。 \nデータセンタークライアントを管理するには、[管理]=>[セットアップウィザード]=>[組織の資格情報]でSCC資格情報を設定する必要があります。 + + + Registration of '{0}' on SUSE Manager Server rejected. \nTo manage BYOS (Bring-your-own-Subscription) clients you have to configure SCC Credentials at Admin => Setup Wizard => Organization Credentials. \n\nIf the instance being onboarded is PAYG, ensure the `python-instance-billing-flavor-check` package is installed and try again. + SUSE Manager Serverでの「{0}」の登録が拒否されました。 \nBYOS (Bring-your-own-Subscription)クライアントを管理するには、[管理]=>[セットアップウィザード]=>[組織の資格情報]でSCC資格情報を設定する必要があります。\n\nオンボードされているインスタンスがPAYGの場合は、`python-instance-billing-flavor-check`パッケージがインストールされていることを確認して、再試行してください。 + diff --git a/java/code/src/com/redhat/rhn/frontend/strings/java/StringResource_ko.xml b/java/code/src/com/redhat/rhn/frontend/strings/java/StringResource_ko.xml index 8b2503922415..59691a24fc29 100644 --- a/java/code/src/com/redhat/rhn/frontend/strings/java/StringResource_ko.xml +++ b/java/code/src/com/redhat/rhn/frontend/strings/java/StringResource_ko.xml @@ -10287,13 +10287,6 @@ Alternatively, you will want to download <strong>Incremental Channel Conte /rhn/systems/details/Overview.do - - <strong>Container Build Host</strong> type has been applied.<br/><strong>Note:</strong> This action will <em>not</em> result in state application. To apply the state, either use the <a href="/rhn/manager/systems/details/highstate?sid={0}">states page</a> or run <code class="text-info">state.highstate</code> from the command line. - <strong>컨테이너 빌드 호스트</strong> 유형이 적용되었습니다.<br/><strong>참고:</strong> 이 작업으로 인해 상태가 적용되지 <em>않습니다</em>. 상태를 적용하려면 <a href="/rhn/manager/systems/details/highstate?sid={0}">상태 페이지</a>를 사용하거나 명령줄에서 <code class="text-info">state.highstate</code>를 실행하십시오. - - /rhn/systems/details/Overview.do - - <strong>OS Image Build Host</strong> type has been applied.<br/><strong>Note:</strong> This action will <em>not</em> result in state application. To apply the state, either use the <a href="/rhn/manager/systems/details/highstate?sid={0}">states page</a> or run <code class="text-info">state.highstate</code> from the command line. <strong>OS 이미지 빌드 호스트</strong> 유형이 적용되었습니다. <br/><strong>참고:</strong> 이 작업으로 인해 상태가 적용되지 <em>않습니다</em>. 상태를 적용하려면 <a href="/rhn/manager/systems/details/highstate?sid={0}">상태 페이지</a>를 사용하거나 명령줄에서 <code class="text-info">state.highstate</code>를 실행하십시오. @@ -10301,13 +10294,6 @@ Alternatively, you will want to download <strong>Incremental Channel Conte /rhn/systems/details/Overview.do - - <strong>OS Image Build Host</strong> type has been applied.<br/><strong>Note:</strong> This action will <em>not</em> result in state application. To apply the state, either use the <a href="/rhn/manager/systems/details/highstate?sid={0}">states page</a> or run <code class="text-info">state.highstate</code> from the command line. - <strong>OS 이미지 빌드 호스트</strong> 유형이 적용되었습니다. <br/><strong>참고:</strong> 이 작업으로 인해 상태가 적용되지 <em>않습니다</em>. 상태를 적용하려면 <a href="/rhn/manager/systems/details/highstate?sid={0}">상태 페이지</a>를 사용하거나 명령줄에서 <code class="text-info">state.highstate</code>를 실행하십시오. - - /rhn/systems/details/Overview.do - - Since you added a Virtualization system type to the system we also performed some extra steps to ensure your system will be able to manage virtual guests better. See <a href="/docs/administration/virtualization.html">here</a> for more info. @@ -10315,23 +10301,9 @@ Alternatively, you will want to download <strong>Incremental Channel Conte 시스템에 가상화 시스템 유형을 추가한 후에 시스템이 가상 게스트를 보다 효과적으로 관리할 수 있는지를 확인하기 위해 몇 가지 추가적인 단계를 실행했습니다. 보다 자세한 정보는 <a href="{0}">여기</a>를 참조하시기 바랍니다. - - Since you added a Virtualization system type to the system we also performed some extra steps to ensure your system will be able to manage virtual guests better. - - /rhn/systems/details/Overview.do - - 시스템에 가상화 시스템 유형을 추가한 후에, 시스템이 가상 게스트를 보다 효과적으로 관리할 수 있는지 확인하기 위해 몇 가지 추가적인 단계를 실행하였습니다. - - <strong>Monitoring</strong> type has been applied.<br/><strong>Note:</strong> Since you added the Monitoring system type we automatically assigned the Prometheus Exporters formula to the system. Please apply the <a href="/rhn/manager/systems/details/highstate?sid={0}">Highstate</a> in order to install and enable the Prometheus metrics exporters. - <strong>모니터링</strong> 유형이 적용되었습니다.<br/><strong>Note:</strong> 모니터링 시스템 유형을 추가했기 때문에 Prometheus Exporters 공식을 시스템에 자동으로 할당했습니다. Prometheus Metric Exporter를 설치하고 활성화하려면 <a href="/rhn/manager/systems/details/highstate?sid={0}">Highstate</a>를 적용하십시오. - - /rhn/systems/details/Overview.do - - - - <strong>Monitoring</strong> type has been applied.<br/><strong>Note:</strong> Since you added the Monitoring system type we automatically assigned the Prometheus Exporters formula to the system. Please apply the <a href="/rhn/manager/systems/details/highstate?sid={0}">Highstate</a> in order to install and enable the Prometheus metrics exporters. - <strong>모니터링</strong> 유형이 적용되었습니다.<br/><strong>Note:</strong> 모니터링 시스템 유형을 추가했기 때문에 Prometheus Exporters 공식을 시스템에 자동으로 할당했습니다. Prometheus Metric Exporter를 설치하고 활성화하려면 <a href="/rhn/manager/systems/details/highstate?sid={0}">Highstate</a>를 적용하십시오. + <strong>Monitoring</strong> type has been applied.<br/><strong>Note:</strong> Since you added the Monitoring system type we automatically assigned the Prometheus Exporters formula to the system. Please apply the <a href="/rhn/manager/systems/details/highstate?sid={0}">Highstate</a> in order to install and enable the Prometheus metrics exporters.<br/><strong>Note:</strong> Please make sure to open the <a href="/docs/{1}/installation-and-upgrade/ports.html#_external_client_ports" target="_blank">required network ports</a> for all installed exporters. + <strong>모니터링</strong> 유형이 적용되었습니다.<br/><strong>Note:</strong> 모니터링 시스템 유형을 추가했기 때문에 Prometheus Exporters 공식을 시스템에 자동으로 할당했습니다. Prometheus Metric Exporter를 설치하고 활성화하려면 <a href="/rhn/manager/systems/details/highstate?sid={0}">Highstate</a>를 적용하십시오. /rhn/systems/details/Overview.do @@ -10858,13 +10830,6 @@ Alternatively, you will want to download <strong>Incremental Channel Conte <strong>Ansible 제어 노드</strong> 유형이 적용되었습니다. <br/><strong>참조:</strong> 이 작업을 수행하면 상태가 적용되지 <em>않습니다<em>. 상태를 적용하려면, <a href="/rhn/manager/systems/details/highstate?sid={0}">상태 페이지</a>를 이용하거나 명령줄에서 <code class="text-info">state.highstate</code>를 실행하십시오. - - <strong>Ansible Control Node</strong> type has been applied.<br/><strong>Note:</strong> This action will <em>not</em> result in state application. To apply the state, either use the <a href="/rhn/manager/systems/details/highstate?sid={0}">states page</a> or run <code class="text-info">state.highstate</code> from the command line. - - /rhn/systems/details/Overview.do - - <strong>Ansible 제어 노드</strong>< 유형이 적용되었습니다. <br/><strong>참조:</strong> 이 작업을 수행하면 <em> 상태가 적용되<em>않습니다. 상태를 적용하려면, <a href="/rhn/manager/systems/details/highstate?sid={0}">상태 페이지</a>를 이용하거나 명령줄에서 <code class="text-info">state.highstate</code> 를 실행하십시오. - Invalid path (must be a valid absolute path) @@ -11021,28 +10986,28 @@ Alternatively, you will want to download <strong>Incremental Channel Conte 베스천 SSH 개인 키 암호 구문은 32자 이하여야 합니다. - Pay-as-you-go {0} created successfully - 용량제 {0} 생성됨 + PAYG {0} created successfully + PAYG {0} 생성됨 - Pay-as-you-go host already exists - 용량제 호스트 이미 있음 + PAYG host already exists + PAYG 호스트 이미 있음 - Pay-as-you-go {0} deleted successfully - 용량제 {0} 삭제됨 + PAYG {0} deleted successfully + PAYG {0} 삭제됨 Error when updating authentication data from: <a href="/rhn/manager/admin/setup/payg/{0}">{1}</a> 다음에서 인증 데이터 업데이트 중 오류: <a href="/rhn/manager/admin/setup/payg/{0}">{1}</a> - Pay-as-you-go authentication update - 용량제 인증 업데이트 + PAYG authentication update + PAYG 인증 업데이트 - Pay-as-you-go update RMT hosts - 용량제 업데이트 RMT 호스트 + PAYG update RMT hosts + PAYG 업데이트 RMT 호스트 Product data needs refresh. @@ -11301,6 +11266,49 @@ Alternatively, you will want to download <strong>Incremental Channel Conte Sync Salt states to the target system Salt 상태를 대상 시스템에 동기화 + + Cloning of channels under different product channels on PAYG instances is forbidden + + /channels/manage/Edit + + PAYG 인스턴스의 다른 제품 채널 아래에 있는 채널을 복제하는 것은 금지되어 있습니다. + + + PAYG ALERT: Cross product migration attempt detected. Please note, migration from openSUSE to SLES or similar is not permitted under your current PAYG plan. Operation has been aborted. + PAYG 경고: 제품 간 마이그레이션 시도가 감지되었습니다. 현재 PAYG 플랜에서는 openSUSE에서 SLES로 또는 이와 유사한 제품으로의 마이그레이션이 허용되지 않습니다. 작업이 중단되었습니다. + + + Syncing channels forbidden + 채널 동기화 금지됨 + + + Synchronization of repositories is forbidden as @@PRODUCT_NAME@@ PAYG is unable to send accounting data to the cloud provider. +For a detailed analysis, please refer to the log files. + @@PRODUCT_NAME@@ PAYG가 클라우드 공급자에게 회계 데이터를 보낼 수 없으므로 리포지토리 동기화는 금지됩니다. +자세한 분석은 로그 파일을 참조하십시오. + + + +The action you attempted could not be executed because the @@PRODUCT_NAME@@ PAYG system is unable to send accounting data to the cloud provider. +For a detailed analysis, please refer to the log files. + + +@@PRODUCT_NAME@@ PAYG 시스템이 클라우드 공급자에게 회계 데이터를 보낼 수 없으므로 시도한 작업을 실행할 수 없습니다. +자세한 분석은 로그 파일을 참조하십시오. + + + + Systems with conflicting minion ID and machine ID were found ({0}, {1}). Onboarding aborted. Please remove conflicting systems first ({2}, {3}) + 미니언 ID와 시스템 ID가 충돌하는 시스템이 발견되었습니다({0}, {1}). 온보딩이 중단되었습니다. 충돌하는 시스템을 먼저 제거하십시오({2}, {3}). + + + Registration of '{0}' on SUSE Manager Server rejected. \nTo manage Datacenter clients you have to configure SCC Credentials at Admin => Setup Wizard => Organization Credentials. + SUSE Manager 서버에서 '{0}' 등록이 거부되었습니다. \n데이터 센터 클라이언트를 관리하려면 관리자 => 설정 마법사 => 조직 자격 증명에서 SCC 자격 증명을 구성해야 합니다. + + + Registration of '{0}' on SUSE Manager Server rejected. \nTo manage BYOS (Bring-your-own-Subscription) clients you have to configure SCC Credentials at Admin => Setup Wizard => Organization Credentials. \n\nIf the instance being onboarded is PAYG, ensure the `python-instance-billing-flavor-check` package is installed and try again. + SUSE Manager 서버에서 '{0}' 등록이 거부되었습니다. \nBYOS(Bring-your-own-Subscription) 클라이언트를 관리하려면 관리자 => 설치 마법사 => 조직 자격 증명에서 SCC 자격 증명을 구성해야 합니다. \n\n온보딩 중인 인스턴스가 PAYG인 경우 'python-instance-billing-flavor-check' 패키지가 설치되어 있는지 확인하고 다시 시도하십시오. + diff --git a/java/code/src/com/redhat/rhn/frontend/strings/java/StringResource_mk.xml b/java/code/src/com/redhat/rhn/frontend/strings/java/StringResource_mk.xml index 65290597c339..6fc669037c34 100644 --- a/java/code/src/com/redhat/rhn/frontend/strings/java/StringResource_mk.xml +++ b/java/code/src/com/redhat/rhn/frontend/strings/java/StringResource_mk.xml @@ -741,21 +741,21 @@ Management - + Управување Navigation Menu Manage - + Управа Navigation Menu Manage Repositories - + Управување на складишта Navigation Menu @@ -839,21 +839,21 @@ Transfer - + Трансфер Navigation Menu Packages - + Пакети Errata Details Navigation Tabs Package Search - + Пребарување на пакети Navigation Menu @@ -10258,12 +10258,12 @@ Alternatively, you will want to download <strong>Incremental Channel Conte - Pay-as-you-go authentication update - + PAYG authentication update + - Pay-as-you-go update RMT hosts - + PAYG update RMT hosts + Registers @@PRODUCT_NAME@@ clients @@ -10511,16 +10511,16 @@ Alternatively, you will want to download <strong>Incremental Channel Conte - Pay-as-you-go {0} created successfully - + PAYG {0} created successfully + - Pay-as-you-go host already exists - + PAYG host already exists + - Pay-as-you-go {0} deleted successfully - + PAYG {0} deleted successfully + CVE Audit @@ -10585,13 +10585,6 @@ Alternatively, you will want to download <strong>Incremental Channel Conte /rhn/systems/details/Overview.do - - <strong>Container Build Host</strong> type has been applied.<br/><strong>Note:</strong> This action will <em>not</em> result in state application. To apply the state, either use the <a href="/rhn/manager/systems/details/highstate?sid={0}">states page</a> or run <code class="text-info">state.highstate</code> from the command line. - - - /rhn/systems/details/Overview.do - - <strong>OS Image Build Host</strong> type has been applied.<br/><strong>Note:</strong> This action will <em>not</em> result in state application. To apply the state, either use the <a href="/rhn/manager/systems/details/highstate?sid={0}">states page</a> or run <code class="text-info">state.highstate</code> from the command line. @@ -10599,13 +10592,6 @@ Alternatively, you will want to download <strong>Incremental Channel Conte /rhn/systems/details/Overview.do - - <strong>OS Image Build Host</strong> type has been applied.<br/><strong>Note:</strong> This action will <em>not</em> result in state application. To apply the state, either use the <a href="/rhn/manager/systems/details/highstate?sid={0}">states page</a> or run <code class="text-info">state.highstate</code> from the command line. - - - /rhn/systems/details/Overview.do - - Since you added a Virtualization system type to the system we also performed some extra steps to ensure your system will be able to manage virtual guests better. See <a href="/docs/administration/virtualization.html">here</a> for more info. @@ -10613,22 +10599,8 @@ Alternatively, you will want to download <strong>Incremental Channel Conte /rhn/systems/details/Overview.do - - Since you added a Virtualization system type to the system we also performed some extra steps to ensure your system will be able to manage virtual guests better. - - - /rhn/systems/details/Overview.do - - - <strong>Monitoring</strong> type has been applied.<br/><strong>Note:</strong> Since you added the Monitoring system type we automatically assigned the Prometheus Exporters formula to the system. Please apply the <a href="/rhn/manager/systems/details/highstate?sid={0}">Highstate</a> in order to install and enable the Prometheus metrics exporters. - - - /rhn/systems/details/Overview.do - - - - <strong>Monitoring</strong> type has been applied.<br/><strong>Note:</strong> Since you added the Monitoring system type we automatically assigned the Prometheus Exporters formula to the system. Please apply the <a href="/rhn/manager/systems/details/highstate?sid={0}">Highstate</a> in order to install and enable the Prometheus metrics exporters. + <strong>Monitoring</strong> type has been applied.<br/><strong>Note:</strong> Since you added the Monitoring system type we automatically assigned the Prometheus Exporters formula to the system. Please apply the <a href="/rhn/manager/systems/details/highstate?sid={0}">Highstate</a> in order to install and enable the Prometheus metrics exporters.<br/><strong>Note:</strong> Please make sure to open the <a href="/docs/{1}/installation-and-upgrade/ports.html#_external_client_ports" target="_blank">required network ports</a> for all installed exporters. /rhn/systems/details/Overview.do @@ -10641,13 +10613,6 @@ Alternatively, you will want to download <strong>Incremental Channel Conte /rhn/systems/details/Overview.do - - <strong>Ansible Control Node</strong> type has been applied.<br/><strong>Note:</strong> This action will <em>not</em> result in state application. To apply the state, either use the <a href="/rhn/manager/systems/details/highstate?sid={0}">states page</a> or run <code class="text-info">state.highstate</code> from the command line. - - - /rhn/systems/details/Overview.do - - Invalid path (must be a valid absolute path) @@ -11206,6 +11171,45 @@ Alternatively, you will want to download <strong>Incremental Channel Conte Sync Salt states to the target system + + Cloning of channels under different product channels on PAYG instances is forbidden + + /channels/manage/Edit + + + + + PAYG ALERT: Cross product migration attempt detected. Please note, migration from openSUSE to SLES or similar is not permitted under your current PAYG plan. Operation has been aborted. + + + + Syncing channels forbidden + + + + Synchronization of repositories is forbidden as @@PRODUCT_NAME@@ PAYG is unable to send accounting data to the cloud provider. +For a detailed analysis, please refer to the log files. + + + + +The action you attempted could not be executed because the @@PRODUCT_NAME@@ PAYG system is unable to send accounting data to the cloud provider. +For a detailed analysis, please refer to the log files. + + + + + Systems with conflicting minion ID and machine ID were found ({0}, {1}). Onboarding aborted. Please remove conflicting systems first ({2}, {3}) + + + + Registration of '{0}' on SUSE Manager Server rejected. \nTo manage Datacenter clients you have to configure SCC Credentials at Admin => Setup Wizard => Organization Credentials. + + + + Registration of '{0}' on SUSE Manager Server rejected. \nTo manage BYOS (Bring-your-own-Subscription) clients you have to configure SCC Credentials at Admin => Setup Wizard => Organization Credentials. \n\nIf the instance being onboarded is PAYG, ensure the `python-instance-billing-flavor-check` package is installed and try again. + + diff --git a/java/code/src/com/redhat/rhn/frontend/strings/java/StringResource_pa.xml b/java/code/src/com/redhat/rhn/frontend/strings/java/StringResource_pa.xml index 516f027cdfc7..3d54ba05e8c2 100644 --- a/java/code/src/com/redhat/rhn/frontend/strings/java/StringResource_pa.xml +++ b/java/code/src/com/redhat/rhn/frontend/strings/java/StringResource_pa.xml @@ -9711,24 +9711,12 @@ Alternatively, you will want to download <strong>Incremental Channel Conte /rhn/systems/details/Overview.do - - <strong>Container Build Host</strong> type has been applied.<br/><strong>Note:</strong> This action will <em>not</em> result in state application. To apply the state, either use the <a href="/rhn/manager/systems/details/highstate?sid={0}">states page</a> or run <code class="text-info">state.highstate</code> from the command line. - - /rhn/systems/details/Overview.do - - <strong>OS Image Build Host</strong> type has been applied.<br/><strong>Note:</strong> This action will <em>not</em> result in state application. To apply the state, either use the <a href="/rhn/manager/systems/details/highstate?sid={0}">states page</a> or run <code class="text-info">state.highstate</code> from the command line. /rhn/systems/details/Overview.do - - <strong>OS Image Build Host</strong> type has been applied.<br/><strong>Note:</strong> This action will <em>not</em> result in state application. To apply the state, either use the <a href="/rhn/manager/systems/details/highstate?sid={0}">states page</a> or run <code class="text-info">state.highstate</code> from the command line. - - /rhn/systems/details/Overview.do - - Since you added a Virtualization system type to the system we also performed some extra steps to ensure your system will be able to manage virtual guests better. See <a href="/docs/administration/virtualization.html">here</a> for more info. @@ -9736,21 +9724,8 @@ Alternatively, you will want to download <strong>Incremental Channel Conte ਜਦੋਂ ਤੁਸੀਂ ਸਿਸਟਮ ਉੱਪਰ ਵਰਚੁਅਲਾਈਜੇਸ਼ਨ ਇੰਟਾਈਟਲਮੈਂਟ ਸ਼ਾਮਿਲ ਕੀਤਾ ਹੈ, ਅਸੀਂ ਕੁਝ ਵਾਧੂ ਸਹੂਲਤਾਂ ਲਾਗੂ ਕੀਤੀਆਂ ਹਨ ਤਾਂ ਕਿ ਤੁਹਾਡਾ ਸਿਸਟਮ ਵਰਚੁਅਲ ਗਿਸਟਾਂ ਦਾ ਪਰਬੰਧਨ ਕਰ ਸਕੇ। ਵਧੇਰੇ ਜਾਣਕਾਰੀ ਲਈ <a href="{0}">ਏਥੇ</a> ਵੇਖੋ। - - Since you added a Virtualization system type to the system we also performed some extra steps to ensure your system will be able to manage virtual guests better. - - /rhn/systems/details/Overview.do - - - <strong>Monitoring</strong> type has been applied.<br/><strong>Note:</strong> Since you added the Monitoring system type we automatically assigned the Prometheus Exporters formula to the system. Please apply the <a href="/rhn/manager/systems/details/highstate?sid={0}">Highstate</a> in order to install and enable the Prometheus metrics exporters. - - /rhn/systems/details/Overview.do - - - - - <strong>Monitoring</strong> type has been applied.<br/><strong>Note:</strong> Since you added the Monitoring system type we automatically assigned the Prometheus Exporters formula to the system. Please apply the <a href="/rhn/manager/systems/details/highstate?sid={0}">Highstate</a> in order to install and enable the Prometheus metrics exporters. + <strong>Monitoring</strong> type has been applied.<br/><strong>Note:</strong> Since you added the Monitoring system type we automatically assigned the Prometheus Exporters formula to the system. Please apply the <a href="/rhn/manager/systems/details/highstate?sid={0}">Highstate</a> in order to install and enable the Prometheus metrics exporters.<br/><strong>Note:</strong> Please make sure to open the <a href="/docs/{1}/installation-and-upgrade/ports.html#_external_client_ports" target="_blank">required network ports</a> for all installed exporters. /rhn/systems/details/Overview.do @@ -10229,13 +10204,6 @@ Alternatively, you will want to download <strong>Incremental Channel Conte /rhn/systems/details/Overview.do - - - <strong>Ansible Control Node</strong> type has been applied.<br/><strong>Note:</strong> This action will <em>not</em> result in state application. To apply the state, either use the <a href="/rhn/manager/systems/details/highstate?sid={0}">states page</a> or run <code class="text-info">state.highstate</code> from the command line. - - /rhn/systems/details/Overview.do - - Invalid path (must be a valid absolute path) @@ -10393,28 +10361,28 @@ Alternatively, you will want to download <strong>Incremental Channel Conte - Pay-as-you-go {0} created successfully - + PAYG {0} created successfully + - Pay-as-you-go host already exists - + PAYG host already exists + - Pay-as-you-go {0} deleted successfully - + PAYG {0} deleted successfully + Error when updating authentication data from: <a href="/rhn/manager/admin/setup/payg/{0}">{1}</a> - Pay-as-you-go authentication update - + PAYG authentication update + - Pay-as-you-go update RMT hosts - + PAYG update RMT hosts + Product data needs refresh. @@ -10670,6 +10638,45 @@ Alternatively, you will want to download <strong>Incremental Channel Conte Sync Salt states to the target system - + + Cloning of channels under different product channels on PAYG instances is forbidden + + /channels/manage/Edit + + + + + PAYG ALERT: Cross product migration attempt detected. Please note, migration from openSUSE to SLES or similar is not permitted under your current PAYG plan. Operation has been aborted. + + + + Syncing channels forbidden + + + + Synchronization of repositories is forbidden as @@PRODUCT_NAME@@ PAYG is unable to send accounting data to the cloud provider. +For a detailed analysis, please refer to the log files. + + + + +The action you attempted could not be executed because the @@PRODUCT_NAME@@ PAYG system is unable to send accounting data to the cloud provider. +For a detailed analysis, please refer to the log files. + + + + + Systems with conflicting minion ID and machine ID were found ({0}, {1}). Onboarding aborted. Please remove conflicting systems first ({2}, {3}) + + + + Registration of '{0}' on SUSE Manager Server rejected. \nTo manage Datacenter clients you have to configure SCC Credentials at Admin => Setup Wizard => Organization Credentials. + + + + Registration of '{0}' on SUSE Manager Server rejected. \nTo manage BYOS (Bring-your-own-Subscription) clients you have to configure SCC Credentials at Admin => Setup Wizard => Organization Credentials. \n\nIf the instance being onboarded is PAYG, ensure the `python-instance-billing-flavor-check` package is installed and try again. + + + diff --git a/java/code/src/com/redhat/rhn/frontend/strings/java/StringResource_pt_BR.xml b/java/code/src/com/redhat/rhn/frontend/strings/java/StringResource_pt_BR.xml index c109e6bd0481..da9af2678962 100644 --- a/java/code/src/com/redhat/rhn/frontend/strings/java/StringResource_pt_BR.xml +++ b/java/code/src/com/redhat/rhn/frontend/strings/java/StringResource_pt_BR.xml @@ -10289,13 +10289,6 @@ Como alternativa, você desejará fazer o download <strong>ISOs de conteú /rhn/systems/details/Overview.do - - <strong>Container Build Host</strong> type has been applied.<br/><strong>Note:</strong> This action will <em>not</em> result in state application. To apply the state, either use the <a href="/rhn/manager/systems/details/highstate?sid={0}">states page</a> or run <code class="text-info">state.highstate</code> from the command line. - O tipo <strong>Host de Construção de Contêiner</stron> foi aplicado.<br/><strong>Nota:</strong> Esta ação <em>não</em> resultará no aplicativo de estado. Para aplicar o estado, use a <a href ="/rhn/manager/systems/details/highstate?sid={0}">página de estados</a> ou execute <code class="text-info">state.highstate</code> a partir da linha de comando. - - /rhn/systems/details/Overview.do - - <strong>OS Image Build Host</strong> type has been applied.<br/><strong>Note:</strong> This action will <em>not</em> result in state application. To apply the state, either use the <a href="/rhn/manager/systems/details/highstate?sid={0}">states page</a> or run <code class="text-info">state.highstate</code> from the command line. O tipo <strong>Host De Criação De Imagem Do Sistema Operacional</strong> foi aplicado.<br/><strong>Nota:</strong> Esta ação <em>não</em> resultará no aplicativo de estado. Para aplicar o estado, use a <a href="/rhn/manager/systems/details/highstate?sid={0}">página de estados</a> ou execute <code class="text-info">state.highstate</code> a partir da linha de comando. @@ -10303,13 +10296,6 @@ Como alternativa, você desejará fazer o download <strong>ISOs de conteú /rhn/systems/details/Overview.do - - <strong>OS Image Build Host</strong> type has been applied.<br/><strong>Note:</strong> This action will <em>not</em> result in state application. To apply the state, either use the <a href="/rhn/manager/systems/details/highstate?sid={0}">states page</a> or run <code class="text-info">state.highstate</code> from the command line. - O tipo <strong>Host De Criação De Imagem De Sistema Operacional> foi aplicado.<br/><strong>Nota:</strong> Esta ação <em>não</em> resultará no aplicativo de estado. Para aplicar o estado, use a <a href="/rhn/manager/systems/details/highstate?sid={0}">página de estados</a> ou execute <code class="text-info">state.highstate.</code> a partir da linha de comando. - - /rhn/systems/details/Overview.do - - Since you added a Virtualization system type to the system we also performed some extra steps to ensure your system will be able to manage virtual guests better. See <a href="/docs/administration/virtualization.html">here</a> for more info. Como você adicionou um tipo de sistema de virtualização ao sistema, também executamos algumas etapas extras para garantir que seu sistema possa gerenciar melhor os convidados virtuais. Veja <a href="/docs/administration/virtualization.html">aqui</a> para mais informações. @@ -10317,27 +10303,13 @@ Como alternativa, você desejará fazer o download <strong>ISOs de conteú /rhn/systems/details/Overview.do - - Since you added a Virtualization system type to the system we also performed some extra steps to ensure your system will be able to manage virtual guests better. - Como você adicionou um tipo de sistema de virtualização ao sistema, também executamos algumas etapas extras para garantir que seu sistema possa gerenciar melhor os convidados virtuais. - - /rhn/systems/details/Overview.do - - - <strong>Monitoring</strong> type has been applied.<br/><strong>Note:</strong> Since you added the Monitoring system type we automatically assigned the Prometheus Exporters formula to the system. Please apply the <a href="/rhn/manager/systems/details/highstate?sid={0}">Highstate</a> in order to install and enable the Prometheus metrics exporters. + <strong>Monitoring</strong> type has been applied.<br/><strong>Note:</strong> Since you added the Monitoring system type we automatically assigned the Prometheus Exporters formula to the system. Please apply the <a href="/rhn/manager/systems/details/highstate?sid={0}">Highstate</a> in order to install and enable the Prometheus metrics exporters.<br/><strong>Note:</strong> Please make sure to open the <a href="/docs/{1}/installation-and-upgrade/ports.html#_external_client_ports" target="_blank">required network ports</a> for all installed exporters. Como você adicionou o tipo de sistema de monitoramento, atribuímos automaticamente a fórmula de exportadores do Prometheus ao sistema. Aplique o <a href="/rhn/manager/systems/details/highstate?sid={0}">Highstate</a> para instalar e ativar os exportadores de métricas do Prometheus. /rhn/systems/details/Overview.do - - <strong>Monitoring</strong> type has been applied.<br/><strong>Note:</strong> Since you added the Monitoring system type we automatically assigned the Prometheus Exporters formula to the system. Please apply the <a href="/rhn/manager/systems/details/highstate?sid={0}">Highstate</a> in order to install and enable the Prometheus metrics exporters. - Como você adicionou o tipo de sistema de monitoramento, atribuímos automaticamente a fórmula de exportadores do Prometheus ao sistema. Por favor aplique o <a href="/rhn/manager/systems/details/highstate?sid={0}">Highstate</a> para instalar e ativar os exportadores de métricas do Prometheus. - - /rhn/systems/details/Overview.do - - There was a problem assigning the Prometheus Exporters formula. Ocorreu um problema ao atribuir a fórmula do Prometheus Exporters. @@ -10860,13 +10832,6 @@ Como alternativa, você desejará fazer o download <strong>ISOs de conteú <strong>Nó de controle Ansible</strong> tipo foi aplicado. Esta ação<em>não</em>resultar na aplicação do estado. Para aplicar o estado, use a <a href="/rhn/manager/systems/details/highstate?sid={0}">página de estados</a> ou execute <code class="text-info">state.highstate< /code> a partir da linha de comando. - - <strong>Ansible Control Node</strong> type has been applied.<br/><strong>Note:</strong> This action will <em>not</em> result in state application. To apply the state, either use the <a href="/rhn/manager/systems/details/highstate?sid={0}">states page</a> or run <code class="text-info">state.highstate</code> from the command line. - - /rhn/systems/details/Overview.do - - <strong>Nó de controle Ansible</strong> tipo foi aplicado. Esta ação <em>não</em> resultar na aplicação do estado. Para aplicar o estado, use a< a href="/rhn/manager/systems/details/highstate?sid={0}">página de estados</a> ou execute <code class="text-info">state.highstate</code> a partir da linha de comando. - Invalid path (must be a valid absolute path) @@ -11023,28 +10988,28 @@ Como alternativa, você desejará fazer o download <strong>ISOs de conteú - Pay-as-you-go {0} created successfully - + PAYG {0} created successfully + - Pay-as-you-go host already exists - + PAYG host already exists + - Pay-as-you-go {0} deleted successfully - + PAYG {0} deleted successfully + Error when updating authentication data from: <a href="/rhn/manager/admin/setup/payg/{0}">{1}</a> - Pay-as-you-go authentication update - + PAYG authentication update + - Pay-as-you-go update RMT hosts - + PAYG update RMT hosts + Product data needs refresh. @@ -11300,6 +11265,45 @@ Como alternativa, você desejará fazer o download <strong>ISOs de conteú Sync Salt states to the target system - + + Cloning of channels under different product channels on PAYG instances is forbidden + + /channels/manage/Edit + + + + + PAYG ALERT: Cross product migration attempt detected. Please note, migration from openSUSE to SLES or similar is not permitted under your current PAYG plan. Operation has been aborted. + + + + Syncing channels forbidden + + + + Synchronization of repositories is forbidden as @@PRODUCT_NAME@@ PAYG is unable to send accounting data to the cloud provider. +For a detailed analysis, please refer to the log files. + + + + +The action you attempted could not be executed because the @@PRODUCT_NAME@@ PAYG system is unable to send accounting data to the cloud provider. +For a detailed analysis, please refer to the log files. + + + + + Systems with conflicting minion ID and machine ID were found ({0}, {1}). Onboarding aborted. Please remove conflicting systems first ({2}, {3}) + + + + Registration of '{0}' on SUSE Manager Server rejected. \nTo manage Datacenter clients you have to configure SCC Credentials at Admin => Setup Wizard => Organization Credentials. + + + + Registration of '{0}' on SUSE Manager Server rejected. \nTo manage BYOS (Bring-your-own-Subscription) clients you have to configure SCC Credentials at Admin => Setup Wizard => Organization Credentials. \n\nIf the instance being onboarded is PAYG, ensure the `python-instance-billing-flavor-check` package is installed and try again. + + + diff --git a/java/code/src/com/redhat/rhn/frontend/strings/java/StringResource_ru.xml b/java/code/src/com/redhat/rhn/frontend/strings/java/StringResource_ru.xml index abd54641af0c..20c8ddde23da 100644 --- a/java/code/src/com/redhat/rhn/frontend/strings/java/StringResource_ru.xml +++ b/java/code/src/com/redhat/rhn/frontend/strings/java/StringResource_ru.xml @@ -9920,24 +9920,12 @@ Alternatively, you will want to download <strong>Incremental Channel Conte /rhn/systems/details/Overview.do - - <strong>Container Build Host</strong> type has been applied.<br/><strong>Note:</strong> This action will <em>not</em> result in state application. To apply the state, either use the <a href="/rhn/manager/systems/details/highstate?sid={0}">states page</a> or run <code class="text-info">state.highstate</code> from the command line. - - /rhn/systems/details/Overview.do - - <strong>OS Image Build Host</strong> type has been applied.<br/><strong>Note:</strong> This action will <em>not</em> result in state application. To apply the state, either use the <a href="/rhn/manager/systems/details/highstate?sid={0}">states page</a> or run <code class="text-info">state.highstate</code> from the command line. /rhn/systems/details/Overview.do - - <strong>OS Image Build Host</strong> type has been applied.<br/><strong>Note:</strong> This action will <em>not</em> result in state application. To apply the state, either use the <a href="/rhn/manager/systems/details/highstate?sid={0}">states page</a> or run <code class="text-info">state.highstate</code> from the command line. - - /rhn/systems/details/Overview.do - - Since you added a Virtualization system type to the system we also performed some extra steps to ensure your system will be able to manage virtual guests better. See <a href="/docs/administration/virtualization.html">here</a> for more info. @@ -9945,22 +9933,8 @@ Alternatively, you will want to download <strong>Incremental Channel Conte Так как вы добавили к системе полномочие Виртуализации, были выполнены дополнительные действия для облегчения управления виртуальными гостевыми системами. <a href="{0}">Дополнительная информация</a>. - - Since you added a Virtualization system type to the system we also performed some extra steps to ensure your system will be able to manage virtual guests better. - - /rhn/systems/details/Overview.do - - Так как вы добавили к системе полномочие виртуализации, были выполнены дополнительные действия для облегчения управления виртуальными системами. - - <strong>Monitoring</strong> type has been applied.<br/><strong>Note:</strong> Since you added the Monitoring system type we automatically assigned the Prometheus Exporters formula to the system. Please apply the <a href="/rhn/manager/systems/details/highstate?sid={0}">Highstate</a> in order to install and enable the Prometheus metrics exporters. - - /rhn/systems/details/Overview.do - - - - - <strong>Monitoring</strong> type has been applied.<br/><strong>Note:</strong> Since you added the Monitoring system type we automatically assigned the Prometheus Exporters formula to the system. Please apply the <a href="/rhn/manager/systems/details/highstate?sid={0}">Highstate</a> in order to install and enable the Prometheus metrics exporters. + <strong>Monitoring</strong> type has been applied.<br/><strong>Note:</strong> Since you added the Monitoring system type we automatically assigned the Prometheus Exporters formula to the system. Please apply the <a href="/rhn/manager/systems/details/highstate?sid={0}">Highstate</a> in order to install and enable the Prometheus metrics exporters.<br/><strong>Note:</strong> Please make sure to open the <a href="/docs/{1}/installation-and-upgrade/ports.html#_external_client_ports" target="_blank">required network ports</a> for all installed exporters. /rhn/systems/details/Overview.do @@ -10439,13 +10413,6 @@ Alternatively, you will want to download <strong>Incremental Channel Conte /rhn/systems/details/Overview.do - - - <strong>Ansible Control Node</strong> type has been applied.<br/><strong>Note:</strong> This action will <em>not</em> result in state application. To apply the state, either use the <a href="/rhn/manager/systems/details/highstate?sid={0}">states page</a> or run <code class="text-info">state.highstate</code> from the command line. - - /rhn/systems/details/Overview.do - - Invalid path (must be a valid absolute path) @@ -10603,28 +10570,28 @@ Alternatively, you will want to download <strong>Incremental Channel Conte - Pay-as-you-go {0} created successfully - + PAYG {0} created successfully + - Pay-as-you-go host already exists - + PAYG host already exists + - Pay-as-you-go {0} deleted successfully - + PAYG {0} deleted successfully + Error when updating authentication data from: <a href="/rhn/manager/admin/setup/payg/{0}">{1}</a> - Pay-as-you-go authentication update - + PAYG authentication update + - Pay-as-you-go update RMT hosts - + PAYG update RMT hosts + Product data needs refresh. @@ -10880,6 +10847,45 @@ Alternatively, you will want to download <strong>Incremental Channel Conte Sync Salt states to the target system - + + Cloning of channels under different product channels on PAYG instances is forbidden + + /channels/manage/Edit + + + + + PAYG ALERT: Cross product migration attempt detected. Please note, migration from openSUSE to SLES or similar is not permitted under your current PAYG plan. Operation has been aborted. + + + + Syncing channels forbidden + + + + Synchronization of repositories is forbidden as @@PRODUCT_NAME@@ PAYG is unable to send accounting data to the cloud provider. +For a detailed analysis, please refer to the log files. + + + + +The action you attempted could not be executed because the @@PRODUCT_NAME@@ PAYG system is unable to send accounting data to the cloud provider. +For a detailed analysis, please refer to the log files. + + + + + Systems with conflicting minion ID and machine ID were found ({0}, {1}). Onboarding aborted. Please remove conflicting systems first ({2}, {3}) + + + + Registration of '{0}' on SUSE Manager Server rejected. \nTo manage Datacenter clients you have to configure SCC Credentials at Admin => Setup Wizard => Organization Credentials. + + + + Registration of '{0}' on SUSE Manager Server rejected. \nTo manage BYOS (Bring-your-own-Subscription) clients you have to configure SCC Credentials at Admin => Setup Wizard => Organization Credentials. \n\nIf the instance being onboarded is PAYG, ensure the `python-instance-billing-flavor-check` package is installed and try again. + + + diff --git a/java/code/src/com/redhat/rhn/frontend/strings/java/StringResource_si.xml b/java/code/src/com/redhat/rhn/frontend/strings/java/StringResource_si.xml index 8d402d3b81c6..9365e9e665ca 100644 --- a/java/code/src/com/redhat/rhn/frontend/strings/java/StringResource_si.xml +++ b/java/code/src/com/redhat/rhn/frontend/strings/java/StringResource_si.xml @@ -10400,13 +10400,6 @@ Alternatively, you will want to download <strong>Incremental Channel Conte /rhn/systems/details/Overview.do - - <strong>Container Build Host</strong> type has been applied.<br/><strong>Note:</strong> This action will <em>not</em> result in state application. To apply the state, either use the <a href="/rhn/manager/systems/details/highstate?sid={0}">states page</a> or run <code class="text-info">state.highstate</code> from the command line. - - - /rhn/systems/details/Overview.do - - <strong>OS Image Build Host</strong> type has been applied.<br/><strong>Note:</strong> This action will <em>not</em> result in state application. To apply the state, either use the <a href="/rhn/manager/systems/details/highstate?sid={0}">states page</a> or run <code class="text-info">state.highstate</code> from the command line. @@ -10414,13 +10407,6 @@ Alternatively, you will want to download <strong>Incremental Channel Conte /rhn/systems/details/Overview.do - - <strong>OS Image Build Host</strong> type has been applied.<br/><strong>Note:</strong> This action will <em>not</em> result in state application. To apply the state, either use the <a href="/rhn/manager/systems/details/highstate?sid={0}">states page</a> or run <code class="text-info">state.highstate</code> from the command line. - - - /rhn/systems/details/Overview.do - - Since you added a Virtualization system type to the system we also performed some extra steps to ensure your system will be able to manage virtual guests better. See <a href="/docs/administration/virtualization.html">here</a> for more info. @@ -10428,22 +10414,8 @@ Alternatively, you will want to download <strong>Incremental Channel Conte /rhn/systems/details/Overview.do - - Since you added a Virtualization system type to the system we also performed some extra steps to ensure your system will be able to manage virtual guests better. - - - /rhn/systems/details/Overview.do - - - <strong>Monitoring</strong> type has been applied.<br/><strong>Note:</strong> Since you added the Monitoring system type we automatically assigned the Prometheus Exporters formula to the system. Please apply the <a href="/rhn/manager/systems/details/highstate?sid={0}">Highstate</a> in order to install and enable the Prometheus metrics exporters. - - - /rhn/systems/details/Overview.do - - - - <strong>Monitoring</strong> type has been applied.<br/><strong>Note:</strong> Since you added the Monitoring system type we automatically assigned the Prometheus Exporters formula to the system. Please apply the <a href="/rhn/manager/systems/details/highstate?sid={0}">Highstate</a> in order to install and enable the Prometheus metrics exporters. + <strong>Monitoring</strong> type has been applied.<br/><strong>Note:</strong> Since you added the Monitoring system type we automatically assigned the Prometheus Exporters formula to the system. Please apply the <a href="/rhn/manager/systems/details/highstate?sid={0}">Highstate</a> in order to install and enable the Prometheus metrics exporters.<br/><strong>Note:</strong> Please make sure to open the <a href="/docs/{1}/installation-and-upgrade/ports.html#_external_client_ports" target="_blank">required network ports</a> for all installed exporters. /rhn/systems/details/Overview.do @@ -10765,13 +10737,6 @@ Alternatively, you will want to download <strong>Incremental Channel Conte /rhn/systems/details/Overview.do - - - <strong>Ansible Control Node</strong> type has been applied.<br/><strong>Note:</strong> This action will <em>not</em> result in state application. To apply the state, either use the <a href="/rhn/manager/systems/details/highstate?sid={0}">states page</a> or run <code class="text-info">state.highstate</code> from the command line. - - /rhn/systems/details/Overview.do - - Invalid path (must be a valid absolute path) @@ -10929,28 +10894,28 @@ Alternatively, you will want to download <strong>Incremental Channel Conte - Pay-as-you-go {0} created successfully - + PAYG {0} created successfully + - Pay-as-you-go host already exists - + PAYG host already exists + - Pay-as-you-go {0} deleted successfully - + PAYG {0} deleted successfully + Error when updating authentication data from: <a href="/rhn/manager/admin/setup/payg/{0}">{1}</a> - Pay-as-you-go authentication update - + PAYG authentication update + - Pay-as-you-go update RMT hosts - + PAYG update RMT hosts + Product data needs refresh. @@ -11206,6 +11171,45 @@ Alternatively, you will want to download <strong>Incremental Channel Conte Sync Salt states to the target system - + + Cloning of channels under different product channels on PAYG instances is forbidden + + /channels/manage/Edit + + + + + PAYG ALERT: Cross product migration attempt detected. Please note, migration from openSUSE to SLES or similar is not permitted under your current PAYG plan. Operation has been aborted. + + + + Syncing channels forbidden + + + + Synchronization of repositories is forbidden as @@PRODUCT_NAME@@ PAYG is unable to send accounting data to the cloud provider. +For a detailed analysis, please refer to the log files. + + + + +The action you attempted could not be executed because the @@PRODUCT_NAME@@ PAYG system is unable to send accounting data to the cloud provider. +For a detailed analysis, please refer to the log files. + + + + + Systems with conflicting minion ID and machine ID were found ({0}, {1}). Onboarding aborted. Please remove conflicting systems first ({2}, {3}) + + + + Registration of '{0}' on SUSE Manager Server rejected. \nTo manage Datacenter clients you have to configure SCC Credentials at Admin => Setup Wizard => Organization Credentials. + + + + Registration of '{0}' on SUSE Manager Server rejected. \nTo manage BYOS (Bring-your-own-Subscription) clients you have to configure SCC Credentials at Admin => Setup Wizard => Organization Credentials. \n\nIf the instance being onboarded is PAYG, ensure the `python-instance-billing-flavor-check` package is installed and try again. + + + diff --git a/java/code/src/com/redhat/rhn/frontend/strings/java/StringResource_sk.xml b/java/code/src/com/redhat/rhn/frontend/strings/java/StringResource_sk.xml index 6b1162bcb8fb..fe4fca9583e5 100644 --- a/java/code/src/com/redhat/rhn/frontend/strings/java/StringResource_sk.xml +++ b/java/code/src/com/redhat/rhn/frontend/strings/java/StringResource_sk.xml @@ -10408,13 +10408,6 @@ Prípadne si budete chcieť stiahnuť <strong> Inkrementálne obsahové IS /rhn/systems/details/Overview.do - - <strong>Container Build Host</strong> type has been applied.<br/><strong>Note:</strong> This action will <em>not</em> result in state application. To apply the state, either use the <a href="/rhn/manager/systems/details/highstate?sid={0}">states page</a> or run <code class="text-info">state.highstate</code> from the command line. - Bol použitý typ <strong>Hostiteľ zostavený kontajnermi</strong>.<br/><strong>Poznámka:</strong> Táto akcia <em>nebude</em> mať vplyv na aplikáciu stavu. Ak chcete použiť stav, použite <a href="/rhn/manager/systems/details/highstate?sid={0}">stránku stavov</a>, alebo spustite <code class="text-info">state.highstate</code> z príkazového riadku. - - /rhn/systems/details/Overview.do - - <strong>OS Image Build Host</strong> type has been applied.<br/><strong>Note:</strong> This action will <em>not</em> result in state application. To apply the state, either use the <a href="/rhn/manager/systems/details/highstate?sid={0}">states page</a> or run <code class="text-info">state.highstate</code> from the command line. Bol použitý typ <strong>Hostiteľ zostavenia ISO obrazu</strong>.<br/><strong>Poznámka:</strong> Táto akcia <em>nebude</em> mať vplyv na aplikáciu stavu. Ak chcete použiť stav, použite <a href="/rhn/manager/systems/details/highstate?sid={0}">sstránku stavov</a>, alebo spustite <code class="text-info">state.highstate</code> z príkazového riadku. @@ -10422,13 +10415,6 @@ Prípadne si budete chcieť stiahnuť <strong> Inkrementálne obsahové IS /rhn/systems/details/Overview.do - - <strong>OS Image Build Host</strong> type has been applied.<br/><strong>Note:</strong> This action will <em>not</em> result in state application. To apply the state, either use the <a href="/rhn/manager/systems/details/highstate?sid={0}">states page</a> or run <code class="text-info">state.highstate</code> from the command line. - Bol použitý typ <strong>Hostiteľ zostavenia ISO obrazu</strong>.<br/><strong>Poznámka:</strong> Táto akcia <em>nebude</em> mať vplyv na aplikáciu stavu. Ak chcete použiť stav, použite <a href="/rhn/manager/systems/details/highstate?sid={0}">sstránku stavov</a>, alebo spustite <code class="text-info">state.highstate</code> z príkazového riadku. - - /rhn/systems/details/Overview.do - - Since you added a Virtualization system type to the system we also performed some extra steps to ensure your system will be able to manage virtual guests better. See <a href="/docs/administration/virtualization.html">here</a> for more info. Keďže ste do systému pridali typ virtualizačného systému, vykonali sme tiež niekoľko ďalších krokov, aby sme zabezpečili, že váš systém bude schopný lepšie spravovať virtuálnych hostí. Viac informácií nájdete v <a href="/docs/administration/virtualization.html">here</a>. @@ -10436,23 +10422,9 @@ Prípadne si budete chcieť stiahnuť <strong> Inkrementálne obsahové IS /rhn/systems/details/Overview.do - - Since you added a Virtualization system type to the system we also performed some extra steps to ensure your system will be able to manage virtual guests better. - Keďže ste do systému pridali typ virtualizačného systému, vykonali sme tiež niekoľko ďalších krokov, aby sme zabezpečili, že váš systém bude schopný lepšie spravovať virtuálnych hostí. - - /rhn/systems/details/Overview.do - - - <strong>Monitoring</strong> type has been applied.<br/><strong>Note:</strong> Since you added the Monitoring system type we automatically assigned the Prometheus Exporters formula to the system. Please apply the <a href="/rhn/manager/systems/details/highstate?sid={0}">Highstate</a> in order to install and enable the Prometheus metrics exporters. - Bol použitý typ <strong>Monitorovania</strong>.<br/><strong>Poznámka:</strong> Keďže ste pridali typ systému monitorovania, automaticky sme systému priradili vzorec exportérov Prometheus. Prosím, použite <a href="/rhn/manager/systems/details/highstate?sid={0}">Highstate</a>, aby ste mohli nainštalovať a povoliť exportéry metrík Prometheus. - - /rhn/systems/details/Overview.do - - - - <strong>Monitoring</strong> type has been applied.<br/><strong>Note:</strong> Since you added the Monitoring system type we automatically assigned the Prometheus Exporters formula to the system. Please apply the <a href="/rhn/manager/systems/details/highstate?sid={0}">Highstate</a> in order to install and enable the Prometheus metrics exporters. - Bol použitý typ <strong>Monitorovania</strong>.<br/><strong>Poznámka:</strong> Keďže ste pridali typ systému monitorovania, automaticky sme systému priradili vzorec exportérov Prometheus. Prosím, použite <a href="/rhn/manager/systems/details/highstate?sid={0}">Highstate</a>, aby ste mohli nainštalovať a povoliť exportéry metrík Prometheus. + <strong>Monitoring</strong> type has been applied.<br/><strong>Note:</strong> Since you added the Monitoring system type we automatically assigned the Prometheus Exporters formula to the system. Please apply the <a href="/rhn/manager/systems/details/highstate?sid={0}">Highstate</a> in order to install and enable the Prometheus metrics exporters.<br/><strong>Note:</strong> Please make sure to open the <a href="/docs/{1}/installation-and-upgrade/ports.html#_external_client_ports" target="_blank">required network ports</a> for all installed exporters. + Bol použitý typ <strong>Monitorovania</strong>.<br/><strong>Poznámka:</strong> Keďže ste pridali typ systému monitorovania, automaticky sme systému priradili vzorec exportérov Prometheus. Prosím, použite <a href="/rhn/manager/systems/details/highstate?sid={0}">Highstate</a>, aby ste mohli nainštalovať a povoliť exportéry metrík Prometheus. <br/><strong>Poznámka:</strong> Prosím, uistite sa, že ste otvorili <a href="/docs/{1}/installation-and-upgrade/ports.html#_external_client_ports">požadované sieťové porty</a> pre všetky nainštalované exportéry. /rhn/systems/details/Overview.do @@ -10860,13 +10832,6 @@ Prípadne si budete chcieť stiahnuť <strong> Inkrementálne obsahové IS Bol použitý typ <strong>Riadiaci uzol Ansible</strong>.<br/><strong>Poznámka:</strong> Táto akcia <em>nebude</em> mať vplyv na aplikáciu stavu. Ak chcete použiť stav, použite <a href="/rhn/manager/systems/details/highstate?sid={0}">stránku stavov</a>, alebo spustite <code class="text-info">state.highstate</code> z príkazového riadku. - - <strong>Ansible Control Node</strong> type has been applied.<br/><strong>Note:</strong> This action will <em>not</em> result in state application. To apply the state, either use the <a href="/rhn/manager/systems/details/highstate?sid={0}">states page</a> or run <code class="text-info">state.highstate</code> from the command line. - - /rhn/systems/details/Overview.do - - Bol použitý typ <strong>Riadiaci uzol Ansible</strong>.<br/><strong>Poznámka:</strong> Táto akcia <em>nebude</em> mať vplyv na aplikáciu stavu. Ak chcete použiť stav, použite <a href="/rhn/manager/systems/details/highstate?sid={0}">stránku stavov</a>, alebo spustite <code class="text-info">state.highstate</code> z príkazového riadku. - Invalid path (must be a valid absolute path) @@ -11023,28 +10988,28 @@ Prípadne si budete chcieť stiahnuť <strong> Inkrementálne obsahové IS Heslo súkromného kľúča SSH bašty nesmie presiahnuť 32 znakov. - Pay-as-you-go {0} created successfully - Úspešne vytvorená priebežná platba {0} + PAYG {0} created successfully + Úspešne vytvorené PAYG {0} - Pay-as-you-go host already exists - Priebežne platený hostiteľ už existuje + PAYG host already exists + Hostiteľ PAYG už existuje - Pay-as-you-go {0} deleted successfully - Úspešne vymazaná priebežná platba {0} + PAYG {0} deleted successfully + Úspešne vymazané PAYG {0} Error when updating authentication data from: <a href="/rhn/manager/admin/setup/payg/{0}">{1}</a> Chyba pri aktualizácii overovacích údajov z: <a href="/rhn/manager/admin/setup/payg/{0}">{1}</a> - Pay-as-you-go authentication update - Aktualizácia overenia priebežnej platby + PAYG authentication update + Aktualizácia overenia PAYG - Pay-as-you-go update RMT hosts - RMT hostitelia aktualizácií priebežných platieb + PAYG update RMT hosts + RMT hostitelia aktualizácií PAYG Product data needs refresh. @@ -11303,6 +11268,49 @@ Prípadne si budete chcieť stiahnuť <strong> Inkrementálne obsahové IS Sync Salt states to the target system Synchronizácia stavov Salt s cieľovým systémom + + Cloning of channels under different product channels on PAYG instances is forbidden + + /channels/manage/Edit + + Klonovanie kanálov v rámci rôznych kanálov produktov v inštanciách PAYG je zakázané + + + PAYG ALERT: Cross product migration attempt detected. Please note, migration from openSUSE to SLES or similar is not permitted under your current PAYG plan. Operation has been aborted. + VÝSTRAHA PAYG: Zistený pokus o migráciu medzi produktmi. Vezmite, prosím, na vedomie, že migrácia z openSUSE na SLES alebo podobný systém nie je v rámci vášho súčasného plánu PAYG povolená. Operácia bola prerušená. + + + Syncing channels forbidden + Synchronizácia kanálov je zakázaná + + + Synchronization of repositories is forbidden as @@PRODUCT_NAME@@ PAYG is unable to send accounting data to the cloud provider. +For a detailed analysis, please refer to the log files. + Synchronizácia repozitárov je zakázaná, pretože PAYG @@PRODUCT_NAME@@ nedokáže posielať účtovné údaje poskytovateľovi cloudu. +Ak chcete získať podrobnú analýzu, pozrite si súbory záznamov. + + + +The action you attempted could not be executed because the @@PRODUCT_NAME@@ PAYG system is unable to send accounting data to the cloud provider. +For a detailed analysis, please refer to the log files. + + +Akciu, o ktorú ste sa pokúsili, nebolo možné vykonať, pretože systém PAYG @@PRODUCT_NAME@@ nedokáže posielať účtovné údaje poskytovateľovi cloudu. +Ak chcete získať podrobnú analýzu, pozrite si súbory záznamov. + + + + Systems with conflicting minion ID and machine ID were found ({0}, {1}). Onboarding aborted. Please remove conflicting systems first ({2}, {3}) + Boli nájdené systémy s konfliktným ID minion a ID stroja ({0}, {1}). Začlenenie sa bolo prerušené. Prosím, najskôr odstráňte konfliktné systémy ({2}, {3}) + + + Registration of '{0}' on SUSE Manager Server rejected. \nTo manage Datacenter clients you have to configure SCC Credentials at Admin => Setup Wizard => Organization Credentials. + Registrácia '{0}' na serveri SUSE Manager zamietnutá. \nAk chcete spravovať klientov dátového centra, musíte nakonfigurovať prihlasovacie údaje SCC v Admin => Sprievodca nastavením => prihlasovacie údaje organizácie. + + + Registration of '{0}' on SUSE Manager Server rejected. \nTo manage BYOS (Bring-your-own-Subscription) clients you have to configure SCC Credentials at Admin => Setup Wizard => Organization Credentials. \n\nIf the instance being onboarded is PAYG, ensure the `python-instance-billing-flavor-check` package is installed and try again. + Registrácia '{0}' na serveri SUSE Manager zamietnutá. \nAk chcete spravovať klientov BYOS (Bring-your-own-Subscription), musíte nakonfigurovať prihlasovacie údaje SCC v Admin => Sprievodca nastavením => prihlasovacie údaje organizácie. \n\nAk je začleňovaná inštancia PAYG, uistite sa, že je nainštalovaný balík `python-instance-billing-flavor-check`, a skúste to znova. + diff --git a/java/code/src/com/redhat/rhn/frontend/strings/java/StringResource_ta.xml b/java/code/src/com/redhat/rhn/frontend/strings/java/StringResource_ta.xml index d62c821e348a..7c8fe997ebf3 100644 --- a/java/code/src/com/redhat/rhn/frontend/strings/java/StringResource_ta.xml +++ b/java/code/src/com/redhat/rhn/frontend/strings/java/StringResource_ta.xml @@ -9709,24 +9709,12 @@ Alternatively, you will want to download <strong>Incremental Channel Conte /rhn/systems/details/Overview.do - - <strong>Container Build Host</strong> type has been applied.<br/><strong>Note:</strong> This action will <em>not</em> result in state application. To apply the state, either use the <a href="/rhn/manager/systems/details/highstate?sid={0}">states page</a> or run <code class="text-info">state.highstate</code> from the command line. - - /rhn/systems/details/Overview.do - - <strong>OS Image Build Host</strong> type has been applied.<br/><strong>Note:</strong> This action will <em>not</em> result in state application. To apply the state, either use the <a href="/rhn/manager/systems/details/highstate?sid={0}">states page</a> or run <code class="text-info">state.highstate</code> from the command line. /rhn/systems/details/Overview.do - - <strong>OS Image Build Host</strong> type has been applied.<br/><strong>Note:</strong> This action will <em>not</em> result in state application. To apply the state, either use the <a href="/rhn/manager/systems/details/highstate?sid={0}">states page</a> or run <code class="text-info">state.highstate</code> from the command line. - - /rhn/systems/details/Overview.do - - Since you added a Virtualization system type to the system we also performed some extra steps to ensure your system will be able to manage virtual guests better. See <a href="/docs/administration/virtualization.html">here</a> for more info. @@ -9734,21 +9722,8 @@ Alternatively, you will want to download <strong>Incremental Channel Conte நீங்கள் ஒரு மெய்நிகராக்க உரிமத்தை கணினிக்கு சேர்த்து, நாம் மெய்நிகர் விருந்தினர்களை அது மேலாண்மை செய்கிறதா என்பதை உறுதிப்படுத்த வேண்டும். மேலும் தகவலுக்கு <a href="{0}">இங்கு</a> பார்க்கவும். - - Since you added a Virtualization system type to the system we also performed some extra steps to ensure your system will be able to manage virtual guests better. - - /rhn/systems/details/Overview.do - - - <strong>Monitoring</strong> type has been applied.<br/><strong>Note:</strong> Since you added the Monitoring system type we automatically assigned the Prometheus Exporters formula to the system. Please apply the <a href="/rhn/manager/systems/details/highstate?sid={0}">Highstate</a> in order to install and enable the Prometheus metrics exporters. - - /rhn/systems/details/Overview.do - - - - - <strong>Monitoring</strong> type has been applied.<br/><strong>Note:</strong> Since you added the Monitoring system type we automatically assigned the Prometheus Exporters formula to the system. Please apply the <a href="/rhn/manager/systems/details/highstate?sid={0}">Highstate</a> in order to install and enable the Prometheus metrics exporters. + <strong>Monitoring</strong> type has been applied.<br/><strong>Note:</strong> Since you added the Monitoring system type we automatically assigned the Prometheus Exporters formula to the system. Please apply the <a href="/rhn/manager/systems/details/highstate?sid={0}">Highstate</a> in order to install and enable the Prometheus metrics exporters.<br/><strong>Note:</strong> Please make sure to open the <a href="/docs/{1}/installation-and-upgrade/ports.html#_external_client_ports" target="_blank">required network ports</a> for all installed exporters. /rhn/systems/details/Overview.do @@ -10227,13 +10202,6 @@ Alternatively, you will want to download <strong>Incremental Channel Conte /rhn/systems/details/Overview.do - - - <strong>Ansible Control Node</strong> type has been applied.<br/><strong>Note:</strong> This action will <em>not</em> result in state application. To apply the state, either use the <a href="/rhn/manager/systems/details/highstate?sid={0}">states page</a> or run <code class="text-info">state.highstate</code> from the command line. - - /rhn/systems/details/Overview.do - - Invalid path (must be a valid absolute path) @@ -10391,28 +10359,28 @@ Alternatively, you will want to download <strong>Incremental Channel Conte - Pay-as-you-go {0} created successfully - + PAYG {0} created successfully + - Pay-as-you-go host already exists - + PAYG host already exists + - Pay-as-you-go {0} deleted successfully - + PAYG {0} deleted successfully + Error when updating authentication data from: <a href="/rhn/manager/admin/setup/payg/{0}">{1}</a> - Pay-as-you-go authentication update - + PAYG authentication update + - Pay-as-you-go update RMT hosts - + PAYG update RMT hosts + Product data needs refresh. @@ -10668,6 +10636,45 @@ Alternatively, you will want to download <strong>Incremental Channel Conte Sync Salt states to the target system - + + Cloning of channels under different product channels on PAYG instances is forbidden + + /channels/manage/Edit + + + + + PAYG ALERT: Cross product migration attempt detected. Please note, migration from openSUSE to SLES or similar is not permitted under your current PAYG plan. Operation has been aborted. + + + + Syncing channels forbidden + + + + Synchronization of repositories is forbidden as @@PRODUCT_NAME@@ PAYG is unable to send accounting data to the cloud provider. +For a detailed analysis, please refer to the log files. + + + + +The action you attempted could not be executed because the @@PRODUCT_NAME@@ PAYG system is unable to send accounting data to the cloud provider. +For a detailed analysis, please refer to the log files. + + + + + Systems with conflicting minion ID and machine ID were found ({0}, {1}). Onboarding aborted. Please remove conflicting systems first ({2}, {3}) + + + + Registration of '{0}' on SUSE Manager Server rejected. \nTo manage Datacenter clients you have to configure SCC Credentials at Admin => Setup Wizard => Organization Credentials. + + + + Registration of '{0}' on SUSE Manager Server rejected. \nTo manage BYOS (Bring-your-own-Subscription) clients you have to configure SCC Credentials at Admin => Setup Wizard => Organization Credentials. \n\nIf the instance being onboarded is PAYG, ensure the `python-instance-billing-flavor-check` package is installed and try again. + + + diff --git a/java/code/src/com/redhat/rhn/frontend/strings/java/StringResource_uk.xml b/java/code/src/com/redhat/rhn/frontend/strings/java/StringResource_uk.xml index f357e1a5abce..4bebdcfc2b24 100644 --- a/java/code/src/com/redhat/rhn/frontend/strings/java/StringResource_uk.xml +++ b/java/code/src/com/redhat/rhn/frontend/strings/java/StringResource_uk.xml @@ -9278,45 +9278,20 @@ Alternatively, you will want to download <strong>Incremental Channel Conte /rhn/systems/details/Overview.do - - <strong>Container Build Host</strong> type has been applied.<br/><strong>Note:</strong> This action will <em>not</em> result in state application. To apply the state, either use the <a href="/rhn/manager/systems/details/highstate?sid={0}">states page</a> or run <code class="text-info">state.highstate</code> from the command line. - - /rhn/systems/details/Overview.do - - <strong>OS Image Build Host</strong> type has been applied.<br/><strong>Note:</strong> This action will <em>not</em> result in state application. To apply the state, either use the <a href="/rhn/manager/systems/details/highstate?sid={0}">states page</a> or run <code class="text-info">state.highstate</code> from the command line. /rhn/systems/details/Overview.do - - <strong>OS Image Build Host</strong> type has been applied.<br/><strong>Note:</strong> This action will <em>not</em> result in state application. To apply the state, either use the <a href="/rhn/manager/systems/details/highstate?sid={0}">states page</a> or run <code class="text-info">state.highstate</code> from the command line. - - /rhn/systems/details/Overview.do - - Since you added a Virtualization system type to the system we also performed some extra steps to ensure your system will be able to manage virtual guests better. See <a href="/docs/administration/virtualization.html">here</a> for more info. /rhn/systems/details/Overview.do - - Since you added a Virtualization system type to the system we also performed some extra steps to ensure your system will be able to manage virtual guests better. - - /rhn/systems/details/Overview.do - - - <strong>Monitoring</strong> type has been applied.<br/><strong>Note:</strong> Since you added the Monitoring system type we automatically assigned the Prometheus Exporters formula to the system. Please apply the <a href="/rhn/manager/systems/details/highstate?sid={0}">Highstate</a> in order to install and enable the Prometheus metrics exporters. - - /rhn/systems/details/Overview.do - - - - - <strong>Monitoring</strong> type has been applied.<br/><strong>Note:</strong> Since you added the Monitoring system type we automatically assigned the Prometheus Exporters formula to the system. Please apply the <a href="/rhn/manager/systems/details/highstate?sid={0}">Highstate</a> in order to install and enable the Prometheus metrics exporters. + <strong>Monitoring</strong> type has been applied.<br/><strong>Note:</strong> Since you added the Monitoring system type we automatically assigned the Prometheus Exporters formula to the system. Please apply the <a href="/rhn/manager/systems/details/highstate?sid={0}">Highstate</a> in order to install and enable the Prometheus metrics exporters.<br/><strong>Note:</strong> Please make sure to open the <a href="/docs/{1}/installation-and-upgrade/ports.html#_external_client_ports" target="_blank">required network ports</a> for all installed exporters. /rhn/systems/details/Overview.do @@ -9796,13 +9771,6 @@ Alternatively, you will want to download <strong>Incremental Channel Conte - - <strong>Ansible Control Node</strong> type has been applied.<br/><strong>Note:</strong> This action will <em>not</em> result in state application. To apply the state, either use the <a href="/rhn/manager/systems/details/highstate?sid={0}">states page</a> or run <code class="text-info">state.highstate</code> from the command line. - - /rhn/systems/details/Overview.do - - - Invalid path (must be a valid absolute path) @@ -9959,28 +9927,28 @@ Alternatively, you will want to download <strong>Incremental Channel Conte - Pay-as-you-go {0} created successfully - + PAYG {0} created successfully + - Pay-as-you-go host already exists - + PAYG host already exists + - Pay-as-you-go {0} deleted successfully - + PAYG {0} deleted successfully + Error when updating authentication data from: <a href="/rhn/manager/admin/setup/payg/{0}">{1}</a> - Pay-as-you-go authentication update - + PAYG authentication update + - Pay-as-you-go update RMT hosts - + PAYG update RMT hosts + Product data needs refresh. @@ -10236,6 +10204,45 @@ Alternatively, you will want to download <strong>Incremental Channel Conte Sync Salt states to the target system - + + Cloning of channels under different product channels on PAYG instances is forbidden + + /channels/manage/Edit + + + + + PAYG ALERT: Cross product migration attempt detected. Please note, migration from openSUSE to SLES or similar is not permitted under your current PAYG plan. Operation has been aborted. + + + + Syncing channels forbidden + + + + Synchronization of repositories is forbidden as @@PRODUCT_NAME@@ PAYG is unable to send accounting data to the cloud provider. +For a detailed analysis, please refer to the log files. + + + + +The action you attempted could not be executed because the @@PRODUCT_NAME@@ PAYG system is unable to send accounting data to the cloud provider. +For a detailed analysis, please refer to the log files. + + + + + Systems with conflicting minion ID and machine ID were found ({0}, {1}). Onboarding aborted. Please remove conflicting systems first ({2}, {3}) + + + + Registration of '{0}' on SUSE Manager Server rejected. \nTo manage Datacenter clients you have to configure SCC Credentials at Admin => Setup Wizard => Organization Credentials. + + + + Registration of '{0}' on SUSE Manager Server rejected. \nTo manage BYOS (Bring-your-own-Subscription) clients you have to configure SCC Credentials at Admin => Setup Wizard => Organization Credentials. \n\nIf the instance being onboarded is PAYG, ensure the `python-instance-billing-flavor-check` package is installed and try again. + + + diff --git a/java/code/src/com/redhat/rhn/frontend/strings/java/StringResource_zh-HK.xml b/java/code/src/com/redhat/rhn/frontend/strings/java/StringResource_zh-HK.xml index 13c2334a4761..fa755582ed2c 100644 --- a/java/code/src/com/redhat/rhn/frontend/strings/java/StringResource_zh-HK.xml +++ b/java/code/src/com/redhat/rhn/frontend/strings/java/StringResource_zh-HK.xml @@ -10400,13 +10400,6 @@ Alternatively, you will want to download <strong>Incremental Channel Conte /rhn/systems/details/Overview.do - - <strong>Container Build Host</strong> type has been applied.<br/><strong>Note:</strong> This action will <em>not</em> result in state application. To apply the state, either use the <a href="/rhn/manager/systems/details/highstate?sid={0}">states page</a> or run <code class="text-info">state.highstate</code> from the command line. - - - /rhn/systems/details/Overview.do - - <strong>OS Image Build Host</strong> type has been applied.<br/><strong>Note:</strong> This action will <em>not</em> result in state application. To apply the state, either use the <a href="/rhn/manager/systems/details/highstate?sid={0}">states page</a> or run <code class="text-info">state.highstate</code> from the command line. @@ -10414,13 +10407,6 @@ Alternatively, you will want to download <strong>Incremental Channel Conte /rhn/systems/details/Overview.do - - <strong>OS Image Build Host</strong> type has been applied.<br/><strong>Note:</strong> This action will <em>not</em> result in state application. To apply the state, either use the <a href="/rhn/manager/systems/details/highstate?sid={0}">states page</a> or run <code class="text-info">state.highstate</code> from the command line. - - - /rhn/systems/details/Overview.do - - Since you added a Virtualization system type to the system we also performed some extra steps to ensure your system will be able to manage virtual guests better. See <a href="/docs/administration/virtualization.html">here</a> for more info. @@ -10428,22 +10414,8 @@ Alternatively, you will want to download <strong>Incremental Channel Conte /rhn/systems/details/Overview.do - - Since you added a Virtualization system type to the system we also performed some extra steps to ensure your system will be able to manage virtual guests better. - - - /rhn/systems/details/Overview.do - - - <strong>Monitoring</strong> type has been applied.<br/><strong>Note:</strong> Since you added the Monitoring system type we automatically assigned the Prometheus Exporters formula to the system. Please apply the <a href="/rhn/manager/systems/details/highstate?sid={0}">Highstate</a> in order to install and enable the Prometheus metrics exporters. - - - /rhn/systems/details/Overview.do - - - - <strong>Monitoring</strong> type has been applied.<br/><strong>Note:</strong> Since you added the Monitoring system type we automatically assigned the Prometheus Exporters formula to the system. Please apply the <a href="/rhn/manager/systems/details/highstate?sid={0}">Highstate</a> in order to install and enable the Prometheus metrics exporters. + <strong>Monitoring</strong> type has been applied.<br/><strong>Note:</strong> Since you added the Monitoring system type we automatically assigned the Prometheus Exporters formula to the system. Please apply the <a href="/rhn/manager/systems/details/highstate?sid={0}">Highstate</a> in order to install and enable the Prometheus metrics exporters.<br/><strong>Note:</strong> Please make sure to open the <a href="/docs/{1}/installation-and-upgrade/ports.html#_external_client_ports" target="_blank">required network ports</a> for all installed exporters. /rhn/systems/details/Overview.do @@ -10765,13 +10737,6 @@ Alternatively, you will want to download <strong>Incremental Channel Conte /rhn/systems/details/Overview.do - - - <strong>Ansible Control Node</strong> type has been applied.<br/><strong>Note:</strong> This action will <em>not</em> result in state application. To apply the state, either use the <a href="/rhn/manager/systems/details/highstate?sid={0}">states page</a> or run <code class="text-info">state.highstate</code> from the command line. - - /rhn/systems/details/Overview.do - - Invalid path (must be a valid absolute path) @@ -10929,28 +10894,28 @@ Alternatively, you will want to download <strong>Incremental Channel Conte - Pay-as-you-go {0} created successfully - + PAYG {0} created successfully + - Pay-as-you-go host already exists - + PAYG host already exists + - Pay-as-you-go {0} deleted successfully - + PAYG {0} deleted successfully + Error when updating authentication data from: <a href="/rhn/manager/admin/setup/payg/{0}">{1}</a> - Pay-as-you-go authentication update - + PAYG authentication update + - Pay-as-you-go update RMT hosts - + PAYG update RMT hosts + Product data needs refresh. @@ -11206,6 +11171,45 @@ Alternatively, you will want to download <strong>Incremental Channel Conte Sync Salt states to the target system - + + Cloning of channels under different product channels on PAYG instances is forbidden + + /channels/manage/Edit + + + + + PAYG ALERT: Cross product migration attempt detected. Please note, migration from openSUSE to SLES or similar is not permitted under your current PAYG plan. Operation has been aborted. + + + + Syncing channels forbidden + + + + Synchronization of repositories is forbidden as @@PRODUCT_NAME@@ PAYG is unable to send accounting data to the cloud provider. +For a detailed analysis, please refer to the log files. + + + + +The action you attempted could not be executed because the @@PRODUCT_NAME@@ PAYG system is unable to send accounting data to the cloud provider. +For a detailed analysis, please refer to the log files. + + + + + Systems with conflicting minion ID and machine ID were found ({0}, {1}). Onboarding aborted. Please remove conflicting systems first ({2}, {3}) + + + + Registration of '{0}' on SUSE Manager Server rejected. \nTo manage Datacenter clients you have to configure SCC Credentials at Admin => Setup Wizard => Organization Credentials. + + + + Registration of '{0}' on SUSE Manager Server rejected. \nTo manage BYOS (Bring-your-own-Subscription) clients you have to configure SCC Credentials at Admin => Setup Wizard => Organization Credentials. \n\nIf the instance being onboarded is PAYG, ensure the `python-instance-billing-flavor-check` package is installed and try again. + + + diff --git a/java/code/src/com/redhat/rhn/frontend/strings/java/StringResource_zh_CN.xml b/java/code/src/com/redhat/rhn/frontend/strings/java/StringResource_zh_CN.xml index 4820d0386342..39bdf1cb9c8b 100644 --- a/java/code/src/com/redhat/rhn/frontend/strings/java/StringResource_zh_CN.xml +++ b/java/code/src/com/redhat/rhn/frontend/strings/java/StringResource_zh_CN.xml @@ -1024,7 +1024,7 @@ Navigation Menu - 储存的配置文件 + 存储的配置文件 Subscription @@ -2403,7 +2403,7 @@ and try again. /rhn/kickstart/KickstartOptionsEdit - <strong>注意:</strong>默认的 @@PRODUCT_NAME@@ kickstart URL 使用该文件路径储存,这样 @@PRODUCT_NAME@@ 便知道何时动态调整 kickstart 文件所呈现的 URL 中的主机名(代理服务器等)。您可以自定义此值,将其改为完全限定的 URL,这样它在 kickstart 文件中将会以给定的值显示。 + <strong>注意:</strong>默认的 @@PRODUCT_NAME@@ kickstart URL 使用该文件路径存储,这样 @@PRODUCT_NAME@@ 便知道何时动态调整 kickstart 文件所呈现的 URL 中的主机名(代理服务器等)。您可以自定义此值,将其改为完全限定的 URL,这样它在 kickstart 文件中将会以给定的值显示。 <strong>NOTE:</strong> You may set a password hashed with any algorithm (that this operating system supports) in this field. The hash algorithm in the <strong>auth</strong> option will affect future passwords created, you may want it to be the same as the agorithm used here. If you enter a plaintext password you must select <strong>Encrypt</strong> above to encrypt it, if you don't you will be unable to login when the kickstart is finished. @@ -6093,7 +6093,7 @@ user before attempting to deactivate their account. /rhn/admin/config/GeneralConfig.do - 发生错误,无法储存您的 @@PRODUCT_NAME@@ 的配置更改。请联系支持人员获得详细信息 + 发生错误,无法存储您的 @@PRODUCT_NAME@@ 的配置更改。请联系支持人员获得详细信息 @@PRODUCT_NAME@@ restarting. If this page has not refreshed in 5 minutes please click <a href="/rhn/YourRhn.do">here</a> to try manually. @@ -10289,13 +10289,6 @@ Alternatively, you will want to download <strong>Incremental Channel Conte /rhn/systems/details/Overview.do - - <strong>Container Build Host</strong> type has been applied.<br/><strong>Note:</strong> This action will <em>not</em> result in state application. To apply the state, either use the <a href="/rhn/manager/systems/details/highstate?sid={0}">states page</a> or run <code class="text-info">state.highstate</code> from the command line. - 已应用<strong>容器构建主机</strong>类型。<br/><strong>注意:</strong>此操作<em>不会</em>导致应用状态。要应用该状态,请使用<a href="/rhn/manager/systems/details/highstate?sid={0}">状态页</a>,或者在命令行中运行 <code class="text-info">state.highstate</code>。 - - /rhn/systems/details/Overview.do - - <strong>OS Image Build Host</strong> type has been applied.<br/><strong>Note:</strong> This action will <em>not</em> result in state application. To apply the state, either use the <a href="/rhn/manager/systems/details/highstate?sid={0}">states page</a> or run <code class="text-info">state.highstate</code> from the command line. 已应用<strong>操作系统映像构建主机</strong>类型。<br/><strong>注意:</strong>此操作<em>不会</em>导致应用状态。要应用该状态,请使用<a href="/rhn/manager/systems/details/highstate?sid={0}">状态页</a>,或者在命令行中运行 <code class="text-info">state.highstate</code>。 @@ -10303,13 +10296,6 @@ Alternatively, you will want to download <strong>Incremental Channel Conte /rhn/systems/details/Overview.do - - <strong>OS Image Build Host</strong> type has been applied.<br/><strong>Note:</strong> This action will <em>not</em> result in state application. To apply the state, either use the <a href="/rhn/manager/systems/details/highstate?sid={0}">states page</a> or run <code class="text-info">state.highstate</code> from the command line. - 已应用<strong>操作系统映像构建主机</strong>类型。<br/><strong>注意:</strong>此操作<em>不会</em>导致应用状态。要应用该状态,请使用<a href="/rhn/manager/systems/details/highstate?sid={0}">状态页</a>,或者在命令行中运行 <code class="text-info">state.highstate</code>。 - - /rhn/systems/details/Overview.do - - Since you added a Virtualization system type to the system we also performed some extra steps to ensure your system will be able to manage virtual guests better. See <a href="/docs/administration/virtualization.html">here</a> for more info. 由于您已将 "虚拟化系统" 类型添加到系统,因此我们还执行了一些额外的步骤来确保您的系统能够更好地管理虚拟 Guest。有关详细信息,请参见<a href="/docs/administration/virtualization.html">此文档</a>。 @@ -10317,23 +10303,9 @@ Alternatively, you will want to download <strong>Incremental Channel Conte /rhn/systems/details/Overview.do - - Since you added a Virtualization system type to the system we also performed some extra steps to ensure your system will be able to manage virtual guests better. - 由于您已将 "虚拟化系统" 类型添加到系统,因此我们还执行了一些额外的步骤来确保您的系统能够更好地管理虚拟 Guest。 - - /rhn/systems/details/Overview.do - - - <strong>Monitoring</strong> type has been applied.<br/><strong>Note:</strong> Since you added the Monitoring system type we automatically assigned the Prometheus Exporters formula to the system. Please apply the <a href="/rhn/manager/systems/details/highstate?sid={0}">Highstate</a> in order to install and enable the Prometheus metrics exporters. - 已应用<strong>监视</strong>类型。<br/><strong>注意:</strong>由于您添加了 "监视" 系统类型,因此我们已自动将普罗米修斯导出器公式指派到了系统。请应用 <a href="/rhn/manager/systems/details/highstate?sid={0}">Highstate</a> 以安装并启用普罗米修斯度量导出器。 - - /rhn/systems/details/Overview.do - - - - <strong>Monitoring</strong> type has been applied.<br/><strong>Note:</strong> Since you added the Monitoring system type we automatically assigned the Prometheus Exporters formula to the system. Please apply the <a href="/rhn/manager/systems/details/highstate?sid={0}">Highstate</a> in order to install and enable the Prometheus metrics exporters. - 已应用<strong>监视</strong>类型。<br/><strong>注意:</strong>由于您添加了 "监视" 系统类型,因此我们已自动将普罗米修斯导出器公式指派到了系统。请应用 <a href="/rhn/manager/systems/details/highstate?sid={0}">Highstate</a> 以安装并启用普罗米修斯度量导出器。 + <strong>Monitoring</strong> type has been applied.<br/><strong>Note:</strong> Since you added the Monitoring system type we automatically assigned the Prometheus Exporters formula to the system. Please apply the <a href="/rhn/manager/systems/details/highstate?sid={0}">Highstate</a> in order to install and enable the Prometheus metrics exporters.<br/><strong>Note:</strong> Please make sure to open the <a href="/docs/{1}/installation-and-upgrade/ports.html#_external_client_ports" target="_blank">required network ports</a> for all installed exporters. + 已应用<strong>监视</strong>类型。<br/><strong>注意:</strong>由于您添加了 "监视" 系统类型,因此我们已自动将普罗米修斯导出器公式指派到了系统。请应用 <a href="/rhn/manager/systems/details/highstate?sid={0}">Highstate</a> 以安装并启用普罗米修斯度量导出器。 /rhn/systems/details/Overview.do @@ -10860,13 +10832,6 @@ Alternatively, you will want to download <strong>Incremental Channel Conte 已应用 <strong>Ansible 控制节点</strong>类型。<br/><strong>注意:</strong>此操作<em>不会</em>导致应用状态。要应用该状态,请使用<a href="/rhn/manager/systems/details/highstate?sid={0}">状态页</a>,或者在命令行中运行 <code class="text-info">state.highstate</code>。 - - <strong>Ansible Control Node</strong> type has been applied.<br/><strong>Note:</strong> This action will <em>not</em> result in state application. To apply the state, either use the <a href="/rhn/manager/systems/details/highstate?sid={0}">states page</a> or run <code class="text-info">state.highstate</code> from the command line. - - /rhn/systems/details/Overview.do - - 已应用 <strong>Ansible 控制节点</strong>类型。<br/><strong>注意:</strong>此操作<em>不会</em>导致应用状态。要应用该状态,请使用<a href="/rhn/manager/systems/details/highstate?sid={0}">状态页</a>,或者在命令行中运行 <code class="text-info">state.highstate</code>。 - Invalid path (must be a valid absolute path) @@ -11023,28 +10988,28 @@ Alternatively, you will want to download <strong>Incremental Channel Conte 堡垒 SSH 私用密钥通行口令不能超过 32 个字符。 - Pay-as-you-go {0} created successfully - 已成功创建 Pay-as-you-go {0} + PAYG {0} created successfully + 已成功创建 PAYG {0} - Pay-as-you-go host already exists - Pay-as-you-go 主机已存在 + PAYG host already exists + PAYG 主机已存在 - Pay-as-you-go {0} deleted successfully - 已成功删除 Pay-as-you-go {0} + PAYG {0} deleted successfully + 已成功删除 PAYG {0} Error when updating authentication data from: <a href="/rhn/manager/admin/setup/payg/{0}">{1}</a> 更新以下位置的身份验证数据时出错: <a href="/rhn/manager/admin/setup/payg/{0}">{1}</a> - Pay-as-you-go authentication update - Pay-as-you-go 身份验证更新 + PAYG authentication update + PAYG 身份验证更新 - Pay-as-you-go update RMT hosts - Pay-as-you-go 更新 RMT 主机 + PAYG update RMT hosts + PAYG 更新 RMT 主机 Product data needs refresh. @@ -11303,6 +11268,49 @@ Alternatively, you will want to download <strong>Incremental Channel Conte Sync Salt states to the target system 将 Salt 状态同步到目标系统 + + Cloning of channels under different product channels on PAYG instances is forbidden + + /channels/manage/Edit + + 禁止在 PAYG 实例上克隆不同产品通道下的通道 + + + PAYG ALERT: Cross product migration attempt detected. Please note, migration from openSUSE to SLES or similar is not permitted under your current PAYG plan. Operation has been aborted. + PAYG 警报:检测到跨产品迁移操作。请注意,根据您的当前 PAYG 计划,不允许从 openSUSE 迁移到 SLES 或类似系统。已中止该操作。 + + + Syncing channels forbidden + 禁止同步通道 + + + Synchronization of repositories is forbidden as @@PRODUCT_NAME@@ PAYG is unable to send accounting data to the cloud provider. +For a detailed analysis, please refer to the log files. + 禁止同步储存库,因为 @@PRODUCT_NAME@@ PAYG 无法向云提供商发送记账数据。 +有关详细分析,请参见日志文件。 + + + +The action you attempted could not be executed because the @@PRODUCT_NAME@@ PAYG system is unable to send accounting data to the cloud provider. +For a detailed analysis, please refer to the log files. + + +无法执行您尝试进行的操作,因为 @@PRODUCT_NAME@@ PAYG 系统无法向云提供商发送记账数据。 +有关详细分析,请参见日志文件。 + + + + Systems with conflicting minion ID and machine ID were found ({0}, {1}). Onboarding aborted. Please remove conflicting systems first ({2}, {3}) + 发现具有冲突受控端 ID 和计算机 ID的系统({0}、{1})。已中止初始配置。请先去除冲突的系统({2}、{3}) + + + Registration of '{0}' on SUSE Manager Server rejected. \nTo manage Datacenter clients you have to configure SCC Credentials at Admin => Setup Wizard => Organization Credentials. + 在 SUSE Manager 服务器上注册 "{0}" 的请求已被拒绝。\n要管理数据中心客户端,您必须在 "管理" => "安装向导" => "组织身份凭证" 中配置 SCC 身份凭证。 + + + Registration of '{0}' on SUSE Manager Server rejected. \nTo manage BYOS (Bring-your-own-Subscription) clients you have to configure SCC Credentials at Admin => Setup Wizard => Organization Credentials. \n\nIf the instance being onboarded is PAYG, ensure the `python-instance-billing-flavor-check` package is installed and try again. + 在 SUSE Manager 服务器上注册 "{0}" 的请求已被拒绝。\n要管理 BYOS(自带订阅)客户端,您必须在 "管理" => "安装向导" => "组织身份凭证" 中配置 SCC 身份凭证。\n\n如果初始配置的实例为 PAYG,请确保已安装 `python-instance-billing-flavor-check` 软件包,然后重试。 + diff --git a/java/code/src/com/redhat/rhn/frontend/strings/java/StringResource_zh_TW.xml b/java/code/src/com/redhat/rhn/frontend/strings/java/StringResource_zh_TW.xml index 7da2585fb77b..61d4d417b9f8 100644 --- a/java/code/src/com/redhat/rhn/frontend/strings/java/StringResource_zh_TW.xml +++ b/java/code/src/com/redhat/rhn/frontend/strings/java/StringResource_zh_TW.xml @@ -10018,24 +10018,12 @@ Alternatively, you will want to download <strong>Incremental Channel Conte /rhn/systems/details/Overview.do - - <strong>Container Build Host</strong> type has been applied.<br/><strong>Note:</strong> This action will <em>not</em> result in state application. To apply the state, either use the <a href="/rhn/manager/systems/details/highstate?sid={0}">states page</a> or run <code class="text-info">state.highstate</code> from the command line. - - /rhn/systems/details/Overview.do - - <strong>OS Image Build Host</strong> type has been applied.<br/><strong>Note:</strong> This action will <em>not</em> result in state application. To apply the state, either use the <a href="/rhn/manager/systems/details/highstate?sid={0}">states page</a> or run <code class="text-info">state.highstate</code> from the command line. /rhn/systems/details/Overview.do - - <strong>OS Image Build Host</strong> type has been applied.<br/><strong>Note:</strong> This action will <em>not</em> result in state application. To apply the state, either use the <a href="/rhn/manager/systems/details/highstate?sid={0}">states page</a> or run <code class="text-info">state.highstate</code> from the command line. - - /rhn/systems/details/Overview.do - - Since you added a Virtualization system type to the system we also performed some extra steps to ensure your system will be able to manage virtual guests better. See <a href="/docs/administration/virtualization.html">here</a> for more info. @@ -10043,22 +10031,8 @@ Alternatively, you will want to download <strong>Incremental Channel Conte 當您增加了虛擬化權利至您的系統的同時,我們也實施了一些額外的步驟來確保您的系統能夠更有效地管理虛擬客座。欲取得更多資訊請參閱 <a href="{0}">這裡</a>。 - - Since you added a Virtualization system type to the system we also performed some extra steps to ensure your system will be able to manage virtual guests better. - - /rhn/systems/details/Overview.do - - 當您增加了虛擬化權利至您系統的同時,我們也實施了一些額外的步驟,以確保您的系統能夠更有效地管理虛擬客座。 - - <strong>Monitoring</strong> type has been applied.<br/><strong>Note:</strong> Since you added the Monitoring system type we automatically assigned the Prometheus Exporters formula to the system. Please apply the <a href="/rhn/manager/systems/details/highstate?sid={0}">Highstate</a> in order to install and enable the Prometheus metrics exporters. - - /rhn/systems/details/Overview.do - - - - - <strong>Monitoring</strong> type has been applied.<br/><strong>Note:</strong> Since you added the Monitoring system type we automatically assigned the Prometheus Exporters formula to the system. Please apply the <a href="/rhn/manager/systems/details/highstate?sid={0}">Highstate</a> in order to install and enable the Prometheus metrics exporters. + <strong>Monitoring</strong> type has been applied.<br/><strong>Note:</strong> Since you added the Monitoring system type we automatically assigned the Prometheus Exporters formula to the system. Please apply the <a href="/rhn/manager/systems/details/highstate?sid={0}">Highstate</a> in order to install and enable the Prometheus metrics exporters.<br/><strong>Note:</strong> Please make sure to open the <a href="/docs/{1}/installation-and-upgrade/ports.html#_external_client_ports" target="_blank">required network ports</a> for all installed exporters. /rhn/systems/details/Overview.do @@ -10537,13 +10511,6 @@ Alternatively, you will want to download <strong>Incremental Channel Conte /rhn/systems/details/Overview.do - - - <strong>Ansible Control Node</strong> type has been applied.<br/><strong>Note:</strong> This action will <em>not</em> result in state application. To apply the state, either use the <a href="/rhn/manager/systems/details/highstate?sid={0}">states page</a> or run <code class="text-info">state.highstate</code> from the command line. - - /rhn/systems/details/Overview.do - - Invalid path (must be a valid absolute path) @@ -10701,28 +10668,28 @@ Alternatively, you will want to download <strong>Incremental Channel Conte - Pay-as-you-go {0} created successfully - + PAYG {0} created successfully + - Pay-as-you-go host already exists - + PAYG host already exists + - Pay-as-you-go {0} deleted successfully - + PAYG {0} deleted successfully + Error when updating authentication data from: <a href="/rhn/manager/admin/setup/payg/{0}">{1}</a> - Pay-as-you-go authentication update - + PAYG authentication update + - Pay-as-you-go update RMT hosts - + PAYG update RMT hosts + Product data needs refresh. @@ -10978,6 +10945,45 @@ Alternatively, you will want to download <strong>Incremental Channel Conte Sync Salt states to the target system - + + Cloning of channels under different product channels on PAYG instances is forbidden + + /channels/manage/Edit + + + + + PAYG ALERT: Cross product migration attempt detected. Please note, migration from openSUSE to SLES or similar is not permitted under your current PAYG plan. Operation has been aborted. + + + + Syncing channels forbidden + + + + Synchronization of repositories is forbidden as @@PRODUCT_NAME@@ PAYG is unable to send accounting data to the cloud provider. +For a detailed analysis, please refer to the log files. + + + + +The action you attempted could not be executed because the @@PRODUCT_NAME@@ PAYG system is unable to send accounting data to the cloud provider. +For a detailed analysis, please refer to the log files. + + + + + Systems with conflicting minion ID and machine ID were found ({0}, {1}). Onboarding aborted. Please remove conflicting systems first ({2}, {3}) + + + + Registration of '{0}' on SUSE Manager Server rejected. \nTo manage Datacenter clients you have to configure SCC Credentials at Admin => Setup Wizard => Organization Credentials. + + + + Registration of '{0}' on SUSE Manager Server rejected. \nTo manage BYOS (Bring-your-own-Subscription) clients you have to configure SCC Credentials at Admin => Setup Wizard => Organization Credentials. \n\nIf the instance being onboarded is PAYG, ensure the `python-instance-billing-flavor-check` package is installed and try again. + + + diff --git a/java/code/src/com/redhat/rhn/frontend/strings/jsp/StringResource_bn_IN.xml b/java/code/src/com/redhat/rhn/frontend/strings/jsp/StringResource_bn_IN.xml index b3fb49aa5c8f..85dd698f6782 100644 --- a/java/code/src/com/redhat/rhn/frontend/strings/jsp/StringResource_bn_IN.xml +++ b/java/code/src/com/redhat/rhn/frontend/strings/jsp/StringResource_bn_IN.xml @@ -27588,15 +27588,11 @@ given channel. - Collect authentication data from configure pay-as-you-go cloud instances + Collect authentication data from configured PAYG cloud instances /rhn/admin/BunchDetail.do - - - - Pay-as-you-go - + Update Reporting Database @@ -27831,6 +27827,29 @@ given channel. /systems/details/Overview.do + + + Security updates unknown, disabled on settings. + + + + Collect data of managed clients for SUSE Manager PAYG + + /rhn/admin/BunchDetail.do + + + + + PAYG Computation + + + + Execute Recurring Actions + + + + PAYG Connections + diff --git a/java/code/src/com/redhat/rhn/frontend/strings/jsp/StringResource_ca.xml b/java/code/src/com/redhat/rhn/frontend/strings/jsp/StringResource_ca.xml index d94e96a805d9..299bb17ad097 100644 --- a/java/code/src/com/redhat/rhn/frontend/strings/jsp/StringResource_ca.xml +++ b/java/code/src/com/redhat/rhn/frontend/strings/jsp/StringResource_ca.xml @@ -25893,15 +25893,11 @@ given channel. - Collect authentication data from configure pay-as-you-go cloud instances + Collect authentication data from configured PAYG cloud instances /rhn/admin/BunchDetail.do - - - - Pay-as-you-go - + Update Reporting Database @@ -26136,6 +26132,29 @@ given channel. /systems/details/Overview.do + + + Security updates unknown, disabled on settings. + + + + Collect data of managed clients for SUSE Manager PAYG + + /rhn/admin/BunchDetail.do + + + + + PAYG Computation + + + + Execute Recurring Actions + + + + PAYG Connections + diff --git a/java/code/src/com/redhat/rhn/frontend/strings/jsp/StringResource_cs.xml b/java/code/src/com/redhat/rhn/frontend/strings/jsp/StringResource_cs.xml index 64983f13b907..fd26edc6acc7 100644 --- a/java/code/src/com/redhat/rhn/frontend/strings/jsp/StringResource_cs.xml +++ b/java/code/src/com/redhat/rhn/frontend/strings/jsp/StringResource_cs.xml @@ -29390,15 +29390,11 @@ given channel. - Collect authentication data from configure pay-as-you-go cloud instances + Collect authentication data from configured PAYG cloud instances /rhn/admin/BunchDetail.do - - - - Pay-as-you-go - + Update Reporting Database @@ -29633,6 +29629,29 @@ given channel. /systems/details/Overview.do + + + Security updates unknown, disabled on settings. + + + + Collect data of managed clients for SUSE Manager PAYG + + /rhn/admin/BunchDetail.do + + + + + PAYG Computation + + + + Execute Recurring Actions + + + + PAYG Connections + diff --git a/java/code/src/com/redhat/rhn/frontend/strings/jsp/StringResource_de.xml b/java/code/src/com/redhat/rhn/frontend/strings/jsp/StringResource_de.xml index fd38e7606a4a..121baa2e34dc 100644 --- a/java/code/src/com/redhat/rhn/frontend/strings/jsp/StringResource_de.xml +++ b/java/code/src/com/redhat/rhn/frontend/strings/jsp/StringResource_de.xml @@ -29158,15 +29158,11 @@ für einen angegebenen Channel aufgelistet wird. - Collect authentication data from configure pay-as-you-go cloud instances + Collect authentication data from configured PAYG cloud instances /rhn/admin/BunchDetail.do - - - - Pay-as-you-go - + Update Reporting Database @@ -29401,6 +29397,29 @@ für einen angegebenen Channel aufgelistet wird. /systems/details/Overview.do + + + Security updates unknown, disabled on settings. + + + + Collect data of managed clients for SUSE Manager PAYG + + /rhn/admin/BunchDetail.do + + + + + PAYG Computation + + + + Execute Recurring Actions + + + + PAYG Connections + diff --git a/java/code/src/com/redhat/rhn/frontend/strings/jsp/StringResource_en_US.xml b/java/code/src/com/redhat/rhn/frontend/strings/jsp/StringResource_en_US.xml index 9d85b9e0e774..b338cf34cca1 100644 --- a/java/code/src/com/redhat/rhn/frontend/strings/jsp/StringResource_en_US.xml +++ b/java/code/src/com/redhat/rhn/frontend/strings/jsp/StringResource_en_US.xml @@ -23802,7 +23802,7 @@ given channel. - Collect authentication data from configure pay-as-you-go cloud instances + Collect authentication data from configured PAYG cloud instances /rhn/admin/BunchDetail.do @@ -23813,6 +23813,12 @@ given channel. /rhn/admin/BunchDetail.do + + Collect data of managed clients for SUSE Manager PAYG + + /rhn/admin/BunchDetail.do + + There're no schedules available. @@ -24240,6 +24246,12 @@ given channel. System Profile Refresh + + PAYG Computation + + + Execute Recurring Actions + Picked Up @@ -25272,8 +25284,8 @@ given channel. Products - - Pay-as-you-go + + PAYG Connections Bootstrap diff --git a/java/code/src/com/redhat/rhn/frontend/strings/jsp/StringResource_es.xml b/java/code/src/com/redhat/rhn/frontend/strings/jsp/StringResource_es.xml index f95ae46fdc33..2132786b2b1b 100644 --- a/java/code/src/com/redhat/rhn/frontend/strings/jsp/StringResource_es.xml +++ b/java/code/src/com/redhat/rhn/frontend/strings/jsp/StringResource_es.xml @@ -27563,15 +27563,11 @@ given channel. - Collect authentication data from configure pay-as-you-go cloud instances + Collect authentication data from configured PAYG cloud instances /rhn/admin/BunchDetail.do - - - - Pay-as-you-go - + Update Reporting Database @@ -27806,6 +27802,29 @@ given channel. /systems/details/Overview.do + + + Security updates unknown, disabled on settings. + + + + Collect data of managed clients for SUSE Manager PAYG + + /rhn/admin/BunchDetail.do + + + + + PAYG Computation + + + + Execute Recurring Actions + + + + PAYG Connections + diff --git a/java/code/src/com/redhat/rhn/frontend/strings/jsp/StringResource_fr.xml b/java/code/src/com/redhat/rhn/frontend/strings/jsp/StringResource_fr.xml index ac0fd317bf46..55884aafdd68 100644 --- a/java/code/src/com/redhat/rhn/frontend/strings/jsp/StringResource_fr.xml +++ b/java/code/src/com/redhat/rhn/frontend/strings/jsp/StringResource_fr.xml @@ -29161,15 +29161,11 @@ canal {0}. Les systèmes abonnés vont perdre leur accès aux paquetages spéci - Collect authentication data from configure pay-as-you-go cloud instances + Collect authentication data from configured PAYG cloud instances /rhn/admin/BunchDetail.do - - - - Pay-as-you-go - + Update Reporting Database @@ -29404,6 +29400,29 @@ canal {0}. Les systèmes abonnés vont perdre leur accès aux paquetages spéci /systems/details/Overview.do + + + Security updates unknown, disabled on settings. + + + + Collect data of managed clients for SUSE Manager PAYG + + /rhn/admin/BunchDetail.do + + + + + PAYG Computation + + + + Execute Recurring Actions + + + + PAYG Connections + diff --git a/java/code/src/com/redhat/rhn/frontend/strings/jsp/StringResource_gu.xml b/java/code/src/com/redhat/rhn/frontend/strings/jsp/StringResource_gu.xml index 44ec1f281790..63ce45de286a 100644 --- a/java/code/src/com/redhat/rhn/frontend/strings/jsp/StringResource_gu.xml +++ b/java/code/src/com/redhat/rhn/frontend/strings/jsp/StringResource_gu.xml @@ -27799,15 +27799,11 @@ given channel. - Collect authentication data from configure pay-as-you-go cloud instances + Collect authentication data from configured PAYG cloud instances /rhn/admin/BunchDetail.do - - - - Pay-as-you-go - + Update Reporting Database @@ -28042,6 +28038,29 @@ given channel. /systems/details/Overview.do + + + Security updates unknown, disabled on settings. + + + + Collect data of managed clients for SUSE Manager PAYG + + /rhn/admin/BunchDetail.do + + + + + PAYG Computation + + + + Execute Recurring Actions + + + + PAYG Connections + diff --git a/java/code/src/com/redhat/rhn/frontend/strings/jsp/StringResource_hi.xml b/java/code/src/com/redhat/rhn/frontend/strings/jsp/StringResource_hi.xml index d6872d443976..f4f9df32e65b 100644 --- a/java/code/src/com/redhat/rhn/frontend/strings/jsp/StringResource_hi.xml +++ b/java/code/src/com/redhat/rhn/frontend/strings/jsp/StringResource_hi.xml @@ -27800,15 +27800,11 @@ given channel. - Collect authentication data from configure pay-as-you-go cloud instances + Collect authentication data from configured PAYG cloud instances /rhn/admin/BunchDetail.do - - - - Pay-as-you-go - + Update Reporting Database @@ -28043,6 +28039,29 @@ given channel. /systems/details/Overview.do + + + Security updates unknown, disabled on settings. + + + + Collect data of managed clients for SUSE Manager PAYG + + /rhn/admin/BunchDetail.do + + + + + PAYG Computation + + + + Execute Recurring Actions + + + + PAYG Connections + diff --git a/java/code/src/com/redhat/rhn/frontend/strings/jsp/StringResource_it.xml b/java/code/src/com/redhat/rhn/frontend/strings/jsp/StringResource_it.xml index 688bbee4fe72..08e44c9ee470 100644 --- a/java/code/src/com/redhat/rhn/frontend/strings/jsp/StringResource_it.xml +++ b/java/code/src/com/redhat/rhn/frontend/strings/jsp/StringResource_it.xml @@ -29244,15 +29244,11 @@ caratteri. - Collect authentication data from configure pay-as-you-go cloud instances + Collect authentication data from configured PAYG cloud instances /rhn/admin/BunchDetail.do - - - - Pay-as-you-go - + Update Reporting Database @@ -29487,6 +29483,29 @@ caratteri. /systems/details/Overview.do + + + Security updates unknown, disabled on settings. + + + + Collect data of managed clients for SUSE Manager PAYG + + /rhn/admin/BunchDetail.do + + + + + PAYG Computation + + + + Execute Recurring Actions + + + + PAYG Connections + diff --git a/java/code/src/com/redhat/rhn/frontend/strings/jsp/StringResource_ja.xml b/java/code/src/com/redhat/rhn/frontend/strings/jsp/StringResource_ja.xml index 4292152bb238..c2d77fe4d8cf 100644 --- a/java/code/src/com/redhat/rhn/frontend/strings/jsp/StringResource_ja.xml +++ b/java/code/src/com/redhat/rhn/frontend/strings/jsp/StringResource_ja.xml @@ -29676,15 +29676,11 @@ given channel. ベンダアドバイザリー - Collect authentication data from configure pay-as-you-go cloud instances + Collect authentication data from configured PAYG cloud instances /rhn/admin/BunchDetail.do - 従量課金制のクラウドインスタンスの構成から認証データを収集します - - - Pay-as-you-go - 従量課金制 + PAYGのクラウドインスタンスの構成から認証データを収集します Update Reporting Database @@ -29917,6 +29913,29 @@ given channel. 仮想化ホスト: + + Security updates unknown, disabled on settings. + セキュリティ更新が不明で、設定で無効になっています。 + + + Collect data of managed clients for SUSE Manager PAYG + + /rhn/admin/BunchDetail.do + + SUSE Manager PAYGの管理対象クライアントのデータを収集 + + + PAYG Computation + PAYGの計算 + + + Execute Recurring Actions + 定期的なアクションの実行 + + + PAYG Connections + PAYGの接続 + diff --git a/java/code/src/com/redhat/rhn/frontend/strings/jsp/StringResource_ko.xml b/java/code/src/com/redhat/rhn/frontend/strings/jsp/StringResource_ko.xml index 4097a0f48471..25a98f5e2dc3 100644 --- a/java/code/src/com/redhat/rhn/frontend/strings/jsp/StringResource_ko.xml +++ b/java/code/src/com/redhat/rhn/frontend/strings/jsp/StringResource_ko.xml @@ -29662,15 +29662,11 @@ given channel. 벤더 자문 - Collect authentication data from configure pay-as-you-go cloud instances + Collect authentication data from configured PAYG cloud instances /rhn/admin/BunchDetail.do - 용량제 클라우드 인스턴스 구성에서 인증 데이터 수집 - - - Pay-as-you-go - 용량제 + 구성된 PAYG 클라우드 인스턴스에서 인증 데이터 수집 Update Reporting Database @@ -29903,6 +29899,29 @@ given channel. 가상화 호스트: + + Security updates unknown, disabled on settings. + 보안 업데이트 알 수 없음, 설정에서 사용 중지됨. + + + Collect data of managed clients for SUSE Manager PAYG + + /rhn/admin/BunchDetail.do + + SUSE Manager PAYG용 관리형 클라이언트의 데이터 수집 + + + PAYG Computation + PAYG 계산 + + + Execute Recurring Actions + 반복 작업 실행 + + + PAYG Connections + PAYG 연결 + diff --git a/java/code/src/com/redhat/rhn/frontend/strings/jsp/StringResource_pa.xml b/java/code/src/com/redhat/rhn/frontend/strings/jsp/StringResource_pa.xml index 685c4ae4b0cb..5f9174847b0a 100644 --- a/java/code/src/com/redhat/rhn/frontend/strings/jsp/StringResource_pa.xml +++ b/java/code/src/com/redhat/rhn/frontend/strings/jsp/StringResource_pa.xml @@ -27799,15 +27799,11 @@ given channel. - Collect authentication data from configure pay-as-you-go cloud instances + Collect authentication data from configured PAYG cloud instances /rhn/admin/BunchDetail.do - - - - Pay-as-you-go - + Update Reporting Database @@ -28042,6 +28038,29 @@ given channel. /systems/details/Overview.do + + + Security updates unknown, disabled on settings. + + + + Collect data of managed clients for SUSE Manager PAYG + + /rhn/admin/BunchDetail.do + + + + + PAYG Computation + + + + Execute Recurring Actions + + + + PAYG Connections + diff --git a/java/code/src/com/redhat/rhn/frontend/strings/jsp/StringResource_pt_BR.xml b/java/code/src/com/redhat/rhn/frontend/strings/jsp/StringResource_pt_BR.xml index 7e0c92beb1d9..879713a33e91 100644 --- a/java/code/src/com/redhat/rhn/frontend/strings/jsp/StringResource_pt_BR.xml +++ b/java/code/src/com/redhat/rhn/frontend/strings/jsp/StringResource_pt_BR.xml @@ -29187,15 +29187,11 @@ Serão exibidos somente pacotes de uma arquitetura compatível. - Collect authentication data from configure pay-as-you-go cloud instances + Collect authentication data from configured PAYG cloud instances /rhn/admin/BunchDetail.do - - - - Pay-as-you-go - + Update Reporting Database @@ -29430,6 +29426,29 @@ Serão exibidos somente pacotes de uma arquitetura compatível. /systems/details/Overview.do + + + Security updates unknown, disabled on settings. + + + + Collect data of managed clients for SUSE Manager PAYG + + /rhn/admin/BunchDetail.do + + + + + PAYG Computation + + + + Execute Recurring Actions + + + + PAYG Connections + diff --git a/java/code/src/com/redhat/rhn/frontend/strings/jsp/StringResource_ru.xml b/java/code/src/com/redhat/rhn/frontend/strings/jsp/StringResource_ru.xml index 9aae7703b49a..2d5682be9479 100644 --- a/java/code/src/com/redhat/rhn/frontend/strings/jsp/StringResource_ru.xml +++ b/java/code/src/com/redhat/rhn/frontend/strings/jsp/StringResource_ru.xml @@ -27639,15 +27639,11 @@ given channel. - Collect authentication data from configure pay-as-you-go cloud instances + Collect authentication data from configured PAYG cloud instances /rhn/admin/BunchDetail.do - - - - Pay-as-you-go - + Update Reporting Database @@ -27882,6 +27878,29 @@ given channel. /systems/details/Overview.do + + + Security updates unknown, disabled on settings. + + + + Collect data of managed clients for SUSE Manager PAYG + + /rhn/admin/BunchDetail.do + + + + + PAYG Computation + + + + Execute Recurring Actions + + + + PAYG Connections + diff --git a/java/code/src/com/redhat/rhn/frontend/strings/jsp/StringResource_si.xml b/java/code/src/com/redhat/rhn/frontend/strings/jsp/StringResource_si.xml index 525623d8c164..2285cce6a958 100644 --- a/java/code/src/com/redhat/rhn/frontend/strings/jsp/StringResource_si.xml +++ b/java/code/src/com/redhat/rhn/frontend/strings/jsp/StringResource_si.xml @@ -29390,15 +29390,11 @@ given channel. - Collect authentication data from configure pay-as-you-go cloud instances + Collect authentication data from configured PAYG cloud instances /rhn/admin/BunchDetail.do - - - - Pay-as-you-go - + Update Reporting Database @@ -29633,6 +29629,29 @@ given channel. /systems/details/Overview.do + + + Security updates unknown, disabled on settings. + + + + Collect data of managed clients for SUSE Manager PAYG + + /rhn/admin/BunchDetail.do + + + + + PAYG Computation + + + + Execute Recurring Actions + + + + PAYG Connections + diff --git a/java/code/src/com/redhat/rhn/frontend/strings/jsp/StringResource_sk.xml b/java/code/src/com/redhat/rhn/frontend/strings/jsp/StringResource_sk.xml index 2fe1c1f5456a..a3c29d485f7a 100644 --- a/java/code/src/com/redhat/rhn/frontend/strings/jsp/StringResource_sk.xml +++ b/java/code/src/com/redhat/rhn/frontend/strings/jsp/StringResource_sk.xml @@ -1576,7 +1576,7 @@ Systems - + Systémy ./includes/header.jsp /rhn/YourRhn.do @@ -29390,15 +29390,11 @@ given channel. - Collect authentication data from configure pay-as-you-go cloud instances + Collect authentication data from configured PAYG cloud instances /rhn/admin/BunchDetail.do - - - - Pay-as-you-go - + Update Reporting Database @@ -29631,6 +29627,29 @@ given channel. - + + Security updates unknown, disabled on settings. + + + + Collect data of managed clients for SUSE Manager PAYG + + /rhn/admin/BunchDetail.do + + + + + PAYG Computation + + + + Execute Recurring Actions + + + + PAYG Connections + + + diff --git a/java/code/src/com/redhat/rhn/frontend/strings/jsp/StringResource_ta.xml b/java/code/src/com/redhat/rhn/frontend/strings/jsp/StringResource_ta.xml index d2329946cfe0..e9d5edebc906 100644 --- a/java/code/src/com/redhat/rhn/frontend/strings/jsp/StringResource_ta.xml +++ b/java/code/src/com/redhat/rhn/frontend/strings/jsp/StringResource_ta.xml @@ -27798,15 +27798,11 @@ given channel. - Collect authentication data from configure pay-as-you-go cloud instances + Collect authentication data from configured PAYG cloud instances /rhn/admin/BunchDetail.do - - - - Pay-as-you-go - + Update Reporting Database @@ -28041,6 +28037,29 @@ given channel. /systems/details/Overview.do + + + Security updates unknown, disabled on settings. + + + + Collect data of managed clients for SUSE Manager PAYG + + /rhn/admin/BunchDetail.do + + + + + PAYG Computation + + + + Execute Recurring Actions + + + + PAYG Connections + diff --git a/java/code/src/com/redhat/rhn/frontend/strings/jsp/StringResource_uk.xml b/java/code/src/com/redhat/rhn/frontend/strings/jsp/StringResource_uk.xml index 3a44778ed3a8..9b44dfba76d8 100644 --- a/java/code/src/com/redhat/rhn/frontend/strings/jsp/StringResource_uk.xml +++ b/java/code/src/com/redhat/rhn/frontend/strings/jsp/StringResource_uk.xml @@ -26417,15 +26417,11 @@ given channel. - Collect authentication data from configure pay-as-you-go cloud instances + Collect authentication data from configured PAYG cloud instances /rhn/admin/BunchDetail.do - - - - Pay-as-you-go - + Update Reporting Database @@ -26660,6 +26656,29 @@ given channel. /systems/details/Overview.do + + + Security updates unknown, disabled on settings. + + + + Collect data of managed clients for SUSE Manager PAYG + + /rhn/admin/BunchDetail.do + + + + + PAYG Computation + + + + Execute Recurring Actions + + + + PAYG Connections + diff --git a/java/code/src/com/redhat/rhn/frontend/strings/jsp/StringResource_zh-HK.xml b/java/code/src/com/redhat/rhn/frontend/strings/jsp/StringResource_zh-HK.xml index 4a4b5d28ed44..2d19906998f9 100644 --- a/java/code/src/com/redhat/rhn/frontend/strings/jsp/StringResource_zh-HK.xml +++ b/java/code/src/com/redhat/rhn/frontend/strings/jsp/StringResource_zh-HK.xml @@ -29390,15 +29390,11 @@ given channel. - Collect authentication data from configure pay-as-you-go cloud instances + Collect authentication data from configured PAYG cloud instances /rhn/admin/BunchDetail.do - - - - Pay-as-you-go - + Update Reporting Database @@ -29633,6 +29629,29 @@ given channel. /systems/details/Overview.do + + + Security updates unknown, disabled on settings. + + + + Collect data of managed clients for SUSE Manager PAYG + + /rhn/admin/BunchDetail.do + + + + + PAYG Computation + + + + Execute Recurring Actions + + + + PAYG Connections + diff --git a/java/code/src/com/redhat/rhn/frontend/strings/jsp/StringResource_zh_CN.xml b/java/code/src/com/redhat/rhn/frontend/strings/jsp/StringResource_zh_CN.xml index c337bacb0a5f..188bfd7e7488 100644 --- a/java/code/src/com/redhat/rhn/frontend/strings/jsp/StringResource_zh_CN.xml +++ b/java/code/src/com/redhat/rhn/frontend/strings/jsp/StringResource_zh_CN.xml @@ -8456,14 +8456,14 @@ organization. You may grant or remove the organization administrator role in the NOTFILLEDOUT - 创建储存的配置文件 + 创建存储的配置文件 This will create a stored profile, based upon the package set of this system, that you may use for profile comparisons. NOTFILLEDOUT - 这将基于此系统的软件包集创建储存的配置文件,您可以使用它来进行配置文件比较。 + 这将基于此系统的软件包集创建存储的配置文件,您可以使用它来进行配置文件比较。 Profile Description @@ -8757,7 +8757,7 @@ organization management tools if you choose to remove this role from your login. NOTFILLEDOUT - 与储存的配置文件比较 + 与存储的配置文件比较 Compare to System @@ -8792,7 +8792,7 @@ organization management tools if you choose to remove this role from your login. NOTFILLEDOUT - 将软件包与储存的配置文件进行比较 + 将软件包与存储的配置文件进行比较 Action @@ -11955,7 +11955,7 @@ For more information, see the <a href={0} target="_blank" >Reference Guide /rhn/keys/CryptoKeysList.do - 创建储存的密钥/证书 + 创建存储的密钥/证书 Edit GPG/SSL Key @@ -12580,7 +12580,7 @@ kickstart 前脚本的更多细节,请参见《<strong>@@ENTERPRISE_LINU Use autoinstallation snippets to store common blocks of code that can be shared across multiple autoinstallation profiles in @@PRODUCT_NAME@@. When you create an autoinstallation snippet, all autoinstallation profiles including that snippet will be updated accordingly. - 自动安装代码段用于储存可在 @@PRODUCT_NAME@@ 中跨多个自动安装配置文件共享的通用代码块。当您创建自动安装代码段时,包含该代码段的所有自动安装配置文件都会相应更新。 + 自动安装代码段用于存储可在 @@PRODUCT_NAME@@ 中跨多个自动安装配置文件共享的通用代码块。当您创建自动安装代码段时,包含该代码段的所有自动安装配置文件都会相应更新。 /rhn/kickstart/cobbler/DefaultSnippetList.do /rhn/kickstart/cobbler/CustomSnippetList.do @@ -14206,7 +14206,7 @@ kickstart 前脚本的更多细节,请参见《<strong>@@ENTERPRISE_LINU Stored Profiles - 储存的配置文件 + 存储的配置文件 /rhn/profiles/List.do @@ -14220,14 +14220,14 @@ kickstart 前脚本的更多细节,请参见《<strong>@@ENTERPRISE_LINU The following stored profiles exist within your organization. To create a stored profile from a system, go to the Packages view for that system. - 您的组织中有以下储存的配置文件。要从某个系统创建储存的配置文件,请转到该系统的软件包视图。 + 您的组织中有以下存储的配置文件。要从某个系统创建存储的配置文件,请转到该系统的软件包视图。 /rhn/profiles/List.do No stored profiles. - 没有储存的配置文件。 + 没有存储的配置文件。 /rhn/profiles/List.do @@ -14235,7 +14235,7 @@ kickstart 前脚本的更多细节,请参见《<strong>@@ENTERPRISE_LINU Stored Profile: - 储存的配置文件: + 存储的配置文件: /rhn/profiles/Details.do @@ -14250,7 +14250,7 @@ kickstart 前脚本的更多细节,请参见《<strong>@@ENTERPRISE_LINU The following packages are associated with this stored profile. - 以下软件包与此储存的配置文件相关联。 + 以下软件包与此存储的配置文件相关联。 /rhn/profiles/Details.do @@ -17806,7 +17806,7 @@ From there, you can deploy the file to systems. /rhn/configuration/RevisionDeploy.do - 配置沙箱是用于储存开发中配置文件的位置。 + 配置沙箱是用于存储处于开发阶段的配置文件的位置。 如果您确定此配置文件可部署到系统,则可通过上面的 "<a href="{3}">{4}</a>" 选项卡<a href="{0}">将其复制到本地管理的配置通道</a> 或者<a href="{1}">将其复制到全局管理的配置通道</a> 您可在该通道中将该文件部署到系统。 @@ -20464,7 +20464,7 @@ any of these revisions. Are you sure you want to do this? This sandbox is a place you can store configuration files that are under development. This sandbox is associated with this system, {0}, but you may promote files from this sandbox to a centrally-managed configuration channel using the "{1}" below. After files in this sandbox have been promoted to a centrally-managed configuration channel, you will be able to deploy them to other systems. - 此沙箱是您可以在开发阶段储存配置文件的地方。此沙箱与系统 {0} 相关联,但您可以使用下面的 "{1}" 将文件从此沙箱提升到集中管理的配置通道。在此沙箱的文件被提升至集中管理的配置通道后,您便可以将它们部署到其他系统。 + 此沙箱是您可以存储处于开发阶段的配置文件的地方。此沙箱与系统 {0} 相关联,但您可以使用下面的 "{1}" 将文件从此沙箱提升到集中管理的配置通道。在此沙箱的文件被提升至集中管理的配置通道后,您便可以将它们部署到其他系统。 /rhn/systems/details/configuration/ViewModifyCentralPaths.do /rhn/systems/details/configuration/ViewModifyLocalPaths.do @@ -25941,7 +25941,7 @@ given channel. /rhn/help/about - + All @@PRODUCT_NAME@@ functionality (system profiles, reporting data, application server, etc.) is stored locally on the customer's network. This provides customers with the ability to take their @@ -25953,13 +25953,13 @@ given channel. All information stored in the @@PRODUCT_NAME@@ database is kept on the @@PRODUCT_NAME@@ servers. 所有 @@PRODUCT_NAME@@ 功能(系统配置文件、报告数据、应用程序服务器等) - 都储存在客户网络本地。这样,客户便可根据需要使其 - @@PRODUCT_NAME@@ 解决方案脱离公共因特网,同时对其 + 都存储在客户网络本地。这样,客户便可根据需要使其 + @@PRODUCT_NAME@@ 解决方案脱离公共互联网,同时对其 系统进行更好的优化和控制。 将 @@PRODUCT_NAME@@ Proxy 服务器与 @@PRODUCT_NAME@@ 服务器结合使用, 可将客户的单个系统连接到本地托管的 Proxy。 Proxy 与 @@PRODUCT_NAME@@ 中央服务器通讯,在本地聚合数据并执行一些任务。 - @@PRODUCT_NAME@@ 数据库中储存的所有信息都保留在 @@PRODUCT_NAME@@ 服务器上。 + @@PRODUCT_NAME@@ 数据库中存储的所有信息都保留在 @@PRODUCT_NAME@@ 服务器上。 /rhn/help/about @@ -26314,7 +26314,7 @@ given channel. Custom system info keys allow your adminstrators to store relevant custom key/value pairs with your system profiles. Custom system info values are fully {0}searchable{1}. - 使用自定义系统信息键,您的管理员可以储存与您的系统配置文件有关的自定义键/值对。自定义系统信息值全部都{0}可搜索{1}。 + 使用自定义系统信息键,您的管理员可以存储与您的系统配置文件有关的自定义键/值对。自定义系统信息值全部都{0}可搜索{1}。 The following custom system info keys have been defined for your organization. @@ -29677,15 +29677,11 @@ given channel. 供应商建议 - Collect authentication data from configure pay-as-you-go cloud instances + Collect authentication data from configured PAYG cloud instances /rhn/admin/BunchDetail.do - 从配置的 Pay-as-you-go 云实例收集身份验证数据 - - - Pay-as-you-go - Pay-as-you-go + 从配置的 PAYG 云实例收集身份验证数据 Update Reporting Database @@ -29918,6 +29914,29 @@ given channel. 虚拟化主机: + + Security updates unknown, disabled on settings. + 安全更新未知,已根据设置禁用。 + + + Collect data of managed clients for SUSE Manager PAYG + + /rhn/admin/BunchDetail.do + + 收集 SUSE Manager PAYG 受管客户端的数据 + + + PAYG Computation + PAYG 计算 + + + Execute Recurring Actions + 执行重复性操作 + + + PAYG Connections + PAYG 连接 + diff --git a/java/code/src/com/redhat/rhn/frontend/strings/jsp/StringResource_zh_TW.xml b/java/code/src/com/redhat/rhn/frontend/strings/jsp/StringResource_zh_TW.xml index f28edaf823fe..b48a7efe7007 100644 --- a/java/code/src/com/redhat/rhn/frontend/strings/jsp/StringResource_zh_TW.xml +++ b/java/code/src/com/redhat/rhn/frontend/strings/jsp/StringResource_zh_TW.xml @@ -29158,15 +29158,11 @@ given channel. - Collect authentication data from configure pay-as-you-go cloud instances + Collect authentication data from configured PAYG cloud instances /rhn/admin/BunchDetail.do - - - - Pay-as-you-go - + Update Reporting Database @@ -29401,6 +29397,29 @@ given channel. /systems/details/Overview.do + + + Security updates unknown, disabled on settings. + + + + Collect data of managed clients for SUSE Manager PAYG + + /rhn/admin/BunchDetail.do + + + + + PAYG Computation + + + + Execute Recurring Actions + + + + PAYG Connections + diff --git a/java/code/src/com/redhat/rhn/frontend/struts/StrutsDelegate.java b/java/code/src/com/redhat/rhn/frontend/struts/StrutsDelegate.java index 7d9d9f9711cc..09bf6d3ade73 100644 --- a/java/code/src/com/redhat/rhn/frontend/struts/StrutsDelegate.java +++ b/java/code/src/com/redhat/rhn/frontend/struts/StrutsDelegate.java @@ -291,7 +291,7 @@ public String extractString(FormFile f) { } } catch (IOException e) { - LOG.error(e); + LOG.error(e.getMessage(), e); throw new RuntimeException(e); } return retval; diff --git a/java/code/src/com/redhat/rhn/frontend/xmlrpc/HandlerFactory.java b/java/code/src/com/redhat/rhn/frontend/xmlrpc/HandlerFactory.java index bf75e586cd71..59446e12caa2 100644 --- a/java/code/src/com/redhat/rhn/frontend/xmlrpc/HandlerFactory.java +++ b/java/code/src/com/redhat/rhn/frontend/xmlrpc/HandlerFactory.java @@ -147,7 +147,7 @@ public static HandlerFactory getDefaultHandlerFactory() { ); ProxyHandler proxyHandler = new ProxyHandler(xmlRpcSystemHelper, systemManager); SystemHandler systemHandler = new SystemHandler(taskomaticApi, xmlRpcSystemHelper, systemEntitlementManager, - systemManager, serverGroupManager); + systemManager, serverGroupManager, GlobalInstanceHolder.PAYG_MANAGER); factory.addHandler("actionchain", new ActionChainHandler()); factory.addHandler("activationkey", new ActivationKeyHandler(serverGroupManager)); diff --git a/java/code/src/com/redhat/rhn/frontend/xmlrpc/channel/software/test/ChannelSoftwareHandlerTest.java b/java/code/src/com/redhat/rhn/frontend/xmlrpc/channel/software/test/ChannelSoftwareHandlerTest.java index 191254fbb42a..327f0d6cc485 100644 --- a/java/code/src/com/redhat/rhn/frontend/xmlrpc/channel/software/test/ChannelSoftwareHandlerTest.java +++ b/java/code/src/com/redhat/rhn/frontend/xmlrpc/channel/software/test/ChannelSoftwareHandlerTest.java @@ -72,6 +72,7 @@ import com.redhat.rhn.testing.TestUtils; import com.redhat.rhn.testing.UserTestUtils; +import com.suse.cloud.CloudPaygManager; import com.suse.manager.virtualization.VirtManagerSalt; import com.suse.manager.webui.controllers.bootstrap.RegularMinionBootstrapper; import com.suse.manager.webui.controllers.bootstrap.SSHMinionBootstrapper; @@ -113,9 +114,11 @@ public class ChannelSoftwareHandlerTest extends BaseHandlerTestCase { private TaskomaticApi taskomaticApi = new TaskomaticApi(); private final SystemQuery systemQuery = new TestSystemQuery(); private final SaltApi saltApi = new TestSaltApi(); + private final CloudPaygManager paygManager = new CloudPaygManager(); private final ServerGroupManager serverGroupManager = new ServerGroupManager(saltApi); - private RegularMinionBootstrapper regularMinionBootstrapper = new RegularMinionBootstrapper(systemQuery, saltApi); - private SSHMinionBootstrapper sshMinionBootstrapper = new SSHMinionBootstrapper(systemQuery, saltApi); + private RegularMinionBootstrapper regularMinionBootstrapper = + new RegularMinionBootstrapper(systemQuery, saltApi, paygManager); + private SSHMinionBootstrapper sshMinionBootstrapper = new SSHMinionBootstrapper(systemQuery, saltApi, paygManager); private XmlRpcSystemHelper xmlRpcSystemHelper = new XmlRpcSystemHelper( regularMinionBootstrapper, sshMinionBootstrapper @@ -129,7 +132,7 @@ public class ChannelSoftwareHandlerTest extends BaseHandlerTestCase { private SystemManager systemManager = new SystemManager(ServerFactory.SINGLETON, ServerGroupFactory.SINGLETON, saltApi); private SystemHandler systemHandler = new SystemHandler(taskomaticApi, xmlRpcSystemHelper, systemEntitlementManager, - systemManager, serverGroupManager); + systemManager, serverGroupManager, new CloudPaygManager()); private ChannelSoftwareHandler handler = new ChannelSoftwareHandler(taskomaticApi, xmlRpcSystemHelper); private ErrataHandler errataHandler = new ErrataHandler(); @@ -322,7 +325,7 @@ public void testSetSystemChannelsBaseChannel() throws Exception { assertFalse(child2.isBaseChannel()); SystemHandler sh = new SystemHandler(taskomaticApi, xmlRpcSystemHelper, systemEntitlementManager, systemManager, - serverGroupManager); + serverGroupManager, new CloudPaygManager()); int sid = server.getId().intValue(); int rc1 = sh.setBaseChannel(admin, sid, base.getLabel()); @@ -351,7 +354,7 @@ public void testSetSystemChannelsBaseChannel() throws Exception { @Test public void testSetBaseChannel() throws Exception { SystemHandler sh = new SystemHandler(taskomaticApi, xmlRpcSystemHelper, systemEntitlementManager, systemManager, - serverGroupManager); + serverGroupManager, new CloudPaygManager()); Channel c1 = ChannelFactoryTest.createTestChannel(admin); Server server = ServerFactoryTest.createTestServer(admin, true); @@ -872,7 +875,7 @@ public void testChannelSubscription() throws Exception { childChan.setParentChannel(baseChan); SystemHandler sh = new SystemHandler(taskomaticApi, xmlRpcSystemHelper, systemEntitlementManager, systemManager, - serverGroupManager); + serverGroupManager, new CloudPaygManager()); int return1 = sh.setBaseChannel(admin, server.getId().intValue(), baseChan.getLabel()); int return2 = sh.setChildChannels(admin, server.getId().intValue(), List.of(childChan.getLabel())); diff --git a/java/code/src/com/redhat/rhn/frontend/xmlrpc/packages/PackagesHandler.java b/java/code/src/com/redhat/rhn/frontend/xmlrpc/packages/PackagesHandler.java index e4fa7a472c55..1da9282fd6ca 100644 --- a/java/code/src/com/redhat/rhn/frontend/xmlrpc/packages/PackagesHandler.java +++ b/java/code/src/com/redhat/rhn/frontend/xmlrpc/packages/PackagesHandler.java @@ -595,11 +595,12 @@ public byte[] getPackage(User loggedInUser, Integer pid) throws IOException { } byte[] toReturn = new byte[(int) file.length()]; - BufferedInputStream br = new BufferedInputStream(new FileInputStream(file)); - if (br.read(toReturn) != file.length()) { - throw new PackageDownloadException("api.package.download.ioerror"); + try (BufferedInputStream br = new BufferedInputStream(new FileInputStream(file))) { + if (br.read(toReturn) != file.length()) { + throw new PackageDownloadException("api.package.download.ioerror"); + } + return toReturn; } - return toReturn; } } diff --git a/java/code/src/com/redhat/rhn/frontend/xmlrpc/proxy/test/ProxyHandlerTest.java b/java/code/src/com/redhat/rhn/frontend/xmlrpc/proxy/test/ProxyHandlerTest.java index 4afdcd0e69bd..1c810f56a357 100644 --- a/java/code/src/com/redhat/rhn/frontend/xmlrpc/proxy/test/ProxyHandlerTest.java +++ b/java/code/src/com/redhat/rhn/frontend/xmlrpc/proxy/test/ProxyHandlerTest.java @@ -36,6 +36,7 @@ import com.redhat.rhn.testing.RhnJmockBaseTestCase; import com.redhat.rhn.testing.UserTestUtils; +import com.suse.cloud.CloudPaygManager; import com.suse.manager.ssl.SSLCertData; import com.suse.manager.ssl.SSLCertPair; import com.suse.manager.webui.controllers.bootstrap.RegularMinionBootstrapper; @@ -62,9 +63,11 @@ public class ProxyHandlerTest extends RhnJmockBaseTestCase { private final SaltApi saltApi = new TestSaltApi(); private final SystemQuery systemQuery = new TestSystemQuery(); + private final CloudPaygManager paygManager = new CloudPaygManager(); private final RegularMinionBootstrapper regularMinionBootstrapper = new RegularMinionBootstrapper( - systemQuery, saltApi); - private final SSHMinionBootstrapper sshMinionBootstrapper = new SSHMinionBootstrapper(systemQuery, saltApi); + systemQuery, saltApi, paygManager); + private final SSHMinionBootstrapper sshMinionBootstrapper = + new SSHMinionBootstrapper(systemQuery, saltApi, paygManager); private final XmlRpcSystemHelper xmlRpcSystemHelper = new XmlRpcSystemHelper( regularMinionBootstrapper, sshMinionBootstrapper diff --git a/java/code/src/com/redhat/rhn/frontend/xmlrpc/sync/content/ContentSyncHandler.java b/java/code/src/com/redhat/rhn/frontend/xmlrpc/sync/content/ContentSyncHandler.java index 6c63cf156d37..13e8af0efeb2 100644 --- a/java/code/src/com/redhat/rhn/frontend/xmlrpc/sync/content/ContentSyncHandler.java +++ b/java/code/src/com/redhat/rhn/frontend/xmlrpc/sync/content/ContentSyncHandler.java @@ -315,7 +315,7 @@ public Integer addCredentials(User loggedInUser, String username, String passwor public Integer deleteCredentials(User loggedInUser, String username) throws ContentSyncException { ensureSatAdmin(loggedInUser); - for (Credentials c : CredentialsFactory.lookupSCCCredentials()) { + for (Credentials c : CredentialsFactory.listSCCCredentials()) { if (c.getUsername().equals(username)) { new MirrorCredentialsManager().deleteMirrorCredentials(c.getId(), null); break; diff --git a/java/code/src/com/redhat/rhn/frontend/xmlrpc/system/SystemHandler.java b/java/code/src/com/redhat/rhn/frontend/xmlrpc/system/SystemHandler.java index 8847277be4cf..14ceb76c9dff 100644 --- a/java/code/src/com/redhat/rhn/frontend/xmlrpc/system/SystemHandler.java +++ b/java/code/src/com/redhat/rhn/frontend/xmlrpc/system/SystemHandler.java @@ -21,6 +21,7 @@ import static java.util.stream.Collectors.toSet; import com.redhat.rhn.FaultException; +import com.redhat.rhn.GlobalInstanceHolder; import com.redhat.rhn.common.client.ClientCertificate; import com.redhat.rhn.common.conf.ConfigDefaults; import com.redhat.rhn.common.db.datasource.DataResult; @@ -81,6 +82,7 @@ import com.redhat.rhn.domain.server.MinionServerFactory; import com.redhat.rhn.domain.server.NetworkInterface; import com.redhat.rhn.domain.server.Note; +import com.redhat.rhn.domain.server.Pillar; import com.redhat.rhn.domain.server.PushClient; import com.redhat.rhn.domain.server.Server; import com.redhat.rhn.domain.server.ServerFQDN; @@ -159,6 +161,7 @@ import com.redhat.rhn.manager.channel.ChannelManager; import com.redhat.rhn.manager.distupgrade.DistUpgradeException; import com.redhat.rhn.manager.distupgrade.DistUpgradeManager; +import com.redhat.rhn.manager.distupgrade.DistUpgradePaygException; import com.redhat.rhn.manager.entitlement.EntitlementManager; import com.redhat.rhn.manager.errata.ErrataManager; import com.redhat.rhn.manager.kickstart.KickstartFormatter; @@ -181,6 +184,7 @@ import com.redhat.rhn.manager.token.ActivationKeyManager; import com.redhat.rhn.taskomatic.TaskomaticApi; +import com.suse.cloud.CloudPaygManager; import com.suse.manager.api.ApiIgnore; import com.suse.manager.api.ReadOnly; import com.suse.manager.virtualization.VirtualizationActionHelper; @@ -239,24 +243,34 @@ public class SystemHandler extends BaseHandler { private SystemEntitlementManager systemEntitlementManager; private SystemManager systemManager; private final ServerGroupManager serverGroupManager; + private CloudPaygManager cloudPaygManager; /** * Instantiates a new system handler. * - * @param taskomaticApiIn the taskomatic api - * @param xmlRpcSystemHelperIn the xml rpc system helper + * @param taskomaticApiIn the taskomatic api + * @param xmlRpcSystemHelperIn the xml rpc system helper * @param systemEntitlementManagerIn the system entitlement manager - * @param systemManagerIn the system manager + * @param systemManagerIn the system manager * @param serverGroupManagerIn + * @param cloudPaygManagerIn the PAYG manager. If null, the one from GlobalInstanceHolder is used. */ public SystemHandler(TaskomaticApi taskomaticApiIn, XmlRpcSystemHelper xmlRpcSystemHelperIn, - SystemEntitlementManager systemEntitlementManagerIn, - SystemManager systemManagerIn, ServerGroupManager serverGroupManagerIn) { + SystemEntitlementManager systemEntitlementManagerIn, + SystemManager systemManagerIn, ServerGroupManager serverGroupManagerIn, + CloudPaygManager cloudPaygManagerIn) { this.taskomaticApi = taskomaticApiIn; this.xmlRpcSystemHelper = xmlRpcSystemHelperIn; this.systemEntitlementManager = systemEntitlementManagerIn; this.systemManager = systemManagerIn; this.serverGroupManager = serverGroupManagerIn; + if (cloudPaygManagerIn == null) { + this.cloudPaygManager = GlobalInstanceHolder.PAYG_MANAGER; + } + else { + this.cloudPaygManager = cloudPaygManagerIn; + } + } /** @@ -5672,8 +5686,7 @@ public Map transitionDataForSystem(String clientCert) throws FileNotFoundExcepti break; } - try { - BufferedReader br = new BufferedReader(new FileReader(file)); + try (BufferedReader br = new BufferedReader(new FileReader(file))) { String line; String[] header = null; Integer systemIdPos = null, uuidPos = null; @@ -5719,7 +5732,6 @@ public Map transitionDataForSystem(String clientCert) throws FileNotFoundExcepti } } } - br.close(); } catch (IOException e) { log.warn("Cannot read {}", file.getName()); @@ -7844,7 +7856,8 @@ public Long scheduleProductMigration(User loggedInUser, Integer sid, String targ channelIDs.add(channel.getId()); } return DistUpgradeManager.scheduleDistUpgrade(loggedInUser, server, - targetProducts, channelIDs, dryRun, allowVendorChange, earliestOccurrence); + targetProducts, channelIDs, dryRun, allowVendorChange, + earliestOccurrence, cloudPaygManager.isPaygInstance()); } // Consider alternatives (cloned channel trees) @@ -7854,13 +7867,18 @@ public Long scheduleProductMigration(User loggedInUser, Integer sid, String targ if (clonedBaseChannel.getLabel().equals(baseChannelLabel)) { channelIDs.addAll(alternatives.get(clonedBaseChannel)); return DistUpgradeManager.scheduleDistUpgrade(loggedInUser, server, - targetProducts, channelIDs, dryRun, allowVendorChange, earliestOccurrence); + targetProducts, channelIDs, dryRun, allowVendorChange, + earliestOccurrence, cloudPaygManager.isPaygInstance()); } } } catch (com.redhat.rhn.taskomatic.TaskomaticApiException e) { throw new TaskomaticApiException(e.getMessage()); } + catch (DistUpgradePaygException e) { + // We forbid product migration in SUMA PAYG instance in certain situations + throw new FaultException(-1, "productMigrationNotAllowedPayg", e.getMessage()); + } } // We didn't find target products if we are still here @@ -7946,7 +7964,12 @@ public Long scheduleDistUpgrade(User loggedInUser, Integer sid, List cha try { channelIDs = DistUpgradeManager.performChannelChecks(channels, loggedInUser); return DistUpgradeManager.scheduleDistUpgrade(loggedInUser, server, null, - channelIDs, dryRun, allowVendorChange, earliestOccurrence); + channelIDs, dryRun, allowVendorChange, + earliestOccurrence, cloudPaygManager.isPaygInstance()); + } + catch (DistUpgradePaygException e) { + // We forbid product migration in SUMA PAYG instance in certain situations + throw new FaultException(-1, "productMigrationNotAllowedPayg", e.getMessage()); } catch (DistUpgradeException e) { throw new FaultException(-1, "distUpgradeChannelError", e.getMessage()); @@ -8571,6 +8594,122 @@ public List listSystemGroupsForSystemsWithEntitlement(User logg return this.systemManager.retrieveSystemGroupsForSystemsWithEntitlementAndUser(loggedInUser, entitlement); } + /** + * Get system pillar + * + * @param loggedInUser The Current User + * @param systemId the system id + * @param category category of the pillar data + * @return the pillar + * + * @apidoc.doc Get pillar data of given category for given system + * @apidoc.param #session_key() + * @apidoc.param #param("int", "systemId") + * @apidoc.param #param("string", "category") + * @apidoc.returntype #param("struct", "the pillar data") + */ + @ReadOnly + public Map getPillar(User loggedInUser, Integer systemId, String category) { + ensureImageAdmin(loggedInUser); + Optional opt = MinionServerFactory.lookupById(systemId.longValue()); + if (!opt.isPresent()) { + throw new NoSuchSystemException(); + } + return opt.get().getPillarByCategory(category) + .map(p -> p.getPillar()) + .orElseGet(() -> new HashMap()); + } + + /** + * Get system pillar + * + * @param loggedInUser The Current User + * @param minionId the system id + * @param category category of the pillar data + * @return the pillar + * + * @apidoc.doc Get pillar data of given category for given system + * @apidoc.param #session_key() + * @apidoc.param #param("int", "minionId") + * @apidoc.param #param("string", "category") + * @apidoc.returntype #param("struct", "the pillar data") + */ + @ReadOnly + public Map getPillar(User loggedInUser, String minionId, String category) { + ensureImageAdmin(loggedInUser); + Optional opt = MinionServerFactory.findByMinionId(minionId); + if (!opt.isPresent()) { + throw new NoSuchSystemException(); + } + return opt.get().getPillarByCategory(category) + .map(p -> p.getPillar()) + .orElseGet(() -> new HashMap()); + } + + /** + * Set system pillar + * + * @param loggedInUser The Current User + * @param systemId the systemd id + * @param category category to store the pillar data under + * @param pillarData the new pillar + * @return 1 on success + * + * @apidoc.doc Set pillar data of a system. + * @apidoc.param #session_key() + * @apidoc.param #param("int", "systemId") + * @apidoc.param #param("struct", "pillarData") + * @apidoc.returntype #return_int_success() + */ + public int setPillar(User loggedInUser, Integer systemId, String category, Map pillarData) { + ensureImageAdmin(loggedInUser); + Optional opt = MinionServerFactory.lookupById(systemId.longValue()); + if (!opt.isPresent()) { + throw new NoSuchSystemException(); + } + MinionServer minion = opt.get(); + minion.getPillarByCategory(category).ifPresentOrElse( + p -> p.setPillar(pillarData), + () -> { + Pillar newPillar = new Pillar(category, pillarData, minion); + HibernateFactory.getSession().save(newPillar); + minion.addPillar(newPillar); + }); + return 1; + } + + /** + * Set system pillar + * + * @param loggedInUser The Current User + * @param minionId the systemd id + * @param category category to store the pillar data under + * @param pillarData the new pillar + * @return 1 on success + * + * @apidoc.doc Set pillar data of a system. + * @apidoc.param #session_key() + * @apidoc.param #param("int", "systemId") + * @apidoc.param #param("struct", "pillarData") + * @apidoc.returntype #return_int_success() + */ + public int setPillar(User loggedInUser, String minionId, String category, Map pillarData) { + ensureImageAdmin(loggedInUser); + Optional opt = MinionServerFactory.findByMinionId(minionId); + if (!opt.isPresent()) { + throw new NoSuchSystemException(); + } + MinionServer minion = opt.get(); + minion.getPillarByCategory(category).ifPresentOrElse( + p -> p.setPillar(pillarData), + () -> { + Pillar newPillar = new Pillar(category, pillarData, minion); + HibernateFactory.getSession().save(newPillar); + minion.addPillar(newPillar); + }); + return 1; + } + /** * Refresh all the pillar data of a list of systems. * diff --git a/java/code/src/com/redhat/rhn/frontend/xmlrpc/system/config/test/ServerConfigHandlerTest.java b/java/code/src/com/redhat/rhn/frontend/xmlrpc/system/config/test/ServerConfigHandlerTest.java index e283655e49f5..08c9a5d0f011 100644 --- a/java/code/src/com/redhat/rhn/frontend/xmlrpc/system/config/test/ServerConfigHandlerTest.java +++ b/java/code/src/com/redhat/rhn/frontend/xmlrpc/system/config/test/ServerConfigHandlerTest.java @@ -53,6 +53,7 @@ import com.redhat.rhn.testing.ConfigTestUtils; import com.redhat.rhn.testing.TestUtils; +import com.suse.cloud.CloudPaygManager; import com.suse.manager.webui.controllers.bootstrap.RegularMinionBootstrapper; import com.suse.manager.webui.controllers.bootstrap.SSHMinionBootstrapper; import com.suse.manager.webui.services.iface.SaltApi; @@ -89,8 +90,10 @@ public class ServerConfigHandlerTest extends BaseHandlerTestCase { private TaskomaticApi taskomaticApi = new TaskomaticApi(); private SaltApi saltApi = new TestSaltApi(); private SystemQuery systemQuery = new TestSystemQuery(); - private RegularMinionBootstrapper regularMinionBootstrapper = new RegularMinionBootstrapper(systemQuery, saltApi); - private SSHMinionBootstrapper sshMinionBootstrapper = new SSHMinionBootstrapper(systemQuery, saltApi); + private CloudPaygManager paygManager = new CloudPaygManager(); + private RegularMinionBootstrapper regularMinionBootstrapper = + new RegularMinionBootstrapper(systemQuery, saltApi, paygManager); + private SSHMinionBootstrapper sshMinionBootstrapper = new SSHMinionBootstrapper(systemQuery, saltApi, paygManager); private XmlRpcSystemHelper xmlRpcSystemHelper = new XmlRpcSystemHelper( regularMinionBootstrapper, sshMinionBootstrapper diff --git a/java/code/src/com/redhat/rhn/frontend/xmlrpc/system/provisioning/snapshot/test/SnapshotHandlerTest.java b/java/code/src/com/redhat/rhn/frontend/xmlrpc/system/provisioning/snapshot/test/SnapshotHandlerTest.java index 1128641147bb..0c547643fc11 100644 --- a/java/code/src/com/redhat/rhn/frontend/xmlrpc/system/provisioning/snapshot/test/SnapshotHandlerTest.java +++ b/java/code/src/com/redhat/rhn/frontend/xmlrpc/system/provisioning/snapshot/test/SnapshotHandlerTest.java @@ -30,6 +30,7 @@ import com.redhat.rhn.testing.ServerGroupTestUtils; import com.redhat.rhn.testing.TestUtils; +import com.suse.cloud.CloudPaygManager; import com.suse.manager.webui.controllers.bootstrap.RegularMinionBootstrapper; import com.suse.manager.webui.controllers.bootstrap.SSHMinionBootstrapper; import com.suse.manager.webui.services.iface.SaltApi; @@ -50,8 +51,10 @@ public class SnapshotHandlerTest extends BaseHandlerTestCase { private SaltApi saltApi = new TestSaltApi(); private SystemQuery systemQuery = new TestSystemQuery(); - private RegularMinionBootstrapper regularMinionBootstrapper = new RegularMinionBootstrapper(systemQuery, saltApi); - private SSHMinionBootstrapper sshMinionBootstrapper = new SSHMinionBootstrapper(systemQuery, saltApi); + private CloudPaygManager paygManager = new CloudPaygManager(); + private RegularMinionBootstrapper regularMinionBootstrapper = + new RegularMinionBootstrapper(systemQuery, saltApi, paygManager); + private SSHMinionBootstrapper sshMinionBootstrapper = new SSHMinionBootstrapper(systemQuery, saltApi, paygManager); private XmlRpcSystemHelper xmlRpcSystemHelper = new XmlRpcSystemHelper( regularMinionBootstrapper, sshMinionBootstrapper diff --git a/java/code/src/com/redhat/rhn/frontend/xmlrpc/system/test/ServerGroupHandlerTest.java b/java/code/src/com/redhat/rhn/frontend/xmlrpc/system/test/ServerGroupHandlerTest.java index 0baebae994cc..d287f9eb5753 100644 --- a/java/code/src/com/redhat/rhn/frontend/xmlrpc/system/test/ServerGroupHandlerTest.java +++ b/java/code/src/com/redhat/rhn/frontend/xmlrpc/system/test/ServerGroupHandlerTest.java @@ -42,6 +42,7 @@ import com.redhat.rhn.testing.TestUtils; import com.redhat.rhn.testing.UserTestUtils; +import com.suse.cloud.CloudPaygManager; import com.suse.manager.webui.controllers.bootstrap.RegularMinionBootstrapper; import com.suse.manager.webui.controllers.bootstrap.SSHMinionBootstrapper; import com.suse.manager.webui.services.iface.SaltApi; @@ -63,8 +64,10 @@ public class ServerGroupHandlerTest extends BaseHandlerTestCase { private SaltApi saltApi = new TestSaltApi(); private SystemQuery systemQuery = new TestSystemQuery(); - private RegularMinionBootstrapper regularMinionBootstrapper = new RegularMinionBootstrapper(systemQuery, saltApi); - private SSHMinionBootstrapper sshMinionBootstrapper = new SSHMinionBootstrapper(systemQuery, saltApi); + private CloudPaygManager paygManager = new CloudPaygManager(); + private RegularMinionBootstrapper regularMinionBootstrapper = + new RegularMinionBootstrapper(systemQuery, saltApi, paygManager); + private SSHMinionBootstrapper sshMinionBootstrapper = new SSHMinionBootstrapper(systemQuery, saltApi, paygManager); private XmlRpcSystemHelper xmlRpcSystemHelper = new XmlRpcSystemHelper( regularMinionBootstrapper, sshMinionBootstrapper diff --git a/java/code/src/com/redhat/rhn/frontend/xmlrpc/system/test/SystemHandlerPtfTest.java b/java/code/src/com/redhat/rhn/frontend/xmlrpc/system/test/SystemHandlerPtfTest.java index ffa2bc3839f0..9d529b52fa86 100644 --- a/java/code/src/com/redhat/rhn/frontend/xmlrpc/system/test/SystemHandlerPtfTest.java +++ b/java/code/src/com/redhat/rhn/frontend/xmlrpc/system/test/SystemHandlerPtfTest.java @@ -46,6 +46,7 @@ import com.redhat.rhn.taskomatic.TaskomaticApi; import com.redhat.rhn.testing.PackageTestUtils; +import com.suse.cloud.CloudPaygManager; import com.suse.manager.virtualization.VirtManagerSalt; import com.suse.manager.webui.controllers.bootstrap.RegularMinionBootstrapper; import com.suse.manager.webui.controllers.bootstrap.SSHMinionBootstrapper; @@ -104,9 +105,10 @@ public void setUp() throws Exception { TaskomaticApi taskomaticApi = new TaskomaticApi(); SystemQuery systemQuery = new TestSystemQuery(); SaltApi saltApi = new TestSaltApi(); + CloudPaygManager paygMgr = new CloudPaygManager(); - RegularMinionBootstrapper regularBootstrapper = new RegularMinionBootstrapper(systemQuery, saltApi); - SSHMinionBootstrapper sshBootstrapper = new SSHMinionBootstrapper(systemQuery, saltApi); + RegularMinionBootstrapper regularBootstrapper = new RegularMinionBootstrapper(systemQuery, saltApi, paygMgr); + SSHMinionBootstrapper sshBootstrapper = new SSHMinionBootstrapper(systemQuery, saltApi, paygMgr); XmlRpcSystemHelper xmlRpcHelper = new XmlRpcSystemHelper(regularBootstrapper, sshBootstrapper); ServerGroupManager groupManager = new ServerGroupManager(saltApi); @@ -119,7 +121,8 @@ public void setUp() throws Exception { SystemEntitlementManager entitlementManager = new SystemEntitlementManager(unentitler, entitler); SystemManager systemManager = new SystemManager(ServerFactory.SINGLETON, ServerGroupFactory.SINGLETON, saltApi); - handler = new SystemHandler(taskomaticApi, xmlRpcHelper, entitlementManager, systemManager, groupManager); + handler = new SystemHandler(taskomaticApi, xmlRpcHelper, entitlementManager, systemManager, groupManager, + new CloudPaygManager()); standard = PackageTest.createTestPackage(admin.getOrg()); standardUpdated = PackageTestUtils.newVersionOfPackage(standard, null, "2.0.0", null, admin.getOrg()); diff --git a/java/code/src/com/redhat/rhn/frontend/xmlrpc/system/test/SystemHandlerTest.java b/java/code/src/com/redhat/rhn/frontend/xmlrpc/system/test/SystemHandlerTest.java index 54d13f90ef09..9f43a9d07e24 100644 --- a/java/code/src/com/redhat/rhn/frontend/xmlrpc/system/test/SystemHandlerTest.java +++ b/java/code/src/com/redhat/rhn/frontend/xmlrpc/system/test/SystemHandlerTest.java @@ -164,6 +164,7 @@ import com.redhat.rhn.testing.TestUtils; import com.redhat.rhn.testing.UserTestUtils; +import com.suse.cloud.CloudPaygManager; import com.suse.manager.virtualization.VirtManagerSalt; import com.suse.manager.webui.controllers.bootstrap.RegularMinionBootstrapper; import com.suse.manager.webui.controllers.bootstrap.SSHMinionBootstrapper; @@ -213,8 +214,10 @@ public class SystemHandlerTest extends BaseHandlerTestCase { private TaskomaticApi taskomaticApi = new TaskomaticApi(); private final SystemQuery systemQuery = new TestSystemQuery(); private final SaltApi saltApi = new TestSaltApi(); - private RegularMinionBootstrapper regularMinionBootstrapper = new RegularMinionBootstrapper(systemQuery, saltApi); - private SSHMinionBootstrapper sshMinionBootstrapper = new SSHMinionBootstrapper(systemQuery, saltApi); + private final CloudPaygManager paygManager = new CloudPaygManager(); + private RegularMinionBootstrapper regularMinionBootstrapper = + new RegularMinionBootstrapper(systemQuery, saltApi, paygManager); + private SSHMinionBootstrapper sshMinionBootstrapper = new SSHMinionBootstrapper(systemQuery, saltApi, paygManager); private XmlRpcSystemHelper xmlRpcSystemHelper = new XmlRpcSystemHelper( regularMinionBootstrapper, sshMinionBootstrapper @@ -230,7 +233,7 @@ public class SystemHandlerTest extends BaseHandlerTestCase { new SystemManager(ServerFactory.SINGLETON, ServerGroupFactory.SINGLETON, saltApi); private SystemHandler handler = new SystemHandler(taskomaticApi, xmlRpcSystemHelper, systemEntitlementManager, systemManager, - serverGroupManager); + serverGroupManager, new CloudPaygManager()); @RegisterExtension protected final Mockery mockContext = new JUnit5Mockery() {{ @@ -3449,6 +3452,80 @@ public void testRefreshPillar() throws Exception { assertEquals(Integer.valueOf(server3.getId().intValue()), skipped.get(0)); } + /** + * Test the SystemHandler.getPillar method + * @throws Exception if anything fail + */ + @Test + public void testGetPillar() throws Exception { + MinionServer minion = MinionServerFactoryTest.createTestMinionServer(admin); + Pillar newPillar = new Pillar("new_pillar", Collections.singletonMap("key", "value"), minion); + minion.addPillar(newPillar); + minion = TestUtils.saveAndReload(minion); + assertEquals(2, minion.getPillars().size()); + + SystemHandler systemHandler = getMockedHandler(); + Map pillar = systemHandler.getPillar(admin, minion.getId().intValue(), "new_pillar"); + assertNotNull(pillar); + assertEquals("value", pillar.get("key")); + } + + /** + * Test the SystemHandler.setPillar method + * @throws Exception if anything fail + */ + @Test + public void testSetPillar() throws Exception { + MinionServer minion = MinionServerFactoryTest.createTestMinionServer(admin); + assertEquals(1, minion.getPillars().size()); + + SystemHandler systemHandler = getMockedHandler(); + Map pillarData = Collections.singletonMap("key", "value"); + systemHandler.setPillar(admin, minion.getId().intValue(), "stored_pillar", pillarData); + + minion = reload(minion); + assertEquals(2, minion.getPillars().size()); + assertTrue(minion.getPillarByCategory("stored_pillar").isPresent()); + assertEquals("value", minion.getPillarByCategory("stored_pillar").get().getPillar().get("key")); + } + + /** + * Test the SystemHandler.getPillar method + * @throws Exception if anything fail + */ + @Test + public void testGetPillarByMinionId() throws Exception { + MinionServer minion = MinionServerFactoryTest.createTestMinionServer(admin); + Pillar newPillar = new Pillar("new_pillar", Collections.singletonMap("key", "value"), minion); + minion.addPillar(newPillar); + minion = TestUtils.saveAndReload(minion); + assertEquals(2, minion.getPillars().size()); + + SystemHandler systemHandler = getMockedHandler(); + Map pillar = systemHandler.getPillar(admin, minion.getMinionId(), "new_pillar"); + assertNotNull(pillar); + assertEquals("value", pillar.get("key")); + } + + /** + * Test the SystemHandler.setPillar method + * @throws Exception if anything fail + */ + @Test + public void testSetPillarByMinionId() throws Exception { + MinionServer minion = MinionServerFactoryTest.createTestMinionServer(admin); + assertEquals(1, minion.getPillars().size()); + + SystemHandler systemHandler = getMockedHandler(); + Map pillarData = Collections.singletonMap("key", "value"); + systemHandler.setPillar(admin, minion.getMinionId(), "stored_pillar", pillarData); + + minion = reload(minion); + assertEquals(2, minion.getPillars().size()); + assertTrue(minion.getPillarByCategory("stored_pillar").isPresent()); + assertEquals("value", minion.getPillarByCategory("stored_pillar").get().getPillar().get("key")); + } + /** * Test the SystemHandler.changeProxy method * @throws Exception if anything failed @@ -3568,7 +3645,7 @@ public void testChangeProxy() throws Exception { private SystemHandler getMockedHandler() throws Exception { TaskomaticApi taskomaticMock = mockContext.mock(TaskomaticApi.class); SystemHandler systemHandler = new SystemHandler(taskomaticMock, xmlRpcSystemHelper, systemEntitlementManager, - systemManager, serverGroupManager); + systemManager, serverGroupManager, new CloudPaygManager()); mockContext.checking(new Expectations() {{ allowing(taskomaticMock).scheduleActionExecution(with(any(Action.class))); diff --git a/java/code/src/com/redhat/rhn/frontend/xmlrpc/user/external/test/UserExternalHandlerTest.java b/java/code/src/com/redhat/rhn/frontend/xmlrpc/user/external/test/UserExternalHandlerTest.java index 44405b768bba..dd0f63c58921 100644 --- a/java/code/src/com/redhat/rhn/frontend/xmlrpc/user/external/test/UserExternalHandlerTest.java +++ b/java/code/src/com/redhat/rhn/frontend/xmlrpc/user/external/test/UserExternalHandlerTest.java @@ -32,6 +32,7 @@ import com.redhat.rhn.manager.system.ServerGroupManager; import com.redhat.rhn.testing.TestUtils; +import com.suse.cloud.CloudPaygManager; import com.suse.manager.webui.controllers.bootstrap.RegularMinionBootstrapper; import com.suse.manager.webui.controllers.bootstrap.SSHMinionBootstrapper; import com.suse.manager.webui.services.iface.SaltApi; @@ -130,8 +131,10 @@ public void testExternalGroupToServerGroupMap() { String desc = TestUtils.randomString(); SaltApi saltApi = new TestSaltApi(); SystemQuery systemQuery = new TestSystemQuery(); - RegularMinionBootstrapper regularMinionBootstrapper = new RegularMinionBootstrapper(systemQuery, saltApi); - SSHMinionBootstrapper sshMinionBootstrapper = new SSHMinionBootstrapper(systemQuery, saltApi); + CloudPaygManager paygManager = new CloudPaygManager(); + RegularMinionBootstrapper regularMinionBootstrapper = + new RegularMinionBootstrapper(systemQuery, saltApi, paygManager); + SSHMinionBootstrapper sshMinionBootstrapper = new SSHMinionBootstrapper(systemQuery, saltApi, paygManager); XmlRpcSystemHelper xmlRpcSystemHelper = new XmlRpcSystemHelper( regularMinionBootstrapper, sshMinionBootstrapper diff --git a/java/code/src/com/redhat/rhn/frontend/xmlrpc/util/MapBuilder.java b/java/code/src/com/redhat/rhn/frontend/xmlrpc/util/MapBuilder.java index 1b8625279e44..3bb7ad4c92ef 100644 --- a/java/code/src/com/redhat/rhn/frontend/xmlrpc/util/MapBuilder.java +++ b/java/code/src/com/redhat/rhn/frontend/xmlrpc/util/MapBuilder.java @@ -83,7 +83,7 @@ public Map mapify(Object bean) { } } catch (Exception e) { - log.error(e); + log.error(e.getMessage(), e); throw new RuntimeException("Caught error trying to describe a bean. ", e); } return retval; diff --git a/java/code/src/com/redhat/rhn/manager/action/ActionManager.java b/java/code/src/com/redhat/rhn/manager/action/ActionManager.java index 6c73a4c4192c..3ee1540e30b7 100644 --- a/java/code/src/com/redhat/rhn/manager/action/ActionManager.java +++ b/java/code/src/com/redhat/rhn/manager/action/ActionManager.java @@ -1188,37 +1188,37 @@ public static PackageAction schedulePackageRefresh(User scheduler, Server server /** * Schedule a package list refresh without a user. * - * @param schedulerOrg the organization the server belongs to + * @param user the user that scheduled the action * @param server the server * @return the scheduled PackageRefreshListAction * @throws TaskomaticApiException if there was a Taskomatic error * (typically: Taskomatic is down) */ - public static PackageAction schedulePackageRefresh(Org schedulerOrg, Server server) + public static PackageAction schedulePackageRefresh(Optional user, Server server) throws TaskomaticApiException { Date earliest = new Date(); - return schedulePackageRefresh(schedulerOrg, server, earliest); + return schedulePackageRefresh(user, server, earliest); } /** * Schedule a package list refresh without a user. * - * @param schedulerOrg the organization the server belongs to + * @param user the organization the server belongs to * @param server the server * @param earliest The earliest time this action should be run. * @return the scheduled PackageRefreshListAction * @throws TaskomaticApiException if there was a Taskomatic error * (typically: Taskomatic is down) */ - public static PackageAction schedulePackageRefresh(Org schedulerOrg, Server server, + public static PackageAction schedulePackageRefresh(Optional user, Server server, Date earliest) throws TaskomaticApiException { checkSaltOrManagementEntitlement(server.getId()); Action action = ActionFactory.createAction( ActionFactory.TYPE_PACKAGES_REFRESH_LIST); action.setName(ActionFactory.TYPE_PACKAGES_REFRESH_LIST.getName()); - action.setOrg(schedulerOrg); - action.setSchedulerUser(null); + action.setOrg(server.getOrg()); + action.setSchedulerUser(user.orElse(null)); action.setEarliestAction(earliest); ServerAction sa = new ServerAction(); diff --git a/java/code/src/com/redhat/rhn/manager/action/test/MinionActionManagerTest.java b/java/code/src/com/redhat/rhn/manager/action/test/MinionActionManagerTest.java index b1b1346934af..2b005b8fdba8 100644 --- a/java/code/src/com/redhat/rhn/manager/action/test/MinionActionManagerTest.java +++ b/java/code/src/com/redhat/rhn/manager/action/test/MinionActionManagerTest.java @@ -55,6 +55,7 @@ import com.redhat.rhn.testing.JMockBaseTestCaseWithUser; import com.redhat.rhn.testing.ServerTestUtils; +import com.suse.cloud.CloudPaygManager; import com.suse.manager.virtualization.VirtManagerSalt; import com.suse.manager.webui.controllers.bootstrap.RegularMinionBootstrapper; import com.suse.manager.webui.controllers.bootstrap.SSHMinionBootstrapper; @@ -104,8 +105,10 @@ public class MinionActionManagerTest extends JMockBaseTestCaseWithUser { new SystemUnentitler(virtManager, monitoringManager, serverGroupManager), new SystemEntitler(saltApi, virtManager, monitoringManager, serverGroupManager) ); - private RegularMinionBootstrapper regularMinionBootstrapper = new RegularMinionBootstrapper(systemQuery, saltApi); - private SSHMinionBootstrapper sshMinionBootstrapper = new SSHMinionBootstrapper(systemQuery, saltApi); + private final CloudPaygManager paygManager = new CloudPaygManager(); + private RegularMinionBootstrapper regularMinionBootstrapper = + new RegularMinionBootstrapper(systemQuery, saltApi, paygManager); + private SSHMinionBootstrapper sshMinionBootstrapper = new SSHMinionBootstrapper(systemQuery, saltApi, paygManager); private XmlRpcSystemHelper xmlRpcSystemHelper = new XmlRpcSystemHelper( regularMinionBootstrapper, sshMinionBootstrapper @@ -148,7 +151,7 @@ public void testPackageInstallWithStagingInsideWindow() throws Exception { MinionActionManager.setTaskomaticApi(taskomaticMock); SystemHandler handler = new SystemHandler(taskomaticMock, xmlRpcSystemHelper, systemEntitlementManager, - systemManager, serverGroupManager); + systemManager, serverGroupManager, new CloudPaygManager()); context().checking(new Expectations() { { Matcher> minionMatcher = AllOf.allOf(IsMapContaining.hasKey(minion1.getId())); @@ -199,7 +202,7 @@ public void testPackageInstallWithStagingBeforeWindow() throws Exception { SystemHandler handler = new SystemHandler(taskomaticMock, xmlRpcSystemHelper, systemEntitlementManager, - systemManager, serverGroupManager); + systemManager, serverGroupManager, new CloudPaygManager()); context().checking(new Expectations() { { Matcher> minionMatcher = @@ -251,7 +254,7 @@ public void testPackageInstallWithStagingAfterWindow() throws Exception { MinionActionManager.setTaskomaticApi(taskomaticMock); SystemHandler handler = new SystemHandler(taskomaticMock, xmlRpcSystemHelper, systemEntitlementManager, - systemManager, serverGroupManager); + systemManager, serverGroupManager, new CloudPaygManager()); context().checking(new Expectations() { { exactly(1).of(taskomaticMock) @@ -302,7 +305,7 @@ public void testPackageInstallWithStagingBeforeWindowExceedingDuration() MinionActionManager.setTaskomaticApi(taskomaticMock); SystemHandler handler = new SystemHandler(taskomaticMock, xmlRpcSystemHelper, systemEntitlementManager, - systemManager, serverGroupManager); + systemManager, serverGroupManager, new CloudPaygManager()); context().checking(new Expectations() {{ Matcher> minionMatcher = AllOf.allOf(IsMapContaining.hasKey(minion1.getId())); @@ -353,7 +356,7 @@ public void testPackageInstallWithoutStaging() throws Exception { MinionActionManager.setTaskomaticApi(taskomaticMock); SystemHandler handler = new SystemHandler(taskomaticMock, xmlRpcSystemHelper, systemEntitlementManager, - systemManager, serverGroupManager); + systemManager, serverGroupManager, new CloudPaygManager()); context().checking(new Expectations() { { exactly(1).of(taskomaticMock) diff --git a/java/code/src/com/redhat/rhn/manager/audit/AuditManager.java b/java/code/src/com/redhat/rhn/manager/audit/AuditManager.java index bf507803394d..8bec5c264314 100644 --- a/java/code/src/com/redhat/rhn/manager/audit/AuditManager.java +++ b/java/code/src/com/redhat/rhn/manager/audit/AuditManager.java @@ -29,6 +29,7 @@ import java.io.FileWriter; import java.io.IOException; import java.nio.file.Path; +import java.util.Arrays; import java.util.Collections; import java.util.Date; import java.util.HashMap; @@ -62,13 +63,11 @@ private AuditManager() { * @param username User marking the review * @throws IOException Thrown when the audit review log isn't writeable */ - public static void markReviewed(String machine, Long start, Long end, - String username) throws IOException { - FileWriter fwr = new FileWriter(reviewFile, true); // append! - - fwr.write(machine + "," + (start / 1000) + "," + (end / 1000) + "," + - username + "," + (new Date().getTime() / 1000) + "\n"); - fwr.close(); + public static void markReviewed(String machine, Long start, Long end, String username) throws IOException { + try (FileWriter fwr = new FileWriter(reviewFile, true)) { // append! + fwr.write(machine + "," + (start / 1000) + "," + (end / 1000) + "," + + username + "," + (new Date().getTime() / 1000) + "\n"); + } } /** @@ -371,87 +370,74 @@ public static DataResult getMachineReviewSections( * @throws IOException Throws when the audit review file is unreadable * @return An AuditReviewDto, possibly with review info set */ - public static AuditReviewDto getReviewInfo(String machine, long start, - long end) throws IOException { - BufferedReader brdr; + public static AuditReviewDto getReviewInfo(String machine, long start, long end) throws IOException { Date reviewedOn = null; String str, part1, reviewedBy = null; String[] revInfo; part1 = machine + "," + (start / 1000) + "," + (end / 1000) + ","; - brdr = new BufferedReader(new FileReader(reviewFile)); + try (BufferedReader brdr = new BufferedReader(new FileReader(reviewFile))) { - while ((str = brdr.readLine()) != null) { - if (str.startsWith(part1)) { - revInfo = str.split(","); - reviewedBy = revInfo[3]; - reviewedOn = new Date(Long.parseLong(revInfo[4]) * 1000); - break; + while ((str = brdr.readLine()) != null) { + if (str.startsWith(part1)) { + revInfo = str.split(","); + reviewedBy = revInfo[3]; + reviewedOn = new Date(Long.parseLong(revInfo[4]) * 1000); + break; + } } + + return new AuditReviewDto(machine, new Date(start), new Date(end), reviewedBy, reviewedOn); } + } - brdr.close(); + private static List readAuditFile(File aufile, String[] types, Long start, Long end) throws IOException { + List events = new LinkedList<>(); - return new AuditReviewDto(machine, new Date(start), new Date(end), - reviewedBy, reviewedOn); - } + try (BufferedReader reader = new BufferedReader(new FileReader(aufile))) { + Map hmap = new LinkedHashMap<>(); - private static List readAuditFile(File aufile, String[] types, Long start, - Long end) throws IOException { - int milli = 0, serial = -1; - BufferedReader brdr; - LinkedHashMap hmap; - LinkedList events; - Long time = -1L; - String node = null, str, strtime = null; - - brdr = new BufferedReader(new FileReader(aufile)); - events = new LinkedList<>(); - hmap = new LinkedHashMap<>(); - - for (str = brdr.readLine(); str != null; str = brdr.readLine()) { - if (str.equals("")) { - strtime = hmap.remove("seconds"); - - try { - serial = Integer.parseInt(hmap.remove("serial")); - } - catch (NumberFormatException nfex) { - serial = -1; - } + for (String str = reader.readLine(); str != null; str = reader.readLine()) { + if (str.equals("")) { + int serial = getSerial(hmap); + long time = getTime(hmap); + + if (time >= start && time <= end && Arrays.asList(types).contains(hmap.get("type"))) { + events.add(new AuditDto(serial, new Date(time), 0, null, hmap)); + } - try { - time = Long.parseLong(strtime) * 1000; + hmap.clear(); } - catch (NumberFormatException nfex) { - time = 0L; + else if (str.indexOf('=') >= 0) { + hmap.put( + str.substring(0, str.indexOf('=')).trim(), + str.substring(str.indexOf('=') + 1).trim()); } - - if (time >= start && time <= end) { - for (String type : types) { - if (type.equals(hmap.get("type"))) { - events.add(new AuditDto( - serial, new Date(time), milli, node, hmap)); - break; - } - } + else { + log.debug("unknown string: {}", str); } - - hmap.clear(); - } - else if (str.indexOf('=') >= 0) { - hmap.put( - str.substring(0, str.indexOf('=')).trim(), - str.substring(str.indexOf('=') + 1).trim()); - } - else { - log.debug("unknown string: {}", str); } + + return events; } + } - brdr.close(); + private static Long getTime(Map hmap) { + try { + return Long.parseLong(hmap.remove("seconds")) * 1000; + } + catch (NumberFormatException ex) { + return 0L; + } + } - return events; + private static int getSerial(Map hmap) { + try { + return Integer.parseInt(hmap.remove("serial")); + } + catch (NumberFormatException nfex) { + return -1; + } } } diff --git a/java/code/src/com/redhat/rhn/manager/channel/CloneChannelCommand.java b/java/code/src/com/redhat/rhn/manager/channel/CloneChannelCommand.java index 30b5d91ec9b5..09449ae3adc8 100644 --- a/java/code/src/com/redhat/rhn/manager/channel/CloneChannelCommand.java +++ b/java/code/src/com/redhat/rhn/manager/channel/CloneChannelCommand.java @@ -15,6 +15,7 @@ package com.redhat.rhn.manager.channel; +import com.redhat.rhn.GlobalInstanceHolder; import com.redhat.rhn.common.hibernate.HibernateFactory; import com.redhat.rhn.domain.channel.Channel; import com.redhat.rhn.domain.channel.ChannelArch; @@ -26,6 +27,8 @@ import com.redhat.rhn.frontend.xmlrpc.InvalidParentChannelException; import com.redhat.rhn.manager.errata.ErrataManager; +import com.suse.cloud.CloudPaygManager; + import java.util.Optional; /** @@ -37,6 +40,7 @@ public class CloneChannelCommand extends CreateChannelCommand { private Channel original; private String DEFAULT_PREFIX = "clone-of-"; private boolean stripModularMetadata = false; + private CloudPaygManager cloudPaygManager; /** * Clone Behavior type @@ -65,6 +69,21 @@ public CloneChannelCommand(CloneBehavior cloneBehaviorIn, Channel cloneFrom) { gpgKeyFp = cloneFrom.getGPGKeyFp(); gpgCheck = cloneFrom.isGPGCheck(); archLabel = Optional.ofNullable(cloneFrom.getChannelArch()).map(ChannelArch::getLabel).orElse(""); + cloudPaygManager = GlobalInstanceHolder.PAYG_MANAGER; + } + + /** + * Constructor for testing + * @param cloneBehaviorIn the cloning behavior + * @param cloneFrom channel to clone from + * @param testCloudPaygManager {@link CloudPaygManager} to use + */ + public CloneChannelCommand(CloneBehavior cloneBehaviorIn, Channel cloneFrom, + CloudPaygManager testCloudPaygManager) { + this(cloneBehaviorIn, cloneFrom); + if (testCloudPaygManager != null) { + cloudPaygManager = testCloudPaygManager; + } } /** @@ -114,6 +133,21 @@ public Channel create() c.setInstallerUpdates(original.isInstallerUpdates()); c.setOriginal(original); + // PAYG Code to avoid cloning channels under forbidden channels + if (cloudPaygManager.isPaygInstance()) { + if (c.getParentChannel() != null) { + Optional channelTest = c.getParentChannel().originChain() + .flatMap(n -> n.getAccessibleChildrenFor(user).stream()) + .filter(n -> n.getId() != null) // We filter out the cloned channel from the list + .filter(n -> n.getProductName().getLabel().equals(original.getProductName().getLabel())) + .findFirst(); + + if (channelTest.isEmpty()) { + throw new ForbiddenCloneChannelPAYGException(); + } + } + } + // need to save before calling stored procs below ChannelFactory.save(c); c = HibernateFactory.reload(c); diff --git a/java/code/src/com/redhat/rhn/manager/channel/ForbiddenCloneChannelPAYGException.java b/java/code/src/com/redhat/rhn/manager/channel/ForbiddenCloneChannelPAYGException.java new file mode 100644 index 000000000000..586ea1dcfc8a --- /dev/null +++ b/java/code/src/com/redhat/rhn/manager/channel/ForbiddenCloneChannelPAYGException.java @@ -0,0 +1,29 @@ +/* + * Copyright (c) 2023 SUSE LLC + * + * This software is licensed to you under the GNU General Public License, + * version 2 (GPLv2). There is NO WARRANTY for this software, express or + * implied, including the implied warranties of MERCHANTABILITY or FITNESS + * FOR A PARTICULAR PURPOSE. You should have received a copy of GPLv2 + * along with this software; if not, see + * http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt. + * + * Red Hat trademarks are not licensed under GPLv2. No permission is + * granted to use or replicate Red Hat trademarks that are incorporated + * in this software or its documentation. + */ +package com.redhat.rhn.manager.channel; + +import com.redhat.rhn.frontend.xmlrpc.InvalidParentChannelException; + +/** + * ForbiddenCloneChannelPAYGException + */ +public class ForbiddenCloneChannelPAYGException extends InvalidParentChannelException { + /** + * Constructor + */ + public ForbiddenCloneChannelPAYGException() { + super(); + } +} diff --git a/java/code/src/com/redhat/rhn/manager/channel/test/CloneChannelCommandTest.java b/java/code/src/com/redhat/rhn/manager/channel/test/CloneChannelCommandTest.java index 16f250cb829d..923dc7c5badd 100644 --- a/java/code/src/com/redhat/rhn/manager/channel/test/CloneChannelCommandTest.java +++ b/java/code/src/com/redhat/rhn/manager/channel/test/CloneChannelCommandTest.java @@ -17,15 +17,23 @@ import static org.junit.jupiter.api.Assertions.assertEquals; import static org.junit.jupiter.api.Assertions.assertFalse; +import static org.junit.jupiter.api.Assertions.assertNotNull; import static org.junit.jupiter.api.Assertions.assertNull; +import static org.junit.jupiter.api.Assertions.assertThrows; import static org.junit.jupiter.api.Assertions.assertTrue; import com.redhat.rhn.domain.channel.Channel; import com.redhat.rhn.domain.channel.ChannelFactory; import com.redhat.rhn.domain.channel.Modules; +import com.redhat.rhn.domain.channel.ProductName; +import com.redhat.rhn.domain.channel.test.ChannelFactoryTest; import com.redhat.rhn.manager.channel.CloneChannelCommand; +import com.redhat.rhn.manager.channel.ForbiddenCloneChannelPAYGException; import com.redhat.rhn.testing.BaseTestCaseWithUser; import com.redhat.rhn.testing.ChannelTestUtils; +import com.redhat.rhn.testing.TestUtils; + +import com.suse.cloud.CloudPaygManager; import org.junit.jupiter.api.Test; @@ -111,6 +119,102 @@ public void testStripModularMetadata() throws Exception { assertFalse(c.isModular()); } + /** + * Tests if it's possible to clone base channels in a SUMA PAYG instace. + * + * @throws Exception if something goes wrong + */ + @Test + public void canCloneParentChannelInPAYGInstance() throws Exception { + CloudPaygManager fakeCloudPaygManager = getFakeCloudPaygManager(); + Channel parentChannel = createBaseChannel(); + + CloneChannelCommand ccc = new CloneChannelCommand(CloneChannelCommand.CloneBehavior.ORIGINAL_STATE, + parentChannel, fakeCloudPaygManager); + ccc.setUser(user); + Channel clonedParentChannel = ccc.create(); + + // Asserts that the channel actually exists after cloning + Channel gotChannel = ChannelFactory.lookupByIdAndUser(clonedParentChannel.getId(), user); + assertNotNull(gotChannel); + } + + /** + * Tests that cloning a channel under the same base channel works in a SUMA PAYG instace. + * + * @throws Exception + */ + @Test + public void canCloneChildChannelUnderSameParentChannel() throws Exception { + CloudPaygManager fakeCloudPaygManager = getFakeCloudPaygManager(); + + Channel parentChannelWithProductChannels = createBaseChannel(); + Channel childrenChannel = createChildrenWIthProductChannel(parentChannelWithProductChannels); + + CloneChannelCommand ccc = new CloneChannelCommand(CloneChannelCommand.CloneBehavior.ORIGINAL_STATE, + childrenChannel, fakeCloudPaygManager); + ccc.setUser(user); + ccc.setParentId(parentChannelWithProductChannels.getId()); + Channel clonedChildChannel1 = ccc.create(); + + // Asserts that the channel actually exists after cloning + Channel gotChannelTest1 = ChannelFactory.lookupByIdAndUser(clonedChildChannel1.getId(), user); + assertNotNull(gotChannelTest1); + } + + + /** + * Tests that cloning a channel under a different base channel that has not the channel product we are + * cloning from fails in a SUMA PAYG instace. + * + * @throws Exception + */ + @Test + public void cannotCloneChildChannelUnderDifferentParentChannelWithoutProductChannel() throws Exception { + CloudPaygManager fakeCloudPaygManager = getFakeCloudPaygManager(); + + Channel parentChannelWithProductChannels = createBaseChannel(); + Channel parentChannelWithoutProductChannels = createBaseChannel(); + Channel childrenChannel = createChildrenWIthProductChannel(parentChannelWithProductChannels); + + CloneChannelCommand ccc = new CloneChannelCommand(CloneChannelCommand.CloneBehavior.ORIGINAL_STATE, + childrenChannel, fakeCloudPaygManager); + ccc.setUser(user); + ccc.setParentId(parentChannelWithoutProductChannels.getId()); + + // Assert that cloning operation throws ForbiddenCloneChannelPAYGException exception + assertThrows(ForbiddenCloneChannelPAYGException.class, () -> ccc.create()); + } + + /** + * Tests some recursiveness. It clones a base channel that has associated some product channel, and then + * under that cloned base channel it clones a child channel with the same product channel as the first one. + * This test is for SUMA PAYG instaces. + * + * @throws Exception + */ + @Test + public void canClonedBasedChannelGetChildChannelWithProductChannel() throws Exception { + CloudPaygManager fakeCloudPaygManager = getFakeCloudPaygManager(); + + Channel parentChannelWithProductChannels = createBaseChannel(); + Channel childrenChannel = createChildrenWIthProductChannel(parentChannelWithProductChannels); + + CloneChannelCommand cccBase = new CloneChannelCommand(CloneChannelCommand.CloneBehavior.ORIGINAL_STATE, + parentChannelWithProductChannels, fakeCloudPaygManager); + cccBase.setUser(user); + Channel clonedBaseChannel = cccBase.create(); + + CloneChannelCommand cccChildren = new CloneChannelCommand(CloneChannelCommand.CloneBehavior.ORIGINAL_STATE, + childrenChannel, fakeCloudPaygManager); + cccChildren.setUser(user); + cccChildren.setParentId(clonedBaseChannel.getId()); + Channel clonedChildChannel = cccChildren.create(); + + // Assert that the channel actually exists + Channel gotChannelTest3 = ChannelFactory.lookupByIdAndUser(clonedChildChannel.getId(), user); + assertNotNull(gotChannelTest3); + } private Channel createBaseChannel() throws Exception { Channel channel = ChannelTestUtils.createBaseChannel(user); @@ -118,4 +222,24 @@ private Channel createBaseChannel() throws Exception { channel.setSummary("summary"); return channel; } + + private CloudPaygManager getFakeCloudPaygManager() { + CloudPaygManager cloudPaygManager = new CloudPaygManager(); + cloudPaygManager.setPaygInstance(true); + cloudPaygManager.setCompliant(true); + return cloudPaygManager; + } + + private Channel createChildrenWIthProductChannel(Channel parentChannel) throws Exception { + Channel childrenChannel = ChannelTestUtils.createChildChannel(user, parentChannel); + childrenChannel.setChecksumType(ChannelFactory.findChecksumTypeByLabel("sha256")); + childrenChannel.setSummary("summary"); + + ProductName pn = ChannelFactoryTest.lookupOrCreateProductName("sap-ha"); + childrenChannel.setProductName(pn); + TestUtils.saveAndFlush(pn); + ChannelFactory.save(childrenChannel); + + return childrenChannel; + } } diff --git a/java/code/src/com/redhat/rhn/manager/content/ContentSyncManager.java b/java/code/src/com/redhat/rhn/manager/content/ContentSyncManager.java index cb8702e2efda..5d49e84d29ca 100644 --- a/java/code/src/com/redhat/rhn/manager/content/ContentSyncManager.java +++ b/java/code/src/com/redhat/rhn/manager/content/ContentSyncManager.java @@ -14,6 +14,7 @@ */ package com.redhat.rhn.manager.content; +import com.redhat.rhn.GlobalInstanceHolder; import com.redhat.rhn.common.conf.Config; import com.redhat.rhn.common.conf.ConfigDefaults; import com.redhat.rhn.common.hibernate.HibernateFactory; @@ -24,6 +25,9 @@ import com.redhat.rhn.domain.channel.ChannelFamilyFactory; import com.redhat.rhn.domain.channel.ContentSource; import com.redhat.rhn.domain.channel.PublicChannelFamily; +import com.redhat.rhn.domain.cloudpayg.PaygProductFactory; +import com.redhat.rhn.domain.cloudpayg.PaygSshData; +import com.redhat.rhn.domain.cloudpayg.PaygSshDataFactory; import com.redhat.rhn.domain.common.ManagerInfoFactory; import com.redhat.rhn.domain.credentials.Credentials; import com.redhat.rhn.domain.credentials.CredentialsFactory; @@ -51,14 +55,17 @@ import com.redhat.rhn.domain.server.MinionServer; import com.redhat.rhn.domain.server.ServerFactory; import com.redhat.rhn.manager.channel.ChannelManager; +import com.redhat.rhn.taskomatic.task.payg.beans.PaygProductInfo; +import com.suse.cloud.CloudPaygManager; import com.suse.manager.webui.services.pillar.MinionGeneralPillarGenerator; import com.suse.mgrsync.MgrSyncStatus; import com.suse.salt.netapi.parser.JsonParser; import com.suse.scc.client.SCCClient; import com.suse.scc.client.SCCClientException; -import com.suse.scc.client.SCCClientFactory; import com.suse.scc.client.SCCClientUtils; +import com.suse.scc.client.SCCConfig; +import com.suse.scc.client.SCCFileClient; import com.suse.scc.client.SCCWebClient; import com.suse.scc.model.ChannelFamilyJson; import com.suse.scc.model.SCCOrderItemJson; @@ -116,7 +123,7 @@ public class ContentSyncManager { // Logger instance - private static Logger log = LogManager.getLogger(ContentSyncManager.class); + private static final Logger LOG = LogManager.getLogger(ContentSyncManager.class); /** * OES channel family name, this is used to distinguish supported non-SUSE @@ -126,7 +133,6 @@ public class ContentSyncManager { private static final String OES_URL = "https://nu.novell.com/repo/$RCE/" + "OES11-SP2-Pool/sle-11-x86_64/"; - // Static JSON files we parse private static File upgradePathsJson = new File( "/usr/share/susemanager/scc/upgrade_paths.json"); @@ -136,11 +142,9 @@ public class ContentSyncManager { "/usr/share/susemanager/scc/additional_products.json"); private static File additionalRepositoriesJson = new File( "/usr/share/susemanager/scc/additional_repositories.json"); - private static Optional sumaProductTreeJson = Optional.empty(); // File to parse this system's UUID from - private static final File UUID_FILE = - new File("/etc/zypp/credentials.d/SCCcredentials"); + private static final File UUID_FILE = new File("/etc/zypp/credentials.d/SCCcredentials"); private static String uuid; // Mirror URL read from rhn.conf @@ -149,10 +153,30 @@ public class ContentSyncManager { // SCC JSON files location in rhn.conf public static final String RESOURCE_PATH = "server.susemanager.fromdir"; + private Optional sumaProductTreeJson = Optional.empty(); + + private CloudPaygManager cloudPaygManager; + + private Path tmpLoggingDir; + /** * Default constructor. */ public ContentSyncManager() { + cloudPaygManager = GlobalInstanceHolder.PAYG_MANAGER; + } + + /** + * Constructor for testing + * @param tmpLogDir overwrite logdir for credential output + * @param paygMgrIn {@link CloudPaygManager} to use + */ + public ContentSyncManager(Path tmpLogDir, CloudPaygManager paygMgrIn) { + super(); + tmpLoggingDir = tmpLogDir; + if (paygMgrIn != null) { + cloudPaygManager = paygMgrIn; + } } /** @@ -163,6 +187,14 @@ public void setUpgradePathsJson(File file) { upgradePathsJson = file; } + /** + * Set the channel_family.json {@link File} to a different path. + * @param file the channel_family.json + */ + public void setChannelFamiliesJson(File file) { + channelFamiliesJson = file; + } + /** * Set the product_tree.json {@link File} to read from. * @param file the product_tree.json file @@ -171,6 +203,14 @@ public void setSumaProductTreeJson(Optional file) { sumaProductTreeJson = file; } + /** + * Set the additional_products.json {@link File} to read from. + * @param file the add additional_products.json file + */ + public void setAdditionalProductsJson(File file) { + additionalProductsJson = file; + } + /** * Read the channel_families.json file. * @@ -185,10 +225,10 @@ public List readChannelFamilies() { SCCClientUtils.toListType(ChannelFamilyJson.class)); } catch (IOException e) { - log.error(e); + LOG.error(e.getMessage(), e); } - if (log.isDebugEnabled()) { - log.debug("Read {} channel families from {}", channelFamilies.size(), + if (LOG.isDebugEnabled()) { + LOG.debug("Read {} channel families from {}", channelFamilies.size(), channelFamiliesJson.getAbsolutePath()); } return channelFamilies; @@ -211,8 +251,8 @@ public List readUpgradePaths() throws ContentSyncException { catch (Exception e) { throw new ContentSyncException(e); } - if (log.isDebugEnabled()) { - log.debug("Read {} upgrade paths from {}", upPaths.size(), upgradePathsJson.getAbsolutePath()); + if (LOG.isDebugEnabled()) { + LOG.debug("Read {} upgrade paths from {}", upPaths.size(), upgradePathsJson.getAbsolutePath()); } return upPaths; } @@ -233,8 +273,18 @@ private List filterCredentials() throws ContentSyncException { return list; } - List credentials = CredentialsFactory.lookupSCCCredentials(); + List credentials = CredentialsFactory.listSCCCredentials(); if (credentials.isEmpty()) { + if (cloudPaygManager.isPaygInstance()) { + // We look for the local RMT Cloud Credentials as alternative + List rmtCreds = PaygSshDataFactory.lookupByHostname("localhost") + .map(PaygSshData::getCredentials) + .stream().collect(Collectors.toList()); + if (!rmtCreds.isEmpty()) { + return rmtCreds; + } + } + // TODO: is just an empty list for no credentials ok as well? Test it out throw new ContentSyncException("No SCC organization credentials found."); } else { @@ -274,7 +324,7 @@ public List getProducts() throws ContentSyncException { // Check for missing attributes String missing = verifySCCProduct(product); if (!StringUtils.isBlank(missing)) { - log.warn("Broken product: {}, Version: {}, Identifier: {}, Product ID: {} " + + LOG.warn("Broken product: {}, Version: {}, Identifier: {}, Product ID: {} " + "### Missing attributes: {}", product.getName(), product.getVersion(), product.getIdentifier(), product.getId(), missing); } @@ -284,8 +334,8 @@ public List getProducts() throws ContentSyncException { } } - if (log.isDebugEnabled()) { - log.debug("Found {} available products.", productList.size()); + if (LOG.isDebugEnabled()) { + LOG.debug("Found {} available products.", productList.size()); } return new ArrayList<>(productList); @@ -308,7 +358,7 @@ private static List getAdditionalRepositories() { SCCClientUtils.toListType(SCCRepositoryJson.class)); } catch (IOException e) { - log.error(e); + LOG.error(e.getMessage(), e); } repos.addAll(collectRepos(flattenProducts(getAdditionalProducts()).collect(Collectors.toList()))); return repos; @@ -348,7 +398,7 @@ private static List getAdditionalProducts() { SCCClientUtils.toListType(SCCProductJson.class)); } catch (IOException e) { - log.error(e); + LOG.error(e.getMessage(), e); } return fixAdditionalProducts(additionalProducts); } @@ -359,7 +409,7 @@ private static List getAdditionalProducts() { */ public List listProducts() { if (!(ConfigDefaults.get().isUyuni() || hasToolsChannelSubscription())) { - log.warn("No SUSE Manager Server Subscription available. " + + LOG.warn("No SUSE Manager Server Subscription available. " + "Products requiring Client Tools Channel will not be shown."); } return HibernateFactory.doWithoutAutoFlushing(this::listProductsImpl); @@ -393,7 +443,7 @@ private List listProductsImpl() { List installedChannelLabels = getInstalledChannelLabels(); List> availableChannels = - TimeUtils.logTime(log, "getAvailableCHannels", this::getAvailableChannels).stream().map(e -> { + TimeUtils.logTime(LOG, "getAvailableCHannels", this::getAvailableChannels).stream().map(e -> { MgrSyncStatus status = installedChannelLabels.contains(e.getChannelLabel()) ? MgrSyncStatus.INSTALLED : MgrSyncStatus.AVAILABLE; return new Tuple2<>(e, status); @@ -418,7 +468,7 @@ private List listProductsImpl() { Map>> byRootId = availableChannels.stream() .collect(Collectors.groupingBy(p -> p.getA().getRootProduct().getId())); - List productDtos = roots.stream() + return roots.stream() .filter(p -> byProductId.containsKey(p.getId())) .map(root -> { @@ -480,7 +530,6 @@ private List listProductsImpl() { Set extensions = byExtension.entrySet().stream().map(e -> { SUSEProduct ext = e.getKey(); - Set extChildChannels = e.getValue().stream().map(c -> new MgrSyncChannelDto( c.getA().getChannelName(), c.getA().getChannelLabel(), @@ -503,25 +552,16 @@ private List listProductsImpl() { .map(s -> s.contains(root.getProductId())) .orElse(false); - MgrSyncProductDto productDto = new MgrSyncProductDto( + return new MgrSyncProductDto( ext.getFriendlyName(), ext.getProductId(), ext.getId(), ext.getVersion(), isRecommended, baseChannel, extChildChannels, Collections.emptySet() ); - - return productDto; }).collect(Collectors.toSet()); - - MgrSyncProductDto rootProductDto = new MgrSyncProductDto( + return new MgrSyncProductDto( root.getFriendlyName(), root.getProductId(), root.getId(), root.getVersion(), false, - baseChannel, allChannels, extensions - ); - - return rootProductDto; + baseChannel, allChannels, extensions); }).collect(Collectors.toList()); - - - return productDtos; } /** @@ -544,20 +584,33 @@ private void refreshRepositoriesAuthentication(String mirrorUrl) throws ContentS // Query repos for all mirror credentials and consolidate for (Credentials c : credentials) { List repos = new LinkedList<>(); - log.debug("Getting repos for: {}", c); - try { - SCCClient scc = getSCCClient(c); - repos = scc.listRepositories(); - } - catch (SCCClientException e) { - // test for OES credentials - if (!accessibleUrl(OES_URL, c.getUsername(), c.getPassword())) { - log.info("Credential is not an OES credentials"); + LOG.debug("Getting repos for: {}", c); + if (c == null || c.isTypeOf(Credentials.TYPE_SCC)) { + try { + SCCClient scc = getSCCClient(c); + repos = scc.listRepositories(); + } + catch (SCCClientException e) { + // test for OES credentials + if (c == null || !accessibleUrl(OES_URL, c.getUsername(), c.getPassword())) { + LOG.info("Credential is not an OES credentials"); + throw new ContentSyncException(e); + } + } + catch (URISyntaxException e) { throw new ContentSyncException(e); } } - catch (URISyntaxException e) { - throw new ContentSyncException(e); + else if (c.isTypeOf(Credentials.TYPE_CLOUD_RMT)) { + // Retrieve the products associated with this credentials + List productsList = PaygProductFactory.getProductsForCredentials(c); + // If it's SUMA PAYG, check if we synced additional products we can access + if (c.getPaygSshData().isSUSEManagerPayg()) { + productsList.addAll(PaygProductFactory.listAdditionalProductsForSUMAPayg()); + } + + List repoAuths = PaygProductFactory.refreshRepositoriesAuths(c, productsList); + LOG.info("Refreshed {} repository auths associated to the PAYG credentials", repoAuths.size()); } repos.addAll(getAdditionalRepositories()); refreshRepositoriesAuthentication(repos, c, mirrorUrl); @@ -601,28 +654,28 @@ public void createOrUpdateContentSource(SCCRepositoryAuth auth, Channel channel, * @param mirrorUrl optional mirror url */ public void linkAndRefreshContentSource(String mirrorUrl) { - log.debug("linkAndRefreshContentSource called"); + LOG.debug("linkAndRefreshContentSource called"); // flush needed to let the next queries find something HibernateFactory.getSession().flush(); // find all CountentSource with org id == NULL which do not have a sccrepositoryauth List orphan = ChannelFactory.lookupOrphanVendorContentSources(); if (orphan != null) { - log.debug("found orphan vendor content sources: {}", orphan.size()); + LOG.debug("found orphan vendor content sources: {}", orphan.size()); // find sccrepositoryauth and link orphan.forEach(cs -> cs.getChannels().forEach(c -> Opt.consume(ChannelFactory.findVendorRepositoryByChannel(c), () -> { - log.debug("No repository found for channel: '{}' - remove content source", cs.getLabel()); + LOG.debug("No repository found for channel: '{}' - remove content source", cs.getLabel()); ChannelFactory.remove(cs); }, repo -> Opt.consume(repo.getBestAuth(), () -> { - log.debug("No auth anymore - remove content source: {}", cs.getLabel()); + LOG.debug("No auth anymore - remove content source: {}", cs.getLabel()); ChannelFactory.remove(cs); }, auth -> { - log.debug("Has new auth: {}", cs.getLabel()); + LOG.debug("Has new auth: {}", cs.getLabel()); auth.setContentSource(cs); SCCCachingFactory.saveRepositoryAuth(auth); }) @@ -633,17 +686,17 @@ public void linkAndRefreshContentSource(String mirrorUrl) { // find all rhnChannel with org id == null and no content source List orphanChannels = ChannelFactory.lookupOrphanVendorChannels(); if (orphanChannels != null) { - log.debug("found orphan vendor channels: {}", orphanChannels.size()); + LOG.debug("found orphan vendor channels: {}", orphanChannels.size()); // find sccrepository auth and create content source and link orphanChannels.forEach(c -> Opt.consume(ChannelFactory.findVendorRepositoryByChannel(c), - () -> log.error("No repository found for channel: '{}'", c.getLabel()), - repo -> { - log.debug("configure orphan repo {}", repo); - repo.getBestAuth().ifPresentOrElse( - a -> createOrUpdateContentSource(a, c, mirrorUrl), - () -> log.info("No Auth available for {}", repo) - ); - } + () -> LOG.error("No repository found for channel: '{}'", c.getLabel()), + repo -> { + LOG.debug("configure orphan repo {}", repo); + repo.getBestAuth().ifPresentOrElse( + a -> createOrUpdateContentSource(a, c, mirrorUrl), + () -> LOG.info("No Auth available for {}", repo) + ); + } )); } // update URL if needed @@ -654,14 +707,14 @@ public void linkAndRefreshContentSource(String mirrorUrl) { // check if this auth item is the "best" available auth for this repo // if not, switch it over to the best if (auth.getRepo().getBestAuth().isEmpty()) { - log.warn("no best auth available for repo {}", auth.getRepo()); + LOG.warn("no best auth available for repo {}", auth.getRepo()); continue; } SCCRepositoryAuth bestAuth = auth.getRepo().getBestAuth().get(); if (!bestAuth.equals(auth)) { // we are not the "best" available repository auth item. // remove the content source link and set it to the "best" - log.info("Auth '{}' became the best auth. Remove CS link from {}", bestAuth.getId(), auth.getId()); + LOG.info("Auth '{}' became the best auth. Remove CS link from {}", bestAuth.getId(), auth.getId()); auth.setContentSource(null); bestAuth.setContentSource(cs); SCCCachingFactory.saveRepositoryAuth(auth); @@ -670,10 +723,10 @@ public void linkAndRefreshContentSource(String mirrorUrl) { auth = bestAuth; } String overwriteUrl = contentSourceUrlOverwrite(auth.getRepo(), auth.getUrl(), mirrorUrl); - log.debug("Linked ContentSource: '{}' OverwriteURL: '{}' AuthUrl: '{}' Mirror: '{}'", + LOG.debug("Linked ContentSource: '{}' OverwriteURL: '{}' AuthUrl: '{}' Mirror: '{}'", cs.getSourceUrl(), overwriteUrl, auth.getUrl(), mirrorUrl); if (!cs.getSourceUrl().equals(overwriteUrl)) { - log.debug("Change URL to : {}", overwriteUrl); + LOG.debug("Change URL to : {}", overwriteUrl); cs.setSourceUrl(overwriteUrl); save = true; } @@ -698,14 +751,18 @@ public boolean isRefreshNeeded(String mirrorUrl) { ContentSource cs = a.getContentSource(); try { String overwriteUrl = contentSourceUrlOverwrite(a.getRepo(), a.getUrl(), mirrorUrl); - log.debug("Linked ContentSource: '{}' OverwriteURL: '{}' AuthUrl: '{}' Mirror: {}", + LOG.debug("Linked ContentSource: '{}' OverwriteURL: '{}' AuthUrl: '{}' Mirror: {}", cs.getSourceUrl(), overwriteUrl, a.getUrl(), mirrorUrl); if (!cs.getSourceUrl().equals(overwriteUrl)) { - log.debug("Source and overwrite urls differ: {} != {}", cs.getSourceUrl(), overwriteUrl); + LOG.debug("Source and overwrite urls differ: {} != {}", cs.getSourceUrl(), overwriteUrl); return true; } } catch (ContentSyncException e) { + if (cloudPaygManager.isPaygInstance()) { + LOG.debug("PAYG instance detected. Continue checking for refresh needed."); + break; + } // Can happen when neither SCC Credentials nor fromdir is configured // in such a case, refresh makes no sense. return false; @@ -714,7 +771,7 @@ public boolean isRefreshNeeded(String mirrorUrl) { Optional lastRefreshDate = ManagerInfoFactory.getLastMgrSyncRefresh(); if (Config.get().getString(ContentSyncManager.RESOURCE_PATH, null) != null) { - log.debug("Syncing from dir"); + LOG.debug("Syncing from dir"); long hours24 = 24 * 60 * 60 * 1000; Timestamp t = new Timestamp(System.currentTimeMillis() - hours24); @@ -722,13 +779,15 @@ public boolean isRefreshNeeded(String mirrorUrl) { lastRefreshDate, () -> true, modifiedCache -> { - log.debug("Last sync more than 24 hours ago: {} ({})", modifiedCache, t); - return t.after(modifiedCache) ? true : false; + LOG.debug("Last sync more than 24 hours ago: {} ({})", modifiedCache, t); + return t.after(modifiedCache); } ); } - else if (CredentialsFactory.lookupSCCCredentials().isEmpty()) { + else if (CredentialsFactory.listSCCCredentials().isEmpty() && !(cloudPaygManager.isPaygInstance() && + PaygSshDataFactory.lookupByHostname("localhost").isPresent())) { // Can happen when neither SCC Credentials nor fromdir is configured + // Also when we are PAYG instance, but localhost connection is not configured // in such a case, refresh makes no sense. return false; } @@ -761,11 +820,11 @@ public void refreshRepositoriesAuthentication( Collection repositories, Credentials c, String mirrorUrl, boolean withFix) { List repoIdsFromCredential = new LinkedList<>(); List availableRepoIds = SCCCachingFactory.lookupRepositories().stream() - .map(r -> r.getSccId()) + .map(SCCRepository::getSccId) .collect(Collectors.toList()); List ptfRepos = repositories.stream() .filter(r -> !availableRepoIds.contains(r.getSCCId())) - .filter(r -> r.isPtfRepository()) + .filter(SCCRepositoryJson::isPtfRepository) .collect(Collectors.toList()); generatePtfChannels(ptfRepos); Map availableRepos = SCCCachingFactory.lookupRepositories().stream() @@ -776,12 +835,14 @@ public void refreshRepositoriesAuthentication( // cleanup if we come from scc allRepoAuths.stream() .filter(a -> a.getOptionalCredentials().isPresent()) + .filter(a -> a.cloudRmtAuth().isEmpty()) .forEach(SCCCachingFactory::deleteRepositoryAuth); } else { // cleanup if we come from "fromdir" allRepoAuths.stream() - .filter(a -> !a.getOptionalCredentials().isPresent()) + .filter(a -> a.getOptionalCredentials().isEmpty()) + .filter(a -> a.cloudRmtAuth().isEmpty()) .forEach(SCCCachingFactory::deleteRepositoryAuth); } allRepoAuths = null; @@ -793,14 +854,14 @@ public void refreshRepositoriesAuthentication( } SCCRepository repo = availableRepos.get(jrepo.getSCCId()); if (repo == null) { - log.error("No repository with ID '{}' found", jrepo.getSCCId()); + LOG.error("No repository with ID '{}' found", jrepo.getSCCId()); continue; } Set allAuths = repo.getRepositoryAuth(); Set authsThisCred = allAuths.stream() .filter(a -> { if (c == null) { - return !a.getOptionalCredentials().isPresent(); + return a.getOptionalCredentials().isEmpty(); } else { Optional oc = a.getOptionalCredentials(); @@ -809,8 +870,8 @@ public void refreshRepositoriesAuthentication( }) .collect(Collectors.toSet()); if (authsThisCred.size() > 1) { - log.error("More than 1 authentication found for one credential - removing all unused"); - authsThisCred.stream().forEach(a -> { + LOG.error("More than 1 authentication found for one credential - removing all unused"); + authsThisCred.forEach(a -> { allAuths.remove(a); authsThisCred.remove(a); repo.setRepositoryAuth(allAuths); @@ -831,16 +892,19 @@ public void refreshRepositoriesAuthentication( newAuth = new SCCRepositoryTokenAuth(tokenOpt.get()); } else if (repo.getProducts().isEmpty()) { - log.debug("Repo '{}' not in the product tree. Skipping", repo.getUrl()); + LOG.debug("Repo '{}' not in the product tree. Skipping", repo.getUrl()); continue; } else if (c != null && repo.getProducts().stream() .map(SUSEProductSCCRepository::getProduct) .filter(SUSEProduct::getFree) - .anyMatch(p -> p.getChannelFamily().getLabel().startsWith("SLE-M-T") || - p.getChannelFamily().getLabel().startsWith("OPENSUSE"))) { - log.debug("Free repo detected. Setting NoAuth for {}", repo.getUrl()); + .anyMatch(p -> { + String cfLabel = p.getChannelFamily().getLabel(); + return cfLabel.startsWith(ChannelFamilyFactory.TOOLS_CHANNEL_FAMILY_LABEL) || + cfLabel.startsWith(ChannelFamilyFactory.OPENSUSE_CHANNEL_FAMILY_LABEL); + })) { + LOG.debug("Free repo detected. Setting NoAuth for {}", repo.getUrl()); newAuth = new SCCRepositoryNoAuth(); } else { @@ -853,7 +917,7 @@ else if (c != null && } else { // we do not handle the case where the credentials are part of the URL - log.error("URLs with credentials not supported"); + LOG.error("URLs with credentials not supported"); continue; } } @@ -866,7 +930,7 @@ else if (c != null && accessibleUrl(fullUrl, c.getUsername(), c.getPassword())) } } catch (URISyntaxException e) { - log.warn("Unable to parse URL"); + LOG.warn("Unable to parse URL"); continue; } } @@ -916,8 +980,9 @@ else if (!exAuth.getClass().equals(newAuth.getClass())) { // check if we have to remove auths which exists before List authList = SCCCachingFactory.lookupRepositoryAuthByCredential(c); authList.stream() - .filter(repoAuth -> !repoIdsFromCredential.contains(repoAuth.getRepo().getSccId())) - .forEach(SCCCachingFactory::deleteRepositoryAuth); + .filter(repoAuth -> repoAuth.cloudRmtAuth().isEmpty()) // rmtAuth is handled elsewhere + .filter(repoAuth -> !repoIdsFromCredential.contains(repoAuth.getRepo().getSccId())) + .forEach(SCCCachingFactory::deleteRepositoryAuth); if (withFix) { SUSEProductFactory.lookupPSRByChannelLabel("rhel6-pool-i386").stream().findFirst() @@ -987,7 +1052,7 @@ private static PtfProductRepositoryInfo parsePtfInfoFromUrl(SCCRepositoryJson jr uri = new URI(jrepo.getUrl()); } catch (URISyntaxException e) { - log.warn("Unable to parse URL '{}'. Skipping", jrepo.getUrl(), e); + LOG.warn("Unable to parse URL '{}'. Skipping", jrepo.getUrl(), e); return null; } @@ -1005,7 +1070,7 @@ private static PtfProductRepositoryInfo parsePtfInfoFromUrl(SCCRepositoryJson jr SUSEProduct product = SUSEProductFactory.findSUSEProduct(parts[4], parts[5], null, archStr, false); if (product == null) { - log.warn("Skipping PTF repo for unknown product: {}", uri); + LOG.warn("Skipping PTF repo for unknown product: {}", uri); return null; } @@ -1018,7 +1083,7 @@ private static PtfProductRepositoryInfo parsePtfInfoFromUrl(SCCRepositoryJson jr channelParts.add("TEST"); break; default: - log.warn("Unknown repo type: {}. Skipping", parts[7]); + LOG.warn("Unknown repo type: {}. Skipping", parts[7]); return null; } channelParts.add(prdArch); @@ -1065,7 +1130,7 @@ private static SUSEProductSCCRepository convertToProductSCCRepository(SUSEProduc }); if (StringUtils.isBlank(prodRepoLink.getChannelLabel())) { // mandatory field is missing. This happens when a product does not have suseProductSCCRepositories - log.info("Product '{}' does not have repositories. Skipping.", root); + LOG.info("Product '{}' does not have repositories. Skipping.", root); return null; } return prodRepoLink; @@ -1097,16 +1162,15 @@ public List refreshOESRepositoryAuth(Credentials c, String mirrorUrl, List Set authsThisCred = allAuths.stream() .filter(a -> { if (c == null) { - return !a.getOptionalCredentials().isPresent(); + return a.getOptionalCredentials().isEmpty(); } else { - Optional oc = a.getOptionalCredentials(); - return oc.isPresent() && oc.get().equals(c); + return a.getOptionalCredentials().filter(oc -> oc.equals(c)).isPresent(); } }) .collect(Collectors.toSet()); if (authsThisCred.size() > 1) { - log.error("More than 1 authentication found for one credential - removing all"); + LOG.error("More than 1 authentication found for one credential - removing all"); authsThisCred.forEach(a -> { allAuths.remove(a); authsThisCred.remove(a); @@ -1124,7 +1188,7 @@ public List refreshOESRepositoryAuth(Credentials c, String mirrorUrl, List } } catch (URISyntaxException e) { - log.error("Failed to parse URL", e); + LOG.error("Failed to parse URL", e); continue; } newAuth = new SCCRepositoryNoAuth(); @@ -1205,7 +1269,7 @@ public String contentSourceUrlOverwrite(SCCRepository repo, String defaultUrl, S } } catch (URISyntaxException e) { - log.warn(e.getMessage()); + LOG.warn(e.getMessage()); } return defaultUrl; } @@ -1259,8 +1323,7 @@ public List buildRepoFileUrl(String url, SCCRepository repo) throws URIS * @param c credentials * @throws ContentSyncException in case of an error */ - public void refreshSubscriptionCache(List subscriptions, - Credentials c) { + public void refreshSubscriptionCache(List subscriptions, Credentials c) { List cachedSccIDs = SCCCachingFactory.listSubscriptionsIdsByCredentials(c); Map subscriptionsBySccId = SCCCachingFactory.lookupSubscriptions() .stream().collect(Collectors.toMap(SCCSubscription::getSccId, s -> s)); @@ -1270,11 +1333,11 @@ public void refreshSubscriptionCache(List subscriptions, subscriptionsBySccId.put(ns.getSccId(), ns); cachedSccIDs.remove(s.getId()); } - if (log.isDebugEnabled()) { - log.debug("Found {} subscriptions with credentials: {}", subscriptions.size(), c); + if (LOG.isDebugEnabled()) { + LOG.debug("Found {} subscriptions with credentials: {}", subscriptions.size(), c); } for (Long subId : cachedSccIDs) { - log.debug("Delete Subscription with sccId: {}", subId); + LOG.debug("Delete Subscription with sccId: {}", subId); SCCCachingFactory.deleteSubscriptionBySccId(subId); } } @@ -1285,9 +1348,9 @@ public void refreshSubscriptionCache(List subscriptions, * Additionally order items are fetched and put into the DB. * @param credentials username/password pair * @return list of subscriptions as received from SCC. - * @throws SCCClientException in case of an error + * @throws ContentSyncException in case of an error */ - public List updateSubscriptions(Credentials credentials) throws SCCClientException { + public List updateSubscriptions(Credentials credentials) throws ContentSyncException { List subscriptions = new LinkedList<>(); try { SCCClient scc = this.getSCCClient(credentials); @@ -1300,7 +1363,7 @@ public List updateSubscriptions(Credentials credentials) th } } catch (URISyntaxException e) { - log.error("Invalid URL:{}", e.getMessage()); + LOG.error("Invalid URL: {}", e.getMessage(), e); return new ArrayList<>(); } refreshSubscriptionCache(subscriptions, credentials); @@ -1316,33 +1379,48 @@ public List updateSubscriptions(Credentials credentials) th * @throws ContentSyncException in case of an error */ public Collection updateSubscriptions() throws ContentSyncException { - log.info("ContentSyncManager.getSubscriptions called"); + LOG.info("ContentSyncManager.getSubscriptions called"); Set subscriptions = new HashSet<>(); List credentials = filterCredentials(); // Query subscriptions for all mirror credentials for (Credentials c : credentials) { - try { - subscriptions.addAll(updateSubscriptions(c)); - } - catch (SCCClientException e) { - throw new ContentSyncException(e); + if (c != null && c.isTypeOf(Credentials.TYPE_CLOUD_RMT)) { + // RMT report always empty subscriptions + continue; } + subscriptions.addAll(updateSubscriptions(c)); } - if (log.isDebugEnabled()) { - log.debug("Found {} available subscriptions.", subscriptions.size()); + if (LOG.isDebugEnabled()) { + LOG.debug("Found {} available subscriptions.", subscriptions.size()); } - log.info("ContentSyncManager.getSubscriptions finished"); + LOG.info("ContentSyncManager.getSubscriptions finished"); return subscriptions; } + /** + * Check if the provided Credentials are usable for SCC. OES credentials will return false. + * @param c the credentials + * @return true if they can be used for SCC, otherwise false + */ + public boolean isSCCCredentials(Credentials c) { + try { + SCCClient scc = this.getSCCClient(c); + scc.listOrders(); + } + catch (SCCClientException | URISyntaxException e) { + return false; + } + return true; + } + /** * Fetch new Order Items from SCC for the given credentials, * deletes all order items stored in the database below the given credentials * and inserts the new ones. * @param c the credentials - * @throws SCCClientException in case of an error + * @throws ContentSyncException in case of an error */ - public void refreshOrderItemCache(Credentials c) throws SCCClientException { + public void refreshOrderItemCache(Credentials c) throws ContentSyncException { List orders = new LinkedList<>(); try { SCCClient scc = this.getSCCClient(c); @@ -1355,7 +1433,7 @@ public void refreshOrderItemCache(Credentials c) throws SCCClientException { } } catch (URISyntaxException e) { - log.error("Invalid URL:{}", e.getMessage()); + LOG.error("Invalid URL: {}", e.getMessage(), e); } List existingOI = SCCCachingFactory.listOrderItemsByCredentials(c); for (SCCOrderJson order : orders) { @@ -1378,14 +1456,13 @@ public void refreshOrderItemCache(Credentials c) throws SCCClientException { * @param subscriptions the subscriptions * @param credentials the credentials */ - private void generateOEMOrderItems(List subscriptions, - Credentials credentials) { + private void generateOEMOrderItems(List subscriptions, Credentials credentials) { List existingOI = SCCCachingFactory.listOrderItemsByCredentials(credentials); subscriptions.stream() .filter(sub -> "oem".equals(sub.getType())) .forEach(sub -> { if (sub.getSkus().size() == 1) { - log.debug("Generating order item for OEM subscription {}, SCC ID: {}", + LOG.debug("Generating order item for OEM subscription {}, SCC ID: {}", sub.getName(), sub.getId()); long subscriptionSccId = sub.getId(); SCCOrderItem oemOrder = SCCCachingFactory.lookupOrderItemBySccId(-subscriptionSccId) @@ -1402,7 +1479,7 @@ private void generateOEMOrderItems(List subscriptions, existingOI.remove(oemOrder); } else { - log.warn("Subscription {}, SCC ID: {} does not have a single SKU. " + + LOG.warn("Subscription {}, SCC ID: {} does not have a single SKU. " + "Not generating Order Item for it.", sub.getName(), sub.getId()); } }); @@ -1421,9 +1498,9 @@ private void generateOEMOrderItems(List subscriptions, * @throws ContentSyncException in case of an error */ public void updateRepositories(String mirrorUrl) throws ContentSyncException { - log.info("ContentSyncManager.updateRepository called"); + LOG.info("ContentSyncManager.updateRepository called"); refreshRepositoriesAuthentication(mirrorUrl); - log.info("ContentSyncManager.updateRepository finished"); + LOG.info("ContentSyncManager.updateRepository finished"); } /** @@ -1431,9 +1508,8 @@ public void updateRepositories(String mirrorUrl) throws ContentSyncException { * @param channelFamilies List of families. * @throws ContentSyncException in case of an error */ - public void updateChannelFamilies(Collection channelFamilies) - throws ContentSyncException { - log.info("ContentSyncManager.updateChannelFamilies called"); + public void updateChannelFamilies(Collection channelFamilies) throws ContentSyncException { + LOG.info("ContentSyncManager.updateChannelFamilies called"); List suffixes = Arrays.asList("", "ALPHA", "BETA"); for (ChannelFamilyJson channelFamily : channelFamilies) { @@ -1451,7 +1527,7 @@ public void updateChannelFamilies(Collection channelFamilies) } } } - log.info("ContentSyncManager.updateChannelFamilies finished"); + LOG.info("ContentSyncManager.updateChannelFamilies finished"); } /** @@ -1485,7 +1561,7 @@ public static SUSEProduct updateProduct(SCCProductJson p, SUSEProduct product, PackageArch pArch = packageArchMap.computeIfAbsent(p.getArch(), PackageFactory::lookupPackageArchByLabel); if (pArch == null && p.getArch() != null) { // unsupported architecture, skip the product - log.error("Unknown architecture '{}'. This may be caused by a missing database migration", p.getArch()); + LOG.error("Unknown architecture '{}'. This may be caused by a missing database migration", p.getArch()); } else { product.setArch(pArch); @@ -1532,7 +1608,7 @@ public static SUSEProduct createNewProduct(SCCProductJson p, Map loadStaticTree(String tag) throws ContentSyncExce SCCClientUtils.toListType(ProductTreeEntry.class)); } catch (IOException e) { - log.error(e); + LOG.error(e.getMessage(), e); } } else { @@ -1605,6 +1681,14 @@ private List loadStaticTree(String tag) throws ContentSyncExce throw new ContentSyncException(e); } } + + // If we have only RMT credentials + if (!credentials.isEmpty() && + credentials.stream().allMatch(c -> c != null && c.isTypeOf(Credentials.TYPE_CLOUD_RMT))) { + // Remove Ubuntu and Debian products until RMT supports them + tree.removeIf(productEntry -> productEntry.getChannelLabel().contains("amd64") || + productEntry.getParentChannelLabel().filter(label -> label.contains("amd64")).isPresent()); + } } return productTreeFix( tree.stream().filter(e -> e.getTags().isEmpty() || e.getTags().contains(tag)).collect(Collectors.toList()) @@ -1773,7 +1857,7 @@ public static void updateProducts(Map productsById, Map, SUSEProductExtension> extensionsToSave = new HashMap<>(); Set channelsToCleanup = new HashSet<>(); - tree.stream().forEach(entry -> { + tree.forEach(entry -> { SCCProductJson productJson = productsById.get(entry.getProductId()); SCCRepositoryJson repoJson = reposById.get(entry.getRepositoryId()); @@ -1784,7 +1868,7 @@ public static void updateProducts(Map productsById, Map Optional.ofNullable(productsById.get(id))); if (productJson != null && repoJson != null && rootJson != null && - (!parentJson.isPresent() || parentJson.get().isPresent())) { + (parentJson.isEmpty() || parentJson.get().isPresent())) { Tuple3 ids = new Tuple3<>(rootJson.getId(), productJson.getId(), repoJson.getSCCId()); SUSEProduct product = productMap.get(productJson.getId()); @@ -1809,7 +1893,7 @@ public static void updateProducts(Map productsById, Map i.getUrl()).collect(Collectors.joining(" "))); + .stream().map(GpgInfoEntry::getUrl).collect(Collectors.joining(" "))); // we use only the 1st entry for id and fingerprint prodRepoLink.setGpgKeyId(entry.getGpgInfo().get(0).getKeyId()); prodRepoLink.setGpgKeyFingerprint(entry.getGpgInfo().get(0).getFingerprint()); @@ -1831,19 +1915,19 @@ public static void updateProducts(Map productsById, Map productsById, Map i.getUrl()).collect(Collectors.joining(" "))); + .stream().map(GpgInfoEntry::getUrl).collect(Collectors.joining(" "))); // we use only the 1st entry for id and fingerprint prodRepoLink.setGpgKeyId(entry.getGpgInfo().get(0).getKeyId()); prodRepoLink.setGpgKeyFingerprint(entry.getGpgInfo().get(0).getFingerprint()); @@ -1913,7 +1997,7 @@ public static void updateProducts(Map productsById, Map { + ChannelFactory.listVendorChannels().forEach(c -> { updateChannel(c); if (channelsToCleanup.contains(c.getLabel())) { ChannelManager.disassociateChannelEntries(c); @@ -1947,7 +2031,7 @@ public void updateSUSEProducts(List products) throws ContentSync */ public void updateSUSEProducts(List products, List upgradePathJsons, List staticTree, List additionalRepos) { - log.info("ContentSyncManager.updateSUSEProducts called"); + LOG.info("ContentSyncManager.updateSUSEProducts called"); Map processed = new HashMap<>(); List allProducts = overrideProductAttributes( @@ -1976,7 +2060,7 @@ public void updateSUSEProducts(List products, List getAvailableRepositories(SUSEProduct ro .allMatch(entry -> { boolean isPublic = entry.getProduct().getChannelFamily().isPublic(); boolean hasAuth = repoIdsWithAuth.contains(entry.getRepository().getId()); - log.debug("{} - {} isPublic: {} hasAuth: {}", product.getFriendlyName(), + LOG.debug("{} - {} isPublic: {} hasAuth: {}", product.getFriendlyName(), entry.getChannelLabel(), isPublic, hasAuth); return isPublic && // isMirrorable hasAuth; }); - if (log.isDebugEnabled()) { - log.debug("{}: {} {}", product.getFriendlyName(), isAccessible, entries.stream() + if (LOG.isDebugEnabled()) { + LOG.debug("{}: {} {}", product.getFriendlyName(), isAccessible, entries.stream() .map(SUSEProductSCCRepository::getChannelLabel) .collect(Collectors.joining(","))); } @@ -2132,11 +2216,10 @@ public void updateUpgradePaths(Collection products, List listChannels() { - List collect = listProducts().stream().flatMap(p -> Stream.concat( + return listProducts().stream().flatMap(p -> Stream.concat( p.getChannels().stream(), p.getExtensions().stream().flatMap(e -> e.getChannels().stream()) )).collect(Collectors.toList()); - return collect; } private Optional getTokenFromURL(String url) { @@ -2155,7 +2238,7 @@ private Optional getTokenFromURL(String url) { */ public static void updateChannel(Channel dbChannel) { if (dbChannel == null) { - log.error("Channel does not exist"); + LOG.error("Channel does not exist"); return; } String label = dbChannel.getLabel(); @@ -2164,8 +2247,8 @@ public static void updateChannel(Channel dbChannel) { Optional prdrepoOpt = suseProductSCCRepositories.stream().findFirst(); if (prdrepoOpt.isEmpty()) { - log.warn("Expired Vendor Channel with label '{}' found. To remove it please run: ", label); - log.warn("spacewalk-remove-channel -c {}", label); + LOG.warn("Expired Vendor Channel with label '{}' found. To remove it please run: ", label); + LOG.warn("spacewalk-remove-channel -c {}", label); } else { SUSEProductSCCRepository productrepo = prdrepoOpt.get(); @@ -2218,8 +2301,8 @@ public static void updateChannel(Channel dbChannel) { public void addChannel(String label, String mirrorUrl) throws ContentSyncException { // Return immediately if the channel is already there if (ChannelFactory.doesChannelLabelExist(label)) { - if (log.isDebugEnabled()) { - log.debug("Channel exists ({}), returning...", label); + if (LOG.isDebugEnabled()) { + LOG.debug("Channel exists ({}), returning...", label); } return; } @@ -2401,10 +2484,10 @@ public static String getUUID() { } } catch (FileNotFoundException e) { - log.info("Server not registered at SCC: {}", e.getMessage()); + LOG.info("Server not registered at SCC: {}", e.getMessage()); } catch (IOException e) { - log.warn("Unable to read SCC credentials file: {}", e.getMessage()); + LOG.warn("Unable to read SCC credentials file: {}", e.getMessage()); } finally { if (reader != null) { @@ -2412,14 +2495,14 @@ public static String getUUID() { reader.close(); } catch (IOException e) { - log.warn("IO exception on SCC credentials file: {}", e.getMessage()); + LOG.warn("IO exception on SCC credentials file: {}", e.getMessage()); } } } if (uuid == null) { uuid = Config.get().getString(ConfigDefaults.SCC_BACKUP_SRV_USR); if (uuid == null) { - log.warn("WARNING: unable to read SCC username"); + LOG.warn("WARNING: unable to read SCC username"); } } } @@ -2478,7 +2561,7 @@ protected boolean accessibleUrl(String url) { return accessibleUrl(url, username, password); } catch (URISyntaxException e) { - log.error("accessibleUrl: {} URISyntaxException {}", url, e.getMessage()); + LOG.error("accessibleUrl: {} URISyntaxException {}", url, e.getMessage(), e); } return false; } @@ -2500,7 +2583,7 @@ protected boolean accessibleUrl(String url, String user, String password) { // Build full URL to test if (uri.getScheme().equals("file")) { boolean res = Files.isReadable(testUrlPath); - log.debug("accessibleUrl:{} {}", testUrlPath, res); + LOG.debug("accessibleUrl:{} {}", testUrlPath, res); return res; } else { @@ -2509,15 +2592,15 @@ protected boolean accessibleUrl(String url, String user, String password) { // Verify the mirrored repo by sending a HEAD request int status = MgrSyncUtils.sendHeadRequest(testUri.toString(), user, password).getStatusLine().getStatusCode(); - log.debug("accessibleUrl: {} returned status {}", testUri, status); + LOG.debug("accessibleUrl: {} returned status {}", testUri, status); return (status == HttpURLConnection.HTTP_OK); } } catch (IOException e) { - log.error("accessibleUrl: {} IOException {}", url, e.getMessage()); + LOG.error("accessibleUrl: {} IOException {}", url, e.getMessage(), e); } catch (URISyntaxException e) { - log.error("accessibleUrl: {} URISyntaxException {}", url, e.getMessage()); + LOG.error("accessibleUrl: {} URISyntaxException {}", url, e.getMessage(), e); } return false; } @@ -2528,7 +2611,7 @@ protected boolean accessibleUrl(String url, String user, String password) { * * @param credentials username/password pair * @throws URISyntaxException if the URL in configuration file is malformed - * @throws SCCClientException + * @throws SCCClientException when access is not possible * @return {@link SCCWebClient} */ private SCCClient getSCCClient(Credentials credentials) @@ -2554,11 +2637,28 @@ else if (!localFile.isDirectory()) { } } - String username = credentials == null ? null : credentials.getUsername(); - String password = credentials == null ? null : credentials.getPassword(); - - return SCCClientFactory.getInstance(url, username, password, localAbsolutePath, - getUUID()); + String username = null; + String password = null; + Map addHeaders = new HashMap<>(); + if (credentials != null) { + if (credentials.isTypeOf(Credentials.TYPE_CLOUD_RMT)) { + URI uri = new URI(credentials.getUrl()); + url = new URI(uri.getScheme(), null, uri.getHost(), uri.getPort(), null, null, null); + Gson gson = new GsonBuilder().create(); + addHeaders = gson.fromJson(new String(credentials.getExtraAuthData()), Map.class); + } + username = credentials.getUsername(); + password = credentials.getPassword(); + } + if (localAbsolutePath != null) { + return new SCCFileClient(new SCCConfig(localAbsolutePath)); + } + SCCConfig config = new SCCConfig(url, username, password, getUUID(), addHeaders); + if (tmpLoggingDir != null) { + config = new SCCConfig(url, username, password, getUUID(), null, + tmpLoggingDir.toAbsolutePath().toString(), false, addHeaders); + } + return new SCCWebClient(config); } /** @@ -2597,6 +2697,22 @@ public boolean hasToolsChannelSubscription() { .map(SCCSubscription::getProducts) .flatMap(Set::stream) .filter(p -> p.getChannelFamily() != null) - .anyMatch(p -> p.getChannelFamily().getLabel().equals(ChannelFamily.TOOLS_CHANNEL_FAMILY_LABEL)); + .anyMatch(p -> p.getChannelFamily().getLabel().equals(ChannelFamilyFactory.TOOLS_CHANNEL_FAMILY_LABEL)); + } + + /** + * Check if Tools Channels can be synced via Cloud RMT Infrastructure. + * In PAYG scenario, we do not have a subscription, but we have access + * via the Cloud RMT server and can mirror them. + * @return return true if we can sync tools channels via Cloud RMT, otherwise false + */ + public boolean canSyncToolsChannelViaCloudRMT() { + return SCCCachingFactory.lookupRepositoryAuth().stream() + .filter(a -> a.cloudRmtAuth().isPresent()) + .map(SCCRepositoryAuth::getRepo) + .flatMap(r -> r.getProducts().stream()) + .map(SUSEProductSCCRepository::getProduct) + .filter(p -> p.getChannelFamily() != null) + .anyMatch(p -> p.getChannelFamily().getLabel().equals(ChannelFamilyFactory.TOOLS_CHANNEL_FAMILY_LABEL)); } } diff --git a/java/code/src/com/redhat/rhn/manager/content/MgrSyncUtils.java b/java/code/src/com/redhat/rhn/manager/content/MgrSyncUtils.java index 10861857204d..58910aad5b58 100644 --- a/java/code/src/com/redhat/rhn/manager/content/MgrSyncUtils.java +++ b/java/code/src/com/redhat/rhn/manager/content/MgrSyncUtils.java @@ -52,8 +52,9 @@ public class MgrSyncUtils { // Source URL handling private static final String OFFICIAL_NOVELL_UPDATE_HOST = "nu.novell.com"; + public static final String OFFICIAL_SUSE_UPDATE_HOST = "updates.suse.com"; private static final List OFFICIAL_UPDATE_HOSTS = - Arrays.asList("updates.suse.com", OFFICIAL_NOVELL_UPDATE_HOST); + Arrays.asList(OFFICIAL_SUSE_UPDATE_HOST, OFFICIAL_NOVELL_UPDATE_HOST); private static final List PRODUCT_ARCHS = Arrays.asList("i386", "i486", "i586", "i686", "ia64", "ppc64le", "ppc64", "ppc", "s390x", "s390", "x86_64", "aarch64", "amd64"); diff --git a/java/code/src/com/redhat/rhn/manager/content/test/ContentSyncManagerPaygTest.java b/java/code/src/com/redhat/rhn/manager/content/test/ContentSyncManagerPaygTest.java new file mode 100644 index 000000000000..ed57a1d7bc63 --- /dev/null +++ b/java/code/src/com/redhat/rhn/manager/content/test/ContentSyncManagerPaygTest.java @@ -0,0 +1,275 @@ +/* + * Copyright (c) 2023 SUSE LLC + * + * This software is licensed to you under the GNU General Public License, + * version 2 (GPLv2). There is NO WARRANTY for this software, express or + * implied, including the implied warranties of MERCHANTABILITY or FITNESS + * FOR A PARTICULAR PURPOSE. You should have received a copy of GPLv2 + * along with this software; if not, see + * http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt. + * + * Red Hat trademarks are not licensed under GPLv2. No permission is + * granted to use or replicate Red Hat trademarks that are incorporated + * in this software or its documentation. + */ +package com.redhat.rhn.manager.content.test; + +import static org.junit.jupiter.api.Assertions.assertAll; +import static org.junit.jupiter.api.Assertions.assertFalse; +import static org.junit.jupiter.api.Assertions.fail; + +import com.redhat.rhn.common.conf.Config; +import com.redhat.rhn.common.conf.ConfigDefaults; +import com.redhat.rhn.common.hibernate.HibernateFactory; +import com.redhat.rhn.domain.channel.ChannelFamily; +import com.redhat.rhn.domain.channel.ChannelFamilyFactory; +import com.redhat.rhn.domain.cloudpayg.CloudRmtHostFactory; +import com.redhat.rhn.domain.cloudpayg.PaygSshData; +import com.redhat.rhn.domain.cloudpayg.PaygSshDataFactory; +import com.redhat.rhn.domain.credentials.CredentialsFactory; +import com.redhat.rhn.domain.notification.UserNotificationFactory; +import com.redhat.rhn.domain.product.SUSEProductFactory; +import com.redhat.rhn.domain.scc.SCCCachingFactory; +import com.redhat.rhn.domain.scc.SCCRepository; +import com.redhat.rhn.domain.scc.SCCRepositoryAuth; +import com.redhat.rhn.manager.content.ContentSyncManager; +import com.redhat.rhn.taskomatic.task.payg.PaygAuthDataExtractor; +import com.redhat.rhn.taskomatic.task.payg.PaygUpdateAuthTask; +import com.redhat.rhn.taskomatic.task.payg.beans.PaygInstanceInfo; +import com.redhat.rhn.taskomatic.task.payg.beans.PaygProductInfo; +import com.redhat.rhn.taskomatic.task.payg.test.PaygUpdateAuthTaskTest; +import com.redhat.rhn.testing.RhnBaseTestCase; +import com.redhat.rhn.testing.TestUtils; + +import com.suse.cloud.CloudPaygManager; + +import com.github.tomakehurst.wiremock.WireMockServer; +import com.github.tomakehurst.wiremock.client.WireMock; +import com.github.tomakehurst.wiremock.core.WireMockConfiguration; + +import org.apache.commons.io.FileUtils; +import org.junit.jupiter.api.AfterEach; +import org.junit.jupiter.api.BeforeEach; +import org.junit.jupiter.api.Test; +import org.quartz.JobExecutionException; + +import java.io.BufferedReader; +import java.io.File; +import java.io.InputStreamReader; +import java.net.HttpURLConnection; +import java.nio.file.Files; +import java.nio.file.Path; +import java.time.Instant; +import java.util.Date; +import java.util.HashMap; +import java.util.LinkedList; +import java.util.List; +import java.util.Map; +import java.util.Objects; +import java.util.Set; +import java.util.stream.Collectors; + +public class ContentSyncManagerPaygTest extends RhnBaseTestCase { + private static final String JARPATH = "/com/redhat/rhn/manager/content/test/"; + private static final String PRODUCTS_UNSCOPED = JARPATH + "rmtclouddata/organizations_products_unscoped.json"; + private static final String PRODUCT_TREE = JARPATH + "rmtclouddata/product_tree.json"; + private static final String UPGRADE_PATHS = JARPATH + "upgrade_paths.json"; + private static final String CHANNEL_FAMILY = JARPATH + "channel_families.json"; + private static final String ADDITIONAL_PRODUCTS = JARPATH + "additional_products.json"; + + private static final PaygUpdateAuthTask PAYG_DATA_TASK = new PaygUpdateAuthTask(); + + static { + PaygAuthDataExtractor paygAuthDataExtractorMock = new PaygAuthDataExtractor() { + protected PaygInstanceInfo extractAuthDataLocal() { + List products = new LinkedList<>(); + products.add(new PaygProductInfo("SUSE-Manager-Server", "4.3", "x86_64")); + products.add(new PaygProductInfo("sle-module-basesystem", "15.4", "x86_64")); + + Map basicAuth = new HashMap<>(); + basicAuth.put("username", "SCC_05c394f"); + basicAuth.put("password", "0e248802"); + + Map headerAuth = new HashMap<>(); + headerAuth.put("X-Instance-Data", "PGRvY3VtZW50PnsKICAiYWNjb3VudElkIiA6ICI2NDEwODAwN"); + + Map rmtHost = new HashMap<>(); + rmtHost.put("hostname", "smt-ec2.susecloud.net"); + rmtHost.put("ip", "18.156.40.199"); + rmtHost.put("server_ca", "-----BEGIN CERTIFICATE-----"); + + return new PaygInstanceInfo(products, basicAuth, headerAuth, rmtHost); + } + }; + PAYG_DATA_TASK.setPaygDataExtractor(paygAuthDataExtractorMock); + } + + @Override + @BeforeEach + public void setUp() throws Exception { + super.setUp(); + } + + @Override + @AfterEach + public void tearDown() throws Exception { + super.tearDown(); + clearDb(); + } + + private void clearDb() { + SCCCachingFactory.clearRepositories(); + SCCCachingFactory.clearSubscriptions(); + SUSEProductFactory.findAllSUSEProducts().forEach(SUSEProductFactory::remove); + CredentialsFactory.listSCCCredentials().forEach(CredentialsFactory::removeCredentials); + CloudRmtHostFactory.lookupCloudRmtHosts().forEach(CloudRmtHostFactory::deleteCloudRmtHost); + PaygSshDataFactory.lookupPaygSshData().forEach(PaygSshDataFactory::deletePaygSshData); + UserNotificationFactory.deleteNotificationMessagesBefore(Date.from(Instant.now())); + ChannelFamilyFactory.getAllChannelFamilies() + .stream() + .filter(ChannelFamily::isPublic) + .forEach(ChannelFamilyFactory::remove); + HibernateFactory.commitTransaction(); + } + + @Test + public void testRefreshPayg() throws Exception { + Config.get().setString(ConfigDefaults.PRODUCT_TREE_TAG, "SUMA4.3"); + CloudPaygManager mgr = new CloudPaygManager() { + @Override + public boolean isPaygInstance() { + return true; + } + }; + PAYG_DATA_TASK.setCloudPaygManager(mgr); + + WireMockServer wireMockServer = setupWireMockServer(); + Path tmpLogDir = Files.createTempDirectory("scc-data"); + try { + // first run required to have an Cloud RMT Server to download products from + runPaygUpdateAuthTaskAndSetHost("http://localhost:8888/repo"); + + // download the product data from Cloud RMT + ContentSyncManager csm = new ContentSyncManager(tmpLogDir, mgr); + csm.setUpgradePathsJson(new File(TestUtils.findTestData(UPGRADE_PATHS).getPath())); + csm.setChannelFamiliesJson(new File(TestUtils.findTestData(CHANNEL_FAMILY).getPath())); + csm.setAdditionalProductsJson(new File(TestUtils.findTestData(ADDITIONAL_PRODUCTS).getPath())); + csm.updateChannelFamilies(csm.readChannelFamilies()); + csm.updateSUSEProducts(csm.getProducts()); + csm.updateRepositories(null); + csm.updateSubscriptions(); + + // Clear Hibernate cache to drop half loaded objects + HibernateFactory.commitTransaction(); + HibernateFactory.closeSession(); + + // second run required to have the repository auth data for Cloud RMT products + runPaygUpdateAuthTaskAndSetHost("http://localhost:8888/repo"); + + // enable free products + csm.updateChannelFamilies(csm.readChannelFamilies()); + csm.updateSUSEProducts(csm.getProducts()); + csm.updateRepositories(null); + csm.updateSubscriptions(); + + List auth = SCCCachingFactory.lookupRepositoryAuth(); + assertFalse(auth.isEmpty()); + + Set authRepos = auth.stream() + .filter(a -> a.cloudRmtAuth().isPresent()) + .map(SCCRepositoryAuth::getRepo) + .map(SCCRepository::getName) + .collect(Collectors.toSet()); + + assertAll("Repositories with auth", + () -> assertContains(authRepos, "SLE-Product-SUSE-Manager-Server-4.2-Pool"), + () -> assertContains(authRepos, "SLE-Product-SUSE-Manager-Server-4.2-Updates"), + () -> assertContains(authRepos, "SLE-Product-SUSE-Manager-Server-4.3-Pool"), + () -> assertContains(authRepos, "SLE-Product-SUSE-Manager-Server-4.3-Updates"), + () -> assertContains(authRepos, "SLE-Module-Basesystem15-SP3-Pool"), + () -> assertContains(authRepos, "SLE-Module-Basesystem15-SP4-Pool"), + () -> assertContains(authRepos, "SLE-Manager-Tools12-Pool"), + () -> assertContains(authRepos, "SLE-Manager-Tools12-Updates"), + () -> assertContains(authRepos, "SLE-Manager-Tools15-Pool"), + () -> assertContains(authRepos, "SLE-Manager-Tools15-Updates"), + () -> assertContains(authRepos, "SLE-Manager-Tools-For-Micro5-Pool"), + () -> assertContains(authRepos, "SLE-Manager-Tools-For-Micro5-Updates"), + () -> assertContains(authRepos, "SLE-Product-SUSE-Manager-Proxy-4.3-Pool"), + () -> assertContains(authRepos, "SLE-Product-SUSE-Manager-Proxy-4.3-Updates"), + () -> assertContains(authRepos, "RES-7-SUSE-Manager-Tools"), + () -> assertContains(authRepos, "RES8-Manager-Tools-Pool"), + () -> assertContains(authRepos, "RES8-Manager-Tools-Updates"), + () -> assertContains(authRepos, "EL9-Manager-Tools-Pool"), + () -> assertContains(authRepos, "EL9-Manager-Tools-Updates") + ); + + Set noAuthRepos = auth.stream() + .filter(a -> a.noAuth().isPresent()) + .map(SCCRepositoryAuth::getRepo) + .map(SCCRepository::getName) + .collect(Collectors.toSet()); + + assertAll("Repositories without auth", + () -> assertContains(noAuthRepos, "rockylinux-8"), + () -> assertContains(noAuthRepos, "rockylinux-9"), + () -> assertContains(noAuthRepos, "oraclelinux7"), + () -> assertContains(noAuthRepos, "oraclelinux8"), + () -> assertContains(noAuthRepos, "oraclelinux9"), + () -> assertContains(noAuthRepos, "almalinux8"), + () -> assertContains(noAuthRepos, "almalinux9"), + // Ubuntu and Debian should be excluded until RMT supports them + () -> assertNotContains(noAuthRepos, "debian-11-pool"), + () -> assertNotContains(noAuthRepos, "ubuntu-2204-amd64-main") + ); + } + finally { + wireMockServer.stop(); + if (Objects.nonNull(tmpLogDir)) { + FileUtils.forceDelete(tmpLogDir.toFile()); + } + } + } + + private void runPaygUpdateAuthTaskAndSetHost(String url) throws JobExecutionException { + PAYG_DATA_TASK.execute(null); + for (PaygSshData outPaygData : PaygSshDataFactory.lookupPaygSshData()) { + switch (outPaygData.getHost()) { + case "localhost": + //Fake URL for next test + outPaygData.getCredentials().setUrl(url); + break; + default: + fail("unexpected result"); + } + } + } + private WireMockServer setupWireMockServer() { + WireMockServer wireMockServer = new WireMockServer(WireMockConfiguration.wireMockConfig().port(8888)); + wireMockServer.start(); + + WireMock.configureFor("localhost", 8888); + String productsUnscoped = new BufferedReader(new InputStreamReader( + PaygUpdateAuthTaskTest.class.getResourceAsStream(PRODUCTS_UNSCOPED))) + .lines().collect(Collectors.joining("\n")); + + String productTree = new BufferedReader(new InputStreamReader( + PaygUpdateAuthTaskTest.class.getResourceAsStream(PRODUCT_TREE))) + .lines().collect(Collectors.joining("\n")); + + WireMock.stubFor( + WireMock.get(WireMock.urlPathEqualTo("/connect/organizations/products/unscoped")) + .willReturn(WireMock.aResponse() + .withStatus(HttpURLConnection.HTTP_OK) + .withHeader("Content-Type", "application/json") + .withBody(productsUnscoped))); + + WireMock.stubFor( + WireMock.get(WireMock.urlPathEqualTo("/suma/product_tree.json")) + .willReturn(WireMock.aResponse() + .withStatus(HttpURLConnection.HTTP_OK) + .withHeader("Content-Type", "application/json") + .withBody(productTree))); + + return wireMockServer; + } +} diff --git a/java/code/src/com/redhat/rhn/manager/content/test/ContentSyncManagerTest.java b/java/code/src/com/redhat/rhn/manager/content/test/ContentSyncManagerTest.java index c04aa191d0b2..9ca8bf090952 100644 --- a/java/code/src/com/redhat/rhn/manager/content/test/ContentSyncManagerTest.java +++ b/java/code/src/com/redhat/rhn/manager/content/test/ContentSyncManagerTest.java @@ -35,6 +35,8 @@ import com.redhat.rhn.domain.channel.ChannelFamilyFactory; import com.redhat.rhn.domain.channel.ContentSource; import com.redhat.rhn.domain.channel.test.ChannelFamilyFactoryTest; +import com.redhat.rhn.domain.cloudpayg.PaygSshData; +import com.redhat.rhn.domain.cloudpayg.PaygSshDataFactory; import com.redhat.rhn.domain.common.ManagerInfoFactory; import com.redhat.rhn.domain.credentials.Credentials; import com.redhat.rhn.domain.credentials.CredentialsFactory; @@ -66,6 +68,7 @@ import com.redhat.rhn.testing.BaseTestCaseWithUser; import com.redhat.rhn.testing.TestUtils; +import com.suse.cloud.CloudPaygManager; import com.suse.manager.webui.services.pillar.MinionGeneralPillarGenerator; import com.suse.manager.webui.services.pillar.MinionPillarManager; import com.suse.mgrsync.MgrSyncStatus; @@ -292,7 +295,7 @@ public void testUpdateProducts() throws Exception { List repositories = gson.fromJson( inputStreamReader3, new TypeToken>() { }.getType()); - Credentials credentials = CredentialsFactory.lookupSCCCredentials() + Credentials credentials = CredentialsFactory.listSCCCredentials() .stream() .filter(c -> c.getUsername().equals("dummy")) .findFirst().get(); @@ -887,7 +890,7 @@ public void testUpdateChannelsWithSimilarPath() throws Exception { new TypeToken>() { }.getType()); repositoriesChanged.addAll(additionalRepos); - Credentials sccCreds = CredentialsFactory.lookupSCCCredentials().get(0); + Credentials sccCreds = CredentialsFactory.listSCCCredentials().get(0); ContentSyncManager csm = new ContentSyncManager(); csm.updateSUSEProducts(productsChanged, upgradePaths, staticTreeChanged, additionalRepos); @@ -1154,7 +1157,7 @@ public void testSwitchingBestAuthItem() throws Exception { assertEquals("my-fake-token", a.tokenAuth().get().getAuth()); } MirrorCredentialsManager mgr = new MirrorCredentialsManager(); - Credentials scc1st = CredentialsFactory.lookupSCCCredentials().get(0); + Credentials scc1st = CredentialsFactory.listSCCCredentials().get(0); Credentials scc2nd = SUSEProductTestUtils.createSecondarySCCCredentials("dummy2", user); Gson gson = new GsonBuilder() @@ -2046,6 +2049,30 @@ public void testIsRefreshNeededNothingConfigured() throws Exception { assertFalse(csm.isRefreshNeeded(null)); } + @Test + public void testIsRefreshNeededPAYG() { + for (Credentials c : CredentialsFactory.listSCCCredentials()) { + CredentialsFactory.removeCredentials(c); + } + ManagerInfoFactory.setLastMgrSyncRefresh(0); + CloudPaygManager mgr = new CloudPaygManager(); + mgr.setPaygInstance(true); + mgr.setCompliant(true); + ContentSyncManager csm = new ContentSyncManager(null, mgr); + Credentials rmtCreds = CredentialsFactory.createCloudRmtCredentials(); + rmtCreds.setUsername("RMTUSER"); + rmtCreds.setPassword("secret"); + CredentialsFactory.storeCredentials(rmtCreds); + PaygSshData sshData = PaygSshDataFactory.createPaygSshData(); + sshData.setHost("localhost"); + sshData.setUsername("admin"); + sshData.setPassword("secret"); + sshData.setCredentials(rmtCreds); + PaygSshDataFactory.savePaygSshData(sshData); + + assertTrue(csm.isRefreshNeeded(null)); + } + /** * Test generation of channels for PTF repositories per module * @throws Exception if anything goes wrong @@ -2418,7 +2445,7 @@ public void testSUSEProductChannelUpdates() throws Exception { * Clear all credentials from the database. */ private void clearCredentials() { - for (Credentials creds : CredentialsFactory.lookupSCCCredentials()) { + for (Credentials creds : CredentialsFactory.listSCCCredentials()) { CredentialsFactory.removeCredentials(creds); } } diff --git a/java/code/src/com/redhat/rhn/manager/content/test/additional_products.json b/java/code/src/com/redhat/rhn/manager/content/test/additional_products.json index 39097a460573..eeea27298db9 100644 --- a/java/code/src/com/redhat/rhn/manager/content/test/additional_products.json +++ b/java/code/src/com/redhat/rhn/manager/content/test/additional_products.json @@ -1,7 +1,4307 @@ [ + { + "id" : -41, + "name" : "Oracle Linux", + "identifier" : "oraclelinux", + "former_identifier" : "", + "version" : "9", + "release_type" : null, + "arch" : "x86_64", + "friendly_name" : "Oracle Linux 9 x86_64", + "product_class" : "SLE-M-T", + "cpe" : null, + "free" : true, + "description" : null, + "release_stage" : "released", + "eula_url" : "", + "product_type" : "base", + "offline_predecessor_ids" : [ + ], + "online_predecessor_ids" : [ + ], + "shortname" : null, + "recommended" : false, + "extensions" : [ + ], + "repositories" : [ + { + "id" : -488, + "url" : "https://yum.oracle.com/repo/OracleLinux/OL9/RDMA/x86_64/", + "name" : "oraclelinux9-rdma", + "distro_target" : "x86_64", + "description" : "Latest RDMA packages on Oracle Linux 9 for the Oracle Integrated Stack.", + "enabled" : false, + "autorefresh" : false, + "installer_updates" : false + }, + { + "id" : -489, + "url" : "https://yum.oracle.com/repo/OracleLinux/OL9/UEKR7/x86_64/", + "name" : "oraclelinux9-uek-r7", + "distro_target" : "x86_64", + "description" : "Latest Unbreakable Enterprise Kernel Release 7 for Oracle Linux 9", + "enabled" : false, + "autorefresh" : false, + "installer_updates" : false + }, + { + "id" : -490, + "url" : "https://yum.oracle.com/repo/OracleLinux/OL9/baseos/latest/x86_64/", + "name" : "oraclelinux9", + "distro_target" : "x86_64", + "description" : "Oracle Linux 9", + "enabled" : true, + "autorefresh" : false, + "installer_updates" : false + }, + { + "id" : -491, + "url" : "https://yum.oracle.com/repo/OracleLinux/OL9/appstream/x86_64/", + "name" : "oraclelinux9-appstream", + "distro_target" : "x86_64", + "description" : "Oracle Linux 9 AppStream", + "enabled" : true, + "autorefresh" : false, + "installer_updates" : false + }, + { + "id" : -492, + "url" : "https://yum.oracle.com/repo/OracleLinux/OL9/addons/x86_64/", + "name" : "oraclelinux9-addons", + "distro_target" : "x86_64", + "description" : "Addons for Oracle Linux 9", + "enabled" : false, + "autorefresh" : false, + "installer_updates" : false + }, + { + "id" : -493, + "url" : "https://yum.oracle.com/repo/OracleLinux/OL9/codeready/builder/x86_64/", + "name" : "oraclelinux9-codereadybuilder", + "distro_target" : "x86_64", + "description" : "Latest CodeReady Builder packages for Oracle Linux 9", + "enabled" : false, + "autorefresh" : false, + "installer_updates" : false + }, + { + "id" : -494, + "url" : "https://yum.oracle.com/repo/OracleLinux/OL9/developer/UEKR7/x86_64/", + "name" : "oraclelinux9-developer-uek-r7", + "distro_target" : "x86_64", + "description" : "Latest Unbreakable Enterprise Kernel Release 7 for Oracle Linux 9", + "enabled" : false, + "autorefresh" : false, + "installer_updates" : false + }, + { + "id" : -495, + "url" : "https://yum.oracle.com/repo/OracleLinux/OL9/developer/x86_64/", + "name" : "oraclelinux9-developer", + "distro_target" : "x86_64", + "description" : "Packages for test and development - Oracle Linux 9", + "enabled" : false, + "autorefresh" : false, + "installer_updates" : false + } + ] + }, + { + "id" : -40, + "name" : "Oracle Linux", + "identifier" : "oraclelinux", + "former_identifier" : "", + "version" : "9", + "release_type" : null, + "arch" : "aarch64", + "friendly_name" : "Oracle Linux 9 aarch64", + "product_class" : "SLE-M-T", + "cpe" : null, + "free" : true, + "description" : null, + "release_stage" : "released", + "eula_url" : "", + "product_type" : "base", + "offline_predecessor_ids" : [ + ], + "online_predecessor_ids" : [ + ], + "shortname" : null, + "recommended" : false, + "extensions" : [ + ], + "repositories" : [ + { + "id" : -481, + "url" : "https://yum.oracle.com/repo/OracleLinux/OL9/UEKR7/aarch64/", + "name" : "oraclelinux9-uek-r7", + "distro_target" : "aarch64", + "description" : "Latest Unbreakable Enterprise Kernel Release 7 for Oracle Linux 9", + "enabled" : false, + "autorefresh" : false, + "installer_updates" : false + }, + { + "id" : -482, + "url" : "https://yum.oracle.com/repo/OracleLinux/OL9/baseos/latest/aarch64/", + "name" : "oraclelinux9", + "distro_target" : "aarch64", + "description" : "Oracle Linux 9", + "enabled" : true, + "autorefresh" : false, + "installer_updates" : false + }, + { + "id" : -483, + "url" : "https://yum.oracle.com/repo/OracleLinux/OL9/appstream/aarch64/", + "name" : "oraclelinux9-appstream", + "distro_target" : "aarch64", + "description" : "Oracle Linux 9 AppStream", + "enabled" : true, + "autorefresh" : false, + "installer_updates" : false + }, + { + "id" : -484, + "url" : "https://yum.oracle.com/repo/OracleLinux/OL9/addons/aarch64/", + "name" : "oraclelinux9-addons", + "distro_target" : "aarch64", + "description" : "Addons for Oracle Linux 9", + "enabled" : false, + "autorefresh" : false, + "installer_updates" : false + }, + { + "id" : -485, + "url" : "https://yum.oracle.com/repo/OracleLinux/OL9/codeready/builder/aarch64/", + "name" : "oraclelinux9-codereadybuilder", + "distro_target" : "aarch64", + "description" : "Latest CodeReady Builder packages for Oracle Linux 9", + "enabled" : false, + "autorefresh" : false, + "installer_updates" : false + }, + { + "id" : -486, + "url" : "https://yum.oracle.com/repo/OracleLinux/OL9/developer/UEKR7/aarch64/", + "name" : "oraclelinux9-developer-uek-r7", + "distro_target" : "aarch64", + "description" : "Latest Unbreakable Enterprise Kernel Release 7 for Oracle Linux 9", + "enabled" : false, + "autorefresh" : false, + "installer_updates" : false + }, + { + "id" : -487, + "url" : "https://yum.oracle.com/repo/OracleLinux/OL9/developer/aarch64/", + "name" : "oraclelinux9-developer", + "distro_target" : "aarch64", + "description" : "Packages for test and development - Oracle Linux 9", + "enabled" : false, + "autorefresh" : false, + "installer_updates" : false + } + ] + }, + { + "id" : -39, + "name" : "AlmaLinux", + "identifier" : "almalinux", + "former_identifier" : "", + "version" : "9", + "release_type" : null, + "arch" : "aarch64", + "friendly_name" : "AlmaLinux 9 aarch64", + "product_class" : "SLE-M-T", + "cpe" : null, + "free" : true, + "description" : null, + "release_stage" : "released", + "eula_url" : "", + "product_type" : "base", + "offline_predecessor_ids" : [ + ], + "online_predecessor_ids" : [ + ], + "shortname" : null, + "recommended" : false, + "extensions" : [ + ], + "repositories" : [ + { + "id" : -471, + "url" : "https://mirrors.almalinux.org/mirrorlist/9/baseos", + "name" : "almalinux9", + "distro_target" : null, + "description" : "AlmaLinux 9", + "enabled" : true, + "autorefresh" : true, + "installer_updates" : false + }, + { + "id" : -472, + "url" : "https://mirrors.almalinux.org/mirrorlist/9/appstream", + "name" : "almalinux9-appstream", + "distro_target" : null, + "description" : "AlmaLinux 9 AppStream", + "enabled" : true, + "autorefresh" : true, + "installer_updates" : false + }, + { + "id" : -473, + "url" : "https://mirrors.almalinux.org/mirrorlist/9/extras", + "name" : "almalinux9-extras", + "distro_target" : null, + "description" : "AlmaLinux 9 Extras", + "enabled" : false, + "autorefresh" : true, + "installer_updates" : false + }, + { + "id" : -474, + "url" : "https://mirrors.almalinux.org/mirrorlist/9/powertools", + "name" : "almalinux9-powertools", + "distro_target" : null, + "description" : "AlmaLinux 9 PowerTools", + "enabled" : false, + "autorefresh" : true, + "installer_updates" : false + }, + { + "id" : -475, + "url" : "https://mirrors.almalinux.org/mirrorlist/9/ha", + "name" : "almalinux9-ha", + "distro_target" : null, + "description" : "AlmaLinux 9 HighAvailability", + "enabled" : false, + "autorefresh" : true, + "installer_updates" : false + } + ] + }, + { + "id" : -38, + "name" : "AlmaLinux", + "identifier" : "almalinux", + "former_identifier" : "", + "version" : "9", + "release_type" : null, + "arch" : "x86_64", + "friendly_name" : "AlmaLinux 9 x86_64", + "product_class" : "SLE-M-T", + "cpe" : null, + "free" : true, + "description" : null, + "release_stage" : "released", + "eula_url" : "", + "product_type" : "base", + "offline_predecessor_ids" : [ + ], + "online_predecessor_ids" : [ + ], + "shortname" : null, + "recommended" : false, + "extensions" : [ + ], + "repositories" : [ + { + "id" : -476, + "url" : "https://mirrors.almalinux.org/mirrorlist/9/baseos", + "name" : "almalinux9", + "distro_target" : null, + "description" : "AlmaLinux 9", + "enabled" : true, + "autorefresh" : true, + "installer_updates" : false + }, + { + "id" : -477, + "url" : "https://mirrors.almalinux.org/mirrorlist/9/appstream", + "name" : "almalinux9-appstream", + "distro_target" : null, + "description" : "AlmaLinux 9 AppStream", + "enabled" : true, + "autorefresh" : true, + "installer_updates" : false + }, + { + "id" : -478, + "url" : "https://mirrors.almalinux.org/mirrorlist/9/extras", + "name" : "almalinux9-extras", + "distro_target" : null, + "description" : "AlmaLinux 9 Extras", + "enabled" : false, + "autorefresh" : true, + "installer_updates" : false + }, + { + "id" : -479, + "url" : "https://mirrors.almalinux.org/mirrorlist/9/powertools", + "name" : "almalinux9-powertools", + "distro_target" : null, + "description" : "AlmaLinux 9 PowerTools", + "enabled" : false, + "autorefresh" : true, + "installer_updates" : false + }, + { + "id" : -480, + "url" : "https://mirrors.almalinux.org/mirrorlist/9/ha", + "name" : "almalinux9-ha", + "distro_target" : null, + "description" : "AlmaLinux 9 HighAvailability", + "enabled" : false, + "autorefresh" : true, + "installer_updates" : false + } + ] + }, + { + "id" : -37, + "name" : "Rocky Linux", + "identifier" : "rockylinux", + "former_identifier" : "", + "version" : "9", + "release_type" : null, + "arch" : "aarch64", + "friendly_name" : "Rocky Linux 9 aarch64", + "product_class" : "SLE-M-T", + "cpe" : null, + "free" : true, + "description" : null, + "release_stage" : "released", + "eula_url" : "", + "product_type" : "base", + "offline_predecessor_ids" : [ + ], + "online_predecessor_ids" : [ + ], + "shortname" : null, + "recommended" : false, + "extensions" : [ + ], + "repositories" : [ + { + "id" : -466, + "url" : "https://mirrors.rockylinux.org/mirrorlist?repo=BaseOS-9&arch=aarch64", + "name" : "rockylinux-9", + "distro_target" : "aarch64", + "description" : "Rocky Linux 9", + "enabled" : true, + "autorefresh" : true, + "installer_updates" : false + }, + { + "id" : -467, + "url" : "https://mirrors.rockylinux.org/mirrorlist?repo=AppStream-9&arch=aarch64", + "name" : "rockylinux-9-appstream", + "distro_target" : "aarch64", + "description" : "Rocky Linux 9 AppStream", + "enabled" : true, + "autorefresh" : true, + "installer_updates" : false + }, + { + "id" : -468, + "url" : "https://mirrors.rockylinux.org/mirrorlist?repo=extras-9&arch=aarch64", + "name" : "rockylinux-9-extras", + "distro_target" : "aarch64", + "description" : "Rocky Linux 9 Extras", + "enabled" : false, + "autorefresh" : true, + "installer_updates" : false + }, + { + "id" : -470, + "url" : "https://mirrors.rockylinux.org/mirrorlist?repo=HighAvailability-9&arch=aarch64", + "name" : "rockylinux-9-ha", + "distro_target" : "aarch64", + "description" : "Rocky Linux 9 HighAvailability", + "enabled" : false, + "autorefresh" : true, + "installer_updates" : false + } + ] + }, + { + "id" : -36, + "name" : "Rocky Linux", + "identifier" : "rockylinux", + "former_identifier" : "", + "version" : "9", + "release_type" : null, + "arch" : "x86_64", + "friendly_name" : "Rocky Linux 9 x86_64", + "product_class" : "SLE-M-T", + "cpe" : null, + "free" : true, + "description" : null, + "release_stage" : "released", + "eula_url" : "", + "product_type" : "base", + "offline_predecessor_ids" : [ + ], + "online_predecessor_ids" : [ + ], + "shortname" : null, + "recommended" : false, + "extensions" : [ + ], + "repositories" : [ + { + "id" : -461, + "url" : "https://mirrors.rockylinux.org/mirrorlist?repo=BaseOS-9&arch=x86_64", + "name" : "rockylinux-9", + "distro_target" : "x86_64", + "description" : "Rocky Linux 9", + "enabled" : true, + "autorefresh" : true, + "installer_updates" : false + }, + { + "id" : -462, + "url" : "https://mirrors.rockylinux.org/mirrorlist?repo=AppStream-9&arch=x86_64", + "name" : "rockylinux-9-appstream", + "distro_target" : "x86_64", + "description" : "Rocky Linux 9 AppStream", + "enabled" : true, + "autorefresh" : true, + "installer_updates" : false + }, + { + "id" : -463, + "url" : "https://mirrors.rockylinux.org/mirrorlist?repo=extras-9&arch=x86_64", + "name" : "rockylinux-9-extras", + "distro_target" : "x86_64", + "description" : "Rocky Linux 9 Extras", + "enabled" : false, + "autorefresh" : true, + "installer_updates" : false + }, + { + "id" : -465, + "url" : "https://mirrors.rockylinux.org/mirrorlist?repo=HighAvailability-9&arch=x86_64", + "name" : "rockylinux-9-ha", + "distro_target" : "x86_64", + "description" : "Rocky Linux 9 HighAvailability", + "enabled" : false, + "autorefresh" : true, + "installer_updates" : false + } + ] + }, + { + "id" : -35, + "name" : "RHEL and Liberty Base", + "identifier" : "el-base", + "former_identifier" : "", + "version" : "9", + "release_type" : null, + "arch" : "x86_64", + "friendly_name" : "RHEL and Liberty 9 Base", + "product_class" : "SLE-M-T", + "cpe" : null, + "free" : false, + "description" : null, + "release_stage" : "released", + "eula_url" : "", + "product_type" : "base", + "offline_predecessor_ids" : [ + ], + "online_predecessor_ids" : [ + ], + "shortname" : null, + "recommended" : false, + "extensions" : [ + ], + "repositories" : [ + { + "id" : -460, + "url" : "http://localhost/pub/repositories/empty/", + "name" : "EL9-Pool", + "distro_target" : "x86_64", + "description" : "EL9-Pool", + "enabled" : true, + "autorefresh" : false, + "installer_updates" : false + } + ] + }, + { + "id" : -34, + "name" : "Open Enterprise Server", + "identifier" : "Open_Enterprise_Server", + "former_identifier" : "", + "version" : "2023", + "release_type" : null, + "arch" : "x86_64", + "friendly_name" : "Open Enterprise Server 2023", + "product_class" : "OES2", + "cpe" : null, + "free" : false, + "description" : null, + "release_stage" : "released", + "eula_url" : "", + "product_type" : "base", + "offline_predecessor_ids" : [ + ], + "online_predecessor_ids" : [ + -21 + ], + "shortname" : null, + "recommended" : false, + "extensions" : [ + ], + "repositories" : [ + { + "id" : -401, + "url" : "https://nu.novell.com/repo/$RCE/OES2023-Pool/sle-15-x86_64/", + "name" : "OES2023-Pool", + "distro_target" : "sle-15-x86_64", + "description" : "Open Enterprise Server 2023", + "enabled" : true, + "autorefresh" : false, + "installer_updates" : false + }, + { + "id" : -402, + "url" : "https://nu.novell.com/repo/$RCE/OES2023-Updates/sle-15-x86_64/", + "name" : "OES2023-Updates", + "distro_target" : "sle-15-x86_64", + "description" : "Open Enterprise Server 2023", + "enabled" : true, + "autorefresh" : true, + "installer_updates" : false + }, + { + "id" : -403, + "url" : "https://nu.novell.com/repo/$RCE/OES2023-SLE-Module-Basesystem15-SP4-Pool/sle-15-x86_64/", + "name" : "OES2023-SLE-Module-Basesystem15-SP4-Pool", + "distro_target" : "sle-15-x86_64", + "description" : "SLE-Module-Basesystem15-SP4-Pool for sle-15-x86_64", + "enabled" : true, + "autorefresh" : false, + "installer_updates" : false + }, + { + "id" : -404, + "url" : "https://nu.novell.com/repo/$RCE/OES2023-SLE-Module-Basesystem15-SP4-Updates/sle-15-x86_64/", + "name" : "OES2023-SLE-Module-Basesystem15-SP4-Updates", + "distro_target" : "sle-15-x86_64", + "description" : "SLE-Module-Basesystem15-SP4-Updates for sle-15-x86_64", + "enabled" : true, + "autorefresh" : true, + "installer_updates" : false + }, + { + "id" : -405, + "url" : "https://nu.novell.com/repo/$RCE/OES2023-SLE-Product-SLES15-SP4-Pool/sle-15-x86_64/", + "name" : "OES2023-SLE-Product-SLES15-SP4-Pool", + "distro_target" : "sle-15-x86_64", + "description" : "SLE-Product-SLES15-SP4-Pool for sle-15-x86_64", + "enabled" : true, + "autorefresh" : false, + "installer_updates" : false + }, + { + "id" : -406, + "url" : "https://nu.novell.com/repo/$RCE/OES2023-SLE-Product-SLES15-SP4-Updates/sle-15-x86_64/", + "name" : "OES2023-SLE-Product-SLES15-SP4-Updates", + "distro_target" : "sle-15-x86_64", + "description" : "SLE-Product-SLES15-SP4-Updates for sle-15-x86_64", + "enabled" : true, + "autorefresh" : true, + "installer_updates" : false + }, + { + "id" : -407, + "url" : "https://nu.novell.com/repo/$RCE/OES2023-SLE-Module-Server-Applications15-SP4-Pool/sle-15-x86_64/", + "name" : "OES2023-SLE-Module-Server-Applications15-SP4-Pool", + "distro_target" : "sle-15-x86_64", + "description" : "SLE-Module-Server-Applications15-SP4-Pool for sle-15-x86_64", + "enabled" : true, + "autorefresh" : false, + "installer_updates" : false + }, + { + "id" : -408, + "url" : "https://nu.novell.com/repo/$RCE/OES2023-SLE-Module-Server-Applications15-SP4-Updates/sle-15-x86_64/", + "name" : "OES2023-SLE-Module-Server-Applications15-SP4-Updates", + "distro_target" : "sle-15-x86_64", + "description" : "SLE-Module-Server-Applications15-SP4-Updates for sle-15-x86_64", + "enabled" : true, + "autorefresh" : true, + "installer_updates" : false + }, + { + "id" : -409, + "url" : "https://nu.novell.com/repo/$RCE/OES2023-SLE-Module-Containers15-SP4-Pool/sle-15-x86_64/", + "name" : "OES2023-SLE-Module-Containers15-SP4-Pool", + "distro_target" : "sle-15-x86_64", + "description" : "SLE-Module-Containers15-SP4-Pool for sle-15-x86_64", + "enabled" : true, + "autorefresh" : false, + "installer_updates" : false + }, + { + "id" : -410, + "url" : "https://nu.novell.com/repo/$RCE/OES2023-SLE-Module-Containers15-SP4-Updates/sle-15-x86_64/", + "name" : "OES2023-SLE-Module-Containers15-SP4-Updates", + "distro_target" : "sle-15-x86_64", + "description" : "SLE-Module-Containers15-SP4-Updates for sle-15-x86_64", + "enabled" : true, + "autorefresh" : true, + "installer_updates" : false + }, + { + "id" : -411, + "url" : "https://nu.novell.com/repo/$RCE/OES2023-SLE-Module-Basesystem15-SP4-Source-Pool/sle-15-x86_64/", + "name" : "OES2023-SLE-Module-Basesystem15-SP4-Source-Pool", + "distro_target" : "sle-15-x86_64", + "description" : "SLE-Module-Basesystem15-SP4-Source-Pool for sle-15-x86_64", + "enabled" : false, + "autorefresh" : false, + "installer_updates" : false + }, + { + "id" : -412, + "url" : "https://nu.novell.com/repo/$RCE/OES2023-SLE-Module-Basesystem15-SP4-Debuginfo-Pool/sle-15-x86_64/", + "name" : "OES2023-SLE-Module-Basesystem15-SP4-Debuginfo-Pool", + "distro_target" : "sle-15-x86_64", + "description" : "SLE-Module-Basesystem15-SP4-Debuginfo-Pool for sle-15-x86_64", + "enabled" : false, + "autorefresh" : false, + "installer_updates" : false + }, + { + "id" : -413, + "url" : "https://nu.novell.com/repo/$RCE/OES2023-SLE-Module-Basesystem15-SP4-Debuginfo-Updates/sle-15-x86_64/", + "name" : "OES2023-SLE-Module-Basesystem15-SP4-Debuginfo-Updates", + "distro_target" : "sle-15-x86_64", + "description" : "SLE-Module-Basesystem15-SP4-Debuginfo-Updates for sle-15-x86_64", + "enabled" : false, + "autorefresh" : true, + "installer_updates" : false + }, + { + "id" : -414, + "url" : "https://nu.novell.com/repo/$RCE/OES2023-SLE-Product-SLES15-SP4-Source-Pool/sle-15-x86_64/", + "name" : "OES2023-SLE-Product-SLES15-SP4-Source-Pool", + "distro_target" : "sle-15-x86_64", + "description" : "SLE-Product-SLES15-SP4-Source-Pool for sle-15-x86_64", + "enabled" : false, + "autorefresh" : false, + "installer_updates" : false + }, + { + "id" : -415, + "url" : "https://nu.novell.com/repo/$RCE/OES2023-SLE-Product-SLES15-SP4-Debuginfo-Pool/sle-15-x86_64/", + "name" : "OES2023-SLE-Product-SLES15-SP4-Debuginfo-Pool", + "distro_target" : "sle-15-x86_64", + "description" : "SLE-Product-SLES15-SP4-Debuginfo-Pool for sle-15-x86_64", + "enabled" : false, + "autorefresh" : false, + "installer_updates" : false + }, + { + "id" : -416, + "url" : "https://nu.novell.com/repo/$RCE/OES2023-SLE-Product-SLES15-SP4-Debuginfo-Updates/sle-15-x86_64/", + "name" : "OES2023-SLE-Product-SLES15-SP4-Debuginfo-Updates", + "distro_target" : "sle-15-x86_64", + "description" : "SLE-Product-SLES15-SP4-Debuginfo-Updates for sle-15-x86_64", + "enabled" : false, + "autorefresh" : true, + "installer_updates" : false + }, + { + "id" : -417, + "url" : "https://nu.novell.com/repo/$RCE/OES2023-SLE-Module-Server-Applications15-SP4-Source-Pool/sle-15-x86_64/", + "name" : "OES2023-SLE-Module-Server-Applications15-SP4-Source-Pool", + "distro_target" : "sle-15-x86_64", + "description" : "SLE-Module-Server-Applications15-SP4-Source-Pool for sle-15-x86_64", + "enabled" : false, + "autorefresh" : false, + "installer_updates" : false + }, + { + "id" : -418, + "url" : "https://nu.novell.com/repo/$RCE/OES2023-SLE-Module-Server-Applications15-SP4-Debuginfo-Pool/sle-15-x86_64/", + "name" : "OES2023-SLE-Module-Server-Applications15-SP4-Debuginfo-Pool", + "distro_target" : "sle-15-x86_64", + "description" : "SLE-Module-Server-Applications15-SP4-Debuginfo-Pool for sle-15-x86_64", + "enabled" : false, + "autorefresh" : false, + "installer_updates" : false + }, + { + "id" : -419, + "url" : "https://nu.novell.com/repo/$RCE/OES2023-SLE-Module-Server-Applications15-SP4-Debuginfo-Updates/sle-15-x86_64/", + "name" : "OES2023-SLE-Module-Server-Applications15-SP4-Debuginfo-Updates", + "distro_target" : "sle-15-x86_64", + "description" : "SLE-Module-Server-Applications15-SP4-Debuginfo-Updates for sle-15-x86_64", + "enabled" : false, + "autorefresh" : true, + "installer_updates" : false + }, + { + "id" : -420, + "url" : "https://nu.novell.com/repo/$RCE/OES2023-SLE-Module-Containers15-SP4-Source-Pool/sle-15-x86_64/", + "name" : "OES2023-SLE-Module-Containers15-SP4-Source-Pool", + "distro_target" : "sle-15-x86_64", + "description" : "SLE-Module-Containers15-SP4-Source-Pool for sle-15-x86_64", + "enabled" : false, + "autorefresh" : false, + "installer_updates" : false + }, + { + "id" : -421, + "url" : "https://nu.novell.com/repo/$RCE/OES2023-SLE-Module-Containers15-SP4-Debuginfo-Pool/sle-15-x86_64/", + "name" : "OES2023-SLE-Module-Containers15-SP4-Debuginfo-Pool", + "distro_target" : "sle-15-x86_64", + "description" : "SLE-Module-Containers15-SP4-Debuginfo-Pool for sle-15-x86_64", + "enabled" : false, + "autorefresh" : false, + "installer_updates" : false + }, + { + "id" : -422, + "url" : "https://nu.novell.com/repo/$RCE/OES2023-SLE-Module-Containers15-SP4-Debuginfo-Updates/sle-15-x86_64/", + "name" : "OES2023-SLE-Module-Containers15-SP4-Debuginfo-Updates", + "distro_target" : "sle-15-x86_64", + "description" : "SLE-Module-Containers15-SP4-Debuginfo-Updates for sle-15-x86_64", + "enabled" : false, + "autorefresh" : true, + "installer_updates" : false + }, + { + "id" : -423, + "url" : "https://nu.novell.com/repo/$RCE/OES2023-SLE-Module-DevTools15-SP4-Pool/sle-15-x86_64/", + "name" : "OES2023-SLE-Module-DevTools15-SP4-Pool", + "distro_target" : "sle-15-x86_64", + "description" : "SLE-Module-DevTools15-SP4-Pool for sle-15-x86_64", + "enabled" : false, + "autorefresh" : false, + "installer_updates" : false + }, + { + "id" : -424, + "url" : "https://nu.novell.com/repo/$RCE/OES2023-SLE-Module-DevTools15-SP4-Updates/sle-15-x86_64/", + "name" : "OES2023-SLE-Module-DevTools15-SP4-Updates", + "distro_target" : "sle-15-x86_64", + "description" : "SLE-Module-DevTools15-SP4-Updates for sle-15-x86_64", + "enabled" : false, + "autorefresh" : true, + "installer_updates" : false + }, + { + "id" : -425, + "url" : "https://nu.novell.com/repo/$RCE/OES2023-SLE-Module-DevTools15-SP4-Source-Pool/sle-15-x86_64/", + "name" : "OES2023-SLE-Module-DevTools15-SP4-Source-Pool", + "distro_target" : "sle-15-x86_64", + "description" : "SLE-Module-DevTools15-SP4-Source-Pool for sle-15-x86_64", + "enabled" : false, + "autorefresh" : false, + "installer_updates" : false + }, + { + "id" : -426, + "url" : "https://nu.novell.com/repo/$RCE/OES2023-SLE-Module-DevTools15-SP4-Debuginfo-Pool/sle-15-x86_64/", + "name" : "OES2023-SLE-Module-DevTools15-SP4-Debuginfo-Pool", + "distro_target" : "sle-15-x86_64", + "description" : "SLE-Module-DevTools15-SP4-Debuginfo-Pool for sle-15-x86_64", + "enabled" : false, + "autorefresh" : false, + "installer_updates" : false + }, + { + "id" : -427, + "url" : "https://nu.novell.com/repo/$RCE/OES2023-SLE-Module-DevTools15-SP4-Debuginfo-Updates/sle-15-x86_64/", + "name" : "OES2023-SLE-Module-DevTools15-SP4-Debuginfo-Updates", + "distro_target" : "sle-15-x86_64", + "description" : "SLE-Module-DevTools15-SP4-Debuginfo-Updates for sle-15-x86_64", + "enabled" : false, + "autorefresh" : true, + "installer_updates" : false + }, + { + "id" : -428, + "url" : "https://nu.novell.com/repo/$RCE/OES2023-SLE-Module-Desktop-Applications15-SP4-Pool/sle-15-x86_64/", + "name" : "OES2023-SLE-Module-Desktop-Applications15-SP4-Pool", + "distro_target" : "sle-15-x86_64", + "description" : "SLE-Module-Desktop-Applications15-SP4-Pool for sle-15-x86_64", + "enabled" : false, + "autorefresh" : false, + "installer_updates" : false + }, + { + "id" : -429, + "url" : "https://nu.novell.com/repo/$RCE/OES2023-SLE-Module-Desktop-Applications15-SP4-Updates/sle-15-x86_64/", + "name" : "OES2023-SLE-Module-Desktop-Applications15-SP4-Updates", + "distro_target" : "sle-15-x86_64", + "description" : "SLE-Module-Desktop-Applications15-SP4-Updates for sle-15-x86_64", + "enabled" : false, + "autorefresh" : true, + "installer_updates" : false + }, + { + "id" : -430, + "url" : "https://nu.novell.com/repo/$RCE/OES2023-SLE-Module-Desktop-Applications15-SP4-Source-Pool/sle-15-x86_64/", + "name" : "OES2023-SLE-Module-Desktop-Applications15-SP4-Source-Pool", + "distro_target" : "sle-15-x86_64", + "description" : "SLE-Module-Desktop-Applications15-SP4-Source-Pool for sle-15-x86_64", + "enabled" : false, + "autorefresh" : false, + "installer_updates" : false + }, + { + "id" : -431, + "url" : "https://nu.novell.com/repo/$RCE/OES2023-SLE-Module-Desktop-Applications15-SP4-Debuginfo-Pool/sle-15-x86_64/", + "name" : "OES2023-SLE-Module-Desktop-Applications15-SP4-Debuginfo-Pool", + "distro_target" : "sle-15-x86_64", + "description" : "SLE-Module-Desktop-Applications15-SP4-Debuginfo-Pool for sle-15-x86_64", + "enabled" : false, + "autorefresh" : false, + "installer_updates" : false + }, + { + "id" : -432, + "url" : "https://nu.novell.com/repo/$RCE/OES2023-SLE-Module-Desktop-Applications15-SP4-Debuginfo-Updates/sle-15-x86_64/", + "name" : "OES2023-SLE-Module-Desktop-Applications15-SP4-Debuginfo-Updates", + "distro_target" : "sle-15-x86_64", + "description" : "SLE-Module-Desktop-Applications15-SP4-Debuginfo-Updates for sle-15-x86_64", + "enabled" : false, + "autorefresh" : true, + "installer_updates" : false + }, + { + "id" : -433, + "url" : "https://nu.novell.com/repo/$RCE/OES2023-SLE-Module-Web-Scripting15-SP4-Pool/sle-15-x86_64/", + "name" : "OES2023-SLE-Module-Web-Scripting15-SP4-Pool", + "distro_target" : "sle-15-x86_64", + "description" : "SLE-Module-Web-Scripting15-SP4-Pool for sle-15-x86_64", + "enabled" : false, + "autorefresh" : false, + "installer_updates" : false + }, + { + "id" : -434, + "url" : "https://nu.novell.com/repo/$RCE/OES2023-SLE-Module-Web-Scripting15-SP4-Updates/sle-15-x86_64/", + "name" : "OES2023-SLE-Module-Web-Scripting15-SP4-Updates", + "distro_target" : "sle-15-x86_64", + "description" : "SLE-Module-Web-Scripting15-SP4-Updates for sle-15-x86_64", + "enabled" : false, + "autorefresh" : true, + "installer_updates" : false + }, + { + "id" : -435, + "url" : "https://nu.novell.com/repo/$RCE/OES2023-SLE-Module-Web-Scripting15-SP4-Source-Pool/sle-15-x86_64/", + "name" : "OES2023-SLE-Module-Web-Scripting15-SP4-Source-Pool", + "distro_target" : "sle-15-x86_64", + "description" : "SLE-Module-Web-Scripting15-SP4-Source-Pool for sle-15-x86_64", + "enabled" : false, + "autorefresh" : false, + "installer_updates" : false + }, + { + "id" : -436, + "url" : "https://nu.novell.com/repo/$RCE/OES2023-SLE-Module-Web-Scripting15-SP4-Debuginfo-Pool/sle-15-x86_64/", + "name" : "OES2023-SLE-Module-Web-Scripting15-SP4-Debuginfo-Pool", + "distro_target" : "sle-15-x86_64", + "description" : "SLE-Module-Web-Scripting15-SP4-Debuginfo-Pool for sle-15-x86_64", + "enabled" : false, + "autorefresh" : false, + "installer_updates" : false + }, + { + "id" : -437, + "url" : "https://nu.novell.com/repo/$RCE/OES2023-SLE-Module-Web-Scripting15-SP4-Debuginfo-Updates/sle-15-x86_64/", + "name" : "OES2023-SLE-Module-Web-Scripting15-SP4-Debuginfo-Updates", + "distro_target" : "sle-15-x86_64", + "description" : "SLE-Module-Web-Scripting15-SP4-Debuginfo-Updates for sle-15-x86_64", + "enabled" : false, + "autorefresh" : true, + "installer_updates" : false + }, + { + "id" : -438, + "url" : "https://nu.novell.com/repo/$RCE/OES2023-SLE-Module-Public-Cloud15-SP4-Pool/sle-15-x86_64/", + "name" : "OES2023-SLE-Module-Public-Cloud15-SP4-Pool", + "distro_target" : "sle-15-x86_64", + "description" : "SLE-Module-Public-Cloud15-SP4-Pool for sle-15-x86_64", + "enabled" : false, + "autorefresh" : false, + "installer_updates" : false + }, + { + "id" : -439, + "url" : "https://nu.novell.com/repo/$RCE/OES2023-SLE-Module-Public-Cloud15-SP4-Updates/sle-15-x86_64/", + "name" : "OES2023-SLE-Module-Public-Cloud15-SP4-Updates", + "distro_target" : "sle-15-x86_64", + "description" : "SLE-Module-Public-Cloud15-SP4-Updates for sle-15-x86_64", + "enabled" : false, + "autorefresh" : true, + "installer_updates" : false + }, + { + "id" : -440, + "url" : "https://nu.novell.com/repo/$RCE/OES2023-SLE-Module-Public-Cloud15-SP4-Source-Pool/sle-15-x86_64/", + "name" : "OES2023-SLE-Module-Public-Cloud15-SP4-Source-Pool", + "distro_target" : "sle-15-x86_64", + "description" : "SLE-Module-Public-Cloud15-SP4-Source-Pool for sle-15-x86_64", + "enabled" : false, + "autorefresh" : false, + "installer_updates" : false + }, + { + "id" : -441, + "url" : "https://nu.novell.com/repo/$RCE/OES2023-SLE-Module-Public-Cloud15-SP4-Debuginfo-Pool/sle-15-x86_64/", + "name" : "OES2023-SLE-Module-Public-Cloud15-SP4-Debuginfo-Pool", + "distro_target" : "sle-15-x86_64", + "description" : "SLE-Module-Public-Cloud15-SP4-Debuginfo-Pool for sle-15-x86_64", + "enabled" : false, + "autorefresh" : false, + "installer_updates" : false + }, + { + "id" : -442, + "url" : "https://nu.novell.com/repo/$RCE/OES2023-SLE-Module-Public-Cloud15-SP4-Debuginfo-Updates/sle-15-x86_64/", + "name" : "OES2023-SLE-Module-Public-Cloud15-SP4-Debuginfo-Updates", + "distro_target" : "sle-15-x86_64", + "description" : "SLE-Module-Public-Cloud15-SP4-Debuginfo-Updates for sle-15-x86_64", + "enabled" : false, + "autorefresh" : true, + "installer_updates" : false + }, + { + "id" : -443, + "url" : "https://nu.novell.com/repo/$RCE/OES2023-SLE-Module-Python3-15-SP4-Pool/sle-15-x86_64/", + "name" : "OES2023-SLE-Module-Python3-15-SP4-Pool", + "distro_target" : "sle-15-x86_64", + "description" : "SLE-Module-Python3-15-SP4-Pool for sle-15-x86_64", + "enabled" : false, + "autorefresh" : false, + "installer_updates" : false + }, + { + "id" : -444, + "url" : "https://nu.novell.com/repo/$RCE/OES2023-SLE-Module-Python3-15-SP4-Updates/sle-15-x86_64/", + "name" : "OES2023-SLE-Module-Python3-15-SP4-Updates", + "distro_target" : "sle-15-x86_64", + "description" : "SLE-Module-Python3-15-SP4-Updates for sle-15-x86_64", + "enabled" : false, + "autorefresh" : true, + "installer_updates" : false + }, + { + "id" : -445, + "url" : "https://nu.novell.com/repo/$RCE/OES2023-SLE-Module-Python3-15-SP4-Source-Pool/sle-15-x86_64/", + "name" : "OES2023-SLE-Module-Python3-15-SP4-Source-Pool", + "distro_target" : "sle-15-x86_64", + "description" : "SLE-Module-Python3-15-SP4-Source-Pool for sle-15-x86_64", + "enabled" : false, + "autorefresh" : false, + "installer_updates" : false + }, + { + "id" : -446, + "url" : "https://nu.novell.com/repo/$RCE/OES2023-SLE-Module-Python3-15-SP4-Debuginfo-Pool/sle-15-x86_64/", + "name" : "OES2023-SLE-Module-Python3-15-SP4-Debuginfo-Pool", + "distro_target" : "sle-15-x86_64", + "description" : "SLE-Module-Python3-15-SP4-Debuginfo-Pool for sle-15-x86_64", + "enabled" : false, + "autorefresh" : false, + "installer_updates" : false + }, + { + "id" : -447, + "url" : "https://nu.novell.com/repo/$RCE/OES2023-SLE-Module-Python3-15-SP4-Debuginfo-Updates/sle-15-x86_64/", + "name" : "OES2023-SLE-Module-Python3-15-SP4-Debuginfo-Updates", + "distro_target" : "sle-15-x86_64", + "description" : "SLE-Module-Python3-15-SP4-Debuginfo-Updates for sle-15-x86_64", + "enabled" : false, + "autorefresh" : true, + "installer_updates" : false + }, + { + "id" : -448, + "url" : "https://nu.novell.com/repo/$RCE/OES2023-SLE-Manager-Tools15-Pool/sle-15-x86_64/", + "name" : "OES2023-SLE-Manager-Tools15-Pool", + "distro_target" : "sle-15-x86_64", + "description" : "SLE-Manager-Tools15-Pool for sle-15-x86_64", + "enabled" : true, + "autorefresh" : false, + "installer_updates" : false + }, + { + "id" : -449, + "url" : "https://nu.novell.com/repo/$RCE/OES2023-SLE-Manager-Tools15-Updates/sle-15-x86_64/", + "name" : "OES2023-SLE-Manager-Tools15-Updates", + "distro_target" : "sle-15-x86_64", + "description" : "SLE-Manager-Tools15-Updates for sle-15-x86_64", + "enabled" : true, + "autorefresh" : true, + "installer_updates" : false + }, + { + "id" : -450, + "url" : "https://nu.novell.com/repo/$RCE/OES2023-SLE-Manager-Tools15-Source-Pool/sle-15-x86_64/", + "name" : "OES2023-SLE-Manager-Tools15-Source-Pool", + "distro_target" : "sle-15-x86_64", + "description" : "SLE-Manager-Tools15-Source-Pool for sle-15-x86_64", + "enabled" : false, + "autorefresh" : false, + "installer_updates" : false + }, + { + "id" : -451, + "url" : "https://nu.novell.com/repo/$RCE/OES2023-SLE-Manager-Tools15-Debuginfo-Pool/sle-15-x86_64/", + "name" : "OES2023-SLE-Manager-Tools15-Debuginfo-Pool", + "distro_target" : "sle-15-x86_64", + "description" : "SLE-Manager-Tools15-Debuginfo-Pool for sle-15-x86_64", + "enabled" : false, + "autorefresh" : false, + "installer_updates" : false + }, + { + "id" : -452, + "url" : "https://nu.novell.com/repo/$RCE/OES2023-SLE-Manager-Tools15-Debuginfo-Updates/sle-15-x86_64/", + "name" : "OES2023-SLE-Manager-Tools15-Debuginfo-Updates", + "distro_target" : "sle-15-x86_64", + "description" : "SLE-Manager-Tools15-Debuginfo-Updates for sle-15-x86_64", + "enabled" : false, + "autorefresh" : true, + "installer_updates" : false + }, + { + "id" : -453, + "url" : "https://nu.novell.com/repo/$RCE/OES2023-SLE-Module-Legacy15-SP4-Pool/sle-15-x86_64/", + "name" : "OES2023-SLE-Module-Legacy15-SP4-Pool", + "distro_target" : "sle-15-x86_64", + "description" : "OES2023-SLE-Module-Legacy15-SP4-Pool for sle-15-x86_64", + "enabled" : false, + "autorefresh" : false, + "installer_updates" : false + }, + { + "id" : -454, + "url" : "https://nu.novell.com/repo/$RCE/OES2023-SLE-Module-Legacy15-SP4-Updates/sle-15-x86_64/", + "name" : "OES2023-SLE-Module-Legacy15-SP4-Updates", + "distro_target" : "sle-15-x86_64", + "description" : "OES2023-SLE-Module-Legacy15-SP4-Updates for sle-15-x86_64", + "enabled" : false, + "autorefresh" : true, + "installer_updates" : false + }, + { + "id" : -455, + "url" : "https://nu.novell.com/repo/$RCE/OES2023-SLE-Module-Legacy15-SP4-Source-Pool/sle-15-x86_64/", + "name" : "OES2023-SLE-Module-Legacy15-SP4-Source-Pool", + "distro_target" : "sle-15-x86_64", + "description" : "OES2023-SLE-Module-Legacy15-SP4-Source-Pool for sle-15-x86_64", + "enabled" : false, + "autorefresh" : false, + "installer_updates" : false + }, + { + "id" : -456, + "url" : "https://nu.novell.com/repo/$RCE/OES2023-SLE-Module-Legacy15-SP4-Debuginfo-Pool/sle-15-x86_64/", + "name" : "OES2023-SLE-Module-Legacy15-SP4-Debuginfo-Pool", + "distro_target" : "sle-15-x86_64", + "description" : "OES2023-SLE-Module-Legacy15-SP4-Debuginfo-Pool for sle-15-x86_64", + "enabled" : false, + "autorefresh" : false, + "installer_updates" : false + }, + { + "id" : -457, + "url" : "https://nu.novell.com/repo/$RCE/OES2023-SLE-Module-Legacy15-SP4-Debuginfo-Updates/sle-15-x86_64/", + "name" : "OES2023-SLE-Module-Legacy15-SP4-Debuginfo-Updates", + "distro_target" : "sle-15-x86_64", + "description" : "OES2023-SLE-Module-Legacy15-SP4-Debuginfo-Updates for sle-15-x86_64", + "enabled" : false, + "autorefresh" : true, + "installer_updates" : false + } + ] + }, + { + "id" : -33, + "name" : "Ubuntu", + "identifier" : "Ubuntu-Client", + "former_identifier" : "", + "version" : "22.04", + "release_type" : null, + "arch" : "amd64", + "friendly_name" : "Ubuntu 22.04", + "product_class" : "SLE-M-T-BETA", + "cpe" : null, + "free" : true, + "description" : null, + "release_stage" : "beta", + "eula_url" : "", + "product_type" : "base", + "offline_predecessor_ids" : [ + ], + "online_predecessor_ids" : [ + ], + "shortname" : null, + "recommended" : false, + "extensions" : [ + ], + "repositories" : [ + { + "id" : -385, + "url" : "http://archive.ubuntu.com/ubuntu/dists/jammy/main/binary-amd64/", + "name" : "ubuntu-2204-amd64-main", + "distro_target" : "amd64", + "description" : "Ubuntu 22.04 LTS AMD64 Main", + "enabled" : true, + "autorefresh" : false, + "installer_updates" : false + }, + { + "id" : -386, + "url" : "http://archive.ubuntu.com/ubuntu/dists/jammy/multiverse/binary-amd64/", + "name" : "ubuntu-2204-amd64-multiverse", + "distro_target" : "amd64", + "description" : "Ubuntu 22.04 LTS AMD64 Multiverse", + "enabled" : false, + "autorefresh" : true, + "installer_updates" : false + }, + { + "id" : -387, + "url" : "http://archive.ubuntu.com/ubuntu/dists/jammy/restricted/binary-amd64/", + "name" : "ubuntu-2204-amd64-restricted", + "distro_target" : "amd64", + "description" : "Ubuntu 22.04 LTS AMD64 Restricted", + "enabled" : false, + "autorefresh" : true, + "installer_updates" : false + }, + { + "id" : -388, + "url" : "http://archive.ubuntu.com/ubuntu/dists/jammy/universe/binary-amd64/", + "name" : "ubuntu-2204-amd64-universe", + "distro_target" : "amd64", + "description" : "Ubuntu 22.04 LTS AMD64 Universe", + "enabled" : false, + "autorefresh" : true, + "installer_updates" : false + }, + { + "id" : -389, + "url" : "http://archive.ubuntu.com/ubuntu/dists/jammy-backports/main/binary-amd64/", + "name" : "ubuntu-2204-amd64-main-backports", + "distro_target" : "amd64", + "description" : "Ubuntu 22.04 LTS AMD64 Main Backports", + "enabled" : false, + "autorefresh" : true, + "installer_updates" : false + }, + { + "id" : -390, + "url" : "http://archive.ubuntu.com/ubuntu/dists/jammy-backports/multiverse/binary-amd64/", + "name" : "ubuntu-2204-amd64-multiverse-backports", + "distro_target" : "amd64", + "description" : "Ubuntu 22.04 LTS AMD64 Multiverse Backports", + "enabled" : false, + "autorefresh" : true, + "installer_updates" : false + }, + { + "id" : -391, + "url" : "http://archive.ubuntu.com/ubuntu/dists/jammy-backports/restricted/binary-amd64/", + "name" : "ubuntu-2204-amd64-restricted-backports", + "distro_target" : "amd64", + "description" : "Ubuntu 22.04 LTS AMD64 Restricted Backports", + "enabled" : false, + "autorefresh" : true, + "installer_updates" : false + }, + { + "id" : -392, + "url" : "http://archive.ubuntu.com/ubuntu/dists/jammy-backports/universe/binary-amd64/", + "name" : "ubuntu-2204-amd64-universe-backports", + "distro_target" : "amd64", + "description" : "Ubuntu 22.04 LTS AMD64 Universe Backports", + "enabled" : false, + "autorefresh" : true, + "installer_updates" : false + }, + { + "id" : -393, + "url" : "http://security.ubuntu.com/ubuntu/dists/jammy-security/main/binary-amd64/", + "name" : "ubuntu-2204-amd64-main-security", + "distro_target" : "amd64", + "description" : "Ubuntu 22.04 LTS AMD64 Main Security", + "enabled" : true, + "autorefresh" : true, + "installer_updates" : false + }, + { + "id" : -394, + "url" : "http://security.ubuntu.com/ubuntu/dists/jammy-security/multiverse/binary-amd64/", + "name" : "ubuntu-2204-amd64-multiverse-security", + "distro_target" : "amd64", + "description" : "Ubuntu 22.04 LTS AMD64 Multiverse Security", + "enabled" : false, + "autorefresh" : true, + "installer_updates" : false + }, + { + "id" : -395, + "url" : "http://security.ubuntu.com/ubuntu/dists/jammy-security/restricted/binary-amd64/", + "name" : "ubuntu-2204-amd64-restricted-security", + "distro_target" : "amd64", + "description" : "Ubuntu 22.04 LTS AMD64 Restricted Security", + "enabled" : false, + "autorefresh" : true, + "installer_updates" : false + }, + { + "id" : -396, + "url" : "http://security.ubuntu.com/ubuntu/dists/jammy-security/universe/binary-amd64/", + "name" : "ubuntu-2204-amd64-universe-security", + "distro_target" : "amd64", + "description" : "Ubuntu 22.04 LTS AMD64 Universe Security", + "enabled" : false, + "autorefresh" : true, + "installer_updates" : false + }, + { + "id" : -397, + "url" : "http://archive.ubuntu.com/ubuntu/dists/jammy-updates/main/binary-amd64/", + "name" : "ubuntu-2204-amd64-main-updates", + "distro_target" : "amd64", + "description" : "Ubuntu 22.04 LTS AMD64 Main Updates", + "enabled" : true, + "autorefresh" : true, + "installer_updates" : false + }, + { + "id" : -398, + "url" : "http://archive.ubuntu.com/ubuntu/dists/jammy-updates/multiverse/binary-amd64/", + "name" : "ubuntu-2204-amd64-multiverse-updates", + "distro_target" : "amd64", + "description" : "Ubuntu 22.04 LTS AMD64 Multiverse Updates", + "enabled" : false, + "autorefresh" : true, + "installer_updates" : false + }, + { + "id" : -399, + "url" : "http://archive.ubuntu.com/ubuntu/dists/jammy-updates/restricted/binary-amd64/", + "name" : "ubuntu-2204-amd64-restricted-updates", + "distro_target" : "amd64", + "description" : "Ubuntu 22.04 LTS AMD64 Restricted Updates", + "enabled" : false, + "autorefresh" : true, + "installer_updates" : false + }, + { + "id" : -400, + "url" : "http://archive.ubuntu.com/ubuntu/dists/jammy-updates/universe/binary-amd64/", + "name" : "ubuntu-2204-amd64-universe-updates", + "distro_target" : "amd64", + "description" : "Ubuntu 22.04 LTS AMD64 Universe Updates", + "enabled" : false, + "autorefresh" : true, + "installer_updates" : false + } + ] + }, + { + "id" : -32, + "name" : "Debian", + "identifier" : "Debian-Client", + "former_identifier" : "", + "version" : "11", + "release_type" : null, + "arch" : "amd64", + "friendly_name" : "Debian 11", + "product_class" : "SLE-M-T", + "cpe" : null, + "free" : true, + "description" : null, + "release_stage" : "released", + "eula_url" : "", + "product_type" : "base", + "offline_predecessor_ids" : [ + ], + "online_predecessor_ids" : [ + ], + "shortname" : null, + "recommended" : false, + "extensions" : [ + ], + "repositories" : [ + { + "id" : -380, + "url" : "http://deb.debian.org/debian/dists/bullseye/main/binary-amd64/", + "name" : "debian-11-pool", + "distro_target" : "amd64", + "description" : "Debian 11 (bullseye) pool for amd64", + "enabled" : true, + "autorefresh" : false, + "installer_updates" : false + }, + { + "id" : -381, + "url" : "http://deb.debian.org/debian/dists/bullseye-updates/main/binary-amd64/", + "name" : "debian-11-main-updates", + "distro_target" : "amd64", + "description" : "Debian 11 (bullseye) AMD64 Main Updates", + "enabled" : true, + "autorefresh" : false, + "installer_updates" : false + }, + { + "id" : -382, + "url" : "http://security.debian.org/debian-security/dists/bullseye-security/updates/main/binary-amd64/", + "name" : "debian-11-main-security", + "distro_target" : "amd64", + "description" : "Debian 11 (bullseye) AMD64 Main Security", + "enabled" : true, + "autorefresh" : false, + "installer_updates" : false + } + ] + }, + { + "id" : -31, + "name" : "CentOS", + "identifier" : "centos", + "former_identifier" : "", + "version" : "7", + "release_type" : null, + "arch" : "aarch64", + "friendly_name" : "CentOS 7 aarch64", + "product_class" : "SLE-M-T", + "cpe" : null, + "free" : true, + "description" : null, + "release_stage" : "released", + "eula_url" : "", + "product_type" : "base", + "offline_predecessor_ids" : [ + ], + "online_predecessor_ids" : [ + ], + "shortname" : null, + "recommended" : false, + "extensions" : [ + ], + "repositories" : [ + { + "id" : -334, + "url" : "http://mirrorlist.centos.org/?release=7&arch=aarch64&repo=os", + "name" : "centos7", + "distro_target" : "aarch64", + "description" : "CentOS 7", + "enabled" : true, + "autorefresh" : false, + "installer_updates" : false + }, + { + "id" : -336, + "url" : "http://mirrorlist.centos.org/?release=7&arch=aarch64&repo=centosplus", + "name" : "centos7-centosplus", + "distro_target" : "aarch64", + "description" : "CentOS 7 Plus", + "enabled" : false, + "autorefresh" : false, + "installer_updates" : false + }, + { + "id" : -337, + "url" : "http://mirrorlist.centos.org/?release=7&arch=aarch64&repo=cr", + "name" : "centos7-cr", + "distro_target" : "aarch64", + "description" : "CentOS 7 CR", + "enabled" : false, + "autorefresh" : false, + "installer_updates" : false + }, + { + "id" : -338, + "url" : "http://mirrorlist.centos.org/?release=7&arch=aarch64&repo=extras", + "name" : "centos7-extras", + "distro_target" : "aarch64", + "description" : "CentOS 7 Extras", + "enabled" : false, + "autorefresh" : false, + "installer_updates" : false + }, + { + "id" : -339, + "url" : "http://mirrorlist.centos.org/?release=7&arch=aarch64&repo=fasttrack", + "name" : "centos7-fasttrack", + "distro_target" : "aarch64", + "description" : "CentOS 7 FastTrack", + "enabled" : false, + "autorefresh" : false, + "installer_updates" : false + }, + { + "id" : -341, + "url" : "http://mirrorlist.centos.org/?release=7&arch=aarch64&repo=updates", + "name" : "centos7-updates", + "distro_target" : "aarch64", + "description" : "CentOS 7 Updates", + "enabled" : true, + "autorefresh" : false, + "installer_updates" : false + }, + { + "id" : -342, + "url" : "http://mirrors.fedoraproject.org/mirrorlist?repo=epel-7&arch=aarch64", + "name" : "epel7", + "distro_target" : "aarch64", + "description" : "EPEL 7", + "enabled" : false, + "autorefresh" : false, + "installer_updates" : false + } + ] + }, + { + "id" : -30, + "name" : "CentOS", + "identifier" : "centos", + "former_identifier" : "", + "version" : "8", + "release_type" : null, + "arch" : "aarch64", + "friendly_name" : "CentOS 8 aarch64", + "product_class" : "SLE-M-T", + "cpe" : null, + "free" : true, + "description" : null, + "release_stage" : "released", + "eula_url" : "", + "product_type" : "base", + "offline_predecessor_ids" : [ + ], + "online_predecessor_ids" : [ + ], + "shortname" : null, + "recommended" : false, + "extensions" : [ + ], + "repositories" : [ + { + "id" : -372, + "url" : "https://vault.centos.org/centos/8/BaseOS/aarch64/os/", + "name" : "centos8", + "distro_target" : "aarch64", + "description" : "CentOS 8", + "enabled" : true, + "autorefresh" : false, + "installer_updates" : false + }, + { + "id" : -373, + "url" : "https://vault.centos.org/centos/8/AppStream/aarch64/os/", + "name" : "centos8-appstream", + "distro_target" : "aarch64", + "description" : "CentOS 8 AppStream", + "enabled" : true, + "autorefresh" : false, + "installer_updates" : false + }, + { + "id" : -374, + "url" : "https://vault.centos.org/centos/8/centosplus/aarch64/os/", + "name" : "centos8-centosplus", + "distro_target" : "aarch64", + "description" : "CentOS 8 Plus", + "enabled" : false, + "autorefresh" : false, + "installer_updates" : false + }, + { + "id" : -375, + "url" : "https://vault.centos.org/centos/8/cr/aarch64/os/", + "name" : "centos8-cr", + "distro_target" : "aarch64", + "description" : "CentOS 8 CR", + "enabled" : false, + "autorefresh" : false, + "installer_updates" : false + }, + { + "id" : -376, + "url" : "https://vault.centos.org/centos/8/extras/aarch64/os/", + "name" : "centos8-extras", + "distro_target" : "aarch64", + "description" : "CentOS 8 Extras", + "enabled" : false, + "autorefresh" : false, + "installer_updates" : false + }, + { + "id" : -377, + "url" : "https://vault.centos.org/centos/8/fasttrack/aarch64/os/", + "name" : "centos8-fasttrack", + "distro_target" : "aarch64", + "description" : "CentOS 8 FastTrack", + "enabled" : false, + "autorefresh" : false, + "installer_updates" : false + }, + { + "id" : -378, + "url" : "https://vault.centos.org/centos/8/PowerTools/aarch64/os/", + "name" : "centos8-powertools", + "distro_target" : "aarch64", + "description" : "CentOS 8 PowerTools", + "enabled" : false, + "autorefresh" : false, + "installer_updates" : false + }, + { + "id" : -351, + "url" : "http://mirrors.fedoraproject.org/mirrorlist?repo=epel-8&arch=aarch64", + "name" : "epel8", + "distro_target" : "aarch64", + "description" : "EPEL 8", + "enabled" : false, + "autorefresh" : false, + "installer_updates" : false + } + ] + }, + { + "id" : -29, + "name" : "Oracle Linux", + "identifier" : "oraclelinux", + "former_identifier" : "", + "version" : "8", + "release_type" : null, + "arch" : "aarch64", + "friendly_name" : "Oracle Linux 8 aarch64", + "product_class" : "SLE-M-T", + "cpe" : null, + "free" : true, + "description" : null, + "release_stage" : "released", + "eula_url" : "", + "product_type" : "base", + "offline_predecessor_ids" : [ + ], + "online_predecessor_ids" : [ + ], + "shortname" : null, + "recommended" : false, + "extensions" : [ + ], + "repositories" : [ + { + "id" : -316, + "url" : "https://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/aarch64/", + "name" : "oraclelinux8", + "distro_target" : "aarch64", + "description" : "Oracle Linux 8", + "enabled" : true, + "autorefresh" : false, + "installer_updates" : false + }, + { + "id" : -317, + "url" : "https://yum.oracle.com/repo/OracleLinux/OL8/appstream/aarch64/", + "name" : "oraclelinux8-appstream", + "distro_target" : "aarch64", + "description" : "Oracle Linux 8 AppStream", + "enabled" : true, + "autorefresh" : false, + "installer_updates" : false + }, + { + "id" : -318, + "url" : "https://yum.oracle.com/repo/OracleLinux/OL8/addons/aarch64/", + "name" : "oraclelinux8-addons", + "distro_target" : "aarch64", + "description" : "Addons for Oracle Linux 8", + "enabled" : false, + "autorefresh" : false, + "installer_updates" : false + }, + { + "id" : -319, + "url" : "https://yum.oracle.com/repo/OracleLinux/OL8/codeready/builder/aarch64/", + "name" : "oraclelinux8-codereadybuilder", + "distro_target" : "aarch64", + "description" : "Latest CodeReady Builder packages for Oracle Linux 8", + "enabled" : false, + "autorefresh" : false, + "installer_updates" : false + }, + { + "id" : -320, + "url" : "https://yum.oracle.com/repo/OracleLinux/OL8/developer/UEKR6/aarch64/", + "name" : "oraclelinux8-developer-uek-r6", + "distro_target" : "aarch64", + "description" : "Latest Unbreakable Enterprise Kernel Release 6 for Oracle Linux 8", + "enabled" : false, + "autorefresh" : false, + "installer_updates" : false + }, + { + "id" : -321, + "url" : "https://yum.oracle.com/repo/OracleLinux/OL8/developer/aarch64/", + "name" : "oraclelinux8-developer", + "distro_target" : "aarch64", + "description" : "Packages for test and development - Oracle Linux 8", + "enabled" : false, + "autorefresh" : false, + "installer_updates" : false + } + ] + }, + { + "id" : -28, + "name" : "Oracle Linux", + "identifier" : "oraclelinux", + "former_identifier" : "", + "version" : "7", + "release_type" : null, + "arch" : "aarch64", + "friendly_name" : "Oracle Linux 7 aarch64", + "product_class" : "SLE-M-T", + "cpe" : null, + "free" : true, + "description" : null, + "release_stage" : "released", + "eula_url" : "", + "product_type" : "base", + "offline_predecessor_ids" : [ + ], + "online_predecessor_ids" : [ + ], + "shortname" : null, + "recommended" : false, + "extensions" : [ + ], + "repositories" : [ + { + "id" : -297, + "url" : "https://yum.oracle.com/repo/OracleLinux/OL7/latest/aarch64/", + "name" : "oraclelinux7", + "distro_target" : "aarch64", + "description" : "Oracle Linux 7", + "enabled" : true, + "autorefresh" : false, + "installer_updates" : false + }, + { + "id" : -298, + "url" : "https://yum.oracle.com/repo/OracleLinux/OL7/addons/aarch64/", + "name" : "oraclelinux7-addons", + "distro_target" : "aarch64", + "description" : "Addons for Oracle Linux 7", + "enabled" : false, + "autorefresh" : false, + "installer_updates" : false + }, + { + "id" : -301, + "url" : "https://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/aarch64/", + "name" : "oraclelinux7-uek-r6", + "distro_target" : "aarch64", + "description" : "Latest Unbreakable Enterprise Kernel Release 6 for Oracle Linux 7", + "enabled" : false, + "autorefresh" : false, + "installer_updates" : false + }, + { + "id" : -312, + "url" : "https://yum.oracle.com/repo/OracleLinux/OL7/SoftwareCollections/aarch64/", + "name" : "oraclelinux7-scl", + "distro_target" : "aarch64", + "description" : "Software Collection Library packages for Oracle Linux 7", + "enabled" : false, + "autorefresh" : false, + "installer_updates" : false + } + ] + }, + { + "id" : -27, + "name" : "Rocky Linux", + "identifier" : "rockylinux", + "former_identifier" : "", + "version" : "8", + "release_type" : null, + "arch" : "aarch64", + "friendly_name" : "Rocky Linux 8 aarch64", + "product_class" : "SLE-M-T", + "cpe" : null, + "free" : true, + "description" : null, + "release_stage" : "released", + "eula_url" : "", + "product_type" : "base", + "offline_predecessor_ids" : [ + ], + "online_predecessor_ids" : [ + ], + "shortname" : null, + "recommended" : false, + "extensions" : [ + ], + "repositories" : [ + { + "id" : -329, + "url" : "https://mirrors.rockylinux.org/mirrorlist?repo=BaseOS-8&arch=aarch64", + "name" : "rockylinux-8", + "distro_target" : "aarch64", + "description" : "Rocky Linux 8", + "enabled" : true, + "autorefresh" : true, + "installer_updates" : false + }, + { + "id" : -330, + "url" : "https://mirrors.rockylinux.org/mirrorlist?repo=AppStream-8&arch=aarch64", + "name" : "rockylinux-8-appstream", + "distro_target" : "aarch64", + "description" : "Rocky Linux 8 AppStream", + "enabled" : true, + "autorefresh" : true, + "installer_updates" : false + }, + { + "id" : -331, + "url" : "https://mirrors.rockylinux.org/mirrorlist?repo=extras-8&arch=aarch64", + "name" : "rockylinux-8-extras", + "distro_target" : "aarch64", + "description" : "Rocky Linux 8 Extras", + "enabled" : false, + "autorefresh" : true, + "installer_updates" : false + }, + { + "id" : -332, + "url" : "https://mirrors.rockylinux.org/mirrorlist?repo=PowerTools-8&arch=aarch64", + "name" : "rockylinux-8-powertools", + "distro_target" : "aarch64", + "description" : "Rocky Linux 8 PowerTools", + "enabled" : false, + "autorefresh" : true, + "installer_updates" : false + }, + { + "id" : -333, + "url" : "https://mirrors.rockylinux.org/mirrorlist?repo=HighAvailability-8&arch=aarch64", + "name" : "rockylinux-8-ha", + "distro_target" : "aarch64", + "description" : "Rocky Linux 8 HighAvailability", + "enabled" : false, + "autorefresh" : true, + "installer_updates" : false + } + ] + }, + { + "id" : -26, + "name" : "AlmaLinux", + "identifier" : "almalinux", + "former_identifier" : "", + "version" : "8", + "release_type" : null, + "arch" : "aarch64", + "friendly_name" : "AlmaLinux 8 aarch64", + "product_class" : "SLE-M-T", + "cpe" : null, + "free" : true, + "description" : null, + "release_stage" : "released", + "eula_url" : "", + "product_type" : "base", + "offline_predecessor_ids" : [ + ], + "online_predecessor_ids" : [ + ], + "shortname" : null, + "recommended" : false, + "extensions" : [ + ], + "repositories" : [ + { + "id" : -360, + "url" : "https://mirrors.almalinux.org/mirrorlist/8/baseos", + "name" : "almalinux8", + "distro_target" : null, + "description" : "AlmaLinux 8", + "enabled" : true, + "autorefresh" : true, + "installer_updates" : false + }, + { + "id" : -361, + "url" : "https://mirrors.almalinux.org/mirrorlist/8/appstream", + "name" : "almalinux8-appstream", + "distro_target" : null, + "description" : "AlmaLinux 8 AppStream", + "enabled" : true, + "autorefresh" : true, + "installer_updates" : false + }, + { + "id" : -362, + "url" : "https://mirrors.almalinux.org/mirrorlist/8/extras", + "name" : "almalinux8-extras", + "distro_target" : null, + "description" : "AlmaLinux 8 Extras", + "enabled" : false, + "autorefresh" : true, + "installer_updates" : false + }, + { + "id" : -363, + "url" : "https://mirrors.almalinux.org/mirrorlist/8/powertools", + "name" : "almalinux8-powertools", + "distro_target" : null, + "description" : "AlmaLinux 8 PowerTools", + "enabled" : false, + "autorefresh" : true, + "installer_updates" : false + }, + { + "id" : -364, + "url" : "https://mirrors.almalinux.org/mirrorlist/8/ha", + "name" : "almalinux8-ha", + "distro_target" : null, + "description" : "AlmaLinux 8 HighAvailability", + "enabled" : false, + "autorefresh" : true, + "installer_updates" : false + } + ] + }, + { + "id" : -25, + "name" : "Amazon Linux", + "identifier" : "amazonlinux", + "former_identifier" : "", + "version" : "2", + "release_type" : null, + "arch" : "aarch64", + "friendly_name" : "Amazon Linux 2 aarch64", + "product_class" : "SLE-M-T", + "cpe" : null, + "free" : true, + "description" : null, + "release_stage" : "released", + "eula_url" : "", + "product_type" : "base", + "offline_predecessor_ids" : [ + ], + "online_predecessor_ids" : [ + ], + "shortname" : null, + "recommended" : false, + "extensions" : [ + ], + "repositories" : [ + { + "id" : -322, + "url" : "https://amazonlinux.default.amazonlinux.com/2/core/latest/aarch64/mirror.list", + "name" : "amazonlinux2-core", + "distro_target" : "aarch64", + "description" : "Amazon Linux 2 Core", + "enabled" : true, + "autorefresh" : true, + "installer_updates" : false + }, + { + "id" : -323, + "url" : "https://amazonlinux.default.amazonlinux.com/2/extras/docker/latest/aarch64/mirror.list", + "name" : "amazonlinux2-extras-docker", + "distro_target" : "aarch64", + "description" : "Amazon Extras 2 repo for Docker", + "enabled" : false, + "autorefresh" : true, + "installer_updates" : false + } + ] + }, + { + "id" : -24, + "name" : "Rocky Linux", + "identifier" : "rockylinux", + "former_identifier" : "", + "version" : "8", + "release_type" : null, + "arch" : "x86_64", + "friendly_name" : "Rocky Linux 8 x86_64", + "product_class" : "SLE-M-T", + "cpe" : null, + "free" : true, + "description" : null, + "release_stage" : "released", + "eula_url" : "", + "product_type" : "base", + "offline_predecessor_ids" : [ + ], + "online_predecessor_ids" : [ + ], + "shortname" : null, + "recommended" : false, + "extensions" : [ + ], + "repositories" : [ + { + "id" : -292, + "url" : "https://mirrors.rockylinux.org/mirrorlist?repo=BaseOS-8&arch=x86_64", + "name" : "rockylinux-8", + "distro_target" : "x86_64", + "description" : "Rocky Linux 8", + "enabled" : true, + "autorefresh" : true, + "installer_updates" : false + }, + { + "id" : -293, + "url" : "https://mirrors.rockylinux.org/mirrorlist?repo=AppStream-8&arch=x86_64", + "name" : "rockylinux-8-appstream", + "distro_target" : "x86_64", + "description" : "Rocky Linux 8 AppStream", + "enabled" : true, + "autorefresh" : true, + "installer_updates" : false + }, + { + "id" : -294, + "url" : "https://mirrors.rockylinux.org/mirrorlist?repo=extras-8&arch=x86_64", + "name" : "rockylinux-8-extras", + "distro_target" : "x86_64", + "description" : "Rocky Linux 8 Extras", + "enabled" : false, + "autorefresh" : true, + "installer_updates" : false + }, + { + "id" : -295, + "url" : "https://mirrors.rockylinux.org/mirrorlist?repo=PowerTools-8&arch=x86_64", + "name" : "rockylinux-8-powertools", + "distro_target" : "x86_64", + "description" : "Rocky Linux 8 PowerTools", + "enabled" : false, + "autorefresh" : true, + "installer_updates" : false + }, + { + "id" : -296, + "url" : "https://mirrors.rockylinux.org/mirrorlist?repo=HighAvailability-8&arch=x86_64", + "name" : "rockylinux-8-ha", + "distro_target" : "x86_64", + "description" : "Rocky Linux 8 HighAvailability", + "enabled" : false, + "autorefresh" : true, + "installer_updates" : false + } + ] + }, + { + "id" : -23, + "name" : "AlmaLinux", + "identifier" : "almalinux", + "former_identifier" : "", + "version" : "8", + "release_type" : null, + "arch" : "x86_64", + "friendly_name" : "AlmaLinux 8 x86_64", + "product_class" : "SLE-M-T", + "cpe" : null, + "free" : true, + "description" : null, + "release_stage" : "released", + "eula_url" : "", + "product_type" : "base", + "offline_predecessor_ids" : [ + ], + "online_predecessor_ids" : [ + ], + "shortname" : null, + "recommended" : false, + "extensions" : [ + ], + "repositories" : [ + { + "id" : -360, + "url" : "https://mirrors.almalinux.org/mirrorlist/8/baseos", + "name" : "almalinux8", + "distro_target" : null, + "description" : "AlmaLinux 8", + "enabled" : true, + "autorefresh" : true, + "installer_updates" : false + }, + { + "id" : -361, + "url" : "https://mirrors.almalinux.org/mirrorlist/8/appstream", + "name" : "almalinux8-appstream", + "distro_target" : null, + "description" : "AlmaLinux 8 AppStream", + "enabled" : true, + "autorefresh" : true, + "installer_updates" : false + }, + { + "id" : -362, + "url" : "https://mirrors.almalinux.org/mirrorlist/8/extras", + "name" : "almalinux8-extras", + "distro_target" : null, + "description" : "AlmaLinux 8 Extras", + "enabled" : false, + "autorefresh" : true, + "installer_updates" : false + }, + { + "id" : -363, + "url" : "https://mirrors.almalinux.org/mirrorlist/8/powertools", + "name" : "almalinux8-powertools", + "distro_target" : null, + "description" : "AlmaLinux 8 PowerTools", + "enabled" : false, + "autorefresh" : true, + "installer_updates" : false + }, + { + "id" : -364, + "url" : "https://mirrors.almalinux.org/mirrorlist/8/ha", + "name" : "almalinux8-ha", + "distro_target" : null, + "description" : "AlmaLinux 8 HighAvailability", + "enabled" : false, + "autorefresh" : true, + "installer_updates" : false + } + ] + }, + { + "id" : -22, + "name" : "Amazon Linux", + "identifier" : "amazonlinux", + "former_identifier" : "", + "version" : "2", + "release_type" : null, + "arch" : "x86_64", + "friendly_name" : "Amazon Linux 2 x86_64", + "product_class" : "SLE-M-T", + "cpe" : null, + "free" : true, + "description" : null, + "release_stage" : "released", + "eula_url" : "", + "product_type" : "base", + "offline_predecessor_ids" : [ + ], + "online_predecessor_ids" : [ + ], + "shortname" : null, + "recommended" : false, + "extensions" : [ + ], + "repositories" : [ + { + "id" : -285, + "url" : "https://amazonlinux.default.amazonlinux.com/2/core/latest/x86_64/mirror.list", + "name" : "amazonlinux2-core", + "distro_target" : "x86_64", + "description" : "Amazon Linux 2 Core", + "enabled" : true, + "autorefresh" : true, + "installer_updates" : false + }, + { + "id" : -286, + "url" : "https://amazonlinux.default.amazonlinux.com/2/extras/docker/latest/x86_64/mirror.list", + "name" : "amazonlinux2-extras-docker", + "distro_target" : "x86_64", + "description" : "Amazon Extras 2 repo for Docker", + "enabled" : false, + "autorefresh" : true, + "installer_updates" : false + } + ] + }, + { + "id" : -21, + "name" : "Open Enterprise Server", + "identifier" : "Open_Enterprise_Server", + "former_identifier" : "", + "version" : "2018.3", + "release_type" : null, + "arch" : "x86_64", + "friendly_name" : "Open Enterprise Server 2018 SP3", + "product_class" : "OES2", + "cpe" : null, + "free" : false, + "description" : null, + "release_stage" : "released", + "eula_url" : "", + "product_type" : "base", + "offline_predecessor_ids" : [ + ], + "online_predecessor_ids" : [ + -9 + ], + "shortname" : null, + "recommended" : false, + "extensions" : [ + ], + "repositories" : [ + { + "id" : -255, + "url" : "https://nu.novell.com/repo/$RCE/OES2018-SP3-Pool/sle-12-x86_64/", + "name" : "OES2018-SP3-Pool", + "distro_target" : "sle-12-x86_64", + "description" : "Open Enterprise Server 2018 SP3", + "enabled" : true, + "autorefresh" : false, + "installer_updates" : false + }, + { + "id" : -256, + "url" : "https://nu.novell.com/repo/$RCE/OES2018-SP3-Updates/sle-12-x86_64/", + "name" : "OES2018-SP3-Updates", + "distro_target" : "sle-12-x86_64", + "description" : "Open Enterprise Server 2018 SP3", + "enabled" : true, + "autorefresh" : true, + "installer_updates" : false + }, + { + "id" : -257, + "url" : "https://nu.novell.com/repo/$RCE/OES2018-SP3-SLES12-SP5-Debuginfo-Pool/sle-12-x86_64/", + "name" : "OES2018-SP3-SLES12-SP5-Debuginfo-Pool", + "distro_target" : "sle-12-x86_64", + "description" : "SUSE Linux Enterprise offers a comprehensive suite of products built on a single code base. The platform addresses business needs from the smallest thin-client devices to the world's most powerful high-performance computing and mainframe servers. SUSE Linux Enterprise offers common management tools and technology certifications across the platform, and each product is enterprise-class.", + "enabled" : false, + "autorefresh" : false, + "installer_updates" : false + }, + { + "id" : -258, + "url" : "https://nu.novell.com/repo/$RCE/OES2018-SP3-SLES12-SP5-Debuginfo-Updates/sle-12-x86_64/", + "name" : "OES2018-SP3-SLES12-SP5-Debuginfo-Updates", + "distro_target" : "sle-12-x86_64", + "description" : "SUSE Linux Enterprise offers a comprehensive suite of products built on a single code base. The platform addresses business needs from the smallest thin-client devices to the world's most powerful high-performance computing and mainframe servers. SUSE Linux Enterprise offers common management tools and technology certifications across the platform, and each product is enterprise-class.", + "enabled" : false, + "autorefresh" : true, + "installer_updates" : false + }, + { + "id" : -259, + "url" : "https://nu.novell.com/repo/$RCE/OES2018-SP3-SLES12-SP5-Pool/sle-12-x86_64/", + "name" : "OES2018-SP3-SLES12-SP5-Pool", + "distro_target" : "sle-12-x86_64", + "description" : "SUSE Linux Enterprise offers a comprehensive suite of products built on a single code base. The platform addresses business needs from the smallest thin-client devices to the world's most powerful high-performance computing and mainframe servers. SUSE Linux Enterprise offers common management tools and technology certifications across the platform, and each product is enterprise-class.", + "enabled" : true, + "autorefresh" : false, + "installer_updates" : false + }, + { + "id" : -260, + "url" : "https://nu.novell.com/repo/$RCE/OES2018-SP3-SLES12-SP5-Updates/sle-12-x86_64/", + "name" : "OES2018-SP3-SLES12-SP5-Updates", + "distro_target" : "sle-12-x86_64", + "description" : "SUSE Linux Enterprise offers a comprehensive suite of products built on a single code base. The platform addresses business needs from the smallest thin-client devices to the world's most powerful high-performance computing and mainframe servers. SUSE Linux Enterprise offers common management tools and technology certifications across the platform, and each product is enterprise-class.", + "enabled" : true, + "autorefresh" : true, + "installer_updates" : false + }, + { + "id" : -261, + "url" : "https://nu.novell.com/repo/$RCE/OES2018-SP3-SLE-Module-Containers12-Pool/sle-12-x86_64/", + "name" : "OES2018-SP3-SLE-Module-Containers12-Pool", + "distro_target" : "sle-12-x86_64", + "description" : "This Module contains several packages revolving around containers and related tools.", + "enabled" : true, + "autorefresh" : false, + "installer_updates" : false + }, + { + "id" : -262, + "url" : "https://nu.novell.com/repo/$RCE/OES2018-SP3-SLE-Module-Containers12-Updates/sle-12-x86_64/", + "name" : "OES2018-SP3-SLE-Module-Containers12-Updates", + "distro_target" : "sle-12-x86_64", + "description" : "This Module contains several packages revolving around containers and related tools.", + "enabled" : true, + "autorefresh" : true, + "installer_updates" : false + }, + { + "id" : -263, + "url" : "https://nu.novell.com/repo/$RCE/OES2018-SP3-SLE-Module-Containers12-Debuginfo-Pool/sle-12-x86_64/", + "name" : "OES2018-SP3-SLE-Module-Containers12-Debuginfo-Pool", + "distro_target" : "sle-12-x86_64", + "description" : "This Module contains several packages revolving around containers and related tools.", + "enabled" : false, + "autorefresh" : false, + "installer_updates" : false + }, + { + "id" : -264, + "url" : "https://nu.novell.com/repo/$RCE/OES2018-SP3-SLE-Module-Containers12-Debuginfo-Updates/sle-12-x86_64/", + "name" : "OES2018-SP3-SLE-Module-Containers12-Debuginfo-Updates", + "distro_target" : "sle-12-x86_64", + "description" : "This Module contains several packages revolving around containers and related tools.", + "enabled" : false, + "autorefresh" : true, + "installer_updates" : false + }, + { + "id" : -265, + "url" : "https://nu.novell.com/repo/$RCE/OES2018-SP3-SLE-Manager-Tools12-Debuginfo-Pool/sle-12-x86_64/", + "name" : "OES2018-SP3-SLE-Manager-Tools12-Debuginfo-Pool", + "distro_target" : "sle-12-x86_64", + "description" : "SUSE Manager Tools provide packages required to connect to a SUSE Manager Server.", + "enabled" : false, + "autorefresh" : false, + "installer_updates" : false + }, + { + "id" : -266, + "url" : "https://nu.novell.com/repo/$RCE/OES2018-SP3-SLE-Manager-Tools12-Debuginfo-Updates/sle-12-x86_64/", + "name" : "OES2018-SP3-SLE-Manager-Tools12-Debuginfo-Updates", + "distro_target" : "sle-12-x86_64", + "description" : "SUSE Manager Tools provide packages required to connect to a SUSE Manager Server.", + "enabled" : false, + "autorefresh" : true, + "installer_updates" : false + }, + { + "id" : -267, + "url" : "https://nu.novell.com/repo/$RCE/OES2018-SP3-SLE-Manager-Tools12-Pool/sle-12-x86_64/", + "name" : "OES2018-SP3-SLE-Manager-Tools12-Pool", + "distro_target" : "sle-12-x86_64", + "description" : "SUSE Manager Tools provide packages required to connect to a SUSE Manager Server.", + "enabled" : true, + "autorefresh" : false, + "installer_updates" : false + }, + { + "id" : -268, + "url" : "https://nu.novell.com/repo/$RCE/OES2018-SP3-SLE-Manager-Tools12-Updates/sle-12-x86_64/", + "name" : "OES2018-SP3-SLE-Manager-Tools12-Updates", + "distro_target" : "sle-12-x86_64", + "description" : "SUSE Manager Tools provide packages required to connect to a SUSE Manager Server.", + "enabled" : true, + "autorefresh" : true, + "installer_updates" : false + }, + { + "id" : -269, + "url" : "https://nu.novell.com/repo/$RCE/OES2018-SP3-SLE-SDK-12-SP5-Pool/sle-12-x86_64/", + "name" : "OES2018-SP3-SLE-SDK-12-SP5-Pool", + "distro_target" : "sle-12-x86_64", + "description" : "SUSE Linux Enterprise Software Development Kit 12 is the Software Development Kit for the family of SUSE Linux Enterprise products. It is a free of charge extension for partners and customers working with SUSE Linux Enterprise Server and Desktop and derived products. \\n Packages on the SDK are delivered without L3 support; maintenance updates will be done for critical security and critical non-security issues, and where needed to remain in sync with packages delivered in the SUSE Linux Enterprise Server and Desktop products. \\n Packages to rebuild SUSE Linux Enterprise Server are not part of the SUSE Linux Enterprise Software Development Kit.", + "enabled" : false, + "autorefresh" : false, + "installer_updates" : false + }, + { + "id" : -270, + "url" : "https://nu.novell.com/repo/$RCE/OES2018-SP3-SLE-SDK-12-SP5-Updates/sle-12-x86_64/", + "name" : "OES2018-SP3-SLE-SDK-12-SP5-Updates", + "distro_target" : "sle-12-x86_64", + "description" : "SUSE Linux Enterprise Software Development Kit 12 is the Software Development Kit for the family of SUSE Linux Enterprise products. It is a free of charge extension for partners and customers working with SUSE Linux Enterprise Server and Desktop and derived products. \\n Packages on the SDK are delivered without L3 support; maintenance updates will be done for critical security and critical non-security issues, and where needed to remain in sync with packages delivered in the SUSE Linux Enterprise Server and Desktop products. \\n Packages to rebuild SUSE Linux Enterprise Server are not part of the SUSE Linux Enterprise Software Development Kit.", + "enabled" : false, + "autorefresh" : true, + "installer_updates" : false + }, + { + "id" : -271, + "url" : "https://nu.novell.com/repo/$RCE/OES2018-SP3-SLE-SDK-12-SP5-Debuginfo-Pool/sle-12-x86_64/", + "name" : "OES2018-SP3-SLE-SDK-12-SP5-Debuginfo-Pool", + "distro_target" : "sle-12-x86_64", + "description" : "SUSE Linux Enterprise Software Development Kit 12 is the Software Development Kit for the family of SUSE Linux Enterprise products. It is a free of charge extension for partners and customers working with SUSE Linux Enterprise Server and Desktop and derived products. \\n Packages on the SDK are delivered without L3 support; maintenance updates will be done for critical security and critical non-security issues, and where needed to remain in sync with packages delivered in the SUSE Linux Enterprise Server and Desktop products. \\n Packages to rebuild SUSE Linux Enterprise Server are not part of the SUSE Linux Enterprise Software Development Kit.", + "enabled" : false, + "autorefresh" : false, + "installer_updates" : false + }, + { + "id" : -272, + "url" : "https://nu.novell.com/repo/$RCE/OES2018-SP3-SLE-SDK-12-SP5-Debuginfo-Updates/sle-12-x86_64/", + "name" : "OES2018-SP3-SLE-SDK-12-SP5-Debuginfo-Updates", + "distro_target" : "sle-12-x86_64", + "description" : "SUSE Linux Enterprise Software Development Kit 12 is the Software Development Kit for the family of SUSE Linux Enterprise products. It is a free of charge extension for partners and customers working with SUSE Linux Enterprise Server and Desktop and derived products. \\n Packages on the SDK are delivered without L3 support; maintenance updates will be done for critical security and critical non-security issues, and where needed to remain in sync with packages delivered in the SUSE Linux Enterprise Server and Desktop products. \\n Packages to rebuild SUSE Linux Enterprise Server are not part of the SUSE Linux Enterprise Software Development Kit.", + "enabled" : false, + "autorefresh" : true, + "installer_updates" : false + }, + { + "id" : -273, + "url" : "https://nu.novell.com/repo/$RCE/OES2018-SP3-SLE-Module-Public-Cloud12-Pool/sle-12-x86_64/", + "name" : "OES2018-SP3-SLE-Module-Public-Cloud12-Pool", + "distro_target" : "sle-12-x86_64", + "description" : "The Public Cloud Module is a collection of tools that enables you to create and manage cloud images from the commandline on SUSE Linux Enterprise Server. When building your own images with KIWI or SUSE Studio, initialization code specific to the target cloud is included in that image. \\n Access to the Public Cloud Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself; please check the Release Notes for further details.", + "enabled" : false, + "autorefresh" : false, + "installer_updates" : false + }, + { + "id" : -274, + "url" : "https://nu.novell.com/repo/$RCE/OES2018-SP3-SLE-Module-Public-Cloud12-Updates/sle-12-x86_64/", + "name" : "OES2018-SP3-SLE-Module-Public-Cloud12-Updates", + "distro_target" : "sle-12-x86_64", + "description" : "The Public Cloud Module is a collection of tools that enables you to create and manage cloud images from the commandline on SUSE Linux Enterprise Server. When building your own images with KIWI or SUSE Studio, initialization code specific to the target cloud is included in that image. \\n Access to the Public Cloud Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself; please check the Release Notes for further details.", + "enabled" : false, + "autorefresh" : true, + "installer_updates" : false + }, + { + "id" : -275, + "url" : "https://nu.novell.com/repo/$RCE/OES2018-SP3-SLE-Module-Public-Cloud12-Debuginfo-Pool/sle-12-x86_64/", + "name" : "OES2018-SP3-SLE-Module-Public-Cloud12-Debuginfo-Pool", + "distro_target" : "sle-12-x86_64", + "description" : "The Public Cloud Module is a collection of tools that enables you to create and manage cloud images from the commandline on SUSE Linux Enterprise Server. When building your own images with KIWI or SUSE Studio, initialization code specific to the target cloud is included in that image. \\n Access to the Public Cloud Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself; please check the Release Notes for further details.", + "enabled" : false, + "autorefresh" : false, + "installer_updates" : false + }, + { + "id" : -276, + "url" : "https://nu.novell.com/repo/$RCE/OES2018-SP3-SLE-Module-Public-Cloud12-Debuginfo-Updates/sle-12-x86_64/", + "name" : "OES2018-SP3-SLE-Module-Public-Cloud12-Debuginfo-Updates", + "distro_target" : "sle-12-x86_64", + "description" : "The Public Cloud Module is a collection of tools that enables you to create and manage cloud images from the commandline on SUSE Linux Enterprise Server. When building your own images with KIWI or SUSE Studio, initialization code specific to the target cloud is included in that image. \\n Access to the Public Cloud Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself; please check the Release Notes for further details.", + "enabled" : false, + "autorefresh" : true, + "installer_updates" : false + }, + { + "id" : -277, + "url" : "https://nu.novell.com/repo/$RCE/OES2018-SP3-SLE-Module-Web-Scripting12-Pool/sle-12-x86_64/", + "name" : "OES2018-SP3-SLE-Module-Web-Scripting12-Pool", + "distro_target" : "sle-12-x86_64", + "description" : "The SUSE Linux Enterprise Web and Scripting Module delivers a comprehensive suite of scripting languages, frameworks, and related tools helping developers and systems administrators accelerate the creation of stable, modern web applications, using dynamic languages, such as PHP, Ruby on Rails, and Python. \\n Access to the Web and Scripting Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself: Package versions in the this module are usually supported for at most three years. We are planning to release more recent versions on a schedule of approximately 18 month; the exact dates may differ per package.", + "enabled" : false, + "autorefresh" : false, + "installer_updates" : false + }, + { + "id" : -278, + "url" : "https://nu.novell.com/repo/$RCE/OES2018-SP3-SLE-Module-Web-Scripting12-Updates/sle-12-x86_64/", + "name" : "OES2018-SP3-SLE-Module-Web-Scripting12-Updates", + "distro_target" : "sle-12-x86_64", + "description" : "The SUSE Linux Enterprise Web and Scripting Module delivers a comprehensive suite of scripting languages, frameworks, and related tools helping developers and systems administrators accelerate the creation of stable, modern web applications, using dynamic languages, such as PHP, Ruby on Rails, and Python. \\n Access to the Web and Scripting Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself: Package versions in the this module are usually supported for at most three years. We are planning to release more recent versions on a schedule of approximately 18 month; the exact dates may differ per package.", + "enabled" : false, + "autorefresh" : true, + "installer_updates" : false + }, + { + "id" : -279, + "url" : "https://nu.novell.com/repo/$RCE/OES2018-SP3-SLE-Module-Web-Scripting12-Debuginfo-Pool/sle-12-x86_64/", + "name" : "OES2018-SP3-SLE-Module-Web-Scripting12-Debuginfo-Pool", + "distro_target" : "sle-12-x86_64", + "description" : "The SUSE Linux Enterprise Web and Scripting Module delivers a comprehensive suite of scripting languages, frameworks, and related tools helping developers and systems administrators accelerate the creation of stable, modern web applications, using dynamic languages, such as PHP, Ruby on Rails, and Python. \\n Access to the Web and Scripting Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself: Package versions in the this module are usually supported for at most three years. We are planning to release more recent versions on a schedule of approximately 18 month; the exact dates may differ per package.", + "enabled" : false, + "autorefresh" : false, + "installer_updates" : false + }, + { + "id" : -280, + "url" : "https://nu.novell.com/repo/$RCE/OES2018-SP3-SLE-Module-Web-Scripting12-Debuginfo-Updates/sle-12-x86_64/", + "name" : "OES2018-SP3-SLE-Module-Web-Scripting12-Debuginfo-Updates", + "distro_target" : "sle-12-x86_64", + "description" : "The SUSE Linux Enterprise Web and Scripting Module delivers a comprehensive suite of scripting languages, frameworks, and related tools helping developers and systems administrators accelerate the creation of stable, modern web applications, using dynamic languages, such as PHP, Ruby on Rails, and Python. \\n Access to the Web and Scripting Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself: Package versions in the this module are usually supported for at most three years. We are planning to release more recent versions on a schedule of approximately 18 month; the exact dates may differ per package.", + "enabled" : false, + "autorefresh" : true, + "installer_updates" : false + }, + { + "id" : -281, + "url" : "https://nu.novell.com/repo/$RCE/OES2018-SP3-SLE-Module-Toolchain12-Pool/sle-12-x86_64/", + "name" : "OES2018-SP3-SLE-Module-Toolchain12-Pool", + "distro_target" : "sle-12-x86_64", + "description" : "Via this Module you will have access to a more recent GCC and Toolchain in addition to the default compiler of SUSE Linux Enterprise. Access to the Toolchain Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself. Please check the Release Notes for further details.", + "enabled" : false, + "autorefresh" : false, + "installer_updates" : false + }, + { + "id" : -282, + "url" : "https://nu.novell.com/repo/$RCE/OES2018-SP3-SLE-Module-Toolchain12-Updates/sle-12-x86_64/", + "name" : "OES2018-SP3-SLE-Module-Toolchain12-Updates", + "distro_target" : "sle-12-x86_64", + "description" : "Via this Module you will have access to a more recent GCC and Toolchain in addition to the default compiler of SUSE Linux Enterprise. Access to the Toolchain Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself. Please check the Release Notes for further details.", + "enabled" : false, + "autorefresh" : true, + "installer_updates" : false + }, + { + "id" : -283, + "url" : "https://nu.novell.com/repo/$RCE/OES2018-SP3-SLE-Module-Toolchain12-Debuginfo-Pool/sle-12-x86_64/", + "name" : "OES2018-SP3-SLE-Module-Toolchain12-Debuginfo-Pool", + "distro_target" : "sle-12-x86_64", + "description" : "Via this Module you will have access to a more recent GCC and Toolchain in addition to the default compiler of SUSE Linux Enterprise. Access to the Toolchain Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself. Please check the Release Notes for further details.", + "enabled" : false, + "autorefresh" : false, + "installer_updates" : false + }, + { + "id" : -284, + "url" : "https://nu.novell.com/repo/$RCE/OES2018-SP3-SLE-Module-Toolchain12-Debuginfo-Updates/sle-12-x86_64/", + "name" : "OES2018-SP3-SLE-Module-Toolchain12-Debuginfo-Updates", + "distro_target" : "sle-12-x86_64", + "description" : "Via this Module you will have access to a more recent GCC and Toolchain in addition to the default compiler of SUSE Linux Enterprise. Access to the Toolchain Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself. Please check the Release Notes for further details.", + "enabled" : false, + "autorefresh" : true, + "installer_updates" : false + } + ] + }, + { + "id" : -20, + "name" : "Debian", + "identifier" : "Debian-Client", + "former_identifier" : "", + "version" : "10", + "release_type" : null, + "arch" : "amd64", + "friendly_name" : "Debian 10", + "product_class" : "SLE-M-T", + "cpe" : null, + "free" : true, + "description" : null, + "release_stage" : "released", + "eula_url" : "", + "product_type" : "base", + "offline_predecessor_ids" : [ + ], + "online_predecessor_ids" : [ + ], + "shortname" : null, + "recommended" : false, + "extensions" : [ + ], + "repositories" : [ + { + "id" : -217, + "url" : "http://deb.debian.org/debian/dists/buster/main/binary-amd64/", + "name" : "debian-10-pool", + "distro_target" : "amd64", + "description" : "Debian 10 (buster) pool for amd64", + "enabled" : true, + "autorefresh" : false, + "installer_updates" : false + }, + { + "id" : -218, + "url" : "http://deb.debian.org/debian/dists/buster-updates/main/binary-amd64/", + "name" : "debian-10-main-updates", + "distro_target" : "amd64", + "description" : "Debian 10 (buster) AMD64 Main Updates", + "enabled" : true, + "autorefresh" : false, + "installer_updates" : false + }, + { + "id" : -219, + "url" : "http://security-cdn.debian.org/debian-security/dists/buster/updates/main/binary-amd64/", + "name" : "debian-10-main-security", + "distro_target" : "amd64", + "description" : "Debian 10 (buster) AMD64 Main Security", + "enabled" : true, + "autorefresh" : false, + "installer_updates" : false + } + ] + }, + { + "id" : -19, + "name" : "Debian", + "identifier" : "Debian-Client", + "former_identifier" : "", + "version" : "9", + "release_type" : null, + "arch" : "amd64", + "friendly_name" : "Debian 9", + "product_class" : "SLE-M-T", + "cpe" : null, + "free" : true, + "description" : null, + "release_stage" : "released", + "eula_url" : "", + "product_type" : "base", + "offline_predecessor_ids" : [ + ], + "online_predecessor_ids" : [ + ], + "shortname" : null, + "recommended" : false, + "extensions" : [ + ], + "repositories" : [ + { + "id" : -214, + "url" : "http://deb.debian.org/debian/dists/stretch/main/binary-amd64/", + "name" : "debian-9-pool", + "distro_target" : "amd64", + "description" : "Debian 9 (stretch) pool for amd64", + "enabled" : true, + "autorefresh" : false, + "installer_updates" : false + }, + { + "id" : -215, + "url" : "http://deb.debian.org/debian/dists/stretch-updates/main/binary-amd64/", + "name" : "debian-9-main-updates", + "distro_target" : "amd64", + "description" : "Debian 9 (stretch) AMD64 Main Updates", + "enabled" : true, + "autorefresh" : false, + "installer_updates" : false + }, + { + "id" : -216, + "url" : "http://security-cdn.debian.org/debian-security/dists/stretch/updates/main/binary-amd64/", + "name" : "debian-9-main-security", + "distro_target" : "amd64", + "description" : "Debian 9 (stretch) AMD64 Main Security", + "enabled" : true, + "autorefresh" : false, + "installer_updates" : false + } + ] + }, + { + "id" : -18, + "name" : "Ubuntu", + "identifier" : "Ubuntu-Client", + "former_identifier" : "", + "version" : "20.04", + "release_type" : null, + "arch" : "amd64", + "friendly_name" : "Ubuntu 20.04", + "product_class" : "SLE-M-T", + "cpe" : null, + "free" : true, + "description" : null, + "release_stage" : "released", + "eula_url" : "", + "product_type" : "base", + "offline_predecessor_ids" : [ + ], + "online_predecessor_ids" : [ + ], + "shortname" : null, + "recommended" : false, + "extensions" : [ + ], + "repositories" : [ + { + "id" : -210, + "url" : "http://archive.ubuntu.com/ubuntu/dists/focal/main/binary-amd64/", + "name" : "ubuntu-2004-amd64-main", + "distro_target" : "amd64", + "description" : "Ubuntu 20.04 LTS AMD64 Main", + "enabled" : true, + "autorefresh" : false, + "installer_updates" : false + }, + { + "id" : -236, + "url" : "http://archive.ubuntu.com/ubuntu/dists/focal/multiverse/binary-amd64/", + "name" : "ubuntu-2004-amd64-multiverse", + "distro_target" : "amd64", + "description" : "Ubuntu 20.04 LTS AMD64 Multiverse", + "enabled" : false, + "autorefresh" : true, + "installer_updates" : false + }, + { + "id" : -237, + "url" : "http://archive.ubuntu.com/ubuntu/dists/focal/restricted/binary-amd64/", + "name" : "ubuntu-2004-amd64-restricted", + "distro_target" : "amd64", + "description" : "Ubuntu 20.04 LTS AMD64 Restricted", + "enabled" : false, + "autorefresh" : true, + "installer_updates" : false + }, + { + "id" : -213, + "url" : "http://archive.ubuntu.com/ubuntu/dists/focal/universe/binary-amd64/", + "name" : "ubuntu-2004-amd64-universe", + "distro_target" : "amd64", + "description" : "Ubuntu 20.04 LTS AMD64 Universe", + "enabled" : false, + "autorefresh" : true, + "installer_updates" : false + }, + { + "id" : -238, + "url" : "http://archive.ubuntu.com/ubuntu/dists/focal-backports/main/binary-amd64/", + "name" : "ubuntu-2004-amd64-main-backports", + "distro_target" : "amd64", + "description" : "Ubuntu 20.04 LTS AMD64 Main Backports", + "enabled" : false, + "autorefresh" : true, + "installer_updates" : false + }, + { + "id" : -239, + "url" : "http://archive.ubuntu.com/ubuntu/dists/focal-backports/multiverse/binary-amd64/", + "name" : "ubuntu-2004-amd64-multiverse-backports", + "distro_target" : "amd64", + "description" : "Ubuntu 20.04 LTS AMD64 Multiverse Backports", + "enabled" : false, + "autorefresh" : true, + "installer_updates" : false + }, + { + "id" : -240, + "url" : "http://archive.ubuntu.com/ubuntu/dists/focal-backports/restricted/binary-amd64/", + "name" : "ubuntu-2004-amd64-restricted-backports", + "distro_target" : "amd64", + "description" : "Ubuntu 20.04 LTS AMD64 Restricted Backports", + "enabled" : false, + "autorefresh" : true, + "installer_updates" : false + }, + { + "id" : -241, + "url" : "http://archive.ubuntu.com/ubuntu/dists/focal-backports/universe/binary-amd64/", + "name" : "ubuntu-2004-amd64-universe-backports", + "distro_target" : "amd64", + "description" : "Ubuntu 20.04 LTS AMD64 Universe Backports", + "enabled" : false, + "autorefresh" : true, + "installer_updates" : false + }, + { + "id" : -248, + "url" : "http://security.ubuntu.com/ubuntu/dists/focal-security/main/binary-amd64/", + "name" : "ubuntu-2004-amd64-main-security", + "distro_target" : "amd64", + "description" : "Ubuntu 20.04 LTS AMD64 Main Security", + "enabled" : true, + "autorefresh" : true, + "installer_updates" : false + }, + { + "id" : -242, + "url" : "http://security.ubuntu.com/ubuntu/dists/focal-security/multiverse/binary-amd64/", + "name" : "ubuntu-2004-amd64-multiverse-security", + "distro_target" : "amd64", + "description" : "Ubuntu 20.04 LTS AMD64 Multiverse Security", + "enabled" : false, + "autorefresh" : true, + "installer_updates" : false + }, + { + "id" : -243, + "url" : "http://security.ubuntu.com/ubuntu/dists/focal-security/restricted/binary-amd64/", + "name" : "ubuntu-2004-amd64-restricted-security", + "distro_target" : "amd64", + "description" : "Ubuntu 20.04 LTS AMD64 Restricted Security", + "enabled" : false, + "autorefresh" : true, + "installer_updates" : false + }, + { + "id" : -244, + "url" : "http://security.ubuntu.com/ubuntu/dists/focal-security/universe/binary-amd64/", + "name" : "ubuntu-2004-amd64-universe-security", + "distro_target" : "amd64", + "description" : "Ubuntu 20.04 LTS AMD64 Universe Security", + "enabled" : false, + "autorefresh" : true, + "installer_updates" : false + }, + { + "id" : -211, + "url" : "http://archive.ubuntu.com/ubuntu/dists/focal-updates/main/binary-amd64/", + "name" : "ubuntu-2004-amd64-main-updates", + "distro_target" : "amd64", + "description" : "Ubuntu 20.04 LTS AMD64 Main Updates", + "enabled" : true, + "autorefresh" : true, + "installer_updates" : false + }, + { + "id" : -245, + "url" : "http://archive.ubuntu.com/ubuntu/dists/focal-updates/multiverse/binary-amd64/", + "name" : "ubuntu-2004-amd64-multiverse-updates", + "distro_target" : "amd64", + "description" : "Ubuntu 20.04 LTS AMD64 Multiverse Updates", + "enabled" : false, + "autorefresh" : true, + "installer_updates" : false + }, + { + "id" : -246, + "url" : "http://archive.ubuntu.com/ubuntu/dists/focal-updates/restricted/binary-amd64/", + "name" : "ubuntu-2004-amd64-restricted-updates", + "distro_target" : "amd64", + "description" : "Ubuntu 20.04 LTS AMD64 Restricted Updates", + "enabled" : false, + "autorefresh" : true, + "installer_updates" : false + }, + { + "id" : -247, + "url" : "http://archive.ubuntu.com/ubuntu/dists/focal-updates/universe/binary-amd64/", + "name" : "ubuntu-2004-amd64-universe-updates", + "distro_target" : "amd64", + "description" : "Ubuntu 20.04 LTS AMD64 Universe Updates", + "enabled" : false, + "autorefresh" : true, + "installer_updates" : false + } + ] + }, + { + "id" : -17, + "name" : "Oracle Linux", + "identifier" : "oraclelinux", + "former_identifier" : "", + "version" : "8", + "release_type" : null, + "arch" : "x86_64", + "friendly_name" : "Oracle Linux 8 x86_64", + "product_class" : "SLE-M-T", + "cpe" : null, + "free" : true, + "description" : null, + "release_stage" : "released", + "eula_url" : "", + "product_type" : "base", + "offline_predecessor_ids" : [ + ], + "online_predecessor_ids" : [ + ], + "shortname" : null, + "recommended" : false, + "extensions" : [ + ], + "repositories" : [ + { + "id" : -254, + "url" : "https://yum.oracle.com/repo/OracleLinux/OL8/UEKR6/RDMA/x86_64/", + "name" : "oraclelinux8-uek-r6-rdma", + "distro_target" : "x86_64", + "description" : "Latest RDMA packages for Unbreakable Enterprise Kernel Release 6 packages on Oracle Linux 8 for the Oracle Integrated Stack.", + "enabled" : false, + "autorefresh" : false, + "installer_updates" : false + }, + { + "id" : -253, + "url" : "https://yum.oracle.com/repo/OracleLinux/OL8/UEKR6/x86_64/", + "name" : "oraclelinux8-uek-r6", + "distro_target" : "x86_64", + "description" : "Latest Unbreakable Enterprise Kernel Release 6 for Oracle Linux 8", + "enabled" : false, + "autorefresh" : false, + "installer_updates" : false + }, + { + "id" : -203, + "url" : "https://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/", + "name" : "oraclelinux8", + "distro_target" : "x86_64", + "description" : "Oracle Linux 8", + "enabled" : true, + "autorefresh" : false, + "installer_updates" : false + }, + { + "id" : -204, + "url" : "https://yum.oracle.com/repo/OracleLinux/OL8/appstream/x86_64/", + "name" : "oraclelinux8-appstream", + "distro_target" : "x86_64", + "description" : "Oracle Linux 8 AppStream", + "enabled" : true, + "autorefresh" : false, + "installer_updates" : false + }, + { + "id" : -205, + "url" : "https://yum.oracle.com/repo/OracleLinux/OL8/addons/x86_64/", + "name" : "oraclelinux8-addons", + "distro_target" : "x86_64", + "description" : "Addons for Oracle Linux 8", + "enabled" : false, + "autorefresh" : false, + "installer_updates" : false + }, + { + "id" : -206, + "url" : "https://yum.oracle.com/repo/OracleLinux/OL8/codeready/builder/x86_64/", + "name" : "oraclelinux8-codereadybuilder", + "distro_target" : "x86_64", + "description" : "Latest CodeReady Builder packages for Oracle Linux 8", + "enabled" : false, + "autorefresh" : false, + "installer_updates" : false + }, + { + "id" : -207, + "url" : "https://yum.oracle.com/repo/OracleLinux/OL8/developer/UEKR6/x86_64/", + "name" : "oraclelinux8-developer-uek-r6", + "distro_target" : "x86_64", + "description" : "Latest Unbreakable Enterprise Kernel Release 6 for Oracle Linux 8", + "enabled" : false, + "autorefresh" : false, + "installer_updates" : false + }, + { + "id" : -208, + "url" : "https://yum.oracle.com/repo/OracleLinux/OL8/developer/x86_64/", + "name" : "oraclelinux8-developer", + "distro_target" : "x86_64", + "description" : "Packages for test and development - Oracle Linux 8", + "enabled" : false, + "autorefresh" : false, + "installer_updates" : false + } + ] + }, + { + "id" : -16, + "name" : "Oracle Linux", + "identifier" : "oraclelinux", + "former_identifier" : "", + "version" : "6", + "release_type" : null, + "arch" : "i386", + "friendly_name" : "Oracle Linux 6 i386", + "product_class" : "SLE-M-T", + "cpe" : null, + "free" : true, + "description" : null, + "release_stage" : "released", + "eula_url" : "", + "product_type" : "base", + "offline_predecessor_ids" : [ + ], + "online_predecessor_ids" : [ + ], + "shortname" : null, + "recommended" : false, + "extensions" : [ + ], + "repositories" : [ + { + "id" : -185, + "url" : "https://yum.oracle.com/repo/OracleLinux/OL6/latest/i386/", + "name" : "oraclelinux6", + "distro_target" : "i386", + "description" : "Oracle Linux 6", + "enabled" : true, + "autorefresh" : false, + "installer_updates" : false + }, + { + "id" : -186, + "url" : "https://yum.oracle.com/repo/OracleLinux/OL6/addons/i386/", + "name" : "oraclelinux6-addons", + "distro_target" : "i386", + "description" : "Addons for Oracle Linux 6", + "enabled" : false, + "autorefresh" : false, + "installer_updates" : false + }, + { + "id" : -187, + "url" : "https://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/i386/", + "name" : "oraclelinux6-uek-r2", + "distro_target" : "i386", + "description" : "Latest Unbreakable Enterprise Kernel Release 2 for Oracle Linux 6", + "enabled" : false, + "autorefresh" : false, + "installer_updates" : false + }, + { + "id" : -190, + "url" : "https://yum.oracle.com/repo/OracleLinux/OL6/MySQL/i386/", + "name" : "oraclelinux6-mysql55", + "distro_target" : "i386", + "description" : "MySQL 5.5 for Oracle Linux 6", + "enabled" : false, + "autorefresh" : false, + "installer_updates" : false + }, + { + "id" : -191, + "url" : "https://yum.oracle.com/repo/OracleLinux/OL6/MySQL56/i386/", + "name" : "oraclelinux6-mysql56", + "distro_target" : "i386", + "description" : "http://yum.oracle.com/repo/OracleLinux/OL6/MySQL56/i386/", + "enabled" : false, + "autorefresh" : false, + "installer_updates" : false + } + ] + }, + { + "id" : -15, + "name" : "Oracle Linux", + "identifier" : "oraclelinux", + "former_identifier" : "", + "version" : "6", + "release_type" : null, + "arch" : "x86_64", + "friendly_name" : "Oracle Linux 6 x86_64", + "product_class" : "SLE-M-T", + "cpe" : null, + "free" : true, + "description" : null, + "release_stage" : "released", + "eula_url" : "", + "product_type" : "base", + "offline_predecessor_ids" : [ + ], + "online_predecessor_ids" : [ + ], + "shortname" : null, + "recommended" : false, + "extensions" : [ + ], + "repositories" : [ + { + "id" : -171, + "url" : "https://yum.oracle.com/repo/OracleLinux/OL6/latest/x86_64/", + "name" : "oraclelinux6", + "distro_target" : "x86_64", + "description" : "Oracle Linux 6", + "enabled" : true, + "autorefresh" : false, + "installer_updates" : false + }, + { + "id" : -172, + "url" : "https://yum.oracle.com/repo/OracleLinux/OL6/addons/x86_64/", + "name" : "oraclelinux6-addons", + "distro_target" : "x86_64", + "description" : "Addons for Oracle Linux 6", + "enabled" : false, + "autorefresh" : false, + "installer_updates" : false + }, + { + "id" : -173, + "url" : "https://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/", + "name" : "oraclelinux6-uek-r2", + "distro_target" : "x86_64", + "description" : "Latest Unbreakable Enterprise Kernel Release 2 for Oracle Linux 6", + "enabled" : false, + "autorefresh" : false, + "installer_updates" : false + }, + { + "id" : -174, + "url" : "https://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/", + "name" : "oraclelinux6-uek-r3", + "distro_target" : "x86_64", + "description" : "Latest Unbreakable Enterprise Kernel Release 3 for Oracle Linux 6", + "enabled" : false, + "autorefresh" : false, + "installer_updates" : false + }, + { + "id" : -176, + "url" : "https://yum.oracle.com/repo/OracleLinux/OL6/MySQL/x86_64/", + "name" : "oraclelinux6-mysql55", + "distro_target" : "x86_64", + "description" : "MySQL 5.5 for Oracle Linux 6", + "enabled" : false, + "autorefresh" : false, + "installer_updates" : false + }, + { + "id" : -177, + "url" : "https://yum.oracle.com/repo/OracleLinux/OL6/MySQL56/x86_64/", + "name" : "oraclelinux6-mysql56", + "distro_target" : "x86_64", + "description" : "http://yum.oracle.com/repo/OracleLinux/OL6/MySQL56/x86_64/", + "enabled" : false, + "autorefresh" : false, + "installer_updates" : false + }, + { + "id" : -178, + "url" : "https://yum.oracle.com/repo/OracleLinux/OL6/playground/latest/x86_64/", + "name" : "oraclelinux6-playground", + "distro_target" : "x86_64", + "description" : "Playground (Mainline) Kernels for Oracle Linux 6", + "enabled" : false, + "autorefresh" : false, + "installer_updates" : false + }, + { + "id" : -183, + "url" : "https://public-yum.oracle.com/repo/OracleLinux/OL6/SoftwareCollections/x86_64/", + "name" : "oraclelinux6-scl", + "distro_target" : "x86_64", + "description" : "Software Collection Library packages for Oracle Linux 6", + "enabled" : false, + "autorefresh" : false, + "installer_updates" : false + }, + { + "id" : -184, + "url" : "https://yum.oracle.com/repo/OracleLinux/OL6/openstack30/x86_64/", + "name" : "oraclelinux6-openstack30", + "distro_target" : "x86_64", + "description" : "OpenStack 3.0 packages for Oracle Linux 6", + "enabled" : false, + "autorefresh" : false, + "installer_updates" : false + } + ] + }, + { + "id" : -14, + "name" : "Oracle Linux", + "identifier" : "oraclelinux", + "former_identifier" : "", + "version" : "7", + "release_type" : null, + "arch" : "x86_64", + "friendly_name" : "Oracle Linux 7 x86_64", + "product_class" : "SLE-M-T", + "cpe" : null, + "free" : true, + "description" : null, + "release_stage" : "released", + "eula_url" : "", + "product_type" : "base", + "offline_predecessor_ids" : [ + ], + "online_predecessor_ids" : [ + ], + "shortname" : null, + "recommended" : false, + "extensions" : [ + ], + "repositories" : [ + { + "id" : -154, + "url" : "https://yum.oracle.com/repo/OracleLinux/OL7/latest/x86_64/", + "name" : "oraclelinux7", + "distro_target" : "x86_64", + "description" : "Oracle Linux 7", + "enabled" : true, + "autorefresh" : false, + "installer_updates" : false + }, + { + "id" : -155, + "url" : "https://yum.oracle.com/repo/OracleLinux/OL7/addons/x86_64/", + "name" : "oraclelinux7-addons", + "distro_target" : "x86_64", + "description" : "Addons for Oracle Linux 7", + "enabled" : false, + "autorefresh" : false, + "installer_updates" : false + }, + { + "id" : -252, + "url" : "https://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/RDMA/x86_64/", + "name" : "oraclelinux7-uek-r5-rdma", + "distro_target" : "x86_64", + "description" : "Latest RDMA packages for Unbreakable Enterprise Kernel Release 5 packages on Oracle Linux 7 for the Oracle Integrated Stack.", + "enabled" : false, + "autorefresh" : false, + "installer_updates" : false + }, + { + "id" : -251, + "url" : "https://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/RDMA/x86_64/", + "name" : "oraclelinux7-uek-r6-rdma", + "distro_target" : "x86_64", + "description" : "Latest RDMA packages for Unbreakable Enterprise Kernel Release 6 packages on Oracle Linux 7 for the Oracle Integrated Stack.", + "enabled" : false, + "autorefresh" : false, + "installer_updates" : false + }, + { + "id" : -250, + "url" : "https://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/", + "name" : "oraclelinux7-uek-r6", + "distro_target" : "x86_64", + "description" : "Latest Unbreakable Enterprise Kernel Release 6 for Oracle Linux 7", + "enabled" : false, + "autorefresh" : false, + "installer_updates" : false + }, + { + "id" : -249, + "url" : "https://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/", + "name" : "oraclelinux7-uek-r5", + "distro_target" : "x86_64", + "description" : "Latest Unbreakable Enterprise Kernel Release 5 for Oracle Linux 7", + "enabled" : false, + "autorefresh" : false, + "installer_updates" : false + }, + { + "id" : -156, + "url" : "https://yum.oracle.com/repo/OracleLinux/OL7/UEKR4/x86_64/", + "name" : "oraclelinux7-uek-r4", + "distro_target" : "x86_64", + "description" : "Latest Unbreakable Enterprise Kernel Release 4 for Oracle Linux 7", + "enabled" : false, + "autorefresh" : false, + "installer_updates" : false + }, + { + "id" : -157, + "url" : "https://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/", + "name" : "oraclelinux7-uek-r3", + "distro_target" : "x86_64", + "description" : "Latest Unbreakable Enterprise Kernel Release 3 for Oracle Linux 7", + "enabled" : false, + "autorefresh" : false, + "installer_updates" : false + }, + { + "id" : -158, + "url" : "https://yum.oracle.com/repo/OracleLinux/OL7/MySQL55/x86_64/", + "name" : "oraclelinux7-mysql55", + "distro_target" : "x86_64", + "description" : "MySQL 5.5 for Oracle Linux 7", + "enabled" : false, + "autorefresh" : false, + "installer_updates" : false + }, + { + "id" : -159, + "url" : "https://yum.oracle.com/repo/OracleLinux/OL7/MySQL56/x86_64/", + "name" : "oraclelinux7-mysql56", + "distro_target" : "x86_64", + "description" : "MySQL 5.6 for Oracle Linux 7", + "enabled" : false, + "autorefresh" : false, + "installer_updates" : false + }, + { + "id" : -160, + "url" : "https://yum.oracle.com/repo/OracleLinux/OL7/MySQL57_community/x86_64/", + "name" : "oraclelinux7-mysql57", + "distro_target" : "x86_64", + "description" : "MySQL 5.7 for Oracle Linux 7", + "enabled" : false, + "autorefresh" : false, + "installer_updates" : false + }, + { + "id" : -165, + "url" : "https://yum.oracle.com/repo/OracleLinux/OL7/openstack20/x86_64/", + "name" : "oraclelinux7-openstack20", + "distro_target" : "x86_64", + "description" : "OpenStack 2.0 packages for Oracle Linux 7", + "enabled" : false, + "autorefresh" : false, + "installer_updates" : false + }, + { + "id" : -166, + "url" : "https://yum.oracle.com/repo/OracleLinux/OL7/openstack21/x86_64/", + "name" : "oraclelinux7-openstack21", + "distro_target" : "x86_64", + "description" : "OpenStack 2.1 packages for Oracle Linux 7", + "enabled" : false, + "autorefresh" : false, + "installer_updates" : false + }, + { + "id" : -167, + "url" : "https://yum.oracle.com/repo/OracleLinux/OL7/openstack30/x86_64/", + "name" : "oraclelinux7-openstack30", + "distro_target" : "x86_64", + "description" : "OpenStack 3.0 packages for Oracle Linux 7", + "enabled" : false, + "autorefresh" : false, + "installer_updates" : false + }, + { + "id" : -168, + "url" : "https://yum.oracle.com/repo/OracleLinux/OL7/openstack_extras/x86_64/", + "name" : "oraclelinux7-openstack30-extras", + "distro_target" : "x86_64", + "description" : "OpenStack 3.0 Extra packages for Oracle Linux 7", + "enabled" : false, + "autorefresh" : false, + "installer_updates" : false + }, + { + "id" : -169, + "url" : "https://yum.oracle.com/repo/OracleLinux/OL7/SoftwareCollections/x86_64/", + "name" : "oraclelinux7-scl", + "distro_target" : "x86_64", + "description" : "Software Collection Library packages for Oracle Linux 7", + "enabled" : false, + "autorefresh" : false, + "installer_updates" : false + }, + { + "id" : -170, + "url" : "https://yum.oracle.com/repo/OracleLinux/OL7/ceph/x86_64/", + "name" : "oraclelinux7-ceph", + "distro_target" : "x86_64", + "description" : "Ceph Storage for Oracle Linux Release 2.0 for Oracle Linux 7", + "enabled" : false, + "autorefresh" : false, + "installer_updates" : false + } + ] + }, + { + "id" : -13, + "name" : "CentOS", + "identifier" : "centos", + "former_identifier" : "", + "version" : "8", + "release_type" : null, + "arch" : "x86_64", + "friendly_name" : "CentOS 8 x86_64", + "product_class" : "SLE-M-T", + "cpe" : null, + "free" : true, + "description" : null, + "release_stage" : "released", + "eula_url" : "", + "product_type" : "base", + "offline_predecessor_ids" : [ + ], + "online_predecessor_ids" : [ + ], + "shortname" : null, + "recommended" : false, + "extensions" : [ + ], + "repositories" : [ + { + "id" : -365, + "url" : "https://vault.centos.org/centos/8/BaseOS/x86_64/os/", + "name" : "centos8", + "distro_target" : "x86_64", + "description" : "CentOS 8", + "enabled" : true, + "autorefresh" : false, + "installer_updates" : false + }, + { + "id" : -366, + "url" : "https://vault.centos.org/centos/8/AppStream/x86_64/os/", + "name" : "centos8-appstream", + "distro_target" : "x86_64", + "description" : "CentOS 8 AppStream", + "enabled" : true, + "autorefresh" : false, + "installer_updates" : false + }, + { + "id" : -367, + "url" : "https://vault.centos.org/centos/8/centosplus/x86_64/os/", + "name" : "centos8-centosplus", + "distro_target" : "x86_64", + "description" : "CentOS 8 Plus", + "enabled" : false, + "autorefresh" : false, + "installer_updates" : false + }, + { + "id" : -368, + "url" : "https://vault.centos.org/centos/8/cr/x86_64/os/", + "name" : "centos8-cr", + "distro_target" : "x86_64", + "description" : "CentOS 8 CR", + "enabled" : false, + "autorefresh" : false, + "installer_updates" : false + }, + { + "id" : -369, + "url" : "https://vault.centos.org/centos/8/extras/x86_64/os/", + "name" : "centos8-extras", + "distro_target" : "x86_64", + "description" : "CentOS 8 Extras", + "enabled" : false, + "autorefresh" : false, + "installer_updates" : false + }, + { + "id" : -370, + "url" : "https://vault.centos.org/centos/8/fasttrack/x86_64/os/", + "name" : "centos8-fasttrack", + "distro_target" : "x86_64", + "description" : "CentOS 8 FastTrack", + "enabled" : false, + "autorefresh" : false, + "installer_updates" : false + }, + { + "id" : -371, + "url" : "https://vault.centos.org/centos/8/PowerTools/x86_64/os/", + "name" : "centos8-powertools", + "distro_target" : "x86_64", + "description" : "CentOS 8 PowerTools", + "enabled" : false, + "autorefresh" : false, + "installer_updates" : false + }, + { + "id" : -199, + "url" : "http://mirrors.fedoraproject.org/mirrorlist?repo=epel-8&arch=x86_64", + "name" : "epel8", + "distro_target" : "x86_64", + "description" : "EPEL 8", + "enabled" : false, + "autorefresh" : false, + "installer_updates" : false + } + ] + }, + { + "id" : -12, + "name" : "CentOS", + "identifier" : "centos", + "former_identifier" : "", + "version" : "7", + "release_type" : null, + "arch" : "x86_64", + "friendly_name" : "CentOS 7 x86_64", + "product_class" : "SLE-M-T", + "cpe" : null, + "free" : true, + "description" : null, + "release_stage" : "released", + "eula_url" : "", + "product_type" : "base", + "offline_predecessor_ids" : [ + ], + "online_predecessor_ids" : [ + ], + "shortname" : null, + "recommended" : false, + "extensions" : [ + ], + "repositories" : [ + { + "id" : -129, + "url" : "http://mirrorlist.centos.org/?release=7&arch=x86_64&repo=os", + "name" : "centos7", + "distro_target" : "x86_64", + "description" : "CentOS 7", + "enabled" : true, + "autorefresh" : false, + "installer_updates" : false + }, + { + "id" : -130, + "url" : "http://mirror.centos.org/centos-7/7/atomic/x86_64", + "name" : "centos7-atomic", + "distro_target" : "x86_64", + "description" : "CentOS 7 Atomic", + "enabled" : false, + "autorefresh" : false, + "installer_updates" : false + }, + { + "id" : -131, + "url" : "http://mirrorlist.centos.org/?release=7&arch=x86_64&repo=centosplus", + "name" : "centos7-centosplus", + "distro_target" : "x86_64", + "description" : "CentOS 7 Plus", + "enabled" : false, + "autorefresh" : false, + "installer_updates" : false + }, + { + "id" : -133, + "url" : "http://mirrorlist.centos.org/?release=7&arch=x86_64&repo=cr", + "name" : "centos7-cr", + "distro_target" : "x86_64", + "description" : "CentOS 7 CR", + "enabled" : false, + "autorefresh" : false, + "installer_updates" : false + }, + { + "id" : -134, + "url" : "http://mirrorlist.centos.org/?release=7&arch=x86_64&repo=extras", + "name" : "centos7-extras", + "distro_target" : "x86_64", + "description" : "CentOS 7 Extras", + "enabled" : false, + "autorefresh" : false, + "installer_updates" : false + }, + { + "id" : -135, + "url" : "http://mirrorlist.centos.org/?release=7&arch=x86_64&repo=fasttrack", + "name" : "centos7-fasttrack", + "distro_target" : "x86_64", + "description" : "CentOS 7 FastTrack", + "enabled" : false, + "autorefresh" : false, + "installer_updates" : false + }, + { + "id" : -138, + "url" : "http://mirror.centos.org/centos-7/7/rt/x86_64", + "name" : "centos7-rt", + "distro_target" : "x86_64", + "description" : "CentOS 7 RT", + "enabled" : false, + "autorefresh" : false, + "installer_updates" : false + }, + { + "id" : -141, + "url" : "http://mirrorlist.centos.org/?release=7&arch=x86_64&repo=updates", + "name" : "centos7-updates", + "distro_target" : "x86_64", + "description" : "CentOS 7 Updates", + "enabled" : true, + "autorefresh" : false, + "installer_updates" : false + }, + { + "id" : -200, + "url" : "http://mirrors.fedoraproject.org/mirrorlist?repo=epel-7&arch=x86_64", + "name" : "epel7", + "distro_target" : "x86_64", + "description" : "EPEL 7", + "enabled" : false, + "autorefresh" : false, + "installer_updates" : false + } + ] + }, + { + "id" : -11, + "name" : "CentOS", + "identifier" : "centos", + "former_identifier" : "", + "version" : "6", + "release_type" : null, + "arch" : "x86_64", + "friendly_name" : "CentOS 6 x86_64", + "product_class" : "SLE-M-T", + "cpe" : null, + "free" : true, + "description" : null, + "release_stage" : "released", + "eula_url" : "", + "product_type" : "base", + "offline_predecessor_ids" : [ + ], + "online_predecessor_ids" : [ + ], + "shortname" : null, + "recommended" : false, + "extensions" : [ + ], + "repositories" : [ + { + "id" : -230, + "url" : "https://vault.centos.org/centos/6/os/x86_64/", + "name" : "centos6", + "distro_target" : "x86_64", + "description" : "CentOS 6", + "enabled" : true, + "autorefresh" : false, + "installer_updates" : false + }, + { + "id" : -231, + "url" : "https://vault.centos.org/centos/6/centosplus/x86_64/", + "name" : "centos6-centosplus", + "distro_target" : "x86_64", + "description" : "CentOS 6 Plus", + "enabled" : false, + "autorefresh" : false, + "installer_updates" : false + }, + { + "id" : -232, + "url" : "https://vault.centos.org/centos/6/contrib/x86_64/", + "name" : "centos6-contrib", + "distro_target" : "x86_64", + "description" : "CentOS 6 Contrib", + "enabled" : false, + "autorefresh" : false, + "installer_updates" : false + }, + { + "id" : -233, + "url" : "https://vault.centos.org/centos/6/extras/x86_64/", + "name" : "centos6-extras", + "distro_target" : "x86_64", + "description" : "CentOS 6 Extras", + "enabled" : false, + "autorefresh" : false, + "installer_updates" : false + }, + { + "id" : -234, + "url" : "https://vault.centos.org/centos/6/fasttrack/x86_64/", + "name" : "centos6-fasttrack", + "distro_target" : "x86_64", + "description" : "CentOS 6 FastTrack", + "enabled" : false, + "autorefresh" : false, + "installer_updates" : false + }, + { + "id" : -235, + "url" : "https://vault.centos.org/centos/6/updates/x86_64/", + "name" : "centos6-updates", + "distro_target" : "x86_64", + "description" : "CentOS 6 Updates", + "enabled" : true, + "autorefresh" : false, + "installer_updates" : false + }, + { + "id" : -201, + "url" : "http://mirrors.fedoraproject.org/mirrorlist?repo=epel-6&arch=x86_64", + "name" : "epel6", + "distro_target" : "x86_64", + "description" : "EPEL 6", + "enabled" : false, + "autorefresh" : false, + "installer_updates" : false + } + ] + }, + { + "id" : -10, + "name" : "CentOS", + "identifier" : "centos", + "former_identifier" : "", + "version" : "6", + "release_type" : null, + "arch" : "i386", + "friendly_name" : "CentOS 6 i386", + "product_class" : "SLE-M-T", + "cpe" : null, + "free" : true, + "description" : null, + "release_stage" : "released", + "eula_url" : "", + "product_type" : "base", + "offline_predecessor_ids" : [ + ], + "online_predecessor_ids" : [ + ], + "shortname" : null, + "recommended" : false, + "extensions" : [ + ], + "repositories" : [ + { + "id" : -220, + "url" : "https://vault.centos.org/centos/6/os/i386/", + "name" : "centos6", + "distro_target" : "i386", + "description" : "CentOS 6", + "enabled" : true, + "autorefresh" : false, + "installer_updates" : false + }, + { + "id" : -221, + "url" : "https://vault.centos.org/centos/6/centosplus/i386/", + "name" : "centos6-centosplus", + "distro_target" : "i386", + "description" : "CentOS 6 Plus", + "enabled" : false, + "autorefresh" : false, + "installer_updates" : false + }, + { + "id" : -222, + "url" : "https://vault.centos.org/centos/6/contrib/i386/", + "name" : "centos6-contrib", + "distro_target" : "i386", + "description" : "CentOS 6 Contrib", + "enabled" : false, + "autorefresh" : false, + "installer_updates" : false + }, + { + "id" : -223, + "url" : "https://vault.centos.org/centos/6/extras/i386/", + "name" : "centos6-extras", + "distro_target" : "i386", + "description" : "CentOS 6 Extras", + "enabled" : false, + "autorefresh" : false, + "installer_updates" : false + }, + { + "id" : -224, + "url" : "https://vault.centos.org/centos/6/fasttrack/i386/", + "name" : "centos6-fasttrack", + "distro_target" : "i386", + "description" : "CentOS 6 FastTrack", + "enabled" : false, + "autorefresh" : false, + "installer_updates" : false + }, + { + "id" : -225, + "url" : "https://vault.centos.org/centos/6/updates/i386/", + "name" : "centos6-updates", + "distro_target" : "i386", + "description" : "CentOS 6 Updates", + "enabled" : true, + "autorefresh" : false, + "installer_updates" : false + }, + { + "id" : -202, + "url" : "http://mirrors.fedoraproject.org/mirrorlist?repo=epel-6&arch=i386", + "name" : "epel6", + "distro_target" : "i386", + "description" : "EPEL 6", + "enabled" : false, + "autorefresh" : false, + "installer_updates" : false + } + ] + }, + { + "id" : -9, + "name" : "Open Enterprise Server", + "identifier" : "Open_Enterprise_Server", + "former_identifier" : "", + "version" : "2018.2", + "release_type" : null, + "arch" : "x86_64", + "friendly_name" : "Open Enterprise Server 2018 SP2", + "product_class" : "OES2", + "cpe" : null, + "free" : false, + "description" : null, + "release_stage" : "released", + "eula_url" : "", + "product_type" : "base", + "offline_predecessor_ids" : [ + ], + "online_predecessor_ids" : [ + 46 + ], + "shortname" : null, + "recommended" : false, + "extensions" : [ + ], + "repositories" : [ + { + "id" : -84, + "url" : "https://nu.novell.com/repo/$RCE/OES2018-SP2-Pool/sle-12-x86_64/", + "name" : "OES2018-SP2-Pool", + "distro_target" : "sle-12-x86_64", + "description" : "Open Enterprise Server 2018 SP2", + "enabled" : true, + "autorefresh" : false, + "installer_updates" : false + }, + { + "id" : -85, + "url" : "https://nu.novell.com/repo/$RCE/OES2018-SP2-Updates/sle-12-x86_64/", + "name" : "OES2018-SP2-Updates", + "distro_target" : "sle-12-x86_64", + "description" : "Open Enterprise Server 2018 SP2", + "enabled" : true, + "autorefresh" : true, + "installer_updates" : false + }, + { + "id" : -86, + "url" : "https://nu.novell.com/repo/$RCE/OES2018-SP2-SLES12-SP5-Debuginfo-Pool/sle-12-x86_64/", + "name" : "OES2018-SP2-SLES12-SP5-Debuginfo-Pool", + "distro_target" : "sle-12-x86_64", + "description" : "SUSE Linux Enterprise offers a comprehensive suite of products built on a single code base. The platform addresses business needs from the smallest thin-client devices to the world's most powerful high-performance computing and mainframe servers. SUSE Linux Enterprise offers common management tools and technology certifications across the platform, and each product is enterprise-class.", + "enabled" : false, + "autorefresh" : false, + "installer_updates" : false + }, + { + "id" : -87, + "url" : "https://nu.novell.com/repo/$RCE/OES2018-SP2-SLES12-SP5-Debuginfo-Updates/sle-12-x86_64/", + "name" : "OES2018-SP2-SLES12-SP5-Debuginfo-Updates", + "distro_target" : "sle-12-x86_64", + "description" : "SUSE Linux Enterprise offers a comprehensive suite of products built on a single code base. The platform addresses business needs from the smallest thin-client devices to the world's most powerful high-performance computing and mainframe servers. SUSE Linux Enterprise offers common management tools and technology certifications across the platform, and each product is enterprise-class.", + "enabled" : false, + "autorefresh" : true, + "installer_updates" : false + }, + { + "id" : -88, + "url" : "https://nu.novell.com/repo/$RCE/OES2018-SP2-SLES12-SP5-Pool/sle-12-x86_64/", + "name" : "OES2018-SP2-SLES12-SP5-Pool", + "distro_target" : "sle-12-x86_64", + "description" : "SUSE Linux Enterprise offers a comprehensive suite of products built on a single code base. The platform addresses business needs from the smallest thin-client devices to the world's most powerful high-performance computing and mainframe servers. SUSE Linux Enterprise offers common management tools and technology certifications across the platform, and each product is enterprise-class.", + "enabled" : true, + "autorefresh" : false, + "installer_updates" : false + }, + { + "id" : -89, + "url" : "https://nu.novell.com/repo/$RCE/OES2018-SP2-SLES12-SP5-Updates/sle-12-x86_64/", + "name" : "OES2018-SP2-SLES12-SP5-Updates", + "distro_target" : "sle-12-x86_64", + "description" : "SUSE Linux Enterprise offers a comprehensive suite of products built on a single code base. The platform addresses business needs from the smallest thin-client devices to the world's most powerful high-performance computing and mainframe servers. SUSE Linux Enterprise offers common management tools and technology certifications across the platform, and each product is enterprise-class.", + "enabled" : true, + "autorefresh" : true, + "installer_updates" : false + }, + { + "id" : -90, + "url" : "https://nu.novell.com/repo/$RCE/OES2018-SP2-SLE-Module-Containers12-Pool/sle-12-x86_64/", + "name" : "OES2018-SP2-SLE-Module-Containers12-Pool", + "distro_target" : "sle-12-x86_64", + "description" : "This Module contains several packages revolving around containers and related tools.", + "enabled" : true, + "autorefresh" : false, + "installer_updates" : false + }, + { + "id" : -91, + "url" : "https://nu.novell.com/repo/$RCE/OES2018-SP2-SLE-Module-Containers12-Updates/sle-12-x86_64/", + "name" : "OES2018-SP2-SLE-Module-Containers12-Updates", + "distro_target" : "sle-12-x86_64", + "description" : "This Module contains several packages revolving around containers and related tools.", + "enabled" : true, + "autorefresh" : true, + "installer_updates" : false + }, + { + "id" : -92, + "url" : "https://nu.novell.com/repo/$RCE/OES2018-SP2-SLE-Module-Containers12-Debuginfo-Pool/sle-12-x86_64/", + "name" : "OES2018-SP2-SLE-Module-Containers12-Debuginfo-Pool", + "distro_target" : "sle-12-x86_64", + "description" : "This Module contains several packages revolving around containers and related tools.", + "enabled" : false, + "autorefresh" : false, + "installer_updates" : false + }, + { + "id" : -93, + "url" : "https://nu.novell.com/repo/$RCE/OES2018-SP2-SLE-Module-Containers12-Debuginfo-Updates/sle-12-x86_64/", + "name" : "OES2018-SP2-SLE-Module-Containers12-Debuginfo-Updates", + "distro_target" : "sle-12-x86_64", + "description" : "This Module contains several packages revolving around containers and related tools.", + "enabled" : false, + "autorefresh" : true, + "installer_updates" : false + }, + { + "id" : -94, + "url" : "https://nu.novell.com/repo/$RCE/OES2018-SP2-SLE-Manager-Tools12-Debuginfo-Pool/sle-12-x86_64/", + "name" : "OES2018-SP2-SLE-Manager-Tools12-Debuginfo-Pool", + "distro_target" : "sle-12-x86_64", + "description" : "SUSE Manager Tools provide packages required to connect to a SUSE Manager Server.", + "enabled" : false, + "autorefresh" : false, + "installer_updates" : false + }, + { + "id" : -95, + "url" : "https://nu.novell.com/repo/$RCE/OES2018-SP2-SLE-Manager-Tools12-Debuginfo-Updates/sle-12-x86_64/", + "name" : "OES2018-SP2-SLE-Manager-Tools12-Debuginfo-Updates", + "distro_target" : "sle-12-x86_64", + "description" : "SUSE Manager Tools provide packages required to connect to a SUSE Manager Server.", + "enabled" : false, + "autorefresh" : true, + "installer_updates" : false + }, + { + "id" : -96, + "url" : "https://nu.novell.com/repo/$RCE/OES2018-SP2-SLE-Manager-Tools12-Pool/sle-12-x86_64/", + "name" : "OES2018-SP2-SLE-Manager-Tools12-Pool", + "distro_target" : "sle-12-x86_64", + "description" : "SUSE Manager Tools provide packages required to connect to a SUSE Manager Server.", + "enabled" : true, + "autorefresh" : false, + "installer_updates" : false + }, + { + "id" : -97, + "url" : "https://nu.novell.com/repo/$RCE/OES2018-SP2-SLE-Manager-Tools12-Updates/sle-12-x86_64/", + "name" : "OES2018-SP2-SLE-Manager-Tools12-Updates", + "distro_target" : "sle-12-x86_64", + "description" : "SUSE Manager Tools provide packages required to connect to a SUSE Manager Server.", + "enabled" : true, + "autorefresh" : true, + "installer_updates" : false + }, + { + "id" : -98, + "url" : "https://nu.novell.com/repo/$RCE/OES2018-SP2-SLE-SDK-12-SP5-Pool/sle-12-x86_64/", + "name" : "OES2018-SP2-SLE-SDK-12-SP5-Pool", + "distro_target" : "sle-12-x86_64", + "description" : "SUSE Linux Enterprise Software Development Kit 12 is the Software Development Kit for the family of SUSE Linux Enterprise products. It is a free of charge extension for partners and customers working with SUSE Linux Enterprise Server and Desktop and derived products. \\n Packages on the SDK are delivered without L3 support; maintenance updates will be done for critical security and critical non-security issues, and where needed to remain in sync with packages delivered in the SUSE Linux Enterprise Server and Desktop products. \\n Packages to rebuild SUSE Linux Enterprise Server are not part of the SUSE Linux Enterprise Software Development Kit.", + "enabled" : false, + "autorefresh" : false, + "installer_updates" : false + }, + { + "id" : -99, + "url" : "https://nu.novell.com/repo/$RCE/OES2018-SP2-SLE-SDK-12-SP5-Updates/sle-12-x86_64/", + "name" : "OES2018-SP2-SLE-SDK-12-SP5-Updates", + "distro_target" : "sle-12-x86_64", + "description" : "SUSE Linux Enterprise Software Development Kit 12 is the Software Development Kit for the family of SUSE Linux Enterprise products. It is a free of charge extension for partners and customers working with SUSE Linux Enterprise Server and Desktop and derived products. \\n Packages on the SDK are delivered without L3 support; maintenance updates will be done for critical security and critical non-security issues, and where needed to remain in sync with packages delivered in the SUSE Linux Enterprise Server and Desktop products. \\n Packages to rebuild SUSE Linux Enterprise Server are not part of the SUSE Linux Enterprise Software Development Kit.", + "enabled" : false, + "autorefresh" : true, + "installer_updates" : false + }, + { + "id" : -100, + "url" : "https://nu.novell.com/repo/$RCE/OES2018-SP2-SLE-SDK-12-SP5-Debuginfo-Pool/sle-12-x86_64/", + "name" : "OES2018-SP2-SLE-SDK-12-SP5-Debuginfo-Pool", + "distro_target" : "sle-12-x86_64", + "description" : "SUSE Linux Enterprise Software Development Kit 12 is the Software Development Kit for the family of SUSE Linux Enterprise products. It is a free of charge extension for partners and customers working with SUSE Linux Enterprise Server and Desktop and derived products. \\n Packages on the SDK are delivered without L3 support; maintenance updates will be done for critical security and critical non-security issues, and where needed to remain in sync with packages delivered in the SUSE Linux Enterprise Server and Desktop products. \\n Packages to rebuild SUSE Linux Enterprise Server are not part of the SUSE Linux Enterprise Software Development Kit.", + "enabled" : false, + "autorefresh" : false, + "installer_updates" : false + }, + { + "id" : -101, + "url" : "https://nu.novell.com/repo/$RCE/OES2018-SP2-SLE-SDK-12-SP5-Debuginfo-Updates/sle-12-x86_64/", + "name" : "OES2018-SP2-SLE-SDK-12-SP5-Debuginfo-Updates", + "distro_target" : "sle-12-x86_64", + "description" : "SUSE Linux Enterprise Software Development Kit 12 is the Software Development Kit for the family of SUSE Linux Enterprise products. It is a free of charge extension for partners and customers working with SUSE Linux Enterprise Server and Desktop and derived products. \\n Packages on the SDK are delivered without L3 support; maintenance updates will be done for critical security and critical non-security issues, and where needed to remain in sync with packages delivered in the SUSE Linux Enterprise Server and Desktop products. \\n Packages to rebuild SUSE Linux Enterprise Server are not part of the SUSE Linux Enterprise Software Development Kit.", + "enabled" : false, + "autorefresh" : true, + "installer_updates" : false + }, + { + "id" : -102, + "url" : "https://nu.novell.com/repo/$RCE/OES2018-SP2-SLE-Module-Public-Cloud12-Pool/sle-12-x86_64/", + "name" : "OES2018-SP2-SLE-Module-Public-Cloud12-Pool", + "distro_target" : "sle-12-x86_64", + "description" : "The Public Cloud Module is a collection of tools that enables you to create and manage cloud images from the commandline on SUSE Linux Enterprise Server. When building your own images with KIWI or SUSE Studio, initialization code specific to the target cloud is included in that image. \\n Access to the Public Cloud Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself; please check the Release Notes for further details.", + "enabled" : false, + "autorefresh" : false, + "installer_updates" : false + }, + { + "id" : -103, + "url" : "https://nu.novell.com/repo/$RCE/OES2018-SP2-SLE-Module-Public-Cloud12-Updates/sle-12-x86_64/", + "name" : "OES2018-SP2-SLE-Module-Public-Cloud12-Updates", + "distro_target" : "sle-12-x86_64", + "description" : "The Public Cloud Module is a collection of tools that enables you to create and manage cloud images from the commandline on SUSE Linux Enterprise Server. When building your own images with KIWI or SUSE Studio, initialization code specific to the target cloud is included in that image. \\n Access to the Public Cloud Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself; please check the Release Notes for further details.", + "enabled" : false, + "autorefresh" : true, + "installer_updates" : false + }, + { + "id" : -104, + "url" : "https://nu.novell.com/repo/$RCE/OES2018-SP2-SLE-Module-Public-Cloud12-Debuginfo-Pool/sle-12-x86_64/", + "name" : "OES2018-SP2-SLE-Module-Public-Cloud12-Debuginfo-Pool", + "distro_target" : "sle-12-x86_64", + "description" : "The Public Cloud Module is a collection of tools that enables you to create and manage cloud images from the commandline on SUSE Linux Enterprise Server. When building your own images with KIWI or SUSE Studio, initialization code specific to the target cloud is included in that image. \\n Access to the Public Cloud Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself; please check the Release Notes for further details.", + "enabled" : false, + "autorefresh" : false, + "installer_updates" : false + }, + { + "id" : -105, + "url" : "https://nu.novell.com/repo/$RCE/OES2018-SP2-SLE-Module-Public-Cloud12-Debuginfo-Updates/sle-12-x86_64/", + "name" : "OES2018-SP2-SLE-Module-Public-Cloud12-Debuginfo-Updates", + "distro_target" : "sle-12-x86_64", + "description" : "The Public Cloud Module is a collection of tools that enables you to create and manage cloud images from the commandline on SUSE Linux Enterprise Server. When building your own images with KIWI or SUSE Studio, initialization code specific to the target cloud is included in that image. \\n Access to the Public Cloud Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself; please check the Release Notes for further details.", + "enabled" : false, + "autorefresh" : true, + "installer_updates" : false + }, + { + "id" : -106, + "url" : "https://nu.novell.com/repo/$RCE/OES2018-SP2-SLE-Module-Web-Scripting12-Pool/sle-12-x86_64/", + "name" : "OES2018-SP2-SLE-Module-Web-Scripting12-Pool", + "distro_target" : "sle-12-x86_64", + "description" : "The SUSE Linux Enterprise Web and Scripting Module delivers a comprehensive suite of scripting languages, frameworks, and related tools helping developers and systems administrators accelerate the creation of stable, modern web applications, using dynamic languages, such as PHP, Ruby on Rails, and Python. \\n Access to the Web and Scripting Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself: Package versions in the this module are usually supported for at most three years. We are planning to release more recent versions on a schedule of approximately 18 month; the exact dates may differ per package.", + "enabled" : false, + "autorefresh" : false, + "installer_updates" : false + }, + { + "id" : -107, + "url" : "https://nu.novell.com/repo/$RCE/OES2018-SP2-SLE-Module-Web-Scripting12-Updates/sle-12-x86_64/", + "name" : "OES2018-SP2-SLE-Module-Web-Scripting12-Updates", + "distro_target" : "sle-12-x86_64", + "description" : "The SUSE Linux Enterprise Web and Scripting Module delivers a comprehensive suite of scripting languages, frameworks, and related tools helping developers and systems administrators accelerate the creation of stable, modern web applications, using dynamic languages, such as PHP, Ruby on Rails, and Python. \\n Access to the Web and Scripting Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself: Package versions in the this module are usually supported for at most three years. We are planning to release more recent versions on a schedule of approximately 18 month; the exact dates may differ per package.", + "enabled" : false, + "autorefresh" : true, + "installer_updates" : false + }, + { + "id" : -108, + "url" : "https://nu.novell.com/repo/$RCE/OES2018-SP2-SLE-Module-Web-Scripting12-Debuginfo-Pool/sle-12-x86_64/", + "name" : "OES2018-SP2-SLE-Module-Web-Scripting12-Debuginfo-Pool", + "distro_target" : "sle-12-x86_64", + "description" : "The SUSE Linux Enterprise Web and Scripting Module delivers a comprehensive suite of scripting languages, frameworks, and related tools helping developers and systems administrators accelerate the creation of stable, modern web applications, using dynamic languages, such as PHP, Ruby on Rails, and Python. \\n Access to the Web and Scripting Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself: Package versions in the this module are usually supported for at most three years. We are planning to release more recent versions on a schedule of approximately 18 month; the exact dates may differ per package.", + "enabled" : false, + "autorefresh" : false, + "installer_updates" : false + }, + { + "id" : -109, + "url" : "https://nu.novell.com/repo/$RCE/OES2018-SP2-SLE-Module-Web-Scripting12-Debuginfo-Updates/sle-12-x86_64/", + "name" : "OES2018-SP2-SLE-Module-Web-Scripting12-Debuginfo-Updates", + "distro_target" : "sle-12-x86_64", + "description" : "The SUSE Linux Enterprise Web and Scripting Module delivers a comprehensive suite of scripting languages, frameworks, and related tools helping developers and systems administrators accelerate the creation of stable, modern web applications, using dynamic languages, such as PHP, Ruby on Rails, and Python. \\n Access to the Web and Scripting Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself: Package versions in the this module are usually supported for at most three years. We are planning to release more recent versions on a schedule of approximately 18 month; the exact dates may differ per package.", + "enabled" : false, + "autorefresh" : true, + "installer_updates" : false + }, + { + "id" : -110, + "url" : "https://nu.novell.com/repo/$RCE/OES2018-SP2-SLE-Module-Toolchain12-Pool/sle-12-x86_64/", + "name" : "OES2018-SP2-SLE-Module-Toolchain12-Pool", + "distro_target" : "sle-12-x86_64", + "description" : "Via this Module you will have access to a more recent GCC and Toolchain in addition to the default compiler of SUSE Linux Enterprise. Access to the Toolchain Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself. Please check the Release Notes for further details.", + "enabled" : false, + "autorefresh" : false, + "installer_updates" : false + }, + { + "id" : -111, + "url" : "https://nu.novell.com/repo/$RCE/OES2018-SP2-SLE-Module-Toolchain12-Updates/sle-12-x86_64/", + "name" : "OES2018-SP2-SLE-Module-Toolchain12-Updates", + "distro_target" : "sle-12-x86_64", + "description" : "Via this Module you will have access to a more recent GCC and Toolchain in addition to the default compiler of SUSE Linux Enterprise. Access to the Toolchain Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself. Please check the Release Notes for further details.", + "enabled" : false, + "autorefresh" : true, + "installer_updates" : false + }, + { + "id" : -112, + "url" : "https://nu.novell.com/repo/$RCE/OES2018-SP2-SLE-Module-Toolchain12-Debuginfo-Pool/sle-12-x86_64/", + "name" : "OES2018-SP2-SLE-Module-Toolchain12-Debuginfo-Pool", + "distro_target" : "sle-12-x86_64", + "description" : "Via this Module you will have access to a more recent GCC and Toolchain in addition to the default compiler of SUSE Linux Enterprise. Access to the Toolchain Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself. Please check the Release Notes for further details.", + "enabled" : false, + "autorefresh" : false, + "installer_updates" : false + }, + { + "id" : -113, + "url" : "https://nu.novell.com/repo/$RCE/OES2018-SP2-SLE-Module-Toolchain12-Debuginfo-Updates/sle-12-x86_64/", + "name" : "OES2018-SP2-SLE-Module-Toolchain12-Debuginfo-Updates", + "distro_target" : "sle-12-x86_64", + "description" : "Via this Module you will have access to a more recent GCC and Toolchain in addition to the default compiler of SUSE Linux Enterprise. Access to the Toolchain Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself. Please check the Release Notes for further details.", + "enabled" : false, + "autorefresh" : true, + "installer_updates" : false + } + ] + }, + { + "id" : -8, + "name" : "RHEL or SLES ES or CentOS Base", + "identifier" : "rhel-base", + "former_identifier" : "", + "version" : "8", + "release_type" : null, + "arch" : "x86_64", + "friendly_name" : "RHEL or SLES ES or CentOS 8 Base", + "product_class" : "SLE-M-T", + "cpe" : null, + "free" : false, + "description" : null, + "release_stage" : "released", + "eula_url" : "", + "product_type" : "base", + "offline_predecessor_ids" : [ + ], + "online_predecessor_ids" : [ + ], + "shortname" : null, + "recommended" : false, + "extensions" : [ + ], + "repositories" : [ + { + "id" : -82, + "url" : "http://localhost/pub/repositories/empty/", + "name" : "RHEL8-Pool", + "distro_target" : "x86_64", + "description" : "RHEL8-Pool", + "enabled" : true, + "autorefresh" : false, + "installer_updates" : false + } + ] + }, + { + "id" : -7, + "name" : "RHEL Base", + "identifier" : "rhel-base", + "former_identifier" : "", + "version" : "7", + "release_type" : null, + "arch" : "x86_64", + "friendly_name" : "RHEL7 Base x86_64", + "product_class" : "SLE-M-T", + "cpe" : null, + "free" : false, + "description" : null, + "release_stage" : "released", + "eula_url" : "", + "product_type" : "base", + "offline_predecessor_ids" : [ + ], + "online_predecessor_ids" : [ + ], + "shortname" : null, + "recommended" : false, + "extensions" : [ + ], + "repositories" : [ + { + "id" : -83, + "url" : "http://localhost/pub/repositories/empty/", + "name" : "RHEL7-Pool", + "distro_target" : "x86_64", + "description" : "RHEL7-Pool", + "enabled" : true, + "autorefresh" : false, + "installer_updates" : false + } + ] + }, + { + "id" : -6, + "name" : "RHEL Base", + "identifier" : "rhel-base", + "former_identifier" : "", + "version" : "6", + "release_type" : null, + "arch" : "i386", + "friendly_name" : "RHEL6 Base i386", + "product_class" : "SLE-M-T", + "cpe" : null, + "free" : false, + "description" : null, + "release_stage" : "released", + "eula_url" : "", + "product_type" : "base", + "offline_predecessor_ids" : [ + ], + "online_predecessor_ids" : [ + ], + "shortname" : null, + "recommended" : false, + "extensions" : [ + ], + "repositories" : [ + { + "id" : -81, + "url" : "http://localhost/pub/repositories/empty/", + "name" : "RHEL6-Pool", + "distro_target" : "i386", + "description" : "RHEL6-Pool", + "enabled" : true, + "autorefresh" : false, + "installer_updates" : false + } + ] + }, + { + "id" : -5, + "name" : "RHEL Base", + "identifier" : "rhel-base", + "former_identifier" : "", + "version" : "6", + "release_type" : null, + "arch" : "x86_64", + "friendly_name" : "RHEL6 Base x86_64", + "product_class" : "SLE-M-T", + "cpe" : null, + "free" : false, + "description" : null, + "release_stage" : "released", + "eula_url" : "", + "product_type" : "base", + "offline_predecessor_ids" : [ + ], + "online_predecessor_ids" : [ + ], + "shortname" : null, + "recommended" : false, + "extensions" : [ + ], + "repositories" : [ + { + "id" : -80, + "url" : "http://localhost/pub/repositories/empty/", + "name" : "RHEL6-Pool", + "distro_target" : "x86_64", + "description" : "RHEL6-Pool", + "enabled" : true, + "autorefresh" : false, + "installer_updates" : false + } + ] + }, + { + "id" : -4, + "name" : "RHEL Base", + "identifier" : "rhel-base", + "former_identifier" : "", + "version" : "5", + "release_type" : null, + "arch" : "i386", + "friendly_name" : "RHEL5 Base i386", + "product_class" : "SLE-M-T", + "cpe" : null, + "free" : false, + "description" : null, + "release_stage" : "released", + "eula_url" : "", + "product_type" : "base", + "offline_predecessor_ids" : [ + ], + "online_predecessor_ids" : [ + ], + "shortname" : null, + "recommended" : false, + "extensions" : [ + ], + "repositories" : [ + { + "id" : -79, + "url" : "http://localhost/pub/repositories/empty/", + "name" : "RHEL5-Pool", + "distro_target" : "i386", + "description" : "RHEL5-Pool", + "enabled" : true, + "autorefresh" : false, + "installer_updates" : false + } + ] + }, + { + "id" : -3, + "name" : "RHEL Base", + "identifier" : "rhel-base", + "former_identifier" : "", + "version" : "5", + "release_type" : null, + "arch" : "x86_64", + "friendly_name" : "RHEL5 Base x86_64", + "product_class" : "SLE-M-T", + "cpe" : null, + "free" : false, + "description" : null, + "release_stage" : "released", + "eula_url" : "", + "product_type" : "base", + "offline_predecessor_ids" : [ + ], + "online_predecessor_ids" : [ + ], + "shortname" : null, + "recommended" : false, + "extensions" : [ + ], + "repositories" : [ + { + "id" : -78, + "url" : "http://localhost/pub/repositories/empty/", + "name" : "RHEL5-Pool", + "distro_target" : "x86_64", + "description" : "RHEL5-Pool", + "enabled" : true, + "autorefresh" : false, + "installer_updates" : false + } + ] + }, + { + "id" : -2, + "name" : "Ubuntu", + "identifier" : "Ubuntu-Client", + "former_identifier" : "", + "version" : "16.04", + "release_type" : null, + "arch" : "amd64", + "friendly_name" : "Ubuntu 16.04", + "product_class" : "SLE-M-T", + "cpe" : null, + "free" : true, + "description" : null, + "release_stage" : "released", + "eula_url" : "", + "product_type" : "base", + "offline_predecessor_ids" : [ + ], + "online_predecessor_ids" : [ + ], + "shortname" : null, + "recommended" : false, + "extensions" : [ + ], + "repositories" : [ + { + "id" : -76, + "url" : "http://localhost/pub/repositories/empty-deb/", + "name" : "ubuntu-16.04-pool", + "distro_target" : "amd64", + "description" : "Ubuntu 16.04 LTS", + "enabled" : true, + "autorefresh" : false, + "installer_updates" : false + } + ] + }, + { + "id" : -1, + "name" : "Ubuntu", + "identifier" : "Ubuntu-Client", + "former_identifier" : "", + "version" : "18.04", + "release_type" : null, + "arch" : "amd64", + "friendly_name" : "Ubuntu 18.04", + "product_class" : "SLE-M-T", + "cpe" : null, + "free" : true, + "description" : null, + "release_stage" : "released", + "eula_url" : "", + "product_type" : "base", + "offline_predecessor_ids" : [ + ], + "online_predecessor_ids" : [ + ], + "shortname" : null, + "recommended" : false, + "extensions" : [ + ], + "repositories" : [ + { + "id" : -77, + "url" : "http://localhost/pub/repositories/empty-deb/", + "name" : "ubuntu-18.04-pool", + "distro_target" : "amd64", + "description" : "Ubuntu 18.04 LTS", + "enabled" : true, + "autorefresh" : false, + "installer_updates" : false + } + ] + }, { "id" : 42, - "name" : "Open Enterprise Server 2015", + "name" : "Open Enterprise Server", "identifier" : "Open_Enterprise_Server", "former_identifier" : "", "version" : "2015", @@ -48,7 +4348,7 @@ }, { "id" : 43, - "name" : "Open Enterprise Server 2015 SP1", + "name" : "Open Enterprise Server", "identifier" : "Open_Enterprise_Server", "former_identifier" : "", "version" : "2015.1", @@ -96,7 +4396,7 @@ }, { "id" : 44, - "name" : "Open Enterprise Server 11 SP3", + "name" : "Open Enterprise Server", "identifier" : "Open_Enterprise_Server", "former_identifier" : "", "version" : "11.3", @@ -144,7 +4444,7 @@ }, { "id" : 45, - "name" : "Open Enterprise Server 2018", + "name" : "Open Enterprise Server", "identifier" : "Open_Enterprise_Server", "former_identifier" : "", "version" : "2018", @@ -371,7 +4671,7 @@ }, { "id" : 46, - "name" : "Open Enterprise Server 2018 SP1", + "name" : "Open Enterprise Server", "identifier" : "Open_Enterprise_Server", "former_identifier" : "", "version" : "2018.1", @@ -382,7 +4682,7 @@ "cpe" : null, "free" : false, "description" : null, - "release_stage" : "beta", + "release_stage" : "released", "eula_url" : "", "product_type" : "base", "offline_predecessor_ids" : [ @@ -699,7 +4999,7 @@ }, { "id" : 1232, - "name" : "Novell Open Enterprise Server 2 11", + "name" : "Novell Open Enterprise Server 2", "identifier" : "Open_Enterprise_Server", "former_identifier" : "", "version" : "11", @@ -746,7 +5046,7 @@ }, { "id" : 1241, - "name" : "Novell Open Enterprise Server 2 11.1", + "name" : "Novell Open Enterprise Server 2", "identifier" : "Open_Enterprise_Server", "former_identifier" : "", "version" : "11.1", @@ -794,7 +5094,7 @@ }, { "id" : 1242, - "name" : "Novell Open Enterprise Server 2 11.2", + "name" : "Novell Open Enterprise Server 2", "identifier" : "Open_Enterprise_Server", "former_identifier" : "", "version" : "11.2", @@ -839,264 +5139,5 @@ "installer_updates" : false } ] - }, - { - "id" : -1, - "name" : "Ubuntu 18.04", - "identifier" : "Ubuntu-Client", - "former_identifier" : "", - "version" : "18.04", - "release_type" : null, - "arch" : "amd64", - "friendly_name" : "Ubuntu 18.04", - "product_class" : "SLE-M-T-ALPHA", - "cpe" : null, - "free" : false, - "description" : null, - "release_stage" : "alpha", - "eula_url" : "", - "product_type" : "base", - "offline_predecessor_ids" : [ - ], - "online_predecessor_ids" : [ - ], - "shortname" : null, - "recommended" : false, - "extensions" : [ - ], - "repositories" : [ - { - "id" : -77, - "url" : "http://localhost/pub/repositories/empty-deb/", - "name" : "ubuntu-18.04-pool", - "distro_target" : "amd64", - "description" : "Ubuntu 18.04 LTS", - "enabled" : true, - "autorefresh" : false, - "installer_updates" : false - } - ] - }, - { - "id" : -2, - "name" : "Ubuntu 16.04", - "identifier" : "Ubuntu-Client", - "former_identifier" : "", - "version" : "16.04", - "release_type" : null, - "arch" : "amd64", - "friendly_name" : "Ubuntu 16.04", - "product_class" : "SLE-M-T-ALPHA", - "cpe" : null, - "free" : false, - "description" : null, - "release_stage" : "alpha", - "eula_url" : "", - "product_type" : "base", - "offline_predecessor_ids" : [ - ], - "online_predecessor_ids" : [ - ], - "shortname" : null, - "recommended" : false, - "extensions" : [ - ], - "repositories" : [ - { - "id" : -76, - "url" : "http://localhost/pub/repositories/empty-deb/", - "name" : "ubuntu-16.04-pool", - "distro_target" : "amd64", - "description" : "Ubuntu 16.04 LTS", - "enabled" : true, - "autorefresh" : false, - "installer_updates" : false - } - ] - }, - { - "id" : -3, - "name" : "RHEL5 Base", - "identifier" : "rhel5-base", - "former_identifier" : "", - "version" : "5", - "release_type" : null, - "arch" : "x86_64", - "friendly_name" : "RHEL5 Base x86_64", - "product_class" : "SLE-M-T", - "cpe" : null, - "free" : false, - "description" : null, - "release_stage" : "alpha", - "eula_url" : "", - "product_type" : "base", - "offline_predecessor_ids" : [ - ], - "online_predecessor_ids" : [ - ], - "shortname" : null, - "recommended" : false, - "extensions" : [ - ], - "repositories" : [ - { - "id" : -78, - "url" : "http://localhost/pub/repositories/empty/", - "name" : "RHEL5-Pool", - "distro_target" : "x86_64", - "description" : "RHEL5-Pool", - "enabled" : true, - "autorefresh" : false, - "installer_updates" : false - } - ] - }, - { - "id" : -4, - "name" : "RHEL5 Base", - "identifier" : "rhel5-base", - "former_identifier" : "", - "version" : "5", - "release_type" : null, - "arch" : "i386", - "friendly_name" : "RHEL5 Base i386", - "product_class" : "SLE-M-T", - "cpe" : null, - "free" : false, - "description" : null, - "release_stage" : "alpha", - "eula_url" : "", - "product_type" : "base", - "offline_predecessor_ids" : [ - ], - "online_predecessor_ids" : [ - ], - "shortname" : null, - "recommended" : false, - "extensions" : [ - ], - "repositories" : [ - { - "id" : -79, - "url" : "http://localhost/pub/repositories/empty/", - "name" : "RHEL5-Pool", - "distro_target" : "i386", - "description" : "RHEL5-Pool", - "enabled" : true, - "autorefresh" : false, - "installer_updates" : false - } - ] - }, - { - "id" : -5, - "name" : "RHEL6 Base", - "identifier" : "rhel6-base", - "former_identifier" : "", - "version" : "6", - "release_type" : null, - "arch" : "x86_64", - "friendly_name" : "RHEL6 Base x86_64", - "product_class" : "SLE-M-T", - "cpe" : null, - "free" : false, - "description" : null, - "release_stage" : "alpha", - "eula_url" : "", - "product_type" : "base", - "offline_predecessor_ids" : [ - ], - "online_predecessor_ids" : [ - ], - "shortname" : null, - "recommended" : false, - "extensions" : [ - ], - "repositories" : [ - { - "id" : -80, - "url" : "http://localhost/pub/repositories/empty/", - "name" : "RHEL6-Pool", - "distro_target" : "x86_64", - "description" : "RHEL6-Pool", - "enabled" : true, - "autorefresh" : false, - "installer_updates" : false - } - ] - }, - { - "id" : -6, - "name" : "RHEL6 Base", - "identifier" : "rhel6-base", - "former_identifier" : "", - "version" : "6", - "release_type" : null, - "arch" : "i386", - "friendly_name" : "RHEL6 Base i386", - "product_class" : "SLE-M-T", - "cpe" : null, - "free" : false, - "description" : null, - "release_stage" : "alpha", - "eula_url" : "", - "product_type" : "base", - "offline_predecessor_ids" : [ - ], - "online_predecessor_ids" : [ - ], - "shortname" : null, - "recommended" : false, - "extensions" : [ - ], - "repositories" : [ - { - "id" : -81, - "url" : "http://localhost/pub/repositories/empty/", - "name" : "RHEL6-Pool", - "distro_target" : "i386", - "description" : "RHEL6-Pool", - "enabled" : true, - "autorefresh" : false, - "installer_updates" : false - } - ] - }, - { - "id" : -7, - "name" : "RHEL7 Base", - "identifier" : "rhel7-base", - "former_identifier" : "", - "version" : "7", - "release_type" : null, - "arch" : "x86_64", - "friendly_name" : "RHEL7 Base x86_64", - "product_class" : "SLE-M-T", - "cpe" : null, - "free" : false, - "description" : null, - "release_stage" : "alpha", - "eula_url" : "", - "product_type" : "base", - "offline_predecessor_ids" : [ - ], - "online_predecessor_ids" : [ - ], - "shortname" : null, - "recommended" : false, - "extensions" : [ - ], - "repositories" : [ - { - "id" : -81, - "url" : "http://localhost/pub/repositories/empty/", - "name" : "RHEL7-Pool", - "distro_target" : "x86_64", - "description" : "RHEL7-Pool", - "enabled" : true, - "autorefresh" : false, - "installer_updates" : false - } - ] } ] \ No newline at end of file diff --git a/java/code/src/com/redhat/rhn/manager/content/test/additional_repositories.json b/java/code/src/com/redhat/rhn/manager/content/test/additional_repositories.json index 605e4c11dc89..8b4ad58ba906 100644 --- a/java/code/src/com/redhat/rhn/manager/content/test/additional_repositories.json +++ b/java/code/src/com/redhat/rhn/manager/content/test/additional_repositories.json @@ -1,20 +1,20 @@ [ { - "id" : -71, + "id" : -75, "url" : "http://localhost/pub/repositories/empty/", - "name" : "rhel-i386-server-5", - "distro_target" : "i386", - "description" : "RES 5", + "name" : "rhel-x86_64-server-7", + "distro_target" : "x86_64", + "description" : "RES 7", "enabled" : true, "autorefresh" : false, "installer_updates" : false }, { - "id" : -72, + "id" : -74, "url" : "http://localhost/pub/repositories/empty/", - "name" : "rhel-x86_64-server-5", + "name" : "rhel-x86_64-server-6", "distro_target" : "x86_64", - "description" : "RES 5", + "description" : "RES 6", "enabled" : true, "autorefresh" : false, "installer_updates" : false @@ -30,21 +30,21 @@ "installer_updates" : false }, { - "id" : -74, + "id" : -72, "url" : "http://localhost/pub/repositories/empty/", - "name" : "rhel-x86_64-server-6", + "name" : "rhel-x86_64-server-5", "distro_target" : "x86_64", - "description" : "RES 6", + "description" : "RES 5", "enabled" : true, "autorefresh" : false, "installer_updates" : false }, { - "id" : -75, + "id" : -71, "url" : "http://localhost/pub/repositories/empty/", - "name" : "rhel-x86_64-server-7", - "distro_target" : "x86_64", - "description" : "RES 7", + "name" : "rhel-i386-server-5", + "distro_target" : "i386", + "description" : "RES 5", "enabled" : true, "autorefresh" : false, "installer_updates" : false diff --git a/java/code/src/com/redhat/rhn/manager/content/test/channel_families.json b/java/code/src/com/redhat/rhn/manager/content/test/channel_families.json index 5d470ce59cef..f37069157e09 100644 --- a/java/code/src/com/redhat/rhn/manager/content/test/channel_families.json +++ b/java/code/src/com/redhat/rhn/manager/content/test/channel_families.json @@ -1,282 +1,382 @@ [ - { - "label": "SLE-HAE-PPC", - "name": "SUSE Linux Enterprise High Availability Extension (PPC)" - }, - { - "label": "HPC-X86", - "name": "SUSE Linux Enterprise High Performance Computing (x86)" - }, - { - "label": "10040", - "name": "SUSE Linux Enterprise Point of Service" - }, - { - "label": "RES", - "name": "SUSE Linux Enterprise RedHat Expanded Support" - }, - { - "label": "AiO-PPC", - "name": "SUSE Linux Enterprise Server for SAP Power" - }, - { - "label": "ATI", - "name": "ATI" - }, - { - "label": "SLE-M-T", - "name": "SUSE Manager Tools" - }, - { - "label": "SLE-TC", - "name": "SUSE Linux Enterprise Thin Client" - }, - { - "label": "SMRBS", - "name": "SUSE Manager for Retail Branch Server" - }, - { - "label": "SLE-LP-PPC", - "name": "SUSE Linux Enterprise Live Patching PPC" - }, - { - "label": "SUSE_CLOUD", - "name": "SUSE Cloud" - }, - { - "label": "SUSE", - "name": "openSUSE" - }, - { - "label": "SLES12-GA-LTSS-X86", - "name": "SUSE Linux Enterprise Server 12 LTSS (x86)" - }, - { - "label": "SLESMT", - "name": "SUSE Linux Enterprise Subscription Management Tool" - }, - { - "label": "NAM-AGA", - "name": "Novell Access Manager" - }, - { - "label": "SLES-Z", - "name": "SUSE Linux Enterprise Server (Z-Series)" - }, - { - "label": "STUDIOONSITE", - "name": "SUSE Studio Onsite" - }, - { - "label": "SLMS", - "name": "SUSE Lifecycle Management Server" - }, - { - "label": "DSMP", - "name": "Data Synchronizer Mobility Pack" - }, - { - "label": "SLES12-SP2-LTSS-Z", - "name": "SUSE Linux Enterprise Server LTSS 12 SP2 Z-Series" - }, - { - "label": "MONO", - "name": "SUSE Linux Enterprise Mono Extension" - }, - { - "label": "7261", - "name": "SUSE Linux Enterprise Server" - }, - { - "label": "7260", - "name": "SUSE Linux Enterprise Desktop" - }, - { - "label": "SES", - "name": "SUSE Enterprise Storage" - }, - { - "label": "VMDP", - "name": "SUSE Linux Enterprise Virtual Machine Driver Pack" - }, - { - "label": "SLE-HAS", - "name": "SUSE Linux Enterprise HA Server" - }, - { - "label": "SLE-SDK", - "name": "SUSE Linux Enterprise Software Development Kit" - }, - { - "label": "RES-HA", - "name": "SUSE Linux Enterprise RedHat Expanded Support HA" - }, - { - "label": "OES2", - "name": "Novell Open Enterprise Server" - }, - { - "label": "SLE-LP", - "name": "SUSE Linux Enterprise Live Patching" - }, - { - "label": "Moblin-2.1-MSI", - "name": "Moblin for MSI" - }, - { - "label": "SMS-Z", - "name": "SUSE Manager Server System Z" - }, - { - "label": "SLES-EC2", - "name": "SUSE Linux Enterprise Server for Amazon EC2" - }, - { - "label": "HP-HWREF", - "name": "SUSE Linux Enterprise Desktop HW Refresh 2011A" - }, - { - "label": "SLES-RPI-ARM64", - "name": "SUSE Linux Enterprise Server (RPI ARM64)" - }, - { - "label": "SLE-WE", - "name": "SUSE Linux Enterprise Workstation Extension" - }, - { - "label": "JBEAP", - "name": "Novell Support for JBoss" - }, - { - "label": "SLE-HAE-IA", - "name": "SUSE Linux Enterprise High Availability Extension (Itanium)" - }, - { - "label": "WEBYAST", - "name": "WebYaST for SUSE Linux Enterprise" - }, - { - "label": "WebYast-SLMS", - "name": "WebYaST for SUSE Appliance Toolkit" - }, - { - "label": "SLES12-GA-LTSS-Z", - "name": "SUSE Linux Enterprise Server 12 LTSS (Z-Series)" - }, - { - "label": "20082", - "name": "Novell Open Workgroup Suite - Small Business Edition" - }, - { - "label": "MODULE", - "name": "SUSE Linux Enterprise Modules" - }, - { - "label": "MEEGO-1", - "name": "MEEGO" - }, - { - "label": "SLM", - "name": "Novell Sentinel Log Manager" - }, - { - "label": "ZLM7", - "name": "ZENworks Linux Management" - }, - { - "label": "ZOS", - "name": "ZENworks Orchestrator" - }, - { - "label": "Moblin-2-Samsung", - "name": "Moblin for Samsung" - }, - { - "label": "nVidia", - "name": "nVidia" - }, - { - "label": "STUDIOONSITERUNNER", - "name": "SUSE Studio OnSite Runner" - }, - { - "label": "SMS-PPC", - "name": "SUSE Manager Server PPC" - }, - { - "label": "SMP", - "name": "SUSE Manager Proxy" - }, - { - "label": "SLES12-SP1-LTSS-Z", - "name": "SUSE Linux Enterprise Server LTSS 12 SP1 Z-Series" - }, - { - "label": "SLE-POS-AS-SMRBS-X86", - "name": "SUSE Manager for Retail" - }, - { - "label": "SLE-HAE-Z", - "name": "SUSE Linux Enterprise High Availability Extension (Z-Series)" - }, - { - "label": "SMS-X86", - "name": "SUSE Manager Server X86-64" - }, - { - "label": "SLES-X86-VMWARE", - "name": "SUSE Linux Enterprise Server for VMware" - }, - { - "label": "13319", - "name": "SUSE Linux Enterprise Real Time" - }, - { - "label": "HPC-ARM64", - "name": "SUSE Linux Enterprise High Performance Computing (ARM64)" - }, - { - "label": "SES-ARM", - "name": "SUSE Enterprise Storage (ARM64)" - }, - { - "label": "SLE-HAE-GEO", - "name": "GEO Clustering for SLE HA Extension" - }, - { - "label": "SLES-ARM64", - "name": "SUSE Linux Enterprise Server (ARM64)" - }, - { - "label": "18962", - "name": "Novell ZENworks Configuration Management" - }, - { - "label": "CAASP_X86", - "name": "SUSE Container as a Service Platform x86_64" - }, - { - "label": "SLE-HAE-X86", - "name": "SUSE Linux Enterprise High Availability Extension (x86)" - }, - { - "label": "AiO", - "name": "SUSE Linux Enterprise Server for SAP" - }, - { - "label": "SLES-IA", - "name": "SUSE Linux Enterprise Server (Itanium)" - }, - { - "label": "SLES-PPC", - "name": "SUSE Linux Enterprise Server (PPC)" - }, - { - "label": "SLES12-SP1-LTSS-X86", - "name": "SUSE Linux Enterprise Server LTSS 12 SP1 x86_64" - }, - { - "label": "SLES12-SP2-LTSS-X86", - "name": "SUSE Linux Enterprise Server LTSS 12 SP2 x86_64" - } -] + { + "label" : "10040", + "name" : "SUSE Linux Enterprise Point of Service" + }, + { + "label" : "13319", + "name" : "SUSE Linux Enterprise Real Time" + }, + { + "label" : "7260", + "name" : "SUSE Linux Enterprise Desktop" + }, + { + "label" : "7261", + "name" : "SUSE Linux Enterprise Server" + }, + { + "label" : "AiO", + "name" : "SUSE Linux Enterprise Server for SAP" + }, + { + "label" : "AiO-PPC", + "name" : "SUSE Linux Enterprise Server for SAP Power" + }, + { + "label" : "CAASP_ARM64", + "name" : "SUSE Container as a Service Platform ARM64" + }, + { + "label" : "CAASP_X86", + "name" : "SUSE Container as a Service Platform x86_64" + }, + { + "label" : "HPC-ARM64", + "name" : "SUSE Linux Enterprise High Performance Computing (ARM64)" + }, + { + "label" : "HPC-X86", + "name" : "SUSE Linux Enterprise High Performance Computing (x86)" + }, + { + "label" : "HPC15-LTSS-ARM64", + "name" : "SUSE Linux Enterprise High Performance Computing LTSS 15 ARM64" + }, + { + "label" : "HPC15-LTSS-X86", + "name" : "SUSE Linux Enterprise High Performance Computing LTSS 15 x86_64" + }, + { + "label" : "HPC15-SP1-LTSS-ARM64", + "name" : "SUSE Linux Enterprise High Performance Computing LTSS 15 SP1 ARM64" + }, + { + "label" : "HPC15-SP1-LTSS-X86", + "name" : "SUSE Linux Enterprise High Performance Computing LTSS 15 SP1 x86_64" + }, + { + "label" : "HPC15-SP2-LTSS-ARM64", + "name" : "SUSE Linux Enterprise High Performance Computing LTSS 15 SP2 ARM64" + }, + { + "label" : "HPC15-SP2-LTSS-X86", + "name" : "SUSE Linux Enterprise High Performance Computing LTSS 15 SP2 x86_64" + }, + { + "label" : "HPC15-SP3-LTSS-ARM64", + "name" : "SUSE Linux Enterprise High Performance Computing LTSS 15 SP3 ARM64" + }, + { + "label" : "HPC15-SP3-LTSS-X86", + "name" : "SUSE Linux Enterprise High Performance Computing LTSS 15 SP3 x86_64" + }, + { + "label" : "HPC15-SP4-LTSS-ARM64", + "name" : "SUSE Linux Enterprise High Performance Computing LTSS 15 SP4 ARM64" + }, + { + "label" : "HPC15-SP4-LTSS-X86", + "name" : "SUSE Linux Enterprise High Performance Computing LTSS 15 SP4 x86_64" + }, + { + "label" : "HPE-HELION-OPENSTACK-X86", + "name" : "HPE Helion Openstack (x86)" + }, + { + "label" : "MICROOS-ARM64", + "name" : "MicroOS for ARM64" + }, + { + "label" : "MICROOS-X86", + "name" : "MicroOS for x86_64" + }, + { + "label" : "MICROOS-Z", + "name" : "MicroOS for Z-Series" + }, + { + "label" : "MODULE", + "name" : "SUSE Linux Enterprise Modules" + }, + { + "label" : "OES2", + "name" : "Novell Open Enterprise Server" + }, + { + "label" : "OPENSUSE", + "name" : "openSUSE Products" + }, + { + "label" : "RES", + "name" : "SUSE Linux Enterprise RedHat Expanded Support" + }, + { + "label" : "RES-HA", + "name" : "SUSE Linux Enterprise RedHat Expanded Support HA" + }, + { + "label" : "SES", + "name" : "SUSE Enterprise Storage" + }, + { + "label" : "SES-ARM64", + "name" : "SUSE Enterprise Storage ARM64" + }, + { + "label" : "SLE-ESPOS-ARM64", + "name" : "SUSE Linux Enterprise Extended Service Pack Overlap Support (ARM64)" + }, + { + "label" : "SLE-ESPOS-X86", + "name" : "SUSE Linux Enterprise Extended Service Pack Overlap Support (x86)" + }, + { + "label" : "SLE-HAE-ARM64", + "name" : "SUSE Linux Enterprise High Availability Extension (ARM64)" + }, + { + "label" : "SLE-HAE-GEO", + "name" : "GEO Clustering for SLE HA Extension" + }, + { + "label" : "SLE-HAE-IA", + "name" : "SUSE Linux Enterprise High Availability Extension (Itanium)" + }, + { + "label" : "SLE-HAE-PPC", + "name" : "SUSE Linux Enterprise High Availability Extension (PPC)" + }, + { + "label" : "SLE-HAE-X86", + "name" : "SUSE Linux Enterprise High Availability Extension (x86)" + }, + { + "label" : "SLE-HAE-Z", + "name" : "SUSE Linux Enterprise High Availability Extension (Z-Series)" + }, + { + "label" : "SLE-LP", + "name" : "SUSE Linux Enterprise Live Patching" + }, + { + "label" : "SLE-LP-PPC", + "name" : "SUSE Linux Enterprise Live Patching PPC" + }, + { + "label" : "SLE-LP-Z", + "name" : "SUSE Linux Enterprise Live Patching (Z-Series)" + }, + { + "label" : "SLE-M-T", + "name" : "SUSE Manager Tools" + }, + { + "label" : "SLE-POS-AS-SMRBS-X86", + "name" : "SUSE Manager for Retail" + }, + { + "label" : "SLE-SDK", + "name" : "SUSE Linux Enterprise Software Development Kit" + }, + { + "label" : "SLE-WE", + "name" : "SUSE Linux Enterprise Workstation Extension" + }, + { + "label" : "SLES-ARM64", + "name" : "SUSE Linux Enterprise Server (ARM64)" + }, + { + "label" : "SLES-IA", + "name" : "SUSE Linux Enterprise Server (Itanium)" + }, + { + "label" : "SLES-PPC", + "name" : "SUSE Linux Enterprise Server (PPC)" + }, + { + "label" : "SLES-RPI-ARM64", + "name" : "SUSE Linux Enterprise Server (RPI ARM64)" + }, + { + "label" : "SLES-X86-VMWARE", + "name" : "SUSE Linux Enterprise Server for VMware" + }, + { + "label" : "SLES-Z", + "name" : "SUSE Linux Enterprise Server (Z-Series)" + }, + { + "label" : "SLES12-GA-LTSS-X86", + "name" : "SUSE Linux Enterprise Server 12 LTSS (x86)" + }, + { + "label" : "SLES12-GA-LTSS-Z", + "name" : "SUSE Linux Enterprise Server 12 LTSS (Z-Series)" + }, + { + "label" : "SLES12-SP1-LTSS-X86", + "name" : "SUSE Linux Enterprise Server LTSS 12 SP1 x86_64" + }, + { + "label" : "SLES12-SP1-LTSS-Z", + "name" : "SUSE Linux Enterprise Server LTSS 12 SP1 Z-Series" + }, + { + "label" : "SLES12-SP2-LTSS-PPC", + "name" : "SUSE Linux Enterprise Server LTSS 12 SP2 PPC" + }, + { + "label" : "SLES12-SP2-LTSS-X86", + "name" : "SUSE Linux Enterprise Server LTSS 12 SP2 x86_64" + }, + { + "label" : "SLES12-SP2-LTSS-Z", + "name" : "SUSE Linux Enterprise Server LTSS 12 SP2 Z-Series" + }, + { + "label" : "SLES12-SP3-LTSS-ARM64", + "name" : "SUSE Linux Enterprise Server LTSS 12 SP3 ARM64" + }, + { + "label" : "SLES12-SP3-LTSS-PPC", + "name" : "SUSE Linux Enterprise Server LTSS 12 SP3 PPC" + }, + { + "label" : "SLES12-SP3-LTSS-X86", + "name" : "SUSE Linux Enterprise Server LTSS 12 SP3 x86_64" + }, + { + "label" : "SLES12-SP3-LTSS-Z", + "name" : "SUSE Linux Enterprise Server LTSS 12 SP3 Z-Series" + }, + { + "label" : "SLES12-SP4-LTSS-ARM64", + "name" : "SUSE Linux Enterprise Server LTSS 12 SP4 ARM64" + }, + { + "label" : "SLES12-SP4-LTSS-PPC", + "name" : "SUSE Linux Enterprise Server LTSS 12 SP4 PPC" + }, + { + "label" : "SLES12-SP4-LTSS-X86", + "name" : "SUSE Linux Enterprise Server LTSS 12 SP4 x86_64" + }, + { + "label" : "SLES12-SP4-LTSS-Z", + "name" : "SUSE Linux Enterprise Server LTSS 12 SP4 Z-Series" + }, + { + "label" : "SLES15-GA-LTSS-PPC", + "name" : "SUSE Linux Enterprise Server LTSS 15 GA PPC" + }, + { + "label" : "SLES15-GA-LTSS-X86", + "name" : "SUSE Linux Enterprise Server LTSS 15 GA x86_64" + }, + { + "label" : "SLES15-GA-LTSS-Z", + "name" : "SUSE Linux Enterprise Server LTSS 15 GA Z-Series" + }, + { + "label" : "SLES15-LTSS-ARM64", + "name" : "SUSE Linux Enterprise Server LTSS 15 ARM64" + }, + { + "label" : "SLES15-SP1-LTSS-ARM64", + "name" : "SUSE Linux Enterprise Server LTSS 15 SP1 ARM64" + }, + { + "label" : "SLES15-SP1-LTSS-PPC", + "name" : "SUSE Linux Enterprise Server LTSS 15 SP1 PPC" + }, + { + "label" : "SLES15-SP1-LTSS-X86", + "name" : "SUSE Linux Enterprise Server LTSS 15 SP1 x86_64" + }, + { + "label" : "SLES15-SP1-LTSS-Z", + "name" : "SUSE Linux Enterprise Server LTSS 15 SP1 Z-Series" + }, + { + "label" : "SLES15-SP2-LTSS-ARM64", + "name" : "SUSE Linux Enterprise Server LTSS 15 SP2 ARM64" + }, + { + "label" : "SLES15-SP2-LTSS-PPC", + "name" : "SUSE Linux Enterprise Server LTSS 15 SP2 PPC" + }, + { + "label" : "SLES15-SP2-LTSS-X86", + "name" : "SUSE Linux Enterprise Server LTSS 15 SP2 x86_64" + }, + { + "label" : "SLES15-SP2-LTSS-Z", + "name" : "SUSE Linux Enterprise Server LTSS 15 SP2 Z-Series" + }, + { + "label" : "SLES15-SP3-LTSS-ARM64", + "name" : "SUSE Linux Enterprise Server LTSS 15 SP3 ARM64" + }, + { + "label" : "SLES15-SP3-LTSS-PPC", + "name" : "SUSE Linux Enterprise Server LTSS 15 SP3 PPC" + }, + { + "label" : "SLES15-SP3-LTSS-X86", + "name" : "SUSE Linux Enterprise Server LTSS 15 SP3 x86_64" + }, + { + "label" : "SLES15-SP3-LTSS-Z", + "name" : "SUSE Linux Enterprise Server LTSS 15 SP3 Z-Series" + }, + { + "label" : "SLESMT", + "name" : "SUSE Linux Enterprise Subscription Management Tool" + }, + { + "label" : "SLMS", + "name" : "SUSE Lifecycle Management Server" + }, + { + "label" : "SMP", + "name" : "SUSE Manager Proxy" + }, + { + "label" : "SMRBS", + "name" : "SUSE Manager for Retail Branch Server" + }, + { + "label" : "SMS-PPC", + "name" : "SUSE Manager Server PPC" + }, + { + "label" : "SMS-X86", + "name" : "SUSE Manager Server X86-64" + }, + { + "label" : "SMS-Z", + "name" : "SUSE Manager Server System Z" + }, + { + "label" : "STUDIOONSITE", + "name" : "SUSE Studio Onsite" + }, + { + "label" : "SUSE_CLOUD", + "name" : "SUSE Cloud" + }, + { + "label" : "SUSE_CLOUD_CD", + "name" : "SUSE Cloud CD" + }, + { + "label" : "SUSE_RT", + "name" : "SUSE Realtime" + }, + { + "label" : "WEBYAST", + "name" : "WebYaST for SUSE Linux Enterprise" + } +] \ No newline at end of file diff --git a/java/code/src/com/redhat/rhn/manager/content/test/rmtclouddata/organizations_products_unscoped.json b/java/code/src/com/redhat/rhn/manager/content/test/rmtclouddata/organizations_products_unscoped.json new file mode 100644 index 000000000000..31127554bb69 --- /dev/null +++ b/java/code/src/com/redhat/rhn/manager/content/test/rmtclouddata/organizations_products_unscoped.json @@ -0,0 +1 @@ +[{"free":false,"shortname":null,"description":null,"arch":"ppc","eula_url":"","online_predecessor_ids":[],"repositories":[{"distro_target":"sles-10-ppc","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLES10-Updates/sles-10-ppc/","enabled":true,"id":633,"description":"SLES10-Updates for sles-10-ppc","installer_updates":false,"name":"SLES10-Updates"},{"name":"SLE10-Debuginfo-Updates","installer_updates":false,"description":"SLE10-Debuginfo-Updates for sles-10-ppc","enabled":false,"id":634,"autorefresh":true,"distro_target":"sles-10-ppc","url":"https://updates.suse.com/repo/$RCE/SLE10-Debuginfo-Updates/sles-10-ppc/"}],"product_class":"SLES-PPC","predecessor_ids":[],"product_type":"base","cpe":null,"version":"10","recommended":false,"former_identifier":"SUSE-Linux-Enterprise-Server-ppc","release_type":null,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Server 10 ppc","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Server","friendly_version":"10","release_stage":"released","id":666,"identifier":"SUSE-Linux-Enterprise-Server-ppc","extensions":[{"product_type":"extension","cpe":null,"online_predecessor_ids":[],"product_class":"SLE-SDK","repositories":[{"description":"SLE10-SDK-Updates for sles-10-ppc","installer_updates":false,"name":"SLE10-SDK-Updates","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-Updates/sles-10-ppc/","distro_target":"sles-10-ppc","autorefresh":true,"id":1290,"enabled":true}],"predecessor_ids":[],"arch":"ppc","eula_url":"","free":true,"description":null,"shortname":null,"release_stage":"released","identifier":"SUSE-Linux-Enterprise-SDK-DVD-ppc","id":1167,"extensions":[],"friendly_version":"10","release_type":null,"former_identifier":"SUSE-Linux-Enterprise-SDK-DVD-ppc","friendly_name":"SUSE Linux Enterprise Software Development Kit 10 ppc","migration_extra":false,"offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Software Development Kit","version":"10","recommended":false},{"description":null,"shortname":null,"free":true,"arch":"ppc","eula_url":"","repositories":[{"id":1290,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-Updates/sles-10-ppc/","autorefresh":true,"distro_target":"sles-10-ppc","name":"SLE10-SDK-Updates","installer_updates":false,"description":"SLE10-SDK-Updates for sles-10-ppc"}],"online_predecessor_ids":[],"product_class":"SLE-SDK","predecessor_ids":[],"cpe":null,"product_type":"extension","version":"10","recommended":false,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Software Development Kit 10 ppc","release_type":null,"former_identifier":"SUSE-Linux-Enterprise-SDK-ppc","name":"SUSE Linux Enterprise Software Development Kit","offline_predecessor_ids":[],"friendly_version":"10","identifier":"SUSE-Linux-Enterprise-SDK-ppc","release_stage":"released","id":1172,"extensions":[]},{"repositories":[{"id":1294,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sles-10-s390x/","distro_target":"sles-10-s390x","autorefresh":true,"installer_updates":false,"name":"SLE10-SDK-SP1-Online","description":"SLE10-SDK-SP1-Online for sles-10-s390x"},{"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sles-10-x86_64/","distro_target":"sles-10-x86_64","autorefresh":true,"id":1295,"enabled":true,"description":"SLE10-SDK-SP1-Online for sles-10-x86_64","installer_updates":false,"name":"SLE10-SDK-SP1-Online"},{"description":"SLE10-SDK-SP1-Online for sled-10-i586","installer_updates":false,"name":"SLE10-SDK-SP1-Online","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sled-10-i586/","distro_target":"sled-10-i586","autorefresh":true,"id":1296,"enabled":true},{"name":"SLE10-SDK-SP1-Online","installer_updates":false,"description":"SLE10-SDK-SP1-Online for sles-10-ppc","id":1297,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sles-10-ppc/","autorefresh":true,"distro_target":"sles-10-ppc"},{"enabled":true,"id":1301,"autorefresh":true,"distro_target":"sles-10-ia64","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sles-10-ia64/","name":"SLE10-SDK-SP1-Online","installer_updates":false,"description":"SLE10-SDK-SP1-Online for sles-10-ia64"},{"installer_updates":false,"name":"SLE10-SDK-SP1-Online","description":"SLE10-SDK-SP1-Online for sles-10-i586","id":1303,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sles-10-i586/","distro_target":"sles-10-i586","autorefresh":true},{"name":"SLE10-SDK-SP1-Online","installer_updates":false,"description":"SLE10-SDK-SP1-Online for sled-10-x86_64","enabled":true,"id":1307,"autorefresh":true,"distro_target":"sled-10-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sled-10-x86_64/"}],"online_predecessor_ids":[],"product_class":"SLE-SDK","predecessor_ids":[],"cpe":null,"product_type":"extension","description":null,"shortname":null,"free":true,"arch":null,"eula_url":"","friendly_version":"10","identifier":"SUSE-Linux-Enterprise-SDK-SP1-migration","release_stage":"released","id":1175,"extensions":[],"version":"10","recommended":false,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Software Development Kit 10 (Migration)","former_identifier":"SUSE-Linux-Enterprise-SDK-SP1-migration","release_type":null,"name":"SUSE Linux Enterprise Software Development Kit","offline_predecessor_ids":[]},{"cpe":null,"product_type":"extension","online_predecessor_ids":[],"product_class":"SLE-SDK","repositories":[{"enabled":true,"id":1308,"autorefresh":true,"distro_target":"sled-10-i586","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sled-10-i586/","name":"SLE10-SDK-SP2-Online","installer_updates":false,"description":"SLE10-SDK-SP2-Online for sled-10-i586"},{"description":"SLE10-SDK-SP2-Online for sles-10-ppc","name":"SLE10-SDK-SP2-Online","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sles-10-ppc/","autorefresh":true,"distro_target":"sles-10-ppc","id":1312,"enabled":true},{"installer_updates":false,"name":"SLE10-SDK-SP2-Online","description":"SLE10-SDK-SP2-Online for sles-10-i586","enabled":true,"id":1313,"distro_target":"sles-10-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sles-10-i586/"},{"description":"SLE10-SDK-SP2-Online for sled-10-x86_64","name":"SLE10-SDK-SP2-Online","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sled-10-x86_64/","autorefresh":true,"distro_target":"sled-10-x86_64","id":1314,"enabled":true},{"description":"SLE10-SDK-SP2-Online for sles-10-ia64","name":"SLE10-SDK-SP2-Online","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sles-10-ia64/","autorefresh":true,"distro_target":"sles-10-ia64","id":1316,"enabled":true},{"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sles-10-s390x/","autorefresh":true,"distro_target":"sles-10-s390x","id":1318,"enabled":true,"description":"SLE10-SDK-SP2-Online for sles-10-s390x","name":"SLE10-SDK-SP2-Online","installer_updates":false},{"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sles-10-x86_64/","autorefresh":true,"distro_target":"sles-10-x86_64","id":1321,"enabled":true,"description":"SLE10-SDK-SP2-Online for sles-10-x86_64","name":"SLE10-SDK-SP2-Online","installer_updates":false}],"predecessor_ids":[],"arch":null,"eula_url":"","description":null,"shortname":null,"free":true,"identifier":"SUSE-Linux-Enterprise-SDK-SP2-migration","release_stage":"released","id":1178,"extensions":[],"friendly_version":"10","friendly_name":"SUSE Linux Enterprise Software Development Kit 10 online (Migration)","migration_extra":false,"former_identifier":"SUSE-Linux-Enterprise-SDK-SP2-migration","release_type":"online","name":"SUSE Linux Enterprise Software Development Kit","offline_predecessor_ids":[],"version":"10","recommended":false},{"arch":null,"eula_url":"","shortname":null,"description":null,"free":true,"cpe":null,"product_type":"extension","online_predecessor_ids":[],"repositories":[{"installer_updates":false,"name":"SLE10-SDK-SP3-Online","description":"SLE10-SDK-SP3-Online for sled-10-i586","id":1324,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sled-10-i586/","distro_target":"sled-10-i586","autorefresh":true},{"description":"SLE10-SDK-SP3-Online for sled-10-x86_64","name":"SLE10-SDK-SP3-Online","installer_updates":false,"autorefresh":true,"distro_target":"sled-10-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sled-10-x86_64/","enabled":true,"id":1326},{"installer_updates":false,"name":"SLE10-SDK-SP3-Online","description":"SLE10-SDK-SP3-Online for sles-10-ia64","enabled":true,"id":1328,"distro_target":"sles-10-ia64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sles-10-ia64/"},{"description":"SLE10-SDK-SP3-Online for sles-10-i586","installer_updates":false,"name":"SLE10-SDK-SP3-Online","distro_target":"sles-10-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sles-10-i586/","enabled":true,"id":1330},{"id":1335,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sles-10-s390x/","autorefresh":true,"distro_target":"sles-10-s390x","name":"SLE10-SDK-SP3-Online","installer_updates":false,"description":"SLE10-SDK-SP3-Online for sles-10-s390x"},{"enabled":true,"id":1341,"distro_target":"sles-10-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sles-10-x86_64/","installer_updates":false,"name":"SLE10-SDK-SP3-Online","description":"SLE10-SDK-SP3-Online for sles-10-x86_64"},{"description":"SLE10-SDK-SP3-Online for sles-10-ppc","name":"SLE10-SDK-SP3-Online","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sles-10-ppc/","autorefresh":true,"distro_target":"sles-10-ppc","id":1342,"enabled":true}],"product_class":"SLE-SDK","predecessor_ids":[],"friendly_name":"SUSE Linux Enterprise Software Development Kit 10 (Migration)","migration_extra":false,"former_identifier":"SUSE-Linux-Enterprise-SDK-SP3-migration","release_type":null,"name":"SUSE Linux Enterprise Software Development Kit","offline_predecessor_ids":[],"version":"10","recommended":false,"release_stage":"released","id":1180,"identifier":"SUSE-Linux-Enterprise-SDK-SP3-migration","extensions":[],"friendly_version":"10"},{"product_type":"extension","cpe":null,"predecessor_ids":[],"repositories":[{"description":"SLE10-SDK-SP4-Online for sles-10-x86_64","installer_updates":false,"name":"SLE10-SDK-SP4-Online","distro_target":"sles-10-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP4-Online/sles-10-x86_64/","enabled":true,"id":1357},{"distro_target":"sles-10-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP4-Online/sles-10-i586/","enabled":true,"id":1358,"description":"SLE10-SDK-SP4-Online for sles-10-i586","installer_updates":false,"name":"SLE10-SDK-SP4-Online"},{"distro_target":"sles-10-ia64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP4-Online/sles-10-ia64/","enabled":true,"id":1359,"description":"SLE10-SDK-SP4-Online for sles-10-ia64","installer_updates":false,"name":"SLE10-SDK-SP4-Online"},{"id":1360,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP4-Online/sled-10-x86_64/","autorefresh":true,"distro_target":"sled-10-x86_64","name":"SLE10-SDK-SP4-Online","installer_updates":false,"description":"SLE10-SDK-SP4-Online for sled-10-x86_64"},{"id":1361,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP4-Online/sled-10-i586/","distro_target":"sled-10-i586","autorefresh":true,"installer_updates":false,"name":"SLE10-SDK-SP4-Online","description":"SLE10-SDK-SP4-Online for sled-10-i586"},{"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP4-Online/sles-10-ppc/","distro_target":"sles-10-ppc","autorefresh":true,"id":1362,"enabled":true,"description":"SLE10-SDK-SP4-Online for sles-10-ppc","installer_updates":false,"name":"SLE10-SDK-SP4-Online"},{"installer_updates":false,"name":"SLE10-SDK-SP4-Online","description":"SLE10-SDK-SP4-Online for sles-10-s390x","id":1363,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP4-Online/sles-10-s390x/","distro_target":"sles-10-s390x","autorefresh":true}],"online_predecessor_ids":[],"product_class":"SLE-SDK","eula_url":"","arch":null,"free":true,"description":null,"shortname":null,"extensions":[],"id":1182,"release_stage":"released","identifier":"SUSE-Linux-Enterprise-SDK-SP4-migration","friendly_version":"10","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Software Development Kit","release_type":null,"former_identifier":"SUSE-Linux-Enterprise-SDK-SP4-migration","migration_extra":false,"friendly_name":"SUSE Linux Enterprise Software Development Kit 10 (Migration)","recommended":false,"version":"10"}]},{"version":"10","recommended":false,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Server 10 ia64","release_type":null,"former_identifier":"SUSE-Linux-Enterprise-Server-ia64","name":"SUSE Linux Enterprise Server","offline_predecessor_ids":[],"friendly_version":"10","release_stage":"released","identifier":"SUSE-Linux-Enterprise-Server-ia64","id":667,"extensions":[{"extensions":[],"release_stage":"released","id":1166,"identifier":"SUSE-Linux-Enterprise-SDK-DVD-ia64","friendly_version":"10","name":"SUSE Linux Enterprise Software Development Kit","offline_predecessor_ids":[],"friendly_name":"SUSE Linux Enterprise Software Development Kit 10 ia64","migration_extra":false,"former_identifier":"SUSE-Linux-Enterprise-SDK-DVD-ia64","release_type":null,"recommended":false,"version":"10","cpe":null,"product_type":"extension","predecessor_ids":[],"repositories":[{"id":1287,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-Updates/sled-10-i586/","autorefresh":true,"distro_target":"sled-10-i586","name":"SLE10-SDK-Updates","installer_updates":false,"description":"SLE10-SDK-Updates for sled-10-i586"},{"description":"SLE10-SDK-Updates for sles-10-ia64","name":"SLE10-SDK-Updates","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-Updates/sles-10-ia64/","autorefresh":true,"distro_target":"sles-10-ia64","id":1289,"enabled":true}],"online_predecessor_ids":[],"product_class":"SLE-SDK","eula_url":"","arch":"ia64","description":null,"shortname":null,"free":true},{"version":"10","recommended":false,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Software Development Kit 10 ia64","former_identifier":"SUSE-Linux-Enterprise-SDK-ia64","release_type":null,"name":"SUSE Linux Enterprise Software Development Kit","offline_predecessor_ids":[],"friendly_version":"10","release_stage":"released","id":1171,"identifier":"SUSE-Linux-Enterprise-SDK-ia64","extensions":[],"shortname":null,"description":null,"free":true,"arch":"ia64","eula_url":"","repositories":[{"description":"SLE10-SDK-Updates for sled-10-i586","name":"SLE10-SDK-Updates","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-Updates/sled-10-i586/","autorefresh":true,"distro_target":"sled-10-i586","id":1287,"enabled":true},{"description":"SLE10-SDK-Updates for sles-10-ia64","name":"SLE10-SDK-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sles-10-ia64","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-Updates/sles-10-ia64/","enabled":true,"id":1289}],"online_predecessor_ids":[],"product_class":"SLE-SDK","predecessor_ids":[],"cpe":null,"product_type":"extension"},{"predecessor_ids":[],"online_predecessor_ids":[],"repositories":[{"enabled":true,"id":1294,"distro_target":"sles-10-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sles-10-s390x/","installer_updates":false,"name":"SLE10-SDK-SP1-Online","description":"SLE10-SDK-SP1-Online for sles-10-s390x"},{"installer_updates":false,"name":"SLE10-SDK-SP1-Online","description":"SLE10-SDK-SP1-Online for sles-10-x86_64","enabled":true,"id":1295,"distro_target":"sles-10-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sles-10-x86_64/"},{"name":"SLE10-SDK-SP1-Online","installer_updates":false,"description":"SLE10-SDK-SP1-Online for sled-10-i586","id":1296,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sled-10-i586/","autorefresh":true,"distro_target":"sled-10-i586"},{"description":"SLE10-SDK-SP1-Online for sles-10-ppc","name":"SLE10-SDK-SP1-Online","installer_updates":false,"autorefresh":true,"distro_target":"sles-10-ppc","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sles-10-ppc/","enabled":true,"id":1297},{"name":"SLE10-SDK-SP1-Online","installer_updates":false,"description":"SLE10-SDK-SP1-Online for sles-10-ia64","id":1301,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sles-10-ia64/","autorefresh":true,"distro_target":"sles-10-ia64"},{"autorefresh":true,"distro_target":"sles-10-i586","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sles-10-i586/","enabled":true,"id":1303,"description":"SLE10-SDK-SP1-Online for sles-10-i586","name":"SLE10-SDK-SP1-Online","installer_updates":false},{"name":"SLE10-SDK-SP1-Online","installer_updates":false,"description":"SLE10-SDK-SP1-Online for sled-10-x86_64","id":1307,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sled-10-x86_64/","autorefresh":true,"distro_target":"sled-10-x86_64"}],"product_class":"SLE-SDK","cpe":null,"product_type":"extension","description":null,"shortname":null,"free":true,"eula_url":"","arch":null,"friendly_version":"10","extensions":[],"release_stage":"released","id":1175,"identifier":"SUSE-Linux-Enterprise-SDK-SP1-migration","recommended":false,"version":"10","name":"SUSE Linux Enterprise Software Development Kit","offline_predecessor_ids":[],"friendly_name":"SUSE Linux Enterprise Software Development Kit 10 (Migration)","migration_extra":false,"release_type":null,"former_identifier":"SUSE-Linux-Enterprise-SDK-SP1-migration"},{"free":true,"description":null,"shortname":null,"arch":null,"eula_url":"","product_class":"SLE-SDK","online_predecessor_ids":[],"repositories":[{"description":"SLE10-SDK-SP2-Online for sled-10-i586","installer_updates":false,"name":"SLE10-SDK-SP2-Online","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sled-10-i586/","distro_target":"sled-10-i586","autorefresh":true,"id":1308,"enabled":true},{"name":"SLE10-SDK-SP2-Online","installer_updates":false,"description":"SLE10-SDK-SP2-Online for sles-10-ppc","id":1312,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sles-10-ppc/","autorefresh":true,"distro_target":"sles-10-ppc"},{"description":"SLE10-SDK-SP2-Online for sles-10-i586","installer_updates":false,"name":"SLE10-SDK-SP2-Online","distro_target":"sles-10-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sles-10-i586/","enabled":true,"id":1313},{"enabled":true,"id":1314,"autorefresh":true,"distro_target":"sled-10-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sled-10-x86_64/","name":"SLE10-SDK-SP2-Online","installer_updates":false,"description":"SLE10-SDK-SP2-Online for sled-10-x86_64"},{"distro_target":"sles-10-ia64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sles-10-ia64/","enabled":true,"id":1316,"description":"SLE10-SDK-SP2-Online for sles-10-ia64","installer_updates":false,"name":"SLE10-SDK-SP2-Online"},{"name":"SLE10-SDK-SP2-Online","installer_updates":false,"description":"SLE10-SDK-SP2-Online for sles-10-s390x","enabled":true,"id":1318,"autorefresh":true,"distro_target":"sles-10-s390x","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sles-10-s390x/"},{"id":1321,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sles-10-x86_64/","autorefresh":true,"distro_target":"sles-10-x86_64","name":"SLE10-SDK-SP2-Online","installer_updates":false,"description":"SLE10-SDK-SP2-Online for sles-10-x86_64"}],"predecessor_ids":[],"product_type":"extension","cpe":null,"version":"10","recommended":false,"former_identifier":"SUSE-Linux-Enterprise-SDK-SP2-migration","release_type":"online","friendly_name":"SUSE Linux Enterprise Software Development Kit 10 online (Migration)","migration_extra":false,"offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Software Development Kit","friendly_version":"10","release_stage":"released","identifier":"SUSE-Linux-Enterprise-SDK-SP2-migration","id":1178,"extensions":[]},{"offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Software Development Kit","former_identifier":"SUSE-Linux-Enterprise-SDK-SP3-migration","release_type":null,"friendly_name":"SUSE Linux Enterprise Software Development Kit 10 (Migration)","migration_extra":false,"recommended":false,"version":"10","extensions":[],"release_stage":"released","identifier":"SUSE-Linux-Enterprise-SDK-SP3-migration","id":1180,"friendly_version":"10","eula_url":"","arch":null,"free":true,"shortname":null,"description":null,"product_type":"extension","cpe":null,"predecessor_ids":[],"repositories":[{"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sled-10-i586/","distro_target":"sled-10-i586","autorefresh":true,"id":1324,"enabled":true,"description":"SLE10-SDK-SP3-Online for sled-10-i586","installer_updates":false,"name":"SLE10-SDK-SP3-Online"},{"name":"SLE10-SDK-SP3-Online","installer_updates":false,"description":"SLE10-SDK-SP3-Online for sled-10-x86_64","enabled":true,"id":1326,"autorefresh":true,"distro_target":"sled-10-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sled-10-x86_64/"},{"id":1328,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sles-10-ia64/","distro_target":"sles-10-ia64","autorefresh":true,"installer_updates":false,"name":"SLE10-SDK-SP3-Online","description":"SLE10-SDK-SP3-Online for sles-10-ia64"},{"installer_updates":false,"name":"SLE10-SDK-SP3-Online","description":"SLE10-SDK-SP3-Online for sles-10-i586","id":1330,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sles-10-i586/","distro_target":"sles-10-i586","autorefresh":true},{"name":"SLE10-SDK-SP3-Online","installer_updates":false,"description":"SLE10-SDK-SP3-Online for sles-10-s390x","enabled":true,"id":1335,"autorefresh":true,"distro_target":"sles-10-s390x","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sles-10-s390x/"},{"description":"SLE10-SDK-SP3-Online for sles-10-x86_64","name":"SLE10-SDK-SP3-Online","installer_updates":false,"autorefresh":true,"distro_target":"sles-10-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sles-10-x86_64/","enabled":true,"id":1341},{"name":"SLE10-SDK-SP3-Online","installer_updates":false,"description":"SLE10-SDK-SP3-Online for sles-10-ppc","id":1342,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sles-10-ppc/","autorefresh":true,"distro_target":"sles-10-ppc"}],"online_predecessor_ids":[],"product_class":"SLE-SDK"},{"cpe":null,"product_type":"extension","product_class":"SLE-SDK","online_predecessor_ids":[],"repositories":[{"description":"SLE10-SDK-SP4-Online for sles-10-x86_64","installer_updates":false,"name":"SLE10-SDK-SP4-Online","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP4-Online/sles-10-x86_64/","distro_target":"sles-10-x86_64","autorefresh":true,"id":1357,"enabled":true},{"enabled":true,"id":1358,"distro_target":"sles-10-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP4-Online/sles-10-i586/","installer_updates":false,"name":"SLE10-SDK-SP4-Online","description":"SLE10-SDK-SP4-Online for sles-10-i586"},{"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP4-Online/sles-10-ia64/","distro_target":"sles-10-ia64","autorefresh":true,"id":1359,"enabled":true,"description":"SLE10-SDK-SP4-Online for sles-10-ia64","installer_updates":false,"name":"SLE10-SDK-SP4-Online"},{"description":"SLE10-SDK-SP4-Online for sled-10-x86_64","name":"SLE10-SDK-SP4-Online","installer_updates":false,"autorefresh":true,"distro_target":"sled-10-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP4-Online/sled-10-x86_64/","enabled":true,"id":1360},{"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP4-Online/sled-10-i586/","distro_target":"sled-10-i586","autorefresh":true,"id":1361,"enabled":true,"description":"SLE10-SDK-SP4-Online for sled-10-i586","installer_updates":false,"name":"SLE10-SDK-SP4-Online"},{"enabled":true,"id":1362,"distro_target":"sles-10-ppc","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP4-Online/sles-10-ppc/","installer_updates":false,"name":"SLE10-SDK-SP4-Online","description":"SLE10-SDK-SP4-Online for sles-10-ppc"},{"distro_target":"sles-10-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP4-Online/sles-10-s390x/","enabled":true,"id":1363,"description":"SLE10-SDK-SP4-Online for sles-10-s390x","installer_updates":false,"name":"SLE10-SDK-SP4-Online"}],"predecessor_ids":[],"arch":null,"eula_url":"","description":null,"shortname":null,"free":true,"release_stage":"released","id":1182,"identifier":"SUSE-Linux-Enterprise-SDK-SP4-migration","extensions":[],"friendly_version":"10","migration_extra":false,"friendly_name":"SUSE Linux Enterprise Software Development Kit 10 (Migration)","release_type":null,"former_identifier":"SUSE-Linux-Enterprise-SDK-SP4-migration","name":"SUSE Linux Enterprise Software Development Kit","offline_predecessor_ids":[],"version":"10","recommended":false}],"shortname":null,"description":null,"free":false,"arch":"ia64","eula_url":"","repositories":[{"installer_updates":false,"name":"SLE10-Debuginfo-Updates","description":"SLE10-Debuginfo-Updates for sles-10-ia64","id":635,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-Debuginfo-Updates/sles-10-ia64/","distro_target":"sles-10-ia64","autorefresh":true},{"description":"SLES10-Updates for sles-10-ia64","installer_updates":false,"name":"SLES10-Updates","url":"https://updates.suse.com/repo/$RCE/SLES10-Updates/sles-10-ia64/","distro_target":"sles-10-ia64","autorefresh":true,"id":636,"enabled":true}],"online_predecessor_ids":[],"product_class":"SLES-IA","predecessor_ids":[],"cpe":null,"product_type":"base"},{"name":"SUSE Linux Enterprise Server","offline_predecessor_ids":[],"friendly_name":"SUSE Linux Enterprise Server 10 s390x","migration_extra":false,"release_type":null,"former_identifier":"SUSE-Linux-Enterprise-Server-s390x","recommended":false,"version":"10","extensions":[{"free":true,"description":null,"shortname":null,"eula_url":"","arch":"s390x","predecessor_ids":[],"product_class":"SLE-SDK","online_predecessor_ids":[],"repositories":[{"name":"SLE10-SDK-Updates","installer_updates":false,"description":"SLE10-SDK-Updates for sles-10-s390x","id":1291,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-Updates/sles-10-s390x/","autorefresh":true,"distro_target":"sles-10-s390x"}],"product_type":"extension","cpe":null,"recommended":false,"version":"10","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Software Development Kit","former_identifier":"SUSE-Linux-Enterprise-SDK-DVD-s390x","release_type":null,"friendly_name":"SUSE Linux Enterprise Software Development Kit 10 s390x","migration_extra":false,"friendly_version":"10","extensions":[],"identifier":"SUSE-Linux-Enterprise-SDK-DVD-s390x","release_stage":"released","id":1168},{"eula_url":"","arch":"s390x","description":null,"shortname":null,"free":true,"cpe":null,"product_type":"extension","predecessor_ids":[],"repositories":[{"id":1291,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-Updates/sles-10-s390x/","autorefresh":true,"distro_target":"sles-10-s390x","name":"SLE10-SDK-Updates","installer_updates":false,"description":"SLE10-SDK-Updates for sles-10-s390x"}],"online_predecessor_ids":[],"product_class":"SLE-SDK","name":"SUSE Linux Enterprise Software Development Kit","offline_predecessor_ids":[],"friendly_name":"SUSE Linux Enterprise Software Development Kit 10 s390x","migration_extra":false,"former_identifier":"SUSE-Linux-Enterprise-SDK-s390x","release_type":null,"recommended":false,"version":"10","extensions":[],"release_stage":"released","identifier":"SUSE-Linux-Enterprise-SDK-s390x","id":1173,"friendly_version":"10"},{"version":"10","recommended":false,"release_type":null,"former_identifier":"SUSE-Linux-Enterprise-SDK-SP1-migration","migration_extra":false,"friendly_name":"SUSE Linux Enterprise Software Development Kit 10 (Migration)","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Software Development Kit","friendly_version":"10","identifier":"SUSE-Linux-Enterprise-SDK-SP1-migration","release_stage":"released","id":1175,"extensions":[],"free":true,"description":null,"shortname":null,"arch":null,"eula_url":"","online_predecessor_ids":[],"repositories":[{"description":"SLE10-SDK-SP1-Online for sles-10-s390x","installer_updates":false,"name":"SLE10-SDK-SP1-Online","distro_target":"sles-10-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sles-10-s390x/","enabled":true,"id":1294},{"enabled":true,"id":1295,"distro_target":"sles-10-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sles-10-x86_64/","installer_updates":false,"name":"SLE10-SDK-SP1-Online","description":"SLE10-SDK-SP1-Online for sles-10-x86_64"},{"description":"SLE10-SDK-SP1-Online for sled-10-i586","name":"SLE10-SDK-SP1-Online","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sled-10-i586/","autorefresh":true,"distro_target":"sled-10-i586","id":1296,"enabled":true},{"installer_updates":false,"name":"SLE10-SDK-SP1-Online","description":"SLE10-SDK-SP1-Online for sles-10-ppc","enabled":true,"id":1297,"distro_target":"sles-10-ppc","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sles-10-ppc/"},{"enabled":true,"id":1301,"autorefresh":true,"distro_target":"sles-10-ia64","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sles-10-ia64/","name":"SLE10-SDK-SP1-Online","installer_updates":false,"description":"SLE10-SDK-SP1-Online for sles-10-ia64"},{"id":1303,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sles-10-i586/","autorefresh":true,"distro_target":"sles-10-i586","name":"SLE10-SDK-SP1-Online","installer_updates":false,"description":"SLE10-SDK-SP1-Online for sles-10-i586"},{"installer_updates":false,"name":"SLE10-SDK-SP1-Online","description":"SLE10-SDK-SP1-Online for sled-10-x86_64","enabled":true,"id":1307,"distro_target":"sled-10-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sled-10-x86_64/"}],"product_class":"SLE-SDK","predecessor_ids":[],"product_type":"extension","cpe":null},{"online_predecessor_ids":[],"product_class":"SLE-SDK","repositories":[{"id":1308,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sled-10-i586/","autorefresh":true,"distro_target":"sled-10-i586","name":"SLE10-SDK-SP2-Online","installer_updates":false,"description":"SLE10-SDK-SP2-Online for sled-10-i586"},{"id":1312,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sles-10-ppc/","distro_target":"sles-10-ppc","autorefresh":true,"installer_updates":false,"name":"SLE10-SDK-SP2-Online","description":"SLE10-SDK-SP2-Online for sles-10-ppc"},{"autorefresh":true,"distro_target":"sles-10-i586","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sles-10-i586/","enabled":true,"id":1313,"description":"SLE10-SDK-SP2-Online for sles-10-i586","name":"SLE10-SDK-SP2-Online","installer_updates":false},{"description":"SLE10-SDK-SP2-Online for sled-10-x86_64","name":"SLE10-SDK-SP2-Online","installer_updates":false,"autorefresh":true,"distro_target":"sled-10-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sled-10-x86_64/","enabled":true,"id":1314},{"installer_updates":false,"name":"SLE10-SDK-SP2-Online","description":"SLE10-SDK-SP2-Online for sles-10-ia64","id":1316,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sles-10-ia64/","distro_target":"sles-10-ia64","autorefresh":true},{"name":"SLE10-SDK-SP2-Online","installer_updates":false,"description":"SLE10-SDK-SP2-Online for sles-10-s390x","enabled":true,"id":1318,"autorefresh":true,"distro_target":"sles-10-s390x","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sles-10-s390x/"},{"enabled":true,"id":1321,"distro_target":"sles-10-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sles-10-x86_64/","installer_updates":false,"name":"SLE10-SDK-SP2-Online","description":"SLE10-SDK-SP2-Online for sles-10-x86_64"}],"predecessor_ids":[],"product_type":"extension","cpe":null,"free":true,"description":null,"shortname":null,"arch":null,"eula_url":"","friendly_version":"10","release_stage":"released","identifier":"SUSE-Linux-Enterprise-SDK-SP2-migration","id":1178,"extensions":[],"version":"10","recommended":false,"release_type":"online","former_identifier":"SUSE-Linux-Enterprise-SDK-SP2-migration","friendly_name":"SUSE Linux Enterprise Software Development Kit 10 online (Migration)","migration_extra":false,"offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Software Development Kit"},{"identifier":"SUSE-Linux-Enterprise-SDK-SP3-migration","release_stage":"released","id":1180,"extensions":[],"friendly_version":"10","release_type":null,"former_identifier":"SUSE-Linux-Enterprise-SDK-SP3-migration","friendly_name":"SUSE Linux Enterprise Software Development Kit 10 (Migration)","migration_extra":false,"offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Software Development Kit","version":"10","recommended":false,"product_type":"extension","cpe":null,"product_class":"SLE-SDK","online_predecessor_ids":[],"repositories":[{"installer_updates":false,"name":"SLE10-SDK-SP3-Online","description":"SLE10-SDK-SP3-Online for sled-10-i586","enabled":true,"id":1324,"distro_target":"sled-10-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sled-10-i586/"},{"enabled":true,"id":1326,"distro_target":"sled-10-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sled-10-x86_64/","installer_updates":false,"name":"SLE10-SDK-SP3-Online","description":"SLE10-SDK-SP3-Online for sled-10-x86_64"},{"id":1328,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sles-10-ia64/","autorefresh":true,"distro_target":"sles-10-ia64","name":"SLE10-SDK-SP3-Online","installer_updates":false,"description":"SLE10-SDK-SP3-Online for sles-10-ia64"},{"description":"SLE10-SDK-SP3-Online for sles-10-i586","installer_updates":false,"name":"SLE10-SDK-SP3-Online","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sles-10-i586/","distro_target":"sles-10-i586","autorefresh":true,"id":1330,"enabled":true},{"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sles-10-s390x/","distro_target":"sles-10-s390x","autorefresh":true,"id":1335,"enabled":true,"description":"SLE10-SDK-SP3-Online for sles-10-s390x","installer_updates":false,"name":"SLE10-SDK-SP3-Online"},{"installer_updates":false,"name":"SLE10-SDK-SP3-Online","description":"SLE10-SDK-SP3-Online for sles-10-x86_64","id":1341,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sles-10-x86_64/","distro_target":"sles-10-x86_64","autorefresh":true},{"id":1342,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sles-10-ppc/","distro_target":"sles-10-ppc","autorefresh":true,"installer_updates":false,"name":"SLE10-SDK-SP3-Online","description":"SLE10-SDK-SP3-Online for sles-10-ppc"}],"predecessor_ids":[],"arch":null,"eula_url":"","free":true,"description":null,"shortname":null},{"predecessor_ids":[],"repositories":[{"id":1357,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP4-Online/sles-10-x86_64/","distro_target":"sles-10-x86_64","autorefresh":true,"installer_updates":false,"name":"SLE10-SDK-SP4-Online","description":"SLE10-SDK-SP4-Online for sles-10-x86_64"},{"description":"SLE10-SDK-SP4-Online for sles-10-i586","name":"SLE10-SDK-SP4-Online","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP4-Online/sles-10-i586/","autorefresh":true,"distro_target":"sles-10-i586","id":1358,"enabled":true},{"id":1359,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP4-Online/sles-10-ia64/","autorefresh":true,"distro_target":"sles-10-ia64","name":"SLE10-SDK-SP4-Online","installer_updates":false,"description":"SLE10-SDK-SP4-Online for sles-10-ia64"},{"id":1360,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP4-Online/sled-10-x86_64/","distro_target":"sled-10-x86_64","autorefresh":true,"installer_updates":false,"name":"SLE10-SDK-SP4-Online","description":"SLE10-SDK-SP4-Online for sled-10-x86_64"},{"description":"SLE10-SDK-SP4-Online for sled-10-i586","installer_updates":false,"name":"SLE10-SDK-SP4-Online","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP4-Online/sled-10-i586/","distro_target":"sled-10-i586","autorefresh":true,"id":1361,"enabled":true},{"id":1362,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP4-Online/sles-10-ppc/","autorefresh":true,"distro_target":"sles-10-ppc","name":"SLE10-SDK-SP4-Online","installer_updates":false,"description":"SLE10-SDK-SP4-Online for sles-10-ppc"},{"name":"SLE10-SDK-SP4-Online","installer_updates":false,"description":"SLE10-SDK-SP4-Online for sles-10-s390x","enabled":true,"id":1363,"autorefresh":true,"distro_target":"sles-10-s390x","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP4-Online/sles-10-s390x/"}],"online_predecessor_ids":[],"product_class":"SLE-SDK","product_type":"extension","cpe":null,"free":true,"shortname":null,"description":null,"eula_url":"","arch":null,"friendly_version":"10","extensions":[],"identifier":"SUSE-Linux-Enterprise-SDK-SP4-migration","release_stage":"released","id":1182,"recommended":false,"version":"10","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Software Development Kit","former_identifier":"SUSE-Linux-Enterprise-SDK-SP4-migration","release_type":null,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Software Development Kit 10 (Migration)"}],"release_stage":"released","identifier":"SUSE-Linux-Enterprise-Server-s390x","id":668,"friendly_version":"10","eula_url":"","arch":"s390x","shortname":null,"description":null,"free":false,"cpe":null,"product_type":"base","predecessor_ids":[],"product_class":"SLES-Z","online_predecessor_ids":[],"repositories":[{"description":"SLES10-Updates for sles-10-s390x","name":"SLES10-Updates","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLES10-Updates/sles-10-s390x/","autorefresh":true,"distro_target":"sles-10-s390x","id":637,"enabled":true},{"description":"SLE10-Debuginfo-Updates for sles-10-s390x","name":"SLE10-Debuginfo-Updates","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-Debuginfo-Updates/sles-10-s390x/","autorefresh":true,"distro_target":"sles-10-s390x","id":638,"enabled":false}]},{"friendly_name":"SUSE Linux Enterprise Server 10 i686 (Migration)","migration_extra":false,"former_identifier":"SUSE-Linux-Enterprise-Server-SP1-migration","release_type":null,"name":"SUSE Linux Enterprise Server","offline_predecessor_ids":[],"version":"10","recommended":false,"id":669,"release_stage":"released","identifier":"SUSE-Linux-Enterprise-Server-SP1-migration","extensions":[],"friendly_version":"10","arch":"i686","eula_url":"","shortname":null,"description":null,"free":false,"cpe":null,"product_type":"base","repositories":[{"url":"https://updates.suse.com/repo/$RCE/SLES10-SP1-Online/sles-10-i586/","autorefresh":true,"distro_target":"sles-10-i586","id":639,"enabled":true,"description":"SLES10-SP1-Online for sles-10-i586","name":"SLES10-SP1-Online","installer_updates":false}],"online_predecessor_ids":[],"product_class":"7261","predecessor_ids":[]},{"recommended":false,"version":"10","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Server","release_type":null,"former_identifier":"SUSE-Linux-Enterprise-Server-SP1-migration","friendly_name":"SUSE Linux Enterprise Server 10 i486 (Migration)","migration_extra":false,"friendly_version":"10","extensions":[],"release_stage":"released","identifier":"SUSE-Linux-Enterprise-Server-SP1-migration","id":670,"free":false,"description":null,"shortname":null,"eula_url":"","arch":"i486","predecessor_ids":[],"online_predecessor_ids":[],"repositories":[{"autorefresh":true,"distro_target":"sles-10-i586","url":"https://updates.suse.com/repo/$RCE/SLES10-SP1-Online/sles-10-i586/","enabled":true,"id":639,"description":"SLES10-SP1-Online for sles-10-i586","name":"SLES10-SP1-Online","installer_updates":false}],"product_class":"7261","product_type":"base","cpe":null},{"friendly_name":"SUSE Linux Enterprise Server 10 ppc (Migration)","migration_extra":false,"former_identifier":"SUSE-Linux-Enterprise-Server-SP1-migration","release_type":null,"name":"SUSE Linux Enterprise Server","offline_predecessor_ids":[],"version":"10","recommended":false,"release_stage":"released","identifier":"SUSE-Linux-Enterprise-Server-SP1-migration","id":671,"extensions":[],"friendly_version":"10","arch":"ppc","eula_url":"","shortname":null,"description":null,"free":false,"cpe":null,"product_type":"base","online_predecessor_ids":[],"product_class":"SLES-PPC","repositories":[{"description":"SLES10-SP1-Online for sles-10-ppc","installer_updates":false,"name":"SLES10-SP1-Online","distro_target":"sles-10-ppc","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLES10-SP1-Online/sles-10-ppc/","enabled":true,"id":640}],"predecessor_ids":[]},{"former_identifier":"SUSE-Linux-Enterprise-Server-SP1-migration","release_type":null,"friendly_name":"SUSE Linux Enterprise Server 10 ppc64 (Migration)","migration_extra":false,"offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Server","version":"10","recommended":false,"release_stage":"released","id":672,"identifier":"SUSE-Linux-Enterprise-Server-SP1-migration","extensions":[],"friendly_version":"10","arch":"ppc64","eula_url":"","free":false,"description":null,"shortname":null,"product_type":"base","cpe":null,"online_predecessor_ids":[],"repositories":[{"distro_target":"sles-10-ppc","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLES10-SP1-Online/sles-10-ppc/","enabled":true,"id":640,"description":"SLES10-SP1-Online for sles-10-ppc","installer_updates":false,"name":"SLES10-SP1-Online"}],"product_class":"SLES-PPC","predecessor_ids":[]},{"version":"10","recommended":false,"friendly_name":"SUSE Linux Enterprise Server 10 SP1 i586","migration_extra":false,"former_identifier":"SUSE-Linux-Enterprise-Server-SP1","release_type":null,"name":"SUSE Linux Enterprise Server","offline_predecessor_ids":[],"friendly_version":"10 SP1","id":673,"release_stage":"released","identifier":"SUSE-Linux-Enterprise-Server-SP1","extensions":[{"version":"10","recommended":false,"friendly_name":"SUSE Linux Enterprise Software Development Kit 10 SP1","migration_extra":false,"former_identifier":"SUSE-Linux-Enterprise-SDK-SP1","release_type":null,"name":"SUSE Linux Enterprise Software Development Kit","offline_predecessor_ids":[],"friendly_version":"10 SP1","release_stage":"released","identifier":"SUSE-Linux-Enterprise-SDK-SP1","id":1174,"extensions":[],"shortname":null,"description":null,"free":true,"arch":null,"eula_url":"","online_predecessor_ids":[],"product_class":"SLE-SDK","repositories":[{"autorefresh":true,"distro_target":"sles-10-s390x","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sles-10-s390x/","enabled":true,"id":1294,"description":"SLE10-SDK-SP1-Online for sles-10-s390x","name":"SLE10-SDK-SP1-Online","installer_updates":false},{"name":"SLE10-SDK-SP1-Online","installer_updates":false,"description":"SLE10-SDK-SP1-Online for sles-10-x86_64","id":1295,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sles-10-x86_64/","autorefresh":true,"distro_target":"sles-10-x86_64"},{"installer_updates":false,"name":"SLE10-SDK-SP1-Online","description":"SLE10-SDK-SP1-Online for sled-10-i586","id":1296,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sled-10-i586/","distro_target":"sled-10-i586","autorefresh":true},{"description":"SLE10-SDK-SP1-Online for sles-10-ppc","name":"SLE10-SDK-SP1-Online","installer_updates":false,"autorefresh":true,"distro_target":"sles-10-ppc","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sles-10-ppc/","enabled":true,"id":1297},{"description":"SLE10-SDK-SP1-Updates for sles-10-s390x","name":"SLE10-SDK-SP1-Updates","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Updates/sles-10-s390x/","autorefresh":true,"distro_target":"sles-10-s390x","id":1298,"enabled":true},{"enabled":true,"id":1299,"distro_target":"sled-10-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Updates/sled-10-x86_64/","installer_updates":false,"name":"SLE10-SDK-SP1-Updates","description":"SLE10-SDK-SP1-Updates for sled-10-x86_64"},{"enabled":true,"id":1300,"distro_target":"sles-10-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Updates/sles-10-x86_64/","installer_updates":false,"name":"SLE10-SDK-SP1-Updates","description":"SLE10-SDK-SP1-Updates for sles-10-x86_64"},{"name":"SLE10-SDK-SP1-Online","installer_updates":false,"description":"SLE10-SDK-SP1-Online for sles-10-ia64","id":1301,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sles-10-ia64/","autorefresh":true,"distro_target":"sles-10-ia64"},{"name":"SLE10-SDK-SP1-Updates","installer_updates":false,"description":"SLE10-SDK-SP1-Updates for sled-10-i586","id":1302,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Updates/sled-10-i586/","autorefresh":true,"distro_target":"sled-10-i586"},{"description":"SLE10-SDK-SP1-Online for sles-10-i586","installer_updates":false,"name":"SLE10-SDK-SP1-Online","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sles-10-i586/","distro_target":"sles-10-i586","autorefresh":true,"id":1303,"enabled":true},{"enabled":true,"id":1304,"distro_target":"sles-10-ia64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Updates/sles-10-ia64/","installer_updates":false,"name":"SLE10-SDK-SP1-Updates","description":"SLE10-SDK-SP1-Updates for sles-10-ia64"},{"autorefresh":true,"distro_target":"sles-10-ppc","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Updates/sles-10-ppc/","enabled":true,"id":1305,"description":"SLE10-SDK-SP1-Updates for sles-10-ppc","name":"SLE10-SDK-SP1-Updates","installer_updates":false},{"id":1306,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Updates/sles-10-i586/","distro_target":"sles-10-i586","autorefresh":true,"installer_updates":false,"name":"SLE10-SDK-SP1-Updates","description":"SLE10-SDK-SP1-Updates for sles-10-i586"},{"description":"SLE10-SDK-SP1-Online for sled-10-x86_64","installer_updates":false,"name":"SLE10-SDK-SP1-Online","distro_target":"sled-10-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sled-10-x86_64/","enabled":true,"id":1307}],"predecessor_ids":[],"cpe":null,"product_type":"extension"},{"release_type":null,"former_identifier":"SUSE-Linux-Enterprise-SDK-SP1-migration","friendly_name":"SUSE Linux Enterprise Software Development Kit 10 (Migration)","migration_extra":false,"offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Software Development Kit","version":"10","recommended":false,"release_stage":"released","identifier":"SUSE-Linux-Enterprise-SDK-SP1-migration","id":1175,"extensions":[],"friendly_version":"10","arch":null,"eula_url":"","free":true,"shortname":null,"description":null,"product_type":"extension","cpe":null,"online_predecessor_ids":[],"repositories":[{"name":"SLE10-SDK-SP1-Online","installer_updates":false,"description":"SLE10-SDK-SP1-Online for sles-10-s390x","id":1294,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sles-10-s390x/","autorefresh":true,"distro_target":"sles-10-s390x"},{"enabled":true,"id":1295,"autorefresh":true,"distro_target":"sles-10-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sles-10-x86_64/","name":"SLE10-SDK-SP1-Online","installer_updates":false,"description":"SLE10-SDK-SP1-Online for sles-10-x86_64"},{"description":"SLE10-SDK-SP1-Online for sled-10-i586","installer_updates":false,"name":"SLE10-SDK-SP1-Online","distro_target":"sled-10-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sled-10-i586/","enabled":true,"id":1296},{"id":1297,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sles-10-ppc/","distro_target":"sles-10-ppc","autorefresh":true,"installer_updates":false,"name":"SLE10-SDK-SP1-Online","description":"SLE10-SDK-SP1-Online for sles-10-ppc"},{"description":"SLE10-SDK-SP1-Online for sles-10-ia64","installer_updates":false,"name":"SLE10-SDK-SP1-Online","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sles-10-ia64/","distro_target":"sles-10-ia64","autorefresh":true,"id":1301,"enabled":true},{"enabled":true,"id":1303,"autorefresh":true,"distro_target":"sles-10-i586","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sles-10-i586/","name":"SLE10-SDK-SP1-Online","installer_updates":false,"description":"SLE10-SDK-SP1-Online for sles-10-i586"},{"name":"SLE10-SDK-SP1-Online","installer_updates":false,"description":"SLE10-SDK-SP1-Online for sled-10-x86_64","id":1307,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sled-10-x86_64/","autorefresh":true,"distro_target":"sled-10-x86_64"}],"product_class":"SLE-SDK","predecessor_ids":[]}],"description":null,"shortname":null,"free":false,"arch":"i586","eula_url":"","product_class":"7261","online_predecessor_ids":[],"repositories":[{"id":641,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP1-Debuginfo-Updates/sles-10-i586/","autorefresh":true,"distro_target":"sles-10-i586","name":"SLE10-SP1-Debuginfo-Updates","installer_updates":false,"description":"SLE10-SP1-Debuginfo-Updates for sles-10-i586"},{"id":642,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLES10-SP1-LTSS-Updates/sles-10-i586/","autorefresh":true,"distro_target":"sles-10-i586","name":"SLES10-SP1-LTSS-Updates","installer_updates":false,"description":"SLES10-SP1-LTSS-Updates for sles-10-i586"},{"description":"SLES10-SP1-LTSS-Updates for sles-10-ia64","installer_updates":false,"name":"SLES10-SP1-LTSS-Updates","distro_target":"sles-10-ia64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLES10-SP1-LTSS-Updates/sles-10-ia64/","enabled":true,"id":643},{"name":"SLES10-SP1-LTSS-Updates","installer_updates":false,"description":"SLES10-SP1-LTSS-Updates for sles-10-s390x","enabled":true,"id":644,"autorefresh":true,"distro_target":"sles-10-s390x","url":"https://updates.suse.com/repo/$RCE/SLES10-SP1-LTSS-Updates/sles-10-s390x/"},{"description":"SLES10-SP1-LTSS-Updates for sles-10-x86_64","installer_updates":false,"name":"SLES10-SP1-LTSS-Updates","url":"https://updates.suse.com/repo/$RCE/SLES10-SP1-LTSS-Updates/sles-10-x86_64/","distro_target":"sles-10-x86_64","autorefresh":true,"id":645,"enabled":true},{"enabled":true,"id":646,"autorefresh":true,"distro_target":"sles-10-i586","url":"https://updates.suse.com/repo/$RCE/SLES10-SP1-Updates/sles-10-i586/","name":"SLES10-SP1-Updates","installer_updates":false,"description":"SLES10-SP1-Updates for sles-10-i586"},{"enabled":true,"id":647,"autorefresh":true,"distro_target":"sles-10-ppc","url":"https://updates.suse.com/repo/$RCE/SLES10-SP1-LTSS-Updates/sles-10-ppc/","name":"SLES10-SP1-LTSS-Updates","installer_updates":false,"description":"SLES10-SP1-LTSS-Updates for sles-10-ppc"}],"predecessor_ids":[],"cpe":null,"product_type":"base"},{"friendly_version":"10 SP1","extensions":[{"product_type":"extension","cpe":null,"predecessor_ids":[],"online_predecessor_ids":[],"product_class":"SLE-SDK","repositories":[{"description":"SLE10-SDK-SP1-Online for sles-10-s390x","installer_updates":false,"name":"SLE10-SDK-SP1-Online","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sles-10-s390x/","distro_target":"sles-10-s390x","autorefresh":true,"id":1294,"enabled":true},{"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sles-10-x86_64/","distro_target":"sles-10-x86_64","autorefresh":true,"id":1295,"enabled":true,"description":"SLE10-SDK-SP1-Online for sles-10-x86_64","installer_updates":false,"name":"SLE10-SDK-SP1-Online"},{"installer_updates":false,"name":"SLE10-SDK-SP1-Online","description":"SLE10-SDK-SP1-Online for sled-10-i586","id":1296,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sled-10-i586/","distro_target":"sled-10-i586","autorefresh":true},{"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sles-10-ppc/","autorefresh":true,"distro_target":"sles-10-ppc","id":1297,"enabled":true,"description":"SLE10-SDK-SP1-Online for sles-10-ppc","name":"SLE10-SDK-SP1-Online","installer_updates":false},{"autorefresh":true,"distro_target":"sles-10-s390x","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Updates/sles-10-s390x/","enabled":true,"id":1298,"description":"SLE10-SDK-SP1-Updates for sles-10-s390x","name":"SLE10-SDK-SP1-Updates","installer_updates":false},{"installer_updates":false,"name":"SLE10-SDK-SP1-Updates","description":"SLE10-SDK-SP1-Updates for sled-10-x86_64","enabled":true,"id":1299,"distro_target":"sled-10-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Updates/sled-10-x86_64/"},{"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Updates/sles-10-x86_64/","distro_target":"sles-10-x86_64","autorefresh":true,"id":1300,"enabled":true,"description":"SLE10-SDK-SP1-Updates for sles-10-x86_64","installer_updates":false,"name":"SLE10-SDK-SP1-Updates"},{"distro_target":"sles-10-ia64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sles-10-ia64/","enabled":true,"id":1301,"description":"SLE10-SDK-SP1-Online for sles-10-ia64","installer_updates":false,"name":"SLE10-SDK-SP1-Online"},{"id":1302,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Updates/sled-10-i586/","autorefresh":true,"distro_target":"sled-10-i586","name":"SLE10-SDK-SP1-Updates","installer_updates":false,"description":"SLE10-SDK-SP1-Updates for sled-10-i586"},{"enabled":true,"id":1303,"autorefresh":true,"distro_target":"sles-10-i586","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sles-10-i586/","name":"SLE10-SDK-SP1-Online","installer_updates":false,"description":"SLE10-SDK-SP1-Online for sles-10-i586"},{"name":"SLE10-SDK-SP1-Updates","installer_updates":false,"description":"SLE10-SDK-SP1-Updates for sles-10-ia64","id":1304,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Updates/sles-10-ia64/","autorefresh":true,"distro_target":"sles-10-ia64"},{"name":"SLE10-SDK-SP1-Updates","installer_updates":false,"description":"SLE10-SDK-SP1-Updates for sles-10-ppc","id":1305,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Updates/sles-10-ppc/","autorefresh":true,"distro_target":"sles-10-ppc"},{"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Updates/sles-10-i586/","autorefresh":true,"distro_target":"sles-10-i586","id":1306,"enabled":true,"description":"SLE10-SDK-SP1-Updates for sles-10-i586","name":"SLE10-SDK-SP1-Updates","installer_updates":false},{"description":"SLE10-SDK-SP1-Online for sled-10-x86_64","installer_updates":false,"name":"SLE10-SDK-SP1-Online","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sled-10-x86_64/","distro_target":"sled-10-x86_64","autorefresh":true,"id":1307,"enabled":true}],"eula_url":"","arch":null,"free":true,"shortname":null,"description":null,"extensions":[],"id":1174,"release_stage":"released","identifier":"SUSE-Linux-Enterprise-SDK-SP1","friendly_version":"10 SP1","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Software Development Kit","release_type":null,"former_identifier":"SUSE-Linux-Enterprise-SDK-SP1","friendly_name":"SUSE Linux Enterprise Software Development Kit 10 SP1","migration_extra":false,"recommended":false,"version":"10"},{"eula_url":"","arch":null,"description":null,"shortname":null,"free":true,"cpe":null,"product_type":"extension","predecessor_ids":[],"repositories":[{"enabled":true,"id":1294,"autorefresh":true,"distro_target":"sles-10-s390x","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sles-10-s390x/","name":"SLE10-SDK-SP1-Online","installer_updates":false,"description":"SLE10-SDK-SP1-Online for sles-10-s390x"},{"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sles-10-x86_64/","autorefresh":true,"distro_target":"sles-10-x86_64","id":1295,"enabled":true,"description":"SLE10-SDK-SP1-Online for sles-10-x86_64","name":"SLE10-SDK-SP1-Online","installer_updates":false},{"id":1296,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sled-10-i586/","autorefresh":true,"distro_target":"sled-10-i586","name":"SLE10-SDK-SP1-Online","installer_updates":false,"description":"SLE10-SDK-SP1-Online for sled-10-i586"},{"installer_updates":false,"name":"SLE10-SDK-SP1-Online","description":"SLE10-SDK-SP1-Online for sles-10-ppc","enabled":true,"id":1297,"distro_target":"sles-10-ppc","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sles-10-ppc/"},{"installer_updates":false,"name":"SLE10-SDK-SP1-Online","description":"SLE10-SDK-SP1-Online for sles-10-ia64","id":1301,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sles-10-ia64/","distro_target":"sles-10-ia64","autorefresh":true},{"id":1303,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sles-10-i586/","autorefresh":true,"distro_target":"sles-10-i586","name":"SLE10-SDK-SP1-Online","installer_updates":false,"description":"SLE10-SDK-SP1-Online for sles-10-i586"},{"description":"SLE10-SDK-SP1-Online for sled-10-x86_64","name":"SLE10-SDK-SP1-Online","installer_updates":false,"autorefresh":true,"distro_target":"sled-10-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sled-10-x86_64/","enabled":true,"id":1307}],"online_predecessor_ids":[],"product_class":"SLE-SDK","name":"SUSE Linux Enterprise Software Development Kit","offline_predecessor_ids":[],"friendly_name":"SUSE Linux Enterprise Software Development Kit 10 (Migration)","migration_extra":false,"release_type":null,"former_identifier":"SUSE-Linux-Enterprise-SDK-SP1-migration","recommended":false,"version":"10","extensions":[],"id":1175,"release_stage":"released","identifier":"SUSE-Linux-Enterprise-SDK-SP1-migration","friendly_version":"10"}],"release_stage":"released","id":674,"identifier":"SUSE-Linux-Enterprise-Server-SP1","recommended":false,"version":"10","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Server","release_type":"online","former_identifier":"SUSE-Linux-Enterprise-Server-SP1","migration_extra":false,"friendly_name":"SUSE Linux Enterprise Server 10 SP1 online i386","predecessor_ids":[],"product_class":"7261","online_predecessor_ids":[],"repositories":[{"id":639,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLES10-SP1-Online/sles-10-i586/","autorefresh":true,"distro_target":"sles-10-i586","name":"SLES10-SP1-Online","installer_updates":false,"description":"SLES10-SP1-Online for sles-10-i586"},{"description":"SLE10-SP1-Debuginfo-Updates for sles-10-i586","installer_updates":false,"name":"SLE10-SP1-Debuginfo-Updates","url":"https://updates.suse.com/repo/$RCE/SLE10-SP1-Debuginfo-Updates/sles-10-i586/","distro_target":"sles-10-i586","autorefresh":true,"id":641,"enabled":false},{"installer_updates":false,"name":"SLES10-SP1-LTSS-Updates","description":"SLES10-SP1-LTSS-Updates for sles-10-i586","enabled":true,"id":642,"distro_target":"sles-10-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLES10-SP1-LTSS-Updates/sles-10-i586/"},{"installer_updates":false,"name":"SLES10-SP1-LTSS-Updates","description":"SLES10-SP1-LTSS-Updates for sles-10-ia64","enabled":true,"id":643,"distro_target":"sles-10-ia64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLES10-SP1-LTSS-Updates/sles-10-ia64/"},{"description":"SLES10-SP1-LTSS-Updates for sles-10-s390x","name":"SLES10-SP1-LTSS-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sles-10-s390x","url":"https://updates.suse.com/repo/$RCE/SLES10-SP1-LTSS-Updates/sles-10-s390x/","enabled":true,"id":644},{"id":645,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLES10-SP1-LTSS-Updates/sles-10-x86_64/","distro_target":"sles-10-x86_64","autorefresh":true,"installer_updates":false,"name":"SLES10-SP1-LTSS-Updates","description":"SLES10-SP1-LTSS-Updates for sles-10-x86_64"},{"description":"SLES10-SP1-Updates for sles-10-i586","installer_updates":false,"name":"SLES10-SP1-Updates","distro_target":"sles-10-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLES10-SP1-Updates/sles-10-i586/","enabled":true,"id":646},{"distro_target":"sles-10-ppc","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLES10-SP1-LTSS-Updates/sles-10-ppc/","enabled":true,"id":647,"description":"SLES10-SP1-LTSS-Updates for sles-10-ppc","installer_updates":false,"name":"SLES10-SP1-LTSS-Updates"}],"product_type":"base","cpe":null,"free":false,"description":null,"shortname":null,"eula_url":"","arch":"i386"},{"version":"10","recommended":false,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Server 10 SP1 online ppc","release_type":"online","former_identifier":"SUSE-Linux-Enterprise-Server-SP1","name":"SUSE Linux Enterprise Server","offline_predecessor_ids":[],"friendly_version":"10 SP1","release_stage":"released","identifier":"SUSE-Linux-Enterprise-Server-SP1","id":675,"extensions":[{"former_identifier":"SUSE-Linux-Enterprise-SDK-SP1","release_type":null,"friendly_name":"SUSE Linux Enterprise Software Development Kit 10 SP1","migration_extra":false,"offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Software Development Kit","version":"10","recommended":false,"identifier":"SUSE-Linux-Enterprise-SDK-SP1","release_stage":"released","id":1174,"extensions":[],"friendly_version":"10 SP1","arch":null,"eula_url":"","free":true,"description":null,"shortname":null,"product_type":"extension","cpe":null,"online_predecessor_ids":[],"repositories":[{"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sles-10-s390x/","autorefresh":true,"distro_target":"sles-10-s390x","id":1294,"enabled":true,"description":"SLE10-SDK-SP1-Online for sles-10-s390x","name":"SLE10-SDK-SP1-Online","installer_updates":false},{"distro_target":"sles-10-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sles-10-x86_64/","enabled":true,"id":1295,"description":"SLE10-SDK-SP1-Online for sles-10-x86_64","installer_updates":false,"name":"SLE10-SDK-SP1-Online"},{"name":"SLE10-SDK-SP1-Online","installer_updates":false,"description":"SLE10-SDK-SP1-Online for sled-10-i586","id":1296,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sled-10-i586/","autorefresh":true,"distro_target":"sled-10-i586"},{"description":"SLE10-SDK-SP1-Online for sles-10-ppc","name":"SLE10-SDK-SP1-Online","installer_updates":false,"autorefresh":true,"distro_target":"sles-10-ppc","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sles-10-ppc/","enabled":true,"id":1297},{"name":"SLE10-SDK-SP1-Updates","installer_updates":false,"description":"SLE10-SDK-SP1-Updates for sles-10-s390x","id":1298,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Updates/sles-10-s390x/","autorefresh":true,"distro_target":"sles-10-s390x"},{"description":"SLE10-SDK-SP1-Updates for sled-10-x86_64","installer_updates":false,"name":"SLE10-SDK-SP1-Updates","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Updates/sled-10-x86_64/","distro_target":"sled-10-x86_64","autorefresh":true,"id":1299,"enabled":true},{"installer_updates":false,"name":"SLE10-SDK-SP1-Updates","description":"SLE10-SDK-SP1-Updates for sles-10-x86_64","enabled":true,"id":1300,"distro_target":"sles-10-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Updates/sles-10-x86_64/"},{"installer_updates":false,"name":"SLE10-SDK-SP1-Online","description":"SLE10-SDK-SP1-Online for sles-10-ia64","id":1301,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sles-10-ia64/","distro_target":"sles-10-ia64","autorefresh":true},{"name":"SLE10-SDK-SP1-Updates","installer_updates":false,"description":"SLE10-SDK-SP1-Updates for sled-10-i586","id":1302,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Updates/sled-10-i586/","autorefresh":true,"distro_target":"sled-10-i586"},{"description":"SLE10-SDK-SP1-Online for sles-10-i586","name":"SLE10-SDK-SP1-Online","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sles-10-i586/","autorefresh":true,"distro_target":"sles-10-i586","id":1303,"enabled":true},{"description":"SLE10-SDK-SP1-Updates for sles-10-ia64","installer_updates":false,"name":"SLE10-SDK-SP1-Updates","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Updates/sles-10-ia64/","distro_target":"sles-10-ia64","autorefresh":true,"id":1304,"enabled":true},{"id":1305,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Updates/sles-10-ppc/","autorefresh":true,"distro_target":"sles-10-ppc","name":"SLE10-SDK-SP1-Updates","installer_updates":false,"description":"SLE10-SDK-SP1-Updates for sles-10-ppc"},{"enabled":true,"id":1306,"distro_target":"sles-10-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Updates/sles-10-i586/","installer_updates":false,"name":"SLE10-SDK-SP1-Updates","description":"SLE10-SDK-SP1-Updates for sles-10-i586"},{"installer_updates":false,"name":"SLE10-SDK-SP1-Online","description":"SLE10-SDK-SP1-Online for sled-10-x86_64","id":1307,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sled-10-x86_64/","distro_target":"sled-10-x86_64","autorefresh":true}],"product_class":"SLE-SDK","predecessor_ids":[]},{"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Software Development Kit 10 (Migration)","former_identifier":"SUSE-Linux-Enterprise-SDK-SP1-migration","release_type":null,"name":"SUSE Linux Enterprise Software Development Kit","offline_predecessor_ids":[],"version":"10","recommended":false,"identifier":"SUSE-Linux-Enterprise-SDK-SP1-migration","release_stage":"released","id":1175,"extensions":[],"friendly_version":"10","arch":null,"eula_url":"","shortname":null,"description":null,"free":true,"cpe":null,"product_type":"extension","online_predecessor_ids":[],"product_class":"SLE-SDK","repositories":[{"installer_updates":false,"name":"SLE10-SDK-SP1-Online","description":"SLE10-SDK-SP1-Online for sles-10-s390x","enabled":true,"id":1294,"distro_target":"sles-10-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sles-10-s390x/"},{"id":1295,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sles-10-x86_64/","autorefresh":true,"distro_target":"sles-10-x86_64","name":"SLE10-SDK-SP1-Online","installer_updates":false,"description":"SLE10-SDK-SP1-Online for sles-10-x86_64"},{"installer_updates":false,"name":"SLE10-SDK-SP1-Online","description":"SLE10-SDK-SP1-Online for sled-10-i586","enabled":true,"id":1296,"distro_target":"sled-10-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sled-10-i586/"},{"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sles-10-ppc/","autorefresh":true,"distro_target":"sles-10-ppc","id":1297,"enabled":true,"description":"SLE10-SDK-SP1-Online for sles-10-ppc","name":"SLE10-SDK-SP1-Online","installer_updates":false},{"description":"SLE10-SDK-SP1-Online for sles-10-ia64","name":"SLE10-SDK-SP1-Online","installer_updates":false,"autorefresh":true,"distro_target":"sles-10-ia64","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sles-10-ia64/","enabled":true,"id":1301},{"description":"SLE10-SDK-SP1-Online for sles-10-i586","installer_updates":false,"name":"SLE10-SDK-SP1-Online","distro_target":"sles-10-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sles-10-i586/","enabled":true,"id":1303},{"installer_updates":false,"name":"SLE10-SDK-SP1-Online","description":"SLE10-SDK-SP1-Online for sled-10-x86_64","enabled":true,"id":1307,"distro_target":"sled-10-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sled-10-x86_64/"}],"predecessor_ids":[]}],"description":null,"shortname":null,"free":false,"arch":"ppc","eula_url":"","online_predecessor_ids":[],"repositories":[{"enabled":true,"id":640,"distro_target":"sles-10-ppc","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLES10-SP1-Online/sles-10-ppc/","installer_updates":false,"name":"SLES10-SP1-Online","description":"SLES10-SP1-Online for sles-10-ppc"},{"installer_updates":false,"name":"SLES10-SP1-LTSS-Updates","description":"SLES10-SP1-LTSS-Updates for sles-10-i586","enabled":true,"id":642,"distro_target":"sles-10-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLES10-SP1-LTSS-Updates/sles-10-i586/"},{"installer_updates":false,"name":"SLES10-SP1-LTSS-Updates","description":"SLES10-SP1-LTSS-Updates for sles-10-ia64","enabled":true,"id":643,"distro_target":"sles-10-ia64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLES10-SP1-LTSS-Updates/sles-10-ia64/"},{"id":644,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLES10-SP1-LTSS-Updates/sles-10-s390x/","distro_target":"sles-10-s390x","autorefresh":true,"installer_updates":false,"name":"SLES10-SP1-LTSS-Updates","description":"SLES10-SP1-LTSS-Updates for sles-10-s390x"},{"autorefresh":true,"distro_target":"sles-10-x86_64","url":"https://updates.suse.com/repo/$RCE/SLES10-SP1-LTSS-Updates/sles-10-x86_64/","enabled":true,"id":645,"description":"SLES10-SP1-LTSS-Updates for sles-10-x86_64","name":"SLES10-SP1-LTSS-Updates","installer_updates":false},{"description":"SLES10-SP1-LTSS-Updates for sles-10-ppc","installer_updates":false,"name":"SLES10-SP1-LTSS-Updates","url":"https://updates.suse.com/repo/$RCE/SLES10-SP1-LTSS-Updates/sles-10-ppc/","distro_target":"sles-10-ppc","autorefresh":true,"id":647,"enabled":true},{"description":"SLE10-SP1-Debuginfo-Updates for sles-10-ppc","name":"SLE10-SP1-Debuginfo-Updates","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP1-Debuginfo-Updates/sles-10-ppc/","autorefresh":true,"distro_target":"sles-10-ppc","id":648,"enabled":false},{"description":"SLES10-SP1-Updates for sles-10-ppc","installer_updates":false,"name":"SLES10-SP1-Updates","distro_target":"sles-10-ppc","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLES10-SP1-Updates/sles-10-ppc/","enabled":true,"id":649}],"product_class":"SLES-PPC","predecessor_ids":[],"cpe":null,"product_type":"base"},{"friendly_version":"10 SP1","release_stage":"released","id":676,"identifier":"SUSE-Linux-Enterprise-Server-SP1","extensions":[{"product_type":"extension","cpe":null,"online_predecessor_ids":[],"product_class":"SLE-SDK","repositories":[{"id":1294,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sles-10-s390x/","distro_target":"sles-10-s390x","autorefresh":true,"installer_updates":false,"name":"SLE10-SDK-SP1-Online","description":"SLE10-SDK-SP1-Online for sles-10-s390x"},{"id":1295,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sles-10-x86_64/","distro_target":"sles-10-x86_64","autorefresh":true,"installer_updates":false,"name":"SLE10-SDK-SP1-Online","description":"SLE10-SDK-SP1-Online for sles-10-x86_64"},{"enabled":true,"id":1296,"distro_target":"sled-10-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sled-10-i586/","installer_updates":false,"name":"SLE10-SDK-SP1-Online","description":"SLE10-SDK-SP1-Online for sled-10-i586"},{"name":"SLE10-SDK-SP1-Online","installer_updates":false,"description":"SLE10-SDK-SP1-Online for sles-10-ppc","enabled":true,"id":1297,"autorefresh":true,"distro_target":"sles-10-ppc","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sles-10-ppc/"},{"description":"SLE10-SDK-SP1-Updates for sles-10-s390x","name":"SLE10-SDK-SP1-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sles-10-s390x","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Updates/sles-10-s390x/","enabled":true,"id":1298},{"installer_updates":false,"name":"SLE10-SDK-SP1-Updates","description":"SLE10-SDK-SP1-Updates for sled-10-x86_64","id":1299,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Updates/sled-10-x86_64/","distro_target":"sled-10-x86_64","autorefresh":true},{"enabled":true,"id":1300,"distro_target":"sles-10-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Updates/sles-10-x86_64/","installer_updates":false,"name":"SLE10-SDK-SP1-Updates","description":"SLE10-SDK-SP1-Updates for sles-10-x86_64"},{"description":"SLE10-SDK-SP1-Online for sles-10-ia64","name":"SLE10-SDK-SP1-Online","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sles-10-ia64/","autorefresh":true,"distro_target":"sles-10-ia64","id":1301,"enabled":true},{"name":"SLE10-SDK-SP1-Updates","installer_updates":false,"description":"SLE10-SDK-SP1-Updates for sled-10-i586","enabled":true,"id":1302,"autorefresh":true,"distro_target":"sled-10-i586","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Updates/sled-10-i586/"},{"description":"SLE10-SDK-SP1-Online for sles-10-i586","name":"SLE10-SDK-SP1-Online","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sles-10-i586/","autorefresh":true,"distro_target":"sles-10-i586","id":1303,"enabled":true},{"enabled":true,"id":1304,"distro_target":"sles-10-ia64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Updates/sles-10-ia64/","installer_updates":false,"name":"SLE10-SDK-SP1-Updates","description":"SLE10-SDK-SP1-Updates for sles-10-ia64"},{"description":"SLE10-SDK-SP1-Updates for sles-10-ppc","name":"SLE10-SDK-SP1-Updates","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Updates/sles-10-ppc/","autorefresh":true,"distro_target":"sles-10-ppc","id":1305,"enabled":true},{"distro_target":"sles-10-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Updates/sles-10-i586/","enabled":true,"id":1306,"description":"SLE10-SDK-SP1-Updates for sles-10-i586","installer_updates":false,"name":"SLE10-SDK-SP1-Updates"},{"description":"SLE10-SDK-SP1-Online for sled-10-x86_64","installer_updates":false,"name":"SLE10-SDK-SP1-Online","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sled-10-x86_64/","distro_target":"sled-10-x86_64","autorefresh":true,"id":1307,"enabled":true}],"predecessor_ids":[],"arch":null,"eula_url":"","free":true,"shortname":null,"description":null,"release_stage":"released","identifier":"SUSE-Linux-Enterprise-SDK-SP1","id":1174,"extensions":[],"friendly_version":"10 SP1","release_type":null,"former_identifier":"SUSE-Linux-Enterprise-SDK-SP1","migration_extra":false,"friendly_name":"SUSE Linux Enterprise Software Development Kit 10 SP1","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Software Development Kit","version":"10","recommended":false},{"cpe":null,"product_type":"extension","predecessor_ids":[],"repositories":[{"enabled":true,"id":1294,"distro_target":"sles-10-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sles-10-s390x/","installer_updates":false,"name":"SLE10-SDK-SP1-Online","description":"SLE10-SDK-SP1-Online for sles-10-s390x"},{"id":1295,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sles-10-x86_64/","distro_target":"sles-10-x86_64","autorefresh":true,"installer_updates":false,"name":"SLE10-SDK-SP1-Online","description":"SLE10-SDK-SP1-Online for sles-10-x86_64"},{"enabled":true,"id":1296,"autorefresh":true,"distro_target":"sled-10-i586","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sled-10-i586/","name":"SLE10-SDK-SP1-Online","installer_updates":false,"description":"SLE10-SDK-SP1-Online for sled-10-i586"},{"enabled":true,"id":1297,"distro_target":"sles-10-ppc","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sles-10-ppc/","installer_updates":false,"name":"SLE10-SDK-SP1-Online","description":"SLE10-SDK-SP1-Online for sles-10-ppc"},{"name":"SLE10-SDK-SP1-Online","installer_updates":false,"description":"SLE10-SDK-SP1-Online for sles-10-ia64","enabled":true,"id":1301,"autorefresh":true,"distro_target":"sles-10-ia64","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sles-10-ia64/"},{"name":"SLE10-SDK-SP1-Online","installer_updates":false,"description":"SLE10-SDK-SP1-Online for sles-10-i586","id":1303,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sles-10-i586/","autorefresh":true,"distro_target":"sles-10-i586"},{"installer_updates":false,"name":"SLE10-SDK-SP1-Online","description":"SLE10-SDK-SP1-Online for sled-10-x86_64","enabled":true,"id":1307,"distro_target":"sled-10-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sled-10-x86_64/"}],"online_predecessor_ids":[],"product_class":"SLE-SDK","eula_url":"","arch":null,"shortname":null,"description":null,"free":true,"extensions":[],"identifier":"SUSE-Linux-Enterprise-SDK-SP1-migration","release_stage":"released","id":1175,"friendly_version":"10","name":"SUSE Linux Enterprise Software Development Kit","offline_predecessor_ids":[],"friendly_name":"SUSE Linux Enterprise Software Development Kit 10 (Migration)","migration_extra":false,"former_identifier":"SUSE-Linux-Enterprise-SDK-SP1-migration","release_type":null,"recommended":false,"version":"10"}],"version":"10","recommended":false,"release_type":"online","former_identifier":"SUSE-Linux-Enterprise-Server-SP1","friendly_name":"SUSE Linux Enterprise Server 10 SP1 online s390x","migration_extra":false,"offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Server","online_predecessor_ids":[],"repositories":[{"url":"https://updates.suse.com/repo/$RCE/SLES10-SP1-LTSS-Updates/sles-10-i586/","autorefresh":true,"distro_target":"sles-10-i586","id":642,"enabled":true,"description":"SLES10-SP1-LTSS-Updates for sles-10-i586","name":"SLES10-SP1-LTSS-Updates","installer_updates":false},{"installer_updates":false,"name":"SLES10-SP1-LTSS-Updates","description":"SLES10-SP1-LTSS-Updates for sles-10-ia64","id":643,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLES10-SP1-LTSS-Updates/sles-10-ia64/","distro_target":"sles-10-ia64","autorefresh":true},{"url":"https://updates.suse.com/repo/$RCE/SLES10-SP1-LTSS-Updates/sles-10-s390x/","autorefresh":true,"distro_target":"sles-10-s390x","id":644,"enabled":true,"description":"SLES10-SP1-LTSS-Updates for sles-10-s390x","name":"SLES10-SP1-LTSS-Updates","installer_updates":false},{"enabled":true,"id":645,"autorefresh":true,"distro_target":"sles-10-x86_64","url":"https://updates.suse.com/repo/$RCE/SLES10-SP1-LTSS-Updates/sles-10-x86_64/","name":"SLES10-SP1-LTSS-Updates","installer_updates":false,"description":"SLES10-SP1-LTSS-Updates for sles-10-x86_64"},{"enabled":true,"id":647,"autorefresh":true,"distro_target":"sles-10-ppc","url":"https://updates.suse.com/repo/$RCE/SLES10-SP1-LTSS-Updates/sles-10-ppc/","name":"SLES10-SP1-LTSS-Updates","installer_updates":false,"description":"SLES10-SP1-LTSS-Updates for sles-10-ppc"},{"autorefresh":true,"distro_target":"sles-10-s390x","url":"https://updates.suse.com/repo/$RCE/SLES10-SP1-Online/sles-10-s390x/","enabled":true,"id":650,"description":"SLES10-SP1-Online for sles-10-s390x","name":"SLES10-SP1-Online","installer_updates":false},{"autorefresh":true,"distro_target":"sles-10-s390x","url":"https://updates.suse.com/repo/$RCE/SLES10-SP1-Updates/sles-10-s390x/","enabled":true,"id":651,"description":"SLES10-SP1-Updates for sles-10-s390x","name":"SLES10-SP1-Updates","installer_updates":false},{"name":"SLE10-SP1-Debuginfo-Updates","installer_updates":false,"description":"SLE10-SP1-Debuginfo-Updates for sles-10-s390x","id":652,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP1-Debuginfo-Updates/sles-10-s390x/","autorefresh":true,"distro_target":"sles-10-s390x"}],"product_class":"SLES-Z","predecessor_ids":[],"product_type":"base","cpe":null,"free":false,"description":null,"shortname":null,"arch":"s390x","eula_url":""},{"friendly_version":"10 SP2","release_stage":"released","identifier":"SUSE-Linux-Enterprise-Server-SP2","id":677,"extensions":[{"shortname":null,"description":null,"free":true,"eula_url":"","arch":null,"predecessor_ids":[],"online_predecessor_ids":[],"product_class":"SLE-SDK","repositories":[],"cpe":null,"product_type":"extension","recommended":false,"version":"10","name":"SUSE Linux Enterprise Software Development Kit","offline_predecessor_ids":[],"friendly_name":"SUSE Linux Enterprise Software Development Kit 10 SP2 MigrationBeta","migration_extra":false,"former_identifier":"SUSE-Linux-Enterprise-SDK-SP2","release_type":"MigrationBeta","friendly_version":"10 SP2","extensions":[],"identifier":"SUSE-Linux-Enterprise-SDK-SP2","release_stage":"released","id":1176},{"version":"10","recommended":false,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Software Development Kit 10 SP2","former_identifier":"SUSE-Linux-Enterprise-SDK-SP2","release_type":null,"name":"SUSE Linux Enterprise Software Development Kit","offline_predecessor_ids":[],"friendly_version":"10 SP2","release_stage":"released","id":1177,"identifier":"SUSE-Linux-Enterprise-SDK-SP2","extensions":[],"shortname":null,"description":null,"free":true,"arch":null,"eula_url":"","online_predecessor_ids":[],"repositories":[{"enabled":true,"id":1308,"autorefresh":true,"distro_target":"sled-10-i586","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sled-10-i586/","name":"SLE10-SDK-SP2-Online","installer_updates":false,"description":"SLE10-SDK-SP2-Online for sled-10-i586"},{"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Updates/sles-10-i586/","autorefresh":true,"distro_target":"sles-10-i586","id":1309,"enabled":true,"description":"SLE10-SDK-SP2-Updates for sles-10-i586","name":"SLE10-SDK-SP2-Updates","installer_updates":false},{"id":1310,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Updates/sles-10-ia64/","distro_target":"sles-10-ia64","autorefresh":true,"installer_updates":false,"name":"SLE10-SDK-SP2-Updates","description":"SLE10-SDK-SP2-Updates for sles-10-ia64"},{"autorefresh":true,"distro_target":"sles-10-s390x","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Updates/sles-10-s390x/","enabled":true,"id":1311,"description":"SLE10-SDK-SP2-Updates for sles-10-s390x","name":"SLE10-SDK-SP2-Updates","installer_updates":false},{"id":1312,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sles-10-ppc/","distro_target":"sles-10-ppc","autorefresh":true,"installer_updates":false,"name":"SLE10-SDK-SP2-Online","description":"SLE10-SDK-SP2-Online for sles-10-ppc"},{"installer_updates":false,"name":"SLE10-SDK-SP2-Online","description":"SLE10-SDK-SP2-Online for sles-10-i586","id":1313,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sles-10-i586/","distro_target":"sles-10-i586","autorefresh":true},{"enabled":true,"id":1314,"distro_target":"sled-10-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sled-10-x86_64/","installer_updates":false,"name":"SLE10-SDK-SP2-Online","description":"SLE10-SDK-SP2-Online for sled-10-x86_64"},{"installer_updates":false,"name":"SLE10-SDK-SP2-Updates","description":"SLE10-SDK-SP2-Updates for sles-10-x86_64","id":1315,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Updates/sles-10-x86_64/","distro_target":"sles-10-x86_64","autorefresh":true},{"id":1316,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sles-10-ia64/","autorefresh":true,"distro_target":"sles-10-ia64","name":"SLE10-SDK-SP2-Online","installer_updates":false,"description":"SLE10-SDK-SP2-Online for sles-10-ia64"},{"name":"SLE10-SDK-SP2-Updates","installer_updates":false,"description":"SLE10-SDK-SP2-Updates for sles-10-ppc","id":1317,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Updates/sles-10-ppc/","autorefresh":true,"distro_target":"sles-10-ppc"},{"description":"SLE10-SDK-SP2-Online for sles-10-s390x","installer_updates":false,"name":"SLE10-SDK-SP2-Online","distro_target":"sles-10-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sles-10-s390x/","enabled":true,"id":1318},{"description":"SLE10-SDK-SP2-Updates for sled-10-x86_64","installer_updates":false,"name":"SLE10-SDK-SP2-Updates","distro_target":"sled-10-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Updates/sled-10-x86_64/","enabled":true,"id":1319},{"description":"SLE10-SDK-SP2-Updates for sled-10-i586","name":"SLE10-SDK-SP2-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sled-10-i586","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Updates/sled-10-i586/","enabled":true,"id":1320},{"id":1321,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sles-10-x86_64/","distro_target":"sles-10-x86_64","autorefresh":true,"installer_updates":false,"name":"SLE10-SDK-SP2-Online","description":"SLE10-SDK-SP2-Online for sles-10-x86_64"}],"product_class":"SLE-SDK","predecessor_ids":[],"cpe":null,"product_type":"extension"},{"product_type":"extension","cpe":null,"product_class":"SLE-SDK","online_predecessor_ids":[],"repositories":[{"description":"SLE10-SDK-SP2-Online for sled-10-i586","name":"SLE10-SDK-SP2-Online","installer_updates":false,"autorefresh":true,"distro_target":"sled-10-i586","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sled-10-i586/","enabled":true,"id":1308},{"installer_updates":false,"name":"SLE10-SDK-SP2-Online","description":"SLE10-SDK-SP2-Online for sles-10-ppc","enabled":true,"id":1312,"distro_target":"sles-10-ppc","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sles-10-ppc/"},{"installer_updates":false,"name":"SLE10-SDK-SP2-Online","description":"SLE10-SDK-SP2-Online for sles-10-i586","enabled":true,"id":1313,"distro_target":"sles-10-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sles-10-i586/"},{"installer_updates":false,"name":"SLE10-SDK-SP2-Online","description":"SLE10-SDK-SP2-Online for sled-10-x86_64","id":1314,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sled-10-x86_64/","distro_target":"sled-10-x86_64","autorefresh":true},{"name":"SLE10-SDK-SP2-Online","installer_updates":false,"description":"SLE10-SDK-SP2-Online for sles-10-ia64","enabled":true,"id":1316,"autorefresh":true,"distro_target":"sles-10-ia64","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sles-10-ia64/"},{"autorefresh":true,"distro_target":"sles-10-s390x","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sles-10-s390x/","enabled":true,"id":1318,"description":"SLE10-SDK-SP2-Online for sles-10-s390x","name":"SLE10-SDK-SP2-Online","installer_updates":false},{"autorefresh":true,"distro_target":"sles-10-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sles-10-x86_64/","enabled":true,"id":1321,"description":"SLE10-SDK-SP2-Online for sles-10-x86_64","name":"SLE10-SDK-SP2-Online","installer_updates":false}],"predecessor_ids":[],"arch":null,"eula_url":"","free":true,"description":null,"shortname":null,"release_stage":"released","id":1178,"identifier":"SUSE-Linux-Enterprise-SDK-SP2-migration","extensions":[],"friendly_version":"10","release_type":"online","former_identifier":"SUSE-Linux-Enterprise-SDK-SP2-migration","friendly_name":"SUSE Linux Enterprise Software Development Kit 10 online (Migration)","migration_extra":false,"offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Software Development Kit","version":"10","recommended":false},{"repositories":[{"enabled":true,"id":1398,"autorefresh":true,"distro_target":"sles-10-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE10-SP2-SMT-Updates/sles-10-x86_64/","name":"SLE10-SP2-SMT-Updates","installer_updates":false,"description":"SLE10-SP2-SMT-Updates for sles-10-x86_64"},{"url":"https://updates.suse.com/repo/$RCE/SLE10-SP2-SMT-Updates/sles-10-i586/","distro_target":"sles-10-i586","autorefresh":true,"id":1399,"enabled":true,"description":"SLE10-SP2-SMT-Updates for sles-10-i586","installer_updates":false,"name":"SLE10-SP2-SMT-Updates"}],"online_predecessor_ids":[],"product_class":"SLESMT","predecessor_ids":[],"cpe":null,"product_type":"extension","shortname":null,"description":null,"free":true,"arch":null,"eula_url":"","friendly_version":"10 SP2","id":1195,"release_stage":"released","identifier":"SUSE-Linux-Enterprise-SMT-SP2","extensions":[],"version":"10.2","recommended":false,"friendly_name":"SUSE Linux Enterprise Subscription Management Tool 10 SP2","migration_extra":false,"release_type":null,"former_identifier":"SUSE-Linux-Enterprise-SMT-SP2","name":"SUSE Linux Enterprise Subscription Management Tool","offline_predecessor_ids":[]}],"version":"10","recommended":false,"former_identifier":"SUSE-Linux-Enterprise-Server-SP2","release_type":null,"friendly_name":"SUSE Linux Enterprise Server 10 SP2 i686","migration_extra":false,"offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Server","online_predecessor_ids":[],"repositories":[{"url":"https://updates.suse.com/repo/$RCE/SLES10-SP2-Pool/sles-10-i586/","autorefresh":false,"distro_target":"sles-10-i586","id":653,"enabled":true,"description":"SLES10-SP2-Pool for sles-10-i586","name":"SLES10-SP2-Pool","installer_updates":false},{"description":"SLES10-SP2-Online for sles-10-i586","name":"SLES10-SP2-Online","installer_updates":false,"autorefresh":true,"distro_target":"sles-10-i586","url":"https://updates.suse.com/repo/$RCE/SLES10-SP2-Online/sles-10-i586/","enabled":false,"id":654},{"id":655,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLES10-SP2-Updates/sles-10-i586/","distro_target":"sles-10-i586","autorefresh":true,"installer_updates":false,"name":"SLES10-SP2-Updates","description":"SLES10-SP2-Updates for sles-10-i586"},{"id":656,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP2-Debuginfo-Updates/sles-10-i586/","autorefresh":true,"distro_target":"sles-10-i586","name":"SLE10-SP2-Debuginfo-Updates","installer_updates":false,"description":"SLE10-SP2-Debuginfo-Updates for sles-10-i586"},{"id":657,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLES10-SP2-LTSS-Updates/sles-10-i586/","autorefresh":true,"distro_target":"sles-10-i586","name":"SLES10-SP2-LTSS-Updates","installer_updates":false,"description":"SLES10-SP2-LTSS-Updates for sles-10-i586"}],"product_class":"7261","predecessor_ids":[],"product_type":"base","cpe":null,"free":false,"description":null,"shortname":null,"arch":"i686","eula_url":""},{"cpe":null,"product_type":"base","online_predecessor_ids":[],"repositories":[{"installer_updates":false,"name":"SLES10-SP2-Online","description":"SLES10-SP2-Online for sles-10-ppc","enabled":false,"id":658,"distro_target":"sles-10-ppc","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLES10-SP2-Online/sles-10-ppc/"},{"url":"https://updates.suse.com/repo/$RCE/SLES10-SP2-Updates/sles-10-ppc/","autorefresh":true,"distro_target":"sles-10-ppc","id":659,"enabled":true,"description":"SLES10-SP2-Updates for sles-10-ppc","name":"SLES10-SP2-Updates","installer_updates":false},{"enabled":true,"id":660,"autorefresh":false,"distro_target":"sles-10-ppc","url":"https://updates.suse.com/repo/$RCE/SLES10-SP2-Pool/sles-10-ppc/","name":"SLES10-SP2-Pool","installer_updates":false,"description":"SLES10-SP2-Pool for sles-10-ppc"},{"description":"SLE10-SP2-Debuginfo-Updates for sles-10-ppc","installer_updates":false,"name":"SLE10-SP2-Debuginfo-Updates","distro_target":"sles-10-ppc","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP2-Debuginfo-Updates/sles-10-ppc/","enabled":false,"id":661}],"product_class":"SLES-PPC","predecessor_ids":[],"arch":"ppc","eula_url":"","description":null,"shortname":null,"free":false,"release_stage":"released","id":678,"identifier":"SUSE-Linux-Enterprise-Server-SP2","extensions":[{"offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Software Development Kit","release_type":"MigrationBeta","former_identifier":"SUSE-Linux-Enterprise-SDK-SP2","friendly_name":"SUSE Linux Enterprise Software Development Kit 10 SP2 MigrationBeta","migration_extra":false,"recommended":false,"version":"10","extensions":[],"id":1176,"release_stage":"released","identifier":"SUSE-Linux-Enterprise-SDK-SP2","friendly_version":"10 SP2","eula_url":"","arch":null,"free":true,"description":null,"shortname":null,"product_type":"extension","cpe":null,"predecessor_ids":[],"online_predecessor_ids":[],"product_class":"SLE-SDK","repositories":[]},{"predecessor_ids":[],"product_class":"SLE-SDK","online_predecessor_ids":[],"repositories":[{"description":"SLE10-SDK-SP2-Online for sled-10-i586","name":"SLE10-SDK-SP2-Online","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sled-10-i586/","autorefresh":true,"distro_target":"sled-10-i586","id":1308,"enabled":true},{"enabled":true,"id":1309,"autorefresh":true,"distro_target":"sles-10-i586","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Updates/sles-10-i586/","name":"SLE10-SDK-SP2-Updates","installer_updates":false,"description":"SLE10-SDK-SP2-Updates for sles-10-i586"},{"id":1310,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Updates/sles-10-ia64/","autorefresh":true,"distro_target":"sles-10-ia64","name":"SLE10-SDK-SP2-Updates","installer_updates":false,"description":"SLE10-SDK-SP2-Updates for sles-10-ia64"},{"enabled":true,"id":1311,"autorefresh":true,"distro_target":"sles-10-s390x","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Updates/sles-10-s390x/","name":"SLE10-SDK-SP2-Updates","installer_updates":false,"description":"SLE10-SDK-SP2-Updates for sles-10-s390x"},{"description":"SLE10-SDK-SP2-Online for sles-10-ppc","name":"SLE10-SDK-SP2-Online","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sles-10-ppc/","autorefresh":true,"distro_target":"sles-10-ppc","id":1312,"enabled":true},{"name":"SLE10-SDK-SP2-Online","installer_updates":false,"description":"SLE10-SDK-SP2-Online for sles-10-i586","id":1313,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sles-10-i586/","autorefresh":true,"distro_target":"sles-10-i586"},{"description":"SLE10-SDK-SP2-Online for sled-10-x86_64","installer_updates":false,"name":"SLE10-SDK-SP2-Online","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sled-10-x86_64/","distro_target":"sled-10-x86_64","autorefresh":true,"id":1314,"enabled":true},{"name":"SLE10-SDK-SP2-Updates","installer_updates":false,"description":"SLE10-SDK-SP2-Updates for sles-10-x86_64","id":1315,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Updates/sles-10-x86_64/","autorefresh":true,"distro_target":"sles-10-x86_64"},{"autorefresh":true,"distro_target":"sles-10-ia64","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sles-10-ia64/","enabled":true,"id":1316,"description":"SLE10-SDK-SP2-Online for sles-10-ia64","name":"SLE10-SDK-SP2-Online","installer_updates":false},{"name":"SLE10-SDK-SP2-Updates","installer_updates":false,"description":"SLE10-SDK-SP2-Updates for sles-10-ppc","enabled":true,"id":1317,"autorefresh":true,"distro_target":"sles-10-ppc","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Updates/sles-10-ppc/"},{"name":"SLE10-SDK-SP2-Online","installer_updates":false,"description":"SLE10-SDK-SP2-Online for sles-10-s390x","id":1318,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sles-10-s390x/","autorefresh":true,"distro_target":"sles-10-s390x"},{"enabled":true,"id":1319,"distro_target":"sled-10-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Updates/sled-10-x86_64/","installer_updates":false,"name":"SLE10-SDK-SP2-Updates","description":"SLE10-SDK-SP2-Updates for sled-10-x86_64"},{"enabled":true,"id":1320,"autorefresh":true,"distro_target":"sled-10-i586","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Updates/sled-10-i586/","name":"SLE10-SDK-SP2-Updates","installer_updates":false,"description":"SLE10-SDK-SP2-Updates for sled-10-i586"},{"id":1321,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sles-10-x86_64/","autorefresh":true,"distro_target":"sles-10-x86_64","name":"SLE10-SDK-SP2-Online","installer_updates":false,"description":"SLE10-SDK-SP2-Online for sles-10-x86_64"}],"product_type":"extension","cpe":null,"free":true,"shortname":null,"description":null,"eula_url":"","arch":null,"friendly_version":"10 SP2","extensions":[],"release_stage":"released","id":1177,"identifier":"SUSE-Linux-Enterprise-SDK-SP2","recommended":false,"version":"10","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Software Development Kit","former_identifier":"SUSE-Linux-Enterprise-SDK-SP2","release_type":null,"friendly_name":"SUSE Linux Enterprise Software Development Kit 10 SP2","migration_extra":false},{"predecessor_ids":[],"product_class":"SLE-SDK","online_predecessor_ids":[],"repositories":[{"description":"SLE10-SDK-SP2-Online for sled-10-i586","name":"SLE10-SDK-SP2-Online","installer_updates":false,"autorefresh":true,"distro_target":"sled-10-i586","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sled-10-i586/","enabled":true,"id":1308},{"description":"SLE10-SDK-SP2-Online for sles-10-ppc","name":"SLE10-SDK-SP2-Online","installer_updates":false,"autorefresh":true,"distro_target":"sles-10-ppc","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sles-10-ppc/","enabled":true,"id":1312},{"name":"SLE10-SDK-SP2-Online","installer_updates":false,"description":"SLE10-SDK-SP2-Online for sles-10-i586","enabled":true,"id":1313,"autorefresh":true,"distro_target":"sles-10-i586","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sles-10-i586/"},{"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sled-10-x86_64/","autorefresh":true,"distro_target":"sled-10-x86_64","id":1314,"enabled":true,"description":"SLE10-SDK-SP2-Online for sled-10-x86_64","name":"SLE10-SDK-SP2-Online","installer_updates":false},{"distro_target":"sles-10-ia64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sles-10-ia64/","enabled":true,"id":1316,"description":"SLE10-SDK-SP2-Online for sles-10-ia64","installer_updates":false,"name":"SLE10-SDK-SP2-Online"},{"description":"SLE10-SDK-SP2-Online for sles-10-s390x","name":"SLE10-SDK-SP2-Online","installer_updates":false,"autorefresh":true,"distro_target":"sles-10-s390x","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sles-10-s390x/","enabled":true,"id":1318},{"installer_updates":false,"name":"SLE10-SDK-SP2-Online","description":"SLE10-SDK-SP2-Online for sles-10-x86_64","id":1321,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sles-10-x86_64/","distro_target":"sles-10-x86_64","autorefresh":true}],"cpe":null,"product_type":"extension","shortname":null,"description":null,"free":true,"eula_url":"","arch":null,"friendly_version":"10","extensions":[],"release_stage":"released","id":1178,"identifier":"SUSE-Linux-Enterprise-SDK-SP2-migration","recommended":false,"version":"10","name":"SUSE Linux Enterprise Software Development Kit","offline_predecessor_ids":[],"friendly_name":"SUSE Linux Enterprise Software Development Kit 10 online (Migration)","migration_extra":false,"former_identifier":"SUSE-Linux-Enterprise-SDK-SP2-migration","release_type":"online"},{"arch":null,"eula_url":"","free":true,"description":null,"shortname":null,"product_type":"extension","cpe":null,"online_predecessor_ids":[],"product_class":"SLESMT","repositories":[{"name":"SLE10-SP2-SMT-Updates","installer_updates":false,"description":"SLE10-SP2-SMT-Updates for sles-10-x86_64","id":1398,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP2-SMT-Updates/sles-10-x86_64/","autorefresh":true,"distro_target":"sles-10-x86_64"},{"name":"SLE10-SP2-SMT-Updates","installer_updates":false,"description":"SLE10-SP2-SMT-Updates for sles-10-i586","id":1399,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP2-SMT-Updates/sles-10-i586/","autorefresh":true,"distro_target":"sles-10-i586"}],"predecessor_ids":[],"former_identifier":"SUSE-Linux-Enterprise-SMT-SP2","release_type":null,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Subscription Management Tool 10 SP2","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Subscription Management Tool","version":"10.2","recommended":false,"release_stage":"released","id":1195,"identifier":"SUSE-Linux-Enterprise-SMT-SP2","extensions":[],"friendly_version":"10 SP2"}],"friendly_version":"10 SP2","migration_extra":false,"friendly_name":"SUSE Linux Enterprise Server 10 SP2 ppc","former_identifier":"SUSE-Linux-Enterprise-Server-SP2","release_type":null,"name":"SUSE Linux Enterprise Server","offline_predecessor_ids":[],"version":"10","recommended":false},{"release_type":"online","former_identifier":"SUSE-Linux-Enterprise-Server-SP2","migration_extra":false,"friendly_name":"SUSE Linux Enterprise Server 10 SP2 online i586","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Server","version":"10","recommended":false,"id":679,"release_stage":"released","identifier":"SUSE-Linux-Enterprise-Server-SP2","extensions":[{"online_predecessor_ids":[],"product_class":"SLE-SDK","repositories":[],"predecessor_ids":[],"cpe":null,"product_type":"extension","description":null,"shortname":null,"free":true,"arch":null,"eula_url":"","friendly_version":"10 SP2","release_stage":"released","id":1176,"identifier":"SUSE-Linux-Enterprise-SDK-SP2","extensions":[],"version":"10","recommended":false,"friendly_name":"SUSE Linux Enterprise Software Development Kit 10 SP2 MigrationBeta","migration_extra":false,"former_identifier":"SUSE-Linux-Enterprise-SDK-SP2","release_type":"MigrationBeta","name":"SUSE Linux Enterprise Software Development Kit","offline_predecessor_ids":[]},{"product_type":"extension","cpe":null,"product_class":"SLE-SDK","online_predecessor_ids":[],"repositories":[{"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sled-10-i586/","autorefresh":true,"distro_target":"sled-10-i586","id":1308,"enabled":true,"description":"SLE10-SDK-SP2-Online for sled-10-i586","name":"SLE10-SDK-SP2-Online","installer_updates":false},{"id":1309,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Updates/sles-10-i586/","distro_target":"sles-10-i586","autorefresh":true,"installer_updates":false,"name":"SLE10-SDK-SP2-Updates","description":"SLE10-SDK-SP2-Updates for sles-10-i586"},{"autorefresh":true,"distro_target":"sles-10-ia64","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Updates/sles-10-ia64/","enabled":true,"id":1310,"description":"SLE10-SDK-SP2-Updates for sles-10-ia64","name":"SLE10-SDK-SP2-Updates","installer_updates":false},{"description":"SLE10-SDK-SP2-Updates for sles-10-s390x","installer_updates":false,"name":"SLE10-SDK-SP2-Updates","distro_target":"sles-10-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Updates/sles-10-s390x/","enabled":true,"id":1311},{"installer_updates":false,"name":"SLE10-SDK-SP2-Online","description":"SLE10-SDK-SP2-Online for sles-10-ppc","enabled":true,"id":1312,"distro_target":"sles-10-ppc","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sles-10-ppc/"},{"description":"SLE10-SDK-SP2-Online for sles-10-i586","name":"SLE10-SDK-SP2-Online","installer_updates":false,"autorefresh":true,"distro_target":"sles-10-i586","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sles-10-i586/","enabled":true,"id":1313},{"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sled-10-x86_64/","autorefresh":true,"distro_target":"sled-10-x86_64","id":1314,"enabled":true,"description":"SLE10-SDK-SP2-Online for sled-10-x86_64","name":"SLE10-SDK-SP2-Online","installer_updates":false},{"autorefresh":true,"distro_target":"sles-10-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Updates/sles-10-x86_64/","enabled":true,"id":1315,"description":"SLE10-SDK-SP2-Updates for sles-10-x86_64","name":"SLE10-SDK-SP2-Updates","installer_updates":false},{"description":"SLE10-SDK-SP2-Online for sles-10-ia64","name":"SLE10-SDK-SP2-Online","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sles-10-ia64/","autorefresh":true,"distro_target":"sles-10-ia64","id":1316,"enabled":true},{"id":1317,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Updates/sles-10-ppc/","distro_target":"sles-10-ppc","autorefresh":true,"installer_updates":false,"name":"SLE10-SDK-SP2-Updates","description":"SLE10-SDK-SP2-Updates for sles-10-ppc"},{"distro_target":"sles-10-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sles-10-s390x/","enabled":true,"id":1318,"description":"SLE10-SDK-SP2-Online for sles-10-s390x","installer_updates":false,"name":"SLE10-SDK-SP2-Online"},{"description":"SLE10-SDK-SP2-Updates for sled-10-x86_64","name":"SLE10-SDK-SP2-Updates","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Updates/sled-10-x86_64/","autorefresh":true,"distro_target":"sled-10-x86_64","id":1319,"enabled":true},{"enabled":true,"id":1320,"distro_target":"sled-10-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Updates/sled-10-i586/","installer_updates":false,"name":"SLE10-SDK-SP2-Updates","description":"SLE10-SDK-SP2-Updates for sled-10-i586"},{"description":"SLE10-SDK-SP2-Online for sles-10-x86_64","installer_updates":false,"name":"SLE10-SDK-SP2-Online","distro_target":"sles-10-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sles-10-x86_64/","enabled":true,"id":1321}],"predecessor_ids":[],"arch":null,"eula_url":"","free":true,"shortname":null,"description":null,"identifier":"SUSE-Linux-Enterprise-SDK-SP2","release_stage":"released","id":1177,"extensions":[],"friendly_version":"10 SP2","former_identifier":"SUSE-Linux-Enterprise-SDK-SP2","release_type":null,"friendly_name":"SUSE Linux Enterprise Software Development Kit 10 SP2","migration_extra":false,"offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Software Development Kit","version":"10","recommended":false},{"shortname":null,"description":null,"free":true,"arch":null,"eula_url":"","repositories":[{"enabled":true,"id":1308,"autorefresh":true,"distro_target":"sled-10-i586","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sled-10-i586/","name":"SLE10-SDK-SP2-Online","installer_updates":false,"description":"SLE10-SDK-SP2-Online for sled-10-i586"},{"installer_updates":false,"name":"SLE10-SDK-SP2-Online","description":"SLE10-SDK-SP2-Online for sles-10-ppc","id":1312,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sles-10-ppc/","distro_target":"sles-10-ppc","autorefresh":true},{"name":"SLE10-SDK-SP2-Online","installer_updates":false,"description":"SLE10-SDK-SP2-Online for sles-10-i586","id":1313,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sles-10-i586/","autorefresh":true,"distro_target":"sles-10-i586"},{"installer_updates":false,"name":"SLE10-SDK-SP2-Online","description":"SLE10-SDK-SP2-Online for sled-10-x86_64","id":1314,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sled-10-x86_64/","distro_target":"sled-10-x86_64","autorefresh":true},{"enabled":true,"id":1316,"distro_target":"sles-10-ia64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sles-10-ia64/","installer_updates":false,"name":"SLE10-SDK-SP2-Online","description":"SLE10-SDK-SP2-Online for sles-10-ia64"},{"installer_updates":false,"name":"SLE10-SDK-SP2-Online","description":"SLE10-SDK-SP2-Online for sles-10-s390x","id":1318,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sles-10-s390x/","distro_target":"sles-10-s390x","autorefresh":true},{"installer_updates":false,"name":"SLE10-SDK-SP2-Online","description":"SLE10-SDK-SP2-Online for sles-10-x86_64","id":1321,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sles-10-x86_64/","distro_target":"sles-10-x86_64","autorefresh":true}],"online_predecessor_ids":[],"product_class":"SLE-SDK","predecessor_ids":[],"cpe":null,"product_type":"extension","version":"10","recommended":false,"friendly_name":"SUSE Linux Enterprise Software Development Kit 10 online (Migration)","migration_extra":false,"release_type":"online","former_identifier":"SUSE-Linux-Enterprise-SDK-SP2-migration","name":"SUSE Linux Enterprise Software Development Kit","offline_predecessor_ids":[],"friendly_version":"10","release_stage":"released","id":1178,"identifier":"SUSE-Linux-Enterprise-SDK-SP2-migration","extensions":[]},{"extensions":[],"id":1195,"release_stage":"released","identifier":"SUSE-Linux-Enterprise-SMT-SP2","friendly_version":"10 SP2","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Subscription Management Tool","release_type":null,"former_identifier":"SUSE-Linux-Enterprise-SMT-SP2","friendly_name":"SUSE Linux Enterprise Subscription Management Tool 10 SP2","migration_extra":false,"recommended":false,"version":"10.2","product_type":"extension","cpe":null,"predecessor_ids":[],"product_class":"SLESMT","online_predecessor_ids":[],"repositories":[{"name":"SLE10-SP2-SMT-Updates","installer_updates":false,"description":"SLE10-SP2-SMT-Updates for sles-10-x86_64","enabled":true,"id":1398,"autorefresh":true,"distro_target":"sles-10-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE10-SP2-SMT-Updates/sles-10-x86_64/"},{"description":"SLE10-SP2-SMT-Updates for sles-10-i586","name":"SLE10-SP2-SMT-Updates","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP2-SMT-Updates/sles-10-i586/","autorefresh":true,"distro_target":"sles-10-i586","id":1399,"enabled":true}],"eula_url":"","arch":null,"free":true,"description":null,"shortname":null}],"friendly_version":"10 SP2","arch":"i586","eula_url":"","free":false,"description":null,"shortname":null,"product_type":"base","cpe":null,"online_predecessor_ids":[],"product_class":"7261","repositories":[{"description":"SLES10-SP2-Online for sles-10-i586","installer_updates":false,"name":"SLES10-SP2-Online","url":"https://updates.suse.com/repo/$RCE/SLES10-SP2-Online/sles-10-i586/","distro_target":"sles-10-i586","autorefresh":true,"id":654,"enabled":true},{"id":655,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLES10-SP2-Updates/sles-10-i586/","autorefresh":true,"distro_target":"sles-10-i586","name":"SLES10-SP2-Updates","installer_updates":false,"description":"SLES10-SP2-Updates for sles-10-i586"},{"description":"SLE10-SP2-Debuginfo-Updates for sles-10-i586","installer_updates":false,"name":"SLE10-SP2-Debuginfo-Updates","distro_target":"sles-10-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP2-Debuginfo-Updates/sles-10-i586/","enabled":false,"id":656},{"url":"https://updates.suse.com/repo/$RCE/SLES10-SP2-LTSS-Updates/sles-10-i586/","distro_target":"sles-10-i586","autorefresh":true,"id":657,"enabled":true,"description":"SLES10-SP2-LTSS-Updates for sles-10-i586","installer_updates":false,"name":"SLES10-SP2-LTSS-Updates"}],"predecessor_ids":[]},{"predecessor_ids":[],"product_class":"SLES-IA","online_predecessor_ids":[],"repositories":[{"distro_target":"sles-10-ia64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLES10-SP3-Online/sles-10-ia64/","enabled":true,"id":662,"description":"SLES10-SP3-Online for sles-10-ia64","installer_updates":false,"name":"SLES10-SP3-Online"}],"product_type":"base","cpe":null,"free":false,"description":null,"shortname":null,"eula_url":"","arch":"ia64","friendly_version":"10","extensions":[],"release_stage":"released","identifier":"SUSE-Linux-Enterprise-Server-SP3-migration","id":680,"recommended":false,"version":"10","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Server","former_identifier":"SUSE-Linux-Enterprise-Server-SP3-migration","release_type":null,"friendly_name":"SUSE Linux Enterprise Server 10 ia64 (Migration)","migration_extra":false},{"arch":"i686","eula_url":"","free":false,"shortname":null,"description":null,"product_type":"base","cpe":null,"repositories":[{"installer_updates":false,"name":"SLES10-SP3-Online","description":"SLES10-SP3-Online for sles-10-i586","id":663,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLES10-SP3-Online/sles-10-i586/","distro_target":"sles-10-i586","autorefresh":true},{"name":"SLE10-SP3-Debuginfo-Updates","installer_updates":false,"description":"SLE10-SP3-Debuginfo-Updates for sles-10-i586","enabled":false,"id":664,"autorefresh":true,"distro_target":"sles-10-i586","url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Updates/sles-10-i586/"},{"installer_updates":false,"name":"SLES10-GPLv3-Extras","description":"SLES10-GPLv3-Extras for sles-10-i586","id":665,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLES10-GPLv3-Extras/sles-10-i586/","distro_target":"sles-10-i586","autorefresh":true},{"id":666,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLES10-SP3-LTSS-Updates/sles-10-i586/","distro_target":"sles-10-i586","autorefresh":true,"installer_updates":false,"name":"SLES10-SP3-LTSS-Updates","description":"SLES10-SP3-LTSS-Updates for sles-10-i586"},{"url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Online/sles-10-i586/","autorefresh":true,"distro_target":"sles-10-i586","id":667,"enabled":false,"description":"SLE10-SP3-Debuginfo-Online for sles-10-i586","name":"SLE10-SP3-Debuginfo-Online","installer_updates":false},{"installer_updates":false,"name":"SLES10-SP3-Pool","description":"SLES10-SP3-Pool for sles-10-i586","id":668,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLES10-SP3-Pool/sles-10-i586/","distro_target":"sles-10-i586","autorefresh":false},{"id":669,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Pool/sles-10-i586/","autorefresh":false,"distro_target":"sles-10-i586","name":"SLE10-SP3-Debuginfo-Pool","installer_updates":false,"description":"SLE10-SP3-Debuginfo-Pool for sles-10-i586"},{"name":"SLES10-SP3-Updates","installer_updates":false,"description":"SLES10-SP3-Updates for sles-10-i586","enabled":true,"id":670,"autorefresh":true,"distro_target":"sles-10-i586","url":"https://updates.suse.com/repo/$RCE/SLES10-SP3-Updates/sles-10-i586/"}],"online_predecessor_ids":[],"product_class":"7261","predecessor_ids":[],"former_identifier":"SUSE-Linux-Enterprise-Server-SP3","release_type":null,"friendly_name":"SUSE Linux Enterprise Server 10 SP3 i686","migration_extra":false,"offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Server","version":"10","recommended":false,"release_stage":"released","id":681,"identifier":"SUSE-Linux-Enterprise-Server-SP3","extensions":[{"offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Software Development Kit","former_identifier":"SUSE-Linux-Enterprise-SDK-SP3","release_type":null,"friendly_name":"SUSE Linux Enterprise Software Development Kit 10 SP3","migration_extra":false,"recommended":false,"version":"10","extensions":[],"id":1179,"release_stage":"released","identifier":"SUSE-Linux-Enterprise-SDK-SP3","friendly_version":"10 SP3","eula_url":"","arch":null,"free":true,"description":null,"shortname":null,"product_type":"extension","cpe":null,"predecessor_ids":[],"online_predecessor_ids":[],"repositories":[{"description":"SLE10-SDK-SP3-Pool for sles-10-ppc","installer_updates":false,"name":"SLE10-SDK-SP3-Pool","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Pool/sles-10-ppc/","distro_target":"sles-10-ppc","autorefresh":false,"id":1322,"enabled":true},{"description":"SLE10-SDK-SP3-Pool for sles-10-x86_64","installer_updates":false,"name":"SLE10-SDK-SP3-Pool","distro_target":"sles-10-x86_64","autorefresh":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Pool/sles-10-x86_64/","enabled":true,"id":1323},{"description":"SLE10-SDK-SP3-Online for sled-10-i586","installer_updates":false,"name":"SLE10-SDK-SP3-Online","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sled-10-i586/","distro_target":"sled-10-i586","autorefresh":true,"id":1324,"enabled":true},{"installer_updates":false,"name":"SLE10-SDK-SP3-Updates","description":"SLE10-SDK-SP3-Updates for sled-10-x86_64","enabled":true,"id":1325,"distro_target":"sled-10-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Updates/sled-10-x86_64/"},{"description":"SLE10-SDK-SP3-Online for sled-10-x86_64","installer_updates":false,"name":"SLE10-SDK-SP3-Online","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sled-10-x86_64/","distro_target":"sled-10-x86_64","autorefresh":true,"id":1326,"enabled":true},{"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Pool/sled-10-x86_64/","distro_target":"sled-10-x86_64","autorefresh":false,"id":1327,"enabled":true,"description":"SLE10-SDK-SP3-Pool for sled-10-x86_64","installer_updates":false,"name":"SLE10-SDK-SP3-Pool"},{"id":1328,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sles-10-ia64/","distro_target":"sles-10-ia64","autorefresh":true,"installer_updates":false,"name":"SLE10-SDK-SP3-Online","description":"SLE10-SDK-SP3-Online for sles-10-ia64"},{"enabled":true,"id":1329,"distro_target":"sles-10-ia64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Updates/sles-10-ia64/","installer_updates":false,"name":"SLE10-SDK-SP3-Updates","description":"SLE10-SDK-SP3-Updates for sles-10-ia64"},{"description":"SLE10-SDK-SP3-Online for sles-10-i586","installer_updates":false,"name":"SLE10-SDK-SP3-Online","distro_target":"sles-10-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sles-10-i586/","enabled":true,"id":1330},{"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Pool/sles-10-ia64/","autorefresh":false,"distro_target":"sles-10-ia64","id":1331,"enabled":true,"description":"SLE10-SDK-SP3-Pool for sles-10-ia64","name":"SLE10-SDK-SP3-Pool","installer_updates":false},{"installer_updates":false,"name":"SLE10-SDK-SP3-Updates","description":"SLE10-SDK-SP3-Updates for sles-10-x86_64","id":1332,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Updates/sles-10-x86_64/","distro_target":"sles-10-x86_64","autorefresh":true},{"description":"SLE10-SDK-SP3-Pool for sles-10-i586","name":"SLE10-SDK-SP3-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sles-10-i586","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Pool/sles-10-i586/","enabled":true,"id":1333},{"id":1334,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Updates/sles-10-i586/","autorefresh":true,"distro_target":"sles-10-i586","name":"SLE10-SDK-SP3-Updates","installer_updates":false,"description":"SLE10-SDK-SP3-Updates for sles-10-i586"},{"name":"SLE10-SDK-SP3-Online","installer_updates":false,"description":"SLE10-SDK-SP3-Online for sles-10-s390x","id":1335,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sles-10-s390x/","autorefresh":true,"distro_target":"sles-10-s390x"},{"autorefresh":true,"distro_target":"sles-10-ppc","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Updates/sles-10-ppc/","enabled":true,"id":1336,"description":"SLE10-SDK-SP3-Updates for sles-10-ppc","name":"SLE10-SDK-SP3-Updates","installer_updates":false},{"description":"SLE10-SDK-SP3-Pool for sles-10-s390x","name":"SLE10-SDK-SP3-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sles-10-s390x","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Pool/sles-10-s390x/","enabled":true,"id":1337},{"installer_updates":false,"name":"SLE10-SDK-SP3-Pool","description":"SLE10-SDK-SP3-Pool for sled-10-i586","enabled":true,"id":1338,"distro_target":"sled-10-i586","autorefresh":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Pool/sled-10-i586/"},{"autorefresh":true,"distro_target":"sles-10-s390x","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Updates/sles-10-s390x/","enabled":true,"id":1339,"description":"SLE10-SDK-SP3-Updates for sles-10-s390x","name":"SLE10-SDK-SP3-Updates","installer_updates":false},{"name":"SLE10-SDK-SP3-Updates","installer_updates":false,"description":"SLE10-SDK-SP3-Updates for sled-10-i586","id":1340,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Updates/sled-10-i586/","autorefresh":true,"distro_target":"sled-10-i586"},{"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sles-10-x86_64/","distro_target":"sles-10-x86_64","autorefresh":true,"id":1341,"enabled":true,"description":"SLE10-SDK-SP3-Online for sles-10-x86_64","installer_updates":false,"name":"SLE10-SDK-SP3-Online"},{"installer_updates":false,"name":"SLE10-SDK-SP3-Online","description":"SLE10-SDK-SP3-Online for sles-10-ppc","enabled":true,"id":1342,"distro_target":"sles-10-ppc","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sles-10-ppc/"}],"product_class":"SLE-SDK"},{"recommended":false,"version":"10","name":"SUSE Linux Enterprise Software Development Kit","offline_predecessor_ids":[],"friendly_name":"SUSE Linux Enterprise Software Development Kit 10 (Migration)","migration_extra":false,"former_identifier":"SUSE-Linux-Enterprise-SDK-SP3-migration","release_type":null,"friendly_version":"10","extensions":[],"release_stage":"released","id":1180,"identifier":"SUSE-Linux-Enterprise-SDK-SP3-migration","description":null,"shortname":null,"free":true,"eula_url":"","arch":null,"predecessor_ids":[],"product_class":"SLE-SDK","online_predecessor_ids":[],"repositories":[{"description":"SLE10-SDK-SP3-Online for sled-10-i586","installer_updates":false,"name":"SLE10-SDK-SP3-Online","distro_target":"sled-10-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sled-10-i586/","enabled":true,"id":1324},{"description":"SLE10-SDK-SP3-Online for sled-10-x86_64","name":"SLE10-SDK-SP3-Online","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sled-10-x86_64/","autorefresh":true,"distro_target":"sled-10-x86_64","id":1326,"enabled":true},{"installer_updates":false,"name":"SLE10-SDK-SP3-Online","description":"SLE10-SDK-SP3-Online for sles-10-ia64","id":1328,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sles-10-ia64/","distro_target":"sles-10-ia64","autorefresh":true},{"description":"SLE10-SDK-SP3-Online for sles-10-i586","installer_updates":false,"name":"SLE10-SDK-SP3-Online","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sles-10-i586/","distro_target":"sles-10-i586","autorefresh":true,"id":1330,"enabled":true},{"id":1335,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sles-10-s390x/","autorefresh":true,"distro_target":"sles-10-s390x","name":"SLE10-SDK-SP3-Online","installer_updates":false,"description":"SLE10-SDK-SP3-Online for sles-10-s390x"},{"installer_updates":false,"name":"SLE10-SDK-SP3-Online","description":"SLE10-SDK-SP3-Online for sles-10-x86_64","enabled":true,"id":1341,"distro_target":"sles-10-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sles-10-x86_64/"},{"description":"SLE10-SDK-SP3-Online for sles-10-ppc","installer_updates":false,"name":"SLE10-SDK-SP3-Online","distro_target":"sles-10-ppc","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sles-10-ppc/","enabled":true,"id":1342}],"cpe":null,"product_type":"extension"},{"friendly_version":"10 SP3","extensions":[],"identifier":"SUSE-Linux-Enterprise-SMT-SP3","release_stage":"released","id":1197,"recommended":false,"version":"10.3","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Subscription Management Tool","former_identifier":"SUSE-Linux-Enterprise-SMT-SP3","release_type":null,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Subscription Management Tool 10 SP3","predecessor_ids":[],"repositories":[{"installer_updates":false,"name":"SLE10-SP3-Debuginfo-Updates","description":"SLE10-SP3-Debuginfo-Updates for sles-10-i586","enabled":false,"id":664,"distro_target":"sles-10-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Updates/sles-10-i586/"},{"description":"SLE10-SP3-Debuginfo-Pool for sles-10-i586","installer_updates":false,"name":"SLE10-SP3-Debuginfo-Pool","url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Pool/sles-10-i586/","distro_target":"sles-10-i586","autorefresh":false,"id":669,"enabled":false},{"installer_updates":false,"name":"SLE10-SP3-Debuginfo-Pool","description":"SLE10-SP3-Debuginfo-Pool for sles-10-s390x","enabled":false,"id":672,"distro_target":"sles-10-s390x","autorefresh":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Pool/sles-10-s390x/"},{"name":"SLE10-SP3-Debuginfo-Updates","installer_updates":false,"description":"SLE10-SP3-Debuginfo-Updates for sles-10-s390x","id":675,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Updates/sles-10-s390x/","autorefresh":true,"distro_target":"sles-10-s390x"},{"description":"SLE10-SP3-Debuginfo-Updates for sles-10-x86_64","installer_updates":false,"name":"SLE10-SP3-Debuginfo-Updates","url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Updates/sles-10-x86_64/","distro_target":"sles-10-x86_64","autorefresh":true,"id":750,"enabled":false},{"id":751,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Pool/sles-10-x86_64/","autorefresh":false,"distro_target":"sles-10-x86_64","name":"SLE10-SP3-Debuginfo-Pool","installer_updates":false,"description":"SLE10-SP3-Debuginfo-Pool for sles-10-x86_64"},{"url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Pool/sles-10-ppc/","autorefresh":false,"distro_target":"sles-10-ppc","id":779,"enabled":false,"description":"SLE10-SP3-Debuginfo-Pool for sles-10-ppc","name":"SLE10-SP3-Debuginfo-Pool","installer_updates":false},{"enabled":false,"id":780,"distro_target":"sles-10-ppc","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Updates/sles-10-ppc/","installer_updates":false,"name":"SLE10-SP3-Debuginfo-Updates","description":"SLE10-SP3-Debuginfo-Updates for sles-10-ppc"},{"description":"SLE10-SP3-Debuginfo-Pool for sles-10-ia64","name":"SLE10-SP3-Debuginfo-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sles-10-ia64","url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Pool/sles-10-ia64/","enabled":false,"id":788},{"url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Updates/sles-10-ia64/","distro_target":"sles-10-ia64","autorefresh":true,"id":789,"enabled":false,"description":"SLE10-SP3-Debuginfo-Updates for sles-10-ia64","installer_updates":false,"name":"SLE10-SP3-Debuginfo-Updates"},{"name":"SLE10-SP3-Debuginfo-Pool","installer_updates":false,"description":"SLE10-SP3-Debuginfo-Pool for sled-10-x86_64","id":869,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Pool/sled-10-x86_64/","autorefresh":false,"distro_target":"sled-10-x86_64"},{"name":"SLE10-SP3-Debuginfo-Updates","installer_updates":false,"description":"SLE10-SP3-Debuginfo-Updates for sled-10-x86_64","enabled":false,"id":870,"autorefresh":true,"distro_target":"sled-10-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Updates/sled-10-x86_64/"},{"description":"SLE10-SP3-Debuginfo-Pool for sled-10-i586","installer_updates":false,"name":"SLE10-SP3-Debuginfo-Pool","url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Pool/sled-10-i586/","distro_target":"sled-10-i586","autorefresh":false,"id":895,"enabled":false},{"description":"SLE10-SP3-Debuginfo-Updates for sled-10-i586","installer_updates":false,"name":"SLE10-SP3-Debuginfo-Updates","distro_target":"sled-10-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Updates/sled-10-i586/","enabled":false,"id":896},{"description":"SLE10-SP3-SMT-Updates for sles-10-i586","name":"SLE10-SP3-SMT-Updates","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-SMT-Updates/sles-10-i586/","autorefresh":true,"distro_target":"sles-10-i586","id":1403,"enabled":true},{"description":"SLE10-SP3-SMT-Updates for sles-10-x86_64","name":"SLE10-SP3-SMT-Updates","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-SMT-Updates/sles-10-x86_64/","autorefresh":true,"distro_target":"sles-10-x86_64","id":1404,"enabled":true}],"online_predecessor_ids":[],"product_class":"SLESMT","product_type":"extension","cpe":null,"free":true,"shortname":null,"description":null,"eula_url":"","arch":null}],"friendly_version":"10 SP3"},{"product_type":"base","cpe":null,"predecessor_ids":[],"online_predecessor_ids":[],"repositories":[{"url":"https://updates.suse.com/repo/$RCE/SLES10-SP3-Online/sles-10-s390x/","autorefresh":true,"distro_target":"sles-10-s390x","id":671,"enabled":false,"description":"SLES10-SP3-Online for sles-10-s390x","name":"SLES10-SP3-Online","installer_updates":false},{"installer_updates":false,"name":"SLE10-SP3-Debuginfo-Pool","description":"SLE10-SP3-Debuginfo-Pool for sles-10-s390x","enabled":false,"id":672,"distro_target":"sles-10-s390x","autorefresh":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Pool/sles-10-s390x/"},{"distro_target":"sles-10-s390x","autorefresh":false,"url":"https://updates.suse.com/repo/$RCE/SLES10-SP3-Pool/sles-10-s390x/","enabled":true,"id":673,"description":"SLES10-SP3-Pool for sles-10-s390x","installer_updates":false,"name":"SLES10-SP3-Pool"},{"description":"SLES10-SP3-LTSS-Updates for sles-10-s390x","installer_updates":false,"name":"SLES10-SP3-LTSS-Updates","url":"https://updates.suse.com/repo/$RCE/SLES10-SP3-LTSS-Updates/sles-10-s390x/","distro_target":"sles-10-s390x","autorefresh":true,"id":674,"enabled":true},{"id":675,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Updates/sles-10-s390x/","distro_target":"sles-10-s390x","autorefresh":true,"installer_updates":false,"name":"SLE10-SP3-Debuginfo-Updates","description":"SLE10-SP3-Debuginfo-Updates for sles-10-s390x"},{"id":676,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Online/sles-10-s390x/","distro_target":"sles-10-s390x","autorefresh":true,"installer_updates":false,"name":"SLE10-SP3-Debuginfo-Online","description":"SLE10-SP3-Debuginfo-Online for sles-10-s390x"},{"description":"SLES10-SP3-Updates for sles-10-s390x","installer_updates":false,"name":"SLES10-SP3-Updates","url":"https://updates.suse.com/repo/$RCE/SLES10-SP3-Updates/sles-10-s390x/","distro_target":"sles-10-s390x","autorefresh":true,"id":677,"enabled":true},{"description":"SLES10-GPLv3-Extras for sles-10-s390x","installer_updates":false,"name":"SLES10-GPLv3-Extras","url":"https://updates.suse.com/repo/$RCE/SLES10-GPLv3-Extras/sles-10-s390x/","distro_target":"sles-10-s390x","autorefresh":true,"id":678,"enabled":false}],"product_class":"SLES-Z","eula_url":"","arch":"s390x","free":false,"shortname":null,"description":null,"extensions":[{"product_type":"extension","cpe":null,"online_predecessor_ids":[],"product_class":"SLE-SDK","repositories":[{"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Pool/sles-10-ppc/","distro_target":"sles-10-ppc","autorefresh":false,"id":1322,"enabled":true,"description":"SLE10-SDK-SP3-Pool for sles-10-ppc","installer_updates":false,"name":"SLE10-SDK-SP3-Pool"},{"id":1323,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Pool/sles-10-x86_64/","distro_target":"sles-10-x86_64","autorefresh":false,"installer_updates":false,"name":"SLE10-SDK-SP3-Pool","description":"SLE10-SDK-SP3-Pool for sles-10-x86_64"},{"description":"SLE10-SDK-SP3-Online for sled-10-i586","installer_updates":false,"name":"SLE10-SDK-SP3-Online","distro_target":"sled-10-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sled-10-i586/","enabled":true,"id":1324},{"id":1325,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Updates/sled-10-x86_64/","distro_target":"sled-10-x86_64","autorefresh":true,"installer_updates":false,"name":"SLE10-SDK-SP3-Updates","description":"SLE10-SDK-SP3-Updates for sled-10-x86_64"},{"installer_updates":false,"name":"SLE10-SDK-SP3-Online","description":"SLE10-SDK-SP3-Online for sled-10-x86_64","enabled":true,"id":1326,"distro_target":"sled-10-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sled-10-x86_64/"},{"description":"SLE10-SDK-SP3-Pool for sled-10-x86_64","name":"SLE10-SDK-SP3-Pool","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Pool/sled-10-x86_64/","autorefresh":false,"distro_target":"sled-10-x86_64","id":1327,"enabled":true},{"installer_updates":false,"name":"SLE10-SDK-SP3-Online","description":"SLE10-SDK-SP3-Online for sles-10-ia64","enabled":true,"id":1328,"distro_target":"sles-10-ia64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sles-10-ia64/"},{"description":"SLE10-SDK-SP3-Updates for sles-10-ia64","name":"SLE10-SDK-SP3-Updates","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Updates/sles-10-ia64/","autorefresh":true,"distro_target":"sles-10-ia64","id":1329,"enabled":true},{"enabled":true,"id":1330,"distro_target":"sles-10-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sles-10-i586/","installer_updates":false,"name":"SLE10-SDK-SP3-Online","description":"SLE10-SDK-SP3-Online for sles-10-i586"},{"enabled":true,"id":1331,"autorefresh":false,"distro_target":"sles-10-ia64","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Pool/sles-10-ia64/","name":"SLE10-SDK-SP3-Pool","installer_updates":false,"description":"SLE10-SDK-SP3-Pool for sles-10-ia64"},{"description":"SLE10-SDK-SP3-Updates for sles-10-x86_64","installer_updates":false,"name":"SLE10-SDK-SP3-Updates","distro_target":"sles-10-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Updates/sles-10-x86_64/","enabled":true,"id":1332},{"enabled":true,"id":1333,"distro_target":"sles-10-i586","autorefresh":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Pool/sles-10-i586/","installer_updates":false,"name":"SLE10-SDK-SP3-Pool","description":"SLE10-SDK-SP3-Pool for sles-10-i586"},{"name":"SLE10-SDK-SP3-Updates","installer_updates":false,"description":"SLE10-SDK-SP3-Updates for sles-10-i586","id":1334,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Updates/sles-10-i586/","autorefresh":true,"distro_target":"sles-10-i586"},{"installer_updates":false,"name":"SLE10-SDK-SP3-Online","description":"SLE10-SDK-SP3-Online for sles-10-s390x","enabled":true,"id":1335,"distro_target":"sles-10-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sles-10-s390x/"},{"description":"SLE10-SDK-SP3-Updates for sles-10-ppc","installer_updates":false,"name":"SLE10-SDK-SP3-Updates","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Updates/sles-10-ppc/","distro_target":"sles-10-ppc","autorefresh":true,"id":1336,"enabled":true},{"name":"SLE10-SDK-SP3-Pool","installer_updates":false,"description":"SLE10-SDK-SP3-Pool for sles-10-s390x","id":1337,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Pool/sles-10-s390x/","autorefresh":false,"distro_target":"sles-10-s390x"},{"installer_updates":false,"name":"SLE10-SDK-SP3-Pool","description":"SLE10-SDK-SP3-Pool for sled-10-i586","id":1338,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Pool/sled-10-i586/","distro_target":"sled-10-i586","autorefresh":false},{"description":"SLE10-SDK-SP3-Updates for sles-10-s390x","installer_updates":false,"name":"SLE10-SDK-SP3-Updates","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Updates/sles-10-s390x/","distro_target":"sles-10-s390x","autorefresh":true,"id":1339,"enabled":true},{"installer_updates":false,"name":"SLE10-SDK-SP3-Updates","description":"SLE10-SDK-SP3-Updates for sled-10-i586","id":1340,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Updates/sled-10-i586/","distro_target":"sled-10-i586","autorefresh":true},{"installer_updates":false,"name":"SLE10-SDK-SP3-Online","description":"SLE10-SDK-SP3-Online for sles-10-x86_64","id":1341,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sles-10-x86_64/","distro_target":"sles-10-x86_64","autorefresh":true},{"id":1342,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sles-10-ppc/","distro_target":"sles-10-ppc","autorefresh":true,"installer_updates":false,"name":"SLE10-SDK-SP3-Online","description":"SLE10-SDK-SP3-Online for sles-10-ppc"}],"predecessor_ids":[],"arch":null,"eula_url":"","free":true,"shortname":null,"description":null,"identifier":"SUSE-Linux-Enterprise-SDK-SP3","release_stage":"released","id":1179,"extensions":[],"friendly_version":"10 SP3","former_identifier":"SUSE-Linux-Enterprise-SDK-SP3","release_type":null,"friendly_name":"SUSE Linux Enterprise Software Development Kit 10 SP3","migration_extra":false,"offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Software Development Kit","version":"10","recommended":false},{"predecessor_ids":[],"online_predecessor_ids":[],"product_class":"SLE-SDK","repositories":[{"autorefresh":true,"distro_target":"sled-10-i586","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sled-10-i586/","enabled":true,"id":1324,"description":"SLE10-SDK-SP3-Online for sled-10-i586","name":"SLE10-SDK-SP3-Online","installer_updates":false},{"id":1326,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sled-10-x86_64/","distro_target":"sled-10-x86_64","autorefresh":true,"installer_updates":false,"name":"SLE10-SDK-SP3-Online","description":"SLE10-SDK-SP3-Online for sled-10-x86_64"},{"installer_updates":false,"name":"SLE10-SDK-SP3-Online","description":"SLE10-SDK-SP3-Online for sles-10-ia64","enabled":true,"id":1328,"distro_target":"sles-10-ia64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sles-10-ia64/"},{"name":"SLE10-SDK-SP3-Online","installer_updates":false,"description":"SLE10-SDK-SP3-Online for sles-10-i586","enabled":true,"id":1330,"autorefresh":true,"distro_target":"sles-10-i586","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sles-10-i586/"},{"id":1335,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sles-10-s390x/","autorefresh":true,"distro_target":"sles-10-s390x","name":"SLE10-SDK-SP3-Online","installer_updates":false,"description":"SLE10-SDK-SP3-Online for sles-10-s390x"},{"description":"SLE10-SDK-SP3-Online for sles-10-x86_64","name":"SLE10-SDK-SP3-Online","installer_updates":false,"autorefresh":true,"distro_target":"sles-10-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sles-10-x86_64/","enabled":true,"id":1341},{"id":1342,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sles-10-ppc/","autorefresh":true,"distro_target":"sles-10-ppc","name":"SLE10-SDK-SP3-Online","installer_updates":false,"description":"SLE10-SDK-SP3-Online for sles-10-ppc"}],"cpe":null,"product_type":"extension","description":null,"shortname":null,"free":true,"eula_url":"","arch":null,"friendly_version":"10","extensions":[],"release_stage":"released","identifier":"SUSE-Linux-Enterprise-SDK-SP3-migration","id":1180,"recommended":false,"version":"10","name":"SUSE Linux Enterprise Software Development Kit","offline_predecessor_ids":[],"friendly_name":"SUSE Linux Enterprise Software Development Kit 10 (Migration)","migration_extra":false,"release_type":null,"former_identifier":"SUSE-Linux-Enterprise-SDK-SP3-migration"},{"version":"10.3","recommended":false,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Subscription Management Tool 10 SP3","release_type":null,"former_identifier":"SUSE-Linux-Enterprise-SMT-SP3","name":"SUSE Linux Enterprise Subscription Management Tool","offline_predecessor_ids":[],"friendly_version":"10 SP3","id":1197,"release_stage":"released","identifier":"SUSE-Linux-Enterprise-SMT-SP3","extensions":[],"description":null,"shortname":null,"free":true,"arch":null,"eula_url":"","product_class":"SLESMT","online_predecessor_ids":[],"repositories":[{"id":664,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Updates/sles-10-i586/","autorefresh":true,"distro_target":"sles-10-i586","name":"SLE10-SP3-Debuginfo-Updates","installer_updates":false,"description":"SLE10-SP3-Debuginfo-Updates for sles-10-i586"},{"description":"SLE10-SP3-Debuginfo-Pool for sles-10-i586","name":"SLE10-SP3-Debuginfo-Pool","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Pool/sles-10-i586/","autorefresh":false,"distro_target":"sles-10-i586","id":669,"enabled":false},{"description":"SLE10-SP3-Debuginfo-Pool for sles-10-s390x","installer_updates":false,"name":"SLE10-SP3-Debuginfo-Pool","url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Pool/sles-10-s390x/","distro_target":"sles-10-s390x","autorefresh":false,"id":672,"enabled":false},{"installer_updates":false,"name":"SLE10-SP3-Debuginfo-Updates","description":"SLE10-SP3-Debuginfo-Updates for sles-10-s390x","enabled":false,"id":675,"distro_target":"sles-10-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Updates/sles-10-s390x/"},{"id":750,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Updates/sles-10-x86_64/","autorefresh":true,"distro_target":"sles-10-x86_64","name":"SLE10-SP3-Debuginfo-Updates","installer_updates":false,"description":"SLE10-SP3-Debuginfo-Updates for sles-10-x86_64"},{"name":"SLE10-SP3-Debuginfo-Pool","installer_updates":false,"description":"SLE10-SP3-Debuginfo-Pool for sles-10-x86_64","id":751,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Pool/sles-10-x86_64/","autorefresh":false,"distro_target":"sles-10-x86_64"},{"description":"SLE10-SP3-Debuginfo-Pool for sles-10-ppc","name":"SLE10-SP3-Debuginfo-Pool","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Pool/sles-10-ppc/","autorefresh":false,"distro_target":"sles-10-ppc","id":779,"enabled":false},{"installer_updates":false,"name":"SLE10-SP3-Debuginfo-Updates","description":"SLE10-SP3-Debuginfo-Updates for sles-10-ppc","id":780,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Updates/sles-10-ppc/","distro_target":"sles-10-ppc","autorefresh":true},{"url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Pool/sles-10-ia64/","autorefresh":false,"distro_target":"sles-10-ia64","id":788,"enabled":false,"description":"SLE10-SP3-Debuginfo-Pool for sles-10-ia64","name":"SLE10-SP3-Debuginfo-Pool","installer_updates":false},{"id":789,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Updates/sles-10-ia64/","distro_target":"sles-10-ia64","autorefresh":true,"installer_updates":false,"name":"SLE10-SP3-Debuginfo-Updates","description":"SLE10-SP3-Debuginfo-Updates for sles-10-ia64"},{"installer_updates":false,"name":"SLE10-SP3-Debuginfo-Pool","description":"SLE10-SP3-Debuginfo-Pool for sled-10-x86_64","enabled":false,"id":869,"distro_target":"sled-10-x86_64","autorefresh":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Pool/sled-10-x86_64/"},{"description":"SLE10-SP3-Debuginfo-Updates for sled-10-x86_64","installer_updates":false,"name":"SLE10-SP3-Debuginfo-Updates","url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Updates/sled-10-x86_64/","distro_target":"sled-10-x86_64","autorefresh":true,"id":870,"enabled":false},{"enabled":false,"id":895,"autorefresh":false,"distro_target":"sled-10-i586","url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Pool/sled-10-i586/","name":"SLE10-SP3-Debuginfo-Pool","installer_updates":false,"description":"SLE10-SP3-Debuginfo-Pool for sled-10-i586"},{"description":"SLE10-SP3-Debuginfo-Updates for sled-10-i586","name":"SLE10-SP3-Debuginfo-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sled-10-i586","url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Updates/sled-10-i586/","enabled":false,"id":896},{"id":1403,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-SMT-Updates/sles-10-i586/","autorefresh":true,"distro_target":"sles-10-i586","name":"SLE10-SP3-SMT-Updates","installer_updates":false,"description":"SLE10-SP3-SMT-Updates for sles-10-i586"},{"url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-SMT-Updates/sles-10-x86_64/","autorefresh":true,"distro_target":"sles-10-x86_64","id":1404,"enabled":true,"description":"SLE10-SP3-SMT-Updates for sles-10-x86_64","name":"SLE10-SP3-SMT-Updates","installer_updates":false}],"predecessor_ids":[],"cpe":null,"product_type":"extension"}],"identifier":"SUSE-Linux-Enterprise-Server-SP3","release_stage":"released","id":682,"friendly_version":"10 SP3","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Server","release_type":null,"former_identifier":"SUSE-Linux-Enterprise-Server-SP3","friendly_name":"SUSE Linux Enterprise Server 10 SP3 s390x","migration_extra":false,"recommended":false,"version":"10"},{"identifier":"SUSE-Linux-Enterprise-Server-SP3","release_stage":"released","id":683,"extensions":[{"version":"10","recommended":false,"release_type":null,"former_identifier":"SUSE-Linux-Enterprise-SDK-SP3","friendly_name":"SUSE Linux Enterprise Software Development Kit 10 SP3","migration_extra":false,"offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Software Development Kit","friendly_version":"10 SP3","release_stage":"released","identifier":"SUSE-Linux-Enterprise-SDK-SP3","id":1179,"extensions":[],"free":true,"description":null,"shortname":null,"arch":null,"eula_url":"","repositories":[{"id":1322,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Pool/sles-10-ppc/","distro_target":"sles-10-ppc","autorefresh":false,"installer_updates":false,"name":"SLE10-SDK-SP3-Pool","description":"SLE10-SDK-SP3-Pool for sles-10-ppc"},{"id":1323,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Pool/sles-10-x86_64/","autorefresh":false,"distro_target":"sles-10-x86_64","name":"SLE10-SDK-SP3-Pool","installer_updates":false,"description":"SLE10-SDK-SP3-Pool for sles-10-x86_64"},{"id":1324,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sled-10-i586/","distro_target":"sled-10-i586","autorefresh":true,"installer_updates":false,"name":"SLE10-SDK-SP3-Online","description":"SLE10-SDK-SP3-Online for sled-10-i586"},{"installer_updates":false,"name":"SLE10-SDK-SP3-Updates","description":"SLE10-SDK-SP3-Updates for sled-10-x86_64","enabled":true,"id":1325,"distro_target":"sled-10-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Updates/sled-10-x86_64/"},{"distro_target":"sled-10-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sled-10-x86_64/","enabled":true,"id":1326,"description":"SLE10-SDK-SP3-Online for sled-10-x86_64","installer_updates":false,"name":"SLE10-SDK-SP3-Online"},{"name":"SLE10-SDK-SP3-Pool","installer_updates":false,"description":"SLE10-SDK-SP3-Pool for sled-10-x86_64","enabled":true,"id":1327,"autorefresh":false,"distro_target":"sled-10-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Pool/sled-10-x86_64/"},{"name":"SLE10-SDK-SP3-Online","installer_updates":false,"description":"SLE10-SDK-SP3-Online for sles-10-ia64","enabled":true,"id":1328,"autorefresh":true,"distro_target":"sles-10-ia64","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sles-10-ia64/"},{"id":1329,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Updates/sles-10-ia64/","autorefresh":true,"distro_target":"sles-10-ia64","name":"SLE10-SDK-SP3-Updates","installer_updates":false,"description":"SLE10-SDK-SP3-Updates for sles-10-ia64"},{"description":"SLE10-SDK-SP3-Online for sles-10-i586","installer_updates":false,"name":"SLE10-SDK-SP3-Online","distro_target":"sles-10-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sles-10-i586/","enabled":true,"id":1330},{"installer_updates":false,"name":"SLE10-SDK-SP3-Pool","description":"SLE10-SDK-SP3-Pool for sles-10-ia64","enabled":true,"id":1331,"distro_target":"sles-10-ia64","autorefresh":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Pool/sles-10-ia64/"},{"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Updates/sles-10-x86_64/","distro_target":"sles-10-x86_64","autorefresh":true,"id":1332,"enabled":true,"description":"SLE10-SDK-SP3-Updates for sles-10-x86_64","installer_updates":false,"name":"SLE10-SDK-SP3-Updates"},{"name":"SLE10-SDK-SP3-Pool","installer_updates":false,"description":"SLE10-SDK-SP3-Pool for sles-10-i586","enabled":true,"id":1333,"autorefresh":false,"distro_target":"sles-10-i586","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Pool/sles-10-i586/"},{"id":1334,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Updates/sles-10-i586/","autorefresh":true,"distro_target":"sles-10-i586","name":"SLE10-SDK-SP3-Updates","installer_updates":false,"description":"SLE10-SDK-SP3-Updates for sles-10-i586"},{"installer_updates":false,"name":"SLE10-SDK-SP3-Online","description":"SLE10-SDK-SP3-Online for sles-10-s390x","enabled":true,"id":1335,"distro_target":"sles-10-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sles-10-s390x/"},{"id":1336,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Updates/sles-10-ppc/","distro_target":"sles-10-ppc","autorefresh":true,"installer_updates":false,"name":"SLE10-SDK-SP3-Updates","description":"SLE10-SDK-SP3-Updates for sles-10-ppc"},{"description":"SLE10-SDK-SP3-Pool for sles-10-s390x","name":"SLE10-SDK-SP3-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sles-10-s390x","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Pool/sles-10-s390x/","enabled":true,"id":1337},{"id":1338,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Pool/sled-10-i586/","distro_target":"sled-10-i586","autorefresh":false,"installer_updates":false,"name":"SLE10-SDK-SP3-Pool","description":"SLE10-SDK-SP3-Pool for sled-10-i586"},{"enabled":true,"id":1339,"autorefresh":true,"distro_target":"sles-10-s390x","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Updates/sles-10-s390x/","name":"SLE10-SDK-SP3-Updates","installer_updates":false,"description":"SLE10-SDK-SP3-Updates for sles-10-s390x"},{"id":1340,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Updates/sled-10-i586/","autorefresh":true,"distro_target":"sled-10-i586","name":"SLE10-SDK-SP3-Updates","installer_updates":false,"description":"SLE10-SDK-SP3-Updates for sled-10-i586"},{"enabled":true,"id":1341,"distro_target":"sles-10-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sles-10-x86_64/","installer_updates":false,"name":"SLE10-SDK-SP3-Online","description":"SLE10-SDK-SP3-Online for sles-10-x86_64"},{"name":"SLE10-SDK-SP3-Online","installer_updates":false,"description":"SLE10-SDK-SP3-Online for sles-10-ppc","enabled":true,"id":1342,"autorefresh":true,"distro_target":"sles-10-ppc","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sles-10-ppc/"}],"online_predecessor_ids":[],"product_class":"SLE-SDK","predecessor_ids":[],"product_type":"extension","cpe":null},{"free":true,"shortname":null,"description":null,"arch":null,"eula_url":"","online_predecessor_ids":[],"product_class":"SLE-SDK","repositories":[{"description":"SLE10-SDK-SP3-Online for sled-10-i586","installer_updates":false,"name":"SLE10-SDK-SP3-Online","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sled-10-i586/","distro_target":"sled-10-i586","autorefresh":true,"id":1324,"enabled":true},{"autorefresh":true,"distro_target":"sled-10-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sled-10-x86_64/","enabled":true,"id":1326,"description":"SLE10-SDK-SP3-Online for sled-10-x86_64","name":"SLE10-SDK-SP3-Online","installer_updates":false},{"autorefresh":true,"distro_target":"sles-10-ia64","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sles-10-ia64/","enabled":true,"id":1328,"description":"SLE10-SDK-SP3-Online for sles-10-ia64","name":"SLE10-SDK-SP3-Online","installer_updates":false},{"enabled":true,"id":1330,"distro_target":"sles-10-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sles-10-i586/","installer_updates":false,"name":"SLE10-SDK-SP3-Online","description":"SLE10-SDK-SP3-Online for sles-10-i586"},{"distro_target":"sles-10-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sles-10-s390x/","enabled":true,"id":1335,"description":"SLE10-SDK-SP3-Online for sles-10-s390x","installer_updates":false,"name":"SLE10-SDK-SP3-Online"},{"enabled":true,"id":1341,"distro_target":"sles-10-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sles-10-x86_64/","installer_updates":false,"name":"SLE10-SDK-SP3-Online","description":"SLE10-SDK-SP3-Online for sles-10-x86_64"},{"distro_target":"sles-10-ppc","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sles-10-ppc/","enabled":true,"id":1342,"description":"SLE10-SDK-SP3-Online for sles-10-ppc","installer_updates":false,"name":"SLE10-SDK-SP3-Online"}],"predecessor_ids":[],"product_type":"extension","cpe":null,"version":"10","recommended":false,"former_identifier":"SUSE-Linux-Enterprise-SDK-SP3-migration","release_type":null,"friendly_name":"SUSE Linux Enterprise Software Development Kit 10 (Migration)","migration_extra":false,"offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Software Development Kit","friendly_version":"10","release_stage":"released","id":1180,"identifier":"SUSE-Linux-Enterprise-SDK-SP3-migration","extensions":[]},{"recommended":false,"version":"10.3","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Subscription Management Tool","former_identifier":"SUSE-Linux-Enterprise-SMT-SP3","release_type":null,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Subscription Management Tool 10 SP3","friendly_version":"10 SP3","extensions":[],"release_stage":"released","identifier":"SUSE-Linux-Enterprise-SMT-SP3","id":1197,"free":true,"shortname":null,"description":null,"eula_url":"","arch":null,"predecessor_ids":[],"repositories":[{"name":"SLE10-SP3-Debuginfo-Updates","installer_updates":false,"description":"SLE10-SP3-Debuginfo-Updates for sles-10-i586","enabled":false,"id":664,"autorefresh":true,"distro_target":"sles-10-i586","url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Updates/sles-10-i586/"},{"distro_target":"sles-10-i586","autorefresh":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Pool/sles-10-i586/","enabled":false,"id":669,"description":"SLE10-SP3-Debuginfo-Pool for sles-10-i586","installer_updates":false,"name":"SLE10-SP3-Debuginfo-Pool"},{"description":"SLE10-SP3-Debuginfo-Pool for sles-10-s390x","installer_updates":false,"name":"SLE10-SP3-Debuginfo-Pool","url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Pool/sles-10-s390x/","distro_target":"sles-10-s390x","autorefresh":false,"id":672,"enabled":false},{"id":675,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Updates/sles-10-s390x/","autorefresh":true,"distro_target":"sles-10-s390x","name":"SLE10-SP3-Debuginfo-Updates","installer_updates":false,"description":"SLE10-SP3-Debuginfo-Updates for sles-10-s390x"},{"id":750,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Updates/sles-10-x86_64/","autorefresh":true,"distro_target":"sles-10-x86_64","name":"SLE10-SP3-Debuginfo-Updates","installer_updates":false,"description":"SLE10-SP3-Debuginfo-Updates for sles-10-x86_64"},{"enabled":false,"id":751,"autorefresh":false,"distro_target":"sles-10-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Pool/sles-10-x86_64/","name":"SLE10-SP3-Debuginfo-Pool","installer_updates":false,"description":"SLE10-SP3-Debuginfo-Pool for sles-10-x86_64"},{"autorefresh":false,"distro_target":"sles-10-ppc","url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Pool/sles-10-ppc/","enabled":false,"id":779,"description":"SLE10-SP3-Debuginfo-Pool for sles-10-ppc","name":"SLE10-SP3-Debuginfo-Pool","installer_updates":false},{"id":780,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Updates/sles-10-ppc/","distro_target":"sles-10-ppc","autorefresh":true,"installer_updates":false,"name":"SLE10-SP3-Debuginfo-Updates","description":"SLE10-SP3-Debuginfo-Updates for sles-10-ppc"},{"enabled":false,"id":788,"distro_target":"sles-10-ia64","autorefresh":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Pool/sles-10-ia64/","installer_updates":false,"name":"SLE10-SP3-Debuginfo-Pool","description":"SLE10-SP3-Debuginfo-Pool for sles-10-ia64"},{"id":789,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Updates/sles-10-ia64/","autorefresh":true,"distro_target":"sles-10-ia64","name":"SLE10-SP3-Debuginfo-Updates","installer_updates":false,"description":"SLE10-SP3-Debuginfo-Updates for sles-10-ia64"},{"name":"SLE10-SP3-Debuginfo-Pool","installer_updates":false,"description":"SLE10-SP3-Debuginfo-Pool for sled-10-x86_64","id":869,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Pool/sled-10-x86_64/","autorefresh":false,"distro_target":"sled-10-x86_64"},{"enabled":false,"id":870,"distro_target":"sled-10-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Updates/sled-10-x86_64/","installer_updates":false,"name":"SLE10-SP3-Debuginfo-Updates","description":"SLE10-SP3-Debuginfo-Updates for sled-10-x86_64"},{"enabled":false,"id":895,"distro_target":"sled-10-i586","autorefresh":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Pool/sled-10-i586/","installer_updates":false,"name":"SLE10-SP3-Debuginfo-Pool","description":"SLE10-SP3-Debuginfo-Pool for sled-10-i586"},{"name":"SLE10-SP3-Debuginfo-Updates","installer_updates":false,"description":"SLE10-SP3-Debuginfo-Updates for sled-10-i586","enabled":false,"id":896,"autorefresh":true,"distro_target":"sled-10-i586","url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Updates/sled-10-i586/"},{"name":"SLE10-SP3-SMT-Updates","installer_updates":false,"description":"SLE10-SP3-SMT-Updates for sles-10-i586","id":1403,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-SMT-Updates/sles-10-i586/","autorefresh":true,"distro_target":"sles-10-i586"},{"description":"SLE10-SP3-SMT-Updates for sles-10-x86_64","installer_updates":false,"name":"SLE10-SP3-SMT-Updates","url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-SMT-Updates/sles-10-x86_64/","distro_target":"sles-10-x86_64","autorefresh":true,"id":1404,"enabled":true}],"online_predecessor_ids":[],"product_class":"SLESMT","product_type":"extension","cpe":null}],"friendly_version":"10 SP3","former_identifier":"SUSE-Linux-Enterprise-Server-SP3","release_type":"online","migration_extra":false,"friendly_name":"SUSE Linux Enterprise Server 10 SP3 online i486","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Server","version":"10","recommended":false,"product_type":"base","cpe":null,"product_class":"7261","online_predecessor_ids":[],"repositories":[{"id":663,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLES10-SP3-Online/sles-10-i586/","distro_target":"sles-10-i586","autorefresh":true,"installer_updates":false,"name":"SLES10-SP3-Online","description":"SLES10-SP3-Online for sles-10-i586"},{"installer_updates":false,"name":"SLE10-SP3-Debuginfo-Updates","description":"SLE10-SP3-Debuginfo-Updates for sles-10-i586","enabled":false,"id":664,"distro_target":"sles-10-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Updates/sles-10-i586/"},{"autorefresh":true,"distro_target":"sles-10-i586","url":"https://updates.suse.com/repo/$RCE/SLES10-SP3-LTSS-Updates/sles-10-i586/","enabled":true,"id":666,"description":"SLES10-SP3-LTSS-Updates for sles-10-i586","name":"SLES10-SP3-LTSS-Updates","installer_updates":false},{"description":"SLE10-SP3-Debuginfo-Online for sles-10-i586","installer_updates":false,"name":"SLE10-SP3-Debuginfo-Online","distro_target":"sles-10-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Online/sles-10-i586/","enabled":false,"id":667},{"distro_target":"sles-10-i586","autorefresh":false,"url":"https://updates.suse.com/repo/$RCE/SLES10-SP3-Pool/sles-10-i586/","enabled":false,"id":668,"description":"SLES10-SP3-Pool for sles-10-i586","installer_updates":false,"name":"SLES10-SP3-Pool"},{"url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Pool/sles-10-i586/","autorefresh":false,"distro_target":"sles-10-i586","id":669,"enabled":false,"description":"SLE10-SP3-Debuginfo-Pool for sles-10-i586","name":"SLE10-SP3-Debuginfo-Pool","installer_updates":false},{"description":"SLES10-SP3-Updates for sles-10-i586","name":"SLES10-SP3-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sles-10-i586","url":"https://updates.suse.com/repo/$RCE/SLES10-SP3-Updates/sles-10-i586/","enabled":true,"id":670}],"predecessor_ids":[],"arch":"i486","eula_url":"","free":false,"shortname":null,"description":null},{"extensions":[{"free":true,"description":null,"shortname":null,"eula_url":"","arch":null,"predecessor_ids":[],"online_predecessor_ids":[],"repositories":[{"name":"SLE11-SP1-WebYaST-1.1-Updates","installer_updates":false,"description":"SLE11-SP1-WebYaST-1.1-Updates for sle-11-i586","id":825,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-WebYaST-1.1-Updates/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586"},{"id":826,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-WebYaST-1.1-Pool/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","name":"SLE11-SP1-WebYaST-1.1-Pool","installer_updates":false,"description":"SLE11-SP1-WebYaST-1.1-Pool for sle-11-i586"},{"installer_updates":false,"name":"SLE11-SP1-WebYaST-1.1-Pool","description":"SLE11-SP1-WebYaST-1.1-Pool for sle-11-x86_64","id":827,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-WebYaST-1.1-Pool/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true},{"description":"SLE11-SP1-WebYaST-1.1-Updates for sle-11-x86_64","name":"SLE11-SP1-WebYaST-1.1-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-WebYaST-1.1-Updates/sle-11-x86_64/","enabled":true,"id":828}],"product_class":"WEBYAST","product_type":"extension","cpe":null,"recommended":false,"version":"1.1","offline_predecessor_ids":[],"name":"SUSE WebYaST","release_type":null,"former_identifier":"sle-11-WebYaST","migration_extra":false,"friendly_name":"SUSE WebYaST 1.1","friendly_version":"1.1","extensions":[],"id":835,"release_stage":"released","identifier":"sle-11-WebYaST"},{"release_type":null,"former_identifier":"sle-hae","friendly_name":"SUSE Linux Enterprise High Availability Extension 11 SP1 i586","migration_extra":false,"offline_predecessor_ids":[],"name":"SUSE Linux Enterprise High Availability Extension","version":"11.1","recommended":false,"id":959,"release_stage":"released","identifier":"sle-hae","extensions":[],"friendly_version":"11 SP1","arch":"i586","eula_url":"","free":false,"shortname":null,"description":null,"product_type":"extension","cpe":null,"online_predecessor_ids":[],"product_class":"SLE-HAE-X86","repositories":[{"name":"SLE11-HAE-SP1-Updates","installer_updates":false,"description":"SLE11-HAE-SP1-Updates for sle-11-i586","id":944,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP1-Updates/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586"},{"installer_updates":false,"name":"SLE11-HAE-SP1-Pool","description":"SLE11-HAE-SP1-Pool for sle-11-i586","enabled":true,"id":945,"distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP1-Pool/sle-11-i586/"}],"predecessor_ids":[]},{"friendly_version":"11 SP1","extensions":[],"release_stage":"released","identifier":"sle-hae-SP2-migration","id":963,"recommended":false,"version":"11.1","name":"SUSE Linux Enterprise High Availability Extension","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"SUSE Linux Enterprise High Availability Extension 11 SP1 i586 (Migration)","release_type":null,"former_identifier":"sle-hae-SP2-migration","predecessor_ids":[],"online_predecessor_ids":[],"product_class":"SLE-HAE-X86","repositories":[{"description":"SLE11-HAE-SP2-Pool for sle-11-i586","installer_updates":false,"name":"SLE11-HAE-SP2-Pool","distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP2-Pool/sle-11-i586/","enabled":true,"id":949},{"installer_updates":false,"name":"SLE11-HAE-SP2-Updates","description":"SLE11-HAE-SP2-Updates for sle-11-i586","id":950,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP2-Updates/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true}],"cpe":null,"product_type":"extension","shortname":null,"description":null,"free":false,"eula_url":"","arch":"i586"},{"predecessor_ids":[],"online_predecessor_ids":[],"repositories":[{"name":"SLE11-SDK-SP1-Updates","installer_updates":false,"description":"SLE11-SDK-SP1-Updates for sle-11-ia64","id":1257,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Updates/sle-11-ia64/","autorefresh":true,"distro_target":"sle-11-ia64"},{"id":1258,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-ia64/","distro_target":"sle-11-ia64","autorefresh":true,"installer_updates":false,"name":"SLE11-SDK-SP1-Pool","description":"SLE11-SDK-SP1-Pool for sle-11-ia64"},{"id":1259,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-s390x/","distro_target":"sle-11-s390x","autorefresh":true,"installer_updates":false,"name":"SLE11-SDK-SP1-Pool","description":"SLE11-SDK-SP1-Pool for sle-11-s390x"},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Updates/sle-11-ppc64/","autorefresh":true,"distro_target":"sle-11-ppc64","id":1260,"enabled":true,"description":"SLE11-SDK-SP1-Updates for sle-11-ppc64","name":"SLE11-SDK-SP1-Updates","installer_updates":false},{"enabled":true,"id":1261,"autorefresh":true,"distro_target":"sle-11-ppc64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-ppc64/","name":"SLE11-SDK-SP1-Pool","installer_updates":false,"description":"SLE11-SDK-SP1-Pool for sle-11-ppc64"},{"name":"SLE11-SDK-SP1-Updates","installer_updates":false,"description":"SLE11-SDK-SP1-Updates for sle-11-i586","enabled":true,"id":1262,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Updates/sle-11-i586/"},{"description":"SLE11-SDK-SP1-Pool for sle-11-i586","installer_updates":false,"name":"SLE11-SDK-SP1-Pool","distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-i586/","enabled":true,"id":1263},{"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-x86_64/","enabled":true,"id":1264,"description":"SLE11-SDK-SP1-Pool for sle-11-x86_64","name":"SLE11-SDK-SP1-Pool","installer_updates":false},{"installer_updates":false,"name":"SLE11-SDK-SP1-Updates","description":"SLE11-SDK-SP1-Updates for sle-11-x86_64","enabled":true,"id":1265,"distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Updates/sle-11-x86_64/"},{"installer_updates":false,"name":"SLE11-SDK-SP1-Updates","description":"SLE11-SDK-SP1-Updates for sle-11-s390x","id":1266,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Updates/sle-11-s390x/","distro_target":"sle-11-s390x","autorefresh":true}],"product_class":"SLE-SDK","cpe":null,"product_type":"extension","description":null,"shortname":null,"free":true,"eula_url":"","arch":null,"friendly_version":"11 SP1","extensions":[],"release_stage":"released","identifier":"sle-sdk","id":1159,"recommended":false,"version":"11.1","name":"SUSE Linux Enterprise Software Development Kit","offline_predecessor_ids":[],"friendly_name":"SUSE Linux Enterprise Software Development Kit 11 SP1","migration_extra":false,"release_type":null,"former_identifier":"sle-sdk"},{"friendly_version":"11","identifier":"sle-sdk-SP1-migration","release_stage":"released","id":1162,"extensions":[],"version":"11","recommended":false,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Software Development Kit 11 (Migration)","release_type":null,"former_identifier":"sle-sdk-SP1-migration","name":"SUSE Linux Enterprise Software Development Kit","offline_predecessor_ids":[],"product_class":"SLE-SDK","online_predecessor_ids":[],"repositories":[{"enabled":true,"id":1258,"autorefresh":true,"distro_target":"sle-11-ia64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-ia64/","name":"SLE11-SDK-SP1-Pool","installer_updates":false,"description":"SLE11-SDK-SP1-Pool for sle-11-ia64"},{"description":"SLE11-SDK-SP1-Pool for sle-11-s390x","installer_updates":false,"name":"SLE11-SDK-SP1-Pool","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-s390x/","distro_target":"sle-11-s390x","autorefresh":true,"id":1259,"enabled":true},{"enabled":true,"id":1261,"distro_target":"sle-11-ppc64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-ppc64/","installer_updates":false,"name":"SLE11-SDK-SP1-Pool","description":"SLE11-SDK-SP1-Pool for sle-11-ppc64"},{"distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-i586/","enabled":true,"id":1263,"description":"SLE11-SDK-SP1-Pool for sle-11-i586","installer_updates":false,"name":"SLE11-SDK-SP1-Pool"},{"name":"SLE11-SDK-SP1-Pool","installer_updates":false,"description":"SLE11-SDK-SP1-Pool for sle-11-x86_64","enabled":true,"id":1264,"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-x86_64/"}],"predecessor_ids":[],"cpe":null,"product_type":"extension","description":null,"shortname":null,"free":true,"arch":null,"eula_url":""},{"free":true,"shortname":null,"description":null,"arch":null,"eula_url":"","online_predecessor_ids":[],"product_class":"SLE-SDK","repositories":[{"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-ia64/","distro_target":"sle-11-ia64","autorefresh":true,"id":1267,"enabled":true,"description":"SLE11-SDK-SP2-Core for sle-11-ia64","installer_updates":false,"name":"SLE11-SDK-SP2-Core"},{"id":1268,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-s390x/","distro_target":"sle-11-s390x","autorefresh":true,"installer_updates":false,"name":"SLE11-SDK-SP2-Core","description":"SLE11-SDK-SP2-Core for sle-11-s390x"},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-s390x/","distro_target":"sle-11-s390x","autorefresh":true,"id":1269,"enabled":true,"description":"SLE11-SDK-SP2-Updates for sle-11-s390x","installer_updates":false,"name":"SLE11-SDK-SP2-Updates"},{"id":1270,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-ppc64/","autorefresh":true,"distro_target":"sle-11-ppc64","name":"SLE11-SDK-SP2-Updates","installer_updates":false,"description":"SLE11-SDK-SP2-Updates for sle-11-ppc64"},{"description":"SLE11-SDK-SP2-Updates for sle-11-i586","installer_updates":false,"name":"SLE11-SDK-SP2-Updates","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true,"id":1271,"enabled":true},{"id":1272,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-ia64/","autorefresh":true,"distro_target":"sle-11-ia64","name":"SLE11-SDK-SP2-Updates","installer_updates":false,"description":"SLE11-SDK-SP2-Updates for sle-11-ia64"},{"distro_target":"sle-11-ppc64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-ppc64/","enabled":true,"id":1273,"description":"SLE11-SDK-SP2-Core for sle-11-ppc64","installer_updates":false,"name":"SLE11-SDK-SP2-Core"},{"description":"SLE11-SDK-SP2-Core for sle-11-i586","name":"SLE11-SDK-SP2-Core","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-i586/","enabled":true,"id":1274},{"name":"SLE11-SDK-SP2-Core","installer_updates":false,"description":"SLE11-SDK-SP2-Core for sle-11-x86_64","id":1275,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64"},{"name":"SLE11-SDK-SP2-Updates","installer_updates":false,"description":"SLE11-SDK-SP2-Updates for sle-11-x86_64","enabled":true,"id":1276,"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-x86_64/"}],"predecessor_ids":[],"product_type":"extension","cpe":null,"version":"11.1","recommended":false,"release_type":null,"former_identifier":"sle-sdk-SP2-migration","migration_extra":false,"friendly_name":"SUSE Linux Enterprise Software Development Kit 11 SP1 (Migration)","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Software Development Kit","friendly_version":"11 SP1","identifier":"sle-sdk-SP2-migration","release_stage":"released","id":1163,"extensions":[]},{"friendly_name":"SUSE Linux Enterprise Subscription Management Tool 11 SP1","migration_extra":false,"former_identifier":"sle-smt","release_type":null,"name":"SUSE Linux Enterprise Subscription Management Tool","offline_predecessor_ids":[],"version":"11.1","recommended":false,"id":1192,"release_stage":"released","identifier":"sle-smt","extensions":[],"friendly_version":"11 SP1","arch":null,"eula_url":"","description":null,"shortname":null,"free":true,"cpe":null,"product_type":"extension","product_class":"SLESMT","online_predecessor_ids":[],"repositories":[{"enabled":true,"id":1386,"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-SMT-Updates/sle-11-x86_64/","name":"SLE11-SP1-SMT-Updates","installer_updates":false,"description":"SLE11-SP1-SMT-Updates for sle-11-x86_64"},{"autorefresh":true,"distro_target":"sle-11-s390x","url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-SMT-Pool/sle-11-s390x/","enabled":true,"id":1387,"description":"SLE11-SP1-SMT-Pool for sle-11-s390x","name":"SLE11-SP1-SMT-Pool","installer_updates":false},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-SMT-Pool/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64","id":1388,"enabled":true,"description":"SLE11-SP1-SMT-Pool for sle-11-x86_64","name":"SLE11-SP1-SMT-Pool","installer_updates":false},{"id":1389,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-SMT-Updates/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true,"installer_updates":false,"name":"SLE11-SP1-SMT-Updates","description":"SLE11-SP1-SMT-Updates for sle-11-i586"},{"name":"SLE11-SP1-SMT-Pool","installer_updates":false,"description":"SLE11-SP1-SMT-Pool for sle-11-i586","id":1390,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-SMT-Pool/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586"},{"name":"SLE11-SP1-SMT-Updates","installer_updates":false,"description":"SLE11-SP1-SMT-Updates for sle-11-s390x","id":1391,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-SMT-Updates/sle-11-s390x/","autorefresh":true,"distro_target":"sle-11-s390x"}],"predecessor_ids":[]}],"release_stage":"released","identifier":"SUSE_SLES","id":684,"friendly_version":"11 SP1","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Server","release_type":null,"former_identifier":"SUSE_SLES","friendly_name":"SUSE Linux Enterprise Server 11 SP1 i586","migration_extra":false,"recommended":false,"version":"11.1","product_type":"base","cpe":"cpe:/o:suse:suse_sles:11:sp1","predecessor_ids":[],"online_predecessor_ids":[],"product_class":"7261","repositories":[{"id":679,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLES11-Extras/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","name":"SLES11-Extras","installer_updates":false,"description":"SLES11-Extras for sle-11-i586"},{"name":"SLE11-SP1-Debuginfo-Pool","installer_updates":false,"description":"SLE11-SP1-Debuginfo-Pool for sle-11-i586","id":680,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Pool/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586"},{"installer_updates":false,"name":"SLE11-WebYaST-SP1-Pool","description":"SLE11-WebYaST-SP1-Pool for sle-11-i586","id":681,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-WebYaST-SP1-Pool/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Updates/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","id":682,"enabled":false,"description":"SLE11-SP1-Debuginfo-Updates for sle-11-i586","name":"SLE11-SP1-Debuginfo-Updates","installer_updates":false},{"installer_updates":false,"name":"SLES11-SP1-LTSS-Updates","description":"SLES11-SP1-LTSS-Updates for sle-11-i586","enabled":true,"id":683,"distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-LTSS-Updates/sle-11-i586/"},{"installer_updates":false,"name":"SLES11-SP1-Updates","description":"SLES11-SP1-Updates for sle-11-i586","enabled":true,"id":684,"distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-Updates/sle-11-i586/"},{"name":"SLE11-WebYaST-SP1-Updates","installer_updates":false,"description":"SLE11-WebYaST-SP1-Updates for sle-11-i586","id":685,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-WebYaST-SP1-Updates/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586"},{"name":"SLES11-SP1-Pool","installer_updates":false,"description":"SLES11-SP1-Pool for sle-11-i586","id":686,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-Pool/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586"}],"eula_url":"","arch":"i586","free":false,"description":null,"shortname":null},{"predecessor_ids":[],"online_predecessor_ids":[],"repositories":[{"url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-Pool/sle-11-s390x/","autorefresh":true,"distro_target":"sle-11-s390x","id":687,"enabled":true,"description":"SLES11-SP1-Pool for sle-11-s390x","name":"SLES11-SP1-Pool","installer_updates":false},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Updates/sle-11-s390x/","distro_target":"sle-11-s390x","autorefresh":true,"id":688,"enabled":false,"description":"SLE11-SP1-Debuginfo-Updates for sle-11-s390x","installer_updates":false,"name":"SLE11-SP1-Debuginfo-Updates"},{"autorefresh":true,"distro_target":"sle-11-s390x","url":"https://updates.suse.com/repo/$RCE/SLES11-Extras/sle-11-s390x/","enabled":false,"id":689,"description":"SLES11-Extras for sle-11-s390x","name":"SLES11-Extras","installer_updates":false},{"installer_updates":false,"name":"SLE11-WebYaST-SP1-Updates","description":"SLE11-WebYaST-SP1-Updates for sle-11-s390x","enabled":false,"id":690,"distro_target":"sle-11-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-WebYaST-SP1-Updates/sle-11-s390x/"},{"url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-Updates/sle-11-s390x/","distro_target":"sle-11-s390x","autorefresh":true,"id":691,"enabled":true,"description":"SLES11-SP1-Updates for sle-11-s390x","installer_updates":false,"name":"SLES11-SP1-Updates"},{"name":"SLE11-SP1-Debuginfo-Pool","installer_updates":false,"description":"SLE11-SP1-Debuginfo-Pool for sle-11-s390x","id":692,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Pool/sle-11-s390x/","autorefresh":true,"distro_target":"sle-11-s390x"},{"enabled":false,"id":693,"autorefresh":true,"distro_target":"sle-11-s390x","url":"https://updates.suse.com/repo/$RCE/SLE11-WebYaST-SP1-Pool/sle-11-s390x/","name":"SLE11-WebYaST-SP1-Pool","installer_updates":false,"description":"SLE11-WebYaST-SP1-Pool for sle-11-s390x"}],"product_class":"SLES-Z","product_type":"base","cpe":"cpe:/o:suse:suse_sles:11:sp1","free":false,"description":null,"shortname":null,"eula_url":"","arch":"s390","friendly_version":"11 SP1","extensions":[{"extensions":[],"release_stage":"released","id":835,"identifier":"sle-11-WebYaST","friendly_version":"1.1","name":"SUSE WebYaST","offline_predecessor_ids":[],"friendly_name":"SUSE WebYaST 1.1","migration_extra":false,"release_type":null,"former_identifier":"sle-11-WebYaST","recommended":false,"version":"1.1","cpe":null,"product_type":"extension","predecessor_ids":[],"repositories":[{"id":825,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-WebYaST-1.1-Updates/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true,"installer_updates":false,"name":"SLE11-SP1-WebYaST-1.1-Updates","description":"SLE11-SP1-WebYaST-1.1-Updates for sle-11-i586"},{"description":"SLE11-SP1-WebYaST-1.1-Pool for sle-11-i586","installer_updates":false,"name":"SLE11-SP1-WebYaST-1.1-Pool","url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-WebYaST-1.1-Pool/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true,"id":826,"enabled":false},{"description":"SLE11-SP1-WebYaST-1.1-Pool for sle-11-x86_64","name":"SLE11-SP1-WebYaST-1.1-Pool","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-WebYaST-1.1-Pool/sle-11-x86_64/","enabled":false,"id":827},{"installer_updates":false,"name":"SLE11-SP1-WebYaST-1.1-Updates","description":"SLE11-SP1-WebYaST-1.1-Updates for sle-11-x86_64","enabled":true,"id":828,"distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-WebYaST-1.1-Updates/sle-11-x86_64/"}],"online_predecessor_ids":[],"product_class":"WEBYAST","eula_url":"","arch":null,"shortname":null,"description":null,"free":true},{"version":"11.1","recommended":false,"friendly_name":"SUSE Linux Enterprise High Availability Extension 11 SP1 s390","migration_extra":false,"former_identifier":"sle-hae","release_type":null,"name":"SUSE Linux Enterprise High Availability Extension","offline_predecessor_ids":[],"friendly_version":"11 SP1","id":1079,"release_stage":"released","identifier":"sle-hae","extensions":[],"description":null,"shortname":null,"free":false,"arch":"s390","eula_url":"","online_predecessor_ids":[],"product_class":"SLE-HAE-Z","repositories":[{"description":"SLE11-HAE-SP1-Pool for sle-11-s390x","name":"SLE11-HAE-SP1-Pool","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-s390x","url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP1-Pool/sle-11-s390x/","enabled":true,"id":1094},{"description":"SLE11-HAE-SP1-Updates for sle-11-s390x","installer_updates":false,"name":"SLE11-HAE-SP1-Updates","distro_target":"sle-11-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP1-Updates/sle-11-s390x/","enabled":true,"id":1095}],"predecessor_ids":[],"cpe":null,"product_type":"extension"},{"migration_extra":false,"friendly_name":"SUSE Linux Enterprise High Availability Extension 11 SP1 s390 (Migration)","former_identifier":"sle-hae-SP2-migration","release_type":null,"name":"SUSE Linux Enterprise High Availability Extension","offline_predecessor_ids":[],"version":"11.1","recommended":false,"release_stage":"released","id":1089,"identifier":"sle-hae-SP2-migration","extensions":[],"friendly_version":"11 SP1","arch":"s390","eula_url":"","description":null,"shortname":null,"free":false,"cpe":null,"product_type":"extension","repositories":[{"installer_updates":false,"name":"SLE11-HAE-SP2-Pool","description":"SLE11-HAE-SP2-Pool for sle-11-s390x","enabled":true,"id":1098,"distro_target":"sle-11-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP2-Pool/sle-11-s390x/"},{"name":"SLE11-HAE-SP2-Updates","installer_updates":false,"description":"SLE11-HAE-SP2-Updates for sle-11-s390x","enabled":true,"id":1099,"autorefresh":true,"distro_target":"sle-11-s390x","url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP2-Updates/sle-11-s390x/"}],"online_predecessor_ids":[],"product_class":"SLE-HAE-Z","predecessor_ids":[]},{"description":null,"shortname":null,"free":true,"eula_url":"","arch":null,"predecessor_ids":[],"online_predecessor_ids":[],"product_class":"SLE-SDK","repositories":[{"autorefresh":true,"distro_target":"sle-11-ia64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Updates/sle-11-ia64/","enabled":true,"id":1257,"description":"SLE11-SDK-SP1-Updates for sle-11-ia64","name":"SLE11-SDK-SP1-Updates","installer_updates":false},{"enabled":true,"id":1258,"autorefresh":true,"distro_target":"sle-11-ia64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-ia64/","name":"SLE11-SDK-SP1-Pool","installer_updates":false,"description":"SLE11-SDK-SP1-Pool for sle-11-ia64"},{"description":"SLE11-SDK-SP1-Pool for sle-11-s390x","installer_updates":false,"name":"SLE11-SDK-SP1-Pool","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-s390x/","distro_target":"sle-11-s390x","autorefresh":true,"id":1259,"enabled":true},{"description":"SLE11-SDK-SP1-Updates for sle-11-ppc64","name":"SLE11-SDK-SP1-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-ppc64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Updates/sle-11-ppc64/","enabled":true,"id":1260},{"name":"SLE11-SDK-SP1-Pool","installer_updates":false,"description":"SLE11-SDK-SP1-Pool for sle-11-ppc64","enabled":true,"id":1261,"autorefresh":true,"distro_target":"sle-11-ppc64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-ppc64/"},{"name":"SLE11-SDK-SP1-Updates","installer_updates":false,"description":"SLE11-SDK-SP1-Updates for sle-11-i586","enabled":true,"id":1262,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Updates/sle-11-i586/"},{"name":"SLE11-SDK-SP1-Pool","installer_updates":false,"description":"SLE11-SDK-SP1-Pool for sle-11-i586","id":1263,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586"},{"description":"SLE11-SDK-SP1-Pool for sle-11-x86_64","name":"SLE11-SDK-SP1-Pool","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-x86_64/","enabled":true,"id":1264},{"description":"SLE11-SDK-SP1-Updates for sle-11-x86_64","installer_updates":false,"name":"SLE11-SDK-SP1-Updates","distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Updates/sle-11-x86_64/","enabled":true,"id":1265},{"name":"SLE11-SDK-SP1-Updates","installer_updates":false,"description":"SLE11-SDK-SP1-Updates for sle-11-s390x","enabled":true,"id":1266,"autorefresh":true,"distro_target":"sle-11-s390x","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Updates/sle-11-s390x/"}],"cpe":null,"product_type":"extension","recommended":false,"version":"11.1","name":"SUSE Linux Enterprise Software Development Kit","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Software Development Kit 11 SP1","former_identifier":"sle-sdk","release_type":null,"friendly_version":"11 SP1","extensions":[],"id":1159,"release_stage":"released","identifier":"sle-sdk"},{"shortname":null,"description":null,"free":true,"eula_url":"","arch":null,"predecessor_ids":[],"online_predecessor_ids":[],"repositories":[{"description":"SLE11-SDK-SP1-Pool for sle-11-ia64","name":"SLE11-SDK-SP1-Pool","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-ia64/","autorefresh":true,"distro_target":"sle-11-ia64","id":1258,"enabled":true},{"id":1259,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-s390x/","autorefresh":true,"distro_target":"sle-11-s390x","name":"SLE11-SDK-SP1-Pool","installer_updates":false,"description":"SLE11-SDK-SP1-Pool for sle-11-s390x"},{"id":1261,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-ppc64/","autorefresh":true,"distro_target":"sle-11-ppc64","name":"SLE11-SDK-SP1-Pool","installer_updates":false,"description":"SLE11-SDK-SP1-Pool for sle-11-ppc64"},{"installer_updates":false,"name":"SLE11-SDK-SP1-Pool","description":"SLE11-SDK-SP1-Pool for sle-11-i586","enabled":true,"id":1263,"distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-i586/"},{"id":1264,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true,"installer_updates":false,"name":"SLE11-SDK-SP1-Pool","description":"SLE11-SDK-SP1-Pool for sle-11-x86_64"}],"product_class":"SLE-SDK","cpe":null,"product_type":"extension","recommended":false,"version":"11","name":"SUSE Linux Enterprise Software Development Kit","offline_predecessor_ids":[],"friendly_name":"SUSE Linux Enterprise Software Development Kit 11 (Migration)","migration_extra":false,"former_identifier":"sle-sdk-SP1-migration","release_type":null,"friendly_version":"11","extensions":[],"id":1162,"release_stage":"released","identifier":"sle-sdk-SP1-migration"},{"predecessor_ids":[],"product_class":"SLE-SDK","online_predecessor_ids":[],"repositories":[{"id":1267,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-ia64/","distro_target":"sle-11-ia64","autorefresh":true,"installer_updates":false,"name":"SLE11-SDK-SP2-Core","description":"SLE11-SDK-SP2-Core for sle-11-ia64"},{"name":"SLE11-SDK-SP2-Core","installer_updates":false,"description":"SLE11-SDK-SP2-Core for sle-11-s390x","enabled":true,"id":1268,"autorefresh":true,"distro_target":"sle-11-s390x","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-s390x/"},{"id":1269,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-s390x/","distro_target":"sle-11-s390x","autorefresh":true,"installer_updates":false,"name":"SLE11-SDK-SP2-Updates","description":"SLE11-SDK-SP2-Updates for sle-11-s390x"},{"enabled":true,"id":1270,"distro_target":"sle-11-ppc64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-ppc64/","installer_updates":false,"name":"SLE11-SDK-SP2-Updates","description":"SLE11-SDK-SP2-Updates for sle-11-ppc64"},{"id":1271,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","name":"SLE11-SDK-SP2-Updates","installer_updates":false,"description":"SLE11-SDK-SP2-Updates for sle-11-i586"},{"id":1272,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-ia64/","autorefresh":true,"distro_target":"sle-11-ia64","name":"SLE11-SDK-SP2-Updates","installer_updates":false,"description":"SLE11-SDK-SP2-Updates for sle-11-ia64"},{"name":"SLE11-SDK-SP2-Core","installer_updates":false,"description":"SLE11-SDK-SP2-Core for sle-11-ppc64","id":1273,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-ppc64/","autorefresh":true,"distro_target":"sle-11-ppc64"},{"name":"SLE11-SDK-SP2-Core","installer_updates":false,"description":"SLE11-SDK-SP2-Core for sle-11-i586","enabled":true,"id":1274,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-i586/"},{"installer_updates":false,"name":"SLE11-SDK-SP2-Core","description":"SLE11-SDK-SP2-Core for sle-11-x86_64","id":1275,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true},{"distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-x86_64/","enabled":true,"id":1276,"description":"SLE11-SDK-SP2-Updates for sle-11-x86_64","installer_updates":false,"name":"SLE11-SDK-SP2-Updates"}],"product_type":"extension","cpe":null,"free":true,"shortname":null,"description":null,"eula_url":"","arch":null,"friendly_version":"11 SP1","extensions":[],"identifier":"sle-sdk-SP2-migration","release_stage":"released","id":1163,"recommended":false,"version":"11.1","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Software Development Kit","release_type":null,"former_identifier":"sle-sdk-SP2-migration","friendly_name":"SUSE Linux Enterprise Software Development Kit 11 SP1 (Migration)","migration_extra":false},{"extensions":[],"id":1192,"release_stage":"released","identifier":"sle-smt","friendly_version":"11 SP1","name":"SUSE Linux Enterprise Subscription Management Tool","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Subscription Management Tool 11 SP1","former_identifier":"sle-smt","release_type":null,"recommended":false,"version":"11.1","cpe":null,"product_type":"extension","predecessor_ids":[],"online_predecessor_ids":[],"repositories":[{"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-SMT-Updates/sle-11-x86_64/","enabled":true,"id":1386,"description":"SLE11-SP1-SMT-Updates for sle-11-x86_64","name":"SLE11-SP1-SMT-Updates","installer_updates":false},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-SMT-Pool/sle-11-s390x/","autorefresh":true,"distro_target":"sle-11-s390x","id":1387,"enabled":true,"description":"SLE11-SP1-SMT-Pool for sle-11-s390x","name":"SLE11-SP1-SMT-Pool","installer_updates":false},{"installer_updates":false,"name":"SLE11-SP1-SMT-Pool","description":"SLE11-SP1-SMT-Pool for sle-11-x86_64","enabled":true,"id":1388,"distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-SMT-Pool/sle-11-x86_64/"},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-SMT-Updates/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","id":1389,"enabled":true,"description":"SLE11-SP1-SMT-Updates for sle-11-i586","name":"SLE11-SP1-SMT-Updates","installer_updates":false},{"description":"SLE11-SP1-SMT-Pool for sle-11-i586","installer_updates":false,"name":"SLE11-SP1-SMT-Pool","distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-SMT-Pool/sle-11-i586/","enabled":true,"id":1390},{"description":"SLE11-SP1-SMT-Updates for sle-11-s390x","installer_updates":false,"name":"SLE11-SP1-SMT-Updates","url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-SMT-Updates/sle-11-s390x/","distro_target":"sle-11-s390x","autorefresh":true,"id":1391,"enabled":true}],"product_class":"SLESMT","eula_url":"","arch":null,"description":null,"shortname":null,"free":true}],"release_stage":"released","id":685,"identifier":"SUSE_SLES","recommended":false,"version":"11.1","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Server","former_identifier":"SUSE_SLES","release_type":null,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Server 11 SP1 s390"},{"extensions":[],"release_stage":"released","identifier":"SUSE-Linux-Enterprise-Server-SP4-migration","id":686,"friendly_version":"10","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Server","release_type":null,"former_identifier":"SUSE-Linux-Enterprise-Server-SP4-migration","friendly_name":"SUSE Linux Enterprise Server 10 i586 (Migration)","migration_extra":false,"recommended":false,"version":"10","product_type":"base","cpe":null,"predecessor_ids":[],"online_predecessor_ids":[],"repositories":[{"distro_target":"sles-10-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLES10-SP4-Online/sles-10-i586/","enabled":true,"id":694,"description":"SLES10-SP4-Online for sles-10-i586","installer_updates":false,"name":"SLES10-SP4-Online"}],"product_class":"7261","eula_url":"","arch":"i586","free":false,"description":null,"shortname":null},{"extensions":[{"version":"10","recommended":false,"former_identifier":"SUSE-Linux-Enterprise-SDK-SP4","release_type":null,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Software Development Kit 10 SP4","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Software Development Kit","friendly_version":"10 SP4","release_stage":"released","id":1181,"identifier":"SUSE-Linux-Enterprise-SDK-SP4","extensions":[],"free":true,"shortname":null,"description":null,"arch":null,"eula_url":"","repositories":[{"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP4-Pool/sles-10-x86_64/","autorefresh":false,"distro_target":"sles-10-x86_64","id":1343,"enabled":true,"description":"SLE10-SDK-SP4-Pool for sles-10-x86_64","name":"SLE10-SDK-SP4-Pool","installer_updates":false},{"description":"SLE10-SDK-SP4-Pool for sles-10-ppc","installer_updates":false,"name":"SLE10-SDK-SP4-Pool","distro_target":"sles-10-ppc","autorefresh":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP4-Pool/sles-10-ppc/","enabled":true,"id":1344},{"id":1345,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP4-Pool/sles-10-i586/","distro_target":"sles-10-i586","autorefresh":false,"installer_updates":false,"name":"SLE10-SDK-SP4-Pool","description":"SLE10-SDK-SP4-Pool for sles-10-i586"},{"id":1346,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP4-Pool/sled-10-i586/","distro_target":"sled-10-i586","autorefresh":false,"installer_updates":false,"name":"SLE10-SDK-SP4-Pool","description":"SLE10-SDK-SP4-Pool for sled-10-i586"},{"name":"SLE10-SDK-SP4-Updates","installer_updates":false,"description":"SLE10-SDK-SP4-Updates for sled-10-x86_64","enabled":true,"id":1347,"autorefresh":true,"distro_target":"sled-10-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP4-Updates/sled-10-x86_64/"},{"description":"SLE10-SDK-SP4-Pool for sles-10-s390x","installer_updates":false,"name":"SLE10-SDK-SP4-Pool","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP4-Pool/sles-10-s390x/","distro_target":"sles-10-s390x","autorefresh":false,"id":1348,"enabled":true},{"name":"SLE10-SDK-SP4-Updates","installer_updates":false,"description":"SLE10-SDK-SP4-Updates for sles-10-x86_64","enabled":true,"id":1349,"autorefresh":true,"distro_target":"sles-10-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP4-Updates/sles-10-x86_64/"},{"name":"SLE10-SDK-SP4-Updates","installer_updates":false,"description":"SLE10-SDK-SP4-Updates for sles-10-s390x","enabled":true,"id":1350,"autorefresh":true,"distro_target":"sles-10-s390x","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP4-Updates/sles-10-s390x/"},{"name":"SLE10-SDK-SP4-Updates","installer_updates":false,"description":"SLE10-SDK-SP4-Updates for sled-10-i586","enabled":true,"id":1351,"autorefresh":true,"distro_target":"sled-10-i586","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP4-Updates/sled-10-i586/"},{"installer_updates":false,"name":"SLE10-SDK-SP4-Updates","description":"SLE10-SDK-SP4-Updates for sles-10-ppc","enabled":true,"id":1352,"distro_target":"sles-10-ppc","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP4-Updates/sles-10-ppc/"},{"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP4-Updates/sles-10-i586/","autorefresh":true,"distro_target":"sles-10-i586","id":1353,"enabled":true,"description":"SLE10-SDK-SP4-Updates for sles-10-i586","name":"SLE10-SDK-SP4-Updates","installer_updates":false},{"description":"SLE10-SDK-SP4-Updates for sles-10-ia64","installer_updates":false,"name":"SLE10-SDK-SP4-Updates","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP4-Updates/sles-10-ia64/","distro_target":"sles-10-ia64","autorefresh":true,"id":1354,"enabled":true},{"id":1355,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP4-Pool/sled-10-x86_64/","autorefresh":false,"distro_target":"sled-10-x86_64","name":"SLE10-SDK-SP4-Pool","installer_updates":false,"description":"SLE10-SDK-SP4-Pool for sled-10-x86_64"},{"id":1356,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP4-Pool/sles-10-ia64/","distro_target":"sles-10-ia64","autorefresh":false,"installer_updates":false,"name":"SLE10-SDK-SP4-Pool","description":"SLE10-SDK-SP4-Pool for sles-10-ia64"}],"online_predecessor_ids":[],"product_class":"SLE-SDK","predecessor_ids":[],"product_type":"extension","cpe":null},{"extensions":[],"id":1182,"release_stage":"released","identifier":"SUSE-Linux-Enterprise-SDK-SP4-migration","friendly_version":"10","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Software Development Kit","former_identifier":"SUSE-Linux-Enterprise-SDK-SP4-migration","release_type":null,"friendly_name":"SUSE Linux Enterprise Software Development Kit 10 (Migration)","migration_extra":false,"recommended":false,"version":"10","product_type":"extension","cpe":null,"predecessor_ids":[],"repositories":[{"description":"SLE10-SDK-SP4-Online for sles-10-x86_64","installer_updates":false,"name":"SLE10-SDK-SP4-Online","distro_target":"sles-10-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP4-Online/sles-10-x86_64/","enabled":true,"id":1357},{"description":"SLE10-SDK-SP4-Online for sles-10-i586","name":"SLE10-SDK-SP4-Online","installer_updates":false,"autorefresh":true,"distro_target":"sles-10-i586","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP4-Online/sles-10-i586/","enabled":true,"id":1358},{"autorefresh":true,"distro_target":"sles-10-ia64","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP4-Online/sles-10-ia64/","enabled":true,"id":1359,"description":"SLE10-SDK-SP4-Online for sles-10-ia64","name":"SLE10-SDK-SP4-Online","installer_updates":false},{"description":"SLE10-SDK-SP4-Online for sled-10-x86_64","installer_updates":false,"name":"SLE10-SDK-SP4-Online","distro_target":"sled-10-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP4-Online/sled-10-x86_64/","enabled":true,"id":1360},{"autorefresh":true,"distro_target":"sled-10-i586","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP4-Online/sled-10-i586/","enabled":true,"id":1361,"description":"SLE10-SDK-SP4-Online for sled-10-i586","name":"SLE10-SDK-SP4-Online","installer_updates":false},{"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP4-Online/sles-10-ppc/","autorefresh":true,"distro_target":"sles-10-ppc","id":1362,"enabled":true,"description":"SLE10-SDK-SP4-Online for sles-10-ppc","name":"SLE10-SDK-SP4-Online","installer_updates":false},{"description":"SLE10-SDK-SP4-Online for sles-10-s390x","name":"SLE10-SDK-SP4-Online","installer_updates":false,"autorefresh":true,"distro_target":"sles-10-s390x","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP4-Online/sles-10-s390x/","enabled":true,"id":1363}],"online_predecessor_ids":[],"product_class":"SLE-SDK","eula_url":"","arch":null,"free":true,"shortname":null,"description":null}],"release_stage":"released","identifier":"SUSE-Linux-Enterprise-Server-SP4","id":687,"friendly_version":"10 SP4","name":"SUSE Linux Enterprise Server","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Server 10 SP4 i486","release_type":null,"former_identifier":"SUSE-Linux-Enterprise-Server-SP4","recommended":false,"version":"10","cpe":null,"product_type":"base","predecessor_ids":[],"repositories":[{"distro_target":"sles-10-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLES10-GPLv3-Extras/sles-10-i586/","enabled":false,"id":665,"description":"SLES10-GPLv3-Extras for sles-10-i586","installer_updates":false,"name":"SLES10-GPLv3-Extras"},{"name":"SLES10-SP4-Pool","installer_updates":false,"description":"SLES10-SP4-Pool for sles-10-i586","enabled":true,"id":695,"autorefresh":false,"distro_target":"sles-10-i586","url":"https://updates.suse.com/repo/$RCE/SLES10-SP4-Pool/sles-10-i586/"},{"name":"SLE10-SP4-Debuginfo-Updates","installer_updates":false,"description":"SLE10-SP4-Debuginfo-Updates for sles-10-i586","enabled":false,"id":696,"autorefresh":true,"distro_target":"sles-10-i586","url":"https://updates.suse.com/repo/$RCE/SLE10-SP4-Debuginfo-Updates/sles-10-i586/"},{"distro_target":"sles-10-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLES10-SP4-LTSS-Updates/sles-10-i586/","enabled":true,"id":697,"description":"SLES10-SP4-LTSS-Updates for sles-10-i586","installer_updates":false,"name":"SLES10-SP4-LTSS-Updates"},{"name":"SLE10-SP4-Debuginfo-Pool","installer_updates":false,"description":"SLE10-SP4-Debuginfo-Pool for sles-10-i586","id":698,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP4-Debuginfo-Pool/sles-10-i586/","autorefresh":false,"distro_target":"sles-10-i586"},{"installer_updates":false,"name":"SLES10-SP4-Updates","description":"SLES10-SP4-Updates for sles-10-i586","enabled":true,"id":699,"distro_target":"sles-10-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLES10-SP4-Updates/sles-10-i586/"}],"online_predecessor_ids":[],"product_class":"7261","eula_url":"","arch":"i486","description":null,"shortname":null,"free":false},{"version":"10","recommended":false,"release_type":null,"former_identifier":"SUSE-Linux-Enterprise-Server-SP4","migration_extra":false,"friendly_name":"SUSE Linux Enterprise Server 10 SP4 i386","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Server","friendly_version":"10 SP4","id":688,"release_stage":"released","identifier":"SUSE-Linux-Enterprise-Server-SP4","extensions":[{"eula_url":"","arch":null,"free":true,"description":null,"shortname":null,"product_type":"extension","cpe":null,"predecessor_ids":[],"online_predecessor_ids":[],"repositories":[{"installer_updates":false,"name":"SLE10-SDK-SP4-Pool","description":"SLE10-SDK-SP4-Pool for sles-10-x86_64","enabled":true,"id":1343,"distro_target":"sles-10-x86_64","autorefresh":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP4-Pool/sles-10-x86_64/"},{"installer_updates":false,"name":"SLE10-SDK-SP4-Pool","description":"SLE10-SDK-SP4-Pool for sles-10-ppc","enabled":true,"id":1344,"distro_target":"sles-10-ppc","autorefresh":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP4-Pool/sles-10-ppc/"},{"distro_target":"sles-10-i586","autorefresh":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP4-Pool/sles-10-i586/","enabled":true,"id":1345,"description":"SLE10-SDK-SP4-Pool for sles-10-i586","installer_updates":false,"name":"SLE10-SDK-SP4-Pool"},{"installer_updates":false,"name":"SLE10-SDK-SP4-Pool","description":"SLE10-SDK-SP4-Pool for sled-10-i586","enabled":true,"id":1346,"distro_target":"sled-10-i586","autorefresh":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP4-Pool/sled-10-i586/"},{"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP4-Updates/sled-10-x86_64/","autorefresh":true,"distro_target":"sled-10-x86_64","id":1347,"enabled":true,"description":"SLE10-SDK-SP4-Updates for sled-10-x86_64","name":"SLE10-SDK-SP4-Updates","installer_updates":false},{"description":"SLE10-SDK-SP4-Pool for sles-10-s390x","installer_updates":false,"name":"SLE10-SDK-SP4-Pool","distro_target":"sles-10-s390x","autorefresh":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP4-Pool/sles-10-s390x/","enabled":true,"id":1348},{"description":"SLE10-SDK-SP4-Updates for sles-10-x86_64","name":"SLE10-SDK-SP4-Updates","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP4-Updates/sles-10-x86_64/","autorefresh":true,"distro_target":"sles-10-x86_64","id":1349,"enabled":true},{"autorefresh":true,"distro_target":"sles-10-s390x","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP4-Updates/sles-10-s390x/","enabled":true,"id":1350,"description":"SLE10-SDK-SP4-Updates for sles-10-s390x","name":"SLE10-SDK-SP4-Updates","installer_updates":false},{"distro_target":"sled-10-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP4-Updates/sled-10-i586/","enabled":true,"id":1351,"description":"SLE10-SDK-SP4-Updates for sled-10-i586","installer_updates":false,"name":"SLE10-SDK-SP4-Updates"},{"description":"SLE10-SDK-SP4-Updates for sles-10-ppc","name":"SLE10-SDK-SP4-Updates","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP4-Updates/sles-10-ppc/","autorefresh":true,"distro_target":"sles-10-ppc","id":1352,"enabled":true},{"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP4-Updates/sles-10-i586/","autorefresh":true,"distro_target":"sles-10-i586","id":1353,"enabled":true,"description":"SLE10-SDK-SP4-Updates for sles-10-i586","name":"SLE10-SDK-SP4-Updates","installer_updates":false},{"autorefresh":true,"distro_target":"sles-10-ia64","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP4-Updates/sles-10-ia64/","enabled":true,"id":1354,"description":"SLE10-SDK-SP4-Updates for sles-10-ia64","name":"SLE10-SDK-SP4-Updates","installer_updates":false},{"autorefresh":false,"distro_target":"sled-10-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP4-Pool/sled-10-x86_64/","enabled":true,"id":1355,"description":"SLE10-SDK-SP4-Pool for sled-10-x86_64","name":"SLE10-SDK-SP4-Pool","installer_updates":false},{"id":1356,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP4-Pool/sles-10-ia64/","autorefresh":false,"distro_target":"sles-10-ia64","name":"SLE10-SDK-SP4-Pool","installer_updates":false,"description":"SLE10-SDK-SP4-Pool for sles-10-ia64"}],"product_class":"SLE-SDK","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Software Development Kit","former_identifier":"SUSE-Linux-Enterprise-SDK-SP4","release_type":null,"friendly_name":"SUSE Linux Enterprise Software Development Kit 10 SP4","migration_extra":false,"recommended":false,"version":"10","extensions":[],"release_stage":"released","id":1181,"identifier":"SUSE-Linux-Enterprise-SDK-SP4","friendly_version":"10 SP4"},{"description":null,"shortname":null,"free":true,"eula_url":"","arch":null,"predecessor_ids":[],"online_predecessor_ids":[],"repositories":[{"name":"SLE10-SDK-SP4-Online","installer_updates":false,"description":"SLE10-SDK-SP4-Online for sles-10-x86_64","id":1357,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP4-Online/sles-10-x86_64/","autorefresh":true,"distro_target":"sles-10-x86_64"},{"installer_updates":false,"name":"SLE10-SDK-SP4-Online","description":"SLE10-SDK-SP4-Online for sles-10-i586","id":1358,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP4-Online/sles-10-i586/","distro_target":"sles-10-i586","autorefresh":true},{"distro_target":"sles-10-ia64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP4-Online/sles-10-ia64/","enabled":true,"id":1359,"description":"SLE10-SDK-SP4-Online for sles-10-ia64","installer_updates":false,"name":"SLE10-SDK-SP4-Online"},{"autorefresh":true,"distro_target":"sled-10-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP4-Online/sled-10-x86_64/","enabled":true,"id":1360,"description":"SLE10-SDK-SP4-Online for sled-10-x86_64","name":"SLE10-SDK-SP4-Online","installer_updates":false},{"description":"SLE10-SDK-SP4-Online for sled-10-i586","name":"SLE10-SDK-SP4-Online","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP4-Online/sled-10-i586/","autorefresh":true,"distro_target":"sled-10-i586","id":1361,"enabled":true},{"name":"SLE10-SDK-SP4-Online","installer_updates":false,"description":"SLE10-SDK-SP4-Online for sles-10-ppc","id":1362,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP4-Online/sles-10-ppc/","autorefresh":true,"distro_target":"sles-10-ppc"},{"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP4-Online/sles-10-s390x/","distro_target":"sles-10-s390x","autorefresh":true,"id":1363,"enabled":true,"description":"SLE10-SDK-SP4-Online for sles-10-s390x","installer_updates":false,"name":"SLE10-SDK-SP4-Online"}],"product_class":"SLE-SDK","cpe":null,"product_type":"extension","recommended":false,"version":"10","name":"SUSE Linux Enterprise Software Development Kit","offline_predecessor_ids":[],"friendly_name":"SUSE Linux Enterprise Software Development Kit 10 (Migration)","migration_extra":false,"release_type":null,"former_identifier":"SUSE-Linux-Enterprise-SDK-SP4-migration","friendly_version":"10","extensions":[],"release_stage":"released","identifier":"SUSE-Linux-Enterprise-SDK-SP4-migration","id":1182}],"free":false,"shortname":null,"description":null,"arch":"i386","eula_url":"","online_predecessor_ids":[],"repositories":[{"description":"SLES10-GPLv3-Extras for sles-10-i586","name":"SLES10-GPLv3-Extras","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLES10-GPLv3-Extras/sles-10-i586/","autorefresh":true,"distro_target":"sles-10-i586","id":665,"enabled":false},{"url":"https://updates.suse.com/repo/$RCE/SLES10-SP4-Pool/sles-10-i586/","autorefresh":false,"distro_target":"sles-10-i586","id":695,"enabled":true,"description":"SLES10-SP4-Pool for sles-10-i586","name":"SLES10-SP4-Pool","installer_updates":false},{"url":"https://updates.suse.com/repo/$RCE/SLE10-SP4-Debuginfo-Updates/sles-10-i586/","autorefresh":true,"distro_target":"sles-10-i586","id":696,"enabled":false,"description":"SLE10-SP4-Debuginfo-Updates for sles-10-i586","name":"SLE10-SP4-Debuginfo-Updates","installer_updates":false},{"description":"SLES10-SP4-LTSS-Updates for sles-10-i586","installer_updates":false,"name":"SLES10-SP4-LTSS-Updates","distro_target":"sles-10-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLES10-SP4-LTSS-Updates/sles-10-i586/","enabled":true,"id":697},{"description":"SLE10-SP4-Debuginfo-Pool for sles-10-i586","installer_updates":false,"name":"SLE10-SP4-Debuginfo-Pool","distro_target":"sles-10-i586","autorefresh":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP4-Debuginfo-Pool/sles-10-i586/","enabled":false,"id":698},{"url":"https://updates.suse.com/repo/$RCE/SLES10-SP4-Updates/sles-10-i586/","autorefresh":true,"distro_target":"sles-10-i586","id":699,"enabled":true,"description":"SLES10-SP4-Updates for sles-10-i586","name":"SLES10-SP4-Updates","installer_updates":false}],"product_class":"7261","predecessor_ids":[],"product_type":"base","cpe":null},{"friendly_name":"SUSE Linux Enterprise Server 10 SP4 ppc64","migration_extra":false,"release_type":null,"former_identifier":"SUSE-Linux-Enterprise-Server-SP4","name":"SUSE Linux Enterprise Server","offline_predecessor_ids":[],"version":"10","recommended":false,"id":689,"release_stage":"released","identifier":"SUSE-Linux-Enterprise-Server-SP4","extensions":[{"friendly_version":"10 SP4","id":1181,"release_stage":"released","identifier":"SUSE-Linux-Enterprise-SDK-SP4","extensions":[],"version":"10","recommended":false,"former_identifier":"SUSE-Linux-Enterprise-SDK-SP4","release_type":null,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Software Development Kit 10 SP4","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Software Development Kit","online_predecessor_ids":[],"product_class":"SLE-SDK","repositories":[{"description":"SLE10-SDK-SP4-Pool for sles-10-x86_64","installer_updates":false,"name":"SLE10-SDK-SP4-Pool","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP4-Pool/sles-10-x86_64/","distro_target":"sles-10-x86_64","autorefresh":false,"id":1343,"enabled":true},{"description":"SLE10-SDK-SP4-Pool for sles-10-ppc","installer_updates":false,"name":"SLE10-SDK-SP4-Pool","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP4-Pool/sles-10-ppc/","distro_target":"sles-10-ppc","autorefresh":false,"id":1344,"enabled":true},{"distro_target":"sles-10-i586","autorefresh":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP4-Pool/sles-10-i586/","enabled":true,"id":1345,"description":"SLE10-SDK-SP4-Pool for sles-10-i586","installer_updates":false,"name":"SLE10-SDK-SP4-Pool"},{"distro_target":"sled-10-i586","autorefresh":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP4-Pool/sled-10-i586/","enabled":true,"id":1346,"description":"SLE10-SDK-SP4-Pool for sled-10-i586","installer_updates":false,"name":"SLE10-SDK-SP4-Pool"},{"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP4-Updates/sled-10-x86_64/","autorefresh":true,"distro_target":"sled-10-x86_64","id":1347,"enabled":true,"description":"SLE10-SDK-SP4-Updates for sled-10-x86_64","name":"SLE10-SDK-SP4-Updates","installer_updates":false},{"enabled":true,"id":1348,"autorefresh":false,"distro_target":"sles-10-s390x","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP4-Pool/sles-10-s390x/","name":"SLE10-SDK-SP4-Pool","installer_updates":false,"description":"SLE10-SDK-SP4-Pool for sles-10-s390x"},{"installer_updates":false,"name":"SLE10-SDK-SP4-Updates","description":"SLE10-SDK-SP4-Updates for sles-10-x86_64","id":1349,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP4-Updates/sles-10-x86_64/","distro_target":"sles-10-x86_64","autorefresh":true},{"distro_target":"sles-10-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP4-Updates/sles-10-s390x/","enabled":true,"id":1350,"description":"SLE10-SDK-SP4-Updates for sles-10-s390x","installer_updates":false,"name":"SLE10-SDK-SP4-Updates"},{"name":"SLE10-SDK-SP4-Updates","installer_updates":false,"description":"SLE10-SDK-SP4-Updates for sled-10-i586","id":1351,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP4-Updates/sled-10-i586/","autorefresh":true,"distro_target":"sled-10-i586"},{"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP4-Updates/sles-10-ppc/","autorefresh":true,"distro_target":"sles-10-ppc","id":1352,"enabled":true,"description":"SLE10-SDK-SP4-Updates for sles-10-ppc","name":"SLE10-SDK-SP4-Updates","installer_updates":false},{"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP4-Updates/sles-10-i586/","autorefresh":true,"distro_target":"sles-10-i586","id":1353,"enabled":true,"description":"SLE10-SDK-SP4-Updates for sles-10-i586","name":"SLE10-SDK-SP4-Updates","installer_updates":false},{"id":1354,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP4-Updates/sles-10-ia64/","distro_target":"sles-10-ia64","autorefresh":true,"installer_updates":false,"name":"SLE10-SDK-SP4-Updates","description":"SLE10-SDK-SP4-Updates for sles-10-ia64"},{"enabled":true,"id":1355,"distro_target":"sled-10-x86_64","autorefresh":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP4-Pool/sled-10-x86_64/","installer_updates":false,"name":"SLE10-SDK-SP4-Pool","description":"SLE10-SDK-SP4-Pool for sled-10-x86_64"},{"name":"SLE10-SDK-SP4-Pool","installer_updates":false,"description":"SLE10-SDK-SP4-Pool for sles-10-ia64","id":1356,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP4-Pool/sles-10-ia64/","autorefresh":false,"distro_target":"sles-10-ia64"}],"predecessor_ids":[],"product_type":"extension","cpe":null,"free":true,"description":null,"shortname":null,"arch":null,"eula_url":""},{"cpe":null,"product_type":"extension","predecessor_ids":[],"online_predecessor_ids":[],"repositories":[{"autorefresh":true,"distro_target":"sles-10-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP4-Online/sles-10-x86_64/","enabled":true,"id":1357,"description":"SLE10-SDK-SP4-Online for sles-10-x86_64","name":"SLE10-SDK-SP4-Online","installer_updates":false},{"autorefresh":true,"distro_target":"sles-10-i586","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP4-Online/sles-10-i586/","enabled":true,"id":1358,"description":"SLE10-SDK-SP4-Online for sles-10-i586","name":"SLE10-SDK-SP4-Online","installer_updates":false},{"name":"SLE10-SDK-SP4-Online","installer_updates":false,"description":"SLE10-SDK-SP4-Online for sles-10-ia64","enabled":true,"id":1359,"autorefresh":true,"distro_target":"sles-10-ia64","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP4-Online/sles-10-ia64/"},{"autorefresh":true,"distro_target":"sled-10-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP4-Online/sled-10-x86_64/","enabled":true,"id":1360,"description":"SLE10-SDK-SP4-Online for sled-10-x86_64","name":"SLE10-SDK-SP4-Online","installer_updates":false},{"distro_target":"sled-10-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP4-Online/sled-10-i586/","enabled":true,"id":1361,"description":"SLE10-SDK-SP4-Online for sled-10-i586","installer_updates":false,"name":"SLE10-SDK-SP4-Online"},{"id":1362,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP4-Online/sles-10-ppc/","distro_target":"sles-10-ppc","autorefresh":true,"installer_updates":false,"name":"SLE10-SDK-SP4-Online","description":"SLE10-SDK-SP4-Online for sles-10-ppc"},{"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP4-Online/sles-10-s390x/","distro_target":"sles-10-s390x","autorefresh":true,"id":1363,"enabled":true,"description":"SLE10-SDK-SP4-Online for sles-10-s390x","installer_updates":false,"name":"SLE10-SDK-SP4-Online"}],"product_class":"SLE-SDK","eula_url":"","arch":null,"shortname":null,"description":null,"free":true,"extensions":[],"identifier":"SUSE-Linux-Enterprise-SDK-SP4-migration","release_stage":"released","id":1182,"friendly_version":"10","name":"SUSE Linux Enterprise Software Development Kit","offline_predecessor_ids":[],"friendly_name":"SUSE Linux Enterprise Software Development Kit 10 (Migration)","migration_extra":false,"release_type":null,"former_identifier":"SUSE-Linux-Enterprise-SDK-SP4-migration","recommended":false,"version":"10"}],"friendly_version":"10 SP4","arch":"ppc64","eula_url":"","description":null,"shortname":null,"free":false,"cpe":null,"product_type":"base","repositories":[{"description":"SLES10-SP4-Pool for sles-10-ppc","installer_updates":false,"name":"SLES10-SP4-Pool","distro_target":"sles-10-ppc","autorefresh":false,"url":"https://updates.suse.com/repo/$RCE/SLES10-SP4-Pool/sles-10-ppc/","enabled":true,"id":700},{"id":701,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP4-Debuginfo-Updates/sles-10-ppc/","autorefresh":true,"distro_target":"sles-10-ppc","name":"SLE10-SP4-Debuginfo-Updates","installer_updates":false,"description":"SLE10-SP4-Debuginfo-Updates for sles-10-ppc"},{"id":702,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLES10-SP4-Updates/sles-10-ppc/","distro_target":"sles-10-ppc","autorefresh":true,"installer_updates":false,"name":"SLES10-SP4-Updates","description":"SLES10-SP4-Updates for sles-10-ppc"},{"enabled":false,"id":703,"distro_target":"sles-10-ppc","autorefresh":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP4-Debuginfo-Pool/sles-10-ppc/","installer_updates":false,"name":"SLE10-SP4-Debuginfo-Pool","description":"SLE10-SP4-Debuginfo-Pool for sles-10-ppc"},{"name":"SLES10-GPLv3-Extras","installer_updates":false,"description":"SLES10-GPLv3-Extras for sles-10-ppc","id":704,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLES10-GPLv3-Extras/sles-10-ppc/","autorefresh":true,"distro_target":"sles-10-ppc"}],"online_predecessor_ids":[],"product_class":"SLES-PPC","predecessor_ids":[]},{"friendly_version":"11 SP2","release_stage":"released","id":690,"identifier":"SUSE_SLES","extensions":[{"extensions":[],"identifier":"sle-11-WebYaST","release_stage":"released","id":837,"friendly_version":"1.2","name":"SUSE WebYaST","offline_predecessor_ids":[],"friendly_name":"SUSE WebYaST 1.2","migration_extra":false,"release_type":null,"former_identifier":"sle-11-WebYaST","recommended":false,"version":"1.2","cpe":null,"product_type":"extension","predecessor_ids":[],"product_class":"WEBYAST","online_predecessor_ids":[],"repositories":[{"enabled":true,"id":839,"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-WebYaST-1.2-Updates/sle-11-x86_64/","name":"SLE11-SP1-WebYaST-1.2-Updates","installer_updates":false,"description":"SLE11-SP1-WebYaST-1.2-Updates for sle-11-x86_64"},{"name":"SLE11-SP1-WebYaST-1.2-Pool","installer_updates":false,"description":"SLE11-SP1-WebYaST-1.2-Pool for sle-11-i586","id":840,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-WebYaST-1.2-Pool/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586"},{"installer_updates":false,"name":"SLE11-SP1-WebYaST-1.2-Pool","description":"SLE11-SP1-WebYaST-1.2-Pool for sle-11-x86_64","enabled":false,"id":841,"distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-WebYaST-1.2-Pool/sle-11-x86_64/"},{"id":842,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-WebYaST-1.2-Updates/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true,"installer_updates":false,"name":"SLE11-SP1-WebYaST-1.2-Updates","description":"SLE11-SP1-WebYaST-1.2-Updates for sle-11-i586"}],"eula_url":"","arch":null,"shortname":null,"description":null,"free":true},{"friendly_version":"1.2","identifier":"sle-slms-1.3-migration","release_stage":"released","id":938,"extensions":[],"version":"1.2","recommended":false,"former_identifier":"sle-slms-1.3-migration","release_type":null,"migration_extra":false,"friendly_name":"SUSE Lifecycle Management Server 1.2 (Migration)","offline_predecessor_ids":[],"name":"SUSE Lifecycle Management Server","online_predecessor_ids":[],"product_class":"SLMS","repositories":[{"name":"SLE11-SP2-SLMS-1.3-Pool","installer_updates":false,"description":"SLE11-SP2-SLMS-1.3-Pool for sle-11-x86_64","enabled":true,"id":916,"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-SLMS-1.3-Pool/sle-11-x86_64/"}],"predecessor_ids":[],"product_type":"extension","cpe":null,"free":false,"description":null,"shortname":null,"arch":null,"eula_url":""},{"version":"1.2","recommended":false,"release_type":null,"former_identifier":"sle-slms","migration_extra":false,"friendly_name":"SUSE Lifecycle Management Server 1.2","offline_predecessor_ids":[],"name":"SUSE Lifecycle Management Server","friendly_version":"1.2","identifier":"sle-slms","release_stage":"released","id":939,"extensions":[],"free":false,"shortname":null,"description":null,"arch":null,"eula_url":"","repositories":[{"id":913,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-SLMS-1.2-Pool/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true,"installer_updates":false,"name":"SLE11-SP1-SLMS-1.2-Pool","description":"SLE11-SP1-SLMS-1.2-Pool for sle-11-x86_64"},{"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-SLMS-1.2-Updates/sle-11-x86_64/","enabled":false,"id":918,"description":"SLE11-SP1-SLMS-1.2-Updates for sle-11-x86_64","name":"SLE11-SP1-SLMS-1.2-Updates","installer_updates":false}],"online_predecessor_ids":[],"product_class":"SLMS","predecessor_ids":[],"product_type":"extension","cpe":null},{"shortname":null,"description":null,"free":false,"arch":"x86_64","eula_url":"","product_class":"SLE-HAE-X86","online_predecessor_ids":[],"repositories":[{"distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP2-Pool/sle-11-x86_64/","enabled":true,"id":947,"description":"SLE11-HAE-SP2-Pool for sle-11-x86_64","installer_updates":false,"name":"SLE11-HAE-SP2-Pool"},{"url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP2-Updates/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64","id":948,"enabled":true,"description":"SLE11-HAE-SP2-Updates for sle-11-x86_64","name":"SLE11-HAE-SP2-Updates","installer_updates":false}],"predecessor_ids":[],"cpe":null,"product_type":"extension","version":"11.2","recommended":false,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise High Availability Extension 11 SP2 x86_64","former_identifier":"sle-hae","release_type":null,"name":"SUSE Linux Enterprise High Availability Extension","offline_predecessor_ids":[],"friendly_version":"11 SP2","id":961,"release_stage":"released","identifier":"sle-hae","extensions":[{"arch":"x86_64","eula_url":"","free":false,"description":null,"shortname":null,"product_type":"extension","cpe":null,"product_class":"SLE-HAE-GEO","online_predecessor_ids":[],"repositories":[{"id":1116,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-GEO-SP2-Updates/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64","name":"SLE11-HAE-GEO-SP2-Updates","installer_updates":false,"description":"SLE11-HAE-GEO-SP2-Updates for sle-11-x86_64"}],"predecessor_ids":[],"release_type":null,"former_identifier":"sle-haegeo","friendly_name":"Geo Clustering for SUSE Linux Enterprise High Availability Extension 11 SP2 x86_64","migration_extra":false,"offline_predecessor_ids":[],"name":"Geo Clustering for SUSE Linux Enterprise High Availability Extension","version":"11.2","recommended":false,"identifier":"sle-haegeo","release_stage":"released","id":1101,"extensions":[],"friendly_version":"11 SP2"}]},{"shortname":null,"description":null,"free":false,"eula_url":"","arch":"x86_64","predecessor_ids":[],"repositories":[{"installer_updates":false,"name":"SLE11-HAE-SP3-Updates","description":"SLE11-HAE-SP3-Updates for sle-11-x86_64","id":956,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP3-Updates/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true},{"id":3037,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP3-Pool/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64","name":"SLE11-HAE-SP3-Pool","installer_updates":false,"description":"SLE11-HAE-SP3-Pool for sle-11-x86_64"}],"online_predecessor_ids":[],"product_class":"SLE-HAE-X86","cpe":null,"product_type":"extension","recommended":false,"version":"11.2","name":"SUSE Linux Enterprise High Availability Extension","offline_predecessor_ids":[],"friendly_name":"SUSE Linux Enterprise High Availability Extension 11 SP2 x86_64 (Migration)","migration_extra":false,"release_type":null,"former_identifier":"sle-hae-SP3-migration","friendly_version":"11 SP2","extensions":[{"cpe":null,"product_type":"extension","predecessor_ids":[],"online_predecessor_ids":[],"repositories":[{"installer_updates":false,"name":"SLE11-HAE-GEO-SP2-Updates","description":"SLE11-HAE-GEO-SP2-Updates for sle-11-x86_64","id":1116,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-GEO-SP2-Updates/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true}],"product_class":"SLE-HAE-GEO","eula_url":"","arch":"x86_64","shortname":null,"description":null,"free":false,"extensions":[],"identifier":"sle-haegeo","release_stage":"released","id":1101,"friendly_version":"11 SP2","name":"Geo Clustering for SUSE Linux Enterprise High Availability Extension","offline_predecessor_ids":[],"friendly_name":"Geo Clustering for SUSE Linux Enterprise High Availability Extension 11 SP2 x86_64","migration_extra":false,"former_identifier":"sle-haegeo","release_type":null,"recommended":false,"version":"11.2"}],"release_stage":"released","id":980,"identifier":"sle-hae-SP3-migration"},{"version":"1.2","recommended":false,"migration_extra":false,"friendly_name":"SUSE Studio OnSite 1.2","former_identifier":"sle-studioonsite","release_type":null,"name":"SUSE Studio OnSite","offline_predecessor_ids":[],"friendly_version":"1.2","identifier":"sle-studioonsite","release_stage":"released","id":1006,"extensions":[],"shortname":null,"description":null,"free":false,"arch":null,"eula_url":"","online_predecessor_ids":[],"repositories":[{"enabled":false,"id":680,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Pool/sle-11-i586/","name":"SLE11-SP1-Debuginfo-Pool","installer_updates":false,"description":"SLE11-SP1-Debuginfo-Pool for sle-11-i586"},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Updates/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true,"id":682,"enabled":false,"description":"SLE11-SP1-Debuginfo-Updates for sle-11-i586","installer_updates":false,"name":"SLE11-SP1-Debuginfo-Updates"},{"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-Updates/sle-11-i586/","enabled":true,"id":684,"description":"SLES11-SP1-Updates for sle-11-i586","name":"SLES11-SP1-Updates","installer_updates":false},{"id":686,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-Pool/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true,"installer_updates":false,"name":"SLES11-SP1-Pool","description":"SLES11-SP1-Pool for sle-11-i586"},{"name":"SLES11-SP1-Pool","installer_updates":false,"description":"SLES11-SP1-Pool for sle-11-s390x","enabled":true,"id":687,"autorefresh":true,"distro_target":"sle-11-s390x","url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-Pool/sle-11-s390x/"},{"description":"SLE11-SP1-Debuginfo-Updates for sle-11-s390x","installer_updates":false,"name":"SLE11-SP1-Debuginfo-Updates","distro_target":"sle-11-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Updates/sle-11-s390x/","enabled":false,"id":688},{"id":691,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-Updates/sle-11-s390x/","distro_target":"sle-11-s390x","autorefresh":true,"installer_updates":false,"name":"SLES11-SP1-Updates","description":"SLES11-SP1-Updates for sle-11-s390x"},{"installer_updates":false,"name":"SLE11-SP1-Debuginfo-Pool","description":"SLE11-SP1-Debuginfo-Pool for sle-11-s390x","id":692,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Pool/sle-11-s390x/","distro_target":"sle-11-s390x","autorefresh":true},{"url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-Updates/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64","id":705,"enabled":true,"description":"SLES11-SP1-Updates for sle-11-x86_64","name":"SLES11-SP1-Updates","installer_updates":false},{"description":"SLE11-SP1-Debuginfo-Pool for sle-11-x86_64","name":"SLE11-SP1-Debuginfo-Pool","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Pool/sle-11-x86_64/","enabled":false,"id":707},{"description":"SLES11-SP1-Pool for sle-11-x86_64","installer_updates":false,"name":"SLES11-SP1-Pool","distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-Pool/sle-11-x86_64/","enabled":true,"id":711},{"name":"SLE11-SP1-Debuginfo-Updates","installer_updates":false,"description":"SLE11-SP1-Debuginfo-Updates for sle-11-x86_64","enabled":false,"id":715,"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Updates/sle-11-x86_64/"},{"description":"SLE11-SP1-WebYaST-1.2-Updates for sle-11-x86_64","installer_updates":false,"name":"SLE11-SP1-WebYaST-1.2-Updates","distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-WebYaST-1.2-Updates/sle-11-x86_64/","enabled":true,"id":839},{"enabled":true,"id":840,"distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-WebYaST-1.2-Pool/sle-11-i586/","installer_updates":false,"name":"SLE11-SP1-WebYaST-1.2-Pool","description":"SLE11-SP1-WebYaST-1.2-Pool for sle-11-i586"},{"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-WebYaST-1.2-Pool/sle-11-x86_64/","enabled":true,"id":841,"description":"SLE11-SP1-WebYaST-1.2-Pool for sle-11-x86_64","name":"SLE11-SP1-WebYaST-1.2-Pool","installer_updates":false},{"distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-WebYaST-1.2-Updates/sle-11-i586/","enabled":true,"id":842,"description":"SLE11-SP1-WebYaST-1.2-Updates for sle-11-i586","installer_updates":false,"name":"SLE11-SP1-WebYaST-1.2-Updates"},{"id":913,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-SLMS-1.2-Pool/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64","name":"SLE11-SP1-SLMS-1.2-Pool","installer_updates":false,"description":"SLE11-SP1-SLMS-1.2-Pool for sle-11-x86_64"},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-SLMS-1.2-Updates/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true,"id":918,"enabled":false,"description":"SLE11-SP1-SLMS-1.2-Updates for sle-11-x86_64","installer_updates":false,"name":"SLE11-SP1-SLMS-1.2-Updates"},{"name":"SLES11-SP1-Pool","installer_updates":false,"description":"SLES11-SP1-Pool for sle-11-ppc64","id":919,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-Pool/sle-11-ppc64/","autorefresh":true,"distro_target":"sle-11-ppc64"},{"name":"SLES11-SP1-Updates","installer_updates":false,"description":"SLES11-SP1-Updates for sle-11-ppc64","id":922,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-Updates/sle-11-ppc64/","autorefresh":true,"distro_target":"sle-11-ppc64"},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Updates/sle-11-ppc64/","autorefresh":true,"distro_target":"sle-11-ppc64","id":924,"enabled":false,"description":"SLE11-SP1-Debuginfo-Updates for sle-11-ppc64","name":"SLE11-SP1-Debuginfo-Updates","installer_updates":false},{"enabled":false,"id":925,"distro_target":"sle-11-ppc64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Pool/sle-11-ppc64/","installer_updates":false,"name":"SLE11-SP1-Debuginfo-Pool","description":"SLE11-SP1-Debuginfo-Pool for sle-11-ppc64"},{"description":"SLE11-SP1-Debuginfo-Pool for sle-11-ia64","installer_updates":false,"name":"SLE11-SP1-Debuginfo-Pool","distro_target":"sle-11-ia64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Pool/sle-11-ia64/","enabled":false,"id":970},{"id":971,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Updates/sle-11-ia64/","distro_target":"sle-11-ia64","autorefresh":true,"installer_updates":false,"name":"SLE11-SP1-Debuginfo-Updates","description":"SLE11-SP1-Debuginfo-Updates for sle-11-ia64"},{"distro_target":"sle-11-ia64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-Updates/sle-11-ia64/","enabled":true,"id":987,"description":"SLES11-SP1-Updates for sle-11-ia64","installer_updates":false,"name":"SLES11-SP1-Updates"},{"id":991,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-Pool/sle-11-ia64/","distro_target":"sle-11-ia64","autorefresh":true,"installer_updates":false,"name":"SLES11-SP1-Pool","description":"SLES11-SP1-Pool for sle-11-ia64"},{"installer_updates":false,"name":"SLE11-SP1-WebYaST-1.2-Pool","description":"SLE11-SP1-WebYaST-1.2-Pool for sle-11-s390x","enabled":true,"id":1005,"distro_target":"sle-11-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-WebYaST-1.2-Pool/sle-11-s390x/"},{"id":1006,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-WebYaST-1.2-Updates/sle-11-s390x/","distro_target":"sle-11-s390x","autorefresh":true,"installer_updates":false,"name":"SLE11-SP1-WebYaST-1.2-Updates","description":"SLE11-SP1-WebYaST-1.2-Updates for sle-11-s390x"},{"description":"SLE11-SP1-StudioOnsite-1.2-Updates for sle-11-x86_64","installer_updates":false,"name":"SLE11-SP1-StudioOnsite-1.2-Updates","distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-StudioOnsite-1.2-Updates/sle-11-x86_64/","enabled":true,"id":1007},{"id":1008,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-StudioOnsite-1.2-Pool/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true,"installer_updates":false,"name":"SLE11-SP1-StudioOnsite-1.2-Pool","description":"SLE11-SP1-StudioOnsite-1.2-Pool for sle-11-x86_64"}],"product_class":"STUDIOONSITE","predecessor_ids":[],"cpe":null,"product_type":"extension"},{"eula_url":"","arch":null,"description":null,"shortname":null,"free":false,"cpe":null,"product_type":"extension","predecessor_ids":[],"product_class":"13319","online_predecessor_ids":[],"repositories":[{"name":"SLERT11-SP2-Updates","installer_updates":false,"description":"SLERT11-SP2-Updates for sle-11-x86_64","id":1051,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLERT11-SP2-Updates/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64"},{"url":"https://updates.suse.com/repo/$RCE/SLERT11-SP2-Pool/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":false,"id":1052,"enabled":true,"description":"SLERT11-SP2-Pool for sle-11-x86_64","installer_updates":false,"name":"SLERT11-SP2-Pool"}],"name":"SUSE Linux Enterprise Real Time","offline_predecessor_ids":[],"friendly_name":"SUSE Linux Enterprise Real Time 11 SP2","migration_extra":false,"former_identifier":"SUSE-Linux-Enterprise-RT","release_type":null,"recommended":false,"version":"11.2","extensions":[],"identifier":"SUSE-Linux-Enterprise-RT","release_stage":"released","id":1052,"friendly_version":"11 SP2"},{"friendly_version":"1.0","release_stage":"released","identifier":"SUSE-Cloud","id":1090,"extensions":[],"version":"1.0","recommended":false,"former_identifier":"SUSE-Cloud","release_type":null,"migration_extra":false,"friendly_name":"SUSE Cloud 1.0 x86_64","offline_predecessor_ids":[],"name":"SUSE Cloud","online_predecessor_ids":[],"product_class":"SUSE_CLOUD","repositories":[{"enabled":true,"id":1102,"autorefresh":false,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SUSE-Cloud-1.0-Pool/sle-11-x86_64/","name":"SUSE-Cloud-1.0-Pool","installer_updates":false,"description":"SUSE-Cloud-1.0-Pool for sle-11-x86_64"},{"name":"SUSE-Cloud-1.0-Updates","installer_updates":false,"description":"SUSE-Cloud-1.0-Updates for sle-11-x86_64","id":1103,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SUSE-Cloud-1.0-Updates/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64"}],"predecessor_ids":[],"product_type":"extension","cpe":null,"free":false,"description":null,"shortname":null,"arch":"x86_64","eula_url":""},{"cpe":null,"product_type":"extension","predecessor_ids":[],"online_predecessor_ids":[],"product_class":"STUDIOONSITERUNNER","repositories":[{"enabled":true,"id":684,"distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-Updates/sle-11-i586/","installer_updates":false,"name":"SLES11-SP1-Updates","description":"SLES11-SP1-Updates for sle-11-i586"},{"id":686,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-Pool/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","name":"SLES11-SP1-Pool","installer_updates":false,"description":"SLES11-SP1-Pool for sle-11-i586"},{"url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-Pool/sle-11-s390x/","distro_target":"sle-11-s390x","autorefresh":true,"id":687,"enabled":true,"description":"SLES11-SP1-Pool for sle-11-s390x","installer_updates":false,"name":"SLES11-SP1-Pool"},{"url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-Updates/sle-11-s390x/","autorefresh":true,"distro_target":"sle-11-s390x","id":691,"enabled":true,"description":"SLES11-SP1-Updates for sle-11-s390x","name":"SLES11-SP1-Updates","installer_updates":false},{"id":705,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-Updates/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true,"installer_updates":false,"name":"SLES11-SP1-Updates","description":"SLES11-SP1-Updates for sle-11-x86_64"},{"url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-Pool/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true,"id":711,"enabled":true,"description":"SLES11-SP1-Pool for sle-11-x86_64","installer_updates":false,"name":"SLES11-SP1-Pool"},{"installer_updates":false,"name":"SLES11-SP1-Pool","description":"SLES11-SP1-Pool for sle-11-ppc64","id":919,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-Pool/sle-11-ppc64/","distro_target":"sle-11-ppc64","autorefresh":true},{"name":"SLES11-SP1-Updates","installer_updates":false,"description":"SLES11-SP1-Updates for sle-11-ppc64","enabled":true,"id":922,"autorefresh":true,"distro_target":"sle-11-ppc64","url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-Updates/sle-11-ppc64/"},{"name":"SLES11-SP1-Updates","installer_updates":false,"description":"SLES11-SP1-Updates for sle-11-ia64","id":987,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-Updates/sle-11-ia64/","autorefresh":true,"distro_target":"sle-11-ia64"},{"id":991,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-Pool/sle-11-ia64/","distro_target":"sle-11-ia64","autorefresh":true,"installer_updates":false,"name":"SLES11-SP1-Pool","description":"SLES11-SP1-Pool for sle-11-ia64"},{"enabled":true,"id":1111,"distro_target":"sle-11-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-StudioOnsiteRunner-1.2-Pool/sle-11-s390x/","installer_updates":false,"name":"SLE11-StudioOnsiteRunner-1.2-Pool","description":"SLE11-StudioOnsiteRunner-1.2-Pool for sle-11-s390x"},{"description":"SLE11-StudioOnsiteRunner-1.2-Updates for sle-11-s390x","installer_updates":false,"name":"SLE11-StudioOnsiteRunner-1.2-Updates","url":"https://updates.suse.com/repo/$RCE/SLE11-StudioOnsiteRunner-1.2-Updates/sle-11-s390x/","distro_target":"sle-11-s390x","autorefresh":true,"id":1112,"enabled":true}],"eula_url":"","arch":null,"shortname":null,"description":null,"free":false,"extensions":[],"id":1098,"release_stage":"released","identifier":"sle-studioonsiterunner","friendly_version":"1.2","name":"SUSE Studio Extension for System z","offline_predecessor_ids":[],"friendly_name":"SUSE Studio Extension for System z 1.2","migration_extra":false,"release_type":null,"former_identifier":"sle-studioonsiterunner","recommended":false,"version":"1.2"},{"product_type":"extension","cpe":null,"predecessor_ids":[],"online_predecessor_ids":[],"product_class":"SLE-SDK","repositories":[{"description":"SLE11-SDK-SP1-Updates for sle-11-ia64","name":"SLE11-SDK-SP1-Updates","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Updates/sle-11-ia64/","autorefresh":true,"distro_target":"sle-11-ia64","id":1257,"enabled":true},{"distro_target":"sle-11-ia64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-ia64/","enabled":true,"id":1258,"description":"SLE11-SDK-SP1-Pool for sle-11-ia64","installer_updates":false,"name":"SLE11-SDK-SP1-Pool"},{"name":"SLE11-SDK-SP1-Pool","installer_updates":false,"description":"SLE11-SDK-SP1-Pool for sle-11-s390x","id":1259,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-s390x/","autorefresh":true,"distro_target":"sle-11-s390x"},{"description":"SLE11-SDK-SP1-Updates for sle-11-ppc64","installer_updates":false,"name":"SLE11-SDK-SP1-Updates","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Updates/sle-11-ppc64/","distro_target":"sle-11-ppc64","autorefresh":true,"id":1260,"enabled":true},{"distro_target":"sle-11-ppc64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-ppc64/","enabled":true,"id":1261,"description":"SLE11-SDK-SP1-Pool for sle-11-ppc64","installer_updates":false,"name":"SLE11-SDK-SP1-Pool"},{"enabled":true,"id":1262,"distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Updates/sle-11-i586/","installer_updates":false,"name":"SLE11-SDK-SP1-Updates","description":"SLE11-SDK-SP1-Updates for sle-11-i586"},{"id":1263,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true,"installer_updates":false,"name":"SLE11-SDK-SP1-Pool","description":"SLE11-SDK-SP1-Pool for sle-11-i586"},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true,"id":1264,"enabled":true,"description":"SLE11-SDK-SP1-Pool for sle-11-x86_64","installer_updates":false,"name":"SLE11-SDK-SP1-Pool"},{"distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Updates/sle-11-x86_64/","enabled":true,"id":1265,"description":"SLE11-SDK-SP1-Updates for sle-11-x86_64","installer_updates":false,"name":"SLE11-SDK-SP1-Updates"},{"description":"SLE11-SDK-SP1-Updates for sle-11-s390x","installer_updates":false,"name":"SLE11-SDK-SP1-Updates","distro_target":"sle-11-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Updates/sle-11-s390x/","enabled":true,"id":1266},{"enabled":true,"id":1267,"autorefresh":true,"distro_target":"sle-11-ia64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-ia64/","name":"SLE11-SDK-SP2-Core","installer_updates":false,"description":"SLE11-SDK-SP2-Core for sle-11-ia64"},{"name":"SLE11-SDK-SP2-Core","installer_updates":false,"description":"SLE11-SDK-SP2-Core for sle-11-s390x","id":1268,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-s390x/","autorefresh":true,"distro_target":"sle-11-s390x"},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-s390x/","autorefresh":true,"distro_target":"sle-11-s390x","id":1269,"enabled":true,"description":"SLE11-SDK-SP2-Updates for sle-11-s390x","name":"SLE11-SDK-SP2-Updates","installer_updates":false},{"enabled":true,"id":1270,"distro_target":"sle-11-ppc64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-ppc64/","installer_updates":false,"name":"SLE11-SDK-SP2-Updates","description":"SLE11-SDK-SP2-Updates for sle-11-ppc64"},{"name":"SLE11-SDK-SP2-Updates","installer_updates":false,"description":"SLE11-SDK-SP2-Updates for sle-11-i586","id":1271,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586"},{"enabled":true,"id":1272,"autorefresh":true,"distro_target":"sle-11-ia64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-ia64/","name":"SLE11-SDK-SP2-Updates","installer_updates":false,"description":"SLE11-SDK-SP2-Updates for sle-11-ia64"},{"description":"SLE11-SDK-SP2-Core for sle-11-ppc64","installer_updates":false,"name":"SLE11-SDK-SP2-Core","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-ppc64/","distro_target":"sle-11-ppc64","autorefresh":true,"id":1273,"enabled":true},{"enabled":true,"id":1274,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-i586/","name":"SLE11-SDK-SP2-Core","installer_updates":false,"description":"SLE11-SDK-SP2-Core for sle-11-i586"},{"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-x86_64/","enabled":true,"id":1275,"description":"SLE11-SDK-SP2-Core for sle-11-x86_64","name":"SLE11-SDK-SP2-Core","installer_updates":false},{"installer_updates":false,"name":"SLE11-SDK-SP2-Updates","description":"SLE11-SDK-SP2-Updates for sle-11-x86_64","enabled":true,"id":1276,"distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-x86_64/"}],"eula_url":"","arch":null,"free":true,"shortname":null,"description":null,"extensions":[],"identifier":"sle-sdk","release_stage":"released","id":1160,"friendly_version":"11 SP2","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Software Development Kit","former_identifier":"sle-sdk","release_type":null,"friendly_name":"SUSE Linux Enterprise Software Development Kit 11 SP2","migration_extra":false,"recommended":false,"version":"11.2"},{"product_type":"extension","cpe":null,"online_predecessor_ids":[],"repositories":[{"name":"SLE11-SDK-SP2-Core","installer_updates":false,"description":"SLE11-SDK-SP2-Core for sle-11-ia64","id":1267,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-ia64/","autorefresh":true,"distro_target":"sle-11-ia64"},{"name":"SLE11-SDK-SP2-Core","installer_updates":false,"description":"SLE11-SDK-SP2-Core for sle-11-s390x","enabled":true,"id":1268,"autorefresh":true,"distro_target":"sle-11-s390x","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-s390x/"},{"description":"SLE11-SDK-SP2-Updates for sle-11-s390x","installer_updates":false,"name":"SLE11-SDK-SP2-Updates","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-s390x/","distro_target":"sle-11-s390x","autorefresh":true,"id":1269,"enabled":true},{"enabled":true,"id":1270,"autorefresh":true,"distro_target":"sle-11-ppc64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-ppc64/","name":"SLE11-SDK-SP2-Updates","installer_updates":false,"description":"SLE11-SDK-SP2-Updates for sle-11-ppc64"},{"name":"SLE11-SDK-SP2-Updates","installer_updates":false,"description":"SLE11-SDK-SP2-Updates for sle-11-i586","id":1271,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586"},{"description":"SLE11-SDK-SP2-Updates for sle-11-ia64","name":"SLE11-SDK-SP2-Updates","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-ia64/","autorefresh":true,"distro_target":"sle-11-ia64","id":1272,"enabled":true},{"enabled":true,"id":1273,"distro_target":"sle-11-ppc64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-ppc64/","installer_updates":false,"name":"SLE11-SDK-SP2-Core","description":"SLE11-SDK-SP2-Core for sle-11-ppc64"},{"distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-i586/","enabled":true,"id":1274,"description":"SLE11-SDK-SP2-Core for sle-11-i586","installer_updates":false,"name":"SLE11-SDK-SP2-Core"},{"installer_updates":false,"name":"SLE11-SDK-SP2-Core","description":"SLE11-SDK-SP2-Core for sle-11-x86_64","id":1275,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true},{"id":1276,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64","name":"SLE11-SDK-SP2-Updates","installer_updates":false,"description":"SLE11-SDK-SP2-Updates for sle-11-x86_64"}],"product_class":"SLE-SDK","predecessor_ids":[],"arch":null,"eula_url":"","free":true,"shortname":null,"description":null,"identifier":"sle-sdk-SP2-migration","release_stage":"released","id":1163,"extensions":[],"friendly_version":"11 SP1","former_identifier":"sle-sdk-SP2-migration","release_type":null,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Software Development Kit 11 SP1 (Migration)","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Software Development Kit","version":"11.1","recommended":false},{"name":"SUSE Linux Enterprise Software Development Kit","offline_predecessor_ids":[],"friendly_name":"SUSE Linux Enterprise Software Development Kit 11 SP2 (Migration)","migration_extra":false,"former_identifier":"sle-sdk-SP3-migration","release_type":null,"recommended":false,"version":"11.2","extensions":[],"id":1164,"release_stage":"released","identifier":"sle-sdk-SP3-migration","friendly_version":"11 SP2","eula_url":"","arch":null,"description":null,"shortname":null,"free":true,"cpe":null,"product_type":"extension","predecessor_ids":[],"online_predecessor_ids":[],"repositories":[{"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Pool/sle-11-i586/","enabled":true,"id":1277,"description":"SLE11-SDK-SP3-Pool for sle-11-i586","name":"SLE11-SDK-SP3-Pool","installer_updates":false},{"installer_updates":false,"name":"SLE11-SDK-SP3-Pool","description":"SLE11-SDK-SP3-Pool for sle-11-ia64","enabled":true,"id":1278,"distro_target":"sle-11-ia64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Pool/sle-11-ia64/"},{"enabled":true,"id":1279,"autorefresh":true,"distro_target":"sle-11-ppc64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Updates/sle-11-ppc64/","name":"SLE11-SDK-SP3-Updates","installer_updates":false,"description":"SLE11-SDK-SP3-Updates for sle-11-ppc64"},{"description":"SLE11-SDK-SP3-Updates for sle-11-ia64","name":"SLE11-SDK-SP3-Updates","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Updates/sle-11-ia64/","autorefresh":true,"distro_target":"sle-11-ia64","id":1280,"enabled":true},{"installer_updates":false,"name":"SLE11-SDK-SP3-Pool","description":"SLE11-SDK-SP3-Pool for sle-11-x86_64","id":1281,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Pool/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true},{"description":"SLE11-SDK-SP3-Updates for sle-11-s390x","name":"SLE11-SDK-SP3-Updates","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Updates/sle-11-s390x/","autorefresh":true,"distro_target":"sle-11-s390x","id":1282,"enabled":true},{"installer_updates":false,"name":"SLE11-SDK-SP3-Pool","description":"SLE11-SDK-SP3-Pool for sle-11-ppc64","id":1283,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Pool/sle-11-ppc64/","distro_target":"sle-11-ppc64","autorefresh":true},{"description":"SLE11-SDK-SP3-Updates for sle-11-x86_64","installer_updates":false,"name":"SLE11-SDK-SP3-Updates","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Updates/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true,"id":1284,"enabled":true},{"description":"SLE11-SDK-SP3-Updates for sle-11-i586","name":"SLE11-SDK-SP3-Updates","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Updates/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","id":1285,"enabled":true},{"installer_updates":false,"name":"SLE11-SDK-SP3-Pool","description":"SLE11-SDK-SP3-Pool for sle-11-s390x","enabled":true,"id":1286,"distro_target":"sle-11-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Pool/sle-11-s390x/"}],"product_class":"SLE-SDK"},{"friendly_version":"11 SP2","id":1193,"release_stage":"released","identifier":"sle-smt","extensions":[],"version":"11.2","recommended":false,"release_type":null,"former_identifier":"sle-smt","friendly_name":"SUSE Linux Enterprise Subscription Management Tool 11 SP2","migration_extra":false,"offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Subscription Management Tool","repositories":[{"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP2-Pool/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true,"id":1392,"enabled":true,"description":"SLE11-SMT-SP2-Pool for sle-11-x86_64","installer_updates":false,"name":"SLE11-SMT-SP2-Pool"},{"name":"SLE11-SMT-SP2-Updates","installer_updates":false,"description":"SLE11-SMT-SP2-Updates for sle-11-s390x","id":1393,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP2-Updates/sle-11-s390x/","autorefresh":true,"distro_target":"sle-11-s390x"},{"installer_updates":false,"name":"SLE11-SMT-SP2-Pool","description":"SLE11-SMT-SP2-Pool for sle-11-i586","id":1394,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP2-Pool/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true},{"enabled":true,"id":1395,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP2-Updates/sle-11-i586/","name":"SLE11-SMT-SP2-Updates","installer_updates":false,"description":"SLE11-SMT-SP2-Updates for sle-11-i586"},{"id":1396,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP2-Pool/sle-11-s390x/","autorefresh":true,"distro_target":"sle-11-s390x","name":"SLE11-SMT-SP2-Pool","installer_updates":false,"description":"SLE11-SMT-SP2-Pool for sle-11-s390x"},{"description":"SLE11-SMT-SP2-Updates for sle-11-x86_64","installer_updates":false,"name":"SLE11-SMT-SP2-Updates","url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP2-Updates/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true,"id":1397,"enabled":true}],"online_predecessor_ids":[],"product_class":"SLESMT","predecessor_ids":[],"product_type":"extension","cpe":null,"free":true,"description":null,"shortname":null,"arch":null,"eula_url":""},{"description":null,"shortname":null,"free":true,"arch":null,"eula_url":"","online_predecessor_ids":[],"repositories":[{"description":"SLE11-SMT-SP2-Pool for sle-11-x86_64","name":"SLE11-SMT-SP2-Pool","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP2-Pool/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64","id":1392,"enabled":true},{"description":"SLE11-SMT-SP2-Pool for sle-11-i586","installer_updates":false,"name":"SLE11-SMT-SP2-Pool","url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP2-Pool/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true,"id":1394,"enabled":true},{"installer_updates":false,"name":"SLE11-SMT-SP2-Pool","description":"SLE11-SMT-SP2-Pool for sle-11-s390x","enabled":true,"id":1396,"distro_target":"sle-11-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP2-Pool/sle-11-s390x/"}],"product_class":"SLESMT","predecessor_ids":[],"cpe":null,"product_type":"extension","version":"11","recommended":false,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Subscription Management Tool 11 (Migration)","former_identifier":"sle-smt-SP2-migration","release_type":null,"name":"SUSE Linux Enterprise Subscription Management Tool","offline_predecessor_ids":[],"friendly_version":"11","id":1194,"release_stage":"released","identifier":"sle-smt-SP2-migration","extensions":[]},{"release_type":null,"former_identifier":"sle-smt-SP3-migration","friendly_name":"SUSE Linux Enterprise Subscription Management Tool 11 SP2 (Migration)","migration_extra":false,"offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Subscription Management Tool","version":"11.2","recommended":false,"release_stage":"released","identifier":"sle-smt-SP3-migration","id":1199,"extensions":[],"friendly_version":"11 SP2","arch":null,"eula_url":"","free":true,"shortname":null,"description":null,"product_type":"extension","cpe":null,"online_predecessor_ids":[],"product_class":"SLESMT","repositories":[{"name":"SLE11-SMT-SP3-Pool","installer_updates":false,"description":"SLE11-SMT-SP3-Pool for sle-11-s390x","id":1408,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP3-Pool/sle-11-s390x/","autorefresh":true,"distro_target":"sle-11-s390x"},{"description":"SLE11-SMT-SP3-Pool for sle-11-x86_64","name":"SLE11-SMT-SP3-Pool","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP3-Pool/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64","id":1409,"enabled":true},{"installer_updates":false,"name":"SLE11-SMT-SP3-Pool","description":"SLE11-SMT-SP3-Pool for sle-11-i586","enabled":true,"id":1410,"distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP3-Pool/sle-11-i586/"}],"predecessor_ids":[]},{"recommended":false,"version":"1.2","name":"SUSE WebYaST","offline_predecessor_ids":[],"friendly_name":"SUSE WebYaST 1.2 (Migration)","migration_extra":false,"former_identifier":"sle-11-WebYaST-1.3-migration","release_type":null,"friendly_version":"1.2","extensions":[],"id":1207,"release_stage":"released","identifier":"sle-11-WebYaST-1.3-migration","shortname":null,"description":null,"free":true,"eula_url":"","arch":null,"predecessor_ids":[],"product_class":"WEBYAST","online_predecessor_ids":[],"repositories":[{"distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-WebYaST-1.3-Pool/sle-11-x86_64/","enabled":true,"id":1185,"description":"SLE11-SP2-WebYaST-1.3-Pool for sle-11-x86_64","installer_updates":false,"name":"SLE11-SP2-WebYaST-1.3-Pool"},{"id":1411,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-WebYaST-1.3-Pool/sle-11-s390x/","autorefresh":true,"distro_target":"sle-11-s390x","name":"SLE11-SP2-WebYaST-1.3-Pool","installer_updates":false,"description":"SLE11-SP2-WebYaST-1.3-Pool for sle-11-s390x"},{"installer_updates":false,"name":"SLE11-SP2-WebYaST-1.3-Pool","description":"SLE11-SP2-WebYaST-1.3-Pool for sle-11-ppc64","id":1414,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-WebYaST-1.3-Pool/sle-11-ppc64/","distro_target":"sle-11-ppc64","autorefresh":true},{"description":"SLE11-SP2-WebYaST-1.3-Pool for sle-11-ia64","installer_updates":false,"name":"SLE11-SP2-WebYaST-1.3-Pool","url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-WebYaST-1.3-Pool/sle-11-ia64/","distro_target":"sle-11-ia64","autorefresh":true,"id":1416,"enabled":true},{"installer_updates":false,"name":"SLE11-SP2-WebYaST-1.3-Pool","description":"SLE11-SP2-WebYaST-1.3-Pool for sle-11-i586","enabled":true,"id":1417,"distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-WebYaST-1.3-Pool/sle-11-i586/"}],"cpe":null,"product_type":"extension"}],"version":"11.2","recommended":false,"former_identifier":"SUSE_SLES","release_type":null,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Server 11 SP2 x86_64","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Server","repositories":[{"description":"SLES11-SP1-Updates for sle-11-x86_64","name":"SLES11-SP1-Updates","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-Updates/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64","id":705,"enabled":true},{"description":"SLE11-WebYaST-SP2-Pool for sle-11-x86_64","installer_updates":false,"name":"SLE11-WebYaST-SP2-Pool","url":"https://updates.suse.com/repo/$RCE/SLE11-WebYaST-SP2-Pool/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true,"id":706,"enabled":false},{"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Pool/sle-11-x86_64/","enabled":false,"id":707,"description":"SLE11-SP1-Debuginfo-Pool for sle-11-x86_64","name":"SLE11-SP1-Debuginfo-Pool","installer_updates":false},{"distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-WebYaST-SP2-Updates/sle-11-x86_64/","enabled":false,"id":708,"description":"SLE11-WebYaST-SP2-Updates for sle-11-x86_64","installer_updates":false,"name":"SLE11-WebYaST-SP2-Updates"},{"description":"SLES11-SP2-Core for sle-11-x86_64","name":"SLES11-SP2-Core","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLES11-SP2-Core/sle-11-x86_64/","enabled":true,"id":709},{"enabled":false,"id":710,"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLES11-Extras/sle-11-x86_64/","name":"SLES11-Extras","installer_updates":false,"description":"SLES11-Extras for sle-11-x86_64"},{"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-Pool/sle-11-x86_64/","enabled":true,"id":711,"description":"SLES11-SP1-Pool for sle-11-x86_64","name":"SLES11-SP1-Pool","installer_updates":false},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-Debuginfo-Updates/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64","id":712,"enabled":false,"description":"SLE11-SP2-Debuginfo-Updates for sle-11-x86_64","name":"SLE11-SP2-Debuginfo-Updates","installer_updates":false},{"enabled":true,"id":713,"distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP2-Extension-Store/sle-11-x86_64/","installer_updates":false,"name":"SLES11-SP2-Extension-Store","description":"SLES11-SP2-Extension-Store for sle-11-x86_64"},{"description":"SLES11-SP2-Updates for sle-11-x86_64","installer_updates":false,"name":"SLES11-SP2-Updates","distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP2-Updates/sle-11-x86_64/","enabled":true,"id":714},{"name":"SLE11-SP1-Debuginfo-Updates","installer_updates":false,"description":"SLE11-SP1-Debuginfo-Updates for sle-11-x86_64","id":715,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Updates/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64"},{"description":"SLE11-SP2-Debuginfo-Core for sle-11-x86_64","installer_updates":false,"name":"SLE11-SP2-Debuginfo-Core","url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-Debuginfo-Core/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true,"id":716,"enabled":false},{"id":1157,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP2-LTSS-Updates/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64","name":"SLES11-SP2-LTSS-Updates","installer_updates":false,"description":"SLES11-SP2-LTSS-Updates for sle-11-x86_64"}],"online_predecessor_ids":[],"product_class":"7261","predecessor_ids":[],"product_type":"base","cpe":"cpe:/o:suse:suse_sles:11:sp2","free":false,"description":null,"shortname":null,"arch":"x86_64","eula_url":""},{"cpe":null,"product_type":"base","predecessor_ids":[],"online_predecessor_ids":[],"repositories":[{"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Pool/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","id":680,"enabled":false,"description":"SLE11-SP1-Debuginfo-Pool for sle-11-i586","name":"SLE11-SP1-Debuginfo-Pool","installer_updates":false},{"description":"SLE11-SP1-Debuginfo-Updates for sle-11-i586","name":"SLE11-SP1-Debuginfo-Updates","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Updates/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","id":682,"enabled":false},{"description":"SLE11-SP2-Debuginfo-Core for sle-11-i586","installer_updates":false,"name":"SLE11-SP2-Debuginfo-Core","url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-Debuginfo-Core/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true,"id":717,"enabled":false},{"name":"SLE11-WebYaST-SP2-Pool","installer_updates":false,"description":"SLE11-WebYaST-SP2-Pool for sle-11-i586","id":718,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-WebYaST-SP2-Pool/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586"},{"name":"SLE11-SP2-Debuginfo-Updates","installer_updates":false,"description":"SLE11-SP2-Debuginfo-Updates for sle-11-i586","enabled":false,"id":719,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-Debuginfo-Updates/sle-11-i586/"},{"url":"https://updates.suse.com/repo/$RCE/SLES11-SP2-Updates/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","id":720,"enabled":true,"description":"SLES11-SP2-Updates for sle-11-i586","name":"SLES11-SP2-Updates","installer_updates":false},{"id":721,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-WebYaST-SP2-Updates/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true,"installer_updates":false,"name":"SLE11-WebYaST-SP2-Updates","description":"SLE11-WebYaST-SP2-Updates for sle-11-i586"},{"id":722,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP2-Core/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","name":"SLES11-SP2-Core","installer_updates":false,"description":"SLES11-SP2-Core for sle-11-i586"}],"product_class":"7261","eula_url":"","arch":"i386","description":null,"shortname":null,"free":false,"extensions":[{"offline_predecessor_ids":[],"name":"SUSE Linux Enterprise High Availability Extension","release_type":null,"former_identifier":"sle-hae","migration_extra":false,"friendly_name":"SUSE Linux Enterprise High Availability Extension 11 SP1 i386","recommended":false,"version":"11.1","extensions":[],"release_stage":"released","id":966,"identifier":"sle-hae","friendly_version":"11 SP1","eula_url":"","arch":"i386","free":false,"shortname":null,"description":null,"product_type":"extension","cpe":null,"predecessor_ids":[],"product_class":"SLE-HAE-X86","online_predecessor_ids":[],"repositories":[{"description":"SLE11-HAE-SP1-Updates for sle-11-i586","name":"SLE11-HAE-SP1-Updates","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP1-Updates/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","id":944,"enabled":true},{"name":"SLE11-HAE-SP1-Pool","installer_updates":false,"description":"SLE11-HAE-SP1-Pool for sle-11-i586","id":945,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP1-Pool/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586"}]},{"free":false,"shortname":null,"description":null,"eula_url":"","arch":"i386","predecessor_ids":[],"repositories":[{"enabled":true,"id":949,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP2-Pool/sle-11-i586/","name":"SLE11-HAE-SP2-Pool","installer_updates":false,"description":"SLE11-HAE-SP2-Pool for sle-11-i586"},{"url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP2-Updates/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","id":950,"enabled":true,"description":"SLE11-HAE-SP2-Updates for sle-11-i586","name":"SLE11-HAE-SP2-Updates","installer_updates":false}],"online_predecessor_ids":[],"product_class":"SLE-HAE-X86","product_type":"extension","cpe":null,"recommended":false,"version":"11.1","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise High Availability Extension","former_identifier":"sle-hae-SP2-migration","release_type":null,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise High Availability Extension 11 SP1 i386 (Migration)","friendly_version":"11 SP1","extensions":[],"identifier":"sle-hae-SP2-migration","release_stage":"released","id":982},{"release_type":null,"former_identifier":"sle-smt","migration_extra":false,"friendly_name":"SUSE Linux Enterprise Subscription Management Tool 11 SP1","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Subscription Management Tool","version":"11.1","recommended":false,"release_stage":"released","identifier":"sle-smt","id":1192,"extensions":[],"friendly_version":"11 SP1","arch":null,"eula_url":"","free":true,"shortname":null,"description":null,"product_type":"extension","cpe":null,"online_predecessor_ids":[],"product_class":"SLESMT","repositories":[{"id":1386,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-SMT-Updates/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true,"installer_updates":false,"name":"SLE11-SP1-SMT-Updates","description":"SLE11-SP1-SMT-Updates for sle-11-x86_64"},{"installer_updates":false,"name":"SLE11-SP1-SMT-Pool","description":"SLE11-SP1-SMT-Pool for sle-11-s390x","id":1387,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-SMT-Pool/sle-11-s390x/","distro_target":"sle-11-s390x","autorefresh":true},{"id":1388,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-SMT-Pool/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64","name":"SLE11-SP1-SMT-Pool","installer_updates":false,"description":"SLE11-SP1-SMT-Pool for sle-11-x86_64"},{"enabled":true,"id":1389,"distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-SMT-Updates/sle-11-i586/","installer_updates":false,"name":"SLE11-SP1-SMT-Updates","description":"SLE11-SP1-SMT-Updates for sle-11-i586"},{"description":"SLE11-SP1-SMT-Pool for sle-11-i586","installer_updates":false,"name":"SLE11-SP1-SMT-Pool","url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-SMT-Pool/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true,"id":1390,"enabled":true},{"id":1391,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-SMT-Updates/sle-11-s390x/","distro_target":"sle-11-s390x","autorefresh":true,"installer_updates":false,"name":"SLE11-SP1-SMT-Updates","description":"SLE11-SP1-SMT-Updates for sle-11-s390x"}],"predecessor_ids":[]}],"id":691,"release_stage":"released","identifier":"SUSE_SLES-SP2-migration","friendly_version":"11 SP1","name":"SUSE Linux Enterprise Server","offline_predecessor_ids":[],"friendly_name":"SUSE Linux Enterprise Server 11 SP1 i386 (Migration)","migration_extra":false,"former_identifier":"SUSE_SLES-SP2-migration","release_type":null,"recommended":false,"version":"11.1"},{"friendly_version":"11 SP1","extensions":[{"free":false,"shortname":null,"description":null,"eula_url":"","arch":"s390x","predecessor_ids":[],"online_predecessor_ids":[],"product_class":"SLE-HAE-Z","repositories":[{"url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP2-Pool/sle-11-s390x/","distro_target":"sle-11-s390x","autorefresh":true,"id":1098,"enabled":true,"description":"SLE11-HAE-SP2-Pool for sle-11-s390x","installer_updates":false,"name":"SLE11-HAE-SP2-Pool"},{"name":"SLE11-HAE-SP2-Updates","installer_updates":false,"description":"SLE11-HAE-SP2-Updates for sle-11-s390x","id":1099,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP2-Updates/sle-11-s390x/","autorefresh":true,"distro_target":"sle-11-s390x"}],"product_type":"extension","cpe":null,"recommended":false,"version":"11.1","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise High Availability Extension","former_identifier":"sle-hae-SP2-migration","release_type":null,"friendly_name":"SUSE Linux Enterprise High Availability Extension 11 SP1 s390x (Migration)","migration_extra":false,"friendly_version":"11 SP1","extensions":[],"release_stage":"released","identifier":"sle-hae-SP2-migration","id":1083},{"extensions":[],"release_stage":"released","identifier":"sle-hae","id":1084,"friendly_version":"11 SP1","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise High Availability Extension","release_type":null,"former_identifier":"sle-hae","migration_extra":false,"friendly_name":"SUSE Linux Enterprise High Availability Extension 11 SP1 s390x","recommended":false,"version":"11.1","product_type":"extension","cpe":null,"predecessor_ids":[],"online_predecessor_ids":[],"repositories":[{"enabled":true,"id":1094,"distro_target":"sle-11-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP1-Pool/sle-11-s390x/","installer_updates":false,"name":"SLE11-HAE-SP1-Pool","description":"SLE11-HAE-SP1-Pool for sle-11-s390x"},{"url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP1-Updates/sle-11-s390x/","distro_target":"sle-11-s390x","autorefresh":true,"id":1095,"enabled":true,"description":"SLE11-HAE-SP1-Updates for sle-11-s390x","installer_updates":false,"name":"SLE11-HAE-SP1-Updates"}],"product_class":"SLE-HAE-Z","eula_url":"","arch":"s390x","free":false,"description":null,"shortname":null},{"extensions":[],"id":1192,"release_stage":"released","identifier":"sle-smt","friendly_version":"11 SP1","name":"SUSE Linux Enterprise Subscription Management Tool","offline_predecessor_ids":[],"friendly_name":"SUSE Linux Enterprise Subscription Management Tool 11 SP1","migration_extra":false,"release_type":null,"former_identifier":"sle-smt","recommended":false,"version":"11.1","cpe":null,"product_type":"extension","predecessor_ids":[],"online_predecessor_ids":[],"product_class":"SLESMT","repositories":[{"enabled":true,"id":1386,"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-SMT-Updates/sle-11-x86_64/","name":"SLE11-SP1-SMT-Updates","installer_updates":false,"description":"SLE11-SP1-SMT-Updates for sle-11-x86_64"},{"installer_updates":false,"name":"SLE11-SP1-SMT-Pool","description":"SLE11-SP1-SMT-Pool for sle-11-s390x","enabled":true,"id":1387,"distro_target":"sle-11-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-SMT-Pool/sle-11-s390x/"},{"installer_updates":false,"name":"SLE11-SP1-SMT-Pool","description":"SLE11-SP1-SMT-Pool for sle-11-x86_64","enabled":true,"id":1388,"distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-SMT-Pool/sle-11-x86_64/"},{"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-SMT-Updates/sle-11-i586/","enabled":true,"id":1389,"description":"SLE11-SP1-SMT-Updates for sle-11-i586","name":"SLE11-SP1-SMT-Updates","installer_updates":false},{"enabled":true,"id":1390,"distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-SMT-Pool/sle-11-i586/","installer_updates":false,"name":"SLE11-SP1-SMT-Pool","description":"SLE11-SP1-SMT-Pool for sle-11-i586"},{"enabled":true,"id":1391,"distro_target":"sle-11-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-SMT-Updates/sle-11-s390x/","installer_updates":false,"name":"SLE11-SP1-SMT-Updates","description":"SLE11-SP1-SMT-Updates for sle-11-s390x"}],"eula_url":"","arch":null,"shortname":null,"description":null,"free":true}],"release_stage":"released","identifier":"SUSE_SLES-SP2-migration","id":692,"recommended":false,"version":"11.1","name":"SUSE Linux Enterprise Server","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Server 11 SP1 s390x (Migration)","former_identifier":"SUSE_SLES-SP2-migration","release_type":null,"predecessor_ids":[],"online_predecessor_ids":[],"product_class":"SLES-Z","repositories":[{"enabled":false,"id":688,"autorefresh":true,"distro_target":"sle-11-s390x","url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Updates/sle-11-s390x/","name":"SLE11-SP1-Debuginfo-Updates","installer_updates":false,"description":"SLE11-SP1-Debuginfo-Updates for sle-11-s390x"},{"installer_updates":false,"name":"SLE11-SP1-Debuginfo-Pool","description":"SLE11-SP1-Debuginfo-Pool for sle-11-s390x","enabled":false,"id":692,"distro_target":"sle-11-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Pool/sle-11-s390x/"},{"description":"SLE11-WebYaST-SP2-Updates for sle-11-s390x","name":"SLE11-WebYaST-SP2-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-s390x","url":"https://updates.suse.com/repo/$RCE/SLE11-WebYaST-SP2-Updates/sle-11-s390x/","enabled":false,"id":723},{"description":"SLES11-SP2-Updates for sle-11-s390x","installer_updates":false,"name":"SLES11-SP2-Updates","url":"https://updates.suse.com/repo/$RCE/SLES11-SP2-Updates/sle-11-s390x/","distro_target":"sle-11-s390x","autorefresh":true,"id":724,"enabled":true},{"description":"SLE11-SP2-Debuginfo-Updates for sle-11-s390x","installer_updates":false,"name":"SLE11-SP2-Debuginfo-Updates","distro_target":"sle-11-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-Debuginfo-Updates/sle-11-s390x/","enabled":false,"id":725},{"name":"SLES11-SP2-Core","installer_updates":false,"description":"SLES11-SP2-Core for sle-11-s390x","id":726,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP2-Core/sle-11-s390x/","autorefresh":true,"distro_target":"sle-11-s390x"},{"autorefresh":true,"distro_target":"sle-11-s390x","url":"https://updates.suse.com/repo/$RCE/SLE11-WebYaST-SP2-Pool/sle-11-s390x/","enabled":false,"id":727,"description":"SLE11-WebYaST-SP2-Pool for sle-11-s390x","name":"SLE11-WebYaST-SP2-Pool","installer_updates":false},{"description":"SLE11-SP2-Debuginfo-Core for sle-11-s390x","name":"SLE11-SP2-Debuginfo-Core","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-Debuginfo-Core/sle-11-s390x/","autorefresh":true,"distro_target":"sle-11-s390x","id":728,"enabled":false}],"cpe":null,"product_type":"base","description":null,"shortname":null,"free":false,"eula_url":"","arch":"s390x"},{"name":"SUSE Linux Enterprise Server","offline_predecessor_ids":[],"friendly_name":"SUSE Linux Enterprise Server 11 SP3 s390x","migration_extra":false,"former_identifier":"SUSE_SLES","release_type":null,"recommended":false,"version":"11.3","extensions":[{"friendly_name":"SUSE Linux Enterprise High Availability Extension 11 SP3 s390x","migration_extra":false,"former_identifier":"sle-hae","release_type":null,"name":"SUSE Linux Enterprise High Availability Extension","offline_predecessor_ids":[],"version":"11.3","recommended":false,"release_stage":"released","id":1080,"identifier":"sle-hae","extensions":[{"friendly_version":"11 SP3","identifier":"sle-haegeo","release_stage":"released","id":1110,"extensions":[],"version":"11.3","recommended":false,"former_identifier":"sle-haegeo","release_type":null,"migration_extra":false,"friendly_name":"Geo Clustering for SUSE Linux Enterprise High Availability Extension 11 SP3 s390x","offline_predecessor_ids":[],"name":"Geo Clustering for SUSE Linux Enterprise High Availability Extension","online_predecessor_ids":[],"product_class":"SLE-HAE-GEO","repositories":[{"description":"SLE11-HAE-GEO-SP3-Updates for sle-11-s390x","name":"SLE11-HAE-GEO-SP3-Updates","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-GEO-SP3-Updates/sle-11-s390x/","autorefresh":true,"distro_target":"sle-11-s390x","id":1121,"enabled":true}],"predecessor_ids":[],"product_type":"extension","cpe":null,"free":false,"shortname":null,"description":null,"arch":"s390x","eula_url":""}],"friendly_version":"11 SP3","arch":"s390x","eula_url":"","description":null,"shortname":null,"free":false,"cpe":null,"product_type":"extension","product_class":"SLE-HAE-Z","online_predecessor_ids":[],"repositories":[{"id":1096,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP3-Pool/sle-11-s390x/","autorefresh":true,"distro_target":"sle-11-s390x","name":"SLE11-HAE-SP3-Pool","installer_updates":false,"description":"SLE11-HAE-SP3-Pool for sle-11-s390x"},{"description":"SLE11-HAE-SP3-Updates for sle-11-s390x","name":"SLE11-HAE-SP3-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-s390x","url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP3-Updates/sle-11-s390x/","enabled":true,"id":1097}],"predecessor_ids":[]},{"arch":null,"eula_url":"","free":true,"shortname":null,"description":null,"product_type":"extension","cpe":null,"product_class":"SLE-SDK","online_predecessor_ids":[],"repositories":[{"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Updates/sle-11-ia64/","autorefresh":true,"distro_target":"sle-11-ia64","id":1257,"enabled":false,"description":"SLE11-SDK-SP1-Updates for sle-11-ia64","name":"SLE11-SDK-SP1-Updates","installer_updates":false},{"description":"SLE11-SDK-SP1-Pool for sle-11-ia64","installer_updates":false,"name":"SLE11-SDK-SP1-Pool","distro_target":"sle-11-ia64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-ia64/","enabled":false,"id":1258},{"description":"SLE11-SDK-SP1-Pool for sle-11-s390x","name":"SLE11-SDK-SP1-Pool","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-s390x","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-s390x/","enabled":false,"id":1259},{"name":"SLE11-SDK-SP1-Updates","installer_updates":false,"description":"SLE11-SDK-SP1-Updates for sle-11-ppc64","id":1260,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Updates/sle-11-ppc64/","autorefresh":true,"distro_target":"sle-11-ppc64"},{"autorefresh":true,"distro_target":"sle-11-ppc64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-ppc64/","enabled":false,"id":1261,"description":"SLE11-SDK-SP1-Pool for sle-11-ppc64","name":"SLE11-SDK-SP1-Pool","installer_updates":false},{"description":"SLE11-SDK-SP1-Updates for sle-11-i586","name":"SLE11-SDK-SP1-Updates","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Updates/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","id":1262,"enabled":false},{"enabled":false,"id":1263,"distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-i586/","installer_updates":false,"name":"SLE11-SDK-SP1-Pool","description":"SLE11-SDK-SP1-Pool for sle-11-i586"},{"id":1264,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true,"installer_updates":false,"name":"SLE11-SDK-SP1-Pool","description":"SLE11-SDK-SP1-Pool for sle-11-x86_64"},{"description":"SLE11-SDK-SP1-Updates for sle-11-x86_64","installer_updates":false,"name":"SLE11-SDK-SP1-Updates","distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Updates/sle-11-x86_64/","enabled":false,"id":1265},{"name":"SLE11-SDK-SP1-Updates","installer_updates":false,"description":"SLE11-SDK-SP1-Updates for sle-11-s390x","enabled":false,"id":1266,"autorefresh":true,"distro_target":"sle-11-s390x","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Updates/sle-11-s390x/"},{"enabled":false,"id":1267,"distro_target":"sle-11-ia64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-ia64/","installer_updates":false,"name":"SLE11-SDK-SP2-Core","description":"SLE11-SDK-SP2-Core for sle-11-ia64"},{"description":"SLE11-SDK-SP2-Core for sle-11-s390x","installer_updates":false,"name":"SLE11-SDK-SP2-Core","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-s390x/","distro_target":"sle-11-s390x","autorefresh":true,"id":1268,"enabled":false},{"installer_updates":false,"name":"SLE11-SDK-SP2-Updates","description":"SLE11-SDK-SP2-Updates for sle-11-s390x","id":1269,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-s390x/","distro_target":"sle-11-s390x","autorefresh":true},{"name":"SLE11-SDK-SP2-Updates","installer_updates":false,"description":"SLE11-SDK-SP2-Updates for sle-11-ppc64","enabled":false,"id":1270,"autorefresh":true,"distro_target":"sle-11-ppc64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-ppc64/"},{"name":"SLE11-SDK-SP2-Updates","installer_updates":false,"description":"SLE11-SDK-SP2-Updates for sle-11-i586","id":1271,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586"},{"id":1272,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-ia64/","distro_target":"sle-11-ia64","autorefresh":true,"installer_updates":false,"name":"SLE11-SDK-SP2-Updates","description":"SLE11-SDK-SP2-Updates for sle-11-ia64"},{"name":"SLE11-SDK-SP2-Core","installer_updates":false,"description":"SLE11-SDK-SP2-Core for sle-11-ppc64","id":1273,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-ppc64/","autorefresh":true,"distro_target":"sle-11-ppc64"},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true,"id":1274,"enabled":false,"description":"SLE11-SDK-SP2-Core for sle-11-i586","installer_updates":false,"name":"SLE11-SDK-SP2-Core"},{"id":1275,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64","name":"SLE11-SDK-SP2-Core","installer_updates":false,"description":"SLE11-SDK-SP2-Core for sle-11-x86_64"},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true,"id":1276,"enabled":false,"description":"SLE11-SDK-SP2-Updates for sle-11-x86_64","installer_updates":false,"name":"SLE11-SDK-SP2-Updates"},{"enabled":true,"id":1277,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Pool/sle-11-i586/","name":"SLE11-SDK-SP3-Pool","installer_updates":false,"description":"SLE11-SDK-SP3-Pool for sle-11-i586"},{"description":"SLE11-SDK-SP3-Pool for sle-11-ia64","installer_updates":false,"name":"SLE11-SDK-SP3-Pool","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Pool/sle-11-ia64/","distro_target":"sle-11-ia64","autorefresh":true,"id":1278,"enabled":true},{"installer_updates":false,"name":"SLE11-SDK-SP3-Updates","description":"SLE11-SDK-SP3-Updates for sle-11-ppc64","enabled":true,"id":1279,"distro_target":"sle-11-ppc64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Updates/sle-11-ppc64/"},{"description":"SLE11-SDK-SP3-Updates for sle-11-ia64","installer_updates":false,"name":"SLE11-SDK-SP3-Updates","distro_target":"sle-11-ia64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Updates/sle-11-ia64/","enabled":true,"id":1280},{"id":1281,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Pool/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true,"installer_updates":false,"name":"SLE11-SDK-SP3-Pool","description":"SLE11-SDK-SP3-Pool for sle-11-x86_64"},{"installer_updates":false,"name":"SLE11-SDK-SP3-Updates","description":"SLE11-SDK-SP3-Updates for sle-11-s390x","enabled":true,"id":1282,"distro_target":"sle-11-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Updates/sle-11-s390x/"},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Pool/sle-11-ppc64/","distro_target":"sle-11-ppc64","autorefresh":true,"id":1283,"enabled":true,"description":"SLE11-SDK-SP3-Pool for sle-11-ppc64","installer_updates":false,"name":"SLE11-SDK-SP3-Pool"},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Updates/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64","id":1284,"enabled":true,"description":"SLE11-SDK-SP3-Updates for sle-11-x86_64","name":"SLE11-SDK-SP3-Updates","installer_updates":false},{"name":"SLE11-SDK-SP3-Updates","installer_updates":false,"description":"SLE11-SDK-SP3-Updates for sle-11-i586","enabled":true,"id":1285,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Updates/sle-11-i586/"},{"id":1286,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Pool/sle-11-s390x/","distro_target":"sle-11-s390x","autorefresh":true,"installer_updates":false,"name":"SLE11-SDK-SP3-Pool","description":"SLE11-SDK-SP3-Pool for sle-11-s390x"}],"predecessor_ids":[],"release_type":null,"former_identifier":"sle-sdk","migration_extra":false,"friendly_name":"SUSE Linux Enterprise Software Development Kit 11 SP3","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Software Development Kit","version":"11.3","recommended":false,"id":1161,"release_stage":"released","identifier":"sle-sdk","extensions":[],"friendly_version":"11 SP3"},{"friendly_version":"11 SP2","extensions":[],"id":1164,"release_stage":"released","identifier":"sle-sdk-SP3-migration","recommended":false,"version":"11.2","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Software Development Kit","release_type":null,"former_identifier":"sle-sdk-SP3-migration","migration_extra":false,"friendly_name":"SUSE Linux Enterprise Software Development Kit 11 SP2 (Migration)","predecessor_ids":[],"online_predecessor_ids":[],"repositories":[{"installer_updates":false,"name":"SLE11-SDK-SP3-Pool","description":"SLE11-SDK-SP3-Pool for sle-11-i586","id":1277,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Pool/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true},{"name":"SLE11-SDK-SP3-Pool","installer_updates":false,"description":"SLE11-SDK-SP3-Pool for sle-11-ia64","id":1278,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Pool/sle-11-ia64/","autorefresh":true,"distro_target":"sle-11-ia64"},{"distro_target":"sle-11-ppc64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Updates/sle-11-ppc64/","enabled":true,"id":1279,"description":"SLE11-SDK-SP3-Updates for sle-11-ppc64","installer_updates":false,"name":"SLE11-SDK-SP3-Updates"},{"name":"SLE11-SDK-SP3-Updates","installer_updates":false,"description":"SLE11-SDK-SP3-Updates for sle-11-ia64","enabled":true,"id":1280,"autorefresh":true,"distro_target":"sle-11-ia64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Updates/sle-11-ia64/"},{"id":1281,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Pool/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true,"installer_updates":false,"name":"SLE11-SDK-SP3-Pool","description":"SLE11-SDK-SP3-Pool for sle-11-x86_64"},{"name":"SLE11-SDK-SP3-Updates","installer_updates":false,"description":"SLE11-SDK-SP3-Updates for sle-11-s390x","enabled":true,"id":1282,"autorefresh":true,"distro_target":"sle-11-s390x","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Updates/sle-11-s390x/"},{"description":"SLE11-SDK-SP3-Pool for sle-11-ppc64","name":"SLE11-SDK-SP3-Pool","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-ppc64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Pool/sle-11-ppc64/","enabled":true,"id":1283},{"description":"SLE11-SDK-SP3-Updates for sle-11-x86_64","installer_updates":false,"name":"SLE11-SDK-SP3-Updates","distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Updates/sle-11-x86_64/","enabled":true,"id":1284},{"distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Updates/sle-11-i586/","enabled":true,"id":1285,"description":"SLE11-SDK-SP3-Updates for sle-11-i586","installer_updates":false,"name":"SLE11-SDK-SP3-Updates"},{"id":1286,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Pool/sle-11-s390x/","autorefresh":true,"distro_target":"sle-11-s390x","name":"SLE11-SDK-SP3-Pool","installer_updates":false,"description":"SLE11-SDK-SP3-Pool for sle-11-s390x"}],"product_class":"SLE-SDK","product_type":"extension","cpe":null,"free":true,"shortname":null,"description":null,"eula_url":"","arch":null},{"online_predecessor_ids":[],"product_class":"SLESMT","repositories":[{"description":"SLE11-SMT-SP3-Updates for sle-11-x86_64","installer_updates":false,"name":"SLE11-SMT-SP3-Updates","distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP3-Updates/sle-11-x86_64/","enabled":true,"id":1405},{"id":1406,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP3-Updates/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","name":"SLE11-SMT-SP3-Updates","installer_updates":false,"description":"SLE11-SMT-SP3-Updates for sle-11-i586"},{"id":1407,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP3-Updates/sle-11-s390x/","distro_target":"sle-11-s390x","autorefresh":true,"installer_updates":false,"name":"SLE11-SMT-SP3-Updates","description":"SLE11-SMT-SP3-Updates for sle-11-s390x"},{"id":1408,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP3-Pool/sle-11-s390x/","autorefresh":true,"distro_target":"sle-11-s390x","name":"SLE11-SMT-SP3-Pool","installer_updates":false,"description":"SLE11-SMT-SP3-Pool for sle-11-s390x"},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP3-Pool/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true,"id":1409,"enabled":true,"description":"SLE11-SMT-SP3-Pool for sle-11-x86_64","installer_updates":false,"name":"SLE11-SMT-SP3-Pool"},{"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP3-Pool/sle-11-i586/","enabled":true,"id":1410,"description":"SLE11-SMT-SP3-Pool for sle-11-i586","name":"SLE11-SMT-SP3-Pool","installer_updates":false}],"predecessor_ids":[],"cpe":null,"product_type":"extension","description":null,"shortname":null,"free":true,"arch":null,"eula_url":"","friendly_version":"11 SP3","release_stage":"released","identifier":"sle-smt","id":1198,"extensions":[],"version":"11.3","recommended":false,"friendly_name":"SUSE Linux Enterprise Subscription Management Tool 11 SP3","migration_extra":false,"release_type":null,"former_identifier":"sle-smt","name":"SUSE Linux Enterprise Subscription Management Tool","offline_predecessor_ids":[]},{"predecessor_ids":[],"online_predecessor_ids":[],"product_class":"SLESMT","repositories":[{"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP3-Pool/sle-11-s390x/","distro_target":"sle-11-s390x","autorefresh":true,"id":1408,"enabled":true,"description":"SLE11-SMT-SP3-Pool for sle-11-s390x","installer_updates":false,"name":"SLE11-SMT-SP3-Pool"},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP3-Pool/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64","id":1409,"enabled":true,"description":"SLE11-SMT-SP3-Pool for sle-11-x86_64","name":"SLE11-SMT-SP3-Pool","installer_updates":false},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP3-Pool/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true,"id":1410,"enabled":true,"description":"SLE11-SMT-SP3-Pool for sle-11-i586","installer_updates":false,"name":"SLE11-SMT-SP3-Pool"}],"cpe":null,"product_type":"extension","description":null,"shortname":null,"free":true,"eula_url":"","arch":null,"friendly_version":"11 SP2","extensions":[],"identifier":"sle-smt-SP3-migration","release_stage":"released","id":1199,"recommended":false,"version":"11.2","name":"SUSE Linux Enterprise Subscription Management Tool","offline_predecessor_ids":[],"friendly_name":"SUSE Linux Enterprise Subscription Management Tool 11 SP2 (Migration)","migration_extra":false,"former_identifier":"sle-smt-SP3-migration","release_type":null},{"online_predecessor_ids":[],"repositories":[{"name":"SLE11-SP2-WebYaST-1.3-Pool","installer_updates":false,"description":"SLE11-SP2-WebYaST-1.3-Pool for sle-11-x86_64","enabled":true,"id":1185,"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-WebYaST-1.3-Pool/sle-11-x86_64/"},{"description":"SLE11-SP2-WebYaST-1.3-Updates for sle-11-x86_64","name":"SLE11-SP2-WebYaST-1.3-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-WebYaST-1.3-Updates/sle-11-x86_64/","enabled":true,"id":1188},{"installer_updates":false,"name":"SLE11-SP2-WebYaST-1.3-Pool","description":"SLE11-SP2-WebYaST-1.3-Pool for sle-11-s390x","enabled":true,"id":1411,"distro_target":"sle-11-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-WebYaST-1.3-Pool/sle-11-s390x/"},{"distro_target":"sle-11-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-WebYaST-1.3-Updates/sle-11-s390x/","enabled":true,"id":1412,"description":"SLE11-SP2-WebYaST-1.3-Updates for sle-11-s390x","installer_updates":false,"name":"SLE11-SP2-WebYaST-1.3-Updates"},{"enabled":true,"id":1413,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-WebYaST-1.3-Updates/sle-11-i586/","name":"SLE11-SP2-WebYaST-1.3-Updates","installer_updates":false,"description":"SLE11-SP2-WebYaST-1.3-Updates for sle-11-i586"},{"description":"SLE11-SP2-WebYaST-1.3-Pool for sle-11-ppc64","installer_updates":false,"name":"SLE11-SP2-WebYaST-1.3-Pool","url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-WebYaST-1.3-Pool/sle-11-ppc64/","distro_target":"sle-11-ppc64","autorefresh":true,"id":1414,"enabled":true},{"enabled":true,"id":1415,"distro_target":"sle-11-ia64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-WebYaST-1.3-Updates/sle-11-ia64/","installer_updates":false,"name":"SLE11-SP2-WebYaST-1.3-Updates","description":"SLE11-SP2-WebYaST-1.3-Updates for sle-11-ia64"},{"description":"SLE11-SP2-WebYaST-1.3-Pool for sle-11-ia64","name":"SLE11-SP2-WebYaST-1.3-Pool","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-ia64","url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-WebYaST-1.3-Pool/sle-11-ia64/","enabled":true,"id":1416},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-WebYaST-1.3-Pool/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","id":1417,"enabled":true,"description":"SLE11-SP2-WebYaST-1.3-Pool for sle-11-i586","name":"SLE11-SP2-WebYaST-1.3-Pool","installer_updates":false},{"description":"SLE11-SP2-WebYaST-1.3-Updates for sle-11-ppc64","installer_updates":false,"name":"SLE11-SP2-WebYaST-1.3-Updates","url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-WebYaST-1.3-Updates/sle-11-ppc64/","distro_target":"sle-11-ppc64","autorefresh":true,"id":1418,"enabled":true}],"product_class":"WEBYAST","predecessor_ids":[],"cpe":null,"product_type":"extension","shortname":null,"description":null,"free":true,"arch":null,"eula_url":"","friendly_version":"1.3","identifier":"sle-11-WebYaST","release_stage":"released","id":1206,"extensions":[],"version":"1.3","recommended":false,"migration_extra":false,"friendly_name":"SUSE WebYaST 1.3","former_identifier":"sle-11-WebYaST","release_type":null,"name":"SUSE WebYaST","offline_predecessor_ids":[]},{"recommended":false,"version":"11.3","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise High Availability Extension","release_type":null,"former_identifier":"sle-hae-SP4-migration","migration_extra":false,"friendly_name":"SUSE Linux Enterprise High Availability Extension 11 SP3 s390x (Migration)","friendly_version":"11 SP3","extensions":[{"free":false,"description":null,"shortname":null,"arch":"s390x","eula_url":"","product_class":"SLE-HAE-GEO","online_predecessor_ids":[],"repositories":[{"autorefresh":true,"distro_target":"sle-11-s390x","url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-GEO-SP3-Updates/sle-11-s390x/","enabled":true,"id":1121,"description":"SLE11-HAE-GEO-SP3-Updates for sle-11-s390x","name":"SLE11-HAE-GEO-SP3-Updates","installer_updates":false}],"predecessor_ids":[],"product_type":"extension","cpe":null,"version":"11.3","recommended":false,"former_identifier":"sle-haegeo","release_type":null,"migration_extra":false,"friendly_name":"Geo Clustering for SUSE Linux Enterprise High Availability Extension 11 SP3 s390x","offline_predecessor_ids":[],"name":"Geo Clustering for SUSE Linux Enterprise High Availability Extension","friendly_version":"11 SP3","id":1110,"release_stage":"released","identifier":"sle-haegeo","extensions":[]}],"release_stage":"released","id":1282,"identifier":"sle-hae-SP4-migration","free":false,"description":null,"shortname":null,"eula_url":"","arch":"s390x","predecessor_ids":[],"online_predecessor_ids":[],"repositories":[{"distro_target":"sle-11-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP4-Pool/sle-11-s390x/","enabled":true,"id":1758,"description":"SLE11-HAE-SP4-Pool for sle-11-s390x","installer_updates":false,"name":"SLE11-HAE-SP4-Pool"},{"enabled":true,"id":1759,"distro_target":"sle-11-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP4-Updates/sle-11-s390x/","installer_updates":false,"name":"SLE11-HAE-SP4-Updates","description":"SLE11-HAE-SP4-Updates for sle-11-s390x"}],"product_class":"SLE-HAE-Z","product_type":"extension","cpe":null},{"free":true,"shortname":null,"description":null,"arch":null,"eula_url":"","online_predecessor_ids":[],"product_class":"SLE-SDK","repositories":[{"name":"SLE11-SDK-SP1-Updates","installer_updates":false,"description":"SLE11-SDK-SP1-Updates for sle-11-ia64","id":1257,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Updates/sle-11-ia64/","autorefresh":true,"distro_target":"sle-11-ia64"},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-ia64/","autorefresh":true,"distro_target":"sle-11-ia64","id":1258,"enabled":false,"description":"SLE11-SDK-SP1-Pool for sle-11-ia64","name":"SLE11-SDK-SP1-Pool","installer_updates":false},{"description":"SLE11-SDK-SP1-Pool for sle-11-s390x","name":"SLE11-SDK-SP1-Pool","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-s390x/","autorefresh":true,"distro_target":"sle-11-s390x","id":1259,"enabled":false},{"distro_target":"sle-11-ppc64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Updates/sle-11-ppc64/","enabled":false,"id":1260,"description":"SLE11-SDK-SP1-Updates for sle-11-ppc64","installer_updates":false,"name":"SLE11-SDK-SP1-Updates"},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-ppc64/","distro_target":"sle-11-ppc64","autorefresh":true,"id":1261,"enabled":false,"description":"SLE11-SDK-SP1-Pool for sle-11-ppc64","installer_updates":false,"name":"SLE11-SDK-SP1-Pool"},{"enabled":false,"id":1262,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Updates/sle-11-i586/","name":"SLE11-SDK-SP1-Updates","installer_updates":false,"description":"SLE11-SDK-SP1-Updates for sle-11-i586"},{"id":1263,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true,"installer_updates":false,"name":"SLE11-SDK-SP1-Pool","description":"SLE11-SDK-SP1-Pool for sle-11-i586"},{"distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-x86_64/","enabled":false,"id":1264,"description":"SLE11-SDK-SP1-Pool for sle-11-x86_64","installer_updates":false,"name":"SLE11-SDK-SP1-Pool"},{"enabled":false,"id":1265,"distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Updates/sle-11-x86_64/","installer_updates":false,"name":"SLE11-SDK-SP1-Updates","description":"SLE11-SDK-SP1-Updates for sle-11-x86_64"},{"id":1266,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Updates/sle-11-s390x/","distro_target":"sle-11-s390x","autorefresh":true,"installer_updates":false,"name":"SLE11-SDK-SP1-Updates","description":"SLE11-SDK-SP1-Updates for sle-11-s390x"},{"enabled":false,"id":1267,"distro_target":"sle-11-ia64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-ia64/","installer_updates":false,"name":"SLE11-SDK-SP2-Core","description":"SLE11-SDK-SP2-Core for sle-11-ia64"},{"distro_target":"sle-11-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-s390x/","enabled":false,"id":1268,"description":"SLE11-SDK-SP2-Core for sle-11-s390x","installer_updates":false,"name":"SLE11-SDK-SP2-Core"},{"enabled":false,"id":1269,"distro_target":"sle-11-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-s390x/","installer_updates":false,"name":"SLE11-SDK-SP2-Updates","description":"SLE11-SDK-SP2-Updates for sle-11-s390x"},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-ppc64/","distro_target":"sle-11-ppc64","autorefresh":true,"id":1270,"enabled":false,"description":"SLE11-SDK-SP2-Updates for sle-11-ppc64","installer_updates":false,"name":"SLE11-SDK-SP2-Updates"},{"id":1271,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true,"installer_updates":false,"name":"SLE11-SDK-SP2-Updates","description":"SLE11-SDK-SP2-Updates for sle-11-i586"},{"id":1272,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-ia64/","autorefresh":true,"distro_target":"sle-11-ia64","name":"SLE11-SDK-SP2-Updates","installer_updates":false,"description":"SLE11-SDK-SP2-Updates for sle-11-ia64"},{"description":"SLE11-SDK-SP2-Core for sle-11-ppc64","name":"SLE11-SDK-SP2-Core","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-ppc64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-ppc64/","enabled":false,"id":1273},{"installer_updates":false,"name":"SLE11-SDK-SP2-Core","description":"SLE11-SDK-SP2-Core for sle-11-i586","id":1274,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true},{"name":"SLE11-SDK-SP2-Core","installer_updates":false,"description":"SLE11-SDK-SP2-Core for sle-11-x86_64","id":1275,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64"},{"name":"SLE11-SDK-SP2-Updates","installer_updates":false,"description":"SLE11-SDK-SP2-Updates for sle-11-x86_64","id":1276,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64"},{"description":"SLE11-SDK-SP3-Pool for sle-11-i586","name":"SLE11-SDK-SP3-Pool","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Pool/sle-11-i586/","enabled":false,"id":1277},{"enabled":false,"id":1278,"distro_target":"sle-11-ia64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Pool/sle-11-ia64/","installer_updates":false,"name":"SLE11-SDK-SP3-Pool","description":"SLE11-SDK-SP3-Pool for sle-11-ia64"},{"name":"SLE11-SDK-SP3-Updates","installer_updates":false,"description":"SLE11-SDK-SP3-Updates for sle-11-ppc64","enabled":false,"id":1279,"autorefresh":true,"distro_target":"sle-11-ppc64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Updates/sle-11-ppc64/"},{"enabled":false,"id":1280,"autorefresh":true,"distro_target":"sle-11-ia64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Updates/sle-11-ia64/","name":"SLE11-SDK-SP3-Updates","installer_updates":false,"description":"SLE11-SDK-SP3-Updates for sle-11-ia64"},{"name":"SLE11-SDK-SP3-Pool","installer_updates":false,"description":"SLE11-SDK-SP3-Pool for sle-11-x86_64","id":1281,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Pool/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64"},{"name":"SLE11-SDK-SP3-Updates","installer_updates":false,"description":"SLE11-SDK-SP3-Updates for sle-11-s390x","enabled":false,"id":1282,"autorefresh":true,"distro_target":"sle-11-s390x","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Updates/sle-11-s390x/"},{"installer_updates":false,"name":"SLE11-SDK-SP3-Pool","description":"SLE11-SDK-SP3-Pool for sle-11-ppc64","id":1283,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Pool/sle-11-ppc64/","distro_target":"sle-11-ppc64","autorefresh":true},{"installer_updates":false,"name":"SLE11-SDK-SP3-Updates","description":"SLE11-SDK-SP3-Updates for sle-11-x86_64","id":1284,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Updates/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true},{"enabled":false,"id":1285,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Updates/sle-11-i586/","name":"SLE11-SDK-SP3-Updates","installer_updates":false,"description":"SLE11-SDK-SP3-Updates for sle-11-i586"},{"installer_updates":false,"name":"SLE11-SDK-SP3-Pool","description":"SLE11-SDK-SP3-Pool for sle-11-s390x","enabled":false,"id":1286,"distro_target":"sle-11-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Pool/sle-11-s390x/"},{"enabled":true,"id":1817,"distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP4-Pool/sle-11-i586/","installer_updates":false,"name":"SLE11-SDK-SP4-Pool","description":"SLE11-SDK-SP4-Pool for sle-11-i586"},{"distro_target":"sle-11-ia64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP4-Pool/sle-11-ia64/","enabled":true,"id":1818,"description":"SLE11-SDK-SP4-Pool for sle-11-ia64","installer_updates":false,"name":"SLE11-SDK-SP4-Pool"},{"description":"SLE11-SDK-SP4-Pool for sle-11-ppc64","name":"SLE11-SDK-SP4-Pool","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-ppc64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP4-Pool/sle-11-ppc64/","enabled":true,"id":1819},{"distro_target":"sle-11-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP4-Pool/sle-11-s390x/","enabled":true,"id":1820,"description":"SLE11-SDK-SP4-Pool for sle-11-s390x","installer_updates":false,"name":"SLE11-SDK-SP4-Pool"},{"installer_updates":false,"name":"SLE11-SDK-SP4-Pool","description":"SLE11-SDK-SP4-Pool for sle-11-x86_64","id":1821,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP4-Pool/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true},{"name":"SLE11-SDK-SP4-Updates","installer_updates":false,"description":"SLE11-SDK-SP4-Updates for sle-11-i586","enabled":true,"id":1822,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP4-Updates/sle-11-i586/"},{"enabled":true,"id":1823,"distro_target":"sle-11-ia64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP4-Updates/sle-11-ia64/","installer_updates":false,"name":"SLE11-SDK-SP4-Updates","description":"SLE11-SDK-SP4-Updates for sle-11-ia64"},{"installer_updates":false,"name":"SLE11-SDK-SP4-Updates","description":"SLE11-SDK-SP4-Updates for sle-11-ppc64","enabled":true,"id":1824,"distro_target":"sle-11-ppc64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP4-Updates/sle-11-ppc64/"},{"name":"SLE11-SDK-SP4-Updates","installer_updates":false,"description":"SLE11-SDK-SP4-Updates for sle-11-s390x","id":1825,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP4-Updates/sle-11-s390x/","autorefresh":true,"distro_target":"sle-11-s390x"},{"name":"SLE11-SDK-SP4-Updates","installer_updates":false,"description":"SLE11-SDK-SP4-Updates for sle-11-x86_64","id":1826,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP4-Updates/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64"}],"predecessor_ids":[],"product_type":"extension","cpe":null,"version":"11.3","recommended":false,"release_type":null,"former_identifier":"sle-sdk-SP4-migration","migration_extra":false,"friendly_name":"SUSE Linux Enterprise Software Development Kit 11 SP3 (Migration)","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Software Development Kit","friendly_version":"11 SP3","identifier":"sle-sdk-SP4-migration","release_stage":"released","id":1318,"extensions":[]}],"release_stage":"released","identifier":"SUSE_SLES","id":693,"friendly_version":"11 SP3","eula_url":"","arch":"s390x","description":null,"shortname":null,"free":false,"cpe":"cpe:/o:suse:suse_sles:11:sp3","product_type":"base","predecessor_ids":[],"repositories":[{"description":"SLES11-SP1-Pool for sle-11-s390x","installer_updates":false,"name":"SLES11-SP1-Pool","url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-Pool/sle-11-s390x/","distro_target":"sle-11-s390x","autorefresh":true,"id":687,"enabled":false},{"id":688,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Updates/sle-11-s390x/","distro_target":"sle-11-s390x","autorefresh":true,"installer_updates":false,"name":"SLE11-SP1-Debuginfo-Updates","description":"SLE11-SP1-Debuginfo-Updates for sle-11-s390x"},{"id":689,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLES11-Extras/sle-11-s390x/","autorefresh":true,"distro_target":"sle-11-s390x","name":"SLES11-Extras","installer_updates":false,"description":"SLES11-Extras for sle-11-s390x"},{"description":"SLES11-SP1-Updates for sle-11-s390x","name":"SLES11-SP1-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-s390x","url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-Updates/sle-11-s390x/","enabled":false,"id":691},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Pool/sle-11-s390x/","autorefresh":true,"distro_target":"sle-11-s390x","id":692,"enabled":false,"description":"SLE11-SP1-Debuginfo-Pool for sle-11-s390x","name":"SLE11-SP1-Debuginfo-Pool","installer_updates":false},{"autorefresh":true,"distro_target":"sle-11-s390x","url":"https://updates.suse.com/repo/$RCE/SLES11-SP2-Updates/sle-11-s390x/","enabled":false,"id":724,"description":"SLES11-SP2-Updates for sle-11-s390x","name":"SLES11-SP2-Updates","installer_updates":false},{"distro_target":"sle-11-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-Debuginfo-Updates/sle-11-s390x/","enabled":false,"id":725,"description":"SLE11-SP2-Debuginfo-Updates for sle-11-s390x","installer_updates":false,"name":"SLE11-SP2-Debuginfo-Updates"},{"description":"SLES11-SP2-Core for sle-11-s390x","installer_updates":false,"name":"SLES11-SP2-Core","url":"https://updates.suse.com/repo/$RCE/SLES11-SP2-Core/sle-11-s390x/","distro_target":"sle-11-s390x","autorefresh":true,"id":726,"enabled":false},{"enabled":false,"id":728,"distro_target":"sle-11-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-Debuginfo-Core/sle-11-s390x/","installer_updates":false,"name":"SLE11-SP2-Debuginfo-Core","description":"SLE11-SP2-Debuginfo-Core for sle-11-s390x"},{"enabled":true,"id":729,"distro_target":"sle-11-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP3-Pool/sle-11-s390x/","installer_updates":false,"name":"SLES11-SP3-Pool","description":"SLES11-SP3-Pool for sle-11-s390x"},{"name":"SLES11-SP3-Extension-Store","installer_updates":false,"description":"SLES11-SP3-Extension-Store for sle-11-s390x","id":730,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP3-Extension-Store/sle-11-s390x/","autorefresh":true,"distro_target":"sle-11-s390x"},{"name":"SLES11-SP3-Updates","installer_updates":false,"description":"SLES11-SP3-Updates for sle-11-s390x","enabled":true,"id":731,"autorefresh":true,"distro_target":"sle-11-s390x","url":"https://updates.suse.com/repo/$RCE/SLES11-SP3-Updates/sle-11-s390x/"},{"distro_target":"sle-11-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP3-Debuginfo-Pool/sle-11-s390x/","enabled":false,"id":732,"description":"SLE11-SP3-Debuginfo-Pool for sle-11-s390x","installer_updates":false,"name":"SLE11-SP3-Debuginfo-Pool"},{"description":"SLE11-SP3-Debuginfo-Updates for sle-11-s390x","name":"SLE11-SP3-Debuginfo-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-s390x","url":"https://updates.suse.com/repo/$RCE/SLE11-SP3-Debuginfo-Updates/sle-11-s390x/","enabled":false,"id":733},{"name":"SLES11-SP2-Extension-Store","installer_updates":false,"description":"SLES11-SP2-Extension-Store for sle-11-s390x","enabled":false,"id":734,"autorefresh":true,"distro_target":"sle-11-s390x","url":"https://updates.suse.com/repo/$RCE/SLES11-SP2-Extension-Store/sle-11-s390x/"},{"distro_target":"sle-11-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-Security-Module/sle-11-s390x/","enabled":false,"id":1446,"description":"SLE11-Security-Module for sle-11-s390x","installer_updates":false,"name":"SLE11-Security-Module"},{"name":"SLE11-Public-Cloud-Module","installer_updates":false,"description":"SLE11-Public-Cloud-Module for sle-11-s390x","id":1778,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-Public-Cloud-Module/sle-11-s390x/","autorefresh":true,"distro_target":"sle-11-s390x"},{"installer_updates":false,"name":"SLES11-SP3-LTSS-Updates","description":"SLES11-SP3-LTSS-Updates for sle-11-s390x","enabled":true,"id":1965,"distro_target":"sle-11-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP3-LTSS-Updates/sle-11-s390x/"}],"online_predecessor_ids":[],"product_class":"SLES-Z"},{"free":false,"description":null,"shortname":null,"eula_url":"","arch":"x86_64","predecessor_ids":[],"product_class":"7261","online_predecessor_ids":[],"repositories":[{"enabled":false,"id":705,"distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-Updates/sle-11-x86_64/","installer_updates":false,"name":"SLES11-SP1-Updates","description":"SLES11-SP1-Updates for sle-11-x86_64"},{"name":"SLE11-SP1-Debuginfo-Pool","installer_updates":false,"description":"SLE11-SP1-Debuginfo-Pool for sle-11-x86_64","enabled":false,"id":707,"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Pool/sle-11-x86_64/"},{"name":"SLES11-SP2-Core","installer_updates":false,"description":"SLES11-SP2-Core for sle-11-x86_64","enabled":false,"id":709,"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLES11-SP2-Core/sle-11-x86_64/"},{"url":"https://updates.suse.com/repo/$RCE/SLES11-Extras/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true,"id":710,"enabled":false,"description":"SLES11-Extras for sle-11-x86_64","installer_updates":false,"name":"SLES11-Extras"},{"enabled":false,"id":711,"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-Pool/sle-11-x86_64/","name":"SLES11-SP1-Pool","installer_updates":false,"description":"SLES11-SP1-Pool for sle-11-x86_64"},{"description":"SLE11-SP2-Debuginfo-Updates for sle-11-x86_64","installer_updates":false,"name":"SLE11-SP2-Debuginfo-Updates","distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-Debuginfo-Updates/sle-11-x86_64/","enabled":false,"id":712},{"description":"SLES11-SP2-Extension-Store for sle-11-x86_64","installer_updates":false,"name":"SLES11-SP2-Extension-Store","url":"https://updates.suse.com/repo/$RCE/SLES11-SP2-Extension-Store/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true,"id":713,"enabled":true},{"enabled":false,"id":714,"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLES11-SP2-Updates/sle-11-x86_64/","name":"SLES11-SP2-Updates","installer_updates":false,"description":"SLES11-SP2-Updates for sle-11-x86_64"},{"installer_updates":false,"name":"SLE11-SP1-Debuginfo-Updates","description":"SLE11-SP1-Debuginfo-Updates for sle-11-x86_64","enabled":false,"id":715,"distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Updates/sle-11-x86_64/"},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-Debuginfo-Core/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64","id":716,"enabled":false,"description":"SLE11-SP2-Debuginfo-Core for sle-11-x86_64","name":"SLE11-SP2-Debuginfo-Core","installer_updates":false},{"distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP3-Debuginfo-Updates/sle-11-x86_64/","enabled":false,"id":735,"description":"SLE11-SP3-Debuginfo-Updates for sle-11-x86_64","installer_updates":false,"name":"SLE11-SP3-Debuginfo-Updates"},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SP3-Debuginfo-Pool/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true,"id":736,"enabled":false,"description":"SLE11-SP3-Debuginfo-Pool for sle-11-x86_64","installer_updates":false,"name":"SLE11-SP3-Debuginfo-Pool"},{"description":"SLES11-SP3-Pool for sle-11-x86_64","name":"SLES11-SP3-Pool","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP3-Pool/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64","id":737,"enabled":true},{"installer_updates":false,"name":"SLES11-SP3-Updates","description":"SLES11-SP3-Updates for sle-11-x86_64","enabled":true,"id":738,"distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP3-Updates/sle-11-x86_64/"},{"url":"https://updates.suse.com/repo/$RCE/SLES11-SP3-Extension-Store/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true,"id":739,"enabled":false,"description":"SLES11-SP3-Extension-Store for sle-11-x86_64","installer_updates":false,"name":"SLES11-SP3-Extension-Store"}],"product_type":"base","cpe":null,"recommended":false,"version":"11.2","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Server","release_type":null,"former_identifier":"SUSE_SLES-SP3-migration","migration_extra":false,"friendly_name":"SUSE Linux Enterprise Server 11 SP2 x86_64 (Migration)","friendly_version":"11 SP2","extensions":[{"online_predecessor_ids":[],"product_class":"SLMS","repositories":[{"description":"SLE11-SP2-SLMS-1.3-Pool for sle-11-x86_64","installer_updates":false,"name":"SLE11-SP2-SLMS-1.3-Pool","distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-SLMS-1.3-Pool/sle-11-x86_64/","enabled":true,"id":916}],"predecessor_ids":[],"product_type":"extension","cpe":null,"free":false,"description":null,"shortname":null,"arch":null,"eula_url":"","friendly_version":"1.2","id":938,"release_stage":"released","identifier":"sle-slms-1.3-migration","extensions":[],"version":"1.2","recommended":false,"release_type":null,"former_identifier":"sle-slms-1.3-migration","migration_extra":false,"friendly_name":"SUSE Lifecycle Management Server 1.2 (Migration)","offline_predecessor_ids":[],"name":"SUSE Lifecycle Management Server"},{"extensions":[],"release_stage":"released","id":939,"identifier":"sle-slms","friendly_version":"1.2","name":"SUSE Lifecycle Management Server","offline_predecessor_ids":[],"friendly_name":"SUSE Lifecycle Management Server 1.2","migration_extra":false,"former_identifier":"sle-slms","release_type":null,"recommended":false,"version":"1.2","cpe":null,"product_type":"extension","predecessor_ids":[],"repositories":[{"description":"SLE11-SP1-SLMS-1.2-Pool for sle-11-x86_64","installer_updates":false,"name":"SLE11-SP1-SLMS-1.2-Pool","url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-SLMS-1.2-Pool/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true,"id":913,"enabled":false},{"name":"SLE11-SP1-SLMS-1.2-Updates","installer_updates":false,"description":"SLE11-SP1-SLMS-1.2-Updates for sle-11-x86_64","id":918,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-SLMS-1.2-Updates/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64"}],"online_predecessor_ids":[],"product_class":"SLMS","eula_url":"","arch":null,"shortname":null,"description":null,"free":false},{"recommended":false,"version":"11.2","name":"SUSE Linux Enterprise High Availability Extension","offline_predecessor_ids":[],"friendly_name":"SUSE Linux Enterprise High Availability Extension 11 SP2 x86_64","migration_extra":false,"release_type":null,"former_identifier":"sle-hae","friendly_version":"11 SP2","extensions":[],"identifier":"sle-hae","release_stage":"released","id":961,"shortname":null,"description":null,"free":false,"eula_url":"","arch":"x86_64","predecessor_ids":[],"product_class":"SLE-HAE-X86","online_predecessor_ids":[],"repositories":[{"description":"SLE11-HAE-SP2-Pool for sle-11-x86_64","installer_updates":false,"name":"SLE11-HAE-SP2-Pool","url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP2-Pool/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true,"id":947,"enabled":true},{"description":"SLE11-HAE-SP2-Updates for sle-11-x86_64","name":"SLE11-HAE-SP2-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP2-Updates/sle-11-x86_64/","enabled":true,"id":948}],"cpe":null,"product_type":"extension"},{"friendly_version":"11 SP2","extensions":[],"id":980,"release_stage":"released","identifier":"sle-hae-SP3-migration","recommended":false,"version":"11.2","name":"SUSE Linux Enterprise High Availability Extension","offline_predecessor_ids":[],"friendly_name":"SUSE Linux Enterprise High Availability Extension 11 SP2 x86_64 (Migration)","migration_extra":false,"release_type":null,"former_identifier":"sle-hae-SP3-migration","predecessor_ids":[],"online_predecessor_ids":[],"product_class":"SLE-HAE-X86","repositories":[{"url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP3-Updates/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true,"id":956,"enabled":true,"description":"SLE11-HAE-SP3-Updates for sle-11-x86_64","installer_updates":false,"name":"SLE11-HAE-SP3-Updates"},{"description":"SLE11-HAE-SP3-Pool for sle-11-x86_64","name":"SLE11-HAE-SP3-Pool","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP3-Pool/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64","id":3037,"enabled":true}],"cpe":null,"product_type":"extension","shortname":null,"description":null,"free":false,"eula_url":"","arch":"x86_64"},{"name":"SUSE Studio OnSite","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"SUSE Studio OnSite 1.2","release_type":null,"former_identifier":"sle-studioonsite","recommended":false,"version":"1.2","extensions":[],"release_stage":"released","id":1006,"identifier":"sle-studioonsite","friendly_version":"1.2","eula_url":"","arch":null,"shortname":null,"description":null,"free":false,"cpe":null,"product_type":"extension","predecessor_ids":[],"online_predecessor_ids":[],"repositories":[{"description":"SLE11-SP1-Debuginfo-Pool for sle-11-i586","name":"SLE11-SP1-Debuginfo-Pool","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Pool/sle-11-i586/","enabled":false,"id":680},{"id":682,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Updates/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true,"installer_updates":false,"name":"SLE11-SP1-Debuginfo-Updates","description":"SLE11-SP1-Debuginfo-Updates for sle-11-i586"},{"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-Updates/sle-11-i586/","enabled":true,"id":684,"description":"SLES11-SP1-Updates for sle-11-i586","name":"SLES11-SP1-Updates","installer_updates":false},{"description":"SLES11-SP1-Pool for sle-11-i586","name":"SLES11-SP1-Pool","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-Pool/sle-11-i586/","enabled":true,"id":686},{"autorefresh":true,"distro_target":"sle-11-s390x","url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-Pool/sle-11-s390x/","enabled":true,"id":687,"description":"SLES11-SP1-Pool for sle-11-s390x","name":"SLES11-SP1-Pool","installer_updates":false},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Updates/sle-11-s390x/","distro_target":"sle-11-s390x","autorefresh":true,"id":688,"enabled":false,"description":"SLE11-SP1-Debuginfo-Updates for sle-11-s390x","installer_updates":false,"name":"SLE11-SP1-Debuginfo-Updates"},{"enabled":true,"id":691,"autorefresh":true,"distro_target":"sle-11-s390x","url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-Updates/sle-11-s390x/","name":"SLES11-SP1-Updates","installer_updates":false,"description":"SLES11-SP1-Updates for sle-11-s390x"},{"description":"SLE11-SP1-Debuginfo-Pool for sle-11-s390x","name":"SLE11-SP1-Debuginfo-Pool","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Pool/sle-11-s390x/","autorefresh":true,"distro_target":"sle-11-s390x","id":692,"enabled":false},{"description":"SLES11-SP1-Updates for sle-11-x86_64","name":"SLES11-SP1-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-Updates/sle-11-x86_64/","enabled":true,"id":705},{"distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Pool/sle-11-x86_64/","enabled":false,"id":707,"description":"SLE11-SP1-Debuginfo-Pool for sle-11-x86_64","installer_updates":false,"name":"SLE11-SP1-Debuginfo-Pool"},{"description":"SLES11-SP1-Pool for sle-11-x86_64","installer_updates":false,"name":"SLES11-SP1-Pool","url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-Pool/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true,"id":711,"enabled":true},{"name":"SLE11-SP1-Debuginfo-Updates","installer_updates":false,"description":"SLE11-SP1-Debuginfo-Updates for sle-11-x86_64","enabled":false,"id":715,"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Updates/sle-11-x86_64/"},{"name":"SLE11-SP1-WebYaST-1.2-Updates","installer_updates":false,"description":"SLE11-SP1-WebYaST-1.2-Updates for sle-11-x86_64","enabled":true,"id":839,"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-WebYaST-1.2-Updates/sle-11-x86_64/"},{"enabled":true,"id":840,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-WebYaST-1.2-Pool/sle-11-i586/","name":"SLE11-SP1-WebYaST-1.2-Pool","installer_updates":false,"description":"SLE11-SP1-WebYaST-1.2-Pool for sle-11-i586"},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-WebYaST-1.2-Pool/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true,"id":841,"enabled":true,"description":"SLE11-SP1-WebYaST-1.2-Pool for sle-11-x86_64","installer_updates":false,"name":"SLE11-SP1-WebYaST-1.2-Pool"},{"description":"SLE11-SP1-WebYaST-1.2-Updates for sle-11-i586","installer_updates":false,"name":"SLE11-SP1-WebYaST-1.2-Updates","distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-WebYaST-1.2-Updates/sle-11-i586/","enabled":true,"id":842},{"description":"SLE11-SP1-SLMS-1.2-Pool for sle-11-x86_64","name":"SLE11-SP1-SLMS-1.2-Pool","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-SLMS-1.2-Pool/sle-11-x86_64/","enabled":false,"id":913},{"name":"SLE11-SP1-SLMS-1.2-Updates","installer_updates":false,"description":"SLE11-SP1-SLMS-1.2-Updates for sle-11-x86_64","id":918,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-SLMS-1.2-Updates/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64"},{"url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-Pool/sle-11-ppc64/","distro_target":"sle-11-ppc64","autorefresh":true,"id":919,"enabled":true,"description":"SLES11-SP1-Pool for sle-11-ppc64","installer_updates":false,"name":"SLES11-SP1-Pool"},{"id":922,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-Updates/sle-11-ppc64/","autorefresh":true,"distro_target":"sle-11-ppc64","name":"SLES11-SP1-Updates","installer_updates":false,"description":"SLES11-SP1-Updates for sle-11-ppc64"},{"name":"SLE11-SP1-Debuginfo-Updates","installer_updates":false,"description":"SLE11-SP1-Debuginfo-Updates for sle-11-ppc64","enabled":false,"id":924,"autorefresh":true,"distro_target":"sle-11-ppc64","url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Updates/sle-11-ppc64/"},{"name":"SLE11-SP1-Debuginfo-Pool","installer_updates":false,"description":"SLE11-SP1-Debuginfo-Pool for sle-11-ppc64","id":925,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Pool/sle-11-ppc64/","autorefresh":true,"distro_target":"sle-11-ppc64"},{"description":"SLE11-SP1-Debuginfo-Pool for sle-11-ia64","installer_updates":false,"name":"SLE11-SP1-Debuginfo-Pool","url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Pool/sle-11-ia64/","distro_target":"sle-11-ia64","autorefresh":true,"id":970,"enabled":false},{"installer_updates":false,"name":"SLE11-SP1-Debuginfo-Updates","description":"SLE11-SP1-Debuginfo-Updates for sle-11-ia64","enabled":false,"id":971,"distro_target":"sle-11-ia64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Updates/sle-11-ia64/"},{"description":"SLES11-SP1-Updates for sle-11-ia64","name":"SLES11-SP1-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-ia64","url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-Updates/sle-11-ia64/","enabled":true,"id":987},{"description":"SLES11-SP1-Pool for sle-11-ia64","name":"SLES11-SP1-Pool","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-Pool/sle-11-ia64/","autorefresh":true,"distro_target":"sle-11-ia64","id":991,"enabled":true},{"description":"SLE11-SP1-WebYaST-1.2-Pool for sle-11-s390x","installer_updates":false,"name":"SLE11-SP1-WebYaST-1.2-Pool","distro_target":"sle-11-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-WebYaST-1.2-Pool/sle-11-s390x/","enabled":true,"id":1005},{"description":"SLE11-SP1-WebYaST-1.2-Updates for sle-11-s390x","name":"SLE11-SP1-WebYaST-1.2-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-s390x","url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-WebYaST-1.2-Updates/sle-11-s390x/","enabled":true,"id":1006},{"description":"SLE11-SP1-StudioOnsite-1.2-Updates for sle-11-x86_64","installer_updates":false,"name":"SLE11-SP1-StudioOnsite-1.2-Updates","url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-StudioOnsite-1.2-Updates/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true,"id":1007,"enabled":true},{"name":"SLE11-SP1-StudioOnsite-1.2-Pool","installer_updates":false,"description":"SLE11-SP1-StudioOnsite-1.2-Pool for sle-11-x86_64","id":1008,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-StudioOnsite-1.2-Pool/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64"}],"product_class":"STUDIOONSITE"},{"migration_extra":false,"friendly_name":"SUSE Cloud 1.0 x86_64","former_identifier":"SUSE-Cloud","release_type":null,"name":"SUSE Cloud","offline_predecessor_ids":[],"version":"1.0","recommended":false,"release_stage":"released","id":1090,"identifier":"SUSE-Cloud","extensions":[],"friendly_version":"1.0","arch":"x86_64","eula_url":"","description":null,"shortname":null,"free":false,"cpe":null,"product_type":"extension","online_predecessor_ids":[],"product_class":"SUSE_CLOUD","repositories":[{"distro_target":"sle-11-x86_64","autorefresh":false,"url":"https://updates.suse.com/repo/$RCE/SUSE-Cloud-1.0-Pool/sle-11-x86_64/","enabled":true,"id":1102,"description":"SUSE-Cloud-1.0-Pool for sle-11-x86_64","installer_updates":false,"name":"SUSE-Cloud-1.0-Pool"},{"description":"SUSE-Cloud-1.0-Updates for sle-11-x86_64","name":"SUSE-Cloud-1.0-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SUSE-Cloud-1.0-Updates/sle-11-x86_64/","enabled":true,"id":1103}],"predecessor_ids":[]},{"arch":null,"eula_url":"","shortname":null,"description":null,"free":false,"cpe":null,"product_type":"extension","online_predecessor_ids":[],"product_class":"STUDIOONSITERUNNER","repositories":[{"description":"SLES11-SP1-Updates for sle-11-i586","installer_updates":false,"name":"SLES11-SP1-Updates","url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-Updates/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true,"id":684,"enabled":true},{"url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-Pool/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true,"id":686,"enabled":true,"description":"SLES11-SP1-Pool for sle-11-i586","installer_updates":false,"name":"SLES11-SP1-Pool"},{"id":687,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-Pool/sle-11-s390x/","distro_target":"sle-11-s390x","autorefresh":true,"installer_updates":false,"name":"SLES11-SP1-Pool","description":"SLES11-SP1-Pool for sle-11-s390x"},{"installer_updates":false,"name":"SLES11-SP1-Updates","description":"SLES11-SP1-Updates for sle-11-s390x","id":691,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-Updates/sle-11-s390x/","distro_target":"sle-11-s390x","autorefresh":true},{"distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-Updates/sle-11-x86_64/","enabled":true,"id":705,"description":"SLES11-SP1-Updates for sle-11-x86_64","installer_updates":false,"name":"SLES11-SP1-Updates"},{"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-Pool/sle-11-x86_64/","enabled":true,"id":711,"description":"SLES11-SP1-Pool for sle-11-x86_64","name":"SLES11-SP1-Pool","installer_updates":false},{"url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-Pool/sle-11-ppc64/","distro_target":"sle-11-ppc64","autorefresh":true,"id":919,"enabled":true,"description":"SLES11-SP1-Pool for sle-11-ppc64","installer_updates":false,"name":"SLES11-SP1-Pool"},{"url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-Updates/sle-11-ppc64/","autorefresh":true,"distro_target":"sle-11-ppc64","id":922,"enabled":true,"description":"SLES11-SP1-Updates for sle-11-ppc64","name":"SLES11-SP1-Updates","installer_updates":false},{"url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-Updates/sle-11-ia64/","autorefresh":true,"distro_target":"sle-11-ia64","id":987,"enabled":true,"description":"SLES11-SP1-Updates for sle-11-ia64","name":"SLES11-SP1-Updates","installer_updates":false},{"description":"SLES11-SP1-Pool for sle-11-ia64","name":"SLES11-SP1-Pool","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-ia64","url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-Pool/sle-11-ia64/","enabled":true,"id":991},{"installer_updates":false,"name":"SLE11-StudioOnsiteRunner-1.2-Pool","description":"SLE11-StudioOnsiteRunner-1.2-Pool for sle-11-s390x","id":1111,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-StudioOnsiteRunner-1.2-Pool/sle-11-s390x/","distro_target":"sle-11-s390x","autorefresh":true},{"description":"SLE11-StudioOnsiteRunner-1.2-Updates for sle-11-s390x","name":"SLE11-StudioOnsiteRunner-1.2-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-s390x","url":"https://updates.suse.com/repo/$RCE/SLE11-StudioOnsiteRunner-1.2-Updates/sle-11-s390x/","enabled":true,"id":1112}],"predecessor_ids":[],"migration_extra":false,"friendly_name":"SUSE Studio Extension for System z 1.2","former_identifier":"sle-studioonsiterunner","release_type":null,"name":"SUSE Studio Extension for System z","offline_predecessor_ids":[],"version":"1.2","recommended":false,"id":1098,"release_stage":"released","identifier":"sle-studioonsiterunner","extensions":[],"friendly_version":"1.2"},{"predecessor_ids":[],"product_class":"SLESMT","online_predecessor_ids":[],"repositories":[{"installer_updates":false,"name":"SLE11-SMT-SP2-Pool","description":"SLE11-SMT-SP2-Pool for sle-11-x86_64","enabled":true,"id":1392,"distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP2-Pool/sle-11-x86_64/"},{"description":"SLE11-SMT-SP2-Updates for sle-11-s390x","name":"SLE11-SMT-SP2-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-s390x","url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP2-Updates/sle-11-s390x/","enabled":true,"id":1393},{"enabled":true,"id":1394,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP2-Pool/sle-11-i586/","name":"SLE11-SMT-SP2-Pool","installer_updates":false,"description":"SLE11-SMT-SP2-Pool for sle-11-i586"},{"id":1395,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP2-Updates/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true,"installer_updates":false,"name":"SLE11-SMT-SP2-Updates","description":"SLE11-SMT-SP2-Updates for sle-11-i586"},{"name":"SLE11-SMT-SP2-Pool","installer_updates":false,"description":"SLE11-SMT-SP2-Pool for sle-11-s390x","enabled":true,"id":1396,"autorefresh":true,"distro_target":"sle-11-s390x","url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP2-Pool/sle-11-s390x/"},{"description":"SLE11-SMT-SP2-Updates for sle-11-x86_64","installer_updates":false,"name":"SLE11-SMT-SP2-Updates","url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP2-Updates/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true,"id":1397,"enabled":true}],"product_type":"extension","cpe":null,"free":true,"description":null,"shortname":null,"eula_url":"","arch":null,"friendly_version":"11 SP2","extensions":[],"id":1193,"release_stage":"released","identifier":"sle-smt","recommended":false,"version":"11.2","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Subscription Management Tool","former_identifier":"sle-smt","release_type":null,"friendly_name":"SUSE Linux Enterprise Subscription Management Tool 11 SP2","migration_extra":false},{"friendly_version":"11 SP2","extensions":[],"id":1199,"release_stage":"released","identifier":"sle-smt-SP3-migration","recommended":false,"version":"11.2","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Subscription Management Tool","former_identifier":"sle-smt-SP3-migration","release_type":null,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Subscription Management Tool 11 SP2 (Migration)","predecessor_ids":[],"repositories":[{"installer_updates":false,"name":"SLE11-SMT-SP3-Pool","description":"SLE11-SMT-SP3-Pool for sle-11-s390x","enabled":true,"id":1408,"distro_target":"sle-11-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP3-Pool/sle-11-s390x/"},{"installer_updates":false,"name":"SLE11-SMT-SP3-Pool","description":"SLE11-SMT-SP3-Pool for sle-11-x86_64","id":1409,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP3-Pool/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true},{"description":"SLE11-SMT-SP3-Pool for sle-11-i586","name":"SLE11-SMT-SP3-Pool","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP3-Pool/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","id":1410,"enabled":true}],"online_predecessor_ids":[],"product_class":"SLESMT","product_type":"extension","cpe":null,"free":true,"description":null,"shortname":null,"eula_url":"","arch":null}],"release_stage":"released","id":694,"identifier":"SUSE_SLES-SP3-migration"},{"release_stage":"released","identifier":"SUSE-Linux-Enterprise-Server-i386","id":695,"extensions":[{"product_class":"SLE-SDK","online_predecessor_ids":[],"repositories":[{"name":"SLE10-SDK-SP1-Online","installer_updates":false,"description":"SLE10-SDK-SP1-Online for sles-10-s390x","enabled":true,"id":1294,"autorefresh":true,"distro_target":"sles-10-s390x","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sles-10-s390x/"},{"installer_updates":false,"name":"SLE10-SDK-SP1-Online","description":"SLE10-SDK-SP1-Online for sles-10-x86_64","id":1295,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sles-10-x86_64/","distro_target":"sles-10-x86_64","autorefresh":true},{"description":"SLE10-SDK-SP1-Online for sled-10-i586","installer_updates":false,"name":"SLE10-SDK-SP1-Online","distro_target":"sled-10-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sled-10-i586/","enabled":true,"id":1296},{"autorefresh":true,"distro_target":"sles-10-ppc","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sles-10-ppc/","enabled":true,"id":1297,"description":"SLE10-SDK-SP1-Online for sles-10-ppc","name":"SLE10-SDK-SP1-Online","installer_updates":false},{"enabled":true,"id":1301,"autorefresh":true,"distro_target":"sles-10-ia64","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sles-10-ia64/","name":"SLE10-SDK-SP1-Online","installer_updates":false,"description":"SLE10-SDK-SP1-Online for sles-10-ia64"},{"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sles-10-i586/","distro_target":"sles-10-i586","autorefresh":true,"id":1303,"enabled":true,"description":"SLE10-SDK-SP1-Online for sles-10-i586","installer_updates":false,"name":"SLE10-SDK-SP1-Online"},{"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sled-10-x86_64/","distro_target":"sled-10-x86_64","autorefresh":true,"id":1307,"enabled":true,"description":"SLE10-SDK-SP1-Online for sled-10-x86_64","installer_updates":false,"name":"SLE10-SDK-SP1-Online"}],"predecessor_ids":[],"product_type":"extension","cpe":null,"free":true,"description":null,"shortname":null,"arch":null,"eula_url":"","friendly_version":"10","identifier":"SUSE-Linux-Enterprise-SDK-SP1-migration","release_stage":"released","id":1175,"extensions":[],"version":"10","recommended":false,"release_type":null,"former_identifier":"SUSE-Linux-Enterprise-SDK-SP1-migration","migration_extra":false,"friendly_name":"SUSE Linux Enterprise Software Development Kit 10 (Migration)","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Software Development Kit"},{"cpe":null,"product_type":"extension","online_predecessor_ids":[],"repositories":[{"enabled":true,"id":1308,"distro_target":"sled-10-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sled-10-i586/","installer_updates":false,"name":"SLE10-SDK-SP2-Online","description":"SLE10-SDK-SP2-Online for sled-10-i586"},{"installer_updates":false,"name":"SLE10-SDK-SP2-Online","description":"SLE10-SDK-SP2-Online for sles-10-ppc","enabled":true,"id":1312,"distro_target":"sles-10-ppc","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sles-10-ppc/"},{"installer_updates":false,"name":"SLE10-SDK-SP2-Online","description":"SLE10-SDK-SP2-Online for sles-10-i586","id":1313,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sles-10-i586/","distro_target":"sles-10-i586","autorefresh":true},{"installer_updates":false,"name":"SLE10-SDK-SP2-Online","description":"SLE10-SDK-SP2-Online for sled-10-x86_64","id":1314,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sled-10-x86_64/","distro_target":"sled-10-x86_64","autorefresh":true},{"id":1316,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sles-10-ia64/","autorefresh":true,"distro_target":"sles-10-ia64","name":"SLE10-SDK-SP2-Online","installer_updates":false,"description":"SLE10-SDK-SP2-Online for sles-10-ia64"},{"id":1318,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sles-10-s390x/","distro_target":"sles-10-s390x","autorefresh":true,"installer_updates":false,"name":"SLE10-SDK-SP2-Online","description":"SLE10-SDK-SP2-Online for sles-10-s390x"},{"description":"SLE10-SDK-SP2-Online for sles-10-x86_64","name":"SLE10-SDK-SP2-Online","installer_updates":false,"autorefresh":true,"distro_target":"sles-10-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sles-10-x86_64/","enabled":true,"id":1321}],"product_class":"SLE-SDK","predecessor_ids":[],"arch":null,"eula_url":"","description":null,"shortname":null,"free":true,"release_stage":"released","id":1178,"identifier":"SUSE-Linux-Enterprise-SDK-SP2-migration","extensions":[],"friendly_version":"10","migration_extra":false,"friendly_name":"SUSE Linux Enterprise Software Development Kit 10 online (Migration)","release_type":"online","former_identifier":"SUSE-Linux-Enterprise-SDK-SP2-migration","name":"SUSE Linux Enterprise Software Development Kit","offline_predecessor_ids":[],"version":"10","recommended":false},{"friendly_version":"10","extensions":[],"release_stage":"released","identifier":"SUSE-Linux-Enterprise-SDK-SP3-migration","id":1180,"recommended":false,"version":"10","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Software Development Kit","former_identifier":"SUSE-Linux-Enterprise-SDK-SP3-migration","release_type":null,"friendly_name":"SUSE Linux Enterprise Software Development Kit 10 (Migration)","migration_extra":false,"predecessor_ids":[],"online_predecessor_ids":[],"product_class":"SLE-SDK","repositories":[{"enabled":true,"id":1324,"distro_target":"sled-10-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sled-10-i586/","installer_updates":false,"name":"SLE10-SDK-SP3-Online","description":"SLE10-SDK-SP3-Online for sled-10-i586"},{"id":1326,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sled-10-x86_64/","distro_target":"sled-10-x86_64","autorefresh":true,"installer_updates":false,"name":"SLE10-SDK-SP3-Online","description":"SLE10-SDK-SP3-Online for sled-10-x86_64"},{"distro_target":"sles-10-ia64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sles-10-ia64/","enabled":true,"id":1328,"description":"SLE10-SDK-SP3-Online for sles-10-ia64","installer_updates":false,"name":"SLE10-SDK-SP3-Online"},{"description":"SLE10-SDK-SP3-Online for sles-10-i586","installer_updates":false,"name":"SLE10-SDK-SP3-Online","distro_target":"sles-10-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sles-10-i586/","enabled":true,"id":1330},{"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sles-10-s390x/","distro_target":"sles-10-s390x","autorefresh":true,"id":1335,"enabled":true,"description":"SLE10-SDK-SP3-Online for sles-10-s390x","installer_updates":false,"name":"SLE10-SDK-SP3-Online"},{"enabled":true,"id":1341,"autorefresh":true,"distro_target":"sles-10-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sles-10-x86_64/","name":"SLE10-SDK-SP3-Online","installer_updates":false,"description":"SLE10-SDK-SP3-Online for sles-10-x86_64"},{"id":1342,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sles-10-ppc/","distro_target":"sles-10-ppc","autorefresh":true,"installer_updates":false,"name":"SLE10-SDK-SP3-Online","description":"SLE10-SDK-SP3-Online for sles-10-ppc"}],"product_type":"extension","cpe":null,"free":true,"shortname":null,"description":null,"eula_url":"","arch":null},{"arch":null,"eula_url":"","shortname":null,"description":null,"free":true,"cpe":null,"product_type":"extension","online_predecessor_ids":[],"repositories":[{"id":1357,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP4-Online/sles-10-x86_64/","autorefresh":true,"distro_target":"sles-10-x86_64","name":"SLE10-SDK-SP4-Online","installer_updates":false,"description":"SLE10-SDK-SP4-Online for sles-10-x86_64"},{"enabled":true,"id":1358,"autorefresh":true,"distro_target":"sles-10-i586","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP4-Online/sles-10-i586/","name":"SLE10-SDK-SP4-Online","installer_updates":false,"description":"SLE10-SDK-SP4-Online for sles-10-i586"},{"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP4-Online/sles-10-ia64/","autorefresh":true,"distro_target":"sles-10-ia64","id":1359,"enabled":true,"description":"SLE10-SDK-SP4-Online for sles-10-ia64","name":"SLE10-SDK-SP4-Online","installer_updates":false},{"name":"SLE10-SDK-SP4-Online","installer_updates":false,"description":"SLE10-SDK-SP4-Online for sled-10-x86_64","id":1360,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP4-Online/sled-10-x86_64/","autorefresh":true,"distro_target":"sled-10-x86_64"},{"description":"SLE10-SDK-SP4-Online for sled-10-i586","installer_updates":false,"name":"SLE10-SDK-SP4-Online","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP4-Online/sled-10-i586/","distro_target":"sled-10-i586","autorefresh":true,"id":1361,"enabled":true},{"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP4-Online/sles-10-ppc/","autorefresh":true,"distro_target":"sles-10-ppc","id":1362,"enabled":true,"description":"SLE10-SDK-SP4-Online for sles-10-ppc","name":"SLE10-SDK-SP4-Online","installer_updates":false},{"name":"SLE10-SDK-SP4-Online","installer_updates":false,"description":"SLE10-SDK-SP4-Online for sles-10-s390x","id":1363,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP4-Online/sles-10-s390x/","autorefresh":true,"distro_target":"sles-10-s390x"}],"product_class":"SLE-SDK","predecessor_ids":[],"friendly_name":"SUSE Linux Enterprise Software Development Kit 10 (Migration)","migration_extra":false,"release_type":null,"former_identifier":"SUSE-Linux-Enterprise-SDK-SP4-migration","name":"SUSE Linux Enterprise Software Development Kit","offline_predecessor_ids":[],"version":"10","recommended":false,"release_stage":"released","id":1182,"identifier":"SUSE-Linux-Enterprise-SDK-SP4-migration","extensions":[],"friendly_version":"10"}],"friendly_version":"10","former_identifier":"SUSE-Linux-Enterprise-Server-i386","release_type":null,"friendly_name":"SUSE Linux Enterprise Server 10 i686","migration_extra":false,"offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Server","version":"10","recommended":false,"product_type":"base","cpe":null,"online_predecessor_ids":[],"product_class":"7261","repositories":[{"description":"SLES10-Updates for sles-10-i586","installer_updates":false,"name":"SLES10-Updates","distro_target":"sles-10-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLES10-Updates/sles-10-i586/","enabled":true,"id":740},{"url":"https://updates.suse.com/repo/$RCE/SLE10-Debuginfo-Updates/sles-10-i586/","distro_target":"sles-10-i586","autorefresh":true,"id":741,"enabled":false,"description":"SLE10-Debuginfo-Updates for sles-10-i586","installer_updates":false,"name":"SLE10-Debuginfo-Updates"}],"predecessor_ids":[],"arch":"i686","eula_url":"","free":false,"shortname":null,"description":null},{"product_type":"base","cpe":null,"repositories":[{"name":"SLES10-Updates","installer_updates":false,"description":"SLES10-Updates for sles-10-i586","id":740,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLES10-Updates/sles-10-i586/","autorefresh":true,"distro_target":"sles-10-i586"},{"id":741,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-Debuginfo-Updates/sles-10-i586/","distro_target":"sles-10-i586","autorefresh":true,"installer_updates":false,"name":"SLE10-Debuginfo-Updates","description":"SLE10-Debuginfo-Updates for sles-10-i586"}],"online_predecessor_ids":[],"product_class":"7261","predecessor_ids":[],"arch":"i586","eula_url":"","free":false,"shortname":null,"description":null,"release_stage":"released","id":696,"identifier":"SUSE-Linux-Enterprise-Server-i386","extensions":[{"release_type":null,"former_identifier":"SUSE-Linux-Enterprise-SDK-SP1-migration","migration_extra":false,"friendly_name":"SUSE Linux Enterprise Software Development Kit 10 (Migration)","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Software Development Kit","version":"10","recommended":false,"release_stage":"released","id":1175,"identifier":"SUSE-Linux-Enterprise-SDK-SP1-migration","extensions":[],"friendly_version":"10","arch":null,"eula_url":"","free":true,"description":null,"shortname":null,"product_type":"extension","cpe":null,"online_predecessor_ids":[],"product_class":"SLE-SDK","repositories":[{"enabled":true,"id":1294,"autorefresh":true,"distro_target":"sles-10-s390x","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sles-10-s390x/","name":"SLE10-SDK-SP1-Online","installer_updates":false,"description":"SLE10-SDK-SP1-Online for sles-10-s390x"},{"enabled":true,"id":1295,"distro_target":"sles-10-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sles-10-x86_64/","installer_updates":false,"name":"SLE10-SDK-SP1-Online","description":"SLE10-SDK-SP1-Online for sles-10-x86_64"},{"autorefresh":true,"distro_target":"sled-10-i586","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sled-10-i586/","enabled":true,"id":1296,"description":"SLE10-SDK-SP1-Online for sled-10-i586","name":"SLE10-SDK-SP1-Online","installer_updates":false},{"name":"SLE10-SDK-SP1-Online","installer_updates":false,"description":"SLE10-SDK-SP1-Online for sles-10-ppc","enabled":true,"id":1297,"autorefresh":true,"distro_target":"sles-10-ppc","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sles-10-ppc/"},{"autorefresh":true,"distro_target":"sles-10-ia64","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sles-10-ia64/","enabled":true,"id":1301,"description":"SLE10-SDK-SP1-Online for sles-10-ia64","name":"SLE10-SDK-SP1-Online","installer_updates":false},{"installer_updates":false,"name":"SLE10-SDK-SP1-Online","description":"SLE10-SDK-SP1-Online for sles-10-i586","enabled":true,"id":1303,"distro_target":"sles-10-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sles-10-i586/"},{"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sled-10-x86_64/","autorefresh":true,"distro_target":"sled-10-x86_64","id":1307,"enabled":true,"description":"SLE10-SDK-SP1-Online for sled-10-x86_64","name":"SLE10-SDK-SP1-Online","installer_updates":false}],"predecessor_ids":[]},{"eula_url":"","arch":null,"free":true,"shortname":null,"description":null,"product_type":"extension","cpe":null,"predecessor_ids":[],"repositories":[{"autorefresh":true,"distro_target":"sled-10-i586","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sled-10-i586/","enabled":true,"id":1308,"description":"SLE10-SDK-SP2-Online for sled-10-i586","name":"SLE10-SDK-SP2-Online","installer_updates":false},{"description":"SLE10-SDK-SP2-Online for sles-10-ppc","name":"SLE10-SDK-SP2-Online","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sles-10-ppc/","autorefresh":true,"distro_target":"sles-10-ppc","id":1312,"enabled":true},{"enabled":true,"id":1313,"autorefresh":true,"distro_target":"sles-10-i586","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sles-10-i586/","name":"SLE10-SDK-SP2-Online","installer_updates":false,"description":"SLE10-SDK-SP2-Online for sles-10-i586"},{"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sled-10-x86_64/","autorefresh":true,"distro_target":"sled-10-x86_64","id":1314,"enabled":true,"description":"SLE10-SDK-SP2-Online for sled-10-x86_64","name":"SLE10-SDK-SP2-Online","installer_updates":false},{"name":"SLE10-SDK-SP2-Online","installer_updates":false,"description":"SLE10-SDK-SP2-Online for sles-10-ia64","enabled":true,"id":1316,"autorefresh":true,"distro_target":"sles-10-ia64","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sles-10-ia64/"},{"enabled":true,"id":1318,"distro_target":"sles-10-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sles-10-s390x/","installer_updates":false,"name":"SLE10-SDK-SP2-Online","description":"SLE10-SDK-SP2-Online for sles-10-s390x"},{"description":"SLE10-SDK-SP2-Online for sles-10-x86_64","installer_updates":false,"name":"SLE10-SDK-SP2-Online","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sles-10-x86_64/","distro_target":"sles-10-x86_64","autorefresh":true,"id":1321,"enabled":true}],"online_predecessor_ids":[],"product_class":"SLE-SDK","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Software Development Kit","release_type":"online","former_identifier":"SUSE-Linux-Enterprise-SDK-SP2-migration","migration_extra":false,"friendly_name":"SUSE Linux Enterprise Software Development Kit 10 online (Migration)","recommended":false,"version":"10","extensions":[],"release_stage":"released","identifier":"SUSE-Linux-Enterprise-SDK-SP2-migration","id":1178,"friendly_version":"10"},{"name":"SUSE Linux Enterprise Software Development Kit","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Software Development Kit 10 (Migration)","former_identifier":"SUSE-Linux-Enterprise-SDK-SP3-migration","release_type":null,"recommended":false,"version":"10","extensions":[],"id":1180,"release_stage":"released","identifier":"SUSE-Linux-Enterprise-SDK-SP3-migration","friendly_version":"10","eula_url":"","arch":null,"description":null,"shortname":null,"free":true,"cpe":null,"product_type":"extension","predecessor_ids":[],"online_predecessor_ids":[],"repositories":[{"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sled-10-i586/","distro_target":"sled-10-i586","autorefresh":true,"id":1324,"enabled":true,"description":"SLE10-SDK-SP3-Online for sled-10-i586","installer_updates":false,"name":"SLE10-SDK-SP3-Online"},{"description":"SLE10-SDK-SP3-Online for sled-10-x86_64","name":"SLE10-SDK-SP3-Online","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sled-10-x86_64/","autorefresh":true,"distro_target":"sled-10-x86_64","id":1326,"enabled":true},{"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sles-10-ia64/","distro_target":"sles-10-ia64","autorefresh":true,"id":1328,"enabled":true,"description":"SLE10-SDK-SP3-Online for sles-10-ia64","installer_updates":false,"name":"SLE10-SDK-SP3-Online"},{"name":"SLE10-SDK-SP3-Online","installer_updates":false,"description":"SLE10-SDK-SP3-Online for sles-10-i586","id":1330,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sles-10-i586/","autorefresh":true,"distro_target":"sles-10-i586"},{"id":1335,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sles-10-s390x/","distro_target":"sles-10-s390x","autorefresh":true,"installer_updates":false,"name":"SLE10-SDK-SP3-Online","description":"SLE10-SDK-SP3-Online for sles-10-s390x"},{"enabled":true,"id":1341,"autorefresh":true,"distro_target":"sles-10-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sles-10-x86_64/","name":"SLE10-SDK-SP3-Online","installer_updates":false,"description":"SLE10-SDK-SP3-Online for sles-10-x86_64"},{"description":"SLE10-SDK-SP3-Online for sles-10-ppc","name":"SLE10-SDK-SP3-Online","installer_updates":false,"autorefresh":true,"distro_target":"sles-10-ppc","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sles-10-ppc/","enabled":true,"id":1342}],"product_class":"SLE-SDK"},{"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Software Development Kit 10 (Migration)","release_type":null,"former_identifier":"SUSE-Linux-Enterprise-SDK-SP4-migration","name":"SUSE Linux Enterprise Software Development Kit","offline_predecessor_ids":[],"version":"10","recommended":false,"release_stage":"released","identifier":"SUSE-Linux-Enterprise-SDK-SP4-migration","id":1182,"extensions":[],"friendly_version":"10","arch":null,"eula_url":"","description":null,"shortname":null,"free":true,"cpe":null,"product_type":"extension","online_predecessor_ids":[],"product_class":"SLE-SDK","repositories":[{"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP4-Online/sles-10-x86_64/","distro_target":"sles-10-x86_64","autorefresh":true,"id":1357,"enabled":true,"description":"SLE10-SDK-SP4-Online for sles-10-x86_64","installer_updates":false,"name":"SLE10-SDK-SP4-Online"},{"enabled":true,"id":1358,"distro_target":"sles-10-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP4-Online/sles-10-i586/","installer_updates":false,"name":"SLE10-SDK-SP4-Online","description":"SLE10-SDK-SP4-Online for sles-10-i586"},{"id":1359,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP4-Online/sles-10-ia64/","distro_target":"sles-10-ia64","autorefresh":true,"installer_updates":false,"name":"SLE10-SDK-SP4-Online","description":"SLE10-SDK-SP4-Online for sles-10-ia64"},{"enabled":true,"id":1360,"distro_target":"sled-10-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP4-Online/sled-10-x86_64/","installer_updates":false,"name":"SLE10-SDK-SP4-Online","description":"SLE10-SDK-SP4-Online for sled-10-x86_64"},{"name":"SLE10-SDK-SP4-Online","installer_updates":false,"description":"SLE10-SDK-SP4-Online for sled-10-i586","enabled":true,"id":1361,"autorefresh":true,"distro_target":"sled-10-i586","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP4-Online/sled-10-i586/"},{"installer_updates":false,"name":"SLE10-SDK-SP4-Online","description":"SLE10-SDK-SP4-Online for sles-10-ppc","id":1362,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP4-Online/sles-10-ppc/","distro_target":"sles-10-ppc","autorefresh":true},{"enabled":true,"id":1363,"distro_target":"sles-10-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP4-Online/sles-10-s390x/","installer_updates":false,"name":"SLE10-SDK-SP4-Online","description":"SLE10-SDK-SP4-Online for sles-10-s390x"}],"predecessor_ids":[]}],"friendly_version":"10","former_identifier":"SUSE-Linux-Enterprise-Server-i386","release_type":null,"friendly_name":"SUSE Linux Enterprise Server 10 i586","migration_extra":false,"offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Server","version":"10","recommended":false},{"friendly_version":"10","extensions":[{"cpe":null,"product_type":"extension","online_predecessor_ids":[],"product_class":"SLE-SDK","repositories":[{"description":"SLE10-SDK-Updates for sled-10-i586","installer_updates":false,"name":"SLE10-SDK-Updates","distro_target":"sled-10-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-Updates/sled-10-i586/","enabled":true,"id":1287},{"description":"SLE10-SDK-Updates for sles-10-i586","installer_updates":false,"name":"SLE10-SDK-Updates","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-Updates/sles-10-i586/","distro_target":"sles-10-i586","autorefresh":true,"id":1288,"enabled":true}],"predecessor_ids":[],"arch":"i386","eula_url":"","shortname":null,"description":null,"free":true,"identifier":"SUSE-Linux-Enterprise-SDK-DVD-i386","release_stage":"released","id":1165,"extensions":[],"friendly_version":"10","friendly_name":"SUSE Linux Enterprise Software Development Kit 10 i386","migration_extra":false,"former_identifier":"SUSE-Linux-Enterprise-SDK-DVD-i386","release_type":null,"name":"SUSE Linux Enterprise Software Development Kit","offline_predecessor_ids":[],"version":"10","recommended":false},{"version":"10","recommended":false,"friendly_name":"SUSE Linux Enterprise Software Development Kit 10 i386","migration_extra":false,"release_type":null,"former_identifier":"SUSE-Linux-Enterprise-SDK-i386","name":"SUSE Linux Enterprise Software Development Kit","offline_predecessor_ids":[],"friendly_version":"10","id":1170,"release_stage":"released","identifier":"SUSE-Linux-Enterprise-SDK-i386","extensions":[],"description":null,"shortname":null,"free":true,"arch":"i386","eula_url":"","product_class":"SLE-SDK","online_predecessor_ids":[],"repositories":[{"name":"SLE10-SDK-Updates","installer_updates":false,"description":"SLE10-SDK-Updates for sled-10-i586","enabled":true,"id":1287,"autorefresh":true,"distro_target":"sled-10-i586","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-Updates/sled-10-i586/"},{"installer_updates":false,"name":"SLE10-SDK-Updates","description":"SLE10-SDK-Updates for sles-10-i586","id":1288,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-Updates/sles-10-i586/","distro_target":"sles-10-i586","autorefresh":true}],"predecessor_ids":[],"cpe":null,"product_type":"extension"},{"cpe":null,"product_type":"extension","predecessor_ids":[],"online_predecessor_ids":[],"repositories":[{"autorefresh":true,"distro_target":"sles-10-s390x","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sles-10-s390x/","enabled":true,"id":1294,"description":"SLE10-SDK-SP1-Online for sles-10-s390x","name":"SLE10-SDK-SP1-Online","installer_updates":false},{"name":"SLE10-SDK-SP1-Online","installer_updates":false,"description":"SLE10-SDK-SP1-Online for sles-10-x86_64","enabled":true,"id":1295,"autorefresh":true,"distro_target":"sles-10-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sles-10-x86_64/"},{"name":"SLE10-SDK-SP1-Online","installer_updates":false,"description":"SLE10-SDK-SP1-Online for sled-10-i586","enabled":true,"id":1296,"autorefresh":true,"distro_target":"sled-10-i586","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sled-10-i586/"},{"description":"SLE10-SDK-SP1-Online for sles-10-ppc","installer_updates":false,"name":"SLE10-SDK-SP1-Online","distro_target":"sles-10-ppc","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sles-10-ppc/","enabled":true,"id":1297},{"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sles-10-ia64/","distro_target":"sles-10-ia64","autorefresh":true,"id":1301,"enabled":true,"description":"SLE10-SDK-SP1-Online for sles-10-ia64","installer_updates":false,"name":"SLE10-SDK-SP1-Online"},{"id":1303,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sles-10-i586/","distro_target":"sles-10-i586","autorefresh":true,"installer_updates":false,"name":"SLE10-SDK-SP1-Online","description":"SLE10-SDK-SP1-Online for sles-10-i586"},{"description":"SLE10-SDK-SP1-Online for sled-10-x86_64","name":"SLE10-SDK-SP1-Online","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sled-10-x86_64/","autorefresh":true,"distro_target":"sled-10-x86_64","id":1307,"enabled":true}],"product_class":"SLE-SDK","eula_url":"","arch":null,"description":null,"shortname":null,"free":true,"extensions":[],"identifier":"SUSE-Linux-Enterprise-SDK-SP1-migration","release_stage":"released","id":1175,"friendly_version":"10","name":"SUSE Linux Enterprise Software Development Kit","offline_predecessor_ids":[],"friendly_name":"SUSE Linux Enterprise Software Development Kit 10 (Migration)","migration_extra":false,"release_type":null,"former_identifier":"SUSE-Linux-Enterprise-SDK-SP1-migration","recommended":false,"version":"10"},{"version":"10","recommended":false,"former_identifier":"SUSE-Linux-Enterprise-SDK-SP2-migration","release_type":"online","migration_extra":false,"friendly_name":"SUSE Linux Enterprise Software Development Kit 10 online (Migration)","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Software Development Kit","friendly_version":"10","id":1178,"release_stage":"released","identifier":"SUSE-Linux-Enterprise-SDK-SP2-migration","extensions":[],"free":true,"description":null,"shortname":null,"arch":null,"eula_url":"","online_predecessor_ids":[],"repositories":[{"id":1308,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sled-10-i586/","distro_target":"sled-10-i586","autorefresh":true,"installer_updates":false,"name":"SLE10-SDK-SP2-Online","description":"SLE10-SDK-SP2-Online for sled-10-i586"},{"installer_updates":false,"name":"SLE10-SDK-SP2-Online","description":"SLE10-SDK-SP2-Online for sles-10-ppc","enabled":true,"id":1312,"distro_target":"sles-10-ppc","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sles-10-ppc/"},{"enabled":true,"id":1313,"autorefresh":true,"distro_target":"sles-10-i586","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sles-10-i586/","name":"SLE10-SDK-SP2-Online","installer_updates":false,"description":"SLE10-SDK-SP2-Online for sles-10-i586"},{"enabled":true,"id":1314,"autorefresh":true,"distro_target":"sled-10-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sled-10-x86_64/","name":"SLE10-SDK-SP2-Online","installer_updates":false,"description":"SLE10-SDK-SP2-Online for sled-10-x86_64"},{"id":1316,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sles-10-ia64/","distro_target":"sles-10-ia64","autorefresh":true,"installer_updates":false,"name":"SLE10-SDK-SP2-Online","description":"SLE10-SDK-SP2-Online for sles-10-ia64"},{"installer_updates":false,"name":"SLE10-SDK-SP2-Online","description":"SLE10-SDK-SP2-Online for sles-10-s390x","enabled":true,"id":1318,"distro_target":"sles-10-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sles-10-s390x/"},{"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sles-10-x86_64/","distro_target":"sles-10-x86_64","autorefresh":true,"id":1321,"enabled":true,"description":"SLE10-SDK-SP2-Online for sles-10-x86_64","installer_updates":false,"name":"SLE10-SDK-SP2-Online"}],"product_class":"SLE-SDK","predecessor_ids":[],"product_type":"extension","cpe":null},{"predecessor_ids":[],"product_class":"SLE-SDK","online_predecessor_ids":[],"repositories":[{"id":1324,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sled-10-i586/","distro_target":"sled-10-i586","autorefresh":true,"installer_updates":false,"name":"SLE10-SDK-SP3-Online","description":"SLE10-SDK-SP3-Online for sled-10-i586"},{"enabled":true,"id":1326,"autorefresh":true,"distro_target":"sled-10-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sled-10-x86_64/","name":"SLE10-SDK-SP3-Online","installer_updates":false,"description":"SLE10-SDK-SP3-Online for sled-10-x86_64"},{"description":"SLE10-SDK-SP3-Online for sles-10-ia64","installer_updates":false,"name":"SLE10-SDK-SP3-Online","distro_target":"sles-10-ia64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sles-10-ia64/","enabled":true,"id":1328},{"enabled":true,"id":1330,"autorefresh":true,"distro_target":"sles-10-i586","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sles-10-i586/","name":"SLE10-SDK-SP3-Online","installer_updates":false,"description":"SLE10-SDK-SP3-Online for sles-10-i586"},{"description":"SLE10-SDK-SP3-Online for sles-10-s390x","name":"SLE10-SDK-SP3-Online","installer_updates":false,"autorefresh":true,"distro_target":"sles-10-s390x","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sles-10-s390x/","enabled":true,"id":1335},{"installer_updates":false,"name":"SLE10-SDK-SP3-Online","description":"SLE10-SDK-SP3-Online for sles-10-x86_64","id":1341,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sles-10-x86_64/","distro_target":"sles-10-x86_64","autorefresh":true},{"description":"SLE10-SDK-SP3-Online for sles-10-ppc","installer_updates":false,"name":"SLE10-SDK-SP3-Online","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sles-10-ppc/","distro_target":"sles-10-ppc","autorefresh":true,"id":1342,"enabled":true}],"product_type":"extension","cpe":null,"free":true,"shortname":null,"description":null,"eula_url":"","arch":null,"friendly_version":"10","extensions":[],"release_stage":"released","id":1180,"identifier":"SUSE-Linux-Enterprise-SDK-SP3-migration","recommended":false,"version":"10","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Software Development Kit","release_type":null,"former_identifier":"SUSE-Linux-Enterprise-SDK-SP3-migration","friendly_name":"SUSE Linux Enterprise Software Development Kit 10 (Migration)","migration_extra":false},{"online_predecessor_ids":[],"repositories":[{"enabled":true,"id":1357,"autorefresh":true,"distro_target":"sles-10-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP4-Online/sles-10-x86_64/","name":"SLE10-SDK-SP4-Online","installer_updates":false,"description":"SLE10-SDK-SP4-Online for sles-10-x86_64"},{"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP4-Online/sles-10-i586/","distro_target":"sles-10-i586","autorefresh":true,"id":1358,"enabled":true,"description":"SLE10-SDK-SP4-Online for sles-10-i586","installer_updates":false,"name":"SLE10-SDK-SP4-Online"},{"description":"SLE10-SDK-SP4-Online for sles-10-ia64","installer_updates":false,"name":"SLE10-SDK-SP4-Online","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP4-Online/sles-10-ia64/","distro_target":"sles-10-ia64","autorefresh":true,"id":1359,"enabled":true},{"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP4-Online/sled-10-x86_64/","distro_target":"sled-10-x86_64","autorefresh":true,"id":1360,"enabled":true,"description":"SLE10-SDK-SP4-Online for sled-10-x86_64","installer_updates":false,"name":"SLE10-SDK-SP4-Online"},{"id":1361,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP4-Online/sled-10-i586/","autorefresh":true,"distro_target":"sled-10-i586","name":"SLE10-SDK-SP4-Online","installer_updates":false,"description":"SLE10-SDK-SP4-Online for sled-10-i586"},{"description":"SLE10-SDK-SP4-Online for sles-10-ppc","installer_updates":false,"name":"SLE10-SDK-SP4-Online","distro_target":"sles-10-ppc","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP4-Online/sles-10-ppc/","enabled":true,"id":1362},{"description":"SLE10-SDK-SP4-Online for sles-10-s390x","name":"SLE10-SDK-SP4-Online","installer_updates":false,"autorefresh":true,"distro_target":"sles-10-s390x","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP4-Online/sles-10-s390x/","enabled":true,"id":1363}],"product_class":"SLE-SDK","predecessor_ids":[],"product_type":"extension","cpe":null,"free":true,"description":null,"shortname":null,"arch":null,"eula_url":"","friendly_version":"10","identifier":"SUSE-Linux-Enterprise-SDK-SP4-migration","release_stage":"released","id":1182,"extensions":[],"version":"10","recommended":false,"release_type":null,"former_identifier":"SUSE-Linux-Enterprise-SDK-SP4-migration","friendly_name":"SUSE Linux Enterprise Software Development Kit 10 (Migration)","migration_extra":false,"offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Software Development Kit"}],"id":697,"release_stage":"released","identifier":"SUSE-Linux-Enterprise-Server-i386","recommended":false,"version":"10","name":"SUSE Linux Enterprise Server","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Server 10 i386","release_type":null,"former_identifier":"SUSE-Linux-Enterprise-Server-i386","predecessor_ids":[],"repositories":[{"id":740,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLES10-Updates/sles-10-i586/","autorefresh":true,"distro_target":"sles-10-i586","name":"SLES10-Updates","installer_updates":false,"description":"SLES10-Updates for sles-10-i586"},{"installer_updates":false,"name":"SLE10-Debuginfo-Updates","description":"SLE10-Debuginfo-Updates for sles-10-i586","enabled":false,"id":741,"distro_target":"sles-10-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-Debuginfo-Updates/sles-10-i586/"}],"online_predecessor_ids":[],"product_class":"7261","cpe":null,"product_type":"base","description":null,"shortname":null,"free":false,"eula_url":"","arch":"i386"},{"id":698,"release_stage":"released","identifier":"SUSE-Linux-Enterprise-Server-SP1-migration","extensions":[],"friendly_version":"10","release_type":null,"former_identifier":"SUSE-Linux-Enterprise-Server-SP1-migration","friendly_name":"SUSE Linux Enterprise Server 10 x86_64 (Migration)","migration_extra":false,"offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Server","version":"10","recommended":false,"product_type":"base","cpe":null,"repositories":[{"name":"SLES10-SP1-Online","installer_updates":false,"description":"SLES10-SP1-Online for sles-10-x86_64","id":742,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLES10-SP1-Online/sles-10-x86_64/","autorefresh":true,"distro_target":"sles-10-x86_64"}],"online_predecessor_ids":[],"product_class":"7261","predecessor_ids":[],"arch":"x86_64","eula_url":"","free":false,"description":null,"shortname":null},{"recommended":false,"version":"10","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Server","release_type":null,"former_identifier":"SUSE-Linux-Enterprise-Server-SP1-migration","migration_extra":false,"friendly_name":"SUSE Linux Enterprise Server 10 ia64 (Migration)","friendly_version":"10","extensions":[],"release_stage":"released","id":699,"identifier":"SUSE-Linux-Enterprise-Server-SP1-migration","free":false,"shortname":null,"description":null,"eula_url":"","arch":"ia64","predecessor_ids":[],"repositories":[{"installer_updates":false,"name":"SLES10-SP1-Online","description":"SLES10-SP1-Online for sles-10-ia64","id":743,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLES10-SP1-Online/sles-10-ia64/","distro_target":"sles-10-ia64","autorefresh":true}],"online_predecessor_ids":[],"product_class":"SLES-IA","product_type":"base","cpe":null},{"version":"10","recommended":false,"friendly_name":"SUSE Linux Enterprise Server 10 i686 (Migration)","migration_extra":false,"release_type":null,"former_identifier":"SUSE-Linux-Enterprise-Server-SP2-migration","name":"SUSE Linux Enterprise Server","offline_predecessor_ids":[],"friendly_version":"10","id":700,"release_stage":"released","identifier":"SUSE-Linux-Enterprise-Server-SP2-migration","extensions":[],"shortname":null,"description":null,"free":false,"arch":"i686","eula_url":"","product_class":"7261","online_predecessor_ids":[],"repositories":[{"url":"https://updates.suse.com/repo/$RCE/SLES10-SP2-Online/sles-10-i586/","distro_target":"sles-10-i586","autorefresh":true,"id":654,"enabled":true,"description":"SLES10-SP2-Online for sles-10-i586","installer_updates":false,"name":"SLES10-SP2-Online"}],"predecessor_ids":[],"cpe":null,"product_type":"base"},{"eula_url":"","arch":"ppc64","free":false,"description":null,"shortname":null,"product_type":"base","cpe":null,"predecessor_ids":[],"online_predecessor_ids":[],"repositories":[{"description":"SLES10-SP2-Online for sles-10-ppc","installer_updates":false,"name":"SLES10-SP2-Online","url":"https://updates.suse.com/repo/$RCE/SLES10-SP2-Online/sles-10-ppc/","distro_target":"sles-10-ppc","autorefresh":true,"id":658,"enabled":true}],"product_class":"SLES-PPC","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Server","former_identifier":"SUSE-Linux-Enterprise-Server-SP2-migration","release_type":null,"friendly_name":"SUSE Linux Enterprise Server 10 ppc64 (Migration)","migration_extra":false,"recommended":false,"version":"10","extensions":[],"release_stage":"released","id":701,"identifier":"SUSE-Linux-Enterprise-Server-SP2-migration","friendly_version":"10"},{"release_stage":"released","id":702,"identifier":"SUSE-Linux-Enterprise-Server-SP2-migration","extensions":[],"friendly_version":"10","migration_extra":false,"friendly_name":"SUSE Linux Enterprise Server 10 s390x (Migration)","release_type":null,"former_identifier":"SUSE-Linux-Enterprise-Server-SP2-migration","name":"SUSE Linux Enterprise Server","offline_predecessor_ids":[],"version":"10","recommended":false,"cpe":null,"product_type":"base","online_predecessor_ids":[],"repositories":[{"enabled":true,"id":744,"distro_target":"sles-10-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLES10-SP2-Online/sles-10-s390x/","installer_updates":false,"name":"SLES10-SP2-Online","description":"SLES10-SP2-Online for sles-10-s390x"}],"product_class":"SLES-Z","predecessor_ids":[],"arch":"s390x","eula_url":"","description":null,"shortname":null,"free":false},{"recommended":false,"version":"11","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Server","former_identifier":"SUSE_SLES","release_type":null,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Server 11 i686","friendly_version":"11","extensions":[{"eula_url":"","arch":null,"description":null,"shortname":null,"free":true,"cpe":null,"product_type":"extension","predecessor_ids":[],"product_class":"WEBYAST","online_predecessor_ids":[],"repositories":[{"id":829,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-WebYaST-1.0-Updates/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","name":"SLE11-WebYaST-1.0-Updates","installer_updates":false,"description":"SLE11-WebYaST-1.0-Updates for sle-11-i586"},{"description":"SLE11-WebYaST-1.0-Pool for sle-11-ia64","name":"SLE11-WebYaST-1.0-Pool","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-ia64","url":"https://updates.suse.com/repo/$RCE/SLE11-WebYaST-1.0-Pool/sle-11-ia64/","enabled":false,"id":830},{"description":"SLE11-WebYaST-1.0-Updates for sle-11-ppc64","installer_updates":false,"name":"SLE11-WebYaST-1.0-Updates","distro_target":"sle-11-ppc64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-WebYaST-1.0-Updates/sle-11-ppc64/","enabled":true,"id":831},{"description":"SLE11-WebYaST-1.0-Pool for sle-11-i586","installer_updates":false,"name":"SLE11-WebYaST-1.0-Pool","url":"https://updates.suse.com/repo/$RCE/SLE11-WebYaST-1.0-Pool/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true,"id":832,"enabled":false},{"description":"SLE11-WebYaST-1.0-Pool for sle-11-s390x","name":"SLE11-WebYaST-1.0-Pool","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-s390x","url":"https://updates.suse.com/repo/$RCE/SLE11-WebYaST-1.0-Pool/sle-11-s390x/","enabled":false,"id":833},{"distro_target":"sle-11-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-WebYaST-1.0-Updates/sle-11-s390x/","enabled":true,"id":834,"description":"SLE11-WebYaST-1.0-Updates for sle-11-s390x","installer_updates":false,"name":"SLE11-WebYaST-1.0-Updates"},{"id":835,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-WebYaST-1.0-Updates/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true,"installer_updates":false,"name":"SLE11-WebYaST-1.0-Updates","description":"SLE11-WebYaST-1.0-Updates for sle-11-x86_64"},{"name":"SLE11-WebYaST-1.0-Pool","installer_updates":false,"description":"SLE11-WebYaST-1.0-Pool for sle-11-x86_64","id":836,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-WebYaST-1.0-Pool/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64"},{"name":"SLE11-WebYaST-1.0-Updates","installer_updates":false,"description":"SLE11-WebYaST-1.0-Updates for sle-11-ia64","enabled":true,"id":837,"autorefresh":true,"distro_target":"sle-11-ia64","url":"https://updates.suse.com/repo/$RCE/SLE11-WebYaST-1.0-Updates/sle-11-ia64/"},{"installer_updates":false,"name":"SLE11-WebYaST-1.0-Pool","description":"SLE11-WebYaST-1.0-Pool for sle-11-ppc64","enabled":false,"id":838,"distro_target":"sle-11-ppc64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-WebYaST-1.0-Pool/sle-11-ppc64/"}],"name":"SUSE WebYaST","offline_predecessor_ids":[],"friendly_name":"SUSE WebYaST 1.0","migration_extra":false,"former_identifier":"sle-11-WebYaST","release_type":null,"recommended":false,"version":"1.0","extensions":[],"release_stage":"released","identifier":"sle-11-WebYaST","id":836,"friendly_version":"1.0"},{"arch":"i686","eula_url":"","free":false,"description":null,"shortname":null,"product_type":"extension","cpe":null,"online_predecessor_ids":[],"repositories":[{"installer_updates":false,"name":"SLE11-HAE-Pool","description":"SLE11-HAE-Pool for sle-11-i586","id":954,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-Pool/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true},{"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-Updates/sle-11-i586/","enabled":true,"id":955,"description":"SLE11-HAE-Updates for sle-11-i586","name":"SLE11-HAE-Updates","installer_updates":false}],"product_class":"SLE-HAE-X86","predecessor_ids":[],"former_identifier":"sle-hae","release_type":null,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise High Availability Extension 11 i686","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise High Availability Extension","version":"11","recommended":false,"release_stage":"released","id":972,"identifier":"sle-hae","extensions":[],"friendly_version":"11"},{"cpe":null,"product_type":"extension","repositories":[{"description":"SLE11-HAE-SP1-Pool for sle-11-i586","name":"SLE11-HAE-SP1-Pool","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP1-Pool/sle-11-i586/","enabled":true,"id":945}],"online_predecessor_ids":[],"product_class":"SLE-HAE-X86","predecessor_ids":[],"arch":"i686","eula_url":"","description":null,"shortname":null,"free":false,"release_stage":"released","id":986,"identifier":"sle-hae-SP1-migration","extensions":[],"friendly_version":"11","migration_extra":false,"friendly_name":"SUSE Linux Enterprise High Availability Extension 11 i686 (Migration)","release_type":null,"former_identifier":"sle-hae-SP1-migration","name":"SUSE Linux Enterprise High Availability Extension","offline_predecessor_ids":[],"version":"11","recommended":false},{"offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Software Development Kit","release_type":null,"former_identifier":"sle-sdk","migration_extra":false,"friendly_name":"SUSE Linux Enterprise Software Development Kit 11","recommended":false,"version":"11","extensions":[],"release_stage":"released","identifier":"sle-sdk","id":1158,"friendly_version":"11","eula_url":"","arch":null,"free":true,"description":null,"shortname":null,"product_type":"extension","cpe":null,"predecessor_ids":[],"product_class":"SLE-SDK","online_predecessor_ids":[],"repositories":[{"description":"SLE11-SDK-Updates for sle-11-ppc64","installer_updates":false,"name":"SLE11-SDK-Updates","distro_target":"sle-11-ppc64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-Updates/sle-11-ppc64/","enabled":true,"id":1247},{"id":1248,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-Pool/sle-11-s390x/","autorefresh":true,"distro_target":"sle-11-s390x","name":"SLE11-SDK-Pool","installer_updates":false,"description":"SLE11-SDK-Pool for sle-11-s390x"},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-Updates/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64","id":1249,"enabled":true,"description":"SLE11-SDK-Updates for sle-11-x86_64","name":"SLE11-SDK-Updates","installer_updates":false},{"id":1250,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-Pool/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true,"installer_updates":false,"name":"SLE11-SDK-Pool","description":"SLE11-SDK-Pool for sle-11-i586"},{"description":"SLE11-SDK-Pool for sle-11-x86_64","installer_updates":false,"name":"SLE11-SDK-Pool","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-Pool/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true,"id":1251,"enabled":false},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-Pool/sle-11-ppc64/","autorefresh":true,"distro_target":"sle-11-ppc64","id":1252,"enabled":false,"description":"SLE11-SDK-Pool for sle-11-ppc64","name":"SLE11-SDK-Pool","installer_updates":false},{"name":"SLE11-SDK-Updates","installer_updates":false,"description":"SLE11-SDK-Updates for sle-11-i586","id":1253,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-Updates/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586"},{"description":"SLE11-SDK-Pool for sle-11-ia64","name":"SLE11-SDK-Pool","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-Pool/sle-11-ia64/","autorefresh":true,"distro_target":"sle-11-ia64","id":1254,"enabled":false},{"name":"SLE11-SDK-Updates","installer_updates":false,"description":"SLE11-SDK-Updates for sle-11-s390x","id":1255,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-Updates/sle-11-s390x/","autorefresh":true,"distro_target":"sle-11-s390x"},{"installer_updates":false,"name":"SLE11-SDK-Updates","description":"SLE11-SDK-Updates for sle-11-ia64","id":1256,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-Updates/sle-11-ia64/","distro_target":"sle-11-ia64","autorefresh":true}]},{"description":null,"shortname":null,"free":true,"eula_url":"","arch":null,"predecessor_ids":[],"product_class":"SLE-SDK","online_predecessor_ids":[],"repositories":[{"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-ia64/","autorefresh":true,"distro_target":"sle-11-ia64","id":1258,"enabled":true,"description":"SLE11-SDK-SP1-Pool for sle-11-ia64","name":"SLE11-SDK-SP1-Pool","installer_updates":false},{"autorefresh":true,"distro_target":"sle-11-s390x","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-s390x/","enabled":true,"id":1259,"description":"SLE11-SDK-SP1-Pool for sle-11-s390x","name":"SLE11-SDK-SP1-Pool","installer_updates":false},{"description":"SLE11-SDK-SP1-Pool for sle-11-ppc64","name":"SLE11-SDK-SP1-Pool","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-ppc64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-ppc64/","enabled":true,"id":1261},{"description":"SLE11-SDK-SP1-Pool for sle-11-i586","name":"SLE11-SDK-SP1-Pool","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","id":1263,"enabled":true},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true,"id":1264,"enabled":true,"description":"SLE11-SDK-SP1-Pool for sle-11-x86_64","installer_updates":false,"name":"SLE11-SDK-SP1-Pool"}],"cpe":null,"product_type":"extension","recommended":false,"version":"11","name":"SUSE Linux Enterprise Software Development Kit","offline_predecessor_ids":[],"friendly_name":"SUSE Linux Enterprise Software Development Kit 11 (Migration)","migration_extra":false,"release_type":null,"former_identifier":"sle-sdk-SP1-migration","friendly_version":"11","extensions":[],"identifier":"sle-sdk-SP1-migration","release_stage":"released","id":1162},{"extensions":[],"identifier":"sle-smt-SP2-migration","release_stage":"released","id":1194,"friendly_version":"11","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Subscription Management Tool","release_type":null,"former_identifier":"sle-smt-SP2-migration","friendly_name":"SUSE Linux Enterprise Subscription Management Tool 11 (Migration)","migration_extra":false,"recommended":false,"version":"11","product_type":"extension","cpe":null,"predecessor_ids":[],"online_predecessor_ids":[],"product_class":"SLESMT","repositories":[{"description":"SLE11-SMT-SP2-Pool for sle-11-x86_64","name":"SLE11-SMT-SP2-Pool","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP2-Pool/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64","id":1392,"enabled":true},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP2-Pool/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","id":1394,"enabled":true,"description":"SLE11-SMT-SP2-Pool for sle-11-i586","name":"SLE11-SMT-SP2-Pool","installer_updates":false},{"description":"SLE11-SMT-SP2-Pool for sle-11-s390x","installer_updates":false,"name":"SLE11-SMT-SP2-Pool","distro_target":"sle-11-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP2-Pool/sle-11-s390x/","enabled":true,"id":1396}],"eula_url":"","arch":null,"free":true,"description":null,"shortname":null},{"recommended":false,"version":"11","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Subscription Management Tool","former_identifier":"sle-smt","release_type":null,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Subscription Management Tool 11","friendly_version":"11","extensions":[],"id":1196,"release_stage":"released","identifier":"sle-smt","free":true,"description":null,"shortname":null,"eula_url":"","arch":null,"predecessor_ids":[],"online_predecessor_ids":[],"product_class":"SLESMT","repositories":[{"description":"SLE11-SMT-Updates for sle-11-s390x","installer_updates":false,"name":"SLE11-SMT-Updates","url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-Updates/sle-11-s390x/","distro_target":"sle-11-s390x","autorefresh":true,"id":1400,"enabled":true},{"description":"SLE11-SMT-Updates for sle-11-x86_64","name":"SLE11-SMT-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-Updates/sle-11-x86_64/","enabled":true,"id":1401},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-Updates/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true,"id":1402,"enabled":true,"description":"SLE11-SMT-Updates for sle-11-i586","installer_updates":false,"name":"SLE11-SMT-Updates"}],"product_type":"extension","cpe":null}],"identifier":"SUSE_SLES","release_stage":"released","id":703,"free":false,"description":null,"shortname":null,"eula_url":"","arch":"i686","predecessor_ids":[],"repositories":[{"name":"SLES11-Extras","installer_updates":false,"description":"SLES11-Extras for sle-11-i586","enabled":false,"id":679,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLES11-Extras/sle-11-i586/"},{"description":"SLES11-Pool for sle-11-i586","name":"SLES11-Pool","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLES11-Pool/sle-11-i586/","enabled":false,"id":745},{"distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-Updates/sle-11-i586/","enabled":true,"id":746,"description":"SLES11-Updates for sle-11-i586","installer_updates":false,"name":"SLES11-Updates"},{"installer_updates":false,"name":"SLE11-Debuginfo-Pool","description":"SLE11-Debuginfo-Pool for sle-11-i586","enabled":false,"id":747,"distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-Debuginfo-Pool/sle-11-i586/"},{"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-Debuginfo-Updates/sle-11-i586/","enabled":false,"id":748,"description":"SLE11-Debuginfo-Updates for sle-11-i586","name":"SLE11-Debuginfo-Updates","installer_updates":false}],"online_predecessor_ids":[],"product_class":"7261","product_type":"base","cpe":"cpe:/o:suse:suse_sles:11"},{"version":"11","recommended":false,"release_type":null,"former_identifier":"SUSE_SLES","friendly_name":"SUSE Linux Enterprise Server 11 i586","migration_extra":false,"offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Server","friendly_version":"11","release_stage":"released","id":704,"identifier":"SUSE_SLES","extensions":[{"recommended":false,"version":"1.0","offline_predecessor_ids":[],"name":"SUSE WebYaST","former_identifier":"sle-11-WebYaST","release_type":null,"friendly_name":"SUSE WebYaST 1.0","migration_extra":false,"friendly_version":"1.0","extensions":[],"identifier":"sle-11-WebYaST","release_stage":"released","id":836,"free":true,"description":null,"shortname":null,"eula_url":"","arch":null,"predecessor_ids":[],"repositories":[{"id":829,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-WebYaST-1.0-Updates/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true,"installer_updates":false,"name":"SLE11-WebYaST-1.0-Updates","description":"SLE11-WebYaST-1.0-Updates for sle-11-i586"},{"description":"SLE11-WebYaST-1.0-Pool for sle-11-ia64","installer_updates":false,"name":"SLE11-WebYaST-1.0-Pool","url":"https://updates.suse.com/repo/$RCE/SLE11-WebYaST-1.0-Pool/sle-11-ia64/","distro_target":"sle-11-ia64","autorefresh":true,"id":830,"enabled":false},{"enabled":true,"id":831,"distro_target":"sle-11-ppc64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-WebYaST-1.0-Updates/sle-11-ppc64/","installer_updates":false,"name":"SLE11-WebYaST-1.0-Updates","description":"SLE11-WebYaST-1.0-Updates for sle-11-ppc64"},{"description":"SLE11-WebYaST-1.0-Pool for sle-11-i586","installer_updates":false,"name":"SLE11-WebYaST-1.0-Pool","distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-WebYaST-1.0-Pool/sle-11-i586/","enabled":false,"id":832},{"description":"SLE11-WebYaST-1.0-Pool for sle-11-s390x","installer_updates":false,"name":"SLE11-WebYaST-1.0-Pool","url":"https://updates.suse.com/repo/$RCE/SLE11-WebYaST-1.0-Pool/sle-11-s390x/","distro_target":"sle-11-s390x","autorefresh":true,"id":833,"enabled":false},{"description":"SLE11-WebYaST-1.0-Updates for sle-11-s390x","name":"SLE11-WebYaST-1.0-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-s390x","url":"https://updates.suse.com/repo/$RCE/SLE11-WebYaST-1.0-Updates/sle-11-s390x/","enabled":true,"id":834},{"url":"https://updates.suse.com/repo/$RCE/SLE11-WebYaST-1.0-Updates/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true,"id":835,"enabled":true,"description":"SLE11-WebYaST-1.0-Updates for sle-11-x86_64","installer_updates":false,"name":"SLE11-WebYaST-1.0-Updates"},{"url":"https://updates.suse.com/repo/$RCE/SLE11-WebYaST-1.0-Pool/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true,"id":836,"enabled":false,"description":"SLE11-WebYaST-1.0-Pool for sle-11-x86_64","installer_updates":false,"name":"SLE11-WebYaST-1.0-Pool"},{"name":"SLE11-WebYaST-1.0-Updates","installer_updates":false,"description":"SLE11-WebYaST-1.0-Updates for sle-11-ia64","id":837,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-WebYaST-1.0-Updates/sle-11-ia64/","autorefresh":true,"distro_target":"sle-11-ia64"},{"description":"SLE11-WebYaST-1.0-Pool for sle-11-ppc64","name":"SLE11-WebYaST-1.0-Pool","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-ppc64","url":"https://updates.suse.com/repo/$RCE/SLE11-WebYaST-1.0-Pool/sle-11-ppc64/","enabled":false,"id":838}],"online_predecessor_ids":[],"product_class":"WEBYAST","product_type":"extension","cpe":null},{"friendly_version":"11","release_stage":"released","id":969,"identifier":"sle-hae","extensions":[],"version":"11","recommended":false,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise High Availability Extension 11 i586","release_type":null,"former_identifier":"sle-hae","name":"SUSE Linux Enterprise High Availability Extension","offline_predecessor_ids":[],"product_class":"SLE-HAE-X86","online_predecessor_ids":[],"repositories":[{"url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-Pool/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","id":954,"enabled":false,"description":"SLE11-HAE-Pool for sle-11-i586","name":"SLE11-HAE-Pool","installer_updates":false},{"description":"SLE11-HAE-Updates for sle-11-i586","name":"SLE11-HAE-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-Updates/sle-11-i586/","enabled":true,"id":955}],"predecessor_ids":[],"cpe":null,"product_type":"extension","shortname":null,"description":null,"free":false,"arch":"i586","eula_url":""},{"recommended":false,"version":"11","name":"SUSE Linux Enterprise High Availability Extension","offline_predecessor_ids":[],"friendly_name":"SUSE Linux Enterprise High Availability Extension 11 i586 (Migration)","migration_extra":false,"release_type":null,"former_identifier":"sle-hae-SP1-migration","friendly_version":"11","extensions":[],"id":974,"release_stage":"released","identifier":"sle-hae-SP1-migration","shortname":null,"description":null,"free":false,"eula_url":"","arch":"i586","predecessor_ids":[],"online_predecessor_ids":[],"product_class":"SLE-HAE-X86","repositories":[{"name":"SLE11-HAE-SP1-Pool","installer_updates":false,"description":"SLE11-HAE-SP1-Pool for sle-11-i586","enabled":true,"id":945,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP1-Pool/sle-11-i586/"}],"cpe":null,"product_type":"extension"},{"friendly_version":"11","id":1158,"release_stage":"released","identifier":"sle-sdk","extensions":[],"version":"11","recommended":false,"friendly_name":"SUSE Linux Enterprise Software Development Kit 11","migration_extra":false,"release_type":null,"former_identifier":"sle-sdk","name":"SUSE Linux Enterprise Software Development Kit","offline_predecessor_ids":[],"online_predecessor_ids":[],"product_class":"SLE-SDK","repositories":[{"name":"SLE11-SDK-Updates","installer_updates":false,"description":"SLE11-SDK-Updates for sle-11-ppc64","enabled":true,"id":1247,"autorefresh":true,"distro_target":"sle-11-ppc64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-Updates/sle-11-ppc64/"},{"enabled":false,"id":1248,"autorefresh":true,"distro_target":"sle-11-s390x","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-Pool/sle-11-s390x/","name":"SLE11-SDK-Pool","installer_updates":false,"description":"SLE11-SDK-Pool for sle-11-s390x"},{"description":"SLE11-SDK-Updates for sle-11-x86_64","installer_updates":false,"name":"SLE11-SDK-Updates","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-Updates/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true,"id":1249,"enabled":true},{"name":"SLE11-SDK-Pool","installer_updates":false,"description":"SLE11-SDK-Pool for sle-11-i586","enabled":false,"id":1250,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-Pool/sle-11-i586/"},{"description":"SLE11-SDK-Pool for sle-11-x86_64","installer_updates":false,"name":"SLE11-SDK-Pool","distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-Pool/sle-11-x86_64/","enabled":false,"id":1251},{"enabled":false,"id":1252,"autorefresh":true,"distro_target":"sle-11-ppc64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-Pool/sle-11-ppc64/","name":"SLE11-SDK-Pool","installer_updates":false,"description":"SLE11-SDK-Pool for sle-11-ppc64"},{"description":"SLE11-SDK-Updates for sle-11-i586","installer_updates":false,"name":"SLE11-SDK-Updates","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-Updates/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true,"id":1253,"enabled":true},{"autorefresh":true,"distro_target":"sle-11-ia64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-Pool/sle-11-ia64/","enabled":false,"id":1254,"description":"SLE11-SDK-Pool for sle-11-ia64","name":"SLE11-SDK-Pool","installer_updates":false},{"description":"SLE11-SDK-Updates for sle-11-s390x","installer_updates":false,"name":"SLE11-SDK-Updates","distro_target":"sle-11-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-Updates/sle-11-s390x/","enabled":true,"id":1255},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-Updates/sle-11-ia64/","distro_target":"sle-11-ia64","autorefresh":true,"id":1256,"enabled":true,"description":"SLE11-SDK-Updates for sle-11-ia64","installer_updates":false,"name":"SLE11-SDK-Updates"}],"predecessor_ids":[],"cpe":null,"product_type":"extension","shortname":null,"description":null,"free":true,"arch":null,"eula_url":""},{"predecessor_ids":[],"repositories":[{"enabled":true,"id":1258,"distro_target":"sle-11-ia64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-ia64/","installer_updates":false,"name":"SLE11-SDK-SP1-Pool","description":"SLE11-SDK-SP1-Pool for sle-11-ia64"},{"description":"SLE11-SDK-SP1-Pool for sle-11-s390x","name":"SLE11-SDK-SP1-Pool","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-s390x/","autorefresh":true,"distro_target":"sle-11-s390x","id":1259,"enabled":true},{"distro_target":"sle-11-ppc64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-ppc64/","enabled":true,"id":1261,"description":"SLE11-SDK-SP1-Pool for sle-11-ppc64","installer_updates":false,"name":"SLE11-SDK-SP1-Pool"},{"name":"SLE11-SDK-SP1-Pool","installer_updates":false,"description":"SLE11-SDK-SP1-Pool for sle-11-i586","enabled":true,"id":1263,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-i586/"},{"description":"SLE11-SDK-SP1-Pool for sle-11-x86_64","installer_updates":false,"name":"SLE11-SDK-SP1-Pool","distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-x86_64/","enabled":true,"id":1264}],"online_predecessor_ids":[],"product_class":"SLE-SDK","product_type":"extension","cpe":null,"free":true,"shortname":null,"description":null,"eula_url":"","arch":null,"friendly_version":"11","extensions":[],"release_stage":"released","id":1162,"identifier":"sle-sdk-SP1-migration","recommended":false,"version":"11","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Software Development Kit","former_identifier":"sle-sdk-SP1-migration","release_type":null,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Software Development Kit 11 (Migration)"},{"free":true,"shortname":null,"description":null,"arch":null,"eula_url":"","online_predecessor_ids":[],"product_class":"SLESMT","repositories":[{"name":"SLE11-SMT-SP2-Pool","installer_updates":false,"description":"SLE11-SMT-SP2-Pool for sle-11-x86_64","enabled":true,"id":1392,"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP2-Pool/sle-11-x86_64/"},{"description":"SLE11-SMT-SP2-Pool for sle-11-i586","name":"SLE11-SMT-SP2-Pool","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP2-Pool/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","id":1394,"enabled":true},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP2-Pool/sle-11-s390x/","distro_target":"sle-11-s390x","autorefresh":true,"id":1396,"enabled":true,"description":"SLE11-SMT-SP2-Pool for sle-11-s390x","installer_updates":false,"name":"SLE11-SMT-SP2-Pool"}],"predecessor_ids":[],"product_type":"extension","cpe":null,"version":"11","recommended":false,"release_type":null,"former_identifier":"sle-smt-SP2-migration","friendly_name":"SUSE Linux Enterprise Subscription Management Tool 11 (Migration)","migration_extra":false,"offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Subscription Management Tool","friendly_version":"11","id":1194,"release_stage":"released","identifier":"sle-smt-SP2-migration","extensions":[]},{"product_class":"SLESMT","online_predecessor_ids":[],"repositories":[{"distro_target":"sle-11-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-Updates/sle-11-s390x/","enabled":true,"id":1400,"description":"SLE11-SMT-Updates for sle-11-s390x","installer_updates":false,"name":"SLE11-SMT-Updates"},{"description":"SLE11-SMT-Updates for sle-11-x86_64","installer_updates":false,"name":"SLE11-SMT-Updates","url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-Updates/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true,"id":1401,"enabled":true},{"description":"SLE11-SMT-Updates for sle-11-i586","name":"SLE11-SMT-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-Updates/sle-11-i586/","enabled":true,"id":1402}],"predecessor_ids":[],"product_type":"extension","cpe":null,"free":true,"description":null,"shortname":null,"arch":null,"eula_url":"","friendly_version":"11","identifier":"sle-smt","release_stage":"released","id":1196,"extensions":[],"version":"11","recommended":false,"former_identifier":"sle-smt","release_type":null,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Subscription Management Tool 11","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Subscription Management Tool"}],"free":false,"description":null,"shortname":null,"arch":"i586","eula_url":"","online_predecessor_ids":[],"product_class":"7261","repositories":[{"description":"SLES11-Extras for sle-11-i586","installer_updates":false,"name":"SLES11-Extras","distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-Extras/sle-11-i586/","enabled":false,"id":679},{"url":"https://updates.suse.com/repo/$RCE/SLES11-Pool/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","id":745,"enabled":false,"description":"SLES11-Pool for sle-11-i586","name":"SLES11-Pool","installer_updates":false},{"description":"SLES11-Updates for sle-11-i586","name":"SLES11-Updates","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLES11-Updates/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","id":746,"enabled":true},{"enabled":false,"id":747,"distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-Debuginfo-Pool/sle-11-i586/","installer_updates":false,"name":"SLE11-Debuginfo-Pool","description":"SLE11-Debuginfo-Pool for sle-11-i586"},{"installer_updates":false,"name":"SLE11-Debuginfo-Updates","description":"SLE11-Debuginfo-Updates for sle-11-i586","enabled":false,"id":748,"distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-Debuginfo-Updates/sle-11-i586/"}],"predecessor_ids":[],"product_type":"base","cpe":"cpe:/o:suse:suse_sles:11"},{"extensions":[],"id":705,"release_stage":"released","identifier":"SUSE-Linux-Enterprise-Server-SP3-migration","friendly_version":"10","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Server","release_type":null,"former_identifier":"SUSE-Linux-Enterprise-Server-SP3-migration","migration_extra":false,"friendly_name":"SUSE Linux Enterprise Server 10 ppc64 (Migration)","recommended":false,"version":"10","product_type":"base","cpe":null,"predecessor_ids":[],"product_class":"SLES-PPC","online_predecessor_ids":[],"repositories":[{"description":"SLES10-SP3-Online for sles-10-ppc","name":"SLES10-SP3-Online","installer_updates":false,"autorefresh":true,"distro_target":"sles-10-ppc","url":"https://updates.suse.com/repo/$RCE/SLES10-SP3-Online/sles-10-ppc/","enabled":true,"id":749}],"eula_url":"","arch":"ppc64","free":false,"shortname":null,"description":null},{"version":"10","recommended":false,"former_identifier":"SUSE-Linux-Enterprise-Server-SP3","release_type":"online","migration_extra":false,"friendly_name":"SUSE Linux Enterprise Server 10 SP3 online x86_64","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Server","friendly_version":"10 SP3","release_stage":"released","id":706,"identifier":"SUSE-Linux-Enterprise-Server-SP3","extensions":[{"shortname":null,"description":null,"free":true,"eula_url":"","arch":null,"predecessor_ids":[],"repositories":[{"enabled":true,"id":1322,"distro_target":"sles-10-ppc","autorefresh":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Pool/sles-10-ppc/","installer_updates":false,"name":"SLE10-SDK-SP3-Pool","description":"SLE10-SDK-SP3-Pool for sles-10-ppc"},{"description":"SLE10-SDK-SP3-Pool for sles-10-x86_64","installer_updates":false,"name":"SLE10-SDK-SP3-Pool","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Pool/sles-10-x86_64/","distro_target":"sles-10-x86_64","autorefresh":false,"id":1323,"enabled":true},{"enabled":true,"id":1324,"autorefresh":true,"distro_target":"sled-10-i586","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sled-10-i586/","name":"SLE10-SDK-SP3-Online","installer_updates":false,"description":"SLE10-SDK-SP3-Online for sled-10-i586"},{"enabled":true,"id":1325,"autorefresh":true,"distro_target":"sled-10-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Updates/sled-10-x86_64/","name":"SLE10-SDK-SP3-Updates","installer_updates":false,"description":"SLE10-SDK-SP3-Updates for sled-10-x86_64"},{"id":1326,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sled-10-x86_64/","autorefresh":true,"distro_target":"sled-10-x86_64","name":"SLE10-SDK-SP3-Online","installer_updates":false,"description":"SLE10-SDK-SP3-Online for sled-10-x86_64"},{"name":"SLE10-SDK-SP3-Pool","installer_updates":false,"description":"SLE10-SDK-SP3-Pool for sled-10-x86_64","id":1327,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Pool/sled-10-x86_64/","autorefresh":false,"distro_target":"sled-10-x86_64"},{"description":"SLE10-SDK-SP3-Online for sles-10-ia64","name":"SLE10-SDK-SP3-Online","installer_updates":false,"autorefresh":true,"distro_target":"sles-10-ia64","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sles-10-ia64/","enabled":true,"id":1328},{"description":"SLE10-SDK-SP3-Updates for sles-10-ia64","name":"SLE10-SDK-SP3-Updates","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Updates/sles-10-ia64/","autorefresh":true,"distro_target":"sles-10-ia64","id":1329,"enabled":true},{"enabled":true,"id":1330,"autorefresh":true,"distro_target":"sles-10-i586","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sles-10-i586/","name":"SLE10-SDK-SP3-Online","installer_updates":false,"description":"SLE10-SDK-SP3-Online for sles-10-i586"},{"description":"SLE10-SDK-SP3-Pool for sles-10-ia64","installer_updates":false,"name":"SLE10-SDK-SP3-Pool","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Pool/sles-10-ia64/","distro_target":"sles-10-ia64","autorefresh":false,"id":1331,"enabled":true},{"enabled":true,"id":1332,"distro_target":"sles-10-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Updates/sles-10-x86_64/","installer_updates":false,"name":"SLE10-SDK-SP3-Updates","description":"SLE10-SDK-SP3-Updates for sles-10-x86_64"},{"id":1333,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Pool/sles-10-i586/","autorefresh":false,"distro_target":"sles-10-i586","name":"SLE10-SDK-SP3-Pool","installer_updates":false,"description":"SLE10-SDK-SP3-Pool for sles-10-i586"},{"description":"SLE10-SDK-SP3-Updates for sles-10-i586","name":"SLE10-SDK-SP3-Updates","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Updates/sles-10-i586/","autorefresh":true,"distro_target":"sles-10-i586","id":1334,"enabled":true},{"enabled":true,"id":1335,"distro_target":"sles-10-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sles-10-s390x/","installer_updates":false,"name":"SLE10-SDK-SP3-Online","description":"SLE10-SDK-SP3-Online for sles-10-s390x"},{"name":"SLE10-SDK-SP3-Updates","installer_updates":false,"description":"SLE10-SDK-SP3-Updates for sles-10-ppc","enabled":true,"id":1336,"autorefresh":true,"distro_target":"sles-10-ppc","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Updates/sles-10-ppc/"},{"description":"SLE10-SDK-SP3-Pool for sles-10-s390x","installer_updates":false,"name":"SLE10-SDK-SP3-Pool","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Pool/sles-10-s390x/","distro_target":"sles-10-s390x","autorefresh":false,"id":1337,"enabled":true},{"installer_updates":false,"name":"SLE10-SDK-SP3-Pool","description":"SLE10-SDK-SP3-Pool for sled-10-i586","enabled":true,"id":1338,"distro_target":"sled-10-i586","autorefresh":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Pool/sled-10-i586/"},{"enabled":true,"id":1339,"distro_target":"sles-10-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Updates/sles-10-s390x/","installer_updates":false,"name":"SLE10-SDK-SP3-Updates","description":"SLE10-SDK-SP3-Updates for sles-10-s390x"},{"description":"SLE10-SDK-SP3-Updates for sled-10-i586","name":"SLE10-SDK-SP3-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sled-10-i586","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Updates/sled-10-i586/","enabled":true,"id":1340},{"id":1341,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sles-10-x86_64/","autorefresh":true,"distro_target":"sles-10-x86_64","name":"SLE10-SDK-SP3-Online","installer_updates":false,"description":"SLE10-SDK-SP3-Online for sles-10-x86_64"},{"description":"SLE10-SDK-SP3-Online for sles-10-ppc","installer_updates":false,"name":"SLE10-SDK-SP3-Online","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sles-10-ppc/","distro_target":"sles-10-ppc","autorefresh":true,"id":1342,"enabled":true}],"online_predecessor_ids":[],"product_class":"SLE-SDK","cpe":null,"product_type":"extension","recommended":false,"version":"10","name":"SUSE Linux Enterprise Software Development Kit","offline_predecessor_ids":[],"friendly_name":"SUSE Linux Enterprise Software Development Kit 10 SP3","migration_extra":false,"release_type":null,"former_identifier":"SUSE-Linux-Enterprise-SDK-SP3","friendly_version":"10 SP3","extensions":[],"release_stage":"released","id":1179,"identifier":"SUSE-Linux-Enterprise-SDK-SP3"},{"friendly_version":"10","extensions":[],"release_stage":"released","id":1180,"identifier":"SUSE-Linux-Enterprise-SDK-SP3-migration","recommended":false,"version":"10","name":"SUSE Linux Enterprise Software Development Kit","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Software Development Kit 10 (Migration)","former_identifier":"SUSE-Linux-Enterprise-SDK-SP3-migration","release_type":null,"predecessor_ids":[],"online_predecessor_ids":[],"repositories":[{"name":"SLE10-SDK-SP3-Online","installer_updates":false,"description":"SLE10-SDK-SP3-Online for sled-10-i586","enabled":true,"id":1324,"autorefresh":true,"distro_target":"sled-10-i586","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sled-10-i586/"},{"name":"SLE10-SDK-SP3-Online","installer_updates":false,"description":"SLE10-SDK-SP3-Online for sled-10-x86_64","id":1326,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sled-10-x86_64/","autorefresh":true,"distro_target":"sled-10-x86_64"},{"description":"SLE10-SDK-SP3-Online for sles-10-ia64","installer_updates":false,"name":"SLE10-SDK-SP3-Online","distro_target":"sles-10-ia64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sles-10-ia64/","enabled":true,"id":1328},{"description":"SLE10-SDK-SP3-Online for sles-10-i586","installer_updates":false,"name":"SLE10-SDK-SP3-Online","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sles-10-i586/","distro_target":"sles-10-i586","autorefresh":true,"id":1330,"enabled":true},{"id":1335,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sles-10-s390x/","autorefresh":true,"distro_target":"sles-10-s390x","name":"SLE10-SDK-SP3-Online","installer_updates":false,"description":"SLE10-SDK-SP3-Online for sles-10-s390x"},{"enabled":true,"id":1341,"distro_target":"sles-10-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sles-10-x86_64/","installer_updates":false,"name":"SLE10-SDK-SP3-Online","description":"SLE10-SDK-SP3-Online for sles-10-x86_64"},{"description":"SLE10-SDK-SP3-Online for sles-10-ppc","installer_updates":false,"name":"SLE10-SDK-SP3-Online","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sles-10-ppc/","distro_target":"sles-10-ppc","autorefresh":true,"id":1342,"enabled":true}],"product_class":"SLE-SDK","cpe":null,"product_type":"extension","shortname":null,"description":null,"free":true,"eula_url":"","arch":null},{"extensions":[],"id":1197,"release_stage":"released","identifier":"SUSE-Linux-Enterprise-SMT-SP3","friendly_version":"10 SP3","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Subscription Management Tool","former_identifier":"SUSE-Linux-Enterprise-SMT-SP3","release_type":null,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Subscription Management Tool 10 SP3","recommended":false,"version":"10.3","product_type":"extension","cpe":null,"predecessor_ids":[],"repositories":[{"id":664,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Updates/sles-10-i586/","distro_target":"sles-10-i586","autorefresh":true,"installer_updates":false,"name":"SLE10-SP3-Debuginfo-Updates","description":"SLE10-SP3-Debuginfo-Updates for sles-10-i586"},{"id":669,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Pool/sles-10-i586/","autorefresh":false,"distro_target":"sles-10-i586","name":"SLE10-SP3-Debuginfo-Pool","installer_updates":false,"description":"SLE10-SP3-Debuginfo-Pool for sles-10-i586"},{"distro_target":"sles-10-s390x","autorefresh":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Pool/sles-10-s390x/","enabled":false,"id":672,"description":"SLE10-SP3-Debuginfo-Pool for sles-10-s390x","installer_updates":false,"name":"SLE10-SP3-Debuginfo-Pool"},{"enabled":false,"id":675,"autorefresh":true,"distro_target":"sles-10-s390x","url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Updates/sles-10-s390x/","name":"SLE10-SP3-Debuginfo-Updates","installer_updates":false,"description":"SLE10-SP3-Debuginfo-Updates for sles-10-s390x"},{"installer_updates":false,"name":"SLE10-SP3-Debuginfo-Updates","description":"SLE10-SP3-Debuginfo-Updates for sles-10-x86_64","enabled":false,"id":750,"distro_target":"sles-10-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Updates/sles-10-x86_64/"},{"description":"SLE10-SP3-Debuginfo-Pool for sles-10-x86_64","name":"SLE10-SP3-Debuginfo-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sles-10-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Pool/sles-10-x86_64/","enabled":false,"id":751},{"name":"SLE10-SP3-Debuginfo-Pool","installer_updates":false,"description":"SLE10-SP3-Debuginfo-Pool for sles-10-ppc","enabled":false,"id":779,"autorefresh":false,"distro_target":"sles-10-ppc","url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Pool/sles-10-ppc/"},{"description":"SLE10-SP3-Debuginfo-Updates for sles-10-ppc","name":"SLE10-SP3-Debuginfo-Updates","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Updates/sles-10-ppc/","autorefresh":true,"distro_target":"sles-10-ppc","id":780,"enabled":false},{"description":"SLE10-SP3-Debuginfo-Pool for sles-10-ia64","installer_updates":false,"name":"SLE10-SP3-Debuginfo-Pool","distro_target":"sles-10-ia64","autorefresh":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Pool/sles-10-ia64/","enabled":false,"id":788},{"name":"SLE10-SP3-Debuginfo-Updates","installer_updates":false,"description":"SLE10-SP3-Debuginfo-Updates for sles-10-ia64","enabled":false,"id":789,"autorefresh":true,"distro_target":"sles-10-ia64","url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Updates/sles-10-ia64/"},{"description":"SLE10-SP3-Debuginfo-Pool for sled-10-x86_64","name":"SLE10-SP3-Debuginfo-Pool","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Pool/sled-10-x86_64/","autorefresh":false,"distro_target":"sled-10-x86_64","id":869,"enabled":false},{"autorefresh":true,"distro_target":"sled-10-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Updates/sled-10-x86_64/","enabled":false,"id":870,"description":"SLE10-SP3-Debuginfo-Updates for sled-10-x86_64","name":"SLE10-SP3-Debuginfo-Updates","installer_updates":false},{"installer_updates":false,"name":"SLE10-SP3-Debuginfo-Pool","description":"SLE10-SP3-Debuginfo-Pool for sled-10-i586","id":895,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Pool/sled-10-i586/","distro_target":"sled-10-i586","autorefresh":false},{"enabled":false,"id":896,"autorefresh":true,"distro_target":"sled-10-i586","url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Updates/sled-10-i586/","name":"SLE10-SP3-Debuginfo-Updates","installer_updates":false,"description":"SLE10-SP3-Debuginfo-Updates for sled-10-i586"},{"description":"SLE10-SP3-SMT-Updates for sles-10-i586","installer_updates":false,"name":"SLE10-SP3-SMT-Updates","url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-SMT-Updates/sles-10-i586/","distro_target":"sles-10-i586","autorefresh":true,"id":1403,"enabled":true},{"url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-SMT-Updates/sles-10-x86_64/","distro_target":"sles-10-x86_64","autorefresh":true,"id":1404,"enabled":true,"description":"SLE10-SP3-SMT-Updates for sles-10-x86_64","installer_updates":false,"name":"SLE10-SP3-SMT-Updates"}],"online_predecessor_ids":[],"product_class":"SLESMT","eula_url":"","arch":null,"free":true,"shortname":null,"description":null}],"free":false,"description":null,"shortname":null,"arch":"x86_64","eula_url":"","product_class":"7261","online_predecessor_ids":[],"repositories":[{"description":"SLE10-SP3-Debuginfo-Updates for sles-10-x86_64","name":"SLE10-SP3-Debuginfo-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sles-10-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Updates/sles-10-x86_64/","enabled":false,"id":750},{"id":751,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Pool/sles-10-x86_64/","distro_target":"sles-10-x86_64","autorefresh":false,"installer_updates":false,"name":"SLE10-SP3-Debuginfo-Pool","description":"SLE10-SP3-Debuginfo-Pool for sles-10-x86_64"},{"enabled":true,"id":753,"distro_target":"sles-10-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLES10-SP3-LTSS-Updates/sles-10-x86_64/","installer_updates":false,"name":"SLES10-SP3-LTSS-Updates","description":"SLES10-SP3-LTSS-Updates for sles-10-x86_64"},{"autorefresh":false,"distro_target":"sles-10-x86_64","url":"https://updates.suse.com/repo/$RCE/SLES10-SP3-Pool/sles-10-x86_64/","enabled":false,"id":754,"description":"SLES10-SP3-Pool for sles-10-x86_64","name":"SLES10-SP3-Pool","installer_updates":false},{"description":"SLES10-SP3-Online for sles-10-x86_64","installer_updates":false,"name":"SLES10-SP3-Online","url":"https://updates.suse.com/repo/$RCE/SLES10-SP3-Online/sles-10-x86_64/","distro_target":"sles-10-x86_64","autorefresh":true,"id":755,"enabled":true},{"description":"SLE10-SP3-Debuginfo-Online for sles-10-x86_64","name":"SLE10-SP3-Debuginfo-Online","installer_updates":false,"autorefresh":true,"distro_target":"sles-10-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Online/sles-10-x86_64/","enabled":false,"id":756},{"url":"https://updates.suse.com/repo/$RCE/SLES10-SP3-Updates/sles-10-x86_64/","distro_target":"sles-10-x86_64","autorefresh":true,"id":757,"enabled":true,"description":"SLES10-SP3-Updates for sles-10-x86_64","installer_updates":false,"name":"SLES10-SP3-Updates"},{"name":"SLE10-SP3-Debuginfo-Teradata","installer_updates":false,"description":"SLE10-SP3-Debuginfo-Teradata for sle-10-x86_64","enabled":true,"id":1828,"autorefresh":true,"distro_target":"sle-10-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Teradata/sle-10-x86_64/"},{"description":"SLES10-SP3-Update-Teradata for sles-10-x86_64","name":"SLES10-SP3-Update-Teradata","installer_updates":false,"autorefresh":true,"distro_target":"sles-10-x86_64","url":"https://updates.suse.com/repo/$RCE/SLES10-SP3-Update-Teradata/sles-10-x86_64/","enabled":true,"id":1829}],"predecessor_ids":[],"product_type":"base","cpe":null},{"eula_url":"","arch":"i686","shortname":null,"description":null,"free":false,"cpe":"cpe:/o:suse:suse_sles:11:sp1","product_type":"base","predecessor_ids":[],"online_predecessor_ids":[],"repositories":[{"name":"SLES11-Extras","installer_updates":false,"description":"SLES11-Extras for sle-11-i586","id":679,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLES11-Extras/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586"},{"enabled":false,"id":680,"distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Pool/sle-11-i586/","installer_updates":false,"name":"SLE11-SP1-Debuginfo-Pool","description":"SLE11-SP1-Debuginfo-Pool for sle-11-i586"},{"description":"SLE11-WebYaST-SP1-Pool for sle-11-i586","name":"SLE11-WebYaST-SP1-Pool","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-WebYaST-SP1-Pool/sle-11-i586/","enabled":false,"id":681},{"installer_updates":false,"name":"SLE11-SP1-Debuginfo-Updates","description":"SLE11-SP1-Debuginfo-Updates for sle-11-i586","enabled":false,"id":682,"distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Updates/sle-11-i586/"},{"description":"SLES11-SP1-LTSS-Updates for sle-11-i586","name":"SLES11-SP1-LTSS-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-LTSS-Updates/sle-11-i586/","enabled":true,"id":683},{"name":"SLES11-SP1-Updates","installer_updates":false,"description":"SLES11-SP1-Updates for sle-11-i586","id":684,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-Updates/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586"},{"description":"SLE11-WebYaST-SP1-Updates for sle-11-i586","name":"SLE11-WebYaST-SP1-Updates","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-WebYaST-SP1-Updates/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","id":685,"enabled":false},{"enabled":true,"id":686,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-Pool/sle-11-i586/","name":"SLES11-SP1-Pool","installer_updates":false,"description":"SLES11-SP1-Pool for sle-11-i586"}],"product_class":"7261","name":"SUSE Linux Enterprise Server","offline_predecessor_ids":[],"friendly_name":"SUSE Linux Enterprise Server 11 SP1 i686","migration_extra":false,"release_type":null,"former_identifier":"SUSE_SLES","recommended":false,"version":"11.1","extensions":[{"free":true,"shortname":null,"description":null,"eula_url":"","arch":null,"predecessor_ids":[],"repositories":[{"description":"SLE11-SP1-WebYaST-1.1-Updates for sle-11-i586","installer_updates":false,"name":"SLE11-SP1-WebYaST-1.1-Updates","url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-WebYaST-1.1-Updates/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true,"id":825,"enabled":true},{"description":"SLE11-SP1-WebYaST-1.1-Pool for sle-11-i586","installer_updates":false,"name":"SLE11-SP1-WebYaST-1.1-Pool","distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-WebYaST-1.1-Pool/sle-11-i586/","enabled":false,"id":826},{"installer_updates":false,"name":"SLE11-SP1-WebYaST-1.1-Pool","description":"SLE11-SP1-WebYaST-1.1-Pool for sle-11-x86_64","id":827,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-WebYaST-1.1-Pool/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true},{"description":"SLE11-SP1-WebYaST-1.1-Updates for sle-11-x86_64","installer_updates":false,"name":"SLE11-SP1-WebYaST-1.1-Updates","distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-WebYaST-1.1-Updates/sle-11-x86_64/","enabled":true,"id":828}],"online_predecessor_ids":[],"product_class":"WEBYAST","product_type":"extension","cpe":null,"recommended":false,"version":"1.1","offline_predecessor_ids":[],"name":"SUSE WebYaST","former_identifier":"sle-11-WebYaST","release_type":null,"migration_extra":false,"friendly_name":"SUSE WebYaST 1.1","friendly_version":"1.1","extensions":[],"release_stage":"released","id":835,"identifier":"sle-11-WebYaST"},{"extensions":[],"release_stage":"released","identifier":"sle-hae-SP2-migration","id":962,"friendly_version":"11 SP1","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise High Availability Extension","release_type":null,"former_identifier":"sle-hae-SP2-migration","friendly_name":"SUSE Linux Enterprise High Availability Extension 11 SP1 i686 (Migration)","migration_extra":false,"recommended":false,"version":"11.1","product_type":"extension","cpe":null,"predecessor_ids":[],"online_predecessor_ids":[],"repositories":[{"name":"SLE11-HAE-SP2-Pool","installer_updates":false,"description":"SLE11-HAE-SP2-Pool for sle-11-i586","id":949,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP2-Pool/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586"},{"distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP2-Updates/sle-11-i586/","enabled":true,"id":950,"description":"SLE11-HAE-SP2-Updates for sle-11-i586","installer_updates":false,"name":"SLE11-HAE-SP2-Updates"}],"product_class":"SLE-HAE-X86","eula_url":"","arch":"i686","free":false,"shortname":null,"description":null},{"free":false,"shortname":null,"description":null,"eula_url":"","arch":"i686","predecessor_ids":[],"repositories":[{"description":"SLE11-HAE-SP1-Updates for sle-11-i586","name":"SLE11-HAE-SP1-Updates","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP1-Updates/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","id":944,"enabled":true},{"url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP1-Pool/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","id":945,"enabled":true,"description":"SLE11-HAE-SP1-Pool for sle-11-i586","name":"SLE11-HAE-SP1-Pool","installer_updates":false}],"online_predecessor_ids":[],"product_class":"SLE-HAE-X86","product_type":"extension","cpe":null,"recommended":false,"version":"11.1","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise High Availability Extension","former_identifier":"sle-hae","release_type":null,"friendly_name":"SUSE Linux Enterprise High Availability Extension 11 SP1 i686","migration_extra":false,"friendly_version":"11 SP1","extensions":[],"id":978,"release_stage":"released","identifier":"sle-hae"},{"friendly_version":"11 SP1","extensions":[],"id":1159,"release_stage":"released","identifier":"sle-sdk","recommended":false,"version":"11.1","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Software Development Kit","former_identifier":"sle-sdk","release_type":null,"friendly_name":"SUSE Linux Enterprise Software Development Kit 11 SP1","migration_extra":false,"predecessor_ids":[],"online_predecessor_ids":[],"product_class":"SLE-SDK","repositories":[{"description":"SLE11-SDK-SP1-Updates for sle-11-ia64","installer_updates":false,"name":"SLE11-SDK-SP1-Updates","distro_target":"sle-11-ia64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Updates/sle-11-ia64/","enabled":true,"id":1257},{"id":1258,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-ia64/","distro_target":"sle-11-ia64","autorefresh":true,"installer_updates":false,"name":"SLE11-SDK-SP1-Pool","description":"SLE11-SDK-SP1-Pool for sle-11-ia64"},{"installer_updates":false,"name":"SLE11-SDK-SP1-Pool","description":"SLE11-SDK-SP1-Pool for sle-11-s390x","enabled":true,"id":1259,"distro_target":"sle-11-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-s390x/"},{"installer_updates":false,"name":"SLE11-SDK-SP1-Updates","description":"SLE11-SDK-SP1-Updates for sle-11-ppc64","enabled":true,"id":1260,"distro_target":"sle-11-ppc64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Updates/sle-11-ppc64/"},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-ppc64/","distro_target":"sle-11-ppc64","autorefresh":true,"id":1261,"enabled":true,"description":"SLE11-SDK-SP1-Pool for sle-11-ppc64","installer_updates":false,"name":"SLE11-SDK-SP1-Pool"},{"id":1262,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Updates/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","name":"SLE11-SDK-SP1-Updates","installer_updates":false,"description":"SLE11-SDK-SP1-Updates for sle-11-i586"},{"installer_updates":false,"name":"SLE11-SDK-SP1-Pool","description":"SLE11-SDK-SP1-Pool for sle-11-i586","enabled":true,"id":1263,"distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-i586/"},{"id":1264,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64","name":"SLE11-SDK-SP1-Pool","installer_updates":false,"description":"SLE11-SDK-SP1-Pool for sle-11-x86_64"},{"description":"SLE11-SDK-SP1-Updates for sle-11-x86_64","name":"SLE11-SDK-SP1-Updates","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Updates/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64","id":1265,"enabled":true},{"installer_updates":false,"name":"SLE11-SDK-SP1-Updates","description":"SLE11-SDK-SP1-Updates for sle-11-s390x","id":1266,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Updates/sle-11-s390x/","distro_target":"sle-11-s390x","autorefresh":true}],"product_type":"extension","cpe":null,"free":true,"shortname":null,"description":null,"eula_url":"","arch":null},{"cpe":null,"product_type":"extension","predecessor_ids":[],"product_class":"SLE-SDK","online_predecessor_ids":[],"repositories":[{"autorefresh":true,"distro_target":"sle-11-ia64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-ia64/","enabled":true,"id":1258,"description":"SLE11-SDK-SP1-Pool for sle-11-ia64","name":"SLE11-SDK-SP1-Pool","installer_updates":false},{"description":"SLE11-SDK-SP1-Pool for sle-11-s390x","installer_updates":false,"name":"SLE11-SDK-SP1-Pool","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-s390x/","distro_target":"sle-11-s390x","autorefresh":true,"id":1259,"enabled":true},{"distro_target":"sle-11-ppc64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-ppc64/","enabled":true,"id":1261,"description":"SLE11-SDK-SP1-Pool for sle-11-ppc64","installer_updates":false,"name":"SLE11-SDK-SP1-Pool"},{"enabled":true,"id":1263,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-i586/","name":"SLE11-SDK-SP1-Pool","installer_updates":false,"description":"SLE11-SDK-SP1-Pool for sle-11-i586"},{"enabled":true,"id":1264,"distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-x86_64/","installer_updates":false,"name":"SLE11-SDK-SP1-Pool","description":"SLE11-SDK-SP1-Pool for sle-11-x86_64"}],"eula_url":"","arch":null,"description":null,"shortname":null,"free":true,"extensions":[],"identifier":"sle-sdk-SP1-migration","release_stage":"released","id":1162,"friendly_version":"11","name":"SUSE Linux Enterprise Software Development Kit","offline_predecessor_ids":[],"friendly_name":"SUSE Linux Enterprise Software Development Kit 11 (Migration)","migration_extra":false,"former_identifier":"sle-sdk-SP1-migration","release_type":null,"recommended":false,"version":"11"},{"predecessor_ids":[],"product_class":"SLE-SDK","online_predecessor_ids":[],"repositories":[{"description":"SLE11-SDK-SP2-Core for sle-11-ia64","name":"SLE11-SDK-SP2-Core","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-ia64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-ia64/","enabled":true,"id":1267},{"enabled":true,"id":1268,"distro_target":"sle-11-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-s390x/","installer_updates":false,"name":"SLE11-SDK-SP2-Core","description":"SLE11-SDK-SP2-Core for sle-11-s390x"},{"name":"SLE11-SDK-SP2-Updates","installer_updates":false,"description":"SLE11-SDK-SP2-Updates for sle-11-s390x","id":1269,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-s390x/","autorefresh":true,"distro_target":"sle-11-s390x"},{"description":"SLE11-SDK-SP2-Updates for sle-11-ppc64","name":"SLE11-SDK-SP2-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-ppc64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-ppc64/","enabled":true,"id":1270},{"id":1271,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true,"installer_updates":false,"name":"SLE11-SDK-SP2-Updates","description":"SLE11-SDK-SP2-Updates for sle-11-i586"},{"name":"SLE11-SDK-SP2-Updates","installer_updates":false,"description":"SLE11-SDK-SP2-Updates for sle-11-ia64","id":1272,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-ia64/","autorefresh":true,"distro_target":"sle-11-ia64"},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-ppc64/","autorefresh":true,"distro_target":"sle-11-ppc64","id":1273,"enabled":true,"description":"SLE11-SDK-SP2-Core for sle-11-ppc64","name":"SLE11-SDK-SP2-Core","installer_updates":false},{"installer_updates":false,"name":"SLE11-SDK-SP2-Core","description":"SLE11-SDK-SP2-Core for sle-11-i586","enabled":true,"id":1274,"distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-i586/"},{"id":1275,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64","name":"SLE11-SDK-SP2-Core","installer_updates":false,"description":"SLE11-SDK-SP2-Core for sle-11-x86_64"},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64","id":1276,"enabled":true,"description":"SLE11-SDK-SP2-Updates for sle-11-x86_64","name":"SLE11-SDK-SP2-Updates","installer_updates":false}],"cpe":null,"product_type":"extension","shortname":null,"description":null,"free":true,"eula_url":"","arch":null,"friendly_version":"11 SP1","extensions":[],"identifier":"sle-sdk-SP2-migration","release_stage":"released","id":1163,"recommended":false,"version":"11.1","name":"SUSE Linux Enterprise Software Development Kit","offline_predecessor_ids":[],"friendly_name":"SUSE Linux Enterprise Software Development Kit 11 SP1 (Migration)","migration_extra":false,"release_type":null,"former_identifier":"sle-sdk-SP2-migration"},{"free":true,"description":null,"shortname":null,"arch":null,"eula_url":"","repositories":[{"installer_updates":false,"name":"SLE11-SP1-SMT-Updates","description":"SLE11-SP1-SMT-Updates for sle-11-x86_64","id":1386,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-SMT-Updates/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true},{"enabled":true,"id":1387,"autorefresh":true,"distro_target":"sle-11-s390x","url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-SMT-Pool/sle-11-s390x/","name":"SLE11-SP1-SMT-Pool","installer_updates":false,"description":"SLE11-SP1-SMT-Pool for sle-11-s390x"},{"installer_updates":false,"name":"SLE11-SP1-SMT-Pool","description":"SLE11-SP1-SMT-Pool for sle-11-x86_64","id":1388,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-SMT-Pool/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-SMT-Updates/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true,"id":1389,"enabled":true,"description":"SLE11-SP1-SMT-Updates for sle-11-i586","installer_updates":false,"name":"SLE11-SP1-SMT-Updates"},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-SMT-Pool/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true,"id":1390,"enabled":true,"description":"SLE11-SP1-SMT-Pool for sle-11-i586","installer_updates":false,"name":"SLE11-SP1-SMT-Pool"},{"name":"SLE11-SP1-SMT-Updates","installer_updates":false,"description":"SLE11-SP1-SMT-Updates for sle-11-s390x","enabled":true,"id":1391,"autorefresh":true,"distro_target":"sle-11-s390x","url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-SMT-Updates/sle-11-s390x/"}],"online_predecessor_ids":[],"product_class":"SLESMT","predecessor_ids":[],"product_type":"extension","cpe":null,"version":"11.1","recommended":false,"release_type":null,"former_identifier":"sle-smt","friendly_name":"SUSE Linux Enterprise Subscription Management Tool 11 SP1","migration_extra":false,"offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Subscription Management Tool","friendly_version":"11 SP1","id":1192,"release_stage":"released","identifier":"sle-smt","extensions":[]}],"release_stage":"released","identifier":"SUSE_SLES","id":707,"friendly_version":"11 SP1"},{"release_stage":"released","id":708,"identifier":"SUSE_SLES-SP1-migration","extensions":[{"recommended":false,"version":"1.0","name":"SUSE WebYaST","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"SUSE WebYaST 1.0","release_type":null,"former_identifier":"sle-11-WebYaST","friendly_version":"1.0","extensions":[],"release_stage":"released","identifier":"sle-11-WebYaST","id":836,"shortname":null,"description":null,"free":true,"eula_url":"","arch":null,"predecessor_ids":[],"online_predecessor_ids":[],"product_class":"WEBYAST","repositories":[{"id":829,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-WebYaST-1.0-Updates/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true,"installer_updates":false,"name":"SLE11-WebYaST-1.0-Updates","description":"SLE11-WebYaST-1.0-Updates for sle-11-i586"},{"url":"https://updates.suse.com/repo/$RCE/SLE11-WebYaST-1.0-Pool/sle-11-ia64/","autorefresh":true,"distro_target":"sle-11-ia64","id":830,"enabled":false,"description":"SLE11-WebYaST-1.0-Pool for sle-11-ia64","name":"SLE11-WebYaST-1.0-Pool","installer_updates":false},{"autorefresh":true,"distro_target":"sle-11-ppc64","url":"https://updates.suse.com/repo/$RCE/SLE11-WebYaST-1.0-Updates/sle-11-ppc64/","enabled":true,"id":831,"description":"SLE11-WebYaST-1.0-Updates for sle-11-ppc64","name":"SLE11-WebYaST-1.0-Updates","installer_updates":false},{"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-WebYaST-1.0-Pool/sle-11-i586/","enabled":false,"id":832,"description":"SLE11-WebYaST-1.0-Pool for sle-11-i586","name":"SLE11-WebYaST-1.0-Pool","installer_updates":false},{"distro_target":"sle-11-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-WebYaST-1.0-Pool/sle-11-s390x/","enabled":false,"id":833,"description":"SLE11-WebYaST-1.0-Pool for sle-11-s390x","installer_updates":false,"name":"SLE11-WebYaST-1.0-Pool"},{"installer_updates":false,"name":"SLE11-WebYaST-1.0-Updates","description":"SLE11-WebYaST-1.0-Updates for sle-11-s390x","enabled":true,"id":834,"distro_target":"sle-11-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-WebYaST-1.0-Updates/sle-11-s390x/"},{"url":"https://updates.suse.com/repo/$RCE/SLE11-WebYaST-1.0-Updates/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64","id":835,"enabled":true,"description":"SLE11-WebYaST-1.0-Updates for sle-11-x86_64","name":"SLE11-WebYaST-1.0-Updates","installer_updates":false},{"description":"SLE11-WebYaST-1.0-Pool for sle-11-x86_64","installer_updates":false,"name":"SLE11-WebYaST-1.0-Pool","distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-WebYaST-1.0-Pool/sle-11-x86_64/","enabled":false,"id":836},{"url":"https://updates.suse.com/repo/$RCE/SLE11-WebYaST-1.0-Updates/sle-11-ia64/","distro_target":"sle-11-ia64","autorefresh":true,"id":837,"enabled":true,"description":"SLE11-WebYaST-1.0-Updates for sle-11-ia64","installer_updates":false,"name":"SLE11-WebYaST-1.0-Updates"},{"enabled":false,"id":838,"distro_target":"sle-11-ppc64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-WebYaST-1.0-Pool/sle-11-ppc64/","installer_updates":false,"name":"SLE11-WebYaST-1.0-Pool","description":"SLE11-WebYaST-1.0-Pool for sle-11-ppc64"}],"cpe":null,"product_type":"extension"},{"cpe":null,"product_type":"extension","predecessor_ids":[],"repositories":[{"description":"SLE11-HAE-Pool for sle-11-i586","name":"SLE11-HAE-Pool","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-Pool/sle-11-i586/","enabled":false,"id":954},{"description":"SLE11-HAE-Updates for sle-11-i586","installer_updates":false,"name":"SLE11-HAE-Updates","distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-Updates/sle-11-i586/","enabled":true,"id":955}],"online_predecessor_ids":[],"product_class":"SLE-HAE-X86","eula_url":"","arch":"i486","shortname":null,"description":null,"free":false,"extensions":[],"release_stage":"released","identifier":"sle-hae","id":973,"friendly_version":"11","name":"SUSE Linux Enterprise High Availability Extension","offline_predecessor_ids":[],"friendly_name":"SUSE Linux Enterprise High Availability Extension 11 i486","migration_extra":false,"former_identifier":"sle-hae","release_type":null,"recommended":false,"version":"11"},{"friendly_version":"11","release_stage":"released","id":981,"identifier":"sle-hae-SP1-migration","extensions":[],"version":"11","recommended":false,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise High Availability Extension 11 i486 (Migration)","release_type":null,"former_identifier":"sle-hae-SP1-migration","name":"SUSE Linux Enterprise High Availability Extension","offline_predecessor_ids":[],"online_predecessor_ids":[],"product_class":"SLE-HAE-X86","repositories":[{"url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP1-Pool/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","id":945,"enabled":true,"description":"SLE11-HAE-SP1-Pool for sle-11-i586","name":"SLE11-HAE-SP1-Pool","installer_updates":false}],"predecessor_ids":[],"cpe":null,"product_type":"extension","shortname":null,"description":null,"free":false,"arch":"i486","eula_url":""},{"eula_url":"","arch":null,"free":true,"description":null,"shortname":null,"product_type":"extension","cpe":null,"predecessor_ids":[],"online_predecessor_ids":[],"repositories":[{"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP2-Pool/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64","id":1392,"enabled":true,"description":"SLE11-SMT-SP2-Pool for sle-11-x86_64","name":"SLE11-SMT-SP2-Pool","installer_updates":false},{"name":"SLE11-SMT-SP2-Pool","installer_updates":false,"description":"SLE11-SMT-SP2-Pool for sle-11-i586","id":1394,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP2-Pool/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586"},{"id":1396,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP2-Pool/sle-11-s390x/","distro_target":"sle-11-s390x","autorefresh":true,"installer_updates":false,"name":"SLE11-SMT-SP2-Pool","description":"SLE11-SMT-SP2-Pool for sle-11-s390x"}],"product_class":"SLESMT","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Subscription Management Tool","release_type":null,"former_identifier":"sle-smt-SP2-migration","friendly_name":"SUSE Linux Enterprise Subscription Management Tool 11 (Migration)","migration_extra":false,"recommended":false,"version":"11","extensions":[],"identifier":"sle-smt-SP2-migration","release_stage":"released","id":1194,"friendly_version":"11"},{"name":"SUSE Linux Enterprise Subscription Management Tool","offline_predecessor_ids":[],"friendly_name":"SUSE Linux Enterprise Subscription Management Tool 11","migration_extra":false,"release_type":null,"former_identifier":"sle-smt","recommended":false,"version":"11","extensions":[],"id":1196,"release_stage":"released","identifier":"sle-smt","friendly_version":"11","eula_url":"","arch":null,"shortname":null,"description":null,"free":true,"cpe":null,"product_type":"extension","predecessor_ids":[],"online_predecessor_ids":[],"product_class":"SLESMT","repositories":[{"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-Updates/sle-11-s390x/","autorefresh":true,"distro_target":"sle-11-s390x","id":1400,"enabled":true,"description":"SLE11-SMT-Updates for sle-11-s390x","name":"SLE11-SMT-Updates","installer_updates":false},{"enabled":true,"id":1401,"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-Updates/sle-11-x86_64/","name":"SLE11-SMT-Updates","installer_updates":false,"description":"SLE11-SMT-Updates for sle-11-x86_64"},{"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-Updates/sle-11-i586/","enabled":true,"id":1402,"description":"SLE11-SMT-Updates for sle-11-i586","name":"SLE11-SMT-Updates","installer_updates":false}]}],"friendly_version":"11","former_identifier":"SUSE_SLES-SP1-migration","release_type":null,"friendly_name":"SUSE Linux Enterprise Server 11 i486 (Migration)","migration_extra":false,"offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Server","version":"11","recommended":false,"product_type":"base","cpe":null,"online_predecessor_ids":[],"product_class":"7261","repositories":[{"description":"SLES11-SP1-Pool for sle-11-i586","name":"SLES11-SP1-Pool","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-Pool/sle-11-i586/","enabled":true,"id":686}],"predecessor_ids":[],"arch":"i486","eula_url":"","free":false,"shortname":null,"description":null},{"online_predecessor_ids":[],"repositories":[{"distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-Pool/sle-11-x86_64/","enabled":true,"id":711,"description":"SLES11-SP1-Pool for sle-11-x86_64","installer_updates":false,"name":"SLES11-SP1-Pool"}],"product_class":"7261","predecessor_ids":[],"cpe":null,"product_type":"base","shortname":null,"description":null,"free":false,"arch":"x86_64","eula_url":"","friendly_version":"11","release_stage":"released","id":709,"identifier":"SUSE_SLES-SP1-migration","extensions":[{"product_type":"extension","cpe":null,"repositories":[{"distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-WebYaST-1.0-Updates/sle-11-i586/","enabled":true,"id":829,"description":"SLE11-WebYaST-1.0-Updates for sle-11-i586","installer_updates":false,"name":"SLE11-WebYaST-1.0-Updates"},{"id":830,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-WebYaST-1.0-Pool/sle-11-ia64/","distro_target":"sle-11-ia64","autorefresh":true,"installer_updates":false,"name":"SLE11-WebYaST-1.0-Pool","description":"SLE11-WebYaST-1.0-Pool for sle-11-ia64"},{"installer_updates":false,"name":"SLE11-WebYaST-1.0-Updates","description":"SLE11-WebYaST-1.0-Updates for sle-11-ppc64","enabled":true,"id":831,"distro_target":"sle-11-ppc64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-WebYaST-1.0-Updates/sle-11-ppc64/"},{"name":"SLE11-WebYaST-1.0-Pool","installer_updates":false,"description":"SLE11-WebYaST-1.0-Pool for sle-11-i586","id":832,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-WebYaST-1.0-Pool/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586"},{"enabled":false,"id":833,"autorefresh":true,"distro_target":"sle-11-s390x","url":"https://updates.suse.com/repo/$RCE/SLE11-WebYaST-1.0-Pool/sle-11-s390x/","name":"SLE11-WebYaST-1.0-Pool","installer_updates":false,"description":"SLE11-WebYaST-1.0-Pool for sle-11-s390x"},{"installer_updates":false,"name":"SLE11-WebYaST-1.0-Updates","description":"SLE11-WebYaST-1.0-Updates for sle-11-s390x","enabled":true,"id":834,"distro_target":"sle-11-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-WebYaST-1.0-Updates/sle-11-s390x/"},{"description":"SLE11-WebYaST-1.0-Updates for sle-11-x86_64","name":"SLE11-WebYaST-1.0-Updates","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-WebYaST-1.0-Updates/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64","id":835,"enabled":true},{"distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-WebYaST-1.0-Pool/sle-11-x86_64/","enabled":false,"id":836,"description":"SLE11-WebYaST-1.0-Pool for sle-11-x86_64","installer_updates":false,"name":"SLE11-WebYaST-1.0-Pool"},{"name":"SLE11-WebYaST-1.0-Updates","installer_updates":false,"description":"SLE11-WebYaST-1.0-Updates for sle-11-ia64","id":837,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-WebYaST-1.0-Updates/sle-11-ia64/","autorefresh":true,"distro_target":"sle-11-ia64"},{"installer_updates":false,"name":"SLE11-WebYaST-1.0-Pool","description":"SLE11-WebYaST-1.0-Pool for sle-11-ppc64","enabled":false,"id":838,"distro_target":"sle-11-ppc64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-WebYaST-1.0-Pool/sle-11-ppc64/"}],"online_predecessor_ids":[],"product_class":"WEBYAST","predecessor_ids":[],"arch":null,"eula_url":"","free":true,"description":null,"shortname":null,"release_stage":"released","id":836,"identifier":"sle-11-WebYaST","extensions":[],"friendly_version":"1.0","release_type":null,"former_identifier":"sle-11-WebYaST","friendly_name":"SUSE WebYaST 1.0","migration_extra":false,"offline_predecessor_ids":[],"name":"SUSE WebYaST","version":"1.0","recommended":false},{"recommended":false,"version":"1.0","offline_predecessor_ids":[],"name":"SUSE Lifecycle Management Server","release_type":null,"former_identifier":"sle-slms-1.1-migration","friendly_name":"SUSE Lifecycle Management Server 1.0 (Migration)","migration_extra":false,"friendly_version":"1.0","extensions":[],"identifier":"sle-slms-1.1-migration","release_stage":"released","id":933,"free":false,"shortname":null,"description":null,"eula_url":"","arch":null,"predecessor_ids":[],"repositories":[{"description":"SLE11-SLMS-1.0-Pool for sle-11-x86_64","installer_updates":false,"name":"SLE11-SLMS-1.0-Pool","distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SLMS-1.0-Pool/sle-11-x86_64/","enabled":true,"id":911},{"description":"SLE11-SLMS-1.0-Updates for sle-11-x86_64","name":"SLE11-SLMS-1.0-Updates","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SLMS-1.0-Updates/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64","id":912,"enabled":true}],"online_predecessor_ids":[],"product_class":"SLMS","product_type":"extension","cpe":null},{"friendly_version":"1.0","identifier":"sle-slms","release_stage":"released","id":936,"extensions":[],"version":"1.0","recommended":false,"release_type":null,"former_identifier":"sle-slms","friendly_name":"SUSE Lifecycle Management Server 1.0","migration_extra":false,"offline_predecessor_ids":[],"name":"SUSE Lifecycle Management Server","repositories":[{"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE11-SLMS-1.0-Pool/sle-11-x86_64/","enabled":false,"id":911,"description":"SLE11-SLMS-1.0-Pool for sle-11-x86_64","name":"SLE11-SLMS-1.0-Pool","installer_updates":false},{"description":"SLE11-SLMS-1.0-Updates for sle-11-x86_64","installer_updates":false,"name":"SLE11-SLMS-1.0-Updates","distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SLMS-1.0-Updates/sle-11-x86_64/","enabled":true,"id":912}],"online_predecessor_ids":[],"product_class":"SLMS","predecessor_ids":[],"product_type":"extension","cpe":null,"free":false,"description":null,"shortname":null,"arch":null,"eula_url":""},{"product_class":"SLE-HAE-X86","online_predecessor_ids":[],"repositories":[{"description":"SLE11-HAE-Updates for sle-11-x86_64","installer_updates":false,"name":"SLE11-HAE-Updates","url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-Updates/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true,"id":942,"enabled":true},{"enabled":false,"id":943,"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-Pool/sle-11-x86_64/","name":"SLE11-HAE-Pool","installer_updates":false,"description":"SLE11-HAE-Pool for sle-11-x86_64"}],"predecessor_ids":[],"cpe":null,"product_type":"extension","description":null,"shortname":null,"free":false,"arch":"x86_64","eula_url":"","friendly_version":"11","id":958,"release_stage":"released","identifier":"sle-hae","extensions":[],"version":"11","recommended":false,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise High Availability Extension 11 x86_64","former_identifier":"sle-hae","release_type":null,"name":"SUSE Linux Enterprise High Availability Extension","offline_predecessor_ids":[]},{"product_class":"SLE-HAE-X86","online_predecessor_ids":[],"repositories":[{"id":946,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP1-Pool/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64","name":"SLE11-HAE-SP1-Pool","installer_updates":false,"description":"SLE11-HAE-SP1-Pool for sle-11-x86_64"}],"predecessor_ids":[],"product_type":"extension","cpe":null,"free":false,"description":null,"shortname":null,"arch":"x86_64","eula_url":"","friendly_version":"11","id":960,"release_stage":"released","identifier":"sle-hae-SP1-migration","extensions":[],"version":"11","recommended":false,"former_identifier":"sle-hae-SP1-migration","release_type":null,"friendly_name":"SUSE Linux Enterprise High Availability Extension 11 x86_64 (Migration)","migration_extra":false,"offline_predecessor_ids":[],"name":"SUSE Linux Enterprise High Availability Extension"},{"extensions":[],"release_stage":"released","identifier":"sle-studioonsite","id":1075,"friendly_version":"1.0","name":"SUSE Studio OnSite","offline_predecessor_ids":[],"friendly_name":"SUSE Studio OnSite 1.0","migration_extra":false,"release_type":null,"former_identifier":"sle-studioonsite","recommended":false,"version":"1.0","cpe":null,"product_type":"extension","predecessor_ids":[],"online_predecessor_ids":[],"repositories":[{"distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-StudioOnsite-1.0-Pool/sle-11-x86_64/","enabled":false,"id":1091,"description":"SLE11-StudioOnsite-1.0-Pool for sle-11-x86_64","installer_updates":false,"name":"SLE11-StudioOnsite-1.0-Pool"},{"name":"SLE11-StudioOnsite-1.0-Updates","installer_updates":false,"description":"SLE11-StudioOnsite-1.0-Updates for sle-11-x86_64","enabled":true,"id":1092,"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE11-StudioOnsite-1.0-Updates/sle-11-x86_64/"}],"product_class":"STUDIOONSITE","eula_url":"","arch":null,"description":null,"shortname":null,"free":false},{"free":true,"shortname":null,"description":null,"arch":null,"eula_url":"","repositories":[{"installer_updates":false,"name":"SLE11-SMT-SP2-Pool","description":"SLE11-SMT-SP2-Pool for sle-11-x86_64","enabled":true,"id":1392,"distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP2-Pool/sle-11-x86_64/"},{"enabled":true,"id":1394,"distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP2-Pool/sle-11-i586/","installer_updates":false,"name":"SLE11-SMT-SP2-Pool","description":"SLE11-SMT-SP2-Pool for sle-11-i586"},{"name":"SLE11-SMT-SP2-Pool","installer_updates":false,"description":"SLE11-SMT-SP2-Pool for sle-11-s390x","enabled":true,"id":1396,"autorefresh":true,"distro_target":"sle-11-s390x","url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP2-Pool/sle-11-s390x/"}],"online_predecessor_ids":[],"product_class":"SLESMT","predecessor_ids":[],"product_type":"extension","cpe":null,"version":"11","recommended":false,"release_type":null,"former_identifier":"sle-smt-SP2-migration","migration_extra":false,"friendly_name":"SUSE Linux Enterprise Subscription Management Tool 11 (Migration)","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Subscription Management Tool","friendly_version":"11","release_stage":"released","identifier":"sle-smt-SP2-migration","id":1194,"extensions":[]},{"friendly_version":"11","extensions":[],"id":1196,"release_stage":"released","identifier":"sle-smt","recommended":false,"version":"11","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Subscription Management Tool","former_identifier":"sle-smt","release_type":null,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Subscription Management Tool 11","predecessor_ids":[],"online_predecessor_ids":[],"repositories":[{"id":1400,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-Updates/sle-11-s390x/","distro_target":"sle-11-s390x","autorefresh":true,"installer_updates":false,"name":"SLE11-SMT-Updates","description":"SLE11-SMT-Updates for sle-11-s390x"},{"description":"SLE11-SMT-Updates for sle-11-x86_64","name":"SLE11-SMT-Updates","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-Updates/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64","id":1401,"enabled":true},{"enabled":true,"id":1402,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-Updates/sle-11-i586/","name":"SLE11-SMT-Updates","installer_updates":false,"description":"SLE11-SMT-Updates for sle-11-i586"}],"product_class":"SLESMT","product_type":"extension","cpe":null,"free":true,"shortname":null,"description":null,"eula_url":"","arch":null}],"version":"11","recommended":false,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Server 11 x86_64 (Migration)","former_identifier":"SUSE_SLES-SP1-migration","release_type":null,"name":"SUSE Linux Enterprise Server","offline_predecessor_ids":[]},{"product_class":"SLES-Z","online_predecessor_ids":[],"repositories":[{"id":687,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-Pool/sle-11-s390x/","distro_target":"sle-11-s390x","autorefresh":true,"installer_updates":false,"name":"SLES11-SP1-Pool","description":"SLES11-SP1-Pool for sle-11-s390x"}],"predecessor_ids":[],"cpe":null,"product_type":"base","description":null,"shortname":null,"free":false,"arch":"s390x","eula_url":"","friendly_version":"11","release_stage":"released","identifier":"SUSE_SLES-SP1-migration","id":710,"extensions":[{"offline_predecessor_ids":[],"name":"SUSE WebYaST","release_type":null,"former_identifier":"sle-11-WebYaST","friendly_name":"SUSE WebYaST 1.0","migration_extra":false,"recommended":false,"version":"1.0","extensions":[],"release_stage":"released","id":836,"identifier":"sle-11-WebYaST","friendly_version":"1.0","eula_url":"","arch":null,"free":true,"description":null,"shortname":null,"product_type":"extension","cpe":null,"predecessor_ids":[],"product_class":"WEBYAST","online_predecessor_ids":[],"repositories":[{"name":"SLE11-WebYaST-1.0-Updates","installer_updates":false,"description":"SLE11-WebYaST-1.0-Updates for sle-11-i586","enabled":true,"id":829,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-WebYaST-1.0-Updates/sle-11-i586/"},{"autorefresh":true,"distro_target":"sle-11-ia64","url":"https://updates.suse.com/repo/$RCE/SLE11-WebYaST-1.0-Pool/sle-11-ia64/","enabled":false,"id":830,"description":"SLE11-WebYaST-1.0-Pool for sle-11-ia64","name":"SLE11-WebYaST-1.0-Pool","installer_updates":false},{"description":"SLE11-WebYaST-1.0-Updates for sle-11-ppc64","installer_updates":false,"name":"SLE11-WebYaST-1.0-Updates","url":"https://updates.suse.com/repo/$RCE/SLE11-WebYaST-1.0-Updates/sle-11-ppc64/","distro_target":"sle-11-ppc64","autorefresh":true,"id":831,"enabled":true},{"description":"SLE11-WebYaST-1.0-Pool for sle-11-i586","name":"SLE11-WebYaST-1.0-Pool","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-WebYaST-1.0-Pool/sle-11-i586/","enabled":false,"id":832},{"id":833,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-WebYaST-1.0-Pool/sle-11-s390x/","autorefresh":true,"distro_target":"sle-11-s390x","name":"SLE11-WebYaST-1.0-Pool","installer_updates":false,"description":"SLE11-WebYaST-1.0-Pool for sle-11-s390x"},{"installer_updates":false,"name":"SLE11-WebYaST-1.0-Updates","description":"SLE11-WebYaST-1.0-Updates for sle-11-s390x","enabled":true,"id":834,"distro_target":"sle-11-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-WebYaST-1.0-Updates/sle-11-s390x/"},{"installer_updates":false,"name":"SLE11-WebYaST-1.0-Updates","description":"SLE11-WebYaST-1.0-Updates for sle-11-x86_64","id":835,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-WebYaST-1.0-Updates/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true},{"id":836,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-WebYaST-1.0-Pool/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true,"installer_updates":false,"name":"SLE11-WebYaST-1.0-Pool","description":"SLE11-WebYaST-1.0-Pool for sle-11-x86_64"},{"description":"SLE11-WebYaST-1.0-Updates for sle-11-ia64","name":"SLE11-WebYaST-1.0-Updates","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-WebYaST-1.0-Updates/sle-11-ia64/","autorefresh":true,"distro_target":"sle-11-ia64","id":837,"enabled":true},{"name":"SLE11-WebYaST-1.0-Pool","installer_updates":false,"description":"SLE11-WebYaST-1.0-Pool for sle-11-ppc64","enabled":false,"id":838,"autorefresh":true,"distro_target":"sle-11-ppc64","url":"https://updates.suse.com/repo/$RCE/SLE11-WebYaST-1.0-Pool/sle-11-ppc64/"}]},{"friendly_version":"11","extensions":[],"identifier":"sle-hae","release_stage":"released","id":1086,"recommended":false,"version":"11","name":"SUSE Linux Enterprise High Availability Extension","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"SUSE Linux Enterprise High Availability Extension 11 s390x","former_identifier":"sle-hae","release_type":null,"predecessor_ids":[],"online_predecessor_ids":[],"repositories":[{"distro_target":"sle-11-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-Updates/sle-11-s390x/","enabled":true,"id":1100,"description":"SLE11-HAE-Updates for sle-11-s390x","installer_updates":false,"name":"SLE11-HAE-Updates"},{"enabled":false,"id":1101,"autorefresh":true,"distro_target":"sle-11-s390x","url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-Pool/sle-11-s390x/","name":"SLE11-HAE-Pool","installer_updates":false,"description":"SLE11-HAE-Pool for sle-11-s390x"}],"product_class":"SLE-HAE-Z","cpe":null,"product_type":"extension","shortname":null,"description":null,"free":false,"eula_url":"","arch":"s390x"},{"migration_extra":false,"friendly_name":"SUSE Linux Enterprise High Availability Extension 11 s390x (Migration)","release_type":null,"former_identifier":"sle-hae-SP1-migration","name":"SUSE Linux Enterprise High Availability Extension","offline_predecessor_ids":[],"version":"11","recommended":false,"id":1087,"release_stage":"released","identifier":"sle-hae-SP1-migration","extensions":[],"friendly_version":"11","arch":"s390x","eula_url":"","description":null,"shortname":null,"free":false,"cpe":null,"product_type":"extension","online_predecessor_ids":[],"product_class":"SLE-HAE-Z","repositories":[{"name":"SLE11-HAE-SP1-Pool","installer_updates":false,"description":"SLE11-HAE-SP1-Pool for sle-11-s390x","id":1094,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP1-Pool/sle-11-s390x/","autorefresh":true,"distro_target":"sle-11-s390x"}],"predecessor_ids":[]},{"repositories":[{"enabled":true,"id":1392,"distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP2-Pool/sle-11-x86_64/","installer_updates":false,"name":"SLE11-SMT-SP2-Pool","description":"SLE11-SMT-SP2-Pool for sle-11-x86_64"},{"enabled":true,"id":1394,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP2-Pool/sle-11-i586/","name":"SLE11-SMT-SP2-Pool","installer_updates":false,"description":"SLE11-SMT-SP2-Pool for sle-11-i586"},{"name":"SLE11-SMT-SP2-Pool","installer_updates":false,"description":"SLE11-SMT-SP2-Pool for sle-11-s390x","enabled":true,"id":1396,"autorefresh":true,"distro_target":"sle-11-s390x","url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP2-Pool/sle-11-s390x/"}],"online_predecessor_ids":[],"product_class":"SLESMT","predecessor_ids":[],"product_type":"extension","cpe":null,"free":true,"shortname":null,"description":null,"arch":null,"eula_url":"","friendly_version":"11","identifier":"sle-smt-SP2-migration","release_stage":"released","id":1194,"extensions":[],"version":"11","recommended":false,"release_type":null,"former_identifier":"sle-smt-SP2-migration","migration_extra":false,"friendly_name":"SUSE Linux Enterprise Subscription Management Tool 11 (Migration)","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Subscription Management Tool"},{"extensions":[],"release_stage":"released","identifier":"sle-smt","id":1196,"friendly_version":"11","name":"SUSE Linux Enterprise Subscription Management Tool","offline_predecessor_ids":[],"friendly_name":"SUSE Linux Enterprise Subscription Management Tool 11","migration_extra":false,"release_type":null,"former_identifier":"sle-smt","recommended":false,"version":"11","cpe":null,"product_type":"extension","predecessor_ids":[],"repositories":[{"description":"SLE11-SMT-Updates for sle-11-s390x","installer_updates":false,"name":"SLE11-SMT-Updates","distro_target":"sle-11-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-Updates/sle-11-s390x/","enabled":true,"id":1400},{"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-Updates/sle-11-x86_64/","enabled":true,"id":1401,"description":"SLE11-SMT-Updates for sle-11-x86_64","name":"SLE11-SMT-Updates","installer_updates":false},{"distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-Updates/sle-11-i586/","enabled":true,"id":1402,"description":"SLE11-SMT-Updates for sle-11-i586","installer_updates":false,"name":"SLE11-SMT-Updates"}],"online_predecessor_ids":[],"product_class":"SLESMT","eula_url":"","arch":null,"shortname":null,"description":null,"free":true}],"version":"11","recommended":false,"friendly_name":"SUSE Linux Enterprise Server 11 s390x (Migration)","migration_extra":false,"former_identifier":"SUSE_SLES-SP1-migration","release_type":null,"name":"SUSE Linux Enterprise Server","offline_predecessor_ids":[]},{"product_class":"SLES-PPC","online_predecessor_ids":[],"repositories":[{"enabled":true,"id":700,"autorefresh":false,"distro_target":"sles-10-ppc","url":"https://updates.suse.com/repo/$RCE/SLES10-SP4-Pool/sles-10-ppc/","name":"SLES10-SP4-Pool","installer_updates":false,"description":"SLES10-SP4-Pool for sles-10-ppc"},{"url":"https://updates.suse.com/repo/$RCE/SLE10-SP4-Debuginfo-Updates/sles-10-ppc/","distro_target":"sles-10-ppc","autorefresh":true,"id":701,"enabled":false,"description":"SLE10-SP4-Debuginfo-Updates for sles-10-ppc","installer_updates":false,"name":"SLE10-SP4-Debuginfo-Updates"},{"name":"SLES10-SP4-Updates","installer_updates":false,"description":"SLES10-SP4-Updates for sles-10-ppc","id":702,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLES10-SP4-Updates/sles-10-ppc/","autorefresh":true,"distro_target":"sles-10-ppc"},{"distro_target":"sles-10-ppc","autorefresh":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP4-Debuginfo-Pool/sles-10-ppc/","enabled":false,"id":703,"description":"SLE10-SP4-Debuginfo-Pool for sles-10-ppc","installer_updates":false,"name":"SLE10-SP4-Debuginfo-Pool"},{"installer_updates":false,"name":"SLES10-GPLv3-Extras","description":"SLES10-GPLv3-Extras for sles-10-ppc","id":704,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLES10-GPLv3-Extras/sles-10-ppc/","distro_target":"sles-10-ppc","autorefresh":true}],"predecessor_ids":[],"cpe":null,"product_type":"base","shortname":null,"description":null,"free":false,"arch":"ppc","eula_url":"","friendly_version":"10 SP4","release_stage":"released","id":711,"identifier":"SUSE-Linux-Enterprise-Server-SP4","extensions":[{"cpe":null,"product_type":"extension","predecessor_ids":[],"product_class":"SLE-SDK","online_predecessor_ids":[],"repositories":[{"installer_updates":false,"name":"SLE10-SDK-SP4-Pool","description":"SLE10-SDK-SP4-Pool for sles-10-x86_64","id":1343,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP4-Pool/sles-10-x86_64/","distro_target":"sles-10-x86_64","autorefresh":false},{"autorefresh":false,"distro_target":"sles-10-ppc","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP4-Pool/sles-10-ppc/","enabled":true,"id":1344,"description":"SLE10-SDK-SP4-Pool for sles-10-ppc","name":"SLE10-SDK-SP4-Pool","installer_updates":false},{"installer_updates":false,"name":"SLE10-SDK-SP4-Pool","description":"SLE10-SDK-SP4-Pool for sles-10-i586","id":1345,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP4-Pool/sles-10-i586/","distro_target":"sles-10-i586","autorefresh":false},{"autorefresh":false,"distro_target":"sled-10-i586","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP4-Pool/sled-10-i586/","enabled":true,"id":1346,"description":"SLE10-SDK-SP4-Pool for sled-10-i586","name":"SLE10-SDK-SP4-Pool","installer_updates":false},{"installer_updates":false,"name":"SLE10-SDK-SP4-Updates","description":"SLE10-SDK-SP4-Updates for sled-10-x86_64","enabled":true,"id":1347,"distro_target":"sled-10-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP4-Updates/sled-10-x86_64/"},{"description":"SLE10-SDK-SP4-Pool for sles-10-s390x","name":"SLE10-SDK-SP4-Pool","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP4-Pool/sles-10-s390x/","autorefresh":false,"distro_target":"sles-10-s390x","id":1348,"enabled":true},{"name":"SLE10-SDK-SP4-Updates","installer_updates":false,"description":"SLE10-SDK-SP4-Updates for sles-10-x86_64","id":1349,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP4-Updates/sles-10-x86_64/","autorefresh":true,"distro_target":"sles-10-x86_64"},{"enabled":true,"id":1350,"autorefresh":true,"distro_target":"sles-10-s390x","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP4-Updates/sles-10-s390x/","name":"SLE10-SDK-SP4-Updates","installer_updates":false,"description":"SLE10-SDK-SP4-Updates for sles-10-s390x"},{"name":"SLE10-SDK-SP4-Updates","installer_updates":false,"description":"SLE10-SDK-SP4-Updates for sled-10-i586","enabled":true,"id":1351,"autorefresh":true,"distro_target":"sled-10-i586","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP4-Updates/sled-10-i586/"},{"description":"SLE10-SDK-SP4-Updates for sles-10-ppc","installer_updates":false,"name":"SLE10-SDK-SP4-Updates","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP4-Updates/sles-10-ppc/","distro_target":"sles-10-ppc","autorefresh":true,"id":1352,"enabled":true},{"id":1353,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP4-Updates/sles-10-i586/","autorefresh":true,"distro_target":"sles-10-i586","name":"SLE10-SDK-SP4-Updates","installer_updates":false,"description":"SLE10-SDK-SP4-Updates for sles-10-i586"},{"enabled":true,"id":1354,"autorefresh":true,"distro_target":"sles-10-ia64","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP4-Updates/sles-10-ia64/","name":"SLE10-SDK-SP4-Updates","installer_updates":false,"description":"SLE10-SDK-SP4-Updates for sles-10-ia64"},{"enabled":true,"id":1355,"distro_target":"sled-10-x86_64","autorefresh":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP4-Pool/sled-10-x86_64/","installer_updates":false,"name":"SLE10-SDK-SP4-Pool","description":"SLE10-SDK-SP4-Pool for sled-10-x86_64"},{"installer_updates":false,"name":"SLE10-SDK-SP4-Pool","description":"SLE10-SDK-SP4-Pool for sles-10-ia64","id":1356,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP4-Pool/sles-10-ia64/","distro_target":"sles-10-ia64","autorefresh":false}],"eula_url":"","arch":null,"shortname":null,"description":null,"free":true,"extensions":[],"release_stage":"released","identifier":"SUSE-Linux-Enterprise-SDK-SP4","id":1181,"friendly_version":"10 SP4","name":"SUSE Linux Enterprise Software Development Kit","offline_predecessor_ids":[],"friendly_name":"SUSE Linux Enterprise Software Development Kit 10 SP4","migration_extra":false,"release_type":null,"former_identifier":"SUSE-Linux-Enterprise-SDK-SP4","recommended":false,"version":"10"},{"recommended":false,"version":"10","name":"SUSE Linux Enterprise Software Development Kit","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Software Development Kit 10 (Migration)","former_identifier":"SUSE-Linux-Enterprise-SDK-SP4-migration","release_type":null,"friendly_version":"10","extensions":[],"identifier":"SUSE-Linux-Enterprise-SDK-SP4-migration","release_stage":"released","id":1182,"description":null,"shortname":null,"free":true,"eula_url":"","arch":null,"predecessor_ids":[],"repositories":[{"description":"SLE10-SDK-SP4-Online for sles-10-x86_64","name":"SLE10-SDK-SP4-Online","installer_updates":false,"autorefresh":true,"distro_target":"sles-10-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP4-Online/sles-10-x86_64/","enabled":true,"id":1357},{"name":"SLE10-SDK-SP4-Online","installer_updates":false,"description":"SLE10-SDK-SP4-Online for sles-10-i586","id":1358,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP4-Online/sles-10-i586/","autorefresh":true,"distro_target":"sles-10-i586"},{"description":"SLE10-SDK-SP4-Online for sles-10-ia64","installer_updates":false,"name":"SLE10-SDK-SP4-Online","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP4-Online/sles-10-ia64/","distro_target":"sles-10-ia64","autorefresh":true,"id":1359,"enabled":true},{"enabled":true,"id":1360,"distro_target":"sled-10-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP4-Online/sled-10-x86_64/","installer_updates":false,"name":"SLE10-SDK-SP4-Online","description":"SLE10-SDK-SP4-Online for sled-10-x86_64"},{"id":1361,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP4-Online/sled-10-i586/","distro_target":"sled-10-i586","autorefresh":true,"installer_updates":false,"name":"SLE10-SDK-SP4-Online","description":"SLE10-SDK-SP4-Online for sled-10-i586"},{"description":"SLE10-SDK-SP4-Online for sles-10-ppc","name":"SLE10-SDK-SP4-Online","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP4-Online/sles-10-ppc/","autorefresh":true,"distro_target":"sles-10-ppc","id":1362,"enabled":true},{"id":1363,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP4-Online/sles-10-s390x/","distro_target":"sles-10-s390x","autorefresh":true,"installer_updates":false,"name":"SLE10-SDK-SP4-Online","description":"SLE10-SDK-SP4-Online for sles-10-s390x"}],"online_predecessor_ids":[],"product_class":"SLE-SDK","cpe":null,"product_type":"extension"}],"version":"10","recommended":false,"friendly_name":"SUSE Linux Enterprise Server 10 SP4 ppc","migration_extra":false,"release_type":null,"former_identifier":"SUSE-Linux-Enterprise-Server-SP4","name":"SUSE Linux Enterprise Server","offline_predecessor_ids":[]},{"product_type":"base","cpe":null,"predecessor_ids":[],"online_predecessor_ids":[],"repositories":[{"installer_updates":false,"name":"SLES11-Extras","description":"SLES11-Extras for sle-11-i586","enabled":false,"id":679,"distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-Extras/sle-11-i586/"},{"description":"SLE11-SP1-Debuginfo-Pool for sle-11-i586","installer_updates":false,"name":"SLE11-SP1-Debuginfo-Pool","url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Pool/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true,"id":680,"enabled":false},{"description":"SLE11-SP1-Debuginfo-Updates for sle-11-i586","name":"SLE11-SP1-Debuginfo-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Updates/sle-11-i586/","enabled":false,"id":682},{"installer_updates":false,"name":"SLES11-SP1-Updates","description":"SLES11-SP1-Updates for sle-11-i586","id":684,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-Updates/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true},{"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-Pool/sle-11-i586/","enabled":false,"id":686,"description":"SLES11-SP1-Pool for sle-11-i586","name":"SLES11-SP1-Pool","installer_updates":false},{"installer_updates":false,"name":"SLE11-SP2-Debuginfo-Core","description":"SLE11-SP2-Debuginfo-Core for sle-11-i586","id":717,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-Debuginfo-Core/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-Debuginfo-Updates/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","id":719,"enabled":false,"description":"SLE11-SP2-Debuginfo-Updates for sle-11-i586","name":"SLE11-SP2-Debuginfo-Updates","installer_updates":false},{"description":"SLES11-SP2-Updates for sle-11-i586","installer_updates":false,"name":"SLES11-SP2-Updates","distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP2-Updates/sle-11-i586/","enabled":false,"id":720},{"description":"SLES11-SP2-Core for sle-11-i586","name":"SLES11-SP2-Core","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP2-Core/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","id":722,"enabled":false},{"enabled":false,"id":758,"distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP3-Extension-Store/sle-11-i586/","installer_updates":false,"name":"SLES11-SP3-Extension-Store","description":"SLES11-SP3-Extension-Store for sle-11-i586"},{"installer_updates":false,"name":"SLE11-SP3-Debuginfo-Updates","description":"SLE11-SP3-Debuginfo-Updates for sle-11-i586","enabled":false,"id":759,"distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP3-Debuginfo-Updates/sle-11-i586/"},{"description":"SLES11-SP3-Pool for sle-11-i586","installer_updates":false,"name":"SLES11-SP3-Pool","distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP3-Pool/sle-11-i586/","enabled":true,"id":760},{"url":"https://updates.suse.com/repo/$RCE/SLES11-SP2-Extension-Store/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true,"id":761,"enabled":true,"description":"SLES11-SP2-Extension-Store for sle-11-i586","installer_updates":false,"name":"SLES11-SP2-Extension-Store"},{"name":"SLES11-SP3-Updates","installer_updates":false,"description":"SLES11-SP3-Updates for sle-11-i586","enabled":true,"id":762,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLES11-SP3-Updates/sle-11-i586/"},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SP3-Debuginfo-Pool/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true,"id":763,"enabled":false,"description":"SLE11-SP3-Debuginfo-Pool for sle-11-i586","installer_updates":false,"name":"SLE11-SP3-Debuginfo-Pool"}],"product_class":"7261","eula_url":"","arch":"i486","free":false,"description":null,"shortname":null,"extensions":[{"cpe":null,"product_type":"extension","repositories":[{"id":949,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP2-Pool/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","name":"SLE11-HAE-SP2-Pool","installer_updates":false,"description":"SLE11-HAE-SP2-Pool for sle-11-i586"},{"description":"SLE11-HAE-SP2-Updates for sle-11-i586","name":"SLE11-HAE-SP2-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP2-Updates/sle-11-i586/","enabled":true,"id":950}],"online_predecessor_ids":[],"product_class":"SLE-HAE-X86","predecessor_ids":[],"arch":"i486","eula_url":"","shortname":null,"description":null,"free":false,"identifier":"sle-hae","release_stage":"released","id":979,"extensions":[],"friendly_version":"11 SP2","migration_extra":false,"friendly_name":"SUSE Linux Enterprise High Availability Extension 11 SP2 i486","release_type":null,"former_identifier":"sle-hae","name":"SUSE Linux Enterprise High Availability Extension","offline_predecessor_ids":[],"version":"11.2","recommended":false},{"friendly_version":"11 SP2","id":1193,"release_stage":"released","identifier":"sle-smt","extensions":[],"version":"11.2","recommended":false,"friendly_name":"SUSE Linux Enterprise Subscription Management Tool 11 SP2","migration_extra":false,"former_identifier":"sle-smt","release_type":null,"name":"SUSE Linux Enterprise Subscription Management Tool","offline_predecessor_ids":[],"repositories":[{"description":"SLE11-SMT-SP2-Pool for sle-11-x86_64","installer_updates":false,"name":"SLE11-SMT-SP2-Pool","url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP2-Pool/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true,"id":1392,"enabled":true},{"installer_updates":false,"name":"SLE11-SMT-SP2-Updates","description":"SLE11-SMT-SP2-Updates for sle-11-s390x","enabled":true,"id":1393,"distro_target":"sle-11-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP2-Updates/sle-11-s390x/"},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP2-Pool/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","id":1394,"enabled":true,"description":"SLE11-SMT-SP2-Pool for sle-11-i586","name":"SLE11-SMT-SP2-Pool","installer_updates":false},{"enabled":true,"id":1395,"distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP2-Updates/sle-11-i586/","installer_updates":false,"name":"SLE11-SMT-SP2-Updates","description":"SLE11-SMT-SP2-Updates for sle-11-i586"},{"autorefresh":true,"distro_target":"sle-11-s390x","url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP2-Pool/sle-11-s390x/","enabled":true,"id":1396,"description":"SLE11-SMT-SP2-Pool for sle-11-s390x","name":"SLE11-SMT-SP2-Pool","installer_updates":false},{"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP2-Updates/sle-11-x86_64/","enabled":true,"id":1397,"description":"SLE11-SMT-SP2-Updates for sle-11-x86_64","name":"SLE11-SMT-SP2-Updates","installer_updates":false}],"online_predecessor_ids":[],"product_class":"SLESMT","predecessor_ids":[],"cpe":null,"product_type":"extension","shortname":null,"description":null,"free":true,"arch":null,"eula_url":""},{"arch":null,"eula_url":"","description":null,"shortname":null,"free":true,"cpe":null,"product_type":"extension","online_predecessor_ids":[],"repositories":[{"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP3-Pool/sle-11-s390x/","autorefresh":true,"distro_target":"sle-11-s390x","id":1408,"enabled":true,"description":"SLE11-SMT-SP3-Pool for sle-11-s390x","name":"SLE11-SMT-SP3-Pool","installer_updates":false},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP3-Pool/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true,"id":1409,"enabled":true,"description":"SLE11-SMT-SP3-Pool for sle-11-x86_64","installer_updates":false,"name":"SLE11-SMT-SP3-Pool"},{"description":"SLE11-SMT-SP3-Pool for sle-11-i586","name":"SLE11-SMT-SP3-Pool","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP3-Pool/sle-11-i586/","enabled":true,"id":1410}],"product_class":"SLESMT","predecessor_ids":[],"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Subscription Management Tool 11 SP2 (Migration)","release_type":null,"former_identifier":"sle-smt-SP3-migration","name":"SUSE Linux Enterprise Subscription Management Tool","offline_predecessor_ids":[],"version":"11.2","recommended":false,"id":1199,"release_stage":"released","identifier":"sle-smt-SP3-migration","extensions":[],"friendly_version":"11 SP2"}],"release_stage":"released","id":712,"identifier":"SUSE_SLES-SP3-migration","friendly_version":"11 SP2","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Server","former_identifier":"SUSE_SLES-SP3-migration","release_type":null,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Server 11 SP2 i486 (Migration)","recommended":false,"version":"11.2"},{"arch":"i486","eula_url":"","description":null,"shortname":null,"free":false,"cpe":null,"product_type":"base","online_predecessor_ids":[],"repositories":[{"installer_updates":false,"name":"SLES10-SP1-Online","description":"SLES10-SP1-Online for sles-10-i586","id":639,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLES10-SP1-Online/sles-10-i586/","distro_target":"sles-10-i586","autorefresh":true},{"description":"SLE10-SP1-Debuginfo-Updates for sles-10-i586","name":"SLE10-SP1-Debuginfo-Updates","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP1-Debuginfo-Updates/sles-10-i586/","autorefresh":true,"distro_target":"sles-10-i586","id":641,"enabled":false},{"enabled":true,"id":642,"distro_target":"sles-10-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLES10-SP1-LTSS-Updates/sles-10-i586/","installer_updates":false,"name":"SLES10-SP1-LTSS-Updates","description":"SLES10-SP1-LTSS-Updates for sles-10-i586"},{"description":"SLES10-SP1-LTSS-Updates for sles-10-ia64","name":"SLES10-SP1-LTSS-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sles-10-ia64","url":"https://updates.suse.com/repo/$RCE/SLES10-SP1-LTSS-Updates/sles-10-ia64/","enabled":true,"id":643},{"enabled":true,"id":644,"distro_target":"sles-10-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLES10-SP1-LTSS-Updates/sles-10-s390x/","installer_updates":false,"name":"SLES10-SP1-LTSS-Updates","description":"SLES10-SP1-LTSS-Updates for sles-10-s390x"},{"enabled":true,"id":645,"distro_target":"sles-10-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLES10-SP1-LTSS-Updates/sles-10-x86_64/","installer_updates":false,"name":"SLES10-SP1-LTSS-Updates","description":"SLES10-SP1-LTSS-Updates for sles-10-x86_64"},{"url":"https://updates.suse.com/repo/$RCE/SLES10-SP1-Updates/sles-10-i586/","distro_target":"sles-10-i586","autorefresh":true,"id":646,"enabled":true,"description":"SLES10-SP1-Updates for sles-10-i586","installer_updates":false,"name":"SLES10-SP1-Updates"},{"enabled":true,"id":647,"distro_target":"sles-10-ppc","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLES10-SP1-LTSS-Updates/sles-10-ppc/","installer_updates":false,"name":"SLES10-SP1-LTSS-Updates","description":"SLES10-SP1-LTSS-Updates for sles-10-ppc"}],"product_class":"7261","predecessor_ids":[],"friendly_name":"SUSE Linux Enterprise Server 10 SP1 online i486","migration_extra":false,"former_identifier":"SUSE-Linux-Enterprise-Server-SP1","release_type":"online","name":"SUSE Linux Enterprise Server","offline_predecessor_ids":[],"version":"10","recommended":false,"release_stage":"released","id":713,"identifier":"SUSE-Linux-Enterprise-Server-SP1","extensions":[{"eula_url":"","arch":null,"shortname":null,"description":null,"free":true,"cpe":null,"product_type":"extension","predecessor_ids":[],"product_class":"SLE-SDK","online_predecessor_ids":[],"repositories":[{"id":1294,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sles-10-s390x/","distro_target":"sles-10-s390x","autorefresh":true,"installer_updates":false,"name":"SLE10-SDK-SP1-Online","description":"SLE10-SDK-SP1-Online for sles-10-s390x"},{"description":"SLE10-SDK-SP1-Online for sles-10-x86_64","installer_updates":false,"name":"SLE10-SDK-SP1-Online","distro_target":"sles-10-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sles-10-x86_64/","enabled":true,"id":1295},{"name":"SLE10-SDK-SP1-Online","installer_updates":false,"description":"SLE10-SDK-SP1-Online for sled-10-i586","id":1296,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sled-10-i586/","autorefresh":true,"distro_target":"sled-10-i586"},{"installer_updates":false,"name":"SLE10-SDK-SP1-Online","description":"SLE10-SDK-SP1-Online for sles-10-ppc","enabled":true,"id":1297,"distro_target":"sles-10-ppc","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sles-10-ppc/"},{"description":"SLE10-SDK-SP1-Updates for sles-10-s390x","name":"SLE10-SDK-SP1-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sles-10-s390x","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Updates/sles-10-s390x/","enabled":true,"id":1298},{"name":"SLE10-SDK-SP1-Updates","installer_updates":false,"description":"SLE10-SDK-SP1-Updates for sled-10-x86_64","id":1299,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Updates/sled-10-x86_64/","autorefresh":true,"distro_target":"sled-10-x86_64"},{"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Updates/sles-10-x86_64/","autorefresh":true,"distro_target":"sles-10-x86_64","id":1300,"enabled":true,"description":"SLE10-SDK-SP1-Updates for sles-10-x86_64","name":"SLE10-SDK-SP1-Updates","installer_updates":false},{"description":"SLE10-SDK-SP1-Online for sles-10-ia64","installer_updates":false,"name":"SLE10-SDK-SP1-Online","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sles-10-ia64/","distro_target":"sles-10-ia64","autorefresh":true,"id":1301,"enabled":true},{"installer_updates":false,"name":"SLE10-SDK-SP1-Updates","description":"SLE10-SDK-SP1-Updates for sled-10-i586","id":1302,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Updates/sled-10-i586/","distro_target":"sled-10-i586","autorefresh":true},{"name":"SLE10-SDK-SP1-Online","installer_updates":false,"description":"SLE10-SDK-SP1-Online for sles-10-i586","id":1303,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sles-10-i586/","autorefresh":true,"distro_target":"sles-10-i586"},{"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Updates/sles-10-ia64/","distro_target":"sles-10-ia64","autorefresh":true,"id":1304,"enabled":true,"description":"SLE10-SDK-SP1-Updates for sles-10-ia64","installer_updates":false,"name":"SLE10-SDK-SP1-Updates"},{"description":"SLE10-SDK-SP1-Updates for sles-10-ppc","installer_updates":false,"name":"SLE10-SDK-SP1-Updates","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Updates/sles-10-ppc/","distro_target":"sles-10-ppc","autorefresh":true,"id":1305,"enabled":true},{"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Updates/sles-10-i586/","distro_target":"sles-10-i586","autorefresh":true,"id":1306,"enabled":true,"description":"SLE10-SDK-SP1-Updates for sles-10-i586","installer_updates":false,"name":"SLE10-SDK-SP1-Updates"},{"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sled-10-x86_64/","distro_target":"sled-10-x86_64","autorefresh":true,"id":1307,"enabled":true,"description":"SLE10-SDK-SP1-Online for sled-10-x86_64","installer_updates":false,"name":"SLE10-SDK-SP1-Online"}],"name":"SUSE Linux Enterprise Software Development Kit","offline_predecessor_ids":[],"friendly_name":"SUSE Linux Enterprise Software Development Kit 10 SP1","migration_extra":false,"release_type":null,"former_identifier":"SUSE-Linux-Enterprise-SDK-SP1","recommended":false,"version":"10","extensions":[],"release_stage":"released","identifier":"SUSE-Linux-Enterprise-SDK-SP1","id":1174,"friendly_version":"10 SP1"},{"arch":null,"eula_url":"","shortname":null,"description":null,"free":true,"cpe":null,"product_type":"extension","product_class":"SLE-SDK","online_predecessor_ids":[],"repositories":[{"installer_updates":false,"name":"SLE10-SDK-SP1-Online","description":"SLE10-SDK-SP1-Online for sles-10-s390x","enabled":true,"id":1294,"distro_target":"sles-10-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sles-10-s390x/"},{"installer_updates":false,"name":"SLE10-SDK-SP1-Online","description":"SLE10-SDK-SP1-Online for sles-10-x86_64","id":1295,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sles-10-x86_64/","distro_target":"sles-10-x86_64","autorefresh":true},{"name":"SLE10-SDK-SP1-Online","installer_updates":false,"description":"SLE10-SDK-SP1-Online for sled-10-i586","enabled":true,"id":1296,"autorefresh":true,"distro_target":"sled-10-i586","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sled-10-i586/"},{"enabled":true,"id":1297,"autorefresh":true,"distro_target":"sles-10-ppc","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sles-10-ppc/","name":"SLE10-SDK-SP1-Online","installer_updates":false,"description":"SLE10-SDK-SP1-Online for sles-10-ppc"},{"name":"SLE10-SDK-SP1-Online","installer_updates":false,"description":"SLE10-SDK-SP1-Online for sles-10-ia64","enabled":true,"id":1301,"autorefresh":true,"distro_target":"sles-10-ia64","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sles-10-ia64/"},{"enabled":true,"id":1303,"distro_target":"sles-10-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sles-10-i586/","installer_updates":false,"name":"SLE10-SDK-SP1-Online","description":"SLE10-SDK-SP1-Online for sles-10-i586"},{"id":1307,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sled-10-x86_64/","autorefresh":true,"distro_target":"sled-10-x86_64","name":"SLE10-SDK-SP1-Online","installer_updates":false,"description":"SLE10-SDK-SP1-Online for sled-10-x86_64"}],"predecessor_ids":[],"friendly_name":"SUSE Linux Enterprise Software Development Kit 10 (Migration)","migration_extra":false,"former_identifier":"SUSE-Linux-Enterprise-SDK-SP1-migration","release_type":null,"name":"SUSE Linux Enterprise Software Development Kit","offline_predecessor_ids":[],"version":"10","recommended":false,"id":1175,"release_stage":"released","identifier":"SUSE-Linux-Enterprise-SDK-SP1-migration","extensions":[],"friendly_version":"10"}],"friendly_version":"10 SP1"},{"shortname":null,"description":null,"free":false,"eula_url":"","arch":"s390","predecessor_ids":[],"product_class":"SLES-Z","online_predecessor_ids":[],"repositories":[{"enabled":true,"id":642,"autorefresh":true,"distro_target":"sles-10-i586","url":"https://updates.suse.com/repo/$RCE/SLES10-SP1-LTSS-Updates/sles-10-i586/","name":"SLES10-SP1-LTSS-Updates","installer_updates":false,"description":"SLES10-SP1-LTSS-Updates for sles-10-i586"},{"installer_updates":false,"name":"SLES10-SP1-LTSS-Updates","description":"SLES10-SP1-LTSS-Updates for sles-10-ia64","id":643,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLES10-SP1-LTSS-Updates/sles-10-ia64/","distro_target":"sles-10-ia64","autorefresh":true},{"installer_updates":false,"name":"SLES10-SP1-LTSS-Updates","description":"SLES10-SP1-LTSS-Updates for sles-10-s390x","enabled":true,"id":644,"distro_target":"sles-10-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLES10-SP1-LTSS-Updates/sles-10-s390x/"},{"installer_updates":false,"name":"SLES10-SP1-LTSS-Updates","description":"SLES10-SP1-LTSS-Updates for sles-10-x86_64","enabled":true,"id":645,"distro_target":"sles-10-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLES10-SP1-LTSS-Updates/sles-10-x86_64/"},{"enabled":true,"id":647,"autorefresh":true,"distro_target":"sles-10-ppc","url":"https://updates.suse.com/repo/$RCE/SLES10-SP1-LTSS-Updates/sles-10-ppc/","name":"SLES10-SP1-LTSS-Updates","installer_updates":false,"description":"SLES10-SP1-LTSS-Updates for sles-10-ppc"},{"enabled":true,"id":650,"autorefresh":true,"distro_target":"sles-10-s390x","url":"https://updates.suse.com/repo/$RCE/SLES10-SP1-Online/sles-10-s390x/","name":"SLES10-SP1-Online","installer_updates":false,"description":"SLES10-SP1-Online for sles-10-s390x"},{"url":"https://updates.suse.com/repo/$RCE/SLES10-SP1-Updates/sles-10-s390x/","distro_target":"sles-10-s390x","autorefresh":true,"id":651,"enabled":true,"description":"SLES10-SP1-Updates for sles-10-s390x","installer_updates":false,"name":"SLES10-SP1-Updates"},{"description":"SLE10-SP1-Debuginfo-Updates for sles-10-s390x","installer_updates":false,"name":"SLE10-SP1-Debuginfo-Updates","distro_target":"sles-10-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP1-Debuginfo-Updates/sles-10-s390x/","enabled":false,"id":652}],"cpe":null,"product_type":"base","recommended":false,"version":"10","name":"SUSE Linux Enterprise Server","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Server 10 SP1 online s390","release_type":"online","former_identifier":"SUSE-Linux-Enterprise-Server-SP1","friendly_version":"10 SP1","extensions":[{"repositories":[{"id":1294,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sles-10-s390x/","autorefresh":true,"distro_target":"sles-10-s390x","name":"SLE10-SDK-SP1-Online","installer_updates":false,"description":"SLE10-SDK-SP1-Online for sles-10-s390x"},{"enabled":true,"id":1295,"distro_target":"sles-10-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sles-10-x86_64/","installer_updates":false,"name":"SLE10-SDK-SP1-Online","description":"SLE10-SDK-SP1-Online for sles-10-x86_64"},{"description":"SLE10-SDK-SP1-Online for sled-10-i586","name":"SLE10-SDK-SP1-Online","installer_updates":false,"autorefresh":true,"distro_target":"sled-10-i586","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sled-10-i586/","enabled":true,"id":1296},{"id":1297,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sles-10-ppc/","autorefresh":true,"distro_target":"sles-10-ppc","name":"SLE10-SDK-SP1-Online","installer_updates":false,"description":"SLE10-SDK-SP1-Online for sles-10-ppc"},{"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Updates/sles-10-s390x/","autorefresh":true,"distro_target":"sles-10-s390x","id":1298,"enabled":true,"description":"SLE10-SDK-SP1-Updates for sles-10-s390x","name":"SLE10-SDK-SP1-Updates","installer_updates":false},{"id":1299,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Updates/sled-10-x86_64/","autorefresh":true,"distro_target":"sled-10-x86_64","name":"SLE10-SDK-SP1-Updates","installer_updates":false,"description":"SLE10-SDK-SP1-Updates for sled-10-x86_64"},{"enabled":true,"id":1300,"distro_target":"sles-10-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Updates/sles-10-x86_64/","installer_updates":false,"name":"SLE10-SDK-SP1-Updates","description":"SLE10-SDK-SP1-Updates for sles-10-x86_64"},{"description":"SLE10-SDK-SP1-Online for sles-10-ia64","installer_updates":false,"name":"SLE10-SDK-SP1-Online","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sles-10-ia64/","distro_target":"sles-10-ia64","autorefresh":true,"id":1301,"enabled":true},{"description":"SLE10-SDK-SP1-Updates for sled-10-i586","name":"SLE10-SDK-SP1-Updates","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Updates/sled-10-i586/","autorefresh":true,"distro_target":"sled-10-i586","id":1302,"enabled":true},{"installer_updates":false,"name":"SLE10-SDK-SP1-Online","description":"SLE10-SDK-SP1-Online for sles-10-i586","enabled":true,"id":1303,"distro_target":"sles-10-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sles-10-i586/"},{"id":1304,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Updates/sles-10-ia64/","distro_target":"sles-10-ia64","autorefresh":true,"installer_updates":false,"name":"SLE10-SDK-SP1-Updates","description":"SLE10-SDK-SP1-Updates for sles-10-ia64"},{"description":"SLE10-SDK-SP1-Updates for sles-10-ppc","installer_updates":false,"name":"SLE10-SDK-SP1-Updates","distro_target":"sles-10-ppc","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Updates/sles-10-ppc/","enabled":true,"id":1305},{"description":"SLE10-SDK-SP1-Updates for sles-10-i586","installer_updates":false,"name":"SLE10-SDK-SP1-Updates","distro_target":"sles-10-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Updates/sles-10-i586/","enabled":true,"id":1306},{"name":"SLE10-SDK-SP1-Online","installer_updates":false,"description":"SLE10-SDK-SP1-Online for sled-10-x86_64","enabled":true,"id":1307,"autorefresh":true,"distro_target":"sled-10-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sled-10-x86_64/"}],"online_predecessor_ids":[],"product_class":"SLE-SDK","predecessor_ids":[],"product_type":"extension","cpe":null,"free":true,"shortname":null,"description":null,"arch":null,"eula_url":"","friendly_version":"10 SP1","id":1174,"release_stage":"released","identifier":"SUSE-Linux-Enterprise-SDK-SP1","extensions":[],"version":"10","recommended":false,"release_type":null,"former_identifier":"SUSE-Linux-Enterprise-SDK-SP1","friendly_name":"SUSE Linux Enterprise Software Development Kit 10 SP1","migration_extra":false,"offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Software Development Kit"},{"version":"10","recommended":false,"release_type":null,"former_identifier":"SUSE-Linux-Enterprise-SDK-SP1-migration","friendly_name":"SUSE Linux Enterprise Software Development Kit 10 (Migration)","migration_extra":false,"offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Software Development Kit","friendly_version":"10","identifier":"SUSE-Linux-Enterprise-SDK-SP1-migration","release_stage":"released","id":1175,"extensions":[],"free":true,"description":null,"shortname":null,"arch":null,"eula_url":"","repositories":[{"description":"SLE10-SDK-SP1-Online for sles-10-s390x","installer_updates":false,"name":"SLE10-SDK-SP1-Online","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sles-10-s390x/","distro_target":"sles-10-s390x","autorefresh":true,"id":1294,"enabled":true},{"name":"SLE10-SDK-SP1-Online","installer_updates":false,"description":"SLE10-SDK-SP1-Online for sles-10-x86_64","enabled":true,"id":1295,"autorefresh":true,"distro_target":"sles-10-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sles-10-x86_64/"},{"description":"SLE10-SDK-SP1-Online for sled-10-i586","installer_updates":false,"name":"SLE10-SDK-SP1-Online","distro_target":"sled-10-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sled-10-i586/","enabled":true,"id":1296},{"description":"SLE10-SDK-SP1-Online for sles-10-ppc","installer_updates":false,"name":"SLE10-SDK-SP1-Online","distro_target":"sles-10-ppc","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sles-10-ppc/","enabled":true,"id":1297},{"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sles-10-ia64/","autorefresh":true,"distro_target":"sles-10-ia64","id":1301,"enabled":true,"description":"SLE10-SDK-SP1-Online for sles-10-ia64","name":"SLE10-SDK-SP1-Online","installer_updates":false},{"distro_target":"sles-10-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sles-10-i586/","enabled":true,"id":1303,"description":"SLE10-SDK-SP1-Online for sles-10-i586","installer_updates":false,"name":"SLE10-SDK-SP1-Online"},{"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sled-10-x86_64/","distro_target":"sled-10-x86_64","autorefresh":true,"id":1307,"enabled":true,"description":"SLE10-SDK-SP1-Online for sled-10-x86_64","installer_updates":false,"name":"SLE10-SDK-SP1-Online"}],"online_predecessor_ids":[],"product_class":"SLE-SDK","predecessor_ids":[],"product_type":"extension","cpe":null}],"identifier":"SUSE-Linux-Enterprise-Server-SP1","release_stage":"released","id":714},{"cpe":null,"product_type":"base","predecessor_ids":[],"online_predecessor_ids":[],"repositories":[{"url":"https://updates.suse.com/repo/$RCE/SLES10-SP2-Online/sles-10-s390x/","autorefresh":true,"distro_target":"sles-10-s390x","id":744,"enabled":false,"description":"SLES10-SP2-Online for sles-10-s390x","name":"SLES10-SP2-Online","installer_updates":false},{"id":764,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLES10-SP2-LTSS-Updates/sles-10-s390x/","autorefresh":true,"distro_target":"sles-10-s390x","name":"SLES10-SP2-LTSS-Updates","installer_updates":false,"description":"SLES10-SP2-LTSS-Updates for sles-10-s390x"},{"url":"https://updates.suse.com/repo/$RCE/SLE10-SP2-Debuginfo-Updates/sles-10-s390x/","distro_target":"sles-10-s390x","autorefresh":true,"id":765,"enabled":false,"description":"SLE10-SP2-Debuginfo-Updates for sles-10-s390x","installer_updates":false,"name":"SLE10-SP2-Debuginfo-Updates"},{"distro_target":"sles-10-s390x","autorefresh":false,"url":"https://updates.suse.com/repo/$RCE/SLES10-SP2-Pool/sles-10-s390x/","enabled":true,"id":766,"description":"SLES10-SP2-Pool for sles-10-s390x","installer_updates":false,"name":"SLES10-SP2-Pool"},{"enabled":true,"id":767,"distro_target":"sles-10-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLES10-SP2-Updates/sles-10-s390x/","installer_updates":false,"name":"SLES10-SP2-Updates","description":"SLES10-SP2-Updates for sles-10-s390x"}],"product_class":"SLES-Z","eula_url":"","arch":"s390","shortname":null,"description":null,"free":false,"extensions":[{"free":true,"shortname":null,"description":null,"arch":null,"eula_url":"","repositories":[],"online_predecessor_ids":[],"product_class":"SLE-SDK","predecessor_ids":[],"product_type":"extension","cpe":null,"version":"10","recommended":false,"former_identifier":"SUSE-Linux-Enterprise-SDK-SP2","release_type":"MigrationBeta","migration_extra":false,"friendly_name":"SUSE Linux Enterprise Software Development Kit 10 SP2 MigrationBeta","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Software Development Kit","friendly_version":"10 SP2","release_stage":"released","identifier":"SUSE-Linux-Enterprise-SDK-SP2","id":1176,"extensions":[]},{"cpe":null,"product_type":"extension","online_predecessor_ids":[],"product_class":"SLE-SDK","repositories":[{"enabled":true,"id":1308,"distro_target":"sled-10-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sled-10-i586/","installer_updates":false,"name":"SLE10-SDK-SP2-Online","description":"SLE10-SDK-SP2-Online for sled-10-i586"},{"installer_updates":false,"name":"SLE10-SDK-SP2-Updates","description":"SLE10-SDK-SP2-Updates for sles-10-i586","enabled":true,"id":1309,"distro_target":"sles-10-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Updates/sles-10-i586/"},{"distro_target":"sles-10-ia64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Updates/sles-10-ia64/","enabled":true,"id":1310,"description":"SLE10-SDK-SP2-Updates for sles-10-ia64","installer_updates":false,"name":"SLE10-SDK-SP2-Updates"},{"installer_updates":false,"name":"SLE10-SDK-SP2-Updates","description":"SLE10-SDK-SP2-Updates for sles-10-s390x","id":1311,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Updates/sles-10-s390x/","distro_target":"sles-10-s390x","autorefresh":true},{"description":"SLE10-SDK-SP2-Online for sles-10-ppc","installer_updates":false,"name":"SLE10-SDK-SP2-Online","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sles-10-ppc/","distro_target":"sles-10-ppc","autorefresh":true,"id":1312,"enabled":true},{"description":"SLE10-SDK-SP2-Online for sles-10-i586","name":"SLE10-SDK-SP2-Online","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sles-10-i586/","autorefresh":true,"distro_target":"sles-10-i586","id":1313,"enabled":true},{"description":"SLE10-SDK-SP2-Online for sled-10-x86_64","installer_updates":false,"name":"SLE10-SDK-SP2-Online","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sled-10-x86_64/","distro_target":"sled-10-x86_64","autorefresh":true,"id":1314,"enabled":true},{"description":"SLE10-SDK-SP2-Updates for sles-10-x86_64","installer_updates":false,"name":"SLE10-SDK-SP2-Updates","distro_target":"sles-10-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Updates/sles-10-x86_64/","enabled":true,"id":1315},{"description":"SLE10-SDK-SP2-Online for sles-10-ia64","name":"SLE10-SDK-SP2-Online","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sles-10-ia64/","autorefresh":true,"distro_target":"sles-10-ia64","id":1316,"enabled":true},{"autorefresh":true,"distro_target":"sles-10-ppc","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Updates/sles-10-ppc/","enabled":true,"id":1317,"description":"SLE10-SDK-SP2-Updates for sles-10-ppc","name":"SLE10-SDK-SP2-Updates","installer_updates":false},{"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sles-10-s390x/","distro_target":"sles-10-s390x","autorefresh":true,"id":1318,"enabled":true,"description":"SLE10-SDK-SP2-Online for sles-10-s390x","installer_updates":false,"name":"SLE10-SDK-SP2-Online"},{"description":"SLE10-SDK-SP2-Updates for sled-10-x86_64","name":"SLE10-SDK-SP2-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sled-10-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Updates/sled-10-x86_64/","enabled":true,"id":1319},{"installer_updates":false,"name":"SLE10-SDK-SP2-Updates","description":"SLE10-SDK-SP2-Updates for sled-10-i586","enabled":true,"id":1320,"distro_target":"sled-10-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Updates/sled-10-i586/"},{"enabled":true,"id":1321,"distro_target":"sles-10-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sles-10-x86_64/","installer_updates":false,"name":"SLE10-SDK-SP2-Online","description":"SLE10-SDK-SP2-Online for sles-10-x86_64"}],"predecessor_ids":[],"arch":null,"eula_url":"","shortname":null,"description":null,"free":true,"identifier":"SUSE-Linux-Enterprise-SDK-SP2","release_stage":"released","id":1177,"extensions":[],"friendly_version":"10 SP2","friendly_name":"SUSE Linux Enterprise Software Development Kit 10 SP2","migration_extra":false,"release_type":null,"former_identifier":"SUSE-Linux-Enterprise-SDK-SP2","name":"SUSE Linux Enterprise Software Development Kit","offline_predecessor_ids":[],"version":"10","recommended":false},{"recommended":false,"version":"10","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Software Development Kit","former_identifier":"SUSE-Linux-Enterprise-SDK-SP2-migration","release_type":"online","migration_extra":false,"friendly_name":"SUSE Linux Enterprise Software Development Kit 10 online (Migration)","friendly_version":"10","extensions":[],"release_stage":"released","identifier":"SUSE-Linux-Enterprise-SDK-SP2-migration","id":1178,"free":true,"shortname":null,"description":null,"eula_url":"","arch":null,"predecessor_ids":[],"product_class":"SLE-SDK","online_predecessor_ids":[],"repositories":[{"name":"SLE10-SDK-SP2-Online","installer_updates":false,"description":"SLE10-SDK-SP2-Online for sled-10-i586","id":1308,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sled-10-i586/","autorefresh":true,"distro_target":"sled-10-i586"},{"description":"SLE10-SDK-SP2-Online for sles-10-ppc","installer_updates":false,"name":"SLE10-SDK-SP2-Online","distro_target":"sles-10-ppc","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sles-10-ppc/","enabled":true,"id":1312},{"description":"SLE10-SDK-SP2-Online for sles-10-i586","name":"SLE10-SDK-SP2-Online","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sles-10-i586/","autorefresh":true,"distro_target":"sles-10-i586","id":1313,"enabled":true},{"description":"SLE10-SDK-SP2-Online for sled-10-x86_64","installer_updates":false,"name":"SLE10-SDK-SP2-Online","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sled-10-x86_64/","distro_target":"sled-10-x86_64","autorefresh":true,"id":1314,"enabled":true},{"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sles-10-ia64/","autorefresh":true,"distro_target":"sles-10-ia64","id":1316,"enabled":true,"description":"SLE10-SDK-SP2-Online for sles-10-ia64","name":"SLE10-SDK-SP2-Online","installer_updates":false},{"description":"SLE10-SDK-SP2-Online for sles-10-s390x","installer_updates":false,"name":"SLE10-SDK-SP2-Online","distro_target":"sles-10-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sles-10-s390x/","enabled":true,"id":1318},{"enabled":true,"id":1321,"autorefresh":true,"distro_target":"sles-10-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sles-10-x86_64/","name":"SLE10-SDK-SP2-Online","installer_updates":false,"description":"SLE10-SDK-SP2-Online for sles-10-x86_64"}],"product_type":"extension","cpe":null},{"free":true,"shortname":null,"description":null,"eula_url":"","arch":null,"predecessor_ids":[],"online_predecessor_ids":[],"product_class":"SLESMT","repositories":[{"description":"SLE10-SP2-SMT-Updates for sles-10-x86_64","name":"SLE10-SP2-SMT-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sles-10-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE10-SP2-SMT-Updates/sles-10-x86_64/","enabled":true,"id":1398},{"enabled":true,"id":1399,"autorefresh":true,"distro_target":"sles-10-i586","url":"https://updates.suse.com/repo/$RCE/SLE10-SP2-SMT-Updates/sles-10-i586/","name":"SLE10-SP2-SMT-Updates","installer_updates":false,"description":"SLE10-SP2-SMT-Updates for sles-10-i586"}],"product_type":"extension","cpe":null,"recommended":false,"version":"10.2","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Subscription Management Tool","former_identifier":"SUSE-Linux-Enterprise-SMT-SP2","release_type":null,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Subscription Management Tool 10 SP2","friendly_version":"10 SP2","extensions":[],"release_stage":"released","identifier":"SUSE-Linux-Enterprise-SMT-SP2","id":1195}],"release_stage":"released","id":715,"identifier":"SUSE-Linux-Enterprise-Server-SP2","friendly_version":"10 SP2","name":"SUSE Linux Enterprise Server","offline_predecessor_ids":[],"friendly_name":"SUSE Linux Enterprise Server 10 SP2 s390","migration_extra":false,"release_type":null,"former_identifier":"SUSE-Linux-Enterprise-Server-SP2","recommended":false,"version":"10"},{"shortname":null,"description":null,"free":false,"eula_url":"","arch":"ppc","predecessor_ids":[],"product_class":"SLES-PPC","online_predecessor_ids":[],"repositories":[{"name":"SLES10-SP2-Online","installer_updates":false,"description":"SLES10-SP2-Online for sles-10-ppc","id":658,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLES10-SP2-Online/sles-10-ppc/","autorefresh":true,"distro_target":"sles-10-ppc"},{"installer_updates":false,"name":"SLES10-SP2-Updates","description":"SLES10-SP2-Updates for sles-10-ppc","id":659,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLES10-SP2-Updates/sles-10-ppc/","distro_target":"sles-10-ppc","autorefresh":true},{"enabled":false,"id":661,"distro_target":"sles-10-ppc","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP2-Debuginfo-Updates/sles-10-ppc/","installer_updates":false,"name":"SLE10-SP2-Debuginfo-Updates","description":"SLE10-SP2-Debuginfo-Updates for sles-10-ppc"}],"cpe":null,"product_type":"base","recommended":false,"version":"10","name":"SUSE Linux Enterprise Server","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Server 10 SP2 online ppc","former_identifier":"SUSE-Linux-Enterprise-Server-SP2","release_type":"online","friendly_version":"10 SP2","extensions":[{"predecessor_ids":[],"online_predecessor_ids":[],"product_class":"SLE-SDK","repositories":[],"cpe":null,"product_type":"extension","description":null,"shortname":null,"free":true,"eula_url":"","arch":null,"friendly_version":"10 SP2","extensions":[],"identifier":"SUSE-Linux-Enterprise-SDK-SP2","release_stage":"released","id":1176,"recommended":false,"version":"10","name":"SUSE Linux Enterprise Software Development Kit","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Software Development Kit 10 SP2 MigrationBeta","release_type":"MigrationBeta","former_identifier":"SUSE-Linux-Enterprise-SDK-SP2"},{"arch":null,"eula_url":"","free":true,"description":null,"shortname":null,"product_type":"extension","cpe":null,"repositories":[{"enabled":true,"id":1308,"autorefresh":true,"distro_target":"sled-10-i586","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sled-10-i586/","name":"SLE10-SDK-SP2-Online","installer_updates":false,"description":"SLE10-SDK-SP2-Online for sled-10-i586"},{"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Updates/sles-10-i586/","autorefresh":true,"distro_target":"sles-10-i586","id":1309,"enabled":true,"description":"SLE10-SDK-SP2-Updates for sles-10-i586","name":"SLE10-SDK-SP2-Updates","installer_updates":false},{"installer_updates":false,"name":"SLE10-SDK-SP2-Updates","description":"SLE10-SDK-SP2-Updates for sles-10-ia64","id":1310,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Updates/sles-10-ia64/","distro_target":"sles-10-ia64","autorefresh":true},{"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Updates/sles-10-s390x/","distro_target":"sles-10-s390x","autorefresh":true,"id":1311,"enabled":true,"description":"SLE10-SDK-SP2-Updates for sles-10-s390x","installer_updates":false,"name":"SLE10-SDK-SP2-Updates"},{"distro_target":"sles-10-ppc","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sles-10-ppc/","enabled":true,"id":1312,"description":"SLE10-SDK-SP2-Online for sles-10-ppc","installer_updates":false,"name":"SLE10-SDK-SP2-Online"},{"description":"SLE10-SDK-SP2-Online for sles-10-i586","installer_updates":false,"name":"SLE10-SDK-SP2-Online","distro_target":"sles-10-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sles-10-i586/","enabled":true,"id":1313},{"description":"SLE10-SDK-SP2-Online for sled-10-x86_64","name":"SLE10-SDK-SP2-Online","installer_updates":false,"autorefresh":true,"distro_target":"sled-10-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sled-10-x86_64/","enabled":true,"id":1314},{"autorefresh":true,"distro_target":"sles-10-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Updates/sles-10-x86_64/","enabled":true,"id":1315,"description":"SLE10-SDK-SP2-Updates for sles-10-x86_64","name":"SLE10-SDK-SP2-Updates","installer_updates":false},{"installer_updates":false,"name":"SLE10-SDK-SP2-Online","description":"SLE10-SDK-SP2-Online for sles-10-ia64","id":1316,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sles-10-ia64/","distro_target":"sles-10-ia64","autorefresh":true},{"id":1317,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Updates/sles-10-ppc/","distro_target":"sles-10-ppc","autorefresh":true,"installer_updates":false,"name":"SLE10-SDK-SP2-Updates","description":"SLE10-SDK-SP2-Updates for sles-10-ppc"},{"name":"SLE10-SDK-SP2-Online","installer_updates":false,"description":"SLE10-SDK-SP2-Online for sles-10-s390x","enabled":true,"id":1318,"autorefresh":true,"distro_target":"sles-10-s390x","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sles-10-s390x/"},{"name":"SLE10-SDK-SP2-Updates","installer_updates":false,"description":"SLE10-SDK-SP2-Updates for sled-10-x86_64","enabled":true,"id":1319,"autorefresh":true,"distro_target":"sled-10-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Updates/sled-10-x86_64/"},{"id":1320,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Updates/sled-10-i586/","autorefresh":true,"distro_target":"sled-10-i586","name":"SLE10-SDK-SP2-Updates","installer_updates":false,"description":"SLE10-SDK-SP2-Updates for sled-10-i586"},{"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sles-10-x86_64/","distro_target":"sles-10-x86_64","autorefresh":true,"id":1321,"enabled":true,"description":"SLE10-SDK-SP2-Online for sles-10-x86_64","installer_updates":false,"name":"SLE10-SDK-SP2-Online"}],"online_predecessor_ids":[],"product_class":"SLE-SDK","predecessor_ids":[],"release_type":null,"former_identifier":"SUSE-Linux-Enterprise-SDK-SP2","friendly_name":"SUSE Linux Enterprise Software Development Kit 10 SP2","migration_extra":false,"offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Software Development Kit","version":"10","recommended":false,"release_stage":"released","identifier":"SUSE-Linux-Enterprise-SDK-SP2","id":1177,"extensions":[],"friendly_version":"10 SP2"},{"version":"10","recommended":false,"release_type":"online","former_identifier":"SUSE-Linux-Enterprise-SDK-SP2-migration","friendly_name":"SUSE Linux Enterprise Software Development Kit 10 online (Migration)","migration_extra":false,"offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Software Development Kit","friendly_version":"10","identifier":"SUSE-Linux-Enterprise-SDK-SP2-migration","release_stage":"released","id":1178,"extensions":[],"free":true,"description":null,"shortname":null,"arch":null,"eula_url":"","online_predecessor_ids":[],"product_class":"SLE-SDK","repositories":[{"installer_updates":false,"name":"SLE10-SDK-SP2-Online","description":"SLE10-SDK-SP2-Online for sled-10-i586","id":1308,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sled-10-i586/","distro_target":"sled-10-i586","autorefresh":true},{"name":"SLE10-SDK-SP2-Online","installer_updates":false,"description":"SLE10-SDK-SP2-Online for sles-10-ppc","id":1312,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sles-10-ppc/","autorefresh":true,"distro_target":"sles-10-ppc"},{"id":1313,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sles-10-i586/","distro_target":"sles-10-i586","autorefresh":true,"installer_updates":false,"name":"SLE10-SDK-SP2-Online","description":"SLE10-SDK-SP2-Online for sles-10-i586"},{"id":1314,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sled-10-x86_64/","distro_target":"sled-10-x86_64","autorefresh":true,"installer_updates":false,"name":"SLE10-SDK-SP2-Online","description":"SLE10-SDK-SP2-Online for sled-10-x86_64"},{"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sles-10-ia64/","autorefresh":true,"distro_target":"sles-10-ia64","id":1316,"enabled":true,"description":"SLE10-SDK-SP2-Online for sles-10-ia64","name":"SLE10-SDK-SP2-Online","installer_updates":false},{"enabled":true,"id":1318,"autorefresh":true,"distro_target":"sles-10-s390x","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sles-10-s390x/","name":"SLE10-SDK-SP2-Online","installer_updates":false,"description":"SLE10-SDK-SP2-Online for sles-10-s390x"},{"id":1321,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sles-10-x86_64/","autorefresh":true,"distro_target":"sles-10-x86_64","name":"SLE10-SDK-SP2-Online","installer_updates":false,"description":"SLE10-SDK-SP2-Online for sles-10-x86_64"}],"predecessor_ids":[],"product_type":"extension","cpe":null},{"arch":null,"eula_url":"","free":true,"shortname":null,"description":null,"product_type":"extension","cpe":null,"online_predecessor_ids":[],"product_class":"SLESMT","repositories":[{"installer_updates":false,"name":"SLE10-SP2-SMT-Updates","description":"SLE10-SP2-SMT-Updates for sles-10-x86_64","enabled":true,"id":1398,"distro_target":"sles-10-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP2-SMT-Updates/sles-10-x86_64/"},{"description":"SLE10-SP2-SMT-Updates for sles-10-i586","installer_updates":false,"name":"SLE10-SP2-SMT-Updates","distro_target":"sles-10-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP2-SMT-Updates/sles-10-i586/","enabled":true,"id":1399}],"predecessor_ids":[],"release_type":null,"former_identifier":"SUSE-Linux-Enterprise-SMT-SP2","migration_extra":false,"friendly_name":"SUSE Linux Enterprise Subscription Management Tool 10 SP2","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Subscription Management Tool","version":"10.2","recommended":false,"release_stage":"released","id":1195,"identifier":"SUSE-Linux-Enterprise-SMT-SP2","extensions":[],"friendly_version":"10 SP2"}],"release_stage":"released","id":716,"identifier":"SUSE-Linux-Enterprise-Server-SP2"},{"version":"11","recommended":false,"release_type":null,"former_identifier":"SUSE_SLES","friendly_name":"SUSE Linux Enterprise Server 11 i486","migration_extra":false,"offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Server","friendly_version":"11","release_stage":"released","id":717,"identifier":"SUSE_SLES","extensions":[{"online_predecessor_ids":[],"repositories":[{"description":"SLE11-WebYaST-1.0-Updates for sle-11-i586","name":"SLE11-WebYaST-1.0-Updates","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-WebYaST-1.0-Updates/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","id":829,"enabled":true},{"name":"SLE11-WebYaST-1.0-Pool","installer_updates":false,"description":"SLE11-WebYaST-1.0-Pool for sle-11-ia64","id":830,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-WebYaST-1.0-Pool/sle-11-ia64/","autorefresh":true,"distro_target":"sle-11-ia64"},{"description":"SLE11-WebYaST-1.0-Updates for sle-11-ppc64","installer_updates":false,"name":"SLE11-WebYaST-1.0-Updates","url":"https://updates.suse.com/repo/$RCE/SLE11-WebYaST-1.0-Updates/sle-11-ppc64/","distro_target":"sle-11-ppc64","autorefresh":true,"id":831,"enabled":true},{"name":"SLE11-WebYaST-1.0-Pool","installer_updates":false,"description":"SLE11-WebYaST-1.0-Pool for sle-11-i586","id":832,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-WebYaST-1.0-Pool/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586"},{"autorefresh":true,"distro_target":"sle-11-s390x","url":"https://updates.suse.com/repo/$RCE/SLE11-WebYaST-1.0-Pool/sle-11-s390x/","enabled":false,"id":833,"description":"SLE11-WebYaST-1.0-Pool for sle-11-s390x","name":"SLE11-WebYaST-1.0-Pool","installer_updates":false},{"url":"https://updates.suse.com/repo/$RCE/SLE11-WebYaST-1.0-Updates/sle-11-s390x/","autorefresh":true,"distro_target":"sle-11-s390x","id":834,"enabled":true,"description":"SLE11-WebYaST-1.0-Updates for sle-11-s390x","name":"SLE11-WebYaST-1.0-Updates","installer_updates":false},{"description":"SLE11-WebYaST-1.0-Updates for sle-11-x86_64","name":"SLE11-WebYaST-1.0-Updates","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-WebYaST-1.0-Updates/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64","id":835,"enabled":true},{"id":836,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-WebYaST-1.0-Pool/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64","name":"SLE11-WebYaST-1.0-Pool","installer_updates":false,"description":"SLE11-WebYaST-1.0-Pool for sle-11-x86_64"},{"enabled":true,"id":837,"distro_target":"sle-11-ia64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-WebYaST-1.0-Updates/sle-11-ia64/","installer_updates":false,"name":"SLE11-WebYaST-1.0-Updates","description":"SLE11-WebYaST-1.0-Updates for sle-11-ia64"},{"distro_target":"sle-11-ppc64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-WebYaST-1.0-Pool/sle-11-ppc64/","enabled":false,"id":838,"description":"SLE11-WebYaST-1.0-Pool for sle-11-ppc64","installer_updates":false,"name":"SLE11-WebYaST-1.0-Pool"}],"product_class":"WEBYAST","predecessor_ids":[],"product_type":"extension","cpe":null,"free":true,"shortname":null,"description":null,"arch":null,"eula_url":"","friendly_version":"1.0","id":836,"release_stage":"released","identifier":"sle-11-WebYaST","extensions":[],"version":"1.0","recommended":false,"former_identifier":"sle-11-WebYaST","release_type":null,"migration_extra":false,"friendly_name":"SUSE WebYaST 1.0","offline_predecessor_ids":[],"name":"SUSE WebYaST"},{"extensions":[],"release_stage":"released","identifier":"sle-hae","id":973,"friendly_version":"11","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise High Availability Extension","release_type":null,"former_identifier":"sle-hae","friendly_name":"SUSE Linux Enterprise High Availability Extension 11 i486","migration_extra":false,"recommended":false,"version":"11","product_type":"extension","cpe":null,"predecessor_ids":[],"repositories":[{"description":"SLE11-HAE-Pool for sle-11-i586","installer_updates":false,"name":"SLE11-HAE-Pool","url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-Pool/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true,"id":954,"enabled":false},{"description":"SLE11-HAE-Updates for sle-11-i586","name":"SLE11-HAE-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-Updates/sle-11-i586/","enabled":true,"id":955}],"online_predecessor_ids":[],"product_class":"SLE-HAE-X86","eula_url":"","arch":"i486","free":false,"description":null,"shortname":null},{"recommended":false,"version":"11","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise High Availability Extension","former_identifier":"sle-hae-SP1-migration","release_type":null,"friendly_name":"SUSE Linux Enterprise High Availability Extension 11 i486 (Migration)","migration_extra":false,"friendly_version":"11","extensions":[],"id":981,"release_stage":"released","identifier":"sle-hae-SP1-migration","free":false,"description":null,"shortname":null,"eula_url":"","arch":"i486","predecessor_ids":[],"product_class":"SLE-HAE-X86","online_predecessor_ids":[],"repositories":[{"description":"SLE11-HAE-SP1-Pool for sle-11-i586","installer_updates":false,"name":"SLE11-HAE-SP1-Pool","url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP1-Pool/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true,"id":945,"enabled":true}],"product_type":"extension","cpe":null},{"name":"SUSE Linux Enterprise Software Development Kit","offline_predecessor_ids":[],"friendly_name":"SUSE Linux Enterprise Software Development Kit 11","migration_extra":false,"release_type":null,"former_identifier":"sle-sdk","recommended":false,"version":"11","extensions":[],"id":1158,"release_stage":"released","identifier":"sle-sdk","friendly_version":"11","eula_url":"","arch":null,"description":null,"shortname":null,"free":true,"cpe":null,"product_type":"extension","predecessor_ids":[],"online_predecessor_ids":[],"product_class":"SLE-SDK","repositories":[{"id":1247,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-Updates/sle-11-ppc64/","distro_target":"sle-11-ppc64","autorefresh":true,"installer_updates":false,"name":"SLE11-SDK-Updates","description":"SLE11-SDK-Updates for sle-11-ppc64"},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-Pool/sle-11-s390x/","distro_target":"sle-11-s390x","autorefresh":true,"id":1248,"enabled":false,"description":"SLE11-SDK-Pool for sle-11-s390x","installer_updates":false,"name":"SLE11-SDK-Pool"},{"id":1249,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-Updates/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true,"installer_updates":false,"name":"SLE11-SDK-Updates","description":"SLE11-SDK-Updates for sle-11-x86_64"},{"name":"SLE11-SDK-Pool","installer_updates":false,"description":"SLE11-SDK-Pool for sle-11-i586","id":1250,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-Pool/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586"},{"description":"SLE11-SDK-Pool for sle-11-x86_64","installer_updates":false,"name":"SLE11-SDK-Pool","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-Pool/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true,"id":1251,"enabled":false},{"enabled":false,"id":1252,"distro_target":"sle-11-ppc64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-Pool/sle-11-ppc64/","installer_updates":false,"name":"SLE11-SDK-Pool","description":"SLE11-SDK-Pool for sle-11-ppc64"},{"distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-Updates/sle-11-i586/","enabled":true,"id":1253,"description":"SLE11-SDK-Updates for sle-11-i586","installer_updates":false,"name":"SLE11-SDK-Updates"},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-Pool/sle-11-ia64/","distro_target":"sle-11-ia64","autorefresh":true,"id":1254,"enabled":false,"description":"SLE11-SDK-Pool for sle-11-ia64","installer_updates":false,"name":"SLE11-SDK-Pool"},{"description":"SLE11-SDK-Updates for sle-11-s390x","name":"SLE11-SDK-Updates","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-Updates/sle-11-s390x/","autorefresh":true,"distro_target":"sle-11-s390x","id":1255,"enabled":true},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-Updates/sle-11-ia64/","distro_target":"sle-11-ia64","autorefresh":true,"id":1256,"enabled":true,"description":"SLE11-SDK-Updates for sle-11-ia64","installer_updates":false,"name":"SLE11-SDK-Updates"}]},{"arch":null,"eula_url":"","free":true,"shortname":null,"description":null,"product_type":"extension","cpe":null,"online_predecessor_ids":[],"repositories":[{"name":"SLE11-SDK-SP1-Pool","installer_updates":false,"description":"SLE11-SDK-SP1-Pool for sle-11-ia64","enabled":true,"id":1258,"autorefresh":true,"distro_target":"sle-11-ia64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-ia64/"},{"name":"SLE11-SDK-SP1-Pool","installer_updates":false,"description":"SLE11-SDK-SP1-Pool for sle-11-s390x","id":1259,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-s390x/","autorefresh":true,"distro_target":"sle-11-s390x"},{"name":"SLE11-SDK-SP1-Pool","installer_updates":false,"description":"SLE11-SDK-SP1-Pool for sle-11-ppc64","id":1261,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-ppc64/","autorefresh":true,"distro_target":"sle-11-ppc64"},{"enabled":true,"id":1263,"distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-i586/","installer_updates":false,"name":"SLE11-SDK-SP1-Pool","description":"SLE11-SDK-SP1-Pool for sle-11-i586"},{"description":"SLE11-SDK-SP1-Pool for sle-11-x86_64","installer_updates":false,"name":"SLE11-SDK-SP1-Pool","distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-x86_64/","enabled":true,"id":1264}],"product_class":"SLE-SDK","predecessor_ids":[],"release_type":null,"former_identifier":"sle-sdk-SP1-migration","migration_extra":false,"friendly_name":"SUSE Linux Enterprise Software Development Kit 11 (Migration)","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Software Development Kit","version":"11","recommended":false,"identifier":"sle-sdk-SP1-migration","release_stage":"released","id":1162,"extensions":[],"friendly_version":"11"},{"product_type":"extension","cpe":null,"online_predecessor_ids":[],"repositories":[{"enabled":true,"id":1392,"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP2-Pool/sle-11-x86_64/","name":"SLE11-SMT-SP2-Pool","installer_updates":false,"description":"SLE11-SMT-SP2-Pool for sle-11-x86_64"},{"name":"SLE11-SMT-SP2-Pool","installer_updates":false,"description":"SLE11-SMT-SP2-Pool for sle-11-i586","enabled":true,"id":1394,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP2-Pool/sle-11-i586/"},{"description":"SLE11-SMT-SP2-Pool for sle-11-s390x","installer_updates":false,"name":"SLE11-SMT-SP2-Pool","url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP2-Pool/sle-11-s390x/","distro_target":"sle-11-s390x","autorefresh":true,"id":1396,"enabled":true}],"product_class":"SLESMT","predecessor_ids":[],"arch":null,"eula_url":"","free":true,"shortname":null,"description":null,"release_stage":"released","id":1194,"identifier":"sle-smt-SP2-migration","extensions":[],"friendly_version":"11","release_type":null,"former_identifier":"sle-smt-SP2-migration","friendly_name":"SUSE Linux Enterprise Subscription Management Tool 11 (Migration)","migration_extra":false,"offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Subscription Management Tool","version":"11","recommended":false},{"cpe":null,"product_type":"extension","predecessor_ids":[],"online_predecessor_ids":[],"product_class":"SLESMT","repositories":[{"description":"SLE11-SMT-Updates for sle-11-s390x","name":"SLE11-SMT-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-s390x","url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-Updates/sle-11-s390x/","enabled":true,"id":1400},{"description":"SLE11-SMT-Updates for sle-11-x86_64","installer_updates":false,"name":"SLE11-SMT-Updates","url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-Updates/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true,"id":1401,"enabled":true},{"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-Updates/sle-11-i586/","enabled":true,"id":1402,"description":"SLE11-SMT-Updates for sle-11-i586","name":"SLE11-SMT-Updates","installer_updates":false}],"eula_url":"","arch":null,"shortname":null,"description":null,"free":true,"extensions":[],"identifier":"sle-smt","release_stage":"released","id":1196,"friendly_version":"11","name":"SUSE Linux Enterprise Subscription Management Tool","offline_predecessor_ids":[],"friendly_name":"SUSE Linux Enterprise Subscription Management Tool 11","migration_extra":false,"release_type":null,"former_identifier":"sle-smt","recommended":false,"version":"11"}],"free":false,"description":null,"shortname":null,"arch":"i486","eula_url":"","online_predecessor_ids":[],"repositories":[{"url":"https://updates.suse.com/repo/$RCE/SLES11-Extras/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true,"id":679,"enabled":false,"description":"SLES11-Extras for sle-11-i586","installer_updates":false,"name":"SLES11-Extras"},{"name":"SLES11-Pool","installer_updates":false,"description":"SLES11-Pool for sle-11-i586","id":745,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLES11-Pool/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586"},{"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLES11-Updates/sle-11-i586/","enabled":true,"id":746,"description":"SLES11-Updates for sle-11-i586","name":"SLES11-Updates","installer_updates":false},{"id":747,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-Debuginfo-Pool/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","name":"SLE11-Debuginfo-Pool","installer_updates":false,"description":"SLE11-Debuginfo-Pool for sle-11-i586"},{"description":"SLE11-Debuginfo-Updates for sle-11-i586","installer_updates":false,"name":"SLE11-Debuginfo-Updates","distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-Debuginfo-Updates/sle-11-i586/","enabled":false,"id":748}],"product_class":"7261","predecessor_ids":[],"product_type":"base","cpe":"cpe:/o:suse:suse_sles:11"},{"predecessor_ids":[],"product_class":"7261","online_predecessor_ids":[],"repositories":[{"id":679,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLES11-Extras/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","name":"SLES11-Extras","installer_updates":false,"description":"SLES11-Extras for sle-11-i586"},{"url":"https://updates.suse.com/repo/$RCE/SLES11-Pool/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","id":745,"enabled":false,"description":"SLES11-Pool for sle-11-i586","name":"SLES11-Pool","installer_updates":false},{"name":"SLES11-Updates","installer_updates":false,"description":"SLES11-Updates for sle-11-i586","id":746,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-Updates/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586"},{"description":"SLE11-Debuginfo-Pool for sle-11-i586","name":"SLE11-Debuginfo-Pool","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-Debuginfo-Pool/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","id":747,"enabled":false},{"url":"https://updates.suse.com/repo/$RCE/SLE11-Debuginfo-Updates/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true,"id":748,"enabled":false,"description":"SLE11-Debuginfo-Updates for sle-11-i586","installer_updates":false,"name":"SLE11-Debuginfo-Updates"}],"cpe":"cpe:/o:suse:suse_sles:11","product_type":"base","shortname":null,"description":null,"free":false,"eula_url":"","arch":"i386","friendly_version":"11","extensions":[{"arch":null,"eula_url":"","shortname":null,"description":null,"free":true,"cpe":null,"product_type":"extension","repositories":[{"enabled":true,"id":829,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-WebYaST-1.0-Updates/sle-11-i586/","name":"SLE11-WebYaST-1.0-Updates","installer_updates":false,"description":"SLE11-WebYaST-1.0-Updates for sle-11-i586"},{"description":"SLE11-WebYaST-1.0-Pool for sle-11-ia64","installer_updates":false,"name":"SLE11-WebYaST-1.0-Pool","url":"https://updates.suse.com/repo/$RCE/SLE11-WebYaST-1.0-Pool/sle-11-ia64/","distro_target":"sle-11-ia64","autorefresh":true,"id":830,"enabled":false},{"id":831,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-WebYaST-1.0-Updates/sle-11-ppc64/","autorefresh":true,"distro_target":"sle-11-ppc64","name":"SLE11-WebYaST-1.0-Updates","installer_updates":false,"description":"SLE11-WebYaST-1.0-Updates for sle-11-ppc64"},{"name":"SLE11-WebYaST-1.0-Pool","installer_updates":false,"description":"SLE11-WebYaST-1.0-Pool for sle-11-i586","enabled":false,"id":832,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-WebYaST-1.0-Pool/sle-11-i586/"},{"url":"https://updates.suse.com/repo/$RCE/SLE11-WebYaST-1.0-Pool/sle-11-s390x/","autorefresh":true,"distro_target":"sle-11-s390x","id":833,"enabled":false,"description":"SLE11-WebYaST-1.0-Pool for sle-11-s390x","name":"SLE11-WebYaST-1.0-Pool","installer_updates":false},{"id":834,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-WebYaST-1.0-Updates/sle-11-s390x/","autorefresh":true,"distro_target":"sle-11-s390x","name":"SLE11-WebYaST-1.0-Updates","installer_updates":false,"description":"SLE11-WebYaST-1.0-Updates for sle-11-s390x"},{"url":"https://updates.suse.com/repo/$RCE/SLE11-WebYaST-1.0-Updates/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true,"id":835,"enabled":true,"description":"SLE11-WebYaST-1.0-Updates for sle-11-x86_64","installer_updates":false,"name":"SLE11-WebYaST-1.0-Updates"},{"installer_updates":false,"name":"SLE11-WebYaST-1.0-Pool","description":"SLE11-WebYaST-1.0-Pool for sle-11-x86_64","enabled":false,"id":836,"distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-WebYaST-1.0-Pool/sle-11-x86_64/"},{"distro_target":"sle-11-ia64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-WebYaST-1.0-Updates/sle-11-ia64/","enabled":true,"id":837,"description":"SLE11-WebYaST-1.0-Updates for sle-11-ia64","installer_updates":false,"name":"SLE11-WebYaST-1.0-Updates"},{"distro_target":"sle-11-ppc64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-WebYaST-1.0-Pool/sle-11-ppc64/","enabled":false,"id":838,"description":"SLE11-WebYaST-1.0-Pool for sle-11-ppc64","installer_updates":false,"name":"SLE11-WebYaST-1.0-Pool"}],"online_predecessor_ids":[],"product_class":"WEBYAST","predecessor_ids":[],"migration_extra":false,"friendly_name":"SUSE WebYaST 1.0","release_type":null,"former_identifier":"sle-11-WebYaST","name":"SUSE WebYaST","offline_predecessor_ids":[],"version":"1.0","recommended":false,"identifier":"sle-11-WebYaST","release_stage":"released","id":836,"extensions":[],"friendly_version":"1.0"},{"version":"11","recommended":false,"former_identifier":"sle-hae","release_type":null,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise High Availability Extension 11 i386","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise High Availability Extension","friendly_version":"11","release_stage":"released","identifier":"sle-hae","id":983,"extensions":[],"free":false,"shortname":null,"description":null,"arch":"i386","eula_url":"","online_predecessor_ids":[],"repositories":[{"installer_updates":false,"name":"SLE11-HAE-Pool","description":"SLE11-HAE-Pool for sle-11-i586","enabled":false,"id":954,"distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-Pool/sle-11-i586/"},{"description":"SLE11-HAE-Updates for sle-11-i586","name":"SLE11-HAE-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-Updates/sle-11-i586/","enabled":true,"id":955}],"product_class":"SLE-HAE-X86","predecessor_ids":[],"product_type":"extension","cpe":null},{"recommended":false,"version":"11","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise High Availability Extension","release_type":null,"former_identifier":"sle-hae-SP1-migration","migration_extra":false,"friendly_name":"SUSE Linux Enterprise High Availability Extension 11 i386 (Migration)","friendly_version":"11","extensions":[],"release_stage":"released","identifier":"sle-hae-SP1-migration","id":987,"free":false,"description":null,"shortname":null,"eula_url":"","arch":"i386","predecessor_ids":[],"repositories":[{"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP1-Pool/sle-11-i586/","enabled":true,"id":945,"description":"SLE11-HAE-SP1-Pool for sle-11-i586","name":"SLE11-HAE-SP1-Pool","installer_updates":false}],"online_predecessor_ids":[],"product_class":"SLE-HAE-X86","product_type":"extension","cpe":null},{"free":true,"shortname":null,"description":null,"arch":null,"eula_url":"","product_class":"SLE-SDK","online_predecessor_ids":[],"repositories":[{"description":"SLE11-SDK-Updates for sle-11-ppc64","installer_updates":false,"name":"SLE11-SDK-Updates","distro_target":"sle-11-ppc64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-Updates/sle-11-ppc64/","enabled":true,"id":1247},{"name":"SLE11-SDK-Pool","installer_updates":false,"description":"SLE11-SDK-Pool for sle-11-s390x","enabled":false,"id":1248,"autorefresh":true,"distro_target":"sle-11-s390x","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-Pool/sle-11-s390x/"},{"description":"SLE11-SDK-Updates for sle-11-x86_64","installer_updates":false,"name":"SLE11-SDK-Updates","distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-Updates/sle-11-x86_64/","enabled":true,"id":1249},{"description":"SLE11-SDK-Pool for sle-11-i586","installer_updates":false,"name":"SLE11-SDK-Pool","distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-Pool/sle-11-i586/","enabled":false,"id":1250},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-Pool/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64","id":1251,"enabled":false,"description":"SLE11-SDK-Pool for sle-11-x86_64","name":"SLE11-SDK-Pool","installer_updates":false},{"description":"SLE11-SDK-Pool for sle-11-ppc64","installer_updates":false,"name":"SLE11-SDK-Pool","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-Pool/sle-11-ppc64/","distro_target":"sle-11-ppc64","autorefresh":true,"id":1252,"enabled":false},{"enabled":true,"id":1253,"distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-Updates/sle-11-i586/","installer_updates":false,"name":"SLE11-SDK-Updates","description":"SLE11-SDK-Updates for sle-11-i586"},{"name":"SLE11-SDK-Pool","installer_updates":false,"description":"SLE11-SDK-Pool for sle-11-ia64","enabled":false,"id":1254,"autorefresh":true,"distro_target":"sle-11-ia64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-Pool/sle-11-ia64/"},{"installer_updates":false,"name":"SLE11-SDK-Updates","description":"SLE11-SDK-Updates for sle-11-s390x","enabled":true,"id":1255,"distro_target":"sle-11-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-Updates/sle-11-s390x/"},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-Updates/sle-11-ia64/","autorefresh":true,"distro_target":"sle-11-ia64","id":1256,"enabled":true,"description":"SLE11-SDK-Updates for sle-11-ia64","name":"SLE11-SDK-Updates","installer_updates":false}],"predecessor_ids":[],"product_type":"extension","cpe":null,"version":"11","recommended":false,"release_type":null,"former_identifier":"sle-sdk","friendly_name":"SUSE Linux Enterprise Software Development Kit 11","migration_extra":false,"offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Software Development Kit","friendly_version":"11","release_stage":"released","id":1158,"identifier":"sle-sdk","extensions":[]},{"cpe":null,"product_type":"extension","predecessor_ids":[],"online_predecessor_ids":[],"repositories":[{"distro_target":"sle-11-ia64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-ia64/","enabled":true,"id":1258,"description":"SLE11-SDK-SP1-Pool for sle-11-ia64","installer_updates":false,"name":"SLE11-SDK-SP1-Pool"},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-s390x/","autorefresh":true,"distro_target":"sle-11-s390x","id":1259,"enabled":true,"description":"SLE11-SDK-SP1-Pool for sle-11-s390x","name":"SLE11-SDK-SP1-Pool","installer_updates":false},{"id":1261,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-ppc64/","distro_target":"sle-11-ppc64","autorefresh":true,"installer_updates":false,"name":"SLE11-SDK-SP1-Pool","description":"SLE11-SDK-SP1-Pool for sle-11-ppc64"},{"installer_updates":false,"name":"SLE11-SDK-SP1-Pool","description":"SLE11-SDK-SP1-Pool for sle-11-i586","enabled":true,"id":1263,"distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-i586/"},{"description":"SLE11-SDK-SP1-Pool for sle-11-x86_64","name":"SLE11-SDK-SP1-Pool","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64","id":1264,"enabled":true}],"product_class":"SLE-SDK","eula_url":"","arch":null,"shortname":null,"description":null,"free":true,"extensions":[],"id":1162,"release_stage":"released","identifier":"sle-sdk-SP1-migration","friendly_version":"11","name":"SUSE Linux Enterprise Software Development Kit","offline_predecessor_ids":[],"friendly_name":"SUSE Linux Enterprise Software Development Kit 11 (Migration)","migration_extra":false,"former_identifier":"sle-sdk-SP1-migration","release_type":null,"recommended":false,"version":"11"},{"arch":null,"eula_url":"","description":null,"shortname":null,"free":true,"cpe":null,"product_type":"extension","online_predecessor_ids":[],"product_class":"SLESMT","repositories":[{"distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP2-Pool/sle-11-x86_64/","enabled":true,"id":1392,"description":"SLE11-SMT-SP2-Pool for sle-11-x86_64","installer_updates":false,"name":"SLE11-SMT-SP2-Pool"},{"enabled":true,"id":1394,"distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP2-Pool/sle-11-i586/","installer_updates":false,"name":"SLE11-SMT-SP2-Pool","description":"SLE11-SMT-SP2-Pool for sle-11-i586"},{"description":"SLE11-SMT-SP2-Pool for sle-11-s390x","installer_updates":false,"name":"SLE11-SMT-SP2-Pool","distro_target":"sle-11-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP2-Pool/sle-11-s390x/","enabled":true,"id":1396}],"predecessor_ids":[],"friendly_name":"SUSE Linux Enterprise Subscription Management Tool 11 (Migration)","migration_extra":false,"former_identifier":"sle-smt-SP2-migration","release_type":null,"name":"SUSE Linux Enterprise Subscription Management Tool","offline_predecessor_ids":[],"version":"11","recommended":false,"identifier":"sle-smt-SP2-migration","release_stage":"released","id":1194,"extensions":[],"friendly_version":"11"},{"identifier":"sle-smt","release_stage":"released","id":1196,"extensions":[],"friendly_version":"11","migration_extra":false,"friendly_name":"SUSE Linux Enterprise Subscription Management Tool 11","former_identifier":"sle-smt","release_type":null,"name":"SUSE Linux Enterprise Subscription Management Tool","offline_predecessor_ids":[],"version":"11","recommended":false,"cpe":null,"product_type":"extension","online_predecessor_ids":[],"repositories":[{"autorefresh":true,"distro_target":"sle-11-s390x","url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-Updates/sle-11-s390x/","enabled":true,"id":1400,"description":"SLE11-SMT-Updates for sle-11-s390x","name":"SLE11-SMT-Updates","installer_updates":false},{"distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-Updates/sle-11-x86_64/","enabled":true,"id":1401,"description":"SLE11-SMT-Updates for sle-11-x86_64","installer_updates":false,"name":"SLE11-SMT-Updates"},{"description":"SLE11-SMT-Updates for sle-11-i586","installer_updates":false,"name":"SLE11-SMT-Updates","distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-Updates/sle-11-i586/","enabled":true,"id":1402}],"product_class":"SLESMT","predecessor_ids":[],"arch":null,"eula_url":"","description":null,"shortname":null,"free":true}],"id":718,"release_stage":"released","identifier":"SUSE_SLES","recommended":false,"version":"11","name":"SUSE Linux Enterprise Server","offline_predecessor_ids":[],"friendly_name":"SUSE Linux Enterprise Server 11 i386","migration_extra":false,"former_identifier":"SUSE_SLES","release_type":null},{"eula_url":"","arch":"i686","description":null,"shortname":null,"free":false,"cpe":null,"product_type":"base","predecessor_ids":[],"online_predecessor_ids":[],"repositories":[{"name":"SLES10-SP3-Online","installer_updates":false,"description":"SLES10-SP3-Online for sles-10-i586","id":663,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLES10-SP3-Online/sles-10-i586/","autorefresh":true,"distro_target":"sles-10-i586"}],"product_class":"7261","name":"SUSE Linux Enterprise Server","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Server 10 i686 (Migration)","former_identifier":"SUSE-Linux-Enterprise-Server-SP3-migration","release_type":null,"recommended":false,"version":"10","extensions":[],"identifier":"SUSE-Linux-Enterprise-Server-SP3-migration","release_stage":"released","id":719,"friendly_version":"10"},{"free":false,"shortname":null,"description":null,"eula_url":"","arch":"s390x","predecessor_ids":[],"online_predecessor_ids":[],"product_class":"SLES-Z","repositories":[{"enabled":true,"id":671,"distro_target":"sles-10-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLES10-SP3-Online/sles-10-s390x/","installer_updates":false,"name":"SLES10-SP3-Online","description":"SLES10-SP3-Online for sles-10-s390x"}],"product_type":"base","cpe":null,"recommended":false,"version":"10","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Server","former_identifier":"SUSE-Linux-Enterprise-Server-SP3-migration","release_type":null,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Server 10 s390x (Migration)","friendly_version":"10","extensions":[],"id":720,"release_stage":"released","identifier":"SUSE-Linux-Enterprise-Server-SP3-migration"},{"product_type":"base","cpe":null,"online_predecessor_ids":[],"repositories":[{"id":750,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Updates/sles-10-x86_64/","autorefresh":true,"distro_target":"sles-10-x86_64","name":"SLE10-SP3-Debuginfo-Updates","installer_updates":false,"description":"SLE10-SP3-Debuginfo-Updates for sles-10-x86_64"},{"id":751,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Pool/sles-10-x86_64/","autorefresh":false,"distro_target":"sles-10-x86_64","name":"SLE10-SP3-Debuginfo-Pool","installer_updates":false,"description":"SLE10-SP3-Debuginfo-Pool for sles-10-x86_64"},{"id":753,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLES10-SP3-LTSS-Updates/sles-10-x86_64/","distro_target":"sles-10-x86_64","autorefresh":true,"installer_updates":false,"name":"SLES10-SP3-LTSS-Updates","description":"SLES10-SP3-LTSS-Updates for sles-10-x86_64"},{"id":754,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLES10-SP3-Pool/sles-10-x86_64/","autorefresh":false,"distro_target":"sles-10-x86_64","name":"SLES10-SP3-Pool","installer_updates":false,"description":"SLES10-SP3-Pool for sles-10-x86_64"},{"url":"https://updates.suse.com/repo/$RCE/SLES10-SP3-Online/sles-10-x86_64/","distro_target":"sles-10-x86_64","autorefresh":true,"id":755,"enabled":false,"description":"SLES10-SP3-Online for sles-10-x86_64","installer_updates":false,"name":"SLES10-SP3-Online"},{"name":"SLE10-SP3-Debuginfo-Online","installer_updates":false,"description":"SLE10-SP3-Debuginfo-Online for sles-10-x86_64","enabled":false,"id":756,"autorefresh":true,"distro_target":"sles-10-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Online/sles-10-x86_64/"},{"installer_updates":false,"name":"SLES10-SP3-Updates","description":"SLES10-SP3-Updates for sles-10-x86_64","enabled":true,"id":757,"distro_target":"sles-10-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLES10-SP3-Updates/sles-10-x86_64/"},{"description":"SLES10-GPLv3-Extras for sles-10-x86_64","name":"SLES10-GPLv3-Extras","installer_updates":false,"autorefresh":true,"distro_target":"sles-10-x86_64","url":"https://updates.suse.com/repo/$RCE/SLES10-GPLv3-Extras/sles-10-x86_64/","enabled":false,"id":768},{"url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Teradata/sle-10-x86_64/","autorefresh":true,"distro_target":"sle-10-x86_64","id":1828,"enabled":true,"description":"SLE10-SP3-Debuginfo-Teradata for sle-10-x86_64","name":"SLE10-SP3-Debuginfo-Teradata","installer_updates":false},{"url":"https://updates.suse.com/repo/$RCE/SLES10-SP3-Update-Teradata/sles-10-x86_64/","distro_target":"sles-10-x86_64","autorefresh":true,"id":1829,"enabled":true,"description":"SLES10-SP3-Update-Teradata for sles-10-x86_64","installer_updates":false,"name":"SLES10-SP3-Update-Teradata"}],"product_class":"7261","predecessor_ids":[],"arch":"x86_64","eula_url":"","free":false,"shortname":null,"description":null,"release_stage":"released","id":721,"identifier":"SUSE-Linux-Enterprise-Server-SP3","extensions":[{"recommended":false,"version":"10","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Software Development Kit","former_identifier":"SUSE-Linux-Enterprise-SDK-SP3","release_type":null,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Software Development Kit 10 SP3","friendly_version":"10 SP3","extensions":[],"identifier":"SUSE-Linux-Enterprise-SDK-SP3","release_stage":"released","id":1179,"free":true,"shortname":null,"description":null,"eula_url":"","arch":null,"predecessor_ids":[],"online_predecessor_ids":[],"repositories":[{"description":"SLE10-SDK-SP3-Pool for sles-10-ppc","installer_updates":false,"name":"SLE10-SDK-SP3-Pool","distro_target":"sles-10-ppc","autorefresh":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Pool/sles-10-ppc/","enabled":true,"id":1322},{"description":"SLE10-SDK-SP3-Pool for sles-10-x86_64","installer_updates":false,"name":"SLE10-SDK-SP3-Pool","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Pool/sles-10-x86_64/","distro_target":"sles-10-x86_64","autorefresh":false,"id":1323,"enabled":true},{"enabled":true,"id":1324,"distro_target":"sled-10-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sled-10-i586/","installer_updates":false,"name":"SLE10-SDK-SP3-Online","description":"SLE10-SDK-SP3-Online for sled-10-i586"},{"installer_updates":false,"name":"SLE10-SDK-SP3-Updates","description":"SLE10-SDK-SP3-Updates for sled-10-x86_64","id":1325,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Updates/sled-10-x86_64/","distro_target":"sled-10-x86_64","autorefresh":true},{"enabled":true,"id":1326,"distro_target":"sled-10-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sled-10-x86_64/","installer_updates":false,"name":"SLE10-SDK-SP3-Online","description":"SLE10-SDK-SP3-Online for sled-10-x86_64"},{"description":"SLE10-SDK-SP3-Pool for sled-10-x86_64","name":"SLE10-SDK-SP3-Pool","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Pool/sled-10-x86_64/","autorefresh":false,"distro_target":"sled-10-x86_64","id":1327,"enabled":true},{"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sles-10-ia64/","autorefresh":true,"distro_target":"sles-10-ia64","id":1328,"enabled":true,"description":"SLE10-SDK-SP3-Online for sles-10-ia64","name":"SLE10-SDK-SP3-Online","installer_updates":false},{"enabled":true,"id":1329,"autorefresh":true,"distro_target":"sles-10-ia64","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Updates/sles-10-ia64/","name":"SLE10-SDK-SP3-Updates","installer_updates":false,"description":"SLE10-SDK-SP3-Updates for sles-10-ia64"},{"id":1330,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sles-10-i586/","autorefresh":true,"distro_target":"sles-10-i586","name":"SLE10-SDK-SP3-Online","installer_updates":false,"description":"SLE10-SDK-SP3-Online for sles-10-i586"},{"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Pool/sles-10-ia64/","distro_target":"sles-10-ia64","autorefresh":false,"id":1331,"enabled":true,"description":"SLE10-SDK-SP3-Pool for sles-10-ia64","installer_updates":false,"name":"SLE10-SDK-SP3-Pool"},{"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Updates/sles-10-x86_64/","distro_target":"sles-10-x86_64","autorefresh":true,"id":1332,"enabled":true,"description":"SLE10-SDK-SP3-Updates for sles-10-x86_64","installer_updates":false,"name":"SLE10-SDK-SP3-Updates"},{"autorefresh":false,"distro_target":"sles-10-i586","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Pool/sles-10-i586/","enabled":true,"id":1333,"description":"SLE10-SDK-SP3-Pool for sles-10-i586","name":"SLE10-SDK-SP3-Pool","installer_updates":false},{"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Updates/sles-10-i586/","autorefresh":true,"distro_target":"sles-10-i586","id":1334,"enabled":true,"description":"SLE10-SDK-SP3-Updates for sles-10-i586","name":"SLE10-SDK-SP3-Updates","installer_updates":false},{"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sles-10-s390x/","distro_target":"sles-10-s390x","autorefresh":true,"id":1335,"enabled":true,"description":"SLE10-SDK-SP3-Online for sles-10-s390x","installer_updates":false,"name":"SLE10-SDK-SP3-Online"},{"distro_target":"sles-10-ppc","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Updates/sles-10-ppc/","enabled":true,"id":1336,"description":"SLE10-SDK-SP3-Updates for sles-10-ppc","installer_updates":false,"name":"SLE10-SDK-SP3-Updates"},{"id":1337,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Pool/sles-10-s390x/","autorefresh":false,"distro_target":"sles-10-s390x","name":"SLE10-SDK-SP3-Pool","installer_updates":false,"description":"SLE10-SDK-SP3-Pool for sles-10-s390x"},{"enabled":true,"id":1338,"autorefresh":false,"distro_target":"sled-10-i586","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Pool/sled-10-i586/","name":"SLE10-SDK-SP3-Pool","installer_updates":false,"description":"SLE10-SDK-SP3-Pool for sled-10-i586"},{"id":1339,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Updates/sles-10-s390x/","distro_target":"sles-10-s390x","autorefresh":true,"installer_updates":false,"name":"SLE10-SDK-SP3-Updates","description":"SLE10-SDK-SP3-Updates for sles-10-s390x"},{"installer_updates":false,"name":"SLE10-SDK-SP3-Updates","description":"SLE10-SDK-SP3-Updates for sled-10-i586","id":1340,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Updates/sled-10-i586/","distro_target":"sled-10-i586","autorefresh":true},{"description":"SLE10-SDK-SP3-Online for sles-10-x86_64","name":"SLE10-SDK-SP3-Online","installer_updates":false,"autorefresh":true,"distro_target":"sles-10-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sles-10-x86_64/","enabled":true,"id":1341},{"distro_target":"sles-10-ppc","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sles-10-ppc/","enabled":true,"id":1342,"description":"SLE10-SDK-SP3-Online for sles-10-ppc","installer_updates":false,"name":"SLE10-SDK-SP3-Online"}],"product_class":"SLE-SDK","product_type":"extension","cpe":null},{"friendly_version":"10","extensions":[],"id":1180,"release_stage":"released","identifier":"SUSE-Linux-Enterprise-SDK-SP3-migration","recommended":false,"version":"10","name":"SUSE Linux Enterprise Software Development Kit","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Software Development Kit 10 (Migration)","former_identifier":"SUSE-Linux-Enterprise-SDK-SP3-migration","release_type":null,"predecessor_ids":[],"product_class":"SLE-SDK","online_predecessor_ids":[],"repositories":[{"description":"SLE10-SDK-SP3-Online for sled-10-i586","name":"SLE10-SDK-SP3-Online","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sled-10-i586/","autorefresh":true,"distro_target":"sled-10-i586","id":1324,"enabled":true},{"description":"SLE10-SDK-SP3-Online for sled-10-x86_64","name":"SLE10-SDK-SP3-Online","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sled-10-x86_64/","autorefresh":true,"distro_target":"sled-10-x86_64","id":1326,"enabled":true},{"description":"SLE10-SDK-SP3-Online for sles-10-ia64","installer_updates":false,"name":"SLE10-SDK-SP3-Online","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sles-10-ia64/","distro_target":"sles-10-ia64","autorefresh":true,"id":1328,"enabled":true},{"description":"SLE10-SDK-SP3-Online for sles-10-i586","installer_updates":false,"name":"SLE10-SDK-SP3-Online","distro_target":"sles-10-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sles-10-i586/","enabled":true,"id":1330},{"enabled":true,"id":1335,"autorefresh":true,"distro_target":"sles-10-s390x","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sles-10-s390x/","name":"SLE10-SDK-SP3-Online","installer_updates":false,"description":"SLE10-SDK-SP3-Online for sles-10-s390x"},{"installer_updates":false,"name":"SLE10-SDK-SP3-Online","description":"SLE10-SDK-SP3-Online for sles-10-x86_64","id":1341,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sles-10-x86_64/","distro_target":"sles-10-x86_64","autorefresh":true},{"enabled":true,"id":1342,"autorefresh":true,"distro_target":"sles-10-ppc","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sles-10-ppc/","name":"SLE10-SDK-SP3-Online","installer_updates":false,"description":"SLE10-SDK-SP3-Online for sles-10-ppc"}],"cpe":null,"product_type":"extension","shortname":null,"description":null,"free":true,"eula_url":"","arch":null},{"cpe":null,"product_type":"extension","online_predecessor_ids":[],"product_class":"SLESMT","repositories":[{"enabled":false,"id":664,"autorefresh":true,"distro_target":"sles-10-i586","url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Updates/sles-10-i586/","name":"SLE10-SP3-Debuginfo-Updates","installer_updates":false,"description":"SLE10-SP3-Debuginfo-Updates for sles-10-i586"},{"url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Pool/sles-10-i586/","autorefresh":false,"distro_target":"sles-10-i586","id":669,"enabled":false,"description":"SLE10-SP3-Debuginfo-Pool for sles-10-i586","name":"SLE10-SP3-Debuginfo-Pool","installer_updates":false},{"distro_target":"sles-10-s390x","autorefresh":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Pool/sles-10-s390x/","enabled":false,"id":672,"description":"SLE10-SP3-Debuginfo-Pool for sles-10-s390x","installer_updates":false,"name":"SLE10-SP3-Debuginfo-Pool"},{"name":"SLE10-SP3-Debuginfo-Updates","installer_updates":false,"description":"SLE10-SP3-Debuginfo-Updates for sles-10-s390x","enabled":false,"id":675,"autorefresh":true,"distro_target":"sles-10-s390x","url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Updates/sles-10-s390x/"},{"id":750,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Updates/sles-10-x86_64/","autorefresh":true,"distro_target":"sles-10-x86_64","name":"SLE10-SP3-Debuginfo-Updates","installer_updates":false,"description":"SLE10-SP3-Debuginfo-Updates for sles-10-x86_64"},{"description":"SLE10-SP3-Debuginfo-Pool for sles-10-x86_64","name":"SLE10-SP3-Debuginfo-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sles-10-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Pool/sles-10-x86_64/","enabled":false,"id":751},{"id":779,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Pool/sles-10-ppc/","autorefresh":false,"distro_target":"sles-10-ppc","name":"SLE10-SP3-Debuginfo-Pool","installer_updates":false,"description":"SLE10-SP3-Debuginfo-Pool for sles-10-ppc"},{"description":"SLE10-SP3-Debuginfo-Updates for sles-10-ppc","name":"SLE10-SP3-Debuginfo-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sles-10-ppc","url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Updates/sles-10-ppc/","enabled":false,"id":780},{"id":788,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Pool/sles-10-ia64/","distro_target":"sles-10-ia64","autorefresh":false,"installer_updates":false,"name":"SLE10-SP3-Debuginfo-Pool","description":"SLE10-SP3-Debuginfo-Pool for sles-10-ia64"},{"installer_updates":false,"name":"SLE10-SP3-Debuginfo-Updates","description":"SLE10-SP3-Debuginfo-Updates for sles-10-ia64","id":789,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Updates/sles-10-ia64/","distro_target":"sles-10-ia64","autorefresh":true},{"installer_updates":false,"name":"SLE10-SP3-Debuginfo-Pool","description":"SLE10-SP3-Debuginfo-Pool for sled-10-x86_64","id":869,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Pool/sled-10-x86_64/","distro_target":"sled-10-x86_64","autorefresh":false},{"description":"SLE10-SP3-Debuginfo-Updates for sled-10-x86_64","installer_updates":false,"name":"SLE10-SP3-Debuginfo-Updates","url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Updates/sled-10-x86_64/","distro_target":"sled-10-x86_64","autorefresh":true,"id":870,"enabled":false},{"enabled":false,"id":895,"autorefresh":false,"distro_target":"sled-10-i586","url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Pool/sled-10-i586/","name":"SLE10-SP3-Debuginfo-Pool","installer_updates":false,"description":"SLE10-SP3-Debuginfo-Pool for sled-10-i586"},{"description":"SLE10-SP3-Debuginfo-Updates for sled-10-i586","installer_updates":false,"name":"SLE10-SP3-Debuginfo-Updates","distro_target":"sled-10-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Updates/sled-10-i586/","enabled":false,"id":896},{"name":"SLE10-SP3-SMT-Updates","installer_updates":false,"description":"SLE10-SP3-SMT-Updates for sles-10-i586","id":1403,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-SMT-Updates/sles-10-i586/","autorefresh":true,"distro_target":"sles-10-i586"},{"enabled":true,"id":1404,"autorefresh":true,"distro_target":"sles-10-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-SMT-Updates/sles-10-x86_64/","name":"SLE10-SP3-SMT-Updates","installer_updates":false,"description":"SLE10-SP3-SMT-Updates for sles-10-x86_64"}],"predecessor_ids":[],"arch":null,"eula_url":"","shortname":null,"description":null,"free":true,"identifier":"SUSE-Linux-Enterprise-SMT-SP3","release_stage":"released","id":1197,"extensions":[],"friendly_version":"10 SP3","friendly_name":"SUSE Linux Enterprise Subscription Management Tool 10 SP3","migration_extra":false,"former_identifier":"SUSE-Linux-Enterprise-SMT-SP3","release_type":null,"name":"SUSE Linux Enterprise Subscription Management Tool","offline_predecessor_ids":[],"version":"10.3","recommended":false}],"friendly_version":"10 SP3","release_type":null,"former_identifier":"SUSE-Linux-Enterprise-Server-SP3","migration_extra":false,"friendly_name":"SUSE Linux Enterprise Server 10 SP3 x86_64","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Server","version":"10","recommended":false},{"arch":"s390","eula_url":"","description":null,"shortname":null,"free":false,"cpe":null,"product_type":"base","product_class":"SLES-Z","online_predecessor_ids":[],"repositories":[{"autorefresh":true,"distro_target":"sles-10-s390x","url":"https://updates.suse.com/repo/$RCE/SLES10-GPLv3-Extras/sles-10-s390x/","enabled":false,"id":678,"description":"SLES10-GPLv3-Extras for sles-10-s390x","name":"SLES10-GPLv3-Extras","installer_updates":false},{"enabled":false,"id":769,"distro_target":"sles-10-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP4-Debuginfo-Updates/sles-10-s390x/","installer_updates":false,"name":"SLE10-SP4-Debuginfo-Updates","description":"SLE10-SP4-Debuginfo-Updates for sles-10-s390x"},{"autorefresh":false,"distro_target":"sles-10-s390x","url":"https://updates.suse.com/repo/$RCE/SLES10-SP4-Pool/sles-10-s390x/","enabled":true,"id":770,"description":"SLES10-SP4-Pool for sles-10-s390x","name":"SLES10-SP4-Pool","installer_updates":false},{"description":"SLE10-SP4-Debuginfo-Pool for sles-10-s390x","installer_updates":false,"name":"SLE10-SP4-Debuginfo-Pool","distro_target":"sles-10-s390x","autorefresh":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP4-Debuginfo-Pool/sles-10-s390x/","enabled":false,"id":771},{"installer_updates":false,"name":"SLES10-SP4-Updates","description":"SLES10-SP4-Updates for sles-10-s390x","enabled":true,"id":772,"distro_target":"sles-10-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLES10-SP4-Updates/sles-10-s390x/"}],"predecessor_ids":[],"friendly_name":"SUSE Linux Enterprise Server 10 SP4 s390","migration_extra":false,"former_identifier":"SUSE-Linux-Enterprise-Server-SP4","release_type":null,"name":"SUSE Linux Enterprise Server","offline_predecessor_ids":[],"version":"10","recommended":false,"identifier":"SUSE-Linux-Enterprise-Server-SP4","release_stage":"released","id":722,"extensions":[{"arch":null,"eula_url":"","free":true,"shortname":null,"description":null,"product_type":"extension","cpe":null,"product_class":"SLE-SDK","online_predecessor_ids":[],"repositories":[{"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP4-Pool/sles-10-x86_64/","distro_target":"sles-10-x86_64","autorefresh":false,"id":1343,"enabled":true,"description":"SLE10-SDK-SP4-Pool for sles-10-x86_64","installer_updates":false,"name":"SLE10-SDK-SP4-Pool"},{"name":"SLE10-SDK-SP4-Pool","installer_updates":false,"description":"SLE10-SDK-SP4-Pool for sles-10-ppc","id":1344,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP4-Pool/sles-10-ppc/","autorefresh":false,"distro_target":"sles-10-ppc"},{"enabled":true,"id":1345,"distro_target":"sles-10-i586","autorefresh":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP4-Pool/sles-10-i586/","installer_updates":false,"name":"SLE10-SDK-SP4-Pool","description":"SLE10-SDK-SP4-Pool for sles-10-i586"},{"autorefresh":false,"distro_target":"sled-10-i586","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP4-Pool/sled-10-i586/","enabled":true,"id":1346,"description":"SLE10-SDK-SP4-Pool for sled-10-i586","name":"SLE10-SDK-SP4-Pool","installer_updates":false},{"description":"SLE10-SDK-SP4-Updates for sled-10-x86_64","name":"SLE10-SDK-SP4-Updates","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP4-Updates/sled-10-x86_64/","autorefresh":true,"distro_target":"sled-10-x86_64","id":1347,"enabled":true},{"name":"SLE10-SDK-SP4-Pool","installer_updates":false,"description":"SLE10-SDK-SP4-Pool for sles-10-s390x","id":1348,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP4-Pool/sles-10-s390x/","autorefresh":false,"distro_target":"sles-10-s390x"},{"distro_target":"sles-10-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP4-Updates/sles-10-x86_64/","enabled":true,"id":1349,"description":"SLE10-SDK-SP4-Updates for sles-10-x86_64","installer_updates":false,"name":"SLE10-SDK-SP4-Updates"},{"distro_target":"sles-10-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP4-Updates/sles-10-s390x/","enabled":true,"id":1350,"description":"SLE10-SDK-SP4-Updates for sles-10-s390x","installer_updates":false,"name":"SLE10-SDK-SP4-Updates"},{"description":"SLE10-SDK-SP4-Updates for sled-10-i586","installer_updates":false,"name":"SLE10-SDK-SP4-Updates","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP4-Updates/sled-10-i586/","distro_target":"sled-10-i586","autorefresh":true,"id":1351,"enabled":true},{"distro_target":"sles-10-ppc","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP4-Updates/sles-10-ppc/","enabled":true,"id":1352,"description":"SLE10-SDK-SP4-Updates for sles-10-ppc","installer_updates":false,"name":"SLE10-SDK-SP4-Updates"},{"distro_target":"sles-10-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP4-Updates/sles-10-i586/","enabled":true,"id":1353,"description":"SLE10-SDK-SP4-Updates for sles-10-i586","installer_updates":false,"name":"SLE10-SDK-SP4-Updates"},{"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP4-Updates/sles-10-ia64/","distro_target":"sles-10-ia64","autorefresh":true,"id":1354,"enabled":true,"description":"SLE10-SDK-SP4-Updates for sles-10-ia64","installer_updates":false,"name":"SLE10-SDK-SP4-Updates"},{"name":"SLE10-SDK-SP4-Pool","installer_updates":false,"description":"SLE10-SDK-SP4-Pool for sled-10-x86_64","enabled":true,"id":1355,"autorefresh":false,"distro_target":"sled-10-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP4-Pool/sled-10-x86_64/"},{"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP4-Pool/sles-10-ia64/","autorefresh":false,"distro_target":"sles-10-ia64","id":1356,"enabled":true,"description":"SLE10-SDK-SP4-Pool for sles-10-ia64","name":"SLE10-SDK-SP4-Pool","installer_updates":false}],"predecessor_ids":[],"former_identifier":"SUSE-Linux-Enterprise-SDK-SP4","release_type":null,"friendly_name":"SUSE Linux Enterprise Software Development Kit 10 SP4","migration_extra":false,"offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Software Development Kit","version":"10","recommended":false,"release_stage":"released","identifier":"SUSE-Linux-Enterprise-SDK-SP4","id":1181,"extensions":[],"friendly_version":"10 SP4"},{"recommended":false,"version":"10","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Software Development Kit","former_identifier":"SUSE-Linux-Enterprise-SDK-SP4-migration","release_type":null,"friendly_name":"SUSE Linux Enterprise Software Development Kit 10 (Migration)","migration_extra":false,"friendly_version":"10","extensions":[],"release_stage":"released","identifier":"SUSE-Linux-Enterprise-SDK-SP4-migration","id":1182,"free":true,"description":null,"shortname":null,"eula_url":"","arch":null,"predecessor_ids":[],"product_class":"SLE-SDK","online_predecessor_ids":[],"repositories":[{"autorefresh":true,"distro_target":"sles-10-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP4-Online/sles-10-x86_64/","enabled":true,"id":1357,"description":"SLE10-SDK-SP4-Online for sles-10-x86_64","name":"SLE10-SDK-SP4-Online","installer_updates":false},{"autorefresh":true,"distro_target":"sles-10-i586","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP4-Online/sles-10-i586/","enabled":true,"id":1358,"description":"SLE10-SDK-SP4-Online for sles-10-i586","name":"SLE10-SDK-SP4-Online","installer_updates":false},{"description":"SLE10-SDK-SP4-Online for sles-10-ia64","name":"SLE10-SDK-SP4-Online","installer_updates":false,"autorefresh":true,"distro_target":"sles-10-ia64","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP4-Online/sles-10-ia64/","enabled":true,"id":1359},{"description":"SLE10-SDK-SP4-Online for sled-10-x86_64","installer_updates":false,"name":"SLE10-SDK-SP4-Online","distro_target":"sled-10-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP4-Online/sled-10-x86_64/","enabled":true,"id":1360},{"name":"SLE10-SDK-SP4-Online","installer_updates":false,"description":"SLE10-SDK-SP4-Online for sled-10-i586","enabled":true,"id":1361,"autorefresh":true,"distro_target":"sled-10-i586","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP4-Online/sled-10-i586/"},{"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP4-Online/sles-10-ppc/","autorefresh":true,"distro_target":"sles-10-ppc","id":1362,"enabled":true,"description":"SLE10-SDK-SP4-Online for sles-10-ppc","name":"SLE10-SDK-SP4-Online","installer_updates":false},{"description":"SLE10-SDK-SP4-Online for sles-10-s390x","installer_updates":false,"name":"SLE10-SDK-SP4-Online","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP4-Online/sles-10-s390x/","distro_target":"sles-10-s390x","autorefresh":true,"id":1363,"enabled":true}],"product_type":"extension","cpe":null}],"friendly_version":"10 SP4"},{"description":null,"shortname":null,"free":false,"eula_url":"","arch":"i486","predecessor_ids":[],"online_predecessor_ids":[],"repositories":[{"distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-Extras/sle-11-i586/","enabled":false,"id":679,"description":"SLES11-Extras for sle-11-i586","installer_updates":false,"name":"SLES11-Extras"},{"description":"SLE11-SP1-Debuginfo-Pool for sle-11-i586","name":"SLE11-SP1-Debuginfo-Pool","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Pool/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","id":680,"enabled":false},{"description":"SLE11-SP1-Debuginfo-Updates for sle-11-i586","installer_updates":false,"name":"SLE11-SP1-Debuginfo-Updates","distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Updates/sle-11-i586/","enabled":false,"id":682},{"distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-Updates/sle-11-i586/","enabled":true,"id":684,"description":"SLES11-SP1-Updates for sle-11-i586","installer_updates":false,"name":"SLES11-SP1-Updates"},{"id":686,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-Pool/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true,"installer_updates":false,"name":"SLES11-SP1-Pool","description":"SLES11-SP1-Pool for sle-11-i586"},{"name":"SLE11-SP2-Debuginfo-Core","installer_updates":false,"description":"SLE11-SP2-Debuginfo-Core for sle-11-i586","enabled":false,"id":717,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-Debuginfo-Core/sle-11-i586/"},{"description":"SLE11-WebYaST-SP2-Pool for sle-11-i586","installer_updates":false,"name":"SLE11-WebYaST-SP2-Pool","url":"https://updates.suse.com/repo/$RCE/SLE11-WebYaST-SP2-Pool/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true,"id":718,"enabled":false},{"id":719,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-Debuginfo-Updates/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","name":"SLE11-SP2-Debuginfo-Updates","installer_updates":false,"description":"SLE11-SP2-Debuginfo-Updates for sle-11-i586"},{"installer_updates":false,"name":"SLES11-SP2-Updates","description":"SLES11-SP2-Updates for sle-11-i586","id":720,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP2-Updates/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true},{"url":"https://updates.suse.com/repo/$RCE/SLE11-WebYaST-SP2-Updates/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","id":721,"enabled":false,"description":"SLE11-WebYaST-SP2-Updates for sle-11-i586","name":"SLE11-WebYaST-SP2-Updates","installer_updates":false},{"installer_updates":false,"name":"SLES11-SP2-Core","description":"SLES11-SP2-Core for sle-11-i586","id":722,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP2-Core/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true},{"enabled":true,"id":761,"distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP2-Extension-Store/sle-11-i586/","installer_updates":false,"name":"SLES11-SP2-Extension-Store","description":"SLES11-SP2-Extension-Store for sle-11-i586"}],"product_class":"7261","cpe":"cpe:/o:suse:suse_sles:11:sp2","product_type":"base","recommended":false,"version":"11.2","name":"SUSE Linux Enterprise Server","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Server 11 SP2 i486","release_type":null,"former_identifier":"SUSE_SLES","friendly_version":"11 SP2","extensions":[{"friendly_version":"1.2","extensions":[],"release_stage":"released","identifier":"sle-11-WebYaST","id":837,"recommended":false,"version":"1.2","name":"SUSE WebYaST","offline_predecessor_ids":[],"friendly_name":"SUSE WebYaST 1.2","migration_extra":false,"release_type":null,"former_identifier":"sle-11-WebYaST","predecessor_ids":[],"repositories":[{"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-WebYaST-1.2-Updates/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64","id":839,"enabled":true,"description":"SLE11-SP1-WebYaST-1.2-Updates for sle-11-x86_64","name":"SLE11-SP1-WebYaST-1.2-Updates","installer_updates":false},{"installer_updates":false,"name":"SLE11-SP1-WebYaST-1.2-Pool","description":"SLE11-SP1-WebYaST-1.2-Pool for sle-11-i586","enabled":false,"id":840,"distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-WebYaST-1.2-Pool/sle-11-i586/"},{"description":"SLE11-SP1-WebYaST-1.2-Pool for sle-11-x86_64","installer_updates":false,"name":"SLE11-SP1-WebYaST-1.2-Pool","distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-WebYaST-1.2-Pool/sle-11-x86_64/","enabled":false,"id":841},{"id":842,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-WebYaST-1.2-Updates/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","name":"SLE11-SP1-WebYaST-1.2-Updates","installer_updates":false,"description":"SLE11-SP1-WebYaST-1.2-Updates for sle-11-i586"}],"online_predecessor_ids":[],"product_class":"WEBYAST","cpe":null,"product_type":"extension","shortname":null,"description":null,"free":true,"eula_url":"","arch":null},{"recommended":false,"version":"11.2","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise High Availability Extension","former_identifier":"sle-hae","release_type":null,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise High Availability Extension 11 SP2 i486","friendly_version":"11 SP2","extensions":[{"shortname":null,"description":null,"free":false,"eula_url":"","arch":"i486","predecessor_ids":[],"online_predecessor_ids":[],"product_class":"SLE-HAE-GEO","repositories":[{"distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-GEO-SP2-Updates/sle-11-i586/","enabled":true,"id":1115,"description":"SLE11-HAE-GEO-SP2-Updates for sle-11-i586","installer_updates":false,"name":"SLE11-HAE-GEO-SP2-Updates"}],"cpe":null,"product_type":"extension","recommended":false,"version":"11.2","name":"Geo Clustering for SUSE Linux Enterprise High Availability Extension","offline_predecessor_ids":[],"friendly_name":"Geo Clustering for SUSE Linux Enterprise High Availability Extension 11 SP2 i486","migration_extra":false,"release_type":null,"former_identifier":"sle-haegeo","friendly_version":"11 SP2","extensions":[],"id":1105,"release_stage":"released","identifier":"sle-haegeo"}],"identifier":"sle-hae","release_stage":"released","id":979,"free":false,"description":null,"shortname":null,"eula_url":"","arch":"i486","predecessor_ids":[],"product_class":"SLE-HAE-X86","online_predecessor_ids":[],"repositories":[{"description":"SLE11-HAE-SP2-Pool for sle-11-i586","installer_updates":false,"name":"SLE11-HAE-SP2-Pool","url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP2-Pool/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true,"id":949,"enabled":true},{"installer_updates":false,"name":"SLE11-HAE-SP2-Updates","description":"SLE11-HAE-SP2-Updates for sle-11-i586","enabled":true,"id":950,"distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP2-Updates/sle-11-i586/"}],"product_type":"extension","cpe":null},{"free":true,"description":null,"shortname":null,"arch":null,"eula_url":"","repositories":[{"name":"SLE11-SDK-SP1-Updates","installer_updates":false,"description":"SLE11-SDK-SP1-Updates for sle-11-ia64","enabled":true,"id":1257,"autorefresh":true,"distro_target":"sle-11-ia64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Updates/sle-11-ia64/"},{"description":"SLE11-SDK-SP1-Pool for sle-11-ia64","installer_updates":false,"name":"SLE11-SDK-SP1-Pool","distro_target":"sle-11-ia64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-ia64/","enabled":true,"id":1258},{"description":"SLE11-SDK-SP1-Pool for sle-11-s390x","name":"SLE11-SDK-SP1-Pool","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-s390x","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-s390x/","enabled":true,"id":1259},{"installer_updates":false,"name":"SLE11-SDK-SP1-Updates","description":"SLE11-SDK-SP1-Updates for sle-11-ppc64","id":1260,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Updates/sle-11-ppc64/","distro_target":"sle-11-ppc64","autorefresh":true},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-ppc64/","autorefresh":true,"distro_target":"sle-11-ppc64","id":1261,"enabled":true,"description":"SLE11-SDK-SP1-Pool for sle-11-ppc64","name":"SLE11-SDK-SP1-Pool","installer_updates":false},{"id":1262,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Updates/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","name":"SLE11-SDK-SP1-Updates","installer_updates":false,"description":"SLE11-SDK-SP1-Updates for sle-11-i586"},{"enabled":true,"id":1263,"distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-i586/","installer_updates":false,"name":"SLE11-SDK-SP1-Pool","description":"SLE11-SDK-SP1-Pool for sle-11-i586"},{"enabled":true,"id":1264,"distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-x86_64/","installer_updates":false,"name":"SLE11-SDK-SP1-Pool","description":"SLE11-SDK-SP1-Pool for sle-11-x86_64"},{"installer_updates":false,"name":"SLE11-SDK-SP1-Updates","description":"SLE11-SDK-SP1-Updates for sle-11-x86_64","enabled":true,"id":1265,"distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Updates/sle-11-x86_64/"},{"distro_target":"sle-11-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Updates/sle-11-s390x/","enabled":true,"id":1266,"description":"SLE11-SDK-SP1-Updates for sle-11-s390x","installer_updates":false,"name":"SLE11-SDK-SP1-Updates"},{"id":1267,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-ia64/","distro_target":"sle-11-ia64","autorefresh":true,"installer_updates":false,"name":"SLE11-SDK-SP2-Core","description":"SLE11-SDK-SP2-Core for sle-11-ia64"},{"description":"SLE11-SDK-SP2-Core for sle-11-s390x","name":"SLE11-SDK-SP2-Core","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-s390x/","autorefresh":true,"distro_target":"sle-11-s390x","id":1268,"enabled":true},{"installer_updates":false,"name":"SLE11-SDK-SP2-Updates","description":"SLE11-SDK-SP2-Updates for sle-11-s390x","id":1269,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-s390x/","distro_target":"sle-11-s390x","autorefresh":true},{"id":1270,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-ppc64/","distro_target":"sle-11-ppc64","autorefresh":true,"installer_updates":false,"name":"SLE11-SDK-SP2-Updates","description":"SLE11-SDK-SP2-Updates for sle-11-ppc64"},{"name":"SLE11-SDK-SP2-Updates","installer_updates":false,"description":"SLE11-SDK-SP2-Updates for sle-11-i586","enabled":true,"id":1271,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-i586/"},{"name":"SLE11-SDK-SP2-Updates","installer_updates":false,"description":"SLE11-SDK-SP2-Updates for sle-11-ia64","enabled":true,"id":1272,"autorefresh":true,"distro_target":"sle-11-ia64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-ia64/"},{"id":1273,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-ppc64/","distro_target":"sle-11-ppc64","autorefresh":true,"installer_updates":false,"name":"SLE11-SDK-SP2-Core","description":"SLE11-SDK-SP2-Core for sle-11-ppc64"},{"name":"SLE11-SDK-SP2-Core","installer_updates":false,"description":"SLE11-SDK-SP2-Core for sle-11-i586","id":1274,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586"},{"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-x86_64/","enabled":true,"id":1275,"description":"SLE11-SDK-SP2-Core for sle-11-x86_64","name":"SLE11-SDK-SP2-Core","installer_updates":false},{"installer_updates":false,"name":"SLE11-SDK-SP2-Updates","description":"SLE11-SDK-SP2-Updates for sle-11-x86_64","id":1276,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true}],"online_predecessor_ids":[],"product_class":"SLE-SDK","predecessor_ids":[],"product_type":"extension","cpe":null,"version":"11.2","recommended":false,"former_identifier":"sle-sdk","release_type":null,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Software Development Kit 11 SP2","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Software Development Kit","friendly_version":"11 SP2","id":1160,"release_stage":"released","identifier":"sle-sdk","extensions":[]},{"free":true,"shortname":null,"description":null,"eula_url":"","arch":null,"predecessor_ids":[],"online_predecessor_ids":[],"product_class":"SLE-SDK","repositories":[{"enabled":true,"id":1267,"distro_target":"sle-11-ia64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-ia64/","installer_updates":false,"name":"SLE11-SDK-SP2-Core","description":"SLE11-SDK-SP2-Core for sle-11-ia64"},{"installer_updates":false,"name":"SLE11-SDK-SP2-Core","description":"SLE11-SDK-SP2-Core for sle-11-s390x","id":1268,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-s390x/","distro_target":"sle-11-s390x","autorefresh":true},{"installer_updates":false,"name":"SLE11-SDK-SP2-Updates","description":"SLE11-SDK-SP2-Updates for sle-11-s390x","enabled":true,"id":1269,"distro_target":"sle-11-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-s390x/"},{"id":1270,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-ppc64/","autorefresh":true,"distro_target":"sle-11-ppc64","name":"SLE11-SDK-SP2-Updates","installer_updates":false,"description":"SLE11-SDK-SP2-Updates for sle-11-ppc64"},{"description":"SLE11-SDK-SP2-Updates for sle-11-i586","name":"SLE11-SDK-SP2-Updates","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","id":1271,"enabled":true},{"enabled":true,"id":1272,"autorefresh":true,"distro_target":"sle-11-ia64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-ia64/","name":"SLE11-SDK-SP2-Updates","installer_updates":false,"description":"SLE11-SDK-SP2-Updates for sle-11-ia64"},{"description":"SLE11-SDK-SP2-Core for sle-11-ppc64","installer_updates":false,"name":"SLE11-SDK-SP2-Core","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-ppc64/","distro_target":"sle-11-ppc64","autorefresh":true,"id":1273,"enabled":true},{"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-i586/","enabled":true,"id":1274,"description":"SLE11-SDK-SP2-Core for sle-11-i586","name":"SLE11-SDK-SP2-Core","installer_updates":false},{"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-x86_64/","enabled":true,"id":1275,"description":"SLE11-SDK-SP2-Core for sle-11-x86_64","name":"SLE11-SDK-SP2-Core","installer_updates":false},{"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-x86_64/","enabled":true,"id":1276,"description":"SLE11-SDK-SP2-Updates for sle-11-x86_64","name":"SLE11-SDK-SP2-Updates","installer_updates":false}],"product_type":"extension","cpe":null,"recommended":false,"version":"11.1","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Software Development Kit","former_identifier":"sle-sdk-SP2-migration","release_type":null,"friendly_name":"SUSE Linux Enterprise Software Development Kit 11 SP1 (Migration)","migration_extra":false,"friendly_version":"11 SP1","extensions":[],"release_stage":"released","identifier":"sle-sdk-SP2-migration","id":1163},{"friendly_version":"11 SP2","extensions":[],"release_stage":"released","id":1164,"identifier":"sle-sdk-SP3-migration","recommended":false,"version":"11.2","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Software Development Kit","former_identifier":"sle-sdk-SP3-migration","release_type":null,"friendly_name":"SUSE Linux Enterprise Software Development Kit 11 SP2 (Migration)","migration_extra":false,"predecessor_ids":[],"repositories":[{"installer_updates":false,"name":"SLE11-SDK-SP3-Pool","description":"SLE11-SDK-SP3-Pool for sle-11-i586","enabled":true,"id":1277,"distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Pool/sle-11-i586/"},{"distro_target":"sle-11-ia64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Pool/sle-11-ia64/","enabled":true,"id":1278,"description":"SLE11-SDK-SP3-Pool for sle-11-ia64","installer_updates":false,"name":"SLE11-SDK-SP3-Pool"},{"name":"SLE11-SDK-SP3-Updates","installer_updates":false,"description":"SLE11-SDK-SP3-Updates for sle-11-ppc64","enabled":true,"id":1279,"autorefresh":true,"distro_target":"sle-11-ppc64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Updates/sle-11-ppc64/"},{"enabled":true,"id":1280,"distro_target":"sle-11-ia64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Updates/sle-11-ia64/","installer_updates":false,"name":"SLE11-SDK-SP3-Updates","description":"SLE11-SDK-SP3-Updates for sle-11-ia64"},{"id":1281,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Pool/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true,"installer_updates":false,"name":"SLE11-SDK-SP3-Pool","description":"SLE11-SDK-SP3-Pool for sle-11-x86_64"},{"installer_updates":false,"name":"SLE11-SDK-SP3-Updates","description":"SLE11-SDK-SP3-Updates for sle-11-s390x","enabled":true,"id":1282,"distro_target":"sle-11-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Updates/sle-11-s390x/"},{"description":"SLE11-SDK-SP3-Pool for sle-11-ppc64","installer_updates":false,"name":"SLE11-SDK-SP3-Pool","distro_target":"sle-11-ppc64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Pool/sle-11-ppc64/","enabled":true,"id":1283},{"description":"SLE11-SDK-SP3-Updates for sle-11-x86_64","installer_updates":false,"name":"SLE11-SDK-SP3-Updates","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Updates/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true,"id":1284,"enabled":true},{"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Updates/sle-11-i586/","enabled":true,"id":1285,"description":"SLE11-SDK-SP3-Updates for sle-11-i586","name":"SLE11-SDK-SP3-Updates","installer_updates":false},{"description":"SLE11-SDK-SP3-Pool for sle-11-s390x","installer_updates":false,"name":"SLE11-SDK-SP3-Pool","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Pool/sle-11-s390x/","distro_target":"sle-11-s390x","autorefresh":true,"id":1286,"enabled":true}],"online_predecessor_ids":[],"product_class":"SLE-SDK","product_type":"extension","cpe":null,"free":true,"shortname":null,"description":null,"eula_url":"","arch":null},{"release_stage":"released","id":1193,"identifier":"sle-smt","extensions":[],"friendly_version":"11 SP2","friendly_name":"SUSE Linux Enterprise Subscription Management Tool 11 SP2","migration_extra":false,"release_type":null,"former_identifier":"sle-smt","name":"SUSE Linux Enterprise Subscription Management Tool","offline_predecessor_ids":[],"version":"11.2","recommended":false,"cpe":null,"product_type":"extension","online_predecessor_ids":[],"product_class":"SLESMT","repositories":[{"enabled":true,"id":1392,"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP2-Pool/sle-11-x86_64/","name":"SLE11-SMT-SP2-Pool","installer_updates":false,"description":"SLE11-SMT-SP2-Pool for sle-11-x86_64"},{"description":"SLE11-SMT-SP2-Updates for sle-11-s390x","name":"SLE11-SMT-SP2-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-s390x","url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP2-Updates/sle-11-s390x/","enabled":true,"id":1393},{"description":"SLE11-SMT-SP2-Pool for sle-11-i586","name":"SLE11-SMT-SP2-Pool","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP2-Pool/sle-11-i586/","enabled":true,"id":1394},{"description":"SLE11-SMT-SP2-Updates for sle-11-i586","installer_updates":false,"name":"SLE11-SMT-SP2-Updates","distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP2-Updates/sle-11-i586/","enabled":true,"id":1395},{"autorefresh":true,"distro_target":"sle-11-s390x","url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP2-Pool/sle-11-s390x/","enabled":true,"id":1396,"description":"SLE11-SMT-SP2-Pool for sle-11-s390x","name":"SLE11-SMT-SP2-Pool","installer_updates":false},{"id":1397,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP2-Updates/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true,"installer_updates":false,"name":"SLE11-SMT-SP2-Updates","description":"SLE11-SMT-SP2-Updates for sle-11-x86_64"}],"predecessor_ids":[],"arch":null,"eula_url":"","shortname":null,"description":null,"free":true},{"product_type":"extension","cpe":null,"repositories":[{"enabled":true,"id":1392,"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP2-Pool/sle-11-x86_64/","name":"SLE11-SMT-SP2-Pool","installer_updates":false,"description":"SLE11-SMT-SP2-Pool for sle-11-x86_64"},{"name":"SLE11-SMT-SP2-Pool","installer_updates":false,"description":"SLE11-SMT-SP2-Pool for sle-11-i586","id":1394,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP2-Pool/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586"},{"description":"SLE11-SMT-SP2-Pool for sle-11-s390x","installer_updates":false,"name":"SLE11-SMT-SP2-Pool","url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP2-Pool/sle-11-s390x/","distro_target":"sle-11-s390x","autorefresh":true,"id":1396,"enabled":true}],"online_predecessor_ids":[],"product_class":"SLESMT","predecessor_ids":[],"arch":null,"eula_url":"","free":true,"shortname":null,"description":null,"release_stage":"released","id":1194,"identifier":"sle-smt-SP2-migration","extensions":[],"friendly_version":"11","release_type":null,"former_identifier":"sle-smt-SP2-migration","friendly_name":"SUSE Linux Enterprise Subscription Management Tool 11 (Migration)","migration_extra":false,"offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Subscription Management Tool","version":"11","recommended":false},{"id":1199,"release_stage":"released","identifier":"sle-smt-SP3-migration","extensions":[],"friendly_version":"11 SP2","migration_extra":false,"friendly_name":"SUSE Linux Enterprise Subscription Management Tool 11 SP2 (Migration)","release_type":null,"former_identifier":"sle-smt-SP3-migration","name":"SUSE Linux Enterprise Subscription Management Tool","offline_predecessor_ids":[],"version":"11.2","recommended":false,"cpe":null,"product_type":"extension","online_predecessor_ids":[],"repositories":[{"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP3-Pool/sle-11-s390x/","autorefresh":true,"distro_target":"sle-11-s390x","id":1408,"enabled":true,"description":"SLE11-SMT-SP3-Pool for sle-11-s390x","name":"SLE11-SMT-SP3-Pool","installer_updates":false},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP3-Pool/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true,"id":1409,"enabled":true,"description":"SLE11-SMT-SP3-Pool for sle-11-x86_64","installer_updates":false,"name":"SLE11-SMT-SP3-Pool"},{"description":"SLE11-SMT-SP3-Pool for sle-11-i586","installer_updates":false,"name":"SLE11-SMT-SP3-Pool","url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP3-Pool/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true,"id":1410,"enabled":true}],"product_class":"SLESMT","predecessor_ids":[],"arch":null,"eula_url":"","description":null,"shortname":null,"free":true},{"repositories":[{"enabled":true,"id":1185,"distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-WebYaST-1.3-Pool/sle-11-x86_64/","installer_updates":false,"name":"SLE11-SP2-WebYaST-1.3-Pool","description":"SLE11-SP2-WebYaST-1.3-Pool for sle-11-x86_64"},{"name":"SLE11-SP2-WebYaST-1.3-Pool","installer_updates":false,"description":"SLE11-SP2-WebYaST-1.3-Pool for sle-11-s390x","enabled":true,"id":1411,"autorefresh":true,"distro_target":"sle-11-s390x","url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-WebYaST-1.3-Pool/sle-11-s390x/"},{"enabled":true,"id":1414,"autorefresh":true,"distro_target":"sle-11-ppc64","url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-WebYaST-1.3-Pool/sle-11-ppc64/","name":"SLE11-SP2-WebYaST-1.3-Pool","installer_updates":false,"description":"SLE11-SP2-WebYaST-1.3-Pool for sle-11-ppc64"},{"installer_updates":false,"name":"SLE11-SP2-WebYaST-1.3-Pool","description":"SLE11-SP2-WebYaST-1.3-Pool for sle-11-ia64","id":1416,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-WebYaST-1.3-Pool/sle-11-ia64/","distro_target":"sle-11-ia64","autorefresh":true},{"id":1417,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-WebYaST-1.3-Pool/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","name":"SLE11-SP2-WebYaST-1.3-Pool","installer_updates":false,"description":"SLE11-SP2-WebYaST-1.3-Pool for sle-11-i586"}],"online_predecessor_ids":[],"product_class":"WEBYAST","predecessor_ids":[],"cpe":null,"product_type":"extension","description":null,"shortname":null,"free":true,"arch":null,"eula_url":"","friendly_version":"1.2","release_stage":"released","id":1207,"identifier":"sle-11-WebYaST-1.3-migration","extensions":[],"version":"1.2","recommended":false,"migration_extra":false,"friendly_name":"SUSE WebYaST 1.2 (Migration)","former_identifier":"sle-11-WebYaST-1.3-migration","release_type":null,"name":"SUSE WebYaST","offline_predecessor_ids":[]}],"release_stage":"released","identifier":"SUSE_SLES","id":723},{"cpe":null,"product_type":"base","predecessor_ids":[],"product_class":"7261","online_predecessor_ids":[],"repositories":[{"enabled":false,"id":706,"distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-WebYaST-SP2-Pool/sle-11-x86_64/","installer_updates":false,"name":"SLE11-WebYaST-SP2-Pool","description":"SLE11-WebYaST-SP2-Pool for sle-11-x86_64"},{"installer_updates":false,"name":"SLE11-SP1-Debuginfo-Pool","description":"SLE11-SP1-Debuginfo-Pool for sle-11-x86_64","enabled":false,"id":707,"distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Pool/sle-11-x86_64/"},{"installer_updates":false,"name":"SLE11-WebYaST-SP2-Updates","description":"SLE11-WebYaST-SP2-Updates for sle-11-x86_64","enabled":false,"id":708,"distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-WebYaST-SP2-Updates/sle-11-x86_64/"},{"name":"SLES11-SP2-Core","installer_updates":false,"description":"SLES11-SP2-Core for sle-11-x86_64","enabled":true,"id":709,"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLES11-SP2-Core/sle-11-x86_64/"},{"description":"SLE11-SP2-Debuginfo-Updates for sle-11-x86_64","installer_updates":false,"name":"SLE11-SP2-Debuginfo-Updates","distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-Debuginfo-Updates/sle-11-x86_64/","enabled":false,"id":712},{"url":"https://updates.suse.com/repo/$RCE/SLES11-SP2-Updates/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64","id":714,"enabled":true,"description":"SLES11-SP2-Updates for sle-11-x86_64","name":"SLES11-SP2-Updates","installer_updates":false},{"distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Updates/sle-11-x86_64/","enabled":false,"id":715,"description":"SLE11-SP1-Debuginfo-Updates for sle-11-x86_64","installer_updates":false,"name":"SLE11-SP1-Debuginfo-Updates"},{"installer_updates":false,"name":"SLE11-SP2-Debuginfo-Core","description":"SLE11-SP2-Debuginfo-Core for sle-11-x86_64","id":716,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-Debuginfo-Core/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true}],"eula_url":"","arch":"x86_64","shortname":null,"description":null,"free":false,"extensions":[{"recommended":false,"version":"1.1","name":"SUSE Lifecycle Management Server","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"SUSE Lifecycle Management Server 1.1 (Migration)","release_type":null,"former_identifier":"sle-slms-1.2-migration","friendly_version":"1.1","extensions":[],"release_stage":"released","identifier":"sle-slms-1.2-migration","id":934,"shortname":null,"description":null,"free":false,"eula_url":"","arch":null,"predecessor_ids":[],"repositories":[{"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-SLMS-1.2-Pool/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true,"id":913,"enabled":false,"description":"SLE11-SP1-SLMS-1.2-Pool for sle-11-x86_64","installer_updates":false,"name":"SLE11-SP1-SLMS-1.2-Pool"}],"online_predecessor_ids":[],"product_class":"SLMS","cpe":null,"product_type":"extension"},{"recommended":false,"version":"1.1","name":"SUSE Lifecycle Management Server","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"SUSE Lifecycle Management Server 1.1","former_identifier":"sle-slms","release_type":null,"friendly_version":"1.1","extensions":[],"release_stage":"released","id":935,"identifier":"sle-slms","shortname":null,"description":null,"free":false,"eula_url":"","arch":null,"predecessor_ids":[],"online_predecessor_ids":[],"repositories":[{"installer_updates":false,"name":"SLE11-SP1-SLMS-1.1-Pool","description":"SLE11-SP1-SLMS-1.1-Pool for sle-11-x86_64","id":914,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-SLMS-1.1-Pool/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true},{"distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-SLMS-1.1-Updates/sle-11-x86_64/","enabled":true,"id":915,"description":"SLE11-SP1-SLMS-1.1-Updates for sle-11-x86_64","installer_updates":false,"name":"SLE11-SP1-SLMS-1.1-Updates"}],"product_class":"SLMS","cpe":null,"product_type":"extension"},{"friendly_version":"11 SP1","extensions":[],"id":967,"release_stage":"released","identifier":"sle-hae","recommended":false,"version":"11.1","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise High Availability Extension","release_type":null,"former_identifier":"sle-hae","friendly_name":"SUSE Linux Enterprise High Availability Extension 11 SP1 x86_64","migration_extra":false,"predecessor_ids":[],"online_predecessor_ids":[],"repositories":[{"description":"SLE11-HAE-SP1-Pool for sle-11-x86_64","name":"SLE11-HAE-SP1-Pool","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP1-Pool/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64","id":946,"enabled":true},{"enabled":true,"id":953,"distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP1-Updates/sle-11-x86_64/","installer_updates":false,"name":"SLE11-HAE-SP1-Updates","description":"SLE11-HAE-SP1-Updates for sle-11-x86_64"}],"product_class":"SLE-HAE-X86","product_type":"extension","cpe":null,"free":false,"description":null,"shortname":null,"eula_url":"","arch":"x86_64"},{"recommended":false,"version":"11.1","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise High Availability Extension","release_type":null,"former_identifier":"sle-hae-SP2-migration","friendly_name":"SUSE Linux Enterprise High Availability Extension 11 SP1 x86_64 (Migration)","migration_extra":false,"friendly_version":"11 SP1","extensions":[],"release_stage":"released","id":968,"identifier":"sle-hae-SP2-migration","free":false,"shortname":null,"description":null,"eula_url":"","arch":"x86_64","predecessor_ids":[],"repositories":[{"installer_updates":false,"name":"SLE11-HAE-SP2-Pool","description":"SLE11-HAE-SP2-Pool for sle-11-x86_64","enabled":true,"id":947,"distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP2-Pool/sle-11-x86_64/"},{"description":"SLE11-HAE-SP2-Updates for sle-11-x86_64","name":"SLE11-HAE-SP2-Updates","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP2-Updates/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64","id":948,"enabled":true}],"online_predecessor_ids":[],"product_class":"SLE-HAE-X86","product_type":"extension","cpe":null},{"release_type":null,"former_identifier":"sle-studioonsite","migration_extra":false,"friendly_name":"SUSE Studio OnSite 1.1","offline_predecessor_ids":[],"name":"SUSE Studio OnSite","version":"1.1","recommended":false,"identifier":"sle-studioonsite","release_stage":"released","id":1074,"extensions":[],"friendly_version":"1.1","arch":null,"eula_url":"","free":false,"description":null,"shortname":null,"product_type":"extension","cpe":null,"online_predecessor_ids":[],"repositories":[{"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Pool/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","id":680,"enabled":false,"description":"SLE11-SP1-Debuginfo-Pool for sle-11-i586","name":"SLE11-SP1-Debuginfo-Pool","installer_updates":false},{"name":"SLE11-SP1-Debuginfo-Updates","installer_updates":false,"description":"SLE11-SP1-Debuginfo-Updates for sle-11-i586","id":682,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Updates/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586"},{"name":"SLES11-SP1-Updates","installer_updates":false,"description":"SLES11-SP1-Updates for sle-11-i586","id":684,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-Updates/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586"},{"enabled":true,"id":686,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-Pool/sle-11-i586/","name":"SLES11-SP1-Pool","installer_updates":false,"description":"SLES11-SP1-Pool for sle-11-i586"},{"description":"SLES11-SP1-Pool for sle-11-s390x","installer_updates":false,"name":"SLES11-SP1-Pool","distro_target":"sle-11-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-Pool/sle-11-s390x/","enabled":true,"id":687},{"id":688,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Updates/sle-11-s390x/","distro_target":"sle-11-s390x","autorefresh":true,"installer_updates":false,"name":"SLE11-SP1-Debuginfo-Updates","description":"SLE11-SP1-Debuginfo-Updates for sle-11-s390x"},{"name":"SLES11-SP1-Updates","installer_updates":false,"description":"SLES11-SP1-Updates for sle-11-s390x","enabled":true,"id":691,"autorefresh":true,"distro_target":"sle-11-s390x","url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-Updates/sle-11-s390x/"},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Pool/sle-11-s390x/","autorefresh":true,"distro_target":"sle-11-s390x","id":692,"enabled":false,"description":"SLE11-SP1-Debuginfo-Pool for sle-11-s390x","name":"SLE11-SP1-Debuginfo-Pool","installer_updates":false},{"url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-Updates/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true,"id":705,"enabled":true,"description":"SLES11-SP1-Updates for sle-11-x86_64","installer_updates":false,"name":"SLES11-SP1-Updates"},{"name":"SLE11-SP1-Debuginfo-Pool","installer_updates":false,"description":"SLE11-SP1-Debuginfo-Pool for sle-11-x86_64","id":707,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Pool/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64"},{"description":"SLES11-SP1-Pool for sle-11-x86_64","name":"SLES11-SP1-Pool","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-Pool/sle-11-x86_64/","enabled":true,"id":711},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Updates/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64","id":715,"enabled":false,"description":"SLE11-SP1-Debuginfo-Updates for sle-11-x86_64","name":"SLE11-SP1-Debuginfo-Updates","installer_updates":false},{"url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-Pool/sle-11-ppc64/","distro_target":"sle-11-ppc64","autorefresh":true,"id":919,"enabled":true,"description":"SLES11-SP1-Pool for sle-11-ppc64","installer_updates":false,"name":"SLES11-SP1-Pool"},{"enabled":true,"id":922,"autorefresh":true,"distro_target":"sle-11-ppc64","url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-Updates/sle-11-ppc64/","name":"SLES11-SP1-Updates","installer_updates":false,"description":"SLES11-SP1-Updates for sle-11-ppc64"},{"description":"SLE11-SP1-Debuginfo-Updates for sle-11-ppc64","name":"SLE11-SP1-Debuginfo-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-ppc64","url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Updates/sle-11-ppc64/","enabled":false,"id":924},{"id":925,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Pool/sle-11-ppc64/","autorefresh":true,"distro_target":"sle-11-ppc64","name":"SLE11-SP1-Debuginfo-Pool","installer_updates":false,"description":"SLE11-SP1-Debuginfo-Pool for sle-11-ppc64"},{"name":"SLE11-SP1-Debuginfo-Pool","installer_updates":false,"description":"SLE11-SP1-Debuginfo-Pool for sle-11-ia64","id":970,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Pool/sle-11-ia64/","autorefresh":true,"distro_target":"sle-11-ia64"},{"name":"SLE11-SP1-Debuginfo-Updates","installer_updates":false,"description":"SLE11-SP1-Debuginfo-Updates for sle-11-ia64","id":971,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Updates/sle-11-ia64/","autorefresh":true,"distro_target":"sle-11-ia64"},{"installer_updates":false,"name":"SLES11-SP1-Updates","description":"SLES11-SP1-Updates for sle-11-ia64","enabled":true,"id":987,"distro_target":"sle-11-ia64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-Updates/sle-11-ia64/"},{"url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-Pool/sle-11-ia64/","autorefresh":true,"distro_target":"sle-11-ia64","id":991,"enabled":true,"description":"SLES11-SP1-Pool for sle-11-ia64","name":"SLES11-SP1-Pool","installer_updates":false},{"url":"https://updates.suse.com/repo/$RCE/SLE11-StudioOnsite-1.1-Instrumentation/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true,"id":1088,"enabled":true,"description":"SLE11-StudioOnsite-1.1-Instrumentation for sle-11-x86_64","installer_updates":false,"name":"SLE11-StudioOnsite-1.1-Instrumentation"},{"description":"SLE11-StudioOnsite-1.1-Updates for sle-11-x86_64","installer_updates":false,"name":"SLE11-StudioOnsite-1.1-Updates","url":"https://updates.suse.com/repo/$RCE/SLE11-StudioOnsite-1.1-Updates/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true,"id":1089,"enabled":true},{"description":"SLE11-StudioOnsite-1.1-Pool for sle-11-x86_64","name":"SLE11-StudioOnsite-1.1-Pool","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE11-StudioOnsite-1.1-Pool/sle-11-x86_64/","enabled":true,"id":1090}],"product_class":"STUDIOONSITE","predecessor_ids":[]},{"cpe":null,"product_type":"extension","predecessor_ids":[],"repositories":[{"url":"https://updates.suse.com/repo/$RCE/SUSE-Cloud-1.0-Pool/sle-11-x86_64/","autorefresh":false,"distro_target":"sle-11-x86_64","id":1102,"enabled":true,"description":"SUSE-Cloud-1.0-Pool for sle-11-x86_64","name":"SUSE-Cloud-1.0-Pool","installer_updates":false},{"id":1103,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SUSE-Cloud-1.0-Updates/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true,"installer_updates":false,"name":"SUSE-Cloud-1.0-Updates","description":"SUSE-Cloud-1.0-Updates for sle-11-x86_64"}],"online_predecessor_ids":[],"product_class":"SUSE_CLOUD","eula_url":"","arch":"x86_64","description":null,"shortname":null,"free":false,"extensions":[],"identifier":"SUSE-Cloud","release_stage":"released","id":1090,"friendly_version":"1.0","name":"SUSE Cloud","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"SUSE Cloud 1.0 x86_64","release_type":null,"former_identifier":"SUSE-Cloud","recommended":false,"version":"1.0"},{"offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Subscription Management Tool","release_type":null,"former_identifier":"sle-smt","friendly_name":"SUSE Linux Enterprise Subscription Management Tool 11 SP1","migration_extra":false,"recommended":false,"version":"11.1","extensions":[],"release_stage":"released","identifier":"sle-smt","id":1192,"friendly_version":"11 SP1","eula_url":"","arch":null,"free":true,"shortname":null,"description":null,"product_type":"extension","cpe":null,"predecessor_ids":[],"online_predecessor_ids":[],"product_class":"SLESMT","repositories":[{"distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-SMT-Updates/sle-11-x86_64/","enabled":true,"id":1386,"description":"SLE11-SP1-SMT-Updates for sle-11-x86_64","installer_updates":false,"name":"SLE11-SP1-SMT-Updates"},{"description":"SLE11-SP1-SMT-Pool for sle-11-s390x","installer_updates":false,"name":"SLE11-SP1-SMT-Pool","distro_target":"sle-11-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-SMT-Pool/sle-11-s390x/","enabled":true,"id":1387},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-SMT-Pool/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true,"id":1388,"enabled":true,"description":"SLE11-SP1-SMT-Pool for sle-11-x86_64","installer_updates":false,"name":"SLE11-SP1-SMT-Pool"},{"description":"SLE11-SP1-SMT-Updates for sle-11-i586","installer_updates":false,"name":"SLE11-SP1-SMT-Updates","distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-SMT-Updates/sle-11-i586/","enabled":true,"id":1389},{"distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-SMT-Pool/sle-11-i586/","enabled":true,"id":1390,"description":"SLE11-SP1-SMT-Pool for sle-11-i586","installer_updates":false,"name":"SLE11-SP1-SMT-Pool"},{"id":1391,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-SMT-Updates/sle-11-s390x/","autorefresh":true,"distro_target":"sle-11-s390x","name":"SLE11-SP1-SMT-Updates","installer_updates":false,"description":"SLE11-SP1-SMT-Updates for sle-11-s390x"}]}],"release_stage":"released","id":724,"identifier":"SUSE_SLES-SP2-migration","friendly_version":"11 SP1","name":"SUSE Linux Enterprise Server","offline_predecessor_ids":[],"friendly_name":"SUSE Linux Enterprise Server 11 SP1 x86_64 (Migration)","migration_extra":false,"release_type":null,"former_identifier":"SUSE_SLES-SP2-migration","recommended":false,"version":"11.1"},{"arch":"i686","eula_url":"","free":false,"description":null,"shortname":null,"product_type":"base","cpe":"cpe:/o:suse:suse_sles:11:sp3","repositories":[{"enabled":false,"id":679,"distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-Extras/sle-11-i586/","installer_updates":false,"name":"SLES11-Extras","description":"SLES11-Extras for sle-11-i586"},{"installer_updates":false,"name":"SLE11-SP1-Debuginfo-Pool","description":"SLE11-SP1-Debuginfo-Pool for sle-11-i586","enabled":false,"id":680,"distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Pool/sle-11-i586/"},{"description":"SLE11-SP1-Debuginfo-Updates for sle-11-i586","installer_updates":false,"name":"SLE11-SP1-Debuginfo-Updates","distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Updates/sle-11-i586/","enabled":false,"id":682},{"url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-Updates/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true,"id":684,"enabled":false,"description":"SLES11-SP1-Updates for sle-11-i586","installer_updates":false,"name":"SLES11-SP1-Updates"},{"description":"SLES11-SP1-Pool for sle-11-i586","name":"SLES11-SP1-Pool","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-Pool/sle-11-i586/","enabled":false,"id":686},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-Debuginfo-Core/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","id":717,"enabled":false,"description":"SLE11-SP2-Debuginfo-Core for sle-11-i586","name":"SLE11-SP2-Debuginfo-Core","installer_updates":false},{"enabled":false,"id":719,"distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-Debuginfo-Updates/sle-11-i586/","installer_updates":false,"name":"SLE11-SP2-Debuginfo-Updates","description":"SLE11-SP2-Debuginfo-Updates for sle-11-i586"},{"description":"SLES11-SP2-Updates for sle-11-i586","name":"SLES11-SP2-Updates","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP2-Updates/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","id":720,"enabled":false},{"description":"SLES11-SP2-Core for sle-11-i586","name":"SLES11-SP2-Core","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLES11-SP2-Core/sle-11-i586/","enabled":false,"id":722},{"name":"SLES11-SP3-Extension-Store","installer_updates":false,"description":"SLES11-SP3-Extension-Store for sle-11-i586","enabled":false,"id":758,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLES11-SP3-Extension-Store/sle-11-i586/"},{"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-SP3-Debuginfo-Updates/sle-11-i586/","enabled":false,"id":759,"description":"SLE11-SP3-Debuginfo-Updates for sle-11-i586","name":"SLE11-SP3-Debuginfo-Updates","installer_updates":false},{"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLES11-SP3-Pool/sle-11-i586/","enabled":true,"id":760,"description":"SLES11-SP3-Pool for sle-11-i586","name":"SLES11-SP3-Pool","installer_updates":false},{"description":"SLES11-SP2-Extension-Store for sle-11-i586","name":"SLES11-SP2-Extension-Store","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLES11-SP2-Extension-Store/sle-11-i586/","enabled":false,"id":761},{"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLES11-SP3-Updates/sle-11-i586/","enabled":true,"id":762,"description":"SLES11-SP3-Updates for sle-11-i586","name":"SLES11-SP3-Updates","installer_updates":false},{"name":"SLE11-SP3-Debuginfo-Pool","installer_updates":false,"description":"SLE11-SP3-Debuginfo-Pool for sle-11-i586","enabled":false,"id":763,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-SP3-Debuginfo-Pool/sle-11-i586/"},{"name":"SLE11-Security-Module","installer_updates":false,"description":"SLE11-Security-Module for sle-11-i586","id":1379,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-Security-Module/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586"},{"enabled":false,"id":1776,"distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-Public-Cloud-Module/sle-11-i586/","installer_updates":false,"name":"SLE11-Public-Cloud-Module","description":"SLE11-Public-Cloud-Module for sle-11-i586"},{"url":"https://updates.suse.com/repo/$RCE/SLES11-SP3-LTSS-Updates/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","id":1966,"enabled":true,"description":"SLES11-SP3-LTSS-Updates for sle-11-i586","name":"SLES11-SP3-LTSS-Updates","installer_updates":false}],"online_predecessor_ids":[],"product_class":"7261","predecessor_ids":[],"release_type":null,"former_identifier":"SUSE_SLES","migration_extra":false,"friendly_name":"SUSE Linux Enterprise Server 11 SP3 i686","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Server","version":"11.3","recommended":false,"release_stage":"released","id":725,"identifier":"SUSE_SLES","extensions":[{"offline_predecessor_ids":[],"name":"SUSE Linux Enterprise High Availability Extension","release_type":null,"former_identifier":"sle-hae","friendly_name":"SUSE Linux Enterprise High Availability Extension 11 SP3 i686","migration_extra":false,"recommended":false,"version":"11.3","extensions":[{"predecessor_ids":[],"online_predecessor_ids":[],"repositories":[{"enabled":true,"id":1117,"distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-GEO-SP3-Updates/sle-11-i586/","installer_updates":false,"name":"SLE11-HAE-GEO-SP3-Updates","description":"SLE11-HAE-GEO-SP3-Updates for sle-11-i586"}],"product_class":"SLE-HAE-GEO","cpe":null,"product_type":"extension","description":null,"shortname":null,"free":false,"eula_url":"","arch":"i686","friendly_version":"11 SP3","extensions":[],"release_stage":"released","identifier":"sle-haegeo","id":1104,"recommended":false,"version":"11.3","name":"Geo Clustering for SUSE Linux Enterprise High Availability Extension","offline_predecessor_ids":[],"friendly_name":"Geo Clustering for SUSE Linux Enterprise High Availability Extension 11 SP3 i686","migration_extra":false,"release_type":null,"former_identifier":"sle-haegeo"}],"release_stage":"released","id":985,"identifier":"sle-hae","friendly_version":"11 SP3","eula_url":"","arch":"i686","free":false,"shortname":null,"description":null,"product_type":"extension","cpe":null,"predecessor_ids":[],"product_class":"SLE-HAE-X86","online_predecessor_ids":[],"repositories":[{"installer_updates":false,"name":"SLE11-HAE-SP3-Pool","description":"SLE11-HAE-SP3-Pool for sle-11-i586","id":951,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP3-Pool/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true},{"url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP3-Updates/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","id":952,"enabled":true,"description":"SLE11-HAE-SP3-Updates for sle-11-i586","name":"SLE11-HAE-SP3-Updates","installer_updates":false}]},{"identifier":"sle-sdk","release_stage":"released","id":1161,"extensions":[],"friendly_version":"11 SP3","former_identifier":"sle-sdk","release_type":null,"friendly_name":"SUSE Linux Enterprise Software Development Kit 11 SP3","migration_extra":false,"offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Software Development Kit","version":"11.3","recommended":false,"product_type":"extension","cpe":null,"product_class":"SLE-SDK","online_predecessor_ids":[],"repositories":[{"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Updates/sle-11-ia64/","distro_target":"sle-11-ia64","autorefresh":true,"id":1257,"enabled":false,"description":"SLE11-SDK-SP1-Updates for sle-11-ia64","installer_updates":false,"name":"SLE11-SDK-SP1-Updates"},{"enabled":false,"id":1258,"autorefresh":true,"distro_target":"sle-11-ia64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-ia64/","name":"SLE11-SDK-SP1-Pool","installer_updates":false,"description":"SLE11-SDK-SP1-Pool for sle-11-ia64"},{"enabled":false,"id":1259,"autorefresh":true,"distro_target":"sle-11-s390x","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-s390x/","name":"SLE11-SDK-SP1-Pool","installer_updates":false,"description":"SLE11-SDK-SP1-Pool for sle-11-s390x"},{"description":"SLE11-SDK-SP1-Updates for sle-11-ppc64","installer_updates":false,"name":"SLE11-SDK-SP1-Updates","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Updates/sle-11-ppc64/","distro_target":"sle-11-ppc64","autorefresh":true,"id":1260,"enabled":false},{"name":"SLE11-SDK-SP1-Pool","installer_updates":false,"description":"SLE11-SDK-SP1-Pool for sle-11-ppc64","id":1261,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-ppc64/","autorefresh":true,"distro_target":"sle-11-ppc64"},{"enabled":false,"id":1262,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Updates/sle-11-i586/","name":"SLE11-SDK-SP1-Updates","installer_updates":false,"description":"SLE11-SDK-SP1-Updates for sle-11-i586"},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true,"id":1263,"enabled":false,"description":"SLE11-SDK-SP1-Pool for sle-11-i586","installer_updates":false,"name":"SLE11-SDK-SP1-Pool"},{"name":"SLE11-SDK-SP1-Pool","installer_updates":false,"description":"SLE11-SDK-SP1-Pool for sle-11-x86_64","id":1264,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64"},{"description":"SLE11-SDK-SP1-Updates for sle-11-x86_64","installer_updates":false,"name":"SLE11-SDK-SP1-Updates","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Updates/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true,"id":1265,"enabled":false},{"description":"SLE11-SDK-SP1-Updates for sle-11-s390x","name":"SLE11-SDK-SP1-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-s390x","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Updates/sle-11-s390x/","enabled":false,"id":1266},{"installer_updates":false,"name":"SLE11-SDK-SP2-Core","description":"SLE11-SDK-SP2-Core for sle-11-ia64","id":1267,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-ia64/","distro_target":"sle-11-ia64","autorefresh":true},{"name":"SLE11-SDK-SP2-Core","installer_updates":false,"description":"SLE11-SDK-SP2-Core for sle-11-s390x","enabled":false,"id":1268,"autorefresh":true,"distro_target":"sle-11-s390x","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-s390x/"},{"id":1269,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-s390x/","distro_target":"sle-11-s390x","autorefresh":true,"installer_updates":false,"name":"SLE11-SDK-SP2-Updates","description":"SLE11-SDK-SP2-Updates for sle-11-s390x"},{"name":"SLE11-SDK-SP2-Updates","installer_updates":false,"description":"SLE11-SDK-SP2-Updates for sle-11-ppc64","id":1270,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-ppc64/","autorefresh":true,"distro_target":"sle-11-ppc64"},{"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-i586/","enabled":false,"id":1271,"description":"SLE11-SDK-SP2-Updates for sle-11-i586","name":"SLE11-SDK-SP2-Updates","installer_updates":false},{"installer_updates":false,"name":"SLE11-SDK-SP2-Updates","description":"SLE11-SDK-SP2-Updates for sle-11-ia64","enabled":false,"id":1272,"distro_target":"sle-11-ia64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-ia64/"},{"name":"SLE11-SDK-SP2-Core","installer_updates":false,"description":"SLE11-SDK-SP2-Core for sle-11-ppc64","enabled":false,"id":1273,"autorefresh":true,"distro_target":"sle-11-ppc64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-ppc64/"},{"description":"SLE11-SDK-SP2-Core for sle-11-i586","installer_updates":false,"name":"SLE11-SDK-SP2-Core","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true,"id":1274,"enabled":false},{"distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-x86_64/","enabled":false,"id":1275,"description":"SLE11-SDK-SP2-Core for sle-11-x86_64","installer_updates":false,"name":"SLE11-SDK-SP2-Core"},{"installer_updates":false,"name":"SLE11-SDK-SP2-Updates","description":"SLE11-SDK-SP2-Updates for sle-11-x86_64","id":1276,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true},{"installer_updates":false,"name":"SLE11-SDK-SP3-Pool","description":"SLE11-SDK-SP3-Pool for sle-11-i586","enabled":true,"id":1277,"distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Pool/sle-11-i586/"},{"id":1278,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Pool/sle-11-ia64/","autorefresh":true,"distro_target":"sle-11-ia64","name":"SLE11-SDK-SP3-Pool","installer_updates":false,"description":"SLE11-SDK-SP3-Pool for sle-11-ia64"},{"autorefresh":true,"distro_target":"sle-11-ppc64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Updates/sle-11-ppc64/","enabled":true,"id":1279,"description":"SLE11-SDK-SP3-Updates for sle-11-ppc64","name":"SLE11-SDK-SP3-Updates","installer_updates":false},{"description":"SLE11-SDK-SP3-Updates for sle-11-ia64","name":"SLE11-SDK-SP3-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-ia64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Updates/sle-11-ia64/","enabled":true,"id":1280},{"enabled":true,"id":1281,"distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Pool/sle-11-x86_64/","installer_updates":false,"name":"SLE11-SDK-SP3-Pool","description":"SLE11-SDK-SP3-Pool for sle-11-x86_64"},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Updates/sle-11-s390x/","autorefresh":true,"distro_target":"sle-11-s390x","id":1282,"enabled":true,"description":"SLE11-SDK-SP3-Updates for sle-11-s390x","name":"SLE11-SDK-SP3-Updates","installer_updates":false},{"name":"SLE11-SDK-SP3-Pool","installer_updates":false,"description":"SLE11-SDK-SP3-Pool for sle-11-ppc64","id":1283,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Pool/sle-11-ppc64/","autorefresh":true,"distro_target":"sle-11-ppc64"},{"name":"SLE11-SDK-SP3-Updates","installer_updates":false,"description":"SLE11-SDK-SP3-Updates for sle-11-x86_64","enabled":true,"id":1284,"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Updates/sle-11-x86_64/"},{"description":"SLE11-SDK-SP3-Updates for sle-11-i586","name":"SLE11-SDK-SP3-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Updates/sle-11-i586/","enabled":true,"id":1285},{"name":"SLE11-SDK-SP3-Pool","installer_updates":false,"description":"SLE11-SDK-SP3-Pool for sle-11-s390x","id":1286,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Pool/sle-11-s390x/","autorefresh":true,"distro_target":"sle-11-s390x"}],"predecessor_ids":[],"arch":null,"eula_url":"","free":true,"description":null,"shortname":null},{"friendly_version":"11 SP2","identifier":"sle-sdk-SP3-migration","release_stage":"released","id":1164,"extensions":[],"version":"11.2","recommended":false,"release_type":null,"former_identifier":"sle-sdk-SP3-migration","migration_extra":false,"friendly_name":"SUSE Linux Enterprise Software Development Kit 11 SP2 (Migration)","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Software Development Kit","repositories":[{"description":"SLE11-SDK-SP3-Pool for sle-11-i586","installer_updates":false,"name":"SLE11-SDK-SP3-Pool","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Pool/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true,"id":1277,"enabled":true},{"description":"SLE11-SDK-SP3-Pool for sle-11-ia64","name":"SLE11-SDK-SP3-Pool","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Pool/sle-11-ia64/","autorefresh":true,"distro_target":"sle-11-ia64","id":1278,"enabled":true},{"enabled":true,"id":1279,"autorefresh":true,"distro_target":"sle-11-ppc64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Updates/sle-11-ppc64/","name":"SLE11-SDK-SP3-Updates","installer_updates":false,"description":"SLE11-SDK-SP3-Updates for sle-11-ppc64"},{"description":"SLE11-SDK-SP3-Updates for sle-11-ia64","installer_updates":false,"name":"SLE11-SDK-SP3-Updates","distro_target":"sle-11-ia64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Updates/sle-11-ia64/","enabled":true,"id":1280},{"description":"SLE11-SDK-SP3-Pool for sle-11-x86_64","name":"SLE11-SDK-SP3-Pool","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Pool/sle-11-x86_64/","enabled":true,"id":1281},{"description":"SLE11-SDK-SP3-Updates for sle-11-s390x","installer_updates":false,"name":"SLE11-SDK-SP3-Updates","distro_target":"sle-11-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Updates/sle-11-s390x/","enabled":true,"id":1282},{"name":"SLE11-SDK-SP3-Pool","installer_updates":false,"description":"SLE11-SDK-SP3-Pool for sle-11-ppc64","id":1283,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Pool/sle-11-ppc64/","autorefresh":true,"distro_target":"sle-11-ppc64"},{"enabled":true,"id":1284,"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Updates/sle-11-x86_64/","name":"SLE11-SDK-SP3-Updates","installer_updates":false,"description":"SLE11-SDK-SP3-Updates for sle-11-x86_64"},{"description":"SLE11-SDK-SP3-Updates for sle-11-i586","installer_updates":false,"name":"SLE11-SDK-SP3-Updates","distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Updates/sle-11-i586/","enabled":true,"id":1285},{"autorefresh":true,"distro_target":"sle-11-s390x","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Pool/sle-11-s390x/","enabled":true,"id":1286,"description":"SLE11-SDK-SP3-Pool for sle-11-s390x","name":"SLE11-SDK-SP3-Pool","installer_updates":false}],"online_predecessor_ids":[],"product_class":"SLE-SDK","predecessor_ids":[],"product_type":"extension","cpe":null,"free":true,"shortname":null,"description":null,"arch":null,"eula_url":""},{"product_type":"extension","cpe":null,"product_class":"SLESMT","online_predecessor_ids":[],"repositories":[{"id":1405,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP3-Updates/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64","name":"SLE11-SMT-SP3-Updates","installer_updates":false,"description":"SLE11-SMT-SP3-Updates for sle-11-x86_64"},{"description":"SLE11-SMT-SP3-Updates for sle-11-i586","name":"SLE11-SMT-SP3-Updates","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP3-Updates/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","id":1406,"enabled":true},{"autorefresh":true,"distro_target":"sle-11-s390x","url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP3-Updates/sle-11-s390x/","enabled":true,"id":1407,"description":"SLE11-SMT-SP3-Updates for sle-11-s390x","name":"SLE11-SMT-SP3-Updates","installer_updates":false},{"installer_updates":false,"name":"SLE11-SMT-SP3-Pool","description":"SLE11-SMT-SP3-Pool for sle-11-s390x","id":1408,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP3-Pool/sle-11-s390x/","distro_target":"sle-11-s390x","autorefresh":true},{"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP3-Pool/sle-11-x86_64/","enabled":true,"id":1409,"description":"SLE11-SMT-SP3-Pool for sle-11-x86_64","name":"SLE11-SMT-SP3-Pool","installer_updates":false},{"enabled":true,"id":1410,"distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP3-Pool/sle-11-i586/","installer_updates":false,"name":"SLE11-SMT-SP3-Pool","description":"SLE11-SMT-SP3-Pool for sle-11-i586"}],"predecessor_ids":[],"arch":null,"eula_url":"","free":true,"shortname":null,"description":null,"release_stage":"released","id":1198,"identifier":"sle-smt","extensions":[],"friendly_version":"11 SP3","release_type":null,"former_identifier":"sle-smt","migration_extra":false,"friendly_name":"SUSE Linux Enterprise Subscription Management Tool 11 SP3","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Subscription Management Tool","version":"11.3","recommended":false},{"cpe":null,"product_type":"extension","predecessor_ids":[],"repositories":[{"id":1408,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP3-Pool/sle-11-s390x/","distro_target":"sle-11-s390x","autorefresh":true,"installer_updates":false,"name":"SLE11-SMT-SP3-Pool","description":"SLE11-SMT-SP3-Pool for sle-11-s390x"},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP3-Pool/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true,"id":1409,"enabled":true,"description":"SLE11-SMT-SP3-Pool for sle-11-x86_64","installer_updates":false,"name":"SLE11-SMT-SP3-Pool"},{"installer_updates":false,"name":"SLE11-SMT-SP3-Pool","description":"SLE11-SMT-SP3-Pool for sle-11-i586","enabled":true,"id":1410,"distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP3-Pool/sle-11-i586/"}],"online_predecessor_ids":[],"product_class":"SLESMT","eula_url":"","arch":null,"description":null,"shortname":null,"free":true,"extensions":[],"release_stage":"released","identifier":"sle-smt-SP3-migration","id":1199,"friendly_version":"11 SP2","name":"SUSE Linux Enterprise Subscription Management Tool","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Subscription Management Tool 11 SP2 (Migration)","former_identifier":"sle-smt-SP3-migration","release_type":null,"recommended":false,"version":"11.2"},{"recommended":false,"version":"1.3","name":"SUSE WebYaST","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"SUSE WebYaST 1.3","release_type":null,"former_identifier":"sle-11-WebYaST","friendly_version":"1.3","extensions":[],"identifier":"sle-11-WebYaST","release_stage":"released","id":1206,"description":null,"shortname":null,"free":true,"eula_url":"","arch":null,"predecessor_ids":[],"product_class":"WEBYAST","online_predecessor_ids":[],"repositories":[{"url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-WebYaST-1.3-Pool/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true,"id":1185,"enabled":true,"description":"SLE11-SP2-WebYaST-1.3-Pool for sle-11-x86_64","installer_updates":false,"name":"SLE11-SP2-WebYaST-1.3-Pool"},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-WebYaST-1.3-Updates/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true,"id":1188,"enabled":true,"description":"SLE11-SP2-WebYaST-1.3-Updates for sle-11-x86_64","installer_updates":false,"name":"SLE11-SP2-WebYaST-1.3-Updates"},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-WebYaST-1.3-Pool/sle-11-s390x/","distro_target":"sle-11-s390x","autorefresh":true,"id":1411,"enabled":true,"description":"SLE11-SP2-WebYaST-1.3-Pool for sle-11-s390x","installer_updates":false,"name":"SLE11-SP2-WebYaST-1.3-Pool"},{"installer_updates":false,"name":"SLE11-SP2-WebYaST-1.3-Updates","description":"SLE11-SP2-WebYaST-1.3-Updates for sle-11-s390x","enabled":true,"id":1412,"distro_target":"sle-11-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-WebYaST-1.3-Updates/sle-11-s390x/"},{"installer_updates":false,"name":"SLE11-SP2-WebYaST-1.3-Updates","description":"SLE11-SP2-WebYaST-1.3-Updates for sle-11-i586","enabled":true,"id":1413,"distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-WebYaST-1.3-Updates/sle-11-i586/"},{"description":"SLE11-SP2-WebYaST-1.3-Pool for sle-11-ppc64","installer_updates":false,"name":"SLE11-SP2-WebYaST-1.3-Pool","url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-WebYaST-1.3-Pool/sle-11-ppc64/","distro_target":"sle-11-ppc64","autorefresh":true,"id":1414,"enabled":true},{"id":1415,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-WebYaST-1.3-Updates/sle-11-ia64/","autorefresh":true,"distro_target":"sle-11-ia64","name":"SLE11-SP2-WebYaST-1.3-Updates","installer_updates":false,"description":"SLE11-SP2-WebYaST-1.3-Updates for sle-11-ia64"},{"description":"SLE11-SP2-WebYaST-1.3-Pool for sle-11-ia64","installer_updates":false,"name":"SLE11-SP2-WebYaST-1.3-Pool","distro_target":"sle-11-ia64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-WebYaST-1.3-Pool/sle-11-ia64/","enabled":true,"id":1416},{"description":"SLE11-SP2-WebYaST-1.3-Pool for sle-11-i586","name":"SLE11-SP2-WebYaST-1.3-Pool","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-WebYaST-1.3-Pool/sle-11-i586/","enabled":true,"id":1417},{"id":1418,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-WebYaST-1.3-Updates/sle-11-ppc64/","autorefresh":true,"distro_target":"sle-11-ppc64","name":"SLE11-SP2-WebYaST-1.3-Updates","installer_updates":false,"description":"SLE11-SP2-WebYaST-1.3-Updates for sle-11-ppc64"}],"cpe":null,"product_type":"extension"},{"friendly_version":"11 SP3","extensions":[{"eula_url":"","arch":"i686","free":false,"description":null,"shortname":null,"product_type":"extension","cpe":null,"predecessor_ids":[],"repositories":[{"enabled":true,"id":1117,"distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-GEO-SP3-Updates/sle-11-i586/","installer_updates":false,"name":"SLE11-HAE-GEO-SP3-Updates","description":"SLE11-HAE-GEO-SP3-Updates for sle-11-i586"}],"online_predecessor_ids":[],"product_class":"SLE-HAE-GEO","offline_predecessor_ids":[],"name":"Geo Clustering for SUSE Linux Enterprise High Availability Extension","former_identifier":"sle-haegeo","release_type":null,"friendly_name":"Geo Clustering for SUSE Linux Enterprise High Availability Extension 11 SP3 i686","migration_extra":false,"recommended":false,"version":"11.3","extensions":[],"release_stage":"released","id":1104,"identifier":"sle-haegeo","friendly_version":"11 SP3"}],"identifier":"sle-hae-SP4-migration","release_stage":"released","id":1276,"recommended":false,"version":"11.3","name":"SUSE Linux Enterprise High Availability Extension","offline_predecessor_ids":[],"friendly_name":"SUSE Linux Enterprise High Availability Extension 11 SP3 i686 (Migration)","migration_extra":false,"release_type":null,"former_identifier":"sle-hae-SP4-migration","predecessor_ids":[],"repositories":[{"installer_updates":false,"name":"SLE11-HAE-SP4-Pool","description":"SLE11-HAE-SP4-Pool for sle-11-i586","enabled":true,"id":1747,"distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP4-Pool/sle-11-i586/"},{"name":"SLE11-HAE-SP4-Updates","installer_updates":false,"description":"SLE11-HAE-SP4-Updates for sle-11-i586","id":1749,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP4-Updates/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586"}],"online_predecessor_ids":[],"product_class":"SLE-HAE-X86","cpe":null,"product_type":"extension","description":null,"shortname":null,"free":false,"eula_url":"","arch":"i686"},{"cpe":null,"product_type":"extension","predecessor_ids":[],"online_predecessor_ids":[],"repositories":[{"description":"SLE11-SDK-SP1-Updates for sle-11-ia64","name":"SLE11-SDK-SP1-Updates","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Updates/sle-11-ia64/","autorefresh":true,"distro_target":"sle-11-ia64","id":1257,"enabled":false},{"name":"SLE11-SDK-SP1-Pool","installer_updates":false,"description":"SLE11-SDK-SP1-Pool for sle-11-ia64","id":1258,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-ia64/","autorefresh":true,"distro_target":"sle-11-ia64"},{"id":1259,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-s390x/","distro_target":"sle-11-s390x","autorefresh":true,"installer_updates":false,"name":"SLE11-SDK-SP1-Pool","description":"SLE11-SDK-SP1-Pool for sle-11-s390x"},{"description":"SLE11-SDK-SP1-Updates for sle-11-ppc64","installer_updates":false,"name":"SLE11-SDK-SP1-Updates","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Updates/sle-11-ppc64/","distro_target":"sle-11-ppc64","autorefresh":true,"id":1260,"enabled":false},{"enabled":false,"id":1261,"autorefresh":true,"distro_target":"sle-11-ppc64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-ppc64/","name":"SLE11-SDK-SP1-Pool","installer_updates":false,"description":"SLE11-SDK-SP1-Pool for sle-11-ppc64"},{"name":"SLE11-SDK-SP1-Updates","installer_updates":false,"description":"SLE11-SDK-SP1-Updates for sle-11-i586","id":1262,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Updates/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586"},{"installer_updates":false,"name":"SLE11-SDK-SP1-Pool","description":"SLE11-SDK-SP1-Pool for sle-11-i586","enabled":false,"id":1263,"distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-i586/"},{"name":"SLE11-SDK-SP1-Pool","installer_updates":false,"description":"SLE11-SDK-SP1-Pool for sle-11-x86_64","enabled":false,"id":1264,"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-x86_64/"},{"description":"SLE11-SDK-SP1-Updates for sle-11-x86_64","name":"SLE11-SDK-SP1-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Updates/sle-11-x86_64/","enabled":false,"id":1265},{"id":1266,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Updates/sle-11-s390x/","distro_target":"sle-11-s390x","autorefresh":true,"installer_updates":false,"name":"SLE11-SDK-SP1-Updates","description":"SLE11-SDK-SP1-Updates for sle-11-s390x"},{"name":"SLE11-SDK-SP2-Core","installer_updates":false,"description":"SLE11-SDK-SP2-Core for sle-11-ia64","enabled":false,"id":1267,"autorefresh":true,"distro_target":"sle-11-ia64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-ia64/"},{"installer_updates":false,"name":"SLE11-SDK-SP2-Core","description":"SLE11-SDK-SP2-Core for sle-11-s390x","enabled":false,"id":1268,"distro_target":"sle-11-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-s390x/"},{"name":"SLE11-SDK-SP2-Updates","installer_updates":false,"description":"SLE11-SDK-SP2-Updates for sle-11-s390x","enabled":false,"id":1269,"autorefresh":true,"distro_target":"sle-11-s390x","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-s390x/"},{"name":"SLE11-SDK-SP2-Updates","installer_updates":false,"description":"SLE11-SDK-SP2-Updates for sle-11-ppc64","id":1270,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-ppc64/","autorefresh":true,"distro_target":"sle-11-ppc64"},{"description":"SLE11-SDK-SP2-Updates for sle-11-i586","installer_updates":false,"name":"SLE11-SDK-SP2-Updates","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true,"id":1271,"enabled":false},{"enabled":false,"id":1272,"distro_target":"sle-11-ia64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-ia64/","installer_updates":false,"name":"SLE11-SDK-SP2-Updates","description":"SLE11-SDK-SP2-Updates for sle-11-ia64"},{"description":"SLE11-SDK-SP2-Core for sle-11-ppc64","name":"SLE11-SDK-SP2-Core","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-ppc64/","autorefresh":true,"distro_target":"sle-11-ppc64","id":1273,"enabled":false},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true,"id":1274,"enabled":false,"description":"SLE11-SDK-SP2-Core for sle-11-i586","installer_updates":false,"name":"SLE11-SDK-SP2-Core"},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true,"id":1275,"enabled":false,"description":"SLE11-SDK-SP2-Core for sle-11-x86_64","installer_updates":false,"name":"SLE11-SDK-SP2-Core"},{"name":"SLE11-SDK-SP2-Updates","installer_updates":false,"description":"SLE11-SDK-SP2-Updates for sle-11-x86_64","enabled":false,"id":1276,"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-x86_64/"},{"description":"SLE11-SDK-SP3-Pool for sle-11-i586","installer_updates":false,"name":"SLE11-SDK-SP3-Pool","distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Pool/sle-11-i586/","enabled":false,"id":1277},{"name":"SLE11-SDK-SP3-Pool","installer_updates":false,"description":"SLE11-SDK-SP3-Pool for sle-11-ia64","enabled":false,"id":1278,"autorefresh":true,"distro_target":"sle-11-ia64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Pool/sle-11-ia64/"},{"description":"SLE11-SDK-SP3-Updates for sle-11-ppc64","name":"SLE11-SDK-SP3-Updates","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Updates/sle-11-ppc64/","autorefresh":true,"distro_target":"sle-11-ppc64","id":1279,"enabled":false},{"installer_updates":false,"name":"SLE11-SDK-SP3-Updates","description":"SLE11-SDK-SP3-Updates for sle-11-ia64","enabled":false,"id":1280,"distro_target":"sle-11-ia64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Updates/sle-11-ia64/"},{"enabled":false,"id":1281,"distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Pool/sle-11-x86_64/","installer_updates":false,"name":"SLE11-SDK-SP3-Pool","description":"SLE11-SDK-SP3-Pool for sle-11-x86_64"},{"id":1282,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Updates/sle-11-s390x/","autorefresh":true,"distro_target":"sle-11-s390x","name":"SLE11-SDK-SP3-Updates","installer_updates":false,"description":"SLE11-SDK-SP3-Updates for sle-11-s390x"},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Pool/sle-11-ppc64/","autorefresh":true,"distro_target":"sle-11-ppc64","id":1283,"enabled":false,"description":"SLE11-SDK-SP3-Pool for sle-11-ppc64","name":"SLE11-SDK-SP3-Pool","installer_updates":false},{"description":"SLE11-SDK-SP3-Updates for sle-11-x86_64","name":"SLE11-SDK-SP3-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Updates/sle-11-x86_64/","enabled":false,"id":1284},{"distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Updates/sle-11-i586/","enabled":false,"id":1285,"description":"SLE11-SDK-SP3-Updates for sle-11-i586","installer_updates":false,"name":"SLE11-SDK-SP3-Updates"},{"name":"SLE11-SDK-SP3-Pool","installer_updates":false,"description":"SLE11-SDK-SP3-Pool for sle-11-s390x","id":1286,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Pool/sle-11-s390x/","autorefresh":true,"distro_target":"sle-11-s390x"},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP4-Pool/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true,"id":1817,"enabled":true,"description":"SLE11-SDK-SP4-Pool for sle-11-i586","installer_updates":false,"name":"SLE11-SDK-SP4-Pool"},{"enabled":true,"id":1818,"distro_target":"sle-11-ia64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP4-Pool/sle-11-ia64/","installer_updates":false,"name":"SLE11-SDK-SP4-Pool","description":"SLE11-SDK-SP4-Pool for sle-11-ia64"},{"description":"SLE11-SDK-SP4-Pool for sle-11-ppc64","installer_updates":false,"name":"SLE11-SDK-SP4-Pool","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP4-Pool/sle-11-ppc64/","distro_target":"sle-11-ppc64","autorefresh":true,"id":1819,"enabled":true},{"id":1820,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP4-Pool/sle-11-s390x/","distro_target":"sle-11-s390x","autorefresh":true,"installer_updates":false,"name":"SLE11-SDK-SP4-Pool","description":"SLE11-SDK-SP4-Pool for sle-11-s390x"},{"installer_updates":false,"name":"SLE11-SDK-SP4-Pool","description":"SLE11-SDK-SP4-Pool for sle-11-x86_64","enabled":true,"id":1821,"distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP4-Pool/sle-11-x86_64/"},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP4-Updates/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true,"id":1822,"enabled":true,"description":"SLE11-SDK-SP4-Updates for sle-11-i586","installer_updates":false,"name":"SLE11-SDK-SP4-Updates"},{"name":"SLE11-SDK-SP4-Updates","installer_updates":false,"description":"SLE11-SDK-SP4-Updates for sle-11-ia64","id":1823,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP4-Updates/sle-11-ia64/","autorefresh":true,"distro_target":"sle-11-ia64"},{"enabled":true,"id":1824,"autorefresh":true,"distro_target":"sle-11-ppc64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP4-Updates/sle-11-ppc64/","name":"SLE11-SDK-SP4-Updates","installer_updates":false,"description":"SLE11-SDK-SP4-Updates for sle-11-ppc64"},{"name":"SLE11-SDK-SP4-Updates","installer_updates":false,"description":"SLE11-SDK-SP4-Updates for sle-11-s390x","enabled":true,"id":1825,"autorefresh":true,"distro_target":"sle-11-s390x","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP4-Updates/sle-11-s390x/"},{"distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP4-Updates/sle-11-x86_64/","enabled":true,"id":1826,"description":"SLE11-SDK-SP4-Updates for sle-11-x86_64","installer_updates":false,"name":"SLE11-SDK-SP4-Updates"}],"product_class":"SLE-SDK","eula_url":"","arch":null,"description":null,"shortname":null,"free":true,"extensions":[],"id":1318,"release_stage":"released","identifier":"sle-sdk-SP4-migration","friendly_version":"11 SP3","name":"SUSE Linux Enterprise Software Development Kit","offline_predecessor_ids":[],"friendly_name":"SUSE Linux Enterprise Software Development Kit 11 SP3 (Migration)","migration_extra":false,"former_identifier":"sle-sdk-SP4-migration","release_type":null,"recommended":false,"version":"11.3"}],"friendly_version":"11 SP3"},{"version":"10","recommended":false,"friendly_name":"SUSE Linux Enterprise Server 10 i486","migration_extra":false,"former_identifier":"SUSE-Linux-Enterprise-Server-i386","release_type":null,"name":"SUSE Linux Enterprise Server","offline_predecessor_ids":[],"friendly_version":"10","release_stage":"released","id":726,"identifier":"SUSE-Linux-Enterprise-Server-i386","extensions":[{"product_class":"SLE-SDK","online_predecessor_ids":[],"repositories":[{"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sles-10-s390x/","distro_target":"sles-10-s390x","autorefresh":true,"id":1294,"enabled":true,"description":"SLE10-SDK-SP1-Online for sles-10-s390x","installer_updates":false,"name":"SLE10-SDK-SP1-Online"},{"name":"SLE10-SDK-SP1-Online","installer_updates":false,"description":"SLE10-SDK-SP1-Online for sles-10-x86_64","enabled":true,"id":1295,"autorefresh":true,"distro_target":"sles-10-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sles-10-x86_64/"},{"name":"SLE10-SDK-SP1-Online","installer_updates":false,"description":"SLE10-SDK-SP1-Online for sled-10-i586","enabled":true,"id":1296,"autorefresh":true,"distro_target":"sled-10-i586","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sled-10-i586/"},{"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sles-10-ppc/","distro_target":"sles-10-ppc","autorefresh":true,"id":1297,"enabled":true,"description":"SLE10-SDK-SP1-Online for sles-10-ppc","installer_updates":false,"name":"SLE10-SDK-SP1-Online"},{"distro_target":"sles-10-ia64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sles-10-ia64/","enabled":true,"id":1301,"description":"SLE10-SDK-SP1-Online for sles-10-ia64","installer_updates":false,"name":"SLE10-SDK-SP1-Online"},{"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sles-10-i586/","autorefresh":true,"distro_target":"sles-10-i586","id":1303,"enabled":true,"description":"SLE10-SDK-SP1-Online for sles-10-i586","name":"SLE10-SDK-SP1-Online","installer_updates":false},{"name":"SLE10-SDK-SP1-Online","installer_updates":false,"description":"SLE10-SDK-SP1-Online for sled-10-x86_64","enabled":true,"id":1307,"autorefresh":true,"distro_target":"sled-10-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sled-10-x86_64/"}],"predecessor_ids":[],"product_type":"extension","cpe":null,"free":true,"description":null,"shortname":null,"arch":null,"eula_url":"","friendly_version":"10","release_stage":"released","identifier":"SUSE-Linux-Enterprise-SDK-SP1-migration","id":1175,"extensions":[],"version":"10","recommended":false,"former_identifier":"SUSE-Linux-Enterprise-SDK-SP1-migration","release_type":null,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Software Development Kit 10 (Migration)","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Software Development Kit"},{"name":"SUSE Linux Enterprise Software Development Kit","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Software Development Kit 10 online (Migration)","former_identifier":"SUSE-Linux-Enterprise-SDK-SP2-migration","release_type":"online","recommended":false,"version":"10","extensions":[],"release_stage":"released","id":1178,"identifier":"SUSE-Linux-Enterprise-SDK-SP2-migration","friendly_version":"10","eula_url":"","arch":null,"description":null,"shortname":null,"free":true,"cpe":null,"product_type":"extension","predecessor_ids":[],"online_predecessor_ids":[],"repositories":[{"installer_updates":false,"name":"SLE10-SDK-SP2-Online","description":"SLE10-SDK-SP2-Online for sled-10-i586","id":1308,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sled-10-i586/","distro_target":"sled-10-i586","autorefresh":true},{"autorefresh":true,"distro_target":"sles-10-ppc","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sles-10-ppc/","enabled":true,"id":1312,"description":"SLE10-SDK-SP2-Online for sles-10-ppc","name":"SLE10-SDK-SP2-Online","installer_updates":false},{"enabled":true,"id":1313,"autorefresh":true,"distro_target":"sles-10-i586","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sles-10-i586/","name":"SLE10-SDK-SP2-Online","installer_updates":false,"description":"SLE10-SDK-SP2-Online for sles-10-i586"},{"enabled":true,"id":1314,"autorefresh":true,"distro_target":"sled-10-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sled-10-x86_64/","name":"SLE10-SDK-SP2-Online","installer_updates":false,"description":"SLE10-SDK-SP2-Online for sled-10-x86_64"},{"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sles-10-ia64/","autorefresh":true,"distro_target":"sles-10-ia64","id":1316,"enabled":true,"description":"SLE10-SDK-SP2-Online for sles-10-ia64","name":"SLE10-SDK-SP2-Online","installer_updates":false},{"id":1318,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sles-10-s390x/","autorefresh":true,"distro_target":"sles-10-s390x","name":"SLE10-SDK-SP2-Online","installer_updates":false,"description":"SLE10-SDK-SP2-Online for sles-10-s390x"},{"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sles-10-x86_64/","autorefresh":true,"distro_target":"sles-10-x86_64","id":1321,"enabled":true,"description":"SLE10-SDK-SP2-Online for sles-10-x86_64","name":"SLE10-SDK-SP2-Online","installer_updates":false}],"product_class":"SLE-SDK"},{"friendly_version":"10","extensions":[],"release_stage":"released","identifier":"SUSE-Linux-Enterprise-SDK-SP3-migration","id":1180,"recommended":false,"version":"10","name":"SUSE Linux Enterprise Software Development Kit","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Software Development Kit 10 (Migration)","release_type":null,"former_identifier":"SUSE-Linux-Enterprise-SDK-SP3-migration","predecessor_ids":[],"online_predecessor_ids":[],"repositories":[{"enabled":true,"id":1324,"distro_target":"sled-10-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sled-10-i586/","installer_updates":false,"name":"SLE10-SDK-SP3-Online","description":"SLE10-SDK-SP3-Online for sled-10-i586"},{"name":"SLE10-SDK-SP3-Online","installer_updates":false,"description":"SLE10-SDK-SP3-Online for sled-10-x86_64","id":1326,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sled-10-x86_64/","autorefresh":true,"distro_target":"sled-10-x86_64"},{"name":"SLE10-SDK-SP3-Online","installer_updates":false,"description":"SLE10-SDK-SP3-Online for sles-10-ia64","id":1328,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sles-10-ia64/","autorefresh":true,"distro_target":"sles-10-ia64"},{"installer_updates":false,"name":"SLE10-SDK-SP3-Online","description":"SLE10-SDK-SP3-Online for sles-10-i586","id":1330,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sles-10-i586/","distro_target":"sles-10-i586","autorefresh":true},{"installer_updates":false,"name":"SLE10-SDK-SP3-Online","description":"SLE10-SDK-SP3-Online for sles-10-s390x","id":1335,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sles-10-s390x/","distro_target":"sles-10-s390x","autorefresh":true},{"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sles-10-x86_64/","autorefresh":true,"distro_target":"sles-10-x86_64","id":1341,"enabled":true,"description":"SLE10-SDK-SP3-Online for sles-10-x86_64","name":"SLE10-SDK-SP3-Online","installer_updates":false},{"enabled":true,"id":1342,"autorefresh":true,"distro_target":"sles-10-ppc","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sles-10-ppc/","name":"SLE10-SDK-SP3-Online","installer_updates":false,"description":"SLE10-SDK-SP3-Online for sles-10-ppc"}],"product_class":"SLE-SDK","cpe":null,"product_type":"extension","description":null,"shortname":null,"free":true,"eula_url":"","arch":null},{"description":null,"shortname":null,"free":true,"eula_url":"","arch":null,"predecessor_ids":[],"product_class":"SLE-SDK","online_predecessor_ids":[],"repositories":[{"autorefresh":true,"distro_target":"sles-10-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP4-Online/sles-10-x86_64/","enabled":true,"id":1357,"description":"SLE10-SDK-SP4-Online for sles-10-x86_64","name":"SLE10-SDK-SP4-Online","installer_updates":false},{"enabled":true,"id":1358,"autorefresh":true,"distro_target":"sles-10-i586","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP4-Online/sles-10-i586/","name":"SLE10-SDK-SP4-Online","installer_updates":false,"description":"SLE10-SDK-SP4-Online for sles-10-i586"},{"installer_updates":false,"name":"SLE10-SDK-SP4-Online","description":"SLE10-SDK-SP4-Online for sles-10-ia64","id":1359,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP4-Online/sles-10-ia64/","distro_target":"sles-10-ia64","autorefresh":true},{"name":"SLE10-SDK-SP4-Online","installer_updates":false,"description":"SLE10-SDK-SP4-Online for sled-10-x86_64","enabled":true,"id":1360,"autorefresh":true,"distro_target":"sled-10-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP4-Online/sled-10-x86_64/"},{"description":"SLE10-SDK-SP4-Online for sled-10-i586","installer_updates":false,"name":"SLE10-SDK-SP4-Online","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP4-Online/sled-10-i586/","distro_target":"sled-10-i586","autorefresh":true,"id":1361,"enabled":true},{"distro_target":"sles-10-ppc","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP4-Online/sles-10-ppc/","enabled":true,"id":1362,"description":"SLE10-SDK-SP4-Online for sles-10-ppc","installer_updates":false,"name":"SLE10-SDK-SP4-Online"},{"autorefresh":true,"distro_target":"sles-10-s390x","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP4-Online/sles-10-s390x/","enabled":true,"id":1363,"description":"SLE10-SDK-SP4-Online for sles-10-s390x","name":"SLE10-SDK-SP4-Online","installer_updates":false}],"cpe":null,"product_type":"extension","recommended":false,"version":"10","name":"SUSE Linux Enterprise Software Development Kit","offline_predecessor_ids":[],"friendly_name":"SUSE Linux Enterprise Software Development Kit 10 (Migration)","migration_extra":false,"release_type":null,"former_identifier":"SUSE-Linux-Enterprise-SDK-SP4-migration","friendly_version":"10","extensions":[],"release_stage":"released","identifier":"SUSE-Linux-Enterprise-SDK-SP4-migration","id":1182}],"description":null,"shortname":null,"free":false,"arch":"i486","eula_url":"","online_predecessor_ids":[],"repositories":[{"enabled":true,"id":740,"autorefresh":true,"distro_target":"sles-10-i586","url":"https://updates.suse.com/repo/$RCE/SLES10-Updates/sles-10-i586/","name":"SLES10-Updates","installer_updates":false,"description":"SLES10-Updates for sles-10-i586"},{"name":"SLE10-Debuginfo-Updates","installer_updates":false,"description":"SLE10-Debuginfo-Updates for sles-10-i586","id":741,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-Debuginfo-Updates/sles-10-i586/","autorefresh":true,"distro_target":"sles-10-i586"}],"product_class":"7261","predecessor_ids":[],"cpe":null,"product_type":"base"},{"name":"SUSE Linux Enterprise Server","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Server 10 i386 (Migration)","former_identifier":"SUSE-Linux-Enterprise-Server-SP1-migration","release_type":null,"recommended":false,"version":"10","extensions":[],"release_stage":"released","identifier":"SUSE-Linux-Enterprise-Server-SP1-migration","id":727,"friendly_version":"10","eula_url":"","arch":"i386","description":null,"shortname":null,"free":false,"cpe":null,"product_type":"base","predecessor_ids":[],"product_class":"7261","online_predecessor_ids":[],"repositories":[{"distro_target":"sles-10-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLES10-SP1-Online/sles-10-i586/","enabled":true,"id":639,"description":"SLES10-SP1-Online for sles-10-i586","installer_updates":false,"name":"SLES10-SP1-Online"}]},{"version":"10","recommended":false,"friendly_name":"SUSE Linux Enterprise Server 10 s390 (Migration)","migration_extra":false,"former_identifier":"SUSE-Linux-Enterprise-Server-SP1-migration","release_type":null,"name":"SUSE Linux Enterprise Server","offline_predecessor_ids":[],"friendly_version":"10","identifier":"SUSE-Linux-Enterprise-Server-SP1-migration","release_stage":"released","id":728,"extensions":[],"description":null,"shortname":null,"free":false,"arch":"s390","eula_url":"","online_predecessor_ids":[],"product_class":"SLES-Z","repositories":[{"name":"SLES10-SP1-Online","installer_updates":false,"description":"SLES10-SP1-Online for sles-10-s390x","id":650,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLES10-SP1-Online/sles-10-s390x/","autorefresh":true,"distro_target":"sles-10-s390x"}],"predecessor_ids":[],"cpe":null,"product_type":"base"},{"identifier":"SUSE-Linux-Enterprise-Server-SP1","release_stage":"released","id":729,"extensions":[{"friendly_name":"SUSE Linux Enterprise Software Development Kit 10 SP1","migration_extra":false,"former_identifier":"SUSE-Linux-Enterprise-SDK-SP1","release_type":null,"name":"SUSE Linux Enterprise Software Development Kit","offline_predecessor_ids":[],"version":"10","recommended":false,"id":1174,"release_stage":"released","identifier":"SUSE-Linux-Enterprise-SDK-SP1","extensions":[],"friendly_version":"10 SP1","arch":null,"eula_url":"","description":null,"shortname":null,"free":true,"cpe":null,"product_type":"extension","product_class":"SLE-SDK","online_predecessor_ids":[],"repositories":[{"enabled":true,"id":1294,"distro_target":"sles-10-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sles-10-s390x/","installer_updates":false,"name":"SLE10-SDK-SP1-Online","description":"SLE10-SDK-SP1-Online for sles-10-s390x"},{"description":"SLE10-SDK-SP1-Online for sles-10-x86_64","installer_updates":false,"name":"SLE10-SDK-SP1-Online","distro_target":"sles-10-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sles-10-x86_64/","enabled":true,"id":1295},{"enabled":true,"id":1296,"autorefresh":true,"distro_target":"sled-10-i586","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sled-10-i586/","name":"SLE10-SDK-SP1-Online","installer_updates":false,"description":"SLE10-SDK-SP1-Online for sled-10-i586"},{"distro_target":"sles-10-ppc","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sles-10-ppc/","enabled":true,"id":1297,"description":"SLE10-SDK-SP1-Online for sles-10-ppc","installer_updates":false,"name":"SLE10-SDK-SP1-Online"},{"name":"SLE10-SDK-SP1-Updates","installer_updates":false,"description":"SLE10-SDK-SP1-Updates for sles-10-s390x","id":1298,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Updates/sles-10-s390x/","autorefresh":true,"distro_target":"sles-10-s390x"},{"id":1299,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Updates/sled-10-x86_64/","autorefresh":true,"distro_target":"sled-10-x86_64","name":"SLE10-SDK-SP1-Updates","installer_updates":false,"description":"SLE10-SDK-SP1-Updates for sled-10-x86_64"},{"distro_target":"sles-10-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Updates/sles-10-x86_64/","enabled":true,"id":1300,"description":"SLE10-SDK-SP1-Updates for sles-10-x86_64","installer_updates":false,"name":"SLE10-SDK-SP1-Updates"},{"description":"SLE10-SDK-SP1-Online for sles-10-ia64","installer_updates":false,"name":"SLE10-SDK-SP1-Online","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sles-10-ia64/","distro_target":"sles-10-ia64","autorefresh":true,"id":1301,"enabled":true},{"installer_updates":false,"name":"SLE10-SDK-SP1-Updates","description":"SLE10-SDK-SP1-Updates for sled-10-i586","id":1302,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Updates/sled-10-i586/","distro_target":"sled-10-i586","autorefresh":true},{"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sles-10-i586/","distro_target":"sles-10-i586","autorefresh":true,"id":1303,"enabled":true,"description":"SLE10-SDK-SP1-Online for sles-10-i586","installer_updates":false,"name":"SLE10-SDK-SP1-Online"},{"id":1304,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Updates/sles-10-ia64/","autorefresh":true,"distro_target":"sles-10-ia64","name":"SLE10-SDK-SP1-Updates","installer_updates":false,"description":"SLE10-SDK-SP1-Updates for sles-10-ia64"},{"distro_target":"sles-10-ppc","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Updates/sles-10-ppc/","enabled":true,"id":1305,"description":"SLE10-SDK-SP1-Updates for sles-10-ppc","installer_updates":false,"name":"SLE10-SDK-SP1-Updates"},{"description":"SLE10-SDK-SP1-Updates for sles-10-i586","installer_updates":false,"name":"SLE10-SDK-SP1-Updates","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Updates/sles-10-i586/","distro_target":"sles-10-i586","autorefresh":true,"id":1306,"enabled":true},{"description":"SLE10-SDK-SP1-Online for sled-10-x86_64","name":"SLE10-SDK-SP1-Online","installer_updates":false,"autorefresh":true,"distro_target":"sled-10-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sled-10-x86_64/","enabled":true,"id":1307}],"predecessor_ids":[]},{"friendly_version":"10","release_stage":"released","identifier":"SUSE-Linux-Enterprise-SDK-SP1-migration","id":1175,"extensions":[],"version":"10","recommended":false,"former_identifier":"SUSE-Linux-Enterprise-SDK-SP1-migration","release_type":null,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Software Development Kit 10 (Migration)","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Software Development Kit","online_predecessor_ids":[],"product_class":"SLE-SDK","repositories":[{"distro_target":"sles-10-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sles-10-s390x/","enabled":true,"id":1294,"description":"SLE10-SDK-SP1-Online for sles-10-s390x","installer_updates":false,"name":"SLE10-SDK-SP1-Online"},{"distro_target":"sles-10-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sles-10-x86_64/","enabled":true,"id":1295,"description":"SLE10-SDK-SP1-Online for sles-10-x86_64","installer_updates":false,"name":"SLE10-SDK-SP1-Online"},{"description":"SLE10-SDK-SP1-Online for sled-10-i586","name":"SLE10-SDK-SP1-Online","installer_updates":false,"autorefresh":true,"distro_target":"sled-10-i586","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sled-10-i586/","enabled":true,"id":1296},{"description":"SLE10-SDK-SP1-Online for sles-10-ppc","name":"SLE10-SDK-SP1-Online","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sles-10-ppc/","autorefresh":true,"distro_target":"sles-10-ppc","id":1297,"enabled":true},{"description":"SLE10-SDK-SP1-Online for sles-10-ia64","name":"SLE10-SDK-SP1-Online","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sles-10-ia64/","autorefresh":true,"distro_target":"sles-10-ia64","id":1301,"enabled":true},{"id":1303,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sles-10-i586/","autorefresh":true,"distro_target":"sles-10-i586","name":"SLE10-SDK-SP1-Online","installer_updates":false,"description":"SLE10-SDK-SP1-Online for sles-10-i586"},{"distro_target":"sled-10-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sled-10-x86_64/","enabled":true,"id":1307,"description":"SLE10-SDK-SP1-Online for sled-10-x86_64","installer_updates":false,"name":"SLE10-SDK-SP1-Online"}],"predecessor_ids":[],"product_type":"extension","cpe":null,"free":true,"shortname":null,"description":null,"arch":null,"eula_url":""}],"friendly_version":"10 SP1","friendly_name":"SUSE Linux Enterprise Server 10 SP1 i386","migration_extra":false,"release_type":null,"former_identifier":"SUSE-Linux-Enterprise-Server-SP1","name":"SUSE Linux Enterprise Server","offline_predecessor_ids":[],"version":"10","recommended":false,"cpe":null,"product_type":"base","repositories":[{"description":"SLE10-SP1-Debuginfo-Updates for sles-10-i586","installer_updates":false,"name":"SLE10-SP1-Debuginfo-Updates","url":"https://updates.suse.com/repo/$RCE/SLE10-SP1-Debuginfo-Updates/sles-10-i586/","distro_target":"sles-10-i586","autorefresh":true,"id":641,"enabled":false},{"distro_target":"sles-10-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLES10-SP1-LTSS-Updates/sles-10-i586/","enabled":true,"id":642,"description":"SLES10-SP1-LTSS-Updates for sles-10-i586","installer_updates":false,"name":"SLES10-SP1-LTSS-Updates"},{"url":"https://updates.suse.com/repo/$RCE/SLES10-SP1-LTSS-Updates/sles-10-ia64/","autorefresh":true,"distro_target":"sles-10-ia64","id":643,"enabled":true,"description":"SLES10-SP1-LTSS-Updates for sles-10-ia64","name":"SLES10-SP1-LTSS-Updates","installer_updates":false},{"url":"https://updates.suse.com/repo/$RCE/SLES10-SP1-LTSS-Updates/sles-10-s390x/","distro_target":"sles-10-s390x","autorefresh":true,"id":644,"enabled":true,"description":"SLES10-SP1-LTSS-Updates for sles-10-s390x","installer_updates":false,"name":"SLES10-SP1-LTSS-Updates"},{"description":"SLES10-SP1-LTSS-Updates for sles-10-x86_64","installer_updates":false,"name":"SLES10-SP1-LTSS-Updates","url":"https://updates.suse.com/repo/$RCE/SLES10-SP1-LTSS-Updates/sles-10-x86_64/","distro_target":"sles-10-x86_64","autorefresh":true,"id":645,"enabled":true},{"description":"SLES10-SP1-Updates for sles-10-i586","name":"SLES10-SP1-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sles-10-i586","url":"https://updates.suse.com/repo/$RCE/SLES10-SP1-Updates/sles-10-i586/","enabled":true,"id":646},{"installer_updates":false,"name":"SLES10-SP1-LTSS-Updates","description":"SLES10-SP1-LTSS-Updates for sles-10-ppc","enabled":true,"id":647,"distro_target":"sles-10-ppc","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLES10-SP1-LTSS-Updates/sles-10-ppc/"}],"online_predecessor_ids":[],"product_class":"7261","predecessor_ids":[],"arch":"i386","eula_url":"","description":null,"shortname":null,"free":false},{"friendly_version":"10 SP1","extensions":[{"name":"SUSE Linux Enterprise Software Development Kit","offline_predecessor_ids":[],"friendly_name":"SUSE Linux Enterprise Software Development Kit 10 SP1","migration_extra":false,"former_identifier":"SUSE-Linux-Enterprise-SDK-SP1","release_type":null,"recommended":false,"version":"10","extensions":[],"identifier":"SUSE-Linux-Enterprise-SDK-SP1","release_stage":"released","id":1174,"friendly_version":"10 SP1","eula_url":"","arch":null,"shortname":null,"description":null,"free":true,"cpe":null,"product_type":"extension","predecessor_ids":[],"repositories":[{"id":1294,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sles-10-s390x/","autorefresh":true,"distro_target":"sles-10-s390x","name":"SLE10-SDK-SP1-Online","installer_updates":false,"description":"SLE10-SDK-SP1-Online for sles-10-s390x"},{"distro_target":"sles-10-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sles-10-x86_64/","enabled":true,"id":1295,"description":"SLE10-SDK-SP1-Online for sles-10-x86_64","installer_updates":false,"name":"SLE10-SDK-SP1-Online"},{"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sled-10-i586/","autorefresh":true,"distro_target":"sled-10-i586","id":1296,"enabled":true,"description":"SLE10-SDK-SP1-Online for sled-10-i586","name":"SLE10-SDK-SP1-Online","installer_updates":false},{"enabled":true,"id":1297,"autorefresh":true,"distro_target":"sles-10-ppc","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sles-10-ppc/","name":"SLE10-SDK-SP1-Online","installer_updates":false,"description":"SLE10-SDK-SP1-Online for sles-10-ppc"},{"enabled":true,"id":1298,"distro_target":"sles-10-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Updates/sles-10-s390x/","installer_updates":false,"name":"SLE10-SDK-SP1-Updates","description":"SLE10-SDK-SP1-Updates for sles-10-s390x"},{"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Updates/sled-10-x86_64/","autorefresh":true,"distro_target":"sled-10-x86_64","id":1299,"enabled":true,"description":"SLE10-SDK-SP1-Updates for sled-10-x86_64","name":"SLE10-SDK-SP1-Updates","installer_updates":false},{"description":"SLE10-SDK-SP1-Updates for sles-10-x86_64","installer_updates":false,"name":"SLE10-SDK-SP1-Updates","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Updates/sles-10-x86_64/","distro_target":"sles-10-x86_64","autorefresh":true,"id":1300,"enabled":true},{"installer_updates":false,"name":"SLE10-SDK-SP1-Online","description":"SLE10-SDK-SP1-Online for sles-10-ia64","enabled":true,"id":1301,"distro_target":"sles-10-ia64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sles-10-ia64/"},{"installer_updates":false,"name":"SLE10-SDK-SP1-Updates","description":"SLE10-SDK-SP1-Updates for sled-10-i586","enabled":true,"id":1302,"distro_target":"sled-10-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Updates/sled-10-i586/"},{"autorefresh":true,"distro_target":"sles-10-i586","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sles-10-i586/","enabled":true,"id":1303,"description":"SLE10-SDK-SP1-Online for sles-10-i586","name":"SLE10-SDK-SP1-Online","installer_updates":false},{"description":"SLE10-SDK-SP1-Updates for sles-10-ia64","name":"SLE10-SDK-SP1-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sles-10-ia64","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Updates/sles-10-ia64/","enabled":true,"id":1304},{"installer_updates":false,"name":"SLE10-SDK-SP1-Updates","description":"SLE10-SDK-SP1-Updates for sles-10-ppc","id":1305,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Updates/sles-10-ppc/","distro_target":"sles-10-ppc","autorefresh":true},{"description":"SLE10-SDK-SP1-Updates for sles-10-i586","installer_updates":false,"name":"SLE10-SDK-SP1-Updates","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Updates/sles-10-i586/","distro_target":"sles-10-i586","autorefresh":true,"id":1306,"enabled":true},{"description":"SLE10-SDK-SP1-Online for sled-10-x86_64","name":"SLE10-SDK-SP1-Online","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sled-10-x86_64/","autorefresh":true,"distro_target":"sled-10-x86_64","id":1307,"enabled":true}],"online_predecessor_ids":[],"product_class":"SLE-SDK"},{"friendly_version":"10","id":1175,"release_stage":"released","identifier":"SUSE-Linux-Enterprise-SDK-SP1-migration","extensions":[],"version":"10","recommended":false,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Software Development Kit 10 (Migration)","former_identifier":"SUSE-Linux-Enterprise-SDK-SP1-migration","release_type":null,"name":"SUSE Linux Enterprise Software Development Kit","offline_predecessor_ids":[],"product_class":"SLE-SDK","online_predecessor_ids":[],"repositories":[{"id":1294,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sles-10-s390x/","distro_target":"sles-10-s390x","autorefresh":true,"installer_updates":false,"name":"SLE10-SDK-SP1-Online","description":"SLE10-SDK-SP1-Online for sles-10-s390x"},{"description":"SLE10-SDK-SP1-Online for sles-10-x86_64","name":"SLE10-SDK-SP1-Online","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sles-10-x86_64/","autorefresh":true,"distro_target":"sles-10-x86_64","id":1295,"enabled":true},{"name":"SLE10-SDK-SP1-Online","installer_updates":false,"description":"SLE10-SDK-SP1-Online for sled-10-i586","enabled":true,"id":1296,"autorefresh":true,"distro_target":"sled-10-i586","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sled-10-i586/"},{"enabled":true,"id":1297,"autorefresh":true,"distro_target":"sles-10-ppc","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sles-10-ppc/","name":"SLE10-SDK-SP1-Online","installer_updates":false,"description":"SLE10-SDK-SP1-Online for sles-10-ppc"},{"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sles-10-ia64/","distro_target":"sles-10-ia64","autorefresh":true,"id":1301,"enabled":true,"description":"SLE10-SDK-SP1-Online for sles-10-ia64","installer_updates":false,"name":"SLE10-SDK-SP1-Online"},{"enabled":true,"id":1303,"autorefresh":true,"distro_target":"sles-10-i586","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sles-10-i586/","name":"SLE10-SDK-SP1-Online","installer_updates":false,"description":"SLE10-SDK-SP1-Online for sles-10-i586"},{"installer_updates":false,"name":"SLE10-SDK-SP1-Online","description":"SLE10-SDK-SP1-Online for sled-10-x86_64","enabled":true,"id":1307,"distro_target":"sled-10-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sled-10-x86_64/"}],"predecessor_ids":[],"cpe":null,"product_type":"extension","description":null,"shortname":null,"free":true,"arch":null,"eula_url":""}],"release_stage":"released","identifier":"SUSE-Linux-Enterprise-Server-SP1","id":730,"recommended":false,"version":"10","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Server","former_identifier":"SUSE-Linux-Enterprise-Server-SP1","release_type":null,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Server 10 SP1 x86_64","predecessor_ids":[],"repositories":[{"description":"SLES10-SP1-LTSS-Updates for sles-10-i586","installer_updates":false,"name":"SLES10-SP1-LTSS-Updates","url":"https://updates.suse.com/repo/$RCE/SLES10-SP1-LTSS-Updates/sles-10-i586/","distro_target":"sles-10-i586","autorefresh":true,"id":642,"enabled":true},{"distro_target":"sles-10-ia64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLES10-SP1-LTSS-Updates/sles-10-ia64/","enabled":true,"id":643,"description":"SLES10-SP1-LTSS-Updates for sles-10-ia64","installer_updates":false,"name":"SLES10-SP1-LTSS-Updates"},{"installer_updates":false,"name":"SLES10-SP1-LTSS-Updates","description":"SLES10-SP1-LTSS-Updates for sles-10-s390x","id":644,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLES10-SP1-LTSS-Updates/sles-10-s390x/","distro_target":"sles-10-s390x","autorefresh":true},{"autorefresh":true,"distro_target":"sles-10-x86_64","url":"https://updates.suse.com/repo/$RCE/SLES10-SP1-LTSS-Updates/sles-10-x86_64/","enabled":true,"id":645,"description":"SLES10-SP1-LTSS-Updates for sles-10-x86_64","name":"SLES10-SP1-LTSS-Updates","installer_updates":false},{"url":"https://updates.suse.com/repo/$RCE/SLES10-SP1-LTSS-Updates/sles-10-ppc/","autorefresh":true,"distro_target":"sles-10-ppc","id":647,"enabled":true,"description":"SLES10-SP1-LTSS-Updates for sles-10-ppc","name":"SLES10-SP1-LTSS-Updates","installer_updates":false},{"id":773,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP1-Debuginfo-Updates/sles-10-x86_64/","distro_target":"sles-10-x86_64","autorefresh":true,"installer_updates":false,"name":"SLE10-SP1-Debuginfo-Updates","description":"SLE10-SP1-Debuginfo-Updates for sles-10-x86_64"},{"description":"SLES10-SP1-Updates for sles-10-x86_64","installer_updates":false,"name":"SLES10-SP1-Updates","url":"https://updates.suse.com/repo/$RCE/SLES10-SP1-Updates/sles-10-x86_64/","distro_target":"sles-10-x86_64","autorefresh":true,"id":774,"enabled":true}],"online_predecessor_ids":[],"product_class":"7261","product_type":"base","cpe":null,"free":false,"description":null,"shortname":null,"eula_url":"","arch":"x86_64"},{"arch":"ppc64","eula_url":"","shortname":null,"description":null,"free":false,"cpe":null,"product_type":"base","online_predecessor_ids":[],"repositories":[{"installer_updates":false,"name":"SLES10-SP1-LTSS-Updates","description":"SLES10-SP1-LTSS-Updates for sles-10-i586","enabled":true,"id":642,"distro_target":"sles-10-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLES10-SP1-LTSS-Updates/sles-10-i586/"},{"name":"SLES10-SP1-LTSS-Updates","installer_updates":false,"description":"SLES10-SP1-LTSS-Updates for sles-10-ia64","enabled":true,"id":643,"autorefresh":true,"distro_target":"sles-10-ia64","url":"https://updates.suse.com/repo/$RCE/SLES10-SP1-LTSS-Updates/sles-10-ia64/"},{"description":"SLES10-SP1-LTSS-Updates for sles-10-s390x","installer_updates":false,"name":"SLES10-SP1-LTSS-Updates","distro_target":"sles-10-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLES10-SP1-LTSS-Updates/sles-10-s390x/","enabled":true,"id":644},{"description":"SLES10-SP1-LTSS-Updates for sles-10-x86_64","name":"SLES10-SP1-LTSS-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sles-10-x86_64","url":"https://updates.suse.com/repo/$RCE/SLES10-SP1-LTSS-Updates/sles-10-x86_64/","enabled":true,"id":645},{"enabled":true,"id":647,"autorefresh":true,"distro_target":"sles-10-ppc","url":"https://updates.suse.com/repo/$RCE/SLES10-SP1-LTSS-Updates/sles-10-ppc/","name":"SLES10-SP1-LTSS-Updates","installer_updates":false,"description":"SLES10-SP1-LTSS-Updates for sles-10-ppc"},{"installer_updates":false,"name":"SLE10-SP1-Debuginfo-Updates","description":"SLE10-SP1-Debuginfo-Updates for sles-10-ppc","id":648,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP1-Debuginfo-Updates/sles-10-ppc/","distro_target":"sles-10-ppc","autorefresh":true},{"id":649,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLES10-SP1-Updates/sles-10-ppc/","distro_target":"sles-10-ppc","autorefresh":true,"installer_updates":false,"name":"SLES10-SP1-Updates","description":"SLES10-SP1-Updates for sles-10-ppc"}],"product_class":"SLES-PPC","predecessor_ids":[],"friendly_name":"SUSE Linux Enterprise Server 10 SP1 ppc64","migration_extra":false,"former_identifier":"SUSE-Linux-Enterprise-Server-SP1","release_type":null,"name":"SUSE Linux Enterprise Server","offline_predecessor_ids":[],"version":"10","recommended":false,"release_stage":"released","id":731,"identifier":"SUSE-Linux-Enterprise-Server-SP1","extensions":[{"shortname":null,"description":null,"free":true,"arch":null,"eula_url":"","product_class":"SLE-SDK","online_predecessor_ids":[],"repositories":[{"enabled":true,"id":1294,"autorefresh":true,"distro_target":"sles-10-s390x","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sles-10-s390x/","name":"SLE10-SDK-SP1-Online","installer_updates":false,"description":"SLE10-SDK-SP1-Online for sles-10-s390x"},{"name":"SLE10-SDK-SP1-Online","installer_updates":false,"description":"SLE10-SDK-SP1-Online for sles-10-x86_64","enabled":true,"id":1295,"autorefresh":true,"distro_target":"sles-10-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sles-10-x86_64/"},{"installer_updates":false,"name":"SLE10-SDK-SP1-Online","description":"SLE10-SDK-SP1-Online for sled-10-i586","enabled":true,"id":1296,"distro_target":"sled-10-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sled-10-i586/"},{"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sles-10-ppc/","distro_target":"sles-10-ppc","autorefresh":true,"id":1297,"enabled":true,"description":"SLE10-SDK-SP1-Online for sles-10-ppc","installer_updates":false,"name":"SLE10-SDK-SP1-Online"},{"description":"SLE10-SDK-SP1-Updates for sles-10-s390x","installer_updates":false,"name":"SLE10-SDK-SP1-Updates","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Updates/sles-10-s390x/","distro_target":"sles-10-s390x","autorefresh":true,"id":1298,"enabled":true},{"enabled":true,"id":1299,"autorefresh":true,"distro_target":"sled-10-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Updates/sled-10-x86_64/","name":"SLE10-SDK-SP1-Updates","installer_updates":false,"description":"SLE10-SDK-SP1-Updates for sled-10-x86_64"},{"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Updates/sles-10-x86_64/","distro_target":"sles-10-x86_64","autorefresh":true,"id":1300,"enabled":true,"description":"SLE10-SDK-SP1-Updates for sles-10-x86_64","installer_updates":false,"name":"SLE10-SDK-SP1-Updates"},{"description":"SLE10-SDK-SP1-Online for sles-10-ia64","installer_updates":false,"name":"SLE10-SDK-SP1-Online","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sles-10-ia64/","distro_target":"sles-10-ia64","autorefresh":true,"id":1301,"enabled":true},{"installer_updates":false,"name":"SLE10-SDK-SP1-Updates","description":"SLE10-SDK-SP1-Updates for sled-10-i586","id":1302,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Updates/sled-10-i586/","distro_target":"sled-10-i586","autorefresh":true},{"installer_updates":false,"name":"SLE10-SDK-SP1-Online","description":"SLE10-SDK-SP1-Online for sles-10-i586","enabled":true,"id":1303,"distro_target":"sles-10-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sles-10-i586/"},{"name":"SLE10-SDK-SP1-Updates","installer_updates":false,"description":"SLE10-SDK-SP1-Updates for sles-10-ia64","enabled":true,"id":1304,"autorefresh":true,"distro_target":"sles-10-ia64","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Updates/sles-10-ia64/"},{"distro_target":"sles-10-ppc","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Updates/sles-10-ppc/","enabled":true,"id":1305,"description":"SLE10-SDK-SP1-Updates for sles-10-ppc","installer_updates":false,"name":"SLE10-SDK-SP1-Updates"},{"enabled":true,"id":1306,"autorefresh":true,"distro_target":"sles-10-i586","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Updates/sles-10-i586/","name":"SLE10-SDK-SP1-Updates","installer_updates":false,"description":"SLE10-SDK-SP1-Updates for sles-10-i586"},{"installer_updates":false,"name":"SLE10-SDK-SP1-Online","description":"SLE10-SDK-SP1-Online for sled-10-x86_64","enabled":true,"id":1307,"distro_target":"sled-10-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sled-10-x86_64/"}],"predecessor_ids":[],"cpe":null,"product_type":"extension","version":"10","recommended":false,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Software Development Kit 10 SP1","former_identifier":"SUSE-Linux-Enterprise-SDK-SP1","release_type":null,"name":"SUSE Linux Enterprise Software Development Kit","offline_predecessor_ids":[],"friendly_version":"10 SP1","id":1174,"release_stage":"released","identifier":"SUSE-Linux-Enterprise-SDK-SP1","extensions":[]},{"version":"10","recommended":false,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Software Development Kit 10 (Migration)","release_type":null,"former_identifier":"SUSE-Linux-Enterprise-SDK-SP1-migration","name":"SUSE Linux Enterprise Software Development Kit","offline_predecessor_ids":[],"friendly_version":"10","id":1175,"release_stage":"released","identifier":"SUSE-Linux-Enterprise-SDK-SP1-migration","extensions":[],"shortname":null,"description":null,"free":true,"arch":null,"eula_url":"","online_predecessor_ids":[],"product_class":"SLE-SDK","repositories":[{"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sles-10-s390x/","distro_target":"sles-10-s390x","autorefresh":true,"id":1294,"enabled":true,"description":"SLE10-SDK-SP1-Online for sles-10-s390x","installer_updates":false,"name":"SLE10-SDK-SP1-Online"},{"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sles-10-x86_64/","distro_target":"sles-10-x86_64","autorefresh":true,"id":1295,"enabled":true,"description":"SLE10-SDK-SP1-Online for sles-10-x86_64","installer_updates":false,"name":"SLE10-SDK-SP1-Online"},{"description":"SLE10-SDK-SP1-Online for sled-10-i586","installer_updates":false,"name":"SLE10-SDK-SP1-Online","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sled-10-i586/","distro_target":"sled-10-i586","autorefresh":true,"id":1296,"enabled":true},{"autorefresh":true,"distro_target":"sles-10-ppc","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sles-10-ppc/","enabled":true,"id":1297,"description":"SLE10-SDK-SP1-Online for sles-10-ppc","name":"SLE10-SDK-SP1-Online","installer_updates":false},{"name":"SLE10-SDK-SP1-Online","installer_updates":false,"description":"SLE10-SDK-SP1-Online for sles-10-ia64","id":1301,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sles-10-ia64/","autorefresh":true,"distro_target":"sles-10-ia64"},{"name":"SLE10-SDK-SP1-Online","installer_updates":false,"description":"SLE10-SDK-SP1-Online for sles-10-i586","id":1303,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sles-10-i586/","autorefresh":true,"distro_target":"sles-10-i586"},{"autorefresh":true,"distro_target":"sled-10-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sled-10-x86_64/","enabled":true,"id":1307,"description":"SLE10-SDK-SP1-Online for sled-10-x86_64","name":"SLE10-SDK-SP1-Online","installer_updates":false}],"predecessor_ids":[],"cpe":null,"product_type":"extension"}],"friendly_version":"10 SP1"},{"recommended":false,"version":"10","name":"SUSE Linux Enterprise Server","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Server 10 SP1 s390","former_identifier":"SUSE-Linux-Enterprise-Server-SP1","release_type":null,"friendly_version":"10 SP1","extensions":[{"friendly_version":"10 SP1","extensions":[],"id":1174,"release_stage":"released","identifier":"SUSE-Linux-Enterprise-SDK-SP1","recommended":false,"version":"10","name":"SUSE Linux Enterprise Software Development Kit","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Software Development Kit 10 SP1","former_identifier":"SUSE-Linux-Enterprise-SDK-SP1","release_type":null,"predecessor_ids":[],"online_predecessor_ids":[],"product_class":"SLE-SDK","repositories":[{"id":1294,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sles-10-s390x/","distro_target":"sles-10-s390x","autorefresh":true,"installer_updates":false,"name":"SLE10-SDK-SP1-Online","description":"SLE10-SDK-SP1-Online for sles-10-s390x"},{"autorefresh":true,"distro_target":"sles-10-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sles-10-x86_64/","enabled":true,"id":1295,"description":"SLE10-SDK-SP1-Online for sles-10-x86_64","name":"SLE10-SDK-SP1-Online","installer_updates":false},{"description":"SLE10-SDK-SP1-Online for sled-10-i586","name":"SLE10-SDK-SP1-Online","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sled-10-i586/","autorefresh":true,"distro_target":"sled-10-i586","id":1296,"enabled":true},{"enabled":true,"id":1297,"distro_target":"sles-10-ppc","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sles-10-ppc/","installer_updates":false,"name":"SLE10-SDK-SP1-Online","description":"SLE10-SDK-SP1-Online for sles-10-ppc"},{"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Updates/sles-10-s390x/","autorefresh":true,"distro_target":"sles-10-s390x","id":1298,"enabled":true,"description":"SLE10-SDK-SP1-Updates for sles-10-s390x","name":"SLE10-SDK-SP1-Updates","installer_updates":false},{"description":"SLE10-SDK-SP1-Updates for sled-10-x86_64","installer_updates":false,"name":"SLE10-SDK-SP1-Updates","distro_target":"sled-10-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Updates/sled-10-x86_64/","enabled":true,"id":1299},{"enabled":true,"id":1300,"distro_target":"sles-10-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Updates/sles-10-x86_64/","installer_updates":false,"name":"SLE10-SDK-SP1-Updates","description":"SLE10-SDK-SP1-Updates for sles-10-x86_64"},{"enabled":true,"id":1301,"distro_target":"sles-10-ia64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sles-10-ia64/","installer_updates":false,"name":"SLE10-SDK-SP1-Online","description":"SLE10-SDK-SP1-Online for sles-10-ia64"},{"description":"SLE10-SDK-SP1-Updates for sled-10-i586","name":"SLE10-SDK-SP1-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sled-10-i586","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Updates/sled-10-i586/","enabled":true,"id":1302},{"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sles-10-i586/","distro_target":"sles-10-i586","autorefresh":true,"id":1303,"enabled":true,"description":"SLE10-SDK-SP1-Online for sles-10-i586","installer_updates":false,"name":"SLE10-SDK-SP1-Online"},{"installer_updates":false,"name":"SLE10-SDK-SP1-Updates","description":"SLE10-SDK-SP1-Updates for sles-10-ia64","id":1304,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Updates/sles-10-ia64/","distro_target":"sles-10-ia64","autorefresh":true},{"id":1305,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Updates/sles-10-ppc/","distro_target":"sles-10-ppc","autorefresh":true,"installer_updates":false,"name":"SLE10-SDK-SP1-Updates","description":"SLE10-SDK-SP1-Updates for sles-10-ppc"},{"distro_target":"sles-10-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Updates/sles-10-i586/","enabled":true,"id":1306,"description":"SLE10-SDK-SP1-Updates for sles-10-i586","installer_updates":false,"name":"SLE10-SDK-SP1-Updates"},{"description":"SLE10-SDK-SP1-Online for sled-10-x86_64","name":"SLE10-SDK-SP1-Online","installer_updates":false,"autorefresh":true,"distro_target":"sled-10-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sled-10-x86_64/","enabled":true,"id":1307}],"cpe":null,"product_type":"extension","shortname":null,"description":null,"free":true,"eula_url":"","arch":null},{"arch":null,"eula_url":"","free":true,"description":null,"shortname":null,"product_type":"extension","cpe":null,"online_predecessor_ids":[],"product_class":"SLE-SDK","repositories":[{"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sles-10-s390x/","autorefresh":true,"distro_target":"sles-10-s390x","id":1294,"enabled":true,"description":"SLE10-SDK-SP1-Online for sles-10-s390x","name":"SLE10-SDK-SP1-Online","installer_updates":false},{"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sles-10-x86_64/","autorefresh":true,"distro_target":"sles-10-x86_64","id":1295,"enabled":true,"description":"SLE10-SDK-SP1-Online for sles-10-x86_64","name":"SLE10-SDK-SP1-Online","installer_updates":false},{"distro_target":"sled-10-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sled-10-i586/","enabled":true,"id":1296,"description":"SLE10-SDK-SP1-Online for sled-10-i586","installer_updates":false,"name":"SLE10-SDK-SP1-Online"},{"installer_updates":false,"name":"SLE10-SDK-SP1-Online","description":"SLE10-SDK-SP1-Online for sles-10-ppc","enabled":true,"id":1297,"distro_target":"sles-10-ppc","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sles-10-ppc/"},{"installer_updates":false,"name":"SLE10-SDK-SP1-Online","description":"SLE10-SDK-SP1-Online for sles-10-ia64","id":1301,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sles-10-ia64/","distro_target":"sles-10-ia64","autorefresh":true},{"enabled":true,"id":1303,"autorefresh":true,"distro_target":"sles-10-i586","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sles-10-i586/","name":"SLE10-SDK-SP1-Online","installer_updates":false,"description":"SLE10-SDK-SP1-Online for sles-10-i586"},{"description":"SLE10-SDK-SP1-Online for sled-10-x86_64","installer_updates":false,"name":"SLE10-SDK-SP1-Online","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sled-10-x86_64/","distro_target":"sled-10-x86_64","autorefresh":true,"id":1307,"enabled":true}],"predecessor_ids":[],"release_type":null,"former_identifier":"SUSE-Linux-Enterprise-SDK-SP1-migration","migration_extra":false,"friendly_name":"SUSE Linux Enterprise Software Development Kit 10 (Migration)","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Software Development Kit","version":"10","recommended":false,"identifier":"SUSE-Linux-Enterprise-SDK-SP1-migration","release_stage":"released","id":1175,"extensions":[],"friendly_version":"10"}],"release_stage":"released","identifier":"SUSE-Linux-Enterprise-Server-SP1","id":732,"shortname":null,"description":null,"free":false,"eula_url":"","arch":"s390","predecessor_ids":[],"repositories":[{"name":"SLES10-SP1-LTSS-Updates","installer_updates":false,"description":"SLES10-SP1-LTSS-Updates for sles-10-i586","id":642,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLES10-SP1-LTSS-Updates/sles-10-i586/","autorefresh":true,"distro_target":"sles-10-i586"},{"enabled":true,"id":643,"distro_target":"sles-10-ia64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLES10-SP1-LTSS-Updates/sles-10-ia64/","installer_updates":false,"name":"SLES10-SP1-LTSS-Updates","description":"SLES10-SP1-LTSS-Updates for sles-10-ia64"},{"autorefresh":true,"distro_target":"sles-10-s390x","url":"https://updates.suse.com/repo/$RCE/SLES10-SP1-LTSS-Updates/sles-10-s390x/","enabled":true,"id":644,"description":"SLES10-SP1-LTSS-Updates for sles-10-s390x","name":"SLES10-SP1-LTSS-Updates","installer_updates":false},{"installer_updates":false,"name":"SLES10-SP1-LTSS-Updates","description":"SLES10-SP1-LTSS-Updates for sles-10-x86_64","enabled":true,"id":645,"distro_target":"sles-10-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLES10-SP1-LTSS-Updates/sles-10-x86_64/"},{"description":"SLES10-SP1-LTSS-Updates for sles-10-ppc","installer_updates":false,"name":"SLES10-SP1-LTSS-Updates","url":"https://updates.suse.com/repo/$RCE/SLES10-SP1-LTSS-Updates/sles-10-ppc/","distro_target":"sles-10-ppc","autorefresh":true,"id":647,"enabled":true},{"installer_updates":false,"name":"SLES10-SP1-Updates","description":"SLES10-SP1-Updates for sles-10-s390x","id":651,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLES10-SP1-Updates/sles-10-s390x/","distro_target":"sles-10-s390x","autorefresh":true},{"installer_updates":false,"name":"SLE10-SP1-Debuginfo-Updates","description":"SLE10-SP1-Debuginfo-Updates for sles-10-s390x","enabled":false,"id":652,"distro_target":"sles-10-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP1-Debuginfo-Updates/sles-10-s390x/"}],"online_predecessor_ids":[],"product_class":"SLES-Z","cpe":null,"product_type":"base"},{"online_predecessor_ids":[],"product_class":"7261","repositories":[{"description":"SLES10-SP2-Online for sles-10-i586","installer_updates":false,"name":"SLES10-SP2-Online","distro_target":"sles-10-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLES10-SP2-Online/sles-10-i586/","enabled":true,"id":654}],"predecessor_ids":[],"cpe":null,"product_type":"base","shortname":null,"description":null,"free":false,"arch":"i386","eula_url":"","friendly_version":"10","release_stage":"released","identifier":"SUSE-Linux-Enterprise-Server-SP2-migration","id":733,"extensions":[],"version":"10","recommended":false,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Server 10 i386 (Migration)","former_identifier":"SUSE-Linux-Enterprise-Server-SP2-migration","release_type":null,"name":"SUSE Linux Enterprise Server","offline_predecessor_ids":[]},{"cpe":null,"product_type":"base","repositories":[{"installer_updates":false,"name":"SLES10-SP2-Online","description":"SLES10-SP2-Online for sles-10-ia64","enabled":true,"id":775,"distro_target":"sles-10-ia64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLES10-SP2-Online/sles-10-ia64/"}],"online_predecessor_ids":[],"product_class":"SLES-IA","predecessor_ids":[],"arch":"ia64","eula_url":"","description":null,"shortname":null,"free":false,"release_stage":"released","id":734,"identifier":"SUSE-Linux-Enterprise-Server-SP2-migration","extensions":[],"friendly_version":"10","friendly_name":"SUSE Linux Enterprise Server 10 ia64 (Migration)","migration_extra":false,"former_identifier":"SUSE-Linux-Enterprise-Server-SP2-migration","release_type":null,"name":"SUSE Linux Enterprise Server","offline_predecessor_ids":[],"version":"10","recommended":false},{"predecessor_ids":[],"online_predecessor_ids":[],"repositories":[{"installer_updates":false,"name":"SLES10-SP2-Pool","description":"SLES10-SP2-Pool for sles-10-i586","enabled":true,"id":653,"distro_target":"sles-10-i586","autorefresh":false,"url":"https://updates.suse.com/repo/$RCE/SLES10-SP2-Pool/sles-10-i586/"},{"name":"SLES10-SP2-Online","installer_updates":false,"description":"SLES10-SP2-Online for sles-10-i586","enabled":false,"id":654,"autorefresh":true,"distro_target":"sles-10-i586","url":"https://updates.suse.com/repo/$RCE/SLES10-SP2-Online/sles-10-i586/"},{"installer_updates":false,"name":"SLES10-SP2-Updates","description":"SLES10-SP2-Updates for sles-10-i586","id":655,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLES10-SP2-Updates/sles-10-i586/","distro_target":"sles-10-i586","autorefresh":true},{"id":656,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP2-Debuginfo-Updates/sles-10-i586/","distro_target":"sles-10-i586","autorefresh":true,"installer_updates":false,"name":"SLE10-SP2-Debuginfo-Updates","description":"SLE10-SP2-Debuginfo-Updates for sles-10-i586"},{"name":"SLES10-SP2-LTSS-Updates","installer_updates":false,"description":"SLES10-SP2-LTSS-Updates for sles-10-i586","enabled":true,"id":657,"autorefresh":true,"distro_target":"sles-10-i586","url":"https://updates.suse.com/repo/$RCE/SLES10-SP2-LTSS-Updates/sles-10-i586/"}],"product_class":"7261","product_type":"base","cpe":null,"free":false,"shortname":null,"description":null,"eula_url":"","arch":"i486","friendly_version":"10 SP2","extensions":[{"extensions":[],"release_stage":"released","identifier":"SUSE-Linux-Enterprise-SDK-SP2","id":1176,"friendly_version":"10 SP2","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Software Development Kit","former_identifier":"SUSE-Linux-Enterprise-SDK-SP2","release_type":"MigrationBeta","friendly_name":"SUSE Linux Enterprise Software Development Kit 10 SP2 MigrationBeta","migration_extra":false,"recommended":false,"version":"10","product_type":"extension","cpe":null,"predecessor_ids":[],"product_class":"SLE-SDK","online_predecessor_ids":[],"repositories":[],"eula_url":"","arch":null,"free":true,"description":null,"shortname":null},{"eula_url":"","arch":null,"free":true,"description":null,"shortname":null,"product_type":"extension","cpe":null,"predecessor_ids":[],"repositories":[{"description":"SLE10-SDK-SP2-Online for sled-10-i586","name":"SLE10-SDK-SP2-Online","installer_updates":false,"autorefresh":true,"distro_target":"sled-10-i586","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sled-10-i586/","enabled":true,"id":1308},{"name":"SLE10-SDK-SP2-Updates","installer_updates":false,"description":"SLE10-SDK-SP2-Updates for sles-10-i586","id":1309,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Updates/sles-10-i586/","autorefresh":true,"distro_target":"sles-10-i586"},{"id":1310,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Updates/sles-10-ia64/","autorefresh":true,"distro_target":"sles-10-ia64","name":"SLE10-SDK-SP2-Updates","installer_updates":false,"description":"SLE10-SDK-SP2-Updates for sles-10-ia64"},{"description":"SLE10-SDK-SP2-Updates for sles-10-s390x","name":"SLE10-SDK-SP2-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sles-10-s390x","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Updates/sles-10-s390x/","enabled":true,"id":1311},{"enabled":true,"id":1312,"autorefresh":true,"distro_target":"sles-10-ppc","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sles-10-ppc/","name":"SLE10-SDK-SP2-Online","installer_updates":false,"description":"SLE10-SDK-SP2-Online for sles-10-ppc"},{"id":1313,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sles-10-i586/","autorefresh":true,"distro_target":"sles-10-i586","name":"SLE10-SDK-SP2-Online","installer_updates":false,"description":"SLE10-SDK-SP2-Online for sles-10-i586"},{"distro_target":"sled-10-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sled-10-x86_64/","enabled":true,"id":1314,"description":"SLE10-SDK-SP2-Online for sled-10-x86_64","installer_updates":false,"name":"SLE10-SDK-SP2-Online"},{"id":1315,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Updates/sles-10-x86_64/","distro_target":"sles-10-x86_64","autorefresh":true,"installer_updates":false,"name":"SLE10-SDK-SP2-Updates","description":"SLE10-SDK-SP2-Updates for sles-10-x86_64"},{"enabled":true,"id":1316,"autorefresh":true,"distro_target":"sles-10-ia64","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sles-10-ia64/","name":"SLE10-SDK-SP2-Online","installer_updates":false,"description":"SLE10-SDK-SP2-Online for sles-10-ia64"},{"enabled":true,"id":1317,"distro_target":"sles-10-ppc","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Updates/sles-10-ppc/","installer_updates":false,"name":"SLE10-SDK-SP2-Updates","description":"SLE10-SDK-SP2-Updates for sles-10-ppc"},{"autorefresh":true,"distro_target":"sles-10-s390x","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sles-10-s390x/","enabled":true,"id":1318,"description":"SLE10-SDK-SP2-Online for sles-10-s390x","name":"SLE10-SDK-SP2-Online","installer_updates":false},{"id":1319,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Updates/sled-10-x86_64/","distro_target":"sled-10-x86_64","autorefresh":true,"installer_updates":false,"name":"SLE10-SDK-SP2-Updates","description":"SLE10-SDK-SP2-Updates for sled-10-x86_64"},{"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Updates/sled-10-i586/","distro_target":"sled-10-i586","autorefresh":true,"id":1320,"enabled":true,"description":"SLE10-SDK-SP2-Updates for sled-10-i586","installer_updates":false,"name":"SLE10-SDK-SP2-Updates"},{"enabled":true,"id":1321,"autorefresh":true,"distro_target":"sles-10-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sles-10-x86_64/","name":"SLE10-SDK-SP2-Online","installer_updates":false,"description":"SLE10-SDK-SP2-Online for sles-10-x86_64"}],"online_predecessor_ids":[],"product_class":"SLE-SDK","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Software Development Kit","former_identifier":"SUSE-Linux-Enterprise-SDK-SP2","release_type":null,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Software Development Kit 10 SP2","recommended":false,"version":"10","extensions":[],"release_stage":"released","identifier":"SUSE-Linux-Enterprise-SDK-SP2","id":1177,"friendly_version":"10 SP2"},{"offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Software Development Kit","release_type":"online","former_identifier":"SUSE-Linux-Enterprise-SDK-SP2-migration","migration_extra":false,"friendly_name":"SUSE Linux Enterprise Software Development Kit 10 online (Migration)","recommended":false,"version":"10","extensions":[],"release_stage":"released","identifier":"SUSE-Linux-Enterprise-SDK-SP2-migration","id":1178,"friendly_version":"10","eula_url":"","arch":null,"free":true,"shortname":null,"description":null,"product_type":"extension","cpe":null,"predecessor_ids":[],"online_predecessor_ids":[],"product_class":"SLE-SDK","repositories":[{"name":"SLE10-SDK-SP2-Online","installer_updates":false,"description":"SLE10-SDK-SP2-Online for sled-10-i586","enabled":true,"id":1308,"autorefresh":true,"distro_target":"sled-10-i586","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sled-10-i586/"},{"installer_updates":false,"name":"SLE10-SDK-SP2-Online","description":"SLE10-SDK-SP2-Online for sles-10-ppc","enabled":true,"id":1312,"distro_target":"sles-10-ppc","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sles-10-ppc/"},{"installer_updates":false,"name":"SLE10-SDK-SP2-Online","description":"SLE10-SDK-SP2-Online for sles-10-i586","enabled":true,"id":1313,"distro_target":"sles-10-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sles-10-i586/"},{"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sled-10-x86_64/","autorefresh":true,"distro_target":"sled-10-x86_64","id":1314,"enabled":true,"description":"SLE10-SDK-SP2-Online for sled-10-x86_64","name":"SLE10-SDK-SP2-Online","installer_updates":false},{"name":"SLE10-SDK-SP2-Online","installer_updates":false,"description":"SLE10-SDK-SP2-Online for sles-10-ia64","id":1316,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sles-10-ia64/","autorefresh":true,"distro_target":"sles-10-ia64"},{"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sles-10-s390x/","autorefresh":true,"distro_target":"sles-10-s390x","id":1318,"enabled":true,"description":"SLE10-SDK-SP2-Online for sles-10-s390x","name":"SLE10-SDK-SP2-Online","installer_updates":false},{"description":"SLE10-SDK-SP2-Online for sles-10-x86_64","name":"SLE10-SDK-SP2-Online","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sles-10-x86_64/","autorefresh":true,"distro_target":"sles-10-x86_64","id":1321,"enabled":true}]},{"predecessor_ids":[],"online_predecessor_ids":[],"product_class":"SLESMT","repositories":[{"name":"SLE10-SP2-SMT-Updates","installer_updates":false,"description":"SLE10-SP2-SMT-Updates for sles-10-x86_64","enabled":true,"id":1398,"autorefresh":true,"distro_target":"sles-10-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE10-SP2-SMT-Updates/sles-10-x86_64/"},{"id":1399,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP2-SMT-Updates/sles-10-i586/","autorefresh":true,"distro_target":"sles-10-i586","name":"SLE10-SP2-SMT-Updates","installer_updates":false,"description":"SLE10-SP2-SMT-Updates for sles-10-i586"}],"product_type":"extension","cpe":null,"free":true,"shortname":null,"description":null,"eula_url":"","arch":null,"friendly_version":"10 SP2","extensions":[],"release_stage":"released","id":1195,"identifier":"SUSE-Linux-Enterprise-SMT-SP2","recommended":false,"version":"10.2","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Subscription Management Tool","former_identifier":"SUSE-Linux-Enterprise-SMT-SP2","release_type":null,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Subscription Management Tool 10 SP2"}],"identifier":"SUSE-Linux-Enterprise-Server-SP2","release_stage":"released","id":735,"recommended":false,"version":"10","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Server","release_type":null,"former_identifier":"SUSE-Linux-Enterprise-Server-SP2","migration_extra":false,"friendly_name":"SUSE Linux Enterprise Server 10 SP2 i486"},{"offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Server","former_identifier":"SUSE-Linux-Enterprise-Server-SP2","release_type":null,"friendly_name":"SUSE Linux Enterprise Server 10 SP2 ia64","migration_extra":false,"recommended":false,"version":"10","extensions":[{"recommended":false,"version":"10","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Software Development Kit","former_identifier":"SUSE-Linux-Enterprise-SDK-SP2","release_type":"MigrationBeta","migration_extra":false,"friendly_name":"SUSE Linux Enterprise Software Development Kit 10 SP2 MigrationBeta","friendly_version":"10 SP2","extensions":[],"id":1176,"release_stage":"released","identifier":"SUSE-Linux-Enterprise-SDK-SP2","free":true,"description":null,"shortname":null,"eula_url":"","arch":null,"predecessor_ids":[],"product_class":"SLE-SDK","online_predecessor_ids":[],"repositories":[],"product_type":"extension","cpe":null},{"extensions":[],"identifier":"SUSE-Linux-Enterprise-SDK-SP2","release_stage":"released","id":1177,"friendly_version":"10 SP2","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Software Development Kit","former_identifier":"SUSE-Linux-Enterprise-SDK-SP2","release_type":null,"friendly_name":"SUSE Linux Enterprise Software Development Kit 10 SP2","migration_extra":false,"recommended":false,"version":"10","product_type":"extension","cpe":null,"predecessor_ids":[],"repositories":[{"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sled-10-i586/","autorefresh":true,"distro_target":"sled-10-i586","id":1308,"enabled":true,"description":"SLE10-SDK-SP2-Online for sled-10-i586","name":"SLE10-SDK-SP2-Online","installer_updates":false},{"installer_updates":false,"name":"SLE10-SDK-SP2-Updates","description":"SLE10-SDK-SP2-Updates for sles-10-i586","id":1309,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Updates/sles-10-i586/","distro_target":"sles-10-i586","autorefresh":true},{"installer_updates":false,"name":"SLE10-SDK-SP2-Updates","description":"SLE10-SDK-SP2-Updates for sles-10-ia64","enabled":true,"id":1310,"distro_target":"sles-10-ia64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Updates/sles-10-ia64/"},{"id":1311,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Updates/sles-10-s390x/","distro_target":"sles-10-s390x","autorefresh":true,"installer_updates":false,"name":"SLE10-SDK-SP2-Updates","description":"SLE10-SDK-SP2-Updates for sles-10-s390x"},{"id":1312,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sles-10-ppc/","autorefresh":true,"distro_target":"sles-10-ppc","name":"SLE10-SDK-SP2-Online","installer_updates":false,"description":"SLE10-SDK-SP2-Online for sles-10-ppc"},{"autorefresh":true,"distro_target":"sles-10-i586","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sles-10-i586/","enabled":true,"id":1313,"description":"SLE10-SDK-SP2-Online for sles-10-i586","name":"SLE10-SDK-SP2-Online","installer_updates":false},{"autorefresh":true,"distro_target":"sled-10-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sled-10-x86_64/","enabled":true,"id":1314,"description":"SLE10-SDK-SP2-Online for sled-10-x86_64","name":"SLE10-SDK-SP2-Online","installer_updates":false},{"autorefresh":true,"distro_target":"sles-10-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Updates/sles-10-x86_64/","enabled":true,"id":1315,"description":"SLE10-SDK-SP2-Updates for sles-10-x86_64","name":"SLE10-SDK-SP2-Updates","installer_updates":false},{"autorefresh":true,"distro_target":"sles-10-ia64","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sles-10-ia64/","enabled":true,"id":1316,"description":"SLE10-SDK-SP2-Online for sles-10-ia64","name":"SLE10-SDK-SP2-Online","installer_updates":false},{"enabled":true,"id":1317,"distro_target":"sles-10-ppc","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Updates/sles-10-ppc/","installer_updates":false,"name":"SLE10-SDK-SP2-Updates","description":"SLE10-SDK-SP2-Updates for sles-10-ppc"},{"installer_updates":false,"name":"SLE10-SDK-SP2-Online","description":"SLE10-SDK-SP2-Online for sles-10-s390x","id":1318,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sles-10-s390x/","distro_target":"sles-10-s390x","autorefresh":true},{"enabled":true,"id":1319,"autorefresh":true,"distro_target":"sled-10-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Updates/sled-10-x86_64/","name":"SLE10-SDK-SP2-Updates","installer_updates":false,"description":"SLE10-SDK-SP2-Updates for sled-10-x86_64"},{"installer_updates":false,"name":"SLE10-SDK-SP2-Updates","description":"SLE10-SDK-SP2-Updates for sled-10-i586","enabled":true,"id":1320,"distro_target":"sled-10-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Updates/sled-10-i586/"},{"distro_target":"sles-10-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sles-10-x86_64/","enabled":true,"id":1321,"description":"SLE10-SDK-SP2-Online for sles-10-x86_64","installer_updates":false,"name":"SLE10-SDK-SP2-Online"}],"online_predecessor_ids":[],"product_class":"SLE-SDK","eula_url":"","arch":null,"free":true,"description":null,"shortname":null},{"offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Software Development Kit","release_type":"online","former_identifier":"SUSE-Linux-Enterprise-SDK-SP2-migration","friendly_name":"SUSE Linux Enterprise Software Development Kit 10 online (Migration)","migration_extra":false,"recommended":false,"version":"10","extensions":[],"id":1178,"release_stage":"released","identifier":"SUSE-Linux-Enterprise-SDK-SP2-migration","friendly_version":"10","eula_url":"","arch":null,"free":true,"shortname":null,"description":null,"product_type":"extension","cpe":null,"predecessor_ids":[],"repositories":[{"enabled":true,"id":1308,"autorefresh":true,"distro_target":"sled-10-i586","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sled-10-i586/","name":"SLE10-SDK-SP2-Online","installer_updates":false,"description":"SLE10-SDK-SP2-Online for sled-10-i586"},{"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sles-10-ppc/","distro_target":"sles-10-ppc","autorefresh":true,"id":1312,"enabled":true,"description":"SLE10-SDK-SP2-Online for sles-10-ppc","installer_updates":false,"name":"SLE10-SDK-SP2-Online"},{"description":"SLE10-SDK-SP2-Online for sles-10-i586","installer_updates":false,"name":"SLE10-SDK-SP2-Online","distro_target":"sles-10-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sles-10-i586/","enabled":true,"id":1313},{"description":"SLE10-SDK-SP2-Online for sled-10-x86_64","name":"SLE10-SDK-SP2-Online","installer_updates":false,"autorefresh":true,"distro_target":"sled-10-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sled-10-x86_64/","enabled":true,"id":1314},{"description":"SLE10-SDK-SP2-Online for sles-10-ia64","name":"SLE10-SDK-SP2-Online","installer_updates":false,"autorefresh":true,"distro_target":"sles-10-ia64","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sles-10-ia64/","enabled":true,"id":1316},{"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sles-10-s390x/","autorefresh":true,"distro_target":"sles-10-s390x","id":1318,"enabled":true,"description":"SLE10-SDK-SP2-Online for sles-10-s390x","name":"SLE10-SDK-SP2-Online","installer_updates":false},{"description":"SLE10-SDK-SP2-Online for sles-10-x86_64","name":"SLE10-SDK-SP2-Online","installer_updates":false,"autorefresh":true,"distro_target":"sles-10-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sles-10-x86_64/","enabled":true,"id":1321}],"online_predecessor_ids":[],"product_class":"SLE-SDK"},{"description":null,"shortname":null,"free":true,"eula_url":"","arch":null,"predecessor_ids":[],"repositories":[{"id":1398,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP2-SMT-Updates/sles-10-x86_64/","autorefresh":true,"distro_target":"sles-10-x86_64","name":"SLE10-SP2-SMT-Updates","installer_updates":false,"description":"SLE10-SP2-SMT-Updates for sles-10-x86_64"},{"description":"SLE10-SP2-SMT-Updates for sles-10-i586","installer_updates":false,"name":"SLE10-SP2-SMT-Updates","distro_target":"sles-10-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP2-SMT-Updates/sles-10-i586/","enabled":true,"id":1399}],"online_predecessor_ids":[],"product_class":"SLESMT","cpe":null,"product_type":"extension","recommended":false,"version":"10.2","name":"SUSE Linux Enterprise Subscription Management Tool","offline_predecessor_ids":[],"friendly_name":"SUSE Linux Enterprise Subscription Management Tool 10 SP2","migration_extra":false,"release_type":null,"former_identifier":"SUSE-Linux-Enterprise-SMT-SP2","friendly_version":"10 SP2","extensions":[],"id":1195,"release_stage":"released","identifier":"SUSE-Linux-Enterprise-SMT-SP2"}],"release_stage":"released","identifier":"SUSE-Linux-Enterprise-Server-SP2","id":736,"friendly_version":"10 SP2","eula_url":"","arch":"ia64","free":false,"shortname":null,"description":null,"product_type":"base","cpe":null,"predecessor_ids":[],"product_class":"SLES-IA","online_predecessor_ids":[],"repositories":[{"enabled":false,"id":775,"autorefresh":true,"distro_target":"sles-10-ia64","url":"https://updates.suse.com/repo/$RCE/SLES10-SP2-Online/sles-10-ia64/","name":"SLES10-SP2-Online","installer_updates":false,"description":"SLES10-SP2-Online for sles-10-ia64"},{"description":"SLE10-SP2-Debuginfo-Updates for sles-10-ia64","name":"SLE10-SP2-Debuginfo-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sles-10-ia64","url":"https://updates.suse.com/repo/$RCE/SLE10-SP2-Debuginfo-Updates/sles-10-ia64/","enabled":false,"id":776},{"enabled":true,"id":777,"distro_target":"sles-10-ia64","autorefresh":false,"url":"https://updates.suse.com/repo/$RCE/SLES10-SP2-Pool/sles-10-ia64/","installer_updates":false,"name":"SLES10-SP2-Pool","description":"SLES10-SP2-Pool for sles-10-ia64"},{"installer_updates":false,"name":"SLES10-SP2-Updates","description":"SLES10-SP2-Updates for sles-10-ia64","enabled":true,"id":778,"distro_target":"sles-10-ia64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLES10-SP2-Updates/sles-10-ia64/"}]},{"product_type":"base","cpe":null,"predecessor_ids":[],"product_class":"7261","online_predecessor_ids":[],"repositories":[{"name":"SLES10-SP2-Online","installer_updates":false,"description":"SLES10-SP2-Online for sles-10-i586","id":654,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLES10-SP2-Online/sles-10-i586/","autorefresh":true,"distro_target":"sles-10-i586"},{"description":"SLES10-SP2-Updates for sles-10-i586","installer_updates":false,"name":"SLES10-SP2-Updates","distro_target":"sles-10-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLES10-SP2-Updates/sles-10-i586/","enabled":true,"id":655},{"installer_updates":false,"name":"SLE10-SP2-Debuginfo-Updates","description":"SLE10-SP2-Debuginfo-Updates for sles-10-i586","id":656,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP2-Debuginfo-Updates/sles-10-i586/","distro_target":"sles-10-i586","autorefresh":true},{"distro_target":"sles-10-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLES10-SP2-LTSS-Updates/sles-10-i586/","enabled":true,"id":657,"description":"SLES10-SP2-LTSS-Updates for sles-10-i586","installer_updates":false,"name":"SLES10-SP2-LTSS-Updates"}],"eula_url":"","arch":"i486","free":false,"shortname":null,"description":null,"extensions":[{"extensions":[],"release_stage":"released","id":1176,"identifier":"SUSE-Linux-Enterprise-SDK-SP2","friendly_version":"10 SP2","name":"SUSE Linux Enterprise Software Development Kit","offline_predecessor_ids":[],"friendly_name":"SUSE Linux Enterprise Software Development Kit 10 SP2 MigrationBeta","migration_extra":false,"former_identifier":"SUSE-Linux-Enterprise-SDK-SP2","release_type":"MigrationBeta","recommended":false,"version":"10","cpe":null,"product_type":"extension","predecessor_ids":[],"online_predecessor_ids":[],"product_class":"SLE-SDK","repositories":[],"eula_url":"","arch":null,"description":null,"shortname":null,"free":true},{"cpe":null,"product_type":"extension","predecessor_ids":[],"online_predecessor_ids":[],"product_class":"SLE-SDK","repositories":[{"enabled":true,"id":1308,"distro_target":"sled-10-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sled-10-i586/","installer_updates":false,"name":"SLE10-SDK-SP2-Online","description":"SLE10-SDK-SP2-Online for sled-10-i586"},{"installer_updates":false,"name":"SLE10-SDK-SP2-Updates","description":"SLE10-SDK-SP2-Updates for sles-10-i586","id":1309,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Updates/sles-10-i586/","distro_target":"sles-10-i586","autorefresh":true},{"description":"SLE10-SDK-SP2-Updates for sles-10-ia64","name":"SLE10-SDK-SP2-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sles-10-ia64","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Updates/sles-10-ia64/","enabled":true,"id":1310},{"description":"SLE10-SDK-SP2-Updates for sles-10-s390x","name":"SLE10-SDK-SP2-Updates","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Updates/sles-10-s390x/","autorefresh":true,"distro_target":"sles-10-s390x","id":1311,"enabled":true},{"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sles-10-ppc/","distro_target":"sles-10-ppc","autorefresh":true,"id":1312,"enabled":true,"description":"SLE10-SDK-SP2-Online for sles-10-ppc","installer_updates":false,"name":"SLE10-SDK-SP2-Online"},{"autorefresh":true,"distro_target":"sles-10-i586","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sles-10-i586/","enabled":true,"id":1313,"description":"SLE10-SDK-SP2-Online for sles-10-i586","name":"SLE10-SDK-SP2-Online","installer_updates":false},{"description":"SLE10-SDK-SP2-Online for sled-10-x86_64","installer_updates":false,"name":"SLE10-SDK-SP2-Online","distro_target":"sled-10-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sled-10-x86_64/","enabled":true,"id":1314},{"description":"SLE10-SDK-SP2-Updates for sles-10-x86_64","installer_updates":false,"name":"SLE10-SDK-SP2-Updates","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Updates/sles-10-x86_64/","distro_target":"sles-10-x86_64","autorefresh":true,"id":1315,"enabled":true},{"installer_updates":false,"name":"SLE10-SDK-SP2-Online","description":"SLE10-SDK-SP2-Online for sles-10-ia64","id":1316,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sles-10-ia64/","distro_target":"sles-10-ia64","autorefresh":true},{"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Updates/sles-10-ppc/","autorefresh":true,"distro_target":"sles-10-ppc","id":1317,"enabled":true,"description":"SLE10-SDK-SP2-Updates for sles-10-ppc","name":"SLE10-SDK-SP2-Updates","installer_updates":false},{"description":"SLE10-SDK-SP2-Online for sles-10-s390x","installer_updates":false,"name":"SLE10-SDK-SP2-Online","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sles-10-s390x/","distro_target":"sles-10-s390x","autorefresh":true,"id":1318,"enabled":true},{"name":"SLE10-SDK-SP2-Updates","installer_updates":false,"description":"SLE10-SDK-SP2-Updates for sled-10-x86_64","id":1319,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Updates/sled-10-x86_64/","autorefresh":true,"distro_target":"sled-10-x86_64"},{"installer_updates":false,"name":"SLE10-SDK-SP2-Updates","description":"SLE10-SDK-SP2-Updates for sled-10-i586","id":1320,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Updates/sled-10-i586/","distro_target":"sled-10-i586","autorefresh":true},{"distro_target":"sles-10-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sles-10-x86_64/","enabled":true,"id":1321,"description":"SLE10-SDK-SP2-Online for sles-10-x86_64","installer_updates":false,"name":"SLE10-SDK-SP2-Online"}],"eula_url":"","arch":null,"shortname":null,"description":null,"free":true,"extensions":[],"release_stage":"released","identifier":"SUSE-Linux-Enterprise-SDK-SP2","id":1177,"friendly_version":"10 SP2","name":"SUSE Linux Enterprise Software Development Kit","offline_predecessor_ids":[],"friendly_name":"SUSE Linux Enterprise Software Development Kit 10 SP2","migration_extra":false,"release_type":null,"former_identifier":"SUSE-Linux-Enterprise-SDK-SP2","recommended":false,"version":"10"},{"friendly_version":"10","release_stage":"released","id":1178,"identifier":"SUSE-Linux-Enterprise-SDK-SP2-migration","extensions":[],"version":"10","recommended":false,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Software Development Kit 10 online (Migration)","release_type":"online","former_identifier":"SUSE-Linux-Enterprise-SDK-SP2-migration","name":"SUSE Linux Enterprise Software Development Kit","offline_predecessor_ids":[],"online_predecessor_ids":[],"repositories":[{"enabled":true,"id":1308,"autorefresh":true,"distro_target":"sled-10-i586","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sled-10-i586/","name":"SLE10-SDK-SP2-Online","installer_updates":false,"description":"SLE10-SDK-SP2-Online for sled-10-i586"},{"name":"SLE10-SDK-SP2-Online","installer_updates":false,"description":"SLE10-SDK-SP2-Online for sles-10-ppc","enabled":true,"id":1312,"autorefresh":true,"distro_target":"sles-10-ppc","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sles-10-ppc/"},{"installer_updates":false,"name":"SLE10-SDK-SP2-Online","description":"SLE10-SDK-SP2-Online for sles-10-i586","enabled":true,"id":1313,"distro_target":"sles-10-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sles-10-i586/"},{"enabled":true,"id":1314,"distro_target":"sled-10-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sled-10-x86_64/","installer_updates":false,"name":"SLE10-SDK-SP2-Online","description":"SLE10-SDK-SP2-Online for sled-10-x86_64"},{"description":"SLE10-SDK-SP2-Online for sles-10-ia64","name":"SLE10-SDK-SP2-Online","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sles-10-ia64/","autorefresh":true,"distro_target":"sles-10-ia64","id":1316,"enabled":true},{"name":"SLE10-SDK-SP2-Online","installer_updates":false,"description":"SLE10-SDK-SP2-Online for sles-10-s390x","id":1318,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sles-10-s390x/","autorefresh":true,"distro_target":"sles-10-s390x"},{"description":"SLE10-SDK-SP2-Online for sles-10-x86_64","installer_updates":false,"name":"SLE10-SDK-SP2-Online","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sles-10-x86_64/","distro_target":"sles-10-x86_64","autorefresh":true,"id":1321,"enabled":true}],"product_class":"SLE-SDK","predecessor_ids":[],"cpe":null,"product_type":"extension","shortname":null,"description":null,"free":true,"arch":null,"eula_url":""},{"offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Subscription Management Tool","former_identifier":"SUSE-Linux-Enterprise-SMT-SP2","release_type":null,"friendly_name":"SUSE Linux Enterprise Subscription Management Tool 10 SP2","migration_extra":false,"recommended":false,"version":"10.2","extensions":[],"release_stage":"released","identifier":"SUSE-Linux-Enterprise-SMT-SP2","id":1195,"friendly_version":"10 SP2","eula_url":"","arch":null,"free":true,"description":null,"shortname":null,"product_type":"extension","cpe":null,"predecessor_ids":[],"repositories":[{"id":1398,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP2-SMT-Updates/sles-10-x86_64/","distro_target":"sles-10-x86_64","autorefresh":true,"installer_updates":false,"name":"SLE10-SP2-SMT-Updates","description":"SLE10-SP2-SMT-Updates for sles-10-x86_64"},{"url":"https://updates.suse.com/repo/$RCE/SLE10-SP2-SMT-Updates/sles-10-i586/","distro_target":"sles-10-i586","autorefresh":true,"id":1399,"enabled":true,"description":"SLE10-SP2-SMT-Updates for sles-10-i586","installer_updates":false,"name":"SLE10-SP2-SMT-Updates"}],"online_predecessor_ids":[],"product_class":"SLESMT"}],"identifier":"SUSE-Linux-Enterprise-Server-SP2","release_stage":"released","id":737,"friendly_version":"10 SP2","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Server","release_type":"online","former_identifier":"SUSE-Linux-Enterprise-Server-SP2","friendly_name":"SUSE Linux Enterprise Server 10 SP2 online i486","migration_extra":false,"recommended":false,"version":"10"},{"release_type":"online","former_identifier":"SUSE-Linux-Enterprise-Server-SP2","migration_extra":false,"friendly_name":"SUSE Linux Enterprise Server 10 SP2 online ppc64","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Server","version":"10","recommended":false,"identifier":"SUSE-Linux-Enterprise-Server-SP2","release_stage":"released","id":738,"extensions":[{"extensions":[],"identifier":"SUSE-Linux-Enterprise-SDK-SP2","release_stage":"released","id":1176,"friendly_version":"10 SP2","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Software Development Kit","release_type":"MigrationBeta","former_identifier":"SUSE-Linux-Enterprise-SDK-SP2","migration_extra":false,"friendly_name":"SUSE Linux Enterprise Software Development Kit 10 SP2 MigrationBeta","recommended":false,"version":"10","product_type":"extension","cpe":null,"predecessor_ids":[],"online_predecessor_ids":[],"repositories":[],"product_class":"SLE-SDK","eula_url":"","arch":null,"free":true,"shortname":null,"description":null},{"friendly_version":"10 SP2","release_stage":"released","id":1177,"identifier":"SUSE-Linux-Enterprise-SDK-SP2","extensions":[],"version":"10","recommended":false,"friendly_name":"SUSE Linux Enterprise Software Development Kit 10 SP2","migration_extra":false,"release_type":null,"former_identifier":"SUSE-Linux-Enterprise-SDK-SP2","name":"SUSE Linux Enterprise Software Development Kit","offline_predecessor_ids":[],"repositories":[{"installer_updates":false,"name":"SLE10-SDK-SP2-Online","description":"SLE10-SDK-SP2-Online for sled-10-i586","enabled":true,"id":1308,"distro_target":"sled-10-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sled-10-i586/"},{"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Updates/sles-10-i586/","distro_target":"sles-10-i586","autorefresh":true,"id":1309,"enabled":true,"description":"SLE10-SDK-SP2-Updates for sles-10-i586","installer_updates":false,"name":"SLE10-SDK-SP2-Updates"},{"enabled":true,"id":1310,"distro_target":"sles-10-ia64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Updates/sles-10-ia64/","installer_updates":false,"name":"SLE10-SDK-SP2-Updates","description":"SLE10-SDK-SP2-Updates for sles-10-ia64"},{"installer_updates":false,"name":"SLE10-SDK-SP2-Updates","description":"SLE10-SDK-SP2-Updates for sles-10-s390x","enabled":true,"id":1311,"distro_target":"sles-10-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Updates/sles-10-s390x/"},{"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sles-10-ppc/","autorefresh":true,"distro_target":"sles-10-ppc","id":1312,"enabled":true,"description":"SLE10-SDK-SP2-Online for sles-10-ppc","name":"SLE10-SDK-SP2-Online","installer_updates":false},{"id":1313,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sles-10-i586/","autorefresh":true,"distro_target":"sles-10-i586","name":"SLE10-SDK-SP2-Online","installer_updates":false,"description":"SLE10-SDK-SP2-Online for sles-10-i586"},{"description":"SLE10-SDK-SP2-Online for sled-10-x86_64","name":"SLE10-SDK-SP2-Online","installer_updates":false,"autorefresh":true,"distro_target":"sled-10-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sled-10-x86_64/","enabled":true,"id":1314},{"description":"SLE10-SDK-SP2-Updates for sles-10-x86_64","installer_updates":false,"name":"SLE10-SDK-SP2-Updates","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Updates/sles-10-x86_64/","distro_target":"sles-10-x86_64","autorefresh":true,"id":1315,"enabled":true},{"description":"SLE10-SDK-SP2-Online for sles-10-ia64","installer_updates":false,"name":"SLE10-SDK-SP2-Online","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sles-10-ia64/","distro_target":"sles-10-ia64","autorefresh":true,"id":1316,"enabled":true},{"description":"SLE10-SDK-SP2-Updates for sles-10-ppc","name":"SLE10-SDK-SP2-Updates","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Updates/sles-10-ppc/","autorefresh":true,"distro_target":"sles-10-ppc","id":1317,"enabled":true},{"id":1318,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sles-10-s390x/","autorefresh":true,"distro_target":"sles-10-s390x","name":"SLE10-SDK-SP2-Online","installer_updates":false,"description":"SLE10-SDK-SP2-Online for sles-10-s390x"},{"enabled":true,"id":1319,"autorefresh":true,"distro_target":"sled-10-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Updates/sled-10-x86_64/","name":"SLE10-SDK-SP2-Updates","installer_updates":false,"description":"SLE10-SDK-SP2-Updates for sled-10-x86_64"},{"enabled":true,"id":1320,"autorefresh":true,"distro_target":"sled-10-i586","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Updates/sled-10-i586/","name":"SLE10-SDK-SP2-Updates","installer_updates":false,"description":"SLE10-SDK-SP2-Updates for sled-10-i586"},{"description":"SLE10-SDK-SP2-Online for sles-10-x86_64","name":"SLE10-SDK-SP2-Online","installer_updates":false,"autorefresh":true,"distro_target":"sles-10-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sles-10-x86_64/","enabled":true,"id":1321}],"online_predecessor_ids":[],"product_class":"SLE-SDK","predecessor_ids":[],"cpe":null,"product_type":"extension","shortname":null,"description":null,"free":true,"arch":null,"eula_url":""},{"predecessor_ids":[],"repositories":[{"description":"SLE10-SDK-SP2-Online for sled-10-i586","installer_updates":false,"name":"SLE10-SDK-SP2-Online","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sled-10-i586/","distro_target":"sled-10-i586","autorefresh":true,"id":1308,"enabled":true},{"enabled":true,"id":1312,"autorefresh":true,"distro_target":"sles-10-ppc","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sles-10-ppc/","name":"SLE10-SDK-SP2-Online","installer_updates":false,"description":"SLE10-SDK-SP2-Online for sles-10-ppc"},{"enabled":true,"id":1313,"autorefresh":true,"distro_target":"sles-10-i586","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sles-10-i586/","name":"SLE10-SDK-SP2-Online","installer_updates":false,"description":"SLE10-SDK-SP2-Online for sles-10-i586"},{"name":"SLE10-SDK-SP2-Online","installer_updates":false,"description":"SLE10-SDK-SP2-Online for sled-10-x86_64","id":1314,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sled-10-x86_64/","autorefresh":true,"distro_target":"sled-10-x86_64"},{"description":"SLE10-SDK-SP2-Online for sles-10-ia64","name":"SLE10-SDK-SP2-Online","installer_updates":false,"autorefresh":true,"distro_target":"sles-10-ia64","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sles-10-ia64/","enabled":true,"id":1316},{"description":"SLE10-SDK-SP2-Online for sles-10-s390x","installer_updates":false,"name":"SLE10-SDK-SP2-Online","distro_target":"sles-10-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sles-10-s390x/","enabled":true,"id":1318},{"name":"SLE10-SDK-SP2-Online","installer_updates":false,"description":"SLE10-SDK-SP2-Online for sles-10-x86_64","id":1321,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sles-10-x86_64/","autorefresh":true,"distro_target":"sles-10-x86_64"}],"online_predecessor_ids":[],"product_class":"SLE-SDK","cpe":null,"product_type":"extension","description":null,"shortname":null,"free":true,"eula_url":"","arch":null,"friendly_version":"10","extensions":[],"id":1178,"release_stage":"released","identifier":"SUSE-Linux-Enterprise-SDK-SP2-migration","recommended":false,"version":"10","name":"SUSE Linux Enterprise Software Development Kit","offline_predecessor_ids":[],"friendly_name":"SUSE Linux Enterprise Software Development Kit 10 online (Migration)","migration_extra":false,"release_type":"online","former_identifier":"SUSE-Linux-Enterprise-SDK-SP2-migration"},{"extensions":[],"id":1195,"release_stage":"released","identifier":"SUSE-Linux-Enterprise-SMT-SP2","friendly_version":"10 SP2","name":"SUSE Linux Enterprise Subscription Management Tool","offline_predecessor_ids":[],"friendly_name":"SUSE Linux Enterprise Subscription Management Tool 10 SP2","migration_extra":false,"former_identifier":"SUSE-Linux-Enterprise-SMT-SP2","release_type":null,"recommended":false,"version":"10.2","cpe":null,"product_type":"extension","predecessor_ids":[],"product_class":"SLESMT","online_predecessor_ids":[],"repositories":[{"url":"https://updates.suse.com/repo/$RCE/SLE10-SP2-SMT-Updates/sles-10-x86_64/","autorefresh":true,"distro_target":"sles-10-x86_64","id":1398,"enabled":true,"description":"SLE10-SP2-SMT-Updates for sles-10-x86_64","name":"SLE10-SP2-SMT-Updates","installer_updates":false},{"enabled":true,"id":1399,"autorefresh":true,"distro_target":"sles-10-i586","url":"https://updates.suse.com/repo/$RCE/SLE10-SP2-SMT-Updates/sles-10-i586/","name":"SLE10-SP2-SMT-Updates","installer_updates":false,"description":"SLE10-SP2-SMT-Updates for sles-10-i586"}],"eula_url":"","arch":null,"shortname":null,"description":null,"free":true}],"friendly_version":"10 SP2","arch":"ppc64","eula_url":"","free":false,"description":null,"shortname":null,"product_type":"base","cpe":null,"product_class":"SLES-PPC","online_predecessor_ids":[],"repositories":[{"distro_target":"sles-10-ppc","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLES10-SP2-Online/sles-10-ppc/","enabled":true,"id":658,"description":"SLES10-SP2-Online for sles-10-ppc","installer_updates":false,"name":"SLES10-SP2-Online"},{"autorefresh":true,"distro_target":"sles-10-ppc","url":"https://updates.suse.com/repo/$RCE/SLES10-SP2-Updates/sles-10-ppc/","enabled":true,"id":659,"description":"SLES10-SP2-Updates for sles-10-ppc","name":"SLES10-SP2-Updates","installer_updates":false},{"name":"SLE10-SP2-Debuginfo-Updates","installer_updates":false,"description":"SLE10-SP2-Debuginfo-Updates for sles-10-ppc","enabled":false,"id":661,"autorefresh":true,"distro_target":"sles-10-ppc","url":"https://updates.suse.com/repo/$RCE/SLE10-SP2-Debuginfo-Updates/sles-10-ppc/"}],"predecessor_ids":[]},{"extensions":[{"predecessor_ids":[],"repositories":[{"autorefresh":false,"distro_target":"sles-10-ppc","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Pool/sles-10-ppc/","enabled":true,"id":1322,"description":"SLE10-SDK-SP3-Pool for sles-10-ppc","name":"SLE10-SDK-SP3-Pool","installer_updates":false},{"id":1323,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Pool/sles-10-x86_64/","distro_target":"sles-10-x86_64","autorefresh":false,"installer_updates":false,"name":"SLE10-SDK-SP3-Pool","description":"SLE10-SDK-SP3-Pool for sles-10-x86_64"},{"name":"SLE10-SDK-SP3-Online","installer_updates":false,"description":"SLE10-SDK-SP3-Online for sled-10-i586","enabled":true,"id":1324,"autorefresh":true,"distro_target":"sled-10-i586","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sled-10-i586/"},{"name":"SLE10-SDK-SP3-Updates","installer_updates":false,"description":"SLE10-SDK-SP3-Updates for sled-10-x86_64","enabled":true,"id":1325,"autorefresh":true,"distro_target":"sled-10-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Updates/sled-10-x86_64/"},{"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sled-10-x86_64/","distro_target":"sled-10-x86_64","autorefresh":true,"id":1326,"enabled":true,"description":"SLE10-SDK-SP3-Online for sled-10-x86_64","installer_updates":false,"name":"SLE10-SDK-SP3-Online"},{"distro_target":"sled-10-x86_64","autorefresh":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Pool/sled-10-x86_64/","enabled":true,"id":1327,"description":"SLE10-SDK-SP3-Pool for sled-10-x86_64","installer_updates":false,"name":"SLE10-SDK-SP3-Pool"},{"enabled":true,"id":1328,"autorefresh":true,"distro_target":"sles-10-ia64","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sles-10-ia64/","name":"SLE10-SDK-SP3-Online","installer_updates":false,"description":"SLE10-SDK-SP3-Online for sles-10-ia64"},{"enabled":true,"id":1329,"distro_target":"sles-10-ia64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Updates/sles-10-ia64/","installer_updates":false,"name":"SLE10-SDK-SP3-Updates","description":"SLE10-SDK-SP3-Updates for sles-10-ia64"},{"distro_target":"sles-10-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sles-10-i586/","enabled":true,"id":1330,"description":"SLE10-SDK-SP3-Online for sles-10-i586","installer_updates":false,"name":"SLE10-SDK-SP3-Online"},{"name":"SLE10-SDK-SP3-Pool","installer_updates":false,"description":"SLE10-SDK-SP3-Pool for sles-10-ia64","enabled":true,"id":1331,"autorefresh":false,"distro_target":"sles-10-ia64","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Pool/sles-10-ia64/"},{"installer_updates":false,"name":"SLE10-SDK-SP3-Updates","description":"SLE10-SDK-SP3-Updates for sles-10-x86_64","id":1332,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Updates/sles-10-x86_64/","distro_target":"sles-10-x86_64","autorefresh":true},{"installer_updates":false,"name":"SLE10-SDK-SP3-Pool","description":"SLE10-SDK-SP3-Pool for sles-10-i586","enabled":true,"id":1333,"distro_target":"sles-10-i586","autorefresh":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Pool/sles-10-i586/"},{"name":"SLE10-SDK-SP3-Updates","installer_updates":false,"description":"SLE10-SDK-SP3-Updates for sles-10-i586","id":1334,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Updates/sles-10-i586/","autorefresh":true,"distro_target":"sles-10-i586"},{"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sles-10-s390x/","distro_target":"sles-10-s390x","autorefresh":true,"id":1335,"enabled":true,"description":"SLE10-SDK-SP3-Online for sles-10-s390x","installer_updates":false,"name":"SLE10-SDK-SP3-Online"},{"installer_updates":false,"name":"SLE10-SDK-SP3-Updates","description":"SLE10-SDK-SP3-Updates for sles-10-ppc","id":1336,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Updates/sles-10-ppc/","distro_target":"sles-10-ppc","autorefresh":true},{"enabled":true,"id":1337,"autorefresh":false,"distro_target":"sles-10-s390x","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Pool/sles-10-s390x/","name":"SLE10-SDK-SP3-Pool","installer_updates":false,"description":"SLE10-SDK-SP3-Pool for sles-10-s390x"},{"installer_updates":false,"name":"SLE10-SDK-SP3-Pool","description":"SLE10-SDK-SP3-Pool for sled-10-i586","enabled":true,"id":1338,"distro_target":"sled-10-i586","autorefresh":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Pool/sled-10-i586/"},{"description":"SLE10-SDK-SP3-Updates for sles-10-s390x","name":"SLE10-SDK-SP3-Updates","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Updates/sles-10-s390x/","autorefresh":true,"distro_target":"sles-10-s390x","id":1339,"enabled":true},{"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Updates/sled-10-i586/","distro_target":"sled-10-i586","autorefresh":true,"id":1340,"enabled":true,"description":"SLE10-SDK-SP3-Updates for sled-10-i586","installer_updates":false,"name":"SLE10-SDK-SP3-Updates"},{"id":1341,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sles-10-x86_64/","distro_target":"sles-10-x86_64","autorefresh":true,"installer_updates":false,"name":"SLE10-SDK-SP3-Online","description":"SLE10-SDK-SP3-Online for sles-10-x86_64"},{"enabled":true,"id":1342,"autorefresh":true,"distro_target":"sles-10-ppc","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sles-10-ppc/","name":"SLE10-SDK-SP3-Online","installer_updates":false,"description":"SLE10-SDK-SP3-Online for sles-10-ppc"}],"online_predecessor_ids":[],"product_class":"SLE-SDK","product_type":"extension","cpe":null,"free":true,"description":null,"shortname":null,"eula_url":"","arch":null,"friendly_version":"10 SP3","extensions":[],"identifier":"SUSE-Linux-Enterprise-SDK-SP3","release_stage":"released","id":1179,"recommended":false,"version":"10","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Software Development Kit","release_type":null,"former_identifier":"SUSE-Linux-Enterprise-SDK-SP3","friendly_name":"SUSE Linux Enterprise Software Development Kit 10 SP3","migration_extra":false},{"former_identifier":"SUSE-Linux-Enterprise-SDK-SP3-migration","release_type":null,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Software Development Kit 10 (Migration)","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Software Development Kit","version":"10","recommended":false,"id":1180,"release_stage":"released","identifier":"SUSE-Linux-Enterprise-SDK-SP3-migration","extensions":[],"friendly_version":"10","arch":null,"eula_url":"","free":true,"description":null,"shortname":null,"product_type":"extension","cpe":null,"repositories":[{"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sled-10-i586/","autorefresh":true,"distro_target":"sled-10-i586","id":1324,"enabled":true,"description":"SLE10-SDK-SP3-Online for sled-10-i586","name":"SLE10-SDK-SP3-Online","installer_updates":false},{"autorefresh":true,"distro_target":"sled-10-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sled-10-x86_64/","enabled":true,"id":1326,"description":"SLE10-SDK-SP3-Online for sled-10-x86_64","name":"SLE10-SDK-SP3-Online","installer_updates":false},{"distro_target":"sles-10-ia64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sles-10-ia64/","enabled":true,"id":1328,"description":"SLE10-SDK-SP3-Online for sles-10-ia64","installer_updates":false,"name":"SLE10-SDK-SP3-Online"},{"enabled":true,"id":1330,"autorefresh":true,"distro_target":"sles-10-i586","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sles-10-i586/","name":"SLE10-SDK-SP3-Online","installer_updates":false,"description":"SLE10-SDK-SP3-Online for sles-10-i586"},{"description":"SLE10-SDK-SP3-Online for sles-10-s390x","name":"SLE10-SDK-SP3-Online","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sles-10-s390x/","autorefresh":true,"distro_target":"sles-10-s390x","id":1335,"enabled":true},{"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sles-10-x86_64/","autorefresh":true,"distro_target":"sles-10-x86_64","id":1341,"enabled":true,"description":"SLE10-SDK-SP3-Online for sles-10-x86_64","name":"SLE10-SDK-SP3-Online","installer_updates":false},{"enabled":true,"id":1342,"autorefresh":true,"distro_target":"sles-10-ppc","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sles-10-ppc/","name":"SLE10-SDK-SP3-Online","installer_updates":false,"description":"SLE10-SDK-SP3-Online for sles-10-ppc"}],"online_predecessor_ids":[],"product_class":"SLE-SDK","predecessor_ids":[]},{"cpe":null,"product_type":"extension","predecessor_ids":[],"online_predecessor_ids":[],"repositories":[{"installer_updates":false,"name":"SLE10-SP3-Debuginfo-Updates","description":"SLE10-SP3-Debuginfo-Updates for sles-10-i586","id":664,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Updates/sles-10-i586/","distro_target":"sles-10-i586","autorefresh":true},{"name":"SLE10-SP3-Debuginfo-Pool","installer_updates":false,"description":"SLE10-SP3-Debuginfo-Pool for sles-10-i586","enabled":false,"id":669,"autorefresh":false,"distro_target":"sles-10-i586","url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Pool/sles-10-i586/"},{"url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Pool/sles-10-s390x/","autorefresh":false,"distro_target":"sles-10-s390x","id":672,"enabled":false,"description":"SLE10-SP3-Debuginfo-Pool for sles-10-s390x","name":"SLE10-SP3-Debuginfo-Pool","installer_updates":false},{"enabled":false,"id":675,"autorefresh":true,"distro_target":"sles-10-s390x","url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Updates/sles-10-s390x/","name":"SLE10-SP3-Debuginfo-Updates","installer_updates":false,"description":"SLE10-SP3-Debuginfo-Updates for sles-10-s390x"},{"enabled":false,"id":750,"autorefresh":true,"distro_target":"sles-10-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Updates/sles-10-x86_64/","name":"SLE10-SP3-Debuginfo-Updates","installer_updates":false,"description":"SLE10-SP3-Debuginfo-Updates for sles-10-x86_64"},{"description":"SLE10-SP3-Debuginfo-Pool for sles-10-x86_64","installer_updates":false,"name":"SLE10-SP3-Debuginfo-Pool","url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Pool/sles-10-x86_64/","distro_target":"sles-10-x86_64","autorefresh":false,"id":751,"enabled":false},{"name":"SLE10-SP3-Debuginfo-Pool","installer_updates":false,"description":"SLE10-SP3-Debuginfo-Pool for sles-10-ppc","id":779,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Pool/sles-10-ppc/","autorefresh":false,"distro_target":"sles-10-ppc"},{"name":"SLE10-SP3-Debuginfo-Updates","installer_updates":false,"description":"SLE10-SP3-Debuginfo-Updates for sles-10-ppc","id":780,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Updates/sles-10-ppc/","autorefresh":true,"distro_target":"sles-10-ppc"},{"enabled":false,"id":788,"autorefresh":false,"distro_target":"sles-10-ia64","url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Pool/sles-10-ia64/","name":"SLE10-SP3-Debuginfo-Pool","installer_updates":false,"description":"SLE10-SP3-Debuginfo-Pool for sles-10-ia64"},{"enabled":false,"id":789,"autorefresh":true,"distro_target":"sles-10-ia64","url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Updates/sles-10-ia64/","name":"SLE10-SP3-Debuginfo-Updates","installer_updates":false,"description":"SLE10-SP3-Debuginfo-Updates for sles-10-ia64"},{"id":869,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Pool/sled-10-x86_64/","distro_target":"sled-10-x86_64","autorefresh":false,"installer_updates":false,"name":"SLE10-SP3-Debuginfo-Pool","description":"SLE10-SP3-Debuginfo-Pool for sled-10-x86_64"},{"description":"SLE10-SP3-Debuginfo-Updates for sled-10-x86_64","installer_updates":false,"name":"SLE10-SP3-Debuginfo-Updates","url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Updates/sled-10-x86_64/","distro_target":"sled-10-x86_64","autorefresh":true,"id":870,"enabled":false},{"installer_updates":false,"name":"SLE10-SP3-Debuginfo-Pool","description":"SLE10-SP3-Debuginfo-Pool for sled-10-i586","id":895,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Pool/sled-10-i586/","distro_target":"sled-10-i586","autorefresh":false},{"name":"SLE10-SP3-Debuginfo-Updates","installer_updates":false,"description":"SLE10-SP3-Debuginfo-Updates for sled-10-i586","enabled":false,"id":896,"autorefresh":true,"distro_target":"sled-10-i586","url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Updates/sled-10-i586/"},{"url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-SMT-Updates/sles-10-i586/","distro_target":"sles-10-i586","autorefresh":true,"id":1403,"enabled":true,"description":"SLE10-SP3-SMT-Updates for sles-10-i586","installer_updates":false,"name":"SLE10-SP3-SMT-Updates"},{"id":1404,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-SMT-Updates/sles-10-x86_64/","distro_target":"sles-10-x86_64","autorefresh":true,"installer_updates":false,"name":"SLE10-SP3-SMT-Updates","description":"SLE10-SP3-SMT-Updates for sles-10-x86_64"}],"product_class":"SLESMT","eula_url":"","arch":null,"description":null,"shortname":null,"free":true,"extensions":[],"release_stage":"released","identifier":"SUSE-Linux-Enterprise-SMT-SP3","id":1197,"friendly_version":"10 SP3","name":"SUSE Linux Enterprise Subscription Management Tool","offline_predecessor_ids":[],"friendly_name":"SUSE Linux Enterprise Subscription Management Tool 10 SP3","migration_extra":false,"former_identifier":"SUSE-Linux-Enterprise-SMT-SP3","release_type":null,"recommended":false,"version":"10.3"}],"release_stage":"released","id":739,"identifier":"SUSE-Linux-Enterprise-Server-SP3","friendly_version":"10 SP3","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Server","former_identifier":"SUSE-Linux-Enterprise-Server-SP3","release_type":null,"friendly_name":"SUSE Linux Enterprise Server 10 SP3 ppc64","migration_extra":false,"recommended":false,"version":"10","product_type":"base","cpe":null,"predecessor_ids":[],"online_predecessor_ids":[],"product_class":"SLES-PPC","repositories":[{"id":704,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLES10-GPLv3-Extras/sles-10-ppc/","autorefresh":true,"distro_target":"sles-10-ppc","name":"SLES10-GPLv3-Extras","installer_updates":false,"description":"SLES10-GPLv3-Extras for sles-10-ppc"},{"installer_updates":false,"name":"SLES10-SP3-Online","description":"SLES10-SP3-Online for sles-10-ppc","enabled":false,"id":749,"distro_target":"sles-10-ppc","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLES10-SP3-Online/sles-10-ppc/"},{"id":779,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Pool/sles-10-ppc/","autorefresh":false,"distro_target":"sles-10-ppc","name":"SLE10-SP3-Debuginfo-Pool","installer_updates":false,"description":"SLE10-SP3-Debuginfo-Pool for sles-10-ppc"},{"description":"SLE10-SP3-Debuginfo-Updates for sles-10-ppc","name":"SLE10-SP3-Debuginfo-Updates","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Updates/sles-10-ppc/","autorefresh":true,"distro_target":"sles-10-ppc","id":780,"enabled":false},{"enabled":true,"id":781,"autorefresh":false,"distro_target":"sles-10-ppc","url":"https://updates.suse.com/repo/$RCE/SLES10-SP3-Pool/sles-10-ppc/","name":"SLES10-SP3-Pool","installer_updates":false,"description":"SLES10-SP3-Pool for sles-10-ppc"},{"id":782,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Online/sles-10-ppc/","autorefresh":true,"distro_target":"sles-10-ppc","name":"SLE10-SP3-Debuginfo-Online","installer_updates":false,"description":"SLE10-SP3-Debuginfo-Online for sles-10-ppc"},{"enabled":true,"id":783,"distro_target":"sles-10-ppc","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLES10-SP3-Updates/sles-10-ppc/","installer_updates":false,"name":"SLES10-SP3-Updates","description":"SLES10-SP3-Updates for sles-10-ppc"}],"eula_url":"","arch":"ppc64","free":false,"description":null,"shortname":null},{"free":false,"description":null,"shortname":null,"arch":"ia64","eula_url":"","repositories":[{"enabled":false,"id":662,"autorefresh":true,"distro_target":"sles-10-ia64","url":"https://updates.suse.com/repo/$RCE/SLES10-SP3-Online/sles-10-ia64/","name":"SLES10-SP3-Online","installer_updates":false,"description":"SLES10-SP3-Online for sles-10-ia64"},{"description":"SLES10-GPLv3-Extras for sles-10-ia64","installer_updates":false,"name":"SLES10-GPLv3-Extras","distro_target":"sles-10-ia64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLES10-GPLv3-Extras/sles-10-ia64/","enabled":false,"id":784},{"autorefresh":true,"distro_target":"sles-10-ia64","url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Online/sles-10-ia64/","enabled":false,"id":785,"description":"SLE10-SP3-Debuginfo-Online for sles-10-ia64","name":"SLE10-SP3-Debuginfo-Online","installer_updates":false},{"name":"SLES10-SP3-Updates","installer_updates":false,"description":"SLES10-SP3-Updates for sles-10-ia64","enabled":true,"id":786,"autorefresh":true,"distro_target":"sles-10-ia64","url":"https://updates.suse.com/repo/$RCE/SLES10-SP3-Updates/sles-10-ia64/"},{"id":787,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLES10-SP3-Pool/sles-10-ia64/","autorefresh":false,"distro_target":"sles-10-ia64","name":"SLES10-SP3-Pool","installer_updates":false,"description":"SLES10-SP3-Pool for sles-10-ia64"},{"autorefresh":false,"distro_target":"sles-10-ia64","url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Pool/sles-10-ia64/","enabled":false,"id":788,"description":"SLE10-SP3-Debuginfo-Pool for sles-10-ia64","name":"SLE10-SP3-Debuginfo-Pool","installer_updates":false},{"name":"SLE10-SP3-Debuginfo-Updates","installer_updates":false,"description":"SLE10-SP3-Debuginfo-Updates for sles-10-ia64","id":789,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Updates/sles-10-ia64/","autorefresh":true,"distro_target":"sles-10-ia64"}],"online_predecessor_ids":[],"product_class":"SLES-IA","predecessor_ids":[],"product_type":"base","cpe":null,"version":"10","recommended":false,"former_identifier":"SUSE-Linux-Enterprise-Server-SP3","release_type":null,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Server 10 SP3 ia64","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Server","friendly_version":"10 SP3","release_stage":"released","id":740,"identifier":"SUSE-Linux-Enterprise-Server-SP3","extensions":[{"release_type":null,"former_identifier":"SUSE-Linux-Enterprise-SDK-SP3","friendly_name":"SUSE Linux Enterprise Software Development Kit 10 SP3","migration_extra":false,"offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Software Development Kit","version":"10","recommended":false,"identifier":"SUSE-Linux-Enterprise-SDK-SP3","release_stage":"released","id":1179,"extensions":[],"friendly_version":"10 SP3","arch":null,"eula_url":"","free":true,"shortname":null,"description":null,"product_type":"extension","cpe":null,"product_class":"SLE-SDK","online_predecessor_ids":[],"repositories":[{"description":"SLE10-SDK-SP3-Pool for sles-10-ppc","name":"SLE10-SDK-SP3-Pool","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Pool/sles-10-ppc/","autorefresh":false,"distro_target":"sles-10-ppc","id":1322,"enabled":true},{"enabled":true,"id":1323,"distro_target":"sles-10-x86_64","autorefresh":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Pool/sles-10-x86_64/","installer_updates":false,"name":"SLE10-SDK-SP3-Pool","description":"SLE10-SDK-SP3-Pool for sles-10-x86_64"},{"enabled":true,"id":1324,"distro_target":"sled-10-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sled-10-i586/","installer_updates":false,"name":"SLE10-SDK-SP3-Online","description":"SLE10-SDK-SP3-Online for sled-10-i586"},{"id":1325,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Updates/sled-10-x86_64/","autorefresh":true,"distro_target":"sled-10-x86_64","name":"SLE10-SDK-SP3-Updates","installer_updates":false,"description":"SLE10-SDK-SP3-Updates for sled-10-x86_64"},{"distro_target":"sled-10-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sled-10-x86_64/","enabled":true,"id":1326,"description":"SLE10-SDK-SP3-Online for sled-10-x86_64","installer_updates":false,"name":"SLE10-SDK-SP3-Online"},{"enabled":true,"id":1327,"distro_target":"sled-10-x86_64","autorefresh":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Pool/sled-10-x86_64/","installer_updates":false,"name":"SLE10-SDK-SP3-Pool","description":"SLE10-SDK-SP3-Pool for sled-10-x86_64"},{"description":"SLE10-SDK-SP3-Online for sles-10-ia64","installer_updates":false,"name":"SLE10-SDK-SP3-Online","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sles-10-ia64/","distro_target":"sles-10-ia64","autorefresh":true,"id":1328,"enabled":true},{"description":"SLE10-SDK-SP3-Updates for sles-10-ia64","name":"SLE10-SDK-SP3-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sles-10-ia64","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Updates/sles-10-ia64/","enabled":true,"id":1329},{"name":"SLE10-SDK-SP3-Online","installer_updates":false,"description":"SLE10-SDK-SP3-Online for sles-10-i586","enabled":true,"id":1330,"autorefresh":true,"distro_target":"sles-10-i586","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sles-10-i586/"},{"description":"SLE10-SDK-SP3-Pool for sles-10-ia64","installer_updates":false,"name":"SLE10-SDK-SP3-Pool","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Pool/sles-10-ia64/","distro_target":"sles-10-ia64","autorefresh":false,"id":1331,"enabled":true},{"installer_updates":false,"name":"SLE10-SDK-SP3-Updates","description":"SLE10-SDK-SP3-Updates for sles-10-x86_64","id":1332,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Updates/sles-10-x86_64/","distro_target":"sles-10-x86_64","autorefresh":true},{"distro_target":"sles-10-i586","autorefresh":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Pool/sles-10-i586/","enabled":true,"id":1333,"description":"SLE10-SDK-SP3-Pool for sles-10-i586","installer_updates":false,"name":"SLE10-SDK-SP3-Pool"},{"id":1334,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Updates/sles-10-i586/","distro_target":"sles-10-i586","autorefresh":true,"installer_updates":false,"name":"SLE10-SDK-SP3-Updates","description":"SLE10-SDK-SP3-Updates for sles-10-i586"},{"installer_updates":false,"name":"SLE10-SDK-SP3-Online","description":"SLE10-SDK-SP3-Online for sles-10-s390x","id":1335,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sles-10-s390x/","distro_target":"sles-10-s390x","autorefresh":true},{"installer_updates":false,"name":"SLE10-SDK-SP3-Updates","description":"SLE10-SDK-SP3-Updates for sles-10-ppc","enabled":true,"id":1336,"distro_target":"sles-10-ppc","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Updates/sles-10-ppc/"},{"description":"SLE10-SDK-SP3-Pool for sles-10-s390x","installer_updates":false,"name":"SLE10-SDK-SP3-Pool","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Pool/sles-10-s390x/","distro_target":"sles-10-s390x","autorefresh":false,"id":1337,"enabled":true},{"distro_target":"sled-10-i586","autorefresh":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Pool/sled-10-i586/","enabled":true,"id":1338,"description":"SLE10-SDK-SP3-Pool for sled-10-i586","installer_updates":false,"name":"SLE10-SDK-SP3-Pool"},{"id":1339,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Updates/sles-10-s390x/","autorefresh":true,"distro_target":"sles-10-s390x","name":"SLE10-SDK-SP3-Updates","installer_updates":false,"description":"SLE10-SDK-SP3-Updates for sles-10-s390x"},{"id":1340,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Updates/sled-10-i586/","distro_target":"sled-10-i586","autorefresh":true,"installer_updates":false,"name":"SLE10-SDK-SP3-Updates","description":"SLE10-SDK-SP3-Updates for sled-10-i586"},{"installer_updates":false,"name":"SLE10-SDK-SP3-Online","description":"SLE10-SDK-SP3-Online for sles-10-x86_64","enabled":true,"id":1341,"distro_target":"sles-10-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sles-10-x86_64/"},{"enabled":true,"id":1342,"autorefresh":true,"distro_target":"sles-10-ppc","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sles-10-ppc/","name":"SLE10-SDK-SP3-Online","installer_updates":false,"description":"SLE10-SDK-SP3-Online for sles-10-ppc"}],"predecessor_ids":[]},{"description":null,"shortname":null,"free":true,"eula_url":"","arch":null,"predecessor_ids":[],"product_class":"SLE-SDK","online_predecessor_ids":[],"repositories":[{"description":"SLE10-SDK-SP3-Online for sled-10-i586","installer_updates":false,"name":"SLE10-SDK-SP3-Online","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sled-10-i586/","distro_target":"sled-10-i586","autorefresh":true,"id":1324,"enabled":true},{"autorefresh":true,"distro_target":"sled-10-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sled-10-x86_64/","enabled":true,"id":1326,"description":"SLE10-SDK-SP3-Online for sled-10-x86_64","name":"SLE10-SDK-SP3-Online","installer_updates":false},{"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sles-10-ia64/","autorefresh":true,"distro_target":"sles-10-ia64","id":1328,"enabled":true,"description":"SLE10-SDK-SP3-Online for sles-10-ia64","name":"SLE10-SDK-SP3-Online","installer_updates":false},{"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sles-10-i586/","autorefresh":true,"distro_target":"sles-10-i586","id":1330,"enabled":true,"description":"SLE10-SDK-SP3-Online for sles-10-i586","name":"SLE10-SDK-SP3-Online","installer_updates":false},{"installer_updates":false,"name":"SLE10-SDK-SP3-Online","description":"SLE10-SDK-SP3-Online for sles-10-s390x","enabled":true,"id":1335,"distro_target":"sles-10-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sles-10-s390x/"},{"enabled":true,"id":1341,"autorefresh":true,"distro_target":"sles-10-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sles-10-x86_64/","name":"SLE10-SDK-SP3-Online","installer_updates":false,"description":"SLE10-SDK-SP3-Online for sles-10-x86_64"},{"installer_updates":false,"name":"SLE10-SDK-SP3-Online","description":"SLE10-SDK-SP3-Online for sles-10-ppc","id":1342,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sles-10-ppc/","distro_target":"sles-10-ppc","autorefresh":true}],"cpe":null,"product_type":"extension","recommended":false,"version":"10","name":"SUSE Linux Enterprise Software Development Kit","offline_predecessor_ids":[],"friendly_name":"SUSE Linux Enterprise Software Development Kit 10 (Migration)","migration_extra":false,"release_type":null,"former_identifier":"SUSE-Linux-Enterprise-SDK-SP3-migration","friendly_version":"10","extensions":[],"id":1180,"release_stage":"released","identifier":"SUSE-Linux-Enterprise-SDK-SP3-migration"},{"release_type":null,"former_identifier":"SUSE-Linux-Enterprise-SMT-SP3","friendly_name":"SUSE Linux Enterprise Subscription Management Tool 10 SP3","migration_extra":false,"offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Subscription Management Tool","version":"10.3","recommended":false,"release_stage":"released","identifier":"SUSE-Linux-Enterprise-SMT-SP3","id":1197,"extensions":[],"friendly_version":"10 SP3","arch":null,"eula_url":"","free":true,"description":null,"shortname":null,"product_type":"extension","cpe":null,"repositories":[{"id":664,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Updates/sles-10-i586/","autorefresh":true,"distro_target":"sles-10-i586","name":"SLE10-SP3-Debuginfo-Updates","installer_updates":false,"description":"SLE10-SP3-Debuginfo-Updates for sles-10-i586"},{"id":669,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Pool/sles-10-i586/","autorefresh":false,"distro_target":"sles-10-i586","name":"SLE10-SP3-Debuginfo-Pool","installer_updates":false,"description":"SLE10-SP3-Debuginfo-Pool for sles-10-i586"},{"url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Pool/sles-10-s390x/","distro_target":"sles-10-s390x","autorefresh":false,"id":672,"enabled":false,"description":"SLE10-SP3-Debuginfo-Pool for sles-10-s390x","installer_updates":false,"name":"SLE10-SP3-Debuginfo-Pool"},{"description":"SLE10-SP3-Debuginfo-Updates for sles-10-s390x","installer_updates":false,"name":"SLE10-SP3-Debuginfo-Updates","url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Updates/sles-10-s390x/","distro_target":"sles-10-s390x","autorefresh":true,"id":675,"enabled":false},{"id":750,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Updates/sles-10-x86_64/","distro_target":"sles-10-x86_64","autorefresh":true,"installer_updates":false,"name":"SLE10-SP3-Debuginfo-Updates","description":"SLE10-SP3-Debuginfo-Updates for sles-10-x86_64"},{"description":"SLE10-SP3-Debuginfo-Pool for sles-10-x86_64","installer_updates":false,"name":"SLE10-SP3-Debuginfo-Pool","url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Pool/sles-10-x86_64/","distro_target":"sles-10-x86_64","autorefresh":false,"id":751,"enabled":false},{"id":779,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Pool/sles-10-ppc/","distro_target":"sles-10-ppc","autorefresh":false,"installer_updates":false,"name":"SLE10-SP3-Debuginfo-Pool","description":"SLE10-SP3-Debuginfo-Pool for sles-10-ppc"},{"distro_target":"sles-10-ppc","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Updates/sles-10-ppc/","enabled":false,"id":780,"description":"SLE10-SP3-Debuginfo-Updates for sles-10-ppc","installer_updates":false,"name":"SLE10-SP3-Debuginfo-Updates"},{"enabled":false,"id":788,"autorefresh":false,"distro_target":"sles-10-ia64","url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Pool/sles-10-ia64/","name":"SLE10-SP3-Debuginfo-Pool","installer_updates":false,"description":"SLE10-SP3-Debuginfo-Pool for sles-10-ia64"},{"description":"SLE10-SP3-Debuginfo-Updates for sles-10-ia64","name":"SLE10-SP3-Debuginfo-Updates","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Updates/sles-10-ia64/","autorefresh":true,"distro_target":"sles-10-ia64","id":789,"enabled":false},{"enabled":false,"id":869,"distro_target":"sled-10-x86_64","autorefresh":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Pool/sled-10-x86_64/","installer_updates":false,"name":"SLE10-SP3-Debuginfo-Pool","description":"SLE10-SP3-Debuginfo-Pool for sled-10-x86_64"},{"autorefresh":true,"distro_target":"sled-10-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Updates/sled-10-x86_64/","enabled":false,"id":870,"description":"SLE10-SP3-Debuginfo-Updates for sled-10-x86_64","name":"SLE10-SP3-Debuginfo-Updates","installer_updates":false},{"installer_updates":false,"name":"SLE10-SP3-Debuginfo-Pool","description":"SLE10-SP3-Debuginfo-Pool for sled-10-i586","id":895,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Pool/sled-10-i586/","distro_target":"sled-10-i586","autorefresh":false},{"installer_updates":false,"name":"SLE10-SP3-Debuginfo-Updates","description":"SLE10-SP3-Debuginfo-Updates for sled-10-i586","id":896,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Updates/sled-10-i586/","distro_target":"sled-10-i586","autorefresh":true},{"name":"SLE10-SP3-SMT-Updates","installer_updates":false,"description":"SLE10-SP3-SMT-Updates for sles-10-i586","enabled":true,"id":1403,"autorefresh":true,"distro_target":"sles-10-i586","url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-SMT-Updates/sles-10-i586/"},{"id":1404,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-SMT-Updates/sles-10-x86_64/","autorefresh":true,"distro_target":"sles-10-x86_64","name":"SLE10-SP3-SMT-Updates","installer_updates":false,"description":"SLE10-SP3-SMT-Updates for sles-10-x86_64"}],"online_predecessor_ids":[],"product_class":"SLESMT","predecessor_ids":[]}]},{"product_type":"base","cpe":null,"online_predecessor_ids":[],"product_class":"SLES-Z","repositories":[{"installer_updates":false,"name":"SLES10-SP3-Online","description":"SLES10-SP3-Online for sles-10-s390x","enabled":false,"id":671,"distro_target":"sles-10-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLES10-SP3-Online/sles-10-s390x/"},{"enabled":false,"id":672,"autorefresh":false,"distro_target":"sles-10-s390x","url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Pool/sles-10-s390x/","name":"SLE10-SP3-Debuginfo-Pool","installer_updates":false,"description":"SLE10-SP3-Debuginfo-Pool for sles-10-s390x"},{"id":673,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLES10-SP3-Pool/sles-10-s390x/","distro_target":"sles-10-s390x","autorefresh":false,"installer_updates":false,"name":"SLES10-SP3-Pool","description":"SLES10-SP3-Pool for sles-10-s390x"},{"description":"SLE10-SP3-Debuginfo-Updates for sles-10-s390x","installer_updates":false,"name":"SLE10-SP3-Debuginfo-Updates","url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Updates/sles-10-s390x/","distro_target":"sles-10-s390x","autorefresh":true,"id":675,"enabled":false},{"description":"SLE10-SP3-Debuginfo-Online for sles-10-s390x","name":"SLE10-SP3-Debuginfo-Online","installer_updates":false,"autorefresh":true,"distro_target":"sles-10-s390x","url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Online/sles-10-s390x/","enabled":false,"id":676},{"id":677,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLES10-SP3-Updates/sles-10-s390x/","distro_target":"sles-10-s390x","autorefresh":true,"installer_updates":false,"name":"SLES10-SP3-Updates","description":"SLES10-SP3-Updates for sles-10-s390x"},{"installer_updates":false,"name":"SLES10-GPLv3-Extras","description":"SLES10-GPLv3-Extras for sles-10-s390x","id":678,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLES10-GPLv3-Extras/sles-10-s390x/","distro_target":"sles-10-s390x","autorefresh":true}],"predecessor_ids":[],"arch":"s390","eula_url":"","free":false,"description":null,"shortname":null,"identifier":"SUSE-Linux-Enterprise-Server-SP3","release_stage":"released","id":741,"extensions":[{"version":"10","recommended":false,"former_identifier":"SUSE-Linux-Enterprise-SDK-SP3","release_type":null,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Software Development Kit 10 SP3","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Software Development Kit","friendly_version":"10 SP3","identifier":"SUSE-Linux-Enterprise-SDK-SP3","release_stage":"released","id":1179,"extensions":[],"free":true,"shortname":null,"description":null,"arch":null,"eula_url":"","repositories":[{"distro_target":"sles-10-ppc","autorefresh":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Pool/sles-10-ppc/","enabled":true,"id":1322,"description":"SLE10-SDK-SP3-Pool for sles-10-ppc","installer_updates":false,"name":"SLE10-SDK-SP3-Pool"},{"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Pool/sles-10-x86_64/","autorefresh":false,"distro_target":"sles-10-x86_64","id":1323,"enabled":true,"description":"SLE10-SDK-SP3-Pool for sles-10-x86_64","name":"SLE10-SDK-SP3-Pool","installer_updates":false},{"enabled":true,"id":1324,"distro_target":"sled-10-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sled-10-i586/","installer_updates":false,"name":"SLE10-SDK-SP3-Online","description":"SLE10-SDK-SP3-Online for sled-10-i586"},{"id":1325,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Updates/sled-10-x86_64/","autorefresh":true,"distro_target":"sled-10-x86_64","name":"SLE10-SDK-SP3-Updates","installer_updates":false,"description":"SLE10-SDK-SP3-Updates for sled-10-x86_64"},{"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sled-10-x86_64/","distro_target":"sled-10-x86_64","autorefresh":true,"id":1326,"enabled":true,"description":"SLE10-SDK-SP3-Online for sled-10-x86_64","installer_updates":false,"name":"SLE10-SDK-SP3-Online"},{"description":"SLE10-SDK-SP3-Pool for sled-10-x86_64","name":"SLE10-SDK-SP3-Pool","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Pool/sled-10-x86_64/","autorefresh":false,"distro_target":"sled-10-x86_64","id":1327,"enabled":true},{"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sles-10-ia64/","distro_target":"sles-10-ia64","autorefresh":true,"id":1328,"enabled":true,"description":"SLE10-SDK-SP3-Online for sles-10-ia64","installer_updates":false,"name":"SLE10-SDK-SP3-Online"},{"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Updates/sles-10-ia64/","distro_target":"sles-10-ia64","autorefresh":true,"id":1329,"enabled":true,"description":"SLE10-SDK-SP3-Updates for sles-10-ia64","installer_updates":false,"name":"SLE10-SDK-SP3-Updates"},{"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sles-10-i586/","distro_target":"sles-10-i586","autorefresh":true,"id":1330,"enabled":true,"description":"SLE10-SDK-SP3-Online for sles-10-i586","installer_updates":false,"name":"SLE10-SDK-SP3-Online"},{"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Pool/sles-10-ia64/","autorefresh":false,"distro_target":"sles-10-ia64","id":1331,"enabled":true,"description":"SLE10-SDK-SP3-Pool for sles-10-ia64","name":"SLE10-SDK-SP3-Pool","installer_updates":false},{"installer_updates":false,"name":"SLE10-SDK-SP3-Updates","description":"SLE10-SDK-SP3-Updates for sles-10-x86_64","id":1332,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Updates/sles-10-x86_64/","distro_target":"sles-10-x86_64","autorefresh":true},{"name":"SLE10-SDK-SP3-Pool","installer_updates":false,"description":"SLE10-SDK-SP3-Pool for sles-10-i586","id":1333,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Pool/sles-10-i586/","autorefresh":false,"distro_target":"sles-10-i586"},{"description":"SLE10-SDK-SP3-Updates for sles-10-i586","installer_updates":false,"name":"SLE10-SDK-SP3-Updates","distro_target":"sles-10-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Updates/sles-10-i586/","enabled":true,"id":1334},{"description":"SLE10-SDK-SP3-Online for sles-10-s390x","installer_updates":false,"name":"SLE10-SDK-SP3-Online","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sles-10-s390x/","distro_target":"sles-10-s390x","autorefresh":true,"id":1335,"enabled":true},{"description":"SLE10-SDK-SP3-Updates for sles-10-ppc","installer_updates":false,"name":"SLE10-SDK-SP3-Updates","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Updates/sles-10-ppc/","distro_target":"sles-10-ppc","autorefresh":true,"id":1336,"enabled":true},{"description":"SLE10-SDK-SP3-Pool for sles-10-s390x","name":"SLE10-SDK-SP3-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sles-10-s390x","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Pool/sles-10-s390x/","enabled":true,"id":1337},{"installer_updates":false,"name":"SLE10-SDK-SP3-Pool","description":"SLE10-SDK-SP3-Pool for sled-10-i586","id":1338,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Pool/sled-10-i586/","distro_target":"sled-10-i586","autorefresh":false},{"enabled":true,"id":1339,"autorefresh":true,"distro_target":"sles-10-s390x","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Updates/sles-10-s390x/","name":"SLE10-SDK-SP3-Updates","installer_updates":false,"description":"SLE10-SDK-SP3-Updates for sles-10-s390x"},{"enabled":true,"id":1340,"distro_target":"sled-10-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Updates/sled-10-i586/","installer_updates":false,"name":"SLE10-SDK-SP3-Updates","description":"SLE10-SDK-SP3-Updates for sled-10-i586"},{"name":"SLE10-SDK-SP3-Online","installer_updates":false,"description":"SLE10-SDK-SP3-Online for sles-10-x86_64","id":1341,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sles-10-x86_64/","autorefresh":true,"distro_target":"sles-10-x86_64"},{"distro_target":"sles-10-ppc","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sles-10-ppc/","enabled":true,"id":1342,"description":"SLE10-SDK-SP3-Online for sles-10-ppc","installer_updates":false,"name":"SLE10-SDK-SP3-Online"}],"online_predecessor_ids":[],"product_class":"SLE-SDK","predecessor_ids":[],"product_type":"extension","cpe":null},{"product_type":"extension","cpe":null,"predecessor_ids":[],"product_class":"SLE-SDK","online_predecessor_ids":[],"repositories":[{"enabled":true,"id":1324,"distro_target":"sled-10-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sled-10-i586/","installer_updates":false,"name":"SLE10-SDK-SP3-Online","description":"SLE10-SDK-SP3-Online for sled-10-i586"},{"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sled-10-x86_64/","autorefresh":true,"distro_target":"sled-10-x86_64","id":1326,"enabled":true,"description":"SLE10-SDK-SP3-Online for sled-10-x86_64","name":"SLE10-SDK-SP3-Online","installer_updates":false},{"name":"SLE10-SDK-SP3-Online","installer_updates":false,"description":"SLE10-SDK-SP3-Online for sles-10-ia64","enabled":true,"id":1328,"autorefresh":true,"distro_target":"sles-10-ia64","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sles-10-ia64/"},{"installer_updates":false,"name":"SLE10-SDK-SP3-Online","description":"SLE10-SDK-SP3-Online for sles-10-i586","id":1330,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sles-10-i586/","distro_target":"sles-10-i586","autorefresh":true},{"description":"SLE10-SDK-SP3-Online for sles-10-s390x","installer_updates":false,"name":"SLE10-SDK-SP3-Online","distro_target":"sles-10-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sles-10-s390x/","enabled":true,"id":1335},{"name":"SLE10-SDK-SP3-Online","installer_updates":false,"description":"SLE10-SDK-SP3-Online for sles-10-x86_64","id":1341,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sles-10-x86_64/","autorefresh":true,"distro_target":"sles-10-x86_64"},{"distro_target":"sles-10-ppc","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sles-10-ppc/","enabled":true,"id":1342,"description":"SLE10-SDK-SP3-Online for sles-10-ppc","installer_updates":false,"name":"SLE10-SDK-SP3-Online"}],"eula_url":"","arch":null,"free":true,"description":null,"shortname":null,"extensions":[],"identifier":"SUSE-Linux-Enterprise-SDK-SP3-migration","release_stage":"released","id":1180,"friendly_version":"10","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Software Development Kit","release_type":null,"former_identifier":"SUSE-Linux-Enterprise-SDK-SP3-migration","migration_extra":false,"friendly_name":"SUSE Linux Enterprise Software Development Kit 10 (Migration)","recommended":false,"version":"10"},{"former_identifier":"SUSE-Linux-Enterprise-SMT-SP3","release_type":null,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Subscription Management Tool 10 SP3","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Subscription Management Tool","version":"10.3","recommended":false,"release_stage":"released","identifier":"SUSE-Linux-Enterprise-SMT-SP3","id":1197,"extensions":[],"friendly_version":"10 SP3","arch":null,"eula_url":"","free":true,"description":null,"shortname":null,"product_type":"extension","cpe":null,"online_predecessor_ids":[],"repositories":[{"description":"SLE10-SP3-Debuginfo-Updates for sles-10-i586","installer_updates":false,"name":"SLE10-SP3-Debuginfo-Updates","url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Updates/sles-10-i586/","distro_target":"sles-10-i586","autorefresh":true,"id":664,"enabled":false},{"id":669,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Pool/sles-10-i586/","distro_target":"sles-10-i586","autorefresh":false,"installer_updates":false,"name":"SLE10-SP3-Debuginfo-Pool","description":"SLE10-SP3-Debuginfo-Pool for sles-10-i586"},{"description":"SLE10-SP3-Debuginfo-Pool for sles-10-s390x","installer_updates":false,"name":"SLE10-SP3-Debuginfo-Pool","url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Pool/sles-10-s390x/","distro_target":"sles-10-s390x","autorefresh":false,"id":672,"enabled":false},{"autorefresh":true,"distro_target":"sles-10-s390x","url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Updates/sles-10-s390x/","enabled":false,"id":675,"description":"SLE10-SP3-Debuginfo-Updates for sles-10-s390x","name":"SLE10-SP3-Debuginfo-Updates","installer_updates":false},{"autorefresh":true,"distro_target":"sles-10-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Updates/sles-10-x86_64/","enabled":false,"id":750,"description":"SLE10-SP3-Debuginfo-Updates for sles-10-x86_64","name":"SLE10-SP3-Debuginfo-Updates","installer_updates":false},{"id":751,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Pool/sles-10-x86_64/","distro_target":"sles-10-x86_64","autorefresh":false,"installer_updates":false,"name":"SLE10-SP3-Debuginfo-Pool","description":"SLE10-SP3-Debuginfo-Pool for sles-10-x86_64"},{"url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Pool/sles-10-ppc/","distro_target":"sles-10-ppc","autorefresh":false,"id":779,"enabled":false,"description":"SLE10-SP3-Debuginfo-Pool for sles-10-ppc","installer_updates":false,"name":"SLE10-SP3-Debuginfo-Pool"},{"url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Updates/sles-10-ppc/","distro_target":"sles-10-ppc","autorefresh":true,"id":780,"enabled":false,"description":"SLE10-SP3-Debuginfo-Updates for sles-10-ppc","installer_updates":false,"name":"SLE10-SP3-Debuginfo-Updates"},{"id":788,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Pool/sles-10-ia64/","autorefresh":false,"distro_target":"sles-10-ia64","name":"SLE10-SP3-Debuginfo-Pool","installer_updates":false,"description":"SLE10-SP3-Debuginfo-Pool for sles-10-ia64"},{"name":"SLE10-SP3-Debuginfo-Updates","installer_updates":false,"description":"SLE10-SP3-Debuginfo-Updates for sles-10-ia64","enabled":false,"id":789,"autorefresh":true,"distro_target":"sles-10-ia64","url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Updates/sles-10-ia64/"},{"enabled":false,"id":869,"distro_target":"sled-10-x86_64","autorefresh":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Pool/sled-10-x86_64/","installer_updates":false,"name":"SLE10-SP3-Debuginfo-Pool","description":"SLE10-SP3-Debuginfo-Pool for sled-10-x86_64"},{"name":"SLE10-SP3-Debuginfo-Updates","installer_updates":false,"description":"SLE10-SP3-Debuginfo-Updates for sled-10-x86_64","enabled":false,"id":870,"autorefresh":true,"distro_target":"sled-10-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Updates/sled-10-x86_64/"},{"enabled":false,"id":895,"distro_target":"sled-10-i586","autorefresh":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Pool/sled-10-i586/","installer_updates":false,"name":"SLE10-SP3-Debuginfo-Pool","description":"SLE10-SP3-Debuginfo-Pool for sled-10-i586"},{"description":"SLE10-SP3-Debuginfo-Updates for sled-10-i586","installer_updates":false,"name":"SLE10-SP3-Debuginfo-Updates","distro_target":"sled-10-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Updates/sled-10-i586/","enabled":false,"id":896},{"url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-SMT-Updates/sles-10-i586/","autorefresh":true,"distro_target":"sles-10-i586","id":1403,"enabled":true,"description":"SLE10-SP3-SMT-Updates for sles-10-i586","name":"SLE10-SP3-SMT-Updates","installer_updates":false},{"url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-SMT-Updates/sles-10-x86_64/","autorefresh":true,"distro_target":"sles-10-x86_64","id":1404,"enabled":true,"description":"SLE10-SP3-SMT-Updates for sles-10-x86_64","name":"SLE10-SP3-SMT-Updates","installer_updates":false}],"product_class":"SLESMT","predecessor_ids":[]}],"friendly_version":"10 SP3","former_identifier":"SUSE-Linux-Enterprise-Server-SP3","release_type":null,"friendly_name":"SUSE Linux Enterprise Server 10 SP3 s390","migration_extra":false,"offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Server","version":"10","recommended":false},{"recommended":false,"version":"10","name":"SUSE Linux Enterprise Server","offline_predecessor_ids":[],"friendly_name":"SUSE Linux Enterprise Server 10 SP3 online i586","migration_extra":false,"release_type":"online","former_identifier":"SUSE-Linux-Enterprise-Server-SP3","friendly_version":"10 SP3","extensions":[{"extensions":[],"release_stage":"released","id":1179,"identifier":"SUSE-Linux-Enterprise-SDK-SP3","friendly_version":"10 SP3","name":"SUSE Linux Enterprise Software Development Kit","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Software Development Kit 10 SP3","former_identifier":"SUSE-Linux-Enterprise-SDK-SP3","release_type":null,"recommended":false,"version":"10","cpe":null,"product_type":"extension","predecessor_ids":[],"online_predecessor_ids":[],"repositories":[{"enabled":true,"id":1322,"autorefresh":false,"distro_target":"sles-10-ppc","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Pool/sles-10-ppc/","name":"SLE10-SDK-SP3-Pool","installer_updates":false,"description":"SLE10-SDK-SP3-Pool for sles-10-ppc"},{"enabled":true,"id":1323,"autorefresh":false,"distro_target":"sles-10-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Pool/sles-10-x86_64/","name":"SLE10-SDK-SP3-Pool","installer_updates":false,"description":"SLE10-SDK-SP3-Pool for sles-10-x86_64"},{"name":"SLE10-SDK-SP3-Online","installer_updates":false,"description":"SLE10-SDK-SP3-Online for sled-10-i586","id":1324,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sled-10-i586/","autorefresh":true,"distro_target":"sled-10-i586"},{"distro_target":"sled-10-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Updates/sled-10-x86_64/","enabled":true,"id":1325,"description":"SLE10-SDK-SP3-Updates for sled-10-x86_64","installer_updates":false,"name":"SLE10-SDK-SP3-Updates"},{"description":"SLE10-SDK-SP3-Online for sled-10-x86_64","installer_updates":false,"name":"SLE10-SDK-SP3-Online","distro_target":"sled-10-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sled-10-x86_64/","enabled":true,"id":1326},{"description":"SLE10-SDK-SP3-Pool for sled-10-x86_64","name":"SLE10-SDK-SP3-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sled-10-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Pool/sled-10-x86_64/","enabled":true,"id":1327},{"id":1328,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sles-10-ia64/","distro_target":"sles-10-ia64","autorefresh":true,"installer_updates":false,"name":"SLE10-SDK-SP3-Online","description":"SLE10-SDK-SP3-Online for sles-10-ia64"},{"description":"SLE10-SDK-SP3-Updates for sles-10-ia64","installer_updates":false,"name":"SLE10-SDK-SP3-Updates","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Updates/sles-10-ia64/","distro_target":"sles-10-ia64","autorefresh":true,"id":1329,"enabled":true},{"enabled":true,"id":1330,"autorefresh":true,"distro_target":"sles-10-i586","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sles-10-i586/","name":"SLE10-SDK-SP3-Online","installer_updates":false,"description":"SLE10-SDK-SP3-Online for sles-10-i586"},{"enabled":true,"id":1331,"distro_target":"sles-10-ia64","autorefresh":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Pool/sles-10-ia64/","installer_updates":false,"name":"SLE10-SDK-SP3-Pool","description":"SLE10-SDK-SP3-Pool for sles-10-ia64"},{"name":"SLE10-SDK-SP3-Updates","installer_updates":false,"description":"SLE10-SDK-SP3-Updates for sles-10-x86_64","enabled":true,"id":1332,"autorefresh":true,"distro_target":"sles-10-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Updates/sles-10-x86_64/"},{"name":"SLE10-SDK-SP3-Pool","installer_updates":false,"description":"SLE10-SDK-SP3-Pool for sles-10-i586","id":1333,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Pool/sles-10-i586/","autorefresh":false,"distro_target":"sles-10-i586"},{"name":"SLE10-SDK-SP3-Updates","installer_updates":false,"description":"SLE10-SDK-SP3-Updates for sles-10-i586","id":1334,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Updates/sles-10-i586/","autorefresh":true,"distro_target":"sles-10-i586"},{"enabled":true,"id":1335,"autorefresh":true,"distro_target":"sles-10-s390x","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sles-10-s390x/","name":"SLE10-SDK-SP3-Online","installer_updates":false,"description":"SLE10-SDK-SP3-Online for sles-10-s390x"},{"installer_updates":false,"name":"SLE10-SDK-SP3-Updates","description":"SLE10-SDK-SP3-Updates for sles-10-ppc","id":1336,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Updates/sles-10-ppc/","distro_target":"sles-10-ppc","autorefresh":true},{"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Pool/sles-10-s390x/","distro_target":"sles-10-s390x","autorefresh":false,"id":1337,"enabled":true,"description":"SLE10-SDK-SP3-Pool for sles-10-s390x","installer_updates":false,"name":"SLE10-SDK-SP3-Pool"},{"name":"SLE10-SDK-SP3-Pool","installer_updates":false,"description":"SLE10-SDK-SP3-Pool for sled-10-i586","enabled":true,"id":1338,"autorefresh":false,"distro_target":"sled-10-i586","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Pool/sled-10-i586/"},{"installer_updates":false,"name":"SLE10-SDK-SP3-Updates","description":"SLE10-SDK-SP3-Updates for sles-10-s390x","id":1339,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Updates/sles-10-s390x/","distro_target":"sles-10-s390x","autorefresh":true},{"enabled":true,"id":1340,"distro_target":"sled-10-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Updates/sled-10-i586/","installer_updates":false,"name":"SLE10-SDK-SP3-Updates","description":"SLE10-SDK-SP3-Updates for sled-10-i586"},{"enabled":true,"id":1341,"distro_target":"sles-10-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sles-10-x86_64/","installer_updates":false,"name":"SLE10-SDK-SP3-Online","description":"SLE10-SDK-SP3-Online for sles-10-x86_64"},{"id":1342,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sles-10-ppc/","distro_target":"sles-10-ppc","autorefresh":true,"installer_updates":false,"name":"SLE10-SDK-SP3-Online","description":"SLE10-SDK-SP3-Online for sles-10-ppc"}],"product_class":"SLE-SDK","eula_url":"","arch":null,"description":null,"shortname":null,"free":true},{"extensions":[],"id":1180,"release_stage":"released","identifier":"SUSE-Linux-Enterprise-SDK-SP3-migration","friendly_version":"10","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Software Development Kit","release_type":null,"former_identifier":"SUSE-Linux-Enterprise-SDK-SP3-migration","migration_extra":false,"friendly_name":"SUSE Linux Enterprise Software Development Kit 10 (Migration)","recommended":false,"version":"10","product_type":"extension","cpe":null,"predecessor_ids":[],"product_class":"SLE-SDK","online_predecessor_ids":[],"repositories":[{"description":"SLE10-SDK-SP3-Online for sled-10-i586","installer_updates":false,"name":"SLE10-SDK-SP3-Online","distro_target":"sled-10-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sled-10-i586/","enabled":true,"id":1324},{"installer_updates":false,"name":"SLE10-SDK-SP3-Online","description":"SLE10-SDK-SP3-Online for sled-10-x86_64","enabled":true,"id":1326,"distro_target":"sled-10-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sled-10-x86_64/"},{"installer_updates":false,"name":"SLE10-SDK-SP3-Online","description":"SLE10-SDK-SP3-Online for sles-10-ia64","enabled":true,"id":1328,"distro_target":"sles-10-ia64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sles-10-ia64/"},{"description":"SLE10-SDK-SP3-Online for sles-10-i586","installer_updates":false,"name":"SLE10-SDK-SP3-Online","distro_target":"sles-10-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sles-10-i586/","enabled":true,"id":1330},{"description":"SLE10-SDK-SP3-Online for sles-10-s390x","installer_updates":false,"name":"SLE10-SDK-SP3-Online","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sles-10-s390x/","distro_target":"sles-10-s390x","autorefresh":true,"id":1335,"enabled":true},{"enabled":true,"id":1341,"distro_target":"sles-10-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sles-10-x86_64/","installer_updates":false,"name":"SLE10-SDK-SP3-Online","description":"SLE10-SDK-SP3-Online for sles-10-x86_64"},{"autorefresh":true,"distro_target":"sles-10-ppc","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sles-10-ppc/","enabled":true,"id":1342,"description":"SLE10-SDK-SP3-Online for sles-10-ppc","name":"SLE10-SDK-SP3-Online","installer_updates":false}],"eula_url":"","arch":null,"free":true,"description":null,"shortname":null},{"former_identifier":"SUSE-Linux-Enterprise-SMT-SP3","release_type":null,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Subscription Management Tool 10 SP3","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Subscription Management Tool","version":"10.3","recommended":false,"id":1197,"release_stage":"released","identifier":"SUSE-Linux-Enterprise-SMT-SP3","extensions":[],"friendly_version":"10 SP3","arch":null,"eula_url":"","free":true,"shortname":null,"description":null,"product_type":"extension","cpe":null,"online_predecessor_ids":[],"repositories":[{"enabled":false,"id":664,"distro_target":"sles-10-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Updates/sles-10-i586/","installer_updates":false,"name":"SLE10-SP3-Debuginfo-Updates","description":"SLE10-SP3-Debuginfo-Updates for sles-10-i586"},{"enabled":false,"id":669,"autorefresh":false,"distro_target":"sles-10-i586","url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Pool/sles-10-i586/","name":"SLE10-SP3-Debuginfo-Pool","installer_updates":false,"description":"SLE10-SP3-Debuginfo-Pool for sles-10-i586"},{"description":"SLE10-SP3-Debuginfo-Pool for sles-10-s390x","name":"SLE10-SP3-Debuginfo-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sles-10-s390x","url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Pool/sles-10-s390x/","enabled":false,"id":672},{"url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Updates/sles-10-s390x/","distro_target":"sles-10-s390x","autorefresh":true,"id":675,"enabled":false,"description":"SLE10-SP3-Debuginfo-Updates for sles-10-s390x","installer_updates":false,"name":"SLE10-SP3-Debuginfo-Updates"},{"description":"SLE10-SP3-Debuginfo-Updates for sles-10-x86_64","name":"SLE10-SP3-Debuginfo-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sles-10-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Updates/sles-10-x86_64/","enabled":false,"id":750},{"installer_updates":false,"name":"SLE10-SP3-Debuginfo-Pool","description":"SLE10-SP3-Debuginfo-Pool for sles-10-x86_64","id":751,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Pool/sles-10-x86_64/","distro_target":"sles-10-x86_64","autorefresh":false},{"autorefresh":false,"distro_target":"sles-10-ppc","url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Pool/sles-10-ppc/","enabled":false,"id":779,"description":"SLE10-SP3-Debuginfo-Pool for sles-10-ppc","name":"SLE10-SP3-Debuginfo-Pool","installer_updates":false},{"name":"SLE10-SP3-Debuginfo-Updates","installer_updates":false,"description":"SLE10-SP3-Debuginfo-Updates for sles-10-ppc","id":780,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Updates/sles-10-ppc/","autorefresh":true,"distro_target":"sles-10-ppc"},{"name":"SLE10-SP3-Debuginfo-Pool","installer_updates":false,"description":"SLE10-SP3-Debuginfo-Pool for sles-10-ia64","id":788,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Pool/sles-10-ia64/","autorefresh":false,"distro_target":"sles-10-ia64"},{"installer_updates":false,"name":"SLE10-SP3-Debuginfo-Updates","description":"SLE10-SP3-Debuginfo-Updates for sles-10-ia64","id":789,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Updates/sles-10-ia64/","distro_target":"sles-10-ia64","autorefresh":true},{"id":869,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Pool/sled-10-x86_64/","distro_target":"sled-10-x86_64","autorefresh":false,"installer_updates":false,"name":"SLE10-SP3-Debuginfo-Pool","description":"SLE10-SP3-Debuginfo-Pool for sled-10-x86_64"},{"installer_updates":false,"name":"SLE10-SP3-Debuginfo-Updates","description":"SLE10-SP3-Debuginfo-Updates for sled-10-x86_64","enabled":false,"id":870,"distro_target":"sled-10-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Updates/sled-10-x86_64/"},{"description":"SLE10-SP3-Debuginfo-Pool for sled-10-i586","name":"SLE10-SP3-Debuginfo-Pool","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Pool/sled-10-i586/","autorefresh":false,"distro_target":"sled-10-i586","id":895,"enabled":false},{"installer_updates":false,"name":"SLE10-SP3-Debuginfo-Updates","description":"SLE10-SP3-Debuginfo-Updates for sled-10-i586","enabled":false,"id":896,"distro_target":"sled-10-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Updates/sled-10-i586/"},{"installer_updates":false,"name":"SLE10-SP3-SMT-Updates","description":"SLE10-SP3-SMT-Updates for sles-10-i586","id":1403,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-SMT-Updates/sles-10-i586/","distro_target":"sles-10-i586","autorefresh":true},{"enabled":true,"id":1404,"autorefresh":true,"distro_target":"sles-10-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-SMT-Updates/sles-10-x86_64/","name":"SLE10-SP3-SMT-Updates","installer_updates":false,"description":"SLE10-SP3-SMT-Updates for sles-10-x86_64"}],"product_class":"SLESMT","predecessor_ids":[]}],"identifier":"SUSE-Linux-Enterprise-Server-SP3","release_stage":"released","id":742,"shortname":null,"description":null,"free":false,"eula_url":"","arch":"i586","predecessor_ids":[],"online_predecessor_ids":[],"product_class":"7261","repositories":[{"description":"SLES10-SP3-Online for sles-10-i586","installer_updates":false,"name":"SLES10-SP3-Online","distro_target":"sles-10-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLES10-SP3-Online/sles-10-i586/","enabled":true,"id":663},{"name":"SLE10-SP3-Debuginfo-Updates","installer_updates":false,"description":"SLE10-SP3-Debuginfo-Updates for sles-10-i586","id":664,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Updates/sles-10-i586/","autorefresh":true,"distro_target":"sles-10-i586"},{"id":666,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLES10-SP3-LTSS-Updates/sles-10-i586/","autorefresh":true,"distro_target":"sles-10-i586","name":"SLES10-SP3-LTSS-Updates","installer_updates":false,"description":"SLES10-SP3-LTSS-Updates for sles-10-i586"},{"url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Online/sles-10-i586/","autorefresh":true,"distro_target":"sles-10-i586","id":667,"enabled":false,"description":"SLE10-SP3-Debuginfo-Online for sles-10-i586","name":"SLE10-SP3-Debuginfo-Online","installer_updates":false},{"id":668,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLES10-SP3-Pool/sles-10-i586/","autorefresh":false,"distro_target":"sles-10-i586","name":"SLES10-SP3-Pool","installer_updates":false,"description":"SLES10-SP3-Pool for sles-10-i586"},{"distro_target":"sles-10-i586","autorefresh":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Pool/sles-10-i586/","enabled":false,"id":669,"description":"SLE10-SP3-Debuginfo-Pool for sles-10-i586","installer_updates":false,"name":"SLE10-SP3-Debuginfo-Pool"},{"description":"SLES10-SP3-Updates for sles-10-i586","installer_updates":false,"name":"SLES10-SP3-Updates","distro_target":"sles-10-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLES10-SP3-Updates/sles-10-i586/","enabled":true,"id":670}],"cpe":null,"product_type":"base"},{"release_type":"online","former_identifier":"SUSE-Linux-Enterprise-Server-SP3","friendly_name":"SUSE Linux Enterprise Server 10 SP3 online ia64","migration_extra":false,"offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Server","version":"10","recommended":false,"identifier":"SUSE-Linux-Enterprise-Server-SP3","release_stage":"released","id":743,"extensions":[{"friendly_version":"10 SP3","extensions":[],"release_stage":"released","id":1179,"identifier":"SUSE-Linux-Enterprise-SDK-SP3","recommended":false,"version":"10","name":"SUSE Linux Enterprise Software Development Kit","offline_predecessor_ids":[],"friendly_name":"SUSE Linux Enterprise Software Development Kit 10 SP3","migration_extra":false,"former_identifier":"SUSE-Linux-Enterprise-SDK-SP3","release_type":null,"predecessor_ids":[],"product_class":"SLE-SDK","online_predecessor_ids":[],"repositories":[{"name":"SLE10-SDK-SP3-Pool","installer_updates":false,"description":"SLE10-SDK-SP3-Pool for sles-10-ppc","id":1322,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Pool/sles-10-ppc/","autorefresh":false,"distro_target":"sles-10-ppc"},{"description":"SLE10-SDK-SP3-Pool for sles-10-x86_64","name":"SLE10-SDK-SP3-Pool","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Pool/sles-10-x86_64/","autorefresh":false,"distro_target":"sles-10-x86_64","id":1323,"enabled":true},{"name":"SLE10-SDK-SP3-Online","installer_updates":false,"description":"SLE10-SDK-SP3-Online for sled-10-i586","id":1324,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sled-10-i586/","autorefresh":true,"distro_target":"sled-10-i586"},{"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Updates/sled-10-x86_64/","distro_target":"sled-10-x86_64","autorefresh":true,"id":1325,"enabled":true,"description":"SLE10-SDK-SP3-Updates for sled-10-x86_64","installer_updates":false,"name":"SLE10-SDK-SP3-Updates"},{"installer_updates":false,"name":"SLE10-SDK-SP3-Online","description":"SLE10-SDK-SP3-Online for sled-10-x86_64","enabled":true,"id":1326,"distro_target":"sled-10-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sled-10-x86_64/"},{"description":"SLE10-SDK-SP3-Pool for sled-10-x86_64","name":"SLE10-SDK-SP3-Pool","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Pool/sled-10-x86_64/","autorefresh":false,"distro_target":"sled-10-x86_64","id":1327,"enabled":true},{"enabled":true,"id":1328,"autorefresh":true,"distro_target":"sles-10-ia64","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sles-10-ia64/","name":"SLE10-SDK-SP3-Online","installer_updates":false,"description":"SLE10-SDK-SP3-Online for sles-10-ia64"},{"installer_updates":false,"name":"SLE10-SDK-SP3-Updates","description":"SLE10-SDK-SP3-Updates for sles-10-ia64","enabled":true,"id":1329,"distro_target":"sles-10-ia64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Updates/sles-10-ia64/"},{"enabled":true,"id":1330,"distro_target":"sles-10-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sles-10-i586/","installer_updates":false,"name":"SLE10-SDK-SP3-Online","description":"SLE10-SDK-SP3-Online for sles-10-i586"},{"description":"SLE10-SDK-SP3-Pool for sles-10-ia64","installer_updates":false,"name":"SLE10-SDK-SP3-Pool","distro_target":"sles-10-ia64","autorefresh":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Pool/sles-10-ia64/","enabled":true,"id":1331},{"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Updates/sles-10-x86_64/","autorefresh":true,"distro_target":"sles-10-x86_64","id":1332,"enabled":true,"description":"SLE10-SDK-SP3-Updates for sles-10-x86_64","name":"SLE10-SDK-SP3-Updates","installer_updates":false},{"installer_updates":false,"name":"SLE10-SDK-SP3-Pool","description":"SLE10-SDK-SP3-Pool for sles-10-i586","enabled":true,"id":1333,"distro_target":"sles-10-i586","autorefresh":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Pool/sles-10-i586/"},{"description":"SLE10-SDK-SP3-Updates for sles-10-i586","installer_updates":false,"name":"SLE10-SDK-SP3-Updates","distro_target":"sles-10-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Updates/sles-10-i586/","enabled":true,"id":1334},{"description":"SLE10-SDK-SP3-Online for sles-10-s390x","installer_updates":false,"name":"SLE10-SDK-SP3-Online","distro_target":"sles-10-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sles-10-s390x/","enabled":true,"id":1335},{"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Updates/sles-10-ppc/","autorefresh":true,"distro_target":"sles-10-ppc","id":1336,"enabled":true,"description":"SLE10-SDK-SP3-Updates for sles-10-ppc","name":"SLE10-SDK-SP3-Updates","installer_updates":false},{"description":"SLE10-SDK-SP3-Pool for sles-10-s390x","installer_updates":false,"name":"SLE10-SDK-SP3-Pool","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Pool/sles-10-s390x/","distro_target":"sles-10-s390x","autorefresh":false,"id":1337,"enabled":true},{"installer_updates":false,"name":"SLE10-SDK-SP3-Pool","description":"SLE10-SDK-SP3-Pool for sled-10-i586","enabled":true,"id":1338,"distro_target":"sled-10-i586","autorefresh":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Pool/sled-10-i586/"},{"enabled":true,"id":1339,"distro_target":"sles-10-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Updates/sles-10-s390x/","installer_updates":false,"name":"SLE10-SDK-SP3-Updates","description":"SLE10-SDK-SP3-Updates for sles-10-s390x"},{"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Updates/sled-10-i586/","distro_target":"sled-10-i586","autorefresh":true,"id":1340,"enabled":true,"description":"SLE10-SDK-SP3-Updates for sled-10-i586","installer_updates":false,"name":"SLE10-SDK-SP3-Updates"},{"name":"SLE10-SDK-SP3-Online","installer_updates":false,"description":"SLE10-SDK-SP3-Online for sles-10-x86_64","enabled":true,"id":1341,"autorefresh":true,"distro_target":"sles-10-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sles-10-x86_64/"},{"enabled":true,"id":1342,"autorefresh":true,"distro_target":"sles-10-ppc","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sles-10-ppc/","name":"SLE10-SDK-SP3-Online","installer_updates":false,"description":"SLE10-SDK-SP3-Online for sles-10-ppc"}],"cpe":null,"product_type":"extension","description":null,"shortname":null,"free":true,"eula_url":"","arch":null},{"online_predecessor_ids":[],"repositories":[{"description":"SLE10-SDK-SP3-Online for sled-10-i586","installer_updates":false,"name":"SLE10-SDK-SP3-Online","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sled-10-i586/","distro_target":"sled-10-i586","autorefresh":true,"id":1324,"enabled":true},{"description":"SLE10-SDK-SP3-Online for sled-10-x86_64","installer_updates":false,"name":"SLE10-SDK-SP3-Online","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sled-10-x86_64/","distro_target":"sled-10-x86_64","autorefresh":true,"id":1326,"enabled":true},{"description":"SLE10-SDK-SP3-Online for sles-10-ia64","name":"SLE10-SDK-SP3-Online","installer_updates":false,"autorefresh":true,"distro_target":"sles-10-ia64","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sles-10-ia64/","enabled":true,"id":1328},{"enabled":true,"id":1330,"distro_target":"sles-10-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sles-10-i586/","installer_updates":false,"name":"SLE10-SDK-SP3-Online","description":"SLE10-SDK-SP3-Online for sles-10-i586"},{"id":1335,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sles-10-s390x/","distro_target":"sles-10-s390x","autorefresh":true,"installer_updates":false,"name":"SLE10-SDK-SP3-Online","description":"SLE10-SDK-SP3-Online for sles-10-s390x"},{"description":"SLE10-SDK-SP3-Online for sles-10-x86_64","name":"SLE10-SDK-SP3-Online","installer_updates":false,"autorefresh":true,"distro_target":"sles-10-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sles-10-x86_64/","enabled":true,"id":1341},{"description":"SLE10-SDK-SP3-Online for sles-10-ppc","name":"SLE10-SDK-SP3-Online","installer_updates":false,"autorefresh":true,"distro_target":"sles-10-ppc","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sles-10-ppc/","enabled":true,"id":1342}],"product_class":"SLE-SDK","predecessor_ids":[],"cpe":null,"product_type":"extension","description":null,"shortname":null,"free":true,"arch":null,"eula_url":"","friendly_version":"10","id":1180,"release_stage":"released","identifier":"SUSE-Linux-Enterprise-SDK-SP3-migration","extensions":[],"version":"10","recommended":false,"friendly_name":"SUSE Linux Enterprise Software Development Kit 10 (Migration)","migration_extra":false,"former_identifier":"SUSE-Linux-Enterprise-SDK-SP3-migration","release_type":null,"name":"SUSE Linux Enterprise Software Development Kit","offline_predecessor_ids":[]},{"cpe":null,"product_type":"extension","predecessor_ids":[],"online_predecessor_ids":[],"repositories":[{"enabled":false,"id":664,"autorefresh":true,"distro_target":"sles-10-i586","url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Updates/sles-10-i586/","name":"SLE10-SP3-Debuginfo-Updates","installer_updates":false,"description":"SLE10-SP3-Debuginfo-Updates for sles-10-i586"},{"installer_updates":false,"name":"SLE10-SP3-Debuginfo-Pool","description":"SLE10-SP3-Debuginfo-Pool for sles-10-i586","id":669,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Pool/sles-10-i586/","distro_target":"sles-10-i586","autorefresh":false},{"url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Pool/sles-10-s390x/","autorefresh":false,"distro_target":"sles-10-s390x","id":672,"enabled":false,"description":"SLE10-SP3-Debuginfo-Pool for sles-10-s390x","name":"SLE10-SP3-Debuginfo-Pool","installer_updates":false},{"description":"SLE10-SP3-Debuginfo-Updates for sles-10-s390x","installer_updates":false,"name":"SLE10-SP3-Debuginfo-Updates","distro_target":"sles-10-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Updates/sles-10-s390x/","enabled":false,"id":675},{"installer_updates":false,"name":"SLE10-SP3-Debuginfo-Updates","description":"SLE10-SP3-Debuginfo-Updates for sles-10-x86_64","id":750,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Updates/sles-10-x86_64/","distro_target":"sles-10-x86_64","autorefresh":true},{"autorefresh":false,"distro_target":"sles-10-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Pool/sles-10-x86_64/","enabled":false,"id":751,"description":"SLE10-SP3-Debuginfo-Pool for sles-10-x86_64","name":"SLE10-SP3-Debuginfo-Pool","installer_updates":false},{"description":"SLE10-SP3-Debuginfo-Pool for sles-10-ppc","name":"SLE10-SP3-Debuginfo-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sles-10-ppc","url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Pool/sles-10-ppc/","enabled":false,"id":779},{"id":780,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Updates/sles-10-ppc/","autorefresh":true,"distro_target":"sles-10-ppc","name":"SLE10-SP3-Debuginfo-Updates","installer_updates":false,"description":"SLE10-SP3-Debuginfo-Updates for sles-10-ppc"},{"name":"SLE10-SP3-Debuginfo-Pool","installer_updates":false,"description":"SLE10-SP3-Debuginfo-Pool for sles-10-ia64","id":788,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Pool/sles-10-ia64/","autorefresh":false,"distro_target":"sles-10-ia64"},{"installer_updates":false,"name":"SLE10-SP3-Debuginfo-Updates","description":"SLE10-SP3-Debuginfo-Updates for sles-10-ia64","enabled":false,"id":789,"distro_target":"sles-10-ia64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Updates/sles-10-ia64/"},{"id":869,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Pool/sled-10-x86_64/","autorefresh":false,"distro_target":"sled-10-x86_64","name":"SLE10-SP3-Debuginfo-Pool","installer_updates":false,"description":"SLE10-SP3-Debuginfo-Pool for sled-10-x86_64"},{"name":"SLE10-SP3-Debuginfo-Updates","installer_updates":false,"description":"SLE10-SP3-Debuginfo-Updates for sled-10-x86_64","id":870,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Updates/sled-10-x86_64/","autorefresh":true,"distro_target":"sled-10-x86_64"},{"distro_target":"sled-10-i586","autorefresh":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Pool/sled-10-i586/","enabled":false,"id":895,"description":"SLE10-SP3-Debuginfo-Pool for sled-10-i586","installer_updates":false,"name":"SLE10-SP3-Debuginfo-Pool"},{"description":"SLE10-SP3-Debuginfo-Updates for sled-10-i586","installer_updates":false,"name":"SLE10-SP3-Debuginfo-Updates","distro_target":"sled-10-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Updates/sled-10-i586/","enabled":false,"id":896},{"description":"SLE10-SP3-SMT-Updates for sles-10-i586","name":"SLE10-SP3-SMT-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sles-10-i586","url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-SMT-Updates/sles-10-i586/","enabled":true,"id":1403},{"installer_updates":false,"name":"SLE10-SP3-SMT-Updates","description":"SLE10-SP3-SMT-Updates for sles-10-x86_64","id":1404,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-SMT-Updates/sles-10-x86_64/","distro_target":"sles-10-x86_64","autorefresh":true}],"product_class":"SLESMT","eula_url":"","arch":null,"shortname":null,"description":null,"free":true,"extensions":[],"id":1197,"release_stage":"released","identifier":"SUSE-Linux-Enterprise-SMT-SP3","friendly_version":"10 SP3","name":"SUSE Linux Enterprise Subscription Management Tool","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Subscription Management Tool 10 SP3","former_identifier":"SUSE-Linux-Enterprise-SMT-SP3","release_type":null,"recommended":false,"version":"10.3"}],"friendly_version":"10 SP3","arch":"ia64","eula_url":"","free":false,"shortname":null,"description":null,"product_type":"base","cpe":null,"repositories":[{"installer_updates":false,"name":"SLES10-SP3-Online","description":"SLES10-SP3-Online for sles-10-ia64","id":662,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLES10-SP3-Online/sles-10-ia64/","distro_target":"sles-10-ia64","autorefresh":true},{"description":"SLE10-SP3-Debuginfo-Online for sles-10-ia64","name":"SLE10-SP3-Debuginfo-Online","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Online/sles-10-ia64/","autorefresh":true,"distro_target":"sles-10-ia64","id":785,"enabled":false},{"description":"SLES10-SP3-Updates for sles-10-ia64","name":"SLES10-SP3-Updates","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLES10-SP3-Updates/sles-10-ia64/","autorefresh":true,"distro_target":"sles-10-ia64","id":786,"enabled":true},{"name":"SLES10-SP3-Pool","installer_updates":false,"description":"SLES10-SP3-Pool for sles-10-ia64","id":787,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLES10-SP3-Pool/sles-10-ia64/","autorefresh":false,"distro_target":"sles-10-ia64"},{"enabled":false,"id":788,"distro_target":"sles-10-ia64","autorefresh":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Pool/sles-10-ia64/","installer_updates":false,"name":"SLE10-SP3-Debuginfo-Pool","description":"SLE10-SP3-Debuginfo-Pool for sles-10-ia64"},{"description":"SLE10-SP3-Debuginfo-Updates for sles-10-ia64","name":"SLE10-SP3-Debuginfo-Updates","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Updates/sles-10-ia64/","autorefresh":true,"distro_target":"sles-10-ia64","id":789,"enabled":false}],"online_predecessor_ids":[],"product_class":"SLES-IA","predecessor_ids":[]},{"shortname":null,"description":null,"free":false,"arch":"s390","eula_url":"","product_class":"SLES-Z","online_predecessor_ids":[],"repositories":[{"id":671,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLES10-SP3-Online/sles-10-s390x/","distro_target":"sles-10-s390x","autorefresh":true,"installer_updates":false,"name":"SLES10-SP3-Online","description":"SLES10-SP3-Online for sles-10-s390x"},{"id":672,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Pool/sles-10-s390x/","autorefresh":false,"distro_target":"sles-10-s390x","name":"SLE10-SP3-Debuginfo-Pool","installer_updates":false,"description":"SLE10-SP3-Debuginfo-Pool for sles-10-s390x"},{"url":"https://updates.suse.com/repo/$RCE/SLES10-SP3-Pool/sles-10-s390x/","autorefresh":false,"distro_target":"sles-10-s390x","id":673,"enabled":false,"description":"SLES10-SP3-Pool for sles-10-s390x","name":"SLES10-SP3-Pool","installer_updates":false},{"enabled":false,"id":675,"distro_target":"sles-10-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Updates/sles-10-s390x/","installer_updates":false,"name":"SLE10-SP3-Debuginfo-Updates","description":"SLE10-SP3-Debuginfo-Updates for sles-10-s390x"},{"installer_updates":false,"name":"SLE10-SP3-Debuginfo-Online","description":"SLE10-SP3-Debuginfo-Online for sles-10-s390x","id":676,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Online/sles-10-s390x/","distro_target":"sles-10-s390x","autorefresh":true},{"url":"https://updates.suse.com/repo/$RCE/SLES10-SP3-Updates/sles-10-s390x/","autorefresh":true,"distro_target":"sles-10-s390x","id":677,"enabled":true,"description":"SLES10-SP3-Updates for sles-10-s390x","name":"SLES10-SP3-Updates","installer_updates":false}],"predecessor_ids":[],"cpe":null,"product_type":"base","version":"10","recommended":false,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Server 10 SP3 online s390","former_identifier":"SUSE-Linux-Enterprise-Server-SP3","release_type":"online","name":"SUSE Linux Enterprise Server","offline_predecessor_ids":[],"friendly_version":"10 SP3","identifier":"SUSE-Linux-Enterprise-Server-SP3","release_stage":"released","id":744,"extensions":[{"version":"10","recommended":false,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Software Development Kit 10 SP3","former_identifier":"SUSE-Linux-Enterprise-SDK-SP3","release_type":null,"name":"SUSE Linux Enterprise Software Development Kit","offline_predecessor_ids":[],"friendly_version":"10 SP3","release_stage":"released","id":1179,"identifier":"SUSE-Linux-Enterprise-SDK-SP3","extensions":[],"shortname":null,"description":null,"free":true,"arch":null,"eula_url":"","online_predecessor_ids":[],"repositories":[{"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Pool/sles-10-ppc/","autorefresh":false,"distro_target":"sles-10-ppc","id":1322,"enabled":true,"description":"SLE10-SDK-SP3-Pool for sles-10-ppc","name":"SLE10-SDK-SP3-Pool","installer_updates":false},{"installer_updates":false,"name":"SLE10-SDK-SP3-Pool","description":"SLE10-SDK-SP3-Pool for sles-10-x86_64","enabled":true,"id":1323,"distro_target":"sles-10-x86_64","autorefresh":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Pool/sles-10-x86_64/"},{"description":"SLE10-SDK-SP3-Online for sled-10-i586","name":"SLE10-SDK-SP3-Online","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sled-10-i586/","autorefresh":true,"distro_target":"sled-10-i586","id":1324,"enabled":true},{"distro_target":"sled-10-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Updates/sled-10-x86_64/","enabled":true,"id":1325,"description":"SLE10-SDK-SP3-Updates for sled-10-x86_64","installer_updates":false,"name":"SLE10-SDK-SP3-Updates"},{"description":"SLE10-SDK-SP3-Online for sled-10-x86_64","installer_updates":false,"name":"SLE10-SDK-SP3-Online","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sled-10-x86_64/","distro_target":"sled-10-x86_64","autorefresh":true,"id":1326,"enabled":true},{"id":1327,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Pool/sled-10-x86_64/","autorefresh":false,"distro_target":"sled-10-x86_64","name":"SLE10-SDK-SP3-Pool","installer_updates":false,"description":"SLE10-SDK-SP3-Pool for sled-10-x86_64"},{"enabled":true,"id":1328,"autorefresh":true,"distro_target":"sles-10-ia64","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sles-10-ia64/","name":"SLE10-SDK-SP3-Online","installer_updates":false,"description":"SLE10-SDK-SP3-Online for sles-10-ia64"},{"installer_updates":false,"name":"SLE10-SDK-SP3-Updates","description":"SLE10-SDK-SP3-Updates for sles-10-ia64","enabled":true,"id":1329,"distro_target":"sles-10-ia64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Updates/sles-10-ia64/"},{"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sles-10-i586/","distro_target":"sles-10-i586","autorefresh":true,"id":1330,"enabled":true,"description":"SLE10-SDK-SP3-Online for sles-10-i586","installer_updates":false,"name":"SLE10-SDK-SP3-Online"},{"name":"SLE10-SDK-SP3-Pool","installer_updates":false,"description":"SLE10-SDK-SP3-Pool for sles-10-ia64","enabled":true,"id":1331,"autorefresh":false,"distro_target":"sles-10-ia64","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Pool/sles-10-ia64/"},{"description":"SLE10-SDK-SP3-Updates for sles-10-x86_64","installer_updates":false,"name":"SLE10-SDK-SP3-Updates","distro_target":"sles-10-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Updates/sles-10-x86_64/","enabled":true,"id":1332},{"description":"SLE10-SDK-SP3-Pool for sles-10-i586","name":"SLE10-SDK-SP3-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sles-10-i586","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Pool/sles-10-i586/","enabled":true,"id":1333},{"description":"SLE10-SDK-SP3-Updates for sles-10-i586","name":"SLE10-SDK-SP3-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sles-10-i586","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Updates/sles-10-i586/","enabled":true,"id":1334},{"distro_target":"sles-10-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sles-10-s390x/","enabled":true,"id":1335,"description":"SLE10-SDK-SP3-Online for sles-10-s390x","installer_updates":false,"name":"SLE10-SDK-SP3-Online"},{"distro_target":"sles-10-ppc","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Updates/sles-10-ppc/","enabled":true,"id":1336,"description":"SLE10-SDK-SP3-Updates for sles-10-ppc","installer_updates":false,"name":"SLE10-SDK-SP3-Updates"},{"description":"SLE10-SDK-SP3-Pool for sles-10-s390x","installer_updates":false,"name":"SLE10-SDK-SP3-Pool","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Pool/sles-10-s390x/","distro_target":"sles-10-s390x","autorefresh":false,"id":1337,"enabled":true},{"enabled":true,"id":1338,"autorefresh":false,"distro_target":"sled-10-i586","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Pool/sled-10-i586/","name":"SLE10-SDK-SP3-Pool","installer_updates":false,"description":"SLE10-SDK-SP3-Pool for sled-10-i586"},{"id":1339,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Updates/sles-10-s390x/","autorefresh":true,"distro_target":"sles-10-s390x","name":"SLE10-SDK-SP3-Updates","installer_updates":false,"description":"SLE10-SDK-SP3-Updates for sles-10-s390x"},{"id":1340,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Updates/sled-10-i586/","autorefresh":true,"distro_target":"sled-10-i586","name":"SLE10-SDK-SP3-Updates","installer_updates":false,"description":"SLE10-SDK-SP3-Updates for sled-10-i586"},{"name":"SLE10-SDK-SP3-Online","installer_updates":false,"description":"SLE10-SDK-SP3-Online for sles-10-x86_64","id":1341,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sles-10-x86_64/","autorefresh":true,"distro_target":"sles-10-x86_64"},{"description":"SLE10-SDK-SP3-Online for sles-10-ppc","installer_updates":false,"name":"SLE10-SDK-SP3-Online","distro_target":"sles-10-ppc","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sles-10-ppc/","enabled":true,"id":1342}],"product_class":"SLE-SDK","predecessor_ids":[],"cpe":null,"product_type":"extension"},{"friendly_version":"10","extensions":[],"id":1180,"release_stage":"released","identifier":"SUSE-Linux-Enterprise-SDK-SP3-migration","recommended":false,"version":"10","name":"SUSE Linux Enterprise Software Development Kit","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Software Development Kit 10 (Migration)","former_identifier":"SUSE-Linux-Enterprise-SDK-SP3-migration","release_type":null,"predecessor_ids":[],"repositories":[{"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sled-10-i586/","autorefresh":true,"distro_target":"sled-10-i586","id":1324,"enabled":true,"description":"SLE10-SDK-SP3-Online for sled-10-i586","name":"SLE10-SDK-SP3-Online","installer_updates":false},{"id":1326,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sled-10-x86_64/","distro_target":"sled-10-x86_64","autorefresh":true,"installer_updates":false,"name":"SLE10-SDK-SP3-Online","description":"SLE10-SDK-SP3-Online for sled-10-x86_64"},{"installer_updates":false,"name":"SLE10-SDK-SP3-Online","description":"SLE10-SDK-SP3-Online for sles-10-ia64","enabled":true,"id":1328,"distro_target":"sles-10-ia64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sles-10-ia64/"},{"distro_target":"sles-10-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sles-10-i586/","enabled":true,"id":1330,"description":"SLE10-SDK-SP3-Online for sles-10-i586","installer_updates":false,"name":"SLE10-SDK-SP3-Online"},{"enabled":true,"id":1335,"distro_target":"sles-10-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sles-10-s390x/","installer_updates":false,"name":"SLE10-SDK-SP3-Online","description":"SLE10-SDK-SP3-Online for sles-10-s390x"},{"enabled":true,"id":1341,"distro_target":"sles-10-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sles-10-x86_64/","installer_updates":false,"name":"SLE10-SDK-SP3-Online","description":"SLE10-SDK-SP3-Online for sles-10-x86_64"},{"enabled":true,"id":1342,"autorefresh":true,"distro_target":"sles-10-ppc","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sles-10-ppc/","name":"SLE10-SDK-SP3-Online","installer_updates":false,"description":"SLE10-SDK-SP3-Online for sles-10-ppc"}],"online_predecessor_ids":[],"product_class":"SLE-SDK","cpe":null,"product_type":"extension","shortname":null,"description":null,"free":true,"eula_url":"","arch":null},{"free":true,"description":null,"shortname":null,"arch":null,"eula_url":"","repositories":[{"autorefresh":true,"distro_target":"sles-10-i586","url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Updates/sles-10-i586/","enabled":false,"id":664,"description":"SLE10-SP3-Debuginfo-Updates for sles-10-i586","name":"SLE10-SP3-Debuginfo-Updates","installer_updates":false},{"url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Pool/sles-10-i586/","distro_target":"sles-10-i586","autorefresh":false,"id":669,"enabled":false,"description":"SLE10-SP3-Debuginfo-Pool for sles-10-i586","installer_updates":false,"name":"SLE10-SP3-Debuginfo-Pool"},{"url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Pool/sles-10-s390x/","distro_target":"sles-10-s390x","autorefresh":false,"id":672,"enabled":false,"description":"SLE10-SP3-Debuginfo-Pool for sles-10-s390x","installer_updates":false,"name":"SLE10-SP3-Debuginfo-Pool"},{"enabled":false,"id":675,"autorefresh":true,"distro_target":"sles-10-s390x","url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Updates/sles-10-s390x/","name":"SLE10-SP3-Debuginfo-Updates","installer_updates":false,"description":"SLE10-SP3-Debuginfo-Updates for sles-10-s390x"},{"name":"SLE10-SP3-Debuginfo-Updates","installer_updates":false,"description":"SLE10-SP3-Debuginfo-Updates for sles-10-x86_64","enabled":false,"id":750,"autorefresh":true,"distro_target":"sles-10-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Updates/sles-10-x86_64/"},{"url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Pool/sles-10-x86_64/","distro_target":"sles-10-x86_64","autorefresh":false,"id":751,"enabled":false,"description":"SLE10-SP3-Debuginfo-Pool for sles-10-x86_64","installer_updates":false,"name":"SLE10-SP3-Debuginfo-Pool"},{"distro_target":"sles-10-ppc","autorefresh":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Pool/sles-10-ppc/","enabled":false,"id":779,"description":"SLE10-SP3-Debuginfo-Pool for sles-10-ppc","installer_updates":false,"name":"SLE10-SP3-Debuginfo-Pool"},{"installer_updates":false,"name":"SLE10-SP3-Debuginfo-Updates","description":"SLE10-SP3-Debuginfo-Updates for sles-10-ppc","enabled":false,"id":780,"distro_target":"sles-10-ppc","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Updates/sles-10-ppc/"},{"url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Pool/sles-10-ia64/","distro_target":"sles-10-ia64","autorefresh":false,"id":788,"enabled":false,"description":"SLE10-SP3-Debuginfo-Pool for sles-10-ia64","installer_updates":false,"name":"SLE10-SP3-Debuginfo-Pool"},{"autorefresh":true,"distro_target":"sles-10-ia64","url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Updates/sles-10-ia64/","enabled":false,"id":789,"description":"SLE10-SP3-Debuginfo-Updates for sles-10-ia64","name":"SLE10-SP3-Debuginfo-Updates","installer_updates":false},{"description":"SLE10-SP3-Debuginfo-Pool for sled-10-x86_64","name":"SLE10-SP3-Debuginfo-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sled-10-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Pool/sled-10-x86_64/","enabled":false,"id":869},{"autorefresh":true,"distro_target":"sled-10-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Updates/sled-10-x86_64/","enabled":false,"id":870,"description":"SLE10-SP3-Debuginfo-Updates for sled-10-x86_64","name":"SLE10-SP3-Debuginfo-Updates","installer_updates":false},{"enabled":false,"id":895,"distro_target":"sled-10-i586","autorefresh":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Pool/sled-10-i586/","installer_updates":false,"name":"SLE10-SP3-Debuginfo-Pool","description":"SLE10-SP3-Debuginfo-Pool for sled-10-i586"},{"name":"SLE10-SP3-Debuginfo-Updates","installer_updates":false,"description":"SLE10-SP3-Debuginfo-Updates for sled-10-i586","id":896,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Updates/sled-10-i586/","autorefresh":true,"distro_target":"sled-10-i586"},{"enabled":true,"id":1403,"distro_target":"sles-10-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-SMT-Updates/sles-10-i586/","installer_updates":false,"name":"SLE10-SP3-SMT-Updates","description":"SLE10-SP3-SMT-Updates for sles-10-i586"},{"enabled":true,"id":1404,"distro_target":"sles-10-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-SMT-Updates/sles-10-x86_64/","installer_updates":false,"name":"SLE10-SP3-SMT-Updates","description":"SLE10-SP3-SMT-Updates for sles-10-x86_64"}],"online_predecessor_ids":[],"product_class":"SLESMT","predecessor_ids":[],"product_type":"extension","cpe":null,"version":"10.3","recommended":false,"release_type":null,"former_identifier":"SUSE-Linux-Enterprise-SMT-SP3","migration_extra":false,"friendly_name":"SUSE Linux Enterprise Subscription Management Tool 10 SP3","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Subscription Management Tool","friendly_version":"10 SP3","identifier":"SUSE-Linux-Enterprise-SMT-SP3","release_stage":"released","id":1197,"extensions":[]}]},{"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Server 11 SP1 s390x","release_type":null,"former_identifier":"SUSE_SLES","name":"SUSE Linux Enterprise Server","offline_predecessor_ids":[],"version":"11.1","recommended":false,"id":745,"release_stage":"released","identifier":"SUSE_SLES","extensions":[{"eula_url":"","arch":null,"free":true,"description":null,"shortname":null,"product_type":"extension","cpe":null,"predecessor_ids":[],"online_predecessor_ids":[],"repositories":[{"enabled":true,"id":825,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-WebYaST-1.1-Updates/sle-11-i586/","name":"SLE11-SP1-WebYaST-1.1-Updates","installer_updates":false,"description":"SLE11-SP1-WebYaST-1.1-Updates for sle-11-i586"},{"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-WebYaST-1.1-Pool/sle-11-i586/","enabled":false,"id":826,"description":"SLE11-SP1-WebYaST-1.1-Pool for sle-11-i586","name":"SLE11-SP1-WebYaST-1.1-Pool","installer_updates":false},{"installer_updates":false,"name":"SLE11-SP1-WebYaST-1.1-Pool","description":"SLE11-SP1-WebYaST-1.1-Pool for sle-11-x86_64","id":827,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-WebYaST-1.1-Pool/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true},{"enabled":true,"id":828,"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-WebYaST-1.1-Updates/sle-11-x86_64/","name":"SLE11-SP1-WebYaST-1.1-Updates","installer_updates":false,"description":"SLE11-SP1-WebYaST-1.1-Updates for sle-11-x86_64"}],"product_class":"WEBYAST","offline_predecessor_ids":[],"name":"SUSE WebYaST","former_identifier":"sle-11-WebYaST","release_type":null,"friendly_name":"SUSE WebYaST 1.1","migration_extra":false,"recommended":false,"version":"1.1","extensions":[],"id":835,"release_stage":"released","identifier":"sle-11-WebYaST","friendly_version":"1.1"},{"cpe":null,"product_type":"extension","online_predecessor_ids":[],"repositories":[{"enabled":true,"id":1098,"autorefresh":true,"distro_target":"sle-11-s390x","url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP2-Pool/sle-11-s390x/","name":"SLE11-HAE-SP2-Pool","installer_updates":false,"description":"SLE11-HAE-SP2-Pool for sle-11-s390x"},{"autorefresh":true,"distro_target":"sle-11-s390x","url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP2-Updates/sle-11-s390x/","enabled":true,"id":1099,"description":"SLE11-HAE-SP2-Updates for sle-11-s390x","name":"SLE11-HAE-SP2-Updates","installer_updates":false}],"product_class":"SLE-HAE-Z","predecessor_ids":[],"arch":"s390x","eula_url":"","description":null,"shortname":null,"free":false,"release_stage":"released","identifier":"sle-hae-SP2-migration","id":1083,"extensions":[],"friendly_version":"11 SP1","friendly_name":"SUSE Linux Enterprise High Availability Extension 11 SP1 s390x (Migration)","migration_extra":false,"former_identifier":"sle-hae-SP2-migration","release_type":null,"name":"SUSE Linux Enterprise High Availability Extension","offline_predecessor_ids":[],"version":"11.1","recommended":false},{"friendly_version":"11 SP1","extensions":[],"id":1084,"release_stage":"released","identifier":"sle-hae","recommended":false,"version":"11.1","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise High Availability Extension","former_identifier":"sle-hae","release_type":null,"friendly_name":"SUSE Linux Enterprise High Availability Extension 11 SP1 s390x","migration_extra":false,"predecessor_ids":[],"online_predecessor_ids":[],"repositories":[{"description":"SLE11-HAE-SP1-Pool for sle-11-s390x","name":"SLE11-HAE-SP1-Pool","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP1-Pool/sle-11-s390x/","autorefresh":true,"distro_target":"sle-11-s390x","id":1094,"enabled":true},{"installer_updates":false,"name":"SLE11-HAE-SP1-Updates","description":"SLE11-HAE-SP1-Updates for sle-11-s390x","enabled":true,"id":1095,"distro_target":"sle-11-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP1-Updates/sle-11-s390x/"}],"product_class":"SLE-HAE-Z","product_type":"extension","cpe":null,"free":false,"shortname":null,"description":null,"eula_url":"","arch":"s390x"},{"free":true,"description":null,"shortname":null,"eula_url":"","arch":null,"predecessor_ids":[],"product_class":"SLE-SDK","online_predecessor_ids":[],"repositories":[{"description":"SLE11-SDK-SP1-Updates for sle-11-ia64","installer_updates":false,"name":"SLE11-SDK-SP1-Updates","distro_target":"sle-11-ia64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Updates/sle-11-ia64/","enabled":true,"id":1257},{"enabled":true,"id":1258,"autorefresh":true,"distro_target":"sle-11-ia64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-ia64/","name":"SLE11-SDK-SP1-Pool","installer_updates":false,"description":"SLE11-SDK-SP1-Pool for sle-11-ia64"},{"autorefresh":true,"distro_target":"sle-11-s390x","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-s390x/","enabled":true,"id":1259,"description":"SLE11-SDK-SP1-Pool for sle-11-s390x","name":"SLE11-SDK-SP1-Pool","installer_updates":false},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Updates/sle-11-ppc64/","autorefresh":true,"distro_target":"sle-11-ppc64","id":1260,"enabled":true,"description":"SLE11-SDK-SP1-Updates for sle-11-ppc64","name":"SLE11-SDK-SP1-Updates","installer_updates":false},{"installer_updates":false,"name":"SLE11-SDK-SP1-Pool","description":"SLE11-SDK-SP1-Pool for sle-11-ppc64","enabled":true,"id":1261,"distro_target":"sle-11-ppc64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-ppc64/"},{"name":"SLE11-SDK-SP1-Updates","installer_updates":false,"description":"SLE11-SDK-SP1-Updates for sle-11-i586","id":1262,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Updates/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586"},{"installer_updates":false,"name":"SLE11-SDK-SP1-Pool","description":"SLE11-SDK-SP1-Pool for sle-11-i586","id":1263,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true},{"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-x86_64/","enabled":true,"id":1264,"description":"SLE11-SDK-SP1-Pool for sle-11-x86_64","name":"SLE11-SDK-SP1-Pool","installer_updates":false},{"installer_updates":false,"name":"SLE11-SDK-SP1-Updates","description":"SLE11-SDK-SP1-Updates for sle-11-x86_64","id":1265,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Updates/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true},{"name":"SLE11-SDK-SP1-Updates","installer_updates":false,"description":"SLE11-SDK-SP1-Updates for sle-11-s390x","id":1266,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Updates/sle-11-s390x/","autorefresh":true,"distro_target":"sle-11-s390x"}],"product_type":"extension","cpe":null,"recommended":false,"version":"11.1","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Software Development Kit","former_identifier":"sle-sdk","release_type":null,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Software Development Kit 11 SP1","friendly_version":"11 SP1","extensions":[],"id":1159,"release_stage":"released","identifier":"sle-sdk"},{"eula_url":"","arch":null,"description":null,"shortname":null,"free":true,"cpe":null,"product_type":"extension","predecessor_ids":[],"product_class":"SLE-SDK","online_predecessor_ids":[],"repositories":[{"id":1258,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-ia64/","autorefresh":true,"distro_target":"sle-11-ia64","name":"SLE11-SDK-SP1-Pool","installer_updates":false,"description":"SLE11-SDK-SP1-Pool for sle-11-ia64"},{"distro_target":"sle-11-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-s390x/","enabled":true,"id":1259,"description":"SLE11-SDK-SP1-Pool for sle-11-s390x","installer_updates":false,"name":"SLE11-SDK-SP1-Pool"},{"installer_updates":false,"name":"SLE11-SDK-SP1-Pool","description":"SLE11-SDK-SP1-Pool for sle-11-ppc64","enabled":true,"id":1261,"distro_target":"sle-11-ppc64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-ppc64/"},{"description":"SLE11-SDK-SP1-Pool for sle-11-i586","name":"SLE11-SDK-SP1-Pool","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","id":1263,"enabled":true},{"id":1264,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true,"installer_updates":false,"name":"SLE11-SDK-SP1-Pool","description":"SLE11-SDK-SP1-Pool for sle-11-x86_64"}],"name":"SUSE Linux Enterprise Software Development Kit","offline_predecessor_ids":[],"friendly_name":"SUSE Linux Enterprise Software Development Kit 11 (Migration)","migration_extra":false,"former_identifier":"sle-sdk-SP1-migration","release_type":null,"recommended":false,"version":"11","extensions":[],"id":1162,"release_stage":"released","identifier":"sle-sdk-SP1-migration","friendly_version":"11"},{"release_stage":"released","identifier":"sle-sdk-SP2-migration","id":1163,"extensions":[],"friendly_version":"11 SP1","migration_extra":false,"friendly_name":"SUSE Linux Enterprise Software Development Kit 11 SP1 (Migration)","release_type":null,"former_identifier":"sle-sdk-SP2-migration","name":"SUSE Linux Enterprise Software Development Kit","offline_predecessor_ids":[],"version":"11.1","recommended":false,"cpe":null,"product_type":"extension","repositories":[{"name":"SLE11-SDK-SP2-Core","installer_updates":false,"description":"SLE11-SDK-SP2-Core for sle-11-ia64","id":1267,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-ia64/","autorefresh":true,"distro_target":"sle-11-ia64"},{"enabled":true,"id":1268,"autorefresh":true,"distro_target":"sle-11-s390x","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-s390x/","name":"SLE11-SDK-SP2-Core","installer_updates":false,"description":"SLE11-SDK-SP2-Core for sle-11-s390x"},{"description":"SLE11-SDK-SP2-Updates for sle-11-s390x","installer_updates":false,"name":"SLE11-SDK-SP2-Updates","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-s390x/","distro_target":"sle-11-s390x","autorefresh":true,"id":1269,"enabled":true},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-ppc64/","distro_target":"sle-11-ppc64","autorefresh":true,"id":1270,"enabled":true,"description":"SLE11-SDK-SP2-Updates for sle-11-ppc64","installer_updates":false,"name":"SLE11-SDK-SP2-Updates"},{"id":1271,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true,"installer_updates":false,"name":"SLE11-SDK-SP2-Updates","description":"SLE11-SDK-SP2-Updates for sle-11-i586"},{"name":"SLE11-SDK-SP2-Updates","installer_updates":false,"description":"SLE11-SDK-SP2-Updates for sle-11-ia64","id":1272,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-ia64/","autorefresh":true,"distro_target":"sle-11-ia64"},{"distro_target":"sle-11-ppc64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-ppc64/","enabled":true,"id":1273,"description":"SLE11-SDK-SP2-Core for sle-11-ppc64","installer_updates":false,"name":"SLE11-SDK-SP2-Core"},{"id":1274,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true,"installer_updates":false,"name":"SLE11-SDK-SP2-Core","description":"SLE11-SDK-SP2-Core for sle-11-i586"},{"name":"SLE11-SDK-SP2-Core","installer_updates":false,"description":"SLE11-SDK-SP2-Core for sle-11-x86_64","id":1275,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64"},{"installer_updates":false,"name":"SLE11-SDK-SP2-Updates","description":"SLE11-SDK-SP2-Updates for sle-11-x86_64","id":1276,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true}],"online_predecessor_ids":[],"product_class":"SLE-SDK","predecessor_ids":[],"arch":null,"eula_url":"","description":null,"shortname":null,"free":true},{"free":true,"shortname":null,"description":null,"arch":null,"eula_url":"","product_class":"SLESMT","online_predecessor_ids":[],"repositories":[{"name":"SLE11-SP1-SMT-Updates","installer_updates":false,"description":"SLE11-SP1-SMT-Updates for sle-11-x86_64","enabled":true,"id":1386,"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-SMT-Updates/sle-11-x86_64/"},{"description":"SLE11-SP1-SMT-Pool for sle-11-s390x","installer_updates":false,"name":"SLE11-SP1-SMT-Pool","distro_target":"sle-11-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-SMT-Pool/sle-11-s390x/","enabled":true,"id":1387},{"description":"SLE11-SP1-SMT-Pool for sle-11-x86_64","installer_updates":false,"name":"SLE11-SP1-SMT-Pool","url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-SMT-Pool/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true,"id":1388,"enabled":true},{"distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-SMT-Updates/sle-11-i586/","enabled":true,"id":1389,"description":"SLE11-SP1-SMT-Updates for sle-11-i586","installer_updates":false,"name":"SLE11-SP1-SMT-Updates"},{"id":1390,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-SMT-Pool/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","name":"SLE11-SP1-SMT-Pool","installer_updates":false,"description":"SLE11-SP1-SMT-Pool for sle-11-i586"},{"description":"SLE11-SP1-SMT-Updates for sle-11-s390x","name":"SLE11-SP1-SMT-Updates","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-SMT-Updates/sle-11-s390x/","autorefresh":true,"distro_target":"sle-11-s390x","id":1391,"enabled":true}],"predecessor_ids":[],"product_type":"extension","cpe":null,"version":"11.1","recommended":false,"former_identifier":"sle-smt","release_type":null,"friendly_name":"SUSE Linux Enterprise Subscription Management Tool 11 SP1","migration_extra":false,"offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Subscription Management Tool","friendly_version":"11 SP1","release_stage":"released","identifier":"sle-smt","id":1192,"extensions":[]}],"friendly_version":"11 SP1","arch":"s390x","eula_url":"","description":null,"shortname":null,"free":false,"cpe":"cpe:/o:suse:suse_sles:11:sp1","product_type":"base","product_class":"SLES-Z","online_predecessor_ids":[],"repositories":[{"enabled":true,"id":687,"distro_target":"sle-11-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-Pool/sle-11-s390x/","installer_updates":false,"name":"SLES11-SP1-Pool","description":"SLES11-SP1-Pool for sle-11-s390x"},{"name":"SLE11-SP1-Debuginfo-Updates","installer_updates":false,"description":"SLE11-SP1-Debuginfo-Updates for sle-11-s390x","enabled":false,"id":688,"autorefresh":true,"distro_target":"sle-11-s390x","url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Updates/sle-11-s390x/"},{"distro_target":"sle-11-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-Extras/sle-11-s390x/","enabled":false,"id":689,"description":"SLES11-Extras for sle-11-s390x","installer_updates":false,"name":"SLES11-Extras"},{"description":"SLE11-WebYaST-SP1-Updates for sle-11-s390x","installer_updates":false,"name":"SLE11-WebYaST-SP1-Updates","distro_target":"sle-11-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-WebYaST-SP1-Updates/sle-11-s390x/","enabled":false,"id":690},{"enabled":true,"id":691,"distro_target":"sle-11-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-Updates/sle-11-s390x/","installer_updates":false,"name":"SLES11-SP1-Updates","description":"SLES11-SP1-Updates for sle-11-s390x"},{"enabled":false,"id":692,"distro_target":"sle-11-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Pool/sle-11-s390x/","installer_updates":false,"name":"SLE11-SP1-Debuginfo-Pool","description":"SLE11-SP1-Debuginfo-Pool for sle-11-s390x"},{"url":"https://updates.suse.com/repo/$RCE/SLE11-WebYaST-SP1-Pool/sle-11-s390x/","autorefresh":true,"distro_target":"sle-11-s390x","id":693,"enabled":false,"description":"SLE11-WebYaST-SP1-Pool for sle-11-s390x","name":"SLE11-WebYaST-SP1-Pool","installer_updates":false},{"distro_target":"sle-11-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-LTSS-Updates/sle-11-s390x/","enabled":true,"id":790,"description":"SLES11-SP1-LTSS-Updates for sle-11-s390x","installer_updates":false,"name":"SLES11-SP1-LTSS-Updates"}],"predecessor_ids":[]},{"cpe":null,"product_type":"base","predecessor_ids":[],"online_predecessor_ids":[],"repositories":[{"description":"SLES11-SP1-Pool for sle-11-i586","name":"SLES11-SP1-Pool","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-Pool/sle-11-i586/","enabled":true,"id":686}],"product_class":"7261","eula_url":"","arch":"i386","shortname":null,"description":null,"free":false,"extensions":[{"predecessor_ids":[],"repositories":[{"enabled":true,"id":829,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-WebYaST-1.0-Updates/sle-11-i586/","name":"SLE11-WebYaST-1.0-Updates","installer_updates":false,"description":"SLE11-WebYaST-1.0-Updates for sle-11-i586"},{"description":"SLE11-WebYaST-1.0-Pool for sle-11-ia64","installer_updates":false,"name":"SLE11-WebYaST-1.0-Pool","url":"https://updates.suse.com/repo/$RCE/SLE11-WebYaST-1.0-Pool/sle-11-ia64/","distro_target":"sle-11-ia64","autorefresh":true,"id":830,"enabled":false},{"description":"SLE11-WebYaST-1.0-Updates for sle-11-ppc64","name":"SLE11-WebYaST-1.0-Updates","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-WebYaST-1.0-Updates/sle-11-ppc64/","autorefresh":true,"distro_target":"sle-11-ppc64","id":831,"enabled":true},{"url":"https://updates.suse.com/repo/$RCE/SLE11-WebYaST-1.0-Pool/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","id":832,"enabled":false,"description":"SLE11-WebYaST-1.0-Pool for sle-11-i586","name":"SLE11-WebYaST-1.0-Pool","installer_updates":false},{"installer_updates":false,"name":"SLE11-WebYaST-1.0-Pool","description":"SLE11-WebYaST-1.0-Pool for sle-11-s390x","enabled":false,"id":833,"distro_target":"sle-11-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-WebYaST-1.0-Pool/sle-11-s390x/"},{"id":834,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-WebYaST-1.0-Updates/sle-11-s390x/","distro_target":"sle-11-s390x","autorefresh":true,"installer_updates":false,"name":"SLE11-WebYaST-1.0-Updates","description":"SLE11-WebYaST-1.0-Updates for sle-11-s390x"},{"installer_updates":false,"name":"SLE11-WebYaST-1.0-Updates","description":"SLE11-WebYaST-1.0-Updates for sle-11-x86_64","enabled":true,"id":835,"distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-WebYaST-1.0-Updates/sle-11-x86_64/"},{"enabled":false,"id":836,"distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-WebYaST-1.0-Pool/sle-11-x86_64/","installer_updates":false,"name":"SLE11-WebYaST-1.0-Pool","description":"SLE11-WebYaST-1.0-Pool for sle-11-x86_64"},{"name":"SLE11-WebYaST-1.0-Updates","installer_updates":false,"description":"SLE11-WebYaST-1.0-Updates for sle-11-ia64","id":837,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-WebYaST-1.0-Updates/sle-11-ia64/","autorefresh":true,"distro_target":"sle-11-ia64"},{"name":"SLE11-WebYaST-1.0-Pool","installer_updates":false,"description":"SLE11-WebYaST-1.0-Pool for sle-11-ppc64","id":838,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-WebYaST-1.0-Pool/sle-11-ppc64/","autorefresh":true,"distro_target":"sle-11-ppc64"}],"online_predecessor_ids":[],"product_class":"WEBYAST","product_type":"extension","cpe":null,"free":true,"shortname":null,"description":null,"eula_url":"","arch":null,"friendly_version":"1.0","extensions":[],"release_stage":"released","id":836,"identifier":"sle-11-WebYaST","recommended":false,"version":"1.0","offline_predecessor_ids":[],"name":"SUSE WebYaST","former_identifier":"sle-11-WebYaST","release_type":null,"friendly_name":"SUSE WebYaST 1.0","migration_extra":false},{"friendly_name":"SUSE Linux Enterprise High Availability Extension 11 i386","migration_extra":false,"former_identifier":"sle-hae","release_type":null,"name":"SUSE Linux Enterprise High Availability Extension","offline_predecessor_ids":[],"version":"11","recommended":false,"release_stage":"released","identifier":"sle-hae","id":983,"extensions":[],"friendly_version":"11","arch":"i386","eula_url":"","description":null,"shortname":null,"free":false,"cpe":null,"product_type":"extension","online_predecessor_ids":[],"product_class":"SLE-HAE-X86","repositories":[{"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-Pool/sle-11-i586/","enabled":false,"id":954,"description":"SLE11-HAE-Pool for sle-11-i586","name":"SLE11-HAE-Pool","installer_updates":false},{"description":"SLE11-HAE-Updates for sle-11-i586","name":"SLE11-HAE-Updates","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-Updates/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","id":955,"enabled":true}],"predecessor_ids":[]},{"former_identifier":"sle-hae-SP1-migration","release_type":null,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise High Availability Extension 11 i386 (Migration)","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise High Availability Extension","version":"11","recommended":false,"identifier":"sle-hae-SP1-migration","release_stage":"released","id":987,"extensions":[],"friendly_version":"11","arch":"i386","eula_url":"","free":false,"description":null,"shortname":null,"product_type":"extension","cpe":null,"online_predecessor_ids":[],"product_class":"SLE-HAE-X86","repositories":[{"name":"SLE11-HAE-SP1-Pool","installer_updates":false,"description":"SLE11-HAE-SP1-Pool for sle-11-i586","id":945,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP1-Pool/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586"}],"predecessor_ids":[]},{"predecessor_ids":[],"repositories":[{"enabled":true,"id":1392,"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP2-Pool/sle-11-x86_64/","name":"SLE11-SMT-SP2-Pool","installer_updates":false,"description":"SLE11-SMT-SP2-Pool for sle-11-x86_64"},{"enabled":true,"id":1394,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP2-Pool/sle-11-i586/","name":"SLE11-SMT-SP2-Pool","installer_updates":false,"description":"SLE11-SMT-SP2-Pool for sle-11-i586"},{"enabled":true,"id":1396,"autorefresh":true,"distro_target":"sle-11-s390x","url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP2-Pool/sle-11-s390x/","name":"SLE11-SMT-SP2-Pool","installer_updates":false,"description":"SLE11-SMT-SP2-Pool for sle-11-s390x"}],"online_predecessor_ids":[],"product_class":"SLESMT","product_type":"extension","cpe":null,"free":true,"description":null,"shortname":null,"eula_url":"","arch":null,"friendly_version":"11","extensions":[],"identifier":"sle-smt-SP2-migration","release_stage":"released","id":1194,"recommended":false,"version":"11","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Subscription Management Tool","release_type":null,"former_identifier":"sle-smt-SP2-migration","friendly_name":"SUSE Linux Enterprise Subscription Management Tool 11 (Migration)","migration_extra":false},{"offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Subscription Management Tool","former_identifier":"sle-smt","release_type":null,"friendly_name":"SUSE Linux Enterprise Subscription Management Tool 11","migration_extra":false,"recommended":false,"version":"11","extensions":[],"id":1196,"release_stage":"released","identifier":"sle-smt","friendly_version":"11","eula_url":"","arch":null,"free":true,"description":null,"shortname":null,"product_type":"extension","cpe":null,"predecessor_ids":[],"online_predecessor_ids":[],"repositories":[{"name":"SLE11-SMT-Updates","installer_updates":false,"description":"SLE11-SMT-Updates for sle-11-s390x","enabled":true,"id":1400,"autorefresh":true,"distro_target":"sle-11-s390x","url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-Updates/sle-11-s390x/"},{"description":"SLE11-SMT-Updates for sle-11-x86_64","installer_updates":false,"name":"SLE11-SMT-Updates","url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-Updates/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true,"id":1401,"enabled":true},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-Updates/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","id":1402,"enabled":true,"description":"SLE11-SMT-Updates for sle-11-i586","name":"SLE11-SMT-Updates","installer_updates":false}],"product_class":"SLESMT"}],"release_stage":"released","id":746,"identifier":"SUSE_SLES-SP1-migration","friendly_version":"11","name":"SUSE Linux Enterprise Server","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Server 11 i386 (Migration)","release_type":null,"former_identifier":"SUSE_SLES-SP1-migration","recommended":false,"version":"11"},{"arch":"s390","eula_url":"","description":null,"shortname":null,"free":false,"cpe":null,"product_type":"base","online_predecessor_ids":[],"repositories":[{"name":"SLES11-SP1-Pool","installer_updates":false,"description":"SLES11-SP1-Pool for sle-11-s390x","id":687,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-Pool/sle-11-s390x/","autorefresh":true,"distro_target":"sle-11-s390x"}],"product_class":"SLES-Z","predecessor_ids":[],"friendly_name":"SUSE Linux Enterprise Server 11 s390 (Migration)","migration_extra":false,"former_identifier":"SUSE_SLES-SP1-migration","release_type":null,"name":"SUSE Linux Enterprise Server","offline_predecessor_ids":[],"version":"11","recommended":false,"id":747,"release_stage":"released","identifier":"SUSE_SLES-SP1-migration","extensions":[{"version":"1.0","recommended":false,"release_type":null,"former_identifier":"sle-11-WebYaST","migration_extra":false,"friendly_name":"SUSE WebYaST 1.0","offline_predecessor_ids":[],"name":"SUSE WebYaST","friendly_version":"1.0","release_stage":"released","identifier":"sle-11-WebYaST","id":836,"extensions":[],"free":true,"shortname":null,"description":null,"arch":null,"eula_url":"","online_predecessor_ids":[],"repositories":[{"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-WebYaST-1.0-Updates/sle-11-i586/","enabled":true,"id":829,"description":"SLE11-WebYaST-1.0-Updates for sle-11-i586","name":"SLE11-WebYaST-1.0-Updates","installer_updates":false},{"id":830,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-WebYaST-1.0-Pool/sle-11-ia64/","distro_target":"sle-11-ia64","autorefresh":true,"installer_updates":false,"name":"SLE11-WebYaST-1.0-Pool","description":"SLE11-WebYaST-1.0-Pool for sle-11-ia64"},{"description":"SLE11-WebYaST-1.0-Updates for sle-11-ppc64","installer_updates":false,"name":"SLE11-WebYaST-1.0-Updates","url":"https://updates.suse.com/repo/$RCE/SLE11-WebYaST-1.0-Updates/sle-11-ppc64/","distro_target":"sle-11-ppc64","autorefresh":true,"id":831,"enabled":true},{"installer_updates":false,"name":"SLE11-WebYaST-1.0-Pool","description":"SLE11-WebYaST-1.0-Pool for sle-11-i586","id":832,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-WebYaST-1.0-Pool/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true},{"enabled":false,"id":833,"distro_target":"sle-11-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-WebYaST-1.0-Pool/sle-11-s390x/","installer_updates":false,"name":"SLE11-WebYaST-1.0-Pool","description":"SLE11-WebYaST-1.0-Pool for sle-11-s390x"},{"description":"SLE11-WebYaST-1.0-Updates for sle-11-s390x","name":"SLE11-WebYaST-1.0-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-s390x","url":"https://updates.suse.com/repo/$RCE/SLE11-WebYaST-1.0-Updates/sle-11-s390x/","enabled":true,"id":834},{"installer_updates":false,"name":"SLE11-WebYaST-1.0-Updates","description":"SLE11-WebYaST-1.0-Updates for sle-11-x86_64","enabled":true,"id":835,"distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-WebYaST-1.0-Updates/sle-11-x86_64/"},{"url":"https://updates.suse.com/repo/$RCE/SLE11-WebYaST-1.0-Pool/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64","id":836,"enabled":false,"description":"SLE11-WebYaST-1.0-Pool for sle-11-x86_64","name":"SLE11-WebYaST-1.0-Pool","installer_updates":false},{"enabled":true,"id":837,"distro_target":"sle-11-ia64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-WebYaST-1.0-Updates/sle-11-ia64/","installer_updates":false,"name":"SLE11-WebYaST-1.0-Updates","description":"SLE11-WebYaST-1.0-Updates for sle-11-ia64"},{"url":"https://updates.suse.com/repo/$RCE/SLE11-WebYaST-1.0-Pool/sle-11-ppc64/","autorefresh":true,"distro_target":"sle-11-ppc64","id":838,"enabled":false,"description":"SLE11-WebYaST-1.0-Pool for sle-11-ppc64","name":"SLE11-WebYaST-1.0-Pool","installer_updates":false}],"product_class":"WEBYAST","predecessor_ids":[],"product_type":"extension","cpe":null},{"offline_predecessor_ids":[],"name":"SUSE Linux Enterprise High Availability Extension","former_identifier":"sle-hae-SP1-migration","release_type":null,"friendly_name":"SUSE Linux Enterprise High Availability Extension 11 s390 (Migration)","migration_extra":false,"recommended":false,"version":"11","extensions":[],"identifier":"sle-hae-SP1-migration","release_stage":"released","id":1081,"friendly_version":"11","eula_url":"","arch":"s390","free":false,"description":null,"shortname":null,"product_type":"extension","cpe":null,"predecessor_ids":[],"product_class":"SLE-HAE-Z","online_predecessor_ids":[],"repositories":[{"enabled":true,"id":1094,"autorefresh":true,"distro_target":"sle-11-s390x","url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP1-Pool/sle-11-s390x/","name":"SLE11-HAE-SP1-Pool","installer_updates":false,"description":"SLE11-HAE-SP1-Pool for sle-11-s390x"}]},{"eula_url":"","arch":null,"free":true,"shortname":null,"description":null,"product_type":"extension","cpe":null,"predecessor_ids":[],"online_predecessor_ids":[],"repositories":[{"enabled":true,"id":1392,"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP2-Pool/sle-11-x86_64/","name":"SLE11-SMT-SP2-Pool","installer_updates":false,"description":"SLE11-SMT-SP2-Pool for sle-11-x86_64"},{"installer_updates":false,"name":"SLE11-SMT-SP2-Pool","description":"SLE11-SMT-SP2-Pool for sle-11-i586","id":1394,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP2-Pool/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true},{"enabled":true,"id":1396,"distro_target":"sle-11-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP2-Pool/sle-11-s390x/","installer_updates":false,"name":"SLE11-SMT-SP2-Pool","description":"SLE11-SMT-SP2-Pool for sle-11-s390x"}],"product_class":"SLESMT","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Subscription Management Tool","release_type":null,"former_identifier":"sle-smt-SP2-migration","migration_extra":false,"friendly_name":"SUSE Linux Enterprise Subscription Management Tool 11 (Migration)","recommended":false,"version":"11","extensions":[],"release_stage":"released","identifier":"sle-smt-SP2-migration","id":1194,"friendly_version":"11"},{"release_stage":"released","identifier":"sle-smt","id":1196,"extensions":[],"friendly_version":"11","former_identifier":"sle-smt","release_type":null,"friendly_name":"SUSE Linux Enterprise Subscription Management Tool 11","migration_extra":false,"offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Subscription Management Tool","version":"11","recommended":false,"product_type":"extension","cpe":null,"repositories":[{"name":"SLE11-SMT-Updates","installer_updates":false,"description":"SLE11-SMT-Updates for sle-11-s390x","id":1400,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-Updates/sle-11-s390x/","autorefresh":true,"distro_target":"sle-11-s390x"},{"enabled":true,"id":1401,"distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-Updates/sle-11-x86_64/","installer_updates":false,"name":"SLE11-SMT-Updates","description":"SLE11-SMT-Updates for sle-11-x86_64"},{"name":"SLE11-SMT-Updates","installer_updates":false,"description":"SLE11-SMT-Updates for sle-11-i586","enabled":true,"id":1402,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-Updates/sle-11-i586/"}],"online_predecessor_ids":[],"product_class":"SLESMT","predecessor_ids":[],"arch":null,"eula_url":"","free":true,"shortname":null,"description":null}],"friendly_version":"11"},{"eula_url":"","arch":"x86_64","free":false,"shortname":null,"description":null,"product_type":"base","cpe":null,"predecessor_ids":[],"product_class":"7261","online_predecessor_ids":[],"repositories":[{"description":"SLES10-SP4-Online for sles-10-x86_64","name":"SLES10-SP4-Online","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLES10-SP4-Online/sles-10-x86_64/","autorefresh":true,"distro_target":"sles-10-x86_64","id":791,"enabled":true}],"offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Server","release_type":null,"former_identifier":"SUSE-Linux-Enterprise-Server-SP4-migration","migration_extra":false,"friendly_name":"SUSE Linux Enterprise Server 10 x86_64 (Migration)","recommended":false,"version":"10","extensions":[],"identifier":"SUSE-Linux-Enterprise-Server-SP4-migration","release_stage":"released","id":748,"friendly_version":"10"},{"product_type":"base","cpe":null,"predecessor_ids":[],"online_predecessor_ids":[],"product_class":"SLES-PPC","repositories":[{"url":"https://updates.suse.com/repo/$RCE/SLES10-SP4-Online/sles-10-ppc/","autorefresh":true,"distro_target":"sles-10-ppc","id":792,"enabled":true,"description":"SLES10-SP4-Online for sles-10-ppc","name":"SLES10-SP4-Online","installer_updates":false}],"eula_url":"","arch":"ppc64","free":false,"description":null,"shortname":null,"extensions":[],"release_stage":"released","id":749,"identifier":"SUSE-Linux-Enterprise-Server-SP4-migration","friendly_version":"10","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Server","former_identifier":"SUSE-Linux-Enterprise-Server-SP4-migration","release_type":null,"friendly_name":"SUSE Linux Enterprise Server 10 ppc64 (Migration)","migration_extra":false,"recommended":false,"version":"10"},{"version":"10","recommended":false,"former_identifier":"SUSE-Linux-Enterprise-Server-SP4-migration","release_type":null,"friendly_name":"SUSE Linux Enterprise Server 10 ia64 (Migration)","migration_extra":false,"offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Server","friendly_version":"10","identifier":"SUSE-Linux-Enterprise-Server-SP4-migration","release_stage":"released","id":750,"extensions":[],"free":false,"description":null,"shortname":null,"arch":"ia64","eula_url":"","repositories":[{"description":"SLES10-SP4-Online for sles-10-ia64","name":"SLES10-SP4-Online","installer_updates":false,"autorefresh":true,"distro_target":"sles-10-ia64","url":"https://updates.suse.com/repo/$RCE/SLES10-SP4-Online/sles-10-ia64/","enabled":true,"id":793}],"online_predecessor_ids":[],"product_class":"SLES-IA","predecessor_ids":[],"product_type":"base","cpe":null},{"id":751,"release_stage":"released","identifier":"SUSE-Linux-Enterprise-Server-SP4","extensions":[{"friendly_version":"10 SP4","release_stage":"released","id":1181,"identifier":"SUSE-Linux-Enterprise-SDK-SP4","extensions":[],"version":"10","recommended":false,"release_type":null,"former_identifier":"SUSE-Linux-Enterprise-SDK-SP4","friendly_name":"SUSE Linux Enterprise Software Development Kit 10 SP4","migration_extra":false,"offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Software Development Kit","online_predecessor_ids":[],"repositories":[{"description":"SLE10-SDK-SP4-Pool for sles-10-x86_64","name":"SLE10-SDK-SP4-Pool","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP4-Pool/sles-10-x86_64/","autorefresh":false,"distro_target":"sles-10-x86_64","id":1343,"enabled":true},{"id":1344,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP4-Pool/sles-10-ppc/","distro_target":"sles-10-ppc","autorefresh":false,"installer_updates":false,"name":"SLE10-SDK-SP4-Pool","description":"SLE10-SDK-SP4-Pool for sles-10-ppc"},{"name":"SLE10-SDK-SP4-Pool","installer_updates":false,"description":"SLE10-SDK-SP4-Pool for sles-10-i586","enabled":true,"id":1345,"autorefresh":false,"distro_target":"sles-10-i586","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP4-Pool/sles-10-i586/"},{"id":1346,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP4-Pool/sled-10-i586/","autorefresh":false,"distro_target":"sled-10-i586","name":"SLE10-SDK-SP4-Pool","installer_updates":false,"description":"SLE10-SDK-SP4-Pool for sled-10-i586"},{"id":1347,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP4-Updates/sled-10-x86_64/","autorefresh":true,"distro_target":"sled-10-x86_64","name":"SLE10-SDK-SP4-Updates","installer_updates":false,"description":"SLE10-SDK-SP4-Updates for sled-10-x86_64"},{"description":"SLE10-SDK-SP4-Pool for sles-10-s390x","installer_updates":false,"name":"SLE10-SDK-SP4-Pool","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP4-Pool/sles-10-s390x/","distro_target":"sles-10-s390x","autorefresh":false,"id":1348,"enabled":true},{"enabled":true,"id":1349,"distro_target":"sles-10-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP4-Updates/sles-10-x86_64/","installer_updates":false,"name":"SLE10-SDK-SP4-Updates","description":"SLE10-SDK-SP4-Updates for sles-10-x86_64"},{"autorefresh":true,"distro_target":"sles-10-s390x","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP4-Updates/sles-10-s390x/","enabled":true,"id":1350,"description":"SLE10-SDK-SP4-Updates for sles-10-s390x","name":"SLE10-SDK-SP4-Updates","installer_updates":false},{"installer_updates":false,"name":"SLE10-SDK-SP4-Updates","description":"SLE10-SDK-SP4-Updates for sled-10-i586","enabled":true,"id":1351,"distro_target":"sled-10-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP4-Updates/sled-10-i586/"},{"description":"SLE10-SDK-SP4-Updates for sles-10-ppc","name":"SLE10-SDK-SP4-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sles-10-ppc","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP4-Updates/sles-10-ppc/","enabled":true,"id":1352},{"description":"SLE10-SDK-SP4-Updates for sles-10-i586","name":"SLE10-SDK-SP4-Updates","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP4-Updates/sles-10-i586/","autorefresh":true,"distro_target":"sles-10-i586","id":1353,"enabled":true},{"enabled":true,"id":1354,"autorefresh":true,"distro_target":"sles-10-ia64","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP4-Updates/sles-10-ia64/","name":"SLE10-SDK-SP4-Updates","installer_updates":false,"description":"SLE10-SDK-SP4-Updates for sles-10-ia64"},{"installer_updates":false,"name":"SLE10-SDK-SP4-Pool","description":"SLE10-SDK-SP4-Pool for sled-10-x86_64","id":1355,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP4-Pool/sled-10-x86_64/","distro_target":"sled-10-x86_64","autorefresh":false},{"description":"SLE10-SDK-SP4-Pool for sles-10-ia64","installer_updates":false,"name":"SLE10-SDK-SP4-Pool","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP4-Pool/sles-10-ia64/","distro_target":"sles-10-ia64","autorefresh":false,"id":1356,"enabled":true}],"product_class":"SLE-SDK","predecessor_ids":[],"product_type":"extension","cpe":null,"free":true,"shortname":null,"description":null,"arch":null,"eula_url":""},{"cpe":null,"product_type":"extension","repositories":[{"id":1357,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP4-Online/sles-10-x86_64/","distro_target":"sles-10-x86_64","autorefresh":true,"installer_updates":false,"name":"SLE10-SDK-SP4-Online","description":"SLE10-SDK-SP4-Online for sles-10-x86_64"},{"id":1358,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP4-Online/sles-10-i586/","autorefresh":true,"distro_target":"sles-10-i586","name":"SLE10-SDK-SP4-Online","installer_updates":false,"description":"SLE10-SDK-SP4-Online for sles-10-i586"},{"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP4-Online/sles-10-ia64/","distro_target":"sles-10-ia64","autorefresh":true,"id":1359,"enabled":true,"description":"SLE10-SDK-SP4-Online for sles-10-ia64","installer_updates":false,"name":"SLE10-SDK-SP4-Online"},{"description":"SLE10-SDK-SP4-Online for sled-10-x86_64","installer_updates":false,"name":"SLE10-SDK-SP4-Online","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP4-Online/sled-10-x86_64/","distro_target":"sled-10-x86_64","autorefresh":true,"id":1360,"enabled":true},{"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP4-Online/sled-10-i586/","distro_target":"sled-10-i586","autorefresh":true,"id":1361,"enabled":true,"description":"SLE10-SDK-SP4-Online for sled-10-i586","installer_updates":false,"name":"SLE10-SDK-SP4-Online"},{"name":"SLE10-SDK-SP4-Online","installer_updates":false,"description":"SLE10-SDK-SP4-Online for sles-10-ppc","id":1362,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP4-Online/sles-10-ppc/","autorefresh":true,"distro_target":"sles-10-ppc"},{"installer_updates":false,"name":"SLE10-SDK-SP4-Online","description":"SLE10-SDK-SP4-Online for sles-10-s390x","id":1363,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP4-Online/sles-10-s390x/","distro_target":"sles-10-s390x","autorefresh":true}],"online_predecessor_ids":[],"product_class":"SLE-SDK","predecessor_ids":[],"arch":null,"eula_url":"","shortname":null,"description":null,"free":true,"id":1182,"release_stage":"released","identifier":"SUSE-Linux-Enterprise-SDK-SP4-migration","extensions":[],"friendly_version":"10","migration_extra":false,"friendly_name":"SUSE Linux Enterprise Software Development Kit 10 (Migration)","former_identifier":"SUSE-Linux-Enterprise-SDK-SP4-migration","release_type":null,"name":"SUSE Linux Enterprise Software Development Kit","offline_predecessor_ids":[],"version":"10","recommended":false}],"friendly_version":"10 SP4","former_identifier":"SUSE-Linux-Enterprise-Server-SP4","release_type":null,"friendly_name":"SUSE Linux Enterprise Server 10 SP4 i686","migration_extra":false,"offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Server","version":"10","recommended":false,"product_type":"base","cpe":null,"online_predecessor_ids":[],"product_class":"7261","repositories":[{"distro_target":"sles-10-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLES10-GPLv3-Extras/sles-10-i586/","enabled":false,"id":665,"description":"SLES10-GPLv3-Extras for sles-10-i586","installer_updates":false,"name":"SLES10-GPLv3-Extras"},{"description":"SLES10-SP4-Pool for sles-10-i586","name":"SLES10-SP4-Pool","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLES10-SP4-Pool/sles-10-i586/","autorefresh":false,"distro_target":"sles-10-i586","id":695,"enabled":true},{"distro_target":"sles-10-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP4-Debuginfo-Updates/sles-10-i586/","enabled":false,"id":696,"description":"SLE10-SP4-Debuginfo-Updates for sles-10-i586","installer_updates":false,"name":"SLE10-SP4-Debuginfo-Updates"},{"installer_updates":false,"name":"SLES10-SP4-LTSS-Updates","description":"SLES10-SP4-LTSS-Updates for sles-10-i586","id":697,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLES10-SP4-LTSS-Updates/sles-10-i586/","distro_target":"sles-10-i586","autorefresh":true},{"description":"SLE10-SP4-Debuginfo-Pool for sles-10-i586","installer_updates":false,"name":"SLE10-SP4-Debuginfo-Pool","url":"https://updates.suse.com/repo/$RCE/SLE10-SP4-Debuginfo-Pool/sles-10-i586/","distro_target":"sles-10-i586","autorefresh":false,"id":698,"enabled":false},{"description":"SLES10-SP4-Updates for sles-10-i586","name":"SLES10-SP4-Updates","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLES10-SP4-Updates/sles-10-i586/","autorefresh":true,"distro_target":"sles-10-i586","id":699,"enabled":true}],"predecessor_ids":[],"arch":"i686","eula_url":"","free":false,"shortname":null,"description":null},{"arch":"i586","eula_url":"","free":false,"description":null,"shortname":null,"product_type":"base","cpe":null,"online_predecessor_ids":[],"repositories":[{"url":"https://updates.suse.com/repo/$RCE/SLES10-GPLv3-Extras/sles-10-i586/","distro_target":"sles-10-i586","autorefresh":true,"id":665,"enabled":false,"description":"SLES10-GPLv3-Extras for sles-10-i586","installer_updates":false,"name":"SLES10-GPLv3-Extras"},{"id":695,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLES10-SP4-Pool/sles-10-i586/","distro_target":"sles-10-i586","autorefresh":false,"installer_updates":false,"name":"SLES10-SP4-Pool","description":"SLES10-SP4-Pool for sles-10-i586"},{"description":"SLE10-SP4-Debuginfo-Updates for sles-10-i586","installer_updates":false,"name":"SLE10-SP4-Debuginfo-Updates","url":"https://updates.suse.com/repo/$RCE/SLE10-SP4-Debuginfo-Updates/sles-10-i586/","distro_target":"sles-10-i586","autorefresh":true,"id":696,"enabled":false},{"url":"https://updates.suse.com/repo/$RCE/SLES10-SP4-LTSS-Updates/sles-10-i586/","distro_target":"sles-10-i586","autorefresh":true,"id":697,"enabled":true,"description":"SLES10-SP4-LTSS-Updates for sles-10-i586","installer_updates":false,"name":"SLES10-SP4-LTSS-Updates"},{"description":"SLE10-SP4-Debuginfo-Pool for sles-10-i586","installer_updates":false,"name":"SLE10-SP4-Debuginfo-Pool","url":"https://updates.suse.com/repo/$RCE/SLE10-SP4-Debuginfo-Pool/sles-10-i586/","distro_target":"sles-10-i586","autorefresh":false,"id":698,"enabled":false},{"enabled":true,"id":699,"distro_target":"sles-10-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLES10-SP4-Updates/sles-10-i586/","installer_updates":false,"name":"SLES10-SP4-Updates","description":"SLES10-SP4-Updates for sles-10-i586"}],"product_class":"7261","predecessor_ids":[],"former_identifier":"SUSE-Linux-Enterprise-Server-SP4","release_type":null,"friendly_name":"SUSE Linux Enterprise Server 10 SP4 i586","migration_extra":false,"offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Server","version":"10","recommended":false,"release_stage":"released","identifier":"SUSE-Linux-Enterprise-Server-SP4","id":752,"extensions":[{"predecessor_ids":[],"online_predecessor_ids":[],"product_class":"SLE-SDK","repositories":[{"installer_updates":false,"name":"SLE10-SDK-SP4-Pool","description":"SLE10-SDK-SP4-Pool for sles-10-x86_64","id":1343,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP4-Pool/sles-10-x86_64/","distro_target":"sles-10-x86_64","autorefresh":false},{"installer_updates":false,"name":"SLE10-SDK-SP4-Pool","description":"SLE10-SDK-SP4-Pool for sles-10-ppc","id":1344,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP4-Pool/sles-10-ppc/","distro_target":"sles-10-ppc","autorefresh":false},{"enabled":true,"id":1345,"autorefresh":false,"distro_target":"sles-10-i586","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP4-Pool/sles-10-i586/","name":"SLE10-SDK-SP4-Pool","installer_updates":false,"description":"SLE10-SDK-SP4-Pool for sles-10-i586"},{"name":"SLE10-SDK-SP4-Pool","installer_updates":false,"description":"SLE10-SDK-SP4-Pool for sled-10-i586","enabled":true,"id":1346,"autorefresh":false,"distro_target":"sled-10-i586","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP4-Pool/sled-10-i586/"},{"autorefresh":true,"distro_target":"sled-10-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP4-Updates/sled-10-x86_64/","enabled":true,"id":1347,"description":"SLE10-SDK-SP4-Updates for sled-10-x86_64","name":"SLE10-SDK-SP4-Updates","installer_updates":false},{"description":"SLE10-SDK-SP4-Pool for sles-10-s390x","name":"SLE10-SDK-SP4-Pool","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP4-Pool/sles-10-s390x/","autorefresh":false,"distro_target":"sles-10-s390x","id":1348,"enabled":true},{"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP4-Updates/sles-10-x86_64/","distro_target":"sles-10-x86_64","autorefresh":true,"id":1349,"enabled":true,"description":"SLE10-SDK-SP4-Updates for sles-10-x86_64","installer_updates":false,"name":"SLE10-SDK-SP4-Updates"},{"name":"SLE10-SDK-SP4-Updates","installer_updates":false,"description":"SLE10-SDK-SP4-Updates for sles-10-s390x","enabled":true,"id":1350,"autorefresh":true,"distro_target":"sles-10-s390x","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP4-Updates/sles-10-s390x/"},{"autorefresh":true,"distro_target":"sled-10-i586","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP4-Updates/sled-10-i586/","enabled":true,"id":1351,"description":"SLE10-SDK-SP4-Updates for sled-10-i586","name":"SLE10-SDK-SP4-Updates","installer_updates":false},{"name":"SLE10-SDK-SP4-Updates","installer_updates":false,"description":"SLE10-SDK-SP4-Updates for sles-10-ppc","enabled":true,"id":1352,"autorefresh":true,"distro_target":"sles-10-ppc","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP4-Updates/sles-10-ppc/"},{"id":1353,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP4-Updates/sles-10-i586/","autorefresh":true,"distro_target":"sles-10-i586","name":"SLE10-SDK-SP4-Updates","installer_updates":false,"description":"SLE10-SDK-SP4-Updates for sles-10-i586"},{"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP4-Updates/sles-10-ia64/","distro_target":"sles-10-ia64","autorefresh":true,"id":1354,"enabled":true,"description":"SLE10-SDK-SP4-Updates for sles-10-ia64","installer_updates":false,"name":"SLE10-SDK-SP4-Updates"},{"description":"SLE10-SDK-SP4-Pool for sled-10-x86_64","installer_updates":false,"name":"SLE10-SDK-SP4-Pool","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP4-Pool/sled-10-x86_64/","distro_target":"sled-10-x86_64","autorefresh":false,"id":1355,"enabled":true},{"installer_updates":false,"name":"SLE10-SDK-SP4-Pool","description":"SLE10-SDK-SP4-Pool for sles-10-ia64","id":1356,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP4-Pool/sles-10-ia64/","distro_target":"sles-10-ia64","autorefresh":false}],"cpe":null,"product_type":"extension","description":null,"shortname":null,"free":true,"eula_url":"","arch":null,"friendly_version":"10 SP4","extensions":[],"release_stage":"released","identifier":"SUSE-Linux-Enterprise-SDK-SP4","id":1181,"recommended":false,"version":"10","name":"SUSE Linux Enterprise Software Development Kit","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Software Development Kit 10 SP4","former_identifier":"SUSE-Linux-Enterprise-SDK-SP4","release_type":null},{"shortname":null,"description":null,"free":true,"eula_url":"","arch":null,"predecessor_ids":[],"product_class":"SLE-SDK","online_predecessor_ids":[],"repositories":[{"id":1357,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP4-Online/sles-10-x86_64/","autorefresh":true,"distro_target":"sles-10-x86_64","name":"SLE10-SDK-SP4-Online","installer_updates":false,"description":"SLE10-SDK-SP4-Online for sles-10-x86_64"},{"id":1358,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP4-Online/sles-10-i586/","autorefresh":true,"distro_target":"sles-10-i586","name":"SLE10-SDK-SP4-Online","installer_updates":false,"description":"SLE10-SDK-SP4-Online for sles-10-i586"},{"description":"SLE10-SDK-SP4-Online for sles-10-ia64","installer_updates":false,"name":"SLE10-SDK-SP4-Online","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP4-Online/sles-10-ia64/","distro_target":"sles-10-ia64","autorefresh":true,"id":1359,"enabled":true},{"enabled":true,"id":1360,"distro_target":"sled-10-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP4-Online/sled-10-x86_64/","installer_updates":false,"name":"SLE10-SDK-SP4-Online","description":"SLE10-SDK-SP4-Online for sled-10-x86_64"},{"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP4-Online/sled-10-i586/","autorefresh":true,"distro_target":"sled-10-i586","id":1361,"enabled":true,"description":"SLE10-SDK-SP4-Online for sled-10-i586","name":"SLE10-SDK-SP4-Online","installer_updates":false},{"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP4-Online/sles-10-ppc/","autorefresh":true,"distro_target":"sles-10-ppc","id":1362,"enabled":true,"description":"SLE10-SDK-SP4-Online for sles-10-ppc","name":"SLE10-SDK-SP4-Online","installer_updates":false},{"description":"SLE10-SDK-SP4-Online for sles-10-s390x","name":"SLE10-SDK-SP4-Online","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP4-Online/sles-10-s390x/","autorefresh":true,"distro_target":"sles-10-s390x","id":1363,"enabled":true}],"cpe":null,"product_type":"extension","recommended":false,"version":"10","name":"SUSE Linux Enterprise Software Development Kit","offline_predecessor_ids":[],"friendly_name":"SUSE Linux Enterprise Software Development Kit 10 (Migration)","migration_extra":false,"former_identifier":"SUSE-Linux-Enterprise-SDK-SP4-migration","release_type":null,"friendly_version":"10","extensions":[],"release_stage":"released","identifier":"SUSE-Linux-Enterprise-SDK-SP4-migration","id":1182}],"friendly_version":"10 SP4"},{"predecessor_ids":[],"repositories":[{"id":679,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLES11-Extras/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","name":"SLES11-Extras","installer_updates":false,"description":"SLES11-Extras for sle-11-i586"},{"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Pool/sle-11-i586/","enabled":false,"id":680,"description":"SLE11-SP1-Debuginfo-Pool for sle-11-i586","name":"SLE11-SP1-Debuginfo-Pool","installer_updates":false},{"installer_updates":false,"name":"SLE11-SP1-Debuginfo-Updates","description":"SLE11-SP1-Debuginfo-Updates for sle-11-i586","id":682,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Updates/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true},{"enabled":true,"id":684,"distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-Updates/sle-11-i586/","installer_updates":false,"name":"SLES11-SP1-Updates","description":"SLES11-SP1-Updates for sle-11-i586"},{"description":"SLES11-SP1-Pool for sle-11-i586","name":"SLES11-SP1-Pool","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-Pool/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","id":686,"enabled":true},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-Debuginfo-Core/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true,"id":717,"enabled":false,"description":"SLE11-SP2-Debuginfo-Core for sle-11-i586","installer_updates":false,"name":"SLE11-SP2-Debuginfo-Core"},{"installer_updates":false,"name":"SLE11-WebYaST-SP2-Pool","description":"SLE11-WebYaST-SP2-Pool for sle-11-i586","id":718,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-WebYaST-SP2-Pool/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true},{"description":"SLE11-SP2-Debuginfo-Updates for sle-11-i586","installer_updates":false,"name":"SLE11-SP2-Debuginfo-Updates","distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-Debuginfo-Updates/sle-11-i586/","enabled":false,"id":719},{"url":"https://updates.suse.com/repo/$RCE/SLES11-SP2-Updates/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","id":720,"enabled":true,"description":"SLES11-SP2-Updates for sle-11-i586","name":"SLES11-SP2-Updates","installer_updates":false},{"description":"SLE11-WebYaST-SP2-Updates for sle-11-i586","name":"SLE11-WebYaST-SP2-Updates","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-WebYaST-SP2-Updates/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","id":721,"enabled":false},{"enabled":true,"id":722,"distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP2-Core/sle-11-i586/","installer_updates":false,"name":"SLES11-SP2-Core","description":"SLES11-SP2-Core for sle-11-i586"},{"installer_updates":false,"name":"SLES11-SP2-Extension-Store","description":"SLES11-SP2-Extension-Store for sle-11-i586","enabled":true,"id":761,"distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP2-Extension-Store/sle-11-i586/"}],"online_predecessor_ids":[],"product_class":"7261","cpe":"cpe:/o:suse:suse_sles:11:sp2","product_type":"base","description":null,"shortname":null,"free":false,"eula_url":"","arch":"i386","friendly_version":"11 SP2","extensions":[{"offline_predecessor_ids":[],"name":"SUSE WebYaST","former_identifier":"sle-11-WebYaST","release_type":null,"friendly_name":"SUSE WebYaST 1.2","migration_extra":false,"recommended":false,"version":"1.2","extensions":[],"id":837,"release_stage":"released","identifier":"sle-11-WebYaST","friendly_version":"1.2","eula_url":"","arch":null,"free":true,"shortname":null,"description":null,"product_type":"extension","cpe":null,"predecessor_ids":[],"product_class":"WEBYAST","online_predecessor_ids":[],"repositories":[{"enabled":true,"id":839,"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-WebYaST-1.2-Updates/sle-11-x86_64/","name":"SLE11-SP1-WebYaST-1.2-Updates","installer_updates":false,"description":"SLE11-SP1-WebYaST-1.2-Updates for sle-11-x86_64"},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-WebYaST-1.2-Pool/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","id":840,"enabled":false,"description":"SLE11-SP1-WebYaST-1.2-Pool for sle-11-i586","name":"SLE11-SP1-WebYaST-1.2-Pool","installer_updates":false},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-WebYaST-1.2-Pool/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true,"id":841,"enabled":false,"description":"SLE11-SP1-WebYaST-1.2-Pool for sle-11-x86_64","installer_updates":false,"name":"SLE11-SP1-WebYaST-1.2-Pool"},{"distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-WebYaST-1.2-Updates/sle-11-i586/","enabled":true,"id":842,"description":"SLE11-SP1-WebYaST-1.2-Updates for sle-11-i586","installer_updates":false,"name":"SLE11-SP1-WebYaST-1.2-Updates"}]},{"free":false,"description":null,"shortname":null,"eula_url":"","arch":"i386","predecessor_ids":[],"product_class":"SLE-HAE-X86","online_predecessor_ids":[],"repositories":[{"installer_updates":false,"name":"SLE11-HAE-SP2-Pool","description":"SLE11-HAE-SP2-Pool for sle-11-i586","id":949,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP2-Pool/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true},{"description":"SLE11-HAE-SP2-Updates for sle-11-i586","installer_updates":false,"name":"SLE11-HAE-SP2-Updates","distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP2-Updates/sle-11-i586/","enabled":true,"id":950}],"product_type":"extension","cpe":null,"recommended":false,"version":"11.2","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise High Availability Extension","former_identifier":"sle-hae","release_type":null,"friendly_name":"SUSE Linux Enterprise High Availability Extension 11 SP2 i386","migration_extra":false,"friendly_version":"11 SP2","extensions":[{"friendly_version":"11 SP2","extensions":[],"identifier":"sle-haegeo","release_stage":"released","id":1108,"recommended":false,"version":"11.2","name":"Geo Clustering for SUSE Linux Enterprise High Availability Extension","offline_predecessor_ids":[],"friendly_name":"Geo Clustering for SUSE Linux Enterprise High Availability Extension 11 SP2 i386","migration_extra":false,"former_identifier":"sle-haegeo","release_type":null,"predecessor_ids":[],"repositories":[{"id":1115,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-GEO-SP2-Updates/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","name":"SLE11-HAE-GEO-SP2-Updates","installer_updates":false,"description":"SLE11-HAE-GEO-SP2-Updates for sle-11-i586"}],"online_predecessor_ids":[],"product_class":"SLE-HAE-GEO","cpe":null,"product_type":"extension","description":null,"shortname":null,"free":false,"eula_url":"","arch":"i386"}],"id":984,"release_stage":"released","identifier":"sle-hae"},{"former_identifier":"sle-sdk","release_type":null,"friendly_name":"SUSE Linux Enterprise Software Development Kit 11 SP2","migration_extra":false,"offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Software Development Kit","version":"11.2","recommended":false,"release_stage":"released","id":1160,"identifier":"sle-sdk","extensions":[],"friendly_version":"11 SP2","arch":null,"eula_url":"","free":true,"shortname":null,"description":null,"product_type":"extension","cpe":null,"product_class":"SLE-SDK","online_predecessor_ids":[],"repositories":[{"description":"SLE11-SDK-SP1-Updates for sle-11-ia64","installer_updates":false,"name":"SLE11-SDK-SP1-Updates","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Updates/sle-11-ia64/","distro_target":"sle-11-ia64","autorefresh":true,"id":1257,"enabled":true},{"description":"SLE11-SDK-SP1-Pool for sle-11-ia64","installer_updates":false,"name":"SLE11-SDK-SP1-Pool","distro_target":"sle-11-ia64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-ia64/","enabled":true,"id":1258},{"description":"SLE11-SDK-SP1-Pool for sle-11-s390x","name":"SLE11-SDK-SP1-Pool","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-s390x/","autorefresh":true,"distro_target":"sle-11-s390x","id":1259,"enabled":true},{"name":"SLE11-SDK-SP1-Updates","installer_updates":false,"description":"SLE11-SDK-SP1-Updates for sle-11-ppc64","enabled":true,"id":1260,"autorefresh":true,"distro_target":"sle-11-ppc64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Updates/sle-11-ppc64/"},{"description":"SLE11-SDK-SP1-Pool for sle-11-ppc64","installer_updates":false,"name":"SLE11-SDK-SP1-Pool","distro_target":"sle-11-ppc64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-ppc64/","enabled":true,"id":1261},{"description":"SLE11-SDK-SP1-Updates for sle-11-i586","installer_updates":false,"name":"SLE11-SDK-SP1-Updates","distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Updates/sle-11-i586/","enabled":true,"id":1262},{"installer_updates":false,"name":"SLE11-SDK-SP1-Pool","description":"SLE11-SDK-SP1-Pool for sle-11-i586","enabled":true,"id":1263,"distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-i586/"},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64","id":1264,"enabled":true,"description":"SLE11-SDK-SP1-Pool for sle-11-x86_64","name":"SLE11-SDK-SP1-Pool","installer_updates":false},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Updates/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64","id":1265,"enabled":true,"description":"SLE11-SDK-SP1-Updates for sle-11-x86_64","name":"SLE11-SDK-SP1-Updates","installer_updates":false},{"id":1266,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Updates/sle-11-s390x/","distro_target":"sle-11-s390x","autorefresh":true,"installer_updates":false,"name":"SLE11-SDK-SP1-Updates","description":"SLE11-SDK-SP1-Updates for sle-11-s390x"},{"autorefresh":true,"distro_target":"sle-11-ia64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-ia64/","enabled":true,"id":1267,"description":"SLE11-SDK-SP2-Core for sle-11-ia64","name":"SLE11-SDK-SP2-Core","installer_updates":false},{"distro_target":"sle-11-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-s390x/","enabled":true,"id":1268,"description":"SLE11-SDK-SP2-Core for sle-11-s390x","installer_updates":false,"name":"SLE11-SDK-SP2-Core"},{"enabled":true,"id":1269,"distro_target":"sle-11-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-s390x/","installer_updates":false,"name":"SLE11-SDK-SP2-Updates","description":"SLE11-SDK-SP2-Updates for sle-11-s390x"},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-ppc64/","autorefresh":true,"distro_target":"sle-11-ppc64","id":1270,"enabled":true,"description":"SLE11-SDK-SP2-Updates for sle-11-ppc64","name":"SLE11-SDK-SP2-Updates","installer_updates":false},{"id":1271,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","name":"SLE11-SDK-SP2-Updates","installer_updates":false,"description":"SLE11-SDK-SP2-Updates for sle-11-i586"},{"description":"SLE11-SDK-SP2-Updates for sle-11-ia64","installer_updates":false,"name":"SLE11-SDK-SP2-Updates","distro_target":"sle-11-ia64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-ia64/","enabled":true,"id":1272},{"name":"SLE11-SDK-SP2-Core","installer_updates":false,"description":"SLE11-SDK-SP2-Core for sle-11-ppc64","id":1273,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-ppc64/","autorefresh":true,"distro_target":"sle-11-ppc64"},{"name":"SLE11-SDK-SP2-Core","installer_updates":false,"description":"SLE11-SDK-SP2-Core for sle-11-i586","enabled":true,"id":1274,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-i586/"},{"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-x86_64/","enabled":true,"id":1275,"description":"SLE11-SDK-SP2-Core for sle-11-x86_64","name":"SLE11-SDK-SP2-Core","installer_updates":false},{"description":"SLE11-SDK-SP2-Updates for sle-11-x86_64","name":"SLE11-SDK-SP2-Updates","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64","id":1276,"enabled":true}],"predecessor_ids":[]},{"offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Software Development Kit","release_type":null,"former_identifier":"sle-sdk-SP2-migration","friendly_name":"SUSE Linux Enterprise Software Development Kit 11 SP1 (Migration)","migration_extra":false,"recommended":false,"version":"11.1","extensions":[],"release_stage":"released","identifier":"sle-sdk-SP2-migration","id":1163,"friendly_version":"11 SP1","eula_url":"","arch":null,"free":true,"description":null,"shortname":null,"product_type":"extension","cpe":null,"predecessor_ids":[],"online_predecessor_ids":[],"product_class":"SLE-SDK","repositories":[{"name":"SLE11-SDK-SP2-Core","installer_updates":false,"description":"SLE11-SDK-SP2-Core for sle-11-ia64","enabled":true,"id":1267,"autorefresh":true,"distro_target":"sle-11-ia64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-ia64/"},{"name":"SLE11-SDK-SP2-Core","installer_updates":false,"description":"SLE11-SDK-SP2-Core for sle-11-s390x","enabled":true,"id":1268,"autorefresh":true,"distro_target":"sle-11-s390x","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-s390x/"},{"description":"SLE11-SDK-SP2-Updates for sle-11-s390x","name":"SLE11-SDK-SP2-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-s390x","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-s390x/","enabled":true,"id":1269},{"distro_target":"sle-11-ppc64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-ppc64/","enabled":true,"id":1270,"description":"SLE11-SDK-SP2-Updates for sle-11-ppc64","installer_updates":false,"name":"SLE11-SDK-SP2-Updates"},{"distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-i586/","enabled":true,"id":1271,"description":"SLE11-SDK-SP2-Updates for sle-11-i586","installer_updates":false,"name":"SLE11-SDK-SP2-Updates"},{"distro_target":"sle-11-ia64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-ia64/","enabled":true,"id":1272,"description":"SLE11-SDK-SP2-Updates for sle-11-ia64","installer_updates":false,"name":"SLE11-SDK-SP2-Updates"},{"enabled":true,"id":1273,"autorefresh":true,"distro_target":"sle-11-ppc64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-ppc64/","name":"SLE11-SDK-SP2-Core","installer_updates":false,"description":"SLE11-SDK-SP2-Core for sle-11-ppc64"},{"name":"SLE11-SDK-SP2-Core","installer_updates":false,"description":"SLE11-SDK-SP2-Core for sle-11-i586","enabled":true,"id":1274,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-i586/"},{"enabled":true,"id":1275,"distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-x86_64/","installer_updates":false,"name":"SLE11-SDK-SP2-Core","description":"SLE11-SDK-SP2-Core for sle-11-x86_64"},{"installer_updates":false,"name":"SLE11-SDK-SP2-Updates","description":"SLE11-SDK-SP2-Updates for sle-11-x86_64","id":1276,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true}]},{"release_stage":"released","id":1164,"identifier":"sle-sdk-SP3-migration","extensions":[],"friendly_version":"11 SP2","migration_extra":false,"friendly_name":"SUSE Linux Enterprise Software Development Kit 11 SP2 (Migration)","release_type":null,"former_identifier":"sle-sdk-SP3-migration","name":"SUSE Linux Enterprise Software Development Kit","offline_predecessor_ids":[],"version":"11.2","recommended":false,"cpe":null,"product_type":"extension","online_predecessor_ids":[],"product_class":"SLE-SDK","repositories":[{"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Pool/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","id":1277,"enabled":true,"description":"SLE11-SDK-SP3-Pool for sle-11-i586","name":"SLE11-SDK-SP3-Pool","installer_updates":false},{"distro_target":"sle-11-ia64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Pool/sle-11-ia64/","enabled":true,"id":1278,"description":"SLE11-SDK-SP3-Pool for sle-11-ia64","installer_updates":false,"name":"SLE11-SDK-SP3-Pool"},{"name":"SLE11-SDK-SP3-Updates","installer_updates":false,"description":"SLE11-SDK-SP3-Updates for sle-11-ppc64","enabled":true,"id":1279,"autorefresh":true,"distro_target":"sle-11-ppc64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Updates/sle-11-ppc64/"},{"description":"SLE11-SDK-SP3-Updates for sle-11-ia64","name":"SLE11-SDK-SP3-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-ia64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Updates/sle-11-ia64/","enabled":true,"id":1280},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Pool/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true,"id":1281,"enabled":true,"description":"SLE11-SDK-SP3-Pool for sle-11-x86_64","installer_updates":false,"name":"SLE11-SDK-SP3-Pool"},{"enabled":true,"id":1282,"autorefresh":true,"distro_target":"sle-11-s390x","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Updates/sle-11-s390x/","name":"SLE11-SDK-SP3-Updates","installer_updates":false,"description":"SLE11-SDK-SP3-Updates for sle-11-s390x"},{"description":"SLE11-SDK-SP3-Pool for sle-11-ppc64","installer_updates":false,"name":"SLE11-SDK-SP3-Pool","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Pool/sle-11-ppc64/","distro_target":"sle-11-ppc64","autorefresh":true,"id":1283,"enabled":true},{"installer_updates":false,"name":"SLE11-SDK-SP3-Updates","description":"SLE11-SDK-SP3-Updates for sle-11-x86_64","id":1284,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Updates/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true},{"installer_updates":false,"name":"SLE11-SDK-SP3-Updates","description":"SLE11-SDK-SP3-Updates for sle-11-i586","enabled":true,"id":1285,"distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Updates/sle-11-i586/"},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Pool/sle-11-s390x/","autorefresh":true,"distro_target":"sle-11-s390x","id":1286,"enabled":true,"description":"SLE11-SDK-SP3-Pool for sle-11-s390x","name":"SLE11-SDK-SP3-Pool","installer_updates":false}],"predecessor_ids":[],"arch":null,"eula_url":"","shortname":null,"description":null,"free":true},{"arch":null,"eula_url":"","description":null,"shortname":null,"free":true,"cpe":null,"product_type":"extension","online_predecessor_ids":[],"repositories":[{"installer_updates":false,"name":"SLE11-SMT-SP2-Pool","description":"SLE11-SMT-SP2-Pool for sle-11-x86_64","id":1392,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP2-Pool/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true},{"name":"SLE11-SMT-SP2-Updates","installer_updates":false,"description":"SLE11-SMT-SP2-Updates for sle-11-s390x","enabled":true,"id":1393,"autorefresh":true,"distro_target":"sle-11-s390x","url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP2-Updates/sle-11-s390x/"},{"enabled":true,"id":1394,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP2-Pool/sle-11-i586/","name":"SLE11-SMT-SP2-Pool","installer_updates":false,"description":"SLE11-SMT-SP2-Pool for sle-11-i586"},{"description":"SLE11-SMT-SP2-Updates for sle-11-i586","installer_updates":false,"name":"SLE11-SMT-SP2-Updates","distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP2-Updates/sle-11-i586/","enabled":true,"id":1395},{"id":1396,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP2-Pool/sle-11-s390x/","distro_target":"sle-11-s390x","autorefresh":true,"installer_updates":false,"name":"SLE11-SMT-SP2-Pool","description":"SLE11-SMT-SP2-Pool for sle-11-s390x"},{"distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP2-Updates/sle-11-x86_64/","enabled":true,"id":1397,"description":"SLE11-SMT-SP2-Updates for sle-11-x86_64","installer_updates":false,"name":"SLE11-SMT-SP2-Updates"}],"product_class":"SLESMT","predecessor_ids":[],"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Subscription Management Tool 11 SP2","former_identifier":"sle-smt","release_type":null,"name":"SUSE Linux Enterprise Subscription Management Tool","offline_predecessor_ids":[],"version":"11.2","recommended":false,"release_stage":"released","id":1193,"identifier":"sle-smt","extensions":[],"friendly_version":"11 SP2"},{"version":"11","recommended":false,"former_identifier":"sle-smt-SP2-migration","release_type":null,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Subscription Management Tool 11 (Migration)","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Subscription Management Tool","friendly_version":"11","identifier":"sle-smt-SP2-migration","release_stage":"released","id":1194,"extensions":[],"free":true,"shortname":null,"description":null,"arch":null,"eula_url":"","online_predecessor_ids":[],"repositories":[{"description":"SLE11-SMT-SP2-Pool for sle-11-x86_64","installer_updates":false,"name":"SLE11-SMT-SP2-Pool","url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP2-Pool/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true,"id":1392,"enabled":true},{"installer_updates":false,"name":"SLE11-SMT-SP2-Pool","description":"SLE11-SMT-SP2-Pool for sle-11-i586","enabled":true,"id":1394,"distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP2-Pool/sle-11-i586/"},{"installer_updates":false,"name":"SLE11-SMT-SP2-Pool","description":"SLE11-SMT-SP2-Pool for sle-11-s390x","enabled":true,"id":1396,"distro_target":"sle-11-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP2-Pool/sle-11-s390x/"}],"product_class":"SLESMT","predecessor_ids":[],"product_type":"extension","cpe":null},{"online_predecessor_ids":[],"repositories":[{"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP3-Pool/sle-11-s390x/","distro_target":"sle-11-s390x","autorefresh":true,"id":1408,"enabled":true,"description":"SLE11-SMT-SP3-Pool for sle-11-s390x","installer_updates":false,"name":"SLE11-SMT-SP3-Pool"},{"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP3-Pool/sle-11-x86_64/","enabled":true,"id":1409,"description":"SLE11-SMT-SP3-Pool for sle-11-x86_64","name":"SLE11-SMT-SP3-Pool","installer_updates":false},{"description":"SLE11-SMT-SP3-Pool for sle-11-i586","name":"SLE11-SMT-SP3-Pool","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP3-Pool/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","id":1410,"enabled":true}],"product_class":"SLESMT","predecessor_ids":[],"cpe":null,"product_type":"extension","shortname":null,"description":null,"free":true,"arch":null,"eula_url":"","friendly_version":"11 SP2","release_stage":"released","identifier":"sle-smt-SP3-migration","id":1199,"extensions":[],"version":"11.2","recommended":false,"friendly_name":"SUSE Linux Enterprise Subscription Management Tool 11 SP2 (Migration)","migration_extra":false,"release_type":null,"former_identifier":"sle-smt-SP3-migration","name":"SUSE Linux Enterprise Subscription Management Tool","offline_predecessor_ids":[]},{"release_type":null,"former_identifier":"sle-11-WebYaST-1.3-migration","friendly_name":"SUSE WebYaST 1.2 (Migration)","migration_extra":false,"offline_predecessor_ids":[],"name":"SUSE WebYaST","version":"1.2","recommended":false,"release_stage":"released","identifier":"sle-11-WebYaST-1.3-migration","id":1207,"extensions":[],"friendly_version":"1.2","arch":null,"eula_url":"","free":true,"description":null,"shortname":null,"product_type":"extension","cpe":null,"online_predecessor_ids":[],"repositories":[{"description":"SLE11-SP2-WebYaST-1.3-Pool for sle-11-x86_64","name":"SLE11-SP2-WebYaST-1.3-Pool","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-WebYaST-1.3-Pool/sle-11-x86_64/","enabled":true,"id":1185},{"enabled":true,"id":1411,"distro_target":"sle-11-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-WebYaST-1.3-Pool/sle-11-s390x/","installer_updates":false,"name":"SLE11-SP2-WebYaST-1.3-Pool","description":"SLE11-SP2-WebYaST-1.3-Pool for sle-11-s390x"},{"enabled":true,"id":1414,"distro_target":"sle-11-ppc64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-WebYaST-1.3-Pool/sle-11-ppc64/","installer_updates":false,"name":"SLE11-SP2-WebYaST-1.3-Pool","description":"SLE11-SP2-WebYaST-1.3-Pool for sle-11-ppc64"},{"description":"SLE11-SP2-WebYaST-1.3-Pool for sle-11-ia64","installer_updates":false,"name":"SLE11-SP2-WebYaST-1.3-Pool","url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-WebYaST-1.3-Pool/sle-11-ia64/","distro_target":"sle-11-ia64","autorefresh":true,"id":1416,"enabled":true},{"id":1417,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-WebYaST-1.3-Pool/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","name":"SLE11-SP2-WebYaST-1.3-Pool","installer_updates":false,"description":"SLE11-SP2-WebYaST-1.3-Pool for sle-11-i586"}],"product_class":"WEBYAST","predecessor_ids":[]}],"id":753,"release_stage":"released","identifier":"SUSE_SLES","recommended":false,"version":"11.2","name":"SUSE Linux Enterprise Server","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Server 11 SP2 i386","release_type":null,"former_identifier":"SUSE_SLES"},{"predecessor_ids":[],"online_predecessor_ids":[],"repositories":[{"description":"SLES11-SP1-Pool for sle-11-s390x","name":"SLES11-SP1-Pool","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-s390x","url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-Pool/sle-11-s390x/","enabled":true,"id":687},{"description":"SLE11-SP1-Debuginfo-Updates for sle-11-s390x","name":"SLE11-SP1-Debuginfo-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-s390x","url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Updates/sle-11-s390x/","enabled":false,"id":688},{"name":"SLES11-Extras","installer_updates":false,"description":"SLES11-Extras for sle-11-s390x","enabled":false,"id":689,"autorefresh":true,"distro_target":"sle-11-s390x","url":"https://updates.suse.com/repo/$RCE/SLES11-Extras/sle-11-s390x/"},{"id":691,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-Updates/sle-11-s390x/","distro_target":"sle-11-s390x","autorefresh":true,"installer_updates":false,"name":"SLES11-SP1-Updates","description":"SLES11-SP1-Updates for sle-11-s390x"},{"autorefresh":true,"distro_target":"sle-11-s390x","url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Pool/sle-11-s390x/","enabled":false,"id":692,"description":"SLE11-SP1-Debuginfo-Pool for sle-11-s390x","name":"SLE11-SP1-Debuginfo-Pool","installer_updates":false},{"url":"https://updates.suse.com/repo/$RCE/SLE11-WebYaST-SP2-Updates/sle-11-s390x/","distro_target":"sle-11-s390x","autorefresh":true,"id":723,"enabled":false,"description":"SLE11-WebYaST-SP2-Updates for sle-11-s390x","installer_updates":false,"name":"SLE11-WebYaST-SP2-Updates"},{"description":"SLES11-SP2-Updates for sle-11-s390x","installer_updates":false,"name":"SLES11-SP2-Updates","url":"https://updates.suse.com/repo/$RCE/SLES11-SP2-Updates/sle-11-s390x/","distro_target":"sle-11-s390x","autorefresh":true,"id":724,"enabled":true},{"id":725,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-Debuginfo-Updates/sle-11-s390x/","autorefresh":true,"distro_target":"sle-11-s390x","name":"SLE11-SP2-Debuginfo-Updates","installer_updates":false,"description":"SLE11-SP2-Debuginfo-Updates for sle-11-s390x"},{"description":"SLES11-SP2-Core for sle-11-s390x","name":"SLES11-SP2-Core","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP2-Core/sle-11-s390x/","autorefresh":true,"distro_target":"sle-11-s390x","id":726,"enabled":true},{"enabled":false,"id":727,"distro_target":"sle-11-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-WebYaST-SP2-Pool/sle-11-s390x/","installer_updates":false,"name":"SLE11-WebYaST-SP2-Pool","description":"SLE11-WebYaST-SP2-Pool for sle-11-s390x"},{"installer_updates":false,"name":"SLE11-SP2-Debuginfo-Core","description":"SLE11-SP2-Debuginfo-Core for sle-11-s390x","id":728,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-Debuginfo-Core/sle-11-s390x/","distro_target":"sle-11-s390x","autorefresh":true},{"enabled":true,"id":734,"autorefresh":true,"distro_target":"sle-11-s390x","url":"https://updates.suse.com/repo/$RCE/SLES11-SP2-Extension-Store/sle-11-s390x/","name":"SLES11-SP2-Extension-Store","installer_updates":false,"description":"SLES11-SP2-Extension-Store for sle-11-s390x"}],"product_class":"SLES-Z","product_type":"base","cpe":"cpe:/o:suse:suse_sles:11:sp2","free":false,"description":null,"shortname":null,"eula_url":"","arch":"s390","friendly_version":"11 SP2","extensions":[{"product_class":"WEBYAST","online_predecessor_ids":[],"repositories":[{"description":"SLE11-SP1-WebYaST-1.2-Updates for sle-11-x86_64","installer_updates":false,"name":"SLE11-SP1-WebYaST-1.2-Updates","url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-WebYaST-1.2-Updates/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true,"id":839,"enabled":true},{"id":840,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-WebYaST-1.2-Pool/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","name":"SLE11-SP1-WebYaST-1.2-Pool","installer_updates":false,"description":"SLE11-SP1-WebYaST-1.2-Pool for sle-11-i586"},{"installer_updates":false,"name":"SLE11-SP1-WebYaST-1.2-Pool","description":"SLE11-SP1-WebYaST-1.2-Pool for sle-11-x86_64","id":841,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-WebYaST-1.2-Pool/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-WebYaST-1.2-Updates/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true,"id":842,"enabled":true,"description":"SLE11-SP1-WebYaST-1.2-Updates for sle-11-i586","installer_updates":false,"name":"SLE11-SP1-WebYaST-1.2-Updates"}],"predecessor_ids":[],"product_type":"extension","cpe":null,"free":true,"shortname":null,"description":null,"arch":null,"eula_url":"","friendly_version":"1.2","id":837,"release_stage":"released","identifier":"sle-11-WebYaST","extensions":[],"version":"1.2","recommended":false,"release_type":null,"former_identifier":"sle-11-WebYaST","migration_extra":false,"friendly_name":"SUSE WebYaST 1.2","offline_predecessor_ids":[],"name":"SUSE WebYaST"},{"version":"11.2","recommended":false,"release_type":null,"former_identifier":"sle-hae","friendly_name":"SUSE Linux Enterprise High Availability Extension 11 SP2 s390","migration_extra":false,"offline_predecessor_ids":[],"name":"SUSE Linux Enterprise High Availability Extension","friendly_version":"11 SP2","release_stage":"released","identifier":"sle-hae","id":1085,"extensions":[],"free":false,"shortname":null,"description":null,"arch":"s390","eula_url":"","repositories":[{"description":"SLE11-HAE-SP2-Pool for sle-11-s390x","name":"SLE11-HAE-SP2-Pool","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-s390x","url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP2-Pool/sle-11-s390x/","enabled":true,"id":1098},{"enabled":true,"id":1099,"distro_target":"sle-11-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP2-Updates/sle-11-s390x/","installer_updates":false,"name":"SLE11-HAE-SP2-Updates","description":"SLE11-HAE-SP2-Updates for sle-11-s390x"}],"online_predecessor_ids":[],"product_class":"SLE-HAE-Z","predecessor_ids":[],"product_type":"extension","cpe":null},{"extensions":[],"id":1160,"release_stage":"released","identifier":"sle-sdk","friendly_version":"11 SP2","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Software Development Kit","release_type":null,"former_identifier":"sle-sdk","migration_extra":false,"friendly_name":"SUSE Linux Enterprise Software Development Kit 11 SP2","recommended":false,"version":"11.2","product_type":"extension","cpe":null,"predecessor_ids":[],"online_predecessor_ids":[],"product_class":"SLE-SDK","repositories":[{"id":1257,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Updates/sle-11-ia64/","autorefresh":true,"distro_target":"sle-11-ia64","name":"SLE11-SDK-SP1-Updates","installer_updates":false,"description":"SLE11-SDK-SP1-Updates for sle-11-ia64"},{"distro_target":"sle-11-ia64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-ia64/","enabled":true,"id":1258,"description":"SLE11-SDK-SP1-Pool for sle-11-ia64","installer_updates":false,"name":"SLE11-SDK-SP1-Pool"},{"description":"SLE11-SDK-SP1-Pool for sle-11-s390x","name":"SLE11-SDK-SP1-Pool","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-s390x/","autorefresh":true,"distro_target":"sle-11-s390x","id":1259,"enabled":true},{"description":"SLE11-SDK-SP1-Updates for sle-11-ppc64","installer_updates":false,"name":"SLE11-SDK-SP1-Updates","distro_target":"sle-11-ppc64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Updates/sle-11-ppc64/","enabled":true,"id":1260},{"installer_updates":false,"name":"SLE11-SDK-SP1-Pool","description":"SLE11-SDK-SP1-Pool for sle-11-ppc64","enabled":true,"id":1261,"distro_target":"sle-11-ppc64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-ppc64/"},{"description":"SLE11-SDK-SP1-Updates for sle-11-i586","name":"SLE11-SDK-SP1-Updates","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Updates/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","id":1262,"enabled":true},{"id":1263,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true,"installer_updates":false,"name":"SLE11-SDK-SP1-Pool","description":"SLE11-SDK-SP1-Pool for sle-11-i586"},{"id":1264,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true,"installer_updates":false,"name":"SLE11-SDK-SP1-Pool","description":"SLE11-SDK-SP1-Pool for sle-11-x86_64"},{"description":"SLE11-SDK-SP1-Updates for sle-11-x86_64","installer_updates":false,"name":"SLE11-SDK-SP1-Updates","distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Updates/sle-11-x86_64/","enabled":true,"id":1265},{"description":"SLE11-SDK-SP1-Updates for sle-11-s390x","name":"SLE11-SDK-SP1-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-s390x","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Updates/sle-11-s390x/","enabled":true,"id":1266},{"description":"SLE11-SDK-SP2-Core for sle-11-ia64","name":"SLE11-SDK-SP2-Core","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-ia64/","autorefresh":true,"distro_target":"sle-11-ia64","id":1267,"enabled":true},{"description":"SLE11-SDK-SP2-Core for sle-11-s390x","installer_updates":false,"name":"SLE11-SDK-SP2-Core","distro_target":"sle-11-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-s390x/","enabled":true,"id":1268},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-s390x/","autorefresh":true,"distro_target":"sle-11-s390x","id":1269,"enabled":true,"description":"SLE11-SDK-SP2-Updates for sle-11-s390x","name":"SLE11-SDK-SP2-Updates","installer_updates":false},{"name":"SLE11-SDK-SP2-Updates","installer_updates":false,"description":"SLE11-SDK-SP2-Updates for sle-11-ppc64","id":1270,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-ppc64/","autorefresh":true,"distro_target":"sle-11-ppc64"},{"distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-i586/","enabled":true,"id":1271,"description":"SLE11-SDK-SP2-Updates for sle-11-i586","installer_updates":false,"name":"SLE11-SDK-SP2-Updates"},{"description":"SLE11-SDK-SP2-Updates for sle-11-ia64","name":"SLE11-SDK-SP2-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-ia64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-ia64/","enabled":true,"id":1272},{"name":"SLE11-SDK-SP2-Core","installer_updates":false,"description":"SLE11-SDK-SP2-Core for sle-11-ppc64","enabled":true,"id":1273,"autorefresh":true,"distro_target":"sle-11-ppc64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-ppc64/"},{"name":"SLE11-SDK-SP2-Core","installer_updates":false,"description":"SLE11-SDK-SP2-Core for sle-11-i586","enabled":true,"id":1274,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-i586/"},{"id":1275,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true,"installer_updates":false,"name":"SLE11-SDK-SP2-Core","description":"SLE11-SDK-SP2-Core for sle-11-x86_64"},{"description":"SLE11-SDK-SP2-Updates for sle-11-x86_64","name":"SLE11-SDK-SP2-Updates","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64","id":1276,"enabled":true}],"eula_url":"","arch":null,"free":true,"description":null,"shortname":null},{"release_type":null,"former_identifier":"sle-sdk-SP2-migration","migration_extra":false,"friendly_name":"SUSE Linux Enterprise Software Development Kit 11 SP1 (Migration)","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Software Development Kit","version":"11.1","recommended":false,"release_stage":"released","identifier":"sle-sdk-SP2-migration","id":1163,"extensions":[],"friendly_version":"11 SP1","arch":null,"eula_url":"","free":true,"description":null,"shortname":null,"product_type":"extension","cpe":null,"online_predecessor_ids":[],"repositories":[{"installer_updates":false,"name":"SLE11-SDK-SP2-Core","description":"SLE11-SDK-SP2-Core for sle-11-ia64","enabled":true,"id":1267,"distro_target":"sle-11-ia64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-ia64/"},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-s390x/","autorefresh":true,"distro_target":"sle-11-s390x","id":1268,"enabled":true,"description":"SLE11-SDK-SP2-Core for sle-11-s390x","name":"SLE11-SDK-SP2-Core","installer_updates":false},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-s390x/","distro_target":"sle-11-s390x","autorefresh":true,"id":1269,"enabled":true,"description":"SLE11-SDK-SP2-Updates for sle-11-s390x","installer_updates":false,"name":"SLE11-SDK-SP2-Updates"},{"distro_target":"sle-11-ppc64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-ppc64/","enabled":true,"id":1270,"description":"SLE11-SDK-SP2-Updates for sle-11-ppc64","installer_updates":false,"name":"SLE11-SDK-SP2-Updates"},{"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-i586/","enabled":true,"id":1271,"description":"SLE11-SDK-SP2-Updates for sle-11-i586","name":"SLE11-SDK-SP2-Updates","installer_updates":false},{"enabled":true,"id":1272,"distro_target":"sle-11-ia64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-ia64/","installer_updates":false,"name":"SLE11-SDK-SP2-Updates","description":"SLE11-SDK-SP2-Updates for sle-11-ia64"},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-ppc64/","distro_target":"sle-11-ppc64","autorefresh":true,"id":1273,"enabled":true,"description":"SLE11-SDK-SP2-Core for sle-11-ppc64","installer_updates":false,"name":"SLE11-SDK-SP2-Core"},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","id":1274,"enabled":true,"description":"SLE11-SDK-SP2-Core for sle-11-i586","name":"SLE11-SDK-SP2-Core","installer_updates":false},{"enabled":true,"id":1275,"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-x86_64/","name":"SLE11-SDK-SP2-Core","installer_updates":false,"description":"SLE11-SDK-SP2-Core for sle-11-x86_64"},{"name":"SLE11-SDK-SP2-Updates","installer_updates":false,"description":"SLE11-SDK-SP2-Updates for sle-11-x86_64","id":1276,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64"}],"product_class":"SLE-SDK","predecessor_ids":[]},{"identifier":"sle-sdk-SP3-migration","release_stage":"released","id":1164,"extensions":[],"friendly_version":"11 SP2","release_type":null,"former_identifier":"sle-sdk-SP3-migration","friendly_name":"SUSE Linux Enterprise Software Development Kit 11 SP2 (Migration)","migration_extra":false,"offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Software Development Kit","version":"11.2","recommended":false,"product_type":"extension","cpe":null,"online_predecessor_ids":[],"repositories":[{"description":"SLE11-SDK-SP3-Pool for sle-11-i586","name":"SLE11-SDK-SP3-Pool","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Pool/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","id":1277,"enabled":true},{"autorefresh":true,"distro_target":"sle-11-ia64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Pool/sle-11-ia64/","enabled":true,"id":1278,"description":"SLE11-SDK-SP3-Pool for sle-11-ia64","name":"SLE11-SDK-SP3-Pool","installer_updates":false},{"enabled":true,"id":1279,"distro_target":"sle-11-ppc64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Updates/sle-11-ppc64/","installer_updates":false,"name":"SLE11-SDK-SP3-Updates","description":"SLE11-SDK-SP3-Updates for sle-11-ppc64"},{"installer_updates":false,"name":"SLE11-SDK-SP3-Updates","description":"SLE11-SDK-SP3-Updates for sle-11-ia64","enabled":true,"id":1280,"distro_target":"sle-11-ia64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Updates/sle-11-ia64/"},{"description":"SLE11-SDK-SP3-Pool for sle-11-x86_64","name":"SLE11-SDK-SP3-Pool","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Pool/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64","id":1281,"enabled":true},{"description":"SLE11-SDK-SP3-Updates for sle-11-s390x","name":"SLE11-SDK-SP3-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-s390x","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Updates/sle-11-s390x/","enabled":true,"id":1282},{"name":"SLE11-SDK-SP3-Pool","installer_updates":false,"description":"SLE11-SDK-SP3-Pool for sle-11-ppc64","enabled":true,"id":1283,"autorefresh":true,"distro_target":"sle-11-ppc64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Pool/sle-11-ppc64/"},{"distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Updates/sle-11-x86_64/","enabled":true,"id":1284,"description":"SLE11-SDK-SP3-Updates for sle-11-x86_64","installer_updates":false,"name":"SLE11-SDK-SP3-Updates"},{"installer_updates":false,"name":"SLE11-SDK-SP3-Updates","description":"SLE11-SDK-SP3-Updates for sle-11-i586","id":1285,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Updates/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true},{"installer_updates":false,"name":"SLE11-SDK-SP3-Pool","description":"SLE11-SDK-SP3-Pool for sle-11-s390x","id":1286,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Pool/sle-11-s390x/","distro_target":"sle-11-s390x","autorefresh":true}],"product_class":"SLE-SDK","predecessor_ids":[],"arch":null,"eula_url":"","free":true,"shortname":null,"description":null},{"offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Subscription Management Tool","release_type":null,"former_identifier":"sle-smt","migration_extra":false,"friendly_name":"SUSE Linux Enterprise Subscription Management Tool 11 SP2","recommended":false,"version":"11.2","extensions":[],"identifier":"sle-smt","release_stage":"released","id":1193,"friendly_version":"11 SP2","eula_url":"","arch":null,"free":true,"shortname":null,"description":null,"product_type":"extension","cpe":null,"predecessor_ids":[],"repositories":[{"id":1392,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP2-Pool/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64","name":"SLE11-SMT-SP2-Pool","installer_updates":false,"description":"SLE11-SMT-SP2-Pool for sle-11-x86_64"},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP2-Updates/sle-11-s390x/","distro_target":"sle-11-s390x","autorefresh":true,"id":1393,"enabled":true,"description":"SLE11-SMT-SP2-Updates for sle-11-s390x","installer_updates":false,"name":"SLE11-SMT-SP2-Updates"},{"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP2-Pool/sle-11-i586/","enabled":true,"id":1394,"description":"SLE11-SMT-SP2-Pool for sle-11-i586","name":"SLE11-SMT-SP2-Pool","installer_updates":false},{"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP2-Updates/sle-11-i586/","enabled":true,"id":1395,"description":"SLE11-SMT-SP2-Updates for sle-11-i586","name":"SLE11-SMT-SP2-Updates","installer_updates":false},{"description":"SLE11-SMT-SP2-Pool for sle-11-s390x","installer_updates":false,"name":"SLE11-SMT-SP2-Pool","distro_target":"sle-11-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP2-Pool/sle-11-s390x/","enabled":true,"id":1396},{"name":"SLE11-SMT-SP2-Updates","installer_updates":false,"description":"SLE11-SMT-SP2-Updates for sle-11-x86_64","id":1397,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP2-Updates/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64"}],"online_predecessor_ids":[],"product_class":"SLESMT"},{"friendly_version":"11","extensions":[],"release_stage":"released","id":1194,"identifier":"sle-smt-SP2-migration","recommended":false,"version":"11","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Subscription Management Tool","release_type":null,"former_identifier":"sle-smt-SP2-migration","migration_extra":false,"friendly_name":"SUSE Linux Enterprise Subscription Management Tool 11 (Migration)","predecessor_ids":[],"repositories":[{"distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP2-Pool/sle-11-x86_64/","enabled":true,"id":1392,"description":"SLE11-SMT-SP2-Pool for sle-11-x86_64","installer_updates":false,"name":"SLE11-SMT-SP2-Pool"},{"description":"SLE11-SMT-SP2-Pool for sle-11-i586","name":"SLE11-SMT-SP2-Pool","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP2-Pool/sle-11-i586/","enabled":true,"id":1394},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP2-Pool/sle-11-s390x/","distro_target":"sle-11-s390x","autorefresh":true,"id":1396,"enabled":true,"description":"SLE11-SMT-SP2-Pool for sle-11-s390x","installer_updates":false,"name":"SLE11-SMT-SP2-Pool"}],"online_predecessor_ids":[],"product_class":"SLESMT","product_type":"extension","cpe":null,"free":true,"description":null,"shortname":null,"eula_url":"","arch":null},{"friendly_version":"11 SP2","identifier":"sle-smt-SP3-migration","release_stage":"released","id":1199,"extensions":[],"version":"11.2","recommended":false,"former_identifier":"sle-smt-SP3-migration","release_type":null,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Subscription Management Tool 11 SP2 (Migration)","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Subscription Management Tool","online_predecessor_ids":[],"product_class":"SLESMT","repositories":[{"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP3-Pool/sle-11-s390x/","distro_target":"sle-11-s390x","autorefresh":true,"id":1408,"enabled":true,"description":"SLE11-SMT-SP3-Pool for sle-11-s390x","installer_updates":false,"name":"SLE11-SMT-SP3-Pool"},{"name":"SLE11-SMT-SP3-Pool","installer_updates":false,"description":"SLE11-SMT-SP3-Pool for sle-11-x86_64","id":1409,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP3-Pool/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64"},{"installer_updates":false,"name":"SLE11-SMT-SP3-Pool","description":"SLE11-SMT-SP3-Pool for sle-11-i586","id":1410,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP3-Pool/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true}],"predecessor_ids":[],"product_type":"extension","cpe":null,"free":true,"description":null,"shortname":null,"arch":null,"eula_url":""},{"product_type":"extension","cpe":null,"predecessor_ids":[],"online_predecessor_ids":[],"product_class":"WEBYAST","repositories":[{"url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-WebYaST-1.3-Pool/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true,"id":1185,"enabled":true,"description":"SLE11-SP2-WebYaST-1.3-Pool for sle-11-x86_64","installer_updates":false,"name":"SLE11-SP2-WebYaST-1.3-Pool"},{"id":1411,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-WebYaST-1.3-Pool/sle-11-s390x/","autorefresh":true,"distro_target":"sle-11-s390x","name":"SLE11-SP2-WebYaST-1.3-Pool","installer_updates":false,"description":"SLE11-SP2-WebYaST-1.3-Pool for sle-11-s390x"},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-WebYaST-1.3-Pool/sle-11-ppc64/","distro_target":"sle-11-ppc64","autorefresh":true,"id":1414,"enabled":true,"description":"SLE11-SP2-WebYaST-1.3-Pool for sle-11-ppc64","installer_updates":false,"name":"SLE11-SP2-WebYaST-1.3-Pool"},{"name":"SLE11-SP2-WebYaST-1.3-Pool","installer_updates":false,"description":"SLE11-SP2-WebYaST-1.3-Pool for sle-11-ia64","id":1416,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-WebYaST-1.3-Pool/sle-11-ia64/","autorefresh":true,"distro_target":"sle-11-ia64"},{"description":"SLE11-SP2-WebYaST-1.3-Pool for sle-11-i586","name":"SLE11-SP2-WebYaST-1.3-Pool","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-WebYaST-1.3-Pool/sle-11-i586/","enabled":true,"id":1417}],"eula_url":"","arch":null,"free":true,"shortname":null,"description":null,"extensions":[],"id":1207,"release_stage":"released","identifier":"sle-11-WebYaST-1.3-migration","friendly_version":"1.2","offline_predecessor_ids":[],"name":"SUSE WebYaST","former_identifier":"sle-11-WebYaST-1.3-migration","release_type":null,"migration_extra":false,"friendly_name":"SUSE WebYaST 1.2 (Migration)","recommended":false,"version":"1.2"}],"release_stage":"released","identifier":"SUSE_SLES","id":754,"recommended":false,"version":"11.2","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Server","former_identifier":"SUSE_SLES","release_type":null,"friendly_name":"SUSE Linux Enterprise Server 11 SP2 s390","migration_extra":false},{"extensions":[{"former_identifier":"sle-11-WebYaST","release_type":null,"migration_extra":false,"friendly_name":"SUSE WebYaST 1.2","offline_predecessor_ids":[],"name":"SUSE WebYaST","version":"1.2","recommended":false,"release_stage":"released","id":837,"identifier":"sle-11-WebYaST","extensions":[],"friendly_version":"1.2","arch":null,"eula_url":"","free":true,"shortname":null,"description":null,"product_type":"extension","cpe":null,"online_predecessor_ids":[],"product_class":"WEBYAST","repositories":[{"enabled":true,"id":839,"distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-WebYaST-1.2-Updates/sle-11-x86_64/","installer_updates":false,"name":"SLE11-SP1-WebYaST-1.2-Updates","description":"SLE11-SP1-WebYaST-1.2-Updates for sle-11-x86_64"},{"enabled":false,"id":840,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-WebYaST-1.2-Pool/sle-11-i586/","name":"SLE11-SP1-WebYaST-1.2-Pool","installer_updates":false,"description":"SLE11-SP1-WebYaST-1.2-Pool for sle-11-i586"},{"installer_updates":false,"name":"SLE11-SP1-WebYaST-1.2-Pool","description":"SLE11-SP1-WebYaST-1.2-Pool for sle-11-x86_64","enabled":false,"id":841,"distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-WebYaST-1.2-Pool/sle-11-x86_64/"},{"distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-WebYaST-1.2-Updates/sle-11-i586/","enabled":true,"id":842,"description":"SLE11-SP1-WebYaST-1.2-Updates for sle-11-i586","installer_updates":false,"name":"SLE11-SP1-WebYaST-1.2-Updates"}],"predecessor_ids":[]},{"friendly_version":"11 SP2","extensions":[],"release_stage":"released","id":1082,"identifier":"sle-hae","recommended":false,"version":"11.2","name":"SUSE Linux Enterprise High Availability Extension","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"SUSE Linux Enterprise High Availability Extension 11 SP2 s390x","release_type":null,"former_identifier":"sle-hae","predecessor_ids":[],"online_predecessor_ids":[],"repositories":[{"enabled":true,"id":1098,"autorefresh":true,"distro_target":"sle-11-s390x","url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP2-Pool/sle-11-s390x/","name":"SLE11-HAE-SP2-Pool","installer_updates":false,"description":"SLE11-HAE-SP2-Pool for sle-11-s390x"},{"autorefresh":true,"distro_target":"sle-11-s390x","url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP2-Updates/sle-11-s390x/","enabled":true,"id":1099,"description":"SLE11-HAE-SP2-Updates for sle-11-s390x","name":"SLE11-HAE-SP2-Updates","installer_updates":false}],"product_class":"SLE-HAE-Z","cpe":null,"product_type":"extension","description":null,"shortname":null,"free":false,"eula_url":"","arch":"s390x"},{"friendly_version":"11 SP2","release_stage":"released","id":1088,"identifier":"sle-hae-SP3-migration","extensions":[],"version":"11.2","recommended":false,"release_type":null,"former_identifier":"sle-hae-SP3-migration","migration_extra":false,"friendly_name":"SUSE Linux Enterprise High Availability Extension 11 SP2 s390x (Migration)","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise High Availability Extension","online_predecessor_ids":[],"product_class":"SLE-HAE-Z","repositories":[{"autorefresh":true,"distro_target":"sle-11-s390x","url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP3-Pool/sle-11-s390x/","enabled":true,"id":1096,"description":"SLE11-HAE-SP3-Pool for sle-11-s390x","name":"SLE11-HAE-SP3-Pool","installer_updates":false},{"description":"SLE11-HAE-SP3-Updates for sle-11-s390x","name":"SLE11-HAE-SP3-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-s390x","url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP3-Updates/sle-11-s390x/","enabled":true,"id":1097}],"predecessor_ids":[],"product_type":"extension","cpe":null,"free":false,"shortname":null,"description":null,"arch":"s390x","eula_url":""},{"arch":null,"eula_url":"","free":true,"description":null,"shortname":null,"product_type":"extension","cpe":null,"product_class":"SLE-SDK","online_predecessor_ids":[],"repositories":[{"description":"SLE11-SDK-SP1-Updates for sle-11-ia64","name":"SLE11-SDK-SP1-Updates","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Updates/sle-11-ia64/","autorefresh":true,"distro_target":"sle-11-ia64","id":1257,"enabled":true},{"id":1258,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-ia64/","distro_target":"sle-11-ia64","autorefresh":true,"installer_updates":false,"name":"SLE11-SDK-SP1-Pool","description":"SLE11-SDK-SP1-Pool for sle-11-ia64"},{"description":"SLE11-SDK-SP1-Pool for sle-11-s390x","name":"SLE11-SDK-SP1-Pool","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-s390x","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-s390x/","enabled":true,"id":1259},{"name":"SLE11-SDK-SP1-Updates","installer_updates":false,"description":"SLE11-SDK-SP1-Updates for sle-11-ppc64","id":1260,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Updates/sle-11-ppc64/","autorefresh":true,"distro_target":"sle-11-ppc64"},{"description":"SLE11-SDK-SP1-Pool for sle-11-ppc64","installer_updates":false,"name":"SLE11-SDK-SP1-Pool","distro_target":"sle-11-ppc64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-ppc64/","enabled":true,"id":1261},{"description":"SLE11-SDK-SP1-Updates for sle-11-i586","installer_updates":false,"name":"SLE11-SDK-SP1-Updates","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Updates/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true,"id":1262,"enabled":true},{"description":"SLE11-SDK-SP1-Pool for sle-11-i586","name":"SLE11-SDK-SP1-Pool","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-i586/","enabled":true,"id":1263},{"description":"SLE11-SDK-SP1-Pool for sle-11-x86_64","installer_updates":false,"name":"SLE11-SDK-SP1-Pool","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true,"id":1264,"enabled":true},{"description":"SLE11-SDK-SP1-Updates for sle-11-x86_64","name":"SLE11-SDK-SP1-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Updates/sle-11-x86_64/","enabled":true,"id":1265},{"enabled":true,"id":1266,"autorefresh":true,"distro_target":"sle-11-s390x","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Updates/sle-11-s390x/","name":"SLE11-SDK-SP1-Updates","installer_updates":false,"description":"SLE11-SDK-SP1-Updates for sle-11-s390x"},{"name":"SLE11-SDK-SP2-Core","installer_updates":false,"description":"SLE11-SDK-SP2-Core for sle-11-ia64","enabled":true,"id":1267,"autorefresh":true,"distro_target":"sle-11-ia64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-ia64/"},{"description":"SLE11-SDK-SP2-Core for sle-11-s390x","installer_updates":false,"name":"SLE11-SDK-SP2-Core","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-s390x/","distro_target":"sle-11-s390x","autorefresh":true,"id":1268,"enabled":true},{"installer_updates":false,"name":"SLE11-SDK-SP2-Updates","description":"SLE11-SDK-SP2-Updates for sle-11-s390x","id":1269,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-s390x/","distro_target":"sle-11-s390x","autorefresh":true},{"installer_updates":false,"name":"SLE11-SDK-SP2-Updates","description":"SLE11-SDK-SP2-Updates for sle-11-ppc64","enabled":true,"id":1270,"distro_target":"sle-11-ppc64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-ppc64/"},{"id":1271,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","name":"SLE11-SDK-SP2-Updates","installer_updates":false,"description":"SLE11-SDK-SP2-Updates for sle-11-i586"},{"description":"SLE11-SDK-SP2-Updates for sle-11-ia64","installer_updates":false,"name":"SLE11-SDK-SP2-Updates","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-ia64/","distro_target":"sle-11-ia64","autorefresh":true,"id":1272,"enabled":true},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-ppc64/","autorefresh":true,"distro_target":"sle-11-ppc64","id":1273,"enabled":true,"description":"SLE11-SDK-SP2-Core for sle-11-ppc64","name":"SLE11-SDK-SP2-Core","installer_updates":false},{"name":"SLE11-SDK-SP2-Core","installer_updates":false,"description":"SLE11-SDK-SP2-Core for sle-11-i586","enabled":true,"id":1274,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-i586/"},{"distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-x86_64/","enabled":true,"id":1275,"description":"SLE11-SDK-SP2-Core for sle-11-x86_64","installer_updates":false,"name":"SLE11-SDK-SP2-Core"},{"id":1276,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true,"installer_updates":false,"name":"SLE11-SDK-SP2-Updates","description":"SLE11-SDK-SP2-Updates for sle-11-x86_64"}],"predecessor_ids":[],"former_identifier":"sle-sdk","release_type":null,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Software Development Kit 11 SP2","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Software Development Kit","version":"11.2","recommended":false,"release_stage":"released","identifier":"sle-sdk","id":1160,"extensions":[],"friendly_version":"11 SP2"},{"name":"SUSE Linux Enterprise Software Development Kit","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Software Development Kit 11 SP1 (Migration)","former_identifier":"sle-sdk-SP2-migration","release_type":null,"recommended":false,"version":"11.1","extensions":[],"release_stage":"released","id":1163,"identifier":"sle-sdk-SP2-migration","friendly_version":"11 SP1","eula_url":"","arch":null,"description":null,"shortname":null,"free":true,"cpe":null,"product_type":"extension","predecessor_ids":[],"online_predecessor_ids":[],"product_class":"SLE-SDK","repositories":[{"id":1267,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-ia64/","autorefresh":true,"distro_target":"sle-11-ia64","name":"SLE11-SDK-SP2-Core","installer_updates":false,"description":"SLE11-SDK-SP2-Core for sle-11-ia64"},{"name":"SLE11-SDK-SP2-Core","installer_updates":false,"description":"SLE11-SDK-SP2-Core for sle-11-s390x","id":1268,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-s390x/","autorefresh":true,"distro_target":"sle-11-s390x"},{"enabled":true,"id":1269,"autorefresh":true,"distro_target":"sle-11-s390x","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-s390x/","name":"SLE11-SDK-SP2-Updates","installer_updates":false,"description":"SLE11-SDK-SP2-Updates for sle-11-s390x"},{"enabled":true,"id":1270,"autorefresh":true,"distro_target":"sle-11-ppc64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-ppc64/","name":"SLE11-SDK-SP2-Updates","installer_updates":false,"description":"SLE11-SDK-SP2-Updates for sle-11-ppc64"},{"name":"SLE11-SDK-SP2-Updates","installer_updates":false,"description":"SLE11-SDK-SP2-Updates for sle-11-i586","id":1271,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586"},{"id":1272,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-ia64/","autorefresh":true,"distro_target":"sle-11-ia64","name":"SLE11-SDK-SP2-Updates","installer_updates":false,"description":"SLE11-SDK-SP2-Updates for sle-11-ia64"},{"installer_updates":false,"name":"SLE11-SDK-SP2-Core","description":"SLE11-SDK-SP2-Core for sle-11-ppc64","enabled":true,"id":1273,"distro_target":"sle-11-ppc64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-ppc64/"},{"installer_updates":false,"name":"SLE11-SDK-SP2-Core","description":"SLE11-SDK-SP2-Core for sle-11-i586","enabled":true,"id":1274,"distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-i586/"},{"description":"SLE11-SDK-SP2-Core for sle-11-x86_64","installer_updates":false,"name":"SLE11-SDK-SP2-Core","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true,"id":1275,"enabled":true},{"description":"SLE11-SDK-SP2-Updates for sle-11-x86_64","name":"SLE11-SDK-SP2-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-x86_64/","enabled":true,"id":1276}]},{"arch":null,"eula_url":"","free":true,"description":null,"shortname":null,"product_type":"extension","cpe":null,"online_predecessor_ids":[],"product_class":"SLE-SDK","repositories":[{"installer_updates":false,"name":"SLE11-SDK-SP3-Pool","description":"SLE11-SDK-SP3-Pool for sle-11-i586","id":1277,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Pool/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Pool/sle-11-ia64/","autorefresh":true,"distro_target":"sle-11-ia64","id":1278,"enabled":true,"description":"SLE11-SDK-SP3-Pool for sle-11-ia64","name":"SLE11-SDK-SP3-Pool","installer_updates":false},{"enabled":true,"id":1279,"distro_target":"sle-11-ppc64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Updates/sle-11-ppc64/","installer_updates":false,"name":"SLE11-SDK-SP3-Updates","description":"SLE11-SDK-SP3-Updates for sle-11-ppc64"},{"description":"SLE11-SDK-SP3-Updates for sle-11-ia64","installer_updates":false,"name":"SLE11-SDK-SP3-Updates","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Updates/sle-11-ia64/","distro_target":"sle-11-ia64","autorefresh":true,"id":1280,"enabled":true},{"installer_updates":false,"name":"SLE11-SDK-SP3-Pool","description":"SLE11-SDK-SP3-Pool for sle-11-x86_64","enabled":true,"id":1281,"distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Pool/sle-11-x86_64/"},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Updates/sle-11-s390x/","distro_target":"sle-11-s390x","autorefresh":true,"id":1282,"enabled":true,"description":"SLE11-SDK-SP3-Updates for sle-11-s390x","installer_updates":false,"name":"SLE11-SDK-SP3-Updates"},{"description":"SLE11-SDK-SP3-Pool for sle-11-ppc64","name":"SLE11-SDK-SP3-Pool","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-ppc64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Pool/sle-11-ppc64/","enabled":true,"id":1283},{"description":"SLE11-SDK-SP3-Updates for sle-11-x86_64","installer_updates":false,"name":"SLE11-SDK-SP3-Updates","distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Updates/sle-11-x86_64/","enabled":true,"id":1284},{"id":1285,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Updates/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","name":"SLE11-SDK-SP3-Updates","installer_updates":false,"description":"SLE11-SDK-SP3-Updates for sle-11-i586"},{"autorefresh":true,"distro_target":"sle-11-s390x","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Pool/sle-11-s390x/","enabled":true,"id":1286,"description":"SLE11-SDK-SP3-Pool for sle-11-s390x","name":"SLE11-SDK-SP3-Pool","installer_updates":false}],"predecessor_ids":[],"release_type":null,"former_identifier":"sle-sdk-SP3-migration","friendly_name":"SUSE Linux Enterprise Software Development Kit 11 SP2 (Migration)","migration_extra":false,"offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Software Development Kit","version":"11.2","recommended":false,"release_stage":"released","identifier":"sle-sdk-SP3-migration","id":1164,"extensions":[],"friendly_version":"11 SP2"},{"predecessor_ids":[],"online_predecessor_ids":[],"repositories":[{"enabled":true,"id":1392,"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP2-Pool/sle-11-x86_64/","name":"SLE11-SMT-SP2-Pool","installer_updates":false,"description":"SLE11-SMT-SP2-Pool for sle-11-x86_64"},{"description":"SLE11-SMT-SP2-Updates for sle-11-s390x","name":"SLE11-SMT-SP2-Updates","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP2-Updates/sle-11-s390x/","autorefresh":true,"distro_target":"sle-11-s390x","id":1393,"enabled":true},{"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP2-Pool/sle-11-i586/","enabled":true,"id":1394,"description":"SLE11-SMT-SP2-Pool for sle-11-i586","name":"SLE11-SMT-SP2-Pool","installer_updates":false},{"enabled":true,"id":1395,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP2-Updates/sle-11-i586/","name":"SLE11-SMT-SP2-Updates","installer_updates":false,"description":"SLE11-SMT-SP2-Updates for sle-11-i586"},{"name":"SLE11-SMT-SP2-Pool","installer_updates":false,"description":"SLE11-SMT-SP2-Pool for sle-11-s390x","enabled":true,"id":1396,"autorefresh":true,"distro_target":"sle-11-s390x","url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP2-Pool/sle-11-s390x/"},{"description":"SLE11-SMT-SP2-Updates for sle-11-x86_64","installer_updates":false,"name":"SLE11-SMT-SP2-Updates","distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP2-Updates/sle-11-x86_64/","enabled":true,"id":1397}],"product_class":"SLESMT","cpe":null,"product_type":"extension","shortname":null,"description":null,"free":true,"eula_url":"","arch":null,"friendly_version":"11 SP2","extensions":[],"id":1193,"release_stage":"released","identifier":"sle-smt","recommended":false,"version":"11.2","name":"SUSE Linux Enterprise Subscription Management Tool","offline_predecessor_ids":[],"friendly_name":"SUSE Linux Enterprise Subscription Management Tool 11 SP2","migration_extra":false,"release_type":null,"former_identifier":"sle-smt"},{"former_identifier":"sle-smt-SP2-migration","release_type":null,"friendly_name":"SUSE Linux Enterprise Subscription Management Tool 11 (Migration)","migration_extra":false,"offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Subscription Management Tool","version":"11","recommended":false,"identifier":"sle-smt-SP2-migration","release_stage":"released","id":1194,"extensions":[],"friendly_version":"11","arch":null,"eula_url":"","free":true,"shortname":null,"description":null,"product_type":"extension","cpe":null,"online_predecessor_ids":[],"product_class":"SLESMT","repositories":[{"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP2-Pool/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64","id":1392,"enabled":true,"description":"SLE11-SMT-SP2-Pool for sle-11-x86_64","name":"SLE11-SMT-SP2-Pool","installer_updates":false},{"description":"SLE11-SMT-SP2-Pool for sle-11-i586","installer_updates":false,"name":"SLE11-SMT-SP2-Pool","url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP2-Pool/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true,"id":1394,"enabled":true},{"description":"SLE11-SMT-SP2-Pool for sle-11-s390x","name":"SLE11-SMT-SP2-Pool","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP2-Pool/sle-11-s390x/","autorefresh":true,"distro_target":"sle-11-s390x","id":1396,"enabled":true}],"predecessor_ids":[]},{"cpe":null,"product_type":"extension","predecessor_ids":[],"product_class":"SLESMT","online_predecessor_ids":[],"repositories":[{"id":1408,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP3-Pool/sle-11-s390x/","distro_target":"sle-11-s390x","autorefresh":true,"installer_updates":false,"name":"SLE11-SMT-SP3-Pool","description":"SLE11-SMT-SP3-Pool for sle-11-s390x"},{"description":"SLE11-SMT-SP3-Pool for sle-11-x86_64","installer_updates":false,"name":"SLE11-SMT-SP3-Pool","url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP3-Pool/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true,"id":1409,"enabled":true},{"description":"SLE11-SMT-SP3-Pool for sle-11-i586","installer_updates":false,"name":"SLE11-SMT-SP3-Pool","distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP3-Pool/sle-11-i586/","enabled":true,"id":1410}],"eula_url":"","arch":null,"description":null,"shortname":null,"free":true,"extensions":[],"release_stage":"released","id":1199,"identifier":"sle-smt-SP3-migration","friendly_version":"11 SP2","name":"SUSE Linux Enterprise Subscription Management Tool","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Subscription Management Tool 11 SP2 (Migration)","former_identifier":"sle-smt-SP3-migration","release_type":null,"recommended":false,"version":"11.2"},{"predecessor_ids":[],"online_predecessor_ids":[],"product_class":"WEBYAST","repositories":[{"installer_updates":false,"name":"SLE11-SP2-WebYaST-1.3-Pool","description":"SLE11-SP2-WebYaST-1.3-Pool for sle-11-x86_64","enabled":true,"id":1185,"distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-WebYaST-1.3-Pool/sle-11-x86_64/"},{"installer_updates":false,"name":"SLE11-SP2-WebYaST-1.3-Pool","description":"SLE11-SP2-WebYaST-1.3-Pool for sle-11-s390x","enabled":true,"id":1411,"distro_target":"sle-11-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-WebYaST-1.3-Pool/sle-11-s390x/"},{"name":"SLE11-SP2-WebYaST-1.3-Pool","installer_updates":false,"description":"SLE11-SP2-WebYaST-1.3-Pool for sle-11-ppc64","enabled":true,"id":1414,"autorefresh":true,"distro_target":"sle-11-ppc64","url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-WebYaST-1.3-Pool/sle-11-ppc64/"},{"installer_updates":false,"name":"SLE11-SP2-WebYaST-1.3-Pool","description":"SLE11-SP2-WebYaST-1.3-Pool for sle-11-ia64","id":1416,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-WebYaST-1.3-Pool/sle-11-ia64/","distro_target":"sle-11-ia64","autorefresh":true},{"description":"SLE11-SP2-WebYaST-1.3-Pool for sle-11-i586","installer_updates":false,"name":"SLE11-SP2-WebYaST-1.3-Pool","distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-WebYaST-1.3-Pool/sle-11-i586/","enabled":true,"id":1417}],"cpe":null,"product_type":"extension","shortname":null,"description":null,"free":true,"eula_url":"","arch":null,"friendly_version":"1.2","extensions":[],"id":1207,"release_stage":"released","identifier":"sle-11-WebYaST-1.3-migration","recommended":false,"version":"1.2","name":"SUSE WebYaST","offline_predecessor_ids":[],"friendly_name":"SUSE WebYaST 1.2 (Migration)","migration_extra":false,"release_type":null,"former_identifier":"sle-11-WebYaST-1.3-migration"}],"id":755,"release_stage":"released","identifier":"SUSE_SLES","friendly_version":"11 SP2","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Server","release_type":null,"former_identifier":"SUSE_SLES","friendly_name":"SUSE Linux Enterprise Server 11 SP2 s390x","migration_extra":false,"recommended":false,"version":"11.2","product_type":"base","cpe":"cpe:/o:suse:suse_sles:11:sp2","predecessor_ids":[],"online_predecessor_ids":[],"repositories":[{"description":"SLES11-SP1-Pool for sle-11-s390x","name":"SLES11-SP1-Pool","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-s390x","url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-Pool/sle-11-s390x/","enabled":true,"id":687},{"description":"SLE11-SP1-Debuginfo-Updates for sle-11-s390x","installer_updates":false,"name":"SLE11-SP1-Debuginfo-Updates","url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Updates/sle-11-s390x/","distro_target":"sle-11-s390x","autorefresh":true,"id":688,"enabled":false},{"description":"SLES11-Extras for sle-11-s390x","installer_updates":false,"name":"SLES11-Extras","distro_target":"sle-11-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-Extras/sle-11-s390x/","enabled":false,"id":689},{"url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-Updates/sle-11-s390x/","autorefresh":true,"distro_target":"sle-11-s390x","id":691,"enabled":true,"description":"SLES11-SP1-Updates for sle-11-s390x","name":"SLES11-SP1-Updates","installer_updates":false},{"autorefresh":true,"distro_target":"sle-11-s390x","url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Pool/sle-11-s390x/","enabled":false,"id":692,"description":"SLE11-SP1-Debuginfo-Pool for sle-11-s390x","name":"SLE11-SP1-Debuginfo-Pool","installer_updates":false},{"url":"https://updates.suse.com/repo/$RCE/SLE11-WebYaST-SP2-Updates/sle-11-s390x/","autorefresh":true,"distro_target":"sle-11-s390x","id":723,"enabled":false,"description":"SLE11-WebYaST-SP2-Updates for sle-11-s390x","name":"SLE11-WebYaST-SP2-Updates","installer_updates":false},{"url":"https://updates.suse.com/repo/$RCE/SLES11-SP2-Updates/sle-11-s390x/","autorefresh":true,"distro_target":"sle-11-s390x","id":724,"enabled":true,"description":"SLES11-SP2-Updates for sle-11-s390x","name":"SLES11-SP2-Updates","installer_updates":false},{"id":725,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-Debuginfo-Updates/sle-11-s390x/","autorefresh":true,"distro_target":"sle-11-s390x","name":"SLE11-SP2-Debuginfo-Updates","installer_updates":false,"description":"SLE11-SP2-Debuginfo-Updates for sle-11-s390x"},{"id":726,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP2-Core/sle-11-s390x/","distro_target":"sle-11-s390x","autorefresh":true,"installer_updates":false,"name":"SLES11-SP2-Core","description":"SLES11-SP2-Core for sle-11-s390x"},{"url":"https://updates.suse.com/repo/$RCE/SLE11-WebYaST-SP2-Pool/sle-11-s390x/","autorefresh":true,"distro_target":"sle-11-s390x","id":727,"enabled":false,"description":"SLE11-WebYaST-SP2-Pool for sle-11-s390x","name":"SLE11-WebYaST-SP2-Pool","installer_updates":false},{"installer_updates":false,"name":"SLE11-SP2-Debuginfo-Core","description":"SLE11-SP2-Debuginfo-Core for sle-11-s390x","id":728,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-Debuginfo-Core/sle-11-s390x/","distro_target":"sle-11-s390x","autorefresh":true},{"autorefresh":true,"distro_target":"sle-11-s390x","url":"https://updates.suse.com/repo/$RCE/SLES11-SP2-Extension-Store/sle-11-s390x/","enabled":true,"id":734,"description":"SLES11-SP2-Extension-Store for sle-11-s390x","name":"SLES11-SP2-Extension-Store","installer_updates":false},{"name":"SLES11-SP2-LTSS-Updates","installer_updates":false,"description":"SLES11-SP2-LTSS-Updates for sle-11-s390x","id":1165,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP2-LTSS-Updates/sle-11-s390x/","autorefresh":true,"distro_target":"sle-11-s390x"}],"product_class":"SLES-Z","eula_url":"","arch":"s390x","free":false,"shortname":null,"description":null},{"friendly_version":"11 SP1","extensions":[{"predecessor_ids":[],"repositories":[{"id":949,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP2-Pool/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","name":"SLE11-HAE-SP2-Pool","installer_updates":false,"description":"SLE11-HAE-SP2-Pool for sle-11-i586"},{"id":950,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP2-Updates/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","name":"SLE11-HAE-SP2-Updates","installer_updates":false,"description":"SLE11-HAE-SP2-Updates for sle-11-i586"}],"online_predecessor_ids":[],"product_class":"SLE-HAE-X86","product_type":"extension","cpe":null,"free":false,"description":null,"shortname":null,"eula_url":"","arch":"i686","friendly_version":"11 SP1","extensions":[],"release_stage":"released","identifier":"sle-hae-SP2-migration","id":962,"recommended":false,"version":"11.1","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise High Availability Extension","release_type":null,"former_identifier":"sle-hae-SP2-migration","friendly_name":"SUSE Linux Enterprise High Availability Extension 11 SP1 i686 (Migration)","migration_extra":false},{"description":null,"shortname":null,"free":false,"eula_url":"","arch":"i686","predecessor_ids":[],"product_class":"SLE-HAE-X86","online_predecessor_ids":[],"repositories":[{"distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP1-Updates/sle-11-i586/","enabled":true,"id":944,"description":"SLE11-HAE-SP1-Updates for sle-11-i586","installer_updates":false,"name":"SLE11-HAE-SP1-Updates"},{"name":"SLE11-HAE-SP1-Pool","installer_updates":false,"description":"SLE11-HAE-SP1-Pool for sle-11-i586","id":945,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP1-Pool/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586"}],"cpe":null,"product_type":"extension","recommended":false,"version":"11.1","name":"SUSE Linux Enterprise High Availability Extension","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"SUSE Linux Enterprise High Availability Extension 11 SP1 i686","former_identifier":"sle-hae","release_type":null,"friendly_version":"11 SP1","extensions":[],"release_stage":"released","identifier":"sle-hae","id":978},{"friendly_version":"11 SP1","extensions":[],"release_stage":"released","identifier":"sle-smt","id":1192,"recommended":false,"version":"11.1","name":"SUSE Linux Enterprise Subscription Management Tool","offline_predecessor_ids":[],"friendly_name":"SUSE Linux Enterprise Subscription Management Tool 11 SP1","migration_extra":false,"release_type":null,"former_identifier":"sle-smt","predecessor_ids":[],"repositories":[{"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-SMT-Updates/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64","id":1386,"enabled":true,"description":"SLE11-SP1-SMT-Updates for sle-11-x86_64","name":"SLE11-SP1-SMT-Updates","installer_updates":false},{"id":1387,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-SMT-Pool/sle-11-s390x/","autorefresh":true,"distro_target":"sle-11-s390x","name":"SLE11-SP1-SMT-Pool","installer_updates":false,"description":"SLE11-SP1-SMT-Pool for sle-11-s390x"},{"id":1388,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-SMT-Pool/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64","name":"SLE11-SP1-SMT-Pool","installer_updates":false,"description":"SLE11-SP1-SMT-Pool for sle-11-x86_64"},{"id":1389,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-SMT-Updates/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","name":"SLE11-SP1-SMT-Updates","installer_updates":false,"description":"SLE11-SP1-SMT-Updates for sle-11-i586"},{"enabled":true,"id":1390,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-SMT-Pool/sle-11-i586/","name":"SLE11-SP1-SMT-Pool","installer_updates":false,"description":"SLE11-SP1-SMT-Pool for sle-11-i586"},{"distro_target":"sle-11-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-SMT-Updates/sle-11-s390x/","enabled":true,"id":1391,"description":"SLE11-SP1-SMT-Updates for sle-11-s390x","installer_updates":false,"name":"SLE11-SP1-SMT-Updates"}],"online_predecessor_ids":[],"product_class":"SLESMT","cpe":null,"product_type":"extension","shortname":null,"description":null,"free":true,"eula_url":"","arch":null}],"release_stage":"released","identifier":"SUSE_SLES-SP2-migration","id":756,"recommended":false,"version":"11.1","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Server","former_identifier":"SUSE_SLES-SP2-migration","release_type":null,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Server 11 SP1 i686 (Migration)","predecessor_ids":[],"online_predecessor_ids":[],"product_class":"7261","repositories":[{"enabled":false,"id":680,"distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Pool/sle-11-i586/","installer_updates":false,"name":"SLE11-SP1-Debuginfo-Pool","description":"SLE11-SP1-Debuginfo-Pool for sle-11-i586"},{"enabled":false,"id":682,"distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Updates/sle-11-i586/","installer_updates":false,"name":"SLE11-SP1-Debuginfo-Updates","description":"SLE11-SP1-Debuginfo-Updates for sle-11-i586"},{"description":"SLE11-SP2-Debuginfo-Core for sle-11-i586","installer_updates":false,"name":"SLE11-SP2-Debuginfo-Core","distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-Debuginfo-Core/sle-11-i586/","enabled":false,"id":717},{"description":"SLE11-WebYaST-SP2-Pool for sle-11-i586","name":"SLE11-WebYaST-SP2-Pool","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-WebYaST-SP2-Pool/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","id":718,"enabled":false},{"description":"SLE11-SP2-Debuginfo-Updates for sle-11-i586","installer_updates":false,"name":"SLE11-SP2-Debuginfo-Updates","distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-Debuginfo-Updates/sle-11-i586/","enabled":false,"id":719},{"url":"https://updates.suse.com/repo/$RCE/SLES11-SP2-Updates/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true,"id":720,"enabled":true,"description":"SLES11-SP2-Updates for sle-11-i586","installer_updates":false,"name":"SLES11-SP2-Updates"},{"name":"SLE11-WebYaST-SP2-Updates","installer_updates":false,"description":"SLE11-WebYaST-SP2-Updates for sle-11-i586","id":721,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-WebYaST-SP2-Updates/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586"},{"installer_updates":false,"name":"SLES11-SP2-Core","description":"SLES11-SP2-Core for sle-11-i586","enabled":true,"id":722,"distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP2-Core/sle-11-i586/"}],"product_type":"base","cpe":null,"free":false,"description":null,"shortname":null,"eula_url":"","arch":"i686"},{"free":false,"shortname":null,"description":null,"eula_url":"","arch":"i586","predecessor_ids":[],"online_predecessor_ids":[],"product_class":"7261","repositories":[{"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLES11-Extras/sle-11-i586/","enabled":false,"id":679,"description":"SLES11-Extras for sle-11-i586","name":"SLES11-Extras","installer_updates":false},{"name":"SLE11-SP1-Debuginfo-Pool","installer_updates":false,"description":"SLE11-SP1-Debuginfo-Pool for sle-11-i586","enabled":false,"id":680,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Pool/sle-11-i586/"},{"name":"SLE11-SP1-Debuginfo-Updates","installer_updates":false,"description":"SLE11-SP1-Debuginfo-Updates for sle-11-i586","id":682,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Updates/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586"},{"url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-Updates/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","id":684,"enabled":false,"description":"SLES11-SP1-Updates for sle-11-i586","name":"SLES11-SP1-Updates","installer_updates":false},{"distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-Pool/sle-11-i586/","enabled":false,"id":686,"description":"SLES11-SP1-Pool for sle-11-i586","installer_updates":false,"name":"SLES11-SP1-Pool"},{"installer_updates":false,"name":"SLE11-SP2-Debuginfo-Core","description":"SLE11-SP2-Debuginfo-Core for sle-11-i586","id":717,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-Debuginfo-Core/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true},{"installer_updates":false,"name":"SLE11-SP2-Debuginfo-Updates","description":"SLE11-SP2-Debuginfo-Updates for sle-11-i586","enabled":false,"id":719,"distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-Debuginfo-Updates/sle-11-i586/"},{"id":720,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP2-Updates/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","name":"SLES11-SP2-Updates","installer_updates":false,"description":"SLES11-SP2-Updates for sle-11-i586"},{"url":"https://updates.suse.com/repo/$RCE/SLES11-SP2-Core/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","id":722,"enabled":false,"description":"SLES11-SP2-Core for sle-11-i586","name":"SLES11-SP2-Core","installer_updates":false},{"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLES11-SP3-Extension-Store/sle-11-i586/","enabled":false,"id":758,"description":"SLES11-SP3-Extension-Store for sle-11-i586","name":"SLES11-SP3-Extension-Store","installer_updates":false},{"description":"SLE11-SP3-Debuginfo-Updates for sle-11-i586","installer_updates":false,"name":"SLE11-SP3-Debuginfo-Updates","distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP3-Debuginfo-Updates/sle-11-i586/","enabled":false,"id":759},{"id":760,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP3-Pool/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true,"installer_updates":false,"name":"SLES11-SP3-Pool","description":"SLES11-SP3-Pool for sle-11-i586"},{"id":761,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP2-Extension-Store/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","name":"SLES11-SP2-Extension-Store","installer_updates":false,"description":"SLES11-SP2-Extension-Store for sle-11-i586"},{"name":"SLES11-SP3-Updates","installer_updates":false,"description":"SLES11-SP3-Updates for sle-11-i586","enabled":true,"id":762,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLES11-SP3-Updates/sle-11-i586/"},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SP3-Debuginfo-Pool/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true,"id":763,"enabled":false,"description":"SLE11-SP3-Debuginfo-Pool for sle-11-i586","installer_updates":false,"name":"SLE11-SP3-Debuginfo-Pool"}],"product_type":"base","cpe":null,"recommended":false,"version":"11.2","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Server","release_type":null,"former_identifier":"SUSE_SLES-SP3-migration","migration_extra":false,"friendly_name":"SUSE Linux Enterprise Server 11 SP2 i586 (Migration)","friendly_version":"11 SP2","extensions":[{"description":null,"shortname":null,"free":false,"arch":"i586","eula_url":"","online_predecessor_ids":[],"repositories":[{"installer_updates":false,"name":"SLE11-HAE-SP2-Pool","description":"SLE11-HAE-SP2-Pool for sle-11-i586","id":949,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP2-Pool/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true},{"distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP2-Updates/sle-11-i586/","enabled":true,"id":950,"description":"SLE11-HAE-SP2-Updates for sle-11-i586","installer_updates":false,"name":"SLE11-HAE-SP2-Updates"}],"product_class":"SLE-HAE-X86","predecessor_ids":[],"cpe":null,"product_type":"extension","version":"11.2","recommended":false,"friendly_name":"SUSE Linux Enterprise High Availability Extension 11 SP2 i586","migration_extra":false,"former_identifier":"sle-hae","release_type":null,"name":"SUSE Linux Enterprise High Availability Extension","offline_predecessor_ids":[],"friendly_version":"11 SP2","release_stage":"released","id":975,"identifier":"sle-hae","extensions":[]},{"friendly_version":"11 SP2","extensions":[],"release_stage":"released","identifier":"sle-hae-SP3-migration","id":988,"recommended":false,"version":"11.2","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise High Availability Extension","release_type":null,"former_identifier":"sle-hae-SP3-migration","friendly_name":"SUSE Linux Enterprise High Availability Extension 11 SP2 i586 (Migration)","migration_extra":false,"predecessor_ids":[],"online_predecessor_ids":[],"product_class":"SLE-HAE-X86","repositories":[{"name":"SLE11-HAE-SP3-Pool","installer_updates":false,"description":"SLE11-HAE-SP3-Pool for sle-11-i586","id":951,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP3-Pool/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586"},{"name":"SLE11-HAE-SP3-Updates","installer_updates":false,"description":"SLE11-HAE-SP3-Updates for sle-11-i586","id":952,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP3-Updates/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586"}],"product_type":"extension","cpe":null,"free":false,"shortname":null,"description":null,"eula_url":"","arch":"i586"},{"friendly_version":"11 SP2","extensions":[],"release_stage":"released","identifier":"sle-smt","id":1193,"recommended":false,"version":"11.2","name":"SUSE Linux Enterprise Subscription Management Tool","offline_predecessor_ids":[],"friendly_name":"SUSE Linux Enterprise Subscription Management Tool 11 SP2","migration_extra":false,"release_type":null,"former_identifier":"sle-smt","predecessor_ids":[],"online_predecessor_ids":[],"product_class":"SLESMT","repositories":[{"installer_updates":false,"name":"SLE11-SMT-SP2-Pool","description":"SLE11-SMT-SP2-Pool for sle-11-x86_64","id":1392,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP2-Pool/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true},{"description":"SLE11-SMT-SP2-Updates for sle-11-s390x","name":"SLE11-SMT-SP2-Updates","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP2-Updates/sle-11-s390x/","autorefresh":true,"distro_target":"sle-11-s390x","id":1393,"enabled":true},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP2-Pool/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","id":1394,"enabled":true,"description":"SLE11-SMT-SP2-Pool for sle-11-i586","name":"SLE11-SMT-SP2-Pool","installer_updates":false},{"id":1395,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP2-Updates/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true,"installer_updates":false,"name":"SLE11-SMT-SP2-Updates","description":"SLE11-SMT-SP2-Updates for sle-11-i586"},{"name":"SLE11-SMT-SP2-Pool","installer_updates":false,"description":"SLE11-SMT-SP2-Pool for sle-11-s390x","id":1396,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP2-Pool/sle-11-s390x/","autorefresh":true,"distro_target":"sle-11-s390x"},{"name":"SLE11-SMT-SP2-Updates","installer_updates":false,"description":"SLE11-SMT-SP2-Updates for sle-11-x86_64","id":1397,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP2-Updates/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64"}],"cpe":null,"product_type":"extension","description":null,"shortname":null,"free":true,"eula_url":"","arch":null},{"repositories":[{"enabled":true,"id":1408,"autorefresh":true,"distro_target":"sle-11-s390x","url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP3-Pool/sle-11-s390x/","name":"SLE11-SMT-SP3-Pool","installer_updates":false,"description":"SLE11-SMT-SP3-Pool for sle-11-s390x"},{"id":1409,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP3-Pool/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true,"installer_updates":false,"name":"SLE11-SMT-SP3-Pool","description":"SLE11-SMT-SP3-Pool for sle-11-x86_64"},{"enabled":true,"id":1410,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP3-Pool/sle-11-i586/","name":"SLE11-SMT-SP3-Pool","installer_updates":false,"description":"SLE11-SMT-SP3-Pool for sle-11-i586"}],"online_predecessor_ids":[],"product_class":"SLESMT","predecessor_ids":[],"cpe":null,"product_type":"extension","description":null,"shortname":null,"free":true,"arch":null,"eula_url":"","friendly_version":"11 SP2","id":1199,"release_stage":"released","identifier":"sle-smt-SP3-migration","extensions":[],"version":"11.2","recommended":false,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Subscription Management Tool 11 SP2 (Migration)","former_identifier":"sle-smt-SP3-migration","release_type":null,"name":"SUSE Linux Enterprise Subscription Management Tool","offline_predecessor_ids":[]}],"id":757,"release_stage":"released","identifier":"SUSE_SLES-SP3-migration"},{"eula_url":"","arch":"ppc64","free":false,"shortname":null,"description":null,"product_type":"base","cpe":null,"predecessor_ids":[],"repositories":[{"id":633,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLES10-Updates/sles-10-ppc/","distro_target":"sles-10-ppc","autorefresh":true,"installer_updates":false,"name":"SLES10-Updates","description":"SLES10-Updates for sles-10-ppc"},{"name":"SLE10-Debuginfo-Updates","installer_updates":false,"description":"SLE10-Debuginfo-Updates for sles-10-ppc","enabled":false,"id":634,"autorefresh":true,"distro_target":"sles-10-ppc","url":"https://updates.suse.com/repo/$RCE/SLE10-Debuginfo-Updates/sles-10-ppc/"}],"online_predecessor_ids":[],"product_class":"SLES-PPC","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Server","release_type":null,"former_identifier":"SUSE-Linux-Enterprise-Server-ppc","friendly_name":"SUSE Linux Enterprise Server 10 ppc64","migration_extra":false,"recommended":false,"version":"10","extensions":[{"description":null,"shortname":null,"free":true,"eula_url":"","arch":null,"predecessor_ids":[],"product_class":"SLE-SDK","online_predecessor_ids":[],"repositories":[{"installer_updates":false,"name":"SLE10-SDK-SP1-Online","description":"SLE10-SDK-SP1-Online for sles-10-s390x","id":1294,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sles-10-s390x/","distro_target":"sles-10-s390x","autorefresh":true},{"autorefresh":true,"distro_target":"sles-10-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sles-10-x86_64/","enabled":true,"id":1295,"description":"SLE10-SDK-SP1-Online for sles-10-x86_64","name":"SLE10-SDK-SP1-Online","installer_updates":false},{"description":"SLE10-SDK-SP1-Online for sled-10-i586","installer_updates":false,"name":"SLE10-SDK-SP1-Online","distro_target":"sled-10-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sled-10-i586/","enabled":true,"id":1296},{"description":"SLE10-SDK-SP1-Online for sles-10-ppc","name":"SLE10-SDK-SP1-Online","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sles-10-ppc/","autorefresh":true,"distro_target":"sles-10-ppc","id":1297,"enabled":true},{"enabled":true,"id":1301,"distro_target":"sles-10-ia64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sles-10-ia64/","installer_updates":false,"name":"SLE10-SDK-SP1-Online","description":"SLE10-SDK-SP1-Online for sles-10-ia64"},{"id":1303,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sles-10-i586/","autorefresh":true,"distro_target":"sles-10-i586","name":"SLE10-SDK-SP1-Online","installer_updates":false,"description":"SLE10-SDK-SP1-Online for sles-10-i586"},{"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sled-10-x86_64/","distro_target":"sled-10-x86_64","autorefresh":true,"id":1307,"enabled":true,"description":"SLE10-SDK-SP1-Online for sled-10-x86_64","installer_updates":false,"name":"SLE10-SDK-SP1-Online"}],"cpe":null,"product_type":"extension","recommended":false,"version":"10","name":"SUSE Linux Enterprise Software Development Kit","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Software Development Kit 10 (Migration)","former_identifier":"SUSE-Linux-Enterprise-SDK-SP1-migration","release_type":null,"friendly_version":"10","extensions":[],"release_stage":"released","identifier":"SUSE-Linux-Enterprise-SDK-SP1-migration","id":1175},{"version":"10","recommended":false,"former_identifier":"SUSE-Linux-Enterprise-SDK-SP2-migration","release_type":"online","friendly_name":"SUSE Linux Enterprise Software Development Kit 10 online (Migration)","migration_extra":false,"offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Software Development Kit","friendly_version":"10","release_stage":"released","id":1178,"identifier":"SUSE-Linux-Enterprise-SDK-SP2-migration","extensions":[],"free":true,"description":null,"shortname":null,"arch":null,"eula_url":"","online_predecessor_ids":[],"product_class":"SLE-SDK","repositories":[{"description":"SLE10-SDK-SP2-Online for sled-10-i586","installer_updates":false,"name":"SLE10-SDK-SP2-Online","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sled-10-i586/","distro_target":"sled-10-i586","autorefresh":true,"id":1308,"enabled":true},{"description":"SLE10-SDK-SP2-Online for sles-10-ppc","name":"SLE10-SDK-SP2-Online","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sles-10-ppc/","autorefresh":true,"distro_target":"sles-10-ppc","id":1312,"enabled":true},{"description":"SLE10-SDK-SP2-Online for sles-10-i586","installer_updates":false,"name":"SLE10-SDK-SP2-Online","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sles-10-i586/","distro_target":"sles-10-i586","autorefresh":true,"id":1313,"enabled":true},{"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sled-10-x86_64/","distro_target":"sled-10-x86_64","autorefresh":true,"id":1314,"enabled":true,"description":"SLE10-SDK-SP2-Online for sled-10-x86_64","installer_updates":false,"name":"SLE10-SDK-SP2-Online"},{"installer_updates":false,"name":"SLE10-SDK-SP2-Online","description":"SLE10-SDK-SP2-Online for sles-10-ia64","enabled":true,"id":1316,"distro_target":"sles-10-ia64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sles-10-ia64/"},{"autorefresh":true,"distro_target":"sles-10-s390x","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sles-10-s390x/","enabled":true,"id":1318,"description":"SLE10-SDK-SP2-Online for sles-10-s390x","name":"SLE10-SDK-SP2-Online","installer_updates":false},{"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sles-10-x86_64/","distro_target":"sles-10-x86_64","autorefresh":true,"id":1321,"enabled":true,"description":"SLE10-SDK-SP2-Online for sles-10-x86_64","installer_updates":false,"name":"SLE10-SDK-SP2-Online"}],"predecessor_ids":[],"product_type":"extension","cpe":null},{"friendly_version":"10","release_stage":"released","identifier":"SUSE-Linux-Enterprise-SDK-SP3-migration","id":1180,"extensions":[],"version":"10","recommended":false,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Software Development Kit 10 (Migration)","former_identifier":"SUSE-Linux-Enterprise-SDK-SP3-migration","release_type":null,"name":"SUSE Linux Enterprise Software Development Kit","offline_predecessor_ids":[],"online_predecessor_ids":[],"repositories":[{"installer_updates":false,"name":"SLE10-SDK-SP3-Online","description":"SLE10-SDK-SP3-Online for sled-10-i586","enabled":true,"id":1324,"distro_target":"sled-10-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sled-10-i586/"},{"autorefresh":true,"distro_target":"sled-10-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sled-10-x86_64/","enabled":true,"id":1326,"description":"SLE10-SDK-SP3-Online for sled-10-x86_64","name":"SLE10-SDK-SP3-Online","installer_updates":false},{"distro_target":"sles-10-ia64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sles-10-ia64/","enabled":true,"id":1328,"description":"SLE10-SDK-SP3-Online for sles-10-ia64","installer_updates":false,"name":"SLE10-SDK-SP3-Online"},{"description":"SLE10-SDK-SP3-Online for sles-10-i586","name":"SLE10-SDK-SP3-Online","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sles-10-i586/","autorefresh":true,"distro_target":"sles-10-i586","id":1330,"enabled":true},{"installer_updates":false,"name":"SLE10-SDK-SP3-Online","description":"SLE10-SDK-SP3-Online for sles-10-s390x","enabled":true,"id":1335,"distro_target":"sles-10-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sles-10-s390x/"},{"installer_updates":false,"name":"SLE10-SDK-SP3-Online","description":"SLE10-SDK-SP3-Online for sles-10-x86_64","enabled":true,"id":1341,"distro_target":"sles-10-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sles-10-x86_64/"},{"description":"SLE10-SDK-SP3-Online for sles-10-ppc","name":"SLE10-SDK-SP3-Online","installer_updates":false,"autorefresh":true,"distro_target":"sles-10-ppc","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sles-10-ppc/","enabled":true,"id":1342}],"product_class":"SLE-SDK","predecessor_ids":[],"cpe":null,"product_type":"extension","description":null,"shortname":null,"free":true,"arch":null,"eula_url":""},{"version":"10","recommended":false,"former_identifier":"SUSE-Linux-Enterprise-SDK-SP4-migration","release_type":null,"friendly_name":"SUSE Linux Enterprise Software Development Kit 10 (Migration)","migration_extra":false,"offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Software Development Kit","friendly_version":"10","id":1182,"release_stage":"released","identifier":"SUSE-Linux-Enterprise-SDK-SP4-migration","extensions":[],"free":true,"description":null,"shortname":null,"arch":null,"eula_url":"","online_predecessor_ids":[],"repositories":[{"id":1357,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP4-Online/sles-10-x86_64/","distro_target":"sles-10-x86_64","autorefresh":true,"installer_updates":false,"name":"SLE10-SDK-SP4-Online","description":"SLE10-SDK-SP4-Online for sles-10-x86_64"},{"name":"SLE10-SDK-SP4-Online","installer_updates":false,"description":"SLE10-SDK-SP4-Online for sles-10-i586","enabled":true,"id":1358,"autorefresh":true,"distro_target":"sles-10-i586","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP4-Online/sles-10-i586/"},{"description":"SLE10-SDK-SP4-Online for sles-10-ia64","name":"SLE10-SDK-SP4-Online","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP4-Online/sles-10-ia64/","autorefresh":true,"distro_target":"sles-10-ia64","id":1359,"enabled":true},{"installer_updates":false,"name":"SLE10-SDK-SP4-Online","description":"SLE10-SDK-SP4-Online for sled-10-x86_64","id":1360,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP4-Online/sled-10-x86_64/","distro_target":"sled-10-x86_64","autorefresh":true},{"enabled":true,"id":1361,"autorefresh":true,"distro_target":"sled-10-i586","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP4-Online/sled-10-i586/","name":"SLE10-SDK-SP4-Online","installer_updates":false,"description":"SLE10-SDK-SP4-Online for sled-10-i586"},{"description":"SLE10-SDK-SP4-Online for sles-10-ppc","installer_updates":false,"name":"SLE10-SDK-SP4-Online","distro_target":"sles-10-ppc","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP4-Online/sles-10-ppc/","enabled":true,"id":1362},{"distro_target":"sles-10-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP4-Online/sles-10-s390x/","enabled":true,"id":1363,"description":"SLE10-SDK-SP4-Online for sles-10-s390x","installer_updates":false,"name":"SLE10-SDK-SP4-Online"}],"product_class":"SLE-SDK","predecessor_ids":[],"product_type":"extension","cpe":null}],"release_stage":"released","id":758,"identifier":"SUSE-Linux-Enterprise-Server-ppc","friendly_version":"10"},{"free":false,"shortname":null,"description":null,"eula_url":"","arch":"i686","predecessor_ids":[],"repositories":[{"description":"SLE10-SP1-Debuginfo-Updates for sles-10-i586","installer_updates":false,"name":"SLE10-SP1-Debuginfo-Updates","url":"https://updates.suse.com/repo/$RCE/SLE10-SP1-Debuginfo-Updates/sles-10-i586/","distro_target":"sles-10-i586","autorefresh":true,"id":641,"enabled":false},{"distro_target":"sles-10-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLES10-SP1-LTSS-Updates/sles-10-i586/","enabled":true,"id":642,"description":"SLES10-SP1-LTSS-Updates for sles-10-i586","installer_updates":false,"name":"SLES10-SP1-LTSS-Updates"},{"installer_updates":false,"name":"SLES10-SP1-LTSS-Updates","description":"SLES10-SP1-LTSS-Updates for sles-10-ia64","enabled":true,"id":643,"distro_target":"sles-10-ia64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLES10-SP1-LTSS-Updates/sles-10-ia64/"},{"id":644,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLES10-SP1-LTSS-Updates/sles-10-s390x/","distro_target":"sles-10-s390x","autorefresh":true,"installer_updates":false,"name":"SLES10-SP1-LTSS-Updates","description":"SLES10-SP1-LTSS-Updates for sles-10-s390x"},{"distro_target":"sles-10-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLES10-SP1-LTSS-Updates/sles-10-x86_64/","enabled":true,"id":645,"description":"SLES10-SP1-LTSS-Updates for sles-10-x86_64","installer_updates":false,"name":"SLES10-SP1-LTSS-Updates"},{"id":646,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLES10-SP1-Updates/sles-10-i586/","autorefresh":true,"distro_target":"sles-10-i586","name":"SLES10-SP1-Updates","installer_updates":false,"description":"SLES10-SP1-Updates for sles-10-i586"},{"enabled":true,"id":647,"distro_target":"sles-10-ppc","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLES10-SP1-LTSS-Updates/sles-10-ppc/","installer_updates":false,"name":"SLES10-SP1-LTSS-Updates","description":"SLES10-SP1-LTSS-Updates for sles-10-ppc"}],"online_predecessor_ids":[],"product_class":"7261","product_type":"base","cpe":null,"recommended":false,"version":"10","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Server","release_type":null,"former_identifier":"SUSE-Linux-Enterprise-Server-SP1","friendly_name":"SUSE Linux Enterprise Server 10 SP1 i686","migration_extra":false,"friendly_version":"10 SP1","extensions":[{"product_type":"extension","cpe":null,"predecessor_ids":[],"repositories":[{"id":1294,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sles-10-s390x/","distro_target":"sles-10-s390x","autorefresh":true,"installer_updates":false,"name":"SLE10-SDK-SP1-Online","description":"SLE10-SDK-SP1-Online for sles-10-s390x"},{"name":"SLE10-SDK-SP1-Online","installer_updates":false,"description":"SLE10-SDK-SP1-Online for sles-10-x86_64","id":1295,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sles-10-x86_64/","autorefresh":true,"distro_target":"sles-10-x86_64"},{"installer_updates":false,"name":"SLE10-SDK-SP1-Online","description":"SLE10-SDK-SP1-Online for sled-10-i586","enabled":true,"id":1296,"distro_target":"sled-10-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sled-10-i586/"},{"installer_updates":false,"name":"SLE10-SDK-SP1-Online","description":"SLE10-SDK-SP1-Online for sles-10-ppc","id":1297,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sles-10-ppc/","distro_target":"sles-10-ppc","autorefresh":true},{"id":1298,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Updates/sles-10-s390x/","distro_target":"sles-10-s390x","autorefresh":true,"installer_updates":false,"name":"SLE10-SDK-SP1-Updates","description":"SLE10-SDK-SP1-Updates for sles-10-s390x"},{"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Updates/sled-10-x86_64/","autorefresh":true,"distro_target":"sled-10-x86_64","id":1299,"enabled":true,"description":"SLE10-SDK-SP1-Updates for sled-10-x86_64","name":"SLE10-SDK-SP1-Updates","installer_updates":false},{"id":1300,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Updates/sles-10-x86_64/","distro_target":"sles-10-x86_64","autorefresh":true,"installer_updates":false,"name":"SLE10-SDK-SP1-Updates","description":"SLE10-SDK-SP1-Updates for sles-10-x86_64"},{"name":"SLE10-SDK-SP1-Online","installer_updates":false,"description":"SLE10-SDK-SP1-Online for sles-10-ia64","id":1301,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sles-10-ia64/","autorefresh":true,"distro_target":"sles-10-ia64"},{"id":1302,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Updates/sled-10-i586/","autorefresh":true,"distro_target":"sled-10-i586","name":"SLE10-SDK-SP1-Updates","installer_updates":false,"description":"SLE10-SDK-SP1-Updates for sled-10-i586"},{"id":1303,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sles-10-i586/","distro_target":"sles-10-i586","autorefresh":true,"installer_updates":false,"name":"SLE10-SDK-SP1-Online","description":"SLE10-SDK-SP1-Online for sles-10-i586"},{"installer_updates":false,"name":"SLE10-SDK-SP1-Updates","description":"SLE10-SDK-SP1-Updates for sles-10-ia64","id":1304,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Updates/sles-10-ia64/","distro_target":"sles-10-ia64","autorefresh":true},{"description":"SLE10-SDK-SP1-Updates for sles-10-ppc","installer_updates":false,"name":"SLE10-SDK-SP1-Updates","distro_target":"sles-10-ppc","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Updates/sles-10-ppc/","enabled":true,"id":1305},{"enabled":true,"id":1306,"distro_target":"sles-10-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Updates/sles-10-i586/","installer_updates":false,"name":"SLE10-SDK-SP1-Updates","description":"SLE10-SDK-SP1-Updates for sles-10-i586"},{"description":"SLE10-SDK-SP1-Online for sled-10-x86_64","installer_updates":false,"name":"SLE10-SDK-SP1-Online","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sled-10-x86_64/","distro_target":"sled-10-x86_64","autorefresh":true,"id":1307,"enabled":true}],"online_predecessor_ids":[],"product_class":"SLE-SDK","eula_url":"","arch":null,"free":true,"shortname":null,"description":null,"extensions":[],"identifier":"SUSE-Linux-Enterprise-SDK-SP1","release_stage":"released","id":1174,"friendly_version":"10 SP1","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Software Development Kit","release_type":null,"former_identifier":"SUSE-Linux-Enterprise-SDK-SP1","migration_extra":false,"friendly_name":"SUSE Linux Enterprise Software Development Kit 10 SP1","recommended":false,"version":"10"},{"id":1175,"release_stage":"released","identifier":"SUSE-Linux-Enterprise-SDK-SP1-migration","extensions":[],"friendly_version":"10","former_identifier":"SUSE-Linux-Enterprise-SDK-SP1-migration","release_type":null,"friendly_name":"SUSE Linux Enterprise Software Development Kit 10 (Migration)","migration_extra":false,"offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Software Development Kit","version":"10","recommended":false,"product_type":"extension","cpe":null,"online_predecessor_ids":[],"product_class":"SLE-SDK","repositories":[{"id":1294,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sles-10-s390x/","distro_target":"sles-10-s390x","autorefresh":true,"installer_updates":false,"name":"SLE10-SDK-SP1-Online","description":"SLE10-SDK-SP1-Online for sles-10-s390x"},{"id":1295,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sles-10-x86_64/","distro_target":"sles-10-x86_64","autorefresh":true,"installer_updates":false,"name":"SLE10-SDK-SP1-Online","description":"SLE10-SDK-SP1-Online for sles-10-x86_64"},{"description":"SLE10-SDK-SP1-Online for sled-10-i586","installer_updates":false,"name":"SLE10-SDK-SP1-Online","distro_target":"sled-10-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sled-10-i586/","enabled":true,"id":1296},{"autorefresh":true,"distro_target":"sles-10-ppc","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sles-10-ppc/","enabled":true,"id":1297,"description":"SLE10-SDK-SP1-Online for sles-10-ppc","name":"SLE10-SDK-SP1-Online","installer_updates":false},{"installer_updates":false,"name":"SLE10-SDK-SP1-Online","description":"SLE10-SDK-SP1-Online for sles-10-ia64","id":1301,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sles-10-ia64/","distro_target":"sles-10-ia64","autorefresh":true},{"autorefresh":true,"distro_target":"sles-10-i586","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sles-10-i586/","enabled":true,"id":1303,"description":"SLE10-SDK-SP1-Online for sles-10-i586","name":"SLE10-SDK-SP1-Online","installer_updates":false},{"name":"SLE10-SDK-SP1-Online","installer_updates":false,"description":"SLE10-SDK-SP1-Online for sled-10-x86_64","enabled":true,"id":1307,"autorefresh":true,"distro_target":"sled-10-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sled-10-x86_64/"}],"predecessor_ids":[],"arch":null,"eula_url":"","free":true,"shortname":null,"description":null}],"identifier":"SUSE-Linux-Enterprise-Server-SP1","release_stage":"released","id":759},{"release_stage":"released","id":760,"identifier":"SUSE-Linux-Enterprise-Server-SP1","extensions":[{"free":true,"description":null,"shortname":null,"arch":null,"eula_url":"","online_predecessor_ids":[],"repositories":[{"name":"SLE10-SDK-SP1-Online","installer_updates":false,"description":"SLE10-SDK-SP1-Online for sles-10-s390x","id":1294,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sles-10-s390x/","autorefresh":true,"distro_target":"sles-10-s390x"},{"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sles-10-x86_64/","autorefresh":true,"distro_target":"sles-10-x86_64","id":1295,"enabled":true,"description":"SLE10-SDK-SP1-Online for sles-10-x86_64","name":"SLE10-SDK-SP1-Online","installer_updates":false},{"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sled-10-i586/","distro_target":"sled-10-i586","autorefresh":true,"id":1296,"enabled":true,"description":"SLE10-SDK-SP1-Online for sled-10-i586","installer_updates":false,"name":"SLE10-SDK-SP1-Online"},{"enabled":true,"id":1297,"distro_target":"sles-10-ppc","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sles-10-ppc/","installer_updates":false,"name":"SLE10-SDK-SP1-Online","description":"SLE10-SDK-SP1-Online for sles-10-ppc"},{"autorefresh":true,"distro_target":"sles-10-s390x","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Updates/sles-10-s390x/","enabled":true,"id":1298,"description":"SLE10-SDK-SP1-Updates for sles-10-s390x","name":"SLE10-SDK-SP1-Updates","installer_updates":false},{"description":"SLE10-SDK-SP1-Updates for sled-10-x86_64","installer_updates":false,"name":"SLE10-SDK-SP1-Updates","distro_target":"sled-10-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Updates/sled-10-x86_64/","enabled":true,"id":1299},{"name":"SLE10-SDK-SP1-Updates","installer_updates":false,"description":"SLE10-SDK-SP1-Updates for sles-10-x86_64","id":1300,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Updates/sles-10-x86_64/","autorefresh":true,"distro_target":"sles-10-x86_64"},{"enabled":true,"id":1301,"distro_target":"sles-10-ia64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sles-10-ia64/","installer_updates":false,"name":"SLE10-SDK-SP1-Online","description":"SLE10-SDK-SP1-Online for sles-10-ia64"},{"description":"SLE10-SDK-SP1-Updates for sled-10-i586","installer_updates":false,"name":"SLE10-SDK-SP1-Updates","distro_target":"sled-10-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Updates/sled-10-i586/","enabled":true,"id":1302},{"description":"SLE10-SDK-SP1-Online for sles-10-i586","installer_updates":false,"name":"SLE10-SDK-SP1-Online","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sles-10-i586/","distro_target":"sles-10-i586","autorefresh":true,"id":1303,"enabled":true},{"name":"SLE10-SDK-SP1-Updates","installer_updates":false,"description":"SLE10-SDK-SP1-Updates for sles-10-ia64","enabled":true,"id":1304,"autorefresh":true,"distro_target":"sles-10-ia64","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Updates/sles-10-ia64/"},{"description":"SLE10-SDK-SP1-Updates for sles-10-ppc","installer_updates":false,"name":"SLE10-SDK-SP1-Updates","distro_target":"sles-10-ppc","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Updates/sles-10-ppc/","enabled":true,"id":1305},{"description":"SLE10-SDK-SP1-Updates for sles-10-i586","name":"SLE10-SDK-SP1-Updates","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Updates/sles-10-i586/","autorefresh":true,"distro_target":"sles-10-i586","id":1306,"enabled":true},{"id":1307,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sled-10-x86_64/","distro_target":"sled-10-x86_64","autorefresh":true,"installer_updates":false,"name":"SLE10-SDK-SP1-Online","description":"SLE10-SDK-SP1-Online for sled-10-x86_64"}],"product_class":"SLE-SDK","predecessor_ids":[],"product_type":"extension","cpe":null,"version":"10","recommended":false,"former_identifier":"SUSE-Linux-Enterprise-SDK-SP1","release_type":null,"friendly_name":"SUSE Linux Enterprise Software Development Kit 10 SP1","migration_extra":false,"offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Software Development Kit","friendly_version":"10 SP1","id":1174,"release_stage":"released","identifier":"SUSE-Linux-Enterprise-SDK-SP1","extensions":[]},{"predecessor_ids":[],"product_class":"SLE-SDK","online_predecessor_ids":[],"repositories":[{"description":"SLE10-SDK-SP1-Online for sles-10-s390x","installer_updates":false,"name":"SLE10-SDK-SP1-Online","distro_target":"sles-10-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sles-10-s390x/","enabled":true,"id":1294},{"distro_target":"sles-10-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sles-10-x86_64/","enabled":true,"id":1295,"description":"SLE10-SDK-SP1-Online for sles-10-x86_64","installer_updates":false,"name":"SLE10-SDK-SP1-Online"},{"id":1296,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sled-10-i586/","distro_target":"sled-10-i586","autorefresh":true,"installer_updates":false,"name":"SLE10-SDK-SP1-Online","description":"SLE10-SDK-SP1-Online for sled-10-i586"},{"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sles-10-ppc/","distro_target":"sles-10-ppc","autorefresh":true,"id":1297,"enabled":true,"description":"SLE10-SDK-SP1-Online for sles-10-ppc","installer_updates":false,"name":"SLE10-SDK-SP1-Online"},{"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sles-10-ia64/","autorefresh":true,"distro_target":"sles-10-ia64","id":1301,"enabled":true,"description":"SLE10-SDK-SP1-Online for sles-10-ia64","name":"SLE10-SDK-SP1-Online","installer_updates":false},{"description":"SLE10-SDK-SP1-Online for sles-10-i586","installer_updates":false,"name":"SLE10-SDK-SP1-Online","distro_target":"sles-10-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sles-10-i586/","enabled":true,"id":1303},{"id":1307,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sled-10-x86_64/","autorefresh":true,"distro_target":"sled-10-x86_64","name":"SLE10-SDK-SP1-Online","installer_updates":false,"description":"SLE10-SDK-SP1-Online for sled-10-x86_64"}],"cpe":null,"product_type":"extension","description":null,"shortname":null,"free":true,"eula_url":"","arch":null,"friendly_version":"10","extensions":[],"id":1175,"release_stage":"released","identifier":"SUSE-Linux-Enterprise-SDK-SP1-migration","recommended":false,"version":"10","name":"SUSE Linux Enterprise Software Development Kit","offline_predecessor_ids":[],"friendly_name":"SUSE Linux Enterprise Software Development Kit 10 (Migration)","migration_extra":false,"former_identifier":"SUSE-Linux-Enterprise-SDK-SP1-migration","release_type":null}],"friendly_version":"10 SP1","release_type":null,"former_identifier":"SUSE-Linux-Enterprise-Server-SP1","migration_extra":false,"friendly_name":"SUSE Linux Enterprise Server 10 SP1 ppc","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Server","version":"10","recommended":false,"product_type":"base","cpe":null,"repositories":[{"autorefresh":true,"distro_target":"sles-10-i586","url":"https://updates.suse.com/repo/$RCE/SLES10-SP1-LTSS-Updates/sles-10-i586/","enabled":true,"id":642,"description":"SLES10-SP1-LTSS-Updates for sles-10-i586","name":"SLES10-SP1-LTSS-Updates","installer_updates":false},{"distro_target":"sles-10-ia64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLES10-SP1-LTSS-Updates/sles-10-ia64/","enabled":true,"id":643,"description":"SLES10-SP1-LTSS-Updates for sles-10-ia64","installer_updates":false,"name":"SLES10-SP1-LTSS-Updates"},{"name":"SLES10-SP1-LTSS-Updates","installer_updates":false,"description":"SLES10-SP1-LTSS-Updates for sles-10-s390x","id":644,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLES10-SP1-LTSS-Updates/sles-10-s390x/","autorefresh":true,"distro_target":"sles-10-s390x"},{"id":645,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLES10-SP1-LTSS-Updates/sles-10-x86_64/","distro_target":"sles-10-x86_64","autorefresh":true,"installer_updates":false,"name":"SLES10-SP1-LTSS-Updates","description":"SLES10-SP1-LTSS-Updates for sles-10-x86_64"},{"installer_updates":false,"name":"SLES10-SP1-LTSS-Updates","description":"SLES10-SP1-LTSS-Updates for sles-10-ppc","enabled":true,"id":647,"distro_target":"sles-10-ppc","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLES10-SP1-LTSS-Updates/sles-10-ppc/"},{"id":648,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP1-Debuginfo-Updates/sles-10-ppc/","autorefresh":true,"distro_target":"sles-10-ppc","name":"SLE10-SP1-Debuginfo-Updates","installer_updates":false,"description":"SLE10-SP1-Debuginfo-Updates for sles-10-ppc"},{"id":649,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLES10-SP1-Updates/sles-10-ppc/","distro_target":"sles-10-ppc","autorefresh":true,"installer_updates":false,"name":"SLES10-SP1-Updates","description":"SLES10-SP1-Updates for sles-10-ppc"}],"online_predecessor_ids":[],"product_class":"SLES-PPC","predecessor_ids":[],"arch":"ppc","eula_url":"","free":false,"shortname":null,"description":null},{"product_type":"base","cpe":null,"product_class":"7261","online_predecessor_ids":[],"repositories":[{"distro_target":"sles-10-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLES10-SP1-Online/sles-10-i586/","enabled":true,"id":639,"description":"SLES10-SP1-Online for sles-10-i586","installer_updates":false,"name":"SLES10-SP1-Online"},{"description":"SLE10-SP1-Debuginfo-Updates for sles-10-i586","name":"SLE10-SP1-Debuginfo-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sles-10-i586","url":"https://updates.suse.com/repo/$RCE/SLE10-SP1-Debuginfo-Updates/sles-10-i586/","enabled":false,"id":641},{"name":"SLES10-SP1-LTSS-Updates","installer_updates":false,"description":"SLES10-SP1-LTSS-Updates for sles-10-i586","enabled":true,"id":642,"autorefresh":true,"distro_target":"sles-10-i586","url":"https://updates.suse.com/repo/$RCE/SLES10-SP1-LTSS-Updates/sles-10-i586/"},{"description":"SLES10-SP1-LTSS-Updates for sles-10-ia64","name":"SLES10-SP1-LTSS-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sles-10-ia64","url":"https://updates.suse.com/repo/$RCE/SLES10-SP1-LTSS-Updates/sles-10-ia64/","enabled":true,"id":643},{"name":"SLES10-SP1-LTSS-Updates","installer_updates":false,"description":"SLES10-SP1-LTSS-Updates for sles-10-s390x","id":644,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLES10-SP1-LTSS-Updates/sles-10-s390x/","autorefresh":true,"distro_target":"sles-10-s390x"},{"enabled":true,"id":645,"distro_target":"sles-10-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLES10-SP1-LTSS-Updates/sles-10-x86_64/","installer_updates":false,"name":"SLES10-SP1-LTSS-Updates","description":"SLES10-SP1-LTSS-Updates for sles-10-x86_64"},{"autorefresh":true,"distro_target":"sles-10-i586","url":"https://updates.suse.com/repo/$RCE/SLES10-SP1-Updates/sles-10-i586/","enabled":true,"id":646,"description":"SLES10-SP1-Updates for sles-10-i586","name":"SLES10-SP1-Updates","installer_updates":false},{"name":"SLES10-SP1-LTSS-Updates","installer_updates":false,"description":"SLES10-SP1-LTSS-Updates for sles-10-ppc","id":647,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLES10-SP1-LTSS-Updates/sles-10-ppc/","autorefresh":true,"distro_target":"sles-10-ppc"}],"predecessor_ids":[],"arch":"i686","eula_url":"","free":false,"shortname":null,"description":null,"identifier":"SUSE-Linux-Enterprise-Server-SP1","release_stage":"released","id":761,"extensions":[{"identifier":"SUSE-Linux-Enterprise-SDK-SP1","release_stage":"released","id":1174,"extensions":[],"friendly_version":"10 SP1","former_identifier":"SUSE-Linux-Enterprise-SDK-SP1","release_type":null,"friendly_name":"SUSE Linux Enterprise Software Development Kit 10 SP1","migration_extra":false,"offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Software Development Kit","version":"10","recommended":false,"product_type":"extension","cpe":null,"online_predecessor_ids":[],"product_class":"SLE-SDK","repositories":[{"installer_updates":false,"name":"SLE10-SDK-SP1-Online","description":"SLE10-SDK-SP1-Online for sles-10-s390x","enabled":true,"id":1294,"distro_target":"sles-10-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sles-10-s390x/"},{"description":"SLE10-SDK-SP1-Online for sles-10-x86_64","name":"SLE10-SDK-SP1-Online","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sles-10-x86_64/","autorefresh":true,"distro_target":"sles-10-x86_64","id":1295,"enabled":true},{"distro_target":"sled-10-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sled-10-i586/","enabled":true,"id":1296,"description":"SLE10-SDK-SP1-Online for sled-10-i586","installer_updates":false,"name":"SLE10-SDK-SP1-Online"},{"name":"SLE10-SDK-SP1-Online","installer_updates":false,"description":"SLE10-SDK-SP1-Online for sles-10-ppc","id":1297,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sles-10-ppc/","autorefresh":true,"distro_target":"sles-10-ppc"},{"description":"SLE10-SDK-SP1-Updates for sles-10-s390x","installer_updates":false,"name":"SLE10-SDK-SP1-Updates","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Updates/sles-10-s390x/","distro_target":"sles-10-s390x","autorefresh":true,"id":1298,"enabled":true},{"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Updates/sled-10-x86_64/","autorefresh":true,"distro_target":"sled-10-x86_64","id":1299,"enabled":true,"description":"SLE10-SDK-SP1-Updates for sled-10-x86_64","name":"SLE10-SDK-SP1-Updates","installer_updates":false},{"enabled":true,"id":1300,"autorefresh":true,"distro_target":"sles-10-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Updates/sles-10-x86_64/","name":"SLE10-SDK-SP1-Updates","installer_updates":false,"description":"SLE10-SDK-SP1-Updates for sles-10-x86_64"},{"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sles-10-ia64/","distro_target":"sles-10-ia64","autorefresh":true,"id":1301,"enabled":true,"description":"SLE10-SDK-SP1-Online for sles-10-ia64","installer_updates":false,"name":"SLE10-SDK-SP1-Online"},{"enabled":true,"id":1302,"distro_target":"sled-10-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Updates/sled-10-i586/","installer_updates":false,"name":"SLE10-SDK-SP1-Updates","description":"SLE10-SDK-SP1-Updates for sled-10-i586"},{"description":"SLE10-SDK-SP1-Online for sles-10-i586","name":"SLE10-SDK-SP1-Online","installer_updates":false,"autorefresh":true,"distro_target":"sles-10-i586","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sles-10-i586/","enabled":true,"id":1303},{"enabled":true,"id":1304,"autorefresh":true,"distro_target":"sles-10-ia64","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Updates/sles-10-ia64/","name":"SLE10-SDK-SP1-Updates","installer_updates":false,"description":"SLE10-SDK-SP1-Updates for sles-10-ia64"},{"description":"SLE10-SDK-SP1-Updates for sles-10-ppc","name":"SLE10-SDK-SP1-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sles-10-ppc","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Updates/sles-10-ppc/","enabled":true,"id":1305},{"distro_target":"sles-10-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Updates/sles-10-i586/","enabled":true,"id":1306,"description":"SLE10-SDK-SP1-Updates for sles-10-i586","installer_updates":false,"name":"SLE10-SDK-SP1-Updates"},{"description":"SLE10-SDK-SP1-Online for sled-10-x86_64","name":"SLE10-SDK-SP1-Online","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sled-10-x86_64/","autorefresh":true,"distro_target":"sled-10-x86_64","id":1307,"enabled":true}],"predecessor_ids":[],"arch":null,"eula_url":"","free":true,"shortname":null,"description":null},{"free":true,"description":null,"shortname":null,"arch":null,"eula_url":"","product_class":"SLE-SDK","online_predecessor_ids":[],"repositories":[{"enabled":true,"id":1294,"autorefresh":true,"distro_target":"sles-10-s390x","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sles-10-s390x/","name":"SLE10-SDK-SP1-Online","installer_updates":false,"description":"SLE10-SDK-SP1-Online for sles-10-s390x"},{"id":1295,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sles-10-x86_64/","distro_target":"sles-10-x86_64","autorefresh":true,"installer_updates":false,"name":"SLE10-SDK-SP1-Online","description":"SLE10-SDK-SP1-Online for sles-10-x86_64"},{"description":"SLE10-SDK-SP1-Online for sled-10-i586","installer_updates":false,"name":"SLE10-SDK-SP1-Online","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sled-10-i586/","distro_target":"sled-10-i586","autorefresh":true,"id":1296,"enabled":true},{"enabled":true,"id":1297,"distro_target":"sles-10-ppc","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sles-10-ppc/","installer_updates":false,"name":"SLE10-SDK-SP1-Online","description":"SLE10-SDK-SP1-Online for sles-10-ppc"},{"enabled":true,"id":1301,"autorefresh":true,"distro_target":"sles-10-ia64","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sles-10-ia64/","name":"SLE10-SDK-SP1-Online","installer_updates":false,"description":"SLE10-SDK-SP1-Online for sles-10-ia64"},{"description":"SLE10-SDK-SP1-Online for sles-10-i586","name":"SLE10-SDK-SP1-Online","installer_updates":false,"autorefresh":true,"distro_target":"sles-10-i586","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sles-10-i586/","enabled":true,"id":1303},{"description":"SLE10-SDK-SP1-Online for sled-10-x86_64","name":"SLE10-SDK-SP1-Online","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sled-10-x86_64/","autorefresh":true,"distro_target":"sled-10-x86_64","id":1307,"enabled":true}],"predecessor_ids":[],"product_type":"extension","cpe":null,"version":"10","recommended":false,"release_type":null,"former_identifier":"SUSE-Linux-Enterprise-SDK-SP1-migration","friendly_name":"SUSE Linux Enterprise Software Development Kit 10 (Migration)","migration_extra":false,"offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Software Development Kit","friendly_version":"10","release_stage":"released","id":1175,"identifier":"SUSE-Linux-Enterprise-SDK-SP1-migration","extensions":[]}],"friendly_version":"10 SP1","release_type":"online","former_identifier":"SUSE-Linux-Enterprise-Server-SP1","migration_extra":false,"friendly_name":"SUSE Linux Enterprise Server 10 SP1 online i686","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Server","version":"10","recommended":false},{"version":"10","recommended":false,"release_type":"online","former_identifier":"SUSE-Linux-Enterprise-Server-SP1","migration_extra":false,"friendly_name":"SUSE Linux Enterprise Server 10 SP1 online ppc64","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Server","friendly_version":"10 SP1","release_stage":"released","id":762,"identifier":"SUSE-Linux-Enterprise-Server-SP1","extensions":[{"free":true,"shortname":null,"description":null,"eula_url":"","arch":null,"predecessor_ids":[],"repositories":[{"distro_target":"sles-10-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sles-10-s390x/","enabled":true,"id":1294,"description":"SLE10-SDK-SP1-Online for sles-10-s390x","installer_updates":false,"name":"SLE10-SDK-SP1-Online"},{"enabled":true,"id":1295,"autorefresh":true,"distro_target":"sles-10-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sles-10-x86_64/","name":"SLE10-SDK-SP1-Online","installer_updates":false,"description":"SLE10-SDK-SP1-Online for sles-10-x86_64"},{"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sled-10-i586/","distro_target":"sled-10-i586","autorefresh":true,"id":1296,"enabled":true,"description":"SLE10-SDK-SP1-Online for sled-10-i586","installer_updates":false,"name":"SLE10-SDK-SP1-Online"},{"name":"SLE10-SDK-SP1-Online","installer_updates":false,"description":"SLE10-SDK-SP1-Online for sles-10-ppc","enabled":true,"id":1297,"autorefresh":true,"distro_target":"sles-10-ppc","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sles-10-ppc/"},{"id":1298,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Updates/sles-10-s390x/","distro_target":"sles-10-s390x","autorefresh":true,"installer_updates":false,"name":"SLE10-SDK-SP1-Updates","description":"SLE10-SDK-SP1-Updates for sles-10-s390x"},{"id":1299,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Updates/sled-10-x86_64/","autorefresh":true,"distro_target":"sled-10-x86_64","name":"SLE10-SDK-SP1-Updates","installer_updates":false,"description":"SLE10-SDK-SP1-Updates for sled-10-x86_64"},{"installer_updates":false,"name":"SLE10-SDK-SP1-Updates","description":"SLE10-SDK-SP1-Updates for sles-10-x86_64","id":1300,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Updates/sles-10-x86_64/","distro_target":"sles-10-x86_64","autorefresh":true},{"name":"SLE10-SDK-SP1-Online","installer_updates":false,"description":"SLE10-SDK-SP1-Online for sles-10-ia64","id":1301,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sles-10-ia64/","autorefresh":true,"distro_target":"sles-10-ia64"},{"installer_updates":false,"name":"SLE10-SDK-SP1-Updates","description":"SLE10-SDK-SP1-Updates for sled-10-i586","id":1302,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Updates/sled-10-i586/","distro_target":"sled-10-i586","autorefresh":true},{"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sles-10-i586/","autorefresh":true,"distro_target":"sles-10-i586","id":1303,"enabled":true,"description":"SLE10-SDK-SP1-Online for sles-10-i586","name":"SLE10-SDK-SP1-Online","installer_updates":false},{"enabled":true,"id":1304,"autorefresh":true,"distro_target":"sles-10-ia64","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Updates/sles-10-ia64/","name":"SLE10-SDK-SP1-Updates","installer_updates":false,"description":"SLE10-SDK-SP1-Updates for sles-10-ia64"},{"enabled":true,"id":1305,"distro_target":"sles-10-ppc","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Updates/sles-10-ppc/","installer_updates":false,"name":"SLE10-SDK-SP1-Updates","description":"SLE10-SDK-SP1-Updates for sles-10-ppc"},{"id":1306,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Updates/sles-10-i586/","distro_target":"sles-10-i586","autorefresh":true,"installer_updates":false,"name":"SLE10-SDK-SP1-Updates","description":"SLE10-SDK-SP1-Updates for sles-10-i586"},{"id":1307,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sled-10-x86_64/","distro_target":"sled-10-x86_64","autorefresh":true,"installer_updates":false,"name":"SLE10-SDK-SP1-Online","description":"SLE10-SDK-SP1-Online for sled-10-x86_64"}],"online_predecessor_ids":[],"product_class":"SLE-SDK","product_type":"extension","cpe":null,"recommended":false,"version":"10","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Software Development Kit","release_type":null,"former_identifier":"SUSE-Linux-Enterprise-SDK-SP1","friendly_name":"SUSE Linux Enterprise Software Development Kit 10 SP1","migration_extra":false,"friendly_version":"10 SP1","extensions":[],"id":1174,"release_stage":"released","identifier":"SUSE-Linux-Enterprise-SDK-SP1"},{"version":"10","recommended":false,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Software Development Kit 10 (Migration)","release_type":null,"former_identifier":"SUSE-Linux-Enterprise-SDK-SP1-migration","name":"SUSE Linux Enterprise Software Development Kit","offline_predecessor_ids":[],"friendly_version":"10","release_stage":"released","id":1175,"identifier":"SUSE-Linux-Enterprise-SDK-SP1-migration","extensions":[],"description":null,"shortname":null,"free":true,"arch":null,"eula_url":"","repositories":[{"name":"SLE10-SDK-SP1-Online","installer_updates":false,"description":"SLE10-SDK-SP1-Online for sles-10-s390x","id":1294,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sles-10-s390x/","autorefresh":true,"distro_target":"sles-10-s390x"},{"enabled":true,"id":1295,"autorefresh":true,"distro_target":"sles-10-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sles-10-x86_64/","name":"SLE10-SDK-SP1-Online","installer_updates":false,"description":"SLE10-SDK-SP1-Online for sles-10-x86_64"},{"enabled":true,"id":1296,"autorefresh":true,"distro_target":"sled-10-i586","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sled-10-i586/","name":"SLE10-SDK-SP1-Online","installer_updates":false,"description":"SLE10-SDK-SP1-Online for sled-10-i586"},{"enabled":true,"id":1297,"autorefresh":true,"distro_target":"sles-10-ppc","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sles-10-ppc/","name":"SLE10-SDK-SP1-Online","installer_updates":false,"description":"SLE10-SDK-SP1-Online for sles-10-ppc"},{"installer_updates":false,"name":"SLE10-SDK-SP1-Online","description":"SLE10-SDK-SP1-Online for sles-10-ia64","enabled":true,"id":1301,"distro_target":"sles-10-ia64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sles-10-ia64/"},{"name":"SLE10-SDK-SP1-Online","installer_updates":false,"description":"SLE10-SDK-SP1-Online for sles-10-i586","enabled":true,"id":1303,"autorefresh":true,"distro_target":"sles-10-i586","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sles-10-i586/"},{"name":"SLE10-SDK-SP1-Online","installer_updates":false,"description":"SLE10-SDK-SP1-Online for sled-10-x86_64","id":1307,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sled-10-x86_64/","autorefresh":true,"distro_target":"sled-10-x86_64"}],"online_predecessor_ids":[],"product_class":"SLE-SDK","predecessor_ids":[],"cpe":null,"product_type":"extension"}],"free":false,"shortname":null,"description":null,"arch":"ppc64","eula_url":"","online_predecessor_ids":[],"repositories":[{"id":640,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLES10-SP1-Online/sles-10-ppc/","distro_target":"sles-10-ppc","autorefresh":true,"installer_updates":false,"name":"SLES10-SP1-Online","description":"SLES10-SP1-Online for sles-10-ppc"},{"installer_updates":false,"name":"SLES10-SP1-LTSS-Updates","description":"SLES10-SP1-LTSS-Updates for sles-10-i586","enabled":true,"id":642,"distro_target":"sles-10-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLES10-SP1-LTSS-Updates/sles-10-i586/"},{"enabled":true,"id":643,"distro_target":"sles-10-ia64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLES10-SP1-LTSS-Updates/sles-10-ia64/","installer_updates":false,"name":"SLES10-SP1-LTSS-Updates","description":"SLES10-SP1-LTSS-Updates for sles-10-ia64"},{"name":"SLES10-SP1-LTSS-Updates","installer_updates":false,"description":"SLES10-SP1-LTSS-Updates for sles-10-s390x","enabled":true,"id":644,"autorefresh":true,"distro_target":"sles-10-s390x","url":"https://updates.suse.com/repo/$RCE/SLES10-SP1-LTSS-Updates/sles-10-s390x/"},{"description":"SLES10-SP1-LTSS-Updates for sles-10-x86_64","name":"SLES10-SP1-LTSS-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sles-10-x86_64","url":"https://updates.suse.com/repo/$RCE/SLES10-SP1-LTSS-Updates/sles-10-x86_64/","enabled":true,"id":645},{"id":647,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLES10-SP1-LTSS-Updates/sles-10-ppc/","distro_target":"sles-10-ppc","autorefresh":true,"installer_updates":false,"name":"SLES10-SP1-LTSS-Updates","description":"SLES10-SP1-LTSS-Updates for sles-10-ppc"},{"distro_target":"sles-10-ppc","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP1-Debuginfo-Updates/sles-10-ppc/","enabled":false,"id":648,"description":"SLE10-SP1-Debuginfo-Updates for sles-10-ppc","installer_updates":false,"name":"SLE10-SP1-Debuginfo-Updates"},{"url":"https://updates.suse.com/repo/$RCE/SLES10-SP1-Updates/sles-10-ppc/","autorefresh":true,"distro_target":"sles-10-ppc","id":649,"enabled":true,"description":"SLES10-SP1-Updates for sles-10-ppc","name":"SLES10-SP1-Updates","installer_updates":false}],"product_class":"SLES-PPC","predecessor_ids":[],"product_type":"base","cpe":null},{"recommended":false,"version":"10","name":"SUSE Linux Enterprise Server","offline_predecessor_ids":[],"friendly_name":"SUSE Linux Enterprise Server 10 SP1 online ia64","migration_extra":false,"release_type":"online","former_identifier":"SUSE-Linux-Enterprise-Server-SP1","friendly_version":"10 SP1","extensions":[{"former_identifier":"SUSE-Linux-Enterprise-SDK-SP1","release_type":null,"friendly_name":"SUSE Linux Enterprise Software Development Kit 10 SP1","migration_extra":false,"offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Software Development Kit","version":"10","recommended":false,"release_stage":"released","id":1174,"identifier":"SUSE-Linux-Enterprise-SDK-SP1","extensions":[],"friendly_version":"10 SP1","arch":null,"eula_url":"","free":true,"description":null,"shortname":null,"product_type":"extension","cpe":null,"product_class":"SLE-SDK","online_predecessor_ids":[],"repositories":[{"name":"SLE10-SDK-SP1-Online","installer_updates":false,"description":"SLE10-SDK-SP1-Online for sles-10-s390x","id":1294,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sles-10-s390x/","autorefresh":true,"distro_target":"sles-10-s390x"},{"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sles-10-x86_64/","autorefresh":true,"distro_target":"sles-10-x86_64","id":1295,"enabled":true,"description":"SLE10-SDK-SP1-Online for sles-10-x86_64","name":"SLE10-SDK-SP1-Online","installer_updates":false},{"description":"SLE10-SDK-SP1-Online for sled-10-i586","installer_updates":false,"name":"SLE10-SDK-SP1-Online","distro_target":"sled-10-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sled-10-i586/","enabled":true,"id":1296},{"id":1297,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sles-10-ppc/","autorefresh":true,"distro_target":"sles-10-ppc","name":"SLE10-SDK-SP1-Online","installer_updates":false,"description":"SLE10-SDK-SP1-Online for sles-10-ppc"},{"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Updates/sles-10-s390x/","distro_target":"sles-10-s390x","autorefresh":true,"id":1298,"enabled":true,"description":"SLE10-SDK-SP1-Updates for sles-10-s390x","installer_updates":false,"name":"SLE10-SDK-SP1-Updates"},{"name":"SLE10-SDK-SP1-Updates","installer_updates":false,"description":"SLE10-SDK-SP1-Updates for sled-10-x86_64","enabled":true,"id":1299,"autorefresh":true,"distro_target":"sled-10-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Updates/sled-10-x86_64/"},{"description":"SLE10-SDK-SP1-Updates for sles-10-x86_64","installer_updates":false,"name":"SLE10-SDK-SP1-Updates","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Updates/sles-10-x86_64/","distro_target":"sles-10-x86_64","autorefresh":true,"id":1300,"enabled":true},{"id":1301,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sles-10-ia64/","distro_target":"sles-10-ia64","autorefresh":true,"installer_updates":false,"name":"SLE10-SDK-SP1-Online","description":"SLE10-SDK-SP1-Online for sles-10-ia64"},{"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Updates/sled-10-i586/","autorefresh":true,"distro_target":"sled-10-i586","id":1302,"enabled":true,"description":"SLE10-SDK-SP1-Updates for sled-10-i586","name":"SLE10-SDK-SP1-Updates","installer_updates":false},{"description":"SLE10-SDK-SP1-Online for sles-10-i586","installer_updates":false,"name":"SLE10-SDK-SP1-Online","distro_target":"sles-10-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sles-10-i586/","enabled":true,"id":1303},{"name":"SLE10-SDK-SP1-Updates","installer_updates":false,"description":"SLE10-SDK-SP1-Updates for sles-10-ia64","enabled":true,"id":1304,"autorefresh":true,"distro_target":"sles-10-ia64","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Updates/sles-10-ia64/"},{"id":1305,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Updates/sles-10-ppc/","autorefresh":true,"distro_target":"sles-10-ppc","name":"SLE10-SDK-SP1-Updates","installer_updates":false,"description":"SLE10-SDK-SP1-Updates for sles-10-ppc"},{"autorefresh":true,"distro_target":"sles-10-i586","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Updates/sles-10-i586/","enabled":true,"id":1306,"description":"SLE10-SDK-SP1-Updates for sles-10-i586","name":"SLE10-SDK-SP1-Updates","installer_updates":false},{"description":"SLE10-SDK-SP1-Online for sled-10-x86_64","name":"SLE10-SDK-SP1-Online","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sled-10-x86_64/","autorefresh":true,"distro_target":"sled-10-x86_64","id":1307,"enabled":true}],"predecessor_ids":[]},{"predecessor_ids":[],"repositories":[{"installer_updates":false,"name":"SLE10-SDK-SP1-Online","description":"SLE10-SDK-SP1-Online for sles-10-s390x","enabled":true,"id":1294,"distro_target":"sles-10-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sles-10-s390x/"},{"enabled":true,"id":1295,"distro_target":"sles-10-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sles-10-x86_64/","installer_updates":false,"name":"SLE10-SDK-SP1-Online","description":"SLE10-SDK-SP1-Online for sles-10-x86_64"},{"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sled-10-i586/","distro_target":"sled-10-i586","autorefresh":true,"id":1296,"enabled":true,"description":"SLE10-SDK-SP1-Online for sled-10-i586","installer_updates":false,"name":"SLE10-SDK-SP1-Online"},{"description":"SLE10-SDK-SP1-Online for sles-10-ppc","installer_updates":false,"name":"SLE10-SDK-SP1-Online","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sles-10-ppc/","distro_target":"sles-10-ppc","autorefresh":true,"id":1297,"enabled":true},{"id":1301,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sles-10-ia64/","distro_target":"sles-10-ia64","autorefresh":true,"installer_updates":false,"name":"SLE10-SDK-SP1-Online","description":"SLE10-SDK-SP1-Online for sles-10-ia64"},{"description":"SLE10-SDK-SP1-Online for sles-10-i586","name":"SLE10-SDK-SP1-Online","installer_updates":false,"autorefresh":true,"distro_target":"sles-10-i586","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sles-10-i586/","enabled":true,"id":1303},{"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sled-10-x86_64/","distro_target":"sled-10-x86_64","autorefresh":true,"id":1307,"enabled":true,"description":"SLE10-SDK-SP1-Online for sled-10-x86_64","installer_updates":false,"name":"SLE10-SDK-SP1-Online"}],"online_predecessor_ids":[],"product_class":"SLE-SDK","cpe":null,"product_type":"extension","description":null,"shortname":null,"free":true,"eula_url":"","arch":null,"friendly_version":"10","extensions":[],"id":1175,"release_stage":"released","identifier":"SUSE-Linux-Enterprise-SDK-SP1-migration","recommended":false,"version":"10","name":"SUSE Linux Enterprise Software Development Kit","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Software Development Kit 10 (Migration)","release_type":null,"former_identifier":"SUSE-Linux-Enterprise-SDK-SP1-migration"}],"identifier":"SUSE-Linux-Enterprise-Server-SP1","release_stage":"released","id":763,"description":null,"shortname":null,"free":false,"eula_url":"","arch":"ia64","predecessor_ids":[],"repositories":[{"enabled":true,"id":642,"autorefresh":true,"distro_target":"sles-10-i586","url":"https://updates.suse.com/repo/$RCE/SLES10-SP1-LTSS-Updates/sles-10-i586/","name":"SLES10-SP1-LTSS-Updates","installer_updates":false,"description":"SLES10-SP1-LTSS-Updates for sles-10-i586"},{"distro_target":"sles-10-ia64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLES10-SP1-LTSS-Updates/sles-10-ia64/","enabled":true,"id":643,"description":"SLES10-SP1-LTSS-Updates for sles-10-ia64","installer_updates":false,"name":"SLES10-SP1-LTSS-Updates"},{"description":"SLES10-SP1-LTSS-Updates for sles-10-s390x","installer_updates":false,"name":"SLES10-SP1-LTSS-Updates","distro_target":"sles-10-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLES10-SP1-LTSS-Updates/sles-10-s390x/","enabled":true,"id":644},{"name":"SLES10-SP1-LTSS-Updates","installer_updates":false,"description":"SLES10-SP1-LTSS-Updates for sles-10-x86_64","id":645,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLES10-SP1-LTSS-Updates/sles-10-x86_64/","autorefresh":true,"distro_target":"sles-10-x86_64"},{"distro_target":"sles-10-ppc","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLES10-SP1-LTSS-Updates/sles-10-ppc/","enabled":true,"id":647,"description":"SLES10-SP1-LTSS-Updates for sles-10-ppc","installer_updates":false,"name":"SLES10-SP1-LTSS-Updates"},{"description":"SLES10-SP1-Online for sles-10-ia64","installer_updates":false,"name":"SLES10-SP1-Online","distro_target":"sles-10-ia64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLES10-SP1-Online/sles-10-ia64/","enabled":true,"id":743},{"id":794,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLES10-SP1-Updates/sles-10-ia64/","autorefresh":true,"distro_target":"sles-10-ia64","name":"SLES10-SP1-Updates","installer_updates":false,"description":"SLES10-SP1-Updates for sles-10-ia64"},{"enabled":false,"id":795,"autorefresh":true,"distro_target":"sles-10-ia64","url":"https://updates.suse.com/repo/$RCE/SLE10-SP1-Debuginfo-Updates/sles-10-ia64/","name":"SLE10-SP1-Debuginfo-Updates","installer_updates":false,"description":"SLE10-SP1-Debuginfo-Updates for sles-10-ia64"}],"online_predecessor_ids":[],"product_class":"SLES-IA","cpe":null,"product_type":"base"},{"product_type":"base","cpe":null,"online_predecessor_ids":[],"repositories":[{"description":"SLES10-SP2-Online for sles-10-s390x","installer_updates":false,"name":"SLES10-SP2-Online","url":"https://updates.suse.com/repo/$RCE/SLES10-SP2-Online/sles-10-s390x/","distro_target":"sles-10-s390x","autorefresh":true,"id":744,"enabled":true}],"product_class":"SLES-Z","predecessor_ids":[],"arch":"s390","eula_url":"","free":false,"shortname":null,"description":null,"identifier":"SUSE-Linux-Enterprise-Server-SP2-migration","release_stage":"released","id":764,"extensions":[],"friendly_version":"10","former_identifier":"SUSE-Linux-Enterprise-Server-SP2-migration","release_type":null,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Server 10 s390 (Migration)","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Server","version":"10","recommended":false},{"cpe":null,"product_type":"base","repositories":[{"description":"SLES10-SP3-Online for sles-10-i586","name":"SLES10-SP3-Online","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLES10-SP3-Online/sles-10-i586/","autorefresh":true,"distro_target":"sles-10-i586","id":663,"enabled":true}],"online_predecessor_ids":[],"product_class":"7261","predecessor_ids":[],"arch":"i586","eula_url":"","shortname":null,"description":null,"free":false,"release_stage":"released","id":765,"identifier":"SUSE-Linux-Enterprise-Server-SP3-migration","extensions":[],"friendly_version":"10","friendly_name":"SUSE Linux Enterprise Server 10 i586 (Migration)","migration_extra":false,"release_type":null,"former_identifier":"SUSE-Linux-Enterprise-Server-SP3-migration","name":"SUSE Linux Enterprise Server","offline_predecessor_ids":[],"version":"10","recommended":false},{"online_predecessor_ids":[],"product_class":"7261","repositories":[{"description":"SLES10-SP3-Online for sles-10-i586","name":"SLES10-SP3-Online","installer_updates":false,"autorefresh":true,"distro_target":"sles-10-i586","url":"https://updates.suse.com/repo/$RCE/SLES10-SP3-Online/sles-10-i586/","enabled":true,"id":663},{"description":"SLE10-SP3-Debuginfo-Updates for sles-10-i586","installer_updates":false,"name":"SLE10-SP3-Debuginfo-Updates","distro_target":"sles-10-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Updates/sles-10-i586/","enabled":false,"id":664},{"installer_updates":false,"name":"SLES10-SP3-LTSS-Updates","description":"SLES10-SP3-LTSS-Updates for sles-10-i586","enabled":true,"id":666,"distro_target":"sles-10-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLES10-SP3-LTSS-Updates/sles-10-i586/"},{"description":"SLE10-SP3-Debuginfo-Online for sles-10-i586","installer_updates":false,"name":"SLE10-SP3-Debuginfo-Online","url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Online/sles-10-i586/","distro_target":"sles-10-i586","autorefresh":true,"id":667,"enabled":false},{"description":"SLES10-SP3-Pool for sles-10-i586","name":"SLES10-SP3-Pool","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLES10-SP3-Pool/sles-10-i586/","autorefresh":false,"distro_target":"sles-10-i586","id":668,"enabled":false},{"description":"SLE10-SP3-Debuginfo-Pool for sles-10-i586","name":"SLE10-SP3-Debuginfo-Pool","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Pool/sles-10-i586/","autorefresh":false,"distro_target":"sles-10-i586","id":669,"enabled":false},{"name":"SLES10-SP3-Updates","installer_updates":false,"description":"SLES10-SP3-Updates for sles-10-i586","enabled":true,"id":670,"autorefresh":true,"distro_target":"sles-10-i586","url":"https://updates.suse.com/repo/$RCE/SLES10-SP3-Updates/sles-10-i586/"}],"predecessor_ids":[],"product_type":"base","cpe":null,"free":false,"description":null,"shortname":null,"arch":"i686","eula_url":"","friendly_version":"10 SP3","id":766,"release_stage":"released","identifier":"SUSE-Linux-Enterprise-Server-SP3","extensions":[{"description":null,"shortname":null,"free":true,"eula_url":"","arch":null,"predecessor_ids":[],"repositories":[{"description":"SLE10-SDK-SP3-Pool for sles-10-ppc","name":"SLE10-SDK-SP3-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sles-10-ppc","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Pool/sles-10-ppc/","enabled":true,"id":1322},{"installer_updates":false,"name":"SLE10-SDK-SP3-Pool","description":"SLE10-SDK-SP3-Pool for sles-10-x86_64","id":1323,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Pool/sles-10-x86_64/","distro_target":"sles-10-x86_64","autorefresh":false},{"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sled-10-i586/","autorefresh":true,"distro_target":"sled-10-i586","id":1324,"enabled":true,"description":"SLE10-SDK-SP3-Online for sled-10-i586","name":"SLE10-SDK-SP3-Online","installer_updates":false},{"installer_updates":false,"name":"SLE10-SDK-SP3-Updates","description":"SLE10-SDK-SP3-Updates for sled-10-x86_64","id":1325,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Updates/sled-10-x86_64/","distro_target":"sled-10-x86_64","autorefresh":true},{"id":1326,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sled-10-x86_64/","distro_target":"sled-10-x86_64","autorefresh":true,"installer_updates":false,"name":"SLE10-SDK-SP3-Online","description":"SLE10-SDK-SP3-Online for sled-10-x86_64"},{"enabled":true,"id":1327,"autorefresh":false,"distro_target":"sled-10-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Pool/sled-10-x86_64/","name":"SLE10-SDK-SP3-Pool","installer_updates":false,"description":"SLE10-SDK-SP3-Pool for sled-10-x86_64"},{"name":"SLE10-SDK-SP3-Online","installer_updates":false,"description":"SLE10-SDK-SP3-Online for sles-10-ia64","id":1328,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sles-10-ia64/","autorefresh":true,"distro_target":"sles-10-ia64"},{"autorefresh":true,"distro_target":"sles-10-ia64","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Updates/sles-10-ia64/","enabled":true,"id":1329,"description":"SLE10-SDK-SP3-Updates for sles-10-ia64","name":"SLE10-SDK-SP3-Updates","installer_updates":false},{"name":"SLE10-SDK-SP3-Online","installer_updates":false,"description":"SLE10-SDK-SP3-Online for sles-10-i586","enabled":true,"id":1330,"autorefresh":true,"distro_target":"sles-10-i586","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sles-10-i586/"},{"description":"SLE10-SDK-SP3-Pool for sles-10-ia64","name":"SLE10-SDK-SP3-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sles-10-ia64","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Pool/sles-10-ia64/","enabled":true,"id":1331},{"description":"SLE10-SDK-SP3-Updates for sles-10-x86_64","name":"SLE10-SDK-SP3-Updates","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Updates/sles-10-x86_64/","autorefresh":true,"distro_target":"sles-10-x86_64","id":1332,"enabled":true},{"name":"SLE10-SDK-SP3-Pool","installer_updates":false,"description":"SLE10-SDK-SP3-Pool for sles-10-i586","id":1333,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Pool/sles-10-i586/","autorefresh":false,"distro_target":"sles-10-i586"},{"id":1334,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Updates/sles-10-i586/","autorefresh":true,"distro_target":"sles-10-i586","name":"SLE10-SDK-SP3-Updates","installer_updates":false,"description":"SLE10-SDK-SP3-Updates for sles-10-i586"},{"name":"SLE10-SDK-SP3-Online","installer_updates":false,"description":"SLE10-SDK-SP3-Online for sles-10-s390x","id":1335,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sles-10-s390x/","autorefresh":true,"distro_target":"sles-10-s390x"},{"name":"SLE10-SDK-SP3-Updates","installer_updates":false,"description":"SLE10-SDK-SP3-Updates for sles-10-ppc","enabled":true,"id":1336,"autorefresh":true,"distro_target":"sles-10-ppc","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Updates/sles-10-ppc/"},{"id":1337,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Pool/sles-10-s390x/","autorefresh":false,"distro_target":"sles-10-s390x","name":"SLE10-SDK-SP3-Pool","installer_updates":false,"description":"SLE10-SDK-SP3-Pool for sles-10-s390x"},{"installer_updates":false,"name":"SLE10-SDK-SP3-Pool","description":"SLE10-SDK-SP3-Pool for sled-10-i586","id":1338,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Pool/sled-10-i586/","distro_target":"sled-10-i586","autorefresh":false},{"distro_target":"sles-10-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Updates/sles-10-s390x/","enabled":true,"id":1339,"description":"SLE10-SDK-SP3-Updates for sles-10-s390x","installer_updates":false,"name":"SLE10-SDK-SP3-Updates"},{"installer_updates":false,"name":"SLE10-SDK-SP3-Updates","description":"SLE10-SDK-SP3-Updates for sled-10-i586","id":1340,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Updates/sled-10-i586/","distro_target":"sled-10-i586","autorefresh":true},{"name":"SLE10-SDK-SP3-Online","installer_updates":false,"description":"SLE10-SDK-SP3-Online for sles-10-x86_64","id":1341,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sles-10-x86_64/","autorefresh":true,"distro_target":"sles-10-x86_64"},{"installer_updates":false,"name":"SLE10-SDK-SP3-Online","description":"SLE10-SDK-SP3-Online for sles-10-ppc","enabled":true,"id":1342,"distro_target":"sles-10-ppc","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sles-10-ppc/"}],"online_predecessor_ids":[],"product_class":"SLE-SDK","cpe":null,"product_type":"extension","recommended":false,"version":"10","name":"SUSE Linux Enterprise Software Development Kit","offline_predecessor_ids":[],"friendly_name":"SUSE Linux Enterprise Software Development Kit 10 SP3","migration_extra":false,"release_type":null,"former_identifier":"SUSE-Linux-Enterprise-SDK-SP3","friendly_version":"10 SP3","extensions":[],"identifier":"SUSE-Linux-Enterprise-SDK-SP3","release_stage":"released","id":1179},{"identifier":"SUSE-Linux-Enterprise-SDK-SP3-migration","release_stage":"released","id":1180,"extensions":[],"friendly_version":"10","former_identifier":"SUSE-Linux-Enterprise-SDK-SP3-migration","release_type":null,"friendly_name":"SUSE Linux Enterprise Software Development Kit 10 (Migration)","migration_extra":false,"offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Software Development Kit","version":"10","recommended":false,"product_type":"extension","cpe":null,"online_predecessor_ids":[],"product_class":"SLE-SDK","repositories":[{"enabled":true,"id":1324,"autorefresh":true,"distro_target":"sled-10-i586","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sled-10-i586/","name":"SLE10-SDK-SP3-Online","installer_updates":false,"description":"SLE10-SDK-SP3-Online for sled-10-i586"},{"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sled-10-x86_64/","autorefresh":true,"distro_target":"sled-10-x86_64","id":1326,"enabled":true,"description":"SLE10-SDK-SP3-Online for sled-10-x86_64","name":"SLE10-SDK-SP3-Online","installer_updates":false},{"name":"SLE10-SDK-SP3-Online","installer_updates":false,"description":"SLE10-SDK-SP3-Online for sles-10-ia64","id":1328,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sles-10-ia64/","autorefresh":true,"distro_target":"sles-10-ia64"},{"distro_target":"sles-10-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sles-10-i586/","enabled":true,"id":1330,"description":"SLE10-SDK-SP3-Online for sles-10-i586","installer_updates":false,"name":"SLE10-SDK-SP3-Online"},{"description":"SLE10-SDK-SP3-Online for sles-10-s390x","name":"SLE10-SDK-SP3-Online","installer_updates":false,"autorefresh":true,"distro_target":"sles-10-s390x","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sles-10-s390x/","enabled":true,"id":1335},{"description":"SLE10-SDK-SP3-Online for sles-10-x86_64","name":"SLE10-SDK-SP3-Online","installer_updates":false,"autorefresh":true,"distro_target":"sles-10-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sles-10-x86_64/","enabled":true,"id":1341},{"description":"SLE10-SDK-SP3-Online for sles-10-ppc","name":"SLE10-SDK-SP3-Online","installer_updates":false,"autorefresh":true,"distro_target":"sles-10-ppc","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sles-10-ppc/","enabled":true,"id":1342}],"predecessor_ids":[],"arch":null,"eula_url":"","free":true,"description":null,"shortname":null},{"product_class":"SLESMT","online_predecessor_ids":[],"repositories":[{"id":664,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Updates/sles-10-i586/","autorefresh":true,"distro_target":"sles-10-i586","name":"SLE10-SP3-Debuginfo-Updates","installer_updates":false,"description":"SLE10-SP3-Debuginfo-Updates for sles-10-i586"},{"url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Pool/sles-10-i586/","distro_target":"sles-10-i586","autorefresh":false,"id":669,"enabled":false,"description":"SLE10-SP3-Debuginfo-Pool for sles-10-i586","installer_updates":false,"name":"SLE10-SP3-Debuginfo-Pool"},{"description":"SLE10-SP3-Debuginfo-Pool for sles-10-s390x","installer_updates":false,"name":"SLE10-SP3-Debuginfo-Pool","url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Pool/sles-10-s390x/","distro_target":"sles-10-s390x","autorefresh":false,"id":672,"enabled":false},{"autorefresh":true,"distro_target":"sles-10-s390x","url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Updates/sles-10-s390x/","enabled":false,"id":675,"description":"SLE10-SP3-Debuginfo-Updates for sles-10-s390x","name":"SLE10-SP3-Debuginfo-Updates","installer_updates":false},{"description":"SLE10-SP3-Debuginfo-Updates for sles-10-x86_64","installer_updates":false,"name":"SLE10-SP3-Debuginfo-Updates","url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Updates/sles-10-x86_64/","distro_target":"sles-10-x86_64","autorefresh":true,"id":750,"enabled":false},{"description":"SLE10-SP3-Debuginfo-Pool for sles-10-x86_64","name":"SLE10-SP3-Debuginfo-Pool","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Pool/sles-10-x86_64/","autorefresh":false,"distro_target":"sles-10-x86_64","id":751,"enabled":false},{"enabled":false,"id":779,"autorefresh":false,"distro_target":"sles-10-ppc","url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Pool/sles-10-ppc/","name":"SLE10-SP3-Debuginfo-Pool","installer_updates":false,"description":"SLE10-SP3-Debuginfo-Pool for sles-10-ppc"},{"description":"SLE10-SP3-Debuginfo-Updates for sles-10-ppc","name":"SLE10-SP3-Debuginfo-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sles-10-ppc","url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Updates/sles-10-ppc/","enabled":false,"id":780},{"enabled":false,"id":788,"autorefresh":false,"distro_target":"sles-10-ia64","url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Pool/sles-10-ia64/","name":"SLE10-SP3-Debuginfo-Pool","installer_updates":false,"description":"SLE10-SP3-Debuginfo-Pool for sles-10-ia64"},{"name":"SLE10-SP3-Debuginfo-Updates","installer_updates":false,"description":"SLE10-SP3-Debuginfo-Updates for sles-10-ia64","enabled":false,"id":789,"autorefresh":true,"distro_target":"sles-10-ia64","url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Updates/sles-10-ia64/"},{"name":"SLE10-SP3-Debuginfo-Pool","installer_updates":false,"description":"SLE10-SP3-Debuginfo-Pool for sled-10-x86_64","id":869,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Pool/sled-10-x86_64/","autorefresh":false,"distro_target":"sled-10-x86_64"},{"id":870,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Updates/sled-10-x86_64/","distro_target":"sled-10-x86_64","autorefresh":true,"installer_updates":false,"name":"SLE10-SP3-Debuginfo-Updates","description":"SLE10-SP3-Debuginfo-Updates for sled-10-x86_64"},{"description":"SLE10-SP3-Debuginfo-Pool for sled-10-i586","name":"SLE10-SP3-Debuginfo-Pool","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Pool/sled-10-i586/","autorefresh":false,"distro_target":"sled-10-i586","id":895,"enabled":false},{"enabled":false,"id":896,"autorefresh":true,"distro_target":"sled-10-i586","url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Updates/sled-10-i586/","name":"SLE10-SP3-Debuginfo-Updates","installer_updates":false,"description":"SLE10-SP3-Debuginfo-Updates for sled-10-i586"},{"description":"SLE10-SP3-SMT-Updates for sles-10-i586","name":"SLE10-SP3-SMT-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sles-10-i586","url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-SMT-Updates/sles-10-i586/","enabled":true,"id":1403},{"name":"SLE10-SP3-SMT-Updates","installer_updates":false,"description":"SLE10-SP3-SMT-Updates for sles-10-x86_64","enabled":true,"id":1404,"autorefresh":true,"distro_target":"sles-10-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-SMT-Updates/sles-10-x86_64/"}],"predecessor_ids":[],"cpe":null,"product_type":"extension","description":null,"shortname":null,"free":true,"arch":null,"eula_url":"","friendly_version":"10 SP3","release_stage":"released","identifier":"SUSE-Linux-Enterprise-SMT-SP3","id":1197,"extensions":[],"version":"10.3","recommended":false,"friendly_name":"SUSE Linux Enterprise Subscription Management Tool 10 SP3","migration_extra":false,"release_type":null,"former_identifier":"SUSE-Linux-Enterprise-SMT-SP3","name":"SUSE Linux Enterprise Subscription Management Tool","offline_predecessor_ids":[]}],"version":"10","recommended":false,"former_identifier":"SUSE-Linux-Enterprise-Server-SP3","release_type":"online","migration_extra":false,"friendly_name":"SUSE Linux Enterprise Server 10 SP3 online i686","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Server"},{"online_predecessor_ids":[],"repositories":[{"url":"https://updates.suse.com/repo/$RCE/SLES10-SP3-Online/sles-10-i586/","distro_target":"sles-10-i586","autorefresh":true,"id":663,"enabled":true,"description":"SLES10-SP3-Online for sles-10-i586","installer_updates":false,"name":"SLES10-SP3-Online"},{"id":664,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Updates/sles-10-i586/","autorefresh":true,"distro_target":"sles-10-i586","name":"SLE10-SP3-Debuginfo-Updates","installer_updates":false,"description":"SLE10-SP3-Debuginfo-Updates for sles-10-i586"},{"url":"https://updates.suse.com/repo/$RCE/SLES10-SP3-LTSS-Updates/sles-10-i586/","distro_target":"sles-10-i586","autorefresh":true,"id":666,"enabled":true,"description":"SLES10-SP3-LTSS-Updates for sles-10-i586","installer_updates":false,"name":"SLES10-SP3-LTSS-Updates"},{"installer_updates":false,"name":"SLE10-SP3-Debuginfo-Online","description":"SLE10-SP3-Debuginfo-Online for sles-10-i586","id":667,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Online/sles-10-i586/","distro_target":"sles-10-i586","autorefresh":true},{"distro_target":"sles-10-i586","autorefresh":false,"url":"https://updates.suse.com/repo/$RCE/SLES10-SP3-Pool/sles-10-i586/","enabled":false,"id":668,"description":"SLES10-SP3-Pool for sles-10-i586","installer_updates":false,"name":"SLES10-SP3-Pool"},{"id":669,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Pool/sles-10-i586/","autorefresh":false,"distro_target":"sles-10-i586","name":"SLE10-SP3-Debuginfo-Pool","installer_updates":false,"description":"SLE10-SP3-Debuginfo-Pool for sles-10-i586"},{"id":670,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLES10-SP3-Updates/sles-10-i586/","distro_target":"sles-10-i586","autorefresh":true,"installer_updates":false,"name":"SLES10-SP3-Updates","description":"SLES10-SP3-Updates for sles-10-i586"}],"product_class":"7261","predecessor_ids":[],"cpe":null,"product_type":"base","shortname":null,"description":null,"free":false,"arch":"i386","eula_url":"","friendly_version":"10 SP3","identifier":"SUSE-Linux-Enterprise-Server-SP3","release_stage":"released","id":767,"extensions":[{"eula_url":"","arch":null,"free":true,"description":null,"shortname":null,"product_type":"extension","cpe":null,"predecessor_ids":[],"online_predecessor_ids":[],"repositories":[{"installer_updates":false,"name":"SLE10-SDK-SP3-Pool","description":"SLE10-SDK-SP3-Pool for sles-10-ppc","id":1322,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Pool/sles-10-ppc/","distro_target":"sles-10-ppc","autorefresh":false},{"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Pool/sles-10-x86_64/","distro_target":"sles-10-x86_64","autorefresh":false,"id":1323,"enabled":true,"description":"SLE10-SDK-SP3-Pool for sles-10-x86_64","installer_updates":false,"name":"SLE10-SDK-SP3-Pool"},{"id":1324,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sled-10-i586/","distro_target":"sled-10-i586","autorefresh":true,"installer_updates":false,"name":"SLE10-SDK-SP3-Online","description":"SLE10-SDK-SP3-Online for sled-10-i586"},{"id":1325,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Updates/sled-10-x86_64/","autorefresh":true,"distro_target":"sled-10-x86_64","name":"SLE10-SDK-SP3-Updates","installer_updates":false,"description":"SLE10-SDK-SP3-Updates for sled-10-x86_64"},{"id":1326,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sled-10-x86_64/","distro_target":"sled-10-x86_64","autorefresh":true,"installer_updates":false,"name":"SLE10-SDK-SP3-Online","description":"SLE10-SDK-SP3-Online for sled-10-x86_64"},{"description":"SLE10-SDK-SP3-Pool for sled-10-x86_64","name":"SLE10-SDK-SP3-Pool","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Pool/sled-10-x86_64/","autorefresh":false,"distro_target":"sled-10-x86_64","id":1327,"enabled":true},{"installer_updates":false,"name":"SLE10-SDK-SP3-Online","description":"SLE10-SDK-SP3-Online for sles-10-ia64","id":1328,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sles-10-ia64/","distro_target":"sles-10-ia64","autorefresh":true},{"id":1329,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Updates/sles-10-ia64/","distro_target":"sles-10-ia64","autorefresh":true,"installer_updates":false,"name":"SLE10-SDK-SP3-Updates","description":"SLE10-SDK-SP3-Updates for sles-10-ia64"},{"description":"SLE10-SDK-SP3-Online for sles-10-i586","name":"SLE10-SDK-SP3-Online","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sles-10-i586/","autorefresh":true,"distro_target":"sles-10-i586","id":1330,"enabled":true},{"installer_updates":false,"name":"SLE10-SDK-SP3-Pool","description":"SLE10-SDK-SP3-Pool for sles-10-ia64","enabled":true,"id":1331,"distro_target":"sles-10-ia64","autorefresh":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Pool/sles-10-ia64/"},{"enabled":true,"id":1332,"distro_target":"sles-10-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Updates/sles-10-x86_64/","installer_updates":false,"name":"SLE10-SDK-SP3-Updates","description":"SLE10-SDK-SP3-Updates for sles-10-x86_64"},{"enabled":true,"id":1333,"distro_target":"sles-10-i586","autorefresh":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Pool/sles-10-i586/","installer_updates":false,"name":"SLE10-SDK-SP3-Pool","description":"SLE10-SDK-SP3-Pool for sles-10-i586"},{"autorefresh":true,"distro_target":"sles-10-i586","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Updates/sles-10-i586/","enabled":true,"id":1334,"description":"SLE10-SDK-SP3-Updates for sles-10-i586","name":"SLE10-SDK-SP3-Updates","installer_updates":false},{"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sles-10-s390x/","distro_target":"sles-10-s390x","autorefresh":true,"id":1335,"enabled":true,"description":"SLE10-SDK-SP3-Online for sles-10-s390x","installer_updates":false,"name":"SLE10-SDK-SP3-Online"},{"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Updates/sles-10-ppc/","autorefresh":true,"distro_target":"sles-10-ppc","id":1336,"enabled":true,"description":"SLE10-SDK-SP3-Updates for sles-10-ppc","name":"SLE10-SDK-SP3-Updates","installer_updates":false},{"description":"SLE10-SDK-SP3-Pool for sles-10-s390x","installer_updates":false,"name":"SLE10-SDK-SP3-Pool","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Pool/sles-10-s390x/","distro_target":"sles-10-s390x","autorefresh":false,"id":1337,"enabled":true},{"installer_updates":false,"name":"SLE10-SDK-SP3-Pool","description":"SLE10-SDK-SP3-Pool for sled-10-i586","id":1338,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Pool/sled-10-i586/","distro_target":"sled-10-i586","autorefresh":false},{"name":"SLE10-SDK-SP3-Updates","installer_updates":false,"description":"SLE10-SDK-SP3-Updates for sles-10-s390x","id":1339,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Updates/sles-10-s390x/","autorefresh":true,"distro_target":"sles-10-s390x"},{"enabled":true,"id":1340,"distro_target":"sled-10-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Updates/sled-10-i586/","installer_updates":false,"name":"SLE10-SDK-SP3-Updates","description":"SLE10-SDK-SP3-Updates for sled-10-i586"},{"installer_updates":false,"name":"SLE10-SDK-SP3-Online","description":"SLE10-SDK-SP3-Online for sles-10-x86_64","enabled":true,"id":1341,"distro_target":"sles-10-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sles-10-x86_64/"},{"name":"SLE10-SDK-SP3-Online","installer_updates":false,"description":"SLE10-SDK-SP3-Online for sles-10-ppc","id":1342,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sles-10-ppc/","autorefresh":true,"distro_target":"sles-10-ppc"}],"product_class":"SLE-SDK","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Software Development Kit","release_type":null,"former_identifier":"SUSE-Linux-Enterprise-SDK-SP3","friendly_name":"SUSE Linux Enterprise Software Development Kit 10 SP3","migration_extra":false,"recommended":false,"version":"10","extensions":[],"identifier":"SUSE-Linux-Enterprise-SDK-SP3","release_stage":"released","id":1179,"friendly_version":"10 SP3"},{"recommended":false,"version":"10","name":"SUSE Linux Enterprise Software Development Kit","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Software Development Kit 10 (Migration)","former_identifier":"SUSE-Linux-Enterprise-SDK-SP3-migration","release_type":null,"friendly_version":"10","extensions":[],"id":1180,"release_stage":"released","identifier":"SUSE-Linux-Enterprise-SDK-SP3-migration","shortname":null,"description":null,"free":true,"eula_url":"","arch":null,"predecessor_ids":[],"repositories":[{"name":"SLE10-SDK-SP3-Online","installer_updates":false,"description":"SLE10-SDK-SP3-Online for sled-10-i586","enabled":true,"id":1324,"autorefresh":true,"distro_target":"sled-10-i586","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sled-10-i586/"},{"name":"SLE10-SDK-SP3-Online","installer_updates":false,"description":"SLE10-SDK-SP3-Online for sled-10-x86_64","enabled":true,"id":1326,"autorefresh":true,"distro_target":"sled-10-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sled-10-x86_64/"},{"description":"SLE10-SDK-SP3-Online for sles-10-ia64","installer_updates":false,"name":"SLE10-SDK-SP3-Online","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sles-10-ia64/","distro_target":"sles-10-ia64","autorefresh":true,"id":1328,"enabled":true},{"enabled":true,"id":1330,"distro_target":"sles-10-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sles-10-i586/","installer_updates":false,"name":"SLE10-SDK-SP3-Online","description":"SLE10-SDK-SP3-Online for sles-10-i586"},{"id":1335,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sles-10-s390x/","autorefresh":true,"distro_target":"sles-10-s390x","name":"SLE10-SDK-SP3-Online","installer_updates":false,"description":"SLE10-SDK-SP3-Online for sles-10-s390x"},{"installer_updates":false,"name":"SLE10-SDK-SP3-Online","description":"SLE10-SDK-SP3-Online for sles-10-x86_64","id":1341,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sles-10-x86_64/","distro_target":"sles-10-x86_64","autorefresh":true},{"enabled":true,"id":1342,"autorefresh":true,"distro_target":"sles-10-ppc","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sles-10-ppc/","name":"SLE10-SDK-SP3-Online","installer_updates":false,"description":"SLE10-SDK-SP3-Online for sles-10-ppc"}],"online_predecessor_ids":[],"product_class":"SLE-SDK","cpe":null,"product_type":"extension"},{"identifier":"SUSE-Linux-Enterprise-SMT-SP3","release_stage":"released","id":1197,"extensions":[],"friendly_version":"10 SP3","migration_extra":false,"friendly_name":"SUSE Linux Enterprise Subscription Management Tool 10 SP3","former_identifier":"SUSE-Linux-Enterprise-SMT-SP3","release_type":null,"name":"SUSE Linux Enterprise Subscription Management Tool","offline_predecessor_ids":[],"version":"10.3","recommended":false,"cpe":null,"product_type":"extension","product_class":"SLESMT","online_predecessor_ids":[],"repositories":[{"id":664,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Updates/sles-10-i586/","autorefresh":true,"distro_target":"sles-10-i586","name":"SLE10-SP3-Debuginfo-Updates","installer_updates":false,"description":"SLE10-SP3-Debuginfo-Updates for sles-10-i586"},{"installer_updates":false,"name":"SLE10-SP3-Debuginfo-Pool","description":"SLE10-SP3-Debuginfo-Pool for sles-10-i586","enabled":false,"id":669,"distro_target":"sles-10-i586","autorefresh":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Pool/sles-10-i586/"},{"enabled":false,"id":672,"distro_target":"sles-10-s390x","autorefresh":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Pool/sles-10-s390x/","installer_updates":false,"name":"SLE10-SP3-Debuginfo-Pool","description":"SLE10-SP3-Debuginfo-Pool for sles-10-s390x"},{"url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Updates/sles-10-s390x/","autorefresh":true,"distro_target":"sles-10-s390x","id":675,"enabled":false,"description":"SLE10-SP3-Debuginfo-Updates for sles-10-s390x","name":"SLE10-SP3-Debuginfo-Updates","installer_updates":false},{"enabled":false,"id":750,"distro_target":"sles-10-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Updates/sles-10-x86_64/","installer_updates":false,"name":"SLE10-SP3-Debuginfo-Updates","description":"SLE10-SP3-Debuginfo-Updates for sles-10-x86_64"},{"installer_updates":false,"name":"SLE10-SP3-Debuginfo-Pool","description":"SLE10-SP3-Debuginfo-Pool for sles-10-x86_64","id":751,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Pool/sles-10-x86_64/","distro_target":"sles-10-x86_64","autorefresh":false},{"url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Pool/sles-10-ppc/","autorefresh":false,"distro_target":"sles-10-ppc","id":779,"enabled":false,"description":"SLE10-SP3-Debuginfo-Pool for sles-10-ppc","name":"SLE10-SP3-Debuginfo-Pool","installer_updates":false},{"installer_updates":false,"name":"SLE10-SP3-Debuginfo-Updates","description":"SLE10-SP3-Debuginfo-Updates for sles-10-ppc","enabled":false,"id":780,"distro_target":"sles-10-ppc","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Updates/sles-10-ppc/"},{"distro_target":"sles-10-ia64","autorefresh":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Pool/sles-10-ia64/","enabled":false,"id":788,"description":"SLE10-SP3-Debuginfo-Pool for sles-10-ia64","installer_updates":false,"name":"SLE10-SP3-Debuginfo-Pool"},{"url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Updates/sles-10-ia64/","distro_target":"sles-10-ia64","autorefresh":true,"id":789,"enabled":false,"description":"SLE10-SP3-Debuginfo-Updates for sles-10-ia64","installer_updates":false,"name":"SLE10-SP3-Debuginfo-Updates"},{"distro_target":"sled-10-x86_64","autorefresh":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Pool/sled-10-x86_64/","enabled":false,"id":869,"description":"SLE10-SP3-Debuginfo-Pool for sled-10-x86_64","installer_updates":false,"name":"SLE10-SP3-Debuginfo-Pool"},{"url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Updates/sled-10-x86_64/","autorefresh":true,"distro_target":"sled-10-x86_64","id":870,"enabled":false,"description":"SLE10-SP3-Debuginfo-Updates for sled-10-x86_64","name":"SLE10-SP3-Debuginfo-Updates","installer_updates":false},{"id":895,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Pool/sled-10-i586/","autorefresh":false,"distro_target":"sled-10-i586","name":"SLE10-SP3-Debuginfo-Pool","installer_updates":false,"description":"SLE10-SP3-Debuginfo-Pool for sled-10-i586"},{"description":"SLE10-SP3-Debuginfo-Updates for sled-10-i586","name":"SLE10-SP3-Debuginfo-Updates","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Updates/sled-10-i586/","autorefresh":true,"distro_target":"sled-10-i586","id":896,"enabled":false},{"id":1403,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-SMT-Updates/sles-10-i586/","distro_target":"sles-10-i586","autorefresh":true,"installer_updates":false,"name":"SLE10-SP3-SMT-Updates","description":"SLE10-SP3-SMT-Updates for sles-10-i586"},{"description":"SLE10-SP3-SMT-Updates for sles-10-x86_64","name":"SLE10-SP3-SMT-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sles-10-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-SMT-Updates/sles-10-x86_64/","enabled":true,"id":1404}],"predecessor_ids":[],"arch":null,"eula_url":"","shortname":null,"description":null,"free":true}],"version":"10","recommended":false,"friendly_name":"SUSE Linux Enterprise Server 10 SP3 online i386","migration_extra":false,"former_identifier":"SUSE-Linux-Enterprise-Server-SP3","release_type":"online","name":"SUSE Linux Enterprise Server","offline_predecessor_ids":[]},{"friendly_version":"11 SP1","id":768,"release_stage":"released","identifier":"SUSE_SLES","extensions":[{"product_type":"extension","cpe":null,"predecessor_ids":[],"repositories":[{"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-WebYaST-1.1-Updates/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true,"id":825,"enabled":true,"description":"SLE11-SP1-WebYaST-1.1-Updates for sle-11-i586","installer_updates":false,"name":"SLE11-SP1-WebYaST-1.1-Updates"},{"name":"SLE11-SP1-WebYaST-1.1-Pool","installer_updates":false,"description":"SLE11-SP1-WebYaST-1.1-Pool for sle-11-i586","enabled":false,"id":826,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-WebYaST-1.1-Pool/sle-11-i586/"},{"installer_updates":false,"name":"SLE11-SP1-WebYaST-1.1-Pool","description":"SLE11-SP1-WebYaST-1.1-Pool for sle-11-x86_64","enabled":false,"id":827,"distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-WebYaST-1.1-Pool/sle-11-x86_64/"},{"name":"SLE11-SP1-WebYaST-1.1-Updates","installer_updates":false,"description":"SLE11-SP1-WebYaST-1.1-Updates for sle-11-x86_64","id":828,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-WebYaST-1.1-Updates/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64"}],"online_predecessor_ids":[],"product_class":"WEBYAST","eula_url":"","arch":null,"free":true,"shortname":null,"description":null,"extensions":[],"release_stage":"released","id":835,"identifier":"sle-11-WebYaST","friendly_version":"1.1","offline_predecessor_ids":[],"name":"SUSE WebYaST","former_identifier":"sle-11-WebYaST","release_type":null,"migration_extra":false,"friendly_name":"SUSE WebYaST 1.1","recommended":false,"version":"1.1"},{"arch":"i486","eula_url":"","free":false,"description":null,"shortname":null,"product_type":"extension","cpe":null,"online_predecessor_ids":[],"product_class":"SLE-HAE-X86","repositories":[{"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP1-Updates/sle-11-i586/","enabled":true,"id":944,"description":"SLE11-HAE-SP1-Updates for sle-11-i586","name":"SLE11-HAE-SP1-Updates","installer_updates":false},{"id":945,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP1-Pool/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","name":"SLE11-HAE-SP1-Pool","installer_updates":false,"description":"SLE11-HAE-SP1-Pool for sle-11-i586"}],"predecessor_ids":[],"former_identifier":"sle-hae","release_type":null,"friendly_name":"SUSE Linux Enterprise High Availability Extension 11 SP1 i486","migration_extra":false,"offline_predecessor_ids":[],"name":"SUSE Linux Enterprise High Availability Extension","version":"11.1","recommended":false,"id":965,"release_stage":"released","identifier":"sle-hae","extensions":[],"friendly_version":"11 SP1"},{"product_type":"extension","cpe":null,"predecessor_ids":[],"product_class":"SLE-HAE-X86","online_predecessor_ids":[],"repositories":[{"description":"SLE11-HAE-SP2-Pool for sle-11-i586","name":"SLE11-HAE-SP2-Pool","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP2-Pool/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","id":949,"enabled":true},{"description":"SLE11-HAE-SP2-Updates for sle-11-i586","installer_updates":false,"name":"SLE11-HAE-SP2-Updates","url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP2-Updates/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true,"id":950,"enabled":true}],"eula_url":"","arch":"i486","free":false,"description":null,"shortname":null,"extensions":[],"release_stage":"released","id":976,"identifier":"sle-hae-SP2-migration","friendly_version":"11 SP1","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise High Availability Extension","release_type":null,"former_identifier":"sle-hae-SP2-migration","migration_extra":false,"friendly_name":"SUSE Linux Enterprise High Availability Extension 11 SP1 i486 (Migration)","recommended":false,"version":"11.1"},{"friendly_version":"11 SP1","extensions":[],"identifier":"sle-sdk","release_stage":"released","id":1159,"recommended":false,"version":"11.1","name":"SUSE Linux Enterprise Software Development Kit","offline_predecessor_ids":[],"friendly_name":"SUSE Linux Enterprise Software Development Kit 11 SP1","migration_extra":false,"release_type":null,"former_identifier":"sle-sdk","predecessor_ids":[],"online_predecessor_ids":[],"repositories":[{"id":1257,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Updates/sle-11-ia64/","distro_target":"sle-11-ia64","autorefresh":true,"installer_updates":false,"name":"SLE11-SDK-SP1-Updates","description":"SLE11-SDK-SP1-Updates for sle-11-ia64"},{"distro_target":"sle-11-ia64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-ia64/","enabled":true,"id":1258,"description":"SLE11-SDK-SP1-Pool for sle-11-ia64","installer_updates":false,"name":"SLE11-SDK-SP1-Pool"},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-s390x/","autorefresh":true,"distro_target":"sle-11-s390x","id":1259,"enabled":true,"description":"SLE11-SDK-SP1-Pool for sle-11-s390x","name":"SLE11-SDK-SP1-Pool","installer_updates":false},{"id":1260,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Updates/sle-11-ppc64/","autorefresh":true,"distro_target":"sle-11-ppc64","name":"SLE11-SDK-SP1-Updates","installer_updates":false,"description":"SLE11-SDK-SP1-Updates for sle-11-ppc64"},{"installer_updates":false,"name":"SLE11-SDK-SP1-Pool","description":"SLE11-SDK-SP1-Pool for sle-11-ppc64","enabled":true,"id":1261,"distro_target":"sle-11-ppc64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-ppc64/"},{"description":"SLE11-SDK-SP1-Updates for sle-11-i586","name":"SLE11-SDK-SP1-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Updates/sle-11-i586/","enabled":true,"id":1262},{"description":"SLE11-SDK-SP1-Pool for sle-11-i586","installer_updates":false,"name":"SLE11-SDK-SP1-Pool","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true,"id":1263,"enabled":true},{"name":"SLE11-SDK-SP1-Pool","installer_updates":false,"description":"SLE11-SDK-SP1-Pool for sle-11-x86_64","enabled":true,"id":1264,"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-x86_64/"},{"id":1265,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Updates/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true,"installer_updates":false,"name":"SLE11-SDK-SP1-Updates","description":"SLE11-SDK-SP1-Updates for sle-11-x86_64"},{"enabled":true,"id":1266,"distro_target":"sle-11-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Updates/sle-11-s390x/","installer_updates":false,"name":"SLE11-SDK-SP1-Updates","description":"SLE11-SDK-SP1-Updates for sle-11-s390x"}],"product_class":"SLE-SDK","cpe":null,"product_type":"extension","shortname":null,"description":null,"free":true,"eula_url":"","arch":null},{"product_type":"extension","cpe":null,"product_class":"SLE-SDK","online_predecessor_ids":[],"repositories":[{"id":1258,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-ia64/","distro_target":"sle-11-ia64","autorefresh":true,"installer_updates":false,"name":"SLE11-SDK-SP1-Pool","description":"SLE11-SDK-SP1-Pool for sle-11-ia64"},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-s390x/","autorefresh":true,"distro_target":"sle-11-s390x","id":1259,"enabled":true,"description":"SLE11-SDK-SP1-Pool for sle-11-s390x","name":"SLE11-SDK-SP1-Pool","installer_updates":false},{"autorefresh":true,"distro_target":"sle-11-ppc64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-ppc64/","enabled":true,"id":1261,"description":"SLE11-SDK-SP1-Pool for sle-11-ppc64","name":"SLE11-SDK-SP1-Pool","installer_updates":false},{"id":1263,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","name":"SLE11-SDK-SP1-Pool","installer_updates":false,"description":"SLE11-SDK-SP1-Pool for sle-11-i586"},{"description":"SLE11-SDK-SP1-Pool for sle-11-x86_64","installer_updates":false,"name":"SLE11-SDK-SP1-Pool","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true,"id":1264,"enabled":true}],"predecessor_ids":[],"arch":null,"eula_url":"","free":true,"description":null,"shortname":null,"release_stage":"released","id":1162,"identifier":"sle-sdk-SP1-migration","extensions":[],"friendly_version":"11","former_identifier":"sle-sdk-SP1-migration","release_type":null,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Software Development Kit 11 (Migration)","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Software Development Kit","version":"11","recommended":false},{"arch":null,"eula_url":"","free":true,"shortname":null,"description":null,"product_type":"extension","cpe":null,"online_predecessor_ids":[],"product_class":"SLE-SDK","repositories":[{"name":"SLE11-SDK-SP2-Core","installer_updates":false,"description":"SLE11-SDK-SP2-Core for sle-11-ia64","id":1267,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-ia64/","autorefresh":true,"distro_target":"sle-11-ia64"},{"description":"SLE11-SDK-SP2-Core for sle-11-s390x","installer_updates":false,"name":"SLE11-SDK-SP2-Core","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-s390x/","distro_target":"sle-11-s390x","autorefresh":true,"id":1268,"enabled":true},{"id":1269,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-s390x/","distro_target":"sle-11-s390x","autorefresh":true,"installer_updates":false,"name":"SLE11-SDK-SP2-Updates","description":"SLE11-SDK-SP2-Updates for sle-11-s390x"},{"id":1270,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-ppc64/","autorefresh":true,"distro_target":"sle-11-ppc64","name":"SLE11-SDK-SP2-Updates","installer_updates":false,"description":"SLE11-SDK-SP2-Updates for sle-11-ppc64"},{"installer_updates":false,"name":"SLE11-SDK-SP2-Updates","description":"SLE11-SDK-SP2-Updates for sle-11-i586","id":1271,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true},{"distro_target":"sle-11-ia64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-ia64/","enabled":true,"id":1272,"description":"SLE11-SDK-SP2-Updates for sle-11-ia64","installer_updates":false,"name":"SLE11-SDK-SP2-Updates"},{"installer_updates":false,"name":"SLE11-SDK-SP2-Core","description":"SLE11-SDK-SP2-Core for sle-11-ppc64","id":1273,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-ppc64/","distro_target":"sle-11-ppc64","autorefresh":true},{"installer_updates":false,"name":"SLE11-SDK-SP2-Core","description":"SLE11-SDK-SP2-Core for sle-11-i586","id":1274,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true},{"name":"SLE11-SDK-SP2-Core","installer_updates":false,"description":"SLE11-SDK-SP2-Core for sle-11-x86_64","id":1275,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64"},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true,"id":1276,"enabled":true,"description":"SLE11-SDK-SP2-Updates for sle-11-x86_64","installer_updates":false,"name":"SLE11-SDK-SP2-Updates"}],"predecessor_ids":[],"release_type":null,"former_identifier":"sle-sdk-SP2-migration","migration_extra":false,"friendly_name":"SUSE Linux Enterprise Software Development Kit 11 SP1 (Migration)","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Software Development Kit","version":"11.1","recommended":false,"identifier":"sle-sdk-SP2-migration","release_stage":"released","id":1163,"extensions":[],"friendly_version":"11 SP1"},{"predecessor_ids":[],"repositories":[{"enabled":true,"id":1386,"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-SMT-Updates/sle-11-x86_64/","name":"SLE11-SP1-SMT-Updates","installer_updates":false,"description":"SLE11-SP1-SMT-Updates for sle-11-x86_64"},{"id":1387,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-SMT-Pool/sle-11-s390x/","autorefresh":true,"distro_target":"sle-11-s390x","name":"SLE11-SP1-SMT-Pool","installer_updates":false,"description":"SLE11-SP1-SMT-Pool for sle-11-s390x"},{"description":"SLE11-SP1-SMT-Pool for sle-11-x86_64","installer_updates":false,"name":"SLE11-SP1-SMT-Pool","url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-SMT-Pool/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true,"id":1388,"enabled":true},{"installer_updates":false,"name":"SLE11-SP1-SMT-Updates","description":"SLE11-SP1-SMT-Updates for sle-11-i586","id":1389,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-SMT-Updates/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true},{"id":1390,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-SMT-Pool/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true,"installer_updates":false,"name":"SLE11-SP1-SMT-Pool","description":"SLE11-SP1-SMT-Pool for sle-11-i586"},{"id":1391,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-SMT-Updates/sle-11-s390x/","distro_target":"sle-11-s390x","autorefresh":true,"installer_updates":false,"name":"SLE11-SP1-SMT-Updates","description":"SLE11-SP1-SMT-Updates for sle-11-s390x"}],"online_predecessor_ids":[],"product_class":"SLESMT","cpe":null,"product_type":"extension","description":null,"shortname":null,"free":true,"eula_url":"","arch":null,"friendly_version":"11 SP1","extensions":[],"release_stage":"released","id":1192,"identifier":"sle-smt","recommended":false,"version":"11.1","name":"SUSE Linux Enterprise Subscription Management Tool","offline_predecessor_ids":[],"friendly_name":"SUSE Linux Enterprise Subscription Management Tool 11 SP1","migration_extra":false,"former_identifier":"sle-smt","release_type":null}],"version":"11.1","recommended":false,"former_identifier":"SUSE_SLES","release_type":null,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Server 11 SP1 i486","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Server","online_predecessor_ids":[],"product_class":"7261","repositories":[{"id":679,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLES11-Extras/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","name":"SLES11-Extras","installer_updates":false,"description":"SLES11-Extras for sle-11-i586"},{"description":"SLE11-SP1-Debuginfo-Pool for sle-11-i586","name":"SLE11-SP1-Debuginfo-Pool","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Pool/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","id":680,"enabled":false},{"description":"SLE11-WebYaST-SP1-Pool for sle-11-i586","installer_updates":false,"name":"SLE11-WebYaST-SP1-Pool","distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-WebYaST-SP1-Pool/sle-11-i586/","enabled":false,"id":681},{"description":"SLE11-SP1-Debuginfo-Updates for sle-11-i586","installer_updates":false,"name":"SLE11-SP1-Debuginfo-Updates","url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Updates/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true,"id":682,"enabled":false},{"distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-LTSS-Updates/sle-11-i586/","enabled":true,"id":683,"description":"SLES11-SP1-LTSS-Updates for sle-11-i586","installer_updates":false,"name":"SLES11-SP1-LTSS-Updates"},{"installer_updates":false,"name":"SLES11-SP1-Updates","description":"SLES11-SP1-Updates for sle-11-i586","id":684,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-Updates/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true},{"installer_updates":false,"name":"SLE11-WebYaST-SP1-Updates","description":"SLE11-WebYaST-SP1-Updates for sle-11-i586","id":685,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-WebYaST-SP1-Updates/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true},{"description":"SLES11-SP1-Pool for sle-11-i586","installer_updates":false,"name":"SLES11-SP1-Pool","url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-Pool/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true,"id":686,"enabled":true}],"predecessor_ids":[],"product_type":"base","cpe":"cpe:/o:suse:suse_sles:11:sp1","free":false,"description":null,"shortname":null,"arch":"i486","eula_url":""},{"offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Server","release_type":null,"former_identifier":"SUSE_SLES","migration_extra":false,"friendly_name":"SUSE Linux Enterprise Server 11 SP1 x86_64","recommended":false,"version":"11.1","extensions":[{"free":true,"shortname":null,"description":null,"eula_url":"","arch":null,"predecessor_ids":[],"online_predecessor_ids":[],"product_class":"WEBYAST","repositories":[{"description":"SLE11-SP1-WebYaST-1.1-Updates for sle-11-i586","installer_updates":false,"name":"SLE11-SP1-WebYaST-1.1-Updates","distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-WebYaST-1.1-Updates/sle-11-i586/","enabled":true,"id":825},{"description":"SLE11-SP1-WebYaST-1.1-Pool for sle-11-i586","name":"SLE11-SP1-WebYaST-1.1-Pool","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-WebYaST-1.1-Pool/sle-11-i586/","enabled":false,"id":826},{"description":"SLE11-SP1-WebYaST-1.1-Pool for sle-11-x86_64","installer_updates":false,"name":"SLE11-SP1-WebYaST-1.1-Pool","distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-WebYaST-1.1-Pool/sle-11-x86_64/","enabled":false,"id":827},{"description":"SLE11-SP1-WebYaST-1.1-Updates for sle-11-x86_64","installer_updates":false,"name":"SLE11-SP1-WebYaST-1.1-Updates","distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-WebYaST-1.1-Updates/sle-11-x86_64/","enabled":true,"id":828}],"product_type":"extension","cpe":null,"recommended":false,"version":"1.1","offline_predecessor_ids":[],"name":"SUSE WebYaST","release_type":null,"former_identifier":"sle-11-WebYaST","migration_extra":false,"friendly_name":"SUSE WebYaST 1.1","friendly_version":"1.1","extensions":[],"release_stage":"released","identifier":"sle-11-WebYaST","id":835},{"description":null,"shortname":null,"free":false,"eula_url":"","arch":null,"predecessor_ids":[],"online_predecessor_ids":[],"repositories":[{"installer_updates":false,"name":"SLE11-SP1-SLMS-1.2-Pool","description":"SLE11-SP1-SLMS-1.2-Pool for sle-11-x86_64","id":913,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-SLMS-1.2-Pool/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true}],"product_class":"SLMS","cpe":null,"product_type":"extension","recommended":false,"version":"1.1","name":"SUSE Lifecycle Management Server","offline_predecessor_ids":[],"friendly_name":"SUSE Lifecycle Management Server 1.1 (Migration)","migration_extra":false,"release_type":null,"former_identifier":"sle-slms-1.2-migration","friendly_version":"1.1","extensions":[],"id":934,"release_stage":"released","identifier":"sle-slms-1.2-migration"},{"friendly_name":"SUSE Lifecycle Management Server 1.1","migration_extra":false,"former_identifier":"sle-slms","release_type":null,"name":"SUSE Lifecycle Management Server","offline_predecessor_ids":[],"version":"1.1","recommended":false,"identifier":"sle-slms","release_stage":"released","id":935,"extensions":[],"friendly_version":"1.1","arch":null,"eula_url":"","description":null,"shortname":null,"free":false,"cpe":null,"product_type":"extension","product_class":"SLMS","online_predecessor_ids":[],"repositories":[{"name":"SLE11-SP1-SLMS-1.1-Pool","installer_updates":false,"description":"SLE11-SP1-SLMS-1.1-Pool for sle-11-x86_64","enabled":true,"id":914,"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-SLMS-1.1-Pool/sle-11-x86_64/"},{"name":"SLE11-SP1-SLMS-1.1-Updates","installer_updates":false,"description":"SLE11-SP1-SLMS-1.1-Updates for sle-11-x86_64","enabled":true,"id":915,"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-SLMS-1.1-Updates/sle-11-x86_64/"}],"predecessor_ids":[]},{"arch":"x86_64","eula_url":"","description":null,"shortname":null,"free":false,"cpe":null,"product_type":"extension","product_class":"SLE-HAE-X86","online_predecessor_ids":[],"repositories":[{"name":"SLE11-HAE-SP1-Pool","installer_updates":false,"description":"SLE11-HAE-SP1-Pool for sle-11-x86_64","id":946,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP1-Pool/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64"},{"installer_updates":false,"name":"SLE11-HAE-SP1-Updates","description":"SLE11-HAE-SP1-Updates for sle-11-x86_64","enabled":true,"id":953,"distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP1-Updates/sle-11-x86_64/"}],"predecessor_ids":[],"friendly_name":"SUSE Linux Enterprise High Availability Extension 11 SP1 x86_64","migration_extra":false,"release_type":null,"former_identifier":"sle-hae","name":"SUSE Linux Enterprise High Availability Extension","offline_predecessor_ids":[],"version":"11.1","recommended":false,"identifier":"sle-hae","release_stage":"released","id":967,"extensions":[],"friendly_version":"11 SP1"},{"name":"SUSE Linux Enterprise High Availability Extension","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"SUSE Linux Enterprise High Availability Extension 11 SP1 x86_64 (Migration)","release_type":null,"former_identifier":"sle-hae-SP2-migration","recommended":false,"version":"11.1","extensions":[],"identifier":"sle-hae-SP2-migration","release_stage":"released","id":968,"friendly_version":"11 SP1","eula_url":"","arch":"x86_64","shortname":null,"description":null,"free":false,"cpe":null,"product_type":"extension","predecessor_ids":[],"online_predecessor_ids":[],"product_class":"SLE-HAE-X86","repositories":[{"enabled":true,"id":947,"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP2-Pool/sle-11-x86_64/","name":"SLE11-HAE-SP2-Pool","installer_updates":false,"description":"SLE11-HAE-SP2-Pool for sle-11-x86_64"},{"description":"SLE11-HAE-SP2-Updates for sle-11-x86_64","name":"SLE11-HAE-SP2-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP2-Updates/sle-11-x86_64/","enabled":true,"id":948}]},{"release_stage":"released","id":1051,"identifier":"SUSE-Linux-Enterprise-RT","extensions":[],"friendly_version":"11 SP1","migration_extra":false,"friendly_name":"SUSE Linux Enterprise Real Time 11 SP1","release_type":null,"former_identifier":"SUSE-Linux-Enterprise-RT","name":"SUSE Linux Enterprise Real Time","offline_predecessor_ids":[],"version":"11.1","recommended":false,"cpe":null,"product_type":"extension","product_class":"13319","online_predecessor_ids":[],"repositories":[{"name":"SLERT11-SP1-Updates","installer_updates":false,"description":"SLERT11-SP1-Updates for sle-11-x86_64","enabled":true,"id":1049,"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLERT11-SP1-Updates/sle-11-x86_64/"},{"enabled":true,"id":1050,"autorefresh":false,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLERT11-SP1-Pool/sle-11-x86_64/","name":"SLERT11-SP1-Pool","installer_updates":false,"description":"SLERT11-SP1-Pool for sle-11-x86_64"}],"predecessor_ids":[],"arch":null,"eula_url":"","shortname":null,"description":null,"free":false},{"cpe":null,"product_type":"extension","repositories":[{"description":"SLE11-SP1-Debuginfo-Pool for sle-11-i586","installer_updates":false,"name":"SLE11-SP1-Debuginfo-Pool","distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Pool/sle-11-i586/","enabled":false,"id":680},{"description":"SLE11-SP1-Debuginfo-Updates for sle-11-i586","name":"SLE11-SP1-Debuginfo-Updates","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Updates/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","id":682,"enabled":false},{"distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-Updates/sle-11-i586/","enabled":true,"id":684,"description":"SLES11-SP1-Updates for sle-11-i586","installer_updates":false,"name":"SLES11-SP1-Updates"},{"url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-Pool/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","id":686,"enabled":true,"description":"SLES11-SP1-Pool for sle-11-i586","name":"SLES11-SP1-Pool","installer_updates":false},{"name":"SLES11-SP1-Pool","installer_updates":false,"description":"SLES11-SP1-Pool for sle-11-s390x","id":687,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-Pool/sle-11-s390x/","autorefresh":true,"distro_target":"sle-11-s390x"},{"description":"SLE11-SP1-Debuginfo-Updates for sle-11-s390x","installer_updates":false,"name":"SLE11-SP1-Debuginfo-Updates","url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Updates/sle-11-s390x/","distro_target":"sle-11-s390x","autorefresh":true,"id":688,"enabled":false},{"url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-Updates/sle-11-s390x/","autorefresh":true,"distro_target":"sle-11-s390x","id":691,"enabled":true,"description":"SLES11-SP1-Updates for sle-11-s390x","name":"SLES11-SP1-Updates","installer_updates":false},{"enabled":false,"id":692,"distro_target":"sle-11-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Pool/sle-11-s390x/","installer_updates":false,"name":"SLE11-SP1-Debuginfo-Pool","description":"SLE11-SP1-Debuginfo-Pool for sle-11-s390x"},{"description":"SLES11-SP1-Updates for sle-11-x86_64","installer_updates":false,"name":"SLES11-SP1-Updates","distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-Updates/sle-11-x86_64/","enabled":true,"id":705},{"distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Pool/sle-11-x86_64/","enabled":false,"id":707,"description":"SLE11-SP1-Debuginfo-Pool for sle-11-x86_64","installer_updates":false,"name":"SLE11-SP1-Debuginfo-Pool"},{"description":"SLES11-SP1-Pool for sle-11-x86_64","name":"SLES11-SP1-Pool","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-Pool/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64","id":711,"enabled":true},{"name":"SLE11-SP1-Debuginfo-Updates","installer_updates":false,"description":"SLE11-SP1-Debuginfo-Updates for sle-11-x86_64","id":715,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Updates/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64"},{"description":"SLES11-SP1-Pool for sle-11-ppc64","installer_updates":false,"name":"SLES11-SP1-Pool","url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-Pool/sle-11-ppc64/","distro_target":"sle-11-ppc64","autorefresh":true,"id":919,"enabled":true},{"url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-Updates/sle-11-ppc64/","autorefresh":true,"distro_target":"sle-11-ppc64","id":922,"enabled":true,"description":"SLES11-SP1-Updates for sle-11-ppc64","name":"SLES11-SP1-Updates","installer_updates":false},{"description":"SLE11-SP1-Debuginfo-Updates for sle-11-ppc64","name":"SLE11-SP1-Debuginfo-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-ppc64","url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Updates/sle-11-ppc64/","enabled":false,"id":924},{"enabled":false,"id":925,"distro_target":"sle-11-ppc64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Pool/sle-11-ppc64/","installer_updates":false,"name":"SLE11-SP1-Debuginfo-Pool","description":"SLE11-SP1-Debuginfo-Pool for sle-11-ppc64"},{"description":"SLE11-SP1-Debuginfo-Pool for sle-11-ia64","name":"SLE11-SP1-Debuginfo-Pool","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Pool/sle-11-ia64/","autorefresh":true,"distro_target":"sle-11-ia64","id":970,"enabled":false},{"description":"SLE11-SP1-Debuginfo-Updates for sle-11-ia64","installer_updates":false,"name":"SLE11-SP1-Debuginfo-Updates","url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Updates/sle-11-ia64/","distro_target":"sle-11-ia64","autorefresh":true,"id":971,"enabled":false},{"enabled":true,"id":987,"autorefresh":true,"distro_target":"sle-11-ia64","url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-Updates/sle-11-ia64/","name":"SLES11-SP1-Updates","installer_updates":false,"description":"SLES11-SP1-Updates for sle-11-ia64"},{"id":991,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-Pool/sle-11-ia64/","autorefresh":true,"distro_target":"sle-11-ia64","name":"SLES11-SP1-Pool","installer_updates":false,"description":"SLES11-SP1-Pool for sle-11-ia64"},{"name":"SLE11-StudioOnsite-1.1-Instrumentation","installer_updates":false,"description":"SLE11-StudioOnsite-1.1-Instrumentation for sle-11-x86_64","id":1088,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-StudioOnsite-1.1-Instrumentation/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64"},{"description":"SLE11-StudioOnsite-1.1-Updates for sle-11-x86_64","installer_updates":false,"name":"SLE11-StudioOnsite-1.1-Updates","distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-StudioOnsite-1.1-Updates/sle-11-x86_64/","enabled":true,"id":1089},{"installer_updates":false,"name":"SLE11-StudioOnsite-1.1-Pool","description":"SLE11-StudioOnsite-1.1-Pool for sle-11-x86_64","enabled":true,"id":1090,"distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-StudioOnsite-1.1-Pool/sle-11-x86_64/"}],"online_predecessor_ids":[],"product_class":"STUDIOONSITE","predecessor_ids":[],"arch":null,"eula_url":"","description":null,"shortname":null,"free":false,"release_stage":"released","identifier":"sle-studioonsite","id":1074,"extensions":[],"friendly_version":"1.1","friendly_name":"SUSE Studio OnSite 1.1","migration_extra":false,"release_type":null,"former_identifier":"sle-studioonsite","name":"SUSE Studio OnSite","offline_predecessor_ids":[],"version":"1.1","recommended":false},{"eula_url":"","arch":"x86_64","shortname":null,"description":null,"free":false,"cpe":null,"product_type":"extension","predecessor_ids":[],"online_predecessor_ids":[],"product_class":"SUSE_CLOUD","repositories":[{"id":1102,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SUSE-Cloud-1.0-Pool/sle-11-x86_64/","autorefresh":false,"distro_target":"sle-11-x86_64","name":"SUSE-Cloud-1.0-Pool","installer_updates":false,"description":"SUSE-Cloud-1.0-Pool for sle-11-x86_64"},{"description":"SUSE-Cloud-1.0-Updates for sle-11-x86_64","installer_updates":false,"name":"SUSE-Cloud-1.0-Updates","url":"https://updates.suse.com/repo/$RCE/SUSE-Cloud-1.0-Updates/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true,"id":1103,"enabled":true}],"name":"SUSE Cloud","offline_predecessor_ids":[],"friendly_name":"SUSE Cloud 1.0 x86_64","migration_extra":false,"former_identifier":"SUSE-Cloud","release_type":null,"recommended":false,"version":"1.0","extensions":[],"release_stage":"released","identifier":"SUSE-Cloud","id":1090,"friendly_version":"1.0"},{"release_type":null,"former_identifier":"sle-sdk","migration_extra":false,"friendly_name":"SUSE Linux Enterprise Software Development Kit 11 SP1","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Software Development Kit","version":"11.1","recommended":false,"release_stage":"released","id":1159,"identifier":"sle-sdk","extensions":[],"friendly_version":"11 SP1","arch":null,"eula_url":"","free":true,"description":null,"shortname":null,"product_type":"extension","cpe":null,"online_predecessor_ids":[],"repositories":[{"id":1257,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Updates/sle-11-ia64/","distro_target":"sle-11-ia64","autorefresh":true,"installer_updates":false,"name":"SLE11-SDK-SP1-Updates","description":"SLE11-SDK-SP1-Updates for sle-11-ia64"},{"installer_updates":false,"name":"SLE11-SDK-SP1-Pool","description":"SLE11-SDK-SP1-Pool for sle-11-ia64","id":1258,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-ia64/","distro_target":"sle-11-ia64","autorefresh":true},{"installer_updates":false,"name":"SLE11-SDK-SP1-Pool","description":"SLE11-SDK-SP1-Pool for sle-11-s390x","id":1259,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-s390x/","distro_target":"sle-11-s390x","autorefresh":true},{"description":"SLE11-SDK-SP1-Updates for sle-11-ppc64","name":"SLE11-SDK-SP1-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-ppc64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Updates/sle-11-ppc64/","enabled":true,"id":1260},{"description":"SLE11-SDK-SP1-Pool for sle-11-ppc64","name":"SLE11-SDK-SP1-Pool","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-ppc64/","autorefresh":true,"distro_target":"sle-11-ppc64","id":1261,"enabled":true},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Updates/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true,"id":1262,"enabled":true,"description":"SLE11-SDK-SP1-Updates for sle-11-i586","installer_updates":false,"name":"SLE11-SDK-SP1-Updates"},{"installer_updates":false,"name":"SLE11-SDK-SP1-Pool","description":"SLE11-SDK-SP1-Pool for sle-11-i586","id":1263,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64","id":1264,"enabled":true,"description":"SLE11-SDK-SP1-Pool for sle-11-x86_64","name":"SLE11-SDK-SP1-Pool","installer_updates":false},{"name":"SLE11-SDK-SP1-Updates","installer_updates":false,"description":"SLE11-SDK-SP1-Updates for sle-11-x86_64","enabled":true,"id":1265,"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Updates/sle-11-x86_64/"},{"installer_updates":false,"name":"SLE11-SDK-SP1-Updates","description":"SLE11-SDK-SP1-Updates for sle-11-s390x","id":1266,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Updates/sle-11-s390x/","distro_target":"sle-11-s390x","autorefresh":true}],"product_class":"SLE-SDK","predecessor_ids":[]},{"id":1162,"release_stage":"released","identifier":"sle-sdk-SP1-migration","extensions":[],"friendly_version":"11","friendly_name":"SUSE Linux Enterprise Software Development Kit 11 (Migration)","migration_extra":false,"former_identifier":"sle-sdk-SP1-migration","release_type":null,"name":"SUSE Linux Enterprise Software Development Kit","offline_predecessor_ids":[],"version":"11","recommended":false,"cpe":null,"product_type":"extension","online_predecessor_ids":[],"product_class":"SLE-SDK","repositories":[{"description":"SLE11-SDK-SP1-Pool for sle-11-ia64","installer_updates":false,"name":"SLE11-SDK-SP1-Pool","distro_target":"sle-11-ia64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-ia64/","enabled":true,"id":1258},{"id":1259,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-s390x/","distro_target":"sle-11-s390x","autorefresh":true,"installer_updates":false,"name":"SLE11-SDK-SP1-Pool","description":"SLE11-SDK-SP1-Pool for sle-11-s390x"},{"description":"SLE11-SDK-SP1-Pool for sle-11-ppc64","name":"SLE11-SDK-SP1-Pool","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-ppc64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-ppc64/","enabled":true,"id":1261},{"installer_updates":false,"name":"SLE11-SDK-SP1-Pool","description":"SLE11-SDK-SP1-Pool for sle-11-i586","enabled":true,"id":1263,"distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-i586/"},{"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-x86_64/","enabled":true,"id":1264,"description":"SLE11-SDK-SP1-Pool for sle-11-x86_64","name":"SLE11-SDK-SP1-Pool","installer_updates":false}],"predecessor_ids":[],"arch":null,"eula_url":"","shortname":null,"description":null,"free":true},{"cpe":null,"product_type":"extension","predecessor_ids":[],"online_predecessor_ids":[],"product_class":"SLE-SDK","repositories":[{"description":"SLE11-SDK-SP2-Core for sle-11-ia64","installer_updates":false,"name":"SLE11-SDK-SP2-Core","distro_target":"sle-11-ia64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-ia64/","enabled":true,"id":1267},{"autorefresh":true,"distro_target":"sle-11-s390x","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-s390x/","enabled":true,"id":1268,"description":"SLE11-SDK-SP2-Core for sle-11-s390x","name":"SLE11-SDK-SP2-Core","installer_updates":false},{"description":"SLE11-SDK-SP2-Updates for sle-11-s390x","name":"SLE11-SDK-SP2-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-s390x","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-s390x/","enabled":true,"id":1269},{"installer_updates":false,"name":"SLE11-SDK-SP2-Updates","description":"SLE11-SDK-SP2-Updates for sle-11-ppc64","enabled":true,"id":1270,"distro_target":"sle-11-ppc64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-ppc64/"},{"id":1271,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","name":"SLE11-SDK-SP2-Updates","installer_updates":false,"description":"SLE11-SDK-SP2-Updates for sle-11-i586"},{"id":1272,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-ia64/","distro_target":"sle-11-ia64","autorefresh":true,"installer_updates":false,"name":"SLE11-SDK-SP2-Updates","description":"SLE11-SDK-SP2-Updates for sle-11-ia64"},{"description":"SLE11-SDK-SP2-Core for sle-11-ppc64","name":"SLE11-SDK-SP2-Core","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-ppc64/","autorefresh":true,"distro_target":"sle-11-ppc64","id":1273,"enabled":true},{"installer_updates":false,"name":"SLE11-SDK-SP2-Core","description":"SLE11-SDK-SP2-Core for sle-11-i586","enabled":true,"id":1274,"distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-i586/"},{"distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-x86_64/","enabled":true,"id":1275,"description":"SLE11-SDK-SP2-Core for sle-11-x86_64","installer_updates":false,"name":"SLE11-SDK-SP2-Core"},{"id":1276,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true,"installer_updates":false,"name":"SLE11-SDK-SP2-Updates","description":"SLE11-SDK-SP2-Updates for sle-11-x86_64"}],"eula_url":"","arch":null,"description":null,"shortname":null,"free":true,"extensions":[],"id":1163,"release_stage":"released","identifier":"sle-sdk-SP2-migration","friendly_version":"11 SP1","name":"SUSE Linux Enterprise Software Development Kit","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Software Development Kit 11 SP1 (Migration)","former_identifier":"sle-sdk-SP2-migration","release_type":null,"recommended":false,"version":"11.1"},{"extensions":[],"identifier":"sle-smt","release_stage":"released","id":1192,"friendly_version":"11 SP1","name":"SUSE Linux Enterprise Subscription Management Tool","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Subscription Management Tool 11 SP1","former_identifier":"sle-smt","release_type":null,"recommended":false,"version":"11.1","cpe":null,"product_type":"extension","predecessor_ids":[],"product_class":"SLESMT","online_predecessor_ids":[],"repositories":[{"installer_updates":false,"name":"SLE11-SP1-SMT-Updates","description":"SLE11-SP1-SMT-Updates for sle-11-x86_64","id":1386,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-SMT-Updates/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true},{"distro_target":"sle-11-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-SMT-Pool/sle-11-s390x/","enabled":true,"id":1387,"description":"SLE11-SP1-SMT-Pool for sle-11-s390x","installer_updates":false,"name":"SLE11-SP1-SMT-Pool"},{"description":"SLE11-SP1-SMT-Pool for sle-11-x86_64","name":"SLE11-SP1-SMT-Pool","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-SMT-Pool/sle-11-x86_64/","enabled":true,"id":1388},{"installer_updates":false,"name":"SLE11-SP1-SMT-Updates","description":"SLE11-SP1-SMT-Updates for sle-11-i586","id":1389,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-SMT-Updates/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true},{"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-SMT-Pool/sle-11-i586/","enabled":true,"id":1390,"description":"SLE11-SP1-SMT-Pool for sle-11-i586","name":"SLE11-SP1-SMT-Pool","installer_updates":false},{"installer_updates":false,"name":"SLE11-SP1-SMT-Updates","description":"SLE11-SP1-SMT-Updates for sle-11-s390x","enabled":true,"id":1391,"distro_target":"sle-11-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-SMT-Updates/sle-11-s390x/"}],"eula_url":"","arch":null,"shortname":null,"description":null,"free":true}],"release_stage":"released","identifier":"SUSE_SLES","id":769,"friendly_version":"11 SP1","eula_url":"","arch":"x86_64","free":false,"description":null,"shortname":null,"product_type":"base","cpe":"cpe:/o:suse:suse_sles:11:sp1","predecessor_ids":[],"product_class":"7261","online_predecessor_ids":[],"repositories":[{"enabled":true,"id":705,"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-Updates/sle-11-x86_64/","name":"SLES11-SP1-Updates","installer_updates":false,"description":"SLES11-SP1-Updates for sle-11-x86_64"},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Pool/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64","id":707,"enabled":false,"description":"SLE11-SP1-Debuginfo-Pool for sle-11-x86_64","name":"SLE11-SP1-Debuginfo-Pool","installer_updates":false},{"distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-Extras/sle-11-x86_64/","enabled":false,"id":710,"description":"SLES11-Extras for sle-11-x86_64","installer_updates":false,"name":"SLES11-Extras"},{"installer_updates":false,"name":"SLES11-SP1-Pool","description":"SLES11-SP1-Pool for sle-11-x86_64","enabled":true,"id":711,"distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-Pool/sle-11-x86_64/"},{"installer_updates":false,"name":"SLE11-SP1-Debuginfo-Updates","description":"SLE11-SP1-Debuginfo-Updates for sle-11-x86_64","enabled":false,"id":715,"distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Updates/sle-11-x86_64/"},{"id":796,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-LTSS-Updates/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true,"installer_updates":false,"name":"SLES11-SP1-LTSS-Updates","description":"SLES11-SP1-LTSS-Updates for sle-11-x86_64"},{"name":"SLE11-WebYaST-SP1-Updates","installer_updates":false,"description":"SLE11-WebYaST-SP1-Updates for sle-11-x86_64","enabled":false,"id":797,"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE11-WebYaST-SP1-Updates/sle-11-x86_64/"},{"description":"SLE11-WebYaST-SP1-Pool for sle-11-x86_64","installer_updates":false,"name":"SLE11-WebYaST-SP1-Pool","distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-WebYaST-SP1-Pool/sle-11-x86_64/","enabled":false,"id":798},{"description":"SLES11-SP1-Update-Teradata for sle-11-x86_64","installer_updates":false,"name":"SLES11-SP1-Update-Teradata","distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-Update-Teradata/sle-11-x86_64/","enabled":true,"id":1830},{"enabled":true,"id":1832,"distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Teradata/sle-11-x86_64/","installer_updates":false,"name":"SLE11-SP1-Debuginfo-Teradata","description":"SLE11-SP1-Debuginfo-Teradata for sle-11-x86_64"}]},{"free":false,"shortname":null,"description":null,"arch":"ia64","eula_url":"","online_predecessor_ids":[],"product_class":"SLES-IA","repositories":[{"enabled":false,"id":784,"autorefresh":true,"distro_target":"sles-10-ia64","url":"https://updates.suse.com/repo/$RCE/SLES10-GPLv3-Extras/sles-10-ia64/","name":"SLES10-GPLv3-Extras","installer_updates":false,"description":"SLES10-GPLv3-Extras for sles-10-ia64"},{"description":"SLES10-SP4-Pool for sles-10-ia64","name":"SLES10-SP4-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sles-10-ia64","url":"https://updates.suse.com/repo/$RCE/SLES10-SP4-Pool/sles-10-ia64/","enabled":true,"id":799},{"id":800,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLES10-SP4-Updates/sles-10-ia64/","autorefresh":true,"distro_target":"sles-10-ia64","name":"SLES10-SP4-Updates","installer_updates":false,"description":"SLES10-SP4-Updates for sles-10-ia64"},{"description":"SLE10-SP4-Debuginfo-Pool for sles-10-ia64","name":"SLE10-SP4-Debuginfo-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sles-10-ia64","url":"https://updates.suse.com/repo/$RCE/SLE10-SP4-Debuginfo-Pool/sles-10-ia64/","enabled":false,"id":801},{"id":802,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP4-Debuginfo-Updates/sles-10-ia64/","distro_target":"sles-10-ia64","autorefresh":true,"installer_updates":false,"name":"SLE10-SP4-Debuginfo-Updates","description":"SLE10-SP4-Debuginfo-Updates for sles-10-ia64"}],"predecessor_ids":[],"product_type":"base","cpe":null,"version":"10","recommended":false,"former_identifier":"SUSE-Linux-Enterprise-Server-SP4","release_type":null,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Server 10 SP4 ia64","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Server","friendly_version":"10 SP4","id":770,"release_stage":"released","identifier":"SUSE-Linux-Enterprise-Server-SP4","extensions":[{"free":true,"shortname":null,"description":null,"arch":null,"eula_url":"","online_predecessor_ids":[],"product_class":"SLE-SDK","repositories":[{"description":"SLE10-SDK-SP4-Pool for sles-10-x86_64","installer_updates":false,"name":"SLE10-SDK-SP4-Pool","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP4-Pool/sles-10-x86_64/","distro_target":"sles-10-x86_64","autorefresh":false,"id":1343,"enabled":true},{"description":"SLE10-SDK-SP4-Pool for sles-10-ppc","installer_updates":false,"name":"SLE10-SDK-SP4-Pool","distro_target":"sles-10-ppc","autorefresh":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP4-Pool/sles-10-ppc/","enabled":true,"id":1344},{"id":1345,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP4-Pool/sles-10-i586/","distro_target":"sles-10-i586","autorefresh":false,"installer_updates":false,"name":"SLE10-SDK-SP4-Pool","description":"SLE10-SDK-SP4-Pool for sles-10-i586"},{"name":"SLE10-SDK-SP4-Pool","installer_updates":false,"description":"SLE10-SDK-SP4-Pool for sled-10-i586","id":1346,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP4-Pool/sled-10-i586/","autorefresh":false,"distro_target":"sled-10-i586"},{"name":"SLE10-SDK-SP4-Updates","installer_updates":false,"description":"SLE10-SDK-SP4-Updates for sled-10-x86_64","id":1347,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP4-Updates/sled-10-x86_64/","autorefresh":true,"distro_target":"sled-10-x86_64"},{"description":"SLE10-SDK-SP4-Pool for sles-10-s390x","installer_updates":false,"name":"SLE10-SDK-SP4-Pool","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP4-Pool/sles-10-s390x/","distro_target":"sles-10-s390x","autorefresh":false,"id":1348,"enabled":true},{"id":1349,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP4-Updates/sles-10-x86_64/","distro_target":"sles-10-x86_64","autorefresh":true,"installer_updates":false,"name":"SLE10-SDK-SP4-Updates","description":"SLE10-SDK-SP4-Updates for sles-10-x86_64"},{"enabled":true,"id":1350,"autorefresh":true,"distro_target":"sles-10-s390x","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP4-Updates/sles-10-s390x/","name":"SLE10-SDK-SP4-Updates","installer_updates":false,"description":"SLE10-SDK-SP4-Updates for sles-10-s390x"},{"description":"SLE10-SDK-SP4-Updates for sled-10-i586","installer_updates":false,"name":"SLE10-SDK-SP4-Updates","distro_target":"sled-10-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP4-Updates/sled-10-i586/","enabled":true,"id":1351},{"description":"SLE10-SDK-SP4-Updates for sles-10-ppc","name":"SLE10-SDK-SP4-Updates","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP4-Updates/sles-10-ppc/","autorefresh":true,"distro_target":"sles-10-ppc","id":1352,"enabled":true},{"installer_updates":false,"name":"SLE10-SDK-SP4-Updates","description":"SLE10-SDK-SP4-Updates for sles-10-i586","enabled":true,"id":1353,"distro_target":"sles-10-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP4-Updates/sles-10-i586/"},{"installer_updates":false,"name":"SLE10-SDK-SP4-Updates","description":"SLE10-SDK-SP4-Updates for sles-10-ia64","enabled":true,"id":1354,"distro_target":"sles-10-ia64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP4-Updates/sles-10-ia64/"},{"name":"SLE10-SDK-SP4-Pool","installer_updates":false,"description":"SLE10-SDK-SP4-Pool for sled-10-x86_64","id":1355,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP4-Pool/sled-10-x86_64/","autorefresh":false,"distro_target":"sled-10-x86_64"},{"description":"SLE10-SDK-SP4-Pool for sles-10-ia64","installer_updates":false,"name":"SLE10-SDK-SP4-Pool","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP4-Pool/sles-10-ia64/","distro_target":"sles-10-ia64","autorefresh":false,"id":1356,"enabled":true}],"predecessor_ids":[],"product_type":"extension","cpe":null,"version":"10","recommended":false,"release_type":null,"former_identifier":"SUSE-Linux-Enterprise-SDK-SP4","migration_extra":false,"friendly_name":"SUSE Linux Enterprise Software Development Kit 10 SP4","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Software Development Kit","friendly_version":"10 SP4","release_stage":"released","identifier":"SUSE-Linux-Enterprise-SDK-SP4","id":1181,"extensions":[]},{"version":"10","recommended":false,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Software Development Kit 10 (Migration)","former_identifier":"SUSE-Linux-Enterprise-SDK-SP4-migration","release_type":null,"name":"SUSE Linux Enterprise Software Development Kit","offline_predecessor_ids":[],"friendly_version":"10","release_stage":"released","identifier":"SUSE-Linux-Enterprise-SDK-SP4-migration","id":1182,"extensions":[],"shortname":null,"description":null,"free":true,"arch":null,"eula_url":"","repositories":[{"id":1357,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP4-Online/sles-10-x86_64/","distro_target":"sles-10-x86_64","autorefresh":true,"installer_updates":false,"name":"SLE10-SDK-SP4-Online","description":"SLE10-SDK-SP4-Online for sles-10-x86_64"},{"installer_updates":false,"name":"SLE10-SDK-SP4-Online","description":"SLE10-SDK-SP4-Online for sles-10-i586","enabled":true,"id":1358,"distro_target":"sles-10-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP4-Online/sles-10-i586/"},{"installer_updates":false,"name":"SLE10-SDK-SP4-Online","description":"SLE10-SDK-SP4-Online for sles-10-ia64","id":1359,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP4-Online/sles-10-ia64/","distro_target":"sles-10-ia64","autorefresh":true},{"description":"SLE10-SDK-SP4-Online for sled-10-x86_64","name":"SLE10-SDK-SP4-Online","installer_updates":false,"autorefresh":true,"distro_target":"sled-10-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP4-Online/sled-10-x86_64/","enabled":true,"id":1360},{"distro_target":"sled-10-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP4-Online/sled-10-i586/","enabled":true,"id":1361,"description":"SLE10-SDK-SP4-Online for sled-10-i586","installer_updates":false,"name":"SLE10-SDK-SP4-Online"},{"description":"SLE10-SDK-SP4-Online for sles-10-ppc","name":"SLE10-SDK-SP4-Online","installer_updates":false,"autorefresh":true,"distro_target":"sles-10-ppc","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP4-Online/sles-10-ppc/","enabled":true,"id":1362},{"enabled":true,"id":1363,"distro_target":"sles-10-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP4-Online/sles-10-s390x/","installer_updates":false,"name":"SLE10-SDK-SP4-Online","description":"SLE10-SDK-SP4-Online for sles-10-s390x"}],"online_predecessor_ids":[],"product_class":"SLE-SDK","predecessor_ids":[],"cpe":null,"product_type":"extension"}]},{"free":false,"description":null,"shortname":null,"eula_url":"","arch":"s390x","predecessor_ids":[],"online_predecessor_ids":[],"product_class":"SLES-Z","repositories":[{"description":"SLES10-GPLv3-Extras for sles-10-s390x","installer_updates":false,"name":"SLES10-GPLv3-Extras","url":"https://updates.suse.com/repo/$RCE/SLES10-GPLv3-Extras/sles-10-s390x/","distro_target":"sles-10-s390x","autorefresh":true,"id":678,"enabled":false},{"name":"SLE10-SP4-Debuginfo-Updates","installer_updates":false,"description":"SLE10-SP4-Debuginfo-Updates for sles-10-s390x","enabled":false,"id":769,"autorefresh":true,"distro_target":"sles-10-s390x","url":"https://updates.suse.com/repo/$RCE/SLE10-SP4-Debuginfo-Updates/sles-10-s390x/"},{"id":770,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLES10-SP4-Pool/sles-10-s390x/","distro_target":"sles-10-s390x","autorefresh":false,"installer_updates":false,"name":"SLES10-SP4-Pool","description":"SLES10-SP4-Pool for sles-10-s390x"},{"enabled":false,"id":771,"autorefresh":false,"distro_target":"sles-10-s390x","url":"https://updates.suse.com/repo/$RCE/SLE10-SP4-Debuginfo-Pool/sles-10-s390x/","name":"SLE10-SP4-Debuginfo-Pool","installer_updates":false,"description":"SLE10-SP4-Debuginfo-Pool for sles-10-s390x"},{"enabled":true,"id":772,"distro_target":"sles-10-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLES10-SP4-Updates/sles-10-s390x/","installer_updates":false,"name":"SLES10-SP4-Updates","description":"SLES10-SP4-Updates for sles-10-s390x"},{"url":"https://updates.suse.com/repo/$RCE/SLES10-SP4-LTSS-Updates/sles-10-s390x/","autorefresh":true,"distro_target":"sles-10-s390x","id":803,"enabled":true,"description":"SLES10-SP4-LTSS-Updates for sles-10-s390x","name":"SLES10-SP4-LTSS-Updates","installer_updates":false}],"product_type":"base","cpe":null,"recommended":false,"version":"10","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Server","former_identifier":"SUSE-Linux-Enterprise-Server-SP4","release_type":null,"friendly_name":"SUSE Linux Enterprise Server 10 SP4 s390x","migration_extra":false,"friendly_version":"10 SP4","extensions":[{"version":"10","recommended":false,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Software Development Kit 10 SP4","release_type":null,"former_identifier":"SUSE-Linux-Enterprise-SDK-SP4","name":"SUSE Linux Enterprise Software Development Kit","offline_predecessor_ids":[],"friendly_version":"10 SP4","release_stage":"released","id":1181,"identifier":"SUSE-Linux-Enterprise-SDK-SP4","extensions":[],"description":null,"shortname":null,"free":true,"arch":null,"eula_url":"","product_class":"SLE-SDK","online_predecessor_ids":[],"repositories":[{"id":1343,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP4-Pool/sles-10-x86_64/","autorefresh":false,"distro_target":"sles-10-x86_64","name":"SLE10-SDK-SP4-Pool","installer_updates":false,"description":"SLE10-SDK-SP4-Pool for sles-10-x86_64"},{"name":"SLE10-SDK-SP4-Pool","installer_updates":false,"description":"SLE10-SDK-SP4-Pool for sles-10-ppc","enabled":true,"id":1344,"autorefresh":false,"distro_target":"sles-10-ppc","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP4-Pool/sles-10-ppc/"},{"autorefresh":false,"distro_target":"sles-10-i586","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP4-Pool/sles-10-i586/","enabled":true,"id":1345,"description":"SLE10-SDK-SP4-Pool for sles-10-i586","name":"SLE10-SDK-SP4-Pool","installer_updates":false},{"enabled":true,"id":1346,"autorefresh":false,"distro_target":"sled-10-i586","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP4-Pool/sled-10-i586/","name":"SLE10-SDK-SP4-Pool","installer_updates":false,"description":"SLE10-SDK-SP4-Pool for sled-10-i586"},{"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP4-Updates/sled-10-x86_64/","distro_target":"sled-10-x86_64","autorefresh":true,"id":1347,"enabled":true,"description":"SLE10-SDK-SP4-Updates for sled-10-x86_64","installer_updates":false,"name":"SLE10-SDK-SP4-Updates"},{"distro_target":"sles-10-s390x","autorefresh":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP4-Pool/sles-10-s390x/","enabled":true,"id":1348,"description":"SLE10-SDK-SP4-Pool for sles-10-s390x","installer_updates":false,"name":"SLE10-SDK-SP4-Pool"},{"autorefresh":true,"distro_target":"sles-10-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP4-Updates/sles-10-x86_64/","enabled":true,"id":1349,"description":"SLE10-SDK-SP4-Updates for sles-10-x86_64","name":"SLE10-SDK-SP4-Updates","installer_updates":false},{"description":"SLE10-SDK-SP4-Updates for sles-10-s390x","name":"SLE10-SDK-SP4-Updates","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP4-Updates/sles-10-s390x/","autorefresh":true,"distro_target":"sles-10-s390x","id":1350,"enabled":true},{"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP4-Updates/sled-10-i586/","autorefresh":true,"distro_target":"sled-10-i586","id":1351,"enabled":true,"description":"SLE10-SDK-SP4-Updates for sled-10-i586","name":"SLE10-SDK-SP4-Updates","installer_updates":false},{"id":1352,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP4-Updates/sles-10-ppc/","autorefresh":true,"distro_target":"sles-10-ppc","name":"SLE10-SDK-SP4-Updates","installer_updates":false,"description":"SLE10-SDK-SP4-Updates for sles-10-ppc"},{"installer_updates":false,"name":"SLE10-SDK-SP4-Updates","description":"SLE10-SDK-SP4-Updates for sles-10-i586","id":1353,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP4-Updates/sles-10-i586/","distro_target":"sles-10-i586","autorefresh":true},{"name":"SLE10-SDK-SP4-Updates","installer_updates":false,"description":"SLE10-SDK-SP4-Updates for sles-10-ia64","enabled":true,"id":1354,"autorefresh":true,"distro_target":"sles-10-ia64","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP4-Updates/sles-10-ia64/"},{"enabled":true,"id":1355,"autorefresh":false,"distro_target":"sled-10-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP4-Pool/sled-10-x86_64/","name":"SLE10-SDK-SP4-Pool","installer_updates":false,"description":"SLE10-SDK-SP4-Pool for sled-10-x86_64"},{"name":"SLE10-SDK-SP4-Pool","installer_updates":false,"description":"SLE10-SDK-SP4-Pool for sles-10-ia64","enabled":true,"id":1356,"autorefresh":false,"distro_target":"sles-10-ia64","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP4-Pool/sles-10-ia64/"}],"predecessor_ids":[],"cpe":null,"product_type":"extension"},{"description":null,"shortname":null,"free":true,"arch":null,"eula_url":"","product_class":"SLE-SDK","online_predecessor_ids":[],"repositories":[{"enabled":true,"id":1357,"distro_target":"sles-10-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP4-Online/sles-10-x86_64/","installer_updates":false,"name":"SLE10-SDK-SP4-Online","description":"SLE10-SDK-SP4-Online for sles-10-x86_64"},{"installer_updates":false,"name":"SLE10-SDK-SP4-Online","description":"SLE10-SDK-SP4-Online for sles-10-i586","enabled":true,"id":1358,"distro_target":"sles-10-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP4-Online/sles-10-i586/"},{"description":"SLE10-SDK-SP4-Online for sles-10-ia64","name":"SLE10-SDK-SP4-Online","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP4-Online/sles-10-ia64/","autorefresh":true,"distro_target":"sles-10-ia64","id":1359,"enabled":true},{"distro_target":"sled-10-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP4-Online/sled-10-x86_64/","enabled":true,"id":1360,"description":"SLE10-SDK-SP4-Online for sled-10-x86_64","installer_updates":false,"name":"SLE10-SDK-SP4-Online"},{"description":"SLE10-SDK-SP4-Online for sled-10-i586","name":"SLE10-SDK-SP4-Online","installer_updates":false,"autorefresh":true,"distro_target":"sled-10-i586","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP4-Online/sled-10-i586/","enabled":true,"id":1361},{"id":1362,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP4-Online/sles-10-ppc/","autorefresh":true,"distro_target":"sles-10-ppc","name":"SLE10-SDK-SP4-Online","installer_updates":false,"description":"SLE10-SDK-SP4-Online for sles-10-ppc"},{"description":"SLE10-SDK-SP4-Online for sles-10-s390x","name":"SLE10-SDK-SP4-Online","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP4-Online/sles-10-s390x/","autorefresh":true,"distro_target":"sles-10-s390x","id":1363,"enabled":true}],"predecessor_ids":[],"cpe":null,"product_type":"extension","version":"10","recommended":false,"friendly_name":"SUSE Linux Enterprise Software Development Kit 10 (Migration)","migration_extra":false,"former_identifier":"SUSE-Linux-Enterprise-SDK-SP4-migration","release_type":null,"name":"SUSE Linux Enterprise Software Development Kit","offline_predecessor_ids":[],"friendly_version":"10","id":1182,"release_stage":"released","identifier":"SUSE-Linux-Enterprise-SDK-SP4-migration","extensions":[]}],"identifier":"SUSE-Linux-Enterprise-Server-SP4","release_stage":"released","id":771},{"recommended":false,"version":"11.1","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Server","release_type":null,"former_identifier":"SUSE_SLES-SP2-migration","friendly_name":"SUSE Linux Enterprise Server 11 SP1 i586 (Migration)","migration_extra":false,"friendly_version":"11 SP1","extensions":[{"product_type":"extension","cpe":null,"predecessor_ids":[],"online_predecessor_ids":[],"repositories":[{"description":"SLE11-HAE-SP1-Updates for sle-11-i586","name":"SLE11-HAE-SP1-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP1-Updates/sle-11-i586/","enabled":true,"id":944},{"description":"SLE11-HAE-SP1-Pool for sle-11-i586","installer_updates":false,"name":"SLE11-HAE-SP1-Pool","distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP1-Pool/sle-11-i586/","enabled":true,"id":945}],"product_class":"SLE-HAE-X86","eula_url":"","arch":"i586","free":false,"description":null,"shortname":null,"extensions":[],"release_stage":"released","id":959,"identifier":"sle-hae","friendly_version":"11 SP1","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise High Availability Extension","former_identifier":"sle-hae","release_type":null,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise High Availability Extension 11 SP1 i586","recommended":false,"version":"11.1"},{"eula_url":"","arch":"i586","description":null,"shortname":null,"free":false,"cpe":null,"product_type":"extension","predecessor_ids":[],"online_predecessor_ids":[],"repositories":[{"description":"SLE11-HAE-SP2-Pool for sle-11-i586","installer_updates":false,"name":"SLE11-HAE-SP2-Pool","url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP2-Pool/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true,"id":949,"enabled":true},{"enabled":true,"id":950,"distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP2-Updates/sle-11-i586/","installer_updates":false,"name":"SLE11-HAE-SP2-Updates","description":"SLE11-HAE-SP2-Updates for sle-11-i586"}],"product_class":"SLE-HAE-X86","name":"SUSE Linux Enterprise High Availability Extension","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"SUSE Linux Enterprise High Availability Extension 11 SP1 i586 (Migration)","release_type":null,"former_identifier":"sle-hae-SP2-migration","recommended":false,"version":"11.1","extensions":[],"identifier":"sle-hae-SP2-migration","release_stage":"released","id":963,"friendly_version":"11 SP1"},{"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Subscription Management Tool 11 SP1","release_type":null,"former_identifier":"sle-smt","name":"SUSE Linux Enterprise Subscription Management Tool","offline_predecessor_ids":[],"version":"11.1","recommended":false,"identifier":"sle-smt","release_stage":"released","id":1192,"extensions":[],"friendly_version":"11 SP1","arch":null,"eula_url":"","description":null,"shortname":null,"free":true,"cpe":null,"product_type":"extension","product_class":"SLESMT","online_predecessor_ids":[],"repositories":[{"id":1386,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-SMT-Updates/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true,"installer_updates":false,"name":"SLE11-SP1-SMT-Updates","description":"SLE11-SP1-SMT-Updates for sle-11-x86_64"},{"id":1387,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-SMT-Pool/sle-11-s390x/","distro_target":"sle-11-s390x","autorefresh":true,"installer_updates":false,"name":"SLE11-SP1-SMT-Pool","description":"SLE11-SP1-SMT-Pool for sle-11-s390x"},{"description":"SLE11-SP1-SMT-Pool for sle-11-x86_64","name":"SLE11-SP1-SMT-Pool","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-SMT-Pool/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64","id":1388,"enabled":true},{"name":"SLE11-SP1-SMT-Updates","installer_updates":false,"description":"SLE11-SP1-SMT-Updates for sle-11-i586","enabled":true,"id":1389,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-SMT-Updates/sle-11-i586/"},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-SMT-Pool/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true,"id":1390,"enabled":true,"description":"SLE11-SP1-SMT-Pool for sle-11-i586","installer_updates":false,"name":"SLE11-SP1-SMT-Pool"},{"installer_updates":false,"name":"SLE11-SP1-SMT-Updates","description":"SLE11-SP1-SMT-Updates for sle-11-s390x","enabled":true,"id":1391,"distro_target":"sle-11-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-SMT-Updates/sle-11-s390x/"}],"predecessor_ids":[]}],"id":772,"release_stage":"released","identifier":"SUSE_SLES-SP2-migration","free":false,"shortname":null,"description":null,"eula_url":"","arch":"i586","predecessor_ids":[],"repositories":[{"id":680,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Pool/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","name":"SLE11-SP1-Debuginfo-Pool","installer_updates":false,"description":"SLE11-SP1-Debuginfo-Pool for sle-11-i586"},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Updates/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","id":682,"enabled":false,"description":"SLE11-SP1-Debuginfo-Updates for sle-11-i586","name":"SLE11-SP1-Debuginfo-Updates","installer_updates":false},{"name":"SLE11-SP2-Debuginfo-Core","installer_updates":false,"description":"SLE11-SP2-Debuginfo-Core for sle-11-i586","enabled":false,"id":717,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-Debuginfo-Core/sle-11-i586/"},{"description":"SLE11-WebYaST-SP2-Pool for sle-11-i586","name":"SLE11-WebYaST-SP2-Pool","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-WebYaST-SP2-Pool/sle-11-i586/","enabled":false,"id":718},{"id":719,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-Debuginfo-Updates/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true,"installer_updates":false,"name":"SLE11-SP2-Debuginfo-Updates","description":"SLE11-SP2-Debuginfo-Updates for sle-11-i586"},{"name":"SLES11-SP2-Updates","installer_updates":false,"description":"SLES11-SP2-Updates for sle-11-i586","enabled":true,"id":720,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLES11-SP2-Updates/sle-11-i586/"},{"name":"SLE11-WebYaST-SP2-Updates","installer_updates":false,"description":"SLE11-WebYaST-SP2-Updates for sle-11-i586","enabled":false,"id":721,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-WebYaST-SP2-Updates/sle-11-i586/"},{"enabled":true,"id":722,"distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP2-Core/sle-11-i586/","installer_updates":false,"name":"SLES11-SP2-Core","description":"SLES11-SP2-Core for sle-11-i586"}],"online_predecessor_ids":[],"product_class":"7261","product_type":"base","cpe":null},{"release_type":null,"former_identifier":"SUSE_SLES-SP3-migration","migration_extra":false,"friendly_name":"SUSE Linux Enterprise Server 11 SP2 i386 (Migration)","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Server","version":"11.2","recommended":false,"release_stage":"released","id":773,"identifier":"SUSE_SLES-SP3-migration","extensions":[{"extensions":[],"release_stage":"released","identifier":"sle-hae","id":984,"friendly_version":"11 SP2","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise High Availability Extension","release_type":null,"former_identifier":"sle-hae","migration_extra":false,"friendly_name":"SUSE Linux Enterprise High Availability Extension 11 SP2 i386","recommended":false,"version":"11.2","product_type":"extension","cpe":null,"predecessor_ids":[],"online_predecessor_ids":[],"repositories":[{"enabled":true,"id":949,"distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP2-Pool/sle-11-i586/","installer_updates":false,"name":"SLE11-HAE-SP2-Pool","description":"SLE11-HAE-SP2-Pool for sle-11-i586"},{"id":950,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP2-Updates/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true,"installer_updates":false,"name":"SLE11-HAE-SP2-Updates","description":"SLE11-HAE-SP2-Updates for sle-11-i586"}],"product_class":"SLE-HAE-X86","eula_url":"","arch":"i386","free":false,"description":null,"shortname":null},{"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Subscription Management Tool 11 SP2","former_identifier":"sle-smt","release_type":null,"name":"SUSE Linux Enterprise Subscription Management Tool","offline_predecessor_ids":[],"version":"11.2","recommended":false,"release_stage":"released","id":1193,"identifier":"sle-smt","extensions":[],"friendly_version":"11 SP2","arch":null,"eula_url":"","description":null,"shortname":null,"free":true,"cpe":null,"product_type":"extension","product_class":"SLESMT","online_predecessor_ids":[],"repositories":[{"enabled":true,"id":1392,"distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP2-Pool/sle-11-x86_64/","installer_updates":false,"name":"SLE11-SMT-SP2-Pool","description":"SLE11-SMT-SP2-Pool for sle-11-x86_64"},{"description":"SLE11-SMT-SP2-Updates for sle-11-s390x","installer_updates":false,"name":"SLE11-SMT-SP2-Updates","distro_target":"sle-11-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP2-Updates/sle-11-s390x/","enabled":true,"id":1393},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP2-Pool/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","id":1394,"enabled":true,"description":"SLE11-SMT-SP2-Pool for sle-11-i586","name":"SLE11-SMT-SP2-Pool","installer_updates":false},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP2-Updates/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true,"id":1395,"enabled":true,"description":"SLE11-SMT-SP2-Updates for sle-11-i586","installer_updates":false,"name":"SLE11-SMT-SP2-Updates"},{"description":"SLE11-SMT-SP2-Pool for sle-11-s390x","installer_updates":false,"name":"SLE11-SMT-SP2-Pool","url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP2-Pool/sle-11-s390x/","distro_target":"sle-11-s390x","autorefresh":true,"id":1396,"enabled":true},{"description":"SLE11-SMT-SP2-Updates for sle-11-x86_64","name":"SLE11-SMT-SP2-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP2-Updates/sle-11-x86_64/","enabled":true,"id":1397}],"predecessor_ids":[]},{"arch":null,"eula_url":"","free":true,"description":null,"shortname":null,"product_type":"extension","cpe":null,"repositories":[{"name":"SLE11-SMT-SP3-Pool","installer_updates":false,"description":"SLE11-SMT-SP3-Pool for sle-11-s390x","id":1408,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP3-Pool/sle-11-s390x/","autorefresh":true,"distro_target":"sle-11-s390x"},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP3-Pool/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64","id":1409,"enabled":true,"description":"SLE11-SMT-SP3-Pool for sle-11-x86_64","name":"SLE11-SMT-SP3-Pool","installer_updates":false},{"description":"SLE11-SMT-SP3-Pool for sle-11-i586","name":"SLE11-SMT-SP3-Pool","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP3-Pool/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","id":1410,"enabled":true}],"online_predecessor_ids":[],"product_class":"SLESMT","predecessor_ids":[],"release_type":null,"former_identifier":"sle-smt-SP3-migration","friendly_name":"SUSE Linux Enterprise Subscription Management Tool 11 SP2 (Migration)","migration_extra":false,"offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Subscription Management Tool","version":"11.2","recommended":false,"release_stage":"released","id":1199,"identifier":"sle-smt-SP3-migration","extensions":[],"friendly_version":"11 SP2"}],"friendly_version":"11 SP2","arch":"i386","eula_url":"","free":false,"description":null,"shortname":null,"product_type":"base","cpe":null,"product_class":"7261","online_predecessor_ids":[],"repositories":[{"description":"SLES11-Extras for sle-11-i586","installer_updates":false,"name":"SLES11-Extras","distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-Extras/sle-11-i586/","enabled":false,"id":679},{"installer_updates":false,"name":"SLE11-SP1-Debuginfo-Pool","description":"SLE11-SP1-Debuginfo-Pool for sle-11-i586","enabled":false,"id":680,"distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Pool/sle-11-i586/"},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Updates/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true,"id":682,"enabled":false,"description":"SLE11-SP1-Debuginfo-Updates for sle-11-i586","installer_updates":false,"name":"SLE11-SP1-Debuginfo-Updates"},{"url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-Updates/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","id":684,"enabled":false,"description":"SLES11-SP1-Updates for sle-11-i586","name":"SLES11-SP1-Updates","installer_updates":false},{"id":686,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-Pool/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true,"installer_updates":false,"name":"SLES11-SP1-Pool","description":"SLES11-SP1-Pool for sle-11-i586"},{"enabled":false,"id":717,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-Debuginfo-Core/sle-11-i586/","name":"SLE11-SP2-Debuginfo-Core","installer_updates":false,"description":"SLE11-SP2-Debuginfo-Core for sle-11-i586"},{"installer_updates":false,"name":"SLE11-SP2-Debuginfo-Updates","description":"SLE11-SP2-Debuginfo-Updates for sle-11-i586","id":719,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-Debuginfo-Updates/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true},{"installer_updates":false,"name":"SLES11-SP2-Updates","description":"SLES11-SP2-Updates for sle-11-i586","enabled":false,"id":720,"distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP2-Updates/sle-11-i586/"},{"installer_updates":false,"name":"SLES11-SP2-Core","description":"SLES11-SP2-Core for sle-11-i586","enabled":false,"id":722,"distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP2-Core/sle-11-i586/"},{"id":758,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP3-Extension-Store/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","name":"SLES11-SP3-Extension-Store","installer_updates":false,"description":"SLES11-SP3-Extension-Store for sle-11-i586"},{"enabled":false,"id":759,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-SP3-Debuginfo-Updates/sle-11-i586/","name":"SLE11-SP3-Debuginfo-Updates","installer_updates":false,"description":"SLE11-SP3-Debuginfo-Updates for sle-11-i586"},{"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLES11-SP3-Pool/sle-11-i586/","enabled":true,"id":760,"description":"SLES11-SP3-Pool for sle-11-i586","name":"SLES11-SP3-Pool","installer_updates":false},{"distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP2-Extension-Store/sle-11-i586/","enabled":true,"id":761,"description":"SLES11-SP2-Extension-Store for sle-11-i586","installer_updates":false,"name":"SLES11-SP2-Extension-Store"},{"url":"https://updates.suse.com/repo/$RCE/SLES11-SP3-Updates/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","id":762,"enabled":true,"description":"SLES11-SP3-Updates for sle-11-i586","name":"SLES11-SP3-Updates","installer_updates":false},{"id":763,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP3-Debuginfo-Pool/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","name":"SLE11-SP3-Debuginfo-Pool","installer_updates":false,"description":"SLE11-SP3-Debuginfo-Pool for sle-11-i586"}],"predecessor_ids":[]},{"name":"SUSE Linux Enterprise Server","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Server 10 x86_64","release_type":null,"former_identifier":"SUSE-Linux-Enterprise-Server-x86_64","recommended":false,"version":"10","extensions":[{"cpe":null,"product_type":"extension","product_class":"SLE-SDK","online_predecessor_ids":[],"repositories":[{"description":"SLE10-SDK-Updates for sled-10-x86_64","installer_updates":false,"name":"SLE10-SDK-Updates","distro_target":"sled-10-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-Updates/sled-10-x86_64/","enabled":true,"id":1292},{"distro_target":"sles-10-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-Updates/sles-10-x86_64/","enabled":true,"id":1293,"description":"SLE10-SDK-Updates for sles-10-x86_64","installer_updates":false,"name":"SLE10-SDK-Updates"}],"predecessor_ids":[],"arch":"x86_64","eula_url":"","shortname":null,"description":null,"free":true,"release_stage":"released","identifier":"SUSE-Linux-Enterprise-SDK-DVD-x86_64","id":1169,"extensions":[],"friendly_version":"10","friendly_name":"SUSE Linux Enterprise Software Development Kit 10 x86_64","migration_extra":false,"release_type":null,"former_identifier":"SUSE-Linux-Enterprise-SDK-DVD-x86_64","name":"SUSE Linux Enterprise Software Development Kit","offline_predecessor_ids":[],"version":"10","recommended":false},{"friendly_version":"10","extensions":[],"id":1175,"release_stage":"released","identifier":"SUSE-Linux-Enterprise-SDK-SP1-migration","recommended":false,"version":"10","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Software Development Kit","release_type":null,"former_identifier":"SUSE-Linux-Enterprise-SDK-SP1-migration","friendly_name":"SUSE Linux Enterprise Software Development Kit 10 (Migration)","migration_extra":false,"predecessor_ids":[],"product_class":"SLE-SDK","online_predecessor_ids":[],"repositories":[{"enabled":true,"id":1294,"autorefresh":true,"distro_target":"sles-10-s390x","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sles-10-s390x/","name":"SLE10-SDK-SP1-Online","installer_updates":false,"description":"SLE10-SDK-SP1-Online for sles-10-s390x"},{"installer_updates":false,"name":"SLE10-SDK-SP1-Online","description":"SLE10-SDK-SP1-Online for sles-10-x86_64","id":1295,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sles-10-x86_64/","distro_target":"sles-10-x86_64","autorefresh":true},{"name":"SLE10-SDK-SP1-Online","installer_updates":false,"description":"SLE10-SDK-SP1-Online for sled-10-i586","id":1296,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sled-10-i586/","autorefresh":true,"distro_target":"sled-10-i586"},{"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sles-10-ppc/","distro_target":"sles-10-ppc","autorefresh":true,"id":1297,"enabled":true,"description":"SLE10-SDK-SP1-Online for sles-10-ppc","installer_updates":false,"name":"SLE10-SDK-SP1-Online"},{"installer_updates":false,"name":"SLE10-SDK-SP1-Online","description":"SLE10-SDK-SP1-Online for sles-10-ia64","id":1301,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sles-10-ia64/","distro_target":"sles-10-ia64","autorefresh":true},{"installer_updates":false,"name":"SLE10-SDK-SP1-Online","description":"SLE10-SDK-SP1-Online for sles-10-i586","id":1303,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sles-10-i586/","distro_target":"sles-10-i586","autorefresh":true},{"installer_updates":false,"name":"SLE10-SDK-SP1-Online","description":"SLE10-SDK-SP1-Online for sled-10-x86_64","enabled":true,"id":1307,"distro_target":"sled-10-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sled-10-x86_64/"}],"product_type":"extension","cpe":null,"free":true,"shortname":null,"description":null,"eula_url":"","arch":null},{"free":true,"description":null,"shortname":null,"eula_url":"","arch":null,"predecessor_ids":[],"repositories":[{"enabled":true,"id":1308,"distro_target":"sled-10-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sled-10-i586/","installer_updates":false,"name":"SLE10-SDK-SP2-Online","description":"SLE10-SDK-SP2-Online for sled-10-i586"},{"distro_target":"sles-10-ppc","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sles-10-ppc/","enabled":true,"id":1312,"description":"SLE10-SDK-SP2-Online for sles-10-ppc","installer_updates":false,"name":"SLE10-SDK-SP2-Online"},{"enabled":true,"id":1313,"distro_target":"sles-10-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sles-10-i586/","installer_updates":false,"name":"SLE10-SDK-SP2-Online","description":"SLE10-SDK-SP2-Online for sles-10-i586"},{"id":1314,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sled-10-x86_64/","distro_target":"sled-10-x86_64","autorefresh":true,"installer_updates":false,"name":"SLE10-SDK-SP2-Online","description":"SLE10-SDK-SP2-Online for sled-10-x86_64"},{"id":1316,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sles-10-ia64/","autorefresh":true,"distro_target":"sles-10-ia64","name":"SLE10-SDK-SP2-Online","installer_updates":false,"description":"SLE10-SDK-SP2-Online for sles-10-ia64"},{"description":"SLE10-SDK-SP2-Online for sles-10-s390x","name":"SLE10-SDK-SP2-Online","installer_updates":false,"autorefresh":true,"distro_target":"sles-10-s390x","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sles-10-s390x/","enabled":true,"id":1318},{"autorefresh":true,"distro_target":"sles-10-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sles-10-x86_64/","enabled":true,"id":1321,"description":"SLE10-SDK-SP2-Online for sles-10-x86_64","name":"SLE10-SDK-SP2-Online","installer_updates":false}],"online_predecessor_ids":[],"product_class":"SLE-SDK","product_type":"extension","cpe":null,"recommended":false,"version":"10","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Software Development Kit","release_type":"online","former_identifier":"SUSE-Linux-Enterprise-SDK-SP2-migration","friendly_name":"SUSE Linux Enterprise Software Development Kit 10 online (Migration)","migration_extra":false,"friendly_version":"10","extensions":[],"identifier":"SUSE-Linux-Enterprise-SDK-SP2-migration","release_stage":"released","id":1178},{"product_type":"extension","cpe":null,"predecessor_ids":[],"online_predecessor_ids":[],"product_class":"SLE-SDK","repositories":[{"autorefresh":true,"distro_target":"sled-10-i586","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sled-10-i586/","enabled":true,"id":1324,"description":"SLE10-SDK-SP3-Online for sled-10-i586","name":"SLE10-SDK-SP3-Online","installer_updates":false},{"id":1326,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sled-10-x86_64/","autorefresh":true,"distro_target":"sled-10-x86_64","name":"SLE10-SDK-SP3-Online","installer_updates":false,"description":"SLE10-SDK-SP3-Online for sled-10-x86_64"},{"installer_updates":false,"name":"SLE10-SDK-SP3-Online","description":"SLE10-SDK-SP3-Online for sles-10-ia64","enabled":true,"id":1328,"distro_target":"sles-10-ia64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sles-10-ia64/"},{"autorefresh":true,"distro_target":"sles-10-i586","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sles-10-i586/","enabled":true,"id":1330,"description":"SLE10-SDK-SP3-Online for sles-10-i586","name":"SLE10-SDK-SP3-Online","installer_updates":false},{"description":"SLE10-SDK-SP3-Online for sles-10-s390x","installer_updates":false,"name":"SLE10-SDK-SP3-Online","distro_target":"sles-10-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sles-10-s390x/","enabled":true,"id":1335},{"description":"SLE10-SDK-SP3-Online for sles-10-x86_64","name":"SLE10-SDK-SP3-Online","installer_updates":false,"autorefresh":true,"distro_target":"sles-10-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sles-10-x86_64/","enabled":true,"id":1341},{"description":"SLE10-SDK-SP3-Online for sles-10-ppc","installer_updates":false,"name":"SLE10-SDK-SP3-Online","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sles-10-ppc/","distro_target":"sles-10-ppc","autorefresh":true,"id":1342,"enabled":true}],"eula_url":"","arch":null,"free":true,"description":null,"shortname":null,"extensions":[],"release_stage":"released","identifier":"SUSE-Linux-Enterprise-SDK-SP3-migration","id":1180,"friendly_version":"10","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Software Development Kit","release_type":null,"former_identifier":"SUSE-Linux-Enterprise-SDK-SP3-migration","migration_extra":false,"friendly_name":"SUSE Linux Enterprise Software Development Kit 10 (Migration)","recommended":false,"version":"10"},{"friendly_version":"10","extensions":[],"id":1182,"release_stage":"released","identifier":"SUSE-Linux-Enterprise-SDK-SP4-migration","recommended":false,"version":"10","name":"SUSE Linux Enterprise Software Development Kit","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Software Development Kit 10 (Migration)","former_identifier":"SUSE-Linux-Enterprise-SDK-SP4-migration","release_type":null,"predecessor_ids":[],"online_predecessor_ids":[],"repositories":[{"description":"SLE10-SDK-SP4-Online for sles-10-x86_64","name":"SLE10-SDK-SP4-Online","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP4-Online/sles-10-x86_64/","autorefresh":true,"distro_target":"sles-10-x86_64","id":1357,"enabled":true},{"id":1358,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP4-Online/sles-10-i586/","distro_target":"sles-10-i586","autorefresh":true,"installer_updates":false,"name":"SLE10-SDK-SP4-Online","description":"SLE10-SDK-SP4-Online for sles-10-i586"},{"enabled":true,"id":1359,"distro_target":"sles-10-ia64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP4-Online/sles-10-ia64/","installer_updates":false,"name":"SLE10-SDK-SP4-Online","description":"SLE10-SDK-SP4-Online for sles-10-ia64"},{"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP4-Online/sled-10-x86_64/","distro_target":"sled-10-x86_64","autorefresh":true,"id":1360,"enabled":true,"description":"SLE10-SDK-SP4-Online for sled-10-x86_64","installer_updates":false,"name":"SLE10-SDK-SP4-Online"},{"name":"SLE10-SDK-SP4-Online","installer_updates":false,"description":"SLE10-SDK-SP4-Online for sled-10-i586","enabled":true,"id":1361,"autorefresh":true,"distro_target":"sled-10-i586","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP4-Online/sled-10-i586/"},{"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP4-Online/sles-10-ppc/","autorefresh":true,"distro_target":"sles-10-ppc","id":1362,"enabled":true,"description":"SLE10-SDK-SP4-Online for sles-10-ppc","name":"SLE10-SDK-SP4-Online","installer_updates":false},{"name":"SLE10-SDK-SP4-Online","installer_updates":false,"description":"SLE10-SDK-SP4-Online for sles-10-s390x","id":1363,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP4-Online/sles-10-s390x/","autorefresh":true,"distro_target":"sles-10-s390x"}],"product_class":"SLE-SDK","cpe":null,"product_type":"extension","description":null,"shortname":null,"free":true,"eula_url":"","arch":null},{"shortname":null,"description":null,"free":true,"arch":"x86_64","eula_url":"","online_predecessor_ids":[],"product_class":"SLE-SDK","repositories":[{"name":"SLE10-SDK-Updates","installer_updates":false,"description":"SLE10-SDK-Updates for sled-10-x86_64","id":1292,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-Updates/sled-10-x86_64/","autorefresh":true,"distro_target":"sled-10-x86_64"},{"distro_target":"sles-10-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-Updates/sles-10-x86_64/","enabled":true,"id":1293,"description":"SLE10-SDK-Updates for sles-10-x86_64","installer_updates":false,"name":"SLE10-SDK-Updates"}],"predecessor_ids":[],"cpe":null,"product_type":"extension","version":"10","recommended":false,"friendly_name":"SUSE Linux Enterprise Software Development Kit 10 x86_64","migration_extra":false,"former_identifier":"SUSE-Linux-Enterprise-SDK-x86_64","release_type":null,"name":"SUSE Linux Enterprise Software Development Kit","offline_predecessor_ids":[],"friendly_version":"10","identifier":"SUSE-Linux-Enterprise-SDK-x86_64","release_stage":"released","id":1183,"extensions":[]}],"release_stage":"released","id":774,"identifier":"SUSE-Linux-Enterprise-Server-x86_64","friendly_version":"10","eula_url":"","arch":"x86_64","description":null,"shortname":null,"free":false,"cpe":null,"product_type":"base","predecessor_ids":[],"product_class":"7261","online_predecessor_ids":[],"repositories":[{"distro_target":"sles-10-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLES10-Updates/sles-10-x86_64/","enabled":true,"id":804,"description":"SLES10-Updates for sles-10-x86_64","installer_updates":false,"name":"SLES10-Updates"},{"url":"https://updates.suse.com/repo/$RCE/SLE10-Debuginfo-Updates/sles-10-x86_64/","distro_target":"sles-10-x86_64","autorefresh":true,"id":805,"enabled":false,"description":"SLE10-Debuginfo-Updates for sles-10-x86_64","installer_updates":false,"name":"SLE10-Debuginfo-Updates"}]},{"free":false,"description":null,"shortname":null,"arch":"i486","eula_url":"","online_predecessor_ids":[],"repositories":[{"url":"https://updates.suse.com/repo/$RCE/SLE10-SP1-Debuginfo-Updates/sles-10-i586/","autorefresh":true,"distro_target":"sles-10-i586","id":641,"enabled":false,"description":"SLE10-SP1-Debuginfo-Updates for sles-10-i586","name":"SLE10-SP1-Debuginfo-Updates","installer_updates":false},{"id":642,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLES10-SP1-LTSS-Updates/sles-10-i586/","distro_target":"sles-10-i586","autorefresh":true,"installer_updates":false,"name":"SLES10-SP1-LTSS-Updates","description":"SLES10-SP1-LTSS-Updates for sles-10-i586"},{"enabled":true,"id":643,"distro_target":"sles-10-ia64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLES10-SP1-LTSS-Updates/sles-10-ia64/","installer_updates":false,"name":"SLES10-SP1-LTSS-Updates","description":"SLES10-SP1-LTSS-Updates for sles-10-ia64"},{"distro_target":"sles-10-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLES10-SP1-LTSS-Updates/sles-10-s390x/","enabled":true,"id":644,"description":"SLES10-SP1-LTSS-Updates for sles-10-s390x","installer_updates":false,"name":"SLES10-SP1-LTSS-Updates"},{"description":"SLES10-SP1-LTSS-Updates for sles-10-x86_64","name":"SLES10-SP1-LTSS-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sles-10-x86_64","url":"https://updates.suse.com/repo/$RCE/SLES10-SP1-LTSS-Updates/sles-10-x86_64/","enabled":true,"id":645},{"name":"SLES10-SP1-Updates","installer_updates":false,"description":"SLES10-SP1-Updates for sles-10-i586","id":646,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLES10-SP1-Updates/sles-10-i586/","autorefresh":true,"distro_target":"sles-10-i586"},{"url":"https://updates.suse.com/repo/$RCE/SLES10-SP1-LTSS-Updates/sles-10-ppc/","autorefresh":true,"distro_target":"sles-10-ppc","id":647,"enabled":true,"description":"SLES10-SP1-LTSS-Updates for sles-10-ppc","name":"SLES10-SP1-LTSS-Updates","installer_updates":false}],"product_class":"7261","predecessor_ids":[],"product_type":"base","cpe":null,"version":"10","recommended":false,"former_identifier":"SUSE-Linux-Enterprise-Server-SP1","release_type":null,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Server 10 SP1 i486","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Server","friendly_version":"10 SP1","release_stage":"released","id":775,"identifier":"SUSE-Linux-Enterprise-Server-SP1","extensions":[{"cpe":null,"product_type":"extension","online_predecessor_ids":[],"repositories":[{"enabled":true,"id":1294,"autorefresh":true,"distro_target":"sles-10-s390x","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sles-10-s390x/","name":"SLE10-SDK-SP1-Online","installer_updates":false,"description":"SLE10-SDK-SP1-Online for sles-10-s390x"},{"enabled":true,"id":1295,"distro_target":"sles-10-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sles-10-x86_64/","installer_updates":false,"name":"SLE10-SDK-SP1-Online","description":"SLE10-SDK-SP1-Online for sles-10-x86_64"},{"id":1296,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sled-10-i586/","distro_target":"sled-10-i586","autorefresh":true,"installer_updates":false,"name":"SLE10-SDK-SP1-Online","description":"SLE10-SDK-SP1-Online for sled-10-i586"},{"description":"SLE10-SDK-SP1-Online for sles-10-ppc","installer_updates":false,"name":"SLE10-SDK-SP1-Online","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sles-10-ppc/","distro_target":"sles-10-ppc","autorefresh":true,"id":1297,"enabled":true},{"id":1298,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Updates/sles-10-s390x/","distro_target":"sles-10-s390x","autorefresh":true,"installer_updates":false,"name":"SLE10-SDK-SP1-Updates","description":"SLE10-SDK-SP1-Updates for sles-10-s390x"},{"id":1299,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Updates/sled-10-x86_64/","autorefresh":true,"distro_target":"sled-10-x86_64","name":"SLE10-SDK-SP1-Updates","installer_updates":false,"description":"SLE10-SDK-SP1-Updates for sled-10-x86_64"},{"name":"SLE10-SDK-SP1-Updates","installer_updates":false,"description":"SLE10-SDK-SP1-Updates for sles-10-x86_64","enabled":true,"id":1300,"autorefresh":true,"distro_target":"sles-10-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Updates/sles-10-x86_64/"},{"id":1301,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sles-10-ia64/","distro_target":"sles-10-ia64","autorefresh":true,"installer_updates":false,"name":"SLE10-SDK-SP1-Online","description":"SLE10-SDK-SP1-Online for sles-10-ia64"},{"description":"SLE10-SDK-SP1-Updates for sled-10-i586","name":"SLE10-SDK-SP1-Updates","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Updates/sled-10-i586/","autorefresh":true,"distro_target":"sled-10-i586","id":1302,"enabled":true},{"name":"SLE10-SDK-SP1-Online","installer_updates":false,"description":"SLE10-SDK-SP1-Online for sles-10-i586","id":1303,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sles-10-i586/","autorefresh":true,"distro_target":"sles-10-i586"},{"id":1304,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Updates/sles-10-ia64/","distro_target":"sles-10-ia64","autorefresh":true,"installer_updates":false,"name":"SLE10-SDK-SP1-Updates","description":"SLE10-SDK-SP1-Updates for sles-10-ia64"},{"installer_updates":false,"name":"SLE10-SDK-SP1-Updates","description":"SLE10-SDK-SP1-Updates for sles-10-ppc","enabled":true,"id":1305,"distro_target":"sles-10-ppc","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Updates/sles-10-ppc/"},{"name":"SLE10-SDK-SP1-Updates","installer_updates":false,"description":"SLE10-SDK-SP1-Updates for sles-10-i586","id":1306,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Updates/sles-10-i586/","autorefresh":true,"distro_target":"sles-10-i586"},{"distro_target":"sled-10-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sled-10-x86_64/","enabled":true,"id":1307,"description":"SLE10-SDK-SP1-Online for sled-10-x86_64","installer_updates":false,"name":"SLE10-SDK-SP1-Online"}],"product_class":"SLE-SDK","predecessor_ids":[],"arch":null,"eula_url":"","shortname":null,"description":null,"free":true,"release_stage":"released","id":1174,"identifier":"SUSE-Linux-Enterprise-SDK-SP1","extensions":[],"friendly_version":"10 SP1","migration_extra":false,"friendly_name":"SUSE Linux Enterprise Software Development Kit 10 SP1","release_type":null,"former_identifier":"SUSE-Linux-Enterprise-SDK-SP1","name":"SUSE Linux Enterprise Software Development Kit","offline_predecessor_ids":[],"version":"10","recommended":false},{"eula_url":"","arch":null,"free":true,"shortname":null,"description":null,"product_type":"extension","cpe":null,"predecessor_ids":[],"online_predecessor_ids":[],"product_class":"SLE-SDK","repositories":[{"id":1294,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sles-10-s390x/","autorefresh":true,"distro_target":"sles-10-s390x","name":"SLE10-SDK-SP1-Online","installer_updates":false,"description":"SLE10-SDK-SP1-Online for sles-10-s390x"},{"description":"SLE10-SDK-SP1-Online for sles-10-x86_64","installer_updates":false,"name":"SLE10-SDK-SP1-Online","distro_target":"sles-10-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sles-10-x86_64/","enabled":true,"id":1295},{"description":"SLE10-SDK-SP1-Online for sled-10-i586","name":"SLE10-SDK-SP1-Online","installer_updates":false,"autorefresh":true,"distro_target":"sled-10-i586","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sled-10-i586/","enabled":true,"id":1296},{"autorefresh":true,"distro_target":"sles-10-ppc","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sles-10-ppc/","enabled":true,"id":1297,"description":"SLE10-SDK-SP1-Online for sles-10-ppc","name":"SLE10-SDK-SP1-Online","installer_updates":false},{"distro_target":"sles-10-ia64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sles-10-ia64/","enabled":true,"id":1301,"description":"SLE10-SDK-SP1-Online for sles-10-ia64","installer_updates":false,"name":"SLE10-SDK-SP1-Online"},{"installer_updates":false,"name":"SLE10-SDK-SP1-Online","description":"SLE10-SDK-SP1-Online for sles-10-i586","enabled":true,"id":1303,"distro_target":"sles-10-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sles-10-i586/"},{"autorefresh":true,"distro_target":"sled-10-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sled-10-x86_64/","enabled":true,"id":1307,"description":"SLE10-SDK-SP1-Online for sled-10-x86_64","name":"SLE10-SDK-SP1-Online","installer_updates":false}],"offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Software Development Kit","former_identifier":"SUSE-Linux-Enterprise-SDK-SP1-migration","release_type":null,"friendly_name":"SUSE Linux Enterprise Software Development Kit 10 (Migration)","migration_extra":false,"recommended":false,"version":"10","extensions":[],"release_stage":"released","identifier":"SUSE-Linux-Enterprise-SDK-SP1-migration","id":1175,"friendly_version":"10"}]},{"friendly_version":"10","identifier":"SUSE-Linux-Enterprise-Server-SP2-migration","release_stage":"released","id":776,"extensions":[],"version":"10","recommended":false,"former_identifier":"SUSE-Linux-Enterprise-Server-SP2-migration","release_type":null,"friendly_name":"SUSE Linux Enterprise Server 10 i486 (Migration)","migration_extra":false,"offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Server","online_predecessor_ids":[],"repositories":[{"enabled":true,"id":654,"distro_target":"sles-10-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLES10-SP2-Online/sles-10-i586/","installer_updates":false,"name":"SLES10-SP2-Online","description":"SLES10-SP2-Online for sles-10-i586"}],"product_class":"7261","predecessor_ids":[],"product_type":"base","cpe":null,"free":false,"description":null,"shortname":null,"arch":"i486","eula_url":""},{"predecessor_ids":[],"repositories":[{"description":"SLES10-SP2-Pool for sles-10-i586","installer_updates":false,"name":"SLES10-SP2-Pool","distro_target":"sles-10-i586","autorefresh":false,"url":"https://updates.suse.com/repo/$RCE/SLES10-SP2-Pool/sles-10-i586/","enabled":true,"id":653},{"distro_target":"sles-10-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLES10-SP2-Online/sles-10-i586/","enabled":false,"id":654,"description":"SLES10-SP2-Online for sles-10-i586","installer_updates":false,"name":"SLES10-SP2-Online"},{"id":655,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLES10-SP2-Updates/sles-10-i586/","autorefresh":true,"distro_target":"sles-10-i586","name":"SLES10-SP2-Updates","installer_updates":false,"description":"SLES10-SP2-Updates for sles-10-i586"},{"name":"SLE10-SP2-Debuginfo-Updates","installer_updates":false,"description":"SLE10-SP2-Debuginfo-Updates for sles-10-i586","enabled":false,"id":656,"autorefresh":true,"distro_target":"sles-10-i586","url":"https://updates.suse.com/repo/$RCE/SLE10-SP2-Debuginfo-Updates/sles-10-i586/"},{"distro_target":"sles-10-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLES10-SP2-LTSS-Updates/sles-10-i586/","enabled":true,"id":657,"description":"SLES10-SP2-LTSS-Updates for sles-10-i586","installer_updates":false,"name":"SLES10-SP2-LTSS-Updates"}],"online_predecessor_ids":[],"product_class":"7261","product_type":"base","cpe":null,"free":false,"shortname":null,"description":null,"eula_url":"","arch":"i586","friendly_version":"10 SP2","extensions":[{"extensions":[],"id":1176,"release_stage":"released","identifier":"SUSE-Linux-Enterprise-SDK-SP2","friendly_version":"10 SP2","name":"SUSE Linux Enterprise Software Development Kit","offline_predecessor_ids":[],"friendly_name":"SUSE Linux Enterprise Software Development Kit 10 SP2 MigrationBeta","migration_extra":false,"release_type":"MigrationBeta","former_identifier":"SUSE-Linux-Enterprise-SDK-SP2","recommended":false,"version":"10","cpe":null,"product_type":"extension","predecessor_ids":[],"online_predecessor_ids":[],"product_class":"SLE-SDK","repositories":[],"eula_url":"","arch":null,"shortname":null,"description":null,"free":true},{"name":"SUSE Linux Enterprise Software Development Kit","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Software Development Kit 10 SP2","former_identifier":"SUSE-Linux-Enterprise-SDK-SP2","release_type":null,"recommended":false,"version":"10","extensions":[],"release_stage":"released","identifier":"SUSE-Linux-Enterprise-SDK-SP2","id":1177,"friendly_version":"10 SP2","eula_url":"","arch":null,"description":null,"shortname":null,"free":true,"cpe":null,"product_type":"extension","predecessor_ids":[],"online_predecessor_ids":[],"product_class":"SLE-SDK","repositories":[{"description":"SLE10-SDK-SP2-Online for sled-10-i586","name":"SLE10-SDK-SP2-Online","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sled-10-i586/","autorefresh":true,"distro_target":"sled-10-i586","id":1308,"enabled":true},{"distro_target":"sles-10-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Updates/sles-10-i586/","enabled":true,"id":1309,"description":"SLE10-SDK-SP2-Updates for sles-10-i586","installer_updates":false,"name":"SLE10-SDK-SP2-Updates"},{"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Updates/sles-10-ia64/","autorefresh":true,"distro_target":"sles-10-ia64","id":1310,"enabled":true,"description":"SLE10-SDK-SP2-Updates for sles-10-ia64","name":"SLE10-SDK-SP2-Updates","installer_updates":false},{"description":"SLE10-SDK-SP2-Updates for sles-10-s390x","name":"SLE10-SDK-SP2-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sles-10-s390x","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Updates/sles-10-s390x/","enabled":true,"id":1311},{"id":1312,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sles-10-ppc/","autorefresh":true,"distro_target":"sles-10-ppc","name":"SLE10-SDK-SP2-Online","installer_updates":false,"description":"SLE10-SDK-SP2-Online for sles-10-ppc"},{"id":1313,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sles-10-i586/","distro_target":"sles-10-i586","autorefresh":true,"installer_updates":false,"name":"SLE10-SDK-SP2-Online","description":"SLE10-SDK-SP2-Online for sles-10-i586"},{"name":"SLE10-SDK-SP2-Online","installer_updates":false,"description":"SLE10-SDK-SP2-Online for sled-10-x86_64","id":1314,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sled-10-x86_64/","autorefresh":true,"distro_target":"sled-10-x86_64"},{"distro_target":"sles-10-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Updates/sles-10-x86_64/","enabled":true,"id":1315,"description":"SLE10-SDK-SP2-Updates for sles-10-x86_64","installer_updates":false,"name":"SLE10-SDK-SP2-Updates"},{"autorefresh":true,"distro_target":"sles-10-ia64","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sles-10-ia64/","enabled":true,"id":1316,"description":"SLE10-SDK-SP2-Online for sles-10-ia64","name":"SLE10-SDK-SP2-Online","installer_updates":false},{"distro_target":"sles-10-ppc","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Updates/sles-10-ppc/","enabled":true,"id":1317,"description":"SLE10-SDK-SP2-Updates for sles-10-ppc","installer_updates":false,"name":"SLE10-SDK-SP2-Updates"},{"description":"SLE10-SDK-SP2-Online for sles-10-s390x","name":"SLE10-SDK-SP2-Online","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sles-10-s390x/","autorefresh":true,"distro_target":"sles-10-s390x","id":1318,"enabled":true},{"enabled":true,"id":1319,"autorefresh":true,"distro_target":"sled-10-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Updates/sled-10-x86_64/","name":"SLE10-SDK-SP2-Updates","installer_updates":false,"description":"SLE10-SDK-SP2-Updates for sled-10-x86_64"},{"autorefresh":true,"distro_target":"sled-10-i586","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Updates/sled-10-i586/","enabled":true,"id":1320,"description":"SLE10-SDK-SP2-Updates for sled-10-i586","name":"SLE10-SDK-SP2-Updates","installer_updates":false},{"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sles-10-x86_64/","distro_target":"sles-10-x86_64","autorefresh":true,"id":1321,"enabled":true,"description":"SLE10-SDK-SP2-Online for sles-10-x86_64","installer_updates":false,"name":"SLE10-SDK-SP2-Online"}]},{"extensions":[],"identifier":"SUSE-Linux-Enterprise-SDK-SP2-migration","release_stage":"released","id":1178,"friendly_version":"10","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Software Development Kit","release_type":"online","former_identifier":"SUSE-Linux-Enterprise-SDK-SP2-migration","migration_extra":false,"friendly_name":"SUSE Linux Enterprise Software Development Kit 10 online (Migration)","recommended":false,"version":"10","product_type":"extension","cpe":null,"predecessor_ids":[],"online_predecessor_ids":[],"repositories":[{"description":"SLE10-SDK-SP2-Online for sled-10-i586","name":"SLE10-SDK-SP2-Online","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sled-10-i586/","autorefresh":true,"distro_target":"sled-10-i586","id":1308,"enabled":true},{"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sles-10-ppc/","autorefresh":true,"distro_target":"sles-10-ppc","id":1312,"enabled":true,"description":"SLE10-SDK-SP2-Online for sles-10-ppc","name":"SLE10-SDK-SP2-Online","installer_updates":false},{"installer_updates":false,"name":"SLE10-SDK-SP2-Online","description":"SLE10-SDK-SP2-Online for sles-10-i586","id":1313,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sles-10-i586/","distro_target":"sles-10-i586","autorefresh":true},{"autorefresh":true,"distro_target":"sled-10-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sled-10-x86_64/","enabled":true,"id":1314,"description":"SLE10-SDK-SP2-Online for sled-10-x86_64","name":"SLE10-SDK-SP2-Online","installer_updates":false},{"id":1316,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sles-10-ia64/","distro_target":"sles-10-ia64","autorefresh":true,"installer_updates":false,"name":"SLE10-SDK-SP2-Online","description":"SLE10-SDK-SP2-Online for sles-10-ia64"},{"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sles-10-s390x/","autorefresh":true,"distro_target":"sles-10-s390x","id":1318,"enabled":true,"description":"SLE10-SDK-SP2-Online for sles-10-s390x","name":"SLE10-SDK-SP2-Online","installer_updates":false},{"enabled":true,"id":1321,"autorefresh":true,"distro_target":"sles-10-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sles-10-x86_64/","name":"SLE10-SDK-SP2-Online","installer_updates":false,"description":"SLE10-SDK-SP2-Online for sles-10-x86_64"}],"product_class":"SLE-SDK","eula_url":"","arch":null,"free":true,"description":null,"shortname":null},{"offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Subscription Management Tool","release_type":null,"former_identifier":"SUSE-Linux-Enterprise-SMT-SP2","migration_extra":false,"friendly_name":"SUSE Linux Enterprise Subscription Management Tool 10 SP2","recommended":false,"version":"10.2","extensions":[],"identifier":"SUSE-Linux-Enterprise-SMT-SP2","release_stage":"released","id":1195,"friendly_version":"10 SP2","eula_url":"","arch":null,"free":true,"description":null,"shortname":null,"product_type":"extension","cpe":null,"predecessor_ids":[],"online_predecessor_ids":[],"product_class":"SLESMT","repositories":[{"id":1398,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP2-SMT-Updates/sles-10-x86_64/","autorefresh":true,"distro_target":"sles-10-x86_64","name":"SLE10-SP2-SMT-Updates","installer_updates":false,"description":"SLE10-SP2-SMT-Updates for sles-10-x86_64"},{"name":"SLE10-SP2-SMT-Updates","installer_updates":false,"description":"SLE10-SP2-SMT-Updates for sles-10-i586","id":1399,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP2-SMT-Updates/sles-10-i586/","autorefresh":true,"distro_target":"sles-10-i586"}]}],"release_stage":"released","id":777,"identifier":"SUSE-Linux-Enterprise-Server-SP2","recommended":false,"version":"10","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Server","release_type":null,"former_identifier":"SUSE-Linux-Enterprise-Server-SP2","migration_extra":false,"friendly_name":"SUSE Linux Enterprise Server 10 SP2 i586"},{"predecessor_ids":[],"repositories":[{"url":"https://updates.suse.com/repo/$RCE/SLES10-SP2-Online/sles-10-i586/","distro_target":"sles-10-i586","autorefresh":true,"id":654,"enabled":true,"description":"SLES10-SP2-Online for sles-10-i586","installer_updates":false,"name":"SLES10-SP2-Online"},{"autorefresh":true,"distro_target":"sles-10-i586","url":"https://updates.suse.com/repo/$RCE/SLES10-SP2-Updates/sles-10-i586/","enabled":true,"id":655,"description":"SLES10-SP2-Updates for sles-10-i586","name":"SLES10-SP2-Updates","installer_updates":false},{"description":"SLE10-SP2-Debuginfo-Updates for sles-10-i586","installer_updates":false,"name":"SLE10-SP2-Debuginfo-Updates","distro_target":"sles-10-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP2-Debuginfo-Updates/sles-10-i586/","enabled":false,"id":656},{"enabled":true,"id":657,"distro_target":"sles-10-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLES10-SP2-LTSS-Updates/sles-10-i586/","installer_updates":false,"name":"SLES10-SP2-LTSS-Updates","description":"SLES10-SP2-LTSS-Updates for sles-10-i586"}],"online_predecessor_ids":[],"product_class":"7261","product_type":"base","cpe":null,"free":false,"description":null,"shortname":null,"eula_url":"","arch":"i686","friendly_version":"10 SP2","extensions":[{"offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Software Development Kit","release_type":"MigrationBeta","former_identifier":"SUSE-Linux-Enterprise-SDK-SP2","friendly_name":"SUSE Linux Enterprise Software Development Kit 10 SP2 MigrationBeta","migration_extra":false,"recommended":false,"version":"10","extensions":[],"identifier":"SUSE-Linux-Enterprise-SDK-SP2","release_stage":"released","id":1176,"friendly_version":"10 SP2","eula_url":"","arch":null,"free":true,"description":null,"shortname":null,"product_type":"extension","cpe":null,"predecessor_ids":[],"online_predecessor_ids":[],"product_class":"SLE-SDK","repositories":[]},{"eula_url":"","arch":null,"free":true,"description":null,"shortname":null,"product_type":"extension","cpe":null,"predecessor_ids":[],"online_predecessor_ids":[],"repositories":[{"description":"SLE10-SDK-SP2-Online for sled-10-i586","installer_updates":false,"name":"SLE10-SDK-SP2-Online","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sled-10-i586/","distro_target":"sled-10-i586","autorefresh":true,"id":1308,"enabled":true},{"description":"SLE10-SDK-SP2-Updates for sles-10-i586","name":"SLE10-SDK-SP2-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sles-10-i586","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Updates/sles-10-i586/","enabled":true,"id":1309},{"description":"SLE10-SDK-SP2-Updates for sles-10-ia64","name":"SLE10-SDK-SP2-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sles-10-ia64","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Updates/sles-10-ia64/","enabled":true,"id":1310},{"name":"SLE10-SDK-SP2-Updates","installer_updates":false,"description":"SLE10-SDK-SP2-Updates for sles-10-s390x","id":1311,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Updates/sles-10-s390x/","autorefresh":true,"distro_target":"sles-10-s390x"},{"id":1312,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sles-10-ppc/","autorefresh":true,"distro_target":"sles-10-ppc","name":"SLE10-SDK-SP2-Online","installer_updates":false,"description":"SLE10-SDK-SP2-Online for sles-10-ppc"},{"description":"SLE10-SDK-SP2-Online for sles-10-i586","installer_updates":false,"name":"SLE10-SDK-SP2-Online","distro_target":"sles-10-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sles-10-i586/","enabled":true,"id":1313},{"installer_updates":false,"name":"SLE10-SDK-SP2-Online","description":"SLE10-SDK-SP2-Online for sled-10-x86_64","id":1314,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sled-10-x86_64/","distro_target":"sled-10-x86_64","autorefresh":true},{"name":"SLE10-SDK-SP2-Updates","installer_updates":false,"description":"SLE10-SDK-SP2-Updates for sles-10-x86_64","enabled":true,"id":1315,"autorefresh":true,"distro_target":"sles-10-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Updates/sles-10-x86_64/"},{"id":1316,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sles-10-ia64/","distro_target":"sles-10-ia64","autorefresh":true,"installer_updates":false,"name":"SLE10-SDK-SP2-Online","description":"SLE10-SDK-SP2-Online for sles-10-ia64"},{"installer_updates":false,"name":"SLE10-SDK-SP2-Updates","description":"SLE10-SDK-SP2-Updates for sles-10-ppc","enabled":true,"id":1317,"distro_target":"sles-10-ppc","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Updates/sles-10-ppc/"},{"enabled":true,"id":1318,"distro_target":"sles-10-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sles-10-s390x/","installer_updates":false,"name":"SLE10-SDK-SP2-Online","description":"SLE10-SDK-SP2-Online for sles-10-s390x"},{"id":1319,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Updates/sled-10-x86_64/","autorefresh":true,"distro_target":"sled-10-x86_64","name":"SLE10-SDK-SP2-Updates","installer_updates":false,"description":"SLE10-SDK-SP2-Updates for sled-10-x86_64"},{"installer_updates":false,"name":"SLE10-SDK-SP2-Updates","description":"SLE10-SDK-SP2-Updates for sled-10-i586","enabled":true,"id":1320,"distro_target":"sled-10-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Updates/sled-10-i586/"},{"description":"SLE10-SDK-SP2-Online for sles-10-x86_64","installer_updates":false,"name":"SLE10-SDK-SP2-Online","distro_target":"sles-10-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sles-10-x86_64/","enabled":true,"id":1321}],"product_class":"SLE-SDK","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Software Development Kit","release_type":null,"former_identifier":"SUSE-Linux-Enterprise-SDK-SP2","migration_extra":false,"friendly_name":"SUSE Linux Enterprise Software Development Kit 10 SP2","recommended":false,"version":"10","extensions":[],"id":1177,"release_stage":"released","identifier":"SUSE-Linux-Enterprise-SDK-SP2","friendly_version":"10 SP2"},{"name":"SUSE Linux Enterprise Software Development Kit","offline_predecessor_ids":[],"friendly_name":"SUSE Linux Enterprise Software Development Kit 10 online (Migration)","migration_extra":false,"former_identifier":"SUSE-Linux-Enterprise-SDK-SP2-migration","release_type":"online","recommended":false,"version":"10","extensions":[],"id":1178,"release_stage":"released","identifier":"SUSE-Linux-Enterprise-SDK-SP2-migration","friendly_version":"10","eula_url":"","arch":null,"description":null,"shortname":null,"free":true,"cpe":null,"product_type":"extension","predecessor_ids":[],"repositories":[{"name":"SLE10-SDK-SP2-Online","installer_updates":false,"description":"SLE10-SDK-SP2-Online for sled-10-i586","id":1308,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sled-10-i586/","autorefresh":true,"distro_target":"sled-10-i586"},{"installer_updates":false,"name":"SLE10-SDK-SP2-Online","description":"SLE10-SDK-SP2-Online for sles-10-ppc","enabled":true,"id":1312,"distro_target":"sles-10-ppc","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sles-10-ppc/"},{"autorefresh":true,"distro_target":"sles-10-i586","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sles-10-i586/","enabled":true,"id":1313,"description":"SLE10-SDK-SP2-Online for sles-10-i586","name":"SLE10-SDK-SP2-Online","installer_updates":false},{"installer_updates":false,"name":"SLE10-SDK-SP2-Online","description":"SLE10-SDK-SP2-Online for sled-10-x86_64","id":1314,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sled-10-x86_64/","distro_target":"sled-10-x86_64","autorefresh":true},{"description":"SLE10-SDK-SP2-Online for sles-10-ia64","installer_updates":false,"name":"SLE10-SDK-SP2-Online","distro_target":"sles-10-ia64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sles-10-ia64/","enabled":true,"id":1316},{"installer_updates":false,"name":"SLE10-SDK-SP2-Online","description":"SLE10-SDK-SP2-Online for sles-10-s390x","id":1318,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sles-10-s390x/","distro_target":"sles-10-s390x","autorefresh":true},{"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sles-10-x86_64/","distro_target":"sles-10-x86_64","autorefresh":true,"id":1321,"enabled":true,"description":"SLE10-SDK-SP2-Online for sles-10-x86_64","installer_updates":false,"name":"SLE10-SDK-SP2-Online"}],"online_predecessor_ids":[],"product_class":"SLE-SDK"},{"free":true,"description":null,"shortname":null,"arch":null,"eula_url":"","repositories":[{"description":"SLE10-SP2-SMT-Updates for sles-10-x86_64","installer_updates":false,"name":"SLE10-SP2-SMT-Updates","distro_target":"sles-10-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP2-SMT-Updates/sles-10-x86_64/","enabled":true,"id":1398},{"name":"SLE10-SP2-SMT-Updates","installer_updates":false,"description":"SLE10-SP2-SMT-Updates for sles-10-i586","id":1399,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP2-SMT-Updates/sles-10-i586/","autorefresh":true,"distro_target":"sles-10-i586"}],"online_predecessor_ids":[],"product_class":"SLESMT","predecessor_ids":[],"product_type":"extension","cpe":null,"version":"10.2","recommended":false,"former_identifier":"SUSE-Linux-Enterprise-SMT-SP2","release_type":null,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Subscription Management Tool 10 SP2","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Subscription Management Tool","friendly_version":"10 SP2","id":1195,"release_stage":"released","identifier":"SUSE-Linux-Enterprise-SMT-SP2","extensions":[]}],"release_stage":"released","identifier":"SUSE-Linux-Enterprise-Server-SP2","id":778,"recommended":false,"version":"10","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Server","release_type":"online","former_identifier":"SUSE-Linux-Enterprise-Server-SP2","migration_extra":false,"friendly_name":"SUSE Linux Enterprise Server 10 SP2 online i686"},{"version":"10","recommended":false,"former_identifier":"SUSE-Linux-Enterprise-Server-SP2","release_type":"online","migration_extra":false,"friendly_name":"SUSE Linux Enterprise Server 10 SP2 online i386","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Server","friendly_version":"10 SP2","release_stage":"released","identifier":"SUSE-Linux-Enterprise-Server-SP2","id":779,"extensions":[{"cpe":null,"product_type":"extension","repositories":[],"online_predecessor_ids":[],"product_class":"SLE-SDK","predecessor_ids":[],"arch":null,"eula_url":"","shortname":null,"description":null,"free":true,"id":1176,"release_stage":"released","identifier":"SUSE-Linux-Enterprise-SDK-SP2","extensions":[],"friendly_version":"10 SP2","migration_extra":false,"friendly_name":"SUSE Linux Enterprise Software Development Kit 10 SP2 MigrationBeta","release_type":"MigrationBeta","former_identifier":"SUSE-Linux-Enterprise-SDK-SP2","name":"SUSE Linux Enterprise Software Development Kit","offline_predecessor_ids":[],"version":"10","recommended":false},{"friendly_version":"10 SP2","id":1177,"release_stage":"released","identifier":"SUSE-Linux-Enterprise-SDK-SP2","extensions":[],"version":"10","recommended":false,"friendly_name":"SUSE Linux Enterprise Software Development Kit 10 SP2","migration_extra":false,"release_type":null,"former_identifier":"SUSE-Linux-Enterprise-SDK-SP2","name":"SUSE Linux Enterprise Software Development Kit","offline_predecessor_ids":[],"repositories":[{"distro_target":"sled-10-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sled-10-i586/","enabled":true,"id":1308,"description":"SLE10-SDK-SP2-Online for sled-10-i586","installer_updates":false,"name":"SLE10-SDK-SP2-Online"},{"distro_target":"sles-10-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Updates/sles-10-i586/","enabled":true,"id":1309,"description":"SLE10-SDK-SP2-Updates for sles-10-i586","installer_updates":false,"name":"SLE10-SDK-SP2-Updates"},{"name":"SLE10-SDK-SP2-Updates","installer_updates":false,"description":"SLE10-SDK-SP2-Updates for sles-10-ia64","id":1310,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Updates/sles-10-ia64/","autorefresh":true,"distro_target":"sles-10-ia64"},{"description":"SLE10-SDK-SP2-Updates for sles-10-s390x","name":"SLE10-SDK-SP2-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sles-10-s390x","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Updates/sles-10-s390x/","enabled":true,"id":1311},{"autorefresh":true,"distro_target":"sles-10-ppc","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sles-10-ppc/","enabled":true,"id":1312,"description":"SLE10-SDK-SP2-Online for sles-10-ppc","name":"SLE10-SDK-SP2-Online","installer_updates":false},{"description":"SLE10-SDK-SP2-Online for sles-10-i586","installer_updates":false,"name":"SLE10-SDK-SP2-Online","distro_target":"sles-10-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sles-10-i586/","enabled":true,"id":1313},{"enabled":true,"id":1314,"autorefresh":true,"distro_target":"sled-10-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sled-10-x86_64/","name":"SLE10-SDK-SP2-Online","installer_updates":false,"description":"SLE10-SDK-SP2-Online for sled-10-x86_64"},{"distro_target":"sles-10-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Updates/sles-10-x86_64/","enabled":true,"id":1315,"description":"SLE10-SDK-SP2-Updates for sles-10-x86_64","installer_updates":false,"name":"SLE10-SDK-SP2-Updates"},{"description":"SLE10-SDK-SP2-Online for sles-10-ia64","name":"SLE10-SDK-SP2-Online","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sles-10-ia64/","autorefresh":true,"distro_target":"sles-10-ia64","id":1316,"enabled":true},{"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Updates/sles-10-ppc/","autorefresh":true,"distro_target":"sles-10-ppc","id":1317,"enabled":true,"description":"SLE10-SDK-SP2-Updates for sles-10-ppc","name":"SLE10-SDK-SP2-Updates","installer_updates":false},{"installer_updates":false,"name":"SLE10-SDK-SP2-Online","description":"SLE10-SDK-SP2-Online for sles-10-s390x","enabled":true,"id":1318,"distro_target":"sles-10-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sles-10-s390x/"},{"id":1319,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Updates/sled-10-x86_64/","distro_target":"sled-10-x86_64","autorefresh":true,"installer_updates":false,"name":"SLE10-SDK-SP2-Updates","description":"SLE10-SDK-SP2-Updates for sled-10-x86_64"},{"installer_updates":false,"name":"SLE10-SDK-SP2-Updates","description":"SLE10-SDK-SP2-Updates for sled-10-i586","id":1320,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Updates/sled-10-i586/","distro_target":"sled-10-i586","autorefresh":true},{"name":"SLE10-SDK-SP2-Online","installer_updates":false,"description":"SLE10-SDK-SP2-Online for sles-10-x86_64","enabled":true,"id":1321,"autorefresh":true,"distro_target":"sles-10-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sles-10-x86_64/"}],"online_predecessor_ids":[],"product_class":"SLE-SDK","predecessor_ids":[],"cpe":null,"product_type":"extension","shortname":null,"description":null,"free":true,"arch":null,"eula_url":""},{"friendly_version":"10","extensions":[],"identifier":"SUSE-Linux-Enterprise-SDK-SP2-migration","release_stage":"released","id":1178,"recommended":false,"version":"10","name":"SUSE Linux Enterprise Software Development Kit","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Software Development Kit 10 online (Migration)","release_type":"online","former_identifier":"SUSE-Linux-Enterprise-SDK-SP2-migration","predecessor_ids":[],"online_predecessor_ids":[],"repositories":[{"autorefresh":true,"distro_target":"sled-10-i586","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sled-10-i586/","enabled":true,"id":1308,"description":"SLE10-SDK-SP2-Online for sled-10-i586","name":"SLE10-SDK-SP2-Online","installer_updates":false},{"id":1312,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sles-10-ppc/","distro_target":"sles-10-ppc","autorefresh":true,"installer_updates":false,"name":"SLE10-SDK-SP2-Online","description":"SLE10-SDK-SP2-Online for sles-10-ppc"},{"description":"SLE10-SDK-SP2-Online for sles-10-i586","name":"SLE10-SDK-SP2-Online","installer_updates":false,"autorefresh":true,"distro_target":"sles-10-i586","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sles-10-i586/","enabled":true,"id":1313},{"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sled-10-x86_64/","autorefresh":true,"distro_target":"sled-10-x86_64","id":1314,"enabled":true,"description":"SLE10-SDK-SP2-Online for sled-10-x86_64","name":"SLE10-SDK-SP2-Online","installer_updates":false},{"autorefresh":true,"distro_target":"sles-10-ia64","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sles-10-ia64/","enabled":true,"id":1316,"description":"SLE10-SDK-SP2-Online for sles-10-ia64","name":"SLE10-SDK-SP2-Online","installer_updates":false},{"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sles-10-s390x/","distro_target":"sles-10-s390x","autorefresh":true,"id":1318,"enabled":true,"description":"SLE10-SDK-SP2-Online for sles-10-s390x","installer_updates":false,"name":"SLE10-SDK-SP2-Online"},{"installer_updates":false,"name":"SLE10-SDK-SP2-Online","description":"SLE10-SDK-SP2-Online for sles-10-x86_64","id":1321,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sles-10-x86_64/","distro_target":"sles-10-x86_64","autorefresh":true}],"product_class":"SLE-SDK","cpe":null,"product_type":"extension","shortname":null,"description":null,"free":true,"eula_url":"","arch":null},{"friendly_version":"10 SP2","release_stage":"released","identifier":"SUSE-Linux-Enterprise-SMT-SP2","id":1195,"extensions":[],"version":"10.2","recommended":false,"release_type":null,"former_identifier":"SUSE-Linux-Enterprise-SMT-SP2","friendly_name":"SUSE Linux Enterprise Subscription Management Tool 10 SP2","migration_extra":false,"offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Subscription Management Tool","product_class":"SLESMT","online_predecessor_ids":[],"repositories":[{"description":"SLE10-SP2-SMT-Updates for sles-10-x86_64","name":"SLE10-SP2-SMT-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sles-10-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE10-SP2-SMT-Updates/sles-10-x86_64/","enabled":true,"id":1398},{"url":"https://updates.suse.com/repo/$RCE/SLE10-SP2-SMT-Updates/sles-10-i586/","distro_target":"sles-10-i586","autorefresh":true,"id":1399,"enabled":true,"description":"SLE10-SP2-SMT-Updates for sles-10-i586","installer_updates":false,"name":"SLE10-SP2-SMT-Updates"}],"predecessor_ids":[],"product_type":"extension","cpe":null,"free":true,"shortname":null,"description":null,"arch":null,"eula_url":""}],"free":false,"shortname":null,"description":null,"arch":"i386","eula_url":"","online_predecessor_ids":[],"repositories":[{"description":"SLES10-SP2-Online for sles-10-i586","name":"SLES10-SP2-Online","installer_updates":false,"autorefresh":true,"distro_target":"sles-10-i586","url":"https://updates.suse.com/repo/$RCE/SLES10-SP2-Online/sles-10-i586/","enabled":true,"id":654},{"description":"SLES10-SP2-Updates for sles-10-i586","name":"SLES10-SP2-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sles-10-i586","url":"https://updates.suse.com/repo/$RCE/SLES10-SP2-Updates/sles-10-i586/","enabled":true,"id":655},{"name":"SLE10-SP2-Debuginfo-Updates","installer_updates":false,"description":"SLE10-SP2-Debuginfo-Updates for sles-10-i586","enabled":false,"id":656,"autorefresh":true,"distro_target":"sles-10-i586","url":"https://updates.suse.com/repo/$RCE/SLE10-SP2-Debuginfo-Updates/sles-10-i586/"},{"description":"SLES10-SP2-LTSS-Updates for sles-10-i586","installer_updates":false,"name":"SLES10-SP2-LTSS-Updates","url":"https://updates.suse.com/repo/$RCE/SLES10-SP2-LTSS-Updates/sles-10-i586/","distro_target":"sles-10-i586","autorefresh":true,"id":657,"enabled":true}],"product_class":"7261","predecessor_ids":[],"product_type":"base","cpe":null},{"name":"SUSE Linux Enterprise Server","offline_predecessor_ids":[],"friendly_name":"SUSE Linux Enterprise Server 10 SP2 online s390","migration_extra":false,"former_identifier":"SUSE-Linux-Enterprise-Server-SP2","release_type":"online","recommended":false,"version":"10","extensions":[{"cpe":null,"product_type":"extension","predecessor_ids":[],"product_class":"SLE-SDK","online_predecessor_ids":[],"repositories":[],"eula_url":"","arch":null,"description":null,"shortname":null,"free":true,"extensions":[],"identifier":"SUSE-Linux-Enterprise-SDK-SP2","release_stage":"released","id":1176,"friendly_version":"10 SP2","name":"SUSE Linux Enterprise Software Development Kit","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Software Development Kit 10 SP2 MigrationBeta","release_type":"MigrationBeta","former_identifier":"SUSE-Linux-Enterprise-SDK-SP2","recommended":false,"version":"10"},{"eula_url":"","arch":null,"description":null,"shortname":null,"free":true,"cpe":null,"product_type":"extension","predecessor_ids":[],"product_class":"SLE-SDK","online_predecessor_ids":[],"repositories":[{"description":"SLE10-SDK-SP2-Online for sled-10-i586","installer_updates":false,"name":"SLE10-SDK-SP2-Online","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sled-10-i586/","distro_target":"sled-10-i586","autorefresh":true,"id":1308,"enabled":true},{"name":"SLE10-SDK-SP2-Updates","installer_updates":false,"description":"SLE10-SDK-SP2-Updates for sles-10-i586","enabled":true,"id":1309,"autorefresh":true,"distro_target":"sles-10-i586","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Updates/sles-10-i586/"},{"description":"SLE10-SDK-SP2-Updates for sles-10-ia64","name":"SLE10-SDK-SP2-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sles-10-ia64","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Updates/sles-10-ia64/","enabled":true,"id":1310},{"autorefresh":true,"distro_target":"sles-10-s390x","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Updates/sles-10-s390x/","enabled":true,"id":1311,"description":"SLE10-SDK-SP2-Updates for sles-10-s390x","name":"SLE10-SDK-SP2-Updates","installer_updates":false},{"enabled":true,"id":1312,"autorefresh":true,"distro_target":"sles-10-ppc","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sles-10-ppc/","name":"SLE10-SDK-SP2-Online","installer_updates":false,"description":"SLE10-SDK-SP2-Online for sles-10-ppc"},{"id":1313,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sles-10-i586/","autorefresh":true,"distro_target":"sles-10-i586","name":"SLE10-SDK-SP2-Online","installer_updates":false,"description":"SLE10-SDK-SP2-Online for sles-10-i586"},{"id":1314,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sled-10-x86_64/","autorefresh":true,"distro_target":"sled-10-x86_64","name":"SLE10-SDK-SP2-Online","installer_updates":false,"description":"SLE10-SDK-SP2-Online for sled-10-x86_64"},{"name":"SLE10-SDK-SP2-Updates","installer_updates":false,"description":"SLE10-SDK-SP2-Updates for sles-10-x86_64","enabled":true,"id":1315,"autorefresh":true,"distro_target":"sles-10-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Updates/sles-10-x86_64/"},{"installer_updates":false,"name":"SLE10-SDK-SP2-Online","description":"SLE10-SDK-SP2-Online for sles-10-ia64","id":1316,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sles-10-ia64/","distro_target":"sles-10-ia64","autorefresh":true},{"enabled":true,"id":1317,"distro_target":"sles-10-ppc","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Updates/sles-10-ppc/","installer_updates":false,"name":"SLE10-SDK-SP2-Updates","description":"SLE10-SDK-SP2-Updates for sles-10-ppc"},{"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sles-10-s390x/","distro_target":"sles-10-s390x","autorefresh":true,"id":1318,"enabled":true,"description":"SLE10-SDK-SP2-Online for sles-10-s390x","installer_updates":false,"name":"SLE10-SDK-SP2-Online"},{"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Updates/sled-10-x86_64/","autorefresh":true,"distro_target":"sled-10-x86_64","id":1319,"enabled":true,"description":"SLE10-SDK-SP2-Updates for sled-10-x86_64","name":"SLE10-SDK-SP2-Updates","installer_updates":false},{"name":"SLE10-SDK-SP2-Updates","installer_updates":false,"description":"SLE10-SDK-SP2-Updates for sled-10-i586","id":1320,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Updates/sled-10-i586/","autorefresh":true,"distro_target":"sled-10-i586"},{"description":"SLE10-SDK-SP2-Online for sles-10-x86_64","installer_updates":false,"name":"SLE10-SDK-SP2-Online","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sles-10-x86_64/","distro_target":"sles-10-x86_64","autorefresh":true,"id":1321,"enabled":true}],"name":"SUSE Linux Enterprise Software Development Kit","offline_predecessor_ids":[],"friendly_name":"SUSE Linux Enterprise Software Development Kit 10 SP2","migration_extra":false,"former_identifier":"SUSE-Linux-Enterprise-SDK-SP2","release_type":null,"recommended":false,"version":"10","extensions":[],"release_stage":"released","id":1177,"identifier":"SUSE-Linux-Enterprise-SDK-SP2","friendly_version":"10 SP2"},{"predecessor_ids":[],"online_predecessor_ids":[],"repositories":[{"description":"SLE10-SDK-SP2-Online for sled-10-i586","installer_updates":false,"name":"SLE10-SDK-SP2-Online","distro_target":"sled-10-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sled-10-i586/","enabled":true,"id":1308},{"enabled":true,"id":1312,"distro_target":"sles-10-ppc","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sles-10-ppc/","installer_updates":false,"name":"SLE10-SDK-SP2-Online","description":"SLE10-SDK-SP2-Online for sles-10-ppc"},{"installer_updates":false,"name":"SLE10-SDK-SP2-Online","description":"SLE10-SDK-SP2-Online for sles-10-i586","id":1313,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sles-10-i586/","distro_target":"sles-10-i586","autorefresh":true},{"description":"SLE10-SDK-SP2-Online for sled-10-x86_64","installer_updates":false,"name":"SLE10-SDK-SP2-Online","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sled-10-x86_64/","distro_target":"sled-10-x86_64","autorefresh":true,"id":1314,"enabled":true},{"id":1316,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sles-10-ia64/","distro_target":"sles-10-ia64","autorefresh":true,"installer_updates":false,"name":"SLE10-SDK-SP2-Online","description":"SLE10-SDK-SP2-Online for sles-10-ia64"},{"id":1318,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sles-10-s390x/","autorefresh":true,"distro_target":"sles-10-s390x","name":"SLE10-SDK-SP2-Online","installer_updates":false,"description":"SLE10-SDK-SP2-Online for sles-10-s390x"},{"autorefresh":true,"distro_target":"sles-10-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sles-10-x86_64/","enabled":true,"id":1321,"description":"SLE10-SDK-SP2-Online for sles-10-x86_64","name":"SLE10-SDK-SP2-Online","installer_updates":false}],"product_class":"SLE-SDK","product_type":"extension","cpe":null,"free":true,"description":null,"shortname":null,"eula_url":"","arch":null,"friendly_version":"10","extensions":[],"id":1178,"release_stage":"released","identifier":"SUSE-Linux-Enterprise-SDK-SP2-migration","recommended":false,"version":"10","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Software Development Kit","former_identifier":"SUSE-Linux-Enterprise-SDK-SP2-migration","release_type":"online","migration_extra":false,"friendly_name":"SUSE Linux Enterprise Software Development Kit 10 online (Migration)"},{"predecessor_ids":[],"product_class":"SLESMT","online_predecessor_ids":[],"repositories":[{"name":"SLE10-SP2-SMT-Updates","installer_updates":false,"description":"SLE10-SP2-SMT-Updates for sles-10-x86_64","id":1398,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP2-SMT-Updates/sles-10-x86_64/","autorefresh":true,"distro_target":"sles-10-x86_64"},{"id":1399,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP2-SMT-Updates/sles-10-i586/","distro_target":"sles-10-i586","autorefresh":true,"installer_updates":false,"name":"SLE10-SP2-SMT-Updates","description":"SLE10-SP2-SMT-Updates for sles-10-i586"}],"cpe":null,"product_type":"extension","shortname":null,"description":null,"free":true,"eula_url":"","arch":null,"friendly_version":"10 SP2","extensions":[],"release_stage":"released","identifier":"SUSE-Linux-Enterprise-SMT-SP2","id":1195,"recommended":false,"version":"10.2","name":"SUSE Linux Enterprise Subscription Management Tool","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Subscription Management Tool 10 SP2","release_type":null,"former_identifier":"SUSE-Linux-Enterprise-SMT-SP2"}],"release_stage":"released","identifier":"SUSE-Linux-Enterprise-Server-SP2","id":780,"friendly_version":"10 SP2","eula_url":"","arch":"s390","shortname":null,"description":null,"free":false,"cpe":null,"product_type":"base","predecessor_ids":[],"online_predecessor_ids":[],"repositories":[{"name":"SLES10-SP2-Online","installer_updates":false,"description":"SLES10-SP2-Online for sles-10-s390x","enabled":true,"id":744,"autorefresh":true,"distro_target":"sles-10-s390x","url":"https://updates.suse.com/repo/$RCE/SLES10-SP2-Online/sles-10-s390x/"},{"url":"https://updates.suse.com/repo/$RCE/SLES10-SP2-LTSS-Updates/sles-10-s390x/","autorefresh":true,"distro_target":"sles-10-s390x","id":764,"enabled":true,"description":"SLES10-SP2-LTSS-Updates for sles-10-s390x","name":"SLES10-SP2-LTSS-Updates","installer_updates":false},{"id":765,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP2-Debuginfo-Updates/sles-10-s390x/","distro_target":"sles-10-s390x","autorefresh":true,"installer_updates":false,"name":"SLE10-SP2-Debuginfo-Updates","description":"SLE10-SP2-Debuginfo-Updates for sles-10-s390x"},{"distro_target":"sles-10-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLES10-SP2-Updates/sles-10-s390x/","enabled":true,"id":767,"description":"SLES10-SP2-Updates for sles-10-s390x","installer_updates":false,"name":"SLES10-SP2-Updates"}],"product_class":"SLES-Z"},{"extensions":[{"friendly_name":"SUSE Linux Enterprise Software Development Kit 10 SP2 MigrationBeta","migration_extra":false,"release_type":"MigrationBeta","former_identifier":"SUSE-Linux-Enterprise-SDK-SP2","name":"SUSE Linux Enterprise Software Development Kit","offline_predecessor_ids":[],"version":"10","recommended":false,"release_stage":"released","identifier":"SUSE-Linux-Enterprise-SDK-SP2","id":1176,"extensions":[],"friendly_version":"10 SP2","arch":null,"eula_url":"","description":null,"shortname":null,"free":true,"cpe":null,"product_type":"extension","product_class":"SLE-SDK","online_predecessor_ids":[],"repositories":[],"predecessor_ids":[]},{"eula_url":"","arch":null,"free":true,"description":null,"shortname":null,"product_type":"extension","cpe":null,"predecessor_ids":[],"online_predecessor_ids":[],"repositories":[{"enabled":true,"id":1308,"distro_target":"sled-10-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sled-10-i586/","installer_updates":false,"name":"SLE10-SDK-SP2-Online","description":"SLE10-SDK-SP2-Online for sled-10-i586"},{"distro_target":"sles-10-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Updates/sles-10-i586/","enabled":true,"id":1309,"description":"SLE10-SDK-SP2-Updates for sles-10-i586","installer_updates":false,"name":"SLE10-SDK-SP2-Updates"},{"id":1310,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Updates/sles-10-ia64/","autorefresh":true,"distro_target":"sles-10-ia64","name":"SLE10-SDK-SP2-Updates","installer_updates":false,"description":"SLE10-SDK-SP2-Updates for sles-10-ia64"},{"name":"SLE10-SDK-SP2-Updates","installer_updates":false,"description":"SLE10-SDK-SP2-Updates for sles-10-s390x","id":1311,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Updates/sles-10-s390x/","autorefresh":true,"distro_target":"sles-10-s390x"},{"installer_updates":false,"name":"SLE10-SDK-SP2-Online","description":"SLE10-SDK-SP2-Online for sles-10-ppc","enabled":true,"id":1312,"distro_target":"sles-10-ppc","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sles-10-ppc/"},{"description":"SLE10-SDK-SP2-Online for sles-10-i586","installer_updates":false,"name":"SLE10-SDK-SP2-Online","distro_target":"sles-10-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sles-10-i586/","enabled":true,"id":1313},{"enabled":true,"id":1314,"distro_target":"sled-10-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sled-10-x86_64/","installer_updates":false,"name":"SLE10-SDK-SP2-Online","description":"SLE10-SDK-SP2-Online for sled-10-x86_64"},{"enabled":true,"id":1315,"distro_target":"sles-10-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Updates/sles-10-x86_64/","installer_updates":false,"name":"SLE10-SDK-SP2-Updates","description":"SLE10-SDK-SP2-Updates for sles-10-x86_64"},{"description":"SLE10-SDK-SP2-Online for sles-10-ia64","name":"SLE10-SDK-SP2-Online","installer_updates":false,"autorefresh":true,"distro_target":"sles-10-ia64","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sles-10-ia64/","enabled":true,"id":1316},{"description":"SLE10-SDK-SP2-Updates for sles-10-ppc","installer_updates":false,"name":"SLE10-SDK-SP2-Updates","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Updates/sles-10-ppc/","distro_target":"sles-10-ppc","autorefresh":true,"id":1317,"enabled":true},{"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sles-10-s390x/","autorefresh":true,"distro_target":"sles-10-s390x","id":1318,"enabled":true,"description":"SLE10-SDK-SP2-Online for sles-10-s390x","name":"SLE10-SDK-SP2-Online","installer_updates":false},{"id":1319,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Updates/sled-10-x86_64/","distro_target":"sled-10-x86_64","autorefresh":true,"installer_updates":false,"name":"SLE10-SDK-SP2-Updates","description":"SLE10-SDK-SP2-Updates for sled-10-x86_64"},{"installer_updates":false,"name":"SLE10-SDK-SP2-Updates","description":"SLE10-SDK-SP2-Updates for sled-10-i586","id":1320,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Updates/sled-10-i586/","distro_target":"sled-10-i586","autorefresh":true},{"enabled":true,"id":1321,"autorefresh":true,"distro_target":"sles-10-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sles-10-x86_64/","name":"SLE10-SDK-SP2-Online","installer_updates":false,"description":"SLE10-SDK-SP2-Online for sles-10-x86_64"}],"product_class":"SLE-SDK","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Software Development Kit","release_type":null,"former_identifier":"SUSE-Linux-Enterprise-SDK-SP2","friendly_name":"SUSE Linux Enterprise Software Development Kit 10 SP2","migration_extra":false,"recommended":false,"version":"10","extensions":[],"identifier":"SUSE-Linux-Enterprise-SDK-SP2","release_stage":"released","id":1177,"friendly_version":"10 SP2"},{"predecessor_ids":[],"online_predecessor_ids":[],"repositories":[{"enabled":true,"id":1308,"distro_target":"sled-10-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sled-10-i586/","installer_updates":false,"name":"SLE10-SDK-SP2-Online","description":"SLE10-SDK-SP2-Online for sled-10-i586"},{"enabled":true,"id":1312,"autorefresh":true,"distro_target":"sles-10-ppc","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sles-10-ppc/","name":"SLE10-SDK-SP2-Online","installer_updates":false,"description":"SLE10-SDK-SP2-Online for sles-10-ppc"},{"distro_target":"sles-10-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sles-10-i586/","enabled":true,"id":1313,"description":"SLE10-SDK-SP2-Online for sles-10-i586","installer_updates":false,"name":"SLE10-SDK-SP2-Online"},{"description":"SLE10-SDK-SP2-Online for sled-10-x86_64","name":"SLE10-SDK-SP2-Online","installer_updates":false,"autorefresh":true,"distro_target":"sled-10-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sled-10-x86_64/","enabled":true,"id":1314},{"name":"SLE10-SDK-SP2-Online","installer_updates":false,"description":"SLE10-SDK-SP2-Online for sles-10-ia64","id":1316,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sles-10-ia64/","autorefresh":true,"distro_target":"sles-10-ia64"},{"name":"SLE10-SDK-SP2-Online","installer_updates":false,"description":"SLE10-SDK-SP2-Online for sles-10-s390x","enabled":true,"id":1318,"autorefresh":true,"distro_target":"sles-10-s390x","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sles-10-s390x/"},{"name":"SLE10-SDK-SP2-Online","installer_updates":false,"description":"SLE10-SDK-SP2-Online for sles-10-x86_64","id":1321,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sles-10-x86_64/","autorefresh":true,"distro_target":"sles-10-x86_64"}],"product_class":"SLE-SDK","product_type":"extension","cpe":null,"free":true,"shortname":null,"description":null,"eula_url":"","arch":null,"friendly_version":"10","extensions":[],"id":1178,"release_stage":"released","identifier":"SUSE-Linux-Enterprise-SDK-SP2-migration","recommended":false,"version":"10","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Software Development Kit","former_identifier":"SUSE-Linux-Enterprise-SDK-SP2-migration","release_type":"online","friendly_name":"SUSE Linux Enterprise Software Development Kit 10 online (Migration)","migration_extra":false},{"shortname":null,"description":null,"free":true,"eula_url":"","arch":null,"predecessor_ids":[],"online_predecessor_ids":[],"repositories":[{"name":"SLE10-SP2-SMT-Updates","installer_updates":false,"description":"SLE10-SP2-SMT-Updates for sles-10-x86_64","enabled":true,"id":1398,"autorefresh":true,"distro_target":"sles-10-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE10-SP2-SMT-Updates/sles-10-x86_64/"},{"url":"https://updates.suse.com/repo/$RCE/SLE10-SP2-SMT-Updates/sles-10-i586/","autorefresh":true,"distro_target":"sles-10-i586","id":1399,"enabled":true,"description":"SLE10-SP2-SMT-Updates for sles-10-i586","name":"SLE10-SP2-SMT-Updates","installer_updates":false}],"product_class":"SLESMT","cpe":null,"product_type":"extension","recommended":false,"version":"10.2","name":"SUSE Linux Enterprise Subscription Management Tool","offline_predecessor_ids":[],"friendly_name":"SUSE Linux Enterprise Subscription Management Tool 10 SP2","migration_extra":false,"former_identifier":"SUSE-Linux-Enterprise-SMT-SP2","release_type":null,"friendly_version":"10 SP2","extensions":[],"identifier":"SUSE-Linux-Enterprise-SMT-SP2","release_stage":"released","id":1195}],"release_stage":"released","id":781,"identifier":"SUSE-Linux-Enterprise-Server-SP2","friendly_version":"10 SP2","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Server","former_identifier":"SUSE-Linux-Enterprise-Server-SP2","release_type":"online","friendly_name":"SUSE Linux Enterprise Server 10 SP2 online s390x","migration_extra":false,"recommended":false,"version":"10","product_type":"base","cpe":null,"predecessor_ids":[],"online_predecessor_ids":[],"repositories":[{"url":"https://updates.suse.com/repo/$RCE/SLES10-SP2-Online/sles-10-s390x/","autorefresh":true,"distro_target":"sles-10-s390x","id":744,"enabled":true,"description":"SLES10-SP2-Online for sles-10-s390x","name":"SLES10-SP2-Online","installer_updates":false},{"enabled":true,"id":764,"autorefresh":true,"distro_target":"sles-10-s390x","url":"https://updates.suse.com/repo/$RCE/SLES10-SP2-LTSS-Updates/sles-10-s390x/","name":"SLES10-SP2-LTSS-Updates","installer_updates":false,"description":"SLES10-SP2-LTSS-Updates for sles-10-s390x"},{"description":"SLE10-SP2-Debuginfo-Updates for sles-10-s390x","name":"SLE10-SP2-Debuginfo-Updates","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP2-Debuginfo-Updates/sles-10-s390x/","autorefresh":true,"distro_target":"sles-10-s390x","id":765,"enabled":false},{"description":"SLES10-SP2-Updates for sles-10-s390x","name":"SLES10-SP2-Updates","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLES10-SP2-Updates/sles-10-s390x/","autorefresh":true,"distro_target":"sles-10-s390x","id":767,"enabled":true}],"product_class":"SLES-Z","eula_url":"","arch":"s390x","free":false,"shortname":null,"description":null},{"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Server 10 i486 (Migration)","former_identifier":"SUSE-Linux-Enterprise-Server-SP3-migration","release_type":null,"name":"SUSE Linux Enterprise Server","offline_predecessor_ids":[],"version":"10","recommended":false,"release_stage":"released","id":782,"identifier":"SUSE-Linux-Enterprise-Server-SP3-migration","extensions":[],"friendly_version":"10","arch":"i486","eula_url":"","description":null,"shortname":null,"free":false,"cpe":null,"product_type":"base","online_predecessor_ids":[],"repositories":[{"id":663,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLES10-SP3-Online/sles-10-i586/","distro_target":"sles-10-i586","autorefresh":true,"installer_updates":false,"name":"SLES10-SP3-Online","description":"SLES10-SP3-Online for sles-10-i586"}],"product_class":"7261","predecessor_ids":[]},{"extensions":[],"release_stage":"released","identifier":"SUSE-Linux-Enterprise-Server-SP3-migration","id":783,"friendly_version":"10","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Server","former_identifier":"SUSE-Linux-Enterprise-Server-SP3-migration","release_type":null,"friendly_name":"SUSE Linux Enterprise Server 10 i386 (Migration)","migration_extra":false,"recommended":false,"version":"10","product_type":"base","cpe":null,"predecessor_ids":[],"online_predecessor_ids":[],"repositories":[{"enabled":true,"id":663,"autorefresh":true,"distro_target":"sles-10-i586","url":"https://updates.suse.com/repo/$RCE/SLES10-SP3-Online/sles-10-i586/","name":"SLES10-SP3-Online","installer_updates":false,"description":"SLES10-SP3-Online for sles-10-i586"}],"product_class":"7261","eula_url":"","arch":"i386","free":false,"description":null,"shortname":null},{"shortname":null,"description":null,"free":false,"eula_url":"","arch":"ppc","predecessor_ids":[],"online_predecessor_ids":[],"repositories":[{"name":"SLES10-SP3-Online","installer_updates":false,"description":"SLES10-SP3-Online for sles-10-ppc","id":749,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLES10-SP3-Online/sles-10-ppc/","autorefresh":true,"distro_target":"sles-10-ppc"}],"product_class":"SLES-PPC","cpe":null,"product_type":"base","recommended":false,"version":"10","name":"SUSE Linux Enterprise Server","offline_predecessor_ids":[],"friendly_name":"SUSE Linux Enterprise Server 10 ppc (Migration)","migration_extra":false,"former_identifier":"SUSE-Linux-Enterprise-Server-SP3-migration","release_type":null,"friendly_version":"10","extensions":[],"id":784,"release_stage":"released","identifier":"SUSE-Linux-Enterprise-Server-SP3-migration"},{"product_type":"base","cpe":null,"product_class":"7261","online_predecessor_ids":[],"repositories":[{"description":"SLES10-SP3-Online for sles-10-i586","installer_updates":false,"name":"SLES10-SP3-Online","distro_target":"sles-10-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLES10-SP3-Online/sles-10-i586/","enabled":false,"id":663},{"installer_updates":false,"name":"SLE10-SP3-Debuginfo-Updates","description":"SLE10-SP3-Debuginfo-Updates for sles-10-i586","id":664,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Updates/sles-10-i586/","distro_target":"sles-10-i586","autorefresh":true},{"description":"SLES10-GPLv3-Extras for sles-10-i586","installer_updates":false,"name":"SLES10-GPLv3-Extras","distro_target":"sles-10-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLES10-GPLv3-Extras/sles-10-i586/","enabled":false,"id":665},{"autorefresh":true,"distro_target":"sles-10-i586","url":"https://updates.suse.com/repo/$RCE/SLES10-SP3-LTSS-Updates/sles-10-i586/","enabled":true,"id":666,"description":"SLES10-SP3-LTSS-Updates for sles-10-i586","name":"SLES10-SP3-LTSS-Updates","installer_updates":false},{"id":667,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Online/sles-10-i586/","autorefresh":true,"distro_target":"sles-10-i586","name":"SLE10-SP3-Debuginfo-Online","installer_updates":false,"description":"SLE10-SP3-Debuginfo-Online for sles-10-i586"},{"description":"SLES10-SP3-Pool for sles-10-i586","installer_updates":false,"name":"SLES10-SP3-Pool","distro_target":"sles-10-i586","autorefresh":false,"url":"https://updates.suse.com/repo/$RCE/SLES10-SP3-Pool/sles-10-i586/","enabled":true,"id":668},{"name":"SLE10-SP3-Debuginfo-Pool","installer_updates":false,"description":"SLE10-SP3-Debuginfo-Pool for sles-10-i586","id":669,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Pool/sles-10-i586/","autorefresh":false,"distro_target":"sles-10-i586"},{"description":"SLES10-SP3-Updates for sles-10-i586","installer_updates":false,"name":"SLES10-SP3-Updates","url":"https://updates.suse.com/repo/$RCE/SLES10-SP3-Updates/sles-10-i586/","distro_target":"sles-10-i586","autorefresh":true,"id":670,"enabled":true}],"predecessor_ids":[],"arch":"i586","eula_url":"","free":false,"description":null,"shortname":null,"release_stage":"released","id":785,"identifier":"SUSE-Linux-Enterprise-Server-SP3","extensions":[{"description":null,"shortname":null,"free":true,"arch":null,"eula_url":"","online_predecessor_ids":[],"product_class":"SLE-SDK","repositories":[{"installer_updates":false,"name":"SLE10-SDK-SP3-Pool","description":"SLE10-SDK-SP3-Pool for sles-10-ppc","enabled":true,"id":1322,"distro_target":"sles-10-ppc","autorefresh":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Pool/sles-10-ppc/"},{"description":"SLE10-SDK-SP3-Pool for sles-10-x86_64","installer_updates":false,"name":"SLE10-SDK-SP3-Pool","distro_target":"sles-10-x86_64","autorefresh":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Pool/sles-10-x86_64/","enabled":true,"id":1323},{"name":"SLE10-SDK-SP3-Online","installer_updates":false,"description":"SLE10-SDK-SP3-Online for sled-10-i586","enabled":true,"id":1324,"autorefresh":true,"distro_target":"sled-10-i586","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sled-10-i586/"},{"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Updates/sled-10-x86_64/","distro_target":"sled-10-x86_64","autorefresh":true,"id":1325,"enabled":true,"description":"SLE10-SDK-SP3-Updates for sled-10-x86_64","installer_updates":false,"name":"SLE10-SDK-SP3-Updates"},{"enabled":true,"id":1326,"autorefresh":true,"distro_target":"sled-10-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sled-10-x86_64/","name":"SLE10-SDK-SP3-Online","installer_updates":false,"description":"SLE10-SDK-SP3-Online for sled-10-x86_64"},{"id":1327,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Pool/sled-10-x86_64/","autorefresh":false,"distro_target":"sled-10-x86_64","name":"SLE10-SDK-SP3-Pool","installer_updates":false,"description":"SLE10-SDK-SP3-Pool for sled-10-x86_64"},{"id":1328,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sles-10-ia64/","distro_target":"sles-10-ia64","autorefresh":true,"installer_updates":false,"name":"SLE10-SDK-SP3-Online","description":"SLE10-SDK-SP3-Online for sles-10-ia64"},{"description":"SLE10-SDK-SP3-Updates for sles-10-ia64","name":"SLE10-SDK-SP3-Updates","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Updates/sles-10-ia64/","autorefresh":true,"distro_target":"sles-10-ia64","id":1329,"enabled":true},{"description":"SLE10-SDK-SP3-Online for sles-10-i586","installer_updates":false,"name":"SLE10-SDK-SP3-Online","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sles-10-i586/","distro_target":"sles-10-i586","autorefresh":true,"id":1330,"enabled":true},{"name":"SLE10-SDK-SP3-Pool","installer_updates":false,"description":"SLE10-SDK-SP3-Pool for sles-10-ia64","enabled":true,"id":1331,"autorefresh":false,"distro_target":"sles-10-ia64","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Pool/sles-10-ia64/"},{"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Updates/sles-10-x86_64/","autorefresh":true,"distro_target":"sles-10-x86_64","id":1332,"enabled":true,"description":"SLE10-SDK-SP3-Updates for sles-10-x86_64","name":"SLE10-SDK-SP3-Updates","installer_updates":false},{"id":1333,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Pool/sles-10-i586/","distro_target":"sles-10-i586","autorefresh":false,"installer_updates":false,"name":"SLE10-SDK-SP3-Pool","description":"SLE10-SDK-SP3-Pool for sles-10-i586"},{"installer_updates":false,"name":"SLE10-SDK-SP3-Updates","description":"SLE10-SDK-SP3-Updates for sles-10-i586","id":1334,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Updates/sles-10-i586/","distro_target":"sles-10-i586","autorefresh":true},{"description":"SLE10-SDK-SP3-Online for sles-10-s390x","installer_updates":false,"name":"SLE10-SDK-SP3-Online","distro_target":"sles-10-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sles-10-s390x/","enabled":true,"id":1335},{"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Updates/sles-10-ppc/","distro_target":"sles-10-ppc","autorefresh":true,"id":1336,"enabled":true,"description":"SLE10-SDK-SP3-Updates for sles-10-ppc","installer_updates":false,"name":"SLE10-SDK-SP3-Updates"},{"id":1337,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Pool/sles-10-s390x/","autorefresh":false,"distro_target":"sles-10-s390x","name":"SLE10-SDK-SP3-Pool","installer_updates":false,"description":"SLE10-SDK-SP3-Pool for sles-10-s390x"},{"name":"SLE10-SDK-SP3-Pool","installer_updates":false,"description":"SLE10-SDK-SP3-Pool for sled-10-i586","enabled":true,"id":1338,"autorefresh":false,"distro_target":"sled-10-i586","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Pool/sled-10-i586/"},{"id":1339,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Updates/sles-10-s390x/","distro_target":"sles-10-s390x","autorefresh":true,"installer_updates":false,"name":"SLE10-SDK-SP3-Updates","description":"SLE10-SDK-SP3-Updates for sles-10-s390x"},{"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Updates/sled-10-i586/","autorefresh":true,"distro_target":"sled-10-i586","id":1340,"enabled":true,"description":"SLE10-SDK-SP3-Updates for sled-10-i586","name":"SLE10-SDK-SP3-Updates","installer_updates":false},{"enabled":true,"id":1341,"autorefresh":true,"distro_target":"sles-10-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sles-10-x86_64/","name":"SLE10-SDK-SP3-Online","installer_updates":false,"description":"SLE10-SDK-SP3-Online for sles-10-x86_64"},{"autorefresh":true,"distro_target":"sles-10-ppc","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sles-10-ppc/","enabled":true,"id":1342,"description":"SLE10-SDK-SP3-Online for sles-10-ppc","name":"SLE10-SDK-SP3-Online","installer_updates":false}],"predecessor_ids":[],"cpe":null,"product_type":"extension","version":"10","recommended":false,"friendly_name":"SUSE Linux Enterprise Software Development Kit 10 SP3","migration_extra":false,"release_type":null,"former_identifier":"SUSE-Linux-Enterprise-SDK-SP3","name":"SUSE Linux Enterprise Software Development Kit","offline_predecessor_ids":[],"friendly_version":"10 SP3","release_stage":"released","id":1179,"identifier":"SUSE-Linux-Enterprise-SDK-SP3","extensions":[]},{"recommended":false,"version":"10","name":"SUSE Linux Enterprise Software Development Kit","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Software Development Kit 10 (Migration)","release_type":null,"former_identifier":"SUSE-Linux-Enterprise-SDK-SP3-migration","friendly_version":"10","extensions":[],"id":1180,"release_stage":"released","identifier":"SUSE-Linux-Enterprise-SDK-SP3-migration","description":null,"shortname":null,"free":true,"eula_url":"","arch":null,"predecessor_ids":[],"repositories":[{"installer_updates":false,"name":"SLE10-SDK-SP3-Online","description":"SLE10-SDK-SP3-Online for sled-10-i586","id":1324,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sled-10-i586/","distro_target":"sled-10-i586","autorefresh":true},{"autorefresh":true,"distro_target":"sled-10-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sled-10-x86_64/","enabled":true,"id":1326,"description":"SLE10-SDK-SP3-Online for sled-10-x86_64","name":"SLE10-SDK-SP3-Online","installer_updates":false},{"installer_updates":false,"name":"SLE10-SDK-SP3-Online","description":"SLE10-SDK-SP3-Online for sles-10-ia64","id":1328,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sles-10-ia64/","distro_target":"sles-10-ia64","autorefresh":true},{"description":"SLE10-SDK-SP3-Online for sles-10-i586","name":"SLE10-SDK-SP3-Online","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sles-10-i586/","autorefresh":true,"distro_target":"sles-10-i586","id":1330,"enabled":true},{"name":"SLE10-SDK-SP3-Online","installer_updates":false,"description":"SLE10-SDK-SP3-Online for sles-10-s390x","enabled":true,"id":1335,"autorefresh":true,"distro_target":"sles-10-s390x","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sles-10-s390x/"},{"autorefresh":true,"distro_target":"sles-10-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sles-10-x86_64/","enabled":true,"id":1341,"description":"SLE10-SDK-SP3-Online for sles-10-x86_64","name":"SLE10-SDK-SP3-Online","installer_updates":false},{"description":"SLE10-SDK-SP3-Online for sles-10-ppc","name":"SLE10-SDK-SP3-Online","installer_updates":false,"autorefresh":true,"distro_target":"sles-10-ppc","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sles-10-ppc/","enabled":true,"id":1342}],"online_predecessor_ids":[],"product_class":"SLE-SDK","cpe":null,"product_type":"extension"},{"friendly_version":"10 SP3","identifier":"SUSE-Linux-Enterprise-SMT-SP3","release_stage":"released","id":1197,"extensions":[],"version":"10.3","recommended":false,"former_identifier":"SUSE-Linux-Enterprise-SMT-SP3","release_type":null,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Subscription Management Tool 10 SP3","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Subscription Management Tool","online_predecessor_ids":[],"repositories":[{"description":"SLE10-SP3-Debuginfo-Updates for sles-10-i586","installer_updates":false,"name":"SLE10-SP3-Debuginfo-Updates","distro_target":"sles-10-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Updates/sles-10-i586/","enabled":false,"id":664},{"description":"SLE10-SP3-Debuginfo-Pool for sles-10-i586","installer_updates":false,"name":"SLE10-SP3-Debuginfo-Pool","distro_target":"sles-10-i586","autorefresh":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Pool/sles-10-i586/","enabled":false,"id":669},{"description":"SLE10-SP3-Debuginfo-Pool for sles-10-s390x","installer_updates":false,"name":"SLE10-SP3-Debuginfo-Pool","url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Pool/sles-10-s390x/","distro_target":"sles-10-s390x","autorefresh":false,"id":672,"enabled":false},{"description":"SLE10-SP3-Debuginfo-Updates for sles-10-s390x","installer_updates":false,"name":"SLE10-SP3-Debuginfo-Updates","distro_target":"sles-10-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Updates/sles-10-s390x/","enabled":false,"id":675},{"url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Updates/sles-10-x86_64/","distro_target":"sles-10-x86_64","autorefresh":true,"id":750,"enabled":false,"description":"SLE10-SP3-Debuginfo-Updates for sles-10-x86_64","installer_updates":false,"name":"SLE10-SP3-Debuginfo-Updates"},{"description":"SLE10-SP3-Debuginfo-Pool for sles-10-x86_64","name":"SLE10-SP3-Debuginfo-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sles-10-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Pool/sles-10-x86_64/","enabled":false,"id":751},{"distro_target":"sles-10-ppc","autorefresh":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Pool/sles-10-ppc/","enabled":false,"id":779,"description":"SLE10-SP3-Debuginfo-Pool for sles-10-ppc","installer_updates":false,"name":"SLE10-SP3-Debuginfo-Pool"},{"description":"SLE10-SP3-Debuginfo-Updates for sles-10-ppc","installer_updates":false,"name":"SLE10-SP3-Debuginfo-Updates","url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Updates/sles-10-ppc/","distro_target":"sles-10-ppc","autorefresh":true,"id":780,"enabled":false},{"id":788,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Pool/sles-10-ia64/","distro_target":"sles-10-ia64","autorefresh":false,"installer_updates":false,"name":"SLE10-SP3-Debuginfo-Pool","description":"SLE10-SP3-Debuginfo-Pool for sles-10-ia64"},{"name":"SLE10-SP3-Debuginfo-Updates","installer_updates":false,"description":"SLE10-SP3-Debuginfo-Updates for sles-10-ia64","enabled":false,"id":789,"autorefresh":true,"distro_target":"sles-10-ia64","url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Updates/sles-10-ia64/"},{"name":"SLE10-SP3-Debuginfo-Pool","installer_updates":false,"description":"SLE10-SP3-Debuginfo-Pool for sled-10-x86_64","enabled":false,"id":869,"autorefresh":false,"distro_target":"sled-10-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Pool/sled-10-x86_64/"},{"description":"SLE10-SP3-Debuginfo-Updates for sled-10-x86_64","installer_updates":false,"name":"SLE10-SP3-Debuginfo-Updates","distro_target":"sled-10-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Updates/sled-10-x86_64/","enabled":false,"id":870},{"description":"SLE10-SP3-Debuginfo-Pool for sled-10-i586","installer_updates":false,"name":"SLE10-SP3-Debuginfo-Pool","url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Pool/sled-10-i586/","distro_target":"sled-10-i586","autorefresh":false,"id":895,"enabled":false},{"description":"SLE10-SP3-Debuginfo-Updates for sled-10-i586","installer_updates":false,"name":"SLE10-SP3-Debuginfo-Updates","url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Updates/sled-10-i586/","distro_target":"sled-10-i586","autorefresh":true,"id":896,"enabled":false},{"distro_target":"sles-10-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-SMT-Updates/sles-10-i586/","enabled":true,"id":1403,"description":"SLE10-SP3-SMT-Updates for sles-10-i586","installer_updates":false,"name":"SLE10-SP3-SMT-Updates"},{"autorefresh":true,"distro_target":"sles-10-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-SMT-Updates/sles-10-x86_64/","enabled":true,"id":1404,"description":"SLE10-SP3-SMT-Updates for sles-10-x86_64","name":"SLE10-SP3-SMT-Updates","installer_updates":false}],"product_class":"SLESMT","predecessor_ids":[],"product_type":"extension","cpe":null,"free":true,"shortname":null,"description":null,"arch":null,"eula_url":""}],"friendly_version":"10 SP3","former_identifier":"SUSE-Linux-Enterprise-Server-SP3","release_type":null,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Server 10 SP3 i586","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Server","version":"10","recommended":false},{"online_predecessor_ids":[],"product_class":"7261","repositories":[{"name":"SLES10-SP3-Online","installer_updates":false,"description":"SLES10-SP3-Online for sles-10-i586","enabled":false,"id":663,"autorefresh":true,"distro_target":"sles-10-i586","url":"https://updates.suse.com/repo/$RCE/SLES10-SP3-Online/sles-10-i586/"},{"enabled":false,"id":664,"autorefresh":true,"distro_target":"sles-10-i586","url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Updates/sles-10-i586/","name":"SLE10-SP3-Debuginfo-Updates","installer_updates":false,"description":"SLE10-SP3-Debuginfo-Updates for sles-10-i586"},{"enabled":false,"id":665,"distro_target":"sles-10-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLES10-GPLv3-Extras/sles-10-i586/","installer_updates":false,"name":"SLES10-GPLv3-Extras","description":"SLES10-GPLv3-Extras for sles-10-i586"},{"description":"SLES10-SP3-LTSS-Updates for sles-10-i586","installer_updates":false,"name":"SLES10-SP3-LTSS-Updates","url":"https://updates.suse.com/repo/$RCE/SLES10-SP3-LTSS-Updates/sles-10-i586/","distro_target":"sles-10-i586","autorefresh":true,"id":666,"enabled":true},{"distro_target":"sles-10-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Online/sles-10-i586/","enabled":false,"id":667,"description":"SLE10-SP3-Debuginfo-Online for sles-10-i586","installer_updates":false,"name":"SLE10-SP3-Debuginfo-Online"},{"description":"SLES10-SP3-Pool for sles-10-i586","installer_updates":false,"name":"SLES10-SP3-Pool","url":"https://updates.suse.com/repo/$RCE/SLES10-SP3-Pool/sles-10-i586/","distro_target":"sles-10-i586","autorefresh":false,"id":668,"enabled":true},{"url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Pool/sles-10-i586/","autorefresh":false,"distro_target":"sles-10-i586","id":669,"enabled":false,"description":"SLE10-SP3-Debuginfo-Pool for sles-10-i586","name":"SLE10-SP3-Debuginfo-Pool","installer_updates":false},{"id":670,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLES10-SP3-Updates/sles-10-i586/","distro_target":"sles-10-i586","autorefresh":true,"installer_updates":false,"name":"SLES10-SP3-Updates","description":"SLES10-SP3-Updates for sles-10-i586"}],"predecessor_ids":[],"cpe":null,"product_type":"base","description":null,"shortname":null,"free":false,"arch":"i386","eula_url":"","friendly_version":"10 SP3","identifier":"SUSE-Linux-Enterprise-Server-SP3","release_stage":"released","id":786,"extensions":[{"shortname":null,"description":null,"free":true,"eula_url":"","arch":null,"predecessor_ids":[],"online_predecessor_ids":[],"repositories":[{"description":"SLE10-SDK-SP3-Pool for sles-10-ppc","installer_updates":false,"name":"SLE10-SDK-SP3-Pool","distro_target":"sles-10-ppc","autorefresh":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Pool/sles-10-ppc/","enabled":true,"id":1322},{"name":"SLE10-SDK-SP3-Pool","installer_updates":false,"description":"SLE10-SDK-SP3-Pool for sles-10-x86_64","enabled":true,"id":1323,"autorefresh":false,"distro_target":"sles-10-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Pool/sles-10-x86_64/"},{"name":"SLE10-SDK-SP3-Online","installer_updates":false,"description":"SLE10-SDK-SP3-Online for sled-10-i586","id":1324,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sled-10-i586/","autorefresh":true,"distro_target":"sled-10-i586"},{"id":1325,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Updates/sled-10-x86_64/","autorefresh":true,"distro_target":"sled-10-x86_64","name":"SLE10-SDK-SP3-Updates","installer_updates":false,"description":"SLE10-SDK-SP3-Updates for sled-10-x86_64"},{"name":"SLE10-SDK-SP3-Online","installer_updates":false,"description":"SLE10-SDK-SP3-Online for sled-10-x86_64","enabled":true,"id":1326,"autorefresh":true,"distro_target":"sled-10-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sled-10-x86_64/"},{"name":"SLE10-SDK-SP3-Pool","installer_updates":false,"description":"SLE10-SDK-SP3-Pool for sled-10-x86_64","id":1327,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Pool/sled-10-x86_64/","autorefresh":false,"distro_target":"sled-10-x86_64"},{"name":"SLE10-SDK-SP3-Online","installer_updates":false,"description":"SLE10-SDK-SP3-Online for sles-10-ia64","enabled":true,"id":1328,"autorefresh":true,"distro_target":"sles-10-ia64","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sles-10-ia64/"},{"description":"SLE10-SDK-SP3-Updates for sles-10-ia64","name":"SLE10-SDK-SP3-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sles-10-ia64","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Updates/sles-10-ia64/","enabled":true,"id":1329},{"enabled":true,"id":1330,"autorefresh":true,"distro_target":"sles-10-i586","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sles-10-i586/","name":"SLE10-SDK-SP3-Online","installer_updates":false,"description":"SLE10-SDK-SP3-Online for sles-10-i586"},{"description":"SLE10-SDK-SP3-Pool for sles-10-ia64","installer_updates":false,"name":"SLE10-SDK-SP3-Pool","distro_target":"sles-10-ia64","autorefresh":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Pool/sles-10-ia64/","enabled":true,"id":1331},{"description":"SLE10-SDK-SP3-Updates for sles-10-x86_64","name":"SLE10-SDK-SP3-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sles-10-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Updates/sles-10-x86_64/","enabled":true,"id":1332},{"description":"SLE10-SDK-SP3-Pool for sles-10-i586","installer_updates":false,"name":"SLE10-SDK-SP3-Pool","distro_target":"sles-10-i586","autorefresh":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Pool/sles-10-i586/","enabled":true,"id":1333},{"autorefresh":true,"distro_target":"sles-10-i586","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Updates/sles-10-i586/","enabled":true,"id":1334,"description":"SLE10-SDK-SP3-Updates for sles-10-i586","name":"SLE10-SDK-SP3-Updates","installer_updates":false},{"name":"SLE10-SDK-SP3-Online","installer_updates":false,"description":"SLE10-SDK-SP3-Online for sles-10-s390x","enabled":true,"id":1335,"autorefresh":true,"distro_target":"sles-10-s390x","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sles-10-s390x/"},{"enabled":true,"id":1336,"autorefresh":true,"distro_target":"sles-10-ppc","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Updates/sles-10-ppc/","name":"SLE10-SDK-SP3-Updates","installer_updates":false,"description":"SLE10-SDK-SP3-Updates for sles-10-ppc"},{"id":1337,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Pool/sles-10-s390x/","autorefresh":false,"distro_target":"sles-10-s390x","name":"SLE10-SDK-SP3-Pool","installer_updates":false,"description":"SLE10-SDK-SP3-Pool for sles-10-s390x"},{"enabled":true,"id":1338,"distro_target":"sled-10-i586","autorefresh":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Pool/sled-10-i586/","installer_updates":false,"name":"SLE10-SDK-SP3-Pool","description":"SLE10-SDK-SP3-Pool for sled-10-i586"},{"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Updates/sles-10-s390x/","distro_target":"sles-10-s390x","autorefresh":true,"id":1339,"enabled":true,"description":"SLE10-SDK-SP3-Updates for sles-10-s390x","installer_updates":false,"name":"SLE10-SDK-SP3-Updates"},{"description":"SLE10-SDK-SP3-Updates for sled-10-i586","installer_updates":false,"name":"SLE10-SDK-SP3-Updates","distro_target":"sled-10-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Updates/sled-10-i586/","enabled":true,"id":1340},{"description":"SLE10-SDK-SP3-Online for sles-10-x86_64","installer_updates":false,"name":"SLE10-SDK-SP3-Online","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sles-10-x86_64/","distro_target":"sles-10-x86_64","autorefresh":true,"id":1341,"enabled":true},{"installer_updates":false,"name":"SLE10-SDK-SP3-Online","description":"SLE10-SDK-SP3-Online for sles-10-ppc","id":1342,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sles-10-ppc/","distro_target":"sles-10-ppc","autorefresh":true}],"product_class":"SLE-SDK","cpe":null,"product_type":"extension","recommended":false,"version":"10","name":"SUSE Linux Enterprise Software Development Kit","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Software Development Kit 10 SP3","former_identifier":"SUSE-Linux-Enterprise-SDK-SP3","release_type":null,"friendly_version":"10 SP3","extensions":[],"id":1179,"release_stage":"released","identifier":"SUSE-Linux-Enterprise-SDK-SP3"},{"cpe":null,"product_type":"extension","product_class":"SLE-SDK","online_predecessor_ids":[],"repositories":[{"installer_updates":false,"name":"SLE10-SDK-SP3-Online","description":"SLE10-SDK-SP3-Online for sled-10-i586","id":1324,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sled-10-i586/","distro_target":"sled-10-i586","autorefresh":true},{"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sled-10-x86_64/","autorefresh":true,"distro_target":"sled-10-x86_64","id":1326,"enabled":true,"description":"SLE10-SDK-SP3-Online for sled-10-x86_64","name":"SLE10-SDK-SP3-Online","installer_updates":false},{"id":1328,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sles-10-ia64/","distro_target":"sles-10-ia64","autorefresh":true,"installer_updates":false,"name":"SLE10-SDK-SP3-Online","description":"SLE10-SDK-SP3-Online for sles-10-ia64"},{"id":1330,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sles-10-i586/","autorefresh":true,"distro_target":"sles-10-i586","name":"SLE10-SDK-SP3-Online","installer_updates":false,"description":"SLE10-SDK-SP3-Online for sles-10-i586"},{"id":1335,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sles-10-s390x/","autorefresh":true,"distro_target":"sles-10-s390x","name":"SLE10-SDK-SP3-Online","installer_updates":false,"description":"SLE10-SDK-SP3-Online for sles-10-s390x"},{"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sles-10-x86_64/","distro_target":"sles-10-x86_64","autorefresh":true,"id":1341,"enabled":true,"description":"SLE10-SDK-SP3-Online for sles-10-x86_64","installer_updates":false,"name":"SLE10-SDK-SP3-Online"},{"installer_updates":false,"name":"SLE10-SDK-SP3-Online","description":"SLE10-SDK-SP3-Online for sles-10-ppc","id":1342,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sles-10-ppc/","distro_target":"sles-10-ppc","autorefresh":true}],"predecessor_ids":[],"arch":null,"eula_url":"","description":null,"shortname":null,"free":true,"identifier":"SUSE-Linux-Enterprise-SDK-SP3-migration","release_stage":"released","id":1180,"extensions":[],"friendly_version":"10","migration_extra":false,"friendly_name":"SUSE Linux Enterprise Software Development Kit 10 (Migration)","former_identifier":"SUSE-Linux-Enterprise-SDK-SP3-migration","release_type":null,"name":"SUSE Linux Enterprise Software Development Kit","offline_predecessor_ids":[],"version":"10","recommended":false},{"friendly_version":"10 SP3","id":1197,"release_stage":"released","identifier":"SUSE-Linux-Enterprise-SMT-SP3","extensions":[],"version":"10.3","recommended":false,"release_type":null,"former_identifier":"SUSE-Linux-Enterprise-SMT-SP3","friendly_name":"SUSE Linux Enterprise Subscription Management Tool 10 SP3","migration_extra":false,"offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Subscription Management Tool","repositories":[{"description":"SLE10-SP3-Debuginfo-Updates for sles-10-i586","installer_updates":false,"name":"SLE10-SP3-Debuginfo-Updates","url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Updates/sles-10-i586/","distro_target":"sles-10-i586","autorefresh":true,"id":664,"enabled":false},{"id":669,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Pool/sles-10-i586/","distro_target":"sles-10-i586","autorefresh":false,"installer_updates":false,"name":"SLE10-SP3-Debuginfo-Pool","description":"SLE10-SP3-Debuginfo-Pool for sles-10-i586"},{"description":"SLE10-SP3-Debuginfo-Pool for sles-10-s390x","installer_updates":false,"name":"SLE10-SP3-Debuginfo-Pool","distro_target":"sles-10-s390x","autorefresh":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Pool/sles-10-s390x/","enabled":false,"id":672},{"installer_updates":false,"name":"SLE10-SP3-Debuginfo-Updates","description":"SLE10-SP3-Debuginfo-Updates for sles-10-s390x","enabled":false,"id":675,"distro_target":"sles-10-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Updates/sles-10-s390x/"},{"description":"SLE10-SP3-Debuginfo-Updates for sles-10-x86_64","name":"SLE10-SP3-Debuginfo-Updates","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Updates/sles-10-x86_64/","autorefresh":true,"distro_target":"sles-10-x86_64","id":750,"enabled":false},{"description":"SLE10-SP3-Debuginfo-Pool for sles-10-x86_64","installer_updates":false,"name":"SLE10-SP3-Debuginfo-Pool","distro_target":"sles-10-x86_64","autorefresh":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Pool/sles-10-x86_64/","enabled":false,"id":751},{"url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Pool/sles-10-ppc/","distro_target":"sles-10-ppc","autorefresh":false,"id":779,"enabled":false,"description":"SLE10-SP3-Debuginfo-Pool for sles-10-ppc","installer_updates":false,"name":"SLE10-SP3-Debuginfo-Pool"},{"name":"SLE10-SP3-Debuginfo-Updates","installer_updates":false,"description":"SLE10-SP3-Debuginfo-Updates for sles-10-ppc","id":780,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Updates/sles-10-ppc/","autorefresh":true,"distro_target":"sles-10-ppc"},{"autorefresh":false,"distro_target":"sles-10-ia64","url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Pool/sles-10-ia64/","enabled":false,"id":788,"description":"SLE10-SP3-Debuginfo-Pool for sles-10-ia64","name":"SLE10-SP3-Debuginfo-Pool","installer_updates":false},{"autorefresh":true,"distro_target":"sles-10-ia64","url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Updates/sles-10-ia64/","enabled":false,"id":789,"description":"SLE10-SP3-Debuginfo-Updates for sles-10-ia64","name":"SLE10-SP3-Debuginfo-Updates","installer_updates":false},{"name":"SLE10-SP3-Debuginfo-Pool","installer_updates":false,"description":"SLE10-SP3-Debuginfo-Pool for sled-10-x86_64","id":869,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Pool/sled-10-x86_64/","autorefresh":false,"distro_target":"sled-10-x86_64"},{"enabled":false,"id":870,"autorefresh":true,"distro_target":"sled-10-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Updates/sled-10-x86_64/","name":"SLE10-SP3-Debuginfo-Updates","installer_updates":false,"description":"SLE10-SP3-Debuginfo-Updates for sled-10-x86_64"},{"installer_updates":false,"name":"SLE10-SP3-Debuginfo-Pool","description":"SLE10-SP3-Debuginfo-Pool for sled-10-i586","id":895,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Pool/sled-10-i586/","distro_target":"sled-10-i586","autorefresh":false},{"name":"SLE10-SP3-Debuginfo-Updates","installer_updates":false,"description":"SLE10-SP3-Debuginfo-Updates for sled-10-i586","enabled":false,"id":896,"autorefresh":true,"distro_target":"sled-10-i586","url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Updates/sled-10-i586/"},{"installer_updates":false,"name":"SLE10-SP3-SMT-Updates","description":"SLE10-SP3-SMT-Updates for sles-10-i586","enabled":true,"id":1403,"distro_target":"sles-10-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-SMT-Updates/sles-10-i586/"},{"installer_updates":false,"name":"SLE10-SP3-SMT-Updates","description":"SLE10-SP3-SMT-Updates for sles-10-x86_64","id":1404,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-SMT-Updates/sles-10-x86_64/","distro_target":"sles-10-x86_64","autorefresh":true}],"online_predecessor_ids":[],"product_class":"SLESMT","predecessor_ids":[],"product_type":"extension","cpe":null,"free":true,"shortname":null,"description":null,"arch":null,"eula_url":""}],"version":"10","recommended":false,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Server 10 SP3 i386","former_identifier":"SUSE-Linux-Enterprise-Server-SP3","release_type":null,"name":"SUSE Linux Enterprise Server","offline_predecessor_ids":[]},{"arch":"ppc","eula_url":"","description":null,"shortname":null,"free":false,"cpe":null,"product_type":"base","online_predecessor_ids":[],"repositories":[{"name":"SLES10-GPLv3-Extras","installer_updates":false,"description":"SLES10-GPLv3-Extras for sles-10-ppc","enabled":false,"id":704,"autorefresh":true,"distro_target":"sles-10-ppc","url":"https://updates.suse.com/repo/$RCE/SLES10-GPLv3-Extras/sles-10-ppc/"},{"description":"SLES10-SP3-Online for sles-10-ppc","installer_updates":false,"name":"SLES10-SP3-Online","url":"https://updates.suse.com/repo/$RCE/SLES10-SP3-Online/sles-10-ppc/","distro_target":"sles-10-ppc","autorefresh":true,"id":749,"enabled":false},{"url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Pool/sles-10-ppc/","autorefresh":false,"distro_target":"sles-10-ppc","id":779,"enabled":false,"description":"SLE10-SP3-Debuginfo-Pool for sles-10-ppc","name":"SLE10-SP3-Debuginfo-Pool","installer_updates":false},{"id":780,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Updates/sles-10-ppc/","autorefresh":true,"distro_target":"sles-10-ppc","name":"SLE10-SP3-Debuginfo-Updates","installer_updates":false,"description":"SLE10-SP3-Debuginfo-Updates for sles-10-ppc"},{"installer_updates":false,"name":"SLES10-SP3-Pool","description":"SLES10-SP3-Pool for sles-10-ppc","id":781,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLES10-SP3-Pool/sles-10-ppc/","distro_target":"sles-10-ppc","autorefresh":false},{"description":"SLE10-SP3-Debuginfo-Online for sles-10-ppc","installer_updates":false,"name":"SLE10-SP3-Debuginfo-Online","url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Online/sles-10-ppc/","distro_target":"sles-10-ppc","autorefresh":true,"id":782,"enabled":false},{"url":"https://updates.suse.com/repo/$RCE/SLES10-SP3-Updates/sles-10-ppc/","autorefresh":true,"distro_target":"sles-10-ppc","id":783,"enabled":true,"description":"SLES10-SP3-Updates for sles-10-ppc","name":"SLES10-SP3-Updates","installer_updates":false}],"product_class":"SLES-PPC","predecessor_ids":[],"friendly_name":"SUSE Linux Enterprise Server 10 SP3 ppc","migration_extra":false,"release_type":null,"former_identifier":"SUSE-Linux-Enterprise-Server-SP3","name":"SUSE Linux Enterprise Server","offline_predecessor_ids":[],"version":"10","recommended":false,"identifier":"SUSE-Linux-Enterprise-Server-SP3","release_stage":"released","id":787,"extensions":[{"description":null,"shortname":null,"free":true,"arch":null,"eula_url":"","repositories":[{"id":1322,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Pool/sles-10-ppc/","autorefresh":false,"distro_target":"sles-10-ppc","name":"SLE10-SDK-SP3-Pool","installer_updates":false,"description":"SLE10-SDK-SP3-Pool for sles-10-ppc"},{"enabled":true,"id":1323,"distro_target":"sles-10-x86_64","autorefresh":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Pool/sles-10-x86_64/","installer_updates":false,"name":"SLE10-SDK-SP3-Pool","description":"SLE10-SDK-SP3-Pool for sles-10-x86_64"},{"enabled":true,"id":1324,"distro_target":"sled-10-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sled-10-i586/","installer_updates":false,"name":"SLE10-SDK-SP3-Online","description":"SLE10-SDK-SP3-Online for sled-10-i586"},{"installer_updates":false,"name":"SLE10-SDK-SP3-Updates","description":"SLE10-SDK-SP3-Updates for sled-10-x86_64","id":1325,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Updates/sled-10-x86_64/","distro_target":"sled-10-x86_64","autorefresh":true},{"distro_target":"sled-10-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sled-10-x86_64/","enabled":true,"id":1326,"description":"SLE10-SDK-SP3-Online for sled-10-x86_64","installer_updates":false,"name":"SLE10-SDK-SP3-Online"},{"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Pool/sled-10-x86_64/","autorefresh":false,"distro_target":"sled-10-x86_64","id":1327,"enabled":true,"description":"SLE10-SDK-SP3-Pool for sled-10-x86_64","name":"SLE10-SDK-SP3-Pool","installer_updates":false},{"id":1328,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sles-10-ia64/","autorefresh":true,"distro_target":"sles-10-ia64","name":"SLE10-SDK-SP3-Online","installer_updates":false,"description":"SLE10-SDK-SP3-Online for sles-10-ia64"},{"enabled":true,"id":1329,"autorefresh":true,"distro_target":"sles-10-ia64","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Updates/sles-10-ia64/","name":"SLE10-SDK-SP3-Updates","installer_updates":false,"description":"SLE10-SDK-SP3-Updates for sles-10-ia64"},{"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sles-10-i586/","distro_target":"sles-10-i586","autorefresh":true,"id":1330,"enabled":true,"description":"SLE10-SDK-SP3-Online for sles-10-i586","installer_updates":false,"name":"SLE10-SDK-SP3-Online"},{"name":"SLE10-SDK-SP3-Pool","installer_updates":false,"description":"SLE10-SDK-SP3-Pool for sles-10-ia64","id":1331,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Pool/sles-10-ia64/","autorefresh":false,"distro_target":"sles-10-ia64"},{"enabled":true,"id":1332,"distro_target":"sles-10-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Updates/sles-10-x86_64/","installer_updates":false,"name":"SLE10-SDK-SP3-Updates","description":"SLE10-SDK-SP3-Updates for sles-10-x86_64"},{"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Pool/sles-10-i586/","distro_target":"sles-10-i586","autorefresh":false,"id":1333,"enabled":true,"description":"SLE10-SDK-SP3-Pool for sles-10-i586","installer_updates":false,"name":"SLE10-SDK-SP3-Pool"},{"installer_updates":false,"name":"SLE10-SDK-SP3-Updates","description":"SLE10-SDK-SP3-Updates for sles-10-i586","enabled":true,"id":1334,"distro_target":"sles-10-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Updates/sles-10-i586/"},{"distro_target":"sles-10-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sles-10-s390x/","enabled":true,"id":1335,"description":"SLE10-SDK-SP3-Online for sles-10-s390x","installer_updates":false,"name":"SLE10-SDK-SP3-Online"},{"name":"SLE10-SDK-SP3-Updates","installer_updates":false,"description":"SLE10-SDK-SP3-Updates for sles-10-ppc","id":1336,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Updates/sles-10-ppc/","autorefresh":true,"distro_target":"sles-10-ppc"},{"enabled":true,"id":1337,"autorefresh":false,"distro_target":"sles-10-s390x","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Pool/sles-10-s390x/","name":"SLE10-SDK-SP3-Pool","installer_updates":false,"description":"SLE10-SDK-SP3-Pool for sles-10-s390x"},{"description":"SLE10-SDK-SP3-Pool for sled-10-i586","installer_updates":false,"name":"SLE10-SDK-SP3-Pool","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Pool/sled-10-i586/","distro_target":"sled-10-i586","autorefresh":false,"id":1338,"enabled":true},{"installer_updates":false,"name":"SLE10-SDK-SP3-Updates","description":"SLE10-SDK-SP3-Updates for sles-10-s390x","id":1339,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Updates/sles-10-s390x/","distro_target":"sles-10-s390x","autorefresh":true},{"installer_updates":false,"name":"SLE10-SDK-SP3-Updates","description":"SLE10-SDK-SP3-Updates for sled-10-i586","enabled":true,"id":1340,"distro_target":"sled-10-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Updates/sled-10-i586/"},{"description":"SLE10-SDK-SP3-Online for sles-10-x86_64","name":"SLE10-SDK-SP3-Online","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sles-10-x86_64/","autorefresh":true,"distro_target":"sles-10-x86_64","id":1341,"enabled":true},{"id":1342,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sles-10-ppc/","autorefresh":true,"distro_target":"sles-10-ppc","name":"SLE10-SDK-SP3-Online","installer_updates":false,"description":"SLE10-SDK-SP3-Online for sles-10-ppc"}],"online_predecessor_ids":[],"product_class":"SLE-SDK","predecessor_ids":[],"cpe":null,"product_type":"extension","version":"10","recommended":false,"friendly_name":"SUSE Linux Enterprise Software Development Kit 10 SP3","migration_extra":false,"release_type":null,"former_identifier":"SUSE-Linux-Enterprise-SDK-SP3","name":"SUSE Linux Enterprise Software Development Kit","offline_predecessor_ids":[],"friendly_version":"10 SP3","release_stage":"released","identifier":"SUSE-Linux-Enterprise-SDK-SP3","id":1179,"extensions":[]},{"free":true,"shortname":null,"description":null,"arch":null,"eula_url":"","repositories":[{"enabled":true,"id":1324,"distro_target":"sled-10-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sled-10-i586/","installer_updates":false,"name":"SLE10-SDK-SP3-Online","description":"SLE10-SDK-SP3-Online for sled-10-i586"},{"name":"SLE10-SDK-SP3-Online","installer_updates":false,"description":"SLE10-SDK-SP3-Online for sled-10-x86_64","enabled":true,"id":1326,"autorefresh":true,"distro_target":"sled-10-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sled-10-x86_64/"},{"description":"SLE10-SDK-SP3-Online for sles-10-ia64","installer_updates":false,"name":"SLE10-SDK-SP3-Online","distro_target":"sles-10-ia64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sles-10-ia64/","enabled":true,"id":1328},{"description":"SLE10-SDK-SP3-Online for sles-10-i586","name":"SLE10-SDK-SP3-Online","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sles-10-i586/","autorefresh":true,"distro_target":"sles-10-i586","id":1330,"enabled":true},{"name":"SLE10-SDK-SP3-Online","installer_updates":false,"description":"SLE10-SDK-SP3-Online for sles-10-s390x","enabled":true,"id":1335,"autorefresh":true,"distro_target":"sles-10-s390x","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sles-10-s390x/"},{"id":1341,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sles-10-x86_64/","distro_target":"sles-10-x86_64","autorefresh":true,"installer_updates":false,"name":"SLE10-SDK-SP3-Online","description":"SLE10-SDK-SP3-Online for sles-10-x86_64"},{"enabled":true,"id":1342,"autorefresh":true,"distro_target":"sles-10-ppc","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sles-10-ppc/","name":"SLE10-SDK-SP3-Online","installer_updates":false,"description":"SLE10-SDK-SP3-Online for sles-10-ppc"}],"online_predecessor_ids":[],"product_class":"SLE-SDK","predecessor_ids":[],"product_type":"extension","cpe":null,"version":"10","recommended":false,"release_type":null,"former_identifier":"SUSE-Linux-Enterprise-SDK-SP3-migration","friendly_name":"SUSE Linux Enterprise Software Development Kit 10 (Migration)","migration_extra":false,"offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Software Development Kit","friendly_version":"10","release_stage":"released","id":1180,"identifier":"SUSE-Linux-Enterprise-SDK-SP3-migration","extensions":[]},{"eula_url":"","arch":null,"description":null,"shortname":null,"free":true,"cpe":null,"product_type":"extension","predecessor_ids":[],"product_class":"SLESMT","online_predecessor_ids":[],"repositories":[{"description":"SLE10-SP3-Debuginfo-Updates for sles-10-i586","installer_updates":false,"name":"SLE10-SP3-Debuginfo-Updates","distro_target":"sles-10-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Updates/sles-10-i586/","enabled":false,"id":664},{"name":"SLE10-SP3-Debuginfo-Pool","installer_updates":false,"description":"SLE10-SP3-Debuginfo-Pool for sles-10-i586","enabled":false,"id":669,"autorefresh":false,"distro_target":"sles-10-i586","url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Pool/sles-10-i586/"},{"description":"SLE10-SP3-Debuginfo-Pool for sles-10-s390x","name":"SLE10-SP3-Debuginfo-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sles-10-s390x","url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Pool/sles-10-s390x/","enabled":false,"id":672},{"installer_updates":false,"name":"SLE10-SP3-Debuginfo-Updates","description":"SLE10-SP3-Debuginfo-Updates for sles-10-s390x","id":675,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Updates/sles-10-s390x/","distro_target":"sles-10-s390x","autorefresh":true},{"name":"SLE10-SP3-Debuginfo-Updates","installer_updates":false,"description":"SLE10-SP3-Debuginfo-Updates for sles-10-x86_64","id":750,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Updates/sles-10-x86_64/","autorefresh":true,"distro_target":"sles-10-x86_64"},{"id":751,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Pool/sles-10-x86_64/","autorefresh":false,"distro_target":"sles-10-x86_64","name":"SLE10-SP3-Debuginfo-Pool","installer_updates":false,"description":"SLE10-SP3-Debuginfo-Pool for sles-10-x86_64"},{"distro_target":"sles-10-ppc","autorefresh":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Pool/sles-10-ppc/","enabled":false,"id":779,"description":"SLE10-SP3-Debuginfo-Pool for sles-10-ppc","installer_updates":false,"name":"SLE10-SP3-Debuginfo-Pool"},{"enabled":false,"id":780,"distro_target":"sles-10-ppc","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Updates/sles-10-ppc/","installer_updates":false,"name":"SLE10-SP3-Debuginfo-Updates","description":"SLE10-SP3-Debuginfo-Updates for sles-10-ppc"},{"description":"SLE10-SP3-Debuginfo-Pool for sles-10-ia64","installer_updates":false,"name":"SLE10-SP3-Debuginfo-Pool","url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Pool/sles-10-ia64/","distro_target":"sles-10-ia64","autorefresh":false,"id":788,"enabled":false},{"url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Updates/sles-10-ia64/","distro_target":"sles-10-ia64","autorefresh":true,"id":789,"enabled":false,"description":"SLE10-SP3-Debuginfo-Updates for sles-10-ia64","installer_updates":false,"name":"SLE10-SP3-Debuginfo-Updates"},{"installer_updates":false,"name":"SLE10-SP3-Debuginfo-Pool","description":"SLE10-SP3-Debuginfo-Pool for sled-10-x86_64","id":869,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Pool/sled-10-x86_64/","distro_target":"sled-10-x86_64","autorefresh":false},{"url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Updates/sled-10-x86_64/","autorefresh":true,"distro_target":"sled-10-x86_64","id":870,"enabled":false,"description":"SLE10-SP3-Debuginfo-Updates for sled-10-x86_64","name":"SLE10-SP3-Debuginfo-Updates","installer_updates":false},{"description":"SLE10-SP3-Debuginfo-Pool for sled-10-i586","name":"SLE10-SP3-Debuginfo-Pool","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Pool/sled-10-i586/","autorefresh":false,"distro_target":"sled-10-i586","id":895,"enabled":false},{"name":"SLE10-SP3-Debuginfo-Updates","installer_updates":false,"description":"SLE10-SP3-Debuginfo-Updates for sled-10-i586","id":896,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Updates/sled-10-i586/","autorefresh":true,"distro_target":"sled-10-i586"},{"url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-SMT-Updates/sles-10-i586/","distro_target":"sles-10-i586","autorefresh":true,"id":1403,"enabled":true,"description":"SLE10-SP3-SMT-Updates for sles-10-i586","installer_updates":false,"name":"SLE10-SP3-SMT-Updates"},{"id":1404,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-SMT-Updates/sles-10-x86_64/","distro_target":"sles-10-x86_64","autorefresh":true,"installer_updates":false,"name":"SLE10-SP3-SMT-Updates","description":"SLE10-SP3-SMT-Updates for sles-10-x86_64"}],"name":"SUSE Linux Enterprise Subscription Management Tool","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Subscription Management Tool 10 SP3","former_identifier":"SUSE-Linux-Enterprise-SMT-SP3","release_type":null,"recommended":false,"version":"10.3","extensions":[],"id":1197,"release_stage":"released","identifier":"SUSE-Linux-Enterprise-SMT-SP3","friendly_version":"10 SP3"}],"friendly_version":"10 SP3"},{"description":null,"shortname":null,"free":false,"arch":"ppc","eula_url":"","online_predecessor_ids":[],"product_class":"SLES-PPC","repositories":[{"id":749,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLES10-SP3-Online/sles-10-ppc/","autorefresh":true,"distro_target":"sles-10-ppc","name":"SLES10-SP3-Online","installer_updates":false,"description":"SLES10-SP3-Online for sles-10-ppc"},{"id":779,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Pool/sles-10-ppc/","distro_target":"sles-10-ppc","autorefresh":false,"installer_updates":false,"name":"SLE10-SP3-Debuginfo-Pool","description":"SLE10-SP3-Debuginfo-Pool for sles-10-ppc"},{"distro_target":"sles-10-ppc","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Updates/sles-10-ppc/","enabled":false,"id":780,"description":"SLE10-SP3-Debuginfo-Updates for sles-10-ppc","installer_updates":false,"name":"SLE10-SP3-Debuginfo-Updates"},{"description":"SLES10-SP3-Pool for sles-10-ppc","installer_updates":false,"name":"SLES10-SP3-Pool","url":"https://updates.suse.com/repo/$RCE/SLES10-SP3-Pool/sles-10-ppc/","distro_target":"sles-10-ppc","autorefresh":false,"id":781,"enabled":false},{"installer_updates":false,"name":"SLE10-SP3-Debuginfo-Online","description":"SLE10-SP3-Debuginfo-Online for sles-10-ppc","enabled":false,"id":782,"distro_target":"sles-10-ppc","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Online/sles-10-ppc/"},{"installer_updates":false,"name":"SLES10-SP3-Updates","description":"SLES10-SP3-Updates for sles-10-ppc","enabled":true,"id":783,"distro_target":"sles-10-ppc","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLES10-SP3-Updates/sles-10-ppc/"}],"predecessor_ids":[],"cpe":null,"product_type":"base","version":"10","recommended":false,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Server 10 SP3 online ppc","former_identifier":"SUSE-Linux-Enterprise-Server-SP3","release_type":"online","name":"SUSE Linux Enterprise Server","offline_predecessor_ids":[],"friendly_version":"10 SP3","id":788,"release_stage":"released","identifier":"SUSE-Linux-Enterprise-Server-SP3","extensions":[{"arch":null,"eula_url":"","free":true,"shortname":null,"description":null,"product_type":"extension","cpe":null,"online_predecessor_ids":[],"repositories":[{"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Pool/sles-10-ppc/","distro_target":"sles-10-ppc","autorefresh":false,"id":1322,"enabled":true,"description":"SLE10-SDK-SP3-Pool for sles-10-ppc","installer_updates":false,"name":"SLE10-SDK-SP3-Pool"},{"description":"SLE10-SDK-SP3-Pool for sles-10-x86_64","name":"SLE10-SDK-SP3-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sles-10-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Pool/sles-10-x86_64/","enabled":true,"id":1323},{"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sled-10-i586/","autorefresh":true,"distro_target":"sled-10-i586","id":1324,"enabled":true,"description":"SLE10-SDK-SP3-Online for sled-10-i586","name":"SLE10-SDK-SP3-Online","installer_updates":false},{"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Updates/sled-10-x86_64/","distro_target":"sled-10-x86_64","autorefresh":true,"id":1325,"enabled":true,"description":"SLE10-SDK-SP3-Updates for sled-10-x86_64","installer_updates":false,"name":"SLE10-SDK-SP3-Updates"},{"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sled-10-x86_64/","distro_target":"sled-10-x86_64","autorefresh":true,"id":1326,"enabled":true,"description":"SLE10-SDK-SP3-Online for sled-10-x86_64","installer_updates":false,"name":"SLE10-SDK-SP3-Online"},{"autorefresh":false,"distro_target":"sled-10-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Pool/sled-10-x86_64/","enabled":true,"id":1327,"description":"SLE10-SDK-SP3-Pool for sled-10-x86_64","name":"SLE10-SDK-SP3-Pool","installer_updates":false},{"installer_updates":false,"name":"SLE10-SDK-SP3-Online","description":"SLE10-SDK-SP3-Online for sles-10-ia64","enabled":true,"id":1328,"distro_target":"sles-10-ia64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sles-10-ia64/"},{"name":"SLE10-SDK-SP3-Updates","installer_updates":false,"description":"SLE10-SDK-SP3-Updates for sles-10-ia64","enabled":true,"id":1329,"autorefresh":true,"distro_target":"sles-10-ia64","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Updates/sles-10-ia64/"},{"name":"SLE10-SDK-SP3-Online","installer_updates":false,"description":"SLE10-SDK-SP3-Online for sles-10-i586","enabled":true,"id":1330,"autorefresh":true,"distro_target":"sles-10-i586","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sles-10-i586/"},{"id":1331,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Pool/sles-10-ia64/","autorefresh":false,"distro_target":"sles-10-ia64","name":"SLE10-SDK-SP3-Pool","installer_updates":false,"description":"SLE10-SDK-SP3-Pool for sles-10-ia64"},{"enabled":true,"id":1332,"distro_target":"sles-10-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Updates/sles-10-x86_64/","installer_updates":false,"name":"SLE10-SDK-SP3-Updates","description":"SLE10-SDK-SP3-Updates for sles-10-x86_64"},{"distro_target":"sles-10-i586","autorefresh":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Pool/sles-10-i586/","enabled":true,"id":1333,"description":"SLE10-SDK-SP3-Pool for sles-10-i586","installer_updates":false,"name":"SLE10-SDK-SP3-Pool"},{"installer_updates":false,"name":"SLE10-SDK-SP3-Updates","description":"SLE10-SDK-SP3-Updates for sles-10-i586","enabled":true,"id":1334,"distro_target":"sles-10-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Updates/sles-10-i586/"},{"name":"SLE10-SDK-SP3-Online","installer_updates":false,"description":"SLE10-SDK-SP3-Online for sles-10-s390x","id":1335,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sles-10-s390x/","autorefresh":true,"distro_target":"sles-10-s390x"},{"autorefresh":true,"distro_target":"sles-10-ppc","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Updates/sles-10-ppc/","enabled":true,"id":1336,"description":"SLE10-SDK-SP3-Updates for sles-10-ppc","name":"SLE10-SDK-SP3-Updates","installer_updates":false},{"distro_target":"sles-10-s390x","autorefresh":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Pool/sles-10-s390x/","enabled":true,"id":1337,"description":"SLE10-SDK-SP3-Pool for sles-10-s390x","installer_updates":false,"name":"SLE10-SDK-SP3-Pool"},{"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Pool/sled-10-i586/","autorefresh":false,"distro_target":"sled-10-i586","id":1338,"enabled":true,"description":"SLE10-SDK-SP3-Pool for sled-10-i586","name":"SLE10-SDK-SP3-Pool","installer_updates":false},{"distro_target":"sles-10-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Updates/sles-10-s390x/","enabled":true,"id":1339,"description":"SLE10-SDK-SP3-Updates for sles-10-s390x","installer_updates":false,"name":"SLE10-SDK-SP3-Updates"},{"description":"SLE10-SDK-SP3-Updates for sled-10-i586","name":"SLE10-SDK-SP3-Updates","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Updates/sled-10-i586/","autorefresh":true,"distro_target":"sled-10-i586","id":1340,"enabled":true},{"installer_updates":false,"name":"SLE10-SDK-SP3-Online","description":"SLE10-SDK-SP3-Online for sles-10-x86_64","enabled":true,"id":1341,"distro_target":"sles-10-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sles-10-x86_64/"},{"distro_target":"sles-10-ppc","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sles-10-ppc/","enabled":true,"id":1342,"description":"SLE10-SDK-SP3-Online for sles-10-ppc","installer_updates":false,"name":"SLE10-SDK-SP3-Online"}],"product_class":"SLE-SDK","predecessor_ids":[],"release_type":null,"former_identifier":"SUSE-Linux-Enterprise-SDK-SP3","friendly_name":"SUSE Linux Enterprise Software Development Kit 10 SP3","migration_extra":false,"offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Software Development Kit","version":"10","recommended":false,"id":1179,"release_stage":"released","identifier":"SUSE-Linux-Enterprise-SDK-SP3","extensions":[],"friendly_version":"10 SP3"},{"eula_url":"","arch":null,"shortname":null,"description":null,"free":true,"cpe":null,"product_type":"extension","predecessor_ids":[],"repositories":[{"id":1324,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sled-10-i586/","autorefresh":true,"distro_target":"sled-10-i586","name":"SLE10-SDK-SP3-Online","installer_updates":false,"description":"SLE10-SDK-SP3-Online for sled-10-i586"},{"installer_updates":false,"name":"SLE10-SDK-SP3-Online","description":"SLE10-SDK-SP3-Online for sled-10-x86_64","id":1326,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sled-10-x86_64/","distro_target":"sled-10-x86_64","autorefresh":true},{"description":"SLE10-SDK-SP3-Online for sles-10-ia64","name":"SLE10-SDK-SP3-Online","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sles-10-ia64/","autorefresh":true,"distro_target":"sles-10-ia64","id":1328,"enabled":true},{"name":"SLE10-SDK-SP3-Online","installer_updates":false,"description":"SLE10-SDK-SP3-Online for sles-10-i586","enabled":true,"id":1330,"autorefresh":true,"distro_target":"sles-10-i586","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sles-10-i586/"},{"enabled":true,"id":1335,"distro_target":"sles-10-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sles-10-s390x/","installer_updates":false,"name":"SLE10-SDK-SP3-Online","description":"SLE10-SDK-SP3-Online for sles-10-s390x"},{"description":"SLE10-SDK-SP3-Online for sles-10-x86_64","installer_updates":false,"name":"SLE10-SDK-SP3-Online","distro_target":"sles-10-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sles-10-x86_64/","enabled":true,"id":1341},{"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sles-10-ppc/","distro_target":"sles-10-ppc","autorefresh":true,"id":1342,"enabled":true,"description":"SLE10-SDK-SP3-Online for sles-10-ppc","installer_updates":false,"name":"SLE10-SDK-SP3-Online"}],"online_predecessor_ids":[],"product_class":"SLE-SDK","name":"SUSE Linux Enterprise Software Development Kit","offline_predecessor_ids":[],"friendly_name":"SUSE Linux Enterprise Software Development Kit 10 (Migration)","migration_extra":false,"release_type":null,"former_identifier":"SUSE-Linux-Enterprise-SDK-SP3-migration","recommended":false,"version":"10","extensions":[],"release_stage":"released","id":1180,"identifier":"SUSE-Linux-Enterprise-SDK-SP3-migration","friendly_version":"10"},{"extensions":[],"release_stage":"released","id":1197,"identifier":"SUSE-Linux-Enterprise-SMT-SP3","friendly_version":"10 SP3","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Subscription Management Tool","former_identifier":"SUSE-Linux-Enterprise-SMT-SP3","release_type":null,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Subscription Management Tool 10 SP3","recommended":false,"version":"10.3","product_type":"extension","cpe":null,"predecessor_ids":[],"repositories":[{"installer_updates":false,"name":"SLE10-SP3-Debuginfo-Updates","description":"SLE10-SP3-Debuginfo-Updates for sles-10-i586","enabled":false,"id":664,"distro_target":"sles-10-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Updates/sles-10-i586/"},{"description":"SLE10-SP3-Debuginfo-Pool for sles-10-i586","installer_updates":false,"name":"SLE10-SP3-Debuginfo-Pool","url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Pool/sles-10-i586/","distro_target":"sles-10-i586","autorefresh":false,"id":669,"enabled":false},{"installer_updates":false,"name":"SLE10-SP3-Debuginfo-Pool","description":"SLE10-SP3-Debuginfo-Pool for sles-10-s390x","id":672,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Pool/sles-10-s390x/","distro_target":"sles-10-s390x","autorefresh":false},{"id":675,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Updates/sles-10-s390x/","distro_target":"sles-10-s390x","autorefresh":true,"installer_updates":false,"name":"SLE10-SP3-Debuginfo-Updates","description":"SLE10-SP3-Debuginfo-Updates for sles-10-s390x"},{"name":"SLE10-SP3-Debuginfo-Updates","installer_updates":false,"description":"SLE10-SP3-Debuginfo-Updates for sles-10-x86_64","id":750,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Updates/sles-10-x86_64/","autorefresh":true,"distro_target":"sles-10-x86_64"},{"url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Pool/sles-10-x86_64/","distro_target":"sles-10-x86_64","autorefresh":false,"id":751,"enabled":false,"description":"SLE10-SP3-Debuginfo-Pool for sles-10-x86_64","installer_updates":false,"name":"SLE10-SP3-Debuginfo-Pool"},{"installer_updates":false,"name":"SLE10-SP3-Debuginfo-Pool","description":"SLE10-SP3-Debuginfo-Pool for sles-10-ppc","enabled":false,"id":779,"distro_target":"sles-10-ppc","autorefresh":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Pool/sles-10-ppc/"},{"distro_target":"sles-10-ppc","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Updates/sles-10-ppc/","enabled":false,"id":780,"description":"SLE10-SP3-Debuginfo-Updates for sles-10-ppc","installer_updates":false,"name":"SLE10-SP3-Debuginfo-Updates"},{"name":"SLE10-SP3-Debuginfo-Pool","installer_updates":false,"description":"SLE10-SP3-Debuginfo-Pool for sles-10-ia64","enabled":false,"id":788,"autorefresh":false,"distro_target":"sles-10-ia64","url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Pool/sles-10-ia64/"},{"enabled":false,"id":789,"autorefresh":true,"distro_target":"sles-10-ia64","url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Updates/sles-10-ia64/","name":"SLE10-SP3-Debuginfo-Updates","installer_updates":false,"description":"SLE10-SP3-Debuginfo-Updates for sles-10-ia64"},{"installer_updates":false,"name":"SLE10-SP3-Debuginfo-Pool","description":"SLE10-SP3-Debuginfo-Pool for sled-10-x86_64","id":869,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Pool/sled-10-x86_64/","distro_target":"sled-10-x86_64","autorefresh":false},{"id":870,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Updates/sled-10-x86_64/","autorefresh":true,"distro_target":"sled-10-x86_64","name":"SLE10-SP3-Debuginfo-Updates","installer_updates":false,"description":"SLE10-SP3-Debuginfo-Updates for sled-10-x86_64"},{"installer_updates":false,"name":"SLE10-SP3-Debuginfo-Pool","description":"SLE10-SP3-Debuginfo-Pool for sled-10-i586","enabled":false,"id":895,"distro_target":"sled-10-i586","autorefresh":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Pool/sled-10-i586/"},{"installer_updates":false,"name":"SLE10-SP3-Debuginfo-Updates","description":"SLE10-SP3-Debuginfo-Updates for sled-10-i586","id":896,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Updates/sled-10-i586/","distro_target":"sled-10-i586","autorefresh":true},{"description":"SLE10-SP3-SMT-Updates for sles-10-i586","name":"SLE10-SP3-SMT-Updates","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-SMT-Updates/sles-10-i586/","autorefresh":true,"distro_target":"sles-10-i586","id":1403,"enabled":true},{"description":"SLE10-SP3-SMT-Updates for sles-10-x86_64","installer_updates":false,"name":"SLE10-SP3-SMT-Updates","url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-SMT-Updates/sles-10-x86_64/","distro_target":"sles-10-x86_64","autorefresh":true,"id":1404,"enabled":true}],"online_predecessor_ids":[],"product_class":"SLESMT","eula_url":"","arch":null,"free":true,"shortname":null,"description":null}]},{"product_type":"base","cpe":null,"online_predecessor_ids":[],"repositories":[{"id":749,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLES10-SP3-Online/sles-10-ppc/","distro_target":"sles-10-ppc","autorefresh":true,"installer_updates":false,"name":"SLES10-SP3-Online","description":"SLES10-SP3-Online for sles-10-ppc"},{"id":779,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Pool/sles-10-ppc/","distro_target":"sles-10-ppc","autorefresh":false,"installer_updates":false,"name":"SLE10-SP3-Debuginfo-Pool","description":"SLE10-SP3-Debuginfo-Pool for sles-10-ppc"},{"enabled":false,"id":780,"distro_target":"sles-10-ppc","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Updates/sles-10-ppc/","installer_updates":false,"name":"SLE10-SP3-Debuginfo-Updates","description":"SLE10-SP3-Debuginfo-Updates for sles-10-ppc"},{"enabled":false,"id":781,"autorefresh":false,"distro_target":"sles-10-ppc","url":"https://updates.suse.com/repo/$RCE/SLES10-SP3-Pool/sles-10-ppc/","name":"SLES10-SP3-Pool","installer_updates":false,"description":"SLES10-SP3-Pool for sles-10-ppc"},{"enabled":false,"id":782,"distro_target":"sles-10-ppc","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Online/sles-10-ppc/","installer_updates":false,"name":"SLE10-SP3-Debuginfo-Online","description":"SLE10-SP3-Debuginfo-Online for sles-10-ppc"},{"name":"SLES10-SP3-Updates","installer_updates":false,"description":"SLES10-SP3-Updates for sles-10-ppc","enabled":true,"id":783,"autorefresh":true,"distro_target":"sles-10-ppc","url":"https://updates.suse.com/repo/$RCE/SLES10-SP3-Updates/sles-10-ppc/"}],"product_class":"SLES-PPC","predecessor_ids":[],"arch":"ppc64","eula_url":"","free":false,"description":null,"shortname":null,"release_stage":"released","identifier":"SUSE-Linux-Enterprise-Server-SP3","id":789,"extensions":[{"offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Software Development Kit","release_type":null,"former_identifier":"SUSE-Linux-Enterprise-SDK-SP3","friendly_name":"SUSE Linux Enterprise Software Development Kit 10 SP3","migration_extra":false,"recommended":false,"version":"10","extensions":[],"identifier":"SUSE-Linux-Enterprise-SDK-SP3","release_stage":"released","id":1179,"friendly_version":"10 SP3","eula_url":"","arch":null,"free":true,"description":null,"shortname":null,"product_type":"extension","cpe":null,"predecessor_ids":[],"product_class":"SLE-SDK","online_predecessor_ids":[],"repositories":[{"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Pool/sles-10-ppc/","autorefresh":false,"distro_target":"sles-10-ppc","id":1322,"enabled":true,"description":"SLE10-SDK-SP3-Pool for sles-10-ppc","name":"SLE10-SDK-SP3-Pool","installer_updates":false},{"description":"SLE10-SDK-SP3-Pool for sles-10-x86_64","name":"SLE10-SDK-SP3-Pool","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Pool/sles-10-x86_64/","autorefresh":false,"distro_target":"sles-10-x86_64","id":1323,"enabled":true},{"enabled":true,"id":1324,"autorefresh":true,"distro_target":"sled-10-i586","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sled-10-i586/","name":"SLE10-SDK-SP3-Online","installer_updates":false,"description":"SLE10-SDK-SP3-Online for sled-10-i586"},{"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Updates/sled-10-x86_64/","distro_target":"sled-10-x86_64","autorefresh":true,"id":1325,"enabled":true,"description":"SLE10-SDK-SP3-Updates for sled-10-x86_64","installer_updates":false,"name":"SLE10-SDK-SP3-Updates"},{"description":"SLE10-SDK-SP3-Online for sled-10-x86_64","installer_updates":false,"name":"SLE10-SDK-SP3-Online","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sled-10-x86_64/","distro_target":"sled-10-x86_64","autorefresh":true,"id":1326,"enabled":true},{"description":"SLE10-SDK-SP3-Pool for sled-10-x86_64","installer_updates":false,"name":"SLE10-SDK-SP3-Pool","distro_target":"sled-10-x86_64","autorefresh":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Pool/sled-10-x86_64/","enabled":true,"id":1327},{"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sles-10-ia64/","distro_target":"sles-10-ia64","autorefresh":true,"id":1328,"enabled":true,"description":"SLE10-SDK-SP3-Online for sles-10-ia64","installer_updates":false,"name":"SLE10-SDK-SP3-Online"},{"enabled":true,"id":1329,"autorefresh":true,"distro_target":"sles-10-ia64","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Updates/sles-10-ia64/","name":"SLE10-SDK-SP3-Updates","installer_updates":false,"description":"SLE10-SDK-SP3-Updates for sles-10-ia64"},{"enabled":true,"id":1330,"distro_target":"sles-10-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sles-10-i586/","installer_updates":false,"name":"SLE10-SDK-SP3-Online","description":"SLE10-SDK-SP3-Online for sles-10-i586"},{"installer_updates":false,"name":"SLE10-SDK-SP3-Pool","description":"SLE10-SDK-SP3-Pool for sles-10-ia64","enabled":true,"id":1331,"distro_target":"sles-10-ia64","autorefresh":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Pool/sles-10-ia64/"},{"description":"SLE10-SDK-SP3-Updates for sles-10-x86_64","name":"SLE10-SDK-SP3-Updates","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Updates/sles-10-x86_64/","autorefresh":true,"distro_target":"sles-10-x86_64","id":1332,"enabled":true},{"id":1333,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Pool/sles-10-i586/","autorefresh":false,"distro_target":"sles-10-i586","name":"SLE10-SDK-SP3-Pool","installer_updates":false,"description":"SLE10-SDK-SP3-Pool for sles-10-i586"},{"description":"SLE10-SDK-SP3-Updates for sles-10-i586","name":"SLE10-SDK-SP3-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sles-10-i586","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Updates/sles-10-i586/","enabled":true,"id":1334},{"distro_target":"sles-10-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sles-10-s390x/","enabled":true,"id":1335,"description":"SLE10-SDK-SP3-Online for sles-10-s390x","installer_updates":false,"name":"SLE10-SDK-SP3-Online"},{"id":1336,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Updates/sles-10-ppc/","distro_target":"sles-10-ppc","autorefresh":true,"installer_updates":false,"name":"SLE10-SDK-SP3-Updates","description":"SLE10-SDK-SP3-Updates for sles-10-ppc"},{"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Pool/sles-10-s390x/","distro_target":"sles-10-s390x","autorefresh":false,"id":1337,"enabled":true,"description":"SLE10-SDK-SP3-Pool for sles-10-s390x","installer_updates":false,"name":"SLE10-SDK-SP3-Pool"},{"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Pool/sled-10-i586/","distro_target":"sled-10-i586","autorefresh":false,"id":1338,"enabled":true,"description":"SLE10-SDK-SP3-Pool for sled-10-i586","installer_updates":false,"name":"SLE10-SDK-SP3-Pool"},{"description":"SLE10-SDK-SP3-Updates for sles-10-s390x","installer_updates":false,"name":"SLE10-SDK-SP3-Updates","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Updates/sles-10-s390x/","distro_target":"sles-10-s390x","autorefresh":true,"id":1339,"enabled":true},{"installer_updates":false,"name":"SLE10-SDK-SP3-Updates","description":"SLE10-SDK-SP3-Updates for sled-10-i586","id":1340,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Updates/sled-10-i586/","distro_target":"sled-10-i586","autorefresh":true},{"distro_target":"sles-10-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sles-10-x86_64/","enabled":true,"id":1341,"description":"SLE10-SDK-SP3-Online for sles-10-x86_64","installer_updates":false,"name":"SLE10-SDK-SP3-Online"},{"description":"SLE10-SDK-SP3-Online for sles-10-ppc","name":"SLE10-SDK-SP3-Online","installer_updates":false,"autorefresh":true,"distro_target":"sles-10-ppc","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sles-10-ppc/","enabled":true,"id":1342}]},{"friendly_version":"10","release_stage":"released","identifier":"SUSE-Linux-Enterprise-SDK-SP3-migration","id":1180,"extensions":[],"version":"10","recommended":false,"release_type":null,"former_identifier":"SUSE-Linux-Enterprise-SDK-SP3-migration","friendly_name":"SUSE Linux Enterprise Software Development Kit 10 (Migration)","migration_extra":false,"offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Software Development Kit","online_predecessor_ids":[],"product_class":"SLE-SDK","repositories":[{"id":1324,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sled-10-i586/","autorefresh":true,"distro_target":"sled-10-i586","name":"SLE10-SDK-SP3-Online","installer_updates":false,"description":"SLE10-SDK-SP3-Online for sled-10-i586"},{"enabled":true,"id":1326,"autorefresh":true,"distro_target":"sled-10-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sled-10-x86_64/","name":"SLE10-SDK-SP3-Online","installer_updates":false,"description":"SLE10-SDK-SP3-Online for sled-10-x86_64"},{"id":1328,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sles-10-ia64/","autorefresh":true,"distro_target":"sles-10-ia64","name":"SLE10-SDK-SP3-Online","installer_updates":false,"description":"SLE10-SDK-SP3-Online for sles-10-ia64"},{"description":"SLE10-SDK-SP3-Online for sles-10-i586","installer_updates":false,"name":"SLE10-SDK-SP3-Online","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sles-10-i586/","distro_target":"sles-10-i586","autorefresh":true,"id":1330,"enabled":true},{"id":1335,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sles-10-s390x/","distro_target":"sles-10-s390x","autorefresh":true,"installer_updates":false,"name":"SLE10-SDK-SP3-Online","description":"SLE10-SDK-SP3-Online for sles-10-s390x"},{"enabled":true,"id":1341,"autorefresh":true,"distro_target":"sles-10-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sles-10-x86_64/","name":"SLE10-SDK-SP3-Online","installer_updates":false,"description":"SLE10-SDK-SP3-Online for sles-10-x86_64"},{"description":"SLE10-SDK-SP3-Online for sles-10-ppc","name":"SLE10-SDK-SP3-Online","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sles-10-ppc/","autorefresh":true,"distro_target":"sles-10-ppc","id":1342,"enabled":true}],"predecessor_ids":[],"product_type":"extension","cpe":null,"free":true,"description":null,"shortname":null,"arch":null,"eula_url":""},{"description":null,"shortname":null,"free":true,"arch":null,"eula_url":"","product_class":"SLESMT","online_predecessor_ids":[],"repositories":[{"description":"SLE10-SP3-Debuginfo-Updates for sles-10-i586","installer_updates":false,"name":"SLE10-SP3-Debuginfo-Updates","url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Updates/sles-10-i586/","distro_target":"sles-10-i586","autorefresh":true,"id":664,"enabled":false},{"installer_updates":false,"name":"SLE10-SP3-Debuginfo-Pool","description":"SLE10-SP3-Debuginfo-Pool for sles-10-i586","enabled":false,"id":669,"distro_target":"sles-10-i586","autorefresh":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Pool/sles-10-i586/"},{"id":672,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Pool/sles-10-s390x/","distro_target":"sles-10-s390x","autorefresh":false,"installer_updates":false,"name":"SLE10-SP3-Debuginfo-Pool","description":"SLE10-SP3-Debuginfo-Pool for sles-10-s390x"},{"url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Updates/sles-10-s390x/","distro_target":"sles-10-s390x","autorefresh":true,"id":675,"enabled":false,"description":"SLE10-SP3-Debuginfo-Updates for sles-10-s390x","installer_updates":false,"name":"SLE10-SP3-Debuginfo-Updates"},{"description":"SLE10-SP3-Debuginfo-Updates for sles-10-x86_64","name":"SLE10-SP3-Debuginfo-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sles-10-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Updates/sles-10-x86_64/","enabled":false,"id":750},{"description":"SLE10-SP3-Debuginfo-Pool for sles-10-x86_64","installer_updates":false,"name":"SLE10-SP3-Debuginfo-Pool","url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Pool/sles-10-x86_64/","distro_target":"sles-10-x86_64","autorefresh":false,"id":751,"enabled":false},{"url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Pool/sles-10-ppc/","distro_target":"sles-10-ppc","autorefresh":false,"id":779,"enabled":false,"description":"SLE10-SP3-Debuginfo-Pool for sles-10-ppc","installer_updates":false,"name":"SLE10-SP3-Debuginfo-Pool"},{"autorefresh":true,"distro_target":"sles-10-ppc","url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Updates/sles-10-ppc/","enabled":false,"id":780,"description":"SLE10-SP3-Debuginfo-Updates for sles-10-ppc","name":"SLE10-SP3-Debuginfo-Updates","installer_updates":false},{"name":"SLE10-SP3-Debuginfo-Pool","installer_updates":false,"description":"SLE10-SP3-Debuginfo-Pool for sles-10-ia64","id":788,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Pool/sles-10-ia64/","autorefresh":false,"distro_target":"sles-10-ia64"},{"url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Updates/sles-10-ia64/","distro_target":"sles-10-ia64","autorefresh":true,"id":789,"enabled":false,"description":"SLE10-SP3-Debuginfo-Updates for sles-10-ia64","installer_updates":false,"name":"SLE10-SP3-Debuginfo-Updates"},{"url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Pool/sled-10-x86_64/","distro_target":"sled-10-x86_64","autorefresh":false,"id":869,"enabled":false,"description":"SLE10-SP3-Debuginfo-Pool for sled-10-x86_64","installer_updates":false,"name":"SLE10-SP3-Debuginfo-Pool"},{"url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Updates/sled-10-x86_64/","autorefresh":true,"distro_target":"sled-10-x86_64","id":870,"enabled":false,"description":"SLE10-SP3-Debuginfo-Updates for sled-10-x86_64","name":"SLE10-SP3-Debuginfo-Updates","installer_updates":false},{"url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Pool/sled-10-i586/","autorefresh":false,"distro_target":"sled-10-i586","id":895,"enabled":false,"description":"SLE10-SP3-Debuginfo-Pool for sled-10-i586","name":"SLE10-SP3-Debuginfo-Pool","installer_updates":false},{"description":"SLE10-SP3-Debuginfo-Updates for sled-10-i586","name":"SLE10-SP3-Debuginfo-Updates","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Updates/sled-10-i586/","autorefresh":true,"distro_target":"sled-10-i586","id":896,"enabled":false},{"url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-SMT-Updates/sles-10-i586/","distro_target":"sles-10-i586","autorefresh":true,"id":1403,"enabled":true,"description":"SLE10-SP3-SMT-Updates for sles-10-i586","installer_updates":false,"name":"SLE10-SP3-SMT-Updates"},{"installer_updates":false,"name":"SLE10-SP3-SMT-Updates","description":"SLE10-SP3-SMT-Updates for sles-10-x86_64","id":1404,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-SMT-Updates/sles-10-x86_64/","distro_target":"sles-10-x86_64","autorefresh":true}],"predecessor_ids":[],"cpe":null,"product_type":"extension","version":"10.3","recommended":false,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Subscription Management Tool 10 SP3","former_identifier":"SUSE-Linux-Enterprise-SMT-SP3","release_type":null,"name":"SUSE Linux Enterprise Subscription Management Tool","offline_predecessor_ids":[],"friendly_version":"10 SP3","id":1197,"release_stage":"released","identifier":"SUSE-Linux-Enterprise-SMT-SP3","extensions":[]}],"friendly_version":"10 SP3","release_type":"online","former_identifier":"SUSE-Linux-Enterprise-Server-SP3","migration_extra":false,"friendly_name":"SUSE Linux Enterprise Server 10 SP3 online ppc64","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Server","version":"10","recommended":false},{"online_predecessor_ids":[],"repositories":[{"enabled":false,"id":679,"distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-Extras/sle-11-i586/","installer_updates":false,"name":"SLES11-Extras","description":"SLES11-Extras for sle-11-i586"},{"installer_updates":false,"name":"SLE11-SP1-Debuginfo-Pool","description":"SLE11-SP1-Debuginfo-Pool for sle-11-i586","enabled":false,"id":680,"distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Pool/sle-11-i586/"},{"id":681,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-WebYaST-SP1-Pool/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true,"installer_updates":false,"name":"SLE11-WebYaST-SP1-Pool","description":"SLE11-WebYaST-SP1-Pool for sle-11-i586"},{"id":682,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Updates/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true,"installer_updates":false,"name":"SLE11-SP1-Debuginfo-Updates","description":"SLE11-SP1-Debuginfo-Updates for sle-11-i586"},{"distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-LTSS-Updates/sle-11-i586/","enabled":true,"id":683,"description":"SLES11-SP1-LTSS-Updates for sle-11-i586","installer_updates":false,"name":"SLES11-SP1-LTSS-Updates"},{"enabled":true,"id":684,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-Updates/sle-11-i586/","name":"SLES11-SP1-Updates","installer_updates":false,"description":"SLES11-SP1-Updates for sle-11-i586"},{"description":"SLE11-WebYaST-SP1-Updates for sle-11-i586","name":"SLE11-WebYaST-SP1-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-WebYaST-SP1-Updates/sle-11-i586/","enabled":false,"id":685},{"description":"SLES11-SP1-Pool for sle-11-i586","installer_updates":false,"name":"SLES11-SP1-Pool","url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-Pool/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true,"id":686,"enabled":true}],"product_class":"7261","predecessor_ids":[],"cpe":"cpe:/o:suse:suse_sles:11:sp1","product_type":"base","shortname":null,"description":null,"free":false,"arch":"i386","eula_url":"","friendly_version":"11 SP1","id":790,"release_stage":"released","identifier":"SUSE_SLES","extensions":[{"product_class":"WEBYAST","online_predecessor_ids":[],"repositories":[{"distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-WebYaST-1.1-Updates/sle-11-i586/","enabled":true,"id":825,"description":"SLE11-SP1-WebYaST-1.1-Updates for sle-11-i586","installer_updates":false,"name":"SLE11-SP1-WebYaST-1.1-Updates"},{"name":"SLE11-SP1-WebYaST-1.1-Pool","installer_updates":false,"description":"SLE11-SP1-WebYaST-1.1-Pool for sle-11-i586","id":826,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-WebYaST-1.1-Pool/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586"},{"description":"SLE11-SP1-WebYaST-1.1-Pool for sle-11-x86_64","installer_updates":false,"name":"SLE11-SP1-WebYaST-1.1-Pool","distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-WebYaST-1.1-Pool/sle-11-x86_64/","enabled":false,"id":827},{"description":"SLE11-SP1-WebYaST-1.1-Updates for sle-11-x86_64","name":"SLE11-SP1-WebYaST-1.1-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-WebYaST-1.1-Updates/sle-11-x86_64/","enabled":true,"id":828}],"predecessor_ids":[],"cpe":null,"product_type":"extension","description":null,"shortname":null,"free":true,"arch":null,"eula_url":"","friendly_version":"1.1","release_stage":"released","identifier":"sle-11-WebYaST","id":835,"extensions":[],"version":"1.1","recommended":false,"migration_extra":false,"friendly_name":"SUSE WebYaST 1.1","former_identifier":"sle-11-WebYaST","release_type":null,"name":"SUSE WebYaST","offline_predecessor_ids":[]},{"release_type":null,"former_identifier":"sle-hae","migration_extra":false,"friendly_name":"SUSE Linux Enterprise High Availability Extension 11 SP1 i386","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise High Availability Extension","version":"11.1","recommended":false,"release_stage":"released","identifier":"sle-hae","id":966,"extensions":[],"friendly_version":"11 SP1","arch":"i386","eula_url":"","free":false,"shortname":null,"description":null,"product_type":"extension","cpe":null,"repositories":[{"id":944,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP1-Updates/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","name":"SLE11-HAE-SP1-Updates","installer_updates":false,"description":"SLE11-HAE-SP1-Updates for sle-11-i586"},{"url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP1-Pool/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","id":945,"enabled":true,"description":"SLE11-HAE-SP1-Pool for sle-11-i586","name":"SLE11-HAE-SP1-Pool","installer_updates":false}],"online_predecessor_ids":[],"product_class":"SLE-HAE-X86","predecessor_ids":[]},{"version":"11.1","recommended":false,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise High Availability Extension 11 SP1 i386 (Migration)","former_identifier":"sle-hae-SP2-migration","release_type":null,"name":"SUSE Linux Enterprise High Availability Extension","offline_predecessor_ids":[],"friendly_version":"11 SP1","release_stage":"released","id":982,"identifier":"sle-hae-SP2-migration","extensions":[],"description":null,"shortname":null,"free":false,"arch":"i386","eula_url":"","repositories":[{"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP2-Pool/sle-11-i586/","enabled":true,"id":949,"description":"SLE11-HAE-SP2-Pool for sle-11-i586","name":"SLE11-HAE-SP2-Pool","installer_updates":false},{"id":950,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP2-Updates/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true,"installer_updates":false,"name":"SLE11-HAE-SP2-Updates","description":"SLE11-HAE-SP2-Updates for sle-11-i586"}],"online_predecessor_ids":[],"product_class":"SLE-HAE-X86","predecessor_ids":[],"cpe":null,"product_type":"extension"},{"id":1159,"release_stage":"released","identifier":"sle-sdk","extensions":[],"friendly_version":"11 SP1","friendly_name":"SUSE Linux Enterprise Software Development Kit 11 SP1","migration_extra":false,"former_identifier":"sle-sdk","release_type":null,"name":"SUSE Linux Enterprise Software Development Kit","offline_predecessor_ids":[],"version":"11.1","recommended":false,"cpe":null,"product_type":"extension","online_predecessor_ids":[],"product_class":"SLE-SDK","repositories":[{"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Updates/sle-11-ia64/","autorefresh":true,"distro_target":"sle-11-ia64","id":1257,"enabled":true,"description":"SLE11-SDK-SP1-Updates for sle-11-ia64","name":"SLE11-SDK-SP1-Updates","installer_updates":false},{"autorefresh":true,"distro_target":"sle-11-ia64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-ia64/","enabled":true,"id":1258,"description":"SLE11-SDK-SP1-Pool for sle-11-ia64","name":"SLE11-SDK-SP1-Pool","installer_updates":false},{"description":"SLE11-SDK-SP1-Pool for sle-11-s390x","name":"SLE11-SDK-SP1-Pool","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-s390x/","autorefresh":true,"distro_target":"sle-11-s390x","id":1259,"enabled":true},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Updates/sle-11-ppc64/","distro_target":"sle-11-ppc64","autorefresh":true,"id":1260,"enabled":true,"description":"SLE11-SDK-SP1-Updates for sle-11-ppc64","installer_updates":false,"name":"SLE11-SDK-SP1-Updates"},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-ppc64/","distro_target":"sle-11-ppc64","autorefresh":true,"id":1261,"enabled":true,"description":"SLE11-SDK-SP1-Pool for sle-11-ppc64","installer_updates":false,"name":"SLE11-SDK-SP1-Pool"},{"distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Updates/sle-11-i586/","enabled":true,"id":1262,"description":"SLE11-SDK-SP1-Updates for sle-11-i586","installer_updates":false,"name":"SLE11-SDK-SP1-Updates"},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","id":1263,"enabled":true,"description":"SLE11-SDK-SP1-Pool for sle-11-i586","name":"SLE11-SDK-SP1-Pool","installer_updates":false},{"installer_updates":false,"name":"SLE11-SDK-SP1-Pool","description":"SLE11-SDK-SP1-Pool for sle-11-x86_64","id":1264,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true},{"description":"SLE11-SDK-SP1-Updates for sle-11-x86_64","installer_updates":false,"name":"SLE11-SDK-SP1-Updates","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Updates/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true,"id":1265,"enabled":true},{"description":"SLE11-SDK-SP1-Updates for sle-11-s390x","name":"SLE11-SDK-SP1-Updates","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Updates/sle-11-s390x/","autorefresh":true,"distro_target":"sle-11-s390x","id":1266,"enabled":true}],"predecessor_ids":[],"arch":null,"eula_url":"","description":null,"shortname":null,"free":true},{"description":null,"shortname":null,"free":true,"eula_url":"","arch":null,"predecessor_ids":[],"product_class":"SLE-SDK","online_predecessor_ids":[],"repositories":[{"installer_updates":false,"name":"SLE11-SDK-SP1-Pool","description":"SLE11-SDK-SP1-Pool for sle-11-ia64","enabled":true,"id":1258,"distro_target":"sle-11-ia64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-ia64/"},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-s390x/","distro_target":"sle-11-s390x","autorefresh":true,"id":1259,"enabled":true,"description":"SLE11-SDK-SP1-Pool for sle-11-s390x","installer_updates":false,"name":"SLE11-SDK-SP1-Pool"},{"enabled":true,"id":1261,"distro_target":"sle-11-ppc64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-ppc64/","installer_updates":false,"name":"SLE11-SDK-SP1-Pool","description":"SLE11-SDK-SP1-Pool for sle-11-ppc64"},{"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-i586/","enabled":true,"id":1263,"description":"SLE11-SDK-SP1-Pool for sle-11-i586","name":"SLE11-SDK-SP1-Pool","installer_updates":false},{"distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-x86_64/","enabled":true,"id":1264,"description":"SLE11-SDK-SP1-Pool for sle-11-x86_64","installer_updates":false,"name":"SLE11-SDK-SP1-Pool"}],"cpe":null,"product_type":"extension","recommended":false,"version":"11","name":"SUSE Linux Enterprise Software Development Kit","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Software Development Kit 11 (Migration)","former_identifier":"sle-sdk-SP1-migration","release_type":null,"friendly_version":"11","extensions":[],"release_stage":"released","identifier":"sle-sdk-SP1-migration","id":1162},{"version":"11.1","recommended":false,"friendly_name":"SUSE Linux Enterprise Software Development Kit 11 SP1 (Migration)","migration_extra":false,"former_identifier":"sle-sdk-SP2-migration","release_type":null,"name":"SUSE Linux Enterprise Software Development Kit","offline_predecessor_ids":[],"friendly_version":"11 SP1","release_stage":"released","id":1163,"identifier":"sle-sdk-SP2-migration","extensions":[],"description":null,"shortname":null,"free":true,"arch":null,"eula_url":"","repositories":[{"installer_updates":false,"name":"SLE11-SDK-SP2-Core","description":"SLE11-SDK-SP2-Core for sle-11-ia64","enabled":true,"id":1267,"distro_target":"sle-11-ia64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-ia64/"},{"name":"SLE11-SDK-SP2-Core","installer_updates":false,"description":"SLE11-SDK-SP2-Core for sle-11-s390x","enabled":true,"id":1268,"autorefresh":true,"distro_target":"sle-11-s390x","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-s390x/"},{"name":"SLE11-SDK-SP2-Updates","installer_updates":false,"description":"SLE11-SDK-SP2-Updates for sle-11-s390x","enabled":true,"id":1269,"autorefresh":true,"distro_target":"sle-11-s390x","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-s390x/"},{"id":1270,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-ppc64/","distro_target":"sle-11-ppc64","autorefresh":true,"installer_updates":false,"name":"SLE11-SDK-SP2-Updates","description":"SLE11-SDK-SP2-Updates for sle-11-ppc64"},{"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-i586/","enabled":true,"id":1271,"description":"SLE11-SDK-SP2-Updates for sle-11-i586","name":"SLE11-SDK-SP2-Updates","installer_updates":false},{"id":1272,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-ia64/","autorefresh":true,"distro_target":"sle-11-ia64","name":"SLE11-SDK-SP2-Updates","installer_updates":false,"description":"SLE11-SDK-SP2-Updates for sle-11-ia64"},{"description":"SLE11-SDK-SP2-Core for sle-11-ppc64","installer_updates":false,"name":"SLE11-SDK-SP2-Core","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-ppc64/","distro_target":"sle-11-ppc64","autorefresh":true,"id":1273,"enabled":true},{"description":"SLE11-SDK-SP2-Core for sle-11-i586","installer_updates":false,"name":"SLE11-SDK-SP2-Core","distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-i586/","enabled":true,"id":1274},{"name":"SLE11-SDK-SP2-Core","installer_updates":false,"description":"SLE11-SDK-SP2-Core for sle-11-x86_64","enabled":true,"id":1275,"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-x86_64/"},{"description":"SLE11-SDK-SP2-Updates for sle-11-x86_64","installer_updates":false,"name":"SLE11-SDK-SP2-Updates","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true,"id":1276,"enabled":true}],"online_predecessor_ids":[],"product_class":"SLE-SDK","predecessor_ids":[],"cpe":null,"product_type":"extension"},{"name":"SUSE Linux Enterprise Subscription Management Tool","offline_predecessor_ids":[],"friendly_name":"SUSE Linux Enterprise Subscription Management Tool 11 SP1","migration_extra":false,"former_identifier":"sle-smt","release_type":null,"recommended":false,"version":"11.1","extensions":[],"identifier":"sle-smt","release_stage":"released","id":1192,"friendly_version":"11 SP1","eula_url":"","arch":null,"shortname":null,"description":null,"free":true,"cpe":null,"product_type":"extension","predecessor_ids":[],"product_class":"SLESMT","online_predecessor_ids":[],"repositories":[{"enabled":true,"id":1386,"distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-SMT-Updates/sle-11-x86_64/","installer_updates":false,"name":"SLE11-SP1-SMT-Updates","description":"SLE11-SP1-SMT-Updates for sle-11-x86_64"},{"description":"SLE11-SP1-SMT-Pool for sle-11-s390x","installer_updates":false,"name":"SLE11-SP1-SMT-Pool","distro_target":"sle-11-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-SMT-Pool/sle-11-s390x/","enabled":true,"id":1387},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-SMT-Pool/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64","id":1388,"enabled":true,"description":"SLE11-SP1-SMT-Pool for sle-11-x86_64","name":"SLE11-SP1-SMT-Pool","installer_updates":false},{"installer_updates":false,"name":"SLE11-SP1-SMT-Updates","description":"SLE11-SP1-SMT-Updates for sle-11-i586","id":1389,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-SMT-Updates/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true},{"distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-SMT-Pool/sle-11-i586/","enabled":true,"id":1390,"description":"SLE11-SP1-SMT-Pool for sle-11-i586","installer_updates":false,"name":"SLE11-SP1-SMT-Pool"},{"description":"SLE11-SP1-SMT-Updates for sle-11-s390x","installer_updates":false,"name":"SLE11-SP1-SMT-Updates","distro_target":"sle-11-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-SMT-Updates/sle-11-s390x/","enabled":true,"id":1391}]}],"version":"11.1","recommended":false,"friendly_name":"SUSE Linux Enterprise Server 11 SP1 i386","migration_extra":false,"release_type":null,"former_identifier":"SUSE_SLES","name":"SUSE Linux Enterprise Server","offline_predecessor_ids":[]},{"repositories":[{"url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-Pool/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true,"id":686,"enabled":true,"description":"SLES11-SP1-Pool for sle-11-i586","installer_updates":false,"name":"SLES11-SP1-Pool"}],"online_predecessor_ids":[],"product_class":"7261","predecessor_ids":[],"cpe":null,"product_type":"base","shortname":null,"description":null,"free":false,"arch":"i686","eula_url":"","friendly_version":"11","release_stage":"released","id":791,"identifier":"SUSE_SLES-SP1-migration","extensions":[{"identifier":"sle-11-WebYaST","release_stage":"released","id":836,"extensions":[],"friendly_version":"1.0","migration_extra":false,"friendly_name":"SUSE WebYaST 1.0","former_identifier":"sle-11-WebYaST","release_type":null,"name":"SUSE WebYaST","offline_predecessor_ids":[],"version":"1.0","recommended":false,"cpe":null,"product_type":"extension","online_predecessor_ids":[],"product_class":"WEBYAST","repositories":[{"id":829,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-WebYaST-1.0-Updates/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","name":"SLE11-WebYaST-1.0-Updates","installer_updates":false,"description":"SLE11-WebYaST-1.0-Updates for sle-11-i586"},{"enabled":false,"id":830,"distro_target":"sle-11-ia64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-WebYaST-1.0-Pool/sle-11-ia64/","installer_updates":false,"name":"SLE11-WebYaST-1.0-Pool","description":"SLE11-WebYaST-1.0-Pool for sle-11-ia64"},{"distro_target":"sle-11-ppc64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-WebYaST-1.0-Updates/sle-11-ppc64/","enabled":true,"id":831,"description":"SLE11-WebYaST-1.0-Updates for sle-11-ppc64","installer_updates":false,"name":"SLE11-WebYaST-1.0-Updates"},{"enabled":false,"id":832,"distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-WebYaST-1.0-Pool/sle-11-i586/","installer_updates":false,"name":"SLE11-WebYaST-1.0-Pool","description":"SLE11-WebYaST-1.0-Pool for sle-11-i586"},{"enabled":false,"id":833,"autorefresh":true,"distro_target":"sle-11-s390x","url":"https://updates.suse.com/repo/$RCE/SLE11-WebYaST-1.0-Pool/sle-11-s390x/","name":"SLE11-WebYaST-1.0-Pool","installer_updates":false,"description":"SLE11-WebYaST-1.0-Pool for sle-11-s390x"},{"name":"SLE11-WebYaST-1.0-Updates","installer_updates":false,"description":"SLE11-WebYaST-1.0-Updates for sle-11-s390x","enabled":true,"id":834,"autorefresh":true,"distro_target":"sle-11-s390x","url":"https://updates.suse.com/repo/$RCE/SLE11-WebYaST-1.0-Updates/sle-11-s390x/"},{"distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-WebYaST-1.0-Updates/sle-11-x86_64/","enabled":true,"id":835,"description":"SLE11-WebYaST-1.0-Updates for sle-11-x86_64","installer_updates":false,"name":"SLE11-WebYaST-1.0-Updates"},{"installer_updates":false,"name":"SLE11-WebYaST-1.0-Pool","description":"SLE11-WebYaST-1.0-Pool for sle-11-x86_64","id":836,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-WebYaST-1.0-Pool/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true},{"name":"SLE11-WebYaST-1.0-Updates","installer_updates":false,"description":"SLE11-WebYaST-1.0-Updates for sle-11-ia64","enabled":true,"id":837,"autorefresh":true,"distro_target":"sle-11-ia64","url":"https://updates.suse.com/repo/$RCE/SLE11-WebYaST-1.0-Updates/sle-11-ia64/"},{"id":838,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-WebYaST-1.0-Pool/sle-11-ppc64/","distro_target":"sle-11-ppc64","autorefresh":true,"installer_updates":false,"name":"SLE11-WebYaST-1.0-Pool","description":"SLE11-WebYaST-1.0-Pool for sle-11-ppc64"}],"predecessor_ids":[],"arch":null,"eula_url":"","description":null,"shortname":null,"free":true},{"extensions":[],"release_stage":"released","id":972,"identifier":"sle-hae","friendly_version":"11","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise High Availability Extension","former_identifier":"sle-hae","release_type":null,"friendly_name":"SUSE Linux Enterprise High Availability Extension 11 i686","migration_extra":false,"recommended":false,"version":"11","product_type":"extension","cpe":null,"predecessor_ids":[],"repositories":[{"enabled":false,"id":954,"distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-Pool/sle-11-i586/","installer_updates":false,"name":"SLE11-HAE-Pool","description":"SLE11-HAE-Pool for sle-11-i586"},{"description":"SLE11-HAE-Updates for sle-11-i586","name":"SLE11-HAE-Updates","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-Updates/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","id":955,"enabled":true}],"online_predecessor_ids":[],"product_class":"SLE-HAE-X86","eula_url":"","arch":"i686","free":false,"description":null,"shortname":null},{"arch":"i686","eula_url":"","description":null,"shortname":null,"free":false,"cpe":null,"product_type":"extension","online_predecessor_ids":[],"repositories":[{"enabled":true,"id":945,"distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP1-Pool/sle-11-i586/","installer_updates":false,"name":"SLE11-HAE-SP1-Pool","description":"SLE11-HAE-SP1-Pool for sle-11-i586"}],"product_class":"SLE-HAE-X86","predecessor_ids":[],"friendly_name":"SUSE Linux Enterprise High Availability Extension 11 i686 (Migration)","migration_extra":false,"release_type":null,"former_identifier":"sle-hae-SP1-migration","name":"SUSE Linux Enterprise High Availability Extension","offline_predecessor_ids":[],"version":"11","recommended":false,"release_stage":"released","id":986,"identifier":"sle-hae-SP1-migration","extensions":[],"friendly_version":"11"},{"friendly_version":"11","identifier":"sle-smt-SP2-migration","release_stage":"released","id":1194,"extensions":[],"version":"11","recommended":false,"friendly_name":"SUSE Linux Enterprise Subscription Management Tool 11 (Migration)","migration_extra":false,"release_type":null,"former_identifier":"sle-smt-SP2-migration","name":"SUSE Linux Enterprise Subscription Management Tool","offline_predecessor_ids":[],"online_predecessor_ids":[],"product_class":"SLESMT","repositories":[{"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP2-Pool/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64","id":1392,"enabled":true,"description":"SLE11-SMT-SP2-Pool for sle-11-x86_64","name":"SLE11-SMT-SP2-Pool","installer_updates":false},{"id":1394,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP2-Pool/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","name":"SLE11-SMT-SP2-Pool","installer_updates":false,"description":"SLE11-SMT-SP2-Pool for sle-11-i586"},{"description":"SLE11-SMT-SP2-Pool for sle-11-s390x","installer_updates":false,"name":"SLE11-SMT-SP2-Pool","url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP2-Pool/sle-11-s390x/","distro_target":"sle-11-s390x","autorefresh":true,"id":1396,"enabled":true}],"predecessor_ids":[],"cpe":null,"product_type":"extension","shortname":null,"description":null,"free":true,"arch":null,"eula_url":""},{"description":null,"shortname":null,"free":true,"eula_url":"","arch":null,"predecessor_ids":[],"repositories":[{"id":1400,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-Updates/sle-11-s390x/","distro_target":"sle-11-s390x","autorefresh":true,"installer_updates":false,"name":"SLE11-SMT-Updates","description":"SLE11-SMT-Updates for sle-11-s390x"},{"id":1401,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-Updates/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64","name":"SLE11-SMT-Updates","installer_updates":false,"description":"SLE11-SMT-Updates for sle-11-x86_64"},{"name":"SLE11-SMT-Updates","installer_updates":false,"description":"SLE11-SMT-Updates for sle-11-i586","id":1402,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-Updates/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586"}],"online_predecessor_ids":[],"product_class":"SLESMT","cpe":null,"product_type":"extension","recommended":false,"version":"11","name":"SUSE Linux Enterprise Subscription Management Tool","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Subscription Management Tool 11","release_type":null,"former_identifier":"sle-smt","friendly_version":"11","extensions":[],"id":1196,"release_stage":"released","identifier":"sle-smt"}],"version":"11","recommended":false,"friendly_name":"SUSE Linux Enterprise Server 11 i686 (Migration)","migration_extra":false,"former_identifier":"SUSE_SLES-SP1-migration","release_type":null,"name":"SUSE Linux Enterprise Server","offline_predecessor_ids":[]},{"cpe":"cpe:/o:suse:suse_sles:11:sp2","product_type":"base","predecessor_ids":[],"repositories":[{"id":679,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLES11-Extras/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true,"installer_updates":false,"name":"SLES11-Extras","description":"SLES11-Extras for sle-11-i586"},{"description":"SLE11-SP1-Debuginfo-Pool for sle-11-i586","name":"SLE11-SP1-Debuginfo-Pool","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Pool/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","id":680,"enabled":false},{"description":"SLE11-SP1-Debuginfo-Updates for sle-11-i586","installer_updates":false,"name":"SLE11-SP1-Debuginfo-Updates","url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Updates/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true,"id":682,"enabled":false},{"enabled":true,"id":684,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-Updates/sle-11-i586/","name":"SLES11-SP1-Updates","installer_updates":false,"description":"SLES11-SP1-Updates for sle-11-i586"},{"installer_updates":false,"name":"SLES11-SP1-Pool","description":"SLES11-SP1-Pool for sle-11-i586","enabled":true,"id":686,"distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-Pool/sle-11-i586/"},{"enabled":false,"id":717,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-Debuginfo-Core/sle-11-i586/","name":"SLE11-SP2-Debuginfo-Core","installer_updates":false,"description":"SLE11-SP2-Debuginfo-Core for sle-11-i586"},{"id":718,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-WebYaST-SP2-Pool/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","name":"SLE11-WebYaST-SP2-Pool","installer_updates":false,"description":"SLE11-WebYaST-SP2-Pool for sle-11-i586"},{"description":"SLE11-SP2-Debuginfo-Updates for sle-11-i586","installer_updates":false,"name":"SLE11-SP2-Debuginfo-Updates","distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-Debuginfo-Updates/sle-11-i586/","enabled":false,"id":719},{"installer_updates":false,"name":"SLES11-SP2-Updates","description":"SLES11-SP2-Updates for sle-11-i586","enabled":true,"id":720,"distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP2-Updates/sle-11-i586/"},{"description":"SLE11-WebYaST-SP2-Updates for sle-11-i586","installer_updates":false,"name":"SLE11-WebYaST-SP2-Updates","distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-WebYaST-SP2-Updates/sle-11-i586/","enabled":false,"id":721},{"description":"SLES11-SP2-Core for sle-11-i586","installer_updates":false,"name":"SLES11-SP2-Core","distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP2-Core/sle-11-i586/","enabled":true,"id":722},{"description":"SLES11-SP2-Extension-Store for sle-11-i586","installer_updates":false,"name":"SLES11-SP2-Extension-Store","distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP2-Extension-Store/sle-11-i586/","enabled":true,"id":761}],"online_predecessor_ids":[],"product_class":"7261","eula_url":"","arch":"i686","description":null,"shortname":null,"free":false,"extensions":[{"predecessor_ids":[],"product_class":"WEBYAST","online_predecessor_ids":[],"repositories":[{"enabled":true,"id":839,"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-WebYaST-1.2-Updates/sle-11-x86_64/","name":"SLE11-SP1-WebYaST-1.2-Updates","installer_updates":false,"description":"SLE11-SP1-WebYaST-1.2-Updates for sle-11-x86_64"},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-WebYaST-1.2-Pool/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true,"id":840,"enabled":false,"description":"SLE11-SP1-WebYaST-1.2-Pool for sle-11-i586","installer_updates":false,"name":"SLE11-SP1-WebYaST-1.2-Pool"},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-WebYaST-1.2-Pool/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true,"id":841,"enabled":false,"description":"SLE11-SP1-WebYaST-1.2-Pool for sle-11-x86_64","installer_updates":false,"name":"SLE11-SP1-WebYaST-1.2-Pool"},{"name":"SLE11-SP1-WebYaST-1.2-Updates","installer_updates":false,"description":"SLE11-SP1-WebYaST-1.2-Updates for sle-11-i586","enabled":true,"id":842,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-WebYaST-1.2-Updates/sle-11-i586/"}],"product_type":"extension","cpe":null,"free":true,"description":null,"shortname":null,"eula_url":"","arch":null,"friendly_version":"1.2","extensions":[],"id":837,"release_stage":"released","identifier":"sle-11-WebYaST","recommended":false,"version":"1.2","offline_predecessor_ids":[],"name":"SUSE WebYaST","release_type":null,"former_identifier":"sle-11-WebYaST","migration_extra":false,"friendly_name":"SUSE WebYaST 1.2"},{"offline_predecessor_ids":[],"name":"SUSE Linux Enterprise High Availability Extension","release_type":null,"former_identifier":"sle-hae-SP3-migration","friendly_name":"SUSE Linux Enterprise High Availability Extension 11 SP2 i686 (Migration)","migration_extra":false,"recommended":false,"version":"11.2","extensions":[],"release_stage":"released","identifier":"sle-hae-SP3-migration","id":964,"friendly_version":"11 SP2","eula_url":"","arch":"i686","free":false,"shortname":null,"description":null,"product_type":"extension","cpe":null,"predecessor_ids":[],"repositories":[{"id":951,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP3-Pool/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true,"installer_updates":false,"name":"SLE11-HAE-SP3-Pool","description":"SLE11-HAE-SP3-Pool for sle-11-i586"},{"name":"SLE11-HAE-SP3-Updates","installer_updates":false,"description":"SLE11-HAE-SP3-Updates for sle-11-i586","enabled":true,"id":952,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP3-Updates/sle-11-i586/"}],"online_predecessor_ids":[],"product_class":"SLE-HAE-X86"},{"friendly_version":"11 SP2","identifier":"sle-hae","release_stage":"released","id":970,"extensions":[],"version":"11.2","recommended":false,"friendly_name":"SUSE Linux Enterprise High Availability Extension 11 SP2 i686","migration_extra":false,"former_identifier":"sle-hae","release_type":null,"name":"SUSE Linux Enterprise High Availability Extension","offline_predecessor_ids":[],"online_predecessor_ids":[],"product_class":"SLE-HAE-X86","repositories":[{"name":"SLE11-HAE-SP2-Pool","installer_updates":false,"description":"SLE11-HAE-SP2-Pool for sle-11-i586","id":949,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP2-Pool/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586"},{"url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP2-Updates/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true,"id":950,"enabled":true,"description":"SLE11-HAE-SP2-Updates for sle-11-i586","installer_updates":false,"name":"SLE11-HAE-SP2-Updates"}],"predecessor_ids":[],"cpe":null,"product_type":"extension","description":null,"shortname":null,"free":false,"arch":"i686","eula_url":""},{"release_stage":"released","identifier":"sle-sdk","id":1160,"extensions":[],"friendly_version":"11 SP2","release_type":null,"former_identifier":"sle-sdk","migration_extra":false,"friendly_name":"SUSE Linux Enterprise Software Development Kit 11 SP2","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Software Development Kit","version":"11.2","recommended":false,"product_type":"extension","cpe":null,"online_predecessor_ids":[],"product_class":"SLE-SDK","repositories":[{"enabled":true,"id":1257,"distro_target":"sle-11-ia64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Updates/sle-11-ia64/","installer_updates":false,"name":"SLE11-SDK-SP1-Updates","description":"SLE11-SDK-SP1-Updates for sle-11-ia64"},{"installer_updates":false,"name":"SLE11-SDK-SP1-Pool","description":"SLE11-SDK-SP1-Pool for sle-11-ia64","enabled":true,"id":1258,"distro_target":"sle-11-ia64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-ia64/"},{"name":"SLE11-SDK-SP1-Pool","installer_updates":false,"description":"SLE11-SDK-SP1-Pool for sle-11-s390x","enabled":true,"id":1259,"autorefresh":true,"distro_target":"sle-11-s390x","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-s390x/"},{"description":"SLE11-SDK-SP1-Updates for sle-11-ppc64","installer_updates":false,"name":"SLE11-SDK-SP1-Updates","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Updates/sle-11-ppc64/","distro_target":"sle-11-ppc64","autorefresh":true,"id":1260,"enabled":true},{"enabled":true,"id":1261,"distro_target":"sle-11-ppc64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-ppc64/","installer_updates":false,"name":"SLE11-SDK-SP1-Pool","description":"SLE11-SDK-SP1-Pool for sle-11-ppc64"},{"description":"SLE11-SDK-SP1-Updates for sle-11-i586","name":"SLE11-SDK-SP1-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Updates/sle-11-i586/","enabled":true,"id":1262},{"installer_updates":false,"name":"SLE11-SDK-SP1-Pool","description":"SLE11-SDK-SP1-Pool for sle-11-i586","enabled":true,"id":1263,"distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-i586/"},{"distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-x86_64/","enabled":true,"id":1264,"description":"SLE11-SDK-SP1-Pool for sle-11-x86_64","installer_updates":false,"name":"SLE11-SDK-SP1-Pool"},{"installer_updates":false,"name":"SLE11-SDK-SP1-Updates","description":"SLE11-SDK-SP1-Updates for sle-11-x86_64","id":1265,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Updates/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true},{"installer_updates":false,"name":"SLE11-SDK-SP1-Updates","description":"SLE11-SDK-SP1-Updates for sle-11-s390x","enabled":true,"id":1266,"distro_target":"sle-11-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Updates/sle-11-s390x/"},{"installer_updates":false,"name":"SLE11-SDK-SP2-Core","description":"SLE11-SDK-SP2-Core for sle-11-ia64","enabled":true,"id":1267,"distro_target":"sle-11-ia64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-ia64/"},{"description":"SLE11-SDK-SP2-Core for sle-11-s390x","name":"SLE11-SDK-SP2-Core","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-s390x","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-s390x/","enabled":true,"id":1268},{"enabled":true,"id":1269,"autorefresh":true,"distro_target":"sle-11-s390x","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-s390x/","name":"SLE11-SDK-SP2-Updates","installer_updates":false,"description":"SLE11-SDK-SP2-Updates for sle-11-s390x"},{"name":"SLE11-SDK-SP2-Updates","installer_updates":false,"description":"SLE11-SDK-SP2-Updates for sle-11-ppc64","enabled":true,"id":1270,"autorefresh":true,"distro_target":"sle-11-ppc64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-ppc64/"},{"installer_updates":false,"name":"SLE11-SDK-SP2-Updates","description":"SLE11-SDK-SP2-Updates for sle-11-i586","id":1271,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true},{"distro_target":"sle-11-ia64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-ia64/","enabled":true,"id":1272,"description":"SLE11-SDK-SP2-Updates for sle-11-ia64","installer_updates":false,"name":"SLE11-SDK-SP2-Updates"},{"description":"SLE11-SDK-SP2-Core for sle-11-ppc64","installer_updates":false,"name":"SLE11-SDK-SP2-Core","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-ppc64/","distro_target":"sle-11-ppc64","autorefresh":true,"id":1273,"enabled":true},{"description":"SLE11-SDK-SP2-Core for sle-11-i586","name":"SLE11-SDK-SP2-Core","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","id":1274,"enabled":true},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true,"id":1275,"enabled":true,"description":"SLE11-SDK-SP2-Core for sle-11-x86_64","installer_updates":false,"name":"SLE11-SDK-SP2-Core"},{"description":"SLE11-SDK-SP2-Updates for sle-11-x86_64","name":"SLE11-SDK-SP2-Updates","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64","id":1276,"enabled":true}],"predecessor_ids":[],"arch":null,"eula_url":"","free":true,"description":null,"shortname":null},{"online_predecessor_ids":[],"product_class":"SLE-SDK","repositories":[{"description":"SLE11-SDK-SP2-Core for sle-11-ia64","installer_updates":false,"name":"SLE11-SDK-SP2-Core","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-ia64/","distro_target":"sle-11-ia64","autorefresh":true,"id":1267,"enabled":true},{"id":1268,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-s390x/","distro_target":"sle-11-s390x","autorefresh":true,"installer_updates":false,"name":"SLE11-SDK-SP2-Core","description":"SLE11-SDK-SP2-Core for sle-11-s390x"},{"installer_updates":false,"name":"SLE11-SDK-SP2-Updates","description":"SLE11-SDK-SP2-Updates for sle-11-s390x","enabled":true,"id":1269,"distro_target":"sle-11-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-s390x/"},{"enabled":true,"id":1270,"autorefresh":true,"distro_target":"sle-11-ppc64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-ppc64/","name":"SLE11-SDK-SP2-Updates","installer_updates":false,"description":"SLE11-SDK-SP2-Updates for sle-11-ppc64"},{"description":"SLE11-SDK-SP2-Updates for sle-11-i586","name":"SLE11-SDK-SP2-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-i586/","enabled":true,"id":1271},{"id":1272,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-ia64/","autorefresh":true,"distro_target":"sle-11-ia64","name":"SLE11-SDK-SP2-Updates","installer_updates":false,"description":"SLE11-SDK-SP2-Updates for sle-11-ia64"},{"installer_updates":false,"name":"SLE11-SDK-SP2-Core","description":"SLE11-SDK-SP2-Core for sle-11-ppc64","enabled":true,"id":1273,"distro_target":"sle-11-ppc64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-ppc64/"},{"name":"SLE11-SDK-SP2-Core","installer_updates":false,"description":"SLE11-SDK-SP2-Core for sle-11-i586","enabled":true,"id":1274,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-i586/"},{"enabled":true,"id":1275,"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-x86_64/","name":"SLE11-SDK-SP2-Core","installer_updates":false,"description":"SLE11-SDK-SP2-Core for sle-11-x86_64"},{"id":1276,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true,"installer_updates":false,"name":"SLE11-SDK-SP2-Updates","description":"SLE11-SDK-SP2-Updates for sle-11-x86_64"}],"predecessor_ids":[],"product_type":"extension","cpe":null,"free":true,"shortname":null,"description":null,"arch":null,"eula_url":"","friendly_version":"11 SP1","identifier":"sle-sdk-SP2-migration","release_stage":"released","id":1163,"extensions":[],"version":"11.1","recommended":false,"former_identifier":"sle-sdk-SP2-migration","release_type":null,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Software Development Kit 11 SP1 (Migration)","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Software Development Kit"},{"release_type":null,"former_identifier":"sle-sdk-SP3-migration","migration_extra":false,"friendly_name":"SUSE Linux Enterprise Software Development Kit 11 SP2 (Migration)","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Software Development Kit","version":"11.2","recommended":false,"id":1164,"release_stage":"released","identifier":"sle-sdk-SP3-migration","extensions":[],"friendly_version":"11 SP2","arch":null,"eula_url":"","free":true,"description":null,"shortname":null,"product_type":"extension","cpe":null,"online_predecessor_ids":[],"repositories":[{"description":"SLE11-SDK-SP3-Pool for sle-11-i586","name":"SLE11-SDK-SP3-Pool","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Pool/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","id":1277,"enabled":true},{"enabled":true,"id":1278,"distro_target":"sle-11-ia64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Pool/sle-11-ia64/","installer_updates":false,"name":"SLE11-SDK-SP3-Pool","description":"SLE11-SDK-SP3-Pool for sle-11-ia64"},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Updates/sle-11-ppc64/","autorefresh":true,"distro_target":"sle-11-ppc64","id":1279,"enabled":true,"description":"SLE11-SDK-SP3-Updates for sle-11-ppc64","name":"SLE11-SDK-SP3-Updates","installer_updates":false},{"installer_updates":false,"name":"SLE11-SDK-SP3-Updates","description":"SLE11-SDK-SP3-Updates for sle-11-ia64","enabled":true,"id":1280,"distro_target":"sle-11-ia64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Updates/sle-11-ia64/"},{"description":"SLE11-SDK-SP3-Pool for sle-11-x86_64","installer_updates":false,"name":"SLE11-SDK-SP3-Pool","distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Pool/sle-11-x86_64/","enabled":true,"id":1281},{"id":1282,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Updates/sle-11-s390x/","distro_target":"sle-11-s390x","autorefresh":true,"installer_updates":false,"name":"SLE11-SDK-SP3-Updates","description":"SLE11-SDK-SP3-Updates for sle-11-s390x"},{"name":"SLE11-SDK-SP3-Pool","installer_updates":false,"description":"SLE11-SDK-SP3-Pool for sle-11-ppc64","id":1283,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Pool/sle-11-ppc64/","autorefresh":true,"distro_target":"sle-11-ppc64"},{"installer_updates":false,"name":"SLE11-SDK-SP3-Updates","description":"SLE11-SDK-SP3-Updates for sle-11-x86_64","id":1284,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Updates/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true},{"distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Updates/sle-11-i586/","enabled":true,"id":1285,"description":"SLE11-SDK-SP3-Updates for sle-11-i586","installer_updates":false,"name":"SLE11-SDK-SP3-Updates"},{"distro_target":"sle-11-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Pool/sle-11-s390x/","enabled":true,"id":1286,"description":"SLE11-SDK-SP3-Pool for sle-11-s390x","installer_updates":false,"name":"SLE11-SDK-SP3-Pool"}],"product_class":"SLE-SDK","predecessor_ids":[]},{"predecessor_ids":[],"online_predecessor_ids":[],"product_class":"SLESMT","repositories":[{"installer_updates":false,"name":"SLE11-SMT-SP2-Pool","description":"SLE11-SMT-SP2-Pool for sle-11-x86_64","id":1392,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP2-Pool/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true},{"name":"SLE11-SMT-SP2-Updates","installer_updates":false,"description":"SLE11-SMT-SP2-Updates for sle-11-s390x","id":1393,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP2-Updates/sle-11-s390x/","autorefresh":true,"distro_target":"sle-11-s390x"},{"name":"SLE11-SMT-SP2-Pool","installer_updates":false,"description":"SLE11-SMT-SP2-Pool for sle-11-i586","id":1394,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP2-Pool/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586"},{"description":"SLE11-SMT-SP2-Updates for sle-11-i586","name":"SLE11-SMT-SP2-Updates","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP2-Updates/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","id":1395,"enabled":true},{"enabled":true,"id":1396,"autorefresh":true,"distro_target":"sle-11-s390x","url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP2-Pool/sle-11-s390x/","name":"SLE11-SMT-SP2-Pool","installer_updates":false,"description":"SLE11-SMT-SP2-Pool for sle-11-s390x"},{"installer_updates":false,"name":"SLE11-SMT-SP2-Updates","description":"SLE11-SMT-SP2-Updates for sle-11-x86_64","id":1397,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP2-Updates/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true}],"cpe":null,"product_type":"extension","description":null,"shortname":null,"free":true,"eula_url":"","arch":null,"friendly_version":"11 SP2","extensions":[],"release_stage":"released","id":1193,"identifier":"sle-smt","recommended":false,"version":"11.2","name":"SUSE Linux Enterprise Subscription Management Tool","offline_predecessor_ids":[],"friendly_name":"SUSE Linux Enterprise Subscription Management Tool 11 SP2","migration_extra":false,"release_type":null,"former_identifier":"sle-smt"},{"version":"11","recommended":false,"friendly_name":"SUSE Linux Enterprise Subscription Management Tool 11 (Migration)","migration_extra":false,"release_type":null,"former_identifier":"sle-smt-SP2-migration","name":"SUSE Linux Enterprise Subscription Management Tool","offline_predecessor_ids":[],"friendly_version":"11","identifier":"sle-smt-SP2-migration","release_stage":"released","id":1194,"extensions":[],"shortname":null,"description":null,"free":true,"arch":null,"eula_url":"","repositories":[{"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP2-Pool/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true,"id":1392,"enabled":true,"description":"SLE11-SMT-SP2-Pool for sle-11-x86_64","installer_updates":false,"name":"SLE11-SMT-SP2-Pool"},{"enabled":true,"id":1394,"distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP2-Pool/sle-11-i586/","installer_updates":false,"name":"SLE11-SMT-SP2-Pool","description":"SLE11-SMT-SP2-Pool for sle-11-i586"},{"enabled":true,"id":1396,"distro_target":"sle-11-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP2-Pool/sle-11-s390x/","installer_updates":false,"name":"SLE11-SMT-SP2-Pool","description":"SLE11-SMT-SP2-Pool for sle-11-s390x"}],"online_predecessor_ids":[],"product_class":"SLESMT","predecessor_ids":[],"cpe":null,"product_type":"extension"},{"version":"11.2","recommended":false,"release_type":null,"former_identifier":"sle-smt-SP3-migration","migration_extra":false,"friendly_name":"SUSE Linux Enterprise Subscription Management Tool 11 SP2 (Migration)","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Subscription Management Tool","friendly_version":"11 SP2","id":1199,"release_stage":"released","identifier":"sle-smt-SP3-migration","extensions":[],"free":true,"shortname":null,"description":null,"arch":null,"eula_url":"","repositories":[{"installer_updates":false,"name":"SLE11-SMT-SP3-Pool","description":"SLE11-SMT-SP3-Pool for sle-11-s390x","enabled":true,"id":1408,"distro_target":"sle-11-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP3-Pool/sle-11-s390x/"},{"installer_updates":false,"name":"SLE11-SMT-SP3-Pool","description":"SLE11-SMT-SP3-Pool for sle-11-x86_64","enabled":true,"id":1409,"distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP3-Pool/sle-11-x86_64/"},{"id":1410,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP3-Pool/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true,"installer_updates":false,"name":"SLE11-SMT-SP3-Pool","description":"SLE11-SMT-SP3-Pool for sle-11-i586"}],"online_predecessor_ids":[],"product_class":"SLESMT","predecessor_ids":[],"product_type":"extension","cpe":null},{"product_type":"extension","cpe":null,"predecessor_ids":[],"online_predecessor_ids":[],"product_class":"WEBYAST","repositories":[{"name":"SLE11-SP2-WebYaST-1.3-Pool","installer_updates":false,"description":"SLE11-SP2-WebYaST-1.3-Pool for sle-11-x86_64","enabled":true,"id":1185,"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-WebYaST-1.3-Pool/sle-11-x86_64/"},{"description":"SLE11-SP2-WebYaST-1.3-Pool for sle-11-s390x","installer_updates":false,"name":"SLE11-SP2-WebYaST-1.3-Pool","url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-WebYaST-1.3-Pool/sle-11-s390x/","distro_target":"sle-11-s390x","autorefresh":true,"id":1411,"enabled":true},{"installer_updates":false,"name":"SLE11-SP2-WebYaST-1.3-Pool","description":"SLE11-SP2-WebYaST-1.3-Pool for sle-11-ppc64","enabled":true,"id":1414,"distro_target":"sle-11-ppc64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-WebYaST-1.3-Pool/sle-11-ppc64/"},{"name":"SLE11-SP2-WebYaST-1.3-Pool","installer_updates":false,"description":"SLE11-SP2-WebYaST-1.3-Pool for sle-11-ia64","enabled":true,"id":1416,"autorefresh":true,"distro_target":"sle-11-ia64","url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-WebYaST-1.3-Pool/sle-11-ia64/"},{"name":"SLE11-SP2-WebYaST-1.3-Pool","installer_updates":false,"description":"SLE11-SP2-WebYaST-1.3-Pool for sle-11-i586","id":1417,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-WebYaST-1.3-Pool/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586"}],"eula_url":"","arch":null,"free":true,"shortname":null,"description":null,"extensions":[],"release_stage":"released","id":1207,"identifier":"sle-11-WebYaST-1.3-migration","friendly_version":"1.2","offline_predecessor_ids":[],"name":"SUSE WebYaST","former_identifier":"sle-11-WebYaST-1.3-migration","release_type":null,"friendly_name":"SUSE WebYaST 1.2 (Migration)","migration_extra":false,"recommended":false,"version":"1.2"}],"identifier":"SUSE_SLES","release_stage":"released","id":792,"friendly_version":"11 SP2","name":"SUSE Linux Enterprise Server","offline_predecessor_ids":[],"friendly_name":"SUSE Linux Enterprise Server 11 SP2 i686","migration_extra":false,"release_type":null,"former_identifier":"SUSE_SLES","recommended":false,"version":"11.2"},{"product_type":"base","cpe":"cpe:/o:suse:suse_sles:11:sp3","online_predecessor_ids":[],"product_class":"7261","repositories":[{"id":679,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLES11-Extras/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true,"installer_updates":false,"name":"SLES11-Extras","description":"SLES11-Extras for sle-11-i586"},{"name":"SLE11-SP1-Debuginfo-Pool","installer_updates":false,"description":"SLE11-SP1-Debuginfo-Pool for sle-11-i586","id":680,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Pool/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586"},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Updates/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true,"id":682,"enabled":false,"description":"SLE11-SP1-Debuginfo-Updates for sle-11-i586","installer_updates":false,"name":"SLE11-SP1-Debuginfo-Updates"},{"description":"SLES11-SP1-Updates for sle-11-i586","installer_updates":false,"name":"SLES11-SP1-Updates","url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-Updates/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true,"id":684,"enabled":false},{"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-Pool/sle-11-i586/","enabled":false,"id":686,"description":"SLES11-SP1-Pool for sle-11-i586","name":"SLES11-SP1-Pool","installer_updates":false},{"description":"SLE11-SP2-Debuginfo-Core for sle-11-i586","installer_updates":false,"name":"SLE11-SP2-Debuginfo-Core","distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-Debuginfo-Core/sle-11-i586/","enabled":false,"id":717},{"description":"SLE11-SP2-Debuginfo-Updates for sle-11-i586","installer_updates":false,"name":"SLE11-SP2-Debuginfo-Updates","url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-Debuginfo-Updates/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true,"id":719,"enabled":false},{"id":720,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP2-Updates/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","name":"SLES11-SP2-Updates","installer_updates":false,"description":"SLES11-SP2-Updates for sle-11-i586"},{"installer_updates":false,"name":"SLES11-SP2-Core","description":"SLES11-SP2-Core for sle-11-i586","enabled":false,"id":722,"distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP2-Core/sle-11-i586/"},{"url":"https://updates.suse.com/repo/$RCE/SLES11-SP3-Extension-Store/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true,"id":758,"enabled":false,"description":"SLES11-SP3-Extension-Store for sle-11-i586","installer_updates":false,"name":"SLES11-SP3-Extension-Store"},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SP3-Debuginfo-Updates/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true,"id":759,"enabled":false,"description":"SLE11-SP3-Debuginfo-Updates for sle-11-i586","installer_updates":false,"name":"SLE11-SP3-Debuginfo-Updates"},{"enabled":true,"id":760,"distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP3-Pool/sle-11-i586/","installer_updates":false,"name":"SLES11-SP3-Pool","description":"SLES11-SP3-Pool for sle-11-i586"},{"id":761,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP2-Extension-Store/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true,"installer_updates":false,"name":"SLES11-SP2-Extension-Store","description":"SLES11-SP2-Extension-Store for sle-11-i586"},{"installer_updates":false,"name":"SLES11-SP3-Updates","description":"SLES11-SP3-Updates for sle-11-i586","id":762,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP3-Updates/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true},{"installer_updates":false,"name":"SLE11-SP3-Debuginfo-Pool","description":"SLE11-SP3-Debuginfo-Pool for sle-11-i586","id":763,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP3-Debuginfo-Pool/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true},{"description":"SLE11-Security-Module for sle-11-i586","installer_updates":false,"name":"SLE11-Security-Module","url":"https://updates.suse.com/repo/$RCE/SLE11-Security-Module/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true,"id":1379,"enabled":false},{"enabled":false,"id":1776,"distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-Public-Cloud-Module/sle-11-i586/","installer_updates":false,"name":"SLE11-Public-Cloud-Module","description":"SLE11-Public-Cloud-Module for sle-11-i586"},{"name":"SLES11-SP3-LTSS-Updates","installer_updates":false,"description":"SLES11-SP3-LTSS-Updates for sle-11-i586","enabled":true,"id":1966,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLES11-SP3-LTSS-Updates/sle-11-i586/"}],"predecessor_ids":[],"arch":"i586","eula_url":"","free":false,"description":null,"shortname":null,"release_stage":"released","identifier":"SUSE_SLES","id":793,"extensions":[{"arch":"i586","eula_url":"","free":false,"description":null,"shortname":null,"product_type":"extension","cpe":null,"product_class":"SLE-HAE-X86","online_predecessor_ids":[],"repositories":[{"distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP3-Pool/sle-11-i586/","enabled":true,"id":951,"description":"SLE11-HAE-SP3-Pool for sle-11-i586","installer_updates":false,"name":"SLE11-HAE-SP3-Pool"},{"name":"SLE11-HAE-SP3-Updates","installer_updates":false,"description":"SLE11-HAE-SP3-Updates for sle-11-i586","id":952,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP3-Updates/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586"}],"predecessor_ids":[],"former_identifier":"sle-hae","release_type":null,"friendly_name":"SUSE Linux Enterprise High Availability Extension 11 SP3 i586","migration_extra":false,"offline_predecessor_ids":[],"name":"SUSE Linux Enterprise High Availability Extension","version":"11.3","recommended":false,"release_stage":"released","identifier":"sle-hae","id":977,"extensions":[{"identifier":"sle-haegeo","release_stage":"released","id":1102,"extensions":[],"friendly_version":"11 SP3","release_type":null,"former_identifier":"sle-haegeo","friendly_name":"Geo Clustering for SUSE Linux Enterprise High Availability Extension 11 SP3 i586","migration_extra":false,"offline_predecessor_ids":[],"name":"Geo Clustering for SUSE Linux Enterprise High Availability Extension","version":"11.3","recommended":false,"product_type":"extension","cpe":null,"repositories":[{"distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-GEO-SP3-Updates/sle-11-i586/","enabled":true,"id":1117,"description":"SLE11-HAE-GEO-SP3-Updates for sle-11-i586","installer_updates":false,"name":"SLE11-HAE-GEO-SP3-Updates"}],"online_predecessor_ids":[],"product_class":"SLE-HAE-GEO","predecessor_ids":[],"arch":"i586","eula_url":"","free":false,"description":null,"shortname":null}],"friendly_version":"11 SP3"},{"cpe":null,"product_type":"extension","online_predecessor_ids":[],"repositories":[{"distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-POS-SP3-Pool/sle-11-i586/","enabled":true,"id":1084,"description":"SLE11-POS-SP3-Pool for sle-11-i586","installer_updates":false,"name":"SLE11-POS-SP3-Pool"},{"description":"SLE11-POS-SP3-Updates for sle-11-i586","name":"SLE11-POS-SP3-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-POS-SP3-Updates/sle-11-i586/","enabled":true,"id":1085},{"id":1086,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-POS-SP3-Pool/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64","name":"SLE11-POS-SP3-Pool","installer_updates":false,"description":"SLE11-POS-SP3-Pool for sle-11-x86_64"},{"enabled":true,"id":1087,"distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-POS-SP3-Updates/sle-11-x86_64/","installer_updates":false,"name":"SLE11-POS-SP3-Updates","description":"SLE11-POS-SP3-Updates for sle-11-x86_64"}],"product_class":"10040","predecessor_ids":[],"arch":null,"eula_url":"","description":null,"shortname":null,"free":false,"release_stage":"released","id":1073,"identifier":"sle-pos","extensions":[],"friendly_version":"11 SP3","friendly_name":"SUSE Linux Enterprise Point of Service 11 SP3","migration_extra":false,"former_identifier":"sle-pos","release_type":null,"name":"SUSE Linux Enterprise Point of Service","offline_predecessor_ids":[],"version":"11.3","recommended":false},{"arch":null,"eula_url":"","description":null,"shortname":null,"free":true,"cpe":null,"product_type":"extension","repositories":[{"description":"SLE11-SDK-SP1-Updates for sle-11-ia64","installer_updates":false,"name":"SLE11-SDK-SP1-Updates","distro_target":"sle-11-ia64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Updates/sle-11-ia64/","enabled":false,"id":1257},{"name":"SLE11-SDK-SP1-Pool","installer_updates":false,"description":"SLE11-SDK-SP1-Pool for sle-11-ia64","id":1258,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-ia64/","autorefresh":true,"distro_target":"sle-11-ia64"},{"installer_updates":false,"name":"SLE11-SDK-SP1-Pool","description":"SLE11-SDK-SP1-Pool for sle-11-s390x","id":1259,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-s390x/","distro_target":"sle-11-s390x","autorefresh":true},{"description":"SLE11-SDK-SP1-Updates for sle-11-ppc64","name":"SLE11-SDK-SP1-Updates","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Updates/sle-11-ppc64/","autorefresh":true,"distro_target":"sle-11-ppc64","id":1260,"enabled":false},{"distro_target":"sle-11-ppc64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-ppc64/","enabled":false,"id":1261,"description":"SLE11-SDK-SP1-Pool for sle-11-ppc64","installer_updates":false,"name":"SLE11-SDK-SP1-Pool"},{"id":1262,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Updates/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true,"installer_updates":false,"name":"SLE11-SDK-SP1-Updates","description":"SLE11-SDK-SP1-Updates for sle-11-i586"},{"name":"SLE11-SDK-SP1-Pool","installer_updates":false,"description":"SLE11-SDK-SP1-Pool for sle-11-i586","enabled":false,"id":1263,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-i586/"},{"description":"SLE11-SDK-SP1-Pool for sle-11-x86_64","installer_updates":false,"name":"SLE11-SDK-SP1-Pool","distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-x86_64/","enabled":false,"id":1264},{"enabled":false,"id":1265,"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Updates/sle-11-x86_64/","name":"SLE11-SDK-SP1-Updates","installer_updates":false,"description":"SLE11-SDK-SP1-Updates for sle-11-x86_64"},{"installer_updates":false,"name":"SLE11-SDK-SP1-Updates","description":"SLE11-SDK-SP1-Updates for sle-11-s390x","id":1266,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Updates/sle-11-s390x/","distro_target":"sle-11-s390x","autorefresh":true},{"distro_target":"sle-11-ia64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-ia64/","enabled":false,"id":1267,"description":"SLE11-SDK-SP2-Core for sle-11-ia64","installer_updates":false,"name":"SLE11-SDK-SP2-Core"},{"autorefresh":true,"distro_target":"sle-11-s390x","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-s390x/","enabled":false,"id":1268,"description":"SLE11-SDK-SP2-Core for sle-11-s390x","name":"SLE11-SDK-SP2-Core","installer_updates":false},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-s390x/","distro_target":"sle-11-s390x","autorefresh":true,"id":1269,"enabled":false,"description":"SLE11-SDK-SP2-Updates for sle-11-s390x","installer_updates":false,"name":"SLE11-SDK-SP2-Updates"},{"description":"SLE11-SDK-SP2-Updates for sle-11-ppc64","installer_updates":false,"name":"SLE11-SDK-SP2-Updates","distro_target":"sle-11-ppc64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-ppc64/","enabled":false,"id":1270},{"description":"SLE11-SDK-SP2-Updates for sle-11-i586","installer_updates":false,"name":"SLE11-SDK-SP2-Updates","distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-i586/","enabled":false,"id":1271},{"id":1272,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-ia64/","distro_target":"sle-11-ia64","autorefresh":true,"installer_updates":false,"name":"SLE11-SDK-SP2-Updates","description":"SLE11-SDK-SP2-Updates for sle-11-ia64"},{"id":1273,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-ppc64/","autorefresh":true,"distro_target":"sle-11-ppc64","name":"SLE11-SDK-SP2-Core","installer_updates":false,"description":"SLE11-SDK-SP2-Core for sle-11-ppc64"},{"name":"SLE11-SDK-SP2-Core","installer_updates":false,"description":"SLE11-SDK-SP2-Core for sle-11-i586","id":1274,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586"},{"description":"SLE11-SDK-SP2-Core for sle-11-x86_64","name":"SLE11-SDK-SP2-Core","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64","id":1275,"enabled":false},{"description":"SLE11-SDK-SP2-Updates for sle-11-x86_64","name":"SLE11-SDK-SP2-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-x86_64/","enabled":false,"id":1276},{"description":"SLE11-SDK-SP3-Pool for sle-11-i586","name":"SLE11-SDK-SP3-Pool","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Pool/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","id":1277,"enabled":true},{"description":"SLE11-SDK-SP3-Pool for sle-11-ia64","name":"SLE11-SDK-SP3-Pool","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Pool/sle-11-ia64/","autorefresh":true,"distro_target":"sle-11-ia64","id":1278,"enabled":true},{"description":"SLE11-SDK-SP3-Updates for sle-11-ppc64","name":"SLE11-SDK-SP3-Updates","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Updates/sle-11-ppc64/","autorefresh":true,"distro_target":"sle-11-ppc64","id":1279,"enabled":true},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Updates/sle-11-ia64/","distro_target":"sle-11-ia64","autorefresh":true,"id":1280,"enabled":true,"description":"SLE11-SDK-SP3-Updates for sle-11-ia64","installer_updates":false,"name":"SLE11-SDK-SP3-Updates"},{"description":"SLE11-SDK-SP3-Pool for sle-11-x86_64","name":"SLE11-SDK-SP3-Pool","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Pool/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64","id":1281,"enabled":true},{"name":"SLE11-SDK-SP3-Updates","installer_updates":false,"description":"SLE11-SDK-SP3-Updates for sle-11-s390x","enabled":true,"id":1282,"autorefresh":true,"distro_target":"sle-11-s390x","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Updates/sle-11-s390x/"},{"description":"SLE11-SDK-SP3-Pool for sle-11-ppc64","name":"SLE11-SDK-SP3-Pool","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Pool/sle-11-ppc64/","autorefresh":true,"distro_target":"sle-11-ppc64","id":1283,"enabled":true},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Updates/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64","id":1284,"enabled":true,"description":"SLE11-SDK-SP3-Updates for sle-11-x86_64","name":"SLE11-SDK-SP3-Updates","installer_updates":false},{"installer_updates":false,"name":"SLE11-SDK-SP3-Updates","description":"SLE11-SDK-SP3-Updates for sle-11-i586","id":1285,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Updates/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true},{"name":"SLE11-SDK-SP3-Pool","installer_updates":false,"description":"SLE11-SDK-SP3-Pool for sle-11-s390x","enabled":true,"id":1286,"autorefresh":true,"distro_target":"sle-11-s390x","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Pool/sle-11-s390x/"}],"online_predecessor_ids":[],"product_class":"SLE-SDK","predecessor_ids":[],"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Software Development Kit 11 SP3","former_identifier":"sle-sdk","release_type":null,"name":"SUSE Linux Enterprise Software Development Kit","offline_predecessor_ids":[],"version":"11.3","recommended":false,"id":1161,"release_stage":"released","identifier":"sle-sdk","extensions":[],"friendly_version":"11 SP3"},{"free":true,"description":null,"shortname":null,"arch":null,"eula_url":"","repositories":[{"installer_updates":false,"name":"SLE11-SDK-SP3-Pool","description":"SLE11-SDK-SP3-Pool for sle-11-i586","enabled":true,"id":1277,"distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Pool/sle-11-i586/"},{"description":"SLE11-SDK-SP3-Pool for sle-11-ia64","name":"SLE11-SDK-SP3-Pool","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Pool/sle-11-ia64/","autorefresh":true,"distro_target":"sle-11-ia64","id":1278,"enabled":true},{"description":"SLE11-SDK-SP3-Updates for sle-11-ppc64","name":"SLE11-SDK-SP3-Updates","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Updates/sle-11-ppc64/","autorefresh":true,"distro_target":"sle-11-ppc64","id":1279,"enabled":true},{"description":"SLE11-SDK-SP3-Updates for sle-11-ia64","name":"SLE11-SDK-SP3-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-ia64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Updates/sle-11-ia64/","enabled":true,"id":1280},{"installer_updates":false,"name":"SLE11-SDK-SP3-Pool","description":"SLE11-SDK-SP3-Pool for sle-11-x86_64","enabled":true,"id":1281,"distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Pool/sle-11-x86_64/"},{"id":1282,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Updates/sle-11-s390x/","distro_target":"sle-11-s390x","autorefresh":true,"installer_updates":false,"name":"SLE11-SDK-SP3-Updates","description":"SLE11-SDK-SP3-Updates for sle-11-s390x"},{"description":"SLE11-SDK-SP3-Pool for sle-11-ppc64","name":"SLE11-SDK-SP3-Pool","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Pool/sle-11-ppc64/","autorefresh":true,"distro_target":"sle-11-ppc64","id":1283,"enabled":true},{"id":1284,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Updates/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true,"installer_updates":false,"name":"SLE11-SDK-SP3-Updates","description":"SLE11-SDK-SP3-Updates for sle-11-x86_64"},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Updates/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","id":1285,"enabled":true,"description":"SLE11-SDK-SP3-Updates for sle-11-i586","name":"SLE11-SDK-SP3-Updates","installer_updates":false},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Pool/sle-11-s390x/","autorefresh":true,"distro_target":"sle-11-s390x","id":1286,"enabled":true,"description":"SLE11-SDK-SP3-Pool for sle-11-s390x","name":"SLE11-SDK-SP3-Pool","installer_updates":false}],"online_predecessor_ids":[],"product_class":"SLE-SDK","predecessor_ids":[],"product_type":"extension","cpe":null,"version":"11.2","recommended":false,"release_type":null,"former_identifier":"sle-sdk-SP3-migration","friendly_name":"SUSE Linux Enterprise Software Development Kit 11 SP2 (Migration)","migration_extra":false,"offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Software Development Kit","friendly_version":"11 SP2","release_stage":"released","identifier":"sle-sdk-SP3-migration","id":1164,"extensions":[]},{"cpe":null,"product_type":"extension","product_class":"SLESMT","online_predecessor_ids":[],"repositories":[{"id":1405,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP3-Updates/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64","name":"SLE11-SMT-SP3-Updates","installer_updates":false,"description":"SLE11-SMT-SP3-Updates for sle-11-x86_64"},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP3-Updates/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","id":1406,"enabled":true,"description":"SLE11-SMT-SP3-Updates for sle-11-i586","name":"SLE11-SMT-SP3-Updates","installer_updates":false},{"distro_target":"sle-11-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP3-Updates/sle-11-s390x/","enabled":true,"id":1407,"description":"SLE11-SMT-SP3-Updates for sle-11-s390x","installer_updates":false,"name":"SLE11-SMT-SP3-Updates"},{"enabled":true,"id":1408,"distro_target":"sle-11-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP3-Pool/sle-11-s390x/","installer_updates":false,"name":"SLE11-SMT-SP3-Pool","description":"SLE11-SMT-SP3-Pool for sle-11-s390x"},{"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP3-Pool/sle-11-x86_64/","enabled":true,"id":1409,"description":"SLE11-SMT-SP3-Pool for sle-11-x86_64","name":"SLE11-SMT-SP3-Pool","installer_updates":false},{"installer_updates":false,"name":"SLE11-SMT-SP3-Pool","description":"SLE11-SMT-SP3-Pool for sle-11-i586","id":1410,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP3-Pool/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true}],"predecessor_ids":[],"arch":null,"eula_url":"","shortname":null,"description":null,"free":true,"release_stage":"released","id":1198,"identifier":"sle-smt","extensions":[],"friendly_version":"11 SP3","migration_extra":false,"friendly_name":"SUSE Linux Enterprise Subscription Management Tool 11 SP3","release_type":null,"former_identifier":"sle-smt","name":"SUSE Linux Enterprise Subscription Management Tool","offline_predecessor_ids":[],"version":"11.3","recommended":false},{"extensions":[],"release_stage":"released","identifier":"sle-smt-SP3-migration","id":1199,"friendly_version":"11 SP2","name":"SUSE Linux Enterprise Subscription Management Tool","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Subscription Management Tool 11 SP2 (Migration)","former_identifier":"sle-smt-SP3-migration","release_type":null,"recommended":false,"version":"11.2","cpe":null,"product_type":"extension","predecessor_ids":[],"online_predecessor_ids":[],"repositories":[{"distro_target":"sle-11-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP3-Pool/sle-11-s390x/","enabled":true,"id":1408,"description":"SLE11-SMT-SP3-Pool for sle-11-s390x","installer_updates":false,"name":"SLE11-SMT-SP3-Pool"},{"enabled":true,"id":1409,"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP3-Pool/sle-11-x86_64/","name":"SLE11-SMT-SP3-Pool","installer_updates":false,"description":"SLE11-SMT-SP3-Pool for sle-11-x86_64"},{"enabled":true,"id":1410,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP3-Pool/sle-11-i586/","name":"SLE11-SMT-SP3-Pool","installer_updates":false,"description":"SLE11-SMT-SP3-Pool for sle-11-i586"}],"product_class":"SLESMT","eula_url":"","arch":null,"description":null,"shortname":null,"free":true},{"predecessor_ids":[],"online_predecessor_ids":[],"repositories":[{"url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-WebYaST-1.3-Pool/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64","id":1185,"enabled":true,"description":"SLE11-SP2-WebYaST-1.3-Pool for sle-11-x86_64","name":"SLE11-SP2-WebYaST-1.3-Pool","installer_updates":false},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-WebYaST-1.3-Updates/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64","id":1188,"enabled":true,"description":"SLE11-SP2-WebYaST-1.3-Updates for sle-11-x86_64","name":"SLE11-SP2-WebYaST-1.3-Updates","installer_updates":false},{"name":"SLE11-SP2-WebYaST-1.3-Pool","installer_updates":false,"description":"SLE11-SP2-WebYaST-1.3-Pool for sle-11-s390x","id":1411,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-WebYaST-1.3-Pool/sle-11-s390x/","autorefresh":true,"distro_target":"sle-11-s390x"},{"id":1412,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-WebYaST-1.3-Updates/sle-11-s390x/","distro_target":"sle-11-s390x","autorefresh":true,"installer_updates":false,"name":"SLE11-SP2-WebYaST-1.3-Updates","description":"SLE11-SP2-WebYaST-1.3-Updates for sle-11-s390x"},{"enabled":true,"id":1413,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-WebYaST-1.3-Updates/sle-11-i586/","name":"SLE11-SP2-WebYaST-1.3-Updates","installer_updates":false,"description":"SLE11-SP2-WebYaST-1.3-Updates for sle-11-i586"},{"description":"SLE11-SP2-WebYaST-1.3-Pool for sle-11-ppc64","installer_updates":false,"name":"SLE11-SP2-WebYaST-1.3-Pool","url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-WebYaST-1.3-Pool/sle-11-ppc64/","distro_target":"sle-11-ppc64","autorefresh":true,"id":1414,"enabled":true},{"id":1415,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-WebYaST-1.3-Updates/sle-11-ia64/","distro_target":"sle-11-ia64","autorefresh":true,"installer_updates":false,"name":"SLE11-SP2-WebYaST-1.3-Updates","description":"SLE11-SP2-WebYaST-1.3-Updates for sle-11-ia64"},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-WebYaST-1.3-Pool/sle-11-ia64/","autorefresh":true,"distro_target":"sle-11-ia64","id":1416,"enabled":true,"description":"SLE11-SP2-WebYaST-1.3-Pool for sle-11-ia64","name":"SLE11-SP2-WebYaST-1.3-Pool","installer_updates":false},{"name":"SLE11-SP2-WebYaST-1.3-Pool","installer_updates":false,"description":"SLE11-SP2-WebYaST-1.3-Pool for sle-11-i586","enabled":true,"id":1417,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-WebYaST-1.3-Pool/sle-11-i586/"},{"enabled":true,"id":1418,"distro_target":"sle-11-ppc64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-WebYaST-1.3-Updates/sle-11-ppc64/","installer_updates":false,"name":"SLE11-SP2-WebYaST-1.3-Updates","description":"SLE11-SP2-WebYaST-1.3-Updates for sle-11-ppc64"}],"product_class":"WEBYAST","product_type":"extension","cpe":null,"free":true,"shortname":null,"description":null,"eula_url":"","arch":null,"friendly_version":"1.3","extensions":[],"release_stage":"released","id":1206,"identifier":"sle-11-WebYaST","recommended":false,"version":"1.3","offline_predecessor_ids":[],"name":"SUSE WebYaST","release_type":null,"former_identifier":"sle-11-WebYaST","migration_extra":false,"friendly_name":"SUSE WebYaST 1.3"},{"friendly_version":"11 SP3","id":1277,"release_stage":"released","identifier":"sle-hae-SP4-migration","extensions":[{"extensions":[],"release_stage":"released","identifier":"sle-haegeo","id":1102,"friendly_version":"11 SP3","offline_predecessor_ids":[],"name":"Geo Clustering for SUSE Linux Enterprise High Availability Extension","release_type":null,"former_identifier":"sle-haegeo","migration_extra":false,"friendly_name":"Geo Clustering for SUSE Linux Enterprise High Availability Extension 11 SP3 i586","recommended":false,"version":"11.3","product_type":"extension","cpe":null,"predecessor_ids":[],"online_predecessor_ids":[],"product_class":"SLE-HAE-GEO","repositories":[{"installer_updates":false,"name":"SLE11-HAE-GEO-SP3-Updates","description":"SLE11-HAE-GEO-SP3-Updates for sle-11-i586","enabled":true,"id":1117,"distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-GEO-SP3-Updates/sle-11-i586/"}],"eula_url":"","arch":"i586","free":false,"shortname":null,"description":null}],"version":"11.3","recommended":false,"former_identifier":"sle-hae-SP4-migration","release_type":null,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise High Availability Extension 11 SP3 i586 (Migration)","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise High Availability Extension","online_predecessor_ids":[],"product_class":"SLE-HAE-X86","repositories":[{"installer_updates":false,"name":"SLE11-HAE-SP4-Pool","description":"SLE11-HAE-SP4-Pool for sle-11-i586","enabled":true,"id":1747,"distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP4-Pool/sle-11-i586/"},{"url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP4-Updates/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true,"id":1749,"enabled":true,"description":"SLE11-HAE-SP4-Updates for sle-11-i586","installer_updates":false,"name":"SLE11-HAE-SP4-Updates"}],"predecessor_ids":[],"product_type":"extension","cpe":null,"free":false,"shortname":null,"description":null,"arch":"i586","eula_url":""},{"friendly_version":"11 SP3","extensions":[],"release_stage":"released","id":1318,"identifier":"sle-sdk-SP4-migration","recommended":false,"version":"11.3","name":"SUSE Linux Enterprise Software Development Kit","offline_predecessor_ids":[],"friendly_name":"SUSE Linux Enterprise Software Development Kit 11 SP3 (Migration)","migration_extra":false,"former_identifier":"sle-sdk-SP4-migration","release_type":null,"predecessor_ids":[],"repositories":[{"installer_updates":false,"name":"SLE11-SDK-SP1-Updates","description":"SLE11-SDK-SP1-Updates for sle-11-ia64","enabled":false,"id":1257,"distro_target":"sle-11-ia64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Updates/sle-11-ia64/"},{"name":"SLE11-SDK-SP1-Pool","installer_updates":false,"description":"SLE11-SDK-SP1-Pool for sle-11-ia64","id":1258,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-ia64/","autorefresh":true,"distro_target":"sle-11-ia64"},{"installer_updates":false,"name":"SLE11-SDK-SP1-Pool","description":"SLE11-SDK-SP1-Pool for sle-11-s390x","id":1259,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-s390x/","distro_target":"sle-11-s390x","autorefresh":true},{"description":"SLE11-SDK-SP1-Updates for sle-11-ppc64","installer_updates":false,"name":"SLE11-SDK-SP1-Updates","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Updates/sle-11-ppc64/","distro_target":"sle-11-ppc64","autorefresh":true,"id":1260,"enabled":false},{"installer_updates":false,"name":"SLE11-SDK-SP1-Pool","description":"SLE11-SDK-SP1-Pool for sle-11-ppc64","enabled":false,"id":1261,"distro_target":"sle-11-ppc64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-ppc64/"},{"name":"SLE11-SDK-SP1-Updates","installer_updates":false,"description":"SLE11-SDK-SP1-Updates for sle-11-i586","id":1262,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Updates/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586"},{"description":"SLE11-SDK-SP1-Pool for sle-11-i586","installer_updates":false,"name":"SLE11-SDK-SP1-Pool","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true,"id":1263,"enabled":false},{"name":"SLE11-SDK-SP1-Pool","installer_updates":false,"description":"SLE11-SDK-SP1-Pool for sle-11-x86_64","enabled":false,"id":1264,"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-x86_64/"},{"enabled":false,"id":1265,"distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Updates/sle-11-x86_64/","installer_updates":false,"name":"SLE11-SDK-SP1-Updates","description":"SLE11-SDK-SP1-Updates for sle-11-x86_64"},{"description":"SLE11-SDK-SP1-Updates for sle-11-s390x","name":"SLE11-SDK-SP1-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-s390x","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Updates/sle-11-s390x/","enabled":false,"id":1266},{"installer_updates":false,"name":"SLE11-SDK-SP2-Core","description":"SLE11-SDK-SP2-Core for sle-11-ia64","enabled":false,"id":1267,"distro_target":"sle-11-ia64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-ia64/"},{"installer_updates":false,"name":"SLE11-SDK-SP2-Core","description":"SLE11-SDK-SP2-Core for sle-11-s390x","id":1268,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-s390x/","distro_target":"sle-11-s390x","autorefresh":true},{"name":"SLE11-SDK-SP2-Updates","installer_updates":false,"description":"SLE11-SDK-SP2-Updates for sle-11-s390x","enabled":false,"id":1269,"autorefresh":true,"distro_target":"sle-11-s390x","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-s390x/"},{"name":"SLE11-SDK-SP2-Updates","installer_updates":false,"description":"SLE11-SDK-SP2-Updates for sle-11-ppc64","id":1270,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-ppc64/","autorefresh":true,"distro_target":"sle-11-ppc64"},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","id":1271,"enabled":false,"description":"SLE11-SDK-SP2-Updates for sle-11-i586","name":"SLE11-SDK-SP2-Updates","installer_updates":false},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-ia64/","distro_target":"sle-11-ia64","autorefresh":true,"id":1272,"enabled":false,"description":"SLE11-SDK-SP2-Updates for sle-11-ia64","installer_updates":false,"name":"SLE11-SDK-SP2-Updates"},{"id":1273,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-ppc64/","distro_target":"sle-11-ppc64","autorefresh":true,"installer_updates":false,"name":"SLE11-SDK-SP2-Core","description":"SLE11-SDK-SP2-Core for sle-11-ppc64"},{"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-i586/","enabled":false,"id":1274,"description":"SLE11-SDK-SP2-Core for sle-11-i586","name":"SLE11-SDK-SP2-Core","installer_updates":false},{"installer_updates":false,"name":"SLE11-SDK-SP2-Core","description":"SLE11-SDK-SP2-Core for sle-11-x86_64","enabled":false,"id":1275,"distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-x86_64/"},{"installer_updates":false,"name":"SLE11-SDK-SP2-Updates","description":"SLE11-SDK-SP2-Updates for sle-11-x86_64","enabled":false,"id":1276,"distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-x86_64/"},{"name":"SLE11-SDK-SP3-Pool","installer_updates":false,"description":"SLE11-SDK-SP3-Pool for sle-11-i586","enabled":false,"id":1277,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Pool/sle-11-i586/"},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Pool/sle-11-ia64/","distro_target":"sle-11-ia64","autorefresh":true,"id":1278,"enabled":false,"description":"SLE11-SDK-SP3-Pool for sle-11-ia64","installer_updates":false,"name":"SLE11-SDK-SP3-Pool"},{"id":1279,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Updates/sle-11-ppc64/","autorefresh":true,"distro_target":"sle-11-ppc64","name":"SLE11-SDK-SP3-Updates","installer_updates":false,"description":"SLE11-SDK-SP3-Updates for sle-11-ppc64"},{"installer_updates":false,"name":"SLE11-SDK-SP3-Updates","description":"SLE11-SDK-SP3-Updates for sle-11-ia64","id":1280,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Updates/sle-11-ia64/","distro_target":"sle-11-ia64","autorefresh":true},{"id":1281,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Pool/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64","name":"SLE11-SDK-SP3-Pool","installer_updates":false,"description":"SLE11-SDK-SP3-Pool for sle-11-x86_64"},{"enabled":false,"id":1282,"distro_target":"sle-11-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Updates/sle-11-s390x/","installer_updates":false,"name":"SLE11-SDK-SP3-Updates","description":"SLE11-SDK-SP3-Updates for sle-11-s390x"},{"autorefresh":true,"distro_target":"sle-11-ppc64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Pool/sle-11-ppc64/","enabled":false,"id":1283,"description":"SLE11-SDK-SP3-Pool for sle-11-ppc64","name":"SLE11-SDK-SP3-Pool","installer_updates":false},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Updates/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true,"id":1284,"enabled":false,"description":"SLE11-SDK-SP3-Updates for sle-11-x86_64","installer_updates":false,"name":"SLE11-SDK-SP3-Updates"},{"description":"SLE11-SDK-SP3-Updates for sle-11-i586","installer_updates":false,"name":"SLE11-SDK-SP3-Updates","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Updates/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true,"id":1285,"enabled":false},{"description":"SLE11-SDK-SP3-Pool for sle-11-s390x","installer_updates":false,"name":"SLE11-SDK-SP3-Pool","distro_target":"sle-11-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Pool/sle-11-s390x/","enabled":false,"id":1286},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP4-Pool/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true,"id":1817,"enabled":true,"description":"SLE11-SDK-SP4-Pool for sle-11-i586","installer_updates":false,"name":"SLE11-SDK-SP4-Pool"},{"description":"SLE11-SDK-SP4-Pool for sle-11-ia64","name":"SLE11-SDK-SP4-Pool","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-ia64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP4-Pool/sle-11-ia64/","enabled":true,"id":1818},{"id":1819,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP4-Pool/sle-11-ppc64/","autorefresh":true,"distro_target":"sle-11-ppc64","name":"SLE11-SDK-SP4-Pool","installer_updates":false,"description":"SLE11-SDK-SP4-Pool for sle-11-ppc64"},{"description":"SLE11-SDK-SP4-Pool for sle-11-s390x","installer_updates":false,"name":"SLE11-SDK-SP4-Pool","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP4-Pool/sle-11-s390x/","distro_target":"sle-11-s390x","autorefresh":true,"id":1820,"enabled":true},{"description":"SLE11-SDK-SP4-Pool for sle-11-x86_64","installer_updates":false,"name":"SLE11-SDK-SP4-Pool","distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP4-Pool/sle-11-x86_64/","enabled":true,"id":1821},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP4-Updates/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","id":1822,"enabled":true,"description":"SLE11-SDK-SP4-Updates for sle-11-i586","name":"SLE11-SDK-SP4-Updates","installer_updates":false},{"name":"SLE11-SDK-SP4-Updates","installer_updates":false,"description":"SLE11-SDK-SP4-Updates for sle-11-ia64","id":1823,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP4-Updates/sle-11-ia64/","autorefresh":true,"distro_target":"sle-11-ia64"},{"name":"SLE11-SDK-SP4-Updates","installer_updates":false,"description":"SLE11-SDK-SP4-Updates for sle-11-ppc64","id":1824,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP4-Updates/sle-11-ppc64/","autorefresh":true,"distro_target":"sle-11-ppc64"},{"description":"SLE11-SDK-SP4-Updates for sle-11-s390x","name":"SLE11-SDK-SP4-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-s390x","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP4-Updates/sle-11-s390x/","enabled":true,"id":1825},{"description":"SLE11-SDK-SP4-Updates for sle-11-x86_64","name":"SLE11-SDK-SP4-Updates","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP4-Updates/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64","id":1826,"enabled":true}],"online_predecessor_ids":[],"product_class":"SLE-SDK","cpe":null,"product_type":"extension","description":null,"shortname":null,"free":true,"eula_url":"","arch":null}],"friendly_version":"11 SP3","release_type":null,"former_identifier":"SUSE_SLES","friendly_name":"SUSE Linux Enterprise Server 11 SP3 i586","migration_extra":false,"offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Server","version":"11.3","recommended":false},{"extensions":[{"offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Software Development Kit","release_type":null,"former_identifier":"sle-sdk","migration_extra":false,"friendly_name":"SUSE Linux Enterprise Software Development Kit 11 SP3","recommended":false,"version":"11.3","extensions":[],"release_stage":"released","identifier":"sle-sdk","id":1161,"friendly_version":"11 SP3","eula_url":"","arch":null,"free":true,"description":null,"shortname":null,"product_type":"extension","cpe":null,"predecessor_ids":[],"online_predecessor_ids":[],"product_class":"SLE-SDK","repositories":[{"installer_updates":false,"name":"SLE11-SDK-SP1-Updates","description":"SLE11-SDK-SP1-Updates for sle-11-ia64","id":1257,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Updates/sle-11-ia64/","distro_target":"sle-11-ia64","autorefresh":true},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-ia64/","distro_target":"sle-11-ia64","autorefresh":true,"id":1258,"enabled":false,"description":"SLE11-SDK-SP1-Pool for sle-11-ia64","installer_updates":false,"name":"SLE11-SDK-SP1-Pool"},{"enabled":false,"id":1259,"distro_target":"sle-11-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-s390x/","installer_updates":false,"name":"SLE11-SDK-SP1-Pool","description":"SLE11-SDK-SP1-Pool for sle-11-s390x"},{"id":1260,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Updates/sle-11-ppc64/","autorefresh":true,"distro_target":"sle-11-ppc64","name":"SLE11-SDK-SP1-Updates","installer_updates":false,"description":"SLE11-SDK-SP1-Updates for sle-11-ppc64"},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-ppc64/","autorefresh":true,"distro_target":"sle-11-ppc64","id":1261,"enabled":false,"description":"SLE11-SDK-SP1-Pool for sle-11-ppc64","name":"SLE11-SDK-SP1-Pool","installer_updates":false},{"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Updates/sle-11-i586/","enabled":false,"id":1262,"description":"SLE11-SDK-SP1-Updates for sle-11-i586","name":"SLE11-SDK-SP1-Updates","installer_updates":false},{"enabled":false,"id":1263,"distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-i586/","installer_updates":false,"name":"SLE11-SDK-SP1-Pool","description":"SLE11-SDK-SP1-Pool for sle-11-i586"},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64","id":1264,"enabled":false,"description":"SLE11-SDK-SP1-Pool for sle-11-x86_64","name":"SLE11-SDK-SP1-Pool","installer_updates":false},{"name":"SLE11-SDK-SP1-Updates","installer_updates":false,"description":"SLE11-SDK-SP1-Updates for sle-11-x86_64","id":1265,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Updates/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64"},{"id":1266,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Updates/sle-11-s390x/","autorefresh":true,"distro_target":"sle-11-s390x","name":"SLE11-SDK-SP1-Updates","installer_updates":false,"description":"SLE11-SDK-SP1-Updates for sle-11-s390x"},{"autorefresh":true,"distro_target":"sle-11-ia64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-ia64/","enabled":false,"id":1267,"description":"SLE11-SDK-SP2-Core for sle-11-ia64","name":"SLE11-SDK-SP2-Core","installer_updates":false},{"enabled":false,"id":1268,"autorefresh":true,"distro_target":"sle-11-s390x","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-s390x/","name":"SLE11-SDK-SP2-Core","installer_updates":false,"description":"SLE11-SDK-SP2-Core for sle-11-s390x"},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-s390x/","distro_target":"sle-11-s390x","autorefresh":true,"id":1269,"enabled":false,"description":"SLE11-SDK-SP2-Updates for sle-11-s390x","installer_updates":false,"name":"SLE11-SDK-SP2-Updates"},{"enabled":false,"id":1270,"autorefresh":true,"distro_target":"sle-11-ppc64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-ppc64/","name":"SLE11-SDK-SP2-Updates","installer_updates":false,"description":"SLE11-SDK-SP2-Updates for sle-11-ppc64"},{"name":"SLE11-SDK-SP2-Updates","installer_updates":false,"description":"SLE11-SDK-SP2-Updates for sle-11-i586","id":1271,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586"},{"name":"SLE11-SDK-SP2-Updates","installer_updates":false,"description":"SLE11-SDK-SP2-Updates for sle-11-ia64","enabled":false,"id":1272,"autorefresh":true,"distro_target":"sle-11-ia64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-ia64/"},{"description":"SLE11-SDK-SP2-Core for sle-11-ppc64","installer_updates":false,"name":"SLE11-SDK-SP2-Core","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-ppc64/","distro_target":"sle-11-ppc64","autorefresh":true,"id":1273,"enabled":false},{"id":1274,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true,"installer_updates":false,"name":"SLE11-SDK-SP2-Core","description":"SLE11-SDK-SP2-Core for sle-11-i586"},{"name":"SLE11-SDK-SP2-Core","installer_updates":false,"description":"SLE11-SDK-SP2-Core for sle-11-x86_64","enabled":false,"id":1275,"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-x86_64/"},{"installer_updates":false,"name":"SLE11-SDK-SP2-Updates","description":"SLE11-SDK-SP2-Updates for sle-11-x86_64","id":1276,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true},{"installer_updates":false,"name":"SLE11-SDK-SP3-Pool","description":"SLE11-SDK-SP3-Pool for sle-11-i586","enabled":true,"id":1277,"distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Pool/sle-11-i586/"},{"name":"SLE11-SDK-SP3-Pool","installer_updates":false,"description":"SLE11-SDK-SP3-Pool for sle-11-ia64","enabled":true,"id":1278,"autorefresh":true,"distro_target":"sle-11-ia64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Pool/sle-11-ia64/"},{"id":1279,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Updates/sle-11-ppc64/","distro_target":"sle-11-ppc64","autorefresh":true,"installer_updates":false,"name":"SLE11-SDK-SP3-Updates","description":"SLE11-SDK-SP3-Updates for sle-11-ppc64"},{"enabled":true,"id":1280,"distro_target":"sle-11-ia64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Updates/sle-11-ia64/","installer_updates":false,"name":"SLE11-SDK-SP3-Updates","description":"SLE11-SDK-SP3-Updates for sle-11-ia64"},{"distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Pool/sle-11-x86_64/","enabled":true,"id":1281,"description":"SLE11-SDK-SP3-Pool for sle-11-x86_64","installer_updates":false,"name":"SLE11-SDK-SP3-Pool"},{"description":"SLE11-SDK-SP3-Updates for sle-11-s390x","name":"SLE11-SDK-SP3-Updates","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Updates/sle-11-s390x/","autorefresh":true,"distro_target":"sle-11-s390x","id":1282,"enabled":true},{"enabled":true,"id":1283,"distro_target":"sle-11-ppc64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Pool/sle-11-ppc64/","installer_updates":false,"name":"SLE11-SDK-SP3-Pool","description":"SLE11-SDK-SP3-Pool for sle-11-ppc64"},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Updates/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true,"id":1284,"enabled":true,"description":"SLE11-SDK-SP3-Updates for sle-11-x86_64","installer_updates":false,"name":"SLE11-SDK-SP3-Updates"},{"description":"SLE11-SDK-SP3-Updates for sle-11-i586","installer_updates":false,"name":"SLE11-SDK-SP3-Updates","distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Updates/sle-11-i586/","enabled":true,"id":1285},{"autorefresh":true,"distro_target":"sle-11-s390x","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Pool/sle-11-s390x/","enabled":true,"id":1286,"description":"SLE11-SDK-SP3-Pool for sle-11-s390x","name":"SLE11-SDK-SP3-Pool","installer_updates":false}]},{"eula_url":"","arch":null,"free":true,"shortname":null,"description":null,"product_type":"extension","cpe":null,"predecessor_ids":[],"online_predecessor_ids":[],"repositories":[{"installer_updates":false,"name":"SLE11-SDK-SP3-Pool","description":"SLE11-SDK-SP3-Pool for sle-11-i586","id":1277,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Pool/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true},{"name":"SLE11-SDK-SP3-Pool","installer_updates":false,"description":"SLE11-SDK-SP3-Pool for sle-11-ia64","id":1278,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Pool/sle-11-ia64/","autorefresh":true,"distro_target":"sle-11-ia64"},{"description":"SLE11-SDK-SP3-Updates for sle-11-ppc64","name":"SLE11-SDK-SP3-Updates","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Updates/sle-11-ppc64/","autorefresh":true,"distro_target":"sle-11-ppc64","id":1279,"enabled":true},{"id":1280,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Updates/sle-11-ia64/","autorefresh":true,"distro_target":"sle-11-ia64","name":"SLE11-SDK-SP3-Updates","installer_updates":false,"description":"SLE11-SDK-SP3-Updates for sle-11-ia64"},{"id":1281,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Pool/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true,"installer_updates":false,"name":"SLE11-SDK-SP3-Pool","description":"SLE11-SDK-SP3-Pool for sle-11-x86_64"},{"distro_target":"sle-11-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Updates/sle-11-s390x/","enabled":true,"id":1282,"description":"SLE11-SDK-SP3-Updates for sle-11-s390x","installer_updates":false,"name":"SLE11-SDK-SP3-Updates"},{"installer_updates":false,"name":"SLE11-SDK-SP3-Pool","description":"SLE11-SDK-SP3-Pool for sle-11-ppc64","enabled":true,"id":1283,"distro_target":"sle-11-ppc64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Pool/sle-11-ppc64/"},{"distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Updates/sle-11-x86_64/","enabled":true,"id":1284,"description":"SLE11-SDK-SP3-Updates for sle-11-x86_64","installer_updates":false,"name":"SLE11-SDK-SP3-Updates"},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Updates/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","id":1285,"enabled":true,"description":"SLE11-SDK-SP3-Updates for sle-11-i586","name":"SLE11-SDK-SP3-Updates","installer_updates":false},{"installer_updates":false,"name":"SLE11-SDK-SP3-Pool","description":"SLE11-SDK-SP3-Pool for sle-11-s390x","id":1286,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Pool/sle-11-s390x/","distro_target":"sle-11-s390x","autorefresh":true}],"product_class":"SLE-SDK","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Software Development Kit","former_identifier":"sle-sdk-SP3-migration","release_type":null,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Software Development Kit 11 SP2 (Migration)","recommended":false,"version":"11.2","extensions":[],"release_stage":"released","id":1164,"identifier":"sle-sdk-SP3-migration","friendly_version":"11 SP2"},{"cpe":null,"product_type":"extension","repositories":[{"id":1405,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP3-Updates/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true,"installer_updates":false,"name":"SLE11-SMT-SP3-Updates","description":"SLE11-SMT-SP3-Updates for sle-11-x86_64"},{"description":"SLE11-SMT-SP3-Updates for sle-11-i586","installer_updates":false,"name":"SLE11-SMT-SP3-Updates","url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP3-Updates/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true,"id":1406,"enabled":true},{"description":"SLE11-SMT-SP3-Updates for sle-11-s390x","name":"SLE11-SMT-SP3-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-s390x","url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP3-Updates/sle-11-s390x/","enabled":true,"id":1407},{"distro_target":"sle-11-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP3-Pool/sle-11-s390x/","enabled":true,"id":1408,"description":"SLE11-SMT-SP3-Pool for sle-11-s390x","installer_updates":false,"name":"SLE11-SMT-SP3-Pool"},{"distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP3-Pool/sle-11-x86_64/","enabled":true,"id":1409,"description":"SLE11-SMT-SP3-Pool for sle-11-x86_64","installer_updates":false,"name":"SLE11-SMT-SP3-Pool"},{"name":"SLE11-SMT-SP3-Pool","installer_updates":false,"description":"SLE11-SMT-SP3-Pool for sle-11-i586","id":1410,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP3-Pool/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586"}],"online_predecessor_ids":[],"product_class":"SLESMT","predecessor_ids":[],"arch":null,"eula_url":"","description":null,"shortname":null,"free":true,"release_stage":"released","identifier":"sle-smt","id":1198,"extensions":[],"friendly_version":"11 SP3","friendly_name":"SUSE Linux Enterprise Subscription Management Tool 11 SP3","migration_extra":false,"former_identifier":"sle-smt","release_type":null,"name":"SUSE Linux Enterprise Subscription Management Tool","offline_predecessor_ids":[],"version":"11.3","recommended":false},{"product_type":"extension","cpe":null,"predecessor_ids":[],"online_predecessor_ids":[],"repositories":[{"autorefresh":true,"distro_target":"sle-11-s390x","url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP3-Pool/sle-11-s390x/","enabled":true,"id":1408,"description":"SLE11-SMT-SP3-Pool for sle-11-s390x","name":"SLE11-SMT-SP3-Pool","installer_updates":false},{"description":"SLE11-SMT-SP3-Pool for sle-11-x86_64","installer_updates":false,"name":"SLE11-SMT-SP3-Pool","url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP3-Pool/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true,"id":1409,"enabled":true},{"enabled":true,"id":1410,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP3-Pool/sle-11-i586/","name":"SLE11-SMT-SP3-Pool","installer_updates":false,"description":"SLE11-SMT-SP3-Pool for sle-11-i586"}],"product_class":"SLESMT","eula_url":"","arch":null,"free":true,"description":null,"shortname":null,"extensions":[],"release_stage":"released","id":1199,"identifier":"sle-smt-SP3-migration","friendly_version":"11 SP2","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Subscription Management Tool","release_type":null,"former_identifier":"sle-smt-SP3-migration","friendly_name":"SUSE Linux Enterprise Subscription Management Tool 11 SP2 (Migration)","migration_extra":false,"recommended":false,"version":"11.2"},{"version":"1.3","recommended":false,"former_identifier":"sle-11-WebYaST","release_type":null,"migration_extra":false,"friendly_name":"SUSE WebYaST 1.3","offline_predecessor_ids":[],"name":"SUSE WebYaST","friendly_version":"1.3","release_stage":"released","id":1206,"identifier":"sle-11-WebYaST","extensions":[],"free":true,"description":null,"shortname":null,"arch":null,"eula_url":"","online_predecessor_ids":[],"product_class":"WEBYAST","repositories":[{"name":"SLE11-SP2-WebYaST-1.3-Pool","installer_updates":false,"description":"SLE11-SP2-WebYaST-1.3-Pool for sle-11-x86_64","id":1185,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-WebYaST-1.3-Pool/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64"},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-WebYaST-1.3-Updates/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true,"id":1188,"enabled":true,"description":"SLE11-SP2-WebYaST-1.3-Updates for sle-11-x86_64","installer_updates":false,"name":"SLE11-SP2-WebYaST-1.3-Updates"},{"description":"SLE11-SP2-WebYaST-1.3-Pool for sle-11-s390x","name":"SLE11-SP2-WebYaST-1.3-Pool","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-WebYaST-1.3-Pool/sle-11-s390x/","autorefresh":true,"distro_target":"sle-11-s390x","id":1411,"enabled":true},{"installer_updates":false,"name":"SLE11-SP2-WebYaST-1.3-Updates","description":"SLE11-SP2-WebYaST-1.3-Updates for sle-11-s390x","id":1412,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-WebYaST-1.3-Updates/sle-11-s390x/","distro_target":"sle-11-s390x","autorefresh":true},{"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-WebYaST-1.3-Updates/sle-11-i586/","enabled":true,"id":1413,"description":"SLE11-SP2-WebYaST-1.3-Updates for sle-11-i586","name":"SLE11-SP2-WebYaST-1.3-Updates","installer_updates":false},{"description":"SLE11-SP2-WebYaST-1.3-Pool for sle-11-ppc64","installer_updates":false,"name":"SLE11-SP2-WebYaST-1.3-Pool","distro_target":"sle-11-ppc64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-WebYaST-1.3-Pool/sle-11-ppc64/","enabled":true,"id":1414},{"installer_updates":false,"name":"SLE11-SP2-WebYaST-1.3-Updates","description":"SLE11-SP2-WebYaST-1.3-Updates for sle-11-ia64","enabled":true,"id":1415,"distro_target":"sle-11-ia64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-WebYaST-1.3-Updates/sle-11-ia64/"},{"id":1416,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-WebYaST-1.3-Pool/sle-11-ia64/","autorefresh":true,"distro_target":"sle-11-ia64","name":"SLE11-SP2-WebYaST-1.3-Pool","installer_updates":false,"description":"SLE11-SP2-WebYaST-1.3-Pool for sle-11-ia64"},{"id":1417,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-WebYaST-1.3-Pool/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true,"installer_updates":false,"name":"SLE11-SP2-WebYaST-1.3-Pool","description":"SLE11-SP2-WebYaST-1.3-Pool for sle-11-i586"},{"autorefresh":true,"distro_target":"sle-11-ppc64","url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-WebYaST-1.3-Updates/sle-11-ppc64/","enabled":true,"id":1418,"description":"SLE11-SP2-WebYaST-1.3-Updates for sle-11-ppc64","name":"SLE11-SP2-WebYaST-1.3-Updates","installer_updates":false}],"predecessor_ids":[],"product_type":"extension","cpe":null},{"recommended":false,"version":"11.3","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Software Development Kit","former_identifier":"sle-sdk-SP4-migration","release_type":null,"friendly_name":"SUSE Linux Enterprise Software Development Kit 11 SP3 (Migration)","migration_extra":false,"friendly_version":"11 SP3","extensions":[],"identifier":"sle-sdk-SP4-migration","release_stage":"released","id":1318,"free":true,"shortname":null,"description":null,"eula_url":"","arch":null,"predecessor_ids":[],"repositories":[{"description":"SLE11-SDK-SP1-Updates for sle-11-ia64","installer_updates":false,"name":"SLE11-SDK-SP1-Updates","distro_target":"sle-11-ia64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Updates/sle-11-ia64/","enabled":false,"id":1257},{"autorefresh":true,"distro_target":"sle-11-ia64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-ia64/","enabled":false,"id":1258,"description":"SLE11-SDK-SP1-Pool for sle-11-ia64","name":"SLE11-SDK-SP1-Pool","installer_updates":false},{"id":1259,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-s390x/","distro_target":"sle-11-s390x","autorefresh":true,"installer_updates":false,"name":"SLE11-SDK-SP1-Pool","description":"SLE11-SDK-SP1-Pool for sle-11-s390x"},{"description":"SLE11-SDK-SP1-Updates for sle-11-ppc64","installer_updates":false,"name":"SLE11-SDK-SP1-Updates","distro_target":"sle-11-ppc64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Updates/sle-11-ppc64/","enabled":false,"id":1260},{"enabled":false,"id":1261,"distro_target":"sle-11-ppc64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-ppc64/","installer_updates":false,"name":"SLE11-SDK-SP1-Pool","description":"SLE11-SDK-SP1-Pool for sle-11-ppc64"},{"id":1262,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Updates/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true,"installer_updates":false,"name":"SLE11-SDK-SP1-Updates","description":"SLE11-SDK-SP1-Updates for sle-11-i586"},{"description":"SLE11-SDK-SP1-Pool for sle-11-i586","installer_updates":false,"name":"SLE11-SDK-SP1-Pool","distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-i586/","enabled":false,"id":1263},{"installer_updates":false,"name":"SLE11-SDK-SP1-Pool","description":"SLE11-SDK-SP1-Pool for sle-11-x86_64","enabled":false,"id":1264,"distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-x86_64/"},{"description":"SLE11-SDK-SP1-Updates for sle-11-x86_64","installer_updates":false,"name":"SLE11-SDK-SP1-Updates","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Updates/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true,"id":1265,"enabled":false},{"description":"SLE11-SDK-SP1-Updates for sle-11-s390x","name":"SLE11-SDK-SP1-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-s390x","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Updates/sle-11-s390x/","enabled":false,"id":1266},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-ia64/","distro_target":"sle-11-ia64","autorefresh":true,"id":1267,"enabled":false,"description":"SLE11-SDK-SP2-Core for sle-11-ia64","installer_updates":false,"name":"SLE11-SDK-SP2-Core"},{"enabled":false,"id":1268,"distro_target":"sle-11-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-s390x/","installer_updates":false,"name":"SLE11-SDK-SP2-Core","description":"SLE11-SDK-SP2-Core for sle-11-s390x"},{"id":1269,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-s390x/","autorefresh":true,"distro_target":"sle-11-s390x","name":"SLE11-SDK-SP2-Updates","installer_updates":false,"description":"SLE11-SDK-SP2-Updates for sle-11-s390x"},{"description":"SLE11-SDK-SP2-Updates for sle-11-ppc64","name":"SLE11-SDK-SP2-Updates","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-ppc64/","autorefresh":true,"distro_target":"sle-11-ppc64","id":1270,"enabled":false},{"name":"SLE11-SDK-SP2-Updates","installer_updates":false,"description":"SLE11-SDK-SP2-Updates for sle-11-i586","enabled":false,"id":1271,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-i586/"},{"installer_updates":false,"name":"SLE11-SDK-SP2-Updates","description":"SLE11-SDK-SP2-Updates for sle-11-ia64","enabled":false,"id":1272,"distro_target":"sle-11-ia64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-ia64/"},{"distro_target":"sle-11-ppc64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-ppc64/","enabled":false,"id":1273,"description":"SLE11-SDK-SP2-Core for sle-11-ppc64","installer_updates":false,"name":"SLE11-SDK-SP2-Core"},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true,"id":1274,"enabled":false,"description":"SLE11-SDK-SP2-Core for sle-11-i586","installer_updates":false,"name":"SLE11-SDK-SP2-Core"},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64","id":1275,"enabled":false,"description":"SLE11-SDK-SP2-Core for sle-11-x86_64","name":"SLE11-SDK-SP2-Core","installer_updates":false},{"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-x86_64/","enabled":false,"id":1276,"description":"SLE11-SDK-SP2-Updates for sle-11-x86_64","name":"SLE11-SDK-SP2-Updates","installer_updates":false},{"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Pool/sle-11-i586/","enabled":false,"id":1277,"description":"SLE11-SDK-SP3-Pool for sle-11-i586","name":"SLE11-SDK-SP3-Pool","installer_updates":false},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Pool/sle-11-ia64/","autorefresh":true,"distro_target":"sle-11-ia64","id":1278,"enabled":false,"description":"SLE11-SDK-SP3-Pool for sle-11-ia64","name":"SLE11-SDK-SP3-Pool","installer_updates":false},{"enabled":false,"id":1279,"distro_target":"sle-11-ppc64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Updates/sle-11-ppc64/","installer_updates":false,"name":"SLE11-SDK-SP3-Updates","description":"SLE11-SDK-SP3-Updates for sle-11-ppc64"},{"enabled":false,"id":1280,"autorefresh":true,"distro_target":"sle-11-ia64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Updates/sle-11-ia64/","name":"SLE11-SDK-SP3-Updates","installer_updates":false,"description":"SLE11-SDK-SP3-Updates for sle-11-ia64"},{"enabled":false,"id":1281,"distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Pool/sle-11-x86_64/","installer_updates":false,"name":"SLE11-SDK-SP3-Pool","description":"SLE11-SDK-SP3-Pool for sle-11-x86_64"},{"installer_updates":false,"name":"SLE11-SDK-SP3-Updates","description":"SLE11-SDK-SP3-Updates for sle-11-s390x","id":1282,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Updates/sle-11-s390x/","distro_target":"sle-11-s390x","autorefresh":true},{"id":1283,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Pool/sle-11-ppc64/","distro_target":"sle-11-ppc64","autorefresh":true,"installer_updates":false,"name":"SLE11-SDK-SP3-Pool","description":"SLE11-SDK-SP3-Pool for sle-11-ppc64"},{"enabled":false,"id":1284,"distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Updates/sle-11-x86_64/","installer_updates":false,"name":"SLE11-SDK-SP3-Updates","description":"SLE11-SDK-SP3-Updates for sle-11-x86_64"},{"description":"SLE11-SDK-SP3-Updates for sle-11-i586","name":"SLE11-SDK-SP3-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Updates/sle-11-i586/","enabled":false,"id":1285},{"enabled":false,"id":1286,"distro_target":"sle-11-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Pool/sle-11-s390x/","installer_updates":false,"name":"SLE11-SDK-SP3-Pool","description":"SLE11-SDK-SP3-Pool for sle-11-s390x"},{"id":1817,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP4-Pool/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","name":"SLE11-SDK-SP4-Pool","installer_updates":false,"description":"SLE11-SDK-SP4-Pool for sle-11-i586"},{"name":"SLE11-SDK-SP4-Pool","installer_updates":false,"description":"SLE11-SDK-SP4-Pool for sle-11-ia64","enabled":true,"id":1818,"autorefresh":true,"distro_target":"sle-11-ia64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP4-Pool/sle-11-ia64/"},{"description":"SLE11-SDK-SP4-Pool for sle-11-ppc64","installer_updates":false,"name":"SLE11-SDK-SP4-Pool","distro_target":"sle-11-ppc64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP4-Pool/sle-11-ppc64/","enabled":true,"id":1819},{"distro_target":"sle-11-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP4-Pool/sle-11-s390x/","enabled":true,"id":1820,"description":"SLE11-SDK-SP4-Pool for sle-11-s390x","installer_updates":false,"name":"SLE11-SDK-SP4-Pool"},{"id":1821,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP4-Pool/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true,"installer_updates":false,"name":"SLE11-SDK-SP4-Pool","description":"SLE11-SDK-SP4-Pool for sle-11-x86_64"},{"description":"SLE11-SDK-SP4-Updates for sle-11-i586","installer_updates":false,"name":"SLE11-SDK-SP4-Updates","distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP4-Updates/sle-11-i586/","enabled":true,"id":1822},{"installer_updates":false,"name":"SLE11-SDK-SP4-Updates","description":"SLE11-SDK-SP4-Updates for sle-11-ia64","enabled":true,"id":1823,"distro_target":"sle-11-ia64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP4-Updates/sle-11-ia64/"},{"id":1824,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP4-Updates/sle-11-ppc64/","distro_target":"sle-11-ppc64","autorefresh":true,"installer_updates":false,"name":"SLE11-SDK-SP4-Updates","description":"SLE11-SDK-SP4-Updates for sle-11-ppc64"},{"description":"SLE11-SDK-SP4-Updates for sle-11-s390x","installer_updates":false,"name":"SLE11-SDK-SP4-Updates","distro_target":"sle-11-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP4-Updates/sle-11-s390x/","enabled":true,"id":1825},{"installer_updates":false,"name":"SLE11-SDK-SP4-Updates","description":"SLE11-SDK-SP4-Updates for sle-11-x86_64","enabled":true,"id":1826,"distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP4-Updates/sle-11-x86_64/"}],"online_predecessor_ids":[],"product_class":"SLE-SDK","product_type":"extension","cpe":null}],"release_stage":"released","identifier":"SUSE_SLES","id":794,"friendly_version":"11 SP3","name":"SUSE Linux Enterprise Server","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Server 11 SP3 i486","former_identifier":"SUSE_SLES","release_type":null,"recommended":false,"version":"11.3","cpe":"cpe:/o:suse:suse_sles:11:sp3","product_type":"base","predecessor_ids":[],"product_class":"7261","online_predecessor_ids":[],"repositories":[{"url":"https://updates.suse.com/repo/$RCE/SLES11-Extras/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","id":679,"enabled":false,"description":"SLES11-Extras for sle-11-i586","name":"SLES11-Extras","installer_updates":false},{"description":"SLE11-SP1-Debuginfo-Pool for sle-11-i586","name":"SLE11-SP1-Debuginfo-Pool","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Pool/sle-11-i586/","enabled":false,"id":680},{"enabled":false,"id":682,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Updates/sle-11-i586/","name":"SLE11-SP1-Debuginfo-Updates","installer_updates":false,"description":"SLE11-SP1-Debuginfo-Updates for sle-11-i586"},{"description":"SLES11-SP1-Updates for sle-11-i586","installer_updates":false,"name":"SLES11-SP1-Updates","distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-Updates/sle-11-i586/","enabled":false,"id":684},{"description":"SLES11-SP1-Pool for sle-11-i586","name":"SLES11-SP1-Pool","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-Pool/sle-11-i586/","enabled":false,"id":686},{"installer_updates":false,"name":"SLE11-SP2-Debuginfo-Core","description":"SLE11-SP2-Debuginfo-Core for sle-11-i586","id":717,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-Debuginfo-Core/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-Debuginfo-Updates/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","id":719,"enabled":false,"description":"SLE11-SP2-Debuginfo-Updates for sle-11-i586","name":"SLE11-SP2-Debuginfo-Updates","installer_updates":false},{"enabled":false,"id":720,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLES11-SP2-Updates/sle-11-i586/","name":"SLES11-SP2-Updates","installer_updates":false,"description":"SLES11-SP2-Updates for sle-11-i586"},{"installer_updates":false,"name":"SLES11-SP2-Core","description":"SLES11-SP2-Core for sle-11-i586","id":722,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP2-Core/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true},{"name":"SLES11-SP3-Extension-Store","installer_updates":false,"description":"SLES11-SP3-Extension-Store for sle-11-i586","enabled":false,"id":758,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLES11-SP3-Extension-Store/sle-11-i586/"},{"description":"SLE11-SP3-Debuginfo-Updates for sle-11-i586","name":"SLE11-SP3-Debuginfo-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-SP3-Debuginfo-Updates/sle-11-i586/","enabled":false,"id":759},{"id":760,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP3-Pool/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true,"installer_updates":false,"name":"SLES11-SP3-Pool","description":"SLES11-SP3-Pool for sle-11-i586"},{"description":"SLES11-SP2-Extension-Store for sle-11-i586","installer_updates":false,"name":"SLES11-SP2-Extension-Store","distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP2-Extension-Store/sle-11-i586/","enabled":false,"id":761},{"installer_updates":false,"name":"SLES11-SP3-Updates","description":"SLES11-SP3-Updates for sle-11-i586","id":762,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP3-Updates/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true},{"name":"SLE11-SP3-Debuginfo-Pool","installer_updates":false,"description":"SLE11-SP3-Debuginfo-Pool for sle-11-i586","enabled":false,"id":763,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-SP3-Debuginfo-Pool/sle-11-i586/"}],"eula_url":"","arch":"i486","description":null,"shortname":null,"free":false},{"version":"11.3","recommended":false,"former_identifier":"SUSE_SLES","release_type":null,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Server 11 SP3 s390","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Server","friendly_version":"11 SP3","id":795,"release_stage":"released","identifier":"SUSE_SLES","extensions":[{"version":"11.3","recommended":false,"former_identifier":"sle-sdk","release_type":null,"friendly_name":"SUSE Linux Enterprise Software Development Kit 11 SP3","migration_extra":false,"offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Software Development Kit","friendly_version":"11 SP3","identifier":"sle-sdk","release_stage":"released","id":1161,"extensions":[],"free":true,"shortname":null,"description":null,"arch":null,"eula_url":"","online_predecessor_ids":[],"product_class":"SLE-SDK","repositories":[{"autorefresh":true,"distro_target":"sle-11-ia64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Updates/sle-11-ia64/","enabled":false,"id":1257,"description":"SLE11-SDK-SP1-Updates for sle-11-ia64","name":"SLE11-SDK-SP1-Updates","installer_updates":false},{"description":"SLE11-SDK-SP1-Pool for sle-11-ia64","installer_updates":false,"name":"SLE11-SDK-SP1-Pool","distro_target":"sle-11-ia64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-ia64/","enabled":false,"id":1258},{"installer_updates":false,"name":"SLE11-SDK-SP1-Pool","description":"SLE11-SDK-SP1-Pool for sle-11-s390x","id":1259,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-s390x/","distro_target":"sle-11-s390x","autorefresh":true},{"description":"SLE11-SDK-SP1-Updates for sle-11-ppc64","installer_updates":false,"name":"SLE11-SDK-SP1-Updates","distro_target":"sle-11-ppc64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Updates/sle-11-ppc64/","enabled":false,"id":1260},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-ppc64/","distro_target":"sle-11-ppc64","autorefresh":true,"id":1261,"enabled":false,"description":"SLE11-SDK-SP1-Pool for sle-11-ppc64","installer_updates":false,"name":"SLE11-SDK-SP1-Pool"},{"installer_updates":false,"name":"SLE11-SDK-SP1-Updates","description":"SLE11-SDK-SP1-Updates for sle-11-i586","id":1262,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Updates/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true},{"description":"SLE11-SDK-SP1-Pool for sle-11-i586","name":"SLE11-SDK-SP1-Pool","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","id":1263,"enabled":false},{"enabled":false,"id":1264,"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-x86_64/","name":"SLE11-SDK-SP1-Pool","installer_updates":false,"description":"SLE11-SDK-SP1-Pool for sle-11-x86_64"},{"name":"SLE11-SDK-SP1-Updates","installer_updates":false,"description":"SLE11-SDK-SP1-Updates for sle-11-x86_64","id":1265,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Updates/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64"},{"installer_updates":false,"name":"SLE11-SDK-SP1-Updates","description":"SLE11-SDK-SP1-Updates for sle-11-s390x","enabled":false,"id":1266,"distro_target":"sle-11-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Updates/sle-11-s390x/"},{"distro_target":"sle-11-ia64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-ia64/","enabled":false,"id":1267,"description":"SLE11-SDK-SP2-Core for sle-11-ia64","installer_updates":false,"name":"SLE11-SDK-SP2-Core"},{"description":"SLE11-SDK-SP2-Core for sle-11-s390x","installer_updates":false,"name":"SLE11-SDK-SP2-Core","distro_target":"sle-11-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-s390x/","enabled":false,"id":1268},{"description":"SLE11-SDK-SP2-Updates for sle-11-s390x","name":"SLE11-SDK-SP2-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-s390x","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-s390x/","enabled":false,"id":1269},{"description":"SLE11-SDK-SP2-Updates for sle-11-ppc64","name":"SLE11-SDK-SP2-Updates","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-ppc64/","autorefresh":true,"distro_target":"sle-11-ppc64","id":1270,"enabled":false},{"description":"SLE11-SDK-SP2-Updates for sle-11-i586","name":"SLE11-SDK-SP2-Updates","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","id":1271,"enabled":false},{"distro_target":"sle-11-ia64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-ia64/","enabled":false,"id":1272,"description":"SLE11-SDK-SP2-Updates for sle-11-ia64","installer_updates":false,"name":"SLE11-SDK-SP2-Updates"},{"enabled":false,"id":1273,"distro_target":"sle-11-ppc64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-ppc64/","installer_updates":false,"name":"SLE11-SDK-SP2-Core","description":"SLE11-SDK-SP2-Core for sle-11-ppc64"},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","id":1274,"enabled":false,"description":"SLE11-SDK-SP2-Core for sle-11-i586","name":"SLE11-SDK-SP2-Core","installer_updates":false},{"description":"SLE11-SDK-SP2-Core for sle-11-x86_64","installer_updates":false,"name":"SLE11-SDK-SP2-Core","distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-x86_64/","enabled":false,"id":1275},{"enabled":false,"id":1276,"distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-x86_64/","installer_updates":false,"name":"SLE11-SDK-SP2-Updates","description":"SLE11-SDK-SP2-Updates for sle-11-x86_64"},{"installer_updates":false,"name":"SLE11-SDK-SP3-Pool","description":"SLE11-SDK-SP3-Pool for sle-11-i586","enabled":true,"id":1277,"distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Pool/sle-11-i586/"},{"name":"SLE11-SDK-SP3-Pool","installer_updates":false,"description":"SLE11-SDK-SP3-Pool for sle-11-ia64","id":1278,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Pool/sle-11-ia64/","autorefresh":true,"distro_target":"sle-11-ia64"},{"id":1279,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Updates/sle-11-ppc64/","distro_target":"sle-11-ppc64","autorefresh":true,"installer_updates":false,"name":"SLE11-SDK-SP3-Updates","description":"SLE11-SDK-SP3-Updates for sle-11-ppc64"},{"id":1280,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Updates/sle-11-ia64/","distro_target":"sle-11-ia64","autorefresh":true,"installer_updates":false,"name":"SLE11-SDK-SP3-Updates","description":"SLE11-SDK-SP3-Updates for sle-11-ia64"},{"distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Pool/sle-11-x86_64/","enabled":true,"id":1281,"description":"SLE11-SDK-SP3-Pool for sle-11-x86_64","installer_updates":false,"name":"SLE11-SDK-SP3-Pool"},{"description":"SLE11-SDK-SP3-Updates for sle-11-s390x","name":"SLE11-SDK-SP3-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-s390x","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Updates/sle-11-s390x/","enabled":true,"id":1282},{"description":"SLE11-SDK-SP3-Pool for sle-11-ppc64","name":"SLE11-SDK-SP3-Pool","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Pool/sle-11-ppc64/","autorefresh":true,"distro_target":"sle-11-ppc64","id":1283,"enabled":true},{"id":1284,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Updates/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64","name":"SLE11-SDK-SP3-Updates","installer_updates":false,"description":"SLE11-SDK-SP3-Updates for sle-11-x86_64"},{"description":"SLE11-SDK-SP3-Updates for sle-11-i586","name":"SLE11-SDK-SP3-Updates","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Updates/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","id":1285,"enabled":true},{"description":"SLE11-SDK-SP3-Pool for sle-11-s390x","installer_updates":false,"name":"SLE11-SDK-SP3-Pool","distro_target":"sle-11-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Pool/sle-11-s390x/","enabled":true,"id":1286}],"predecessor_ids":[],"product_type":"extension","cpe":null},{"free":true,"shortname":null,"description":null,"eula_url":"","arch":null,"predecessor_ids":[],"product_class":"SLE-SDK","online_predecessor_ids":[],"repositories":[{"description":"SLE11-SDK-SP3-Pool for sle-11-i586","installer_updates":false,"name":"SLE11-SDK-SP3-Pool","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Pool/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true,"id":1277,"enabled":true},{"name":"SLE11-SDK-SP3-Pool","installer_updates":false,"description":"SLE11-SDK-SP3-Pool for sle-11-ia64","enabled":true,"id":1278,"autorefresh":true,"distro_target":"sle-11-ia64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Pool/sle-11-ia64/"},{"name":"SLE11-SDK-SP3-Updates","installer_updates":false,"description":"SLE11-SDK-SP3-Updates for sle-11-ppc64","id":1279,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Updates/sle-11-ppc64/","autorefresh":true,"distro_target":"sle-11-ppc64"},{"name":"SLE11-SDK-SP3-Updates","installer_updates":false,"description":"SLE11-SDK-SP3-Updates for sle-11-ia64","id":1280,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Updates/sle-11-ia64/","autorefresh":true,"distro_target":"sle-11-ia64"},{"description":"SLE11-SDK-SP3-Pool for sle-11-x86_64","name":"SLE11-SDK-SP3-Pool","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Pool/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64","id":1281,"enabled":true},{"name":"SLE11-SDK-SP3-Updates","installer_updates":false,"description":"SLE11-SDK-SP3-Updates for sle-11-s390x","id":1282,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Updates/sle-11-s390x/","autorefresh":true,"distro_target":"sle-11-s390x"},{"description":"SLE11-SDK-SP3-Pool for sle-11-ppc64","installer_updates":false,"name":"SLE11-SDK-SP3-Pool","distro_target":"sle-11-ppc64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Pool/sle-11-ppc64/","enabled":true,"id":1283},{"enabled":true,"id":1284,"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Updates/sle-11-x86_64/","name":"SLE11-SDK-SP3-Updates","installer_updates":false,"description":"SLE11-SDK-SP3-Updates for sle-11-x86_64"},{"enabled":true,"id":1285,"distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Updates/sle-11-i586/","installer_updates":false,"name":"SLE11-SDK-SP3-Updates","description":"SLE11-SDK-SP3-Updates for sle-11-i586"},{"enabled":true,"id":1286,"autorefresh":true,"distro_target":"sle-11-s390x","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Pool/sle-11-s390x/","name":"SLE11-SDK-SP3-Pool","installer_updates":false,"description":"SLE11-SDK-SP3-Pool for sle-11-s390x"}],"product_type":"extension","cpe":null,"recommended":false,"version":"11.2","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Software Development Kit","former_identifier":"sle-sdk-SP3-migration","release_type":null,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Software Development Kit 11 SP2 (Migration)","friendly_version":"11 SP2","extensions":[],"release_stage":"released","id":1164,"identifier":"sle-sdk-SP3-migration"},{"version":"11.3","recommended":false,"release_type":null,"former_identifier":"sle-smt","migration_extra":false,"friendly_name":"SUSE Linux Enterprise Subscription Management Tool 11 SP3","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Subscription Management Tool","friendly_version":"11 SP3","release_stage":"released","id":1198,"identifier":"sle-smt","extensions":[],"free":true,"shortname":null,"description":null,"arch":null,"eula_url":"","repositories":[{"id":1405,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP3-Updates/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64","name":"SLE11-SMT-SP3-Updates","installer_updates":false,"description":"SLE11-SMT-SP3-Updates for sle-11-x86_64"},{"description":"SLE11-SMT-SP3-Updates for sle-11-i586","name":"SLE11-SMT-SP3-Updates","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP3-Updates/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","id":1406,"enabled":true},{"id":1407,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP3-Updates/sle-11-s390x/","autorefresh":true,"distro_target":"sle-11-s390x","name":"SLE11-SMT-SP3-Updates","installer_updates":false,"description":"SLE11-SMT-SP3-Updates for sle-11-s390x"},{"id":1408,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP3-Pool/sle-11-s390x/","autorefresh":true,"distro_target":"sle-11-s390x","name":"SLE11-SMT-SP3-Pool","installer_updates":false,"description":"SLE11-SMT-SP3-Pool for sle-11-s390x"},{"description":"SLE11-SMT-SP3-Pool for sle-11-x86_64","installer_updates":false,"name":"SLE11-SMT-SP3-Pool","distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP3-Pool/sle-11-x86_64/","enabled":true,"id":1409},{"enabled":true,"id":1410,"distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP3-Pool/sle-11-i586/","installer_updates":false,"name":"SLE11-SMT-SP3-Pool","description":"SLE11-SMT-SP3-Pool for sle-11-i586"}],"online_predecessor_ids":[],"product_class":"SLESMT","predecessor_ids":[],"product_type":"extension","cpe":null},{"free":true,"shortname":null,"description":null,"eula_url":"","arch":null,"predecessor_ids":[],"product_class":"SLESMT","online_predecessor_ids":[],"repositories":[{"distro_target":"sle-11-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP3-Pool/sle-11-s390x/","enabled":true,"id":1408,"description":"SLE11-SMT-SP3-Pool for sle-11-s390x","installer_updates":false,"name":"SLE11-SMT-SP3-Pool"},{"id":1409,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP3-Pool/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64","name":"SLE11-SMT-SP3-Pool","installer_updates":false,"description":"SLE11-SMT-SP3-Pool for sle-11-x86_64"},{"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP3-Pool/sle-11-i586/","enabled":true,"id":1410,"description":"SLE11-SMT-SP3-Pool for sle-11-i586","name":"SLE11-SMT-SP3-Pool","installer_updates":false}],"product_type":"extension","cpe":null,"recommended":false,"version":"11.2","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Subscription Management Tool","former_identifier":"sle-smt-SP3-migration","release_type":null,"friendly_name":"SUSE Linux Enterprise Subscription Management Tool 11 SP2 (Migration)","migration_extra":false,"friendly_version":"11 SP2","extensions":[],"identifier":"sle-smt-SP3-migration","release_stage":"released","id":1199},{"cpe":null,"product_type":"extension","predecessor_ids":[],"product_class":"WEBYAST","online_predecessor_ids":[],"repositories":[{"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-WebYaST-1.3-Pool/sle-11-x86_64/","enabled":true,"id":1185,"description":"SLE11-SP2-WebYaST-1.3-Pool for sle-11-x86_64","name":"SLE11-SP2-WebYaST-1.3-Pool","installer_updates":false},{"id":1188,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-WebYaST-1.3-Updates/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64","name":"SLE11-SP2-WebYaST-1.3-Updates","installer_updates":false,"description":"SLE11-SP2-WebYaST-1.3-Updates for sle-11-x86_64"},{"enabled":true,"id":1411,"autorefresh":true,"distro_target":"sle-11-s390x","url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-WebYaST-1.3-Pool/sle-11-s390x/","name":"SLE11-SP2-WebYaST-1.3-Pool","installer_updates":false,"description":"SLE11-SP2-WebYaST-1.3-Pool for sle-11-s390x"},{"enabled":true,"id":1412,"autorefresh":true,"distro_target":"sle-11-s390x","url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-WebYaST-1.3-Updates/sle-11-s390x/","name":"SLE11-SP2-WebYaST-1.3-Updates","installer_updates":false,"description":"SLE11-SP2-WebYaST-1.3-Updates for sle-11-s390x"},{"enabled":true,"id":1413,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-WebYaST-1.3-Updates/sle-11-i586/","name":"SLE11-SP2-WebYaST-1.3-Updates","installer_updates":false,"description":"SLE11-SP2-WebYaST-1.3-Updates for sle-11-i586"},{"autorefresh":true,"distro_target":"sle-11-ppc64","url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-WebYaST-1.3-Pool/sle-11-ppc64/","enabled":true,"id":1414,"description":"SLE11-SP2-WebYaST-1.3-Pool for sle-11-ppc64","name":"SLE11-SP2-WebYaST-1.3-Pool","installer_updates":false},{"enabled":true,"id":1415,"distro_target":"sle-11-ia64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-WebYaST-1.3-Updates/sle-11-ia64/","installer_updates":false,"name":"SLE11-SP2-WebYaST-1.3-Updates","description":"SLE11-SP2-WebYaST-1.3-Updates for sle-11-ia64"},{"distro_target":"sle-11-ia64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-WebYaST-1.3-Pool/sle-11-ia64/","enabled":true,"id":1416,"description":"SLE11-SP2-WebYaST-1.3-Pool for sle-11-ia64","installer_updates":false,"name":"SLE11-SP2-WebYaST-1.3-Pool"},{"name":"SLE11-SP2-WebYaST-1.3-Pool","installer_updates":false,"description":"SLE11-SP2-WebYaST-1.3-Pool for sle-11-i586","enabled":true,"id":1417,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-WebYaST-1.3-Pool/sle-11-i586/"},{"id":1418,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-WebYaST-1.3-Updates/sle-11-ppc64/","autorefresh":true,"distro_target":"sle-11-ppc64","name":"SLE11-SP2-WebYaST-1.3-Updates","installer_updates":false,"description":"SLE11-SP2-WebYaST-1.3-Updates for sle-11-ppc64"}],"eula_url":"","arch":null,"shortname":null,"description":null,"free":true,"extensions":[],"release_stage":"released","id":1206,"identifier":"sle-11-WebYaST","friendly_version":"1.3","name":"SUSE WebYaST","offline_predecessor_ids":[],"friendly_name":"SUSE WebYaST 1.3","migration_extra":false,"former_identifier":"sle-11-WebYaST","release_type":null,"recommended":false,"version":"1.3"},{"release_stage":"released","identifier":"sle-sdk-SP4-migration","id":1318,"extensions":[],"friendly_version":"11 SP3","friendly_name":"SUSE Linux Enterprise Software Development Kit 11 SP3 (Migration)","migration_extra":false,"former_identifier":"sle-sdk-SP4-migration","release_type":null,"name":"SUSE Linux Enterprise Software Development Kit","offline_predecessor_ids":[],"version":"11.3","recommended":false,"cpe":null,"product_type":"extension","product_class":"SLE-SDK","online_predecessor_ids":[],"repositories":[{"id":1257,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Updates/sle-11-ia64/","autorefresh":true,"distro_target":"sle-11-ia64","name":"SLE11-SDK-SP1-Updates","installer_updates":false,"description":"SLE11-SDK-SP1-Updates for sle-11-ia64"},{"name":"SLE11-SDK-SP1-Pool","installer_updates":false,"description":"SLE11-SDK-SP1-Pool for sle-11-ia64","enabled":false,"id":1258,"autorefresh":true,"distro_target":"sle-11-ia64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-ia64/"},{"name":"SLE11-SDK-SP1-Pool","installer_updates":false,"description":"SLE11-SDK-SP1-Pool for sle-11-s390x","id":1259,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-s390x/","autorefresh":true,"distro_target":"sle-11-s390x"},{"enabled":false,"id":1260,"distro_target":"sle-11-ppc64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Updates/sle-11-ppc64/","installer_updates":false,"name":"SLE11-SDK-SP1-Updates","description":"SLE11-SDK-SP1-Updates for sle-11-ppc64"},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-ppc64/","autorefresh":true,"distro_target":"sle-11-ppc64","id":1261,"enabled":false,"description":"SLE11-SDK-SP1-Pool for sle-11-ppc64","name":"SLE11-SDK-SP1-Pool","installer_updates":false},{"description":"SLE11-SDK-SP1-Updates for sle-11-i586","installer_updates":false,"name":"SLE11-SDK-SP1-Updates","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Updates/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true,"id":1262,"enabled":false},{"description":"SLE11-SDK-SP1-Pool for sle-11-i586","installer_updates":false,"name":"SLE11-SDK-SP1-Pool","distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-i586/","enabled":false,"id":1263},{"installer_updates":false,"name":"SLE11-SDK-SP1-Pool","description":"SLE11-SDK-SP1-Pool for sle-11-x86_64","enabled":false,"id":1264,"distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-x86_64/"},{"distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Updates/sle-11-x86_64/","enabled":false,"id":1265,"description":"SLE11-SDK-SP1-Updates for sle-11-x86_64","installer_updates":false,"name":"SLE11-SDK-SP1-Updates"},{"installer_updates":false,"name":"SLE11-SDK-SP1-Updates","description":"SLE11-SDK-SP1-Updates for sle-11-s390x","enabled":false,"id":1266,"distro_target":"sle-11-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Updates/sle-11-s390x/"},{"description":"SLE11-SDK-SP2-Core for sle-11-ia64","name":"SLE11-SDK-SP2-Core","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-ia64/","autorefresh":true,"distro_target":"sle-11-ia64","id":1267,"enabled":false},{"description":"SLE11-SDK-SP2-Core for sle-11-s390x","installer_updates":false,"name":"SLE11-SDK-SP2-Core","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-s390x/","distro_target":"sle-11-s390x","autorefresh":true,"id":1268,"enabled":false},{"name":"SLE11-SDK-SP2-Updates","installer_updates":false,"description":"SLE11-SDK-SP2-Updates for sle-11-s390x","enabled":false,"id":1269,"autorefresh":true,"distro_target":"sle-11-s390x","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-s390x/"},{"autorefresh":true,"distro_target":"sle-11-ppc64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-ppc64/","enabled":false,"id":1270,"description":"SLE11-SDK-SP2-Updates for sle-11-ppc64","name":"SLE11-SDK-SP2-Updates","installer_updates":false},{"description":"SLE11-SDK-SP2-Updates for sle-11-i586","name":"SLE11-SDK-SP2-Updates","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","id":1271,"enabled":false},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-ia64/","distro_target":"sle-11-ia64","autorefresh":true,"id":1272,"enabled":false,"description":"SLE11-SDK-SP2-Updates for sle-11-ia64","installer_updates":false,"name":"SLE11-SDK-SP2-Updates"},{"name":"SLE11-SDK-SP2-Core","installer_updates":false,"description":"SLE11-SDK-SP2-Core for sle-11-ppc64","enabled":false,"id":1273,"autorefresh":true,"distro_target":"sle-11-ppc64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-ppc64/"},{"name":"SLE11-SDK-SP2-Core","installer_updates":false,"description":"SLE11-SDK-SP2-Core for sle-11-i586","enabled":false,"id":1274,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-i586/"},{"id":1275,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true,"installer_updates":false,"name":"SLE11-SDK-SP2-Core","description":"SLE11-SDK-SP2-Core for sle-11-x86_64"},{"name":"SLE11-SDK-SP2-Updates","installer_updates":false,"description":"SLE11-SDK-SP2-Updates for sle-11-x86_64","id":1276,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64"},{"id":1277,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Pool/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true,"installer_updates":false,"name":"SLE11-SDK-SP3-Pool","description":"SLE11-SDK-SP3-Pool for sle-11-i586"},{"description":"SLE11-SDK-SP3-Pool for sle-11-ia64","installer_updates":false,"name":"SLE11-SDK-SP3-Pool","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Pool/sle-11-ia64/","distro_target":"sle-11-ia64","autorefresh":true,"id":1278,"enabled":false},{"description":"SLE11-SDK-SP3-Updates for sle-11-ppc64","name":"SLE11-SDK-SP3-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-ppc64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Updates/sle-11-ppc64/","enabled":false,"id":1279},{"name":"SLE11-SDK-SP3-Updates","installer_updates":false,"description":"SLE11-SDK-SP3-Updates for sle-11-ia64","enabled":false,"id":1280,"autorefresh":true,"distro_target":"sle-11-ia64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Updates/sle-11-ia64/"},{"installer_updates":false,"name":"SLE11-SDK-SP3-Pool","description":"SLE11-SDK-SP3-Pool for sle-11-x86_64","enabled":false,"id":1281,"distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Pool/sle-11-x86_64/"},{"enabled":false,"id":1282,"distro_target":"sle-11-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Updates/sle-11-s390x/","installer_updates":false,"name":"SLE11-SDK-SP3-Updates","description":"SLE11-SDK-SP3-Updates for sle-11-s390x"},{"installer_updates":false,"name":"SLE11-SDK-SP3-Pool","description":"SLE11-SDK-SP3-Pool for sle-11-ppc64","enabled":false,"id":1283,"distro_target":"sle-11-ppc64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Pool/sle-11-ppc64/"},{"description":"SLE11-SDK-SP3-Updates for sle-11-x86_64","installer_updates":false,"name":"SLE11-SDK-SP3-Updates","distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Updates/sle-11-x86_64/","enabled":false,"id":1284},{"description":"SLE11-SDK-SP3-Updates for sle-11-i586","installer_updates":false,"name":"SLE11-SDK-SP3-Updates","distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Updates/sle-11-i586/","enabled":false,"id":1285},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Pool/sle-11-s390x/","distro_target":"sle-11-s390x","autorefresh":true,"id":1286,"enabled":false,"description":"SLE11-SDK-SP3-Pool for sle-11-s390x","installer_updates":false,"name":"SLE11-SDK-SP3-Pool"},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP4-Pool/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","id":1817,"enabled":true,"description":"SLE11-SDK-SP4-Pool for sle-11-i586","name":"SLE11-SDK-SP4-Pool","installer_updates":false},{"autorefresh":true,"distro_target":"sle-11-ia64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP4-Pool/sle-11-ia64/","enabled":true,"id":1818,"description":"SLE11-SDK-SP4-Pool for sle-11-ia64","name":"SLE11-SDK-SP4-Pool","installer_updates":false},{"enabled":true,"id":1819,"autorefresh":true,"distro_target":"sle-11-ppc64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP4-Pool/sle-11-ppc64/","name":"SLE11-SDK-SP4-Pool","installer_updates":false,"description":"SLE11-SDK-SP4-Pool for sle-11-ppc64"},{"id":1820,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP4-Pool/sle-11-s390x/","autorefresh":true,"distro_target":"sle-11-s390x","name":"SLE11-SDK-SP4-Pool","installer_updates":false,"description":"SLE11-SDK-SP4-Pool for sle-11-s390x"},{"installer_updates":false,"name":"SLE11-SDK-SP4-Pool","description":"SLE11-SDK-SP4-Pool for sle-11-x86_64","id":1821,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP4-Pool/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true},{"name":"SLE11-SDK-SP4-Updates","installer_updates":false,"description":"SLE11-SDK-SP4-Updates for sle-11-i586","enabled":true,"id":1822,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP4-Updates/sle-11-i586/"},{"name":"SLE11-SDK-SP4-Updates","installer_updates":false,"description":"SLE11-SDK-SP4-Updates for sle-11-ia64","id":1823,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP4-Updates/sle-11-ia64/","autorefresh":true,"distro_target":"sle-11-ia64"},{"autorefresh":true,"distro_target":"sle-11-ppc64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP4-Updates/sle-11-ppc64/","enabled":true,"id":1824,"description":"SLE11-SDK-SP4-Updates for sle-11-ppc64","name":"SLE11-SDK-SP4-Updates","installer_updates":false},{"id":1825,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP4-Updates/sle-11-s390x/","distro_target":"sle-11-s390x","autorefresh":true,"installer_updates":false,"name":"SLE11-SDK-SP4-Updates","description":"SLE11-SDK-SP4-Updates for sle-11-s390x"},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP4-Updates/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64","id":1826,"enabled":true,"description":"SLE11-SDK-SP4-Updates for sle-11-x86_64","name":"SLE11-SDK-SP4-Updates","installer_updates":false}],"predecessor_ids":[],"arch":null,"eula_url":"","shortname":null,"description":null,"free":true}],"free":false,"shortname":null,"description":null,"arch":"s390","eula_url":"","online_predecessor_ids":[],"repositories":[{"description":"SLES11-SP1-Pool for sle-11-s390x","name":"SLES11-SP1-Pool","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-Pool/sle-11-s390x/","autorefresh":true,"distro_target":"sle-11-s390x","id":687,"enabled":false},{"description":"SLE11-SP1-Debuginfo-Updates for sle-11-s390x","name":"SLE11-SP1-Debuginfo-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-s390x","url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Updates/sle-11-s390x/","enabled":false,"id":688},{"installer_updates":false,"name":"SLES11-Extras","description":"SLES11-Extras for sle-11-s390x","id":689,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLES11-Extras/sle-11-s390x/","distro_target":"sle-11-s390x","autorefresh":true},{"installer_updates":false,"name":"SLES11-SP1-Updates","description":"SLES11-SP1-Updates for sle-11-s390x","id":691,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-Updates/sle-11-s390x/","distro_target":"sle-11-s390x","autorefresh":true},{"installer_updates":false,"name":"SLE11-SP1-Debuginfo-Pool","description":"SLE11-SP1-Debuginfo-Pool for sle-11-s390x","enabled":false,"id":692,"distro_target":"sle-11-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Pool/sle-11-s390x/"},{"description":"SLES11-SP2-Updates for sle-11-s390x","name":"SLES11-SP2-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-s390x","url":"https://updates.suse.com/repo/$RCE/SLES11-SP2-Updates/sle-11-s390x/","enabled":false,"id":724},{"name":"SLE11-SP2-Debuginfo-Updates","installer_updates":false,"description":"SLE11-SP2-Debuginfo-Updates for sle-11-s390x","enabled":false,"id":725,"autorefresh":true,"distro_target":"sle-11-s390x","url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-Debuginfo-Updates/sle-11-s390x/"},{"description":"SLES11-SP2-Core for sle-11-s390x","installer_updates":false,"name":"SLES11-SP2-Core","distro_target":"sle-11-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP2-Core/sle-11-s390x/","enabled":false,"id":726},{"enabled":false,"id":728,"distro_target":"sle-11-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-Debuginfo-Core/sle-11-s390x/","installer_updates":false,"name":"SLE11-SP2-Debuginfo-Core","description":"SLE11-SP2-Debuginfo-Core for sle-11-s390x"},{"name":"SLES11-SP3-Pool","installer_updates":false,"description":"SLES11-SP3-Pool for sle-11-s390x","id":729,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP3-Pool/sle-11-s390x/","autorefresh":true,"distro_target":"sle-11-s390x"},{"name":"SLES11-SP3-Extension-Store","installer_updates":false,"description":"SLES11-SP3-Extension-Store for sle-11-s390x","id":730,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP3-Extension-Store/sle-11-s390x/","autorefresh":true,"distro_target":"sle-11-s390x"},{"installer_updates":false,"name":"SLES11-SP3-Updates","description":"SLES11-SP3-Updates for sle-11-s390x","enabled":true,"id":731,"distro_target":"sle-11-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP3-Updates/sle-11-s390x/"},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SP3-Debuginfo-Pool/sle-11-s390x/","distro_target":"sle-11-s390x","autorefresh":true,"id":732,"enabled":false,"description":"SLE11-SP3-Debuginfo-Pool for sle-11-s390x","installer_updates":false,"name":"SLE11-SP3-Debuginfo-Pool"},{"description":"SLE11-SP3-Debuginfo-Updates for sle-11-s390x","name":"SLE11-SP3-Debuginfo-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-s390x","url":"https://updates.suse.com/repo/$RCE/SLE11-SP3-Debuginfo-Updates/sle-11-s390x/","enabled":false,"id":733},{"enabled":false,"id":734,"autorefresh":true,"distro_target":"sle-11-s390x","url":"https://updates.suse.com/repo/$RCE/SLES11-SP2-Extension-Store/sle-11-s390x/","name":"SLES11-SP2-Extension-Store","installer_updates":false,"description":"SLES11-SP2-Extension-Store for sle-11-s390x"}],"product_class":"SLES-Z","predecessor_ids":[],"product_type":"base","cpe":"cpe:/o:suse:suse_sles:11:sp3"},{"product_type":"base","cpe":null,"predecessor_ids":[],"online_predecessor_ids":[],"product_class":"7261","repositories":[{"description":"SLES11-Extras for sle-11-i586","installer_updates":false,"name":"SLES11-Extras","distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-Extras/sle-11-i586/","enabled":false,"id":679},{"distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Pool/sle-11-i586/","enabled":false,"id":680,"description":"SLE11-SP1-Debuginfo-Pool for sle-11-i586","installer_updates":false,"name":"SLE11-SP1-Debuginfo-Pool"},{"id":682,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Updates/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true,"installer_updates":false,"name":"SLE11-SP1-Debuginfo-Updates","description":"SLE11-SP1-Debuginfo-Updates for sle-11-i586"},{"installer_updates":false,"name":"SLES11-SP1-Updates","description":"SLES11-SP1-Updates for sle-11-i586","enabled":false,"id":684,"distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-Updates/sle-11-i586/"},{"name":"SLES11-SP1-Pool","installer_updates":false,"description":"SLES11-SP1-Pool for sle-11-i586","id":686,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-Pool/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586"},{"name":"SLE11-SP2-Debuginfo-Core","installer_updates":false,"description":"SLE11-SP2-Debuginfo-Core for sle-11-i586","id":717,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-Debuginfo-Core/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586"},{"id":719,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-Debuginfo-Updates/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","name":"SLE11-SP2-Debuginfo-Updates","installer_updates":false,"description":"SLE11-SP2-Debuginfo-Updates for sle-11-i586"},{"url":"https://updates.suse.com/repo/$RCE/SLES11-SP2-Updates/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true,"id":720,"enabled":false,"description":"SLES11-SP2-Updates for sle-11-i586","installer_updates":false,"name":"SLES11-SP2-Updates"},{"enabled":false,"id":722,"distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP2-Core/sle-11-i586/","installer_updates":false,"name":"SLES11-SP2-Core","description":"SLES11-SP2-Core for sle-11-i586"},{"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLES11-SP3-Extension-Store/sle-11-i586/","enabled":false,"id":758,"description":"SLES11-SP3-Extension-Store for sle-11-i586","name":"SLES11-SP3-Extension-Store","installer_updates":false},{"description":"SLE11-SP3-Debuginfo-Updates for sle-11-i586","name":"SLE11-SP3-Debuginfo-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-SP3-Debuginfo-Updates/sle-11-i586/","enabled":false,"id":759},{"enabled":true,"id":760,"distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP3-Pool/sle-11-i586/","installer_updates":false,"name":"SLES11-SP3-Pool","description":"SLES11-SP3-Pool for sle-11-i586"},{"description":"SLES11-SP2-Extension-Store for sle-11-i586","name":"SLES11-SP2-Extension-Store","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLES11-SP2-Extension-Store/sle-11-i586/","enabled":true,"id":761},{"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLES11-SP3-Updates/sle-11-i586/","enabled":true,"id":762,"description":"SLES11-SP3-Updates for sle-11-i586","name":"SLES11-SP3-Updates","installer_updates":false},{"description":"SLE11-SP3-Debuginfo-Pool for sle-11-i586","name":"SLE11-SP3-Debuginfo-Pool","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-SP3-Debuginfo-Pool/sle-11-i586/","enabled":false,"id":763}],"eula_url":"","arch":"i686","free":false,"description":null,"shortname":null,"extensions":[{"identifier":"sle-hae-SP3-migration","release_stage":"released","id":964,"extensions":[],"friendly_version":"11 SP2","release_type":null,"former_identifier":"sle-hae-SP3-migration","friendly_name":"SUSE Linux Enterprise High Availability Extension 11 SP2 i686 (Migration)","migration_extra":false,"offline_predecessor_ids":[],"name":"SUSE Linux Enterprise High Availability Extension","version":"11.2","recommended":false,"product_type":"extension","cpe":null,"product_class":"SLE-HAE-X86","online_predecessor_ids":[],"repositories":[{"id":951,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP3-Pool/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true,"installer_updates":false,"name":"SLE11-HAE-SP3-Pool","description":"SLE11-HAE-SP3-Pool for sle-11-i586"},{"description":"SLE11-HAE-SP3-Updates for sle-11-i586","name":"SLE11-HAE-SP3-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP3-Updates/sle-11-i586/","enabled":true,"id":952}],"predecessor_ids":[],"arch":"i686","eula_url":"","free":false,"description":null,"shortname":null},{"version":"11.2","recommended":false,"former_identifier":"sle-hae","release_type":null,"friendly_name":"SUSE Linux Enterprise High Availability Extension 11 SP2 i686","migration_extra":false,"offline_predecessor_ids":[],"name":"SUSE Linux Enterprise High Availability Extension","friendly_version":"11 SP2","identifier":"sle-hae","release_stage":"released","id":970,"extensions":[],"free":false,"shortname":null,"description":null,"arch":"i686","eula_url":"","online_predecessor_ids":[],"repositories":[{"enabled":true,"id":949,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP2-Pool/sle-11-i586/","name":"SLE11-HAE-SP2-Pool","installer_updates":false,"description":"SLE11-HAE-SP2-Pool for sle-11-i586"},{"enabled":true,"id":950,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP2-Updates/sle-11-i586/","name":"SLE11-HAE-SP2-Updates","installer_updates":false,"description":"SLE11-HAE-SP2-Updates for sle-11-i586"}],"product_class":"SLE-HAE-X86","predecessor_ids":[],"product_type":"extension","cpe":null},{"recommended":false,"version":"11.2","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Subscription Management Tool","release_type":null,"former_identifier":"sle-smt","friendly_name":"SUSE Linux Enterprise Subscription Management Tool 11 SP2","migration_extra":false,"friendly_version":"11 SP2","extensions":[],"id":1193,"release_stage":"released","identifier":"sle-smt","free":true,"shortname":null,"description":null,"eula_url":"","arch":null,"predecessor_ids":[],"online_predecessor_ids":[],"product_class":"SLESMT","repositories":[{"distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP2-Pool/sle-11-x86_64/","enabled":true,"id":1392,"description":"SLE11-SMT-SP2-Pool for sle-11-x86_64","installer_updates":false,"name":"SLE11-SMT-SP2-Pool"},{"installer_updates":false,"name":"SLE11-SMT-SP2-Updates","description":"SLE11-SMT-SP2-Updates for sle-11-s390x","enabled":true,"id":1393,"distro_target":"sle-11-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP2-Updates/sle-11-s390x/"},{"description":"SLE11-SMT-SP2-Pool for sle-11-i586","installer_updates":false,"name":"SLE11-SMT-SP2-Pool","distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP2-Pool/sle-11-i586/","enabled":true,"id":1394},{"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP2-Updates/sle-11-i586/","enabled":true,"id":1395,"description":"SLE11-SMT-SP2-Updates for sle-11-i586","name":"SLE11-SMT-SP2-Updates","installer_updates":false},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP2-Pool/sle-11-s390x/","distro_target":"sle-11-s390x","autorefresh":true,"id":1396,"enabled":true,"description":"SLE11-SMT-SP2-Pool for sle-11-s390x","installer_updates":false,"name":"SLE11-SMT-SP2-Pool"},{"description":"SLE11-SMT-SP2-Updates for sle-11-x86_64","installer_updates":false,"name":"SLE11-SMT-SP2-Updates","url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP2-Updates/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true,"id":1397,"enabled":true}],"product_type":"extension","cpe":null},{"release_stage":"released","identifier":"sle-smt-SP3-migration","id":1199,"extensions":[],"friendly_version":"11 SP2","friendly_name":"SUSE Linux Enterprise Subscription Management Tool 11 SP2 (Migration)","migration_extra":false,"release_type":null,"former_identifier":"sle-smt-SP3-migration","name":"SUSE Linux Enterprise Subscription Management Tool","offline_predecessor_ids":[],"version":"11.2","recommended":false,"cpe":null,"product_type":"extension","repositories":[{"enabled":true,"id":1408,"autorefresh":true,"distro_target":"sle-11-s390x","url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP3-Pool/sle-11-s390x/","name":"SLE11-SMT-SP3-Pool","installer_updates":false,"description":"SLE11-SMT-SP3-Pool for sle-11-s390x"},{"id":1409,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP3-Pool/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true,"installer_updates":false,"name":"SLE11-SMT-SP3-Pool","description":"SLE11-SMT-SP3-Pool for sle-11-x86_64"},{"installer_updates":false,"name":"SLE11-SMT-SP3-Pool","description":"SLE11-SMT-SP3-Pool for sle-11-i586","id":1410,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP3-Pool/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true}],"online_predecessor_ids":[],"product_class":"SLESMT","predecessor_ids":[],"arch":null,"eula_url":"","description":null,"shortname":null,"free":true}],"identifier":"SUSE_SLES-SP3-migration","release_stage":"released","id":796,"friendly_version":"11 SP2","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Server","release_type":null,"former_identifier":"SUSE_SLES-SP3-migration","migration_extra":false,"friendly_name":"SUSE Linux Enterprise Server 11 SP2 i686 (Migration)","recommended":false,"version":"11.2"},{"extensions":[{"cpe":null,"product_type":"extension","predecessor_ids":[],"online_predecessor_ids":[],"product_class":"SLE-HAE-Z","repositories":[{"id":1098,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP2-Pool/sle-11-s390x/","autorefresh":true,"distro_target":"sle-11-s390x","name":"SLE11-HAE-SP2-Pool","installer_updates":false,"description":"SLE11-HAE-SP2-Pool for sle-11-s390x"},{"id":1099,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP2-Updates/sle-11-s390x/","autorefresh":true,"distro_target":"sle-11-s390x","name":"SLE11-HAE-SP2-Updates","installer_updates":false,"description":"SLE11-HAE-SP2-Updates for sle-11-s390x"}],"eula_url":"","arch":"s390","shortname":null,"description":null,"free":false,"extensions":[{"product_type":"extension","cpe":null,"predecessor_ids":[],"product_class":"SLE-HAE-GEO","online_predecessor_ids":[],"repositories":[{"description":"SLE11-HAE-GEO-SP2-Updates for sle-11-s390x","installer_updates":false,"name":"SLE11-HAE-GEO-SP2-Updates","distro_target":"sle-11-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-GEO-SP2-Updates/sle-11-s390x/","enabled":true,"id":1118}],"eula_url":"","arch":"s390","free":false,"description":null,"shortname":null,"extensions":[],"release_stage":"released","id":1103,"identifier":"sle-haegeo","friendly_version":"11 SP2","offline_predecessor_ids":[],"name":"Geo Clustering for SUSE Linux Enterprise High Availability Extension","former_identifier":"sle-haegeo","release_type":null,"migration_extra":false,"friendly_name":"Geo Clustering for SUSE Linux Enterprise High Availability Extension 11 SP2 s390","recommended":false,"version":"11.2"}],"id":1085,"release_stage":"released","identifier":"sle-hae","friendly_version":"11 SP2","name":"SUSE Linux Enterprise High Availability Extension","offline_predecessor_ids":[],"friendly_name":"SUSE Linux Enterprise High Availability Extension 11 SP2 s390","migration_extra":false,"release_type":null,"former_identifier":"sle-hae","recommended":false,"version":"11.2"},{"extensions":[],"id":1193,"release_stage":"released","identifier":"sle-smt","friendly_version":"11 SP2","name":"SUSE Linux Enterprise Subscription Management Tool","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Subscription Management Tool 11 SP2","former_identifier":"sle-smt","release_type":null,"recommended":false,"version":"11.2","cpe":null,"product_type":"extension","predecessor_ids":[],"repositories":[{"description":"SLE11-SMT-SP2-Pool for sle-11-x86_64","installer_updates":false,"name":"SLE11-SMT-SP2-Pool","url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP2-Pool/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true,"id":1392,"enabled":true},{"distro_target":"sle-11-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP2-Updates/sle-11-s390x/","enabled":true,"id":1393,"description":"SLE11-SMT-SP2-Updates for sle-11-s390x","installer_updates":false,"name":"SLE11-SMT-SP2-Updates"},{"distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP2-Pool/sle-11-i586/","enabled":true,"id":1394,"description":"SLE11-SMT-SP2-Pool for sle-11-i586","installer_updates":false,"name":"SLE11-SMT-SP2-Pool"},{"id":1395,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP2-Updates/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","name":"SLE11-SMT-SP2-Updates","installer_updates":false,"description":"SLE11-SMT-SP2-Updates for sle-11-i586"},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP2-Pool/sle-11-s390x/","autorefresh":true,"distro_target":"sle-11-s390x","id":1396,"enabled":true,"description":"SLE11-SMT-SP2-Pool for sle-11-s390x","name":"SLE11-SMT-SP2-Pool","installer_updates":false},{"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP2-Updates/sle-11-x86_64/","enabled":true,"id":1397,"description":"SLE11-SMT-SP2-Updates for sle-11-x86_64","name":"SLE11-SMT-SP2-Updates","installer_updates":false}],"online_predecessor_ids":[],"product_class":"SLESMT","eula_url":"","arch":null,"description":null,"shortname":null,"free":true},{"version":"11.2","recommended":false,"friendly_name":"SUSE Linux Enterprise Subscription Management Tool 11 SP2 (Migration)","migration_extra":false,"release_type":null,"former_identifier":"sle-smt-SP3-migration","name":"SUSE Linux Enterprise Subscription Management Tool","offline_predecessor_ids":[],"friendly_version":"11 SP2","identifier":"sle-smt-SP3-migration","release_stage":"released","id":1199,"extensions":[],"shortname":null,"description":null,"free":true,"arch":null,"eula_url":"","repositories":[{"id":1408,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP3-Pool/sle-11-s390x/","autorefresh":true,"distro_target":"sle-11-s390x","name":"SLE11-SMT-SP3-Pool","installer_updates":false,"description":"SLE11-SMT-SP3-Pool for sle-11-s390x"},{"enabled":true,"id":1409,"distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP3-Pool/sle-11-x86_64/","installer_updates":false,"name":"SLE11-SMT-SP3-Pool","description":"SLE11-SMT-SP3-Pool for sle-11-x86_64"},{"description":"SLE11-SMT-SP3-Pool for sle-11-i586","name":"SLE11-SMT-SP3-Pool","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP3-Pool/sle-11-i586/","enabled":true,"id":1410}],"online_predecessor_ids":[],"product_class":"SLESMT","predecessor_ids":[],"cpe":null,"product_type":"extension"}],"identifier":"SUSE_SLES-SP3-migration","release_stage":"released","id":797,"friendly_version":"11 SP2","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Server","release_type":null,"former_identifier":"SUSE_SLES-SP3-migration","migration_extra":false,"friendly_name":"SUSE Linux Enterprise Server 11 SP2 s390 (Migration)","recommended":false,"version":"11.2","product_type":"base","cpe":null,"predecessor_ids":[],"repositories":[{"description":"SLES11-SP1-Pool for sle-11-s390x","installer_updates":false,"name":"SLES11-SP1-Pool","distro_target":"sle-11-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-Pool/sle-11-s390x/","enabled":false,"id":687},{"description":"SLE11-SP1-Debuginfo-Updates for sle-11-s390x","installer_updates":false,"name":"SLE11-SP1-Debuginfo-Updates","url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Updates/sle-11-s390x/","distro_target":"sle-11-s390x","autorefresh":true,"id":688,"enabled":false},{"id":689,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLES11-Extras/sle-11-s390x/","autorefresh":true,"distro_target":"sle-11-s390x","name":"SLES11-Extras","installer_updates":false,"description":"SLES11-Extras for sle-11-s390x"},{"description":"SLES11-SP1-Updates for sle-11-s390x","installer_updates":false,"name":"SLES11-SP1-Updates","url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-Updates/sle-11-s390x/","distro_target":"sle-11-s390x","autorefresh":true,"id":691,"enabled":false},{"id":692,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Pool/sle-11-s390x/","distro_target":"sle-11-s390x","autorefresh":true,"installer_updates":false,"name":"SLE11-SP1-Debuginfo-Pool","description":"SLE11-SP1-Debuginfo-Pool for sle-11-s390x"},{"installer_updates":false,"name":"SLES11-SP2-Updates","description":"SLES11-SP2-Updates for sle-11-s390x","enabled":false,"id":724,"distro_target":"sle-11-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP2-Updates/sle-11-s390x/"},{"description":"SLE11-SP2-Debuginfo-Updates for sle-11-s390x","installer_updates":false,"name":"SLE11-SP2-Debuginfo-Updates","url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-Debuginfo-Updates/sle-11-s390x/","distro_target":"sle-11-s390x","autorefresh":true,"id":725,"enabled":false},{"description":"SLES11-SP2-Core for sle-11-s390x","name":"SLES11-SP2-Core","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP2-Core/sle-11-s390x/","autorefresh":true,"distro_target":"sle-11-s390x","id":726,"enabled":false},{"description":"SLE11-SP2-Debuginfo-Core for sle-11-s390x","installer_updates":false,"name":"SLE11-SP2-Debuginfo-Core","distro_target":"sle-11-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-Debuginfo-Core/sle-11-s390x/","enabled":false,"id":728},{"autorefresh":true,"distro_target":"sle-11-s390x","url":"https://updates.suse.com/repo/$RCE/SLES11-SP3-Pool/sle-11-s390x/","enabled":true,"id":729,"description":"SLES11-SP3-Pool for sle-11-s390x","name":"SLES11-SP3-Pool","installer_updates":false},{"description":"SLES11-SP3-Extension-Store for sle-11-s390x","name":"SLES11-SP3-Extension-Store","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-s390x","url":"https://updates.suse.com/repo/$RCE/SLES11-SP3-Extension-Store/sle-11-s390x/","enabled":false,"id":730},{"url":"https://updates.suse.com/repo/$RCE/SLES11-SP3-Updates/sle-11-s390x/","autorefresh":true,"distro_target":"sle-11-s390x","id":731,"enabled":true,"description":"SLES11-SP3-Updates for sle-11-s390x","name":"SLES11-SP3-Updates","installer_updates":false},{"id":732,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP3-Debuginfo-Pool/sle-11-s390x/","distro_target":"sle-11-s390x","autorefresh":true,"installer_updates":false,"name":"SLE11-SP3-Debuginfo-Pool","description":"SLE11-SP3-Debuginfo-Pool for sle-11-s390x"},{"installer_updates":false,"name":"SLE11-SP3-Debuginfo-Updates","description":"SLE11-SP3-Debuginfo-Updates for sle-11-s390x","enabled":false,"id":733,"distro_target":"sle-11-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP3-Debuginfo-Updates/sle-11-s390x/"},{"installer_updates":false,"name":"SLES11-SP2-Extension-Store","description":"SLES11-SP2-Extension-Store for sle-11-s390x","id":734,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP2-Extension-Store/sle-11-s390x/","distro_target":"sle-11-s390x","autorefresh":true}],"online_predecessor_ids":[],"product_class":"SLES-Z","eula_url":"","arch":"s390","free":false,"shortname":null,"description":null},{"version":"10","recommended":false,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Server 10 s390","former_identifier":"SUSE-Linux-Enterprise-Server-s390x","release_type":null,"name":"SUSE Linux Enterprise Server","offline_predecessor_ids":[],"friendly_version":"10","release_stage":"released","identifier":"SUSE-Linux-Enterprise-Server-s390x","id":798,"extensions":[{"product_type":"extension","cpe":null,"predecessor_ids":[],"online_predecessor_ids":[],"repositories":[{"enabled":true,"id":1294,"autorefresh":true,"distro_target":"sles-10-s390x","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sles-10-s390x/","name":"SLE10-SDK-SP1-Online","installer_updates":false,"description":"SLE10-SDK-SP1-Online for sles-10-s390x"},{"enabled":true,"id":1295,"distro_target":"sles-10-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sles-10-x86_64/","installer_updates":false,"name":"SLE10-SDK-SP1-Online","description":"SLE10-SDK-SP1-Online for sles-10-x86_64"},{"description":"SLE10-SDK-SP1-Online for sled-10-i586","installer_updates":false,"name":"SLE10-SDK-SP1-Online","distro_target":"sled-10-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sled-10-i586/","enabled":true,"id":1296},{"id":1297,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sles-10-ppc/","distro_target":"sles-10-ppc","autorefresh":true,"installer_updates":false,"name":"SLE10-SDK-SP1-Online","description":"SLE10-SDK-SP1-Online for sles-10-ppc"},{"enabled":true,"id":1301,"distro_target":"sles-10-ia64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sles-10-ia64/","installer_updates":false,"name":"SLE10-SDK-SP1-Online","description":"SLE10-SDK-SP1-Online for sles-10-ia64"},{"installer_updates":false,"name":"SLE10-SDK-SP1-Online","description":"SLE10-SDK-SP1-Online for sles-10-i586","id":1303,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sles-10-i586/","distro_target":"sles-10-i586","autorefresh":true},{"id":1307,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sled-10-x86_64/","distro_target":"sled-10-x86_64","autorefresh":true,"installer_updates":false,"name":"SLE10-SDK-SP1-Online","description":"SLE10-SDK-SP1-Online for sled-10-x86_64"}],"product_class":"SLE-SDK","eula_url":"","arch":null,"free":true,"description":null,"shortname":null,"extensions":[],"identifier":"SUSE-Linux-Enterprise-SDK-SP1-migration","release_stage":"released","id":1175,"friendly_version":"10","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Software Development Kit","release_type":null,"former_identifier":"SUSE-Linux-Enterprise-SDK-SP1-migration","friendly_name":"SUSE Linux Enterprise Software Development Kit 10 (Migration)","migration_extra":false,"recommended":false,"version":"10"},{"version":"10","recommended":false,"former_identifier":"SUSE-Linux-Enterprise-SDK-SP2-migration","release_type":"online","friendly_name":"SUSE Linux Enterprise Software Development Kit 10 online (Migration)","migration_extra":false,"offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Software Development Kit","friendly_version":"10","id":1178,"release_stage":"released","identifier":"SUSE-Linux-Enterprise-SDK-SP2-migration","extensions":[],"free":true,"description":null,"shortname":null,"arch":null,"eula_url":"","repositories":[{"installer_updates":false,"name":"SLE10-SDK-SP2-Online","description":"SLE10-SDK-SP2-Online for sled-10-i586","enabled":true,"id":1308,"distro_target":"sled-10-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sled-10-i586/"},{"description":"SLE10-SDK-SP2-Online for sles-10-ppc","name":"SLE10-SDK-SP2-Online","installer_updates":false,"autorefresh":true,"distro_target":"sles-10-ppc","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sles-10-ppc/","enabled":true,"id":1312},{"enabled":true,"id":1313,"distro_target":"sles-10-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sles-10-i586/","installer_updates":false,"name":"SLE10-SDK-SP2-Online","description":"SLE10-SDK-SP2-Online for sles-10-i586"},{"autorefresh":true,"distro_target":"sled-10-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sled-10-x86_64/","enabled":true,"id":1314,"description":"SLE10-SDK-SP2-Online for sled-10-x86_64","name":"SLE10-SDK-SP2-Online","installer_updates":false},{"enabled":true,"id":1316,"autorefresh":true,"distro_target":"sles-10-ia64","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sles-10-ia64/","name":"SLE10-SDK-SP2-Online","installer_updates":false,"description":"SLE10-SDK-SP2-Online for sles-10-ia64"},{"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sles-10-s390x/","distro_target":"sles-10-s390x","autorefresh":true,"id":1318,"enabled":true,"description":"SLE10-SDK-SP2-Online for sles-10-s390x","installer_updates":false,"name":"SLE10-SDK-SP2-Online"},{"name":"SLE10-SDK-SP2-Online","installer_updates":false,"description":"SLE10-SDK-SP2-Online for sles-10-x86_64","id":1321,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sles-10-x86_64/","autorefresh":true,"distro_target":"sles-10-x86_64"}],"online_predecessor_ids":[],"product_class":"SLE-SDK","predecessor_ids":[],"product_type":"extension","cpe":null},{"online_predecessor_ids":[],"repositories":[{"enabled":true,"id":1324,"autorefresh":true,"distro_target":"sled-10-i586","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sled-10-i586/","name":"SLE10-SDK-SP3-Online","installer_updates":false,"description":"SLE10-SDK-SP3-Online for sled-10-i586"},{"enabled":true,"id":1326,"autorefresh":true,"distro_target":"sled-10-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sled-10-x86_64/","name":"SLE10-SDK-SP3-Online","installer_updates":false,"description":"SLE10-SDK-SP3-Online for sled-10-x86_64"},{"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sles-10-ia64/","distro_target":"sles-10-ia64","autorefresh":true,"id":1328,"enabled":true,"description":"SLE10-SDK-SP3-Online for sles-10-ia64","installer_updates":false,"name":"SLE10-SDK-SP3-Online"},{"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sles-10-i586/","autorefresh":true,"distro_target":"sles-10-i586","id":1330,"enabled":true,"description":"SLE10-SDK-SP3-Online for sles-10-i586","name":"SLE10-SDK-SP3-Online","installer_updates":false},{"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sles-10-s390x/","autorefresh":true,"distro_target":"sles-10-s390x","id":1335,"enabled":true,"description":"SLE10-SDK-SP3-Online for sles-10-s390x","name":"SLE10-SDK-SP3-Online","installer_updates":false},{"autorefresh":true,"distro_target":"sles-10-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sles-10-x86_64/","enabled":true,"id":1341,"description":"SLE10-SDK-SP3-Online for sles-10-x86_64","name":"SLE10-SDK-SP3-Online","installer_updates":false},{"description":"SLE10-SDK-SP3-Online for sles-10-ppc","name":"SLE10-SDK-SP3-Online","installer_updates":false,"autorefresh":true,"distro_target":"sles-10-ppc","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sles-10-ppc/","enabled":true,"id":1342}],"product_class":"SLE-SDK","predecessor_ids":[],"product_type":"extension","cpe":null,"free":true,"shortname":null,"description":null,"arch":null,"eula_url":"","friendly_version":"10","release_stage":"released","identifier":"SUSE-Linux-Enterprise-SDK-SP3-migration","id":1180,"extensions":[],"version":"10","recommended":false,"former_identifier":"SUSE-Linux-Enterprise-SDK-SP3-migration","release_type":null,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Software Development Kit 10 (Migration)","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Software Development Kit"},{"product_type":"extension","cpe":null,"predecessor_ids":[],"repositories":[{"enabled":true,"id":1357,"distro_target":"sles-10-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP4-Online/sles-10-x86_64/","installer_updates":false,"name":"SLE10-SDK-SP4-Online","description":"SLE10-SDK-SP4-Online for sles-10-x86_64"},{"description":"SLE10-SDK-SP4-Online for sles-10-i586","name":"SLE10-SDK-SP4-Online","installer_updates":false,"autorefresh":true,"distro_target":"sles-10-i586","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP4-Online/sles-10-i586/","enabled":true,"id":1358},{"name":"SLE10-SDK-SP4-Online","installer_updates":false,"description":"SLE10-SDK-SP4-Online for sles-10-ia64","id":1359,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP4-Online/sles-10-ia64/","autorefresh":true,"distro_target":"sles-10-ia64"},{"installer_updates":false,"name":"SLE10-SDK-SP4-Online","description":"SLE10-SDK-SP4-Online for sled-10-x86_64","enabled":true,"id":1360,"distro_target":"sled-10-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP4-Online/sled-10-x86_64/"},{"description":"SLE10-SDK-SP4-Online for sled-10-i586","installer_updates":false,"name":"SLE10-SDK-SP4-Online","distro_target":"sled-10-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP4-Online/sled-10-i586/","enabled":true,"id":1361},{"id":1362,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP4-Online/sles-10-ppc/","autorefresh":true,"distro_target":"sles-10-ppc","name":"SLE10-SDK-SP4-Online","installer_updates":false,"description":"SLE10-SDK-SP4-Online for sles-10-ppc"},{"autorefresh":true,"distro_target":"sles-10-s390x","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP4-Online/sles-10-s390x/","enabled":true,"id":1363,"description":"SLE10-SDK-SP4-Online for sles-10-s390x","name":"SLE10-SDK-SP4-Online","installer_updates":false}],"online_predecessor_ids":[],"product_class":"SLE-SDK","eula_url":"","arch":null,"free":true,"description":null,"shortname":null,"extensions":[],"release_stage":"released","id":1182,"identifier":"SUSE-Linux-Enterprise-SDK-SP4-migration","friendly_version":"10","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Software Development Kit","release_type":null,"former_identifier":"SUSE-Linux-Enterprise-SDK-SP4-migration","friendly_name":"SUSE Linux Enterprise Software Development Kit 10 (Migration)","migration_extra":false,"recommended":false,"version":"10"}],"shortname":null,"description":null,"free":false,"arch":"s390","eula_url":"","product_class":"SLES-Z","online_predecessor_ids":[],"repositories":[{"installer_updates":false,"name":"SLES10-Updates","description":"SLES10-Updates for sles-10-s390x","id":637,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLES10-Updates/sles-10-s390x/","distro_target":"sles-10-s390x","autorefresh":true},{"description":"SLE10-Debuginfo-Updates for sles-10-s390x","name":"SLE10-Debuginfo-Updates","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-Debuginfo-Updates/sles-10-s390x/","autorefresh":true,"distro_target":"sles-10-s390x","id":638,"enabled":false}],"predecessor_ids":[],"cpe":null,"product_type":"base"},{"offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Server","former_identifier":"SUSE-Linux-Enterprise-Server-SP1","release_type":null,"friendly_name":"SUSE Linux Enterprise Server 10 SP1 ia64","migration_extra":false,"recommended":false,"version":"10","extensions":[{"extensions":[],"identifier":"SUSE-Linux-Enterprise-SDK-SP1","release_stage":"released","id":1174,"friendly_version":"10 SP1","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Software Development Kit","release_type":null,"former_identifier":"SUSE-Linux-Enterprise-SDK-SP1","migration_extra":false,"friendly_name":"SUSE Linux Enterprise Software Development Kit 10 SP1","recommended":false,"version":"10","product_type":"extension","cpe":null,"predecessor_ids":[],"product_class":"SLE-SDK","online_predecessor_ids":[],"repositories":[{"autorefresh":true,"distro_target":"sles-10-s390x","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sles-10-s390x/","enabled":true,"id":1294,"description":"SLE10-SDK-SP1-Online for sles-10-s390x","name":"SLE10-SDK-SP1-Online","installer_updates":false},{"autorefresh":true,"distro_target":"sles-10-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sles-10-x86_64/","enabled":true,"id":1295,"description":"SLE10-SDK-SP1-Online for sles-10-x86_64","name":"SLE10-SDK-SP1-Online","installer_updates":false},{"installer_updates":false,"name":"SLE10-SDK-SP1-Online","description":"SLE10-SDK-SP1-Online for sled-10-i586","enabled":true,"id":1296,"distro_target":"sled-10-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sled-10-i586/"},{"autorefresh":true,"distro_target":"sles-10-ppc","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sles-10-ppc/","enabled":true,"id":1297,"description":"SLE10-SDK-SP1-Online for sles-10-ppc","name":"SLE10-SDK-SP1-Online","installer_updates":false},{"name":"SLE10-SDK-SP1-Updates","installer_updates":false,"description":"SLE10-SDK-SP1-Updates for sles-10-s390x","id":1298,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Updates/sles-10-s390x/","autorefresh":true,"distro_target":"sles-10-s390x"},{"description":"SLE10-SDK-SP1-Updates for sled-10-x86_64","installer_updates":false,"name":"SLE10-SDK-SP1-Updates","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Updates/sled-10-x86_64/","distro_target":"sled-10-x86_64","autorefresh":true,"id":1299,"enabled":true},{"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Updates/sles-10-x86_64/","autorefresh":true,"distro_target":"sles-10-x86_64","id":1300,"enabled":true,"description":"SLE10-SDK-SP1-Updates for sles-10-x86_64","name":"SLE10-SDK-SP1-Updates","installer_updates":false},{"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sles-10-ia64/","autorefresh":true,"distro_target":"sles-10-ia64","id":1301,"enabled":true,"description":"SLE10-SDK-SP1-Online for sles-10-ia64","name":"SLE10-SDK-SP1-Online","installer_updates":false},{"installer_updates":false,"name":"SLE10-SDK-SP1-Updates","description":"SLE10-SDK-SP1-Updates for sled-10-i586","enabled":true,"id":1302,"distro_target":"sled-10-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Updates/sled-10-i586/"},{"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sles-10-i586/","autorefresh":true,"distro_target":"sles-10-i586","id":1303,"enabled":true,"description":"SLE10-SDK-SP1-Online for sles-10-i586","name":"SLE10-SDK-SP1-Online","installer_updates":false},{"description":"SLE10-SDK-SP1-Updates for sles-10-ia64","name":"SLE10-SDK-SP1-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sles-10-ia64","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Updates/sles-10-ia64/","enabled":true,"id":1304},{"name":"SLE10-SDK-SP1-Updates","installer_updates":false,"description":"SLE10-SDK-SP1-Updates for sles-10-ppc","enabled":true,"id":1305,"autorefresh":true,"distro_target":"sles-10-ppc","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Updates/sles-10-ppc/"},{"description":"SLE10-SDK-SP1-Updates for sles-10-i586","name":"SLE10-SDK-SP1-Updates","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Updates/sles-10-i586/","autorefresh":true,"distro_target":"sles-10-i586","id":1306,"enabled":true},{"autorefresh":true,"distro_target":"sled-10-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sled-10-x86_64/","enabled":true,"id":1307,"description":"SLE10-SDK-SP1-Online for sled-10-x86_64","name":"SLE10-SDK-SP1-Online","installer_updates":false}],"eula_url":"","arch":null,"free":true,"shortname":null,"description":null},{"recommended":false,"version":"10","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Software Development Kit","release_type":null,"former_identifier":"SUSE-Linux-Enterprise-SDK-SP1-migration","friendly_name":"SUSE Linux Enterprise Software Development Kit 10 (Migration)","migration_extra":false,"friendly_version":"10","extensions":[],"id":1175,"release_stage":"released","identifier":"SUSE-Linux-Enterprise-SDK-SP1-migration","free":true,"shortname":null,"description":null,"eula_url":"","arch":null,"predecessor_ids":[],"online_predecessor_ids":[],"repositories":[{"enabled":true,"id":1294,"distro_target":"sles-10-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sles-10-s390x/","installer_updates":false,"name":"SLE10-SDK-SP1-Online","description":"SLE10-SDK-SP1-Online for sles-10-s390x"},{"description":"SLE10-SDK-SP1-Online for sles-10-x86_64","installer_updates":false,"name":"SLE10-SDK-SP1-Online","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sles-10-x86_64/","distro_target":"sles-10-x86_64","autorefresh":true,"id":1295,"enabled":true},{"description":"SLE10-SDK-SP1-Online for sled-10-i586","name":"SLE10-SDK-SP1-Online","installer_updates":false,"autorefresh":true,"distro_target":"sled-10-i586","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sled-10-i586/","enabled":true,"id":1296},{"description":"SLE10-SDK-SP1-Online for sles-10-ppc","name":"SLE10-SDK-SP1-Online","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sles-10-ppc/","autorefresh":true,"distro_target":"sles-10-ppc","id":1297,"enabled":true},{"enabled":true,"id":1301,"distro_target":"sles-10-ia64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sles-10-ia64/","installer_updates":false,"name":"SLE10-SDK-SP1-Online","description":"SLE10-SDK-SP1-Online for sles-10-ia64"},{"distro_target":"sles-10-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sles-10-i586/","enabled":true,"id":1303,"description":"SLE10-SDK-SP1-Online for sles-10-i586","installer_updates":false,"name":"SLE10-SDK-SP1-Online"},{"description":"SLE10-SDK-SP1-Online for sled-10-x86_64","installer_updates":false,"name":"SLE10-SDK-SP1-Online","distro_target":"sled-10-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sled-10-x86_64/","enabled":true,"id":1307}],"product_class":"SLE-SDK","product_type":"extension","cpe":null}],"release_stage":"released","id":799,"identifier":"SUSE-Linux-Enterprise-Server-SP1","friendly_version":"10 SP1","eula_url":"","arch":"ia64","free":false,"shortname":null,"description":null,"product_type":"base","cpe":null,"predecessor_ids":[],"repositories":[{"description":"SLES10-SP1-LTSS-Updates for sles-10-i586","name":"SLES10-SP1-LTSS-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sles-10-i586","url":"https://updates.suse.com/repo/$RCE/SLES10-SP1-LTSS-Updates/sles-10-i586/","enabled":true,"id":642},{"enabled":true,"id":643,"distro_target":"sles-10-ia64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLES10-SP1-LTSS-Updates/sles-10-ia64/","installer_updates":false,"name":"SLES10-SP1-LTSS-Updates","description":"SLES10-SP1-LTSS-Updates for sles-10-ia64"},{"description":"SLES10-SP1-LTSS-Updates for sles-10-s390x","name":"SLES10-SP1-LTSS-Updates","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLES10-SP1-LTSS-Updates/sles-10-s390x/","autorefresh":true,"distro_target":"sles-10-s390x","id":644,"enabled":true},{"url":"https://updates.suse.com/repo/$RCE/SLES10-SP1-LTSS-Updates/sles-10-x86_64/","autorefresh":true,"distro_target":"sles-10-x86_64","id":645,"enabled":true,"description":"SLES10-SP1-LTSS-Updates for sles-10-x86_64","name":"SLES10-SP1-LTSS-Updates","installer_updates":false},{"description":"SLES10-SP1-LTSS-Updates for sles-10-ppc","name":"SLES10-SP1-LTSS-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sles-10-ppc","url":"https://updates.suse.com/repo/$RCE/SLES10-SP1-LTSS-Updates/sles-10-ppc/","enabled":true,"id":647},{"url":"https://updates.suse.com/repo/$RCE/SLES10-SP1-Updates/sles-10-ia64/","distro_target":"sles-10-ia64","autorefresh":true,"id":794,"enabled":true,"description":"SLES10-SP1-Updates for sles-10-ia64","installer_updates":false,"name":"SLES10-SP1-Updates"},{"distro_target":"sles-10-ia64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP1-Debuginfo-Updates/sles-10-ia64/","enabled":false,"id":795,"description":"SLE10-SP1-Debuginfo-Updates for sles-10-ia64","installer_updates":false,"name":"SLE10-SP1-Debuginfo-Updates"}],"online_predecessor_ids":[],"product_class":"SLES-IA"},{"product_type":"base","cpe":null,"online_predecessor_ids":[],"product_class":"SLES-Z","repositories":[{"autorefresh":true,"distro_target":"sles-10-i586","url":"https://updates.suse.com/repo/$RCE/SLES10-SP1-LTSS-Updates/sles-10-i586/","enabled":true,"id":642,"description":"SLES10-SP1-LTSS-Updates for sles-10-i586","name":"SLES10-SP1-LTSS-Updates","installer_updates":false},{"enabled":true,"id":643,"autorefresh":true,"distro_target":"sles-10-ia64","url":"https://updates.suse.com/repo/$RCE/SLES10-SP1-LTSS-Updates/sles-10-ia64/","name":"SLES10-SP1-LTSS-Updates","installer_updates":false,"description":"SLES10-SP1-LTSS-Updates for sles-10-ia64"},{"name":"SLES10-SP1-LTSS-Updates","installer_updates":false,"description":"SLES10-SP1-LTSS-Updates for sles-10-s390x","id":644,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLES10-SP1-LTSS-Updates/sles-10-s390x/","autorefresh":true,"distro_target":"sles-10-s390x"},{"enabled":true,"id":645,"autorefresh":true,"distro_target":"sles-10-x86_64","url":"https://updates.suse.com/repo/$RCE/SLES10-SP1-LTSS-Updates/sles-10-x86_64/","name":"SLES10-SP1-LTSS-Updates","installer_updates":false,"description":"SLES10-SP1-LTSS-Updates for sles-10-x86_64"},{"autorefresh":true,"distro_target":"sles-10-ppc","url":"https://updates.suse.com/repo/$RCE/SLES10-SP1-LTSS-Updates/sles-10-ppc/","enabled":true,"id":647,"description":"SLES10-SP1-LTSS-Updates for sles-10-ppc","name":"SLES10-SP1-LTSS-Updates","installer_updates":false},{"distro_target":"sles-10-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLES10-SP1-Updates/sles-10-s390x/","enabled":true,"id":651,"description":"SLES10-SP1-Updates for sles-10-s390x","installer_updates":false,"name":"SLES10-SP1-Updates"},{"installer_updates":false,"name":"SLE10-SP1-Debuginfo-Updates","description":"SLE10-SP1-Debuginfo-Updates for sles-10-s390x","enabled":false,"id":652,"distro_target":"sles-10-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP1-Debuginfo-Updates/sles-10-s390x/"}],"predecessor_ids":[],"arch":"s390x","eula_url":"","free":false,"description":null,"shortname":null,"identifier":"SUSE-Linux-Enterprise-Server-SP1","release_stage":"released","id":800,"extensions":[{"product_type":"extension","cpe":null,"predecessor_ids":[],"online_predecessor_ids":[],"product_class":"SLE-SDK","repositories":[{"distro_target":"sles-10-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sles-10-s390x/","enabled":true,"id":1294,"description":"SLE10-SDK-SP1-Online for sles-10-s390x","installer_updates":false,"name":"SLE10-SDK-SP1-Online"},{"name":"SLE10-SDK-SP1-Online","installer_updates":false,"description":"SLE10-SDK-SP1-Online for sles-10-x86_64","enabled":true,"id":1295,"autorefresh":true,"distro_target":"sles-10-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sles-10-x86_64/"},{"installer_updates":false,"name":"SLE10-SDK-SP1-Online","description":"SLE10-SDK-SP1-Online for sled-10-i586","id":1296,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sled-10-i586/","distro_target":"sled-10-i586","autorefresh":true},{"installer_updates":false,"name":"SLE10-SDK-SP1-Online","description":"SLE10-SDK-SP1-Online for sles-10-ppc","enabled":true,"id":1297,"distro_target":"sles-10-ppc","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sles-10-ppc/"},{"description":"SLE10-SDK-SP1-Updates for sles-10-s390x","name":"SLE10-SDK-SP1-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sles-10-s390x","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Updates/sles-10-s390x/","enabled":true,"id":1298},{"description":"SLE10-SDK-SP1-Updates for sled-10-x86_64","installer_updates":false,"name":"SLE10-SDK-SP1-Updates","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Updates/sled-10-x86_64/","distro_target":"sled-10-x86_64","autorefresh":true,"id":1299,"enabled":true},{"id":1300,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Updates/sles-10-x86_64/","distro_target":"sles-10-x86_64","autorefresh":true,"installer_updates":false,"name":"SLE10-SDK-SP1-Updates","description":"SLE10-SDK-SP1-Updates for sles-10-x86_64"},{"name":"SLE10-SDK-SP1-Online","installer_updates":false,"description":"SLE10-SDK-SP1-Online for sles-10-ia64","enabled":true,"id":1301,"autorefresh":true,"distro_target":"sles-10-ia64","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sles-10-ia64/"},{"autorefresh":true,"distro_target":"sled-10-i586","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Updates/sled-10-i586/","enabled":true,"id":1302,"description":"SLE10-SDK-SP1-Updates for sled-10-i586","name":"SLE10-SDK-SP1-Updates","installer_updates":false},{"description":"SLE10-SDK-SP1-Online for sles-10-i586","name":"SLE10-SDK-SP1-Online","installer_updates":false,"autorefresh":true,"distro_target":"sles-10-i586","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sles-10-i586/","enabled":true,"id":1303},{"distro_target":"sles-10-ia64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Updates/sles-10-ia64/","enabled":true,"id":1304,"description":"SLE10-SDK-SP1-Updates for sles-10-ia64","installer_updates":false,"name":"SLE10-SDK-SP1-Updates"},{"description":"SLE10-SDK-SP1-Updates for sles-10-ppc","installer_updates":false,"name":"SLE10-SDK-SP1-Updates","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Updates/sles-10-ppc/","distro_target":"sles-10-ppc","autorefresh":true,"id":1305,"enabled":true},{"installer_updates":false,"name":"SLE10-SDK-SP1-Updates","description":"SLE10-SDK-SP1-Updates for sles-10-i586","id":1306,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Updates/sles-10-i586/","distro_target":"sles-10-i586","autorefresh":true},{"installer_updates":false,"name":"SLE10-SDK-SP1-Online","description":"SLE10-SDK-SP1-Online for sled-10-x86_64","id":1307,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sled-10-x86_64/","distro_target":"sled-10-x86_64","autorefresh":true}],"eula_url":"","arch":null,"free":true,"description":null,"shortname":null,"extensions":[],"identifier":"SUSE-Linux-Enterprise-SDK-SP1","release_stage":"released","id":1174,"friendly_version":"10 SP1","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Software Development Kit","former_identifier":"SUSE-Linux-Enterprise-SDK-SP1","release_type":null,"friendly_name":"SUSE Linux Enterprise Software Development Kit 10 SP1","migration_extra":false,"recommended":false,"version":"10"},{"friendly_version":"10","release_stage":"released","identifier":"SUSE-Linux-Enterprise-SDK-SP1-migration","id":1175,"extensions":[],"version":"10","recommended":false,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Software Development Kit 10 (Migration)","former_identifier":"SUSE-Linux-Enterprise-SDK-SP1-migration","release_type":null,"name":"SUSE Linux Enterprise Software Development Kit","offline_predecessor_ids":[],"product_class":"SLE-SDK","online_predecessor_ids":[],"repositories":[{"description":"SLE10-SDK-SP1-Online for sles-10-s390x","installer_updates":false,"name":"SLE10-SDK-SP1-Online","distro_target":"sles-10-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sles-10-s390x/","enabled":true,"id":1294},{"description":"SLE10-SDK-SP1-Online for sles-10-x86_64","installer_updates":false,"name":"SLE10-SDK-SP1-Online","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sles-10-x86_64/","distro_target":"sles-10-x86_64","autorefresh":true,"id":1295,"enabled":true},{"distro_target":"sled-10-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sled-10-i586/","enabled":true,"id":1296,"description":"SLE10-SDK-SP1-Online for sled-10-i586","installer_updates":false,"name":"SLE10-SDK-SP1-Online"},{"distro_target":"sles-10-ppc","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sles-10-ppc/","enabled":true,"id":1297,"description":"SLE10-SDK-SP1-Online for sles-10-ppc","installer_updates":false,"name":"SLE10-SDK-SP1-Online"},{"id":1301,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sles-10-ia64/","autorefresh":true,"distro_target":"sles-10-ia64","name":"SLE10-SDK-SP1-Online","installer_updates":false,"description":"SLE10-SDK-SP1-Online for sles-10-ia64"},{"installer_updates":false,"name":"SLE10-SDK-SP1-Online","description":"SLE10-SDK-SP1-Online for sles-10-i586","enabled":true,"id":1303,"distro_target":"sles-10-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sles-10-i586/"},{"distro_target":"sled-10-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sled-10-x86_64/","enabled":true,"id":1307,"description":"SLE10-SDK-SP1-Online for sled-10-x86_64","installer_updates":false,"name":"SLE10-SDK-SP1-Online"}],"predecessor_ids":[],"cpe":null,"product_type":"extension","description":null,"shortname":null,"free":true,"arch":null,"eula_url":""}],"friendly_version":"10 SP1","release_type":null,"former_identifier":"SUSE-Linux-Enterprise-Server-SP1","migration_extra":false,"friendly_name":"SUSE Linux Enterprise Server 10 SP1 s390x","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Server","version":"10","recommended":false},{"name":"SUSE Linux Enterprise Server","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Server 10 i586 (Migration)","release_type":null,"former_identifier":"SUSE-Linux-Enterprise-Server-SP2-migration","recommended":false,"version":"10","extensions":[],"release_stage":"released","id":801,"identifier":"SUSE-Linux-Enterprise-Server-SP2-migration","friendly_version":"10","eula_url":"","arch":"i586","description":null,"shortname":null,"free":false,"cpe":null,"product_type":"base","predecessor_ids":[],"online_predecessor_ids":[],"repositories":[{"description":"SLES10-SP2-Online for sles-10-i586","installer_updates":false,"name":"SLES10-SP2-Online","url":"https://updates.suse.com/repo/$RCE/SLES10-SP2-Online/sles-10-i586/","distro_target":"sles-10-i586","autorefresh":true,"id":654,"enabled":true}],"product_class":"7261"},{"friendly_version":"10 SP2","extensions":[{"predecessor_ids":[],"online_predecessor_ids":[],"product_class":"SLE-SDK","repositories":[],"product_type":"extension","cpe":null,"free":true,"shortname":null,"description":null,"eula_url":"","arch":null,"friendly_version":"10 SP2","extensions":[],"id":1176,"release_stage":"released","identifier":"SUSE-Linux-Enterprise-SDK-SP2","recommended":false,"version":"10","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Software Development Kit","release_type":"MigrationBeta","former_identifier":"SUSE-Linux-Enterprise-SDK-SP2","friendly_name":"SUSE Linux Enterprise Software Development Kit 10 SP2 MigrationBeta","migration_extra":false},{"friendly_version":"10 SP2","extensions":[],"identifier":"SUSE-Linux-Enterprise-SDK-SP2","release_stage":"released","id":1177,"recommended":false,"version":"10","name":"SUSE Linux Enterprise Software Development Kit","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Software Development Kit 10 SP2","release_type":null,"former_identifier":"SUSE-Linux-Enterprise-SDK-SP2","predecessor_ids":[],"online_predecessor_ids":[],"repositories":[{"description":"SLE10-SDK-SP2-Online for sled-10-i586","installer_updates":false,"name":"SLE10-SDK-SP2-Online","distro_target":"sled-10-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sled-10-i586/","enabled":true,"id":1308},{"installer_updates":false,"name":"SLE10-SDK-SP2-Updates","description":"SLE10-SDK-SP2-Updates for sles-10-i586","id":1309,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Updates/sles-10-i586/","distro_target":"sles-10-i586","autorefresh":true},{"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Updates/sles-10-ia64/","autorefresh":true,"distro_target":"sles-10-ia64","id":1310,"enabled":true,"description":"SLE10-SDK-SP2-Updates for sles-10-ia64","name":"SLE10-SDK-SP2-Updates","installer_updates":false},{"name":"SLE10-SDK-SP2-Updates","installer_updates":false,"description":"SLE10-SDK-SP2-Updates for sles-10-s390x","enabled":true,"id":1311,"autorefresh":true,"distro_target":"sles-10-s390x","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Updates/sles-10-s390x/"},{"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sles-10-ppc/","distro_target":"sles-10-ppc","autorefresh":true,"id":1312,"enabled":true,"description":"SLE10-SDK-SP2-Online for sles-10-ppc","installer_updates":false,"name":"SLE10-SDK-SP2-Online"},{"installer_updates":false,"name":"SLE10-SDK-SP2-Online","description":"SLE10-SDK-SP2-Online for sles-10-i586","enabled":true,"id":1313,"distro_target":"sles-10-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sles-10-i586/"},{"name":"SLE10-SDK-SP2-Online","installer_updates":false,"description":"SLE10-SDK-SP2-Online for sled-10-x86_64","id":1314,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sled-10-x86_64/","autorefresh":true,"distro_target":"sled-10-x86_64"},{"name":"SLE10-SDK-SP2-Updates","installer_updates":false,"description":"SLE10-SDK-SP2-Updates for sles-10-x86_64","id":1315,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Updates/sles-10-x86_64/","autorefresh":true,"distro_target":"sles-10-x86_64"},{"name":"SLE10-SDK-SP2-Online","installer_updates":false,"description":"SLE10-SDK-SP2-Online for sles-10-ia64","id":1316,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sles-10-ia64/","autorefresh":true,"distro_target":"sles-10-ia64"},{"enabled":true,"id":1317,"distro_target":"sles-10-ppc","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Updates/sles-10-ppc/","installer_updates":false,"name":"SLE10-SDK-SP2-Updates","description":"SLE10-SDK-SP2-Updates for sles-10-ppc"},{"autorefresh":true,"distro_target":"sles-10-s390x","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sles-10-s390x/","enabled":true,"id":1318,"description":"SLE10-SDK-SP2-Online for sles-10-s390x","name":"SLE10-SDK-SP2-Online","installer_updates":false},{"description":"SLE10-SDK-SP2-Updates for sled-10-x86_64","installer_updates":false,"name":"SLE10-SDK-SP2-Updates","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Updates/sled-10-x86_64/","distro_target":"sled-10-x86_64","autorefresh":true,"id":1319,"enabled":true},{"description":"SLE10-SDK-SP2-Updates for sled-10-i586","name":"SLE10-SDK-SP2-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sled-10-i586","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Updates/sled-10-i586/","enabled":true,"id":1320},{"name":"SLE10-SDK-SP2-Online","installer_updates":false,"description":"SLE10-SDK-SP2-Online for sles-10-x86_64","enabled":true,"id":1321,"autorefresh":true,"distro_target":"sles-10-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sles-10-x86_64/"}],"product_class":"SLE-SDK","cpe":null,"product_type":"extension","shortname":null,"description":null,"free":true,"eula_url":"","arch":null},{"predecessor_ids":[],"online_predecessor_ids":[],"product_class":"SLE-SDK","repositories":[{"installer_updates":false,"name":"SLE10-SDK-SP2-Online","description":"SLE10-SDK-SP2-Online for sled-10-i586","id":1308,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sled-10-i586/","distro_target":"sled-10-i586","autorefresh":true},{"installer_updates":false,"name":"SLE10-SDK-SP2-Online","description":"SLE10-SDK-SP2-Online for sles-10-ppc","enabled":true,"id":1312,"distro_target":"sles-10-ppc","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sles-10-ppc/"},{"installer_updates":false,"name":"SLE10-SDK-SP2-Online","description":"SLE10-SDK-SP2-Online for sles-10-i586","id":1313,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sles-10-i586/","distro_target":"sles-10-i586","autorefresh":true},{"description":"SLE10-SDK-SP2-Online for sled-10-x86_64","installer_updates":false,"name":"SLE10-SDK-SP2-Online","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sled-10-x86_64/","distro_target":"sled-10-x86_64","autorefresh":true,"id":1314,"enabled":true},{"distro_target":"sles-10-ia64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sles-10-ia64/","enabled":true,"id":1316,"description":"SLE10-SDK-SP2-Online for sles-10-ia64","installer_updates":false,"name":"SLE10-SDK-SP2-Online"},{"enabled":true,"id":1318,"autorefresh":true,"distro_target":"sles-10-s390x","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sles-10-s390x/","name":"SLE10-SDK-SP2-Online","installer_updates":false,"description":"SLE10-SDK-SP2-Online for sles-10-s390x"},{"installer_updates":false,"name":"SLE10-SDK-SP2-Online","description":"SLE10-SDK-SP2-Online for sles-10-x86_64","id":1321,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sles-10-x86_64/","distro_target":"sles-10-x86_64","autorefresh":true}],"cpe":null,"product_type":"extension","shortname":null,"description":null,"free":true,"eula_url":"","arch":null,"friendly_version":"10","extensions":[],"release_stage":"released","id":1178,"identifier":"SUSE-Linux-Enterprise-SDK-SP2-migration","recommended":false,"version":"10","name":"SUSE Linux Enterprise Software Development Kit","offline_predecessor_ids":[],"friendly_name":"SUSE Linux Enterprise Software Development Kit 10 online (Migration)","migration_extra":false,"former_identifier":"SUSE-Linux-Enterprise-SDK-SP2-migration","release_type":"online"},{"extensions":[],"release_stage":"released","identifier":"SUSE-Linux-Enterprise-SMT-SP2","id":1195,"friendly_version":"10 SP2","name":"SUSE Linux Enterprise Subscription Management Tool","offline_predecessor_ids":[],"friendly_name":"SUSE Linux Enterprise Subscription Management Tool 10 SP2","migration_extra":false,"release_type":null,"former_identifier":"SUSE-Linux-Enterprise-SMT-SP2","recommended":false,"version":"10.2","cpe":null,"product_type":"extension","predecessor_ids":[],"online_predecessor_ids":[],"product_class":"SLESMT","repositories":[{"autorefresh":true,"distro_target":"sles-10-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE10-SP2-SMT-Updates/sles-10-x86_64/","enabled":true,"id":1398,"description":"SLE10-SP2-SMT-Updates for sles-10-x86_64","name":"SLE10-SP2-SMT-Updates","installer_updates":false},{"url":"https://updates.suse.com/repo/$RCE/SLE10-SP2-SMT-Updates/sles-10-i586/","autorefresh":true,"distro_target":"sles-10-i586","id":1399,"enabled":true,"description":"SLE10-SP2-SMT-Updates for sles-10-i586","name":"SLE10-SP2-SMT-Updates","installer_updates":false}],"eula_url":"","arch":null,"description":null,"shortname":null,"free":true}],"identifier":"SUSE-Linux-Enterprise-Server-SP2","release_stage":"released","id":802,"recommended":false,"version":"10","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Server","release_type":null,"former_identifier":"SUSE-Linux-Enterprise-Server-SP2","migration_extra":false,"friendly_name":"SUSE Linux Enterprise Server 10 SP2 i386","predecessor_ids":[],"online_predecessor_ids":[],"repositories":[{"description":"SLES10-SP2-Pool for sles-10-i586","installer_updates":false,"name":"SLES10-SP2-Pool","distro_target":"sles-10-i586","autorefresh":false,"url":"https://updates.suse.com/repo/$RCE/SLES10-SP2-Pool/sles-10-i586/","enabled":true,"id":653},{"description":"SLES10-SP2-Online for sles-10-i586","installer_updates":false,"name":"SLES10-SP2-Online","url":"https://updates.suse.com/repo/$RCE/SLES10-SP2-Online/sles-10-i586/","distro_target":"sles-10-i586","autorefresh":true,"id":654,"enabled":false},{"installer_updates":false,"name":"SLES10-SP2-Updates","description":"SLES10-SP2-Updates for sles-10-i586","enabled":true,"id":655,"distro_target":"sles-10-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLES10-SP2-Updates/sles-10-i586/"},{"description":"SLE10-SP2-Debuginfo-Updates for sles-10-i586","installer_updates":false,"name":"SLE10-SP2-Debuginfo-Updates","url":"https://updates.suse.com/repo/$RCE/SLE10-SP2-Debuginfo-Updates/sles-10-i586/","distro_target":"sles-10-i586","autorefresh":true,"id":656,"enabled":false},{"installer_updates":false,"name":"SLES10-SP2-LTSS-Updates","description":"SLES10-SP2-LTSS-Updates for sles-10-i586","enabled":true,"id":657,"distro_target":"sles-10-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLES10-SP2-LTSS-Updates/sles-10-i586/"}],"product_class":"7261","product_type":"base","cpe":null,"free":false,"shortname":null,"description":null,"eula_url":"","arch":"i386"},{"extensions":[{"arch":null,"eula_url":"","shortname":null,"description":null,"free":true,"cpe":null,"product_type":"extension","online_predecessor_ids":[],"product_class":"SLE-SDK","repositories":[],"predecessor_ids":[],"friendly_name":"SUSE Linux Enterprise Software Development Kit 10 SP2 MigrationBeta","migration_extra":false,"former_identifier":"SUSE-Linux-Enterprise-SDK-SP2","release_type":"MigrationBeta","name":"SUSE Linux Enterprise Software Development Kit","offline_predecessor_ids":[],"version":"10","recommended":false,"release_stage":"released","id":1176,"identifier":"SUSE-Linux-Enterprise-SDK-SP2","extensions":[],"friendly_version":"10 SP2"},{"friendly_version":"10 SP2","release_stage":"released","identifier":"SUSE-Linux-Enterprise-SDK-SP2","id":1177,"extensions":[],"version":"10","recommended":false,"release_type":null,"former_identifier":"SUSE-Linux-Enterprise-SDK-SP2","migration_extra":false,"friendly_name":"SUSE Linux Enterprise Software Development Kit 10 SP2","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Software Development Kit","online_predecessor_ids":[],"product_class":"SLE-SDK","repositories":[{"description":"SLE10-SDK-SP2-Online for sled-10-i586","installer_updates":false,"name":"SLE10-SDK-SP2-Online","distro_target":"sled-10-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sled-10-i586/","enabled":true,"id":1308},{"id":1309,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Updates/sles-10-i586/","autorefresh":true,"distro_target":"sles-10-i586","name":"SLE10-SDK-SP2-Updates","installer_updates":false,"description":"SLE10-SDK-SP2-Updates for sles-10-i586"},{"description":"SLE10-SDK-SP2-Updates for sles-10-ia64","name":"SLE10-SDK-SP2-Updates","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Updates/sles-10-ia64/","autorefresh":true,"distro_target":"sles-10-ia64","id":1310,"enabled":true},{"installer_updates":false,"name":"SLE10-SDK-SP2-Updates","description":"SLE10-SDK-SP2-Updates for sles-10-s390x","id":1311,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Updates/sles-10-s390x/","distro_target":"sles-10-s390x","autorefresh":true},{"description":"SLE10-SDK-SP2-Online for sles-10-ppc","name":"SLE10-SDK-SP2-Online","installer_updates":false,"autorefresh":true,"distro_target":"sles-10-ppc","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sles-10-ppc/","enabled":true,"id":1312},{"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sles-10-i586/","distro_target":"sles-10-i586","autorefresh":true,"id":1313,"enabled":true,"description":"SLE10-SDK-SP2-Online for sles-10-i586","installer_updates":false,"name":"SLE10-SDK-SP2-Online"},{"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sled-10-x86_64/","distro_target":"sled-10-x86_64","autorefresh":true,"id":1314,"enabled":true,"description":"SLE10-SDK-SP2-Online for sled-10-x86_64","installer_updates":false,"name":"SLE10-SDK-SP2-Online"},{"installer_updates":false,"name":"SLE10-SDK-SP2-Updates","description":"SLE10-SDK-SP2-Updates for sles-10-x86_64","enabled":true,"id":1315,"distro_target":"sles-10-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Updates/sles-10-x86_64/"},{"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sles-10-ia64/","distro_target":"sles-10-ia64","autorefresh":true,"id":1316,"enabled":true,"description":"SLE10-SDK-SP2-Online for sles-10-ia64","installer_updates":false,"name":"SLE10-SDK-SP2-Online"},{"distro_target":"sles-10-ppc","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Updates/sles-10-ppc/","enabled":true,"id":1317,"description":"SLE10-SDK-SP2-Updates for sles-10-ppc","installer_updates":false,"name":"SLE10-SDK-SP2-Updates"},{"name":"SLE10-SDK-SP2-Online","installer_updates":false,"description":"SLE10-SDK-SP2-Online for sles-10-s390x","enabled":true,"id":1318,"autorefresh":true,"distro_target":"sles-10-s390x","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sles-10-s390x/"},{"name":"SLE10-SDK-SP2-Updates","installer_updates":false,"description":"SLE10-SDK-SP2-Updates for sled-10-x86_64","enabled":true,"id":1319,"autorefresh":true,"distro_target":"sled-10-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Updates/sled-10-x86_64/"},{"name":"SLE10-SDK-SP2-Updates","installer_updates":false,"description":"SLE10-SDK-SP2-Updates for sled-10-i586","enabled":true,"id":1320,"autorefresh":true,"distro_target":"sled-10-i586","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Updates/sled-10-i586/"},{"name":"SLE10-SDK-SP2-Online","installer_updates":false,"description":"SLE10-SDK-SP2-Online for sles-10-x86_64","id":1321,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sles-10-x86_64/","autorefresh":true,"distro_target":"sles-10-x86_64"}],"predecessor_ids":[],"product_type":"extension","cpe":null,"free":true,"description":null,"shortname":null,"arch":null,"eula_url":""},{"friendly_version":"10","extensions":[],"release_stage":"released","id":1178,"identifier":"SUSE-Linux-Enterprise-SDK-SP2-migration","recommended":false,"version":"10","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Software Development Kit","release_type":"online","former_identifier":"SUSE-Linux-Enterprise-SDK-SP2-migration","migration_extra":false,"friendly_name":"SUSE Linux Enterprise Software Development Kit 10 online (Migration)","predecessor_ids":[],"online_predecessor_ids":[],"product_class":"SLE-SDK","repositories":[{"enabled":true,"id":1308,"distro_target":"sled-10-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sled-10-i586/","installer_updates":false,"name":"SLE10-SDK-SP2-Online","description":"SLE10-SDK-SP2-Online for sled-10-i586"},{"installer_updates":false,"name":"SLE10-SDK-SP2-Online","description":"SLE10-SDK-SP2-Online for sles-10-ppc","enabled":true,"id":1312,"distro_target":"sles-10-ppc","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sles-10-ppc/"},{"enabled":true,"id":1313,"distro_target":"sles-10-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sles-10-i586/","installer_updates":false,"name":"SLE10-SDK-SP2-Online","description":"SLE10-SDK-SP2-Online for sles-10-i586"},{"enabled":true,"id":1314,"autorefresh":true,"distro_target":"sled-10-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sled-10-x86_64/","name":"SLE10-SDK-SP2-Online","installer_updates":false,"description":"SLE10-SDK-SP2-Online for sled-10-x86_64"},{"id":1316,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sles-10-ia64/","autorefresh":true,"distro_target":"sles-10-ia64","name":"SLE10-SDK-SP2-Online","installer_updates":false,"description":"SLE10-SDK-SP2-Online for sles-10-ia64"},{"enabled":true,"id":1318,"distro_target":"sles-10-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sles-10-s390x/","installer_updates":false,"name":"SLE10-SDK-SP2-Online","description":"SLE10-SDK-SP2-Online for sles-10-s390x"},{"name":"SLE10-SDK-SP2-Online","installer_updates":false,"description":"SLE10-SDK-SP2-Online for sles-10-x86_64","id":1321,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sles-10-x86_64/","autorefresh":true,"distro_target":"sles-10-x86_64"}],"product_type":"extension","cpe":null,"free":true,"description":null,"shortname":null,"eula_url":"","arch":null},{"cpe":null,"product_type":"extension","online_predecessor_ids":[],"product_class":"SLESMT","repositories":[{"description":"SLE10-SP2-SMT-Updates for sles-10-x86_64","name":"SLE10-SP2-SMT-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sles-10-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE10-SP2-SMT-Updates/sles-10-x86_64/","enabled":true,"id":1398},{"description":"SLE10-SP2-SMT-Updates for sles-10-i586","installer_updates":false,"name":"SLE10-SP2-SMT-Updates","distro_target":"sles-10-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP2-SMT-Updates/sles-10-i586/","enabled":true,"id":1399}],"predecessor_ids":[],"arch":null,"eula_url":"","description":null,"shortname":null,"free":true,"id":1195,"release_stage":"released","identifier":"SUSE-Linux-Enterprise-SMT-SP2","extensions":[],"friendly_version":"10 SP2","friendly_name":"SUSE Linux Enterprise Subscription Management Tool 10 SP2","migration_extra":false,"former_identifier":"SUSE-Linux-Enterprise-SMT-SP2","release_type":null,"name":"SUSE Linux Enterprise Subscription Management Tool","offline_predecessor_ids":[],"version":"10.2","recommended":false}],"identifier":"SUSE-Linux-Enterprise-Server-SP2","release_stage":"released","id":803,"friendly_version":"10 SP2","name":"SUSE Linux Enterprise Server","offline_predecessor_ids":[],"friendly_name":"SUSE Linux Enterprise Server 10 SP2 x86_64","migration_extra":false,"release_type":null,"former_identifier":"SUSE-Linux-Enterprise-Server-SP2","recommended":false,"version":"10","cpe":null,"product_type":"base","predecessor_ids":[],"repositories":[{"description":"SLES10-SP2-Online for sles-10-x86_64","name":"SLES10-SP2-Online","installer_updates":false,"autorefresh":true,"distro_target":"sles-10-x86_64","url":"https://updates.suse.com/repo/$RCE/SLES10-SP2-Online/sles-10-x86_64/","enabled":false,"id":806},{"description":"SLES10-SP2-Pool for sles-10-x86_64","name":"SLES10-SP2-Pool","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLES10-SP2-Pool/sles-10-x86_64/","autorefresh":false,"distro_target":"sles-10-x86_64","id":807,"enabled":true},{"id":808,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP2-Debuginfo-Updates/sles-10-x86_64/","distro_target":"sles-10-x86_64","autorefresh":true,"installer_updates":false,"name":"SLE10-SP2-Debuginfo-Updates","description":"SLE10-SP2-Debuginfo-Updates for sles-10-x86_64"},{"description":"SLES10-SP2-Updates for sles-10-x86_64","name":"SLES10-SP2-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sles-10-x86_64","url":"https://updates.suse.com/repo/$RCE/SLES10-SP2-Updates/sles-10-x86_64/","enabled":true,"id":809},{"autorefresh":true,"distro_target":"sles-10-x86_64","url":"https://updates.suse.com/repo/$RCE/SLES10-SP2-LTSS-Updates/sles-10-x86_64/","enabled":true,"id":810,"description":"SLES10-SP2-LTSS-Updates for sles-10-x86_64","name":"SLES10-SP2-LTSS-Updates","installer_updates":false}],"online_predecessor_ids":[],"product_class":"7261","eula_url":"","arch":"x86_64","description":null,"shortname":null,"free":false},{"cpe":null,"product_type":"base","online_predecessor_ids":[],"repositories":[{"description":"SLES10-SP2-Online for sles-10-s390x","installer_updates":false,"name":"SLES10-SP2-Online","url":"https://updates.suse.com/repo/$RCE/SLES10-SP2-Online/sles-10-s390x/","distro_target":"sles-10-s390x","autorefresh":true,"id":744,"enabled":false},{"distro_target":"sles-10-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLES10-SP2-LTSS-Updates/sles-10-s390x/","enabled":true,"id":764,"description":"SLES10-SP2-LTSS-Updates for sles-10-s390x","installer_updates":false,"name":"SLES10-SP2-LTSS-Updates"},{"description":"SLE10-SP2-Debuginfo-Updates for sles-10-s390x","installer_updates":false,"name":"SLE10-SP2-Debuginfo-Updates","url":"https://updates.suse.com/repo/$RCE/SLE10-SP2-Debuginfo-Updates/sles-10-s390x/","distro_target":"sles-10-s390x","autorefresh":true,"id":765,"enabled":false},{"installer_updates":false,"name":"SLES10-SP2-Pool","description":"SLES10-SP2-Pool for sles-10-s390x","enabled":true,"id":766,"distro_target":"sles-10-s390x","autorefresh":false,"url":"https://updates.suse.com/repo/$RCE/SLES10-SP2-Pool/sles-10-s390x/"},{"url":"https://updates.suse.com/repo/$RCE/SLES10-SP2-Updates/sles-10-s390x/","distro_target":"sles-10-s390x","autorefresh":true,"id":767,"enabled":true,"description":"SLES10-SP2-Updates for sles-10-s390x","installer_updates":false,"name":"SLES10-SP2-Updates"}],"product_class":"SLES-Z","predecessor_ids":[],"arch":"s390x","eula_url":"","description":null,"shortname":null,"free":false,"id":804,"release_stage":"released","identifier":"SUSE-Linux-Enterprise-Server-SP2","extensions":[{"name":"SUSE Linux Enterprise Software Development Kit","offline_predecessor_ids":[],"friendly_name":"SUSE Linux Enterprise Software Development Kit 10 SP2 MigrationBeta","migration_extra":false,"release_type":"MigrationBeta","former_identifier":"SUSE-Linux-Enterprise-SDK-SP2","recommended":false,"version":"10","extensions":[],"release_stage":"released","identifier":"SUSE-Linux-Enterprise-SDK-SP2","id":1176,"friendly_version":"10 SP2","eula_url":"","arch":null,"shortname":null,"description":null,"free":true,"cpe":null,"product_type":"extension","predecessor_ids":[],"product_class":"SLE-SDK","online_predecessor_ids":[],"repositories":[]},{"friendly_version":"10 SP2","identifier":"SUSE-Linux-Enterprise-SDK-SP2","release_stage":"released","id":1177,"extensions":[],"version":"10","recommended":false,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Software Development Kit 10 SP2","former_identifier":"SUSE-Linux-Enterprise-SDK-SP2","release_type":null,"name":"SUSE Linux Enterprise Software Development Kit","offline_predecessor_ids":[],"online_predecessor_ids":[],"repositories":[{"id":1308,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sled-10-i586/","distro_target":"sled-10-i586","autorefresh":true,"installer_updates":false,"name":"SLE10-SDK-SP2-Online","description":"SLE10-SDK-SP2-Online for sled-10-i586"},{"name":"SLE10-SDK-SP2-Updates","installer_updates":false,"description":"SLE10-SDK-SP2-Updates for sles-10-i586","enabled":true,"id":1309,"autorefresh":true,"distro_target":"sles-10-i586","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Updates/sles-10-i586/"},{"description":"SLE10-SDK-SP2-Updates for sles-10-ia64","name":"SLE10-SDK-SP2-Updates","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Updates/sles-10-ia64/","autorefresh":true,"distro_target":"sles-10-ia64","id":1310,"enabled":true},{"installer_updates":false,"name":"SLE10-SDK-SP2-Updates","description":"SLE10-SDK-SP2-Updates for sles-10-s390x","id":1311,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Updates/sles-10-s390x/","distro_target":"sles-10-s390x","autorefresh":true},{"name":"SLE10-SDK-SP2-Online","installer_updates":false,"description":"SLE10-SDK-SP2-Online for sles-10-ppc","enabled":true,"id":1312,"autorefresh":true,"distro_target":"sles-10-ppc","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sles-10-ppc/"},{"description":"SLE10-SDK-SP2-Online for sles-10-i586","installer_updates":false,"name":"SLE10-SDK-SP2-Online","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sles-10-i586/","distro_target":"sles-10-i586","autorefresh":true,"id":1313,"enabled":true},{"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sled-10-x86_64/","distro_target":"sled-10-x86_64","autorefresh":true,"id":1314,"enabled":true,"description":"SLE10-SDK-SP2-Online for sled-10-x86_64","installer_updates":false,"name":"SLE10-SDK-SP2-Online"},{"enabled":true,"id":1315,"autorefresh":true,"distro_target":"sles-10-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Updates/sles-10-x86_64/","name":"SLE10-SDK-SP2-Updates","installer_updates":false,"description":"SLE10-SDK-SP2-Updates for sles-10-x86_64"},{"description":"SLE10-SDK-SP2-Online for sles-10-ia64","name":"SLE10-SDK-SP2-Online","installer_updates":false,"autorefresh":true,"distro_target":"sles-10-ia64","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sles-10-ia64/","enabled":true,"id":1316},{"name":"SLE10-SDK-SP2-Updates","installer_updates":false,"description":"SLE10-SDK-SP2-Updates for sles-10-ppc","id":1317,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Updates/sles-10-ppc/","autorefresh":true,"distro_target":"sles-10-ppc"},{"distro_target":"sles-10-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sles-10-s390x/","enabled":true,"id":1318,"description":"SLE10-SDK-SP2-Online for sles-10-s390x","installer_updates":false,"name":"SLE10-SDK-SP2-Online"},{"description":"SLE10-SDK-SP2-Updates for sled-10-x86_64","name":"SLE10-SDK-SP2-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sled-10-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Updates/sled-10-x86_64/","enabled":true,"id":1319},{"installer_updates":false,"name":"SLE10-SDK-SP2-Updates","description":"SLE10-SDK-SP2-Updates for sled-10-i586","enabled":true,"id":1320,"distro_target":"sled-10-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Updates/sled-10-i586/"},{"enabled":true,"id":1321,"distro_target":"sles-10-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sles-10-x86_64/","installer_updates":false,"name":"SLE10-SDK-SP2-Online","description":"SLE10-SDK-SP2-Online for sles-10-x86_64"}],"product_class":"SLE-SDK","predecessor_ids":[],"cpe":null,"product_type":"extension","description":null,"shortname":null,"free":true,"arch":null,"eula_url":""},{"product_class":"SLE-SDK","online_predecessor_ids":[],"repositories":[{"description":"SLE10-SDK-SP2-Online for sled-10-i586","name":"SLE10-SDK-SP2-Online","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sled-10-i586/","autorefresh":true,"distro_target":"sled-10-i586","id":1308,"enabled":true},{"id":1312,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sles-10-ppc/","autorefresh":true,"distro_target":"sles-10-ppc","name":"SLE10-SDK-SP2-Online","installer_updates":false,"description":"SLE10-SDK-SP2-Online for sles-10-ppc"},{"description":"SLE10-SDK-SP2-Online for sles-10-i586","installer_updates":false,"name":"SLE10-SDK-SP2-Online","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sles-10-i586/","distro_target":"sles-10-i586","autorefresh":true,"id":1313,"enabled":true},{"name":"SLE10-SDK-SP2-Online","installer_updates":false,"description":"SLE10-SDK-SP2-Online for sled-10-x86_64","id":1314,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sled-10-x86_64/","autorefresh":true,"distro_target":"sled-10-x86_64"},{"id":1316,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sles-10-ia64/","autorefresh":true,"distro_target":"sles-10-ia64","name":"SLE10-SDK-SP2-Online","installer_updates":false,"description":"SLE10-SDK-SP2-Online for sles-10-ia64"},{"id":1318,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sles-10-s390x/","distro_target":"sles-10-s390x","autorefresh":true,"installer_updates":false,"name":"SLE10-SDK-SP2-Online","description":"SLE10-SDK-SP2-Online for sles-10-s390x"},{"name":"SLE10-SDK-SP2-Online","installer_updates":false,"description":"SLE10-SDK-SP2-Online for sles-10-x86_64","id":1321,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sles-10-x86_64/","autorefresh":true,"distro_target":"sles-10-x86_64"}],"predecessor_ids":[],"cpe":null,"product_type":"extension","description":null,"shortname":null,"free":true,"arch":null,"eula_url":"","friendly_version":"10","release_stage":"released","identifier":"SUSE-Linux-Enterprise-SDK-SP2-migration","id":1178,"extensions":[],"version":"10","recommended":false,"friendly_name":"SUSE Linux Enterprise Software Development Kit 10 online (Migration)","migration_extra":false,"release_type":"online","former_identifier":"SUSE-Linux-Enterprise-SDK-SP2-migration","name":"SUSE Linux Enterprise Software Development Kit","offline_predecessor_ids":[]},{"recommended":false,"version":"10.2","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Subscription Management Tool","release_type":null,"former_identifier":"SUSE-Linux-Enterprise-SMT-SP2","migration_extra":false,"friendly_name":"SUSE Linux Enterprise Subscription Management Tool 10 SP2","friendly_version":"10 SP2","extensions":[],"release_stage":"released","identifier":"SUSE-Linux-Enterprise-SMT-SP2","id":1195,"free":true,"description":null,"shortname":null,"eula_url":"","arch":null,"predecessor_ids":[],"product_class":"SLESMT","online_predecessor_ids":[],"repositories":[{"name":"SLE10-SP2-SMT-Updates","installer_updates":false,"description":"SLE10-SP2-SMT-Updates for sles-10-x86_64","id":1398,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP2-SMT-Updates/sles-10-x86_64/","autorefresh":true,"distro_target":"sles-10-x86_64"},{"description":"SLE10-SP2-SMT-Updates for sles-10-i586","installer_updates":false,"name":"SLE10-SP2-SMT-Updates","distro_target":"sles-10-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP2-SMT-Updates/sles-10-i586/","enabled":true,"id":1399}],"product_type":"extension","cpe":null}],"friendly_version":"10 SP2","migration_extra":false,"friendly_name":"SUSE Linux Enterprise Server 10 SP2 s390x","former_identifier":"SUSE-Linux-Enterprise-Server-SP2","release_type":null,"name":"SUSE Linux Enterprise Server","offline_predecessor_ids":[],"version":"10","recommended":false},{"identifier":"SUSE_SLES","release_stage":"released","id":805,"extensions":[{"recommended":false,"version":"1.0","name":"SUSE WebYaST","offline_predecessor_ids":[],"friendly_name":"SUSE WebYaST 1.0","migration_extra":false,"release_type":null,"former_identifier":"sle-11-WebYaST","friendly_version":"1.0","extensions":[],"release_stage":"released","identifier":"sle-11-WebYaST","id":836,"shortname":null,"description":null,"free":true,"eula_url":"","arch":null,"predecessor_ids":[],"product_class":"WEBYAST","online_predecessor_ids":[],"repositories":[{"enabled":true,"id":829,"distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-WebYaST-1.0-Updates/sle-11-i586/","installer_updates":false,"name":"SLE11-WebYaST-1.0-Updates","description":"SLE11-WebYaST-1.0-Updates for sle-11-i586"},{"id":830,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-WebYaST-1.0-Pool/sle-11-ia64/","autorefresh":true,"distro_target":"sle-11-ia64","name":"SLE11-WebYaST-1.0-Pool","installer_updates":false,"description":"SLE11-WebYaST-1.0-Pool for sle-11-ia64"},{"name":"SLE11-WebYaST-1.0-Updates","installer_updates":false,"description":"SLE11-WebYaST-1.0-Updates for sle-11-ppc64","enabled":true,"id":831,"autorefresh":true,"distro_target":"sle-11-ppc64","url":"https://updates.suse.com/repo/$RCE/SLE11-WebYaST-1.0-Updates/sle-11-ppc64/"},{"enabled":false,"id":832,"distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-WebYaST-1.0-Pool/sle-11-i586/","installer_updates":false,"name":"SLE11-WebYaST-1.0-Pool","description":"SLE11-WebYaST-1.0-Pool for sle-11-i586"},{"description":"SLE11-WebYaST-1.0-Pool for sle-11-s390x","installer_updates":false,"name":"SLE11-WebYaST-1.0-Pool","url":"https://updates.suse.com/repo/$RCE/SLE11-WebYaST-1.0-Pool/sle-11-s390x/","distro_target":"sle-11-s390x","autorefresh":true,"id":833,"enabled":false},{"enabled":true,"id":834,"distro_target":"sle-11-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-WebYaST-1.0-Updates/sle-11-s390x/","installer_updates":false,"name":"SLE11-WebYaST-1.0-Updates","description":"SLE11-WebYaST-1.0-Updates for sle-11-s390x"},{"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE11-WebYaST-1.0-Updates/sle-11-x86_64/","enabled":true,"id":835,"description":"SLE11-WebYaST-1.0-Updates for sle-11-x86_64","name":"SLE11-WebYaST-1.0-Updates","installer_updates":false},{"url":"https://updates.suse.com/repo/$RCE/SLE11-WebYaST-1.0-Pool/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true,"id":836,"enabled":false,"description":"SLE11-WebYaST-1.0-Pool for sle-11-x86_64","installer_updates":false,"name":"SLE11-WebYaST-1.0-Pool"},{"name":"SLE11-WebYaST-1.0-Updates","installer_updates":false,"description":"SLE11-WebYaST-1.0-Updates for sle-11-ia64","enabled":true,"id":837,"autorefresh":true,"distro_target":"sle-11-ia64","url":"https://updates.suse.com/repo/$RCE/SLE11-WebYaST-1.0-Updates/sle-11-ia64/"},{"url":"https://updates.suse.com/repo/$RCE/SLE11-WebYaST-1.0-Pool/sle-11-ppc64/","autorefresh":true,"distro_target":"sle-11-ppc64","id":838,"enabled":false,"description":"SLE11-WebYaST-1.0-Pool for sle-11-ppc64","name":"SLE11-WebYaST-1.0-Pool","installer_updates":false}],"cpe":null,"product_type":"extension"},{"version":"11","recommended":false,"release_type":null,"former_identifier":"sle-hae","friendly_name":"SUSE Linux Enterprise High Availability Extension 11 s390x","migration_extra":false,"offline_predecessor_ids":[],"name":"SUSE Linux Enterprise High Availability Extension","friendly_version":"11","identifier":"sle-hae","release_stage":"released","id":1086,"extensions":[],"free":false,"shortname":null,"description":null,"arch":"s390x","eula_url":"","online_predecessor_ids":[],"product_class":"SLE-HAE-Z","repositories":[{"id":1100,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-Updates/sle-11-s390x/","autorefresh":true,"distro_target":"sle-11-s390x","name":"SLE11-HAE-Updates","installer_updates":false,"description":"SLE11-HAE-Updates for sle-11-s390x"},{"description":"SLE11-HAE-Pool for sle-11-s390x","name":"SLE11-HAE-Pool","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-Pool/sle-11-s390x/","autorefresh":true,"distro_target":"sle-11-s390x","id":1101,"enabled":false}],"predecessor_ids":[],"product_type":"extension","cpe":null},{"product_type":"extension","cpe":null,"product_class":"SLE-HAE-Z","online_predecessor_ids":[],"repositories":[{"autorefresh":true,"distro_target":"sle-11-s390x","url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP1-Pool/sle-11-s390x/","enabled":true,"id":1094,"description":"SLE11-HAE-SP1-Pool for sle-11-s390x","name":"SLE11-HAE-SP1-Pool","installer_updates":false}],"predecessor_ids":[],"arch":"s390x","eula_url":"","free":false,"shortname":null,"description":null,"identifier":"sle-hae-SP1-migration","release_stage":"released","id":1087,"extensions":[],"friendly_version":"11","release_type":null,"former_identifier":"sle-hae-SP1-migration","friendly_name":"SUSE Linux Enterprise High Availability Extension 11 s390x (Migration)","migration_extra":false,"offline_predecessor_ids":[],"name":"SUSE Linux Enterprise High Availability Extension","version":"11","recommended":false},{"cpe":null,"product_type":"extension","repositories":[{"name":"SLE11-SDK-Updates","installer_updates":false,"description":"SLE11-SDK-Updates for sle-11-ppc64","id":1247,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-Updates/sle-11-ppc64/","autorefresh":true,"distro_target":"sle-11-ppc64"},{"autorefresh":true,"distro_target":"sle-11-s390x","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-Pool/sle-11-s390x/","enabled":false,"id":1248,"description":"SLE11-SDK-Pool for sle-11-s390x","name":"SLE11-SDK-Pool","installer_updates":false},{"description":"SLE11-SDK-Updates for sle-11-x86_64","installer_updates":false,"name":"SLE11-SDK-Updates","distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-Updates/sle-11-x86_64/","enabled":true,"id":1249},{"description":"SLE11-SDK-Pool for sle-11-i586","installer_updates":false,"name":"SLE11-SDK-Pool","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-Pool/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true,"id":1250,"enabled":false},{"description":"SLE11-SDK-Pool for sle-11-x86_64","name":"SLE11-SDK-Pool","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-Pool/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64","id":1251,"enabled":false},{"description":"SLE11-SDK-Pool for sle-11-ppc64","name":"SLE11-SDK-Pool","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-Pool/sle-11-ppc64/","autorefresh":true,"distro_target":"sle-11-ppc64","id":1252,"enabled":false},{"description":"SLE11-SDK-Updates for sle-11-i586","name":"SLE11-SDK-Updates","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-Updates/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","id":1253,"enabled":true},{"enabled":false,"id":1254,"distro_target":"sle-11-ia64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-Pool/sle-11-ia64/","installer_updates":false,"name":"SLE11-SDK-Pool","description":"SLE11-SDK-Pool for sle-11-ia64"},{"name":"SLE11-SDK-Updates","installer_updates":false,"description":"SLE11-SDK-Updates for sle-11-s390x","id":1255,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-Updates/sle-11-s390x/","autorefresh":true,"distro_target":"sle-11-s390x"},{"enabled":true,"id":1256,"autorefresh":true,"distro_target":"sle-11-ia64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-Updates/sle-11-ia64/","name":"SLE11-SDK-Updates","installer_updates":false,"description":"SLE11-SDK-Updates for sle-11-ia64"}],"online_predecessor_ids":[],"product_class":"SLE-SDK","predecessor_ids":[],"arch":null,"eula_url":"","shortname":null,"description":null,"free":true,"identifier":"sle-sdk","release_stage":"released","id":1158,"extensions":[],"friendly_version":"11","migration_extra":false,"friendly_name":"SUSE Linux Enterprise Software Development Kit 11","release_type":null,"former_identifier":"sle-sdk","name":"SUSE Linux Enterprise Software Development Kit","offline_predecessor_ids":[],"version":"11","recommended":false},{"free":true,"shortname":null,"description":null,"eula_url":"","arch":null,"predecessor_ids":[],"online_predecessor_ids":[],"repositories":[{"description":"SLE11-SDK-SP1-Pool for sle-11-ia64","installer_updates":false,"name":"SLE11-SDK-SP1-Pool","distro_target":"sle-11-ia64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-ia64/","enabled":true,"id":1258},{"autorefresh":true,"distro_target":"sle-11-s390x","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-s390x/","enabled":true,"id":1259,"description":"SLE11-SDK-SP1-Pool for sle-11-s390x","name":"SLE11-SDK-SP1-Pool","installer_updates":false},{"description":"SLE11-SDK-SP1-Pool for sle-11-ppc64","installer_updates":false,"name":"SLE11-SDK-SP1-Pool","distro_target":"sle-11-ppc64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-ppc64/","enabled":true,"id":1261},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","id":1263,"enabled":true,"description":"SLE11-SDK-SP1-Pool for sle-11-i586","name":"SLE11-SDK-SP1-Pool","installer_updates":false},{"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-x86_64/","enabled":true,"id":1264,"description":"SLE11-SDK-SP1-Pool for sle-11-x86_64","name":"SLE11-SDK-SP1-Pool","installer_updates":false}],"product_class":"SLE-SDK","product_type":"extension","cpe":null,"recommended":false,"version":"11","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Software Development Kit","former_identifier":"sle-sdk-SP1-migration","release_type":null,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Software Development Kit 11 (Migration)","friendly_version":"11","extensions":[],"release_stage":"released","id":1162,"identifier":"sle-sdk-SP1-migration"},{"eula_url":"","arch":null,"free":true,"shortname":null,"description":null,"product_type":"extension","cpe":null,"predecessor_ids":[],"repositories":[{"id":1392,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP2-Pool/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64","name":"SLE11-SMT-SP2-Pool","installer_updates":false,"description":"SLE11-SMT-SP2-Pool for sle-11-x86_64"},{"enabled":true,"id":1394,"distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP2-Pool/sle-11-i586/","installer_updates":false,"name":"SLE11-SMT-SP2-Pool","description":"SLE11-SMT-SP2-Pool for sle-11-i586"},{"description":"SLE11-SMT-SP2-Pool for sle-11-s390x","installer_updates":false,"name":"SLE11-SMT-SP2-Pool","distro_target":"sle-11-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP2-Pool/sle-11-s390x/","enabled":true,"id":1396}],"online_predecessor_ids":[],"product_class":"SLESMT","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Subscription Management Tool","release_type":null,"former_identifier":"sle-smt-SP2-migration","migration_extra":false,"friendly_name":"SUSE Linux Enterprise Subscription Management Tool 11 (Migration)","recommended":false,"version":"11","extensions":[],"release_stage":"released","id":1194,"identifier":"sle-smt-SP2-migration","friendly_version":"11"},{"extensions":[],"release_stage":"released","identifier":"sle-smt","id":1196,"friendly_version":"11","name":"SUSE Linux Enterprise Subscription Management Tool","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Subscription Management Tool 11","former_identifier":"sle-smt","release_type":null,"recommended":false,"version":"11","cpe":null,"product_type":"extension","predecessor_ids":[],"product_class":"SLESMT","online_predecessor_ids":[],"repositories":[{"id":1400,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-Updates/sle-11-s390x/","distro_target":"sle-11-s390x","autorefresh":true,"installer_updates":false,"name":"SLE11-SMT-Updates","description":"SLE11-SMT-Updates for sle-11-s390x"},{"enabled":true,"id":1401,"distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-Updates/sle-11-x86_64/","installer_updates":false,"name":"SLE11-SMT-Updates","description":"SLE11-SMT-Updates for sle-11-x86_64"},{"distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-Updates/sle-11-i586/","enabled":true,"id":1402,"description":"SLE11-SMT-Updates for sle-11-i586","installer_updates":false,"name":"SLE11-SMT-Updates"}],"eula_url":"","arch":null,"description":null,"shortname":null,"free":true}],"friendly_version":"11","former_identifier":"SUSE_SLES","release_type":null,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Server 11 s390x","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Server","version":"11","recommended":false,"product_type":"base","cpe":"cpe:/o:suse:suse_sles:11","online_predecessor_ids":[],"repositories":[{"description":"SLES11-Extras for sle-11-s390x","name":"SLES11-Extras","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-s390x","url":"https://updates.suse.com/repo/$RCE/SLES11-Extras/sle-11-s390x/","enabled":false,"id":689},{"id":811,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-Debuginfo-Updates/sle-11-s390x/","autorefresh":true,"distro_target":"sle-11-s390x","name":"SLE11-Debuginfo-Updates","installer_updates":false,"description":"SLE11-Debuginfo-Updates for sle-11-s390x"},{"name":"SLES11-Updates","installer_updates":false,"description":"SLES11-Updates for sle-11-s390x","id":812,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-Updates/sle-11-s390x/","autorefresh":true,"distro_target":"sle-11-s390x"},{"description":"SLE11-Debuginfo-Pool for sle-11-s390x","installer_updates":false,"name":"SLE11-Debuginfo-Pool","distro_target":"sle-11-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-Debuginfo-Pool/sle-11-s390x/","enabled":false,"id":813},{"name":"SLES11-Pool","installer_updates":false,"description":"SLES11-Pool for sle-11-s390x","enabled":false,"id":814,"autorefresh":true,"distro_target":"sle-11-s390x","url":"https://updates.suse.com/repo/$RCE/SLES11-Pool/sle-11-s390x/"}],"product_class":"SLES-Z","predecessor_ids":[],"arch":"s390x","eula_url":"","free":false,"shortname":null,"description":null},{"repositories":[{"url":"https://updates.suse.com/repo/$RCE/SLES10-SP3-Online/sles-10-x86_64/","autorefresh":true,"distro_target":"sles-10-x86_64","id":755,"enabled":true,"description":"SLES10-SP3-Online for sles-10-x86_64","name":"SLES10-SP3-Online","installer_updates":false}],"online_predecessor_ids":[],"product_class":"7261","predecessor_ids":[],"product_type":"base","cpe":null,"free":false,"shortname":null,"description":null,"arch":"x86_64","eula_url":"","friendly_version":"10","release_stage":"released","id":806,"identifier":"SUSE-Linux-Enterprise-Server-SP3-migration","extensions":[],"version":"10","recommended":false,"former_identifier":"SUSE-Linux-Enterprise-Server-SP3-migration","release_type":null,"friendly_name":"SUSE Linux Enterprise Server 10 x86_64 (Migration)","migration_extra":false,"offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Server"},{"friendly_version":"10","extensions":[],"identifier":"SUSE-Linux-Enterprise-Server-SP3-migration","release_stage":"released","id":807,"recommended":false,"version":"10","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Server","former_identifier":"SUSE-Linux-Enterprise-Server-SP3-migration","release_type":null,"friendly_name":"SUSE Linux Enterprise Server 10 s390 (Migration)","migration_extra":false,"predecessor_ids":[],"online_predecessor_ids":[],"product_class":"SLES-Z","repositories":[{"url":"https://updates.suse.com/repo/$RCE/SLES10-SP3-Online/sles-10-s390x/","distro_target":"sles-10-s390x","autorefresh":true,"id":671,"enabled":true,"description":"SLES10-SP3-Online for sles-10-s390x","installer_updates":false,"name":"SLES10-SP3-Online"}],"product_type":"base","cpe":null,"free":false,"description":null,"shortname":null,"eula_url":"","arch":"s390"},{"predecessor_ids":[],"online_predecessor_ids":[],"repositories":[{"description":"SLES10-SP3-Online for sles-10-i586","name":"SLES10-SP3-Online","installer_updates":false,"autorefresh":true,"distro_target":"sles-10-i586","url":"https://updates.suse.com/repo/$RCE/SLES10-SP3-Online/sles-10-i586/","enabled":false,"id":663},{"description":"SLE10-SP3-Debuginfo-Updates for sles-10-i586","name":"SLE10-SP3-Debuginfo-Updates","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Updates/sles-10-i586/","autorefresh":true,"distro_target":"sles-10-i586","id":664,"enabled":false},{"description":"SLES10-GPLv3-Extras for sles-10-i586","installer_updates":false,"name":"SLES10-GPLv3-Extras","url":"https://updates.suse.com/repo/$RCE/SLES10-GPLv3-Extras/sles-10-i586/","distro_target":"sles-10-i586","autorefresh":true,"id":665,"enabled":false},{"distro_target":"sles-10-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLES10-SP3-LTSS-Updates/sles-10-i586/","enabled":true,"id":666,"description":"SLES10-SP3-LTSS-Updates for sles-10-i586","installer_updates":false,"name":"SLES10-SP3-LTSS-Updates"},{"description":"SLE10-SP3-Debuginfo-Online for sles-10-i586","name":"SLE10-SP3-Debuginfo-Online","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Online/sles-10-i586/","autorefresh":true,"distro_target":"sles-10-i586","id":667,"enabled":false},{"description":"SLES10-SP3-Pool for sles-10-i586","installer_updates":false,"name":"SLES10-SP3-Pool","distro_target":"sles-10-i586","autorefresh":false,"url":"https://updates.suse.com/repo/$RCE/SLES10-SP3-Pool/sles-10-i586/","enabled":true,"id":668},{"description":"SLE10-SP3-Debuginfo-Pool for sles-10-i586","name":"SLE10-SP3-Debuginfo-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sles-10-i586","url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Pool/sles-10-i586/","enabled":false,"id":669},{"description":"SLES10-SP3-Updates for sles-10-i586","installer_updates":false,"name":"SLES10-SP3-Updates","distro_target":"sles-10-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLES10-SP3-Updates/sles-10-i586/","enabled":true,"id":670}],"product_class":"7261","product_type":"base","cpe":null,"free":false,"shortname":null,"description":null,"eula_url":"","arch":"i486","friendly_version":"10 SP3","extensions":[{"product_type":"extension","cpe":null,"online_predecessor_ids":[],"repositories":[{"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Pool/sles-10-ppc/","distro_target":"sles-10-ppc","autorefresh":false,"id":1322,"enabled":true,"description":"SLE10-SDK-SP3-Pool for sles-10-ppc","installer_updates":false,"name":"SLE10-SDK-SP3-Pool"},{"enabled":true,"id":1323,"autorefresh":false,"distro_target":"sles-10-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Pool/sles-10-x86_64/","name":"SLE10-SDK-SP3-Pool","installer_updates":false,"description":"SLE10-SDK-SP3-Pool for sles-10-x86_64"},{"distro_target":"sled-10-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sled-10-i586/","enabled":true,"id":1324,"description":"SLE10-SDK-SP3-Online for sled-10-i586","installer_updates":false,"name":"SLE10-SDK-SP3-Online"},{"description":"SLE10-SDK-SP3-Updates for sled-10-x86_64","installer_updates":false,"name":"SLE10-SDK-SP3-Updates","distro_target":"sled-10-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Updates/sled-10-x86_64/","enabled":true,"id":1325},{"name":"SLE10-SDK-SP3-Online","installer_updates":false,"description":"SLE10-SDK-SP3-Online for sled-10-x86_64","enabled":true,"id":1326,"autorefresh":true,"distro_target":"sled-10-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sled-10-x86_64/"},{"description":"SLE10-SDK-SP3-Pool for sled-10-x86_64","installer_updates":false,"name":"SLE10-SDK-SP3-Pool","distro_target":"sled-10-x86_64","autorefresh":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Pool/sled-10-x86_64/","enabled":true,"id":1327},{"id":1328,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sles-10-ia64/","distro_target":"sles-10-ia64","autorefresh":true,"installer_updates":false,"name":"SLE10-SDK-SP3-Online","description":"SLE10-SDK-SP3-Online for sles-10-ia64"},{"id":1329,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Updates/sles-10-ia64/","distro_target":"sles-10-ia64","autorefresh":true,"installer_updates":false,"name":"SLE10-SDK-SP3-Updates","description":"SLE10-SDK-SP3-Updates for sles-10-ia64"},{"distro_target":"sles-10-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sles-10-i586/","enabled":true,"id":1330,"description":"SLE10-SDK-SP3-Online for sles-10-i586","installer_updates":false,"name":"SLE10-SDK-SP3-Online"},{"id":1331,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Pool/sles-10-ia64/","autorefresh":false,"distro_target":"sles-10-ia64","name":"SLE10-SDK-SP3-Pool","installer_updates":false,"description":"SLE10-SDK-SP3-Pool for sles-10-ia64"},{"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Updates/sles-10-x86_64/","autorefresh":true,"distro_target":"sles-10-x86_64","id":1332,"enabled":true,"description":"SLE10-SDK-SP3-Updates for sles-10-x86_64","name":"SLE10-SDK-SP3-Updates","installer_updates":false},{"distro_target":"sles-10-i586","autorefresh":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Pool/sles-10-i586/","enabled":true,"id":1333,"description":"SLE10-SDK-SP3-Pool for sles-10-i586","installer_updates":false,"name":"SLE10-SDK-SP3-Pool"},{"autorefresh":true,"distro_target":"sles-10-i586","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Updates/sles-10-i586/","enabled":true,"id":1334,"description":"SLE10-SDK-SP3-Updates for sles-10-i586","name":"SLE10-SDK-SP3-Updates","installer_updates":false},{"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sles-10-s390x/","autorefresh":true,"distro_target":"sles-10-s390x","id":1335,"enabled":true,"description":"SLE10-SDK-SP3-Online for sles-10-s390x","name":"SLE10-SDK-SP3-Online","installer_updates":false},{"description":"SLE10-SDK-SP3-Updates for sles-10-ppc","name":"SLE10-SDK-SP3-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sles-10-ppc","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Updates/sles-10-ppc/","enabled":true,"id":1336},{"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Pool/sles-10-s390x/","autorefresh":false,"distro_target":"sles-10-s390x","id":1337,"enabled":true,"description":"SLE10-SDK-SP3-Pool for sles-10-s390x","name":"SLE10-SDK-SP3-Pool","installer_updates":false},{"id":1338,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Pool/sled-10-i586/","autorefresh":false,"distro_target":"sled-10-i586","name":"SLE10-SDK-SP3-Pool","installer_updates":false,"description":"SLE10-SDK-SP3-Pool for sled-10-i586"},{"description":"SLE10-SDK-SP3-Updates for sles-10-s390x","installer_updates":false,"name":"SLE10-SDK-SP3-Updates","distro_target":"sles-10-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Updates/sles-10-s390x/","enabled":true,"id":1339},{"description":"SLE10-SDK-SP3-Updates for sled-10-i586","installer_updates":false,"name":"SLE10-SDK-SP3-Updates","distro_target":"sled-10-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Updates/sled-10-i586/","enabled":true,"id":1340},{"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sles-10-x86_64/","autorefresh":true,"distro_target":"sles-10-x86_64","id":1341,"enabled":true,"description":"SLE10-SDK-SP3-Online for sles-10-x86_64","name":"SLE10-SDK-SP3-Online","installer_updates":false},{"enabled":true,"id":1342,"autorefresh":true,"distro_target":"sles-10-ppc","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sles-10-ppc/","name":"SLE10-SDK-SP3-Online","installer_updates":false,"description":"SLE10-SDK-SP3-Online for sles-10-ppc"}],"product_class":"SLE-SDK","predecessor_ids":[],"arch":null,"eula_url":"","free":true,"description":null,"shortname":null,"identifier":"SUSE-Linux-Enterprise-SDK-SP3","release_stage":"released","id":1179,"extensions":[],"friendly_version":"10 SP3","release_type":null,"former_identifier":"SUSE-Linux-Enterprise-SDK-SP3","migration_extra":false,"friendly_name":"SUSE Linux Enterprise Software Development Kit 10 SP3","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Software Development Kit","version":"10","recommended":false},{"version":"10","recommended":false,"former_identifier":"SUSE-Linux-Enterprise-SDK-SP3-migration","release_type":null,"friendly_name":"SUSE Linux Enterprise Software Development Kit 10 (Migration)","migration_extra":false,"offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Software Development Kit","friendly_version":"10","release_stage":"released","id":1180,"identifier":"SUSE-Linux-Enterprise-SDK-SP3-migration","extensions":[],"free":true,"description":null,"shortname":null,"arch":null,"eula_url":"","product_class":"SLE-SDK","online_predecessor_ids":[],"repositories":[{"description":"SLE10-SDK-SP3-Online for sled-10-i586","name":"SLE10-SDK-SP3-Online","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sled-10-i586/","autorefresh":true,"distro_target":"sled-10-i586","id":1324,"enabled":true},{"description":"SLE10-SDK-SP3-Online for sled-10-x86_64","installer_updates":false,"name":"SLE10-SDK-SP3-Online","distro_target":"sled-10-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sled-10-x86_64/","enabled":true,"id":1326},{"id":1328,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sles-10-ia64/","distro_target":"sles-10-ia64","autorefresh":true,"installer_updates":false,"name":"SLE10-SDK-SP3-Online","description":"SLE10-SDK-SP3-Online for sles-10-ia64"},{"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sles-10-i586/","autorefresh":true,"distro_target":"sles-10-i586","id":1330,"enabled":true,"description":"SLE10-SDK-SP3-Online for sles-10-i586","name":"SLE10-SDK-SP3-Online","installer_updates":false},{"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sles-10-s390x/","distro_target":"sles-10-s390x","autorefresh":true,"id":1335,"enabled":true,"description":"SLE10-SDK-SP3-Online for sles-10-s390x","installer_updates":false,"name":"SLE10-SDK-SP3-Online"},{"id":1341,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sles-10-x86_64/","distro_target":"sles-10-x86_64","autorefresh":true,"installer_updates":false,"name":"SLE10-SDK-SP3-Online","description":"SLE10-SDK-SP3-Online for sles-10-x86_64"},{"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sles-10-ppc/","autorefresh":true,"distro_target":"sles-10-ppc","id":1342,"enabled":true,"description":"SLE10-SDK-SP3-Online for sles-10-ppc","name":"SLE10-SDK-SP3-Online","installer_updates":false}],"predecessor_ids":[],"product_type":"extension","cpe":null},{"product_type":"extension","cpe":null,"online_predecessor_ids":[],"repositories":[{"distro_target":"sles-10-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Updates/sles-10-i586/","enabled":false,"id":664,"description":"SLE10-SP3-Debuginfo-Updates for sles-10-i586","installer_updates":false,"name":"SLE10-SP3-Debuginfo-Updates"},{"enabled":false,"id":669,"distro_target":"sles-10-i586","autorefresh":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Pool/sles-10-i586/","installer_updates":false,"name":"SLE10-SP3-Debuginfo-Pool","description":"SLE10-SP3-Debuginfo-Pool for sles-10-i586"},{"name":"SLE10-SP3-Debuginfo-Pool","installer_updates":false,"description":"SLE10-SP3-Debuginfo-Pool for sles-10-s390x","enabled":false,"id":672,"autorefresh":false,"distro_target":"sles-10-s390x","url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Pool/sles-10-s390x/"},{"id":675,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Updates/sles-10-s390x/","distro_target":"sles-10-s390x","autorefresh":true,"installer_updates":false,"name":"SLE10-SP3-Debuginfo-Updates","description":"SLE10-SP3-Debuginfo-Updates for sles-10-s390x"},{"enabled":false,"id":750,"autorefresh":true,"distro_target":"sles-10-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Updates/sles-10-x86_64/","name":"SLE10-SP3-Debuginfo-Updates","installer_updates":false,"description":"SLE10-SP3-Debuginfo-Updates for sles-10-x86_64"},{"autorefresh":false,"distro_target":"sles-10-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Pool/sles-10-x86_64/","enabled":false,"id":751,"description":"SLE10-SP3-Debuginfo-Pool for sles-10-x86_64","name":"SLE10-SP3-Debuginfo-Pool","installer_updates":false},{"url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Pool/sles-10-ppc/","autorefresh":false,"distro_target":"sles-10-ppc","id":779,"enabled":false,"description":"SLE10-SP3-Debuginfo-Pool for sles-10-ppc","name":"SLE10-SP3-Debuginfo-Pool","installer_updates":false},{"installer_updates":false,"name":"SLE10-SP3-Debuginfo-Updates","description":"SLE10-SP3-Debuginfo-Updates for sles-10-ppc","id":780,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Updates/sles-10-ppc/","distro_target":"sles-10-ppc","autorefresh":true},{"installer_updates":false,"name":"SLE10-SP3-Debuginfo-Pool","description":"SLE10-SP3-Debuginfo-Pool for sles-10-ia64","enabled":false,"id":788,"distro_target":"sles-10-ia64","autorefresh":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Pool/sles-10-ia64/"},{"description":"SLE10-SP3-Debuginfo-Updates for sles-10-ia64","installer_updates":false,"name":"SLE10-SP3-Debuginfo-Updates","url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Updates/sles-10-ia64/","distro_target":"sles-10-ia64","autorefresh":true,"id":789,"enabled":false},{"url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Pool/sled-10-x86_64/","distro_target":"sled-10-x86_64","autorefresh":false,"id":869,"enabled":false,"description":"SLE10-SP3-Debuginfo-Pool for sled-10-x86_64","installer_updates":false,"name":"SLE10-SP3-Debuginfo-Pool"},{"distro_target":"sled-10-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Updates/sled-10-x86_64/","enabled":false,"id":870,"description":"SLE10-SP3-Debuginfo-Updates for sled-10-x86_64","installer_updates":false,"name":"SLE10-SP3-Debuginfo-Updates"},{"description":"SLE10-SP3-Debuginfo-Pool for sled-10-i586","installer_updates":false,"name":"SLE10-SP3-Debuginfo-Pool","url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Pool/sled-10-i586/","distro_target":"sled-10-i586","autorefresh":false,"id":895,"enabled":false},{"name":"SLE10-SP3-Debuginfo-Updates","installer_updates":false,"description":"SLE10-SP3-Debuginfo-Updates for sled-10-i586","enabled":false,"id":896,"autorefresh":true,"distro_target":"sled-10-i586","url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Updates/sled-10-i586/"},{"id":1403,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-SMT-Updates/sles-10-i586/","distro_target":"sles-10-i586","autorefresh":true,"installer_updates":false,"name":"SLE10-SP3-SMT-Updates","description":"SLE10-SP3-SMT-Updates for sles-10-i586"},{"url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-SMT-Updates/sles-10-x86_64/","autorefresh":true,"distro_target":"sles-10-x86_64","id":1404,"enabled":true,"description":"SLE10-SP3-SMT-Updates for sles-10-x86_64","name":"SLE10-SP3-SMT-Updates","installer_updates":false}],"product_class":"SLESMT","predecessor_ids":[],"arch":null,"eula_url":"","free":true,"description":null,"shortname":null,"id":1197,"release_stage":"released","identifier":"SUSE-Linux-Enterprise-SMT-SP3","extensions":[],"friendly_version":"10 SP3","release_type":null,"former_identifier":"SUSE-Linux-Enterprise-SMT-SP3","migration_extra":false,"friendly_name":"SUSE Linux Enterprise Subscription Management Tool 10 SP3","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Subscription Management Tool","version":"10.3","recommended":false}],"id":808,"release_stage":"released","identifier":"SUSE-Linux-Enterprise-Server-SP3","recommended":false,"version":"10","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Server","release_type":null,"former_identifier":"SUSE-Linux-Enterprise-Server-SP3","friendly_name":"SUSE Linux Enterprise Server 10 SP3 i486","migration_extra":false},{"cpe":null,"product_type":"base","product_class":"7261","online_predecessor_ids":[],"repositories":[{"enabled":true,"id":686,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-Pool/sle-11-i586/","name":"SLES11-SP1-Pool","installer_updates":false,"description":"SLES11-SP1-Pool for sle-11-i586"}],"predecessor_ids":[],"arch":"i586","eula_url":"","description":null,"shortname":null,"free":false,"id":809,"release_stage":"released","identifier":"SUSE_SLES-SP1-migration","extensions":[{"product_type":"extension","cpe":null,"predecessor_ids":[],"online_predecessor_ids":[],"product_class":"WEBYAST","repositories":[{"installer_updates":false,"name":"SLE11-WebYaST-1.0-Updates","description":"SLE11-WebYaST-1.0-Updates for sle-11-i586","id":829,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-WebYaST-1.0-Updates/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true},{"description":"SLE11-WebYaST-1.0-Pool for sle-11-ia64","installer_updates":false,"name":"SLE11-WebYaST-1.0-Pool","url":"https://updates.suse.com/repo/$RCE/SLE11-WebYaST-1.0-Pool/sle-11-ia64/","distro_target":"sle-11-ia64","autorefresh":true,"id":830,"enabled":false},{"id":831,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-WebYaST-1.0-Updates/sle-11-ppc64/","autorefresh":true,"distro_target":"sle-11-ppc64","name":"SLE11-WebYaST-1.0-Updates","installer_updates":false,"description":"SLE11-WebYaST-1.0-Updates for sle-11-ppc64"},{"id":832,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-WebYaST-1.0-Pool/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","name":"SLE11-WebYaST-1.0-Pool","installer_updates":false,"description":"SLE11-WebYaST-1.0-Pool for sle-11-i586"},{"description":"SLE11-WebYaST-1.0-Pool for sle-11-s390x","installer_updates":false,"name":"SLE11-WebYaST-1.0-Pool","url":"https://updates.suse.com/repo/$RCE/SLE11-WebYaST-1.0-Pool/sle-11-s390x/","distro_target":"sle-11-s390x","autorefresh":true,"id":833,"enabled":false},{"distro_target":"sle-11-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-WebYaST-1.0-Updates/sle-11-s390x/","enabled":true,"id":834,"description":"SLE11-WebYaST-1.0-Updates for sle-11-s390x","installer_updates":false,"name":"SLE11-WebYaST-1.0-Updates"},{"installer_updates":false,"name":"SLE11-WebYaST-1.0-Updates","description":"SLE11-WebYaST-1.0-Updates for sle-11-x86_64","enabled":true,"id":835,"distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-WebYaST-1.0-Updates/sle-11-x86_64/"},{"url":"https://updates.suse.com/repo/$RCE/SLE11-WebYaST-1.0-Pool/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64","id":836,"enabled":false,"description":"SLE11-WebYaST-1.0-Pool for sle-11-x86_64","name":"SLE11-WebYaST-1.0-Pool","installer_updates":false},{"autorefresh":true,"distro_target":"sle-11-ia64","url":"https://updates.suse.com/repo/$RCE/SLE11-WebYaST-1.0-Updates/sle-11-ia64/","enabled":true,"id":837,"description":"SLE11-WebYaST-1.0-Updates for sle-11-ia64","name":"SLE11-WebYaST-1.0-Updates","installer_updates":false},{"description":"SLE11-WebYaST-1.0-Pool for sle-11-ppc64","installer_updates":false,"name":"SLE11-WebYaST-1.0-Pool","url":"https://updates.suse.com/repo/$RCE/SLE11-WebYaST-1.0-Pool/sle-11-ppc64/","distro_target":"sle-11-ppc64","autorefresh":true,"id":838,"enabled":false}],"eula_url":"","arch":null,"free":true,"description":null,"shortname":null,"extensions":[],"release_stage":"released","id":836,"identifier":"sle-11-WebYaST","friendly_version":"1.0","offline_predecessor_ids":[],"name":"SUSE WebYaST","former_identifier":"sle-11-WebYaST","release_type":null,"migration_extra":false,"friendly_name":"SUSE WebYaST 1.0","recommended":false,"version":"1.0"},{"version":"11","recommended":false,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise High Availability Extension 11 i586","release_type":null,"former_identifier":"sle-hae","name":"SUSE Linux Enterprise High Availability Extension","offline_predecessor_ids":[],"friendly_version":"11","release_stage":"released","identifier":"sle-hae","id":969,"extensions":[],"description":null,"shortname":null,"free":false,"arch":"i586","eula_url":"","repositories":[{"description":"SLE11-HAE-Pool for sle-11-i586","installer_updates":false,"name":"SLE11-HAE-Pool","distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-Pool/sle-11-i586/","enabled":false,"id":954},{"id":955,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-Updates/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","name":"SLE11-HAE-Updates","installer_updates":false,"description":"SLE11-HAE-Updates for sle-11-i586"}],"online_predecessor_ids":[],"product_class":"SLE-HAE-X86","predecessor_ids":[],"cpe":null,"product_type":"extension"},{"migration_extra":false,"friendly_name":"SUSE Linux Enterprise High Availability Extension 11 i586 (Migration)","release_type":null,"former_identifier":"sle-hae-SP1-migration","name":"SUSE Linux Enterprise High Availability Extension","offline_predecessor_ids":[],"version":"11","recommended":false,"identifier":"sle-hae-SP1-migration","release_stage":"released","id":974,"extensions":[],"friendly_version":"11","arch":"i586","eula_url":"","description":null,"shortname":null,"free":false,"cpe":null,"product_type":"extension","online_predecessor_ids":[],"product_class":"SLE-HAE-X86","repositories":[{"url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP1-Pool/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true,"id":945,"enabled":true,"description":"SLE11-HAE-SP1-Pool for sle-11-i586","installer_updates":false,"name":"SLE11-HAE-SP1-Pool"}],"predecessor_ids":[]},{"free":true,"shortname":null,"description":null,"eula_url":"","arch":null,"predecessor_ids":[],"online_predecessor_ids":[],"product_class":"SLESMT","repositories":[{"description":"SLE11-SMT-SP2-Pool for sle-11-x86_64","installer_updates":false,"name":"SLE11-SMT-SP2-Pool","url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP2-Pool/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true,"id":1392,"enabled":true},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP2-Pool/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true,"id":1394,"enabled":true,"description":"SLE11-SMT-SP2-Pool for sle-11-i586","installer_updates":false,"name":"SLE11-SMT-SP2-Pool"},{"description":"SLE11-SMT-SP2-Pool for sle-11-s390x","installer_updates":false,"name":"SLE11-SMT-SP2-Pool","url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP2-Pool/sle-11-s390x/","distro_target":"sle-11-s390x","autorefresh":true,"id":1396,"enabled":true}],"product_type":"extension","cpe":null,"recommended":false,"version":"11","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Subscription Management Tool","former_identifier":"sle-smt-SP2-migration","release_type":null,"friendly_name":"SUSE Linux Enterprise Subscription Management Tool 11 (Migration)","migration_extra":false,"friendly_version":"11","extensions":[],"id":1194,"release_stage":"released","identifier":"sle-smt-SP2-migration"},{"friendly_version":"11","id":1196,"release_stage":"released","identifier":"sle-smt","extensions":[],"version":"11","recommended":false,"friendly_name":"SUSE Linux Enterprise Subscription Management Tool 11","migration_extra":false,"release_type":null,"former_identifier":"sle-smt","name":"SUSE Linux Enterprise Subscription Management Tool","offline_predecessor_ids":[],"product_class":"SLESMT","online_predecessor_ids":[],"repositories":[{"description":"SLE11-SMT-Updates for sle-11-s390x","name":"SLE11-SMT-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-s390x","url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-Updates/sle-11-s390x/","enabled":true,"id":1400},{"enabled":true,"id":1401,"distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-Updates/sle-11-x86_64/","installer_updates":false,"name":"SLE11-SMT-Updates","description":"SLE11-SMT-Updates for sle-11-x86_64"},{"description":"SLE11-SMT-Updates for sle-11-i586","name":"SLE11-SMT-Updates","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-Updates/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","id":1402,"enabled":true}],"predecessor_ids":[],"cpe":null,"product_type":"extension","description":null,"shortname":null,"free":true,"arch":null,"eula_url":""}],"friendly_version":"11","friendly_name":"SUSE Linux Enterprise Server 11 i586 (Migration)","migration_extra":false,"former_identifier":"SUSE_SLES-SP1-migration","release_type":null,"name":"SUSE Linux Enterprise Server","offline_predecessor_ids":[],"version":"11","recommended":false},{"shortname":null,"description":null,"free":false,"eula_url":"","arch":"i686","predecessor_ids":[],"online_predecessor_ids":[],"product_class":"7261","repositories":[{"enabled":true,"id":694,"autorefresh":true,"distro_target":"sles-10-i586","url":"https://updates.suse.com/repo/$RCE/SLES10-SP4-Online/sles-10-i586/","name":"SLES10-SP4-Online","installer_updates":false,"description":"SLES10-SP4-Online for sles-10-i586"}],"cpe":null,"product_type":"base","recommended":false,"version":"10","name":"SUSE Linux Enterprise Server","offline_predecessor_ids":[],"friendly_name":"SUSE Linux Enterprise Server 10 i686 (Migration)","migration_extra":false,"former_identifier":"SUSE-Linux-Enterprise-Server-SP4-migration","release_type":null,"friendly_version":"10","extensions":[],"release_stage":"released","id":810,"identifier":"SUSE-Linux-Enterprise-Server-SP4-migration"},{"version":"11.2","recommended":false,"former_identifier":"SUSE_SLES","release_type":null,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Server 11 SP2 i586","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Server","friendly_version":"11 SP2","release_stage":"released","id":811,"identifier":"SUSE_SLES","extensions":[{"friendly_version":"1.2","release_stage":"released","identifier":"sle-11-WebYaST","id":837,"extensions":[],"version":"1.2","recommended":false,"migration_extra":false,"friendly_name":"SUSE WebYaST 1.2","former_identifier":"sle-11-WebYaST","release_type":null,"name":"SUSE WebYaST","offline_predecessor_ids":[],"online_predecessor_ids":[],"product_class":"WEBYAST","repositories":[{"description":"SLE11-SP1-WebYaST-1.2-Updates for sle-11-x86_64","name":"SLE11-SP1-WebYaST-1.2-Updates","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-WebYaST-1.2-Updates/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64","id":839,"enabled":true},{"id":840,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-WebYaST-1.2-Pool/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true,"installer_updates":false,"name":"SLE11-SP1-WebYaST-1.2-Pool","description":"SLE11-SP1-WebYaST-1.2-Pool for sle-11-i586"},{"description":"SLE11-SP1-WebYaST-1.2-Pool for sle-11-x86_64","installer_updates":false,"name":"SLE11-SP1-WebYaST-1.2-Pool","distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-WebYaST-1.2-Pool/sle-11-x86_64/","enabled":false,"id":841},{"distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-WebYaST-1.2-Updates/sle-11-i586/","enabled":true,"id":842,"description":"SLE11-SP1-WebYaST-1.2-Updates for sle-11-i586","installer_updates":false,"name":"SLE11-SP1-WebYaST-1.2-Updates"}],"predecessor_ids":[],"cpe":null,"product_type":"extension","description":null,"shortname":null,"free":true,"arch":null,"eula_url":""},{"friendly_version":"11 SP2","extensions":[{"online_predecessor_ids":[],"product_class":"SLE-HAE-GEO","repositories":[{"id":1115,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-GEO-SP2-Updates/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true,"installer_updates":false,"name":"SLE11-HAE-GEO-SP2-Updates","description":"SLE11-HAE-GEO-SP2-Updates for sle-11-i586"}],"predecessor_ids":[],"product_type":"extension","cpe":null,"free":false,"shortname":null,"description":null,"arch":"i586","eula_url":"","friendly_version":"11 SP2","release_stage":"released","id":1100,"identifier":"sle-haegeo","extensions":[],"version":"11.2","recommended":false,"former_identifier":"sle-haegeo","release_type":null,"friendly_name":"Geo Clustering for SUSE Linux Enterprise High Availability Extension 11 SP2 i586","migration_extra":false,"offline_predecessor_ids":[],"name":"Geo Clustering for SUSE Linux Enterprise High Availability Extension"}],"identifier":"sle-hae","release_stage":"released","id":975,"recommended":false,"version":"11.2","name":"SUSE Linux Enterprise High Availability Extension","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"SUSE Linux Enterprise High Availability Extension 11 SP2 i586","former_identifier":"sle-hae","release_type":null,"predecessor_ids":[],"online_predecessor_ids":[],"product_class":"SLE-HAE-X86","repositories":[{"installer_updates":false,"name":"SLE11-HAE-SP2-Pool","description":"SLE11-HAE-SP2-Pool for sle-11-i586","enabled":true,"id":949,"distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP2-Pool/sle-11-i586/"},{"id":950,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP2-Updates/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","name":"SLE11-HAE-SP2-Updates","installer_updates":false,"description":"SLE11-HAE-SP2-Updates for sle-11-i586"}],"cpe":null,"product_type":"extension","shortname":null,"description":null,"free":false,"eula_url":"","arch":"i586"},{"free":false,"description":null,"shortname":null,"arch":"i586","eula_url":"","online_predecessor_ids":[],"repositories":[{"installer_updates":false,"name":"SLE11-HAE-SP3-Pool","description":"SLE11-HAE-SP3-Pool for sle-11-i586","id":951,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP3-Pool/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true},{"distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP3-Updates/sle-11-i586/","enabled":true,"id":952,"description":"SLE11-HAE-SP3-Updates for sle-11-i586","installer_updates":false,"name":"SLE11-HAE-SP3-Updates"}],"product_class":"SLE-HAE-X86","predecessor_ids":[],"product_type":"extension","cpe":null,"version":"11.2","recommended":false,"release_type":null,"former_identifier":"sle-hae-SP3-migration","migration_extra":false,"friendly_name":"SUSE Linux Enterprise High Availability Extension 11 SP2 i586 (Migration)","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise High Availability Extension","friendly_version":"11 SP2","release_stage":"released","id":988,"identifier":"sle-hae-SP3-migration","extensions":[{"offline_predecessor_ids":[],"name":"Geo Clustering for SUSE Linux Enterprise High Availability Extension","release_type":null,"former_identifier":"sle-haegeo","friendly_name":"Geo Clustering for SUSE Linux Enterprise High Availability Extension 11 SP2 i586","migration_extra":false,"recommended":false,"version":"11.2","extensions":[],"release_stage":"released","identifier":"sle-haegeo","id":1100,"friendly_version":"11 SP2","eula_url":"","arch":"i586","free":false,"shortname":null,"description":null,"product_type":"extension","cpe":null,"predecessor_ids":[],"online_predecessor_ids":[],"product_class":"SLE-HAE-GEO","repositories":[{"name":"SLE11-HAE-GEO-SP2-Updates","installer_updates":false,"description":"SLE11-HAE-GEO-SP2-Updates for sle-11-i586","id":1115,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-GEO-SP2-Updates/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586"}]}]},{"arch":null,"eula_url":"","free":true,"shortname":null,"description":null,"product_type":"extension","cpe":null,"online_predecessor_ids":[],"product_class":"SLE-SDK","repositories":[{"description":"SLE11-SDK-SP1-Updates for sle-11-ia64","installer_updates":false,"name":"SLE11-SDK-SP1-Updates","distro_target":"sle-11-ia64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Updates/sle-11-ia64/","enabled":true,"id":1257},{"installer_updates":false,"name":"SLE11-SDK-SP1-Pool","description":"SLE11-SDK-SP1-Pool for sle-11-ia64","id":1258,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-ia64/","distro_target":"sle-11-ia64","autorefresh":true},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-s390x/","autorefresh":true,"distro_target":"sle-11-s390x","id":1259,"enabled":true,"description":"SLE11-SDK-SP1-Pool for sle-11-s390x","name":"SLE11-SDK-SP1-Pool","installer_updates":false},{"name":"SLE11-SDK-SP1-Updates","installer_updates":false,"description":"SLE11-SDK-SP1-Updates for sle-11-ppc64","id":1260,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Updates/sle-11-ppc64/","autorefresh":true,"distro_target":"sle-11-ppc64"},{"name":"SLE11-SDK-SP1-Pool","installer_updates":false,"description":"SLE11-SDK-SP1-Pool for sle-11-ppc64","enabled":true,"id":1261,"autorefresh":true,"distro_target":"sle-11-ppc64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-ppc64/"},{"id":1262,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Updates/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true,"installer_updates":false,"name":"SLE11-SDK-SP1-Updates","description":"SLE11-SDK-SP1-Updates for sle-11-i586"},{"enabled":true,"id":1263,"distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-i586/","installer_updates":false,"name":"SLE11-SDK-SP1-Pool","description":"SLE11-SDK-SP1-Pool for sle-11-i586"},{"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-x86_64/","enabled":true,"id":1264,"description":"SLE11-SDK-SP1-Pool for sle-11-x86_64","name":"SLE11-SDK-SP1-Pool","installer_updates":false},{"enabled":true,"id":1265,"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Updates/sle-11-x86_64/","name":"SLE11-SDK-SP1-Updates","installer_updates":false,"description":"SLE11-SDK-SP1-Updates for sle-11-x86_64"},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Updates/sle-11-s390x/","distro_target":"sle-11-s390x","autorefresh":true,"id":1266,"enabled":true,"description":"SLE11-SDK-SP1-Updates for sle-11-s390x","installer_updates":false,"name":"SLE11-SDK-SP1-Updates"},{"description":"SLE11-SDK-SP2-Core for sle-11-ia64","name":"SLE11-SDK-SP2-Core","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-ia64/","autorefresh":true,"distro_target":"sle-11-ia64","id":1267,"enabled":true},{"enabled":true,"id":1268,"autorefresh":true,"distro_target":"sle-11-s390x","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-s390x/","name":"SLE11-SDK-SP2-Core","installer_updates":false,"description":"SLE11-SDK-SP2-Core for sle-11-s390x"},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-s390x/","distro_target":"sle-11-s390x","autorefresh":true,"id":1269,"enabled":true,"description":"SLE11-SDK-SP2-Updates for sle-11-s390x","installer_updates":false,"name":"SLE11-SDK-SP2-Updates"},{"autorefresh":true,"distro_target":"sle-11-ppc64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-ppc64/","enabled":true,"id":1270,"description":"SLE11-SDK-SP2-Updates for sle-11-ppc64","name":"SLE11-SDK-SP2-Updates","installer_updates":false},{"installer_updates":false,"name":"SLE11-SDK-SP2-Updates","description":"SLE11-SDK-SP2-Updates for sle-11-i586","id":1271,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-ia64/","distro_target":"sle-11-ia64","autorefresh":true,"id":1272,"enabled":true,"description":"SLE11-SDK-SP2-Updates for sle-11-ia64","installer_updates":false,"name":"SLE11-SDK-SP2-Updates"},{"installer_updates":false,"name":"SLE11-SDK-SP2-Core","description":"SLE11-SDK-SP2-Core for sle-11-ppc64","id":1273,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-ppc64/","distro_target":"sle-11-ppc64","autorefresh":true},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","id":1274,"enabled":true,"description":"SLE11-SDK-SP2-Core for sle-11-i586","name":"SLE11-SDK-SP2-Core","installer_updates":false},{"enabled":true,"id":1275,"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-x86_64/","name":"SLE11-SDK-SP2-Core","installer_updates":false,"description":"SLE11-SDK-SP2-Core for sle-11-x86_64"},{"enabled":true,"id":1276,"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-x86_64/","name":"SLE11-SDK-SP2-Updates","installer_updates":false,"description":"SLE11-SDK-SP2-Updates for sle-11-x86_64"}],"predecessor_ids":[],"release_type":null,"former_identifier":"sle-sdk","friendly_name":"SUSE Linux Enterprise Software Development Kit 11 SP2","migration_extra":false,"offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Software Development Kit","version":"11.2","recommended":false,"id":1160,"release_stage":"released","identifier":"sle-sdk","extensions":[],"friendly_version":"11 SP2"},{"version":"11.1","recommended":false,"former_identifier":"sle-sdk-SP2-migration","release_type":null,"friendly_name":"SUSE Linux Enterprise Software Development Kit 11 SP1 (Migration)","migration_extra":false,"offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Software Development Kit","friendly_version":"11 SP1","release_stage":"released","identifier":"sle-sdk-SP2-migration","id":1163,"extensions":[],"free":true,"shortname":null,"description":null,"arch":null,"eula_url":"","repositories":[{"id":1267,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-ia64/","distro_target":"sle-11-ia64","autorefresh":true,"installer_updates":false,"name":"SLE11-SDK-SP2-Core","description":"SLE11-SDK-SP2-Core for sle-11-ia64"},{"description":"SLE11-SDK-SP2-Core for sle-11-s390x","name":"SLE11-SDK-SP2-Core","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-s390x","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-s390x/","enabled":true,"id":1268},{"installer_updates":false,"name":"SLE11-SDK-SP2-Updates","description":"SLE11-SDK-SP2-Updates for sle-11-s390x","enabled":true,"id":1269,"distro_target":"sle-11-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-s390x/"},{"id":1270,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-ppc64/","autorefresh":true,"distro_target":"sle-11-ppc64","name":"SLE11-SDK-SP2-Updates","installer_updates":false,"description":"SLE11-SDK-SP2-Updates for sle-11-ppc64"},{"installer_updates":false,"name":"SLE11-SDK-SP2-Updates","description":"SLE11-SDK-SP2-Updates for sle-11-i586","id":1271,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true},{"description":"SLE11-SDK-SP2-Updates for sle-11-ia64","name":"SLE11-SDK-SP2-Updates","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-ia64/","autorefresh":true,"distro_target":"sle-11-ia64","id":1272,"enabled":true},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-ppc64/","distro_target":"sle-11-ppc64","autorefresh":true,"id":1273,"enabled":true,"description":"SLE11-SDK-SP2-Core for sle-11-ppc64","installer_updates":false,"name":"SLE11-SDK-SP2-Core"},{"description":"SLE11-SDK-SP2-Core for sle-11-i586","installer_updates":false,"name":"SLE11-SDK-SP2-Core","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true,"id":1274,"enabled":true},{"description":"SLE11-SDK-SP2-Core for sle-11-x86_64","name":"SLE11-SDK-SP2-Core","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-x86_64/","enabled":true,"id":1275},{"installer_updates":false,"name":"SLE11-SDK-SP2-Updates","description":"SLE11-SDK-SP2-Updates for sle-11-x86_64","enabled":true,"id":1276,"distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-x86_64/"}],"online_predecessor_ids":[],"product_class":"SLE-SDK","predecessor_ids":[],"product_type":"extension","cpe":null},{"friendly_version":"11 SP2","id":1164,"release_stage":"released","identifier":"sle-sdk-SP3-migration","extensions":[],"version":"11.2","recommended":false,"friendly_name":"SUSE Linux Enterprise Software Development Kit 11 SP2 (Migration)","migration_extra":false,"release_type":null,"former_identifier":"sle-sdk-SP3-migration","name":"SUSE Linux Enterprise Software Development Kit","offline_predecessor_ids":[],"online_predecessor_ids":[],"repositories":[{"enabled":true,"id":1277,"distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Pool/sle-11-i586/","installer_updates":false,"name":"SLE11-SDK-SP3-Pool","description":"SLE11-SDK-SP3-Pool for sle-11-i586"},{"description":"SLE11-SDK-SP3-Pool for sle-11-ia64","name":"SLE11-SDK-SP3-Pool","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-ia64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Pool/sle-11-ia64/","enabled":true,"id":1278},{"id":1279,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Updates/sle-11-ppc64/","autorefresh":true,"distro_target":"sle-11-ppc64","name":"SLE11-SDK-SP3-Updates","installer_updates":false,"description":"SLE11-SDK-SP3-Updates for sle-11-ppc64"},{"distro_target":"sle-11-ia64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Updates/sle-11-ia64/","enabled":true,"id":1280,"description":"SLE11-SDK-SP3-Updates for sle-11-ia64","installer_updates":false,"name":"SLE11-SDK-SP3-Updates"},{"id":1281,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Pool/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true,"installer_updates":false,"name":"SLE11-SDK-SP3-Pool","description":"SLE11-SDK-SP3-Pool for sle-11-x86_64"},{"name":"SLE11-SDK-SP3-Updates","installer_updates":false,"description":"SLE11-SDK-SP3-Updates for sle-11-s390x","id":1282,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Updates/sle-11-s390x/","autorefresh":true,"distro_target":"sle-11-s390x"},{"distro_target":"sle-11-ppc64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Pool/sle-11-ppc64/","enabled":true,"id":1283,"description":"SLE11-SDK-SP3-Pool for sle-11-ppc64","installer_updates":false,"name":"SLE11-SDK-SP3-Pool"},{"description":"SLE11-SDK-SP3-Updates for sle-11-x86_64","name":"SLE11-SDK-SP3-Updates","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Updates/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64","id":1284,"enabled":true},{"name":"SLE11-SDK-SP3-Updates","installer_updates":false,"description":"SLE11-SDK-SP3-Updates for sle-11-i586","enabled":true,"id":1285,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Updates/sle-11-i586/"},{"id":1286,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Pool/sle-11-s390x/","distro_target":"sle-11-s390x","autorefresh":true,"installer_updates":false,"name":"SLE11-SDK-SP3-Pool","description":"SLE11-SDK-SP3-Pool for sle-11-s390x"}],"product_class":"SLE-SDK","predecessor_ids":[],"cpe":null,"product_type":"extension","shortname":null,"description":null,"free":true,"arch":null,"eula_url":""},{"cpe":null,"product_type":"extension","online_predecessor_ids":[],"repositories":[{"name":"SLE11-SMT-SP2-Pool","installer_updates":false,"description":"SLE11-SMT-SP2-Pool for sle-11-x86_64","id":1392,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP2-Pool/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64"},{"name":"SLE11-SMT-SP2-Updates","installer_updates":false,"description":"SLE11-SMT-SP2-Updates for sle-11-s390x","id":1393,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP2-Updates/sle-11-s390x/","autorefresh":true,"distro_target":"sle-11-s390x"},{"name":"SLE11-SMT-SP2-Pool","installer_updates":false,"description":"SLE11-SMT-SP2-Pool for sle-11-i586","enabled":true,"id":1394,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP2-Pool/sle-11-i586/"},{"distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP2-Updates/sle-11-i586/","enabled":true,"id":1395,"description":"SLE11-SMT-SP2-Updates for sle-11-i586","installer_updates":false,"name":"SLE11-SMT-SP2-Updates"},{"autorefresh":true,"distro_target":"sle-11-s390x","url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP2-Pool/sle-11-s390x/","enabled":true,"id":1396,"description":"SLE11-SMT-SP2-Pool for sle-11-s390x","name":"SLE11-SMT-SP2-Pool","installer_updates":false},{"installer_updates":false,"name":"SLE11-SMT-SP2-Updates","description":"SLE11-SMT-SP2-Updates for sle-11-x86_64","id":1397,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP2-Updates/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true}],"product_class":"SLESMT","predecessor_ids":[],"arch":null,"eula_url":"","shortname":null,"description":null,"free":true,"release_stage":"released","identifier":"sle-smt","id":1193,"extensions":[],"friendly_version":"11 SP2","migration_extra":false,"friendly_name":"SUSE Linux Enterprise Subscription Management Tool 11 SP2","former_identifier":"sle-smt","release_type":null,"name":"SUSE Linux Enterprise Subscription Management Tool","offline_predecessor_ids":[],"version":"11.2","recommended":false},{"arch":null,"eula_url":"","shortname":null,"description":null,"free":true,"cpe":null,"product_type":"extension","online_predecessor_ids":[],"repositories":[{"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP2-Pool/sle-11-x86_64/","enabled":true,"id":1392,"description":"SLE11-SMT-SP2-Pool for sle-11-x86_64","name":"SLE11-SMT-SP2-Pool","installer_updates":false},{"description":"SLE11-SMT-SP2-Pool for sle-11-i586","installer_updates":false,"name":"SLE11-SMT-SP2-Pool","distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP2-Pool/sle-11-i586/","enabled":true,"id":1394},{"autorefresh":true,"distro_target":"sle-11-s390x","url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP2-Pool/sle-11-s390x/","enabled":true,"id":1396,"description":"SLE11-SMT-SP2-Pool for sle-11-s390x","name":"SLE11-SMT-SP2-Pool","installer_updates":false}],"product_class":"SLESMT","predecessor_ids":[],"friendly_name":"SUSE Linux Enterprise Subscription Management Tool 11 (Migration)","migration_extra":false,"release_type":null,"former_identifier":"sle-smt-SP2-migration","name":"SUSE Linux Enterprise Subscription Management Tool","offline_predecessor_ids":[],"version":"11","recommended":false,"release_stage":"released","id":1194,"identifier":"sle-smt-SP2-migration","extensions":[],"friendly_version":"11"},{"product_class":"SLESMT","online_predecessor_ids":[],"repositories":[{"description":"SLE11-SMT-SP3-Pool for sle-11-s390x","name":"SLE11-SMT-SP3-Pool","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP3-Pool/sle-11-s390x/","autorefresh":true,"distro_target":"sle-11-s390x","id":1408,"enabled":true},{"description":"SLE11-SMT-SP3-Pool for sle-11-x86_64","name":"SLE11-SMT-SP3-Pool","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP3-Pool/sle-11-x86_64/","enabled":true,"id":1409},{"description":"SLE11-SMT-SP3-Pool for sle-11-i586","name":"SLE11-SMT-SP3-Pool","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP3-Pool/sle-11-i586/","enabled":true,"id":1410}],"predecessor_ids":[],"cpe":null,"product_type":"extension","shortname":null,"description":null,"free":true,"arch":null,"eula_url":"","friendly_version":"11 SP2","id":1199,"release_stage":"released","identifier":"sle-smt-SP3-migration","extensions":[],"version":"11.2","recommended":false,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Subscription Management Tool 11 SP2 (Migration)","release_type":null,"former_identifier":"sle-smt-SP3-migration","name":"SUSE Linux Enterprise Subscription Management Tool","offline_predecessor_ids":[]},{"id":1207,"release_stage":"released","identifier":"sle-11-WebYaST-1.3-migration","extensions":[],"friendly_version":"1.2","friendly_name":"SUSE WebYaST 1.2 (Migration)","migration_extra":false,"former_identifier":"sle-11-WebYaST-1.3-migration","release_type":null,"name":"SUSE WebYaST","offline_predecessor_ids":[],"version":"1.2","recommended":false,"cpe":null,"product_type":"extension","online_predecessor_ids":[],"repositories":[{"enabled":true,"id":1185,"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-WebYaST-1.3-Pool/sle-11-x86_64/","name":"SLE11-SP2-WebYaST-1.3-Pool","installer_updates":false,"description":"SLE11-SP2-WebYaST-1.3-Pool for sle-11-x86_64"},{"description":"SLE11-SP2-WebYaST-1.3-Pool for sle-11-s390x","name":"SLE11-SP2-WebYaST-1.3-Pool","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-s390x","url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-WebYaST-1.3-Pool/sle-11-s390x/","enabled":true,"id":1411},{"autorefresh":true,"distro_target":"sle-11-ppc64","url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-WebYaST-1.3-Pool/sle-11-ppc64/","enabled":true,"id":1414,"description":"SLE11-SP2-WebYaST-1.3-Pool for sle-11-ppc64","name":"SLE11-SP2-WebYaST-1.3-Pool","installer_updates":false},{"description":"SLE11-SP2-WebYaST-1.3-Pool for sle-11-ia64","installer_updates":false,"name":"SLE11-SP2-WebYaST-1.3-Pool","url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-WebYaST-1.3-Pool/sle-11-ia64/","distro_target":"sle-11-ia64","autorefresh":true,"id":1416,"enabled":true},{"description":"SLE11-SP2-WebYaST-1.3-Pool for sle-11-i586","name":"SLE11-SP2-WebYaST-1.3-Pool","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-WebYaST-1.3-Pool/sle-11-i586/","enabled":true,"id":1417}],"product_class":"WEBYAST","predecessor_ids":[],"arch":null,"eula_url":"","description":null,"shortname":null,"free":true}],"free":false,"shortname":null,"description":null,"arch":"i586","eula_url":"","product_class":"7261","online_predecessor_ids":[],"repositories":[{"installer_updates":false,"name":"SLES11-Extras","description":"SLES11-Extras for sle-11-i586","id":679,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLES11-Extras/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true},{"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Pool/sle-11-i586/","enabled":false,"id":680,"description":"SLE11-SP1-Debuginfo-Pool for sle-11-i586","name":"SLE11-SP1-Debuginfo-Pool","installer_updates":false},{"description":"SLE11-SP1-Debuginfo-Updates for sle-11-i586","name":"SLE11-SP1-Debuginfo-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Updates/sle-11-i586/","enabled":false,"id":682},{"enabled":true,"id":684,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-Updates/sle-11-i586/","name":"SLES11-SP1-Updates","installer_updates":false,"description":"SLES11-SP1-Updates for sle-11-i586"},{"url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-Pool/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true,"id":686,"enabled":true,"description":"SLES11-SP1-Pool for sle-11-i586","installer_updates":false,"name":"SLES11-SP1-Pool"},{"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-Debuginfo-Core/sle-11-i586/","enabled":false,"id":717,"description":"SLE11-SP2-Debuginfo-Core for sle-11-i586","name":"SLE11-SP2-Debuginfo-Core","installer_updates":false},{"installer_updates":false,"name":"SLE11-WebYaST-SP2-Pool","description":"SLE11-WebYaST-SP2-Pool for sle-11-i586","id":718,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-WebYaST-SP2-Pool/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true},{"description":"SLE11-SP2-Debuginfo-Updates for sle-11-i586","installer_updates":false,"name":"SLE11-SP2-Debuginfo-Updates","url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-Debuginfo-Updates/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true,"id":719,"enabled":false},{"url":"https://updates.suse.com/repo/$RCE/SLES11-SP2-Updates/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true,"id":720,"enabled":true,"description":"SLES11-SP2-Updates for sle-11-i586","installer_updates":false,"name":"SLES11-SP2-Updates"},{"name":"SLE11-WebYaST-SP2-Updates","installer_updates":false,"description":"SLE11-WebYaST-SP2-Updates for sle-11-i586","id":721,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-WebYaST-SP2-Updates/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586"},{"name":"SLES11-SP2-Core","installer_updates":false,"description":"SLES11-SP2-Core for sle-11-i586","id":722,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP2-Core/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586"},{"name":"SLES11-SP2-Extension-Store","installer_updates":false,"description":"SLES11-SP2-Extension-Store for sle-11-i586","enabled":true,"id":761,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLES11-SP2-Extension-Store/sle-11-i586/"},{"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLES11-SP2-LTSS-Updates/sle-11-i586/","enabled":true,"id":1156,"description":"SLES11-SP2-LTSS-Updates for sle-11-i586","name":"SLES11-SP2-LTSS-Updates","installer_updates":false}],"predecessor_ids":[],"product_type":"base","cpe":"cpe:/o:suse:suse_sles:11:sp2"},{"predecessor_ids":[],"online_predecessor_ids":[],"product_class":"7261","repositories":[{"installer_updates":false,"name":"SLE11-SP1-Debuginfo-Pool","description":"SLE11-SP1-Debuginfo-Pool for sle-11-i586","id":680,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Pool/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true},{"distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Updates/sle-11-i586/","enabled":false,"id":682,"description":"SLE11-SP1-Debuginfo-Updates for sle-11-i586","installer_updates":false,"name":"SLE11-SP1-Debuginfo-Updates"},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-Debuginfo-Core/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true,"id":717,"enabled":false,"description":"SLE11-SP2-Debuginfo-Core for sle-11-i586","installer_updates":false,"name":"SLE11-SP2-Debuginfo-Core"},{"enabled":false,"id":718,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-WebYaST-SP2-Pool/sle-11-i586/","name":"SLE11-WebYaST-SP2-Pool","installer_updates":false,"description":"SLE11-WebYaST-SP2-Pool for sle-11-i586"},{"description":"SLE11-SP2-Debuginfo-Updates for sle-11-i586","name":"SLE11-SP2-Debuginfo-Updates","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-Debuginfo-Updates/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","id":719,"enabled":false},{"description":"SLES11-SP2-Updates for sle-11-i586","installer_updates":false,"name":"SLES11-SP2-Updates","url":"https://updates.suse.com/repo/$RCE/SLES11-SP2-Updates/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true,"id":720,"enabled":true},{"description":"SLE11-WebYaST-SP2-Updates for sle-11-i586","name":"SLE11-WebYaST-SP2-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-WebYaST-SP2-Updates/sle-11-i586/","enabled":false,"id":721},{"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLES11-SP2-Core/sle-11-i586/","enabled":true,"id":722,"description":"SLES11-SP2-Core for sle-11-i586","name":"SLES11-SP2-Core","installer_updates":false}],"cpe":null,"product_type":"base","description":null,"shortname":null,"free":false,"eula_url":"","arch":"i486","friendly_version":"11 SP1","extensions":[{"description":null,"shortname":null,"free":false,"arch":"i486","eula_url":"","repositories":[{"description":"SLE11-HAE-SP1-Updates for sle-11-i586","name":"SLE11-HAE-SP1-Updates","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP1-Updates/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","id":944,"enabled":true},{"id":945,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP1-Pool/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true,"installer_updates":false,"name":"SLE11-HAE-SP1-Pool","description":"SLE11-HAE-SP1-Pool for sle-11-i586"}],"online_predecessor_ids":[],"product_class":"SLE-HAE-X86","predecessor_ids":[],"cpe":null,"product_type":"extension","version":"11.1","recommended":false,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise High Availability Extension 11 SP1 i486","former_identifier":"sle-hae","release_type":null,"name":"SUSE Linux Enterprise High Availability Extension","offline_predecessor_ids":[],"friendly_version":"11 SP1","id":965,"release_stage":"released","identifier":"sle-hae","extensions":[]},{"arch":"i486","eula_url":"","shortname":null,"description":null,"free":false,"cpe":null,"product_type":"extension","online_predecessor_ids":[],"repositories":[{"installer_updates":false,"name":"SLE11-HAE-SP2-Pool","description":"SLE11-HAE-SP2-Pool for sle-11-i586","enabled":true,"id":949,"distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP2-Pool/sle-11-i586/"},{"name":"SLE11-HAE-SP2-Updates","installer_updates":false,"description":"SLE11-HAE-SP2-Updates for sle-11-i586","id":950,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP2-Updates/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586"}],"product_class":"SLE-HAE-X86","predecessor_ids":[],"migration_extra":false,"friendly_name":"SUSE Linux Enterprise High Availability Extension 11 SP1 i486 (Migration)","former_identifier":"sle-hae-SP2-migration","release_type":null,"name":"SUSE Linux Enterprise High Availability Extension","offline_predecessor_ids":[],"version":"11.1","recommended":false,"identifier":"sle-hae-SP2-migration","release_stage":"released","id":976,"extensions":[],"friendly_version":"11 SP1"},{"description":null,"shortname":null,"free":true,"eula_url":"","arch":null,"predecessor_ids":[],"repositories":[{"name":"SLE11-SP1-SMT-Updates","installer_updates":false,"description":"SLE11-SP1-SMT-Updates for sle-11-x86_64","id":1386,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-SMT-Updates/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64"},{"description":"SLE11-SP1-SMT-Pool for sle-11-s390x","installer_updates":false,"name":"SLE11-SP1-SMT-Pool","distro_target":"sle-11-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-SMT-Pool/sle-11-s390x/","enabled":true,"id":1387},{"installer_updates":false,"name":"SLE11-SP1-SMT-Pool","description":"SLE11-SP1-SMT-Pool for sle-11-x86_64","enabled":true,"id":1388,"distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-SMT-Pool/sle-11-x86_64/"},{"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-SMT-Updates/sle-11-i586/","enabled":true,"id":1389,"description":"SLE11-SP1-SMT-Updates for sle-11-i586","name":"SLE11-SP1-SMT-Updates","installer_updates":false},{"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-SMT-Pool/sle-11-i586/","enabled":true,"id":1390,"description":"SLE11-SP1-SMT-Pool for sle-11-i586","name":"SLE11-SP1-SMT-Pool","installer_updates":false},{"description":"SLE11-SP1-SMT-Updates for sle-11-s390x","name":"SLE11-SP1-SMT-Updates","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-SMT-Updates/sle-11-s390x/","autorefresh":true,"distro_target":"sle-11-s390x","id":1391,"enabled":true}],"online_predecessor_ids":[],"product_class":"SLESMT","cpe":null,"product_type":"extension","recommended":false,"version":"11.1","name":"SUSE Linux Enterprise Subscription Management Tool","offline_predecessor_ids":[],"friendly_name":"SUSE Linux Enterprise Subscription Management Tool 11 SP1","migration_extra":false,"former_identifier":"sle-smt","release_type":null,"friendly_version":"11 SP1","extensions":[],"id":1192,"release_stage":"released","identifier":"sle-smt"}],"release_stage":"released","identifier":"SUSE_SLES-SP2-migration","id":812,"recommended":false,"version":"11.1","name":"SUSE Linux Enterprise Server","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Server 11 SP1 i486 (Migration)","release_type":null,"former_identifier":"SUSE_SLES-SP2-migration"},{"extensions":[{"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Software Development Kit 11 SP3","former_identifier":"sle-sdk","release_type":null,"name":"SUSE Linux Enterprise Software Development Kit","offline_predecessor_ids":[],"version":"11.3","recommended":false,"identifier":"sle-sdk","release_stage":"released","id":1161,"extensions":[],"friendly_version":"11 SP3","arch":null,"eula_url":"","shortname":null,"description":null,"free":true,"cpe":null,"product_type":"extension","product_class":"SLE-SDK","online_predecessor_ids":[],"repositories":[{"enabled":false,"id":1257,"distro_target":"sle-11-ia64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Updates/sle-11-ia64/","installer_updates":false,"name":"SLE11-SDK-SP1-Updates","description":"SLE11-SDK-SP1-Updates for sle-11-ia64"},{"description":"SLE11-SDK-SP1-Pool for sle-11-ia64","name":"SLE11-SDK-SP1-Pool","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-ia64/","autorefresh":true,"distro_target":"sle-11-ia64","id":1258,"enabled":false},{"name":"SLE11-SDK-SP1-Pool","installer_updates":false,"description":"SLE11-SDK-SP1-Pool for sle-11-s390x","enabled":false,"id":1259,"autorefresh":true,"distro_target":"sle-11-s390x","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-s390x/"},{"id":1260,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Updates/sle-11-ppc64/","autorefresh":true,"distro_target":"sle-11-ppc64","name":"SLE11-SDK-SP1-Updates","installer_updates":false,"description":"SLE11-SDK-SP1-Updates for sle-11-ppc64"},{"description":"SLE11-SDK-SP1-Pool for sle-11-ppc64","installer_updates":false,"name":"SLE11-SDK-SP1-Pool","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-ppc64/","distro_target":"sle-11-ppc64","autorefresh":true,"id":1261,"enabled":false},{"id":1262,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Updates/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","name":"SLE11-SDK-SP1-Updates","installer_updates":false,"description":"SLE11-SDK-SP1-Updates for sle-11-i586"},{"id":1263,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true,"installer_updates":false,"name":"SLE11-SDK-SP1-Pool","description":"SLE11-SDK-SP1-Pool for sle-11-i586"},{"name":"SLE11-SDK-SP1-Pool","installer_updates":false,"description":"SLE11-SDK-SP1-Pool for sle-11-x86_64","enabled":false,"id":1264,"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-x86_64/"},{"id":1265,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Updates/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64","name":"SLE11-SDK-SP1-Updates","installer_updates":false,"description":"SLE11-SDK-SP1-Updates for sle-11-x86_64"},{"description":"SLE11-SDK-SP1-Updates for sle-11-s390x","name":"SLE11-SDK-SP1-Updates","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Updates/sle-11-s390x/","autorefresh":true,"distro_target":"sle-11-s390x","id":1266,"enabled":false},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-ia64/","autorefresh":true,"distro_target":"sle-11-ia64","id":1267,"enabled":false,"description":"SLE11-SDK-SP2-Core for sle-11-ia64","name":"SLE11-SDK-SP2-Core","installer_updates":false},{"installer_updates":false,"name":"SLE11-SDK-SP2-Core","description":"SLE11-SDK-SP2-Core for sle-11-s390x","enabled":false,"id":1268,"distro_target":"sle-11-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-s390x/"},{"description":"SLE11-SDK-SP2-Updates for sle-11-s390x","name":"SLE11-SDK-SP2-Updates","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-s390x/","autorefresh":true,"distro_target":"sle-11-s390x","id":1269,"enabled":false},{"description":"SLE11-SDK-SP2-Updates for sle-11-ppc64","installer_updates":false,"name":"SLE11-SDK-SP2-Updates","distro_target":"sle-11-ppc64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-ppc64/","enabled":false,"id":1270},{"description":"SLE11-SDK-SP2-Updates for sle-11-i586","name":"SLE11-SDK-SP2-Updates","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","id":1271,"enabled":false},{"id":1272,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-ia64/","autorefresh":true,"distro_target":"sle-11-ia64","name":"SLE11-SDK-SP2-Updates","installer_updates":false,"description":"SLE11-SDK-SP2-Updates for sle-11-ia64"},{"name":"SLE11-SDK-SP2-Core","installer_updates":false,"description":"SLE11-SDK-SP2-Core for sle-11-ppc64","enabled":false,"id":1273,"autorefresh":true,"distro_target":"sle-11-ppc64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-ppc64/"},{"enabled":false,"id":1274,"distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-i586/","installer_updates":false,"name":"SLE11-SDK-SP2-Core","description":"SLE11-SDK-SP2-Core for sle-11-i586"},{"installer_updates":false,"name":"SLE11-SDK-SP2-Core","description":"SLE11-SDK-SP2-Core for sle-11-x86_64","id":1275,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true},{"installer_updates":false,"name":"SLE11-SDK-SP2-Updates","description":"SLE11-SDK-SP2-Updates for sle-11-x86_64","id":1276,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true},{"installer_updates":false,"name":"SLE11-SDK-SP3-Pool","description":"SLE11-SDK-SP3-Pool for sle-11-i586","enabled":true,"id":1277,"distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Pool/sle-11-i586/"},{"id":1278,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Pool/sle-11-ia64/","autorefresh":true,"distro_target":"sle-11-ia64","name":"SLE11-SDK-SP3-Pool","installer_updates":false,"description":"SLE11-SDK-SP3-Pool for sle-11-ia64"},{"name":"SLE11-SDK-SP3-Updates","installer_updates":false,"description":"SLE11-SDK-SP3-Updates for sle-11-ppc64","enabled":true,"id":1279,"autorefresh":true,"distro_target":"sle-11-ppc64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Updates/sle-11-ppc64/"},{"id":1280,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Updates/sle-11-ia64/","distro_target":"sle-11-ia64","autorefresh":true,"installer_updates":false,"name":"SLE11-SDK-SP3-Updates","description":"SLE11-SDK-SP3-Updates for sle-11-ia64"},{"id":1281,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Pool/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true,"installer_updates":false,"name":"SLE11-SDK-SP3-Pool","description":"SLE11-SDK-SP3-Pool for sle-11-x86_64"},{"description":"SLE11-SDK-SP3-Updates for sle-11-s390x","name":"SLE11-SDK-SP3-Updates","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Updates/sle-11-s390x/","autorefresh":true,"distro_target":"sle-11-s390x","id":1282,"enabled":true},{"id":1283,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Pool/sle-11-ppc64/","autorefresh":true,"distro_target":"sle-11-ppc64","name":"SLE11-SDK-SP3-Pool","installer_updates":false,"description":"SLE11-SDK-SP3-Pool for sle-11-ppc64"},{"name":"SLE11-SDK-SP3-Updates","installer_updates":false,"description":"SLE11-SDK-SP3-Updates for sle-11-x86_64","enabled":true,"id":1284,"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Updates/sle-11-x86_64/"},{"id":1285,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Updates/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true,"installer_updates":false,"name":"SLE11-SDK-SP3-Updates","description":"SLE11-SDK-SP3-Updates for sle-11-i586"},{"id":1286,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Pool/sle-11-s390x/","autorefresh":true,"distro_target":"sle-11-s390x","name":"SLE11-SDK-SP3-Pool","installer_updates":false,"description":"SLE11-SDK-SP3-Pool for sle-11-s390x"}],"predecessor_ids":[]},{"product_class":"SLE-SDK","online_predecessor_ids":[],"repositories":[{"description":"SLE11-SDK-SP3-Pool for sle-11-i586","name":"SLE11-SDK-SP3-Pool","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Pool/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","id":1277,"enabled":true},{"installer_updates":false,"name":"SLE11-SDK-SP3-Pool","description":"SLE11-SDK-SP3-Pool for sle-11-ia64","id":1278,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Pool/sle-11-ia64/","distro_target":"sle-11-ia64","autorefresh":true},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Updates/sle-11-ppc64/","autorefresh":true,"distro_target":"sle-11-ppc64","id":1279,"enabled":true,"description":"SLE11-SDK-SP3-Updates for sle-11-ppc64","name":"SLE11-SDK-SP3-Updates","installer_updates":false},{"id":1280,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Updates/sle-11-ia64/","autorefresh":true,"distro_target":"sle-11-ia64","name":"SLE11-SDK-SP3-Updates","installer_updates":false,"description":"SLE11-SDK-SP3-Updates for sle-11-ia64"},{"id":1281,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Pool/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true,"installer_updates":false,"name":"SLE11-SDK-SP3-Pool","description":"SLE11-SDK-SP3-Pool for sle-11-x86_64"},{"id":1282,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Updates/sle-11-s390x/","distro_target":"sle-11-s390x","autorefresh":true,"installer_updates":false,"name":"SLE11-SDK-SP3-Updates","description":"SLE11-SDK-SP3-Updates for sle-11-s390x"},{"enabled":true,"id":1283,"autorefresh":true,"distro_target":"sle-11-ppc64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Pool/sle-11-ppc64/","name":"SLE11-SDK-SP3-Pool","installer_updates":false,"description":"SLE11-SDK-SP3-Pool for sle-11-ppc64"},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Updates/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64","id":1284,"enabled":true,"description":"SLE11-SDK-SP3-Updates for sle-11-x86_64","name":"SLE11-SDK-SP3-Updates","installer_updates":false},{"id":1285,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Updates/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","name":"SLE11-SDK-SP3-Updates","installer_updates":false,"description":"SLE11-SDK-SP3-Updates for sle-11-i586"},{"installer_updates":false,"name":"SLE11-SDK-SP3-Pool","description":"SLE11-SDK-SP3-Pool for sle-11-s390x","enabled":true,"id":1286,"distro_target":"sle-11-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Pool/sle-11-s390x/"}],"predecessor_ids":[],"product_type":"extension","cpe":null,"free":true,"shortname":null,"description":null,"arch":null,"eula_url":"","friendly_version":"11 SP2","release_stage":"released","id":1164,"identifier":"sle-sdk-SP3-migration","extensions":[],"version":"11.2","recommended":false,"former_identifier":"sle-sdk-SP3-migration","release_type":null,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Software Development Kit 11 SP2 (Migration)","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Software Development Kit"},{"description":null,"shortname":null,"free":true,"eula_url":"","arch":null,"predecessor_ids":[],"online_predecessor_ids":[],"repositories":[{"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP3-Updates/sle-11-x86_64/","enabled":true,"id":1405,"description":"SLE11-SMT-SP3-Updates for sle-11-x86_64","name":"SLE11-SMT-SP3-Updates","installer_updates":false},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP3-Updates/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true,"id":1406,"enabled":true,"description":"SLE11-SMT-SP3-Updates for sle-11-i586","installer_updates":false,"name":"SLE11-SMT-SP3-Updates"},{"installer_updates":false,"name":"SLE11-SMT-SP3-Updates","description":"SLE11-SMT-SP3-Updates for sle-11-s390x","id":1407,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP3-Updates/sle-11-s390x/","distro_target":"sle-11-s390x","autorefresh":true},{"description":"SLE11-SMT-SP3-Pool for sle-11-s390x","name":"SLE11-SMT-SP3-Pool","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-s390x","url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP3-Pool/sle-11-s390x/","enabled":true,"id":1408},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP3-Pool/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true,"id":1409,"enabled":true,"description":"SLE11-SMT-SP3-Pool for sle-11-x86_64","installer_updates":false,"name":"SLE11-SMT-SP3-Pool"},{"id":1410,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP3-Pool/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true,"installer_updates":false,"name":"SLE11-SMT-SP3-Pool","description":"SLE11-SMT-SP3-Pool for sle-11-i586"}],"product_class":"SLESMT","cpe":null,"product_type":"extension","recommended":false,"version":"11.3","name":"SUSE Linux Enterprise Subscription Management Tool","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Subscription Management Tool 11 SP3","release_type":null,"former_identifier":"sle-smt","friendly_version":"11 SP3","extensions":[],"identifier":"sle-smt","release_stage":"released","id":1198},{"friendly_name":"SUSE Linux Enterprise Subscription Management Tool 11 SP2 (Migration)","migration_extra":false,"former_identifier":"sle-smt-SP3-migration","release_type":null,"name":"SUSE Linux Enterprise Subscription Management Tool","offline_predecessor_ids":[],"version":"11.2","recommended":false,"id":1199,"release_stage":"released","identifier":"sle-smt-SP3-migration","extensions":[],"friendly_version":"11 SP2","arch":null,"eula_url":"","shortname":null,"description":null,"free":true,"cpe":null,"product_type":"extension","product_class":"SLESMT","online_predecessor_ids":[],"repositories":[{"name":"SLE11-SMT-SP3-Pool","installer_updates":false,"description":"SLE11-SMT-SP3-Pool for sle-11-s390x","enabled":true,"id":1408,"autorefresh":true,"distro_target":"sle-11-s390x","url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP3-Pool/sle-11-s390x/"},{"distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP3-Pool/sle-11-x86_64/","enabled":true,"id":1409,"description":"SLE11-SMT-SP3-Pool for sle-11-x86_64","installer_updates":false,"name":"SLE11-SMT-SP3-Pool"},{"enabled":true,"id":1410,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP3-Pool/sle-11-i586/","name":"SLE11-SMT-SP3-Pool","installer_updates":false,"description":"SLE11-SMT-SP3-Pool for sle-11-i586"}],"predecessor_ids":[]},{"eula_url":"","arch":null,"description":null,"shortname":null,"free":true,"cpe":null,"product_type":"extension","predecessor_ids":[],"online_predecessor_ids":[],"repositories":[{"distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-WebYaST-1.3-Pool/sle-11-x86_64/","enabled":true,"id":1185,"description":"SLE11-SP2-WebYaST-1.3-Pool for sle-11-x86_64","installer_updates":false,"name":"SLE11-SP2-WebYaST-1.3-Pool"},{"installer_updates":false,"name":"SLE11-SP2-WebYaST-1.3-Updates","description":"SLE11-SP2-WebYaST-1.3-Updates for sle-11-x86_64","enabled":true,"id":1188,"distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-WebYaST-1.3-Updates/sle-11-x86_64/"},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-WebYaST-1.3-Pool/sle-11-s390x/","distro_target":"sle-11-s390x","autorefresh":true,"id":1411,"enabled":true,"description":"SLE11-SP2-WebYaST-1.3-Pool for sle-11-s390x","installer_updates":false,"name":"SLE11-SP2-WebYaST-1.3-Pool"},{"installer_updates":false,"name":"SLE11-SP2-WebYaST-1.3-Updates","description":"SLE11-SP2-WebYaST-1.3-Updates for sle-11-s390x","enabled":true,"id":1412,"distro_target":"sle-11-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-WebYaST-1.3-Updates/sle-11-s390x/"},{"description":"SLE11-SP2-WebYaST-1.3-Updates for sle-11-i586","installer_updates":false,"name":"SLE11-SP2-WebYaST-1.3-Updates","distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-WebYaST-1.3-Updates/sle-11-i586/","enabled":true,"id":1413},{"description":"SLE11-SP2-WebYaST-1.3-Pool for sle-11-ppc64","installer_updates":false,"name":"SLE11-SP2-WebYaST-1.3-Pool","distro_target":"sle-11-ppc64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-WebYaST-1.3-Pool/sle-11-ppc64/","enabled":true,"id":1414},{"id":1415,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-WebYaST-1.3-Updates/sle-11-ia64/","distro_target":"sle-11-ia64","autorefresh":true,"installer_updates":false,"name":"SLE11-SP2-WebYaST-1.3-Updates","description":"SLE11-SP2-WebYaST-1.3-Updates for sle-11-ia64"},{"description":"SLE11-SP2-WebYaST-1.3-Pool for sle-11-ia64","name":"SLE11-SP2-WebYaST-1.3-Pool","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-ia64","url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-WebYaST-1.3-Pool/sle-11-ia64/","enabled":true,"id":1416},{"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-WebYaST-1.3-Pool/sle-11-i586/","enabled":true,"id":1417,"description":"SLE11-SP2-WebYaST-1.3-Pool for sle-11-i586","name":"SLE11-SP2-WebYaST-1.3-Pool","installer_updates":false},{"installer_updates":false,"name":"SLE11-SP2-WebYaST-1.3-Updates","description":"SLE11-SP2-WebYaST-1.3-Updates for sle-11-ppc64","enabled":true,"id":1418,"distro_target":"sle-11-ppc64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-WebYaST-1.3-Updates/sle-11-ppc64/"}],"product_class":"WEBYAST","name":"SUSE WebYaST","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"SUSE WebYaST 1.3","release_type":null,"former_identifier":"sle-11-WebYaST","recommended":false,"version":"1.3","extensions":[],"id":1206,"release_stage":"released","identifier":"sle-11-WebYaST","friendly_version":"1.3"},{"friendly_version":"11 SP3","extensions":[],"release_stage":"released","identifier":"sle-sdk-SP4-migration","id":1318,"recommended":false,"version":"11.3","name":"SUSE Linux Enterprise Software Development Kit","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Software Development Kit 11 SP3 (Migration)","release_type":null,"former_identifier":"sle-sdk-SP4-migration","predecessor_ids":[],"repositories":[{"name":"SLE11-SDK-SP1-Updates","installer_updates":false,"description":"SLE11-SDK-SP1-Updates for sle-11-ia64","enabled":false,"id":1257,"autorefresh":true,"distro_target":"sle-11-ia64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Updates/sle-11-ia64/"},{"description":"SLE11-SDK-SP1-Pool for sle-11-ia64","name":"SLE11-SDK-SP1-Pool","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-ia64/","autorefresh":true,"distro_target":"sle-11-ia64","id":1258,"enabled":false},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-s390x/","autorefresh":true,"distro_target":"sle-11-s390x","id":1259,"enabled":false,"description":"SLE11-SDK-SP1-Pool for sle-11-s390x","name":"SLE11-SDK-SP1-Pool","installer_updates":false},{"installer_updates":false,"name":"SLE11-SDK-SP1-Updates","description":"SLE11-SDK-SP1-Updates for sle-11-ppc64","enabled":false,"id":1260,"distro_target":"sle-11-ppc64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Updates/sle-11-ppc64/"},{"description":"SLE11-SDK-SP1-Pool for sle-11-ppc64","installer_updates":false,"name":"SLE11-SDK-SP1-Pool","distro_target":"sle-11-ppc64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-ppc64/","enabled":false,"id":1261},{"description":"SLE11-SDK-SP1-Updates for sle-11-i586","name":"SLE11-SDK-SP1-Updates","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Updates/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","id":1262,"enabled":false},{"name":"SLE11-SDK-SP1-Pool","installer_updates":false,"description":"SLE11-SDK-SP1-Pool for sle-11-i586","enabled":false,"id":1263,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-i586/"},{"description":"SLE11-SDK-SP1-Pool for sle-11-x86_64","name":"SLE11-SDK-SP1-Pool","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-x86_64/","enabled":false,"id":1264},{"id":1265,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Updates/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true,"installer_updates":false,"name":"SLE11-SDK-SP1-Updates","description":"SLE11-SDK-SP1-Updates for sle-11-x86_64"},{"distro_target":"sle-11-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Updates/sle-11-s390x/","enabled":false,"id":1266,"description":"SLE11-SDK-SP1-Updates for sle-11-s390x","installer_updates":false,"name":"SLE11-SDK-SP1-Updates"},{"id":1267,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-ia64/","autorefresh":true,"distro_target":"sle-11-ia64","name":"SLE11-SDK-SP2-Core","installer_updates":false,"description":"SLE11-SDK-SP2-Core for sle-11-ia64"},{"name":"SLE11-SDK-SP2-Core","installer_updates":false,"description":"SLE11-SDK-SP2-Core for sle-11-s390x","id":1268,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-s390x/","autorefresh":true,"distro_target":"sle-11-s390x"},{"description":"SLE11-SDK-SP2-Updates for sle-11-s390x","name":"SLE11-SDK-SP2-Updates","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-s390x/","autorefresh":true,"distro_target":"sle-11-s390x","id":1269,"enabled":false},{"id":1270,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-ppc64/","autorefresh":true,"distro_target":"sle-11-ppc64","name":"SLE11-SDK-SP2-Updates","installer_updates":false,"description":"SLE11-SDK-SP2-Updates for sle-11-ppc64"},{"id":1271,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true,"installer_updates":false,"name":"SLE11-SDK-SP2-Updates","description":"SLE11-SDK-SP2-Updates for sle-11-i586"},{"id":1272,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-ia64/","autorefresh":true,"distro_target":"sle-11-ia64","name":"SLE11-SDK-SP2-Updates","installer_updates":false,"description":"SLE11-SDK-SP2-Updates for sle-11-ia64"},{"distro_target":"sle-11-ppc64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-ppc64/","enabled":false,"id":1273,"description":"SLE11-SDK-SP2-Core for sle-11-ppc64","installer_updates":false,"name":"SLE11-SDK-SP2-Core"},{"enabled":false,"id":1274,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-i586/","name":"SLE11-SDK-SP2-Core","installer_updates":false,"description":"SLE11-SDK-SP2-Core for sle-11-i586"},{"distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-x86_64/","enabled":false,"id":1275,"description":"SLE11-SDK-SP2-Core for sle-11-x86_64","installer_updates":false,"name":"SLE11-SDK-SP2-Core"},{"enabled":false,"id":1276,"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-x86_64/","name":"SLE11-SDK-SP2-Updates","installer_updates":false,"description":"SLE11-SDK-SP2-Updates for sle-11-x86_64"},{"id":1277,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Pool/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true,"installer_updates":false,"name":"SLE11-SDK-SP3-Pool","description":"SLE11-SDK-SP3-Pool for sle-11-i586"},{"id":1278,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Pool/sle-11-ia64/","distro_target":"sle-11-ia64","autorefresh":true,"installer_updates":false,"name":"SLE11-SDK-SP3-Pool","description":"SLE11-SDK-SP3-Pool for sle-11-ia64"},{"id":1279,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Updates/sle-11-ppc64/","autorefresh":true,"distro_target":"sle-11-ppc64","name":"SLE11-SDK-SP3-Updates","installer_updates":false,"description":"SLE11-SDK-SP3-Updates for sle-11-ppc64"},{"id":1280,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Updates/sle-11-ia64/","distro_target":"sle-11-ia64","autorefresh":true,"installer_updates":false,"name":"SLE11-SDK-SP3-Updates","description":"SLE11-SDK-SP3-Updates for sle-11-ia64"},{"description":"SLE11-SDK-SP3-Pool for sle-11-x86_64","installer_updates":false,"name":"SLE11-SDK-SP3-Pool","distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Pool/sle-11-x86_64/","enabled":false,"id":1281},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Updates/sle-11-s390x/","autorefresh":true,"distro_target":"sle-11-s390x","id":1282,"enabled":false,"description":"SLE11-SDK-SP3-Updates for sle-11-s390x","name":"SLE11-SDK-SP3-Updates","installer_updates":false},{"distro_target":"sle-11-ppc64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Pool/sle-11-ppc64/","enabled":false,"id":1283,"description":"SLE11-SDK-SP3-Pool for sle-11-ppc64","installer_updates":false,"name":"SLE11-SDK-SP3-Pool"},{"name":"SLE11-SDK-SP3-Updates","installer_updates":false,"description":"SLE11-SDK-SP3-Updates for sle-11-x86_64","enabled":false,"id":1284,"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Updates/sle-11-x86_64/"},{"name":"SLE11-SDK-SP3-Updates","installer_updates":false,"description":"SLE11-SDK-SP3-Updates for sle-11-i586","id":1285,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Updates/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586"},{"installer_updates":false,"name":"SLE11-SDK-SP3-Pool","description":"SLE11-SDK-SP3-Pool for sle-11-s390x","enabled":false,"id":1286,"distro_target":"sle-11-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Pool/sle-11-s390x/"},{"name":"SLE11-SDK-SP4-Pool","installer_updates":false,"description":"SLE11-SDK-SP4-Pool for sle-11-i586","id":1817,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP4-Pool/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586"},{"installer_updates":false,"name":"SLE11-SDK-SP4-Pool","description":"SLE11-SDK-SP4-Pool for sle-11-ia64","id":1818,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP4-Pool/sle-11-ia64/","distro_target":"sle-11-ia64","autorefresh":true},{"id":1819,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP4-Pool/sle-11-ppc64/","distro_target":"sle-11-ppc64","autorefresh":true,"installer_updates":false,"name":"SLE11-SDK-SP4-Pool","description":"SLE11-SDK-SP4-Pool for sle-11-ppc64"},{"name":"SLE11-SDK-SP4-Pool","installer_updates":false,"description":"SLE11-SDK-SP4-Pool for sle-11-s390x","id":1820,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP4-Pool/sle-11-s390x/","autorefresh":true,"distro_target":"sle-11-s390x"},{"installer_updates":false,"name":"SLE11-SDK-SP4-Pool","description":"SLE11-SDK-SP4-Pool for sle-11-x86_64","id":1821,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP4-Pool/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true},{"description":"SLE11-SDK-SP4-Updates for sle-11-i586","name":"SLE11-SDK-SP4-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP4-Updates/sle-11-i586/","enabled":true,"id":1822},{"installer_updates":false,"name":"SLE11-SDK-SP4-Updates","description":"SLE11-SDK-SP4-Updates for sle-11-ia64","id":1823,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP4-Updates/sle-11-ia64/","distro_target":"sle-11-ia64","autorefresh":true},{"installer_updates":false,"name":"SLE11-SDK-SP4-Updates","description":"SLE11-SDK-SP4-Updates for sle-11-ppc64","id":1824,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP4-Updates/sle-11-ppc64/","distro_target":"sle-11-ppc64","autorefresh":true},{"installer_updates":false,"name":"SLE11-SDK-SP4-Updates","description":"SLE11-SDK-SP4-Updates for sle-11-s390x","enabled":true,"id":1825,"distro_target":"sle-11-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP4-Updates/sle-11-s390x/"},{"description":"SLE11-SDK-SP4-Updates for sle-11-x86_64","installer_updates":false,"name":"SLE11-SDK-SP4-Updates","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP4-Updates/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true,"id":1826,"enabled":true}],"online_predecessor_ids":[],"product_class":"SLE-SDK","cpe":null,"product_type":"extension","shortname":null,"description":null,"free":true,"eula_url":"","arch":null}],"release_stage":"released","id":813,"identifier":"SUSE_SLES","friendly_version":"11 SP3","name":"SUSE Linux Enterprise Server","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Server 11 SP3 i386","former_identifier":"SUSE_SLES","release_type":null,"recommended":false,"version":"11.3","cpe":"cpe:/o:suse:suse_sles:11:sp3","product_type":"base","predecessor_ids":[],"product_class":"7261","online_predecessor_ids":[],"repositories":[{"id":679,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLES11-Extras/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true,"installer_updates":false,"name":"SLES11-Extras","description":"SLES11-Extras for sle-11-i586"},{"description":"SLE11-SP1-Debuginfo-Pool for sle-11-i586","name":"SLE11-SP1-Debuginfo-Pool","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Pool/sle-11-i586/","enabled":false,"id":680},{"description":"SLE11-SP1-Debuginfo-Updates for sle-11-i586","name":"SLE11-SP1-Debuginfo-Updates","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Updates/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","id":682,"enabled":false},{"description":"SLES11-SP1-Updates for sle-11-i586","name":"SLES11-SP1-Updates","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-Updates/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","id":684,"enabled":false},{"id":686,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-Pool/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","name":"SLES11-SP1-Pool","installer_updates":false,"description":"SLES11-SP1-Pool for sle-11-i586"},{"id":717,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-Debuginfo-Core/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","name":"SLE11-SP2-Debuginfo-Core","installer_updates":false,"description":"SLE11-SP2-Debuginfo-Core for sle-11-i586"},{"description":"SLE11-SP2-Debuginfo-Updates for sle-11-i586","installer_updates":false,"name":"SLE11-SP2-Debuginfo-Updates","url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-Debuginfo-Updates/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true,"id":719,"enabled":false},{"url":"https://updates.suse.com/repo/$RCE/SLES11-SP2-Updates/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true,"id":720,"enabled":false,"description":"SLES11-SP2-Updates for sle-11-i586","installer_updates":false,"name":"SLES11-SP2-Updates"},{"url":"https://updates.suse.com/repo/$RCE/SLES11-SP2-Core/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","id":722,"enabled":false,"description":"SLES11-SP2-Core for sle-11-i586","name":"SLES11-SP2-Core","installer_updates":false},{"enabled":false,"id":758,"distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP3-Extension-Store/sle-11-i586/","installer_updates":false,"name":"SLES11-SP3-Extension-Store","description":"SLES11-SP3-Extension-Store for sle-11-i586"},{"description":"SLE11-SP3-Debuginfo-Updates for sle-11-i586","installer_updates":false,"name":"SLE11-SP3-Debuginfo-Updates","url":"https://updates.suse.com/repo/$RCE/SLE11-SP3-Debuginfo-Updates/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true,"id":759,"enabled":false},{"description":"SLES11-SP3-Pool for sle-11-i586","name":"SLES11-SP3-Pool","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLES11-SP3-Pool/sle-11-i586/","enabled":true,"id":760},{"id":761,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP2-Extension-Store/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true,"installer_updates":false,"name":"SLES11-SP2-Extension-Store","description":"SLES11-SP2-Extension-Store for sle-11-i586"},{"description":"SLES11-SP3-Updates for sle-11-i586","installer_updates":false,"name":"SLES11-SP3-Updates","url":"https://updates.suse.com/repo/$RCE/SLES11-SP3-Updates/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true,"id":762,"enabled":true},{"description":"SLE11-SP3-Debuginfo-Pool for sle-11-i586","name":"SLE11-SP3-Debuginfo-Pool","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP3-Debuginfo-Pool/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","id":763,"enabled":false}],"eula_url":"","arch":"i386","shortname":null,"description":null,"free":false},{"product_type":"base","cpe":"cpe:/o:suse:suse_sles:11:sp3","predecessor_ids":[],"online_predecessor_ids":[],"product_class":"7261","repositories":[{"description":"SLES11-SP1-Updates for sle-11-x86_64","installer_updates":false,"name":"SLES11-SP1-Updates","distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-Updates/sle-11-x86_64/","enabled":false,"id":705},{"installer_updates":false,"name":"SLE11-SP1-Debuginfo-Pool","description":"SLE11-SP1-Debuginfo-Pool for sle-11-x86_64","enabled":false,"id":707,"distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Pool/sle-11-x86_64/"},{"enabled":false,"id":709,"distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP2-Core/sle-11-x86_64/","installer_updates":false,"name":"SLES11-SP2-Core","description":"SLES11-SP2-Core for sle-11-x86_64"},{"id":710,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLES11-Extras/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true,"installer_updates":false,"name":"SLES11-Extras","description":"SLES11-Extras for sle-11-x86_64"},{"id":711,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-Pool/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64","name":"SLES11-SP1-Pool","installer_updates":false,"description":"SLES11-SP1-Pool for sle-11-x86_64"},{"description":"SLE11-SP2-Debuginfo-Updates for sle-11-x86_64","name":"SLE11-SP2-Debuginfo-Updates","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-Debuginfo-Updates/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64","id":712,"enabled":false},{"url":"https://updates.suse.com/repo/$RCE/SLES11-SP2-Extension-Store/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true,"id":713,"enabled":false,"description":"SLES11-SP2-Extension-Store for sle-11-x86_64","installer_updates":false,"name":"SLES11-SP2-Extension-Store"},{"url":"https://updates.suse.com/repo/$RCE/SLES11-SP2-Updates/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true,"id":714,"enabled":false,"description":"SLES11-SP2-Updates for sle-11-x86_64","installer_updates":false,"name":"SLES11-SP2-Updates"},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Updates/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true,"id":715,"enabled":false,"description":"SLE11-SP1-Debuginfo-Updates for sle-11-x86_64","installer_updates":false,"name":"SLE11-SP1-Debuginfo-Updates"},{"distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-Debuginfo-Core/sle-11-x86_64/","enabled":false,"id":716,"description":"SLE11-SP2-Debuginfo-Core for sle-11-x86_64","installer_updates":false,"name":"SLE11-SP2-Debuginfo-Core"},{"name":"SLE11-SP3-Debuginfo-Updates","installer_updates":false,"description":"SLE11-SP3-Debuginfo-Updates for sle-11-x86_64","enabled":false,"id":735,"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE11-SP3-Debuginfo-Updates/sle-11-x86_64/"},{"distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP3-Debuginfo-Pool/sle-11-x86_64/","enabled":false,"id":736,"description":"SLE11-SP3-Debuginfo-Pool for sle-11-x86_64","installer_updates":false,"name":"SLE11-SP3-Debuginfo-Pool"},{"enabled":true,"id":737,"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLES11-SP3-Pool/sle-11-x86_64/","name":"SLES11-SP3-Pool","installer_updates":false,"description":"SLES11-SP3-Pool for sle-11-x86_64"},{"installer_updates":false,"name":"SLES11-SP3-Updates","description":"SLES11-SP3-Updates for sle-11-x86_64","id":738,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP3-Updates/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true},{"description":"SLES11-SP3-Extension-Store for sle-11-x86_64","installer_updates":false,"name":"SLES11-SP3-Extension-Store","distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP3-Extension-Store/sle-11-x86_64/","enabled":false,"id":739},{"description":"SLE11-Security-Module for sle-11-x86_64","installer_updates":false,"name":"SLE11-Security-Module","url":"https://updates.suse.com/repo/$RCE/SLE11-Security-Module/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true,"id":1447,"enabled":false},{"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE11-Public-Cloud-Module/sle-11-x86_64/","enabled":false,"id":1777,"description":"SLE11-Public-Cloud-Module for sle-11-x86_64","name":"SLE11-Public-Cloud-Module","installer_updates":false},{"description":"SLES11-SP3-Update-Teradata for sle-11-x86_64","name":"SLES11-SP3-Update-Teradata","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLES11-SP3-Update-Teradata/sle-11-x86_64/","enabled":true,"id":1834},{"id":1835,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP3-Debuginfo-Teradata/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64","name":"SLE11-SP3-Debuginfo-Teradata","installer_updates":false,"description":"SLE11-SP3-Debuginfo-Teradata for sle-11-x86_64"},{"name":"SLES11-SP3-LTSS-Updates","installer_updates":false,"description":"SLES11-SP3-LTSS-Updates for sle-11-x86_64","enabled":true,"id":1967,"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLES11-SP3-LTSS-Updates/sle-11-x86_64/"}],"eula_url":"","arch":"x86_64","free":false,"shortname":null,"description":null,"extensions":[{"friendly_version":"1.3","release_stage":"released","id":937,"identifier":"sle-slms","extensions":[],"version":"1.3","recommended":false,"migration_extra":false,"friendly_name":"SUSE Lifecycle Management Server 1.3","release_type":null,"former_identifier":"sle-slms","name":"SUSE Lifecycle Management Server","offline_predecessor_ids":[],"online_predecessor_ids":[],"repositories":[{"url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-SLMS-1.3-Pool/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true,"id":916,"enabled":true,"description":"SLE11-SP2-SLMS-1.3-Pool for sle-11-x86_64","installer_updates":false,"name":"SLE11-SP2-SLMS-1.3-Pool"},{"id":917,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-SLMS-1.3-Updates/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64","name":"SLE11-SP2-SLMS-1.3-Updates","installer_updates":false,"description":"SLE11-SP2-SLMS-1.3-Updates for sle-11-x86_64"},{"enabled":true,"id":1157,"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLES11-SP2-LTSS-Updates/sle-11-x86_64/","name":"SLES11-SP2-LTSS-Updates","installer_updates":false,"description":"SLES11-SP2-LTSS-Updates for sle-11-x86_64"}],"product_class":"SLMS","predecessor_ids":[],"cpe":null,"product_type":"extension","description":null,"shortname":null,"free":false,"arch":null,"eula_url":""},{"friendly_version":"11 SP3","extensions":[{"shortname":null,"description":null,"free":false,"eula_url":"","arch":"x86_64","predecessor_ids":[],"online_predecessor_ids":[],"product_class":"SLE-HAE-GEO","repositories":[{"description":"SLE11-HAE-GEO-SP3-Updates for sle-11-x86_64","installer_updates":false,"name":"SLE11-HAE-GEO-SP3-Updates","distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-GEO-SP3-Updates/sle-11-x86_64/","enabled":true,"id":1120}],"cpe":null,"product_type":"extension","recommended":false,"version":"11.3","name":"Geo Clustering for SUSE Linux Enterprise High Availability Extension","offline_predecessor_ids":[],"friendly_name":"Geo Clustering for SUSE Linux Enterprise High Availability Extension 11 SP3 x86_64","migration_extra":false,"release_type":null,"former_identifier":"sle-haegeo","friendly_version":"11 SP3","extensions":[],"id":1107,"release_stage":"released","identifier":"sle-haegeo"}],"id":971,"release_stage":"released","identifier":"sle-hae","recommended":false,"version":"11.3","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise High Availability Extension","release_type":null,"former_identifier":"sle-hae","friendly_name":"SUSE Linux Enterprise High Availability Extension 11 SP3 x86_64","migration_extra":false,"predecessor_ids":[],"online_predecessor_ids":[],"repositories":[{"description":"SLE11-HAE-SP3-Updates for sle-11-x86_64","name":"SLE11-HAE-SP3-Updates","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP3-Updates/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64","id":956,"enabled":true},{"id":3037,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP3-Pool/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64","name":"SLE11-HAE-SP3-Pool","installer_updates":false,"description":"SLE11-HAE-SP3-Pool for sle-11-x86_64"}],"product_class":"SLE-HAE-X86","product_type":"extension","cpe":null,"free":false,"description":null,"shortname":null,"eula_url":"","arch":"x86_64"},{"predecessor_ids":[],"repositories":[{"name":"SLE11-SP1-Debuginfo-Pool","installer_updates":false,"description":"SLE11-SP1-Debuginfo-Pool for sle-11-i586","id":680,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Pool/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586"},{"enabled":false,"id":682,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Updates/sle-11-i586/","name":"SLE11-SP1-Debuginfo-Updates","installer_updates":false,"description":"SLE11-SP1-Debuginfo-Updates for sle-11-i586"},{"description":"SLES11-SP1-Updates for sle-11-i586","name":"SLES11-SP1-Updates","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-Updates/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","id":684,"enabled":true},{"distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-Pool/sle-11-i586/","enabled":true,"id":686,"description":"SLES11-SP1-Pool for sle-11-i586","installer_updates":false,"name":"SLES11-SP1-Pool"},{"enabled":true,"id":687,"distro_target":"sle-11-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-Pool/sle-11-s390x/","installer_updates":false,"name":"SLES11-SP1-Pool","description":"SLES11-SP1-Pool for sle-11-s390x"},{"id":688,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Updates/sle-11-s390x/","distro_target":"sle-11-s390x","autorefresh":true,"installer_updates":false,"name":"SLE11-SP1-Debuginfo-Updates","description":"SLE11-SP1-Debuginfo-Updates for sle-11-s390x"},{"description":"SLES11-SP1-Updates for sle-11-s390x","name":"SLES11-SP1-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-s390x","url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-Updates/sle-11-s390x/","enabled":true,"id":691},{"enabled":false,"id":692,"distro_target":"sle-11-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Pool/sle-11-s390x/","installer_updates":false,"name":"SLE11-SP1-Debuginfo-Pool","description":"SLE11-SP1-Debuginfo-Pool for sle-11-s390x"},{"description":"SLES11-SP1-Updates for sle-11-x86_64","installer_updates":false,"name":"SLES11-SP1-Updates","distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-Updates/sle-11-x86_64/","enabled":true,"id":705},{"description":"SLE11-SP1-Debuginfo-Pool for sle-11-x86_64","name":"SLE11-SP1-Debuginfo-Pool","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Pool/sle-11-x86_64/","enabled":false,"id":707},{"description":"SLES11-SP2-Core for sle-11-x86_64","name":"SLES11-SP2-Core","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLES11-SP2-Core/sle-11-x86_64/","enabled":true,"id":709},{"url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-Pool/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64","id":711,"enabled":true,"description":"SLES11-SP1-Pool for sle-11-x86_64","name":"SLES11-SP1-Pool","installer_updates":false},{"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-Debuginfo-Updates/sle-11-x86_64/","enabled":false,"id":712,"description":"SLE11-SP2-Debuginfo-Updates for sle-11-x86_64","name":"SLE11-SP2-Debuginfo-Updates","installer_updates":false},{"description":"SLES11-SP2-Updates for sle-11-x86_64","installer_updates":false,"name":"SLES11-SP2-Updates","url":"https://updates.suse.com/repo/$RCE/SLES11-SP2-Updates/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true,"id":714,"enabled":true},{"description":"SLE11-SP1-Debuginfo-Updates for sle-11-x86_64","installer_updates":false,"name":"SLE11-SP1-Debuginfo-Updates","url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Updates/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true,"id":715,"enabled":false},{"enabled":false,"id":716,"distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-Debuginfo-Core/sle-11-x86_64/","installer_updates":false,"name":"SLE11-SP2-Debuginfo-Core","description":"SLE11-SP2-Debuginfo-Core for sle-11-x86_64"},{"name":"SLE11-SP2-Debuginfo-Core","installer_updates":false,"description":"SLE11-SP2-Debuginfo-Core for sle-11-i586","id":717,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-Debuginfo-Core/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586"},{"description":"SLE11-SP2-Debuginfo-Updates for sle-11-i586","installer_updates":false,"name":"SLE11-SP2-Debuginfo-Updates","distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-Debuginfo-Updates/sle-11-i586/","enabled":false,"id":719},{"installer_updates":false,"name":"SLES11-SP2-Updates","description":"SLES11-SP2-Updates for sle-11-i586","id":720,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP2-Updates/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true},{"description":"SLES11-SP2-Core for sle-11-i586","name":"SLES11-SP2-Core","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLES11-SP2-Core/sle-11-i586/","enabled":true,"id":722},{"enabled":true,"id":724,"distro_target":"sle-11-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP2-Updates/sle-11-s390x/","installer_updates":false,"name":"SLES11-SP2-Updates","description":"SLES11-SP2-Updates for sle-11-s390x"},{"name":"SLE11-SP2-Debuginfo-Updates","installer_updates":false,"description":"SLE11-SP2-Debuginfo-Updates for sle-11-s390x","id":725,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-Debuginfo-Updates/sle-11-s390x/","autorefresh":true,"distro_target":"sle-11-s390x"},{"name":"SLES11-SP2-Core","installer_updates":false,"description":"SLES11-SP2-Core for sle-11-s390x","id":726,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP2-Core/sle-11-s390x/","autorefresh":true,"distro_target":"sle-11-s390x"},{"distro_target":"sle-11-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-Debuginfo-Core/sle-11-s390x/","enabled":false,"id":728,"description":"SLE11-SP2-Debuginfo-Core for sle-11-s390x","installer_updates":false,"name":"SLE11-SP2-Debuginfo-Core"},{"autorefresh":true,"distro_target":"sle-11-ppc64","url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-Pool/sle-11-ppc64/","enabled":true,"id":919,"description":"SLES11-SP1-Pool for sle-11-ppc64","name":"SLES11-SP1-Pool","installer_updates":false},{"enabled":true,"id":922,"distro_target":"sle-11-ppc64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-Updates/sle-11-ppc64/","installer_updates":false,"name":"SLES11-SP1-Updates","description":"SLES11-SP1-Updates for sle-11-ppc64"},{"id":924,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Updates/sle-11-ppc64/","distro_target":"sle-11-ppc64","autorefresh":true,"installer_updates":false,"name":"SLE11-SP1-Debuginfo-Updates","description":"SLE11-SP1-Debuginfo-Updates for sle-11-ppc64"},{"id":925,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Pool/sle-11-ppc64/","distro_target":"sle-11-ppc64","autorefresh":true,"installer_updates":false,"name":"SLE11-SP1-Debuginfo-Pool","description":"SLE11-SP1-Debuginfo-Pool for sle-11-ppc64"},{"enabled":false,"id":926,"distro_target":"sle-11-ppc64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-Debuginfo-Updates/sle-11-ppc64/","installer_updates":false,"name":"SLE11-SP2-Debuginfo-Updates","description":"SLE11-SP2-Debuginfo-Updates for sle-11-ppc64"},{"name":"SLES11-SP2-Core","installer_updates":false,"description":"SLES11-SP2-Core for sle-11-ppc64","id":927,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP2-Core/sle-11-ppc64/","autorefresh":true,"distro_target":"sle-11-ppc64"},{"autorefresh":true,"distro_target":"sle-11-ppc64","url":"https://updates.suse.com/repo/$RCE/SLES11-SP2-Updates/sle-11-ppc64/","enabled":true,"id":928,"description":"SLES11-SP2-Updates for sle-11-ppc64","name":"SLES11-SP2-Updates","installer_updates":false},{"id":930,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-Debuginfo-Core/sle-11-ppc64/","autorefresh":true,"distro_target":"sle-11-ppc64","name":"SLE11-SP2-Debuginfo-Core","installer_updates":false,"description":"SLE11-SP2-Debuginfo-Core for sle-11-ppc64"},{"name":"SLE11-SP1-Debuginfo-Pool","installer_updates":false,"description":"SLE11-SP1-Debuginfo-Pool for sle-11-ia64","enabled":false,"id":970,"autorefresh":true,"distro_target":"sle-11-ia64","url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Pool/sle-11-ia64/"},{"description":"SLE11-SP1-Debuginfo-Updates for sle-11-ia64","installer_updates":false,"name":"SLE11-SP1-Debuginfo-Updates","distro_target":"sle-11-ia64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Updates/sle-11-ia64/","enabled":false,"id":971},{"description":"SLE11-SP2-Debuginfo-Core for sle-11-ia64","name":"SLE11-SP2-Debuginfo-Core","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-ia64","url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-Debuginfo-Core/sle-11-ia64/","enabled":false,"id":973},{"id":975,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-Debuginfo-Updates/sle-11-ia64/","distro_target":"sle-11-ia64","autorefresh":true,"installer_updates":false,"name":"SLE11-SP2-Debuginfo-Updates","description":"SLE11-SP2-Debuginfo-Updates for sle-11-ia64"},{"id":987,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-Updates/sle-11-ia64/","distro_target":"sle-11-ia64","autorefresh":true,"installer_updates":false,"name":"SLES11-SP1-Updates","description":"SLES11-SP1-Updates for sle-11-ia64"},{"name":"SLES11-SP1-Pool","installer_updates":false,"description":"SLES11-SP1-Pool for sle-11-ia64","id":991,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-Pool/sle-11-ia64/","autorefresh":true,"distro_target":"sle-11-ia64"},{"url":"https://updates.suse.com/repo/$RCE/SLES11-SP2-Updates/sle-11-ia64/","autorefresh":true,"distro_target":"sle-11-ia64","id":1011,"enabled":true,"description":"SLES11-SP2-Updates for sle-11-ia64","name":"SLES11-SP2-Updates","installer_updates":false},{"enabled":true,"id":1012,"distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-StudioOnsite-1.3-Pool/sle-11-x86_64/","installer_updates":false,"name":"SLE11-SP2-StudioOnsite-1.3-Pool","description":"SLE11-SP2-StudioOnsite-1.3-Pool for sle-11-x86_64"},{"id":1013,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-StudioOnsite-1.3-Updates/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64","name":"SLE11-SP2-StudioOnsite-1.3-Updates","installer_updates":false,"description":"SLE11-SP2-StudioOnsite-1.3-Updates for sle-11-x86_64"},{"enabled":true,"id":1014,"distro_target":"sle-11-ia64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP2-Core/sle-11-ia64/","installer_updates":false,"name":"SLES11-SP2-Core","description":"SLES11-SP2-Core for sle-11-ia64"},{"description":"SLES11-SP2-LTSS-Updates for sle-11-x86_64","installer_updates":false,"name":"SLES11-SP2-LTSS-Updates","distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP2-LTSS-Updates/sle-11-x86_64/","enabled":true,"id":1157}],"online_predecessor_ids":[],"product_class":"STUDIOONSITE","product_type":"extension","cpe":null,"free":false,"description":null,"shortname":null,"eula_url":"","arch":null,"friendly_version":"1.3","extensions":[],"release_stage":"released","identifier":"sle-studioonsite","id":1008,"recommended":false,"version":"1.3","offline_predecessor_ids":[],"name":"SUSE Studio OnSite","former_identifier":"sle-studioonsite","release_type":null,"migration_extra":false,"friendly_name":"SUSE Studio OnSite 1.3"},{"predecessor_ids":[],"online_predecessor_ids":[],"repositories":[{"url":"https://updates.suse.com/repo/$RCE/SLERT11-SP3-Pool/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true,"id":1061,"enabled":true,"description":"SLERT11-SP3-Pool for sle-11-x86_64","installer_updates":false,"name":"SLERT11-SP3-Pool"},{"id":1062,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLERT11-SP3-Updates/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64","name":"SLERT11-SP3-Updates","installer_updates":false,"description":"SLERT11-SP3-Updates for sle-11-x86_64"}],"product_class":"13319","product_type":"extension","cpe":null,"free":false,"description":null,"shortname":null,"eula_url":"","arch":null,"friendly_version":"11 SP3","extensions":[],"identifier":"SUSE-Linux-Enterprise-RT","release_stage":"released","id":1058,"recommended":false,"version":"11.3","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Real Time","former_identifier":"SUSE-Linux-Enterprise-RT","release_type":null,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Real Time 11 SP3"},{"description":null,"shortname":null,"free":false,"arch":null,"eula_url":"","product_class":"10040","online_predecessor_ids":[],"repositories":[{"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-POS-SP3-Pool/sle-11-i586/","enabled":true,"id":1084,"description":"SLE11-POS-SP3-Pool for sle-11-i586","name":"SLE11-POS-SP3-Pool","installer_updates":false},{"description":"SLE11-POS-SP3-Updates for sle-11-i586","installer_updates":false,"name":"SLE11-POS-SP3-Updates","url":"https://updates.suse.com/repo/$RCE/SLE11-POS-SP3-Updates/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true,"id":1085,"enabled":true},{"name":"SLE11-POS-SP3-Pool","installer_updates":false,"description":"SLE11-POS-SP3-Pool for sle-11-x86_64","enabled":true,"id":1086,"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE11-POS-SP3-Pool/sle-11-x86_64/"},{"url":"https://updates.suse.com/repo/$RCE/SLE11-POS-SP3-Updates/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64","id":1087,"enabled":true,"description":"SLE11-POS-SP3-Updates for sle-11-x86_64","name":"SLE11-POS-SP3-Updates","installer_updates":false}],"predecessor_ids":[],"cpe":null,"product_type":"extension","version":"11.3","recommended":false,"friendly_name":"SUSE Linux Enterprise Point of Service 11 SP3","migration_extra":false,"former_identifier":"sle-pos","release_type":null,"name":"SUSE Linux Enterprise Point of Service","offline_predecessor_ids":[],"friendly_version":"11 SP3","identifier":"sle-pos","release_stage":"released","id":1073,"extensions":[]},{"online_predecessor_ids":[],"product_class":"SUSE_CLOUD","repositories":[{"url":"https://updates.suse.com/repo/$RCE/SUSE-Cloud-2.0-Updates/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true,"id":1104,"enabled":true,"description":"SUSE-Cloud-2.0-Updates for sle-11-x86_64","installer_updates":false,"name":"SUSE-Cloud-2.0-Updates"},{"description":"SUSE-Cloud-2.0-Pool for sle-11-x86_64","name":"SUSE-Cloud-2.0-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SUSE-Cloud-2.0-Pool/sle-11-x86_64/","enabled":true,"id":1105},{"name":"SUSE-Cloud-3.0-Pool","installer_updates":false,"description":"SUSE-Cloud-3.0-Pool for sle-11-x86_64","enabled":false,"id":1158,"autorefresh":false,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SUSE-Cloud-3.0-Pool/sle-11-x86_64/"},{"name":"SUSE-Cloud-3.0-Updates","installer_updates":false,"description":"SUSE-Cloud-3.0-Updates for sle-11-x86_64","enabled":false,"id":1159,"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SUSE-Cloud-3.0-Updates/sle-11-x86_64/"}],"predecessor_ids":[],"product_type":"extension","cpe":null,"free":false,"description":null,"shortname":null,"arch":"x86_64","eula_url":"","friendly_version":"2.0","id":1091,"release_stage":"released","identifier":"SUSE-Cloud","extensions":[],"version":"2.0","recommended":false,"former_identifier":"SUSE-Cloud","release_type":null,"friendly_name":"SUSE Cloud 2.0 x86_64","migration_extra":false,"offline_predecessor_ids":[],"name":"SUSE Cloud"},{"online_predecessor_ids":[],"product_class":"STUDIOONSITERUNNER","repositories":[{"description":"SLE11-StudioOnsiteRunner-1.3-Pool for sle-11-s390x","installer_updates":false,"name":"SLE11-StudioOnsiteRunner-1.3-Pool","url":"https://updates.suse.com/repo/$RCE/SLE11-StudioOnsiteRunner-1.3-Pool/sle-11-s390x/","distro_target":"sle-11-s390x","autorefresh":true,"id":1113,"enabled":true},{"description":"SLE11-StudioOnsiteRunner-1.3-Updates for sle-11-s390x","installer_updates":false,"name":"SLE11-StudioOnsiteRunner-1.3-Updates","distro_target":"sle-11-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-StudioOnsiteRunner-1.3-Updates/sle-11-s390x/","enabled":true,"id":1114}],"predecessor_ids":[],"product_type":"extension","cpe":null,"free":false,"description":null,"shortname":null,"arch":null,"eula_url":"","friendly_version":"1.3","release_stage":"released","identifier":"sle-studioonsiterunner","id":1099,"extensions":[],"version":"1.3","recommended":false,"release_type":null,"former_identifier":"sle-studioonsiterunner","friendly_name":"SUSE Studio Extension for System z 1.3","migration_extra":false,"offline_predecessor_ids":[],"name":"SUSE Studio Extension for System z"},{"product_type":"extension","cpe":null,"online_predecessor_ids":[],"product_class":"SUSE_CLOUD","repositories":[{"installer_updates":false,"name":"SUSE-Cloud-3.0-Pool","description":"SUSE-Cloud-3.0-Pool for sle-11-x86_64","id":1158,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SUSE-Cloud-3.0-Pool/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":false},{"description":"SUSE-Cloud-3.0-Updates for sle-11-x86_64","installer_updates":false,"name":"SUSE-Cloud-3.0-Updates","url":"https://updates.suse.com/repo/$RCE/SUSE-Cloud-3.0-Updates/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true,"id":1159,"enabled":true},{"id":1466,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SUSE-Cloud-4-Pool/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":false,"installer_updates":false,"name":"SUSE-Cloud-4-Pool","description":"SUSE-Cloud-4-Pool for sle-11-x86_64"},{"enabled":false,"id":1467,"distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SUSE-Cloud-4-Updates/sle-11-x86_64/","installer_updates":false,"name":"SUSE-Cloud-4-Updates","description":"SUSE-Cloud-4-Updates for sle-11-x86_64"}],"predecessor_ids":[],"arch":"x86_64","eula_url":"","free":false,"description":null,"shortname":null,"release_stage":"released","identifier":"SUSE-Cloud","id":1114,"extensions":[],"friendly_version":"3","former_identifier":"SUSE-Cloud","release_type":null,"friendly_name":"SUSE Cloud 3 x86_64","migration_extra":false,"offline_predecessor_ids":[],"name":"SUSE Cloud","version":"3","recommended":false},{"free":true,"description":null,"shortname":null,"eula_url":"","arch":null,"predecessor_ids":[],"repositories":[{"enabled":false,"id":1257,"distro_target":"sle-11-ia64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Updates/sle-11-ia64/","installer_updates":false,"name":"SLE11-SDK-SP1-Updates","description":"SLE11-SDK-SP1-Updates for sle-11-ia64"},{"name":"SLE11-SDK-SP1-Pool","installer_updates":false,"description":"SLE11-SDK-SP1-Pool for sle-11-ia64","id":1258,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-ia64/","autorefresh":true,"distro_target":"sle-11-ia64"},{"enabled":false,"id":1259,"autorefresh":true,"distro_target":"sle-11-s390x","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-s390x/","name":"SLE11-SDK-SP1-Pool","installer_updates":false,"description":"SLE11-SDK-SP1-Pool for sle-11-s390x"},{"description":"SLE11-SDK-SP1-Updates for sle-11-ppc64","name":"SLE11-SDK-SP1-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-ppc64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Updates/sle-11-ppc64/","enabled":false,"id":1260},{"distro_target":"sle-11-ppc64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-ppc64/","enabled":false,"id":1261,"description":"SLE11-SDK-SP1-Pool for sle-11-ppc64","installer_updates":false,"name":"SLE11-SDK-SP1-Pool"},{"description":"SLE11-SDK-SP1-Updates for sle-11-i586","installer_updates":false,"name":"SLE11-SDK-SP1-Updates","distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Updates/sle-11-i586/","enabled":false,"id":1262},{"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-i586/","enabled":false,"id":1263,"description":"SLE11-SDK-SP1-Pool for sle-11-i586","name":"SLE11-SDK-SP1-Pool","installer_updates":false},{"installer_updates":false,"name":"SLE11-SDK-SP1-Pool","description":"SLE11-SDK-SP1-Pool for sle-11-x86_64","id":1264,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true},{"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Updates/sle-11-x86_64/","enabled":false,"id":1265,"description":"SLE11-SDK-SP1-Updates for sle-11-x86_64","name":"SLE11-SDK-SP1-Updates","installer_updates":false},{"autorefresh":true,"distro_target":"sle-11-s390x","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Updates/sle-11-s390x/","enabled":false,"id":1266,"description":"SLE11-SDK-SP1-Updates for sle-11-s390x","name":"SLE11-SDK-SP1-Updates","installer_updates":false},{"enabled":false,"id":1267,"distro_target":"sle-11-ia64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-ia64/","installer_updates":false,"name":"SLE11-SDK-SP2-Core","description":"SLE11-SDK-SP2-Core for sle-11-ia64"},{"description":"SLE11-SDK-SP2-Core for sle-11-s390x","installer_updates":false,"name":"SLE11-SDK-SP2-Core","distro_target":"sle-11-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-s390x/","enabled":false,"id":1268},{"description":"SLE11-SDK-SP2-Updates for sle-11-s390x","name":"SLE11-SDK-SP2-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-s390x","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-s390x/","enabled":false,"id":1269},{"enabled":false,"id":1270,"distro_target":"sle-11-ppc64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-ppc64/","installer_updates":false,"name":"SLE11-SDK-SP2-Updates","description":"SLE11-SDK-SP2-Updates for sle-11-ppc64"},{"description":"SLE11-SDK-SP2-Updates for sle-11-i586","installer_updates":false,"name":"SLE11-SDK-SP2-Updates","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true,"id":1271,"enabled":false},{"enabled":false,"id":1272,"autorefresh":true,"distro_target":"sle-11-ia64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-ia64/","name":"SLE11-SDK-SP2-Updates","installer_updates":false,"description":"SLE11-SDK-SP2-Updates for sle-11-ia64"},{"description":"SLE11-SDK-SP2-Core for sle-11-ppc64","installer_updates":false,"name":"SLE11-SDK-SP2-Core","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-ppc64/","distro_target":"sle-11-ppc64","autorefresh":true,"id":1273,"enabled":false},{"description":"SLE11-SDK-SP2-Core for sle-11-i586","name":"SLE11-SDK-SP2-Core","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","id":1274,"enabled":false},{"id":1275,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true,"installer_updates":false,"name":"SLE11-SDK-SP2-Core","description":"SLE11-SDK-SP2-Core for sle-11-x86_64"},{"description":"SLE11-SDK-SP2-Updates for sle-11-x86_64","name":"SLE11-SDK-SP2-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-x86_64/","enabled":false,"id":1276},{"distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Pool/sle-11-i586/","enabled":true,"id":1277,"description":"SLE11-SDK-SP3-Pool for sle-11-i586","installer_updates":false,"name":"SLE11-SDK-SP3-Pool"},{"description":"SLE11-SDK-SP3-Pool for sle-11-ia64","name":"SLE11-SDK-SP3-Pool","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-ia64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Pool/sle-11-ia64/","enabled":true,"id":1278},{"description":"SLE11-SDK-SP3-Updates for sle-11-ppc64","installer_updates":false,"name":"SLE11-SDK-SP3-Updates","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Updates/sle-11-ppc64/","distro_target":"sle-11-ppc64","autorefresh":true,"id":1279,"enabled":true},{"enabled":true,"id":1280,"autorefresh":true,"distro_target":"sle-11-ia64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Updates/sle-11-ia64/","name":"SLE11-SDK-SP3-Updates","installer_updates":false,"description":"SLE11-SDK-SP3-Updates for sle-11-ia64"},{"enabled":true,"id":1281,"distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Pool/sle-11-x86_64/","installer_updates":false,"name":"SLE11-SDK-SP3-Pool","description":"SLE11-SDK-SP3-Pool for sle-11-x86_64"},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Updates/sle-11-s390x/","autorefresh":true,"distro_target":"sle-11-s390x","id":1282,"enabled":true,"description":"SLE11-SDK-SP3-Updates for sle-11-s390x","name":"SLE11-SDK-SP3-Updates","installer_updates":false},{"autorefresh":true,"distro_target":"sle-11-ppc64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Pool/sle-11-ppc64/","enabled":true,"id":1283,"description":"SLE11-SDK-SP3-Pool for sle-11-ppc64","name":"SLE11-SDK-SP3-Pool","installer_updates":false},{"name":"SLE11-SDK-SP3-Updates","installer_updates":false,"description":"SLE11-SDK-SP3-Updates for sle-11-x86_64","id":1284,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Updates/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64"},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Updates/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true,"id":1285,"enabled":true,"description":"SLE11-SDK-SP3-Updates for sle-11-i586","installer_updates":false,"name":"SLE11-SDK-SP3-Updates"},{"description":"SLE11-SDK-SP3-Pool for sle-11-s390x","installer_updates":false,"name":"SLE11-SDK-SP3-Pool","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Pool/sle-11-s390x/","distro_target":"sle-11-s390x","autorefresh":true,"id":1286,"enabled":true}],"online_predecessor_ids":[],"product_class":"SLE-SDK","product_type":"extension","cpe":null,"recommended":false,"version":"11.3","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Software Development Kit","release_type":null,"former_identifier":"sle-sdk","migration_extra":false,"friendly_name":"SUSE Linux Enterprise Software Development Kit 11 SP3","friendly_version":"11 SP3","extensions":[],"identifier":"sle-sdk","release_stage":"released","id":1161},{"id":1164,"release_stage":"released","identifier":"sle-sdk-SP3-migration","extensions":[],"friendly_version":"11 SP2","friendly_name":"SUSE Linux Enterprise Software Development Kit 11 SP2 (Migration)","migration_extra":false,"release_type":null,"former_identifier":"sle-sdk-SP3-migration","name":"SUSE Linux Enterprise Software Development Kit","offline_predecessor_ids":[],"version":"11.2","recommended":false,"cpe":null,"product_type":"extension","product_class":"SLE-SDK","online_predecessor_ids":[],"repositories":[{"description":"SLE11-SDK-SP3-Pool for sle-11-i586","installer_updates":false,"name":"SLE11-SDK-SP3-Pool","distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Pool/sle-11-i586/","enabled":true,"id":1277},{"description":"SLE11-SDK-SP3-Pool for sle-11-ia64","installer_updates":false,"name":"SLE11-SDK-SP3-Pool","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Pool/sle-11-ia64/","distro_target":"sle-11-ia64","autorefresh":true,"id":1278,"enabled":true},{"installer_updates":false,"name":"SLE11-SDK-SP3-Updates","description":"SLE11-SDK-SP3-Updates for sle-11-ppc64","enabled":true,"id":1279,"distro_target":"sle-11-ppc64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Updates/sle-11-ppc64/"},{"id":1280,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Updates/sle-11-ia64/","distro_target":"sle-11-ia64","autorefresh":true,"installer_updates":false,"name":"SLE11-SDK-SP3-Updates","description":"SLE11-SDK-SP3-Updates for sle-11-ia64"},{"description":"SLE11-SDK-SP3-Pool for sle-11-x86_64","installer_updates":false,"name":"SLE11-SDK-SP3-Pool","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Pool/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true,"id":1281,"enabled":true},{"id":1282,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Updates/sle-11-s390x/","distro_target":"sle-11-s390x","autorefresh":true,"installer_updates":false,"name":"SLE11-SDK-SP3-Updates","description":"SLE11-SDK-SP3-Updates for sle-11-s390x"},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Pool/sle-11-ppc64/","distro_target":"sle-11-ppc64","autorefresh":true,"id":1283,"enabled":true,"description":"SLE11-SDK-SP3-Pool for sle-11-ppc64","installer_updates":false,"name":"SLE11-SDK-SP3-Pool"},{"description":"SLE11-SDK-SP3-Updates for sle-11-x86_64","installer_updates":false,"name":"SLE11-SDK-SP3-Updates","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Updates/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true,"id":1284,"enabled":true},{"description":"SLE11-SDK-SP3-Updates for sle-11-i586","installer_updates":false,"name":"SLE11-SDK-SP3-Updates","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Updates/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true,"id":1285,"enabled":true},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Pool/sle-11-s390x/","autorefresh":true,"distro_target":"sle-11-s390x","id":1286,"enabled":true,"description":"SLE11-SDK-SP3-Pool for sle-11-s390x","name":"SLE11-SDK-SP3-Pool","installer_updates":false}],"predecessor_ids":[],"arch":null,"eula_url":"","description":null,"shortname":null,"free":true},{"shortname":null,"description":null,"free":true,"arch":null,"eula_url":"","online_predecessor_ids":[],"product_class":"SLESMT","repositories":[{"distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP3-Updates/sle-11-x86_64/","enabled":true,"id":1405,"description":"SLE11-SMT-SP3-Updates for sle-11-x86_64","installer_updates":false,"name":"SLE11-SMT-SP3-Updates"},{"description":"SLE11-SMT-SP3-Updates for sle-11-i586","installer_updates":false,"name":"SLE11-SMT-SP3-Updates","url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP3-Updates/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true,"id":1406,"enabled":true},{"description":"SLE11-SMT-SP3-Updates for sle-11-s390x","name":"SLE11-SMT-SP3-Updates","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP3-Updates/sle-11-s390x/","autorefresh":true,"distro_target":"sle-11-s390x","id":1407,"enabled":true},{"description":"SLE11-SMT-SP3-Pool for sle-11-s390x","name":"SLE11-SMT-SP3-Pool","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP3-Pool/sle-11-s390x/","autorefresh":true,"distro_target":"sle-11-s390x","id":1408,"enabled":true},{"name":"SLE11-SMT-SP3-Pool","installer_updates":false,"description":"SLE11-SMT-SP3-Pool for sle-11-x86_64","enabled":true,"id":1409,"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP3-Pool/sle-11-x86_64/"},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP3-Pool/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true,"id":1410,"enabled":true,"description":"SLE11-SMT-SP3-Pool for sle-11-i586","installer_updates":false,"name":"SLE11-SMT-SP3-Pool"}],"predecessor_ids":[],"cpe":null,"product_type":"extension","version":"11.3","recommended":false,"friendly_name":"SUSE Linux Enterprise Subscription Management Tool 11 SP3","migration_extra":false,"release_type":null,"former_identifier":"sle-smt","name":"SUSE Linux Enterprise Subscription Management Tool","offline_predecessor_ids":[],"friendly_version":"11 SP3","release_stage":"released","identifier":"sle-smt","id":1198,"extensions":[]},{"friendly_version":"11 SP2","identifier":"sle-smt-SP3-migration","release_stage":"released","id":1199,"extensions":[],"version":"11.2","recommended":false,"friendly_name":"SUSE Linux Enterprise Subscription Management Tool 11 SP2 (Migration)","migration_extra":false,"former_identifier":"sle-smt-SP3-migration","release_type":null,"name":"SUSE Linux Enterprise Subscription Management Tool","offline_predecessor_ids":[],"online_predecessor_ids":[],"repositories":[{"name":"SLE11-SMT-SP3-Pool","installer_updates":false,"description":"SLE11-SMT-SP3-Pool for sle-11-s390x","id":1408,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP3-Pool/sle-11-s390x/","autorefresh":true,"distro_target":"sle-11-s390x"},{"installer_updates":false,"name":"SLE11-SMT-SP3-Pool","description":"SLE11-SMT-SP3-Pool for sle-11-x86_64","enabled":true,"id":1409,"distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP3-Pool/sle-11-x86_64/"},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP3-Pool/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true,"id":1410,"enabled":true,"description":"SLE11-SMT-SP3-Pool for sle-11-i586","installer_updates":false,"name":"SLE11-SMT-SP3-Pool"}],"product_class":"SLESMT","predecessor_ids":[],"cpe":null,"product_type":"extension","description":null,"shortname":null,"free":true,"arch":null,"eula_url":""},{"shortname":null,"description":null,"free":true,"eula_url":"","arch":null,"predecessor_ids":[],"online_predecessor_ids":[],"product_class":"WEBYAST","repositories":[{"installer_updates":false,"name":"SLE11-SP2-WebYaST-1.3-Pool","description":"SLE11-SP2-WebYaST-1.3-Pool for sle-11-x86_64","enabled":true,"id":1185,"distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-WebYaST-1.3-Pool/sle-11-x86_64/"},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-WebYaST-1.3-Updates/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true,"id":1188,"enabled":true,"description":"SLE11-SP2-WebYaST-1.3-Updates for sle-11-x86_64","installer_updates":false,"name":"SLE11-SP2-WebYaST-1.3-Updates"},{"autorefresh":true,"distro_target":"sle-11-s390x","url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-WebYaST-1.3-Pool/sle-11-s390x/","enabled":true,"id":1411,"description":"SLE11-SP2-WebYaST-1.3-Pool for sle-11-s390x","name":"SLE11-SP2-WebYaST-1.3-Pool","installer_updates":false},{"id":1412,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-WebYaST-1.3-Updates/sle-11-s390x/","distro_target":"sle-11-s390x","autorefresh":true,"installer_updates":false,"name":"SLE11-SP2-WebYaST-1.3-Updates","description":"SLE11-SP2-WebYaST-1.3-Updates for sle-11-s390x"},{"distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-WebYaST-1.3-Updates/sle-11-i586/","enabled":true,"id":1413,"description":"SLE11-SP2-WebYaST-1.3-Updates for sle-11-i586","installer_updates":false,"name":"SLE11-SP2-WebYaST-1.3-Updates"},{"description":"SLE11-SP2-WebYaST-1.3-Pool for sle-11-ppc64","name":"SLE11-SP2-WebYaST-1.3-Pool","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-ppc64","url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-WebYaST-1.3-Pool/sle-11-ppc64/","enabled":true,"id":1414},{"description":"SLE11-SP2-WebYaST-1.3-Updates for sle-11-ia64","installer_updates":false,"name":"SLE11-SP2-WebYaST-1.3-Updates","url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-WebYaST-1.3-Updates/sle-11-ia64/","distro_target":"sle-11-ia64","autorefresh":true,"id":1415,"enabled":true},{"name":"SLE11-SP2-WebYaST-1.3-Pool","installer_updates":false,"description":"SLE11-SP2-WebYaST-1.3-Pool for sle-11-ia64","enabled":true,"id":1416,"autorefresh":true,"distro_target":"sle-11-ia64","url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-WebYaST-1.3-Pool/sle-11-ia64/"},{"installer_updates":false,"name":"SLE11-SP2-WebYaST-1.3-Pool","description":"SLE11-SP2-WebYaST-1.3-Pool for sle-11-i586","id":1417,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-WebYaST-1.3-Pool/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true},{"description":"SLE11-SP2-WebYaST-1.3-Updates for sle-11-ppc64","name":"SLE11-SP2-WebYaST-1.3-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-ppc64","url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-WebYaST-1.3-Updates/sle-11-ppc64/","enabled":true,"id":1418}],"cpe":null,"product_type":"extension","recommended":false,"version":"1.3","name":"SUSE WebYaST","offline_predecessor_ids":[],"friendly_name":"SUSE WebYaST 1.3","migration_extra":false,"release_type":null,"former_identifier":"sle-11-WebYaST","friendly_version":"1.3","extensions":[],"identifier":"sle-11-WebYaST","release_stage":"released","id":1206},{"friendly_version":"4","release_stage":"released","id":1221,"identifier":"SUSE-Cloud","extensions":[],"version":"4","recommended":false,"former_identifier":"SUSE-Cloud","release_type":null,"friendly_name":"SUSE Cloud 4 x86_64","migration_extra":false,"offline_predecessor_ids":[],"name":"SUSE Cloud","product_class":"SUSE_CLOUD","online_predecessor_ids":[],"repositories":[{"description":"SUSE-Cloud-4-Pool for sle-11-x86_64","name":"SUSE-Cloud-4-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SUSE-Cloud-4-Pool/sle-11-x86_64/","enabled":true,"id":1466},{"distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SUSE-Cloud-4-Updates/sle-11-x86_64/","enabled":true,"id":1467,"description":"SUSE-Cloud-4-Updates for sle-11-x86_64","installer_updates":false,"name":"SUSE-Cloud-4-Updates"},{"enabled":false,"id":1770,"autorefresh":false,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SUSE-Cloud-5-Pool/sle-11-x86_64/","name":"SUSE-Cloud-5-Pool","installer_updates":false,"description":"SUSE-Cloud-5-Pool for sle-11-x86_64"},{"enabled":false,"id":1771,"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SUSE-Cloud-5-Updates/sle-11-x86_64/","name":"SUSE-Cloud-5-Updates","installer_updates":false,"description":"SUSE-Cloud-5-Updates for sle-11-x86_64"}],"predecessor_ids":[],"product_type":"extension","cpe":null,"free":false,"shortname":null,"description":null,"arch":"x86_64","eula_url":""},{"offline_predecessor_ids":[],"name":"SUSE Linux Enterprise High Availability Extension","former_identifier":"sle-hae-SP4-migration","release_type":null,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise High Availability Extension 11 SP3 x86_64 (Migration)","recommended":false,"version":"11.3","extensions":[{"friendly_version":"11 SP3","extensions":[],"identifier":"sle-haegeo","release_stage":"released","id":1107,"recommended":false,"version":"11.3","offline_predecessor_ids":[],"name":"Geo Clustering for SUSE Linux Enterprise High Availability Extension","former_identifier":"sle-haegeo","release_type":null,"friendly_name":"Geo Clustering for SUSE Linux Enterprise High Availability Extension 11 SP3 x86_64","migration_extra":false,"predecessor_ids":[],"online_predecessor_ids":[],"repositories":[{"installer_updates":false,"name":"SLE11-HAE-GEO-SP3-Updates","description":"SLE11-HAE-GEO-SP3-Updates for sle-11-x86_64","enabled":true,"id":1120,"distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-GEO-SP3-Updates/sle-11-x86_64/"}],"product_class":"SLE-HAE-GEO","product_type":"extension","cpe":null,"free":false,"description":null,"shortname":null,"eula_url":"","arch":"x86_64"}],"id":1278,"release_stage":"released","identifier":"sle-hae-SP4-migration","friendly_version":"11 SP3","eula_url":"","arch":"x86_64","free":false,"shortname":null,"description":null,"product_type":"extension","cpe":null,"predecessor_ids":[],"online_predecessor_ids":[],"product_class":"SLE-HAE-X86","repositories":[{"distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP4-Pool/sle-11-x86_64/","enabled":true,"id":1750,"description":"SLE11-HAE-SP4-Pool for sle-11-x86_64","installer_updates":false,"name":"SLE11-HAE-SP4-Pool"},{"enabled":true,"id":1753,"distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP4-Updates/sle-11-x86_64/","installer_updates":false,"name":"SLE11-HAE-SP4-Updates","description":"SLE11-HAE-SP4-Updates for sle-11-x86_64"}]},{"product_type":"extension","cpe":null,"online_predecessor_ids":[],"repositories":[{"installer_updates":false,"name":"SUSE-Cloud-5-Pool","description":"SUSE-Cloud-5-Pool for sle-11-x86_64","id":1770,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SUSE-Cloud-5-Pool/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":false},{"name":"SUSE-Cloud-5-Updates","installer_updates":false,"description":"SUSE-Cloud-5-Updates for sle-11-x86_64","id":1771,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SUSE-Cloud-5-Updates/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64"}],"product_class":"SUSE_CLOUD","predecessor_ids":[],"arch":"x86_64","eula_url":"","free":false,"shortname":null,"description":null,"release_stage":"released","id":1288,"identifier":"SUSE-Cloud","extensions":[],"friendly_version":"5","release_type":null,"former_identifier":"SUSE-Cloud","friendly_name":"SUSE Cloud 5 x86_64","migration_extra":false,"offline_predecessor_ids":[],"name":"SUSE Cloud","version":"5","recommended":false},{"offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Software Development Kit","release_type":null,"former_identifier":"sle-sdk-SP4-migration","migration_extra":false,"friendly_name":"SUSE Linux Enterprise Software Development Kit 11 SP3 (Migration)","recommended":false,"version":"11.3","extensions":[],"release_stage":"released","identifier":"sle-sdk-SP4-migration","id":1318,"friendly_version":"11 SP3","eula_url":"","arch":null,"free":true,"shortname":null,"description":null,"product_type":"extension","cpe":null,"predecessor_ids":[],"repositories":[{"name":"SLE11-SDK-SP1-Updates","installer_updates":false,"description":"SLE11-SDK-SP1-Updates for sle-11-ia64","enabled":false,"id":1257,"autorefresh":true,"distro_target":"sle-11-ia64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Updates/sle-11-ia64/"},{"name":"SLE11-SDK-SP1-Pool","installer_updates":false,"description":"SLE11-SDK-SP1-Pool for sle-11-ia64","id":1258,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-ia64/","autorefresh":true,"distro_target":"sle-11-ia64"},{"enabled":false,"id":1259,"autorefresh":true,"distro_target":"sle-11-s390x","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-s390x/","name":"SLE11-SDK-SP1-Pool","installer_updates":false,"description":"SLE11-SDK-SP1-Pool for sle-11-s390x"},{"description":"SLE11-SDK-SP1-Updates for sle-11-ppc64","installer_updates":false,"name":"SLE11-SDK-SP1-Updates","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Updates/sle-11-ppc64/","distro_target":"sle-11-ppc64","autorefresh":true,"id":1260,"enabled":false},{"description":"SLE11-SDK-SP1-Pool for sle-11-ppc64","installer_updates":false,"name":"SLE11-SDK-SP1-Pool","distro_target":"sle-11-ppc64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-ppc64/","enabled":false,"id":1261},{"installer_updates":false,"name":"SLE11-SDK-SP1-Updates","description":"SLE11-SDK-SP1-Updates for sle-11-i586","id":1262,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Updates/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true},{"name":"SLE11-SDK-SP1-Pool","installer_updates":false,"description":"SLE11-SDK-SP1-Pool for sle-11-i586","id":1263,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586"},{"installer_updates":false,"name":"SLE11-SDK-SP1-Pool","description":"SLE11-SDK-SP1-Pool for sle-11-x86_64","enabled":false,"id":1264,"distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-x86_64/"},{"enabled":false,"id":1265,"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Updates/sle-11-x86_64/","name":"SLE11-SDK-SP1-Updates","installer_updates":false,"description":"SLE11-SDK-SP1-Updates for sle-11-x86_64"},{"enabled":false,"id":1266,"distro_target":"sle-11-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Updates/sle-11-s390x/","installer_updates":false,"name":"SLE11-SDK-SP1-Updates","description":"SLE11-SDK-SP1-Updates for sle-11-s390x"},{"description":"SLE11-SDK-SP2-Core for sle-11-ia64","name":"SLE11-SDK-SP2-Core","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-ia64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-ia64/","enabled":false,"id":1267},{"installer_updates":false,"name":"SLE11-SDK-SP2-Core","description":"SLE11-SDK-SP2-Core for sle-11-s390x","enabled":false,"id":1268,"distro_target":"sle-11-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-s390x/"},{"description":"SLE11-SDK-SP2-Updates for sle-11-s390x","name":"SLE11-SDK-SP2-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-s390x","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-s390x/","enabled":false,"id":1269},{"enabled":false,"id":1270,"distro_target":"sle-11-ppc64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-ppc64/","installer_updates":false,"name":"SLE11-SDK-SP2-Updates","description":"SLE11-SDK-SP2-Updates for sle-11-ppc64"},{"enabled":false,"id":1271,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-i586/","name":"SLE11-SDK-SP2-Updates","installer_updates":false,"description":"SLE11-SDK-SP2-Updates for sle-11-i586"},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-ia64/","distro_target":"sle-11-ia64","autorefresh":true,"id":1272,"enabled":false,"description":"SLE11-SDK-SP2-Updates for sle-11-ia64","installer_updates":false,"name":"SLE11-SDK-SP2-Updates"},{"name":"SLE11-SDK-SP2-Core","installer_updates":false,"description":"SLE11-SDK-SP2-Core for sle-11-ppc64","enabled":false,"id":1273,"autorefresh":true,"distro_target":"sle-11-ppc64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-ppc64/"},{"description":"SLE11-SDK-SP2-Core for sle-11-i586","name":"SLE11-SDK-SP2-Core","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-i586/","enabled":false,"id":1274},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64","id":1275,"enabled":false,"description":"SLE11-SDK-SP2-Core for sle-11-x86_64","name":"SLE11-SDK-SP2-Core","installer_updates":false},{"enabled":false,"id":1276,"distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-x86_64/","installer_updates":false,"name":"SLE11-SDK-SP2-Updates","description":"SLE11-SDK-SP2-Updates for sle-11-x86_64"},{"description":"SLE11-SDK-SP3-Pool for sle-11-i586","installer_updates":false,"name":"SLE11-SDK-SP3-Pool","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Pool/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true,"id":1277,"enabled":false},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Pool/sle-11-ia64/","distro_target":"sle-11-ia64","autorefresh":true,"id":1278,"enabled":false,"description":"SLE11-SDK-SP3-Pool for sle-11-ia64","installer_updates":false,"name":"SLE11-SDK-SP3-Pool"},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Updates/sle-11-ppc64/","distro_target":"sle-11-ppc64","autorefresh":true,"id":1279,"enabled":false,"description":"SLE11-SDK-SP3-Updates for sle-11-ppc64","installer_updates":false,"name":"SLE11-SDK-SP3-Updates"},{"installer_updates":false,"name":"SLE11-SDK-SP3-Updates","description":"SLE11-SDK-SP3-Updates for sle-11-ia64","id":1280,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Updates/sle-11-ia64/","distro_target":"sle-11-ia64","autorefresh":true},{"name":"SLE11-SDK-SP3-Pool","installer_updates":false,"description":"SLE11-SDK-SP3-Pool for sle-11-x86_64","id":1281,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Pool/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64"},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Updates/sle-11-s390x/","distro_target":"sle-11-s390x","autorefresh":true,"id":1282,"enabled":false,"description":"SLE11-SDK-SP3-Updates for sle-11-s390x","installer_updates":false,"name":"SLE11-SDK-SP3-Updates"},{"distro_target":"sle-11-ppc64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Pool/sle-11-ppc64/","enabled":false,"id":1283,"description":"SLE11-SDK-SP3-Pool for sle-11-ppc64","installer_updates":false,"name":"SLE11-SDK-SP3-Pool"},{"description":"SLE11-SDK-SP3-Updates for sle-11-x86_64","installer_updates":false,"name":"SLE11-SDK-SP3-Updates","distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Updates/sle-11-x86_64/","enabled":false,"id":1284},{"description":"SLE11-SDK-SP3-Updates for sle-11-i586","installer_updates":false,"name":"SLE11-SDK-SP3-Updates","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Updates/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true,"id":1285,"enabled":false},{"id":1286,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Pool/sle-11-s390x/","autorefresh":true,"distro_target":"sle-11-s390x","name":"SLE11-SDK-SP3-Pool","installer_updates":false,"description":"SLE11-SDK-SP3-Pool for sle-11-s390x"},{"name":"SLE11-SDK-SP4-Pool","installer_updates":false,"description":"SLE11-SDK-SP4-Pool for sle-11-i586","enabled":true,"id":1817,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP4-Pool/sle-11-i586/"},{"installer_updates":false,"name":"SLE11-SDK-SP4-Pool","description":"SLE11-SDK-SP4-Pool for sle-11-ia64","enabled":true,"id":1818,"distro_target":"sle-11-ia64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP4-Pool/sle-11-ia64/"},{"enabled":true,"id":1819,"distro_target":"sle-11-ppc64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP4-Pool/sle-11-ppc64/","installer_updates":false,"name":"SLE11-SDK-SP4-Pool","description":"SLE11-SDK-SP4-Pool for sle-11-ppc64"},{"name":"SLE11-SDK-SP4-Pool","installer_updates":false,"description":"SLE11-SDK-SP4-Pool for sle-11-s390x","enabled":true,"id":1820,"autorefresh":true,"distro_target":"sle-11-s390x","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP4-Pool/sle-11-s390x/"},{"name":"SLE11-SDK-SP4-Pool","installer_updates":false,"description":"SLE11-SDK-SP4-Pool for sle-11-x86_64","id":1821,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP4-Pool/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64"},{"installer_updates":false,"name":"SLE11-SDK-SP4-Updates","description":"SLE11-SDK-SP4-Updates for sle-11-i586","enabled":true,"id":1822,"distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP4-Updates/sle-11-i586/"},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP4-Updates/sle-11-ia64/","autorefresh":true,"distro_target":"sle-11-ia64","id":1823,"enabled":true,"description":"SLE11-SDK-SP4-Updates for sle-11-ia64","name":"SLE11-SDK-SP4-Updates","installer_updates":false},{"description":"SLE11-SDK-SP4-Updates for sle-11-ppc64","name":"SLE11-SDK-SP4-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-ppc64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP4-Updates/sle-11-ppc64/","enabled":true,"id":1824},{"id":1825,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP4-Updates/sle-11-s390x/","autorefresh":true,"distro_target":"sle-11-s390x","name":"SLE11-SDK-SP4-Updates","installer_updates":false,"description":"SLE11-SDK-SP4-Updates for sle-11-s390x"},{"enabled":true,"id":1826,"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP4-Updates/sle-11-x86_64/","name":"SLE11-SDK-SP4-Updates","installer_updates":false,"description":"SLE11-SDK-SP4-Updates for sle-11-x86_64"}],"online_predecessor_ids":[],"product_class":"SLE-SDK"},{"product_type":"extension","cpe":null,"online_predecessor_ids":[],"product_class":"SES","repositories":[{"url":"https://updates.suse.com/repo/$RCE/SES-Tools-1.0-Updates/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64","id":1840,"enabled":true,"description":"SES-Tools-1.0-Updates for sle-11-x86_64","name":"SES-Tools-1.0-Updates","installer_updates":false}],"predecessor_ids":[],"arch":"x86_64","eula_url":"","free":false,"description":null,"shortname":null,"id":1321,"release_stage":"released","identifier":"suse-enterprise-storage","extensions":[],"friendly_version":"1.0","release_type":null,"former_identifier":"suse-enterprise-storage","friendly_name":"SUSE Enterprise Storage Tools 1.0 x86_64","migration_extra":false,"offline_predecessor_ids":[],"name":"SUSE Enterprise Storage Tools","version":"1.0","recommended":false}],"id":814,"release_stage":"released","identifier":"SUSE_SLES","friendly_version":"11 SP3","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Server","release_type":null,"former_identifier":"SUSE_SLES","friendly_name":"SUSE Linux Enterprise Server 11 SP3 x86_64","migration_extra":false,"recommended":false,"version":"11.3"},{"offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Server","release_type":null,"former_identifier":"SUSE-Linux-Enterprise-Server-SP1-migration","friendly_name":"SUSE Linux Enterprise Server 10 i586 (Migration)","migration_extra":false,"recommended":false,"version":"10","extensions":[],"id":815,"release_stage":"released","identifier":"SUSE-Linux-Enterprise-Server-SP1-migration","friendly_version":"10","eula_url":"","arch":"i586","free":false,"description":null,"shortname":null,"product_type":"base","cpe":null,"predecessor_ids":[],"product_class":"7261","online_predecessor_ids":[],"repositories":[{"description":"SLES10-SP1-Online for sles-10-i586","name":"SLES10-SP1-Online","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLES10-SP1-Online/sles-10-i586/","autorefresh":true,"distro_target":"sles-10-i586","id":639,"enabled":true}]},{"description":null,"shortname":null,"free":false,"arch":"s390x","eula_url":"","repositories":[{"autorefresh":true,"distro_target":"sles-10-s390x","url":"https://updates.suse.com/repo/$RCE/SLES10-SP1-Online/sles-10-s390x/","enabled":true,"id":650,"description":"SLES10-SP1-Online for sles-10-s390x","name":"SLES10-SP1-Online","installer_updates":false}],"online_predecessor_ids":[],"product_class":"SLES-Z","predecessor_ids":[],"cpe":null,"product_type":"base","version":"10","recommended":false,"friendly_name":"SUSE Linux Enterprise Server 10 s390x (Migration)","migration_extra":false,"release_type":null,"former_identifier":"SUSE-Linux-Enterprise-Server-SP1-migration","name":"SUSE Linux Enterprise Server","offline_predecessor_ids":[],"friendly_version":"10","id":816,"release_stage":"released","identifier":"SUSE-Linux-Enterprise-Server-SP1-migration","extensions":[]},{"name":"SUSE Linux Enterprise Server","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Server 10 SP1 online i586","former_identifier":"SUSE-Linux-Enterprise-Server-SP1","release_type":"online","recommended":false,"version":"10","extensions":[{"free":true,"shortname":null,"description":null,"arch":null,"eula_url":"","product_class":"SLE-SDK","online_predecessor_ids":[],"repositories":[{"installer_updates":false,"name":"SLE10-SDK-SP1-Online","description":"SLE10-SDK-SP1-Online for sles-10-s390x","id":1294,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sles-10-s390x/","distro_target":"sles-10-s390x","autorefresh":true},{"id":1295,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sles-10-x86_64/","autorefresh":true,"distro_target":"sles-10-x86_64","name":"SLE10-SDK-SP1-Online","installer_updates":false,"description":"SLE10-SDK-SP1-Online for sles-10-x86_64"},{"installer_updates":false,"name":"SLE10-SDK-SP1-Online","description":"SLE10-SDK-SP1-Online for sled-10-i586","id":1296,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sled-10-i586/","distro_target":"sled-10-i586","autorefresh":true},{"description":"SLE10-SDK-SP1-Online for sles-10-ppc","installer_updates":false,"name":"SLE10-SDK-SP1-Online","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sles-10-ppc/","distro_target":"sles-10-ppc","autorefresh":true,"id":1297,"enabled":true},{"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Updates/sles-10-s390x/","autorefresh":true,"distro_target":"sles-10-s390x","id":1298,"enabled":true,"description":"SLE10-SDK-SP1-Updates for sles-10-s390x","name":"SLE10-SDK-SP1-Updates","installer_updates":false},{"enabled":true,"id":1299,"autorefresh":true,"distro_target":"sled-10-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Updates/sled-10-x86_64/","name":"SLE10-SDK-SP1-Updates","installer_updates":false,"description":"SLE10-SDK-SP1-Updates for sled-10-x86_64"},{"description":"SLE10-SDK-SP1-Updates for sles-10-x86_64","installer_updates":false,"name":"SLE10-SDK-SP1-Updates","distro_target":"sles-10-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Updates/sles-10-x86_64/","enabled":true,"id":1300},{"enabled":true,"id":1301,"distro_target":"sles-10-ia64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sles-10-ia64/","installer_updates":false,"name":"SLE10-SDK-SP1-Online","description":"SLE10-SDK-SP1-Online for sles-10-ia64"},{"description":"SLE10-SDK-SP1-Updates for sled-10-i586","installer_updates":false,"name":"SLE10-SDK-SP1-Updates","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Updates/sled-10-i586/","distro_target":"sled-10-i586","autorefresh":true,"id":1302,"enabled":true},{"description":"SLE10-SDK-SP1-Online for sles-10-i586","installer_updates":false,"name":"SLE10-SDK-SP1-Online","distro_target":"sles-10-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sles-10-i586/","enabled":true,"id":1303},{"description":"SLE10-SDK-SP1-Updates for sles-10-ia64","installer_updates":false,"name":"SLE10-SDK-SP1-Updates","distro_target":"sles-10-ia64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Updates/sles-10-ia64/","enabled":true,"id":1304},{"id":1305,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Updates/sles-10-ppc/","autorefresh":true,"distro_target":"sles-10-ppc","name":"SLE10-SDK-SP1-Updates","installer_updates":false,"description":"SLE10-SDK-SP1-Updates for sles-10-ppc"},{"id":1306,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Updates/sles-10-i586/","distro_target":"sles-10-i586","autorefresh":true,"installer_updates":false,"name":"SLE10-SDK-SP1-Updates","description":"SLE10-SDK-SP1-Updates for sles-10-i586"},{"enabled":true,"id":1307,"distro_target":"sled-10-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sled-10-x86_64/","installer_updates":false,"name":"SLE10-SDK-SP1-Online","description":"SLE10-SDK-SP1-Online for sled-10-x86_64"}],"predecessor_ids":[],"product_type":"extension","cpe":null,"version":"10","recommended":false,"release_type":null,"former_identifier":"SUSE-Linux-Enterprise-SDK-SP1","friendly_name":"SUSE Linux Enterprise Software Development Kit 10 SP1","migration_extra":false,"offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Software Development Kit","friendly_version":"10 SP1","id":1174,"release_stage":"released","identifier":"SUSE-Linux-Enterprise-SDK-SP1","extensions":[]},{"predecessor_ids":[],"product_class":"SLE-SDK","online_predecessor_ids":[],"repositories":[{"enabled":true,"id":1294,"autorefresh":true,"distro_target":"sles-10-s390x","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sles-10-s390x/","name":"SLE10-SDK-SP1-Online","installer_updates":false,"description":"SLE10-SDK-SP1-Online for sles-10-s390x"},{"autorefresh":true,"distro_target":"sles-10-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sles-10-x86_64/","enabled":true,"id":1295,"description":"SLE10-SDK-SP1-Online for sles-10-x86_64","name":"SLE10-SDK-SP1-Online","installer_updates":false},{"name":"SLE10-SDK-SP1-Online","installer_updates":false,"description":"SLE10-SDK-SP1-Online for sled-10-i586","id":1296,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sled-10-i586/","autorefresh":true,"distro_target":"sled-10-i586"},{"enabled":true,"id":1297,"autorefresh":true,"distro_target":"sles-10-ppc","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sles-10-ppc/","name":"SLE10-SDK-SP1-Online","installer_updates":false,"description":"SLE10-SDK-SP1-Online for sles-10-ppc"},{"enabled":true,"id":1301,"autorefresh":true,"distro_target":"sles-10-ia64","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sles-10-ia64/","name":"SLE10-SDK-SP1-Online","installer_updates":false,"description":"SLE10-SDK-SP1-Online for sles-10-ia64"},{"enabled":true,"id":1303,"autorefresh":true,"distro_target":"sles-10-i586","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sles-10-i586/","name":"SLE10-SDK-SP1-Online","installer_updates":false,"description":"SLE10-SDK-SP1-Online for sles-10-i586"},{"installer_updates":false,"name":"SLE10-SDK-SP1-Online","description":"SLE10-SDK-SP1-Online for sled-10-x86_64","enabled":true,"id":1307,"distro_target":"sled-10-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sled-10-x86_64/"}],"product_type":"extension","cpe":null,"free":true,"description":null,"shortname":null,"eula_url":"","arch":null,"friendly_version":"10","extensions":[],"id":1175,"release_stage":"released","identifier":"SUSE-Linux-Enterprise-SDK-SP1-migration","recommended":false,"version":"10","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Software Development Kit","release_type":null,"former_identifier":"SUSE-Linux-Enterprise-SDK-SP1-migration","migration_extra":false,"friendly_name":"SUSE Linux Enterprise Software Development Kit 10 (Migration)"}],"release_stage":"released","identifier":"SUSE-Linux-Enterprise-Server-SP1","id":817,"friendly_version":"10 SP1","eula_url":"","arch":"i586","shortname":null,"description":null,"free":false,"cpe":null,"product_type":"base","predecessor_ids":[],"online_predecessor_ids":[],"product_class":"7261","repositories":[{"distro_target":"sles-10-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLES10-SP1-Online/sles-10-i586/","enabled":true,"id":639,"description":"SLES10-SP1-Online for sles-10-i586","installer_updates":false,"name":"SLES10-SP1-Online"},{"url":"https://updates.suse.com/repo/$RCE/SLE10-SP1-Debuginfo-Updates/sles-10-i586/","distro_target":"sles-10-i586","autorefresh":true,"id":641,"enabled":false,"description":"SLE10-SP1-Debuginfo-Updates for sles-10-i586","installer_updates":false,"name":"SLE10-SP1-Debuginfo-Updates"},{"description":"SLES10-SP1-LTSS-Updates for sles-10-i586","name":"SLES10-SP1-LTSS-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sles-10-i586","url":"https://updates.suse.com/repo/$RCE/SLES10-SP1-LTSS-Updates/sles-10-i586/","enabled":true,"id":642},{"description":"SLES10-SP1-LTSS-Updates for sles-10-ia64","name":"SLES10-SP1-LTSS-Updates","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLES10-SP1-LTSS-Updates/sles-10-ia64/","autorefresh":true,"distro_target":"sles-10-ia64","id":643,"enabled":true},{"installer_updates":false,"name":"SLES10-SP1-LTSS-Updates","description":"SLES10-SP1-LTSS-Updates for sles-10-s390x","enabled":true,"id":644,"distro_target":"sles-10-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLES10-SP1-LTSS-Updates/sles-10-s390x/"},{"id":645,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLES10-SP1-LTSS-Updates/sles-10-x86_64/","autorefresh":true,"distro_target":"sles-10-x86_64","name":"SLES10-SP1-LTSS-Updates","installer_updates":false,"description":"SLES10-SP1-LTSS-Updates for sles-10-x86_64"},{"description":"SLES10-SP1-Updates for sles-10-i586","name":"SLES10-SP1-Updates","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLES10-SP1-Updates/sles-10-i586/","autorefresh":true,"distro_target":"sles-10-i586","id":646,"enabled":true},{"name":"SLES10-SP1-LTSS-Updates","installer_updates":false,"description":"SLES10-SP1-LTSS-Updates for sles-10-ppc","enabled":true,"id":647,"autorefresh":true,"distro_target":"sles-10-ppc","url":"https://updates.suse.com/repo/$RCE/SLES10-SP1-LTSS-Updates/sles-10-ppc/"}]},{"cpe":null,"product_type":"base","predecessor_ids":[],"online_predecessor_ids":[],"repositories":[{"autorefresh":true,"distro_target":"sles-10-i586","url":"https://updates.suse.com/repo/$RCE/SLES10-SP1-LTSS-Updates/sles-10-i586/","enabled":true,"id":642,"description":"SLES10-SP1-LTSS-Updates for sles-10-i586","name":"SLES10-SP1-LTSS-Updates","installer_updates":false},{"name":"SLES10-SP1-LTSS-Updates","installer_updates":false,"description":"SLES10-SP1-LTSS-Updates for sles-10-ia64","id":643,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLES10-SP1-LTSS-Updates/sles-10-ia64/","autorefresh":true,"distro_target":"sles-10-ia64"},{"autorefresh":true,"distro_target":"sles-10-s390x","url":"https://updates.suse.com/repo/$RCE/SLES10-SP1-LTSS-Updates/sles-10-s390x/","enabled":true,"id":644,"description":"SLES10-SP1-LTSS-Updates for sles-10-s390x","name":"SLES10-SP1-LTSS-Updates","installer_updates":false},{"url":"https://updates.suse.com/repo/$RCE/SLES10-SP1-LTSS-Updates/sles-10-x86_64/","autorefresh":true,"distro_target":"sles-10-x86_64","id":645,"enabled":true,"description":"SLES10-SP1-LTSS-Updates for sles-10-x86_64","name":"SLES10-SP1-LTSS-Updates","installer_updates":false},{"description":"SLES10-SP1-LTSS-Updates for sles-10-ppc","name":"SLES10-SP1-LTSS-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sles-10-ppc","url":"https://updates.suse.com/repo/$RCE/SLES10-SP1-LTSS-Updates/sles-10-ppc/","enabled":true,"id":647},{"enabled":true,"id":742,"autorefresh":true,"distro_target":"sles-10-x86_64","url":"https://updates.suse.com/repo/$RCE/SLES10-SP1-Online/sles-10-x86_64/","name":"SLES10-SP1-Online","installer_updates":false,"description":"SLES10-SP1-Online for sles-10-x86_64"},{"distro_target":"sles-10-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP1-Debuginfo-Updates/sles-10-x86_64/","enabled":false,"id":773,"description":"SLE10-SP1-Debuginfo-Updates for sles-10-x86_64","installer_updates":false,"name":"SLE10-SP1-Debuginfo-Updates"},{"installer_updates":false,"name":"SLES10-SP1-Updates","description":"SLES10-SP1-Updates for sles-10-x86_64","id":774,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLES10-SP1-Updates/sles-10-x86_64/","distro_target":"sles-10-x86_64","autorefresh":true}],"product_class":"7261","eula_url":"","arch":"x86_64","description":null,"shortname":null,"free":false,"extensions":[{"friendly_version":"10 SP1","extensions":[],"identifier":"SUSE-Linux-Enterprise-SDK-SP1","release_stage":"released","id":1174,"recommended":false,"version":"10","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Software Development Kit","former_identifier":"SUSE-Linux-Enterprise-SDK-SP1","release_type":null,"friendly_name":"SUSE Linux Enterprise Software Development Kit 10 SP1","migration_extra":false,"predecessor_ids":[],"online_predecessor_ids":[],"product_class":"SLE-SDK","repositories":[{"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sles-10-s390x/","autorefresh":true,"distro_target":"sles-10-s390x","id":1294,"enabled":true,"description":"SLE10-SDK-SP1-Online for sles-10-s390x","name":"SLE10-SDK-SP1-Online","installer_updates":false},{"description":"SLE10-SDK-SP1-Online for sles-10-x86_64","installer_updates":false,"name":"SLE10-SDK-SP1-Online","distro_target":"sles-10-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sles-10-x86_64/","enabled":true,"id":1295},{"name":"SLE10-SDK-SP1-Online","installer_updates":false,"description":"SLE10-SDK-SP1-Online for sled-10-i586","id":1296,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sled-10-i586/","autorefresh":true,"distro_target":"sled-10-i586"},{"id":1297,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sles-10-ppc/","autorefresh":true,"distro_target":"sles-10-ppc","name":"SLE10-SDK-SP1-Online","installer_updates":false,"description":"SLE10-SDK-SP1-Online for sles-10-ppc"},{"distro_target":"sles-10-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Updates/sles-10-s390x/","enabled":true,"id":1298,"description":"SLE10-SDK-SP1-Updates for sles-10-s390x","installer_updates":false,"name":"SLE10-SDK-SP1-Updates"},{"description":"SLE10-SDK-SP1-Updates for sled-10-x86_64","name":"SLE10-SDK-SP1-Updates","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Updates/sled-10-x86_64/","autorefresh":true,"distro_target":"sled-10-x86_64","id":1299,"enabled":true},{"enabled":true,"id":1300,"autorefresh":true,"distro_target":"sles-10-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Updates/sles-10-x86_64/","name":"SLE10-SDK-SP1-Updates","installer_updates":false,"description":"SLE10-SDK-SP1-Updates for sles-10-x86_64"},{"name":"SLE10-SDK-SP1-Online","installer_updates":false,"description":"SLE10-SDK-SP1-Online for sles-10-ia64","enabled":true,"id":1301,"autorefresh":true,"distro_target":"sles-10-ia64","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sles-10-ia64/"},{"name":"SLE10-SDK-SP1-Updates","installer_updates":false,"description":"SLE10-SDK-SP1-Updates for sled-10-i586","id":1302,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Updates/sled-10-i586/","autorefresh":true,"distro_target":"sled-10-i586"},{"name":"SLE10-SDK-SP1-Online","installer_updates":false,"description":"SLE10-SDK-SP1-Online for sles-10-i586","enabled":true,"id":1303,"autorefresh":true,"distro_target":"sles-10-i586","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sles-10-i586/"},{"autorefresh":true,"distro_target":"sles-10-ia64","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Updates/sles-10-ia64/","enabled":true,"id":1304,"description":"SLE10-SDK-SP1-Updates for sles-10-ia64","name":"SLE10-SDK-SP1-Updates","installer_updates":false},{"description":"SLE10-SDK-SP1-Updates for sles-10-ppc","name":"SLE10-SDK-SP1-Updates","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Updates/sles-10-ppc/","autorefresh":true,"distro_target":"sles-10-ppc","id":1305,"enabled":true},{"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Updates/sles-10-i586/","autorefresh":true,"distro_target":"sles-10-i586","id":1306,"enabled":true,"description":"SLE10-SDK-SP1-Updates for sles-10-i586","name":"SLE10-SDK-SP1-Updates","installer_updates":false},{"description":"SLE10-SDK-SP1-Online for sled-10-x86_64","installer_updates":false,"name":"SLE10-SDK-SP1-Online","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sled-10-x86_64/","distro_target":"sled-10-x86_64","autorefresh":true,"id":1307,"enabled":true}],"product_type":"extension","cpe":null,"free":true,"shortname":null,"description":null,"eula_url":"","arch":null},{"predecessor_ids":[],"online_predecessor_ids":[],"product_class":"SLE-SDK","repositories":[{"enabled":true,"id":1294,"autorefresh":true,"distro_target":"sles-10-s390x","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sles-10-s390x/","name":"SLE10-SDK-SP1-Online","installer_updates":false,"description":"SLE10-SDK-SP1-Online for sles-10-s390x"},{"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sles-10-x86_64/","autorefresh":true,"distro_target":"sles-10-x86_64","id":1295,"enabled":true,"description":"SLE10-SDK-SP1-Online for sles-10-x86_64","name":"SLE10-SDK-SP1-Online","installer_updates":false},{"enabled":true,"id":1296,"autorefresh":true,"distro_target":"sled-10-i586","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sled-10-i586/","name":"SLE10-SDK-SP1-Online","installer_updates":false,"description":"SLE10-SDK-SP1-Online for sled-10-i586"},{"enabled":true,"id":1297,"distro_target":"sles-10-ppc","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sles-10-ppc/","installer_updates":false,"name":"SLE10-SDK-SP1-Online","description":"SLE10-SDK-SP1-Online for sles-10-ppc"},{"name":"SLE10-SDK-SP1-Online","installer_updates":false,"description":"SLE10-SDK-SP1-Online for sles-10-ia64","id":1301,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sles-10-ia64/","autorefresh":true,"distro_target":"sles-10-ia64"},{"id":1303,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sles-10-i586/","distro_target":"sles-10-i586","autorefresh":true,"installer_updates":false,"name":"SLE10-SDK-SP1-Online","description":"SLE10-SDK-SP1-Online for sles-10-i586"},{"description":"SLE10-SDK-SP1-Online for sled-10-x86_64","name":"SLE10-SDK-SP1-Online","installer_updates":false,"autorefresh":true,"distro_target":"sled-10-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sled-10-x86_64/","enabled":true,"id":1307}],"product_type":"extension","cpe":null,"free":true,"description":null,"shortname":null,"eula_url":"","arch":null,"friendly_version":"10","extensions":[],"identifier":"SUSE-Linux-Enterprise-SDK-SP1-migration","release_stage":"released","id":1175,"recommended":false,"version":"10","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Software Development Kit","release_type":null,"former_identifier":"SUSE-Linux-Enterprise-SDK-SP1-migration","migration_extra":false,"friendly_name":"SUSE Linux Enterprise Software Development Kit 10 (Migration)"}],"release_stage":"released","identifier":"SUSE-Linux-Enterprise-Server-SP1","id":818,"friendly_version":"10 SP1","name":"SUSE Linux Enterprise Server","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Server 10 SP1 online x86_64","release_type":"online","former_identifier":"SUSE-Linux-Enterprise-Server-SP1","recommended":false,"version":"10"},{"friendly_version":"10","extensions":[],"id":819,"release_stage":"released","identifier":"SUSE-Linux-Enterprise-Server-SP2-migration","recommended":false,"version":"10","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Server","release_type":null,"former_identifier":"SUSE-Linux-Enterprise-Server-SP2-migration","migration_extra":false,"friendly_name":"SUSE Linux Enterprise Server 10 x86_64 (Migration)","predecessor_ids":[],"product_class":"7261","online_predecessor_ids":[],"repositories":[{"description":"SLES10-SP2-Online for sles-10-x86_64","name":"SLES10-SP2-Online","installer_updates":false,"autorefresh":true,"distro_target":"sles-10-x86_64","url":"https://updates.suse.com/repo/$RCE/SLES10-SP2-Online/sles-10-x86_64/","enabled":true,"id":806}],"product_type":"base","cpe":null,"free":false,"description":null,"shortname":null,"eula_url":"","arch":"x86_64"},{"arch":"ppc","eula_url":"","free":false,"shortname":null,"description":null,"product_type":"base","cpe":null,"online_predecessor_ids":[],"repositories":[{"description":"SLES10-SP2-Online for sles-10-ppc","name":"SLES10-SP2-Online","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLES10-SP2-Online/sles-10-ppc/","autorefresh":true,"distro_target":"sles-10-ppc","id":658,"enabled":true}],"product_class":"SLES-PPC","predecessor_ids":[],"former_identifier":"SUSE-Linux-Enterprise-Server-SP2-migration","release_type":null,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Server 10 ppc (Migration)","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Server","version":"10","recommended":false,"identifier":"SUSE-Linux-Enterprise-Server-SP2-migration","release_stage":"released","id":820,"extensions":[],"friendly_version":"10"},{"version":"10","recommended":false,"former_identifier":"SUSE-Linux-Enterprise-Server-SP2","release_type":null,"friendly_name":"SUSE Linux Enterprise Server 10 SP2 ppc64","migration_extra":false,"offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Server","friendly_version":"10 SP2","release_stage":"released","id":821,"identifier":"SUSE-Linux-Enterprise-Server-SP2","extensions":[{"cpe":null,"product_type":"extension","predecessor_ids":[],"online_predecessor_ids":[],"repositories":[],"product_class":"SLE-SDK","eula_url":"","arch":null,"shortname":null,"description":null,"free":true,"extensions":[],"release_stage":"released","id":1176,"identifier":"SUSE-Linux-Enterprise-SDK-SP2","friendly_version":"10 SP2","name":"SUSE Linux Enterprise Software Development Kit","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Software Development Kit 10 SP2 MigrationBeta","former_identifier":"SUSE-Linux-Enterprise-SDK-SP2","release_type":"MigrationBeta","recommended":false,"version":"10"},{"former_identifier":"SUSE-Linux-Enterprise-SDK-SP2","release_type":null,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Software Development Kit 10 SP2","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Software Development Kit","version":"10","recommended":false,"identifier":"SUSE-Linux-Enterprise-SDK-SP2","release_stage":"released","id":1177,"extensions":[],"friendly_version":"10 SP2","arch":null,"eula_url":"","free":true,"description":null,"shortname":null,"product_type":"extension","cpe":null,"online_predecessor_ids":[],"product_class":"SLE-SDK","repositories":[{"installer_updates":false,"name":"SLE10-SDK-SP2-Online","description":"SLE10-SDK-SP2-Online for sled-10-i586","id":1308,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sled-10-i586/","distro_target":"sled-10-i586","autorefresh":true},{"distro_target":"sles-10-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Updates/sles-10-i586/","enabled":true,"id":1309,"description":"SLE10-SDK-SP2-Updates for sles-10-i586","installer_updates":false,"name":"SLE10-SDK-SP2-Updates"},{"id":1310,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Updates/sles-10-ia64/","distro_target":"sles-10-ia64","autorefresh":true,"installer_updates":false,"name":"SLE10-SDK-SP2-Updates","description":"SLE10-SDK-SP2-Updates for sles-10-ia64"},{"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Updates/sles-10-s390x/","distro_target":"sles-10-s390x","autorefresh":true,"id":1311,"enabled":true,"description":"SLE10-SDK-SP2-Updates for sles-10-s390x","installer_updates":false,"name":"SLE10-SDK-SP2-Updates"},{"installer_updates":false,"name":"SLE10-SDK-SP2-Online","description":"SLE10-SDK-SP2-Online for sles-10-ppc","id":1312,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sles-10-ppc/","distro_target":"sles-10-ppc","autorefresh":true},{"description":"SLE10-SDK-SP2-Online for sles-10-i586","installer_updates":false,"name":"SLE10-SDK-SP2-Online","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sles-10-i586/","distro_target":"sles-10-i586","autorefresh":true,"id":1313,"enabled":true},{"description":"SLE10-SDK-SP2-Online for sled-10-x86_64","installer_updates":false,"name":"SLE10-SDK-SP2-Online","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sled-10-x86_64/","distro_target":"sled-10-x86_64","autorefresh":true,"id":1314,"enabled":true},{"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Updates/sles-10-x86_64/","autorefresh":true,"distro_target":"sles-10-x86_64","id":1315,"enabled":true,"description":"SLE10-SDK-SP2-Updates for sles-10-x86_64","name":"SLE10-SDK-SP2-Updates","installer_updates":false},{"distro_target":"sles-10-ia64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sles-10-ia64/","enabled":true,"id":1316,"description":"SLE10-SDK-SP2-Online for sles-10-ia64","installer_updates":false,"name":"SLE10-SDK-SP2-Online"},{"enabled":true,"id":1317,"autorefresh":true,"distro_target":"sles-10-ppc","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Updates/sles-10-ppc/","name":"SLE10-SDK-SP2-Updates","installer_updates":false,"description":"SLE10-SDK-SP2-Updates for sles-10-ppc"},{"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sles-10-s390x/","distro_target":"sles-10-s390x","autorefresh":true,"id":1318,"enabled":true,"description":"SLE10-SDK-SP2-Online for sles-10-s390x","installer_updates":false,"name":"SLE10-SDK-SP2-Online"},{"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Updates/sled-10-x86_64/","distro_target":"sled-10-x86_64","autorefresh":true,"id":1319,"enabled":true,"description":"SLE10-SDK-SP2-Updates for sled-10-x86_64","installer_updates":false,"name":"SLE10-SDK-SP2-Updates"},{"description":"SLE10-SDK-SP2-Updates for sled-10-i586","installer_updates":false,"name":"SLE10-SDK-SP2-Updates","distro_target":"sled-10-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Updates/sled-10-i586/","enabled":true,"id":1320},{"description":"SLE10-SDK-SP2-Online for sles-10-x86_64","installer_updates":false,"name":"SLE10-SDK-SP2-Online","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sles-10-x86_64/","distro_target":"sles-10-x86_64","autorefresh":true,"id":1321,"enabled":true}],"predecessor_ids":[]},{"friendly_version":"10","extensions":[],"id":1178,"release_stage":"released","identifier":"SUSE-Linux-Enterprise-SDK-SP2-migration","recommended":false,"version":"10","name":"SUSE Linux Enterprise Software Development Kit","offline_predecessor_ids":[],"friendly_name":"SUSE Linux Enterprise Software Development Kit 10 online (Migration)","migration_extra":false,"release_type":"online","former_identifier":"SUSE-Linux-Enterprise-SDK-SP2-migration","predecessor_ids":[],"online_predecessor_ids":[],"product_class":"SLE-SDK","repositories":[{"description":"SLE10-SDK-SP2-Online for sled-10-i586","name":"SLE10-SDK-SP2-Online","installer_updates":false,"autorefresh":true,"distro_target":"sled-10-i586","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sled-10-i586/","enabled":true,"id":1308},{"description":"SLE10-SDK-SP2-Online for sles-10-ppc","installer_updates":false,"name":"SLE10-SDK-SP2-Online","distro_target":"sles-10-ppc","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sles-10-ppc/","enabled":true,"id":1312},{"installer_updates":false,"name":"SLE10-SDK-SP2-Online","description":"SLE10-SDK-SP2-Online for sles-10-i586","enabled":true,"id":1313,"distro_target":"sles-10-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sles-10-i586/"},{"installer_updates":false,"name":"SLE10-SDK-SP2-Online","description":"SLE10-SDK-SP2-Online for sled-10-x86_64","id":1314,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sled-10-x86_64/","distro_target":"sled-10-x86_64","autorefresh":true},{"autorefresh":true,"distro_target":"sles-10-ia64","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sles-10-ia64/","enabled":true,"id":1316,"description":"SLE10-SDK-SP2-Online for sles-10-ia64","name":"SLE10-SDK-SP2-Online","installer_updates":false},{"description":"SLE10-SDK-SP2-Online for sles-10-s390x","name":"SLE10-SDK-SP2-Online","installer_updates":false,"autorefresh":true,"distro_target":"sles-10-s390x","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sles-10-s390x/","enabled":true,"id":1318},{"description":"SLE10-SDK-SP2-Online for sles-10-x86_64","name":"SLE10-SDK-SP2-Online","installer_updates":false,"autorefresh":true,"distro_target":"sles-10-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sles-10-x86_64/","enabled":true,"id":1321}],"cpe":null,"product_type":"extension","description":null,"shortname":null,"free":true,"eula_url":"","arch":null},{"description":null,"shortname":null,"free":true,"arch":null,"eula_url":"","online_predecessor_ids":[],"repositories":[{"url":"https://updates.suse.com/repo/$RCE/SLE10-SP2-SMT-Updates/sles-10-x86_64/","autorefresh":true,"distro_target":"sles-10-x86_64","id":1398,"enabled":true,"description":"SLE10-SP2-SMT-Updates for sles-10-x86_64","name":"SLE10-SP2-SMT-Updates","installer_updates":false},{"url":"https://updates.suse.com/repo/$RCE/SLE10-SP2-SMT-Updates/sles-10-i586/","distro_target":"sles-10-i586","autorefresh":true,"id":1399,"enabled":true,"description":"SLE10-SP2-SMT-Updates for sles-10-i586","installer_updates":false,"name":"SLE10-SP2-SMT-Updates"}],"product_class":"SLESMT","predecessor_ids":[],"cpe":null,"product_type":"extension","version":"10.2","recommended":false,"friendly_name":"SUSE Linux Enterprise Subscription Management Tool 10 SP2","migration_extra":false,"release_type":null,"former_identifier":"SUSE-Linux-Enterprise-SMT-SP2","name":"SUSE Linux Enterprise Subscription Management Tool","offline_predecessor_ids":[],"friendly_version":"10 SP2","id":1195,"release_stage":"released","identifier":"SUSE-Linux-Enterprise-SMT-SP2","extensions":[]}],"free":false,"description":null,"shortname":null,"arch":"ppc64","eula_url":"","repositories":[{"description":"SLES10-SP2-Online for sles-10-ppc","installer_updates":false,"name":"SLES10-SP2-Online","url":"https://updates.suse.com/repo/$RCE/SLES10-SP2-Online/sles-10-ppc/","distro_target":"sles-10-ppc","autorefresh":true,"id":658,"enabled":false},{"id":659,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLES10-SP2-Updates/sles-10-ppc/","distro_target":"sles-10-ppc","autorefresh":true,"installer_updates":false,"name":"SLES10-SP2-Updates","description":"SLES10-SP2-Updates for sles-10-ppc"},{"url":"https://updates.suse.com/repo/$RCE/SLES10-SP2-Pool/sles-10-ppc/","distro_target":"sles-10-ppc","autorefresh":false,"id":660,"enabled":true,"description":"SLES10-SP2-Pool for sles-10-ppc","installer_updates":false,"name":"SLES10-SP2-Pool"},{"distro_target":"sles-10-ppc","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP2-Debuginfo-Updates/sles-10-ppc/","enabled":false,"id":661,"description":"SLE10-SP2-Debuginfo-Updates for sles-10-ppc","installer_updates":false,"name":"SLE10-SP2-Debuginfo-Updates"}],"online_predecessor_ids":[],"product_class":"SLES-PPC","predecessor_ids":[],"product_type":"base","cpe":null},{"repositories":[{"url":"https://updates.suse.com/repo/$RCE/SLES10-SP2-Online/sles-10-x86_64/","distro_target":"sles-10-x86_64","autorefresh":true,"id":806,"enabled":true,"description":"SLES10-SP2-Online for sles-10-x86_64","installer_updates":false,"name":"SLES10-SP2-Online"},{"autorefresh":true,"distro_target":"sles-10-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE10-SP2-Debuginfo-Updates/sles-10-x86_64/","enabled":false,"id":808,"description":"SLE10-SP2-Debuginfo-Updates for sles-10-x86_64","name":"SLE10-SP2-Debuginfo-Updates","installer_updates":false},{"name":"SLES10-SP2-Updates","installer_updates":false,"description":"SLES10-SP2-Updates for sles-10-x86_64","id":809,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLES10-SP2-Updates/sles-10-x86_64/","autorefresh":true,"distro_target":"sles-10-x86_64"},{"name":"SLES10-SP2-LTSS-Updates","installer_updates":false,"description":"SLES10-SP2-LTSS-Updates for sles-10-x86_64","id":810,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLES10-SP2-LTSS-Updates/sles-10-x86_64/","autorefresh":true,"distro_target":"sles-10-x86_64"}],"online_predecessor_ids":[],"product_class":"7261","predecessor_ids":[],"cpe":null,"product_type":"base","description":null,"shortname":null,"free":false,"arch":"x86_64","eula_url":"","friendly_version":"10 SP2","id":822,"release_stage":"released","identifier":"SUSE-Linux-Enterprise-Server-SP2","extensions":[{"cpe":null,"product_type":"extension","product_class":"SLE-SDK","online_predecessor_ids":[],"repositories":[],"predecessor_ids":[],"arch":null,"eula_url":"","description":null,"shortname":null,"free":true,"release_stage":"released","identifier":"SUSE-Linux-Enterprise-SDK-SP2","id":1176,"extensions":[],"friendly_version":"10 SP2","friendly_name":"SUSE Linux Enterprise Software Development Kit 10 SP2 MigrationBeta","migration_extra":false,"release_type":"MigrationBeta","former_identifier":"SUSE-Linux-Enterprise-SDK-SP2","name":"SUSE Linux Enterprise Software Development Kit","offline_predecessor_ids":[],"version":"10","recommended":false},{"extensions":[],"release_stage":"released","id":1177,"identifier":"SUSE-Linux-Enterprise-SDK-SP2","friendly_version":"10 SP2","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Software Development Kit","former_identifier":"SUSE-Linux-Enterprise-SDK-SP2","release_type":null,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Software Development Kit 10 SP2","recommended":false,"version":"10","product_type":"extension","cpe":null,"predecessor_ids":[],"online_predecessor_ids":[],"product_class":"SLE-SDK","repositories":[{"description":"SLE10-SDK-SP2-Online for sled-10-i586","installer_updates":false,"name":"SLE10-SDK-SP2-Online","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sled-10-i586/","distro_target":"sled-10-i586","autorefresh":true,"id":1308,"enabled":true},{"name":"SLE10-SDK-SP2-Updates","installer_updates":false,"description":"SLE10-SDK-SP2-Updates for sles-10-i586","enabled":true,"id":1309,"autorefresh":true,"distro_target":"sles-10-i586","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Updates/sles-10-i586/"},{"description":"SLE10-SDK-SP2-Updates for sles-10-ia64","installer_updates":false,"name":"SLE10-SDK-SP2-Updates","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Updates/sles-10-ia64/","distro_target":"sles-10-ia64","autorefresh":true,"id":1310,"enabled":true},{"description":"SLE10-SDK-SP2-Updates for sles-10-s390x","name":"SLE10-SDK-SP2-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sles-10-s390x","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Updates/sles-10-s390x/","enabled":true,"id":1311},{"autorefresh":true,"distro_target":"sles-10-ppc","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sles-10-ppc/","enabled":true,"id":1312,"description":"SLE10-SDK-SP2-Online for sles-10-ppc","name":"SLE10-SDK-SP2-Online","installer_updates":false},{"description":"SLE10-SDK-SP2-Online for sles-10-i586","name":"SLE10-SDK-SP2-Online","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sles-10-i586/","autorefresh":true,"distro_target":"sles-10-i586","id":1313,"enabled":true},{"installer_updates":false,"name":"SLE10-SDK-SP2-Online","description":"SLE10-SDK-SP2-Online for sled-10-x86_64","id":1314,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sled-10-x86_64/","distro_target":"sled-10-x86_64","autorefresh":true},{"description":"SLE10-SDK-SP2-Updates for sles-10-x86_64","installer_updates":false,"name":"SLE10-SDK-SP2-Updates","distro_target":"sles-10-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Updates/sles-10-x86_64/","enabled":true,"id":1315},{"description":"SLE10-SDK-SP2-Online for sles-10-ia64","installer_updates":false,"name":"SLE10-SDK-SP2-Online","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sles-10-ia64/","distro_target":"sles-10-ia64","autorefresh":true,"id":1316,"enabled":true},{"name":"SLE10-SDK-SP2-Updates","installer_updates":false,"description":"SLE10-SDK-SP2-Updates for sles-10-ppc","enabled":true,"id":1317,"autorefresh":true,"distro_target":"sles-10-ppc","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Updates/sles-10-ppc/"},{"description":"SLE10-SDK-SP2-Online for sles-10-s390x","name":"SLE10-SDK-SP2-Online","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sles-10-s390x/","autorefresh":true,"distro_target":"sles-10-s390x","id":1318,"enabled":true},{"description":"SLE10-SDK-SP2-Updates for sled-10-x86_64","name":"SLE10-SDK-SP2-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sled-10-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Updates/sled-10-x86_64/","enabled":true,"id":1319},{"autorefresh":true,"distro_target":"sled-10-i586","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Updates/sled-10-i586/","enabled":true,"id":1320,"description":"SLE10-SDK-SP2-Updates for sled-10-i586","name":"SLE10-SDK-SP2-Updates","installer_updates":false},{"name":"SLE10-SDK-SP2-Online","installer_updates":false,"description":"SLE10-SDK-SP2-Online for sles-10-x86_64","id":1321,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sles-10-x86_64/","autorefresh":true,"distro_target":"sles-10-x86_64"}],"eula_url":"","arch":null,"free":true,"description":null,"shortname":null},{"version":"10","recommended":false,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Software Development Kit 10 online (Migration)","former_identifier":"SUSE-Linux-Enterprise-SDK-SP2-migration","release_type":"online","name":"SUSE Linux Enterprise Software Development Kit","offline_predecessor_ids":[],"friendly_version":"10","identifier":"SUSE-Linux-Enterprise-SDK-SP2-migration","release_stage":"released","id":1178,"extensions":[],"shortname":null,"description":null,"free":true,"arch":null,"eula_url":"","online_predecessor_ids":[],"repositories":[{"distro_target":"sled-10-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sled-10-i586/","enabled":true,"id":1308,"description":"SLE10-SDK-SP2-Online for sled-10-i586","installer_updates":false,"name":"SLE10-SDK-SP2-Online"},{"enabled":true,"id":1312,"distro_target":"sles-10-ppc","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sles-10-ppc/","installer_updates":false,"name":"SLE10-SDK-SP2-Online","description":"SLE10-SDK-SP2-Online for sles-10-ppc"},{"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sles-10-i586/","autorefresh":true,"distro_target":"sles-10-i586","id":1313,"enabled":true,"description":"SLE10-SDK-SP2-Online for sles-10-i586","name":"SLE10-SDK-SP2-Online","installer_updates":false},{"id":1314,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sled-10-x86_64/","distro_target":"sled-10-x86_64","autorefresh":true,"installer_updates":false,"name":"SLE10-SDK-SP2-Online","description":"SLE10-SDK-SP2-Online for sled-10-x86_64"},{"installer_updates":false,"name":"SLE10-SDK-SP2-Online","description":"SLE10-SDK-SP2-Online for sles-10-ia64","id":1316,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sles-10-ia64/","distro_target":"sles-10-ia64","autorefresh":true},{"enabled":true,"id":1318,"distro_target":"sles-10-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sles-10-s390x/","installer_updates":false,"name":"SLE10-SDK-SP2-Online","description":"SLE10-SDK-SP2-Online for sles-10-s390x"},{"id":1321,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sles-10-x86_64/","distro_target":"sles-10-x86_64","autorefresh":true,"installer_updates":false,"name":"SLE10-SDK-SP2-Online","description":"SLE10-SDK-SP2-Online for sles-10-x86_64"}],"product_class":"SLE-SDK","predecessor_ids":[],"cpe":null,"product_type":"extension"},{"friendly_version":"10 SP2","release_stage":"released","identifier":"SUSE-Linux-Enterprise-SMT-SP2","id":1195,"extensions":[],"version":"10.2","recommended":false,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Subscription Management Tool 10 SP2","former_identifier":"SUSE-Linux-Enterprise-SMT-SP2","release_type":null,"name":"SUSE Linux Enterprise Subscription Management Tool","offline_predecessor_ids":[],"online_predecessor_ids":[],"repositories":[{"description":"SLE10-SP2-SMT-Updates for sles-10-x86_64","name":"SLE10-SP2-SMT-Updates","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP2-SMT-Updates/sles-10-x86_64/","autorefresh":true,"distro_target":"sles-10-x86_64","id":1398,"enabled":true},{"description":"SLE10-SP2-SMT-Updates for sles-10-i586","name":"SLE10-SP2-SMT-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sles-10-i586","url":"https://updates.suse.com/repo/$RCE/SLE10-SP2-SMT-Updates/sles-10-i586/","enabled":true,"id":1399}],"product_class":"SLESMT","predecessor_ids":[],"cpe":null,"product_type":"extension","shortname":null,"description":null,"free":true,"arch":null,"eula_url":""}],"version":"10","recommended":false,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Server 10 SP2 online x86_64","former_identifier":"SUSE-Linux-Enterprise-Server-SP2","release_type":"online","name":"SUSE Linux Enterprise Server","offline_predecessor_ids":[]},{"offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Server","release_type":"online","former_identifier":"SUSE-Linux-Enterprise-Server-SP2","friendly_name":"SUSE Linux Enterprise Server 10 SP2 online ia64","migration_extra":false,"recommended":false,"version":"10","extensions":[{"recommended":false,"version":"10","name":"SUSE Linux Enterprise Software Development Kit","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Software Development Kit 10 SP2 MigrationBeta","release_type":"MigrationBeta","former_identifier":"SUSE-Linux-Enterprise-SDK-SP2","friendly_version":"10 SP2","extensions":[],"id":1176,"release_stage":"released","identifier":"SUSE-Linux-Enterprise-SDK-SP2","description":null,"shortname":null,"free":true,"eula_url":"","arch":null,"predecessor_ids":[],"online_predecessor_ids":[],"product_class":"SLE-SDK","repositories":[],"cpe":null,"product_type":"extension"},{"former_identifier":"SUSE-Linux-Enterprise-SDK-SP2","release_type":null,"friendly_name":"SUSE Linux Enterprise Software Development Kit 10 SP2","migration_extra":false,"offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Software Development Kit","version":"10","recommended":false,"release_stage":"released","identifier":"SUSE-Linux-Enterprise-SDK-SP2","id":1177,"extensions":[],"friendly_version":"10 SP2","arch":null,"eula_url":"","free":true,"description":null,"shortname":null,"product_type":"extension","cpe":null,"repositories":[{"enabled":true,"id":1308,"distro_target":"sled-10-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sled-10-i586/","installer_updates":false,"name":"SLE10-SDK-SP2-Online","description":"SLE10-SDK-SP2-Online for sled-10-i586"},{"description":"SLE10-SDK-SP2-Updates for sles-10-i586","name":"SLE10-SDK-SP2-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sles-10-i586","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Updates/sles-10-i586/","enabled":true,"id":1309},{"enabled":true,"id":1310,"autorefresh":true,"distro_target":"sles-10-ia64","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Updates/sles-10-ia64/","name":"SLE10-SDK-SP2-Updates","installer_updates":false,"description":"SLE10-SDK-SP2-Updates for sles-10-ia64"},{"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Updates/sles-10-s390x/","autorefresh":true,"distro_target":"sles-10-s390x","id":1311,"enabled":true,"description":"SLE10-SDK-SP2-Updates for sles-10-s390x","name":"SLE10-SDK-SP2-Updates","installer_updates":false},{"description":"SLE10-SDK-SP2-Online for sles-10-ppc","installer_updates":false,"name":"SLE10-SDK-SP2-Online","distro_target":"sles-10-ppc","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sles-10-ppc/","enabled":true,"id":1312},{"id":1313,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sles-10-i586/","distro_target":"sles-10-i586","autorefresh":true,"installer_updates":false,"name":"SLE10-SDK-SP2-Online","description":"SLE10-SDK-SP2-Online for sles-10-i586"},{"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sled-10-x86_64/","distro_target":"sled-10-x86_64","autorefresh":true,"id":1314,"enabled":true,"description":"SLE10-SDK-SP2-Online for sled-10-x86_64","installer_updates":false,"name":"SLE10-SDK-SP2-Online"},{"autorefresh":true,"distro_target":"sles-10-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Updates/sles-10-x86_64/","enabled":true,"id":1315,"description":"SLE10-SDK-SP2-Updates for sles-10-x86_64","name":"SLE10-SDK-SP2-Updates","installer_updates":false},{"installer_updates":false,"name":"SLE10-SDK-SP2-Online","description":"SLE10-SDK-SP2-Online for sles-10-ia64","enabled":true,"id":1316,"distro_target":"sles-10-ia64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sles-10-ia64/"},{"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Updates/sles-10-ppc/","distro_target":"sles-10-ppc","autorefresh":true,"id":1317,"enabled":true,"description":"SLE10-SDK-SP2-Updates for sles-10-ppc","installer_updates":false,"name":"SLE10-SDK-SP2-Updates"},{"autorefresh":true,"distro_target":"sles-10-s390x","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sles-10-s390x/","enabled":true,"id":1318,"description":"SLE10-SDK-SP2-Online for sles-10-s390x","name":"SLE10-SDK-SP2-Online","installer_updates":false},{"distro_target":"sled-10-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Updates/sled-10-x86_64/","enabled":true,"id":1319,"description":"SLE10-SDK-SP2-Updates for sled-10-x86_64","installer_updates":false,"name":"SLE10-SDK-SP2-Updates"},{"description":"SLE10-SDK-SP2-Updates for sled-10-i586","installer_updates":false,"name":"SLE10-SDK-SP2-Updates","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Updates/sled-10-i586/","distro_target":"sled-10-i586","autorefresh":true,"id":1320,"enabled":true},{"installer_updates":false,"name":"SLE10-SDK-SP2-Online","description":"SLE10-SDK-SP2-Online for sles-10-x86_64","id":1321,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sles-10-x86_64/","distro_target":"sles-10-x86_64","autorefresh":true}],"online_predecessor_ids":[],"product_class":"SLE-SDK","predecessor_ids":[]},{"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Software Development Kit 10 online (Migration)","release_type":"online","former_identifier":"SUSE-Linux-Enterprise-SDK-SP2-migration","name":"SUSE Linux Enterprise Software Development Kit","offline_predecessor_ids":[],"version":"10","recommended":false,"id":1178,"release_stage":"released","identifier":"SUSE-Linux-Enterprise-SDK-SP2-migration","extensions":[],"friendly_version":"10","arch":null,"eula_url":"","description":null,"shortname":null,"free":true,"cpe":null,"product_type":"extension","product_class":"SLE-SDK","online_predecessor_ids":[],"repositories":[{"enabled":true,"id":1308,"autorefresh":true,"distro_target":"sled-10-i586","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sled-10-i586/","name":"SLE10-SDK-SP2-Online","installer_updates":false,"description":"SLE10-SDK-SP2-Online for sled-10-i586"},{"id":1312,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sles-10-ppc/","autorefresh":true,"distro_target":"sles-10-ppc","name":"SLE10-SDK-SP2-Online","installer_updates":false,"description":"SLE10-SDK-SP2-Online for sles-10-ppc"},{"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sles-10-i586/","distro_target":"sles-10-i586","autorefresh":true,"id":1313,"enabled":true,"description":"SLE10-SDK-SP2-Online for sles-10-i586","installer_updates":false,"name":"SLE10-SDK-SP2-Online"},{"description":"SLE10-SDK-SP2-Online for sled-10-x86_64","installer_updates":false,"name":"SLE10-SDK-SP2-Online","distro_target":"sled-10-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sled-10-x86_64/","enabled":true,"id":1314},{"name":"SLE10-SDK-SP2-Online","installer_updates":false,"description":"SLE10-SDK-SP2-Online for sles-10-ia64","enabled":true,"id":1316,"autorefresh":true,"distro_target":"sles-10-ia64","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sles-10-ia64/"},{"enabled":true,"id":1318,"distro_target":"sles-10-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sles-10-s390x/","installer_updates":false,"name":"SLE10-SDK-SP2-Online","description":"SLE10-SDK-SP2-Online for sles-10-s390x"},{"distro_target":"sles-10-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sles-10-x86_64/","enabled":true,"id":1321,"description":"SLE10-SDK-SP2-Online for sles-10-x86_64","installer_updates":false,"name":"SLE10-SDK-SP2-Online"}],"predecessor_ids":[]},{"version":"10.2","recommended":false,"friendly_name":"SUSE Linux Enterprise Subscription Management Tool 10 SP2","migration_extra":false,"former_identifier":"SUSE-Linux-Enterprise-SMT-SP2","release_type":null,"name":"SUSE Linux Enterprise Subscription Management Tool","offline_predecessor_ids":[],"friendly_version":"10 SP2","release_stage":"released","identifier":"SUSE-Linux-Enterprise-SMT-SP2","id":1195,"extensions":[],"description":null,"shortname":null,"free":true,"arch":null,"eula_url":"","online_predecessor_ids":[],"product_class":"SLESMT","repositories":[{"description":"SLE10-SP2-SMT-Updates for sles-10-x86_64","installer_updates":false,"name":"SLE10-SP2-SMT-Updates","distro_target":"sles-10-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP2-SMT-Updates/sles-10-x86_64/","enabled":true,"id":1398},{"installer_updates":false,"name":"SLE10-SP2-SMT-Updates","description":"SLE10-SP2-SMT-Updates for sles-10-i586","id":1399,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP2-SMT-Updates/sles-10-i586/","distro_target":"sles-10-i586","autorefresh":true}],"predecessor_ids":[],"cpe":null,"product_type":"extension"}],"release_stage":"released","id":823,"identifier":"SUSE-Linux-Enterprise-Server-SP2","friendly_version":"10 SP2","eula_url":"","arch":"ia64","free":false,"description":null,"shortname":null,"product_type":"base","cpe":null,"predecessor_ids":[],"product_class":"SLES-IA","online_predecessor_ids":[],"repositories":[{"installer_updates":false,"name":"SLES10-SP2-Online","description":"SLES10-SP2-Online for sles-10-ia64","enabled":true,"id":775,"distro_target":"sles-10-ia64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLES10-SP2-Online/sles-10-ia64/"},{"id":776,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP2-Debuginfo-Updates/sles-10-ia64/","distro_target":"sles-10-ia64","autorefresh":true,"installer_updates":false,"name":"SLE10-SP2-Debuginfo-Updates","description":"SLE10-SP2-Debuginfo-Updates for sles-10-ia64"},{"description":"SLES10-SP2-Updates for sles-10-ia64","installer_updates":false,"name":"SLES10-SP2-Updates","distro_target":"sles-10-ia64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLES10-SP2-Updates/sles-10-ia64/","enabled":true,"id":778}]},{"offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Server","former_identifier":"SUSE_SLES","release_type":null,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Server 11 x86_64","recommended":false,"version":"11","extensions":[{"release_stage":"released","id":836,"identifier":"sle-11-WebYaST","extensions":[],"friendly_version":"1.0","release_type":null,"former_identifier":"sle-11-WebYaST","friendly_name":"SUSE WebYaST 1.0","migration_extra":false,"offline_predecessor_ids":[],"name":"SUSE WebYaST","version":"1.0","recommended":false,"product_type":"extension","cpe":null,"online_predecessor_ids":[],"product_class":"WEBYAST","repositories":[{"name":"SLE11-WebYaST-1.0-Updates","installer_updates":false,"description":"SLE11-WebYaST-1.0-Updates for sle-11-i586","enabled":true,"id":829,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-WebYaST-1.0-Updates/sle-11-i586/"},{"description":"SLE11-WebYaST-1.0-Pool for sle-11-ia64","name":"SLE11-WebYaST-1.0-Pool","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-WebYaST-1.0-Pool/sle-11-ia64/","autorefresh":true,"distro_target":"sle-11-ia64","id":830,"enabled":false},{"name":"SLE11-WebYaST-1.0-Updates","installer_updates":false,"description":"SLE11-WebYaST-1.0-Updates for sle-11-ppc64","enabled":true,"id":831,"autorefresh":true,"distro_target":"sle-11-ppc64","url":"https://updates.suse.com/repo/$RCE/SLE11-WebYaST-1.0-Updates/sle-11-ppc64/"},{"id":832,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-WebYaST-1.0-Pool/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","name":"SLE11-WebYaST-1.0-Pool","installer_updates":false,"description":"SLE11-WebYaST-1.0-Pool for sle-11-i586"},{"id":833,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-WebYaST-1.0-Pool/sle-11-s390x/","distro_target":"sle-11-s390x","autorefresh":true,"installer_updates":false,"name":"SLE11-WebYaST-1.0-Pool","description":"SLE11-WebYaST-1.0-Pool for sle-11-s390x"},{"url":"https://updates.suse.com/repo/$RCE/SLE11-WebYaST-1.0-Updates/sle-11-s390x/","autorefresh":true,"distro_target":"sle-11-s390x","id":834,"enabled":true,"description":"SLE11-WebYaST-1.0-Updates for sle-11-s390x","name":"SLE11-WebYaST-1.0-Updates","installer_updates":false},{"name":"SLE11-WebYaST-1.0-Updates","installer_updates":false,"description":"SLE11-WebYaST-1.0-Updates for sle-11-x86_64","enabled":true,"id":835,"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE11-WebYaST-1.0-Updates/sle-11-x86_64/"},{"enabled":false,"id":836,"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE11-WebYaST-1.0-Pool/sle-11-x86_64/","name":"SLE11-WebYaST-1.0-Pool","installer_updates":false,"description":"SLE11-WebYaST-1.0-Pool for sle-11-x86_64"},{"description":"SLE11-WebYaST-1.0-Updates for sle-11-ia64","name":"SLE11-WebYaST-1.0-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-ia64","url":"https://updates.suse.com/repo/$RCE/SLE11-WebYaST-1.0-Updates/sle-11-ia64/","enabled":true,"id":837},{"installer_updates":false,"name":"SLE11-WebYaST-1.0-Pool","description":"SLE11-WebYaST-1.0-Pool for sle-11-ppc64","enabled":false,"id":838,"distro_target":"sle-11-ppc64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-WebYaST-1.0-Pool/sle-11-ppc64/"}],"predecessor_ids":[],"arch":null,"eula_url":"","free":true,"description":null,"shortname":null},{"friendly_version":"1.0","extensions":[],"release_stage":"released","identifier":"sle-slms-1.1-migration","id":933,"recommended":false,"version":"1.0","name":"SUSE Lifecycle Management Server","offline_predecessor_ids":[],"friendly_name":"SUSE Lifecycle Management Server 1.0 (Migration)","migration_extra":false,"release_type":null,"former_identifier":"sle-slms-1.1-migration","predecessor_ids":[],"product_class":"SLMS","online_predecessor_ids":[],"repositories":[{"name":"SLE11-SLMS-1.0-Pool","installer_updates":false,"description":"SLE11-SLMS-1.0-Pool for sle-11-x86_64","id":911,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SLMS-1.0-Pool/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64"},{"enabled":true,"id":912,"distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SLMS-1.0-Updates/sle-11-x86_64/","installer_updates":false,"name":"SLE11-SLMS-1.0-Updates","description":"SLE11-SLMS-1.0-Updates for sle-11-x86_64"}],"cpe":null,"product_type":"extension","shortname":null,"description":null,"free":false,"eula_url":"","arch":null},{"migration_extra":false,"friendly_name":"SUSE Lifecycle Management Server 1.0","release_type":null,"former_identifier":"sle-slms","name":"SUSE Lifecycle Management Server","offline_predecessor_ids":[],"version":"1.0","recommended":false,"release_stage":"released","identifier":"sle-slms","id":936,"extensions":[],"friendly_version":"1.0","arch":null,"eula_url":"","description":null,"shortname":null,"free":false,"cpe":null,"product_type":"extension","repositories":[{"description":"SLE11-SLMS-1.0-Pool for sle-11-x86_64","name":"SLE11-SLMS-1.0-Pool","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SLMS-1.0-Pool/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64","id":911,"enabled":false},{"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE11-SLMS-1.0-Updates/sle-11-x86_64/","enabled":true,"id":912,"description":"SLE11-SLMS-1.0-Updates for sle-11-x86_64","name":"SLE11-SLMS-1.0-Updates","installer_updates":false}],"online_predecessor_ids":[],"product_class":"SLMS","predecessor_ids":[]},{"description":null,"shortname":null,"free":false,"arch":"x86_64","eula_url":"","product_class":"SLE-HAE-X86","online_predecessor_ids":[],"repositories":[{"url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-Updates/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64","id":942,"enabled":true,"description":"SLE11-HAE-Updates for sle-11-x86_64","name":"SLE11-HAE-Updates","installer_updates":false},{"description":"SLE11-HAE-Pool for sle-11-x86_64","installer_updates":false,"name":"SLE11-HAE-Pool","url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-Pool/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true,"id":943,"enabled":false}],"predecessor_ids":[],"cpe":null,"product_type":"extension","version":"11","recommended":false,"friendly_name":"SUSE Linux Enterprise High Availability Extension 11 x86_64","migration_extra":false,"former_identifier":"sle-hae","release_type":null,"name":"SUSE Linux Enterprise High Availability Extension","offline_predecessor_ids":[],"friendly_version":"11","release_stage":"released","id":958,"identifier":"sle-hae","extensions":[]},{"cpe":null,"product_type":"extension","online_predecessor_ids":[],"repositories":[{"id":946,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP1-Pool/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64","name":"SLE11-HAE-SP1-Pool","installer_updates":false,"description":"SLE11-HAE-SP1-Pool for sle-11-x86_64"}],"product_class":"SLE-HAE-X86","predecessor_ids":[],"arch":"x86_64","eula_url":"","shortname":null,"description":null,"free":false,"release_stage":"released","identifier":"sle-hae-SP1-migration","id":960,"extensions":[],"friendly_version":"11","friendly_name":"SUSE Linux Enterprise High Availability Extension 11 x86_64 (Migration)","migration_extra":false,"release_type":null,"former_identifier":"sle-hae-SP1-migration","name":"SUSE Linux Enterprise High Availability Extension","offline_predecessor_ids":[],"version":"11","recommended":false},{"online_predecessor_ids":[],"product_class":"STUDIOONSITE","repositories":[{"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE11-StudioOnsite-1.0-Pool/sle-11-x86_64/","enabled":false,"id":1091,"description":"SLE11-StudioOnsite-1.0-Pool for sle-11-x86_64","name":"SLE11-StudioOnsite-1.0-Pool","installer_updates":false},{"name":"SLE11-StudioOnsite-1.0-Updates","installer_updates":false,"description":"SLE11-StudioOnsite-1.0-Updates for sle-11-x86_64","id":1092,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-StudioOnsite-1.0-Updates/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64"}],"predecessor_ids":[],"product_type":"extension","cpe":null,"free":false,"shortname":null,"description":null,"arch":null,"eula_url":"","friendly_version":"1.0","identifier":"sle-studioonsite","release_stage":"released","id":1075,"extensions":[],"version":"1.0","recommended":false,"release_type":null,"former_identifier":"sle-studioonsite","migration_extra":false,"friendly_name":"SUSE Studio OnSite 1.0","offline_predecessor_ids":[],"name":"SUSE Studio OnSite"},{"version":"11","recommended":false,"release_type":null,"former_identifier":"sle-sdk","migration_extra":false,"friendly_name":"SUSE Linux Enterprise Software Development Kit 11","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Software Development Kit","friendly_version":"11","release_stage":"released","identifier":"sle-sdk","id":1158,"extensions":[],"free":true,"description":null,"shortname":null,"arch":null,"eula_url":"","online_predecessor_ids":[],"product_class":"SLE-SDK","repositories":[{"description":"SLE11-SDK-Updates for sle-11-ppc64","name":"SLE11-SDK-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-ppc64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-Updates/sle-11-ppc64/","enabled":true,"id":1247},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-Pool/sle-11-s390x/","distro_target":"sle-11-s390x","autorefresh":true,"id":1248,"enabled":false,"description":"SLE11-SDK-Pool for sle-11-s390x","installer_updates":false,"name":"SLE11-SDK-Pool"},{"installer_updates":false,"name":"SLE11-SDK-Updates","description":"SLE11-SDK-Updates for sle-11-x86_64","id":1249,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-Updates/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-Pool/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true,"id":1250,"enabled":false,"description":"SLE11-SDK-Pool for sle-11-i586","installer_updates":false,"name":"SLE11-SDK-Pool"},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-Pool/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true,"id":1251,"enabled":false,"description":"SLE11-SDK-Pool for sle-11-x86_64","installer_updates":false,"name":"SLE11-SDK-Pool"},{"id":1252,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-Pool/sle-11-ppc64/","autorefresh":true,"distro_target":"sle-11-ppc64","name":"SLE11-SDK-Pool","installer_updates":false,"description":"SLE11-SDK-Pool for sle-11-ppc64"},{"description":"SLE11-SDK-Updates for sle-11-i586","installer_updates":false,"name":"SLE11-SDK-Updates","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-Updates/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true,"id":1253,"enabled":true},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-Pool/sle-11-ia64/","distro_target":"sle-11-ia64","autorefresh":true,"id":1254,"enabled":false,"description":"SLE11-SDK-Pool for sle-11-ia64","installer_updates":false,"name":"SLE11-SDK-Pool"},{"description":"SLE11-SDK-Updates for sle-11-s390x","installer_updates":false,"name":"SLE11-SDK-Updates","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-Updates/sle-11-s390x/","distro_target":"sle-11-s390x","autorefresh":true,"id":1255,"enabled":true},{"enabled":true,"id":1256,"autorefresh":true,"distro_target":"sle-11-ia64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-Updates/sle-11-ia64/","name":"SLE11-SDK-Updates","installer_updates":false,"description":"SLE11-SDK-Updates for sle-11-ia64"}],"predecessor_ids":[],"product_type":"extension","cpe":null},{"free":true,"description":null,"shortname":null,"arch":null,"eula_url":"","online_predecessor_ids":[],"repositories":[{"distro_target":"sle-11-ia64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-ia64/","enabled":true,"id":1258,"description":"SLE11-SDK-SP1-Pool for sle-11-ia64","installer_updates":false,"name":"SLE11-SDK-SP1-Pool"},{"id":1259,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-s390x/","autorefresh":true,"distro_target":"sle-11-s390x","name":"SLE11-SDK-SP1-Pool","installer_updates":false,"description":"SLE11-SDK-SP1-Pool for sle-11-s390x"},{"id":1261,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-ppc64/","distro_target":"sle-11-ppc64","autorefresh":true,"installer_updates":false,"name":"SLE11-SDK-SP1-Pool","description":"SLE11-SDK-SP1-Pool for sle-11-ppc64"},{"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-i586/","enabled":true,"id":1263,"description":"SLE11-SDK-SP1-Pool for sle-11-i586","name":"SLE11-SDK-SP1-Pool","installer_updates":false},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true,"id":1264,"enabled":true,"description":"SLE11-SDK-SP1-Pool for sle-11-x86_64","installer_updates":false,"name":"SLE11-SDK-SP1-Pool"}],"product_class":"SLE-SDK","predecessor_ids":[],"product_type":"extension","cpe":null,"version":"11","recommended":false,"release_type":null,"former_identifier":"sle-sdk-SP1-migration","friendly_name":"SUSE Linux Enterprise Software Development Kit 11 (Migration)","migration_extra":false,"offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Software Development Kit","friendly_version":"11","release_stage":"released","identifier":"sle-sdk-SP1-migration","id":1162,"extensions":[]},{"eula_url":"","arch":null,"free":true,"shortname":null,"description":null,"product_type":"extension","cpe":null,"predecessor_ids":[],"product_class":"SLESMT","online_predecessor_ids":[],"repositories":[{"distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP2-Pool/sle-11-x86_64/","enabled":true,"id":1392,"description":"SLE11-SMT-SP2-Pool for sle-11-x86_64","installer_updates":false,"name":"SLE11-SMT-SP2-Pool"},{"name":"SLE11-SMT-SP2-Pool","installer_updates":false,"description":"SLE11-SMT-SP2-Pool for sle-11-i586","enabled":true,"id":1394,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP2-Pool/sle-11-i586/"},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP2-Pool/sle-11-s390x/","distro_target":"sle-11-s390x","autorefresh":true,"id":1396,"enabled":true,"description":"SLE11-SMT-SP2-Pool for sle-11-s390x","installer_updates":false,"name":"SLE11-SMT-SP2-Pool"}],"offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Subscription Management Tool","release_type":null,"former_identifier":"sle-smt-SP2-migration","friendly_name":"SUSE Linux Enterprise Subscription Management Tool 11 (Migration)","migration_extra":false,"recommended":false,"version":"11","extensions":[],"identifier":"sle-smt-SP2-migration","release_stage":"released","id":1194,"friendly_version":"11"},{"predecessor_ids":[],"online_predecessor_ids":[],"product_class":"SLESMT","repositories":[{"name":"SLE11-SMT-Updates","installer_updates":false,"description":"SLE11-SMT-Updates for sle-11-s390x","enabled":true,"id":1400,"autorefresh":true,"distro_target":"sle-11-s390x","url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-Updates/sle-11-s390x/"},{"installer_updates":false,"name":"SLE11-SMT-Updates","description":"SLE11-SMT-Updates for sle-11-x86_64","enabled":true,"id":1401,"distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-Updates/sle-11-x86_64/"},{"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-Updates/sle-11-i586/","enabled":true,"id":1402,"description":"SLE11-SMT-Updates for sle-11-i586","name":"SLE11-SMT-Updates","installer_updates":false}],"product_type":"extension","cpe":null,"free":true,"shortname":null,"description":null,"eula_url":"","arch":null,"friendly_version":"11","extensions":[],"release_stage":"released","identifier":"sle-smt","id":1196,"recommended":false,"version":"11","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Subscription Management Tool","former_identifier":"sle-smt","release_type":null,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Subscription Management Tool 11"}],"id":824,"release_stage":"released","identifier":"SUSE_SLES","friendly_version":"11","eula_url":"","arch":"x86_64","free":false,"description":null,"shortname":null,"product_type":"base","cpe":"cpe:/o:suse:suse_sles:11","predecessor_ids":[],"product_class":"7261","online_predecessor_ids":[],"repositories":[{"url":"https://updates.suse.com/repo/$RCE/SLES11-Extras/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true,"id":710,"enabled":false,"description":"SLES11-Extras for sle-11-x86_64","installer_updates":false,"name":"SLES11-Extras"},{"url":"https://updates.suse.com/repo/$RCE/SLES11-Updates/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true,"id":815,"enabled":true,"description":"SLES11-Updates for sle-11-x86_64","installer_updates":false,"name":"SLES11-Updates"},{"description":"SLES11-Pool for sle-11-x86_64","name":"SLES11-Pool","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLES11-Pool/sle-11-x86_64/","enabled":false,"id":816},{"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE11-Debuginfo-Pool/sle-11-x86_64/","enabled":false,"id":817,"description":"SLE11-Debuginfo-Pool for sle-11-x86_64","name":"SLE11-Debuginfo-Pool","installer_updates":false},{"distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-Debuginfo-Updates/sle-11-x86_64/","enabled":false,"id":818,"description":"SLE11-Debuginfo-Updates for sle-11-x86_64","installer_updates":false,"name":"SLE11-Debuginfo-Updates"}]},{"friendly_version":"11","id":825,"release_stage":"released","identifier":"SUSE_SLES","extensions":[{"cpe":null,"product_type":"extension","product_class":"WEBYAST","online_predecessor_ids":[],"repositories":[{"distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-WebYaST-1.0-Updates/sle-11-i586/","enabled":true,"id":829,"description":"SLE11-WebYaST-1.0-Updates for sle-11-i586","installer_updates":false,"name":"SLE11-WebYaST-1.0-Updates"},{"autorefresh":true,"distro_target":"sle-11-ia64","url":"https://updates.suse.com/repo/$RCE/SLE11-WebYaST-1.0-Pool/sle-11-ia64/","enabled":false,"id":830,"description":"SLE11-WebYaST-1.0-Pool for sle-11-ia64","name":"SLE11-WebYaST-1.0-Pool","installer_updates":false},{"installer_updates":false,"name":"SLE11-WebYaST-1.0-Updates","description":"SLE11-WebYaST-1.0-Updates for sle-11-ppc64","id":831,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-WebYaST-1.0-Updates/sle-11-ppc64/","distro_target":"sle-11-ppc64","autorefresh":true},{"description":"SLE11-WebYaST-1.0-Pool for sle-11-i586","name":"SLE11-WebYaST-1.0-Pool","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-WebYaST-1.0-Pool/sle-11-i586/","enabled":false,"id":832},{"enabled":false,"id":833,"distro_target":"sle-11-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-WebYaST-1.0-Pool/sle-11-s390x/","installer_updates":false,"name":"SLE11-WebYaST-1.0-Pool","description":"SLE11-WebYaST-1.0-Pool for sle-11-s390x"},{"url":"https://updates.suse.com/repo/$RCE/SLE11-WebYaST-1.0-Updates/sle-11-s390x/","distro_target":"sle-11-s390x","autorefresh":true,"id":834,"enabled":true,"description":"SLE11-WebYaST-1.0-Updates for sle-11-s390x","installer_updates":false,"name":"SLE11-WebYaST-1.0-Updates"},{"name":"SLE11-WebYaST-1.0-Updates","installer_updates":false,"description":"SLE11-WebYaST-1.0-Updates for sle-11-x86_64","enabled":true,"id":835,"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE11-WebYaST-1.0-Updates/sle-11-x86_64/"},{"name":"SLE11-WebYaST-1.0-Pool","installer_updates":false,"description":"SLE11-WebYaST-1.0-Pool for sle-11-x86_64","enabled":false,"id":836,"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE11-WebYaST-1.0-Pool/sle-11-x86_64/"},{"installer_updates":false,"name":"SLE11-WebYaST-1.0-Updates","description":"SLE11-WebYaST-1.0-Updates for sle-11-ia64","enabled":true,"id":837,"distro_target":"sle-11-ia64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-WebYaST-1.0-Updates/sle-11-ia64/"},{"description":"SLE11-WebYaST-1.0-Pool for sle-11-ppc64","installer_updates":false,"name":"SLE11-WebYaST-1.0-Pool","url":"https://updates.suse.com/repo/$RCE/SLE11-WebYaST-1.0-Pool/sle-11-ppc64/","distro_target":"sle-11-ppc64","autorefresh":true,"id":838,"enabled":false}],"predecessor_ids":[],"arch":null,"eula_url":"","shortname":null,"description":null,"free":true,"id":836,"release_stage":"released","identifier":"sle-11-WebYaST","extensions":[],"friendly_version":"1.0","migration_extra":false,"friendly_name":"SUSE WebYaST 1.0","release_type":null,"former_identifier":"sle-11-WebYaST","name":"SUSE WebYaST","offline_predecessor_ids":[],"version":"1.0","recommended":false},{"product_type":"extension","cpe":null,"predecessor_ids":[],"product_class":"SLE-HAE-Z","online_predecessor_ids":[],"repositories":[{"distro_target":"sle-11-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP1-Pool/sle-11-s390x/","enabled":true,"id":1094,"description":"SLE11-HAE-SP1-Pool for sle-11-s390x","installer_updates":false,"name":"SLE11-HAE-SP1-Pool"}],"eula_url":"","arch":"s390","free":false,"shortname":null,"description":null,"extensions":[],"release_stage":"released","id":1081,"identifier":"sle-hae-SP1-migration","friendly_version":"11","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise High Availability Extension","release_type":null,"former_identifier":"sle-hae-SP1-migration","migration_extra":false,"friendly_name":"SUSE Linux Enterprise High Availability Extension 11 s390 (Migration)","recommended":false,"version":"11"},{"arch":null,"eula_url":"","free":true,"description":null,"shortname":null,"product_type":"extension","cpe":null,"online_predecessor_ids":[],"product_class":"SLE-SDK","repositories":[{"description":"SLE11-SDK-Updates for sle-11-ppc64","installer_updates":false,"name":"SLE11-SDK-Updates","distro_target":"sle-11-ppc64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-Updates/sle-11-ppc64/","enabled":true,"id":1247},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-Pool/sle-11-s390x/","autorefresh":true,"distro_target":"sle-11-s390x","id":1248,"enabled":false,"description":"SLE11-SDK-Pool for sle-11-s390x","name":"SLE11-SDK-Pool","installer_updates":false},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-Updates/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64","id":1249,"enabled":true,"description":"SLE11-SDK-Updates for sle-11-x86_64","name":"SLE11-SDK-Updates","installer_updates":false},{"installer_updates":false,"name":"SLE11-SDK-Pool","description":"SLE11-SDK-Pool for sle-11-i586","id":1250,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-Pool/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true},{"enabled":false,"id":1251,"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-Pool/sle-11-x86_64/","name":"SLE11-SDK-Pool","installer_updates":false,"description":"SLE11-SDK-Pool for sle-11-x86_64"},{"installer_updates":false,"name":"SLE11-SDK-Pool","description":"SLE11-SDK-Pool for sle-11-ppc64","enabled":false,"id":1252,"distro_target":"sle-11-ppc64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-Pool/sle-11-ppc64/"},{"name":"SLE11-SDK-Updates","installer_updates":false,"description":"SLE11-SDK-Updates for sle-11-i586","enabled":true,"id":1253,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-Updates/sle-11-i586/"},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-Pool/sle-11-ia64/","distro_target":"sle-11-ia64","autorefresh":true,"id":1254,"enabled":false,"description":"SLE11-SDK-Pool for sle-11-ia64","installer_updates":false,"name":"SLE11-SDK-Pool"},{"enabled":true,"id":1255,"distro_target":"sle-11-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-Updates/sle-11-s390x/","installer_updates":false,"name":"SLE11-SDK-Updates","description":"SLE11-SDK-Updates for sle-11-s390x"},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-Updates/sle-11-ia64/","autorefresh":true,"distro_target":"sle-11-ia64","id":1256,"enabled":true,"description":"SLE11-SDK-Updates for sle-11-ia64","name":"SLE11-SDK-Updates","installer_updates":false}],"predecessor_ids":[],"former_identifier":"sle-sdk","release_type":null,"friendly_name":"SUSE Linux Enterprise Software Development Kit 11","migration_extra":false,"offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Software Development Kit","version":"11","recommended":false,"release_stage":"released","id":1158,"identifier":"sle-sdk","extensions":[],"friendly_version":"11"},{"release_stage":"released","identifier":"sle-sdk-SP1-migration","id":1162,"extensions":[],"friendly_version":"11","friendly_name":"SUSE Linux Enterprise Software Development Kit 11 (Migration)","migration_extra":false,"former_identifier":"sle-sdk-SP1-migration","release_type":null,"name":"SUSE Linux Enterprise Software Development Kit","offline_predecessor_ids":[],"version":"11","recommended":false,"cpe":null,"product_type":"extension","repositories":[{"enabled":true,"id":1258,"distro_target":"sle-11-ia64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-ia64/","installer_updates":false,"name":"SLE11-SDK-SP1-Pool","description":"SLE11-SDK-SP1-Pool for sle-11-ia64"},{"description":"SLE11-SDK-SP1-Pool for sle-11-s390x","installer_updates":false,"name":"SLE11-SDK-SP1-Pool","distro_target":"sle-11-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-s390x/","enabled":true,"id":1259},{"name":"SLE11-SDK-SP1-Pool","installer_updates":false,"description":"SLE11-SDK-SP1-Pool for sle-11-ppc64","enabled":true,"id":1261,"autorefresh":true,"distro_target":"sle-11-ppc64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-ppc64/"},{"name":"SLE11-SDK-SP1-Pool","installer_updates":false,"description":"SLE11-SDK-SP1-Pool for sle-11-i586","id":1263,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586"},{"description":"SLE11-SDK-SP1-Pool for sle-11-x86_64","name":"SLE11-SDK-SP1-Pool","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64","id":1264,"enabled":true}],"online_predecessor_ids":[],"product_class":"SLE-SDK","predecessor_ids":[],"arch":null,"eula_url":"","shortname":null,"description":null,"free":true},{"friendly_version":"11","extensions":[],"identifier":"sle-smt-SP2-migration","release_stage":"released","id":1194,"recommended":false,"version":"11","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Subscription Management Tool","former_identifier":"sle-smt-SP2-migration","release_type":null,"friendly_name":"SUSE Linux Enterprise Subscription Management Tool 11 (Migration)","migration_extra":false,"predecessor_ids":[],"online_predecessor_ids":[],"repositories":[{"description":"SLE11-SMT-SP2-Pool for sle-11-x86_64","name":"SLE11-SMT-SP2-Pool","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP2-Pool/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64","id":1392,"enabled":true},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP2-Pool/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true,"id":1394,"enabled":true,"description":"SLE11-SMT-SP2-Pool for sle-11-i586","installer_updates":false,"name":"SLE11-SMT-SP2-Pool"},{"id":1396,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP2-Pool/sle-11-s390x/","distro_target":"sle-11-s390x","autorefresh":true,"installer_updates":false,"name":"SLE11-SMT-SP2-Pool","description":"SLE11-SMT-SP2-Pool for sle-11-s390x"}],"product_class":"SLESMT","product_type":"extension","cpe":null,"free":true,"description":null,"shortname":null,"eula_url":"","arch":null},{"recommended":false,"version":"11","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Subscription Management Tool","former_identifier":"sle-smt","release_type":null,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Subscription Management Tool 11","friendly_version":"11","extensions":[],"release_stage":"released","identifier":"sle-smt","id":1196,"free":true,"shortname":null,"description":null,"eula_url":"","arch":null,"predecessor_ids":[],"product_class":"SLESMT","online_predecessor_ids":[],"repositories":[{"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-Updates/sle-11-s390x/","autorefresh":true,"distro_target":"sle-11-s390x","id":1400,"enabled":true,"description":"SLE11-SMT-Updates for sle-11-s390x","name":"SLE11-SMT-Updates","installer_updates":false},{"distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-Updates/sle-11-x86_64/","enabled":true,"id":1401,"description":"SLE11-SMT-Updates for sle-11-x86_64","installer_updates":false,"name":"SLE11-SMT-Updates"},{"name":"SLE11-SMT-Updates","installer_updates":false,"description":"SLE11-SMT-Updates for sle-11-i586","enabled":true,"id":1402,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-Updates/sle-11-i586/"}],"product_type":"extension","cpe":null}],"version":"11","recommended":false,"former_identifier":"SUSE_SLES","release_type":null,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Server 11 s390","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Server","online_predecessor_ids":[],"product_class":"SLES-Z","repositories":[{"id":689,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLES11-Extras/sle-11-s390x/","distro_target":"sle-11-s390x","autorefresh":true,"installer_updates":false,"name":"SLES11-Extras","description":"SLES11-Extras for sle-11-s390x"},{"name":"SLE11-Debuginfo-Updates","installer_updates":false,"description":"SLE11-Debuginfo-Updates for sle-11-s390x","id":811,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-Debuginfo-Updates/sle-11-s390x/","autorefresh":true,"distro_target":"sle-11-s390x"},{"id":812,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-Updates/sle-11-s390x/","autorefresh":true,"distro_target":"sle-11-s390x","name":"SLES11-Updates","installer_updates":false,"description":"SLES11-Updates for sle-11-s390x"},{"name":"SLE11-Debuginfo-Pool","installer_updates":false,"description":"SLE11-Debuginfo-Pool for sle-11-s390x","enabled":false,"id":813,"autorefresh":true,"distro_target":"sle-11-s390x","url":"https://updates.suse.com/repo/$RCE/SLE11-Debuginfo-Pool/sle-11-s390x/"},{"description":"SLES11-Pool for sle-11-s390x","name":"SLES11-Pool","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-s390x","url":"https://updates.suse.com/repo/$RCE/SLES11-Pool/sle-11-s390x/","enabled":false,"id":814}],"predecessor_ids":[],"product_type":"base","cpe":"cpe:/o:suse:suse_sles:11","free":false,"shortname":null,"description":null,"arch":"s390","eula_url":""},{"online_predecessor_ids":[],"repositories":[{"id":671,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLES10-SP3-Online/sles-10-s390x/","autorefresh":true,"distro_target":"sles-10-s390x","name":"SLES10-SP3-Online","installer_updates":false,"description":"SLES10-SP3-Online for sles-10-s390x"},{"url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Pool/sles-10-s390x/","autorefresh":false,"distro_target":"sles-10-s390x","id":672,"enabled":false,"description":"SLE10-SP3-Debuginfo-Pool for sles-10-s390x","name":"SLE10-SP3-Debuginfo-Pool","installer_updates":false},{"autorefresh":false,"distro_target":"sles-10-s390x","url":"https://updates.suse.com/repo/$RCE/SLES10-SP3-Pool/sles-10-s390x/","enabled":false,"id":673,"description":"SLES10-SP3-Pool for sles-10-s390x","name":"SLES10-SP3-Pool","installer_updates":false},{"name":"SLES10-SP3-LTSS-Updates","installer_updates":false,"description":"SLES10-SP3-LTSS-Updates for sles-10-s390x","enabled":true,"id":674,"autorefresh":true,"distro_target":"sles-10-s390x","url":"https://updates.suse.com/repo/$RCE/SLES10-SP3-LTSS-Updates/sles-10-s390x/"},{"installer_updates":false,"name":"SLE10-SP3-Debuginfo-Updates","description":"SLE10-SP3-Debuginfo-Updates for sles-10-s390x","enabled":false,"id":675,"distro_target":"sles-10-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Updates/sles-10-s390x/"},{"description":"SLE10-SP3-Debuginfo-Online for sles-10-s390x","installer_updates":false,"name":"SLE10-SP3-Debuginfo-Online","distro_target":"sles-10-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Online/sles-10-s390x/","enabled":false,"id":676},{"distro_target":"sles-10-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLES10-SP3-Updates/sles-10-s390x/","enabled":true,"id":677,"description":"SLES10-SP3-Updates for sles-10-s390x","installer_updates":false,"name":"SLES10-SP3-Updates"}],"product_class":"SLES-Z","predecessor_ids":[],"product_type":"base","cpe":null,"free":false,"shortname":null,"description":null,"arch":"s390x","eula_url":"","friendly_version":"10 SP3","identifier":"SUSE-Linux-Enterprise-Server-SP3","release_stage":"released","id":826,"extensions":[{"extensions":[],"id":1179,"release_stage":"released","identifier":"SUSE-Linux-Enterprise-SDK-SP3","friendly_version":"10 SP3","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Software Development Kit","former_identifier":"SUSE-Linux-Enterprise-SDK-SP3","release_type":null,"friendly_name":"SUSE Linux Enterprise Software Development Kit 10 SP3","migration_extra":false,"recommended":false,"version":"10","product_type":"extension","cpe":null,"predecessor_ids":[],"online_predecessor_ids":[],"product_class":"SLE-SDK","repositories":[{"description":"SLE10-SDK-SP3-Pool for sles-10-ppc","installer_updates":false,"name":"SLE10-SDK-SP3-Pool","distro_target":"sles-10-ppc","autorefresh":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Pool/sles-10-ppc/","enabled":true,"id":1322},{"name":"SLE10-SDK-SP3-Pool","installer_updates":false,"description":"SLE10-SDK-SP3-Pool for sles-10-x86_64","id":1323,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Pool/sles-10-x86_64/","autorefresh":false,"distro_target":"sles-10-x86_64"},{"installer_updates":false,"name":"SLE10-SDK-SP3-Online","description":"SLE10-SDK-SP3-Online for sled-10-i586","enabled":true,"id":1324,"distro_target":"sled-10-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sled-10-i586/"},{"id":1325,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Updates/sled-10-x86_64/","distro_target":"sled-10-x86_64","autorefresh":true,"installer_updates":false,"name":"SLE10-SDK-SP3-Updates","description":"SLE10-SDK-SP3-Updates for sled-10-x86_64"},{"enabled":true,"id":1326,"distro_target":"sled-10-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sled-10-x86_64/","installer_updates":false,"name":"SLE10-SDK-SP3-Online","description":"SLE10-SDK-SP3-Online for sled-10-x86_64"},{"name":"SLE10-SDK-SP3-Pool","installer_updates":false,"description":"SLE10-SDK-SP3-Pool for sled-10-x86_64","enabled":true,"id":1327,"autorefresh":false,"distro_target":"sled-10-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Pool/sled-10-x86_64/"},{"installer_updates":false,"name":"SLE10-SDK-SP3-Online","description":"SLE10-SDK-SP3-Online for sles-10-ia64","id":1328,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sles-10-ia64/","distro_target":"sles-10-ia64","autorefresh":true},{"description":"SLE10-SDK-SP3-Updates for sles-10-ia64","name":"SLE10-SDK-SP3-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sles-10-ia64","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Updates/sles-10-ia64/","enabled":true,"id":1329},{"installer_updates":false,"name":"SLE10-SDK-SP3-Online","description":"SLE10-SDK-SP3-Online for sles-10-i586","enabled":true,"id":1330,"distro_target":"sles-10-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sles-10-i586/"},{"autorefresh":false,"distro_target":"sles-10-ia64","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Pool/sles-10-ia64/","enabled":true,"id":1331,"description":"SLE10-SDK-SP3-Pool for sles-10-ia64","name":"SLE10-SDK-SP3-Pool","installer_updates":false},{"name":"SLE10-SDK-SP3-Updates","installer_updates":false,"description":"SLE10-SDK-SP3-Updates for sles-10-x86_64","enabled":true,"id":1332,"autorefresh":true,"distro_target":"sles-10-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Updates/sles-10-x86_64/"},{"description":"SLE10-SDK-SP3-Pool for sles-10-i586","name":"SLE10-SDK-SP3-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sles-10-i586","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Pool/sles-10-i586/","enabled":true,"id":1333},{"enabled":true,"id":1334,"distro_target":"sles-10-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Updates/sles-10-i586/","installer_updates":false,"name":"SLE10-SDK-SP3-Updates","description":"SLE10-SDK-SP3-Updates for sles-10-i586"},{"autorefresh":true,"distro_target":"sles-10-s390x","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sles-10-s390x/","enabled":true,"id":1335,"description":"SLE10-SDK-SP3-Online for sles-10-s390x","name":"SLE10-SDK-SP3-Online","installer_updates":false},{"description":"SLE10-SDK-SP3-Updates for sles-10-ppc","name":"SLE10-SDK-SP3-Updates","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Updates/sles-10-ppc/","autorefresh":true,"distro_target":"sles-10-ppc","id":1336,"enabled":true},{"distro_target":"sles-10-s390x","autorefresh":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Pool/sles-10-s390x/","enabled":true,"id":1337,"description":"SLE10-SDK-SP3-Pool for sles-10-s390x","installer_updates":false,"name":"SLE10-SDK-SP3-Pool"},{"distro_target":"sled-10-i586","autorefresh":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Pool/sled-10-i586/","enabled":true,"id":1338,"description":"SLE10-SDK-SP3-Pool for sled-10-i586","installer_updates":false,"name":"SLE10-SDK-SP3-Pool"},{"description":"SLE10-SDK-SP3-Updates for sles-10-s390x","installer_updates":false,"name":"SLE10-SDK-SP3-Updates","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Updates/sles-10-s390x/","distro_target":"sles-10-s390x","autorefresh":true,"id":1339,"enabled":true},{"installer_updates":false,"name":"SLE10-SDK-SP3-Updates","description":"SLE10-SDK-SP3-Updates for sled-10-i586","enabled":true,"id":1340,"distro_target":"sled-10-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Updates/sled-10-i586/"},{"description":"SLE10-SDK-SP3-Online for sles-10-x86_64","installer_updates":false,"name":"SLE10-SDK-SP3-Online","distro_target":"sles-10-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sles-10-x86_64/","enabled":true,"id":1341},{"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sles-10-ppc/","distro_target":"sles-10-ppc","autorefresh":true,"id":1342,"enabled":true,"description":"SLE10-SDK-SP3-Online for sles-10-ppc","installer_updates":false,"name":"SLE10-SDK-SP3-Online"}],"eula_url":"","arch":null,"free":true,"description":null,"shortname":null},{"predecessor_ids":[],"product_class":"SLE-SDK","online_predecessor_ids":[],"repositories":[{"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sled-10-i586/","autorefresh":true,"distro_target":"sled-10-i586","id":1324,"enabled":true,"description":"SLE10-SDK-SP3-Online for sled-10-i586","name":"SLE10-SDK-SP3-Online","installer_updates":false},{"enabled":true,"id":1326,"autorefresh":true,"distro_target":"sled-10-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sled-10-x86_64/","name":"SLE10-SDK-SP3-Online","installer_updates":false,"description":"SLE10-SDK-SP3-Online for sled-10-x86_64"},{"description":"SLE10-SDK-SP3-Online for sles-10-ia64","name":"SLE10-SDK-SP3-Online","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sles-10-ia64/","autorefresh":true,"distro_target":"sles-10-ia64","id":1328,"enabled":true},{"description":"SLE10-SDK-SP3-Online for sles-10-i586","name":"SLE10-SDK-SP3-Online","installer_updates":false,"autorefresh":true,"distro_target":"sles-10-i586","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sles-10-i586/","enabled":true,"id":1330},{"id":1335,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sles-10-s390x/","distro_target":"sles-10-s390x","autorefresh":true,"installer_updates":false,"name":"SLE10-SDK-SP3-Online","description":"SLE10-SDK-SP3-Online for sles-10-s390x"},{"name":"SLE10-SDK-SP3-Online","installer_updates":false,"description":"SLE10-SDK-SP3-Online for sles-10-x86_64","enabled":true,"id":1341,"autorefresh":true,"distro_target":"sles-10-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sles-10-x86_64/"},{"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sles-10-ppc/","distro_target":"sles-10-ppc","autorefresh":true,"id":1342,"enabled":true,"description":"SLE10-SDK-SP3-Online for sles-10-ppc","installer_updates":false,"name":"SLE10-SDK-SP3-Online"}],"cpe":null,"product_type":"extension","shortname":null,"description":null,"free":true,"eula_url":"","arch":null,"friendly_version":"10","extensions":[],"id":1180,"release_stage":"released","identifier":"SUSE-Linux-Enterprise-SDK-SP3-migration","recommended":false,"version":"10","name":"SUSE Linux Enterprise Software Development Kit","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Software Development Kit 10 (Migration)","release_type":null,"former_identifier":"SUSE-Linux-Enterprise-SDK-SP3-migration"},{"online_predecessor_ids":[],"product_class":"SLESMT","repositories":[{"name":"SLE10-SP3-Debuginfo-Updates","installer_updates":false,"description":"SLE10-SP3-Debuginfo-Updates for sles-10-i586","id":664,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Updates/sles-10-i586/","autorefresh":true,"distro_target":"sles-10-i586"},{"description":"SLE10-SP3-Debuginfo-Pool for sles-10-i586","installer_updates":false,"name":"SLE10-SP3-Debuginfo-Pool","distro_target":"sles-10-i586","autorefresh":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Pool/sles-10-i586/","enabled":false,"id":669},{"distro_target":"sles-10-s390x","autorefresh":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Pool/sles-10-s390x/","enabled":false,"id":672,"description":"SLE10-SP3-Debuginfo-Pool for sles-10-s390x","installer_updates":false,"name":"SLE10-SP3-Debuginfo-Pool"},{"name":"SLE10-SP3-Debuginfo-Updates","installer_updates":false,"description":"SLE10-SP3-Debuginfo-Updates for sles-10-s390x","enabled":false,"id":675,"autorefresh":true,"distro_target":"sles-10-s390x","url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Updates/sles-10-s390x/"},{"id":750,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Updates/sles-10-x86_64/","distro_target":"sles-10-x86_64","autorefresh":true,"installer_updates":false,"name":"SLE10-SP3-Debuginfo-Updates","description":"SLE10-SP3-Debuginfo-Updates for sles-10-x86_64"},{"name":"SLE10-SP3-Debuginfo-Pool","installer_updates":false,"description":"SLE10-SP3-Debuginfo-Pool for sles-10-x86_64","id":751,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Pool/sles-10-x86_64/","autorefresh":false,"distro_target":"sles-10-x86_64"},{"enabled":false,"id":779,"autorefresh":false,"distro_target":"sles-10-ppc","url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Pool/sles-10-ppc/","name":"SLE10-SP3-Debuginfo-Pool","installer_updates":false,"description":"SLE10-SP3-Debuginfo-Pool for sles-10-ppc"},{"name":"SLE10-SP3-Debuginfo-Updates","installer_updates":false,"description":"SLE10-SP3-Debuginfo-Updates for sles-10-ppc","id":780,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Updates/sles-10-ppc/","autorefresh":true,"distro_target":"sles-10-ppc"},{"installer_updates":false,"name":"SLE10-SP3-Debuginfo-Pool","description":"SLE10-SP3-Debuginfo-Pool for sles-10-ia64","enabled":false,"id":788,"distro_target":"sles-10-ia64","autorefresh":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Pool/sles-10-ia64/"},{"url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Updates/sles-10-ia64/","autorefresh":true,"distro_target":"sles-10-ia64","id":789,"enabled":false,"description":"SLE10-SP3-Debuginfo-Updates for sles-10-ia64","name":"SLE10-SP3-Debuginfo-Updates","installer_updates":false},{"id":869,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Pool/sled-10-x86_64/","autorefresh":false,"distro_target":"sled-10-x86_64","name":"SLE10-SP3-Debuginfo-Pool","installer_updates":false,"description":"SLE10-SP3-Debuginfo-Pool for sled-10-x86_64"},{"installer_updates":false,"name":"SLE10-SP3-Debuginfo-Updates","description":"SLE10-SP3-Debuginfo-Updates for sled-10-x86_64","id":870,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Updates/sled-10-x86_64/","distro_target":"sled-10-x86_64","autorefresh":true},{"url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Pool/sled-10-i586/","autorefresh":false,"distro_target":"sled-10-i586","id":895,"enabled":false,"description":"SLE10-SP3-Debuginfo-Pool for sled-10-i586","name":"SLE10-SP3-Debuginfo-Pool","installer_updates":false},{"id":896,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Updates/sled-10-i586/","distro_target":"sled-10-i586","autorefresh":true,"installer_updates":false,"name":"SLE10-SP3-Debuginfo-Updates","description":"SLE10-SP3-Debuginfo-Updates for sled-10-i586"},{"description":"SLE10-SP3-SMT-Updates for sles-10-i586","installer_updates":false,"name":"SLE10-SP3-SMT-Updates","url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-SMT-Updates/sles-10-i586/","distro_target":"sles-10-i586","autorefresh":true,"id":1403,"enabled":true},{"id":1404,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-SMT-Updates/sles-10-x86_64/","distro_target":"sles-10-x86_64","autorefresh":true,"installer_updates":false,"name":"SLE10-SP3-SMT-Updates","description":"SLE10-SP3-SMT-Updates for sles-10-x86_64"}],"predecessor_ids":[],"cpe":null,"product_type":"extension","shortname":null,"description":null,"free":true,"arch":null,"eula_url":"","friendly_version":"10 SP3","release_stage":"released","id":1197,"identifier":"SUSE-Linux-Enterprise-SMT-SP3","extensions":[],"version":"10.3","recommended":false,"friendly_name":"SUSE Linux Enterprise Subscription Management Tool 10 SP3","migration_extra":false,"release_type":null,"former_identifier":"SUSE-Linux-Enterprise-SMT-SP3","name":"SUSE Linux Enterprise Subscription Management Tool","offline_predecessor_ids":[]}],"version":"10","recommended":false,"former_identifier":"SUSE-Linux-Enterprise-Server-SP3","release_type":"online","friendly_name":"SUSE Linux Enterprise Server 10 SP3 online s390x","migration_extra":false,"offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Server"},{"name":"SUSE Linux Enterprise Server","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Server 10 i486 (Migration)","release_type":null,"former_identifier":"SUSE-Linux-Enterprise-Server-SP4-migration","recommended":false,"version":"10","extensions":[],"id":827,"release_stage":"released","identifier":"SUSE-Linux-Enterprise-Server-SP4-migration","friendly_version":"10","eula_url":"","arch":"i486","description":null,"shortname":null,"free":false,"cpe":null,"product_type":"base","predecessor_ids":[],"product_class":"7261","online_predecessor_ids":[],"repositories":[{"installer_updates":false,"name":"SLES10-SP4-Online","description":"SLES10-SP4-Online for sles-10-i586","enabled":true,"id":694,"distro_target":"sles-10-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLES10-SP4-Online/sles-10-i586/"}]},{"product_type":"base","cpe":null,"product_class":"7261","online_predecessor_ids":[],"repositories":[{"distro_target":"sles-10-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLES10-SP4-Online/sles-10-i586/","enabled":true,"id":694,"description":"SLES10-SP4-Online for sles-10-i586","installer_updates":false,"name":"SLES10-SP4-Online"}],"predecessor_ids":[],"arch":"i386","eula_url":"","free":false,"description":null,"shortname":null,"id":828,"release_stage":"released","identifier":"SUSE-Linux-Enterprise-Server-SP4-migration","extensions":[],"friendly_version":"10","release_type":null,"former_identifier":"SUSE-Linux-Enterprise-Server-SP4-migration","friendly_name":"SUSE Linux Enterprise Server 10 i386 (Migration)","migration_extra":false,"offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Server","version":"10","recommended":false},{"product_type":"base","cpe":null,"repositories":[{"description":"SLES10-SP4-Online for sles-10-ppc","installer_updates":false,"name":"SLES10-SP4-Online","distro_target":"sles-10-ppc","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLES10-SP4-Online/sles-10-ppc/","enabled":true,"id":792}],"online_predecessor_ids":[],"product_class":"SLES-PPC","predecessor_ids":[],"arch":"ppc","eula_url":"","free":false,"description":null,"shortname":null,"release_stage":"released","id":829,"identifier":"SUSE-Linux-Enterprise-Server-SP4-migration","extensions":[],"friendly_version":"10","release_type":null,"former_identifier":"SUSE-Linux-Enterprise-Server-SP4-migration","friendly_name":"SUSE Linux Enterprise Server 10 ppc (Migration)","migration_extra":false,"offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Server","version":"10","recommended":false},{"extensions":[],"id":830,"release_stage":"released","identifier":"SUSE-Linux-Enterprise-Server-SP4-migration","friendly_version":"10","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Server","former_identifier":"SUSE-Linux-Enterprise-Server-SP4-migration","release_type":null,"friendly_name":"SUSE Linux Enterprise Server 10 s390 (Migration)","migration_extra":false,"recommended":false,"version":"10","product_type":"base","cpe":null,"predecessor_ids":[],"repositories":[{"enabled":true,"id":819,"distro_target":"sles-10-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLES10-SP4-Online/sles-10-s390x/","installer_updates":false,"name":"SLES10-SP4-Online","description":"SLES10-SP4-Online for sles-10-s390x"}],"online_predecessor_ids":[],"product_class":"SLES-Z","eula_url":"","arch":"s390","free":false,"shortname":null,"description":null},{"version":"10","recommended":false,"former_identifier":"SUSE-Linux-Enterprise-Server-SP4-migration","release_type":null,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Server 10 s390x (Migration)","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Server","friendly_version":"10","identifier":"SUSE-Linux-Enterprise-Server-SP4-migration","release_stage":"released","id":831,"extensions":[],"free":false,"shortname":null,"description":null,"arch":"s390x","eula_url":"","online_predecessor_ids":[],"product_class":"SLES-Z","repositories":[{"enabled":true,"id":819,"distro_target":"sles-10-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLES10-SP4-Online/sles-10-s390x/","installer_updates":false,"name":"SLES10-SP4-Online","description":"SLES10-SP4-Online for sles-10-s390x"}],"predecessor_ids":[],"product_type":"base","cpe":null},{"extensions":[{"free":true,"description":null,"shortname":null,"arch":null,"eula_url":"","online_predecessor_ids":[],"product_class":"SLE-SDK","repositories":[{"autorefresh":false,"distro_target":"sles-10-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP4-Pool/sles-10-x86_64/","enabled":true,"id":1343,"description":"SLE10-SDK-SP4-Pool for sles-10-x86_64","name":"SLE10-SDK-SP4-Pool","installer_updates":false},{"description":"SLE10-SDK-SP4-Pool for sles-10-ppc","name":"SLE10-SDK-SP4-Pool","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP4-Pool/sles-10-ppc/","autorefresh":false,"distro_target":"sles-10-ppc","id":1344,"enabled":true},{"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP4-Pool/sles-10-i586/","distro_target":"sles-10-i586","autorefresh":false,"id":1345,"enabled":true,"description":"SLE10-SDK-SP4-Pool for sles-10-i586","installer_updates":false,"name":"SLE10-SDK-SP4-Pool"},{"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP4-Pool/sled-10-i586/","autorefresh":false,"distro_target":"sled-10-i586","id":1346,"enabled":true,"description":"SLE10-SDK-SP4-Pool for sled-10-i586","name":"SLE10-SDK-SP4-Pool","installer_updates":false},{"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP4-Updates/sled-10-x86_64/","distro_target":"sled-10-x86_64","autorefresh":true,"id":1347,"enabled":true,"description":"SLE10-SDK-SP4-Updates for sled-10-x86_64","installer_updates":false,"name":"SLE10-SDK-SP4-Updates"},{"enabled":true,"id":1348,"distro_target":"sles-10-s390x","autorefresh":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP4-Pool/sles-10-s390x/","installer_updates":false,"name":"SLE10-SDK-SP4-Pool","description":"SLE10-SDK-SP4-Pool for sles-10-s390x"},{"description":"SLE10-SDK-SP4-Updates for sles-10-x86_64","name":"SLE10-SDK-SP4-Updates","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP4-Updates/sles-10-x86_64/","autorefresh":true,"distro_target":"sles-10-x86_64","id":1349,"enabled":true},{"installer_updates":false,"name":"SLE10-SDK-SP4-Updates","description":"SLE10-SDK-SP4-Updates for sles-10-s390x","id":1350,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP4-Updates/sles-10-s390x/","distro_target":"sles-10-s390x","autorefresh":true},{"id":1351,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP4-Updates/sled-10-i586/","autorefresh":true,"distro_target":"sled-10-i586","name":"SLE10-SDK-SP4-Updates","installer_updates":false,"description":"SLE10-SDK-SP4-Updates for sled-10-i586"},{"id":1352,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP4-Updates/sles-10-ppc/","autorefresh":true,"distro_target":"sles-10-ppc","name":"SLE10-SDK-SP4-Updates","installer_updates":false,"description":"SLE10-SDK-SP4-Updates for sles-10-ppc"},{"name":"SLE10-SDK-SP4-Updates","installer_updates":false,"description":"SLE10-SDK-SP4-Updates for sles-10-i586","enabled":true,"id":1353,"autorefresh":true,"distro_target":"sles-10-i586","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP4-Updates/sles-10-i586/"},{"description":"SLE10-SDK-SP4-Updates for sles-10-ia64","installer_updates":false,"name":"SLE10-SDK-SP4-Updates","distro_target":"sles-10-ia64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP4-Updates/sles-10-ia64/","enabled":true,"id":1354},{"name":"SLE10-SDK-SP4-Pool","installer_updates":false,"description":"SLE10-SDK-SP4-Pool for sled-10-x86_64","enabled":true,"id":1355,"autorefresh":false,"distro_target":"sled-10-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP4-Pool/sled-10-x86_64/"},{"id":1356,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP4-Pool/sles-10-ia64/","autorefresh":false,"distro_target":"sles-10-ia64","name":"SLE10-SDK-SP4-Pool","installer_updates":false,"description":"SLE10-SDK-SP4-Pool for sles-10-ia64"}],"predecessor_ids":[],"product_type":"extension","cpe":null,"version":"10","recommended":false,"former_identifier":"SUSE-Linux-Enterprise-SDK-SP4","release_type":null,"friendly_name":"SUSE Linux Enterprise Software Development Kit 10 SP4","migration_extra":false,"offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Software Development Kit","friendly_version":"10 SP4","identifier":"SUSE-Linux-Enterprise-SDK-SP4","release_stage":"released","id":1181,"extensions":[]},{"recommended":false,"version":"10","name":"SUSE Linux Enterprise Software Development Kit","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Software Development Kit 10 (Migration)","former_identifier":"SUSE-Linux-Enterprise-SDK-SP4-migration","release_type":null,"friendly_version":"10","extensions":[],"release_stage":"released","identifier":"SUSE-Linux-Enterprise-SDK-SP4-migration","id":1182,"shortname":null,"description":null,"free":true,"eula_url":"","arch":null,"predecessor_ids":[],"online_predecessor_ids":[],"product_class":"SLE-SDK","repositories":[{"description":"SLE10-SDK-SP4-Online for sles-10-x86_64","installer_updates":false,"name":"SLE10-SDK-SP4-Online","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP4-Online/sles-10-x86_64/","distro_target":"sles-10-x86_64","autorefresh":true,"id":1357,"enabled":true},{"installer_updates":false,"name":"SLE10-SDK-SP4-Online","description":"SLE10-SDK-SP4-Online for sles-10-i586","enabled":true,"id":1358,"distro_target":"sles-10-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP4-Online/sles-10-i586/"},{"autorefresh":true,"distro_target":"sles-10-ia64","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP4-Online/sles-10-ia64/","enabled":true,"id":1359,"description":"SLE10-SDK-SP4-Online for sles-10-ia64","name":"SLE10-SDK-SP4-Online","installer_updates":false},{"id":1360,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP4-Online/sled-10-x86_64/","distro_target":"sled-10-x86_64","autorefresh":true,"installer_updates":false,"name":"SLE10-SDK-SP4-Online","description":"SLE10-SDK-SP4-Online for sled-10-x86_64"},{"description":"SLE10-SDK-SP4-Online for sled-10-i586","installer_updates":false,"name":"SLE10-SDK-SP4-Online","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP4-Online/sled-10-i586/","distro_target":"sled-10-i586","autorefresh":true,"id":1361,"enabled":true},{"description":"SLE10-SDK-SP4-Online for sles-10-ppc","name":"SLE10-SDK-SP4-Online","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP4-Online/sles-10-ppc/","autorefresh":true,"distro_target":"sles-10-ppc","id":1362,"enabled":true},{"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP4-Online/sles-10-s390x/","distro_target":"sles-10-s390x","autorefresh":true,"id":1363,"enabled":true,"description":"SLE10-SDK-SP4-Online for sles-10-s390x","installer_updates":false,"name":"SLE10-SDK-SP4-Online"}],"cpe":null,"product_type":"extension"}],"release_stage":"released","id":832,"identifier":"SUSE-Linux-Enterprise-Server-SP4","friendly_version":"10 SP4","name":"SUSE Linux Enterprise Server","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Server 10 SP4 x86_64","release_type":null,"former_identifier":"SUSE-Linux-Enterprise-Server-SP4","recommended":false,"version":"10","cpe":null,"product_type":"base","predecessor_ids":[],"online_predecessor_ids":[],"repositories":[{"url":"https://updates.suse.com/repo/$RCE/SLES10-GPLv3-Extras/sles-10-x86_64/","autorefresh":true,"distro_target":"sles-10-x86_64","id":768,"enabled":false,"description":"SLES10-GPLv3-Extras for sles-10-x86_64","name":"SLES10-GPLv3-Extras","installer_updates":false},{"autorefresh":false,"distro_target":"sles-10-x86_64","url":"https://updates.suse.com/repo/$RCE/SLES10-SP4-Pool/sles-10-x86_64/","enabled":true,"id":820,"description":"SLES10-SP4-Pool for sles-10-x86_64","name":"SLES10-SP4-Pool","installer_updates":false},{"id":821,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLES10-SP4-Updates/sles-10-x86_64/","autorefresh":true,"distro_target":"sles-10-x86_64","name":"SLES10-SP4-Updates","installer_updates":false,"description":"SLES10-SP4-Updates for sles-10-x86_64"},{"description":"SLES10-SP4-LTSS-Updates for sles-10-x86_64","installer_updates":false,"name":"SLES10-SP4-LTSS-Updates","distro_target":"sles-10-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLES10-SP4-LTSS-Updates/sles-10-x86_64/","enabled":true,"id":822},{"enabled":false,"id":823,"distro_target":"sles-10-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP4-Debuginfo-Updates/sles-10-x86_64/","installer_updates":false,"name":"SLE10-SP4-Debuginfo-Updates","description":"SLE10-SP4-Debuginfo-Updates for sles-10-x86_64"},{"enabled":false,"id":824,"autorefresh":false,"distro_target":"sles-10-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE10-SP4-Debuginfo-Pool/sles-10-x86_64/","name":"SLE10-SP4-Debuginfo-Pool","installer_updates":false,"description":"SLE10-SP4-Debuginfo-Pool for sles-10-x86_64"}],"product_class":"7261","eula_url":"","arch":"x86_64","description":null,"shortname":null,"free":false},{"friendly_version":"11 SP1","extensions":[{"description":null,"shortname":null,"free":false,"arch":"s390","eula_url":"","repositories":[{"name":"SLE11-HAE-SP1-Pool","installer_updates":false,"description":"SLE11-HAE-SP1-Pool for sle-11-s390x","enabled":true,"id":1094,"autorefresh":true,"distro_target":"sle-11-s390x","url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP1-Pool/sle-11-s390x/"},{"distro_target":"sle-11-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP1-Updates/sle-11-s390x/","enabled":true,"id":1095,"description":"SLE11-HAE-SP1-Updates for sle-11-s390x","installer_updates":false,"name":"SLE11-HAE-SP1-Updates"}],"online_predecessor_ids":[],"product_class":"SLE-HAE-Z","predecessor_ids":[],"cpe":null,"product_type":"extension","version":"11.1","recommended":false,"friendly_name":"SUSE Linux Enterprise High Availability Extension 11 SP1 s390","migration_extra":false,"former_identifier":"sle-hae","release_type":null,"name":"SUSE Linux Enterprise High Availability Extension","offline_predecessor_ids":[],"friendly_version":"11 SP1","id":1079,"release_stage":"released","identifier":"sle-hae","extensions":[]},{"extensions":[],"release_stage":"released","identifier":"sle-hae-SP2-migration","id":1089,"friendly_version":"11 SP1","name":"SUSE Linux Enterprise High Availability Extension","offline_predecessor_ids":[],"friendly_name":"SUSE Linux Enterprise High Availability Extension 11 SP1 s390 (Migration)","migration_extra":false,"former_identifier":"sle-hae-SP2-migration","release_type":null,"recommended":false,"version":"11.1","cpe":null,"product_type":"extension","predecessor_ids":[],"repositories":[{"enabled":true,"id":1098,"autorefresh":true,"distro_target":"sle-11-s390x","url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP2-Pool/sle-11-s390x/","name":"SLE11-HAE-SP2-Pool","installer_updates":false,"description":"SLE11-HAE-SP2-Pool for sle-11-s390x"},{"name":"SLE11-HAE-SP2-Updates","installer_updates":false,"description":"SLE11-HAE-SP2-Updates for sle-11-s390x","enabled":true,"id":1099,"autorefresh":true,"distro_target":"sle-11-s390x","url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP2-Updates/sle-11-s390x/"}],"online_predecessor_ids":[],"product_class":"SLE-HAE-Z","eula_url":"","arch":"s390","description":null,"shortname":null,"free":false},{"arch":null,"eula_url":"","free":true,"description":null,"shortname":null,"product_type":"extension","cpe":null,"repositories":[{"name":"SLE11-SP1-SMT-Updates","installer_updates":false,"description":"SLE11-SP1-SMT-Updates for sle-11-x86_64","id":1386,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-SMT-Updates/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64"},{"id":1387,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-SMT-Pool/sle-11-s390x/","autorefresh":true,"distro_target":"sle-11-s390x","name":"SLE11-SP1-SMT-Pool","installer_updates":false,"description":"SLE11-SP1-SMT-Pool for sle-11-s390x"},{"description":"SLE11-SP1-SMT-Pool for sle-11-x86_64","installer_updates":false,"name":"SLE11-SP1-SMT-Pool","url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-SMT-Pool/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true,"id":1388,"enabled":true},{"installer_updates":false,"name":"SLE11-SP1-SMT-Updates","description":"SLE11-SP1-SMT-Updates for sle-11-i586","id":1389,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-SMT-Updates/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true},{"name":"SLE11-SP1-SMT-Pool","installer_updates":false,"description":"SLE11-SP1-SMT-Pool for sle-11-i586","enabled":true,"id":1390,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-SMT-Pool/sle-11-i586/"},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-SMT-Updates/sle-11-s390x/","distro_target":"sle-11-s390x","autorefresh":true,"id":1391,"enabled":true,"description":"SLE11-SP1-SMT-Updates for sle-11-s390x","installer_updates":false,"name":"SLE11-SP1-SMT-Updates"}],"online_predecessor_ids":[],"product_class":"SLESMT","predecessor_ids":[],"former_identifier":"sle-smt","release_type":null,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Subscription Management Tool 11 SP1","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Subscription Management Tool","version":"11.1","recommended":false,"identifier":"sle-smt","release_stage":"released","id":1192,"extensions":[],"friendly_version":"11 SP1"}],"identifier":"SUSE_SLES-SP2-migration","release_stage":"released","id":833,"recommended":false,"version":"11.1","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Server","former_identifier":"SUSE_SLES-SP2-migration","release_type":null,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Server 11 SP1 s390 (Migration)","predecessor_ids":[],"repositories":[{"name":"SLE11-SP1-Debuginfo-Updates","installer_updates":false,"description":"SLE11-SP1-Debuginfo-Updates for sle-11-s390x","enabled":false,"id":688,"autorefresh":true,"distro_target":"sle-11-s390x","url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Updates/sle-11-s390x/"},{"description":"SLE11-SP1-Debuginfo-Pool for sle-11-s390x","installer_updates":false,"name":"SLE11-SP1-Debuginfo-Pool","distro_target":"sle-11-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Pool/sle-11-s390x/","enabled":false,"id":692},{"id":723,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-WebYaST-SP2-Updates/sle-11-s390x/","autorefresh":true,"distro_target":"sle-11-s390x","name":"SLE11-WebYaST-SP2-Updates","installer_updates":false,"description":"SLE11-WebYaST-SP2-Updates for sle-11-s390x"},{"description":"SLES11-SP2-Updates for sle-11-s390x","installer_updates":false,"name":"SLES11-SP2-Updates","url":"https://updates.suse.com/repo/$RCE/SLES11-SP2-Updates/sle-11-s390x/","distro_target":"sle-11-s390x","autorefresh":true,"id":724,"enabled":true},{"id":725,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-Debuginfo-Updates/sle-11-s390x/","distro_target":"sle-11-s390x","autorefresh":true,"installer_updates":false,"name":"SLE11-SP2-Debuginfo-Updates","description":"SLE11-SP2-Debuginfo-Updates for sle-11-s390x"},{"url":"https://updates.suse.com/repo/$RCE/SLES11-SP2-Core/sle-11-s390x/","autorefresh":true,"distro_target":"sle-11-s390x","id":726,"enabled":true,"description":"SLES11-SP2-Core for sle-11-s390x","name":"SLES11-SP2-Core","installer_updates":false},{"id":727,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-WebYaST-SP2-Pool/sle-11-s390x/","autorefresh":true,"distro_target":"sle-11-s390x","name":"SLE11-WebYaST-SP2-Pool","installer_updates":false,"description":"SLE11-WebYaST-SP2-Pool for sle-11-s390x"},{"name":"SLE11-SP2-Debuginfo-Core","installer_updates":false,"description":"SLE11-SP2-Debuginfo-Core for sle-11-s390x","id":728,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-Debuginfo-Core/sle-11-s390x/","autorefresh":true,"distro_target":"sle-11-s390x"}],"online_predecessor_ids":[],"product_class":"SLES-Z","product_type":"base","cpe":null,"free":false,"description":null,"shortname":null,"eula_url":"","arch":"s390"},{"cpe":null,"product_type":"base","predecessor_ids":[],"online_predecessor_ids":[],"repositories":[{"autorefresh":true,"distro_target":"sle-11-s390x","url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-Pool/sle-11-s390x/","enabled":false,"id":687,"description":"SLES11-SP1-Pool for sle-11-s390x","name":"SLES11-SP1-Pool","installer_updates":false},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Updates/sle-11-s390x/","distro_target":"sle-11-s390x","autorefresh":true,"id":688,"enabled":false,"description":"SLE11-SP1-Debuginfo-Updates for sle-11-s390x","installer_updates":false,"name":"SLE11-SP1-Debuginfo-Updates"},{"enabled":false,"id":689,"distro_target":"sle-11-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-Extras/sle-11-s390x/","installer_updates":false,"name":"SLES11-Extras","description":"SLES11-Extras for sle-11-s390x"},{"installer_updates":false,"name":"SLES11-SP1-Updates","description":"SLES11-SP1-Updates for sle-11-s390x","enabled":false,"id":691,"distro_target":"sle-11-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-Updates/sle-11-s390x/"},{"installer_updates":false,"name":"SLE11-SP1-Debuginfo-Pool","description":"SLE11-SP1-Debuginfo-Pool for sle-11-s390x","id":692,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Pool/sle-11-s390x/","distro_target":"sle-11-s390x","autorefresh":true},{"id":724,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP2-Updates/sle-11-s390x/","autorefresh":true,"distro_target":"sle-11-s390x","name":"SLES11-SP2-Updates","installer_updates":false,"description":"SLES11-SP2-Updates for sle-11-s390x"},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-Debuginfo-Updates/sle-11-s390x/","autorefresh":true,"distro_target":"sle-11-s390x","id":725,"enabled":false,"description":"SLE11-SP2-Debuginfo-Updates for sle-11-s390x","name":"SLE11-SP2-Debuginfo-Updates","installer_updates":false},{"description":"SLES11-SP2-Core for sle-11-s390x","name":"SLES11-SP2-Core","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-s390x","url":"https://updates.suse.com/repo/$RCE/SLES11-SP2-Core/sle-11-s390x/","enabled":false,"id":726},{"description":"SLE11-SP2-Debuginfo-Core for sle-11-s390x","name":"SLE11-SP2-Debuginfo-Core","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-Debuginfo-Core/sle-11-s390x/","autorefresh":true,"distro_target":"sle-11-s390x","id":728,"enabled":false},{"url":"https://updates.suse.com/repo/$RCE/SLES11-SP3-Pool/sle-11-s390x/","autorefresh":true,"distro_target":"sle-11-s390x","id":729,"enabled":true,"description":"SLES11-SP3-Pool for sle-11-s390x","name":"SLES11-SP3-Pool","installer_updates":false},{"url":"https://updates.suse.com/repo/$RCE/SLES11-SP3-Extension-Store/sle-11-s390x/","autorefresh":true,"distro_target":"sle-11-s390x","id":730,"enabled":false,"description":"SLES11-SP3-Extension-Store for sle-11-s390x","name":"SLES11-SP3-Extension-Store","installer_updates":false},{"id":731,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP3-Updates/sle-11-s390x/","autorefresh":true,"distro_target":"sle-11-s390x","name":"SLES11-SP3-Updates","installer_updates":false,"description":"SLES11-SP3-Updates for sle-11-s390x"},{"description":"SLE11-SP3-Debuginfo-Pool for sle-11-s390x","name":"SLE11-SP3-Debuginfo-Pool","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-s390x","url":"https://updates.suse.com/repo/$RCE/SLE11-SP3-Debuginfo-Pool/sle-11-s390x/","enabled":false,"id":732},{"id":733,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP3-Debuginfo-Updates/sle-11-s390x/","distro_target":"sle-11-s390x","autorefresh":true,"installer_updates":false,"name":"SLE11-SP3-Debuginfo-Updates","description":"SLE11-SP3-Debuginfo-Updates for sle-11-s390x"},{"id":734,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP2-Extension-Store/sle-11-s390x/","autorefresh":true,"distro_target":"sle-11-s390x","name":"SLES11-SP2-Extension-Store","installer_updates":false,"description":"SLES11-SP2-Extension-Store for sle-11-s390x"}],"product_class":"SLES-Z","eula_url":"","arch":"s390x","description":null,"shortname":null,"free":false,"extensions":[{"predecessor_ids":[],"online_predecessor_ids":[],"repositories":[{"id":1098,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP2-Pool/sle-11-s390x/","autorefresh":true,"distro_target":"sle-11-s390x","name":"SLE11-HAE-SP2-Pool","installer_updates":false,"description":"SLE11-HAE-SP2-Pool for sle-11-s390x"},{"name":"SLE11-HAE-SP2-Updates","installer_updates":false,"description":"SLE11-HAE-SP2-Updates for sle-11-s390x","id":1099,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP2-Updates/sle-11-s390x/","autorefresh":true,"distro_target":"sle-11-s390x"}],"product_class":"SLE-HAE-Z","cpe":null,"product_type":"extension","description":null,"shortname":null,"free":false,"eula_url":"","arch":"s390x","friendly_version":"11 SP2","extensions":[{"predecessor_ids":[],"online_predecessor_ids":[],"repositories":[{"url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-GEO-SP2-Updates/sle-11-s390x/","distro_target":"sle-11-s390x","autorefresh":true,"id":1118,"enabled":true,"description":"SLE11-HAE-GEO-SP2-Updates for sle-11-s390x","installer_updates":false,"name":"SLE11-HAE-GEO-SP2-Updates"}],"product_class":"SLE-HAE-GEO","cpe":null,"product_type":"extension","description":null,"shortname":null,"free":false,"eula_url":"","arch":"s390x","friendly_version":"11 SP2","extensions":[],"release_stage":"released","identifier":"sle-haegeo","id":1109,"recommended":false,"version":"11.2","name":"Geo Clustering for SUSE Linux Enterprise High Availability Extension","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"Geo Clustering for SUSE Linux Enterprise High Availability Extension 11 SP2 s390x","release_type":null,"former_identifier":"sle-haegeo"}],"release_stage":"released","id":1082,"identifier":"sle-hae","recommended":false,"version":"11.2","name":"SUSE Linux Enterprise High Availability Extension","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"SUSE Linux Enterprise High Availability Extension 11 SP2 s390x","release_type":null,"former_identifier":"sle-hae"},{"arch":"s390x","eula_url":"","description":null,"shortname":null,"free":false,"cpe":null,"product_type":"extension","repositories":[{"autorefresh":true,"distro_target":"sle-11-s390x","url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP3-Pool/sle-11-s390x/","enabled":true,"id":1096,"description":"SLE11-HAE-SP3-Pool for sle-11-s390x","name":"SLE11-HAE-SP3-Pool","installer_updates":false},{"description":"SLE11-HAE-SP3-Updates for sle-11-s390x","name":"SLE11-HAE-SP3-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-s390x","url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP3-Updates/sle-11-s390x/","enabled":true,"id":1097}],"online_predecessor_ids":[],"product_class":"SLE-HAE-Z","predecessor_ids":[],"friendly_name":"SUSE Linux Enterprise High Availability Extension 11 SP2 s390x (Migration)","migration_extra":false,"release_type":null,"former_identifier":"sle-hae-SP3-migration","name":"SUSE Linux Enterprise High Availability Extension","offline_predecessor_ids":[],"version":"11.2","recommended":false,"id":1088,"release_stage":"released","identifier":"sle-hae-SP3-migration","extensions":[{"friendly_version":"11 SP2","release_stage":"released","id":1109,"identifier":"sle-haegeo","extensions":[],"version":"11.2","recommended":false,"friendly_name":"Geo Clustering for SUSE Linux Enterprise High Availability Extension 11 SP2 s390x","migration_extra":false,"release_type":null,"former_identifier":"sle-haegeo","name":"Geo Clustering for SUSE Linux Enterprise High Availability Extension","offline_predecessor_ids":[],"online_predecessor_ids":[],"product_class":"SLE-HAE-GEO","repositories":[{"autorefresh":true,"distro_target":"sle-11-s390x","url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-GEO-SP2-Updates/sle-11-s390x/","enabled":true,"id":1118,"description":"SLE11-HAE-GEO-SP2-Updates for sle-11-s390x","name":"SLE11-HAE-GEO-SP2-Updates","installer_updates":false}],"predecessor_ids":[],"cpe":null,"product_type":"extension","description":null,"shortname":null,"free":false,"arch":"s390x","eula_url":""}],"friendly_version":"11 SP2"},{"version":"11.2","recommended":false,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Subscription Management Tool 11 SP2","release_type":null,"former_identifier":"sle-smt","name":"SUSE Linux Enterprise Subscription Management Tool","offline_predecessor_ids":[],"friendly_version":"11 SP2","release_stage":"released","id":1193,"identifier":"sle-smt","extensions":[],"description":null,"shortname":null,"free":true,"arch":null,"eula_url":"","repositories":[{"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP2-Pool/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64","id":1392,"enabled":true,"description":"SLE11-SMT-SP2-Pool for sle-11-x86_64","name":"SLE11-SMT-SP2-Pool","installer_updates":false},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP2-Updates/sle-11-s390x/","distro_target":"sle-11-s390x","autorefresh":true,"id":1393,"enabled":true,"description":"SLE11-SMT-SP2-Updates for sle-11-s390x","installer_updates":false,"name":"SLE11-SMT-SP2-Updates"},{"id":1394,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP2-Pool/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true,"installer_updates":false,"name":"SLE11-SMT-SP2-Pool","description":"SLE11-SMT-SP2-Pool for sle-11-i586"},{"distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP2-Updates/sle-11-i586/","enabled":true,"id":1395,"description":"SLE11-SMT-SP2-Updates for sle-11-i586","installer_updates":false,"name":"SLE11-SMT-SP2-Updates"},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP2-Pool/sle-11-s390x/","autorefresh":true,"distro_target":"sle-11-s390x","id":1396,"enabled":true,"description":"SLE11-SMT-SP2-Pool for sle-11-s390x","name":"SLE11-SMT-SP2-Pool","installer_updates":false},{"description":"SLE11-SMT-SP2-Updates for sle-11-x86_64","installer_updates":false,"name":"SLE11-SMT-SP2-Updates","url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP2-Updates/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true,"id":1397,"enabled":true}],"online_predecessor_ids":[],"product_class":"SLESMT","predecessor_ids":[],"cpe":null,"product_type":"extension"},{"eula_url":"","arch":null,"free":true,"shortname":null,"description":null,"product_type":"extension","cpe":null,"predecessor_ids":[],"online_predecessor_ids":[],"repositories":[{"description":"SLE11-SMT-SP3-Pool for sle-11-s390x","name":"SLE11-SMT-SP3-Pool","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-s390x","url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP3-Pool/sle-11-s390x/","enabled":true,"id":1408},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP3-Pool/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64","id":1409,"enabled":true,"description":"SLE11-SMT-SP3-Pool for sle-11-x86_64","name":"SLE11-SMT-SP3-Pool","installer_updates":false},{"installer_updates":false,"name":"SLE11-SMT-SP3-Pool","description":"SLE11-SMT-SP3-Pool for sle-11-i586","id":1410,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP3-Pool/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true}],"product_class":"SLESMT","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Subscription Management Tool","release_type":null,"former_identifier":"sle-smt-SP3-migration","friendly_name":"SUSE Linux Enterprise Subscription Management Tool 11 SP2 (Migration)","migration_extra":false,"recommended":false,"version":"11.2","extensions":[],"identifier":"sle-smt-SP3-migration","release_stage":"released","id":1199,"friendly_version":"11 SP2"}],"release_stage":"released","id":834,"identifier":"SUSE_SLES-SP3-migration","friendly_version":"11 SP2","name":"SUSE Linux Enterprise Server","offline_predecessor_ids":[],"friendly_name":"SUSE Linux Enterprise Server 11 SP2 s390x (Migration)","migration_extra":false,"release_type":null,"former_identifier":"SUSE_SLES-SP3-migration","recommended":false,"version":"11.2"},{"offline_predecessor_ids":[],"name":"SUSE WebYaST","former_identifier":"sle-11-WebYaST","release_type":null,"migration_extra":false,"friendly_name":"SUSE WebYaST 1.1","recommended":false,"version":"1.1","extensions":[],"identifier":"sle-11-WebYaST","release_stage":"released","id":835,"friendly_version":"1.1","eula_url":"","arch":null,"free":true,"shortname":null,"description":null,"product_type":"extension","cpe":null,"predecessor_ids":[],"product_class":"WEBYAST","online_predecessor_ids":[],"repositories":[{"name":"SLE11-SP1-WebYaST-1.1-Updates","installer_updates":false,"description":"SLE11-SP1-WebYaST-1.1-Updates for sle-11-i586","enabled":true,"id":825,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-WebYaST-1.1-Updates/sle-11-i586/"},{"installer_updates":false,"name":"SLE11-SP1-WebYaST-1.1-Pool","description":"SLE11-SP1-WebYaST-1.1-Pool for sle-11-i586","id":826,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-WebYaST-1.1-Pool/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true},{"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-WebYaST-1.1-Pool/sle-11-x86_64/","enabled":false,"id":827,"description":"SLE11-SP1-WebYaST-1.1-Pool for sle-11-x86_64","name":"SLE11-SP1-WebYaST-1.1-Pool","installer_updates":false},{"description":"SLE11-SP1-WebYaST-1.1-Updates for sle-11-x86_64","name":"SLE11-SP1-WebYaST-1.1-Updates","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-WebYaST-1.1-Updates/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64","id":828,"enabled":true}]},{"release_stage":"released","identifier":"sle-11-WebYaST","id":836,"extensions":[],"friendly_version":"1.0","friendly_name":"SUSE WebYaST 1.0","migration_extra":false,"former_identifier":"sle-11-WebYaST","release_type":null,"name":"SUSE WebYaST","offline_predecessor_ids":[],"version":"1.0","recommended":false,"cpe":null,"product_type":"extension","online_predecessor_ids":[],"product_class":"WEBYAST","repositories":[{"description":"SLE11-WebYaST-1.0-Updates for sle-11-i586","installer_updates":false,"name":"SLE11-WebYaST-1.0-Updates","distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-WebYaST-1.0-Updates/sle-11-i586/","enabled":true,"id":829},{"description":"SLE11-WebYaST-1.0-Pool for sle-11-ia64","installer_updates":false,"name":"SLE11-WebYaST-1.0-Pool","distro_target":"sle-11-ia64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-WebYaST-1.0-Pool/sle-11-ia64/","enabled":false,"id":830},{"enabled":true,"id":831,"distro_target":"sle-11-ppc64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-WebYaST-1.0-Updates/sle-11-ppc64/","installer_updates":false,"name":"SLE11-WebYaST-1.0-Updates","description":"SLE11-WebYaST-1.0-Updates for sle-11-ppc64"},{"name":"SLE11-WebYaST-1.0-Pool","installer_updates":false,"description":"SLE11-WebYaST-1.0-Pool for sle-11-i586","id":832,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-WebYaST-1.0-Pool/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586"},{"id":833,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-WebYaST-1.0-Pool/sle-11-s390x/","distro_target":"sle-11-s390x","autorefresh":true,"installer_updates":false,"name":"SLE11-WebYaST-1.0-Pool","description":"SLE11-WebYaST-1.0-Pool for sle-11-s390x"},{"description":"SLE11-WebYaST-1.0-Updates for sle-11-s390x","installer_updates":false,"name":"SLE11-WebYaST-1.0-Updates","distro_target":"sle-11-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-WebYaST-1.0-Updates/sle-11-s390x/","enabled":true,"id":834},{"url":"https://updates.suse.com/repo/$RCE/SLE11-WebYaST-1.0-Updates/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true,"id":835,"enabled":true,"description":"SLE11-WebYaST-1.0-Updates for sle-11-x86_64","installer_updates":false,"name":"SLE11-WebYaST-1.0-Updates"},{"enabled":false,"id":836,"distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-WebYaST-1.0-Pool/sle-11-x86_64/","installer_updates":false,"name":"SLE11-WebYaST-1.0-Pool","description":"SLE11-WebYaST-1.0-Pool for sle-11-x86_64"},{"description":"SLE11-WebYaST-1.0-Updates for sle-11-ia64","installer_updates":false,"name":"SLE11-WebYaST-1.0-Updates","distro_target":"sle-11-ia64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-WebYaST-1.0-Updates/sle-11-ia64/","enabled":true,"id":837},{"distro_target":"sle-11-ppc64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-WebYaST-1.0-Pool/sle-11-ppc64/","enabled":false,"id":838,"description":"SLE11-WebYaST-1.0-Pool for sle-11-ppc64","installer_updates":false,"name":"SLE11-WebYaST-1.0-Pool"}],"predecessor_ids":[],"arch":null,"eula_url":"","shortname":null,"description":null,"free":true},{"free":true,"shortname":null,"description":null,"eula_url":"","arch":null,"predecessor_ids":[],"product_class":"WEBYAST","online_predecessor_ids":[],"repositories":[{"installer_updates":false,"name":"SLE11-SP1-WebYaST-1.2-Updates","description":"SLE11-SP1-WebYaST-1.2-Updates for sle-11-x86_64","id":839,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-WebYaST-1.2-Updates/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true},{"name":"SLE11-SP1-WebYaST-1.2-Pool","installer_updates":false,"description":"SLE11-SP1-WebYaST-1.2-Pool for sle-11-i586","enabled":false,"id":840,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-WebYaST-1.2-Pool/sle-11-i586/"},{"installer_updates":false,"name":"SLE11-SP1-WebYaST-1.2-Pool","description":"SLE11-SP1-WebYaST-1.2-Pool for sle-11-x86_64","id":841,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-WebYaST-1.2-Pool/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true},{"description":"SLE11-SP1-WebYaST-1.2-Updates for sle-11-i586","installer_updates":false,"name":"SLE11-SP1-WebYaST-1.2-Updates","distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-WebYaST-1.2-Updates/sle-11-i586/","enabled":true,"id":842}],"product_type":"extension","cpe":null,"recommended":false,"version":"1.2","offline_predecessor_ids":[],"name":"SUSE WebYaST","former_identifier":"sle-11-WebYaST","release_type":null,"migration_extra":false,"friendly_name":"SUSE WebYaST 1.2","friendly_version":"1.2","extensions":[],"identifier":"sle-11-WebYaST","release_stage":"released","id":837},{"product_type":"base","cpe":null,"repositories":[{"autorefresh":true,"distro_target":"sled-10-i586","url":"https://updates.suse.com/repo/$RCE/SLED10-SP1-Updates/sled-10-i586/","enabled":true,"id":843,"description":"SLED10-SP1-Updates for sled-10-i586","name":"SLED10-SP1-Updates","installer_updates":false},{"id":844,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLED10-SP1-Online/sled-10-i586/","autorefresh":true,"distro_target":"sled-10-i586","name":"SLED10-SP1-Online","installer_updates":false,"description":"SLED10-SP1-Online for sled-10-i586"},{"name":"SLE10-SP1-Debuginfo-Updates","installer_updates":false,"description":"SLE10-SP1-Debuginfo-Updates for sled-10-i586","enabled":false,"id":845,"autorefresh":true,"distro_target":"sled-10-i586","url":"https://updates.suse.com/repo/$RCE/SLE10-SP1-Debuginfo-Updates/sled-10-i586/"}],"online_predecessor_ids":[],"product_class":"7260","predecessor_ids":[],"arch":"i586","eula_url":"","free":false,"shortname":null,"description":null,"release_stage":"released","identifier":"SUSE-Linux-Enterprise-Desktop-SP1-migration","id":838,"extensions":[],"friendly_version":"10","release_type":null,"former_identifier":"SUSE-Linux-Enterprise-Desktop-SP1-migration","friendly_name":"SUSE Linux Enterprise Desktop 10 i586 (Migration)","migration_extra":false,"offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Desktop","version":"10","recommended":false},{"name":"SUSE Linux Enterprise Desktop","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Desktop 11 i486","release_type":null,"former_identifier":"SUSE_SLED","recommended":false,"version":"11","extensions":[],"release_stage":"released","id":839,"identifier":"SUSE_SLED","friendly_version":"11","eula_url":"","arch":"i486","description":null,"shortname":null,"free":false,"cpe":null,"product_type":"base","predecessor_ids":[],"online_predecessor_ids":[],"repositories":[{"url":"https://updates.suse.com/repo/$RCE/SLE11-Debuginfo-Pool/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","id":747,"enabled":false,"description":"SLE11-Debuginfo-Pool for sle-11-i586","name":"SLE11-Debuginfo-Pool","installer_updates":false},{"enabled":false,"id":748,"distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-Debuginfo-Updates/sle-11-i586/","installer_updates":false,"name":"SLE11-Debuginfo-Updates","description":"SLE11-Debuginfo-Updates for sle-11-i586"},{"id":846,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLED11-Extras/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true,"installer_updates":false,"name":"SLED11-Extras","description":"SLED11-Extras for sle-11-i586"},{"installer_updates":false,"name":"SLE-Likewise-5.3-Updates","description":"SLE-Likewise-5.3-Updates for sle-11-i586","id":847,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE-Likewise-5.3-Updates/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true},{"installer_updates":false,"name":"SLED11-Pool","description":"SLED11-Pool for sle-11-i586","enabled":false,"id":848,"distro_target":"sle-11-i586","autorefresh":false,"url":"https://updates.suse.com/repo/$RCE/SLED11-Pool/sle-11-i586/"},{"description":"SLED11-Updates for sle-11-i586","name":"SLED11-Updates","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLED11-Updates/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","id":849,"enabled":true},{"url":"https://updates.suse.com/repo/$RCE/SLE-Likewise-5.3-Updates/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true,"id":850,"enabled":false,"description":"SLE-Likewise-5.3-Updates for sle-11-x86_64","installer_updates":false,"name":"SLE-Likewise-5.3-Updates"}],"product_class":"7260"},{"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Desktop 11 SP1 i486","release_type":null,"former_identifier":"SUSE_SLED","name":"SUSE Linux Enterprise Desktop","offline_predecessor_ids":[],"version":"11.1","recommended":false,"id":840,"release_stage":"released","identifier":"SUSE_SLED","extensions":[],"friendly_version":"11 SP1","arch":"i486","eula_url":"","shortname":null,"description":null,"free":false,"cpe":null,"product_type":"base","repositories":[{"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Pool/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","id":680,"enabled":false,"description":"SLE11-SP1-Debuginfo-Pool for sle-11-i586","name":"SLE11-SP1-Debuginfo-Pool","installer_updates":false},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Updates/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true,"id":682,"enabled":false,"description":"SLE11-SP1-Debuginfo-Updates for sle-11-i586","installer_updates":false,"name":"SLE11-SP1-Debuginfo-Updates"},{"installer_updates":false,"name":"SLED11-Extras","description":"SLED11-Extras for sle-11-i586","enabled":false,"id":846,"distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLED11-Extras/sle-11-i586/"},{"description":"SLE-Likewise-5.3-Updates for sle-11-i586","name":"SLE-Likewise-5.3-Updates","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE-Likewise-5.3-Updates/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","id":847,"enabled":false},{"url":"https://updates.suse.com/repo/$RCE/SLE-Likewise-5.3-Updates/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64","id":850,"enabled":false,"description":"SLE-Likewise-5.3-Updates for sle-11-x86_64","name":"SLE-Likewise-5.3-Updates","installer_updates":false},{"url":"https://updates.suse.com/repo/$RCE/SLED11-SP1-Updates/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","id":851,"enabled":true,"description":"SLED11-SP1-Updates for sle-11-i586","name":"SLED11-SP1-Updates","installer_updates":false},{"name":"SLED11-SP1-Pool","installer_updates":false,"description":"SLED11-SP1-Pool for sle-11-i586","enabled":true,"id":852,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLED11-SP1-Pool/sle-11-i586/"}],"online_predecessor_ids":[],"product_class":"7260","predecessor_ids":[]},{"friendly_version":"11","release_stage":"released","identifier":"SUSE_SLED-SP1-migration","id":841,"extensions":[],"version":"11","recommended":false,"former_identifier":"SUSE_SLED-SP1-migration","release_type":null,"friendly_name":"SUSE Linux Enterprise Desktop 11 i386 (Migration)","migration_extra":false,"offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Desktop","repositories":[{"enabled":true,"id":852,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLED11-SP1-Pool/sle-11-i586/","name":"SLED11-SP1-Pool","installer_updates":false,"description":"SLED11-SP1-Pool for sle-11-i586"},{"id":853,"enabled":true,"url":"http://download.nvidia.com/novell/sle11sp1/","autorefresh":true,"distro_target":null,"name":"nVidia-Driver-SLE11-SP1","installer_updates":false,"description":"nVidia-Driver-SLE11-SP1"}],"online_predecessor_ids":[],"product_class":"7260","predecessor_ids":[],"product_type":"base","cpe":null,"free":false,"description":null,"shortname":null,"arch":"i386","eula_url":""},{"product_type":"base","cpe":null,"online_predecessor_ids":[],"product_class":"7260","repositories":[{"description":"SLED10-SP4-Online for sled-10-i586","installer_updates":false,"name":"SLED10-SP4-Online","distro_target":"sled-10-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLED10-SP4-Online/sled-10-i586/","enabled":true,"id":855}],"predecessor_ids":[],"arch":"i386","eula_url":"","free":false,"shortname":null,"description":null,"id":842,"release_stage":"released","identifier":"SUSE-Linux-Enterprise-Desktop-SP4-migration","extensions":[{"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Software Development Kit 10 i386","release_type":null,"former_identifier":"SUSE-Linux-Enterprise-SDK-DVD-i386","name":"SUSE Linux Enterprise Software Development Kit","offline_predecessor_ids":[],"version":"10","recommended":false,"identifier":"SUSE-Linux-Enterprise-SDK-DVD-i386","release_stage":"released","id":1165,"extensions":[],"friendly_version":"10","arch":"i386","eula_url":"","description":null,"shortname":null,"free":true,"cpe":null,"product_type":"extension","online_predecessor_ids":[],"product_class":"SLE-SDK","repositories":[{"installer_updates":false,"name":"SLE10-SDK-Updates","description":"SLE10-SDK-Updates for sled-10-i586","id":1287,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-Updates/sled-10-i586/","distro_target":"sled-10-i586","autorefresh":true},{"installer_updates":false,"name":"SLE10-SDK-Updates","description":"SLE10-SDK-Updates for sles-10-i586","id":1288,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-Updates/sles-10-i586/","distro_target":"sles-10-i586","autorefresh":true}],"predecessor_ids":[]},{"friendly_version":"10","identifier":"SUSE-Linux-Enterprise-SDK-i386","release_stage":"released","id":1170,"extensions":[],"version":"10","recommended":false,"former_identifier":"SUSE-Linux-Enterprise-SDK-i386","release_type":null,"friendly_name":"SUSE Linux Enterprise Software Development Kit 10 i386","migration_extra":false,"offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Software Development Kit","online_predecessor_ids":[],"repositories":[{"description":"SLE10-SDK-Updates for sled-10-i586","name":"SLE10-SDK-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sled-10-i586","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-Updates/sled-10-i586/","enabled":true,"id":1287},{"description":"SLE10-SDK-Updates for sles-10-i586","name":"SLE10-SDK-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sles-10-i586","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-Updates/sles-10-i586/","enabled":true,"id":1288}],"product_class":"SLE-SDK","predecessor_ids":[],"product_type":"extension","cpe":null,"free":true,"shortname":null,"description":null,"arch":"i386","eula_url":""}],"friendly_version":"10","release_type":null,"former_identifier":"SUSE-Linux-Enterprise-Desktop-SP4-migration","friendly_name":"SUSE Linux Enterprise Desktop 10 i386 (Migration)","migration_extra":false,"offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Desktop","version":"10","recommended":false},{"name":"SUSE Linux Enterprise Desktop","offline_predecessor_ids":[],"friendly_name":"SUSE Linux Enterprise Desktop 11 SP2 i586","migration_extra":false,"release_type":null,"former_identifier":"SUSE_SLED","recommended":false,"version":"11.2","extensions":[],"id":843,"release_stage":"released","identifier":"SUSE_SLED","friendly_version":"11 SP2","eula_url":"","arch":"i586","description":null,"shortname":null,"free":false,"cpe":null,"product_type":"base","predecessor_ids":[],"online_predecessor_ids":[],"product_class":"7260","repositories":[{"enabled":false,"id":680,"distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Pool/sle-11-i586/","installer_updates":false,"name":"SLE11-SP1-Debuginfo-Pool","description":"SLE11-SP1-Debuginfo-Pool for sle-11-i586"},{"enabled":false,"id":682,"distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Updates/sle-11-i586/","installer_updates":false,"name":"SLE11-SP1-Debuginfo-Updates","description":"SLE11-SP1-Debuginfo-Updates for sle-11-i586"},{"description":"SLE11-SP2-Debuginfo-Core for sle-11-i586","name":"SLE11-SP2-Debuginfo-Core","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-Debuginfo-Core/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","id":717,"enabled":false},{"description":"SLE11-SP2-Debuginfo-Updates for sle-11-i586","installer_updates":false,"name":"SLE11-SP2-Debuginfo-Updates","distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-Debuginfo-Updates/sle-11-i586/","enabled":false,"id":719},{"name":"SLED11-Extras","installer_updates":false,"description":"SLED11-Extras for sle-11-i586","id":846,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLED11-Extras/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586"},{"name":"SLED11-SP1-Updates","installer_updates":false,"description":"SLED11-SP1-Updates for sle-11-i586","id":851,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLED11-SP1-Updates/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586"},{"url":"https://updates.suse.com/repo/$RCE/SLED11-SP1-Pool/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true,"id":852,"enabled":true,"description":"SLED11-SP1-Pool for sle-11-i586","installer_updates":false,"name":"SLED11-SP1-Pool"},{"name":"SLED11-SP2-Core","installer_updates":false,"description":"SLED11-SP2-Core for sle-11-i586","enabled":true,"id":856,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLED11-SP2-Core/sle-11-i586/"},{"installer_updates":false,"name":"SLED11-SP2-Updates","description":"SLED11-SP2-Updates for sle-11-i586","enabled":true,"id":857,"distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLED11-SP2-Updates/sle-11-i586/"}]},{"cpe":null,"product_type":"base","online_predecessor_ids":[],"repositories":[{"installer_updates":false,"name":"SLE11-SP1-Debuginfo-Pool","description":"SLE11-SP1-Debuginfo-Pool for sle-11-i586","enabled":false,"id":680,"distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Pool/sle-11-i586/"},{"description":"SLE11-SP1-Debuginfo-Updates for sle-11-i586","name":"SLE11-SP1-Debuginfo-Updates","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Updates/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","id":682,"enabled":false},{"installer_updates":false,"name":"SLE11-SP2-Debuginfo-Core","description":"SLE11-SP2-Debuginfo-Core for sle-11-i586","enabled":false,"id":717,"distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-Debuginfo-Core/sle-11-i586/"},{"distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-Debuginfo-Updates/sle-11-i586/","enabled":false,"id":719,"description":"SLE11-SP2-Debuginfo-Updates for sle-11-i586","installer_updates":false,"name":"SLE11-SP2-Debuginfo-Updates"},{"distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLED11-Extras/sle-11-i586/","enabled":false,"id":846,"description":"SLED11-Extras for sle-11-i586","installer_updates":false,"name":"SLED11-Extras"},{"name":"SLED11-SP1-Updates","installer_updates":false,"description":"SLED11-SP1-Updates for sle-11-i586","enabled":true,"id":851,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLED11-SP1-Updates/sle-11-i586/"},{"installer_updates":false,"name":"SLED11-SP1-Pool","description":"SLED11-SP1-Pool for sle-11-i586","enabled":true,"id":852,"distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLED11-SP1-Pool/sle-11-i586/"},{"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLED11-SP2-Core/sle-11-i586/","enabled":true,"id":856,"description":"SLED11-SP2-Core for sle-11-i586","name":"SLED11-SP2-Core","installer_updates":false},{"id":857,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLED11-SP2-Updates/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true,"installer_updates":false,"name":"SLED11-SP2-Updates","description":"SLED11-SP2-Updates for sle-11-i586"}],"product_class":"7260","predecessor_ids":[],"arch":"i486","eula_url":"","description":null,"shortname":null,"free":false,"release_stage":"released","identifier":"SUSE_SLED","id":844,"extensions":[],"friendly_version":"11 SP2","friendly_name":"SUSE Linux Enterprise Desktop 11 SP2 i486","migration_extra":false,"release_type":null,"former_identifier":"SUSE_SLED","name":"SUSE Linux Enterprise Desktop","offline_predecessor_ids":[],"version":"11.2","recommended":false},{"version":"10","recommended":false,"friendly_name":"SUSE Linux Enterprise Desktop 10 i686","migration_extra":false,"release_type":null,"former_identifier":"SUSE-Linux-Enterprise-Desktop-i386","name":"SUSE Linux Enterprise Desktop","offline_predecessor_ids":[],"friendly_version":"10","identifier":"SUSE-Linux-Enterprise-Desktop-i386","release_stage":"released","id":845,"extensions":[],"description":null,"shortname":null,"free":false,"arch":"i686","eula_url":"","product_class":"7260","online_predecessor_ids":[],"repositories":[{"description":"SLED10-Updates for sled-10-i586","name":"SLED10-Updates","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLED10-Updates/sled-10-i586/","autorefresh":true,"distro_target":"sled-10-i586","id":858,"enabled":true},{"name":"SLE10-Debuginfo-Updates","installer_updates":false,"description":"SLE10-Debuginfo-Updates for sled-10-i586","id":859,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-Debuginfo-Updates/sled-10-i586/","autorefresh":true,"distro_target":"sled-10-i586"}],"predecessor_ids":[],"cpe":null,"product_type":"base"},{"online_predecessor_ids":[],"repositories":[{"id":858,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLED10-Updates/sled-10-i586/","distro_target":"sled-10-i586","autorefresh":true,"installer_updates":false,"name":"SLED10-Updates","description":"SLED10-Updates for sled-10-i586"},{"autorefresh":true,"distro_target":"sled-10-i586","url":"https://updates.suse.com/repo/$RCE/SLE10-Debuginfo-Updates/sled-10-i586/","enabled":false,"id":859,"description":"SLE10-Debuginfo-Updates for sled-10-i586","name":"SLE10-Debuginfo-Updates","installer_updates":false}],"product_class":"7260","predecessor_ids":[],"cpe":null,"product_type":"base","description":null,"shortname":null,"free":false,"arch":"i486","eula_url":"","friendly_version":"10","identifier":"SUSE-Linux-Enterprise-Desktop-i386","release_stage":"released","id":846,"extensions":[],"version":"10","recommended":false,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Desktop 10 i486","former_identifier":"SUSE-Linux-Enterprise-Desktop-i386","release_type":null,"name":"SUSE Linux Enterprise Desktop","offline_predecessor_ids":[]},{"free":false,"shortname":null,"description":null,"arch":"i686","eula_url":"","repositories":[{"autorefresh":true,"distro_target":"sled-10-i586","url":"https://updates.suse.com/repo/$RCE/SLED10-SP1-Updates/sled-10-i586/","enabled":true,"id":843,"description":"SLED10-SP1-Updates for sled-10-i586","name":"SLED10-SP1-Updates","installer_updates":false},{"id":844,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLED10-SP1-Online/sled-10-i586/","autorefresh":true,"distro_target":"sled-10-i586","name":"SLED10-SP1-Online","installer_updates":false,"description":"SLED10-SP1-Online for sled-10-i586"},{"name":"SLE10-SP1-Debuginfo-Updates","installer_updates":false,"description":"SLE10-SP1-Debuginfo-Updates for sled-10-i586","id":845,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP1-Debuginfo-Updates/sled-10-i586/","autorefresh":true,"distro_target":"sled-10-i586"}],"online_predecessor_ids":[],"product_class":"7260","predecessor_ids":[],"product_type":"base","cpe":null,"version":"10","recommended":false,"release_type":null,"former_identifier":"SUSE-Linux-Enterprise-Desktop-SP1-migration","friendly_name":"SUSE Linux Enterprise Desktop 10 i686 (Migration)","migration_extra":false,"offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Desktop","friendly_version":"10","identifier":"SUSE-Linux-Enterprise-Desktop-SP1-migration","release_stage":"released","id":847,"extensions":[]},{"name":"SUSE Linux Enterprise Desktop","offline_predecessor_ids":[],"friendly_name":"SUSE Linux Enterprise Desktop 10 i486 (Migration)","migration_extra":false,"former_identifier":"SUSE-Linux-Enterprise-Desktop-SP2-migration","release_type":null,"recommended":false,"version":"10","extensions":[],"release_stage":"released","id":848,"identifier":"SUSE-Linux-Enterprise-Desktop-SP2-migration","friendly_version":"10","eula_url":"","arch":"i486","description":null,"shortname":null,"free":false,"cpe":null,"product_type":"base","predecessor_ids":[],"product_class":"7260","online_predecessor_ids":[],"repositories":[{"url":"https://updates.suse.com/repo/$RCE/SLED10-SP2-Online/sled-10-i586/","autorefresh":true,"distro_target":"sled-10-i586","id":860,"enabled":true,"description":"SLED10-SP2-Online for sled-10-i586","name":"SLED10-SP2-Online","installer_updates":false}]},{"recommended":false,"version":"10","name":"SUSE Linux Enterprise Desktop","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Desktop 10 x86_64 (Migration)","release_type":null,"former_identifier":"SUSE-Linux-Enterprise-Desktop-SP2-migration","friendly_version":"10","extensions":[{"cpe":null,"product_type":"extension","predecessor_ids":[],"repositories":[{"enabled":true,"id":1292,"distro_target":"sled-10-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-Updates/sled-10-x86_64/","installer_updates":false,"name":"SLE10-SDK-Updates","description":"SLE10-SDK-Updates for sled-10-x86_64"},{"name":"SLE10-SDK-Updates","installer_updates":false,"description":"SLE10-SDK-Updates for sles-10-x86_64","id":1293,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-Updates/sles-10-x86_64/","autorefresh":true,"distro_target":"sles-10-x86_64"}],"online_predecessor_ids":[],"product_class":"SLE-SDK","eula_url":"","arch":"x86_64","description":null,"shortname":null,"free":true,"extensions":[],"release_stage":"released","identifier":"SUSE-Linux-Enterprise-SDK-DVD-x86_64","id":1169,"friendly_version":"10","name":"SUSE Linux Enterprise Software Development Kit","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Software Development Kit 10 x86_64","former_identifier":"SUSE-Linux-Enterprise-SDK-DVD-x86_64","release_type":null,"recommended":false,"version":"10"},{"friendly_version":"10","extensions":[],"release_stage":"released","identifier":"SUSE-Linux-Enterprise-SDK-x86_64","id":1183,"recommended":false,"version":"10","name":"SUSE Linux Enterprise Software Development Kit","offline_predecessor_ids":[],"friendly_name":"SUSE Linux Enterprise Software Development Kit 10 x86_64","migration_extra":false,"former_identifier":"SUSE-Linux-Enterprise-SDK-x86_64","release_type":null,"predecessor_ids":[],"online_predecessor_ids":[],"product_class":"SLE-SDK","repositories":[{"description":"SLE10-SDK-Updates for sled-10-x86_64","installer_updates":false,"name":"SLE10-SDK-Updates","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-Updates/sled-10-x86_64/","distro_target":"sled-10-x86_64","autorefresh":true,"id":1292,"enabled":true},{"distro_target":"sles-10-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-Updates/sles-10-x86_64/","enabled":true,"id":1293,"description":"SLE10-SDK-Updates for sles-10-x86_64","installer_updates":false,"name":"SLE10-SDK-Updates"}],"cpe":null,"product_type":"extension","shortname":null,"description":null,"free":true,"eula_url":"","arch":"x86_64"}],"release_stage":"released","identifier":"SUSE-Linux-Enterprise-Desktop-SP2-migration","id":849,"shortname":null,"description":null,"free":false,"eula_url":"","arch":"x86_64","predecessor_ids":[],"repositories":[{"url":"https://updates.suse.com/repo/$RCE/SLED10-SP2-Online/sled-10-x86_64/","distro_target":"sled-10-x86_64","autorefresh":true,"id":861,"enabled":true,"description":"SLED10-SP2-Online for sled-10-x86_64","installer_updates":false,"name":"SLED10-SP2-Online"}],"online_predecessor_ids":[],"product_class":"7260","cpe":null,"product_type":"base"},{"repositories":[{"id":860,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLED10-SP2-Online/sled-10-i586/","distro_target":"sled-10-i586","autorefresh":true,"installer_updates":false,"name":"SLED10-SP2-Online","description":"SLED10-SP2-Online for sled-10-i586"},{"distro_target":"sled-10-i586","autorefresh":false,"url":"https://updates.suse.com/repo/$RCE/SLED10-SP2-Pool/sled-10-i586/","enabled":true,"id":862,"description":"SLED10-SP2-Pool for sled-10-i586","installer_updates":false,"name":"SLED10-SP2-Pool"},{"url":"https://updates.suse.com/repo/$RCE/SLED10-SP2-Updates/sled-10-i586/","autorefresh":true,"distro_target":"sled-10-i586","id":863,"enabled":true,"description":"SLED10-SP2-Updates for sled-10-i586","name":"SLED10-SP2-Updates","installer_updates":false},{"distro_target":"sled-10-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP2-Debuginfo-Updates/sled-10-i586/","enabled":false,"id":864,"description":"SLE10-SP2-Debuginfo-Updates for sled-10-i586","installer_updates":false,"name":"SLE10-SP2-Debuginfo-Updates"}],"online_predecessor_ids":[],"product_class":"7260","predecessor_ids":[],"cpe":null,"product_type":"base","shortname":null,"description":null,"free":false,"arch":"i686","eula_url":"","friendly_version":"10 SP2","release_stage":"released","id":850,"identifier":"SUSE-Linux-Enterprise-Desktop-SP2","extensions":[],"version":"10","recommended":false,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Desktop 10 SP2 i686","former_identifier":"SUSE-Linux-Enterprise-Desktop-SP2","release_type":null,"name":"SUSE Linux Enterprise Desktop","offline_predecessor_ids":[]},{"recommended":false,"version":"10","name":"SUSE Linux Enterprise Desktop","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Desktop 10 SP2 x86_64","former_identifier":"SUSE-Linux-Enterprise-Desktop-SP2","release_type":null,"friendly_version":"10 SP2","extensions":[],"id":851,"release_stage":"released","identifier":"SUSE-Linux-Enterprise-Desktop-SP2","shortname":null,"description":null,"free":false,"eula_url":"","arch":"x86_64","predecessor_ids":[],"online_predecessor_ids":[],"repositories":[{"enabled":false,"id":861,"distro_target":"sled-10-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLED10-SP2-Online/sled-10-x86_64/","installer_updates":false,"name":"SLED10-SP2-Online","description":"SLED10-SP2-Online for sled-10-x86_64"},{"id":865,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP2-Debuginfo-Updates/sled-10-x86_64/","distro_target":"sled-10-x86_64","autorefresh":true,"installer_updates":false,"name":"SLE10-SP2-Debuginfo-Updates","description":"SLE10-SP2-Debuginfo-Updates for sled-10-x86_64"},{"id":866,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLED10-SP2-Updates/sled-10-x86_64/","autorefresh":true,"distro_target":"sled-10-x86_64","name":"SLED10-SP2-Updates","installer_updates":false,"description":"SLED10-SP2-Updates for sled-10-x86_64"},{"name":"SLED10-SP2-Pool","installer_updates":false,"description":"SLED10-SP2-Pool for sled-10-x86_64","id":867,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLED10-SP2-Pool/sled-10-x86_64/","autorefresh":false,"distro_target":"sled-10-x86_64"}],"product_class":"7260","cpe":null,"product_type":"base"},{"shortname":null,"description":null,"free":false,"eula_url":"","arch":"x86_64","predecessor_ids":[],"online_predecessor_ids":[],"product_class":"7260","repositories":[{"installer_updates":false,"name":"SLED10-SP3-Online","description":"SLED10-SP3-Online for sled-10-x86_64","enabled":true,"id":868,"distro_target":"sled-10-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLED10-SP3-Online/sled-10-x86_64/"},{"autorefresh":false,"distro_target":"sled-10-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Pool/sled-10-x86_64/","enabled":false,"id":869,"description":"SLE10-SP3-Debuginfo-Pool for sled-10-x86_64","name":"SLE10-SP3-Debuginfo-Pool","installer_updates":false},{"installer_updates":false,"name":"SLE10-SP3-Debuginfo-Updates","description":"SLE10-SP3-Debuginfo-Updates for sled-10-x86_64","id":870,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Updates/sled-10-x86_64/","distro_target":"sled-10-x86_64","autorefresh":true},{"description":"SLE10-SP3-Debuginfo-Online for sled-10-x86_64","installer_updates":false,"name":"SLE10-SP3-Debuginfo-Online","distro_target":"sled-10-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Online/sled-10-x86_64/","enabled":false,"id":871},{"distro_target":"sled-10-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLED10-SP3-Updates/sled-10-x86_64/","enabled":true,"id":872,"description":"SLED10-SP3-Updates for sled-10-x86_64","installer_updates":false,"name":"SLED10-SP3-Updates"},{"id":873,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLED10-SP3-Pool/sled-10-x86_64/","autorefresh":false,"distro_target":"sled-10-x86_64","name":"SLED10-SP3-Pool","installer_updates":false,"description":"SLED10-SP3-Pool for sled-10-x86_64"}],"cpe":null,"product_type":"base","recommended":false,"version":"10","name":"SUSE Linux Enterprise Desktop","offline_predecessor_ids":[],"friendly_name":"SUSE Linux Enterprise Desktop 10 SP3 online x86_64","migration_extra":false,"release_type":"online","former_identifier":"SUSE-Linux-Enterprise-Desktop-SP3","friendly_version":"10 SP3","extensions":[],"id":852,"release_stage":"released","identifier":"SUSE-Linux-Enterprise-Desktop-SP3"},{"extensions":[],"release_stage":"released","id":853,"identifier":"SUSE_SLED","friendly_version":"11 SP1","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Desktop","release_type":null,"former_identifier":"SUSE_SLED","migration_extra":false,"friendly_name":"SUSE Linux Enterprise Desktop 11 SP1 i586","recommended":false,"version":"11.1","product_type":"base","cpe":null,"predecessor_ids":[],"online_predecessor_ids":[],"product_class":"7260","repositories":[{"id":680,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Pool/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","name":"SLE11-SP1-Debuginfo-Pool","installer_updates":false,"description":"SLE11-SP1-Debuginfo-Pool for sle-11-i586"},{"enabled":false,"id":682,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Updates/sle-11-i586/","name":"SLE11-SP1-Debuginfo-Updates","installer_updates":false,"description":"SLE11-SP1-Debuginfo-Updates for sle-11-i586"},{"description":"SLED11-Extras for sle-11-i586","installer_updates":false,"name":"SLED11-Extras","distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLED11-Extras/sle-11-i586/","enabled":false,"id":846},{"enabled":false,"id":847,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE-Likewise-5.3-Updates/sle-11-i586/","name":"SLE-Likewise-5.3-Updates","installer_updates":false,"description":"SLE-Likewise-5.3-Updates for sle-11-i586"},{"description":"SLE-Likewise-5.3-Updates for sle-11-x86_64","installer_updates":false,"name":"SLE-Likewise-5.3-Updates","distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE-Likewise-5.3-Updates/sle-11-x86_64/","enabled":false,"id":850},{"url":"https://updates.suse.com/repo/$RCE/SLED11-SP1-Updates/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true,"id":851,"enabled":true,"description":"SLED11-SP1-Updates for sle-11-i586","installer_updates":false,"name":"SLED11-SP1-Updates"},{"description":"SLED11-SP1-Pool for sle-11-i586","installer_updates":false,"name":"SLED11-SP1-Pool","distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLED11-SP1-Pool/sle-11-i586/","enabled":true,"id":852}],"eula_url":"","arch":"i586","free":false,"shortname":null,"description":null},{"recommended":false,"version":"10","name":"SUSE Linux Enterprise Desktop","offline_predecessor_ids":[],"friendly_name":"SUSE Linux Enterprise Desktop 10 SP4 i486","migration_extra":false,"former_identifier":"SUSE-Linux-Enterprise-Desktop-SP4","release_type":null,"friendly_version":"10 SP4","extensions":[],"release_stage":"released","identifier":"SUSE-Linux-Enterprise-Desktop-SP4","id":854,"shortname":null,"description":null,"free":false,"eula_url":"","arch":"i486","predecessor_ids":[],"repositories":[{"url":"https://updates.suse.com/repo/$RCE/SLE10-SP4-Debuginfo-Pool/sled-10-i586/","distro_target":"sled-10-i586","autorefresh":false,"id":874,"enabled":false,"description":"SLE10-SP4-Debuginfo-Pool for sled-10-i586","installer_updates":false,"name":"SLE10-SP4-Debuginfo-Pool"},{"description":"SLE10-SP4-Debuginfo-Updates for sled-10-i586","installer_updates":false,"name":"SLE10-SP4-Debuginfo-Updates","distro_target":"sled-10-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP4-Debuginfo-Updates/sled-10-i586/","enabled":false,"id":875},{"description":"SLED10-GPLv3-Extras for sled-10-i586","name":"SLED10-GPLv3-Extras","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLED10-GPLv3-Extras/sled-10-i586/","autorefresh":true,"distro_target":"sled-10-i586","id":876,"enabled":false},{"installer_updates":false,"name":"SLED10-SP4-Pool","description":"SLED10-SP4-Pool for sled-10-i586","id":877,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLED10-SP4-Pool/sled-10-i586/","distro_target":"sled-10-i586","autorefresh":false},{"name":"SLED10-SP4-Updates","installer_updates":false,"description":"SLED10-SP4-Updates for sled-10-i586","id":878,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLED10-SP4-Updates/sled-10-i586/","autorefresh":true,"distro_target":"sled-10-i586"}],"online_predecessor_ids":[],"product_class":"7260","cpe":null,"product_type":"base"},{"version":"10","recommended":false,"former_identifier":"SUSE-Linux-Enterprise-Desktop-SP4","release_type":null,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Desktop 10 SP4 i386","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Desktop","friendly_version":"10 SP4","identifier":"SUSE-Linux-Enterprise-Desktop-SP4","release_stage":"released","id":855,"extensions":[],"free":false,"shortname":null,"description":null,"arch":"i386","eula_url":"","online_predecessor_ids":[],"repositories":[{"enabled":false,"id":874,"autorefresh":false,"distro_target":"sled-10-i586","url":"https://updates.suse.com/repo/$RCE/SLE10-SP4-Debuginfo-Pool/sled-10-i586/","name":"SLE10-SP4-Debuginfo-Pool","installer_updates":false,"description":"SLE10-SP4-Debuginfo-Pool for sled-10-i586"},{"description":"SLE10-SP4-Debuginfo-Updates for sled-10-i586","installer_updates":false,"name":"SLE10-SP4-Debuginfo-Updates","distro_target":"sled-10-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP4-Debuginfo-Updates/sled-10-i586/","enabled":false,"id":875},{"autorefresh":true,"distro_target":"sled-10-i586","url":"https://updates.suse.com/repo/$RCE/SLED10-GPLv3-Extras/sled-10-i586/","enabled":false,"id":876,"description":"SLED10-GPLv3-Extras for sled-10-i586","name":"SLED10-GPLv3-Extras","installer_updates":false},{"description":"SLED10-SP4-Pool for sled-10-i586","installer_updates":false,"name":"SLED10-SP4-Pool","distro_target":"sled-10-i586","autorefresh":false,"url":"https://updates.suse.com/repo/$RCE/SLED10-SP4-Pool/sled-10-i586/","enabled":true,"id":877},{"description":"SLED10-SP4-Updates for sled-10-i586","installer_updates":false,"name":"SLED10-SP4-Updates","url":"https://updates.suse.com/repo/$RCE/SLED10-SP4-Updates/sled-10-i586/","distro_target":"sled-10-i586","autorefresh":true,"id":878,"enabled":true}],"product_class":"7260","predecessor_ids":[],"product_type":"base","cpe":null},{"extensions":[],"release_stage":"released","id":856,"identifier":"SUSE-Linux-Enterprise-Desktop-SP4","friendly_version":"10 SP4","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Desktop","release_type":null,"former_identifier":"SUSE-Linux-Enterprise-Desktop-SP4","friendly_name":"SUSE Linux Enterprise Desktop 10 SP4 x86_64","migration_extra":false,"recommended":false,"version":"10","product_type":"base","cpe":null,"predecessor_ids":[],"repositories":[{"distro_target":"sled-10-x86_64","autorefresh":false,"url":"https://updates.suse.com/repo/$RCE/SLED10-SP4-Pool/sled-10-x86_64/","enabled":true,"id":879,"description":"SLED10-SP4-Pool for sled-10-x86_64","installer_updates":false,"name":"SLED10-SP4-Pool"},{"name":"SLED10-GPLv3-Extras","installer_updates":false,"description":"SLED10-GPLv3-Extras for sled-10-x86_64","id":880,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLED10-GPLv3-Extras/sled-10-x86_64/","autorefresh":true,"distro_target":"sled-10-x86_64"},{"description":"SLE10-SP4-Debuginfo-Pool for sled-10-x86_64","installer_updates":false,"name":"SLE10-SP4-Debuginfo-Pool","url":"https://updates.suse.com/repo/$RCE/SLE10-SP4-Debuginfo-Pool/sled-10-x86_64/","distro_target":"sled-10-x86_64","autorefresh":false,"id":881,"enabled":false},{"autorefresh":true,"distro_target":"sled-10-x86_64","url":"https://updates.suse.com/repo/$RCE/SLED10-SP4-Updates/sled-10-x86_64/","enabled":true,"id":882,"description":"SLED10-SP4-Updates for sled-10-x86_64","name":"SLED10-SP4-Updates","installer_updates":false},{"description":"SLE10-SP4-Debuginfo-Updates for sled-10-x86_64","name":"SLE10-SP4-Debuginfo-Updates","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP4-Debuginfo-Updates/sled-10-x86_64/","autorefresh":true,"distro_target":"sled-10-x86_64","id":883,"enabled":false}],"online_predecessor_ids":[],"product_class":"7260","eula_url":"","arch":"x86_64","free":false,"description":null,"shortname":null},{"offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Desktop","release_type":null,"former_identifier":"SUSE_SLED-SP2-migration","friendly_name":"SUSE Linux Enterprise Desktop 11 SP1 i586 (Migration)","migration_extra":false,"recommended":false,"version":"11.1","extensions":[],"id":857,"release_stage":"released","identifier":"SUSE_SLED-SP2-migration","friendly_version":"11 SP1","eula_url":"","arch":"i586","free":false,"shortname":null,"description":null,"product_type":"base","cpe":null,"predecessor_ids":[],"repositories":[{"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Pool/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true,"id":680,"enabled":false,"description":"SLE11-SP1-Debuginfo-Pool for sle-11-i586","installer_updates":false,"name":"SLE11-SP1-Debuginfo-Pool"},{"distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Updates/sle-11-i586/","enabled":false,"id":682,"description":"SLE11-SP1-Debuginfo-Updates for sle-11-i586","installer_updates":false,"name":"SLE11-SP1-Debuginfo-Updates"},{"installer_updates":false,"name":"SLE11-SP2-Debuginfo-Core","description":"SLE11-SP2-Debuginfo-Core for sle-11-i586","enabled":false,"id":717,"distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-Debuginfo-Core/sle-11-i586/"},{"installer_updates":false,"name":"SLE11-SP2-Debuginfo-Updates","description":"SLE11-SP2-Debuginfo-Updates for sle-11-i586","enabled":false,"id":719,"distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-Debuginfo-Updates/sle-11-i586/"},{"url":"https://updates.suse.com/repo/$RCE/SLED11-SP2-Core/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","id":856,"enabled":true,"description":"SLED11-SP2-Core for sle-11-i586","name":"SLED11-SP2-Core","installer_updates":false},{"name":"SLED11-SP2-Updates","installer_updates":false,"description":"SLED11-SP2-Updates for sle-11-i586","id":857,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLED11-SP2-Updates/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586"},{"description":"nVidia-Driver-SLE11-SP2","name":"nVidia-Driver-SLE11-SP2","installer_updates":false,"url":"http://download.nvidia.com/novell/sle11sp2/","autorefresh":true,"distro_target":null,"id":885,"enabled":true}],"online_predecessor_ids":[],"product_class":"7260"},{"arch":"x86_64","eula_url":"","free":false,"description":null,"shortname":null,"product_type":"base","cpe":null,"online_predecessor_ids":[],"product_class":"7260","repositories":[{"id":707,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Pool/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true,"installer_updates":false,"name":"SLE11-SP1-Debuginfo-Pool","description":"SLE11-SP1-Debuginfo-Pool for sle-11-x86_64"},{"description":"SLE11-SP2-Debuginfo-Updates for sle-11-x86_64","installer_updates":false,"name":"SLE11-SP2-Debuginfo-Updates","distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-Debuginfo-Updates/sle-11-x86_64/","enabled":false,"id":712},{"distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Updates/sle-11-x86_64/","enabled":false,"id":715,"description":"SLE11-SP1-Debuginfo-Updates for sle-11-x86_64","installer_updates":false,"name":"SLE11-SP1-Debuginfo-Updates"},{"enabled":false,"id":716,"distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-Debuginfo-Core/sle-11-x86_64/","installer_updates":false,"name":"SLE11-SP2-Debuginfo-Core","description":"SLE11-SP2-Debuginfo-Core for sle-11-x86_64"},{"enabled":true,"id":885,"distro_target":null,"autorefresh":true,"url":"http://download.nvidia.com/novell/sle11sp2/","installer_updates":false,"name":"nVidia-Driver-SLE11-SP2","description":"nVidia-Driver-SLE11-SP2"},{"url":"https://updates.suse.com/repo/$RCE/SLED11-SP2-Updates/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true,"id":886,"enabled":true,"description":"SLED11-SP2-Updates for sle-11-x86_64","installer_updates":false,"name":"SLED11-SP2-Updates"},{"enabled":true,"id":887,"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLED11-SP2-Core/sle-11-x86_64/","name":"SLED11-SP2-Core","installer_updates":false,"description":"SLED11-SP2-Core for sle-11-x86_64"}],"predecessor_ids":[],"former_identifier":"SUSE_SLED-SP2-migration","release_type":null,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Desktop 11 SP1 x86_64 (Migration)","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Desktop","version":"11.1","recommended":false,"release_stage":"released","id":858,"identifier":"SUSE_SLED-SP2-migration","extensions":[],"friendly_version":"11 SP1"},{"free":false,"description":null,"shortname":null,"eula_url":"","arch":"i686","predecessor_ids":[],"product_class":"7260","online_predecessor_ids":[],"repositories":[{"distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLED11-Extras/sle-11-i586/","enabled":false,"id":846,"description":"SLED11-Extras for sle-11-i586","installer_updates":false,"name":"SLED11-Extras"},{"name":"SLED11-SP1-Updates","installer_updates":false,"description":"SLED11-SP1-Updates for sle-11-i586","enabled":false,"id":851,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLED11-SP1-Updates/sle-11-i586/"},{"installer_updates":false,"name":"SLED11-SP1-Pool","description":"SLED11-SP1-Pool for sle-11-i586","enabled":false,"id":852,"distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLED11-SP1-Pool/sle-11-i586/"},{"description":"SLED11-SP2-Core for sle-11-i586","installer_updates":false,"name":"SLED11-SP2-Core","distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLED11-SP2-Core/sle-11-i586/","enabled":false,"id":856},{"distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLED11-SP2-Updates/sle-11-i586/","enabled":false,"id":857,"description":"SLED11-SP2-Updates for sle-11-i586","installer_updates":false,"name":"SLED11-SP2-Updates"},{"description":"nVidia-Driver-SLE11-SP3","name":"nVidia-Driver-SLE11-SP3","installer_updates":false,"autorefresh":true,"distro_target":null,"url":"http://download.nvidia.com/novell/sle11sp3/","enabled":true,"id":889},{"name":"SLED11-SP3-Updates","installer_updates":false,"description":"SLED11-SP3-Updates for sle-11-i586","id":890,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLED11-SP3-Updates/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586"},{"enabled":true,"id":891,"distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLED11-SP3-Pool/sle-11-i586/","installer_updates":false,"name":"SLED11-SP3-Pool","description":"SLED11-SP3-Pool for sle-11-i586"}],"product_type":"base","cpe":null,"recommended":false,"version":"11.2","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Desktop","release_type":null,"former_identifier":"SUSE_SLED-SP3-migration","migration_extra":false,"friendly_name":"SUSE Linux Enterprise Desktop 11 SP2 i686 (Migration)","friendly_version":"11 SP2","extensions":[],"identifier":"SUSE_SLED-SP3-migration","release_stage":"released","id":859},{"eula_url":"","arch":"i486","free":false,"description":null,"shortname":null,"product_type":"base","cpe":null,"predecessor_ids":[],"repositories":[{"enabled":false,"id":846,"distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLED11-Extras/sle-11-i586/","installer_updates":false,"name":"SLED11-Extras","description":"SLED11-Extras for sle-11-i586"},{"installer_updates":false,"name":"SLED11-SP1-Updates","description":"SLED11-SP1-Updates for sle-11-i586","enabled":false,"id":851,"distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLED11-SP1-Updates/sle-11-i586/"},{"enabled":false,"id":852,"distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLED11-SP1-Pool/sle-11-i586/","installer_updates":false,"name":"SLED11-SP1-Pool","description":"SLED11-SP1-Pool for sle-11-i586"},{"description":"SLED11-SP2-Core for sle-11-i586","name":"SLED11-SP2-Core","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLED11-SP2-Core/sle-11-i586/","enabled":false,"id":856},{"id":857,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLED11-SP2-Updates/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true,"installer_updates":false,"name":"SLED11-SP2-Updates","description":"SLED11-SP2-Updates for sle-11-i586"},{"autorefresh":true,"distro_target":null,"url":"http://download.nvidia.com/novell/sle11sp3/","enabled":true,"id":889,"description":"nVidia-Driver-SLE11-SP3","name":"nVidia-Driver-SLE11-SP3","installer_updates":false},{"installer_updates":false,"name":"SLED11-SP3-Updates","description":"SLED11-SP3-Updates for sle-11-i586","id":890,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLED11-SP3-Updates/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true},{"enabled":true,"id":891,"distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLED11-SP3-Pool/sle-11-i586/","installer_updates":false,"name":"SLED11-SP3-Pool","description":"SLED11-SP3-Pool for sle-11-i586"}],"online_predecessor_ids":[],"product_class":"7260","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Desktop","former_identifier":"SUSE_SLED-SP3-migration","release_type":null,"friendly_name":"SUSE Linux Enterprise Desktop 11 SP2 i486 (Migration)","migration_extra":false,"recommended":false,"version":"11.2","extensions":[],"release_stage":"released","id":860,"identifier":"SUSE_SLED-SP3-migration","friendly_version":"11 SP2"},{"id":861,"release_stage":"released","identifier":"SUSE-Linux-Enterprise-Desktop-x86_64","extensions":[{"eula_url":"","arch":"x86_64","shortname":null,"description":null,"free":true,"cpe":null,"product_type":"extension","predecessor_ids":[],"online_predecessor_ids":[],"repositories":[{"distro_target":"sled-10-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-Updates/sled-10-x86_64/","enabled":true,"id":1292,"description":"SLE10-SDK-Updates for sled-10-x86_64","installer_updates":false,"name":"SLE10-SDK-Updates"},{"description":"SLE10-SDK-Updates for sles-10-x86_64","name":"SLE10-SDK-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sles-10-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-Updates/sles-10-x86_64/","enabled":true,"id":1293}],"product_class":"SLE-SDK","name":"SUSE Linux Enterprise Software Development Kit","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Software Development Kit 10 x86_64","release_type":null,"former_identifier":"SUSE-Linux-Enterprise-SDK-DVD-x86_64","recommended":false,"version":"10","extensions":[],"release_stage":"released","id":1169,"identifier":"SUSE-Linux-Enterprise-SDK-DVD-x86_64","friendly_version":"10"},{"free":true,"description":null,"shortname":null,"arch":"x86_64","eula_url":"","repositories":[{"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-Updates/sled-10-x86_64/","autorefresh":true,"distro_target":"sled-10-x86_64","id":1292,"enabled":true,"description":"SLE10-SDK-Updates for sled-10-x86_64","name":"SLE10-SDK-Updates","installer_updates":false},{"description":"SLE10-SDK-Updates for sles-10-x86_64","name":"SLE10-SDK-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sles-10-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-Updates/sles-10-x86_64/","enabled":true,"id":1293}],"online_predecessor_ids":[],"product_class":"SLE-SDK","predecessor_ids":[],"product_type":"extension","cpe":null,"version":"10","recommended":false,"release_type":null,"former_identifier":"SUSE-Linux-Enterprise-SDK-x86_64","migration_extra":false,"friendly_name":"SUSE Linux Enterprise Software Development Kit 10 x86_64","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Software Development Kit","friendly_version":"10","release_stage":"released","id":1183,"identifier":"SUSE-Linux-Enterprise-SDK-x86_64","extensions":[]}],"friendly_version":"10","migration_extra":false,"friendly_name":"SUSE Linux Enterprise Desktop 10 x86_64","release_type":null,"former_identifier":"SUSE-Linux-Enterprise-Desktop-x86_64","name":"SUSE Linux Enterprise Desktop","offline_predecessor_ids":[],"version":"10","recommended":false,"cpe":null,"product_type":"base","repositories":[{"url":"https://updates.suse.com/repo/$RCE/SLED10-Updates/sled-10-x86_64/","autorefresh":true,"distro_target":"sled-10-x86_64","id":892,"enabled":true,"description":"SLED10-Updates for sled-10-x86_64","name":"SLED10-Updates","installer_updates":false},{"autorefresh":true,"distro_target":"sled-10-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE10-Debuginfo-Updates/sled-10-x86_64/","enabled":false,"id":893,"description":"SLE10-Debuginfo-Updates for sled-10-x86_64","name":"SLE10-Debuginfo-Updates","installer_updates":false}],"online_predecessor_ids":[],"product_class":"7260","predecessor_ids":[],"arch":"x86_64","eula_url":"","description":null,"shortname":null,"free":false},{"version":"10","recommended":false,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Desktop 10 SP2 i486","release_type":null,"former_identifier":"SUSE-Linux-Enterprise-Desktop-SP2","name":"SUSE Linux Enterprise Desktop","offline_predecessor_ids":[],"friendly_version":"10 SP2","release_stage":"released","id":862,"identifier":"SUSE-Linux-Enterprise-Desktop-SP2","extensions":[],"description":null,"shortname":null,"free":false,"arch":"i486","eula_url":"","repositories":[{"url":"https://updates.suse.com/repo/$RCE/SLED10-SP2-Online/sled-10-i586/","autorefresh":true,"distro_target":"sled-10-i586","id":860,"enabled":false,"description":"SLED10-SP2-Online for sled-10-i586","name":"SLED10-SP2-Online","installer_updates":false},{"installer_updates":false,"name":"SLED10-SP2-Pool","description":"SLED10-SP2-Pool for sled-10-i586","id":862,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLED10-SP2-Pool/sled-10-i586/","distro_target":"sled-10-i586","autorefresh":false},{"id":863,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLED10-SP2-Updates/sled-10-i586/","distro_target":"sled-10-i586","autorefresh":true,"installer_updates":false,"name":"SLED10-SP2-Updates","description":"SLED10-SP2-Updates for sled-10-i586"},{"description":"SLE10-SP2-Debuginfo-Updates for sled-10-i586","installer_updates":false,"name":"SLE10-SP2-Debuginfo-Updates","url":"https://updates.suse.com/repo/$RCE/SLE10-SP2-Debuginfo-Updates/sled-10-i586/","distro_target":"sled-10-i586","autorefresh":true,"id":864,"enabled":false}],"online_predecessor_ids":[],"product_class":"7260","predecessor_ids":[],"cpe":null,"product_type":"base"},{"version":"10","recommended":false,"former_identifier":"SUSE-Linux-Enterprise-Desktop-SP3-migration","release_type":null,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Desktop 10 i486 (Migration)","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Desktop","friendly_version":"10","release_stage":"released","identifier":"SUSE-Linux-Enterprise-Desktop-SP3-migration","id":863,"extensions":[],"free":false,"description":null,"shortname":null,"arch":"i486","eula_url":"","product_class":"7260","online_predecessor_ids":[],"repositories":[{"enabled":true,"id":894,"autorefresh":true,"distro_target":"sled-10-i586","url":"https://updates.suse.com/repo/$RCE/SLED10-SP3-Online/sled-10-i586/","name":"SLED10-SP3-Online","installer_updates":false,"description":"SLED10-SP3-Online for sled-10-i586"}],"predecessor_ids":[],"product_type":"base","cpe":null},{"offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Desktop","release_type":null,"former_identifier":"SUSE-Linux-Enterprise-Desktop-SP3-migration","friendly_name":"SUSE Linux Enterprise Desktop 10 x86_64 (Migration)","migration_extra":false,"recommended":false,"version":"10","extensions":[{"description":null,"shortname":null,"free":true,"arch":"x86_64","eula_url":"","product_class":"SLE-SDK","online_predecessor_ids":[],"repositories":[{"name":"SLE10-SDK-Updates","installer_updates":false,"description":"SLE10-SDK-Updates for sled-10-x86_64","enabled":true,"id":1292,"autorefresh":true,"distro_target":"sled-10-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-Updates/sled-10-x86_64/"},{"autorefresh":true,"distro_target":"sles-10-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-Updates/sles-10-x86_64/","enabled":true,"id":1293,"description":"SLE10-SDK-Updates for sles-10-x86_64","name":"SLE10-SDK-Updates","installer_updates":false}],"predecessor_ids":[],"cpe":null,"product_type":"extension","version":"10","recommended":false,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Software Development Kit 10 x86_64","former_identifier":"SUSE-Linux-Enterprise-SDK-DVD-x86_64","release_type":null,"name":"SUSE Linux Enterprise Software Development Kit","offline_predecessor_ids":[],"friendly_version":"10","id":1169,"release_stage":"released","identifier":"SUSE-Linux-Enterprise-SDK-DVD-x86_64","extensions":[]},{"shortname":null,"description":null,"free":true,"eula_url":"","arch":"x86_64","predecessor_ids":[],"repositories":[{"autorefresh":true,"distro_target":"sled-10-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-Updates/sled-10-x86_64/","enabled":true,"id":1292,"description":"SLE10-SDK-Updates for sled-10-x86_64","name":"SLE10-SDK-Updates","installer_updates":false},{"autorefresh":true,"distro_target":"sles-10-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-Updates/sles-10-x86_64/","enabled":true,"id":1293,"description":"SLE10-SDK-Updates for sles-10-x86_64","name":"SLE10-SDK-Updates","installer_updates":false}],"online_predecessor_ids":[],"product_class":"SLE-SDK","cpe":null,"product_type":"extension","recommended":false,"version":"10","name":"SUSE Linux Enterprise Software Development Kit","offline_predecessor_ids":[],"friendly_name":"SUSE Linux Enterprise Software Development Kit 10 x86_64","migration_extra":false,"former_identifier":"SUSE-Linux-Enterprise-SDK-x86_64","release_type":null,"friendly_version":"10","extensions":[],"id":1183,"release_stage":"released","identifier":"SUSE-Linux-Enterprise-SDK-x86_64"}],"release_stage":"released","id":864,"identifier":"SUSE-Linux-Enterprise-Desktop-SP3-migration","friendly_version":"10","eula_url":"","arch":"x86_64","free":false,"description":null,"shortname":null,"product_type":"base","cpe":null,"predecessor_ids":[],"online_predecessor_ids":[],"product_class":"7260","repositories":[{"enabled":true,"id":868,"autorefresh":true,"distro_target":"sled-10-x86_64","url":"https://updates.suse.com/repo/$RCE/SLED10-SP3-Online/sled-10-x86_64/","name":"SLED10-SP3-Online","installer_updates":false,"description":"SLED10-SP3-Online for sled-10-x86_64"}]},{"free":false,"shortname":null,"description":null,"eula_url":"","arch":"i586","predecessor_ids":[],"online_predecessor_ids":[],"product_class":"7260","repositories":[{"installer_updates":false,"name":"SLED10-GPLv3-Extras","description":"SLED10-GPLv3-Extras for sled-10-i586","enabled":false,"id":876,"distro_target":"sled-10-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLED10-GPLv3-Extras/sled-10-i586/"},{"enabled":false,"id":894,"autorefresh":true,"distro_target":"sled-10-i586","url":"https://updates.suse.com/repo/$RCE/SLED10-SP3-Online/sled-10-i586/","name":"SLED10-SP3-Online","installer_updates":false,"description":"SLED10-SP3-Online for sled-10-i586"},{"autorefresh":false,"distro_target":"sled-10-i586","url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Pool/sled-10-i586/","enabled":false,"id":895,"description":"SLE10-SP3-Debuginfo-Pool for sled-10-i586","name":"SLE10-SP3-Debuginfo-Pool","installer_updates":false},{"description":"SLE10-SP3-Debuginfo-Updates for sled-10-i586","name":"SLE10-SP3-Debuginfo-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sled-10-i586","url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Updates/sled-10-i586/","enabled":false,"id":896},{"description":"SLED10-SP3-Updates for sled-10-i586","installer_updates":false,"name":"SLED10-SP3-Updates","distro_target":"sled-10-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLED10-SP3-Updates/sled-10-i586/","enabled":true,"id":897},{"description":"SLED10-SP3-Pool for sled-10-i586","name":"SLED10-SP3-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sled-10-i586","url":"https://updates.suse.com/repo/$RCE/SLED10-SP3-Pool/sled-10-i586/","enabled":true,"id":898},{"description":"SLE10-SP3-Debuginfo-Online for sled-10-i586","name":"SLE10-SP3-Debuginfo-Online","installer_updates":false,"autorefresh":true,"distro_target":"sled-10-i586","url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Online/sled-10-i586/","enabled":false,"id":899}],"product_type":"base","cpe":null,"recommended":false,"version":"10","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Desktop","release_type":null,"former_identifier":"SUSE-Linux-Enterprise-Desktop-SP3","friendly_name":"SUSE Linux Enterprise Desktop 10 SP3 i586","migration_extra":false,"friendly_version":"10 SP3","extensions":[],"release_stage":"released","identifier":"SUSE-Linux-Enterprise-Desktop-SP3","id":865},{"friendly_version":"10 SP3","id":866,"release_stage":"released","identifier":"SUSE-Linux-Enterprise-Desktop-SP3","extensions":[],"version":"10","recommended":false,"former_identifier":"SUSE-Linux-Enterprise-Desktop-SP3","release_type":null,"friendly_name":"SUSE Linux Enterprise Desktop 10 SP3 x86_64","migration_extra":false,"offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Desktop","repositories":[{"url":"https://updates.suse.com/repo/$RCE/SLED10-SP3-Online/sled-10-x86_64/","distro_target":"sled-10-x86_64","autorefresh":true,"id":868,"enabled":false,"description":"SLED10-SP3-Online for sled-10-x86_64","installer_updates":false,"name":"SLED10-SP3-Online"},{"url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Pool/sled-10-x86_64/","autorefresh":false,"distro_target":"sled-10-x86_64","id":869,"enabled":false,"description":"SLE10-SP3-Debuginfo-Pool for sled-10-x86_64","name":"SLE10-SP3-Debuginfo-Pool","installer_updates":false},{"enabled":false,"id":870,"autorefresh":true,"distro_target":"sled-10-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Updates/sled-10-x86_64/","name":"SLE10-SP3-Debuginfo-Updates","installer_updates":false,"description":"SLE10-SP3-Debuginfo-Updates for sled-10-x86_64"},{"id":871,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Online/sled-10-x86_64/","autorefresh":true,"distro_target":"sled-10-x86_64","name":"SLE10-SP3-Debuginfo-Online","installer_updates":false,"description":"SLE10-SP3-Debuginfo-Online for sled-10-x86_64"},{"url":"https://updates.suse.com/repo/$RCE/SLED10-SP3-Updates/sled-10-x86_64/","autorefresh":true,"distro_target":"sled-10-x86_64","id":872,"enabled":true,"description":"SLED10-SP3-Updates for sled-10-x86_64","name":"SLED10-SP3-Updates","installer_updates":false},{"id":873,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLED10-SP3-Pool/sled-10-x86_64/","autorefresh":false,"distro_target":"sled-10-x86_64","name":"SLED10-SP3-Pool","installer_updates":false,"description":"SLED10-SP3-Pool for sled-10-x86_64"},{"id":880,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLED10-GPLv3-Extras/sled-10-x86_64/","autorefresh":true,"distro_target":"sled-10-x86_64","name":"SLED10-GPLv3-Extras","installer_updates":false,"description":"SLED10-GPLv3-Extras for sled-10-x86_64"}],"online_predecessor_ids":[],"product_class":"7260","predecessor_ids":[],"product_type":"base","cpe":null,"free":false,"shortname":null,"description":null,"arch":"x86_64","eula_url":""},{"free":false,"description":null,"shortname":null,"eula_url":"","arch":"i486","predecessor_ids":[],"online_predecessor_ids":[],"repositories":[{"name":"SLED10-SP3-Online","installer_updates":false,"description":"SLED10-SP3-Online for sled-10-i586","enabled":true,"id":894,"autorefresh":true,"distro_target":"sled-10-i586","url":"https://updates.suse.com/repo/$RCE/SLED10-SP3-Online/sled-10-i586/"},{"autorefresh":false,"distro_target":"sled-10-i586","url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Pool/sled-10-i586/","enabled":false,"id":895,"description":"SLE10-SP3-Debuginfo-Pool for sled-10-i586","name":"SLE10-SP3-Debuginfo-Pool","installer_updates":false},{"installer_updates":false,"name":"SLE10-SP3-Debuginfo-Updates","description":"SLE10-SP3-Debuginfo-Updates for sled-10-i586","enabled":false,"id":896,"distro_target":"sled-10-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Updates/sled-10-i586/"},{"url":"https://updates.suse.com/repo/$RCE/SLED10-SP3-Updates/sled-10-i586/","distro_target":"sled-10-i586","autorefresh":true,"id":897,"enabled":true,"description":"SLED10-SP3-Updates for sled-10-i586","installer_updates":false,"name":"SLED10-SP3-Updates"},{"enabled":false,"id":898,"distro_target":"sled-10-i586","autorefresh":false,"url":"https://updates.suse.com/repo/$RCE/SLED10-SP3-Pool/sled-10-i586/","installer_updates":false,"name":"SLED10-SP3-Pool","description":"SLED10-SP3-Pool for sled-10-i586"},{"name":"SLE10-SP3-Debuginfo-Online","installer_updates":false,"description":"SLE10-SP3-Debuginfo-Online for sled-10-i586","id":899,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Online/sled-10-i586/","autorefresh":true,"distro_target":"sled-10-i586"}],"product_class":"7260","product_type":"base","cpe":null,"recommended":false,"version":"10","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Desktop","former_identifier":"SUSE-Linux-Enterprise-Desktop-SP3","release_type":"online","migration_extra":false,"friendly_name":"SUSE Linux Enterprise Desktop 10 SP3 online i486","friendly_version":"10 SP3","extensions":[],"id":867,"release_stage":"released","identifier":"SUSE-Linux-Enterprise-Desktop-SP3"},{"recommended":false,"version":"11.2","name":"SUSE Linux Enterprise Desktop","offline_predecessor_ids":[],"friendly_name":"SUSE Linux Enterprise Desktop 11 SP2 i686","migration_extra":false,"former_identifier":"SUSE_SLED","release_type":null,"friendly_version":"11 SP2","extensions":[],"id":868,"release_stage":"released","identifier":"SUSE_SLED","shortname":null,"description":null,"free":false,"eula_url":"","arch":"i686","predecessor_ids":[],"online_predecessor_ids":[],"product_class":"7260","repositories":[{"distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Pool/sle-11-i586/","enabled":false,"id":680,"description":"SLE11-SP1-Debuginfo-Pool for sle-11-i586","installer_updates":false,"name":"SLE11-SP1-Debuginfo-Pool"},{"description":"SLE11-SP1-Debuginfo-Updates for sle-11-i586","name":"SLE11-SP1-Debuginfo-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Updates/sle-11-i586/","enabled":false,"id":682},{"name":"SLE11-SP2-Debuginfo-Core","installer_updates":false,"description":"SLE11-SP2-Debuginfo-Core for sle-11-i586","enabled":false,"id":717,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-Debuginfo-Core/sle-11-i586/"},{"description":"SLE11-SP2-Debuginfo-Updates for sle-11-i586","name":"SLE11-SP2-Debuginfo-Updates","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-Debuginfo-Updates/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","id":719,"enabled":false},{"description":"SLED11-Extras for sle-11-i586","name":"SLED11-Extras","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLED11-Extras/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","id":846,"enabled":false},{"distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLED11-SP1-Updates/sle-11-i586/","enabled":true,"id":851,"description":"SLED11-SP1-Updates for sle-11-i586","installer_updates":false,"name":"SLED11-SP1-Updates"},{"description":"SLED11-SP1-Pool for sle-11-i586","installer_updates":false,"name":"SLED11-SP1-Pool","distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLED11-SP1-Pool/sle-11-i586/","enabled":true,"id":852},{"name":"SLED11-SP2-Core","installer_updates":false,"description":"SLED11-SP2-Core for sle-11-i586","enabled":true,"id":856,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLED11-SP2-Core/sle-11-i586/"},{"installer_updates":false,"name":"SLED11-SP2-Updates","description":"SLED11-SP2-Updates for sle-11-i586","id":857,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLED11-SP2-Updates/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true}],"cpe":null,"product_type":"base"},{"friendly_version":"11 SP3","id":869,"release_stage":"released","identifier":"SUSE_SLED","extensions":[],"version":"11.3","recommended":false,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Desktop 11 SP3 i486","former_identifier":"SUSE_SLED","release_type":null,"name":"SUSE Linux Enterprise Desktop","offline_predecessor_ids":[],"online_predecessor_ids":[],"product_class":"7260","repositories":[{"enabled":false,"id":680,"distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Pool/sle-11-i586/","installer_updates":false,"name":"SLE11-SP1-Debuginfo-Pool","description":"SLE11-SP1-Debuginfo-Pool for sle-11-i586"},{"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Updates/sle-11-i586/","enabled":false,"id":682,"description":"SLE11-SP1-Debuginfo-Updates for sle-11-i586","name":"SLE11-SP1-Debuginfo-Updates","installer_updates":false},{"distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-Debuginfo-Core/sle-11-i586/","enabled":false,"id":717,"description":"SLE11-SP2-Debuginfo-Core for sle-11-i586","installer_updates":false,"name":"SLE11-SP2-Debuginfo-Core"},{"description":"SLE11-SP2-Debuginfo-Updates for sle-11-i586","name":"SLE11-SP2-Debuginfo-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-Debuginfo-Updates/sle-11-i586/","enabled":false,"id":719},{"installer_updates":false,"name":"SLE11-SP3-Debuginfo-Updates","description":"SLE11-SP3-Debuginfo-Updates for sle-11-i586","id":759,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP3-Debuginfo-Updates/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true},{"distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP3-Debuginfo-Pool/sle-11-i586/","enabled":false,"id":763,"description":"SLE11-SP3-Debuginfo-Pool for sle-11-i586","installer_updates":false,"name":"SLE11-SP3-Debuginfo-Pool"},{"description":"SLED11-Extras for sle-11-i586","installer_updates":false,"name":"SLED11-Extras","distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLED11-Extras/sle-11-i586/","enabled":false,"id":846},{"distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLED11-SP1-Updates/sle-11-i586/","enabled":false,"id":851,"description":"SLED11-SP1-Updates for sle-11-i586","installer_updates":false,"name":"SLED11-SP1-Updates"},{"id":852,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLED11-SP1-Pool/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","name":"SLED11-SP1-Pool","installer_updates":false,"description":"SLED11-SP1-Pool for sle-11-i586"},{"id":856,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLED11-SP2-Core/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true,"installer_updates":false,"name":"SLED11-SP2-Core","description":"SLED11-SP2-Core for sle-11-i586"},{"enabled":false,"id":857,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLED11-SP2-Updates/sle-11-i586/","name":"SLED11-SP2-Updates","installer_updates":false,"description":"SLED11-SP2-Updates for sle-11-i586"},{"description":"SLED11-SP3-Updates for sle-11-i586","name":"SLED11-SP3-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLED11-SP3-Updates/sle-11-i586/","enabled":true,"id":890},{"description":"SLED11-SP3-Pool for sle-11-i586","installer_updates":false,"name":"SLED11-SP3-Pool","distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLED11-SP3-Pool/sle-11-i586/","enabled":true,"id":891}],"predecessor_ids":[],"cpe":null,"product_type":"base","description":null,"shortname":null,"free":false,"arch":"i486","eula_url":""},{"extensions":[],"release_stage":"released","identifier":"SUSE-Linux-Enterprise-Desktop-SP2-migration","id":870,"friendly_version":"10","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Desktop","former_identifier":"SUSE-Linux-Enterprise-Desktop-SP2-migration","release_type":null,"friendly_name":"SUSE Linux Enterprise Desktop 10 i586 (Migration)","migration_extra":false,"recommended":false,"version":"10","product_type":"base","cpe":null,"predecessor_ids":[],"online_predecessor_ids":[],"repositories":[{"url":"https://updates.suse.com/repo/$RCE/SLED10-SP2-Online/sled-10-i586/","distro_target":"sled-10-i586","autorefresh":true,"id":860,"enabled":true,"description":"SLED10-SP2-Online for sled-10-i586","installer_updates":false,"name":"SLED10-SP2-Online"}],"product_class":"7260","eula_url":"","arch":"i586","free":false,"description":null,"shortname":null},{"version":"10","recommended":false,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Desktop 10 i386 (Migration)","release_type":null,"former_identifier":"SUSE-Linux-Enterprise-Desktop-SP2-migration","name":"SUSE Linux Enterprise Desktop","offline_predecessor_ids":[],"friendly_version":"10","release_stage":"released","id":871,"identifier":"SUSE-Linux-Enterprise-Desktop-SP2-migration","extensions":[{"offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Software Development Kit","release_type":null,"former_identifier":"SUSE-Linux-Enterprise-SDK-DVD-i386","friendly_name":"SUSE Linux Enterprise Software Development Kit 10 i386","migration_extra":false,"recommended":false,"version":"10","extensions":[],"release_stage":"released","identifier":"SUSE-Linux-Enterprise-SDK-DVD-i386","id":1165,"friendly_version":"10","eula_url":"","arch":"i386","free":true,"description":null,"shortname":null,"product_type":"extension","cpe":null,"predecessor_ids":[],"repositories":[{"description":"SLE10-SDK-Updates for sled-10-i586","installer_updates":false,"name":"SLE10-SDK-Updates","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-Updates/sled-10-i586/","distro_target":"sled-10-i586","autorefresh":true,"id":1287,"enabled":true},{"autorefresh":true,"distro_target":"sles-10-i586","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-Updates/sles-10-i586/","enabled":true,"id":1288,"description":"SLE10-SDK-Updates for sles-10-i586","name":"SLE10-SDK-Updates","installer_updates":false}],"online_predecessor_ids":[],"product_class":"SLE-SDK"},{"predecessor_ids":[],"online_predecessor_ids":[],"repositories":[{"id":1287,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-Updates/sled-10-i586/","distro_target":"sled-10-i586","autorefresh":true,"installer_updates":false,"name":"SLE10-SDK-Updates","description":"SLE10-SDK-Updates for sled-10-i586"},{"enabled":true,"id":1288,"distro_target":"sles-10-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-Updates/sles-10-i586/","installer_updates":false,"name":"SLE10-SDK-Updates","description":"SLE10-SDK-Updates for sles-10-i586"}],"product_class":"SLE-SDK","cpe":null,"product_type":"extension","shortname":null,"description":null,"free":true,"eula_url":"","arch":"i386","friendly_version":"10","extensions":[],"release_stage":"released","identifier":"SUSE-Linux-Enterprise-SDK-i386","id":1170,"recommended":false,"version":"10","name":"SUSE Linux Enterprise Software Development Kit","offline_predecessor_ids":[],"friendly_name":"SUSE Linux Enterprise Software Development Kit 10 i386","migration_extra":false,"release_type":null,"former_identifier":"SUSE-Linux-Enterprise-SDK-i386"}],"description":null,"shortname":null,"free":false,"arch":"i386","eula_url":"","product_class":"7260","online_predecessor_ids":[],"repositories":[{"installer_updates":false,"name":"SLED10-SP2-Online","description":"SLED10-SP2-Online for sled-10-i586","enabled":true,"id":860,"distro_target":"sled-10-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLED10-SP2-Online/sled-10-i586/"}],"predecessor_ids":[],"cpe":null,"product_type":"base"},{"product_type":"base","cpe":null,"online_predecessor_ids":[],"product_class":"7260","repositories":[{"description":"SLED10-SP2-Online for sled-10-i586","installer_updates":false,"name":"SLED10-SP2-Online","distro_target":"sled-10-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLED10-SP2-Online/sled-10-i586/","enabled":true,"id":860},{"enabled":true,"id":863,"distro_target":"sled-10-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLED10-SP2-Updates/sled-10-i586/","installer_updates":false,"name":"SLED10-SP2-Updates","description":"SLED10-SP2-Updates for sled-10-i586"},{"name":"SLE10-SP2-Debuginfo-Updates","installer_updates":false,"description":"SLE10-SP2-Debuginfo-Updates for sled-10-i586","id":864,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP2-Debuginfo-Updates/sled-10-i586/","autorefresh":true,"distro_target":"sled-10-i586"}],"predecessor_ids":[],"arch":"i586","eula_url":"","free":false,"description":null,"shortname":null,"release_stage":"released","identifier":"SUSE-Linux-Enterprise-Desktop-SP2","id":872,"extensions":[],"friendly_version":"10 SP2","release_type":"online","former_identifier":"SUSE-Linux-Enterprise-Desktop-SP2","migration_extra":false,"friendly_name":"SUSE Linux Enterprise Desktop 10 SP2 online i586","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Desktop","version":"10","recommended":false},{"online_predecessor_ids":[],"product_class":"7260","repositories":[{"enabled":true,"id":860,"autorefresh":true,"distro_target":"sled-10-i586","url":"https://updates.suse.com/repo/$RCE/SLED10-SP2-Online/sled-10-i586/","name":"SLED10-SP2-Online","installer_updates":false,"description":"SLED10-SP2-Online for sled-10-i586"},{"enabled":true,"id":863,"distro_target":"sled-10-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLED10-SP2-Updates/sled-10-i586/","installer_updates":false,"name":"SLED10-SP2-Updates","description":"SLED10-SP2-Updates for sled-10-i586"},{"description":"SLE10-SP2-Debuginfo-Updates for sled-10-i586","installer_updates":false,"name":"SLE10-SP2-Debuginfo-Updates","distro_target":"sled-10-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP2-Debuginfo-Updates/sled-10-i586/","enabled":false,"id":864}],"predecessor_ids":[],"cpe":null,"product_type":"base","shortname":null,"description":null,"free":false,"arch":"i486","eula_url":"","friendly_version":"10 SP2","release_stage":"released","identifier":"SUSE-Linux-Enterprise-Desktop-SP2","id":873,"extensions":[],"version":"10","recommended":false,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Desktop 10 SP2 online i486","former_identifier":"SUSE-Linux-Enterprise-Desktop-SP2","release_type":"online","name":"SUSE Linux Enterprise Desktop","offline_predecessor_ids":[]},{"product_type":"base","cpe":null,"predecessor_ids":[],"online_predecessor_ids":[],"repositories":[{"enabled":true,"id":860,"distro_target":"sled-10-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLED10-SP2-Online/sled-10-i586/","installer_updates":false,"name":"SLED10-SP2-Online","description":"SLED10-SP2-Online for sled-10-i586"},{"distro_target":"sled-10-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLED10-SP2-Updates/sled-10-i586/","enabled":true,"id":863,"description":"SLED10-SP2-Updates for sled-10-i586","installer_updates":false,"name":"SLED10-SP2-Updates"},{"autorefresh":true,"distro_target":"sled-10-i586","url":"https://updates.suse.com/repo/$RCE/SLE10-SP2-Debuginfo-Updates/sled-10-i586/","enabled":false,"id":864,"description":"SLE10-SP2-Debuginfo-Updates for sled-10-i586","name":"SLE10-SP2-Debuginfo-Updates","installer_updates":false}],"product_class":"7260","eula_url":"","arch":"i386","free":false,"description":null,"shortname":null,"extensions":[],"id":874,"release_stage":"released","identifier":"SUSE-Linux-Enterprise-Desktop-SP2","friendly_version":"10 SP2","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Desktop","former_identifier":"SUSE-Linux-Enterprise-Desktop-SP2","release_type":"online","migration_extra":false,"friendly_name":"SUSE Linux Enterprise Desktop 10 SP2 online i386","recommended":false,"version":"10"},{"repositories":[{"installer_updates":false,"name":"SLED10-SP3-Online","description":"SLED10-SP3-Online for sled-10-i586","id":894,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLED10-SP3-Online/sled-10-i586/","distro_target":"sled-10-i586","autorefresh":true}],"online_predecessor_ids":[],"product_class":"7260","predecessor_ids":[],"cpe":null,"product_type":"base","shortname":null,"description":null,"free":false,"arch":"i586","eula_url":"","friendly_version":"10","release_stage":"released","identifier":"SUSE-Linux-Enterprise-Desktop-SP3-migration","id":875,"extensions":[],"version":"10","recommended":false,"friendly_name":"SUSE Linux Enterprise Desktop 10 i586 (Migration)","migration_extra":false,"release_type":null,"former_identifier":"SUSE-Linux-Enterprise-Desktop-SP3-migration","name":"SUSE Linux Enterprise Desktop","offline_predecessor_ids":[]},{"eula_url":"","arch":"i386","free":false,"description":null,"shortname":null,"product_type":"base","cpe":null,"predecessor_ids":[],"online_predecessor_ids":[],"product_class":"7260","repositories":[{"id":894,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLED10-SP3-Online/sled-10-i586/","distro_target":"sled-10-i586","autorefresh":true,"installer_updates":false,"name":"SLED10-SP3-Online","description":"SLED10-SP3-Online for sled-10-i586"},{"name":"SLE10-SP3-Debuginfo-Pool","installer_updates":false,"description":"SLE10-SP3-Debuginfo-Pool for sled-10-i586","enabled":false,"id":895,"autorefresh":false,"distro_target":"sled-10-i586","url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Pool/sled-10-i586/"},{"url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Updates/sled-10-i586/","autorefresh":true,"distro_target":"sled-10-i586","id":896,"enabled":false,"description":"SLE10-SP3-Debuginfo-Updates for sled-10-i586","name":"SLE10-SP3-Debuginfo-Updates","installer_updates":false},{"distro_target":"sled-10-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLED10-SP3-Updates/sled-10-i586/","enabled":true,"id":897,"description":"SLED10-SP3-Updates for sled-10-i586","installer_updates":false,"name":"SLED10-SP3-Updates"},{"id":898,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLED10-SP3-Pool/sled-10-i586/","autorefresh":false,"distro_target":"sled-10-i586","name":"SLED10-SP3-Pool","installer_updates":false,"description":"SLED10-SP3-Pool for sled-10-i586"},{"description":"SLE10-SP3-Debuginfo-Online for sled-10-i586","name":"SLE10-SP3-Debuginfo-Online","installer_updates":false,"autorefresh":true,"distro_target":"sled-10-i586","url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Online/sled-10-i586/","enabled":false,"id":899}],"offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Desktop","former_identifier":"SUSE-Linux-Enterprise-Desktop-SP3","release_type":"online","friendly_name":"SUSE Linux Enterprise Desktop 10 SP3 online i386","migration_extra":false,"recommended":false,"version":"10","extensions":[],"release_stage":"released","id":876,"identifier":"SUSE-Linux-Enterprise-Desktop-SP3","friendly_version":"10 SP3"},{"free":false,"description":null,"shortname":null,"arch":"i586","eula_url":"","online_predecessor_ids":[],"product_class":"7260","repositories":[{"installer_updates":false,"name":"SLED11-SP1-Pool","description":"SLED11-SP1-Pool for sle-11-i586","id":852,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLED11-SP1-Pool/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true},{"id":853,"enabled":true,"url":"http://download.nvidia.com/novell/sle11sp1/","autorefresh":true,"distro_target":null,"name":"nVidia-Driver-SLE11-SP1","installer_updates":false,"description":"nVidia-Driver-SLE11-SP1"}],"predecessor_ids":[],"product_type":"base","cpe":null,"version":"11","recommended":false,"release_type":null,"former_identifier":"SUSE_SLED-SP1-migration","friendly_name":"SUSE Linux Enterprise Desktop 11 i586 (Migration)","migration_extra":false,"offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Desktop","friendly_version":"11","release_stage":"released","identifier":"SUSE_SLED-SP1-migration","id":877,"extensions":[]},{"eula_url":"","arch":"x86_64","free":false,"shortname":null,"description":null,"product_type":"base","cpe":null,"predecessor_ids":[],"online_predecessor_ids":[],"product_class":"7260","repositories":[{"id":900,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLED10-SP4-Online/sled-10-x86_64/","distro_target":"sled-10-x86_64","autorefresh":true,"installer_updates":false,"name":"SLED10-SP4-Online","description":"SLED10-SP4-Online for sled-10-x86_64"}],"offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Desktop","former_identifier":"SUSE-Linux-Enterprise-Desktop-SP4-migration","release_type":null,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Desktop 10 x86_64 (Migration)","recommended":false,"version":"10","extensions":[{"identifier":"SUSE-Linux-Enterprise-SDK-DVD-x86_64","release_stage":"released","id":1169,"extensions":[],"friendly_version":"10","friendly_name":"SUSE Linux Enterprise Software Development Kit 10 x86_64","migration_extra":false,"former_identifier":"SUSE-Linux-Enterprise-SDK-DVD-x86_64","release_type":null,"name":"SUSE Linux Enterprise Software Development Kit","offline_predecessor_ids":[],"version":"10","recommended":false,"cpe":null,"product_type":"extension","repositories":[{"description":"SLE10-SDK-Updates for sled-10-x86_64","installer_updates":false,"name":"SLE10-SDK-Updates","distro_target":"sled-10-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-Updates/sled-10-x86_64/","enabled":true,"id":1292},{"installer_updates":false,"name":"SLE10-SDK-Updates","description":"SLE10-SDK-Updates for sles-10-x86_64","enabled":true,"id":1293,"distro_target":"sles-10-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-Updates/sles-10-x86_64/"}],"online_predecessor_ids":[],"product_class":"SLE-SDK","predecessor_ids":[],"arch":"x86_64","eula_url":"","description":null,"shortname":null,"free":true},{"cpe":null,"product_type":"extension","product_class":"SLE-SDK","online_predecessor_ids":[],"repositories":[{"enabled":true,"id":1292,"autorefresh":true,"distro_target":"sled-10-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-Updates/sled-10-x86_64/","name":"SLE10-SDK-Updates","installer_updates":false,"description":"SLE10-SDK-Updates for sled-10-x86_64"},{"installer_updates":false,"name":"SLE10-SDK-Updates","description":"SLE10-SDK-Updates for sles-10-x86_64","enabled":true,"id":1293,"distro_target":"sles-10-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-Updates/sles-10-x86_64/"}],"predecessor_ids":[],"arch":"x86_64","eula_url":"","description":null,"shortname":null,"free":true,"release_stage":"released","identifier":"SUSE-Linux-Enterprise-SDK-x86_64","id":1183,"extensions":[],"friendly_version":"10","friendly_name":"SUSE Linux Enterprise Software Development Kit 10 x86_64","migration_extra":false,"former_identifier":"SUSE-Linux-Enterprise-SDK-x86_64","release_type":null,"name":"SUSE Linux Enterprise Software Development Kit","offline_predecessor_ids":[],"version":"10","recommended":false}],"id":878,"release_stage":"released","identifier":"SUSE-Linux-Enterprise-Desktop-SP4-migration","friendly_version":"10"},{"predecessor_ids":[],"online_predecessor_ids":[],"repositories":[{"distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Pool/sle-11-i586/","enabled":false,"id":680,"description":"SLE11-SP1-Debuginfo-Pool for sle-11-i586","installer_updates":false,"name":"SLE11-SP1-Debuginfo-Pool"},{"description":"SLE11-SP1-Debuginfo-Updates for sle-11-i586","installer_updates":false,"name":"SLE11-SP1-Debuginfo-Updates","url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Updates/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true,"id":682,"enabled":false},{"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-Debuginfo-Core/sle-11-i586/","enabled":false,"id":717,"description":"SLE11-SP2-Debuginfo-Core for sle-11-i586","name":"SLE11-SP2-Debuginfo-Core","installer_updates":false},{"distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-Debuginfo-Updates/sle-11-i586/","enabled":false,"id":719,"description":"SLE11-SP2-Debuginfo-Updates for sle-11-i586","installer_updates":false,"name":"SLE11-SP2-Debuginfo-Updates"},{"id":846,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLED11-Extras/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true,"installer_updates":false,"name":"SLED11-Extras","description":"SLED11-Extras for sle-11-i586"},{"description":"SLED11-SP1-Updates for sle-11-i586","name":"SLED11-SP1-Updates","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLED11-SP1-Updates/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","id":851,"enabled":true},{"url":"https://updates.suse.com/repo/$RCE/SLED11-SP1-Pool/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true,"id":852,"enabled":true,"description":"SLED11-SP1-Pool for sle-11-i586","installer_updates":false,"name":"SLED11-SP1-Pool"},{"description":"SLED11-SP2-Core for sle-11-i586","installer_updates":false,"name":"SLED11-SP2-Core","distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLED11-SP2-Core/sle-11-i586/","enabled":true,"id":856},{"installer_updates":false,"name":"SLED11-SP2-Updates","description":"SLED11-SP2-Updates for sle-11-i586","enabled":true,"id":857,"distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLED11-SP2-Updates/sle-11-i586/"}],"product_class":"7260","product_type":"base","cpe":null,"free":false,"shortname":null,"description":null,"eula_url":"","arch":"i386","friendly_version":"11 SP2","extensions":[],"identifier":"SUSE_SLED","release_stage":"released","id":879,"recommended":false,"version":"11.2","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Desktop","release_type":null,"former_identifier":"SUSE_SLED","migration_extra":false,"friendly_name":"SUSE Linux Enterprise Desktop 11 SP2 i386"},{"extensions":[],"release_stage":"released","id":880,"identifier":"SUSE_SLED-SP2-migration","friendly_version":"11 SP1","name":"SUSE Linux Enterprise Desktop","offline_predecessor_ids":[],"friendly_name":"SUSE Linux Enterprise Desktop 11 SP1 i486 (Migration)","migration_extra":false,"release_type":null,"former_identifier":"SUSE_SLED-SP2-migration","recommended":false,"version":"11.1","cpe":null,"product_type":"base","predecessor_ids":[],"product_class":"7260","online_predecessor_ids":[],"repositories":[{"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Pool/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","id":680,"enabled":false,"description":"SLE11-SP1-Debuginfo-Pool for sle-11-i586","name":"SLE11-SP1-Debuginfo-Pool","installer_updates":false},{"description":"SLE11-SP1-Debuginfo-Updates for sle-11-i586","name":"SLE11-SP1-Debuginfo-Updates","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Updates/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","id":682,"enabled":false},{"description":"SLE11-SP2-Debuginfo-Core for sle-11-i586","name":"SLE11-SP2-Debuginfo-Core","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-Debuginfo-Core/sle-11-i586/","enabled":false,"id":717},{"name":"SLE11-SP2-Debuginfo-Updates","installer_updates":false,"description":"SLE11-SP2-Debuginfo-Updates for sle-11-i586","enabled":false,"id":719,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-Debuginfo-Updates/sle-11-i586/"},{"url":"https://updates.suse.com/repo/$RCE/SLED11-SP2-Core/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","id":856,"enabled":true,"description":"SLED11-SP2-Core for sle-11-i586","name":"SLED11-SP2-Core","installer_updates":false},{"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLED11-SP2-Updates/sle-11-i586/","enabled":true,"id":857,"description":"SLED11-SP2-Updates for sle-11-i586","name":"SLED11-SP2-Updates","installer_updates":false},{"enabled":true,"id":885,"autorefresh":true,"distro_target":null,"url":"http://download.nvidia.com/novell/sle11sp2/","name":"nVidia-Driver-SLE11-SP2","installer_updates":false,"description":"nVidia-Driver-SLE11-SP2"}],"eula_url":"","arch":"i486","description":null,"shortname":null,"free":false},{"arch":"x86_64","eula_url":"","description":null,"shortname":null,"free":false,"cpe":null,"product_type":"base","online_predecessor_ids":[],"repositories":[{"distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLED11-SP2-Updates/sle-11-x86_64/","enabled":false,"id":886,"description":"SLED11-SP2-Updates for sle-11-x86_64","installer_updates":false,"name":"SLED11-SP2-Updates"},{"description":"SLED11-SP2-Core for sle-11-x86_64","name":"SLED11-SP2-Core","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLED11-SP2-Core/sle-11-x86_64/","enabled":false,"id":887},{"id":889,"enabled":true,"url":"http://download.nvidia.com/novell/sle11sp3/","distro_target":null,"autorefresh":true,"installer_updates":false,"name":"nVidia-Driver-SLE11-SP3","description":"nVidia-Driver-SLE11-SP3"},{"installer_updates":false,"name":"SLED11-SP3-Pool","description":"SLED11-SP3-Pool for sle-11-x86_64","id":901,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLED11-SP3-Pool/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true},{"url":"https://updates.suse.com/repo/$RCE/SLED11-SP1-Updates/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64","id":902,"enabled":false,"description":"SLED11-SP1-Updates for sle-11-x86_64","name":"SLED11-SP1-Updates","installer_updates":false},{"id":903,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLED11-Extras/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64","name":"SLED11-Extras","installer_updates":false,"description":"SLED11-Extras for sle-11-x86_64"},{"url":"https://updates.suse.com/repo/$RCE/SLED11-SP3-Updates/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64","id":904,"enabled":true,"description":"SLED11-SP3-Updates for sle-11-x86_64","name":"SLED11-SP3-Updates","installer_updates":false},{"enabled":false,"id":905,"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLED11-SP1-Pool/sle-11-x86_64/","name":"SLED11-SP1-Pool","installer_updates":false,"description":"SLED11-SP1-Pool for sle-11-x86_64"}],"product_class":"7260","predecessor_ids":[],"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Desktop 11 SP2 x86_64 (Migration)","release_type":null,"former_identifier":"SUSE_SLED-SP3-migration","name":"SUSE Linux Enterprise Desktop","offline_predecessor_ids":[],"version":"11.2","recommended":false,"id":881,"release_stage":"released","identifier":"SUSE_SLED-SP3-migration","extensions":[],"friendly_version":"11 SP2"},{"cpe":null,"product_type":"base","predecessor_ids":[],"repositories":[{"name":"SLED10-Updates","installer_updates":false,"description":"SLED10-Updates for sled-10-i586","enabled":true,"id":858,"autorefresh":true,"distro_target":"sled-10-i586","url":"https://updates.suse.com/repo/$RCE/SLED10-Updates/sled-10-i586/"},{"url":"https://updates.suse.com/repo/$RCE/SLE10-Debuginfo-Updates/sled-10-i586/","distro_target":"sled-10-i586","autorefresh":true,"id":859,"enabled":false,"description":"SLE10-Debuginfo-Updates for sled-10-i586","installer_updates":false,"name":"SLE10-Debuginfo-Updates"}],"online_predecessor_ids":[],"product_class":"7260","eula_url":"","arch":"i586","description":null,"shortname":null,"free":false,"extensions":[],"release_stage":"released","identifier":"SUSE-Linux-Enterprise-Desktop-i386","id":882,"friendly_version":"10","name":"SUSE Linux Enterprise Desktop","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Desktop 10 i586","release_type":null,"former_identifier":"SUSE-Linux-Enterprise-Desktop-i386","recommended":false,"version":"10"},{"recommended":false,"version":"10","name":"SUSE Linux Enterprise Desktop","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Desktop 10 SP1 i386","former_identifier":"SUSE-Linux-Enterprise-Desktop-SP1","release_type":null,"friendly_version":"10 SP1","extensions":[],"identifier":"SUSE-Linux-Enterprise-Desktop-SP1","release_stage":"released","id":883,"description":null,"shortname":null,"free":false,"eula_url":"","arch":"i386","predecessor_ids":[],"product_class":"7260","online_predecessor_ids":[],"repositories":[{"installer_updates":false,"name":"SLED10-SP1-Updates","description":"SLED10-SP1-Updates for sled-10-i586","enabled":true,"id":843,"distro_target":"sled-10-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLED10-SP1-Updates/sled-10-i586/"},{"distro_target":"sled-10-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLED10-SP1-Online/sled-10-i586/","enabled":true,"id":844,"description":"SLED10-SP1-Online for sled-10-i586","installer_updates":false,"name":"SLED10-SP1-Online"},{"url":"https://updates.suse.com/repo/$RCE/SLE10-SP1-Debuginfo-Updates/sled-10-i586/","distro_target":"sled-10-i586","autorefresh":true,"id":845,"enabled":false,"description":"SLE10-SP1-Debuginfo-Updates for sled-10-i586","installer_updates":false,"name":"SLE10-SP1-Debuginfo-Updates"}],"cpe":null,"product_type":"base"},{"free":false,"shortname":null,"description":null,"eula_url":"","arch":"i586","predecessor_ids":[],"repositories":[{"autorefresh":true,"distro_target":"sled-10-i586","url":"https://updates.suse.com/repo/$RCE/SLED10-SP1-Updates/sled-10-i586/","enabled":true,"id":843,"description":"SLED10-SP1-Updates for sled-10-i586","name":"SLED10-SP1-Updates","installer_updates":false},{"url":"https://updates.suse.com/repo/$RCE/SLED10-SP1-Online/sled-10-i586/","distro_target":"sled-10-i586","autorefresh":true,"id":844,"enabled":true,"description":"SLED10-SP1-Online for sled-10-i586","installer_updates":false,"name":"SLED10-SP1-Online"},{"enabled":false,"id":845,"distro_target":"sled-10-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP1-Debuginfo-Updates/sled-10-i586/","installer_updates":false,"name":"SLE10-SP1-Debuginfo-Updates","description":"SLE10-SP1-Debuginfo-Updates for sled-10-i586"}],"online_predecessor_ids":[],"product_class":"7260","product_type":"base","cpe":null,"recommended":false,"version":"10","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Desktop","release_type":"online","former_identifier":"SUSE-Linux-Enterprise-Desktop-SP1","friendly_name":"SUSE Linux Enterprise Desktop 10 SP1 online i586","migration_extra":false,"friendly_version":"10 SP1","extensions":[],"release_stage":"released","identifier":"SUSE-Linux-Enterprise-Desktop-SP1","id":884},{"online_predecessor_ids":[],"product_class":"7260","repositories":[{"name":"SLED10-SP2-Online","installer_updates":false,"description":"SLED10-SP2-Online for sled-10-i586","enabled":false,"id":860,"autorefresh":true,"distro_target":"sled-10-i586","url":"https://updates.suse.com/repo/$RCE/SLED10-SP2-Online/sled-10-i586/"},{"distro_target":"sled-10-i586","autorefresh":false,"url":"https://updates.suse.com/repo/$RCE/SLED10-SP2-Pool/sled-10-i586/","enabled":true,"id":862,"description":"SLED10-SP2-Pool for sled-10-i586","installer_updates":false,"name":"SLED10-SP2-Pool"},{"description":"SLED10-SP2-Updates for sled-10-i586","name":"SLED10-SP2-Updates","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLED10-SP2-Updates/sled-10-i586/","autorefresh":true,"distro_target":"sled-10-i586","id":863,"enabled":true},{"autorefresh":true,"distro_target":"sled-10-i586","url":"https://updates.suse.com/repo/$RCE/SLE10-SP2-Debuginfo-Updates/sled-10-i586/","enabled":false,"id":864,"description":"SLE10-SP2-Debuginfo-Updates for sled-10-i586","name":"SLE10-SP2-Debuginfo-Updates","installer_updates":false}],"predecessor_ids":[],"product_type":"base","cpe":null,"free":false,"shortname":null,"description":null,"arch":"i386","eula_url":"","friendly_version":"10 SP2","release_stage":"released","id":885,"identifier":"SUSE-Linux-Enterprise-Desktop-SP2","extensions":[],"version":"10","recommended":false,"former_identifier":"SUSE-Linux-Enterprise-Desktop-SP2","release_type":null,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Desktop 10 SP2 i386","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Desktop"},{"eula_url":"","arch":"i686","description":null,"shortname":null,"free":false,"cpe":null,"product_type":"base","predecessor_ids":[],"repositories":[{"name":"SLED10-SP2-Online","installer_updates":false,"description":"SLED10-SP2-Online for sled-10-i586","enabled":true,"id":860,"autorefresh":true,"distro_target":"sled-10-i586","url":"https://updates.suse.com/repo/$RCE/SLED10-SP2-Online/sled-10-i586/"},{"description":"SLED10-SP2-Updates for sled-10-i586","name":"SLED10-SP2-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sled-10-i586","url":"https://updates.suse.com/repo/$RCE/SLED10-SP2-Updates/sled-10-i586/","enabled":true,"id":863},{"installer_updates":false,"name":"SLE10-SP2-Debuginfo-Updates","description":"SLE10-SP2-Debuginfo-Updates for sled-10-i586","id":864,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP2-Debuginfo-Updates/sled-10-i586/","distro_target":"sled-10-i586","autorefresh":true}],"online_predecessor_ids":[],"product_class":"7260","name":"SUSE Linux Enterprise Desktop","offline_predecessor_ids":[],"friendly_name":"SUSE Linux Enterprise Desktop 10 SP2 online i686","migration_extra":false,"former_identifier":"SUSE-Linux-Enterprise-Desktop-SP2","release_type":"online","recommended":false,"version":"10","extensions":[],"identifier":"SUSE-Linux-Enterprise-Desktop-SP2","release_stage":"released","id":886,"friendly_version":"10 SP2"},{"friendly_name":"SUSE Linux Enterprise Desktop 11 SP1 x86_64","migration_extra":false,"former_identifier":"SUSE_SLED","release_type":null,"name":"SUSE Linux Enterprise Desktop","offline_predecessor_ids":[],"version":"11.1","recommended":false,"identifier":"SUSE_SLED","release_stage":"released","id":887,"extensions":[],"friendly_version":"11 SP1","arch":"x86_64","eula_url":"","description":null,"shortname":null,"free":false,"cpe":null,"product_type":"base","product_class":"7260","online_predecessor_ids":[],"repositories":[{"description":"SLE11-SP1-Debuginfo-Pool for sle-11-x86_64","installer_updates":false,"name":"SLE11-SP1-Debuginfo-Pool","url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Pool/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true,"id":707,"enabled":false},{"installer_updates":false,"name":"SLE11-SP1-Debuginfo-Updates","description":"SLE11-SP1-Debuginfo-Updates for sle-11-x86_64","id":715,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Updates/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true},{"installer_updates":false,"name":"SLE-Likewise-5.3-Updates","description":"SLE-Likewise-5.3-Updates for sle-11-i586","id":847,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE-Likewise-5.3-Updates/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true},{"installer_updates":false,"name":"SLE-Likewise-5.3-Updates","description":"SLE-Likewise-5.3-Updates for sle-11-x86_64","enabled":false,"id":850,"distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE-Likewise-5.3-Updates/sle-11-x86_64/"},{"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLED11-SP1-Updates/sle-11-x86_64/","enabled":true,"id":902,"description":"SLED11-SP1-Updates for sle-11-x86_64","name":"SLED11-SP1-Updates","installer_updates":false},{"enabled":false,"id":903,"distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLED11-Extras/sle-11-x86_64/","installer_updates":false,"name":"SLED11-Extras","description":"SLED11-Extras for sle-11-x86_64"},{"name":"SLED11-SP1-Pool","installer_updates":false,"description":"SLED11-SP1-Pool for sle-11-x86_64","enabled":true,"id":905,"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLED11-SP1-Pool/sle-11-x86_64/"}],"predecessor_ids":[]},{"former_identifier":"SUSE_SLED-SP1-migration","release_type":null,"friendly_name":"SUSE Linux Enterprise Desktop 11 i686 (Migration)","migration_extra":false,"offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Desktop","version":"11","recommended":false,"release_stage":"released","id":888,"identifier":"SUSE_SLED-SP1-migration","extensions":[],"friendly_version":"11","arch":"i686","eula_url":"","free":false,"shortname":null,"description":null,"product_type":"base","cpe":null,"online_predecessor_ids":[],"repositories":[{"distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLED11-SP1-Pool/sle-11-i586/","enabled":true,"id":852,"description":"SLED11-SP1-Pool for sle-11-i586","installer_updates":false,"name":"SLED11-SP1-Pool"},{"autorefresh":true,"distro_target":null,"url":"http://download.nvidia.com/novell/sle11sp1/","enabled":true,"id":853,"description":"nVidia-Driver-SLE11-SP1","name":"nVidia-Driver-SLE11-SP1","installer_updates":false}],"product_class":"7260","predecessor_ids":[]},{"version":"10","recommended":false,"release_type":null,"former_identifier":"SUSE-Linux-Enterprise-Desktop-SP4","migration_extra":false,"friendly_name":"SUSE Linux Enterprise Desktop 10 SP4 i686","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Desktop","friendly_version":"10 SP4","release_stage":"released","identifier":"SUSE-Linux-Enterprise-Desktop-SP4","id":889,"extensions":[],"free":false,"shortname":null,"description":null,"arch":"i686","eula_url":"","repositories":[{"description":"SLE10-SP4-Debuginfo-Pool for sled-10-i586","name":"SLE10-SP4-Debuginfo-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sled-10-i586","url":"https://updates.suse.com/repo/$RCE/SLE10-SP4-Debuginfo-Pool/sled-10-i586/","enabled":false,"id":874},{"description":"SLE10-SP4-Debuginfo-Updates for sled-10-i586","name":"SLE10-SP4-Debuginfo-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sled-10-i586","url":"https://updates.suse.com/repo/$RCE/SLE10-SP4-Debuginfo-Updates/sled-10-i586/","enabled":false,"id":875},{"description":"SLED10-GPLv3-Extras for sled-10-i586","name":"SLED10-GPLv3-Extras","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLED10-GPLv3-Extras/sled-10-i586/","autorefresh":true,"distro_target":"sled-10-i586","id":876,"enabled":false},{"name":"SLED10-SP4-Pool","installer_updates":false,"description":"SLED10-SP4-Pool for sled-10-i586","id":877,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLED10-SP4-Pool/sled-10-i586/","autorefresh":false,"distro_target":"sled-10-i586"},{"enabled":true,"id":878,"distro_target":"sled-10-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLED10-SP4-Updates/sled-10-i586/","installer_updates":false,"name":"SLED10-SP4-Updates","description":"SLED10-SP4-Updates for sled-10-i586"}],"online_predecessor_ids":[],"product_class":"7260","predecessor_ids":[],"product_type":"base","cpe":null},{"friendly_version":"11 SP1","extensions":[],"release_stage":"released","id":890,"identifier":"SUSE_SLED-SP2-migration","recommended":false,"version":"11.1","name":"SUSE Linux Enterprise Desktop","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Desktop 11 SP1 i686 (Migration)","former_identifier":"SUSE_SLED-SP2-migration","release_type":null,"predecessor_ids":[],"repositories":[{"enabled":false,"id":680,"distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Pool/sle-11-i586/","installer_updates":false,"name":"SLE11-SP1-Debuginfo-Pool","description":"SLE11-SP1-Debuginfo-Pool for sle-11-i586"},{"description":"SLE11-SP1-Debuginfo-Updates for sle-11-i586","name":"SLE11-SP1-Debuginfo-Updates","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Updates/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","id":682,"enabled":false},{"description":"SLE11-SP2-Debuginfo-Core for sle-11-i586","name":"SLE11-SP2-Debuginfo-Core","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-Debuginfo-Core/sle-11-i586/","enabled":false,"id":717},{"description":"SLE11-SP2-Debuginfo-Updates for sle-11-i586","name":"SLE11-SP2-Debuginfo-Updates","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-Debuginfo-Updates/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","id":719,"enabled":false},{"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLED11-SP2-Core/sle-11-i586/","enabled":true,"id":856,"description":"SLED11-SP2-Core for sle-11-i586","name":"SLED11-SP2-Core","installer_updates":false},{"name":"SLED11-SP2-Updates","installer_updates":false,"description":"SLED11-SP2-Updates for sle-11-i586","enabled":true,"id":857,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLED11-SP2-Updates/sle-11-i586/"},{"installer_updates":false,"name":"nVidia-Driver-SLE11-SP2","description":"nVidia-Driver-SLE11-SP2","id":885,"enabled":true,"url":"http://download.nvidia.com/novell/sle11sp2/","distro_target":null,"autorefresh":true}],"online_predecessor_ids":[],"product_class":"7260","cpe":null,"product_type":"base","shortname":null,"description":null,"free":false,"eula_url":"","arch":"i686"},{"friendly_version":"11 SP1","extensions":[],"identifier":"SUSE_SLED-SP2-migration","release_stage":"released","id":891,"recommended":false,"version":"11.1","name":"SUSE Linux Enterprise Desktop","offline_predecessor_ids":[],"friendly_name":"SUSE Linux Enterprise Desktop 11 SP1 i386 (Migration)","migration_extra":false,"release_type":null,"former_identifier":"SUSE_SLED-SP2-migration","predecessor_ids":[],"online_predecessor_ids":[],"repositories":[{"installer_updates":false,"name":"SLE11-SP1-Debuginfo-Pool","description":"SLE11-SP1-Debuginfo-Pool for sle-11-i586","id":680,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Pool/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true},{"name":"SLE11-SP1-Debuginfo-Updates","installer_updates":false,"description":"SLE11-SP1-Debuginfo-Updates for sle-11-i586","enabled":false,"id":682,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Updates/sle-11-i586/"},{"installer_updates":false,"name":"SLE11-SP2-Debuginfo-Core","description":"SLE11-SP2-Debuginfo-Core for sle-11-i586","id":717,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-Debuginfo-Core/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true},{"name":"SLE11-SP2-Debuginfo-Updates","installer_updates":false,"description":"SLE11-SP2-Debuginfo-Updates for sle-11-i586","id":719,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-Debuginfo-Updates/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586"},{"description":"SLED11-SP2-Core for sle-11-i586","installer_updates":false,"name":"SLED11-SP2-Core","distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLED11-SP2-Core/sle-11-i586/","enabled":true,"id":856},{"installer_updates":false,"name":"SLED11-SP2-Updates","description":"SLED11-SP2-Updates for sle-11-i586","id":857,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLED11-SP2-Updates/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true},{"distro_target":null,"autorefresh":true,"url":"http://download.nvidia.com/novell/sle11sp2/","enabled":true,"id":885,"description":"nVidia-Driver-SLE11-SP2","installer_updates":false,"name":"nVidia-Driver-SLE11-SP2"}],"product_class":"7260","cpe":null,"product_type":"base","description":null,"shortname":null,"free":false,"eula_url":"","arch":"i386"},{"product_class":"7260","online_predecessor_ids":[],"repositories":[{"name":"SLE11-SP1-Debuginfo-Pool","installer_updates":false,"description":"SLE11-SP1-Debuginfo-Pool for sle-11-i586","id":680,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Pool/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586"},{"enabled":false,"id":682,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Updates/sle-11-i586/","name":"SLE11-SP1-Debuginfo-Updates","installer_updates":false,"description":"SLE11-SP1-Debuginfo-Updates for sle-11-i586"},{"name":"SLE11-SP2-Debuginfo-Core","installer_updates":false,"description":"SLE11-SP2-Debuginfo-Core for sle-11-i586","id":717,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-Debuginfo-Core/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586"},{"description":"SLE11-SP2-Debuginfo-Updates for sle-11-i586","installer_updates":false,"name":"SLE11-SP2-Debuginfo-Updates","url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-Debuginfo-Updates/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true,"id":719,"enabled":false},{"name":"SLE11-SP3-Debuginfo-Updates","installer_updates":false,"description":"SLE11-SP3-Debuginfo-Updates for sle-11-i586","enabled":false,"id":759,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-SP3-Debuginfo-Updates/sle-11-i586/"},{"installer_updates":false,"name":"SLE11-SP3-Debuginfo-Pool","description":"SLE11-SP3-Debuginfo-Pool for sle-11-i586","id":763,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP3-Debuginfo-Pool/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true},{"installer_updates":false,"name":"SLED11-Extras","description":"SLED11-Extras for sle-11-i586","id":846,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLED11-Extras/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true},{"id":851,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLED11-SP1-Updates/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","name":"SLED11-SP1-Updates","installer_updates":false,"description":"SLED11-SP1-Updates for sle-11-i586"},{"installer_updates":false,"name":"SLED11-SP1-Pool","description":"SLED11-SP1-Pool for sle-11-i586","id":852,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLED11-SP1-Pool/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true},{"name":"SLED11-SP2-Core","installer_updates":false,"description":"SLED11-SP2-Core for sle-11-i586","id":856,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLED11-SP2-Core/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586"},{"name":"SLED11-SP2-Updates","installer_updates":false,"description":"SLED11-SP2-Updates for sle-11-i586","id":857,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLED11-SP2-Updates/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586"},{"description":"SLED11-SP3-Updates for sle-11-i586","installer_updates":false,"name":"SLED11-SP3-Updates","url":"https://updates.suse.com/repo/$RCE/SLED11-SP3-Updates/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true,"id":890,"enabled":true},{"description":"SLED11-SP3-Pool for sle-11-i586","installer_updates":false,"name":"SLED11-SP3-Pool","distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLED11-SP3-Pool/sle-11-i586/","enabled":true,"id":891}],"predecessor_ids":[],"cpe":null,"product_type":"base","shortname":null,"description":null,"free":false,"arch":"i586","eula_url":"","friendly_version":"11 SP3","release_stage":"released","id":892,"identifier":"SUSE_SLED","extensions":[],"version":"11.3","recommended":false,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Desktop 11 SP3 i586","release_type":null,"former_identifier":"SUSE_SLED","name":"SUSE Linux Enterprise Desktop","offline_predecessor_ids":[]},{"version":"11.3","recommended":false,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Desktop 11 SP3 i386","former_identifier":"SUSE_SLED","release_type":null,"name":"SUSE Linux Enterprise Desktop","offline_predecessor_ids":[],"friendly_version":"11 SP3","release_stage":"released","identifier":"SUSE_SLED","id":893,"extensions":[],"shortname":null,"description":null,"free":false,"arch":"i386","eula_url":"","product_class":"7260","online_predecessor_ids":[],"repositories":[{"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Pool/sle-11-i586/","enabled":false,"id":680,"description":"SLE11-SP1-Debuginfo-Pool for sle-11-i586","name":"SLE11-SP1-Debuginfo-Pool","installer_updates":false},{"name":"SLE11-SP1-Debuginfo-Updates","installer_updates":false,"description":"SLE11-SP1-Debuginfo-Updates for sle-11-i586","enabled":false,"id":682,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Updates/sle-11-i586/"},{"enabled":false,"id":717,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-Debuginfo-Core/sle-11-i586/","name":"SLE11-SP2-Debuginfo-Core","installer_updates":false,"description":"SLE11-SP2-Debuginfo-Core for sle-11-i586"},{"enabled":false,"id":719,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-Debuginfo-Updates/sle-11-i586/","name":"SLE11-SP2-Debuginfo-Updates","installer_updates":false,"description":"SLE11-SP2-Debuginfo-Updates for sle-11-i586"},{"installer_updates":false,"name":"SLE11-SP3-Debuginfo-Updates","description":"SLE11-SP3-Debuginfo-Updates for sle-11-i586","enabled":false,"id":759,"distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP3-Debuginfo-Updates/sle-11-i586/"},{"enabled":false,"id":763,"distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP3-Debuginfo-Pool/sle-11-i586/","installer_updates":false,"name":"SLE11-SP3-Debuginfo-Pool","description":"SLE11-SP3-Debuginfo-Pool for sle-11-i586"},{"installer_updates":false,"name":"SLED11-Extras","description":"SLED11-Extras for sle-11-i586","id":846,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLED11-Extras/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true},{"url":"https://updates.suse.com/repo/$RCE/SLED11-SP1-Updates/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","id":851,"enabled":false,"description":"SLED11-SP1-Updates for sle-11-i586","name":"SLED11-SP1-Updates","installer_updates":false},{"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLED11-SP1-Pool/sle-11-i586/","enabled":false,"id":852,"description":"SLED11-SP1-Pool for sle-11-i586","name":"SLED11-SP1-Pool","installer_updates":false},{"installer_updates":false,"name":"SLED11-SP2-Core","description":"SLED11-SP2-Core for sle-11-i586","enabled":false,"id":856,"distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLED11-SP2-Core/sle-11-i586/"},{"url":"https://updates.suse.com/repo/$RCE/SLED11-SP2-Updates/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","id":857,"enabled":false,"description":"SLED11-SP2-Updates for sle-11-i586","name":"SLED11-SP2-Updates","installer_updates":false},{"enabled":true,"id":890,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLED11-SP3-Updates/sle-11-i586/","name":"SLED11-SP3-Updates","installer_updates":false,"description":"SLED11-SP3-Updates for sle-11-i586"},{"enabled":true,"id":891,"distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLED11-SP3-Pool/sle-11-i586/","installer_updates":false,"name":"SLED11-SP3-Pool","description":"SLED11-SP3-Pool for sle-11-i586"}],"predecessor_ids":[],"cpe":null,"product_type":"base"},{"online_predecessor_ids":[],"product_class":"7260","repositories":[{"installer_updates":false,"name":"SLED10-SP1-Updates","description":"SLED10-SP1-Updates for sled-10-i586","enabled":true,"id":843,"distro_target":"sled-10-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLED10-SP1-Updates/sled-10-i586/"},{"autorefresh":true,"distro_target":"sled-10-i586","url":"https://updates.suse.com/repo/$RCE/SLED10-SP1-Online/sled-10-i586/","enabled":true,"id":844,"description":"SLED10-SP1-Online for sled-10-i586","name":"SLED10-SP1-Online","installer_updates":false},{"name":"SLE10-SP1-Debuginfo-Updates","installer_updates":false,"description":"SLE10-SP1-Debuginfo-Updates for sled-10-i586","enabled":false,"id":845,"autorefresh":true,"distro_target":"sled-10-i586","url":"https://updates.suse.com/repo/$RCE/SLE10-SP1-Debuginfo-Updates/sled-10-i586/"}],"predecessor_ids":[],"cpe":null,"product_type":"base","description":null,"shortname":null,"free":false,"arch":"i686","eula_url":"","friendly_version":"10 SP1","identifier":"SUSE-Linux-Enterprise-Desktop-SP1","release_stage":"released","id":894,"extensions":[],"version":"10","recommended":false,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Desktop 10 SP1 online i686","release_type":"online","former_identifier":"SUSE-Linux-Enterprise-Desktop-SP1","name":"SUSE Linux Enterprise Desktop","offline_predecessor_ids":[]},{"friendly_version":"10 SP1","release_stage":"released","id":895,"identifier":"SUSE-Linux-Enterprise-Desktop-SP1","extensions":[],"version":"10","recommended":false,"former_identifier":"SUSE-Linux-Enterprise-Desktop-SP1","release_type":"online","friendly_name":"SUSE Linux Enterprise Desktop 10 SP1 online x86_64","migration_extra":false,"offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Desktop","online_predecessor_ids":[],"product_class":"7260","repositories":[{"description":"SLED10-SP1-Online for sled-10-x86_64","name":"SLED10-SP1-Online","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLED10-SP1-Online/sled-10-x86_64/","autorefresh":true,"distro_target":"sled-10-x86_64","id":906,"enabled":true},{"description":"SLE10-SP1-Debuginfo-Updates for sled-10-x86_64","name":"SLE10-SP1-Debuginfo-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sled-10-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE10-SP1-Debuginfo-Updates/sled-10-x86_64/","enabled":false,"id":907},{"enabled":true,"id":908,"autorefresh":true,"distro_target":"sled-10-x86_64","url":"https://updates.suse.com/repo/$RCE/SLED10-SP1-Updates/sled-10-x86_64/","name":"SLED10-SP1-Updates","installer_updates":false,"description":"SLED10-SP1-Updates for sled-10-x86_64"}],"predecessor_ids":[],"product_type":"base","cpe":null,"free":false,"description":null,"shortname":null,"arch":"x86_64","eula_url":""},{"recommended":false,"version":"10","name":"SUSE Linux Enterprise Desktop","offline_predecessor_ids":[],"friendly_name":"SUSE Linux Enterprise Desktop 10 i686 (Migration)","migration_extra":false,"former_identifier":"SUSE-Linux-Enterprise-Desktop-SP3-migration","release_type":null,"friendly_version":"10","extensions":[],"release_stage":"released","identifier":"SUSE-Linux-Enterprise-Desktop-SP3-migration","id":896,"description":null,"shortname":null,"free":false,"eula_url":"","arch":"i686","predecessor_ids":[],"online_predecessor_ids":[],"product_class":"7260","repositories":[{"description":"SLED10-SP3-Online for sled-10-i586","installer_updates":false,"name":"SLED10-SP3-Online","url":"https://updates.suse.com/repo/$RCE/SLED10-SP3-Online/sled-10-i586/","distro_target":"sled-10-i586","autorefresh":true,"id":894,"enabled":true}],"cpe":null,"product_type":"base"},{"predecessor_ids":[],"repositories":[{"installer_updates":false,"name":"SLED10-GPLv3-Extras","description":"SLED10-GPLv3-Extras for sled-10-i586","id":876,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLED10-GPLv3-Extras/sled-10-i586/","distro_target":"sled-10-i586","autorefresh":true},{"installer_updates":false,"name":"SLED10-SP3-Online","description":"SLED10-SP3-Online for sled-10-i586","enabled":false,"id":894,"distro_target":"sled-10-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLED10-SP3-Online/sled-10-i586/"},{"description":"SLE10-SP3-Debuginfo-Pool for sled-10-i586","installer_updates":false,"name":"SLE10-SP3-Debuginfo-Pool","distro_target":"sled-10-i586","autorefresh":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Pool/sled-10-i586/","enabled":false,"id":895},{"distro_target":"sled-10-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Updates/sled-10-i586/","enabled":false,"id":896,"description":"SLE10-SP3-Debuginfo-Updates for sled-10-i586","installer_updates":false,"name":"SLE10-SP3-Debuginfo-Updates"},{"id":897,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLED10-SP3-Updates/sled-10-i586/","distro_target":"sled-10-i586","autorefresh":true,"installer_updates":false,"name":"SLED10-SP3-Updates","description":"SLED10-SP3-Updates for sled-10-i586"},{"url":"https://updates.suse.com/repo/$RCE/SLED10-SP3-Pool/sled-10-i586/","autorefresh":false,"distro_target":"sled-10-i586","id":898,"enabled":true,"description":"SLED10-SP3-Pool for sled-10-i586","name":"SLED10-SP3-Pool","installer_updates":false},{"description":"SLE10-SP3-Debuginfo-Online for sled-10-i586","name":"SLE10-SP3-Debuginfo-Online","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Online/sled-10-i586/","autorefresh":true,"distro_target":"sled-10-i586","id":899,"enabled":false}],"online_predecessor_ids":[],"product_class":"7260","cpe":null,"product_type":"base","shortname":null,"description":null,"free":false,"eula_url":"","arch":"i686","friendly_version":"10 SP3","extensions":[],"release_stage":"released","id":897,"identifier":"SUSE-Linux-Enterprise-Desktop-SP3","recommended":false,"version":"10","name":"SUSE Linux Enterprise Desktop","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Desktop 10 SP3 i686","former_identifier":"SUSE-Linux-Enterprise-Desktop-SP3","release_type":null},{"offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Desktop","former_identifier":"SUSE-Linux-Enterprise-Desktop-SP3","release_type":null,"friendly_name":"SUSE Linux Enterprise Desktop 10 SP3 i386","migration_extra":false,"recommended":false,"version":"10","extensions":[],"id":898,"release_stage":"released","identifier":"SUSE-Linux-Enterprise-Desktop-SP3","friendly_version":"10 SP3","eula_url":"","arch":"i386","free":false,"description":null,"shortname":null,"product_type":"base","cpe":null,"predecessor_ids":[],"online_predecessor_ids":[],"product_class":"7260","repositories":[{"url":"https://updates.suse.com/repo/$RCE/SLED10-GPLv3-Extras/sled-10-i586/","distro_target":"sled-10-i586","autorefresh":true,"id":876,"enabled":false,"description":"SLED10-GPLv3-Extras for sled-10-i586","installer_updates":false,"name":"SLED10-GPLv3-Extras"},{"description":"SLED10-SP3-Online for sled-10-i586","name":"SLED10-SP3-Online","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLED10-SP3-Online/sled-10-i586/","autorefresh":true,"distro_target":"sled-10-i586","id":894,"enabled":false},{"name":"SLE10-SP3-Debuginfo-Pool","installer_updates":false,"description":"SLE10-SP3-Debuginfo-Pool for sled-10-i586","id":895,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Pool/sled-10-i586/","autorefresh":false,"distro_target":"sled-10-i586"},{"name":"SLE10-SP3-Debuginfo-Updates","installer_updates":false,"description":"SLE10-SP3-Debuginfo-Updates for sled-10-i586","enabled":false,"id":896,"autorefresh":true,"distro_target":"sled-10-i586","url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Updates/sled-10-i586/"},{"installer_updates":false,"name":"SLED10-SP3-Updates","description":"SLED10-SP3-Updates for sled-10-i586","id":897,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLED10-SP3-Updates/sled-10-i586/","distro_target":"sled-10-i586","autorefresh":true},{"name":"SLED10-SP3-Pool","installer_updates":false,"description":"SLED10-SP3-Pool for sled-10-i586","enabled":true,"id":898,"autorefresh":false,"distro_target":"sled-10-i586","url":"https://updates.suse.com/repo/$RCE/SLED10-SP3-Pool/sled-10-i586/"},{"enabled":false,"id":899,"distro_target":"sled-10-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Online/sled-10-i586/","installer_updates":false,"name":"SLE10-SP3-Debuginfo-Online","description":"SLE10-SP3-Debuginfo-Online for sled-10-i586"}]},{"description":null,"shortname":null,"free":false,"eula_url":"","arch":"i686","predecessor_ids":[],"online_predecessor_ids":[],"repositories":[{"description":"SLED10-SP3-Online for sled-10-i586","installer_updates":false,"name":"SLED10-SP3-Online","url":"https://updates.suse.com/repo/$RCE/SLED10-SP3-Online/sled-10-i586/","distro_target":"sled-10-i586","autorefresh":true,"id":894,"enabled":true},{"installer_updates":false,"name":"SLE10-SP3-Debuginfo-Pool","description":"SLE10-SP3-Debuginfo-Pool for sled-10-i586","enabled":false,"id":895,"distro_target":"sled-10-i586","autorefresh":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Pool/sled-10-i586/"},{"name":"SLE10-SP3-Debuginfo-Updates","installer_updates":false,"description":"SLE10-SP3-Debuginfo-Updates for sled-10-i586","id":896,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Updates/sled-10-i586/","autorefresh":true,"distro_target":"sled-10-i586"},{"autorefresh":true,"distro_target":"sled-10-i586","url":"https://updates.suse.com/repo/$RCE/SLED10-SP3-Updates/sled-10-i586/","enabled":true,"id":897,"description":"SLED10-SP3-Updates for sled-10-i586","name":"SLED10-SP3-Updates","installer_updates":false},{"url":"https://updates.suse.com/repo/$RCE/SLED10-SP3-Pool/sled-10-i586/","autorefresh":false,"distro_target":"sled-10-i586","id":898,"enabled":false,"description":"SLED10-SP3-Pool for sled-10-i586","name":"SLED10-SP3-Pool","installer_updates":false},{"description":"SLE10-SP3-Debuginfo-Online for sled-10-i586","installer_updates":false,"name":"SLE10-SP3-Debuginfo-Online","url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Online/sled-10-i586/","distro_target":"sled-10-i586","autorefresh":true,"id":899,"enabled":false}],"product_class":"7260","cpe":null,"product_type":"base","recommended":false,"version":"10","name":"SUSE Linux Enterprise Desktop","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Desktop 10 SP3 online i686","release_type":"online","former_identifier":"SUSE-Linux-Enterprise-Desktop-SP3","friendly_version":"10 SP3","extensions":[],"identifier":"SUSE-Linux-Enterprise-Desktop-SP3","release_stage":"released","id":899},{"arch":"i486","eula_url":"","free":false,"description":null,"shortname":null,"product_type":"base","cpe":null,"repositories":[{"enabled":true,"id":855,"distro_target":"sled-10-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLED10-SP4-Online/sled-10-i586/","installer_updates":false,"name":"SLED10-SP4-Online","description":"SLED10-SP4-Online for sled-10-i586"}],"online_predecessor_ids":[],"product_class":"7260","predecessor_ids":[],"release_type":null,"former_identifier":"SUSE-Linux-Enterprise-Desktop-SP4-migration","migration_extra":false,"friendly_name":"SUSE Linux Enterprise Desktop 10 i486 (Migration)","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Desktop","version":"10","recommended":false,"release_stage":"released","id":900,"identifier":"SUSE-Linux-Enterprise-Desktop-SP4-migration","extensions":[],"friendly_version":"10"},{"eula_url":"","arch":"x86_64","free":false,"description":null,"shortname":null,"product_type":"base","cpe":null,"predecessor_ids":[],"online_predecessor_ids":[],"repositories":[{"enabled":false,"id":707,"distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Pool/sle-11-x86_64/","installer_updates":false,"name":"SLE11-SP1-Debuginfo-Pool","description":"SLE11-SP1-Debuginfo-Pool for sle-11-x86_64"},{"distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-Debuginfo-Updates/sle-11-x86_64/","enabled":false,"id":712,"description":"SLE11-SP2-Debuginfo-Updates for sle-11-x86_64","installer_updates":false,"name":"SLE11-SP2-Debuginfo-Updates"},{"id":715,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Updates/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64","name":"SLE11-SP1-Debuginfo-Updates","installer_updates":false,"description":"SLE11-SP1-Debuginfo-Updates for sle-11-x86_64"},{"enabled":false,"id":716,"distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-Debuginfo-Core/sle-11-x86_64/","installer_updates":false,"name":"SLE11-SP2-Debuginfo-Core","description":"SLE11-SP2-Debuginfo-Core for sle-11-x86_64"},{"enabled":true,"id":886,"distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLED11-SP2-Updates/sle-11-x86_64/","installer_updates":false,"name":"SLED11-SP2-Updates","description":"SLED11-SP2-Updates for sle-11-x86_64"},{"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLED11-SP2-Core/sle-11-x86_64/","enabled":true,"id":887,"description":"SLED11-SP2-Core for sle-11-x86_64","name":"SLED11-SP2-Core","installer_updates":false},{"enabled":true,"id":902,"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLED11-SP1-Updates/sle-11-x86_64/","name":"SLED11-SP1-Updates","installer_updates":false,"description":"SLED11-SP1-Updates for sle-11-x86_64"},{"enabled":false,"id":903,"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLED11-Extras/sle-11-x86_64/","name":"SLED11-Extras","installer_updates":false,"description":"SLED11-Extras for sle-11-x86_64"},{"installer_updates":false,"name":"SLED11-SP1-Pool","description":"SLED11-SP1-Pool for sle-11-x86_64","id":905,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLED11-SP1-Pool/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true}],"product_class":"7260","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Desktop","former_identifier":"SUSE_SLED","release_type":null,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Desktop 11 SP2 x86_64","recommended":false,"version":"11.2","extensions":[],"release_stage":"released","id":901,"identifier":"SUSE_SLED","friendly_version":"11 SP2"},{"friendly_version":"11 SP3","extensions":[],"release_stage":"released","identifier":"SUSE_SLED","id":902,"recommended":false,"version":"11.3","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Desktop","former_identifier":"SUSE_SLED","release_type":null,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Desktop 11 SP3 x86_64","predecessor_ids":[],"repositories":[{"name":"SLE11-SP1-Debuginfo-Pool","installer_updates":false,"description":"SLE11-SP1-Debuginfo-Pool for sle-11-x86_64","enabled":false,"id":707,"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Pool/sle-11-x86_64/"},{"installer_updates":false,"name":"SLE11-SP2-Debuginfo-Updates","description":"SLE11-SP2-Debuginfo-Updates for sle-11-x86_64","enabled":false,"id":712,"distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-Debuginfo-Updates/sle-11-x86_64/"},{"id":715,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Updates/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true,"installer_updates":false,"name":"SLE11-SP1-Debuginfo-Updates","description":"SLE11-SP1-Debuginfo-Updates for sle-11-x86_64"},{"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-Debuginfo-Core/sle-11-x86_64/","enabled":false,"id":716,"description":"SLE11-SP2-Debuginfo-Core for sle-11-x86_64","name":"SLE11-SP2-Debuginfo-Core","installer_updates":false},{"id":735,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP3-Debuginfo-Updates/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true,"installer_updates":false,"name":"SLE11-SP3-Debuginfo-Updates","description":"SLE11-SP3-Debuginfo-Updates for sle-11-x86_64"},{"distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP3-Debuginfo-Pool/sle-11-x86_64/","enabled":false,"id":736,"description":"SLE11-SP3-Debuginfo-Pool for sle-11-x86_64","installer_updates":false,"name":"SLE11-SP3-Debuginfo-Pool"},{"installer_updates":false,"name":"SLED11-SP2-Updates","description":"SLED11-SP2-Updates for sle-11-x86_64","enabled":false,"id":886,"distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLED11-SP2-Updates/sle-11-x86_64/"},{"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLED11-SP2-Core/sle-11-x86_64/","enabled":false,"id":887,"description":"SLED11-SP2-Core for sle-11-x86_64","name":"SLED11-SP2-Core","installer_updates":false},{"url":"https://updates.suse.com/repo/$RCE/SLED11-SP3-Pool/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64","id":901,"enabled":true,"description":"SLED11-SP3-Pool for sle-11-x86_64","name":"SLED11-SP3-Pool","installer_updates":false},{"installer_updates":false,"name":"SLED11-SP1-Updates","description":"SLED11-SP1-Updates for sle-11-x86_64","enabled":false,"id":902,"distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLED11-SP1-Updates/sle-11-x86_64/"},{"name":"SLED11-Extras","installer_updates":false,"description":"SLED11-Extras for sle-11-x86_64","id":903,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLED11-Extras/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64"},{"enabled":true,"id":904,"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLED11-SP3-Updates/sle-11-x86_64/","name":"SLED11-SP3-Updates","installer_updates":false,"description":"SLED11-SP3-Updates for sle-11-x86_64"},{"id":905,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLED11-SP1-Pool/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true,"installer_updates":false,"name":"SLED11-SP1-Pool","description":"SLED11-SP1-Pool for sle-11-x86_64"}],"online_predecessor_ids":[],"product_class":"7260","product_type":"base","cpe":null,"free":false,"shortname":null,"description":null,"eula_url":"","arch":"x86_64"},{"extensions":[],"release_stage":"released","id":903,"identifier":"SUSE_SLED-SP3-migration","friendly_version":"11 SP2","name":"SUSE Linux Enterprise Desktop","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Desktop 11 SP2 i586 (Migration)","release_type":null,"former_identifier":"SUSE_SLED-SP3-migration","recommended":false,"version":"11.2","cpe":null,"product_type":"base","predecessor_ids":[],"online_predecessor_ids":[],"product_class":"7260","repositories":[{"url":"https://updates.suse.com/repo/$RCE/SLED11-Extras/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true,"id":846,"enabled":false,"description":"SLED11-Extras for sle-11-i586","installer_updates":false,"name":"SLED11-Extras"},{"distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLED11-SP1-Updates/sle-11-i586/","enabled":false,"id":851,"description":"SLED11-SP1-Updates for sle-11-i586","installer_updates":false,"name":"SLED11-SP1-Updates"},{"url":"https://updates.suse.com/repo/$RCE/SLED11-SP1-Pool/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true,"id":852,"enabled":false,"description":"SLED11-SP1-Pool for sle-11-i586","installer_updates":false,"name":"SLED11-SP1-Pool"},{"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLED11-SP2-Core/sle-11-i586/","enabled":false,"id":856,"description":"SLED11-SP2-Core for sle-11-i586","name":"SLED11-SP2-Core","installer_updates":false},{"id":857,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLED11-SP2-Updates/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","name":"SLED11-SP2-Updates","installer_updates":false,"description":"SLED11-SP2-Updates for sle-11-i586"},{"installer_updates":false,"name":"nVidia-Driver-SLE11-SP3","description":"nVidia-Driver-SLE11-SP3","id":889,"enabled":true,"url":"http://download.nvidia.com/novell/sle11sp3/","distro_target":null,"autorefresh":true},{"url":"https://updates.suse.com/repo/$RCE/SLED11-SP3-Updates/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true,"id":890,"enabled":true,"description":"SLED11-SP3-Updates for sle-11-i586","installer_updates":false,"name":"SLED11-SP3-Updates"},{"enabled":true,"id":891,"distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLED11-SP3-Pool/sle-11-i586/","installer_updates":false,"name":"SLED11-SP3-Pool","description":"SLED11-SP3-Pool for sle-11-i586"}],"eula_url":"","arch":"i586","description":null,"shortname":null,"free":false},{"product_type":"base","cpe":null,"repositories":[{"enabled":true,"id":858,"distro_target":"sled-10-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLED10-Updates/sled-10-i586/","installer_updates":false,"name":"SLED10-Updates","description":"SLED10-Updates for sled-10-i586"},{"enabled":false,"id":859,"distro_target":"sled-10-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-Debuginfo-Updates/sled-10-i586/","installer_updates":false,"name":"SLE10-Debuginfo-Updates","description":"SLE10-Debuginfo-Updates for sled-10-i586"}],"online_predecessor_ids":[],"product_class":"7260","predecessor_ids":[],"arch":"i386","eula_url":"","free":false,"shortname":null,"description":null,"id":904,"release_stage":"released","identifier":"SUSE-Linux-Enterprise-Desktop-i386","extensions":[{"extensions":[],"release_stage":"released","id":1165,"identifier":"SUSE-Linux-Enterprise-SDK-DVD-i386","friendly_version":"10","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Software Development Kit","former_identifier":"SUSE-Linux-Enterprise-SDK-DVD-i386","release_type":null,"friendly_name":"SUSE Linux Enterprise Software Development Kit 10 i386","migration_extra":false,"recommended":false,"version":"10","product_type":"extension","cpe":null,"predecessor_ids":[],"online_predecessor_ids":[],"product_class":"SLE-SDK","repositories":[{"description":"SLE10-SDK-Updates for sled-10-i586","installer_updates":false,"name":"SLE10-SDK-Updates","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-Updates/sled-10-i586/","distro_target":"sled-10-i586","autorefresh":true,"id":1287,"enabled":true},{"description":"SLE10-SDK-Updates for sles-10-i586","installer_updates":false,"name":"SLE10-SDK-Updates","distro_target":"sles-10-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-Updates/sles-10-i586/","enabled":true,"id":1288}],"eula_url":"","arch":"i386","free":true,"description":null,"shortname":null},{"free":true,"shortname":null,"description":null,"eula_url":"","arch":"i386","predecessor_ids":[],"online_predecessor_ids":[],"product_class":"SLE-SDK","repositories":[{"enabled":true,"id":1287,"distro_target":"sled-10-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-Updates/sled-10-i586/","installer_updates":false,"name":"SLE10-SDK-Updates","description":"SLE10-SDK-Updates for sled-10-i586"},{"description":"SLE10-SDK-Updates for sles-10-i586","installer_updates":false,"name":"SLE10-SDK-Updates","distro_target":"sles-10-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-Updates/sles-10-i586/","enabled":true,"id":1288}],"product_type":"extension","cpe":null,"recommended":false,"version":"10","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Software Development Kit","release_type":null,"former_identifier":"SUSE-Linux-Enterprise-SDK-i386","migration_extra":false,"friendly_name":"SUSE Linux Enterprise Software Development Kit 10 i386","friendly_version":"10","extensions":[],"id":1170,"release_stage":"released","identifier":"SUSE-Linux-Enterprise-SDK-i386"}],"friendly_version":"10","release_type":null,"former_identifier":"SUSE-Linux-Enterprise-Desktop-i386","migration_extra":false,"friendly_name":"SUSE Linux Enterprise Desktop 10 i386","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Desktop","version":"10","recommended":false},{"extensions":[],"id":905,"release_stage":"released","identifier":"SUSE-Linux-Enterprise-Desktop-SP1-migration","friendly_version":"10","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Desktop","release_type":null,"former_identifier":"SUSE-Linux-Enterprise-Desktop-SP1-migration","friendly_name":"SUSE Linux Enterprise Desktop 10 i486 (Migration)","migration_extra":false,"recommended":false,"version":"10","product_type":"base","cpe":null,"predecessor_ids":[],"online_predecessor_ids":[],"product_class":"7260","repositories":[{"enabled":true,"id":843,"autorefresh":true,"distro_target":"sled-10-i586","url":"https://updates.suse.com/repo/$RCE/SLED10-SP1-Updates/sled-10-i586/","name":"SLED10-SP1-Updates","installer_updates":false,"description":"SLED10-SP1-Updates for sled-10-i586"},{"name":"SLED10-SP1-Online","installer_updates":false,"description":"SLED10-SP1-Online for sled-10-i586","enabled":true,"id":844,"autorefresh":true,"distro_target":"sled-10-i586","url":"https://updates.suse.com/repo/$RCE/SLED10-SP1-Online/sled-10-i586/"},{"description":"SLE10-SP1-Debuginfo-Updates for sled-10-i586","installer_updates":false,"name":"SLE10-SP1-Debuginfo-Updates","distro_target":"sled-10-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP1-Debuginfo-Updates/sled-10-i586/","enabled":false,"id":845}],"eula_url":"","arch":"i486","free":false,"description":null,"shortname":null},{"version":"10","recommended":false,"former_identifier":"SUSE-Linux-Enterprise-Desktop-SP1-migration","release_type":null,"friendly_name":"SUSE Linux Enterprise Desktop 10 i386 (Migration)","migration_extra":false,"offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Desktop","friendly_version":"10","id":906,"release_stage":"released","identifier":"SUSE-Linux-Enterprise-Desktop-SP1-migration","extensions":[{"cpe":null,"product_type":"extension","online_predecessor_ids":[],"repositories":[{"description":"SLE10-SDK-Updates for sled-10-i586","name":"SLE10-SDK-Updates","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-Updates/sled-10-i586/","autorefresh":true,"distro_target":"sled-10-i586","id":1287,"enabled":true},{"description":"SLE10-SDK-Updates for sles-10-i586","installer_updates":false,"name":"SLE10-SDK-Updates","distro_target":"sles-10-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-Updates/sles-10-i586/","enabled":true,"id":1288}],"product_class":"SLE-SDK","predecessor_ids":[],"arch":"i386","eula_url":"","shortname":null,"description":null,"free":true,"identifier":"SUSE-Linux-Enterprise-SDK-DVD-i386","release_stage":"released","id":1165,"extensions":[],"friendly_version":"10","migration_extra":false,"friendly_name":"SUSE Linux Enterprise Software Development Kit 10 i386","release_type":null,"former_identifier":"SUSE-Linux-Enterprise-SDK-DVD-i386","name":"SUSE Linux Enterprise Software Development Kit","offline_predecessor_ids":[],"version":"10","recommended":false},{"extensions":[],"release_stage":"released","identifier":"SUSE-Linux-Enterprise-SDK-i386","id":1170,"friendly_version":"10","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Software Development Kit","former_identifier":"SUSE-Linux-Enterprise-SDK-i386","release_type":null,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Software Development Kit 10 i386","recommended":false,"version":"10","product_type":"extension","cpe":null,"predecessor_ids":[],"online_predecessor_ids":[],"product_class":"SLE-SDK","repositories":[{"enabled":true,"id":1287,"distro_target":"sled-10-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-Updates/sled-10-i586/","installer_updates":false,"name":"SLE10-SDK-Updates","description":"SLE10-SDK-Updates for sled-10-i586"},{"enabled":true,"id":1288,"autorefresh":true,"distro_target":"sles-10-i586","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-Updates/sles-10-i586/","name":"SLE10-SDK-Updates","installer_updates":false,"description":"SLE10-SDK-Updates for sles-10-i586"}],"eula_url":"","arch":"i386","free":true,"description":null,"shortname":null}],"free":false,"shortname":null,"description":null,"arch":"i386","eula_url":"","online_predecessor_ids":[],"repositories":[{"enabled":true,"id":843,"autorefresh":true,"distro_target":"sled-10-i586","url":"https://updates.suse.com/repo/$RCE/SLED10-SP1-Updates/sled-10-i586/","name":"SLED10-SP1-Updates","installer_updates":false,"description":"SLED10-SP1-Updates for sled-10-i586"},{"description":"SLED10-SP1-Online for sled-10-i586","installer_updates":false,"name":"SLED10-SP1-Online","distro_target":"sled-10-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLED10-SP1-Online/sled-10-i586/","enabled":true,"id":844},{"description":"SLE10-SP1-Debuginfo-Updates for sled-10-i586","name":"SLE10-SP1-Debuginfo-Updates","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP1-Debuginfo-Updates/sled-10-i586/","autorefresh":true,"distro_target":"sled-10-i586","id":845,"enabled":false}],"product_class":"7260","predecessor_ids":[],"product_type":"base","cpe":null},{"identifier":"SUSE-Linux-Enterprise-Desktop-SP1-migration","release_stage":"released","id":907,"extensions":[{"recommended":false,"version":"10","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Software Development Kit","former_identifier":"SUSE-Linux-Enterprise-SDK-DVD-x86_64","release_type":null,"friendly_name":"SUSE Linux Enterprise Software Development Kit 10 x86_64","migration_extra":false,"friendly_version":"10","extensions":[],"identifier":"SUSE-Linux-Enterprise-SDK-DVD-x86_64","release_stage":"released","id":1169,"free":true,"shortname":null,"description":null,"eula_url":"","arch":"x86_64","predecessor_ids":[],"online_predecessor_ids":[],"product_class":"SLE-SDK","repositories":[{"name":"SLE10-SDK-Updates","installer_updates":false,"description":"SLE10-SDK-Updates for sled-10-x86_64","enabled":true,"id":1292,"autorefresh":true,"distro_target":"sled-10-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-Updates/sled-10-x86_64/"},{"autorefresh":true,"distro_target":"sles-10-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-Updates/sles-10-x86_64/","enabled":true,"id":1293,"description":"SLE10-SDK-Updates for sles-10-x86_64","name":"SLE10-SDK-Updates","installer_updates":false}],"product_type":"extension","cpe":null},{"product_type":"extension","cpe":null,"online_predecessor_ids":[],"product_class":"SLE-SDK","repositories":[{"name":"SLE10-SDK-Updates","installer_updates":false,"description":"SLE10-SDK-Updates for sled-10-x86_64","id":1292,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-Updates/sled-10-x86_64/","autorefresh":true,"distro_target":"sled-10-x86_64"},{"description":"SLE10-SDK-Updates for sles-10-x86_64","name":"SLE10-SDK-Updates","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-Updates/sles-10-x86_64/","autorefresh":true,"distro_target":"sles-10-x86_64","id":1293,"enabled":true}],"predecessor_ids":[],"arch":"x86_64","eula_url":"","free":true,"description":null,"shortname":null,"release_stage":"released","id":1183,"identifier":"SUSE-Linux-Enterprise-SDK-x86_64","extensions":[],"friendly_version":"10","former_identifier":"SUSE-Linux-Enterprise-SDK-x86_64","release_type":null,"friendly_name":"SUSE Linux Enterprise Software Development Kit 10 x86_64","migration_extra":false,"offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Software Development Kit","version":"10","recommended":false}],"friendly_version":"10","friendly_name":"SUSE Linux Enterprise Desktop 10 x86_64 (Migration)","migration_extra":false,"former_identifier":"SUSE-Linux-Enterprise-Desktop-SP1-migration","release_type":null,"name":"SUSE Linux Enterprise Desktop","offline_predecessor_ids":[],"version":"10","recommended":false,"cpe":null,"product_type":"base","product_class":"7260","online_predecessor_ids":[],"repositories":[{"name":"SLED10-SP1-Online","installer_updates":false,"description":"SLED10-SP1-Online for sled-10-x86_64","enabled":true,"id":906,"autorefresh":true,"distro_target":"sled-10-x86_64","url":"https://updates.suse.com/repo/$RCE/SLED10-SP1-Online/sled-10-x86_64/"},{"id":907,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP1-Debuginfo-Updates/sled-10-x86_64/","autorefresh":true,"distro_target":"sled-10-x86_64","name":"SLE10-SP1-Debuginfo-Updates","installer_updates":false,"description":"SLE10-SP1-Debuginfo-Updates for sled-10-x86_64"},{"url":"https://updates.suse.com/repo/$RCE/SLED10-SP1-Updates/sled-10-x86_64/","autorefresh":true,"distro_target":"sled-10-x86_64","id":908,"enabled":true,"description":"SLED10-SP1-Updates for sled-10-x86_64","name":"SLED10-SP1-Updates","installer_updates":false}],"predecessor_ids":[],"arch":"x86_64","eula_url":"","shortname":null,"description":null,"free":false},{"shortname":null,"description":null,"free":false,"arch":"i686","eula_url":"","product_class":"7260","online_predecessor_ids":[],"repositories":[{"description":"SLED10-SP1-Updates for sled-10-i586","installer_updates":false,"name":"SLED10-SP1-Updates","url":"https://updates.suse.com/repo/$RCE/SLED10-SP1-Updates/sled-10-i586/","distro_target":"sled-10-i586","autorefresh":true,"id":843,"enabled":true},{"id":844,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLED10-SP1-Online/sled-10-i586/","distro_target":"sled-10-i586","autorefresh":true,"installer_updates":false,"name":"SLED10-SP1-Online","description":"SLED10-SP1-Online for sled-10-i586"},{"distro_target":"sled-10-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP1-Debuginfo-Updates/sled-10-i586/","enabled":false,"id":845,"description":"SLE10-SP1-Debuginfo-Updates for sled-10-i586","installer_updates":false,"name":"SLE10-SP1-Debuginfo-Updates"}],"predecessor_ids":[],"cpe":null,"product_type":"base","version":"10","recommended":false,"friendly_name":"SUSE Linux Enterprise Desktop 10 SP1 i686","migration_extra":false,"former_identifier":"SUSE-Linux-Enterprise-Desktop-SP1","release_type":null,"name":"SUSE Linux Enterprise Desktop","offline_predecessor_ids":[],"friendly_version":"10 SP1","id":908,"release_stage":"released","identifier":"SUSE-Linux-Enterprise-Desktop-SP1","extensions":[]},{"version":"10","recommended":false,"release_type":null,"former_identifier":"SUSE-Linux-Enterprise-Desktop-SP1","friendly_name":"SUSE Linux Enterprise Desktop 10 SP1 i586","migration_extra":false,"offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Desktop","friendly_version":"10 SP1","release_stage":"released","id":909,"identifier":"SUSE-Linux-Enterprise-Desktop-SP1","extensions":[],"free":false,"description":null,"shortname":null,"arch":"i586","eula_url":"","online_predecessor_ids":[],"product_class":"7260","repositories":[{"enabled":true,"id":843,"autorefresh":true,"distro_target":"sled-10-i586","url":"https://updates.suse.com/repo/$RCE/SLED10-SP1-Updates/sled-10-i586/","name":"SLED10-SP1-Updates","installer_updates":false,"description":"SLED10-SP1-Updates for sled-10-i586"},{"installer_updates":false,"name":"SLED10-SP1-Online","description":"SLED10-SP1-Online for sled-10-i586","enabled":true,"id":844,"distro_target":"sled-10-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLED10-SP1-Online/sled-10-i586/"},{"url":"https://updates.suse.com/repo/$RCE/SLE10-SP1-Debuginfo-Updates/sled-10-i586/","distro_target":"sled-10-i586","autorefresh":true,"id":845,"enabled":false,"description":"SLE10-SP1-Debuginfo-Updates for sled-10-i586","installer_updates":false,"name":"SLE10-SP1-Debuginfo-Updates"}],"predecessor_ids":[],"product_type":"base","cpe":null},{"name":"SUSE Linux Enterprise Desktop","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Desktop 10 SP1 x86_64","former_identifier":"SUSE-Linux-Enterprise-Desktop-SP1","release_type":null,"recommended":false,"version":"10","extensions":[],"identifier":"SUSE-Linux-Enterprise-Desktop-SP1","release_stage":"released","id":910,"friendly_version":"10 SP1","eula_url":"","arch":"x86_64","shortname":null,"description":null,"free":false,"cpe":null,"product_type":"base","predecessor_ids":[],"online_predecessor_ids":[],"product_class":"7260","repositories":[{"description":"SLED10-SP1-Online for sled-10-x86_64","name":"SLED10-SP1-Online","installer_updates":false,"autorefresh":true,"distro_target":"sled-10-x86_64","url":"https://updates.suse.com/repo/$RCE/SLED10-SP1-Online/sled-10-x86_64/","enabled":true,"id":906},{"description":"SLE10-SP1-Debuginfo-Updates for sled-10-x86_64","installer_updates":false,"name":"SLE10-SP1-Debuginfo-Updates","url":"https://updates.suse.com/repo/$RCE/SLE10-SP1-Debuginfo-Updates/sled-10-x86_64/","distro_target":"sled-10-x86_64","autorefresh":true,"id":907,"enabled":false},{"description":"SLED10-SP1-Updates for sled-10-x86_64","name":"SLED10-SP1-Updates","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLED10-SP1-Updates/sled-10-x86_64/","autorefresh":true,"distro_target":"sled-10-x86_64","id":908,"enabled":true}]},{"friendly_version":"10 SP1","release_stage":"released","id":911,"identifier":"SUSE-Linux-Enterprise-Desktop-SP1","extensions":[],"version":"10","recommended":false,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Desktop 10 SP1 online i486","former_identifier":"SUSE-Linux-Enterprise-Desktop-SP1","release_type":"online","name":"SUSE Linux Enterprise Desktop","offline_predecessor_ids":[],"online_predecessor_ids":[],"repositories":[{"autorefresh":true,"distro_target":"sled-10-i586","url":"https://updates.suse.com/repo/$RCE/SLED10-SP1-Updates/sled-10-i586/","enabled":true,"id":843,"description":"SLED10-SP1-Updates for sled-10-i586","name":"SLED10-SP1-Updates","installer_updates":false},{"name":"SLED10-SP1-Online","installer_updates":false,"description":"SLED10-SP1-Online for sled-10-i586","id":844,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLED10-SP1-Online/sled-10-i586/","autorefresh":true,"distro_target":"sled-10-i586"},{"id":845,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP1-Debuginfo-Updates/sled-10-i586/","distro_target":"sled-10-i586","autorefresh":true,"installer_updates":false,"name":"SLE10-SP1-Debuginfo-Updates","description":"SLE10-SP1-Debuginfo-Updates for sled-10-i586"}],"product_class":"7260","predecessor_ids":[],"cpe":null,"product_type":"base","description":null,"shortname":null,"free":false,"arch":"i486","eula_url":""},{"friendly_version":"10 SP1","release_stage":"released","identifier":"SUSE-Linux-Enterprise-Desktop-SP1","id":912,"extensions":[],"version":"10","recommended":false,"friendly_name":"SUSE Linux Enterprise Desktop 10 SP1 online i386","migration_extra":false,"release_type":"online","former_identifier":"SUSE-Linux-Enterprise-Desktop-SP1","name":"SUSE Linux Enterprise Desktop","offline_predecessor_ids":[],"product_class":"7260","online_predecessor_ids":[],"repositories":[{"installer_updates":false,"name":"SLED10-SP1-Updates","description":"SLED10-SP1-Updates for sled-10-i586","enabled":true,"id":843,"distro_target":"sled-10-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLED10-SP1-Updates/sled-10-i586/"},{"installer_updates":false,"name":"SLED10-SP1-Online","description":"SLED10-SP1-Online for sled-10-i586","id":844,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLED10-SP1-Online/sled-10-i586/","distro_target":"sled-10-i586","autorefresh":true},{"id":845,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP1-Debuginfo-Updates/sled-10-i586/","autorefresh":true,"distro_target":"sled-10-i586","name":"SLE10-SP1-Debuginfo-Updates","installer_updates":false,"description":"SLE10-SP1-Debuginfo-Updates for sled-10-i586"}],"predecessor_ids":[],"cpe":null,"product_type":"base","shortname":null,"description":null,"free":false,"arch":"i386","eula_url":""},{"free":false,"description":null,"shortname":null,"eula_url":"","arch":"i686","predecessor_ids":[],"online_predecessor_ids":[],"repositories":[{"description":"SLED10-SP2-Online for sled-10-i586","installer_updates":false,"name":"SLED10-SP2-Online","url":"https://updates.suse.com/repo/$RCE/SLED10-SP2-Online/sled-10-i586/","distro_target":"sled-10-i586","autorefresh":true,"id":860,"enabled":true}],"product_class":"7260","product_type":"base","cpe":null,"recommended":false,"version":"10","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Desktop","release_type":null,"former_identifier":"SUSE-Linux-Enterprise-Desktop-SP2-migration","migration_extra":false,"friendly_name":"SUSE Linux Enterprise Desktop 10 i686 (Migration)","friendly_version":"10","extensions":[],"release_stage":"released","identifier":"SUSE-Linux-Enterprise-Desktop-SP2-migration","id":913},{"arch":"i586","eula_url":"","free":false,"description":null,"shortname":null,"product_type":"base","cpe":null,"online_predecessor_ids":[],"product_class":"7260","repositories":[{"id":860,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLED10-SP2-Online/sled-10-i586/","autorefresh":true,"distro_target":"sled-10-i586","name":"SLED10-SP2-Online","installer_updates":false,"description":"SLED10-SP2-Online for sled-10-i586"},{"autorefresh":false,"distro_target":"sled-10-i586","url":"https://updates.suse.com/repo/$RCE/SLED10-SP2-Pool/sled-10-i586/","enabled":true,"id":862,"description":"SLED10-SP2-Pool for sled-10-i586","name":"SLED10-SP2-Pool","installer_updates":false},{"description":"SLED10-SP2-Updates for sled-10-i586","installer_updates":false,"name":"SLED10-SP2-Updates","distro_target":"sled-10-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLED10-SP2-Updates/sled-10-i586/","enabled":true,"id":863},{"url":"https://updates.suse.com/repo/$RCE/SLE10-SP2-Debuginfo-Updates/sled-10-i586/","autorefresh":true,"distro_target":"sled-10-i586","id":864,"enabled":false,"description":"SLE10-SP2-Debuginfo-Updates for sled-10-i586","name":"SLE10-SP2-Debuginfo-Updates","installer_updates":false}],"predecessor_ids":[],"release_type":null,"former_identifier":"SUSE-Linux-Enterprise-Desktop-SP2","friendly_name":"SUSE Linux Enterprise Desktop 10 SP2 i586","migration_extra":false,"offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Desktop","version":"10","recommended":false,"identifier":"SUSE-Linux-Enterprise-Desktop-SP2","release_stage":"released","id":914,"extensions":[],"friendly_version":"10 SP2"},{"friendly_version":"10 SP2","extensions":[],"release_stage":"released","id":915,"identifier":"SUSE-Linux-Enterprise-Desktop-SP2","recommended":false,"version":"10","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Desktop","release_type":"online","former_identifier":"SUSE-Linux-Enterprise-Desktop-SP2","friendly_name":"SUSE Linux Enterprise Desktop 10 SP2 online x86_64","migration_extra":false,"predecessor_ids":[],"product_class":"7260","online_predecessor_ids":[],"repositories":[{"url":"https://updates.suse.com/repo/$RCE/SLED10-SP2-Online/sled-10-x86_64/","autorefresh":true,"distro_target":"sled-10-x86_64","id":861,"enabled":true,"description":"SLED10-SP2-Online for sled-10-x86_64","name":"SLED10-SP2-Online","installer_updates":false},{"installer_updates":false,"name":"SLE10-SP2-Debuginfo-Updates","description":"SLE10-SP2-Debuginfo-Updates for sled-10-x86_64","id":865,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP2-Debuginfo-Updates/sled-10-x86_64/","distro_target":"sled-10-x86_64","autorefresh":true},{"name":"SLED10-SP2-Updates","installer_updates":false,"description":"SLED10-SP2-Updates for sled-10-x86_64","id":866,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLED10-SP2-Updates/sled-10-x86_64/","autorefresh":true,"distro_target":"sled-10-x86_64"}],"product_type":"base","cpe":null,"free":false,"description":null,"shortname":null,"eula_url":"","arch":"x86_64"},{"release_stage":"released","id":916,"identifier":"SUSE-Linux-Enterprise-Desktop-SP3","extensions":[],"friendly_version":"10 SP3","release_type":"online","former_identifier":"SUSE-Linux-Enterprise-Desktop-SP3","migration_extra":false,"friendly_name":"SUSE Linux Enterprise Desktop 10 SP3 online i586","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Desktop","version":"10","recommended":false,"product_type":"base","cpe":null,"online_predecessor_ids":[],"product_class":"7260","repositories":[{"url":"https://updates.suse.com/repo/$RCE/SLED10-SP3-Online/sled-10-i586/","autorefresh":true,"distro_target":"sled-10-i586","id":894,"enabled":true,"description":"SLED10-SP3-Online for sled-10-i586","name":"SLED10-SP3-Online","installer_updates":false},{"url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Pool/sled-10-i586/","distro_target":"sled-10-i586","autorefresh":false,"id":895,"enabled":false,"description":"SLE10-SP3-Debuginfo-Pool for sled-10-i586","installer_updates":false,"name":"SLE10-SP3-Debuginfo-Pool"},{"description":"SLE10-SP3-Debuginfo-Updates for sled-10-i586","name":"SLE10-SP3-Debuginfo-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sled-10-i586","url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Updates/sled-10-i586/","enabled":false,"id":896},{"id":897,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLED10-SP3-Updates/sled-10-i586/","distro_target":"sled-10-i586","autorefresh":true,"installer_updates":false,"name":"SLED10-SP3-Updates","description":"SLED10-SP3-Updates for sled-10-i586"},{"enabled":false,"id":898,"autorefresh":false,"distro_target":"sled-10-i586","url":"https://updates.suse.com/repo/$RCE/SLED10-SP3-Pool/sled-10-i586/","name":"SLED10-SP3-Pool","installer_updates":false,"description":"SLED10-SP3-Pool for sled-10-i586"},{"id":899,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Online/sled-10-i586/","autorefresh":true,"distro_target":"sled-10-i586","name":"SLE10-SP3-Debuginfo-Online","installer_updates":false,"description":"SLE10-SP3-Debuginfo-Online for sled-10-i586"}],"predecessor_ids":[],"arch":"i586","eula_url":"","free":false,"shortname":null,"description":null},{"version":"11","recommended":false,"former_identifier":"SUSE_SLED-SP1-migration","release_type":null,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Desktop 11 x86_64 (Migration)","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Desktop","friendly_version":"11","identifier":"SUSE_SLED-SP1-migration","release_stage":"released","id":917,"extensions":[],"free":false,"description":null,"shortname":null,"arch":"x86_64","eula_url":"","repositories":[{"description":"nVidia-Driver-SLE11-SP1","name":"nVidia-Driver-SLE11-SP1","installer_updates":false,"url":"http://download.nvidia.com/novell/sle11sp1/","autorefresh":true,"distro_target":null,"id":853,"enabled":true},{"url":"https://updates.suse.com/repo/$RCE/SLED11-SP1-Pool/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64","id":905,"enabled":true,"description":"SLED11-SP1-Pool for sle-11-x86_64","name":"SLED11-SP1-Pool","installer_updates":false}],"online_predecessor_ids":[],"product_class":"7260","predecessor_ids":[],"product_type":"base","cpe":null},{"friendly_version":"10 SP4","extensions":[],"identifier":"SUSE-Linux-Enterprise-Desktop-SP4","release_stage":"released","id":918,"recommended":false,"version":"10","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Desktop","former_identifier":"SUSE-Linux-Enterprise-Desktop-SP4","release_type":null,"friendly_name":"SUSE Linux Enterprise Desktop 10 SP4 i586","migration_extra":false,"predecessor_ids":[],"online_predecessor_ids":[],"repositories":[{"url":"https://updates.suse.com/repo/$RCE/SLE10-SP4-Debuginfo-Pool/sled-10-i586/","autorefresh":false,"distro_target":"sled-10-i586","id":874,"enabled":false,"description":"SLE10-SP4-Debuginfo-Pool for sled-10-i586","name":"SLE10-SP4-Debuginfo-Pool","installer_updates":false},{"distro_target":"sled-10-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP4-Debuginfo-Updates/sled-10-i586/","enabled":false,"id":875,"description":"SLE10-SP4-Debuginfo-Updates for sled-10-i586","installer_updates":false,"name":"SLE10-SP4-Debuginfo-Updates"},{"enabled":false,"id":876,"autorefresh":true,"distro_target":"sled-10-i586","url":"https://updates.suse.com/repo/$RCE/SLED10-GPLv3-Extras/sled-10-i586/","name":"SLED10-GPLv3-Extras","installer_updates":false,"description":"SLED10-GPLv3-Extras for sled-10-i586"},{"url":"https://updates.suse.com/repo/$RCE/SLED10-SP4-Pool/sled-10-i586/","distro_target":"sled-10-i586","autorefresh":false,"id":877,"enabled":true,"description":"SLED10-SP4-Pool for sled-10-i586","installer_updates":false,"name":"SLED10-SP4-Pool"},{"name":"SLED10-SP4-Updates","installer_updates":false,"description":"SLED10-SP4-Updates for sled-10-i586","enabled":true,"id":878,"autorefresh":true,"distro_target":"sled-10-i586","url":"https://updates.suse.com/repo/$RCE/SLED10-SP4-Updates/sled-10-i586/"}],"product_class":"7260","product_type":"base","cpe":null,"free":false,"shortname":null,"description":null,"eula_url":"","arch":"i586"},{"arch":"i386","eula_url":"","shortname":null,"description":null,"free":false,"cpe":null,"product_type":"base","product_class":"7260","online_predecessor_ids":[],"repositories":[{"description":"SLED11-Extras for sle-11-i586","name":"SLED11-Extras","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLED11-Extras/sle-11-i586/","enabled":false,"id":846},{"enabled":false,"id":851,"distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLED11-SP1-Updates/sle-11-i586/","installer_updates":false,"name":"SLED11-SP1-Updates","description":"SLED11-SP1-Updates for sle-11-i586"},{"description":"SLED11-SP1-Pool for sle-11-i586","installer_updates":false,"name":"SLED11-SP1-Pool","distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLED11-SP1-Pool/sle-11-i586/","enabled":false,"id":852},{"id":856,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLED11-SP2-Core/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","name":"SLED11-SP2-Core","installer_updates":false,"description":"SLED11-SP2-Core for sle-11-i586"},{"description":"SLED11-SP2-Updates for sle-11-i586","installer_updates":false,"name":"SLED11-SP2-Updates","url":"https://updates.suse.com/repo/$RCE/SLED11-SP2-Updates/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true,"id":857,"enabled":false},{"description":"nVidia-Driver-SLE11-SP3","installer_updates":false,"name":"nVidia-Driver-SLE11-SP3","distro_target":null,"autorefresh":true,"url":"http://download.nvidia.com/novell/sle11sp3/","enabled":true,"id":889},{"installer_updates":false,"name":"SLED11-SP3-Updates","description":"SLED11-SP3-Updates for sle-11-i586","enabled":true,"id":890,"distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLED11-SP3-Updates/sle-11-i586/"},{"installer_updates":false,"name":"SLED11-SP3-Pool","description":"SLED11-SP3-Pool for sle-11-i586","id":891,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLED11-SP3-Pool/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true}],"predecessor_ids":[],"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Desktop 11 SP2 i386 (Migration)","release_type":null,"former_identifier":"SUSE_SLED-SP3-migration","name":"SUSE Linux Enterprise Desktop","offline_predecessor_ids":[],"version":"11.2","recommended":false,"id":919,"release_stage":"released","identifier":"SUSE_SLED-SP3-migration","extensions":[],"friendly_version":"11 SP2"},{"friendly_version":"10 SP1","extensions":[],"release_stage":"released","identifier":"SUSE-Linux-Enterprise-Desktop-SP1","id":920,"recommended":false,"version":"10","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Desktop","release_type":null,"former_identifier":"SUSE-Linux-Enterprise-Desktop-SP1","friendly_name":"SUSE Linux Enterprise Desktop 10 SP1 i486","migration_extra":false,"predecessor_ids":[],"online_predecessor_ids":[],"product_class":"7260","repositories":[{"description":"SLED10-SP1-Updates for sled-10-i586","name":"SLED10-SP1-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sled-10-i586","url":"https://updates.suse.com/repo/$RCE/SLED10-SP1-Updates/sled-10-i586/","enabled":true,"id":843},{"description":"SLED10-SP1-Online for sled-10-i586","name":"SLED10-SP1-Online","installer_updates":false,"autorefresh":true,"distro_target":"sled-10-i586","url":"https://updates.suse.com/repo/$RCE/SLED10-SP1-Online/sled-10-i586/","enabled":true,"id":844},{"distro_target":"sled-10-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP1-Debuginfo-Updates/sled-10-i586/","enabled":false,"id":845,"description":"SLE10-SP1-Debuginfo-Updates for sled-10-i586","installer_updates":false,"name":"SLE10-SP1-Debuginfo-Updates"}],"product_type":"base","cpe":null,"free":false,"shortname":null,"description":null,"eula_url":"","arch":"i486"},{"friendly_version":"11","extensions":[],"release_stage":"released","id":921,"identifier":"SUSE_SLED","recommended":false,"version":"11","name":"SUSE Linux Enterprise Desktop","offline_predecessor_ids":[],"friendly_name":"SUSE Linux Enterprise Desktop 11 i686","migration_extra":false,"release_type":null,"former_identifier":"SUSE_SLED","predecessor_ids":[],"repositories":[{"description":"SLE11-Debuginfo-Pool for sle-11-i586","installer_updates":false,"name":"SLE11-Debuginfo-Pool","distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-Debuginfo-Pool/sle-11-i586/","enabled":false,"id":747},{"description":"SLE11-Debuginfo-Updates for sle-11-i586","name":"SLE11-Debuginfo-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-Debuginfo-Updates/sle-11-i586/","enabled":false,"id":748},{"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLED11-Extras/sle-11-i586/","enabled":false,"id":846,"description":"SLED11-Extras for sle-11-i586","name":"SLED11-Extras","installer_updates":false},{"enabled":false,"id":847,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE-Likewise-5.3-Updates/sle-11-i586/","name":"SLE-Likewise-5.3-Updates","installer_updates":false,"description":"SLE-Likewise-5.3-Updates for sle-11-i586"},{"id":848,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLED11-Pool/sle-11-i586/","autorefresh":false,"distro_target":"sle-11-i586","name":"SLED11-Pool","installer_updates":false,"description":"SLED11-Pool for sle-11-i586"},{"installer_updates":false,"name":"SLED11-Updates","description":"SLED11-Updates for sle-11-i586","id":849,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLED11-Updates/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true},{"installer_updates":false,"name":"SLE-Likewise-5.3-Updates","description":"SLE-Likewise-5.3-Updates for sle-11-x86_64","id":850,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE-Likewise-5.3-Updates/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true}],"online_predecessor_ids":[],"product_class":"7260","cpe":null,"product_type":"base","shortname":null,"description":null,"free":false,"eula_url":"","arch":"i686"},{"product_type":"base","cpe":null,"online_predecessor_ids":[],"product_class":"7260","repositories":[{"installer_updates":false,"name":"SLE11-Debuginfo-Pool","description":"SLE11-Debuginfo-Pool for sle-11-i586","enabled":false,"id":747,"distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-Debuginfo-Pool/sle-11-i586/"},{"url":"https://updates.suse.com/repo/$RCE/SLE11-Debuginfo-Updates/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true,"id":748,"enabled":false,"description":"SLE11-Debuginfo-Updates for sle-11-i586","installer_updates":false,"name":"SLE11-Debuginfo-Updates"},{"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLED11-Extras/sle-11-i586/","enabled":false,"id":846,"description":"SLED11-Extras for sle-11-i586","name":"SLED11-Extras","installer_updates":false},{"enabled":false,"id":847,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE-Likewise-5.3-Updates/sle-11-i586/","name":"SLE-Likewise-5.3-Updates","installer_updates":false,"description":"SLE-Likewise-5.3-Updates for sle-11-i586"},{"autorefresh":false,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLED11-Pool/sle-11-i586/","enabled":false,"id":848,"description":"SLED11-Pool for sle-11-i586","name":"SLED11-Pool","installer_updates":false},{"enabled":true,"id":849,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLED11-Updates/sle-11-i586/","name":"SLED11-Updates","installer_updates":false,"description":"SLED11-Updates for sle-11-i586"},{"url":"https://updates.suse.com/repo/$RCE/SLE-Likewise-5.3-Updates/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64","id":850,"enabled":false,"description":"SLE-Likewise-5.3-Updates for sle-11-x86_64","name":"SLE-Likewise-5.3-Updates","installer_updates":false}],"predecessor_ids":[],"arch":"i586","eula_url":"","free":false,"shortname":null,"description":null,"id":922,"release_stage":"released","identifier":"SUSE_SLED","extensions":[],"friendly_version":"11","release_type":null,"former_identifier":"SUSE_SLED","friendly_name":"SUSE Linux Enterprise Desktop 11 i586","migration_extra":false,"offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Desktop","version":"11","recommended":false},{"product_type":"base","cpe":null,"online_predecessor_ids":[],"repositories":[{"enabled":false,"id":747,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-Debuginfo-Pool/sle-11-i586/","name":"SLE11-Debuginfo-Pool","installer_updates":false,"description":"SLE11-Debuginfo-Pool for sle-11-i586"},{"description":"SLE11-Debuginfo-Updates for sle-11-i586","installer_updates":false,"name":"SLE11-Debuginfo-Updates","distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-Debuginfo-Updates/sle-11-i586/","enabled":false,"id":748},{"enabled":false,"id":846,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLED11-Extras/sle-11-i586/","name":"SLED11-Extras","installer_updates":false,"description":"SLED11-Extras for sle-11-i586"},{"description":"SLE-Likewise-5.3-Updates for sle-11-i586","installer_updates":false,"name":"SLE-Likewise-5.3-Updates","url":"https://updates.suse.com/repo/$RCE/SLE-Likewise-5.3-Updates/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true,"id":847,"enabled":false},{"id":848,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLED11-Pool/sle-11-i586/","autorefresh":false,"distro_target":"sle-11-i586","name":"SLED11-Pool","installer_updates":false,"description":"SLED11-Pool for sle-11-i586"},{"description":"SLED11-Updates for sle-11-i586","installer_updates":false,"name":"SLED11-Updates","distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLED11-Updates/sle-11-i586/","enabled":true,"id":849},{"name":"SLE-Likewise-5.3-Updates","installer_updates":false,"description":"SLE-Likewise-5.3-Updates for sle-11-x86_64","id":850,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE-Likewise-5.3-Updates/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64"}],"product_class":"7260","predecessor_ids":[],"arch":"i386","eula_url":"","free":false,"shortname":null,"description":null,"release_stage":"released","identifier":"SUSE_SLED","id":923,"extensions":[],"friendly_version":"11","release_type":null,"former_identifier":"SUSE_SLED","friendly_name":"SUSE Linux Enterprise Desktop 11 i386","migration_extra":false,"offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Desktop","version":"11","recommended":false},{"eula_url":"","arch":"x86_64","free":false,"shortname":null,"description":null,"product_type":"base","cpe":null,"predecessor_ids":[],"online_predecessor_ids":[],"repositories":[{"id":817,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-Debuginfo-Pool/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true,"installer_updates":false,"name":"SLE11-Debuginfo-Pool","description":"SLE11-Debuginfo-Pool for sle-11-x86_64"},{"description":"SLE11-Debuginfo-Updates for sle-11-x86_64","installer_updates":false,"name":"SLE11-Debuginfo-Updates","url":"https://updates.suse.com/repo/$RCE/SLE11-Debuginfo-Updates/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true,"id":818,"enabled":false},{"url":"https://updates.suse.com/repo/$RCE/SLE-Likewise-5.3-Updates/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","id":847,"enabled":false,"description":"SLE-Likewise-5.3-Updates for sle-11-i586","name":"SLE-Likewise-5.3-Updates","installer_updates":false},{"description":"SLE-Likewise-5.3-Updates for sle-11-x86_64","installer_updates":false,"name":"SLE-Likewise-5.3-Updates","url":"https://updates.suse.com/repo/$RCE/SLE-Likewise-5.3-Updates/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true,"id":850,"enabled":false},{"distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLED11-Extras/sle-11-x86_64/","enabled":false,"id":903,"description":"SLED11-Extras for sle-11-x86_64","installer_updates":false,"name":"SLED11-Extras"},{"distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLED11-Updates/sle-11-x86_64/","enabled":true,"id":909,"description":"SLED11-Updates for sle-11-x86_64","installer_updates":false,"name":"SLED11-Updates"},{"name":"SLED11-Pool","installer_updates":false,"description":"SLED11-Pool for sle-11-x86_64","id":910,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLED11-Pool/sle-11-x86_64/","autorefresh":false,"distro_target":"sle-11-x86_64"}],"product_class":"7260","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Desktop","former_identifier":"SUSE_SLED","release_type":null,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Desktop 11 x86_64","recommended":false,"version":"11","extensions":[],"release_stage":"released","identifier":"SUSE_SLED","id":924,"friendly_version":"11"},{"product_type":"base","cpe":null,"online_predecessor_ids":[],"product_class":"7260","repositories":[{"installer_updates":false,"name":"SLED10-SP3-Online","description":"SLED10-SP3-Online for sled-10-i586","enabled":true,"id":894,"distro_target":"sled-10-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLED10-SP3-Online/sled-10-i586/"}],"predecessor_ids":[],"arch":"i386","eula_url":"","free":false,"shortname":null,"description":null,"identifier":"SUSE-Linux-Enterprise-Desktop-SP3-migration","release_stage":"released","id":925,"extensions":[{"extensions":[],"identifier":"SUSE-Linux-Enterprise-SDK-DVD-i386","release_stage":"released","id":1165,"friendly_version":"10","name":"SUSE Linux Enterprise Software Development Kit","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Software Development Kit 10 i386","release_type":null,"former_identifier":"SUSE-Linux-Enterprise-SDK-DVD-i386","recommended":false,"version":"10","cpe":null,"product_type":"extension","predecessor_ids":[],"product_class":"SLE-SDK","online_predecessor_ids":[],"repositories":[{"enabled":true,"id":1287,"distro_target":"sled-10-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-Updates/sled-10-i586/","installer_updates":false,"name":"SLE10-SDK-Updates","description":"SLE10-SDK-Updates for sled-10-i586"},{"name":"SLE10-SDK-Updates","installer_updates":false,"description":"SLE10-SDK-Updates for sles-10-i586","enabled":true,"id":1288,"autorefresh":true,"distro_target":"sles-10-i586","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-Updates/sles-10-i586/"}],"eula_url":"","arch":"i386","shortname":null,"description":null,"free":true},{"product_type":"extension","cpe":null,"online_predecessor_ids":[],"product_class":"SLE-SDK","repositories":[{"enabled":true,"id":1287,"distro_target":"sled-10-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-Updates/sled-10-i586/","installer_updates":false,"name":"SLE10-SDK-Updates","description":"SLE10-SDK-Updates for sled-10-i586"},{"autorefresh":true,"distro_target":"sles-10-i586","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-Updates/sles-10-i586/","enabled":true,"id":1288,"description":"SLE10-SDK-Updates for sles-10-i586","name":"SLE10-SDK-Updates","installer_updates":false}],"predecessor_ids":[],"arch":"i386","eula_url":"","free":true,"shortname":null,"description":null,"identifier":"SUSE-Linux-Enterprise-SDK-i386","release_stage":"released","id":1170,"extensions":[],"friendly_version":"10","release_type":null,"former_identifier":"SUSE-Linux-Enterprise-SDK-i386","friendly_name":"SUSE Linux Enterprise Software Development Kit 10 i386","migration_extra":false,"offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Software Development Kit","version":"10","recommended":false}],"friendly_version":"10","former_identifier":"SUSE-Linux-Enterprise-Desktop-SP3-migration","release_type":null,"friendly_name":"SUSE Linux Enterprise Desktop 10 i386 (Migration)","migration_extra":false,"offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Desktop","version":"10","recommended":false},{"name":"SUSE Linux Enterprise Desktop","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Desktop 10 SP3 i486","release_type":null,"former_identifier":"SUSE-Linux-Enterprise-Desktop-SP3","recommended":false,"version":"10","extensions":[],"id":926,"release_stage":"released","identifier":"SUSE-Linux-Enterprise-Desktop-SP3","friendly_version":"10 SP3","eula_url":"","arch":"i486","shortname":null,"description":null,"free":false,"cpe":null,"product_type":"base","predecessor_ids":[],"online_predecessor_ids":[],"repositories":[{"description":"SLED10-GPLv3-Extras for sled-10-i586","installer_updates":false,"name":"SLED10-GPLv3-Extras","url":"https://updates.suse.com/repo/$RCE/SLED10-GPLv3-Extras/sled-10-i586/","distro_target":"sled-10-i586","autorefresh":true,"id":876,"enabled":false},{"url":"https://updates.suse.com/repo/$RCE/SLED10-SP3-Online/sled-10-i586/","distro_target":"sled-10-i586","autorefresh":true,"id":894,"enabled":false,"description":"SLED10-SP3-Online for sled-10-i586","installer_updates":false,"name":"SLED10-SP3-Online"},{"distro_target":"sled-10-i586","autorefresh":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Pool/sled-10-i586/","enabled":false,"id":895,"description":"SLE10-SP3-Debuginfo-Pool for sled-10-i586","installer_updates":false,"name":"SLE10-SP3-Debuginfo-Pool"},{"enabled":false,"id":896,"distro_target":"sled-10-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Updates/sled-10-i586/","installer_updates":false,"name":"SLE10-SP3-Debuginfo-Updates","description":"SLE10-SP3-Debuginfo-Updates for sled-10-i586"},{"description":"SLED10-SP3-Updates for sled-10-i586","installer_updates":false,"name":"SLED10-SP3-Updates","distro_target":"sled-10-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLED10-SP3-Updates/sled-10-i586/","enabled":true,"id":897},{"autorefresh":false,"distro_target":"sled-10-i586","url":"https://updates.suse.com/repo/$RCE/SLED10-SP3-Pool/sled-10-i586/","enabled":true,"id":898,"description":"SLED10-SP3-Pool for sled-10-i586","name":"SLED10-SP3-Pool","installer_updates":false},{"url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Online/sled-10-i586/","autorefresh":true,"distro_target":"sled-10-i586","id":899,"enabled":false,"description":"SLE10-SP3-Debuginfo-Online for sled-10-i586","name":"SLE10-SP3-Debuginfo-Online","installer_updates":false}],"product_class":"7260"},{"cpe":null,"product_type":"base","online_predecessor_ids":[],"product_class":"7260","repositories":[{"description":"SLE11-SP1-Debuginfo-Pool for sle-11-i586","name":"SLE11-SP1-Debuginfo-Pool","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Pool/sle-11-i586/","enabled":false,"id":680},{"description":"SLE11-SP1-Debuginfo-Updates for sle-11-i586","name":"SLE11-SP1-Debuginfo-Updates","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Updates/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","id":682,"enabled":false},{"url":"https://updates.suse.com/repo/$RCE/SLED11-Extras/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","id":846,"enabled":false,"description":"SLED11-Extras for sle-11-i586","name":"SLED11-Extras","installer_updates":false},{"description":"SLE-Likewise-5.3-Updates for sle-11-i586","installer_updates":false,"name":"SLE-Likewise-5.3-Updates","url":"https://updates.suse.com/repo/$RCE/SLE-Likewise-5.3-Updates/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true,"id":847,"enabled":false},{"description":"SLE-Likewise-5.3-Updates for sle-11-x86_64","installer_updates":false,"name":"SLE-Likewise-5.3-Updates","url":"https://updates.suse.com/repo/$RCE/SLE-Likewise-5.3-Updates/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true,"id":850,"enabled":false},{"description":"SLED11-SP1-Updates for sle-11-i586","installer_updates":false,"name":"SLED11-SP1-Updates","distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLED11-SP1-Updates/sle-11-i586/","enabled":true,"id":851},{"installer_updates":false,"name":"SLED11-SP1-Pool","description":"SLED11-SP1-Pool for sle-11-i586","id":852,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLED11-SP1-Pool/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true}],"predecessor_ids":[],"arch":"i686","eula_url":"","description":null,"shortname":null,"free":false,"id":927,"release_stage":"released","identifier":"SUSE_SLED","extensions":[],"friendly_version":"11 SP1","friendly_name":"SUSE Linux Enterprise Desktop 11 SP1 i686","migration_extra":false,"release_type":null,"former_identifier":"SUSE_SLED","name":"SUSE Linux Enterprise Desktop","offline_predecessor_ids":[],"version":"11.1","recommended":false},{"identifier":"SUSE_SLED","release_stage":"released","id":928,"extensions":[],"friendly_version":"11 SP1","former_identifier":"SUSE_SLED","release_type":null,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Desktop 11 SP1 i386","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Desktop","version":"11.1","recommended":false,"product_type":"base","cpe":null,"online_predecessor_ids":[],"product_class":"7260","repositories":[{"description":"SLE11-SP1-Debuginfo-Pool for sle-11-i586","name":"SLE11-SP1-Debuginfo-Pool","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Pool/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","id":680,"enabled":false},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Updates/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true,"id":682,"enabled":false,"description":"SLE11-SP1-Debuginfo-Updates for sle-11-i586","installer_updates":false,"name":"SLE11-SP1-Debuginfo-Updates"},{"name":"SLED11-Extras","installer_updates":false,"description":"SLED11-Extras for sle-11-i586","enabled":false,"id":846,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLED11-Extras/sle-11-i586/"},{"description":"SLE-Likewise-5.3-Updates for sle-11-i586","name":"SLE-Likewise-5.3-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE-Likewise-5.3-Updates/sle-11-i586/","enabled":false,"id":847},{"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE-Likewise-5.3-Updates/sle-11-x86_64/","enabled":false,"id":850,"description":"SLE-Likewise-5.3-Updates for sle-11-x86_64","name":"SLE-Likewise-5.3-Updates","installer_updates":false},{"installer_updates":false,"name":"SLED11-SP1-Updates","description":"SLED11-SP1-Updates for sle-11-i586","enabled":true,"id":851,"distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLED11-SP1-Updates/sle-11-i586/"},{"id":852,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLED11-SP1-Pool/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","name":"SLED11-SP1-Pool","installer_updates":false,"description":"SLED11-SP1-Pool for sle-11-i586"}],"predecessor_ids":[],"arch":"i386","eula_url":"","free":false,"description":null,"shortname":null},{"cpe":null,"product_type":"base","online_predecessor_ids":[],"product_class":"7260","repositories":[{"enabled":true,"id":852,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLED11-SP1-Pool/sle-11-i586/","name":"SLED11-SP1-Pool","installer_updates":false,"description":"SLED11-SP1-Pool for sle-11-i586"},{"url":"http://download.nvidia.com/novell/sle11sp1/","distro_target":null,"autorefresh":true,"id":853,"enabled":true,"description":"nVidia-Driver-SLE11-SP1","installer_updates":false,"name":"nVidia-Driver-SLE11-SP1"}],"predecessor_ids":[],"arch":"i486","eula_url":"","shortname":null,"description":null,"free":false,"release_stage":"released","identifier":"SUSE_SLED-SP1-migration","id":929,"extensions":[],"friendly_version":"11","migration_extra":false,"friendly_name":"SUSE Linux Enterprise Desktop 11 i486 (Migration)","release_type":null,"former_identifier":"SUSE_SLED-SP1-migration","name":"SUSE Linux Enterprise Desktop","offline_predecessor_ids":[],"version":"11","recommended":false},{"friendly_version":"10","release_stage":"released","id":930,"identifier":"SUSE-Linux-Enterprise-Desktop-SP4-migration","extensions":[],"version":"10","recommended":false,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Desktop 10 i686 (Migration)","release_type":null,"former_identifier":"SUSE-Linux-Enterprise-Desktop-SP4-migration","name":"SUSE Linux Enterprise Desktop","offline_predecessor_ids":[],"product_class":"7260","online_predecessor_ids":[],"repositories":[{"description":"SLED10-SP4-Online for sled-10-i586","name":"SLED10-SP4-Online","installer_updates":false,"autorefresh":true,"distro_target":"sled-10-i586","url":"https://updates.suse.com/repo/$RCE/SLED10-SP4-Online/sled-10-i586/","enabled":true,"id":855}],"predecessor_ids":[],"cpe":null,"product_type":"base","shortname":null,"description":null,"free":false,"arch":"i686","eula_url":""},{"cpe":null,"product_type":"base","product_class":"7260","online_predecessor_ids":[],"repositories":[{"distro_target":"sled-10-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLED10-SP4-Online/sled-10-i586/","enabled":true,"id":855,"description":"SLED10-SP4-Online for sled-10-i586","installer_updates":false,"name":"SLED10-SP4-Online"}],"predecessor_ids":[],"arch":"i586","eula_url":"","description":null,"shortname":null,"free":false,"id":931,"release_stage":"released","identifier":"SUSE-Linux-Enterprise-Desktop-SP4-migration","extensions":[],"friendly_version":"10","migration_extra":false,"friendly_name":"SUSE Linux Enterprise Desktop 10 i586 (Migration)","release_type":null,"former_identifier":"SUSE-Linux-Enterprise-Desktop-SP4-migration","name":"SUSE Linux Enterprise Desktop","offline_predecessor_ids":[],"version":"10","recommended":false},{"offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Desktop","release_type":null,"former_identifier":"SUSE_SLED","migration_extra":false,"friendly_name":"SUSE Linux Enterprise Desktop 11 SP3 i686","recommended":false,"version":"11.3","extensions":[],"release_stage":"released","id":932,"identifier":"SUSE_SLED","friendly_version":"11 SP3","eula_url":"","arch":"i686","free":false,"shortname":null,"description":null,"product_type":"base","cpe":null,"predecessor_ids":[],"online_predecessor_ids":[],"product_class":"7260","repositories":[{"enabled":false,"id":680,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Pool/sle-11-i586/","name":"SLE11-SP1-Debuginfo-Pool","installer_updates":false,"description":"SLE11-SP1-Debuginfo-Pool for sle-11-i586"},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Updates/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","id":682,"enabled":false,"description":"SLE11-SP1-Debuginfo-Updates for sle-11-i586","name":"SLE11-SP1-Debuginfo-Updates","installer_updates":false},{"description":"SLE11-SP2-Debuginfo-Core for sle-11-i586","installer_updates":false,"name":"SLE11-SP2-Debuginfo-Core","distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-Debuginfo-Core/sle-11-i586/","enabled":false,"id":717},{"description":"SLE11-SP2-Debuginfo-Updates for sle-11-i586","installer_updates":false,"name":"SLE11-SP2-Debuginfo-Updates","url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-Debuginfo-Updates/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true,"id":719,"enabled":false},{"installer_updates":false,"name":"SLE11-SP3-Debuginfo-Updates","description":"SLE11-SP3-Debuginfo-Updates for sle-11-i586","id":759,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP3-Debuginfo-Updates/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true},{"distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP3-Debuginfo-Pool/sle-11-i586/","enabled":false,"id":763,"description":"SLE11-SP3-Debuginfo-Pool for sle-11-i586","installer_updates":false,"name":"SLE11-SP3-Debuginfo-Pool"},{"id":846,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLED11-Extras/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true,"installer_updates":false,"name":"SLED11-Extras","description":"SLED11-Extras for sle-11-i586"},{"name":"SLED11-SP1-Updates","installer_updates":false,"description":"SLED11-SP1-Updates for sle-11-i586","id":851,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLED11-SP1-Updates/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586"},{"description":"SLED11-SP1-Pool for sle-11-i586","name":"SLED11-SP1-Pool","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLED11-SP1-Pool/sle-11-i586/","enabled":false,"id":852},{"description":"SLED11-SP2-Core for sle-11-i586","installer_updates":false,"name":"SLED11-SP2-Core","distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLED11-SP2-Core/sle-11-i586/","enabled":false,"id":856},{"enabled":false,"id":857,"distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLED11-SP2-Updates/sle-11-i586/","installer_updates":false,"name":"SLED11-SP2-Updates","description":"SLED11-SP2-Updates for sle-11-i586"},{"name":"SLED11-SP3-Updates","installer_updates":false,"description":"SLED11-SP3-Updates for sle-11-i586","enabled":true,"id":890,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLED11-SP3-Updates/sle-11-i586/"},{"url":"https://updates.suse.com/repo/$RCE/SLED11-SP3-Pool/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","id":891,"enabled":true,"description":"SLED11-SP3-Pool for sle-11-i586","name":"SLED11-SP3-Pool","installer_updates":false}]},{"cpe":null,"product_type":"extension","predecessor_ids":[],"product_class":"SLMS","online_predecessor_ids":[],"repositories":[{"installer_updates":false,"name":"SLE11-SLMS-1.0-Pool","description":"SLE11-SLMS-1.0-Pool for sle-11-x86_64","enabled":true,"id":911,"distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SLMS-1.0-Pool/sle-11-x86_64/"},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SLMS-1.0-Updates/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true,"id":912,"enabled":true,"description":"SLE11-SLMS-1.0-Updates for sle-11-x86_64","installer_updates":false,"name":"SLE11-SLMS-1.0-Updates"}],"eula_url":"","arch":null,"shortname":null,"description":null,"free":false,"extensions":[],"release_stage":"released","identifier":"sle-slms-1.1-migration","id":933,"friendly_version":"1.0","name":"SUSE Lifecycle Management Server","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"SUSE Lifecycle Management Server 1.0 (Migration)","release_type":null,"former_identifier":"sle-slms-1.1-migration","recommended":false,"version":"1.0"},{"product_type":"extension","cpe":null,"predecessor_ids":[],"online_predecessor_ids":[],"repositories":[{"id":913,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-SLMS-1.2-Pool/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true,"installer_updates":false,"name":"SLE11-SP1-SLMS-1.2-Pool","description":"SLE11-SP1-SLMS-1.2-Pool for sle-11-x86_64"}],"product_class":"SLMS","eula_url":"","arch":null,"free":false,"shortname":null,"description":null,"extensions":[],"release_stage":"released","identifier":"sle-slms-1.2-migration","id":934,"friendly_version":"1.1","offline_predecessor_ids":[],"name":"SUSE Lifecycle Management Server","former_identifier":"sle-slms-1.2-migration","release_type":null,"friendly_name":"SUSE Lifecycle Management Server 1.1 (Migration)","migration_extra":false,"recommended":false,"version":"1.1"},{"identifier":"sle-slms","release_stage":"released","id":935,"extensions":[],"friendly_version":"1.1","migration_extra":false,"friendly_name":"SUSE Lifecycle Management Server 1.1","release_type":null,"former_identifier":"sle-slms","name":"SUSE Lifecycle Management Server","offline_predecessor_ids":[],"version":"1.1","recommended":false,"cpe":null,"product_type":"extension","online_predecessor_ids":[],"product_class":"SLMS","repositories":[{"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-SLMS-1.1-Pool/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true,"id":914,"enabled":true,"description":"SLE11-SP1-SLMS-1.1-Pool for sle-11-x86_64","installer_updates":false,"name":"SLE11-SP1-SLMS-1.1-Pool"},{"id":915,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-SLMS-1.1-Updates/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64","name":"SLE11-SP1-SLMS-1.1-Updates","installer_updates":false,"description":"SLE11-SP1-SLMS-1.1-Updates for sle-11-x86_64"}],"predecessor_ids":[],"arch":null,"eula_url":"","description":null,"shortname":null,"free":false},{"repositories":[{"id":911,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SLMS-1.0-Pool/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true,"installer_updates":false,"name":"SLE11-SLMS-1.0-Pool","description":"SLE11-SLMS-1.0-Pool for sle-11-x86_64"},{"description":"SLE11-SLMS-1.0-Updates for sle-11-x86_64","installer_updates":false,"name":"SLE11-SLMS-1.0-Updates","distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SLMS-1.0-Updates/sle-11-x86_64/","enabled":true,"id":912}],"online_predecessor_ids":[],"product_class":"SLMS","predecessor_ids":[],"cpe":null,"product_type":"extension","description":null,"shortname":null,"free":false,"arch":null,"eula_url":"","friendly_version":"1.0","id":936,"release_stage":"released","identifier":"sle-slms","extensions":[],"version":"1.0","recommended":false,"migration_extra":false,"friendly_name":"SUSE Lifecycle Management Server 1.0","former_identifier":"sle-slms","release_type":null,"name":"SUSE Lifecycle Management Server","offline_predecessor_ids":[]},{"arch":null,"eula_url":"","free":false,"description":null,"shortname":null,"product_type":"extension","cpe":null,"product_class":"SLMS","online_predecessor_ids":[],"repositories":[{"enabled":true,"id":916,"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-SLMS-1.3-Pool/sle-11-x86_64/","name":"SLE11-SP2-SLMS-1.3-Pool","installer_updates":false,"description":"SLE11-SP2-SLMS-1.3-Pool for sle-11-x86_64"},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-SLMS-1.3-Updates/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true,"id":917,"enabled":true,"description":"SLE11-SP2-SLMS-1.3-Updates for sle-11-x86_64","installer_updates":false,"name":"SLE11-SP2-SLMS-1.3-Updates"},{"url":"https://updates.suse.com/repo/$RCE/SLES11-SP2-LTSS-Updates/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true,"id":1157,"enabled":true,"description":"SLES11-SP2-LTSS-Updates for sle-11-x86_64","installer_updates":false,"name":"SLES11-SP2-LTSS-Updates"}],"predecessor_ids":[],"release_type":null,"former_identifier":"sle-slms","migration_extra":false,"friendly_name":"SUSE Lifecycle Management Server 1.3","offline_predecessor_ids":[],"name":"SUSE Lifecycle Management Server","version":"1.3","recommended":false,"identifier":"sle-slms","release_stage":"released","id":937,"extensions":[],"friendly_version":"1.3"},{"description":null,"shortname":null,"free":false,"eula_url":"","arch":null,"predecessor_ids":[],"online_predecessor_ids":[],"product_class":"SLMS","repositories":[{"distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-SLMS-1.3-Pool/sle-11-x86_64/","enabled":true,"id":916,"description":"SLE11-SP2-SLMS-1.3-Pool for sle-11-x86_64","installer_updates":false,"name":"SLE11-SP2-SLMS-1.3-Pool"}],"cpe":null,"product_type":"extension","recommended":false,"version":"1.2","name":"SUSE Lifecycle Management Server","offline_predecessor_ids":[],"friendly_name":"SUSE Lifecycle Management Server 1.2 (Migration)","migration_extra":false,"former_identifier":"sle-slms-1.3-migration","release_type":null,"friendly_version":"1.2","extensions":[],"release_stage":"released","id":938,"identifier":"sle-slms-1.3-migration"},{"arch":null,"eula_url":"","free":false,"description":null,"shortname":null,"product_type":"extension","cpe":null,"online_predecessor_ids":[],"product_class":"SLMS","repositories":[{"name":"SLE11-SP1-SLMS-1.2-Pool","installer_updates":false,"description":"SLE11-SP1-SLMS-1.2-Pool for sle-11-x86_64","enabled":false,"id":913,"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-SLMS-1.2-Pool/sle-11-x86_64/"},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-SLMS-1.2-Updates/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64","id":918,"enabled":false,"description":"SLE11-SP1-SLMS-1.2-Updates for sle-11-x86_64","name":"SLE11-SP1-SLMS-1.2-Updates","installer_updates":false}],"predecessor_ids":[],"former_identifier":"sle-slms","release_type":null,"friendly_name":"SUSE Lifecycle Management Server 1.2","migration_extra":false,"offline_predecessor_ids":[],"name":"SUSE Lifecycle Management Server","version":"1.2","recommended":false,"identifier":"sle-slms","release_stage":"released","id":939,"extensions":[],"friendly_version":"1.2"},{"free":false,"description":null,"shortname":null,"arch":"ppc64","eula_url":"","repositories":[{"url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-Pool/sle-11-ppc64/","autorefresh":true,"distro_target":"sle-11-ppc64","id":919,"enabled":true,"description":"SLES11-SP1-Pool for sle-11-ppc64","name":"SLES11-SP1-Pool","installer_updates":false},{"url":"https://updates.suse.com/repo/$RCE/SLES11-Extras/sle-11-ppc64/","distro_target":"sle-11-ppc64","autorefresh":true,"id":920,"enabled":false,"description":"SLES11-Extras for sle-11-ppc64","installer_updates":false,"name":"SLES11-Extras"},{"installer_updates":false,"name":"SLE11-WebYaST-SP1-Updates","description":"SLE11-WebYaST-SP1-Updates for sle-11-ppc64","id":921,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-WebYaST-SP1-Updates/sle-11-ppc64/","distro_target":"sle-11-ppc64","autorefresh":true},{"description":"SLES11-SP1-Updates for sle-11-ppc64","name":"SLES11-SP1-Updates","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-Updates/sle-11-ppc64/","autorefresh":true,"distro_target":"sle-11-ppc64","id":922,"enabled":true},{"description":"SLE11-WebYaST-SP1-Pool for sle-11-ppc64","name":"SLE11-WebYaST-SP1-Pool","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-ppc64","url":"https://updates.suse.com/repo/$RCE/SLE11-WebYaST-SP1-Pool/sle-11-ppc64/","enabled":false,"id":923},{"installer_updates":false,"name":"SLE11-SP1-Debuginfo-Updates","description":"SLE11-SP1-Debuginfo-Updates for sle-11-ppc64","enabled":false,"id":924,"distro_target":"sle-11-ppc64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Updates/sle-11-ppc64/"},{"installer_updates":false,"name":"SLE11-SP1-Debuginfo-Pool","description":"SLE11-SP1-Debuginfo-Pool for sle-11-ppc64","enabled":false,"id":925,"distro_target":"sle-11-ppc64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Pool/sle-11-ppc64/"}],"online_predecessor_ids":[],"product_class":"SLES-PPC","predecessor_ids":[],"product_type":"base","cpe":"cpe:/o:suse:suse_sles:11:sp1","version":"11.1","recommended":false,"release_type":null,"former_identifier":"SUSE_SLES","friendly_name":"SUSE Linux Enterprise Server 11 SP1 ppc64","migration_extra":false,"offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Server","friendly_version":"11 SP1","identifier":"SUSE_SLES","release_stage":"released","id":940,"extensions":[{"extensions":[],"release_stage":"released","identifier":"sle-11-WebYaST","id":835,"friendly_version":"1.1","offline_predecessor_ids":[],"name":"SUSE WebYaST","release_type":null,"former_identifier":"sle-11-WebYaST","migration_extra":false,"friendly_name":"SUSE WebYaST 1.1","recommended":false,"version":"1.1","product_type":"extension","cpe":null,"predecessor_ids":[],"product_class":"WEBYAST","online_predecessor_ids":[],"repositories":[{"description":"SLE11-SP1-WebYaST-1.1-Updates for sle-11-i586","installer_updates":false,"name":"SLE11-SP1-WebYaST-1.1-Updates","distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-WebYaST-1.1-Updates/sle-11-i586/","enabled":true,"id":825},{"installer_updates":false,"name":"SLE11-SP1-WebYaST-1.1-Pool","description":"SLE11-SP1-WebYaST-1.1-Pool for sle-11-i586","id":826,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-WebYaST-1.1-Pool/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-WebYaST-1.1-Pool/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true,"id":827,"enabled":false,"description":"SLE11-SP1-WebYaST-1.1-Pool for sle-11-x86_64","installer_updates":false,"name":"SLE11-SP1-WebYaST-1.1-Pool"},{"name":"SLE11-SP1-WebYaST-1.1-Updates","installer_updates":false,"description":"SLE11-SP1-WebYaST-1.1-Updates for sle-11-x86_64","id":828,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-WebYaST-1.1-Updates/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64"}],"eula_url":"","arch":null,"free":true,"description":null,"shortname":null},{"eula_url":"","arch":"ppc64","description":null,"shortname":null,"free":false,"cpe":null,"product_type":"extension","predecessor_ids":[],"repositories":[{"installer_updates":false,"name":"SLE11-HAE-SP1-Pool","description":"SLE11-HAE-SP1-Pool for sle-11-ppc64","enabled":true,"id":1043,"distro_target":"sle-11-ppc64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP1-Pool/sle-11-ppc64/"},{"id":1044,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP1-Updates/sle-11-ppc64/","autorefresh":true,"distro_target":"sle-11-ppc64","name":"SLE11-HAE-SP1-Updates","installer_updates":false,"description":"SLE11-HAE-SP1-Updates for sle-11-ppc64"}],"online_predecessor_ids":[],"product_class":"SLE-HAE-PPC","name":"SUSE Linux Enterprise High Availability Extension","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"SUSE Linux Enterprise High Availability Extension 11 SP1 ppc64","release_type":null,"former_identifier":"sle-hae","recommended":false,"version":"11.1","extensions":[],"identifier":"sle-hae","release_stage":"released","id":1046,"friendly_version":"11 SP1"},{"free":false,"description":null,"shortname":null,"eula_url":"","arch":"ppc64","predecessor_ids":[],"online_predecessor_ids":[],"product_class":"SLE-HAE-PPC","repositories":[{"description":"SLE11-HAE-SP2-Pool for sle-11-ppc64","installer_updates":false,"name":"SLE11-HAE-SP2-Pool","distro_target":"sle-11-ppc64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP2-Pool/sle-11-ppc64/","enabled":true,"id":1041},{"autorefresh":true,"distro_target":"sle-11-ppc64","url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP2-Updates/sle-11-ppc64/","enabled":true,"id":1042,"description":"SLE11-HAE-SP2-Updates for sle-11-ppc64","name":"SLE11-HAE-SP2-Updates","installer_updates":false}],"product_type":"extension","cpe":null,"recommended":false,"version":"11.1","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise High Availability Extension","former_identifier":"sle-hae-SP2-migration","release_type":null,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise High Availability Extension 11 SP1 ppc64 (Migration)","friendly_version":"11 SP1","extensions":[],"id":1048,"release_stage":"released","identifier":"sle-hae-SP2-migration"},{"online_predecessor_ids":[],"product_class":"SLE-SDK","repositories":[{"description":"SLE11-SDK-SP1-Updates for sle-11-ia64","installer_updates":false,"name":"SLE11-SDK-SP1-Updates","distro_target":"sle-11-ia64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Updates/sle-11-ia64/","enabled":true,"id":1257},{"installer_updates":false,"name":"SLE11-SDK-SP1-Pool","description":"SLE11-SDK-SP1-Pool for sle-11-ia64","id":1258,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-ia64/","distro_target":"sle-11-ia64","autorefresh":true},{"name":"SLE11-SDK-SP1-Pool","installer_updates":false,"description":"SLE11-SDK-SP1-Pool for sle-11-s390x","enabled":true,"id":1259,"autorefresh":true,"distro_target":"sle-11-s390x","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-s390x/"},{"name":"SLE11-SDK-SP1-Updates","installer_updates":false,"description":"SLE11-SDK-SP1-Updates for sle-11-ppc64","enabled":true,"id":1260,"autorefresh":true,"distro_target":"sle-11-ppc64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Updates/sle-11-ppc64/"},{"enabled":true,"id":1261,"distro_target":"sle-11-ppc64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-ppc64/","installer_updates":false,"name":"SLE11-SDK-SP1-Pool","description":"SLE11-SDK-SP1-Pool for sle-11-ppc64"},{"enabled":true,"id":1262,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Updates/sle-11-i586/","name":"SLE11-SDK-SP1-Updates","installer_updates":false,"description":"SLE11-SDK-SP1-Updates for sle-11-i586"},{"enabled":true,"id":1263,"distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-i586/","installer_updates":false,"name":"SLE11-SDK-SP1-Pool","description":"SLE11-SDK-SP1-Pool for sle-11-i586"},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64","id":1264,"enabled":true,"description":"SLE11-SDK-SP1-Pool for sle-11-x86_64","name":"SLE11-SDK-SP1-Pool","installer_updates":false},{"description":"SLE11-SDK-SP1-Updates for sle-11-x86_64","name":"SLE11-SDK-SP1-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Updates/sle-11-x86_64/","enabled":true,"id":1265},{"name":"SLE11-SDK-SP1-Updates","installer_updates":false,"description":"SLE11-SDK-SP1-Updates for sle-11-s390x","id":1266,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Updates/sle-11-s390x/","autorefresh":true,"distro_target":"sle-11-s390x"}],"predecessor_ids":[],"cpe":null,"product_type":"extension","description":null,"shortname":null,"free":true,"arch":null,"eula_url":"","friendly_version":"11 SP1","release_stage":"released","id":1159,"identifier":"sle-sdk","extensions":[],"version":"11.1","recommended":false,"friendly_name":"SUSE Linux Enterprise Software Development Kit 11 SP1","migration_extra":false,"former_identifier":"sle-sdk","release_type":null,"name":"SUSE Linux Enterprise Software Development Kit","offline_predecessor_ids":[]},{"extensions":[],"id":1162,"release_stage":"released","identifier":"sle-sdk-SP1-migration","friendly_version":"11","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Software Development Kit","release_type":null,"former_identifier":"sle-sdk-SP1-migration","migration_extra":false,"friendly_name":"SUSE Linux Enterprise Software Development Kit 11 (Migration)","recommended":false,"version":"11","product_type":"extension","cpe":null,"predecessor_ids":[],"repositories":[{"description":"SLE11-SDK-SP1-Pool for sle-11-ia64","installer_updates":false,"name":"SLE11-SDK-SP1-Pool","distro_target":"sle-11-ia64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-ia64/","enabled":true,"id":1258},{"description":"SLE11-SDK-SP1-Pool for sle-11-s390x","name":"SLE11-SDK-SP1-Pool","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-s390x/","autorefresh":true,"distro_target":"sle-11-s390x","id":1259,"enabled":true},{"description":"SLE11-SDK-SP1-Pool for sle-11-ppc64","name":"SLE11-SDK-SP1-Pool","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-ppc64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-ppc64/","enabled":true,"id":1261},{"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-i586/","enabled":true,"id":1263,"description":"SLE11-SDK-SP1-Pool for sle-11-i586","name":"SLE11-SDK-SP1-Pool","installer_updates":false},{"enabled":true,"id":1264,"distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-x86_64/","installer_updates":false,"name":"SLE11-SDK-SP1-Pool","description":"SLE11-SDK-SP1-Pool for sle-11-x86_64"}],"online_predecessor_ids":[],"product_class":"SLE-SDK","eula_url":"","arch":null,"free":true,"shortname":null,"description":null},{"friendly_version":"11 SP1","identifier":"sle-sdk-SP2-migration","release_stage":"released","id":1163,"extensions":[],"version":"11.1","recommended":false,"former_identifier":"sle-sdk-SP2-migration","release_type":null,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Software Development Kit 11 SP1 (Migration)","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Software Development Kit","product_class":"SLE-SDK","online_predecessor_ids":[],"repositories":[{"name":"SLE11-SDK-SP2-Core","installer_updates":false,"description":"SLE11-SDK-SP2-Core for sle-11-ia64","id":1267,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-ia64/","autorefresh":true,"distro_target":"sle-11-ia64"},{"installer_updates":false,"name":"SLE11-SDK-SP2-Core","description":"SLE11-SDK-SP2-Core for sle-11-s390x","enabled":true,"id":1268,"distro_target":"sle-11-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-s390x/"},{"description":"SLE11-SDK-SP2-Updates for sle-11-s390x","name":"SLE11-SDK-SP2-Updates","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-s390x/","autorefresh":true,"distro_target":"sle-11-s390x","id":1269,"enabled":true},{"description":"SLE11-SDK-SP2-Updates for sle-11-ppc64","installer_updates":false,"name":"SLE11-SDK-SP2-Updates","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-ppc64/","distro_target":"sle-11-ppc64","autorefresh":true,"id":1270,"enabled":true},{"description":"SLE11-SDK-SP2-Updates for sle-11-i586","name":"SLE11-SDK-SP2-Updates","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","id":1271,"enabled":true},{"id":1272,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-ia64/","distro_target":"sle-11-ia64","autorefresh":true,"installer_updates":false,"name":"SLE11-SDK-SP2-Updates","description":"SLE11-SDK-SP2-Updates for sle-11-ia64"},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-ppc64/","distro_target":"sle-11-ppc64","autorefresh":true,"id":1273,"enabled":true,"description":"SLE11-SDK-SP2-Core for sle-11-ppc64","installer_updates":false,"name":"SLE11-SDK-SP2-Core"},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true,"id":1274,"enabled":true,"description":"SLE11-SDK-SP2-Core for sle-11-i586","installer_updates":false,"name":"SLE11-SDK-SP2-Core"},{"name":"SLE11-SDK-SP2-Core","installer_updates":false,"description":"SLE11-SDK-SP2-Core for sle-11-x86_64","enabled":true,"id":1275,"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-x86_64/"},{"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-x86_64/","enabled":true,"id":1276,"description":"SLE11-SDK-SP2-Updates for sle-11-x86_64","name":"SLE11-SDK-SP2-Updates","installer_updates":false}],"predecessor_ids":[],"product_type":"extension","cpe":null,"free":true,"description":null,"shortname":null,"arch":null,"eula_url":""},{"product_type":"extension","cpe":null,"predecessor_ids":[],"repositories":[{"enabled":true,"id":1386,"distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-SMT-Updates/sle-11-x86_64/","installer_updates":false,"name":"SLE11-SP1-SMT-Updates","description":"SLE11-SP1-SMT-Updates for sle-11-x86_64"},{"installer_updates":false,"name":"SLE11-SP1-SMT-Pool","description":"SLE11-SP1-SMT-Pool for sle-11-s390x","enabled":true,"id":1387,"distro_target":"sle-11-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-SMT-Pool/sle-11-s390x/"},{"distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-SMT-Pool/sle-11-x86_64/","enabled":true,"id":1388,"description":"SLE11-SP1-SMT-Pool for sle-11-x86_64","installer_updates":false,"name":"SLE11-SP1-SMT-Pool"},{"description":"SLE11-SP1-SMT-Updates for sle-11-i586","installer_updates":false,"name":"SLE11-SP1-SMT-Updates","url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-SMT-Updates/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true,"id":1389,"enabled":true},{"id":1390,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-SMT-Pool/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","name":"SLE11-SP1-SMT-Pool","installer_updates":false,"description":"SLE11-SP1-SMT-Pool for sle-11-i586"},{"distro_target":"sle-11-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-SMT-Updates/sle-11-s390x/","enabled":true,"id":1391,"description":"SLE11-SP1-SMT-Updates for sle-11-s390x","installer_updates":false,"name":"SLE11-SP1-SMT-Updates"}],"online_predecessor_ids":[],"product_class":"SLESMT","eula_url":"","arch":null,"free":true,"description":null,"shortname":null,"extensions":[],"identifier":"sle-smt","release_stage":"released","id":1192,"friendly_version":"11 SP1","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Subscription Management Tool","former_identifier":"sle-smt","release_type":null,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Subscription Management Tool 11 SP1","recommended":false,"version":"11.1"}]},{"friendly_version":"11 SP1","extensions":[{"version":"11.1","recommended":false,"former_identifier":"sle-hae","release_type":null,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise High Availability Extension 11 SP1 ppc64","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise High Availability Extension","friendly_version":"11 SP1","id":1046,"release_stage":"released","identifier":"sle-hae","extensions":[],"free":false,"shortname":null,"description":null,"arch":"ppc64","eula_url":"","repositories":[{"name":"SLE11-HAE-SP1-Pool","installer_updates":false,"description":"SLE11-HAE-SP1-Pool for sle-11-ppc64","id":1043,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP1-Pool/sle-11-ppc64/","autorefresh":true,"distro_target":"sle-11-ppc64"},{"description":"SLE11-HAE-SP1-Updates for sle-11-ppc64","name":"SLE11-HAE-SP1-Updates","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP1-Updates/sle-11-ppc64/","autorefresh":true,"distro_target":"sle-11-ppc64","id":1044,"enabled":true}],"online_predecessor_ids":[],"product_class":"SLE-HAE-PPC","predecessor_ids":[],"product_type":"extension","cpe":null},{"extensions":[],"identifier":"sle-hae-SP2-migration","release_stage":"released","id":1048,"friendly_version":"11 SP1","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise High Availability Extension","former_identifier":"sle-hae-SP2-migration","release_type":null,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise High Availability Extension 11 SP1 ppc64 (Migration)","recommended":false,"version":"11.1","product_type":"extension","cpe":null,"predecessor_ids":[],"repositories":[{"installer_updates":false,"name":"SLE11-HAE-SP2-Pool","description":"SLE11-HAE-SP2-Pool for sle-11-ppc64","enabled":true,"id":1041,"distro_target":"sle-11-ppc64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP2-Pool/sle-11-ppc64/"},{"url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP2-Updates/sle-11-ppc64/","distro_target":"sle-11-ppc64","autorefresh":true,"id":1042,"enabled":true,"description":"SLE11-HAE-SP2-Updates for sle-11-ppc64","installer_updates":false,"name":"SLE11-HAE-SP2-Updates"}],"online_predecessor_ids":[],"product_class":"SLE-HAE-PPC","eula_url":"","arch":"ppc64","free":false,"description":null,"shortname":null}],"release_stage":"released","identifier":"SUSE_SLES-SP2-migration","id":941,"recommended":false,"version":"11.1","name":"SUSE Linux Enterprise Server","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Server 11 SP1 ppc64 (Migration)","former_identifier":"SUSE_SLES-SP2-migration","release_type":null,"predecessor_ids":[],"repositories":[{"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Updates/sle-11-ppc64/","autorefresh":true,"distro_target":"sle-11-ppc64","id":924,"enabled":false,"description":"SLE11-SP1-Debuginfo-Updates for sle-11-ppc64","name":"SLE11-SP1-Debuginfo-Updates","installer_updates":false},{"name":"SLE11-SP1-Debuginfo-Pool","installer_updates":false,"description":"SLE11-SP1-Debuginfo-Pool for sle-11-ppc64","id":925,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Pool/sle-11-ppc64/","autorefresh":true,"distro_target":"sle-11-ppc64"},{"enabled":false,"id":926,"autorefresh":true,"distro_target":"sle-11-ppc64","url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-Debuginfo-Updates/sle-11-ppc64/","name":"SLE11-SP2-Debuginfo-Updates","installer_updates":false,"description":"SLE11-SP2-Debuginfo-Updates for sle-11-ppc64"},{"description":"SLES11-SP2-Core for sle-11-ppc64","name":"SLES11-SP2-Core","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP2-Core/sle-11-ppc64/","autorefresh":true,"distro_target":"sle-11-ppc64","id":927,"enabled":true},{"enabled":true,"id":928,"distro_target":"sle-11-ppc64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP2-Updates/sle-11-ppc64/","installer_updates":false,"name":"SLES11-SP2-Updates","description":"SLES11-SP2-Updates for sle-11-ppc64"},{"installer_updates":false,"name":"SLE11-WebYaST-SP2-Pool","description":"SLE11-WebYaST-SP2-Pool for sle-11-ppc64","enabled":false,"id":929,"distro_target":"sle-11-ppc64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-WebYaST-SP2-Pool/sle-11-ppc64/"},{"id":930,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-Debuginfo-Core/sle-11-ppc64/","autorefresh":true,"distro_target":"sle-11-ppc64","name":"SLE11-SP2-Debuginfo-Core","installer_updates":false,"description":"SLE11-SP2-Debuginfo-Core for sle-11-ppc64"},{"distro_target":"sle-11-ppc64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-WebYaST-SP2-Updates/sle-11-ppc64/","enabled":false,"id":931,"description":"SLE11-WebYaST-SP2-Updates for sle-11-ppc64","installer_updates":false,"name":"SLE11-WebYaST-SP2-Updates"}],"online_predecessor_ids":[],"product_class":"SLES-PPC","cpe":null,"product_type":"base","shortname":null,"description":null,"free":false,"eula_url":"","arch":"ppc64"},{"product_type":"base","cpe":null,"predecessor_ids":[],"product_class":"SLES-PPC","online_predecessor_ids":[],"repositories":[{"url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-Pool/sle-11-ppc64/","autorefresh":true,"distro_target":"sle-11-ppc64","id":919,"enabled":true,"description":"SLES11-SP1-Pool for sle-11-ppc64","name":"SLES11-SP1-Pool","installer_updates":false}],"eula_url":"","arch":"ppc","free":false,"shortname":null,"description":null,"extensions":[{"friendly_version":"1.0","release_stage":"released","id":836,"identifier":"sle-11-WebYaST","extensions":[],"version":"1.0","recommended":false,"former_identifier":"sle-11-WebYaST","release_type":null,"migration_extra":false,"friendly_name":"SUSE WebYaST 1.0","offline_predecessor_ids":[],"name":"SUSE WebYaST","online_predecessor_ids":[],"repositories":[{"name":"SLE11-WebYaST-1.0-Updates","installer_updates":false,"description":"SLE11-WebYaST-1.0-Updates for sle-11-i586","enabled":true,"id":829,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-WebYaST-1.0-Updates/sle-11-i586/"},{"description":"SLE11-WebYaST-1.0-Pool for sle-11-ia64","installer_updates":false,"name":"SLE11-WebYaST-1.0-Pool","distro_target":"sle-11-ia64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-WebYaST-1.0-Pool/sle-11-ia64/","enabled":false,"id":830},{"enabled":true,"id":831,"distro_target":"sle-11-ppc64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-WebYaST-1.0-Updates/sle-11-ppc64/","installer_updates":false,"name":"SLE11-WebYaST-1.0-Updates","description":"SLE11-WebYaST-1.0-Updates for sle-11-ppc64"},{"description":"SLE11-WebYaST-1.0-Pool for sle-11-i586","name":"SLE11-WebYaST-1.0-Pool","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-WebYaST-1.0-Pool/sle-11-i586/","enabled":false,"id":832},{"distro_target":"sle-11-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-WebYaST-1.0-Pool/sle-11-s390x/","enabled":false,"id":833,"description":"SLE11-WebYaST-1.0-Pool for sle-11-s390x","installer_updates":false,"name":"SLE11-WebYaST-1.0-Pool"},{"name":"SLE11-WebYaST-1.0-Updates","installer_updates":false,"description":"SLE11-WebYaST-1.0-Updates for sle-11-s390x","id":834,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-WebYaST-1.0-Updates/sle-11-s390x/","autorefresh":true,"distro_target":"sle-11-s390x"},{"id":835,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-WebYaST-1.0-Updates/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64","name":"SLE11-WebYaST-1.0-Updates","installer_updates":false,"description":"SLE11-WebYaST-1.0-Updates for sle-11-x86_64"},{"enabled":false,"id":836,"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE11-WebYaST-1.0-Pool/sle-11-x86_64/","name":"SLE11-WebYaST-1.0-Pool","installer_updates":false,"description":"SLE11-WebYaST-1.0-Pool for sle-11-x86_64"},{"description":"SLE11-WebYaST-1.0-Updates for sle-11-ia64","name":"SLE11-WebYaST-1.0-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-ia64","url":"https://updates.suse.com/repo/$RCE/SLE11-WebYaST-1.0-Updates/sle-11-ia64/","enabled":true,"id":837},{"distro_target":"sle-11-ppc64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-WebYaST-1.0-Pool/sle-11-ppc64/","enabled":false,"id":838,"description":"SLE11-WebYaST-1.0-Pool for sle-11-ppc64","installer_updates":false,"name":"SLE11-WebYaST-1.0-Pool"}],"product_class":"WEBYAST","predecessor_ids":[],"product_type":"extension","cpe":null,"free":true,"description":null,"shortname":null,"arch":null,"eula_url":""},{"arch":"ppc","eula_url":"","shortname":null,"description":null,"free":false,"cpe":null,"product_type":"extension","online_predecessor_ids":[],"repositories":[{"enabled":true,"id":1043,"autorefresh":true,"distro_target":"sle-11-ppc64","url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP1-Pool/sle-11-ppc64/","name":"SLE11-HAE-SP1-Pool","installer_updates":false,"description":"SLE11-HAE-SP1-Pool for sle-11-ppc64"}],"product_class":"SLE-HAE-PPC","predecessor_ids":[],"friendly_name":"SUSE Linux Enterprise High Availability Extension 11 ppc (Migration)","migration_extra":false,"release_type":null,"former_identifier":"sle-hae-SP1-migration","name":"SUSE Linux Enterprise High Availability Extension","offline_predecessor_ids":[],"version":"11","recommended":false,"id":1049,"release_stage":"released","identifier":"sle-hae-SP1-migration","extensions":[],"friendly_version":"11"}],"release_stage":"released","id":942,"identifier":"SUSE_SLES-SP1-migration","friendly_version":"11","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Server","release_type":null,"former_identifier":"SUSE_SLES-SP1-migration","migration_extra":false,"friendly_name":"SUSE Linux Enterprise Server 11 ppc (Migration)","recommended":false,"version":"11"},{"cpe":"cpe:/o:suse:suse_sles:11","product_type":"base","online_predecessor_ids":[],"repositories":[{"description":"SLES11-Extras for sle-11-ppc64","installer_updates":false,"name":"SLES11-Extras","distro_target":"sle-11-ppc64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-Extras/sle-11-ppc64/","enabled":false,"id":920},{"installer_updates":false,"name":"SLE11-Debuginfo-Pool","description":"SLE11-Debuginfo-Pool for sle-11-ppc64","enabled":false,"id":932,"distro_target":"sle-11-ppc64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-Debuginfo-Pool/sle-11-ppc64/"},{"installer_updates":false,"name":"SLES11-Pool","description":"SLES11-Pool for sle-11-ppc64","id":933,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLES11-Pool/sle-11-ppc64/","distro_target":"sle-11-ppc64","autorefresh":true},{"description":"SLE11-Debuginfo-Updates for sle-11-ppc64","installer_updates":false,"name":"SLE11-Debuginfo-Updates","url":"https://updates.suse.com/repo/$RCE/SLE11-Debuginfo-Updates/sle-11-ppc64/","distro_target":"sle-11-ppc64","autorefresh":true,"id":934,"enabled":false},{"enabled":true,"id":935,"autorefresh":true,"distro_target":"sle-11-ppc64","url":"https://updates.suse.com/repo/$RCE/SLES11-Updates/sle-11-ppc64/","name":"SLES11-Updates","installer_updates":false,"description":"SLES11-Updates for sle-11-ppc64"}],"product_class":"SLES-PPC","predecessor_ids":[],"arch":"ppc64","eula_url":"","description":null,"shortname":null,"free":false,"release_stage":"released","id":943,"identifier":"SUSE_SLES","extensions":[{"predecessor_ids":[],"online_predecessor_ids":[],"repositories":[{"id":829,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-WebYaST-1.0-Updates/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","name":"SLE11-WebYaST-1.0-Updates","installer_updates":false,"description":"SLE11-WebYaST-1.0-Updates for sle-11-i586"},{"description":"SLE11-WebYaST-1.0-Pool for sle-11-ia64","name":"SLE11-WebYaST-1.0-Pool","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-ia64","url":"https://updates.suse.com/repo/$RCE/SLE11-WebYaST-1.0-Pool/sle-11-ia64/","enabled":false,"id":830},{"autorefresh":true,"distro_target":"sle-11-ppc64","url":"https://updates.suse.com/repo/$RCE/SLE11-WebYaST-1.0-Updates/sle-11-ppc64/","enabled":true,"id":831,"description":"SLE11-WebYaST-1.0-Updates for sle-11-ppc64","name":"SLE11-WebYaST-1.0-Updates","installer_updates":false},{"name":"SLE11-WebYaST-1.0-Pool","installer_updates":false,"description":"SLE11-WebYaST-1.0-Pool for sle-11-i586","enabled":false,"id":832,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-WebYaST-1.0-Pool/sle-11-i586/"},{"url":"https://updates.suse.com/repo/$RCE/SLE11-WebYaST-1.0-Pool/sle-11-s390x/","autorefresh":true,"distro_target":"sle-11-s390x","id":833,"enabled":false,"description":"SLE11-WebYaST-1.0-Pool for sle-11-s390x","name":"SLE11-WebYaST-1.0-Pool","installer_updates":false},{"description":"SLE11-WebYaST-1.0-Updates for sle-11-s390x","name":"SLE11-WebYaST-1.0-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-s390x","url":"https://updates.suse.com/repo/$RCE/SLE11-WebYaST-1.0-Updates/sle-11-s390x/","enabled":true,"id":834},{"id":835,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-WebYaST-1.0-Updates/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true,"installer_updates":false,"name":"SLE11-WebYaST-1.0-Updates","description":"SLE11-WebYaST-1.0-Updates for sle-11-x86_64"},{"enabled":false,"id":836,"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE11-WebYaST-1.0-Pool/sle-11-x86_64/","name":"SLE11-WebYaST-1.0-Pool","installer_updates":false,"description":"SLE11-WebYaST-1.0-Pool for sle-11-x86_64"},{"autorefresh":true,"distro_target":"sle-11-ia64","url":"https://updates.suse.com/repo/$RCE/SLE11-WebYaST-1.0-Updates/sle-11-ia64/","enabled":true,"id":837,"description":"SLE11-WebYaST-1.0-Updates for sle-11-ia64","name":"SLE11-WebYaST-1.0-Updates","installer_updates":false},{"description":"SLE11-WebYaST-1.0-Pool for sle-11-ppc64","name":"SLE11-WebYaST-1.0-Pool","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-WebYaST-1.0-Pool/sle-11-ppc64/","autorefresh":true,"distro_target":"sle-11-ppc64","id":838,"enabled":false}],"product_class":"WEBYAST","cpe":null,"product_type":"extension","description":null,"shortname":null,"free":true,"eula_url":"","arch":null,"friendly_version":"1.0","extensions":[],"id":836,"release_stage":"released","identifier":"sle-11-WebYaST","recommended":false,"version":"1.0","name":"SUSE WebYaST","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"SUSE WebYaST 1.0","former_identifier":"sle-11-WebYaST","release_type":null},{"eula_url":"","arch":"ppc64","shortname":null,"description":null,"free":false,"cpe":null,"product_type":"extension","predecessor_ids":[],"repositories":[{"autorefresh":true,"distro_target":"sle-11-ppc64","url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP1-Pool/sle-11-ppc64/","enabled":true,"id":1043,"description":"SLE11-HAE-SP1-Pool for sle-11-ppc64","name":"SLE11-HAE-SP1-Pool","installer_updates":false}],"online_predecessor_ids":[],"product_class":"SLE-HAE-PPC","name":"SUSE Linux Enterprise High Availability Extension","offline_predecessor_ids":[],"friendly_name":"SUSE Linux Enterprise High Availability Extension 11 ppc64 (Migration)","migration_extra":false,"release_type":null,"former_identifier":"sle-hae-SP1-migration","recommended":false,"version":"11","extensions":[],"release_stage":"released","id":1043,"identifier":"sle-hae-SP1-migration","friendly_version":"11"},{"product_type":"extension","cpe":null,"online_predecessor_ids":[],"repositories":[{"description":"SLE11-HAE-Updates for sle-11-ppc64","installer_updates":false,"name":"SLE11-HAE-Updates","url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-Updates/sle-11-ppc64/","distro_target":"sle-11-ppc64","autorefresh":true,"id":1047,"enabled":true},{"installer_updates":false,"name":"SLE11-HAE-Pool","description":"SLE11-HAE-Pool for sle-11-ppc64","id":1048,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-Pool/sle-11-ppc64/","distro_target":"sle-11-ppc64","autorefresh":true}],"product_class":"SLE-HAE-PPC","predecessor_ids":[],"arch":"ppc64","eula_url":"","free":false,"shortname":null,"description":null,"release_stage":"released","identifier":"sle-hae","id":1045,"extensions":[],"friendly_version":"11","release_type":null,"former_identifier":"sle-hae","migration_extra":false,"friendly_name":"SUSE Linux Enterprise High Availability Extension 11 ppc64","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise High Availability Extension","version":"11","recommended":false},{"version":"11","recommended":false,"friendly_name":"SUSE Linux Enterprise Software Development Kit 11","migration_extra":false,"former_identifier":"sle-sdk","release_type":null,"name":"SUSE Linux Enterprise Software Development Kit","offline_predecessor_ids":[],"friendly_version":"11","identifier":"sle-sdk","release_stage":"released","id":1158,"extensions":[],"shortname":null,"description":null,"free":true,"arch":null,"eula_url":"","online_predecessor_ids":[],"repositories":[{"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-Updates/sle-11-ppc64/","distro_target":"sle-11-ppc64","autorefresh":true,"id":1247,"enabled":true,"description":"SLE11-SDK-Updates for sle-11-ppc64","installer_updates":false,"name":"SLE11-SDK-Updates"},{"installer_updates":false,"name":"SLE11-SDK-Pool","description":"SLE11-SDK-Pool for sle-11-s390x","enabled":false,"id":1248,"distro_target":"sle-11-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-Pool/sle-11-s390x/"},{"installer_updates":false,"name":"SLE11-SDK-Updates","description":"SLE11-SDK-Updates for sle-11-x86_64","id":1249,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-Updates/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true},{"description":"SLE11-SDK-Pool for sle-11-i586","name":"SLE11-SDK-Pool","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-Pool/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","id":1250,"enabled":false},{"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-Pool/sle-11-x86_64/","enabled":false,"id":1251,"description":"SLE11-SDK-Pool for sle-11-x86_64","name":"SLE11-SDK-Pool","installer_updates":false},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-Pool/sle-11-ppc64/","autorefresh":true,"distro_target":"sle-11-ppc64","id":1252,"enabled":false,"description":"SLE11-SDK-Pool for sle-11-ppc64","name":"SLE11-SDK-Pool","installer_updates":false},{"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-Updates/sle-11-i586/","enabled":true,"id":1253,"description":"SLE11-SDK-Updates for sle-11-i586","name":"SLE11-SDK-Updates","installer_updates":false},{"name":"SLE11-SDK-Pool","installer_updates":false,"description":"SLE11-SDK-Pool for sle-11-ia64","enabled":false,"id":1254,"autorefresh":true,"distro_target":"sle-11-ia64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-Pool/sle-11-ia64/"},{"name":"SLE11-SDK-Updates","installer_updates":false,"description":"SLE11-SDK-Updates for sle-11-s390x","id":1255,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-Updates/sle-11-s390x/","autorefresh":true,"distro_target":"sle-11-s390x"},{"name":"SLE11-SDK-Updates","installer_updates":false,"description":"SLE11-SDK-Updates for sle-11-ia64","enabled":true,"id":1256,"autorefresh":true,"distro_target":"sle-11-ia64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-Updates/sle-11-ia64/"}],"product_class":"SLE-SDK","predecessor_ids":[],"cpe":null,"product_type":"extension"},{"product_type":"extension","cpe":null,"predecessor_ids":[],"online_predecessor_ids":[],"product_class":"SLE-SDK","repositories":[{"name":"SLE11-SDK-SP1-Pool","installer_updates":false,"description":"SLE11-SDK-SP1-Pool for sle-11-ia64","id":1258,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-ia64/","autorefresh":true,"distro_target":"sle-11-ia64"},{"id":1259,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-s390x/","distro_target":"sle-11-s390x","autorefresh":true,"installer_updates":false,"name":"SLE11-SDK-SP1-Pool","description":"SLE11-SDK-SP1-Pool for sle-11-s390x"},{"enabled":true,"id":1261,"autorefresh":true,"distro_target":"sle-11-ppc64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-ppc64/","name":"SLE11-SDK-SP1-Pool","installer_updates":false,"description":"SLE11-SDK-SP1-Pool for sle-11-ppc64"},{"description":"SLE11-SDK-SP1-Pool for sle-11-i586","installer_updates":false,"name":"SLE11-SDK-SP1-Pool","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true,"id":1263,"enabled":true},{"description":"SLE11-SDK-SP1-Pool for sle-11-x86_64","name":"SLE11-SDK-SP1-Pool","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-x86_64/","enabled":true,"id":1264}],"eula_url":"","arch":null,"free":true,"shortname":null,"description":null,"extensions":[],"identifier":"sle-sdk-SP1-migration","release_stage":"released","id":1162,"friendly_version":"11","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Software Development Kit","former_identifier":"sle-sdk-SP1-migration","release_type":null,"friendly_name":"SUSE Linux Enterprise Software Development Kit 11 (Migration)","migration_extra":false,"recommended":false,"version":"11"},{"predecessor_ids":[],"product_class":"SLESMT","online_predecessor_ids":[],"repositories":[{"name":"SLE11-SMT-SP2-Pool","installer_updates":false,"description":"SLE11-SMT-SP2-Pool for sle-11-x86_64","enabled":true,"id":1392,"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP2-Pool/sle-11-x86_64/"},{"name":"SLE11-SMT-SP2-Pool","installer_updates":false,"description":"SLE11-SMT-SP2-Pool for sle-11-i586","id":1394,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP2-Pool/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586"},{"installer_updates":false,"name":"SLE11-SMT-SP2-Pool","description":"SLE11-SMT-SP2-Pool for sle-11-s390x","enabled":true,"id":1396,"distro_target":"sle-11-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP2-Pool/sle-11-s390x/"}],"product_type":"extension","cpe":null,"free":true,"description":null,"shortname":null,"eula_url":"","arch":null,"friendly_version":"11","extensions":[],"identifier":"sle-smt-SP2-migration","release_stage":"released","id":1194,"recommended":false,"version":"11","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Subscription Management Tool","release_type":null,"former_identifier":"sle-smt-SP2-migration","migration_extra":false,"friendly_name":"SUSE Linux Enterprise Subscription Management Tool 11 (Migration)"},{"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Subscription Management Tool 11","former_identifier":"sle-smt","release_type":null,"name":"SUSE Linux Enterprise Subscription Management Tool","offline_predecessor_ids":[],"version":"11","recommended":false,"release_stage":"released","identifier":"sle-smt","id":1196,"extensions":[],"friendly_version":"11","arch":null,"eula_url":"","shortname":null,"description":null,"free":true,"cpe":null,"product_type":"extension","online_predecessor_ids":[],"product_class":"SLESMT","repositories":[{"description":"SLE11-SMT-Updates for sle-11-s390x","name":"SLE11-SMT-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-s390x","url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-Updates/sle-11-s390x/","enabled":true,"id":1400},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-Updates/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64","id":1401,"enabled":true,"description":"SLE11-SMT-Updates for sle-11-x86_64","name":"SLE11-SMT-Updates","installer_updates":false},{"enabled":true,"id":1402,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-Updates/sle-11-i586/","name":"SLE11-SMT-Updates","installer_updates":false,"description":"SLE11-SMT-Updates for sle-11-i586"}],"predecessor_ids":[]}],"friendly_version":"11","friendly_name":"SUSE Linux Enterprise Server 11 ppc64","migration_extra":false,"release_type":null,"former_identifier":"SUSE_SLES","name":"SUSE Linux Enterprise Server","offline_predecessor_ids":[],"version":"11","recommended":false},{"id":944,"release_stage":"released","identifier":"SUSE_SLES-SP1-migration","extensions":[{"eula_url":"","arch":null,"description":null,"shortname":null,"free":true,"cpe":null,"product_type":"extension","predecessor_ids":[],"online_predecessor_ids":[],"repositories":[{"description":"SLE11-WebYaST-1.0-Updates for sle-11-i586","name":"SLE11-WebYaST-1.0-Updates","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-WebYaST-1.0-Updates/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","id":829,"enabled":true},{"description":"SLE11-WebYaST-1.0-Pool for sle-11-ia64","installer_updates":false,"name":"SLE11-WebYaST-1.0-Pool","url":"https://updates.suse.com/repo/$RCE/SLE11-WebYaST-1.0-Pool/sle-11-ia64/","distro_target":"sle-11-ia64","autorefresh":true,"id":830,"enabled":false},{"description":"SLE11-WebYaST-1.0-Updates for sle-11-ppc64","name":"SLE11-WebYaST-1.0-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-ppc64","url":"https://updates.suse.com/repo/$RCE/SLE11-WebYaST-1.0-Updates/sle-11-ppc64/","enabled":true,"id":831},{"enabled":false,"id":832,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-WebYaST-1.0-Pool/sle-11-i586/","name":"SLE11-WebYaST-1.0-Pool","installer_updates":false,"description":"SLE11-WebYaST-1.0-Pool for sle-11-i586"},{"url":"https://updates.suse.com/repo/$RCE/SLE11-WebYaST-1.0-Pool/sle-11-s390x/","autorefresh":true,"distro_target":"sle-11-s390x","id":833,"enabled":false,"description":"SLE11-WebYaST-1.0-Pool for sle-11-s390x","name":"SLE11-WebYaST-1.0-Pool","installer_updates":false},{"enabled":true,"id":834,"distro_target":"sle-11-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-WebYaST-1.0-Updates/sle-11-s390x/","installer_updates":false,"name":"SLE11-WebYaST-1.0-Updates","description":"SLE11-WebYaST-1.0-Updates for sle-11-s390x"},{"installer_updates":false,"name":"SLE11-WebYaST-1.0-Updates","description":"SLE11-WebYaST-1.0-Updates for sle-11-x86_64","id":835,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-WebYaST-1.0-Updates/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true},{"url":"https://updates.suse.com/repo/$RCE/SLE11-WebYaST-1.0-Pool/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64","id":836,"enabled":false,"description":"SLE11-WebYaST-1.0-Pool for sle-11-x86_64","name":"SLE11-WebYaST-1.0-Pool","installer_updates":false},{"id":837,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-WebYaST-1.0-Updates/sle-11-ia64/","distro_target":"sle-11-ia64","autorefresh":true,"installer_updates":false,"name":"SLE11-WebYaST-1.0-Updates","description":"SLE11-WebYaST-1.0-Updates for sle-11-ia64"},{"installer_updates":false,"name":"SLE11-WebYaST-1.0-Pool","description":"SLE11-WebYaST-1.0-Pool for sle-11-ppc64","enabled":false,"id":838,"distro_target":"sle-11-ppc64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-WebYaST-1.0-Pool/sle-11-ppc64/"}],"product_class":"WEBYAST","name":"SUSE WebYaST","offline_predecessor_ids":[],"friendly_name":"SUSE WebYaST 1.0","migration_extra":false,"release_type":null,"former_identifier":"sle-11-WebYaST","recommended":false,"version":"1.0","extensions":[],"identifier":"sle-11-WebYaST","release_stage":"released","id":836,"friendly_version":"1.0"},{"friendly_version":"11","extensions":[],"identifier":"sle-hae-SP1-migration","release_stage":"released","id":1043,"recommended":false,"version":"11","name":"SUSE Linux Enterprise High Availability Extension","offline_predecessor_ids":[],"friendly_name":"SUSE Linux Enterprise High Availability Extension 11 ppc64 (Migration)","migration_extra":false,"former_identifier":"sle-hae-SP1-migration","release_type":null,"predecessor_ids":[],"online_predecessor_ids":[],"product_class":"SLE-HAE-PPC","repositories":[{"id":1043,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP1-Pool/sle-11-ppc64/","autorefresh":true,"distro_target":"sle-11-ppc64","name":"SLE11-HAE-SP1-Pool","installer_updates":false,"description":"SLE11-HAE-SP1-Pool for sle-11-ppc64"}],"cpe":null,"product_type":"extension","description":null,"shortname":null,"free":false,"eula_url":"","arch":"ppc64"},{"cpe":null,"product_type":"extension","product_class":"SLE-HAE-PPC","online_predecessor_ids":[],"repositories":[{"enabled":true,"id":1047,"distro_target":"sle-11-ppc64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-Updates/sle-11-ppc64/","installer_updates":false,"name":"SLE11-HAE-Updates","description":"SLE11-HAE-Updates for sle-11-ppc64"},{"description":"SLE11-HAE-Pool for sle-11-ppc64","installer_updates":false,"name":"SLE11-HAE-Pool","distro_target":"sle-11-ppc64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-Pool/sle-11-ppc64/","enabled":false,"id":1048}],"predecessor_ids":[],"arch":"ppc64","eula_url":"","shortname":null,"description":null,"free":false,"release_stage":"released","id":1045,"identifier":"sle-hae","extensions":[],"friendly_version":"11","friendly_name":"SUSE Linux Enterprise High Availability Extension 11 ppc64","migration_extra":false,"former_identifier":"sle-hae","release_type":null,"name":"SUSE Linux Enterprise High Availability Extension","offline_predecessor_ids":[],"version":"11","recommended":false}],"friendly_version":"11","release_type":null,"former_identifier":"SUSE_SLES-SP1-migration","migration_extra":false,"friendly_name":"SUSE Linux Enterprise Server 11 ppc64 (Migration)","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Server","version":"11","recommended":false,"product_type":"base","cpe":null,"repositories":[{"distro_target":"sle-11-ppc64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-Pool/sle-11-ppc64/","enabled":true,"id":919,"description":"SLES11-SP1-Pool for sle-11-ppc64","installer_updates":false,"name":"SLES11-SP1-Pool"}],"online_predecessor_ids":[],"product_class":"SLES-PPC","predecessor_ids":[],"arch":"ppc64","eula_url":"","free":false,"shortname":null,"description":null},{"recommended":false,"version":"11.2","name":"SUSE Linux Enterprise Server","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Server 11 SP2 ppc (Migration)","former_identifier":"SUSE_SLES-SP3-migration","release_type":null,"friendly_version":"11 SP2","extensions":[{"id":1047,"release_stage":"released","identifier":"sle-hae","extensions":[],"friendly_version":"11 SP2","friendly_name":"SUSE Linux Enterprise High Availability Extension 11 SP2 ppc","migration_extra":false,"release_type":null,"former_identifier":"sle-hae","name":"SUSE Linux Enterprise High Availability Extension","offline_predecessor_ids":[],"version":"11.2","recommended":false,"cpe":null,"product_type":"extension","online_predecessor_ids":[],"repositories":[{"installer_updates":false,"name":"SLE11-HAE-SP2-Pool","description":"SLE11-HAE-SP2-Pool for sle-11-ppc64","enabled":true,"id":1041,"distro_target":"sle-11-ppc64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP2-Pool/sle-11-ppc64/"},{"enabled":true,"id":1042,"autorefresh":true,"distro_target":"sle-11-ppc64","url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP2-Updates/sle-11-ppc64/","name":"SLE11-HAE-SP2-Updates","installer_updates":false,"description":"SLE11-HAE-SP2-Updates for sle-11-ppc64"}],"product_class":"SLE-HAE-PPC","predecessor_ids":[],"arch":"ppc","eula_url":"","shortname":null,"description":null,"free":false}],"id":945,"release_stage":"released","identifier":"SUSE_SLES-SP3-migration","description":null,"shortname":null,"free":false,"eula_url":"","arch":"ppc","predecessor_ids":[],"product_class":"SLES-PPC","online_predecessor_ids":[],"repositories":[{"installer_updates":false,"name":"SLES11-SP1-Pool","description":"SLES11-SP1-Pool for sle-11-ppc64","enabled":false,"id":919,"distro_target":"sle-11-ppc64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-Pool/sle-11-ppc64/"},{"enabled":false,"id":920,"autorefresh":true,"distro_target":"sle-11-ppc64","url":"https://updates.suse.com/repo/$RCE/SLES11-Extras/sle-11-ppc64/","name":"SLES11-Extras","installer_updates":false,"description":"SLES11-Extras for sle-11-ppc64"},{"installer_updates":false,"name":"SLES11-SP1-Updates","description":"SLES11-SP1-Updates for sle-11-ppc64","enabled":false,"id":922,"distro_target":"sle-11-ppc64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-Updates/sle-11-ppc64/"},{"installer_updates":false,"name":"SLE11-SP1-Debuginfo-Updates","description":"SLE11-SP1-Debuginfo-Updates for sle-11-ppc64","id":924,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Updates/sle-11-ppc64/","distro_target":"sle-11-ppc64","autorefresh":true},{"description":"SLE11-SP1-Debuginfo-Pool for sle-11-ppc64","installer_updates":false,"name":"SLE11-SP1-Debuginfo-Pool","distro_target":"sle-11-ppc64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Pool/sle-11-ppc64/","enabled":false,"id":925},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-Debuginfo-Updates/sle-11-ppc64/","autorefresh":true,"distro_target":"sle-11-ppc64","id":926,"enabled":false,"description":"SLE11-SP2-Debuginfo-Updates for sle-11-ppc64","name":"SLE11-SP2-Debuginfo-Updates","installer_updates":false},{"name":"SLES11-SP2-Core","installer_updates":false,"description":"SLES11-SP2-Core for sle-11-ppc64","enabled":false,"id":927,"autorefresh":true,"distro_target":"sle-11-ppc64","url":"https://updates.suse.com/repo/$RCE/SLES11-SP2-Core/sle-11-ppc64/"},{"enabled":false,"id":928,"distro_target":"sle-11-ppc64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP2-Updates/sle-11-ppc64/","installer_updates":false,"name":"SLES11-SP2-Updates","description":"SLES11-SP2-Updates for sle-11-ppc64"},{"installer_updates":false,"name":"SLE11-SP2-Debuginfo-Core","description":"SLE11-SP2-Debuginfo-Core for sle-11-ppc64","enabled":false,"id":930,"distro_target":"sle-11-ppc64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-Debuginfo-Core/sle-11-ppc64/"},{"name":"SLES11-SP3-Updates","installer_updates":false,"description":"SLES11-SP3-Updates for sle-11-ppc64","enabled":true,"id":936,"autorefresh":true,"distro_target":"sle-11-ppc64","url":"https://updates.suse.com/repo/$RCE/SLES11-SP3-Updates/sle-11-ppc64/"},{"name":"SLE11-SP3-Debuginfo-Pool","installer_updates":false,"description":"SLE11-SP3-Debuginfo-Pool for sle-11-ppc64","enabled":false,"id":937,"autorefresh":true,"distro_target":"sle-11-ppc64","url":"https://updates.suse.com/repo/$RCE/SLE11-SP3-Debuginfo-Pool/sle-11-ppc64/"},{"enabled":false,"id":938,"distro_target":"sle-11-ppc64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP3-Extension-Store/sle-11-ppc64/","installer_updates":false,"name":"SLES11-SP3-Extension-Store","description":"SLES11-SP3-Extension-Store for sle-11-ppc64"},{"id":939,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP3-Pool/sle-11-ppc64/","distro_target":"sle-11-ppc64","autorefresh":true,"installer_updates":false,"name":"SLES11-SP3-Pool","description":"SLES11-SP3-Pool for sle-11-ppc64"},{"installer_updates":false,"name":"SLES11-SP2-Extension-Store","description":"SLES11-SP2-Extension-Store for sle-11-ppc64","enabled":true,"id":940,"distro_target":"sle-11-ppc64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP2-Extension-Store/sle-11-ppc64/"},{"description":"SLE11-SP3-Debuginfo-Updates for sle-11-ppc64","installer_updates":false,"name":"SLE11-SP3-Debuginfo-Updates","distro_target":"sle-11-ppc64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP3-Debuginfo-Updates/sle-11-ppc64/","enabled":false,"id":941}],"cpe":null,"product_type":"base"},{"free":false,"shortname":null,"description":null,"eula_url":"","arch":"ppc64","predecessor_ids":[],"online_predecessor_ids":[],"product_class":"SLES-PPC","repositories":[{"description":"SLES11-SP1-Pool for sle-11-ppc64","name":"SLES11-SP1-Pool","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-ppc64","url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-Pool/sle-11-ppc64/","enabled":true,"id":919},{"name":"SLES11-Extras","installer_updates":false,"description":"SLES11-Extras for sle-11-ppc64","id":920,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLES11-Extras/sle-11-ppc64/","autorefresh":true,"distro_target":"sle-11-ppc64"},{"name":"SLES11-SP1-Updates","installer_updates":false,"description":"SLES11-SP1-Updates for sle-11-ppc64","enabled":true,"id":922,"autorefresh":true,"distro_target":"sle-11-ppc64","url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-Updates/sle-11-ppc64/"},{"id":924,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Updates/sle-11-ppc64/","autorefresh":true,"distro_target":"sle-11-ppc64","name":"SLE11-SP1-Debuginfo-Updates","installer_updates":false,"description":"SLE11-SP1-Debuginfo-Updates for sle-11-ppc64"},{"installer_updates":false,"name":"SLE11-SP1-Debuginfo-Pool","description":"SLE11-SP1-Debuginfo-Pool for sle-11-ppc64","id":925,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Pool/sle-11-ppc64/","distro_target":"sle-11-ppc64","autorefresh":true},{"id":926,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-Debuginfo-Updates/sle-11-ppc64/","autorefresh":true,"distro_target":"sle-11-ppc64","name":"SLE11-SP2-Debuginfo-Updates","installer_updates":false,"description":"SLE11-SP2-Debuginfo-Updates for sle-11-ppc64"},{"description":"SLES11-SP2-Core for sle-11-ppc64","name":"SLES11-SP2-Core","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP2-Core/sle-11-ppc64/","autorefresh":true,"distro_target":"sle-11-ppc64","id":927,"enabled":true},{"description":"SLES11-SP2-Updates for sle-11-ppc64","installer_updates":false,"name":"SLES11-SP2-Updates","distro_target":"sle-11-ppc64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP2-Updates/sle-11-ppc64/","enabled":true,"id":928},{"description":"SLE11-WebYaST-SP2-Pool for sle-11-ppc64","name":"SLE11-WebYaST-SP2-Pool","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-WebYaST-SP2-Pool/sle-11-ppc64/","autorefresh":true,"distro_target":"sle-11-ppc64","id":929,"enabled":false},{"name":"SLE11-SP2-Debuginfo-Core","installer_updates":false,"description":"SLE11-SP2-Debuginfo-Core for sle-11-ppc64","id":930,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-Debuginfo-Core/sle-11-ppc64/","autorefresh":true,"distro_target":"sle-11-ppc64"},{"name":"SLE11-WebYaST-SP2-Updates","installer_updates":false,"description":"SLE11-WebYaST-SP2-Updates for sle-11-ppc64","id":931,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-WebYaST-SP2-Updates/sle-11-ppc64/","autorefresh":true,"distro_target":"sle-11-ppc64"},{"description":"SLES11-SP2-Extension-Store for sle-11-ppc64","installer_updates":false,"name":"SLES11-SP2-Extension-Store","url":"https://updates.suse.com/repo/$RCE/SLES11-SP2-Extension-Store/sle-11-ppc64/","distro_target":"sle-11-ppc64","autorefresh":true,"id":940,"enabled":true}],"product_type":"base","cpe":"cpe:/o:suse:suse_sles:11:sp2","recommended":false,"version":"11.2","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Server","release_type":null,"former_identifier":"SUSE_SLES","migration_extra":false,"friendly_name":"SUSE Linux Enterprise Server 11 SP2 ppc64","friendly_version":"11 SP2","extensions":[{"online_predecessor_ids":[],"repositories":[{"name":"SLE11-SP1-WebYaST-1.2-Updates","installer_updates":false,"description":"SLE11-SP1-WebYaST-1.2-Updates for sle-11-x86_64","enabled":true,"id":839,"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-WebYaST-1.2-Updates/sle-11-x86_64/"},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-WebYaST-1.2-Pool/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","id":840,"enabled":false,"description":"SLE11-SP1-WebYaST-1.2-Pool for sle-11-i586","name":"SLE11-SP1-WebYaST-1.2-Pool","installer_updates":false},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-WebYaST-1.2-Pool/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64","id":841,"enabled":false,"description":"SLE11-SP1-WebYaST-1.2-Pool for sle-11-x86_64","name":"SLE11-SP1-WebYaST-1.2-Pool","installer_updates":false},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-WebYaST-1.2-Updates/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true,"id":842,"enabled":true,"description":"SLE11-SP1-WebYaST-1.2-Updates for sle-11-i586","installer_updates":false,"name":"SLE11-SP1-WebYaST-1.2-Updates"}],"product_class":"WEBYAST","predecessor_ids":[],"cpe":null,"product_type":"extension","description":null,"shortname":null,"free":true,"arch":null,"eula_url":"","friendly_version":"1.2","identifier":"sle-11-WebYaST","release_stage":"released","id":837,"extensions":[],"version":"1.2","recommended":false,"migration_extra":false,"friendly_name":"SUSE WebYaST 1.2","release_type":null,"former_identifier":"sle-11-WebYaST","name":"SUSE WebYaST","offline_predecessor_ids":[]},{"friendly_version":"11 SP2","release_stage":"released","identifier":"sle-hae","id":1044,"extensions":[{"name":"Geo Clustering for SUSE Linux Enterprise High Availability Extension","offline_predecessor_ids":[],"friendly_name":"Geo Clustering for SUSE Linux Enterprise High Availability Extension 11 SP2 ppc64","migration_extra":false,"former_identifier":"sle-haegeo","release_type":null,"recommended":false,"version":"11.2","extensions":[],"release_stage":"released","identifier":"sle-haegeo","id":1113,"friendly_version":"11 SP2","eula_url":"","arch":"ppc64","shortname":null,"description":null,"free":false,"cpe":null,"product_type":"extension","predecessor_ids":[],"online_predecessor_ids":[],"product_class":"SLE-HAE-GEO","repositories":[{"installer_updates":false,"name":"SLE11-HAE-GEO-SP2-Updates","description":"SLE11-HAE-GEO-SP2-Updates for sle-11-ppc64","enabled":true,"id":1122,"distro_target":"sle-11-ppc64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-GEO-SP2-Updates/sle-11-ppc64/"}]}],"version":"11.2","recommended":false,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise High Availability Extension 11 SP2 ppc64","former_identifier":"sle-hae","release_type":null,"name":"SUSE Linux Enterprise High Availability Extension","offline_predecessor_ids":[],"product_class":"SLE-HAE-PPC","online_predecessor_ids":[],"repositories":[{"description":"SLE11-HAE-SP2-Pool for sle-11-ppc64","name":"SLE11-HAE-SP2-Pool","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP2-Pool/sle-11-ppc64/","autorefresh":true,"distro_target":"sle-11-ppc64","id":1041,"enabled":true},{"description":"SLE11-HAE-SP2-Updates for sle-11-ppc64","name":"SLE11-HAE-SP2-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-ppc64","url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP2-Updates/sle-11-ppc64/","enabled":true,"id":1042}],"predecessor_ids":[],"cpe":null,"product_type":"extension","shortname":null,"description":null,"free":false,"arch":"ppc64","eula_url":""},{"friendly_version":"11 SP2","extensions":[{"online_predecessor_ids":[],"product_class":"SLE-HAE-GEO","repositories":[{"url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-GEO-SP2-Updates/sle-11-ppc64/","autorefresh":true,"distro_target":"sle-11-ppc64","id":1122,"enabled":true,"description":"SLE11-HAE-GEO-SP2-Updates for sle-11-ppc64","name":"SLE11-HAE-GEO-SP2-Updates","installer_updates":false}],"predecessor_ids":[],"cpe":null,"product_type":"extension","description":null,"shortname":null,"free":false,"arch":"ppc64","eula_url":"","friendly_version":"11 SP2","release_stage":"released","identifier":"sle-haegeo","id":1113,"extensions":[],"version":"11.2","recommended":false,"friendly_name":"Geo Clustering for SUSE Linux Enterprise High Availability Extension 11 SP2 ppc64","migration_extra":false,"former_identifier":"sle-haegeo","release_type":null,"name":"Geo Clustering for SUSE Linux Enterprise High Availability Extension","offline_predecessor_ids":[]}],"release_stage":"released","identifier":"sle-hae-SP3-migration","id":1050,"recommended":false,"version":"11.2","name":"SUSE Linux Enterprise High Availability Extension","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"SUSE Linux Enterprise High Availability Extension 11 SP2 ppc64 (Migration)","former_identifier":"sle-hae-SP3-migration","release_type":null,"predecessor_ids":[],"online_predecessor_ids":[],"product_class":"SLE-HAE-PPC","repositories":[{"id":1045,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP3-Pool/sle-11-ppc64/","autorefresh":true,"distro_target":"sle-11-ppc64","name":"SLE11-HAE-SP3-Pool","installer_updates":false,"description":"SLE11-HAE-SP3-Pool for sle-11-ppc64"},{"installer_updates":false,"name":"SLE11-HAE-SP3-Updates","description":"SLE11-HAE-SP3-Updates for sle-11-ppc64","enabled":true,"id":1046,"distro_target":"sle-11-ppc64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP3-Updates/sle-11-ppc64/"}],"cpe":null,"product_type":"extension","description":null,"shortname":null,"free":false,"eula_url":"","arch":"ppc64"},{"version":"11.2","recommended":false,"friendly_name":"SUSE Linux Enterprise Software Development Kit 11 SP2","migration_extra":false,"release_type":null,"former_identifier":"sle-sdk","name":"SUSE Linux Enterprise Software Development Kit","offline_predecessor_ids":[],"friendly_version":"11 SP2","id":1160,"release_stage":"released","identifier":"sle-sdk","extensions":[],"shortname":null,"description":null,"free":true,"arch":null,"eula_url":"","online_predecessor_ids":[],"product_class":"SLE-SDK","repositories":[{"description":"SLE11-SDK-SP1-Updates for sle-11-ia64","installer_updates":false,"name":"SLE11-SDK-SP1-Updates","distro_target":"sle-11-ia64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Updates/sle-11-ia64/","enabled":true,"id":1257},{"autorefresh":true,"distro_target":"sle-11-ia64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-ia64/","enabled":true,"id":1258,"description":"SLE11-SDK-SP1-Pool for sle-11-ia64","name":"SLE11-SDK-SP1-Pool","installer_updates":false},{"name":"SLE11-SDK-SP1-Pool","installer_updates":false,"description":"SLE11-SDK-SP1-Pool for sle-11-s390x","enabled":true,"id":1259,"autorefresh":true,"distro_target":"sle-11-s390x","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-s390x/"},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Updates/sle-11-ppc64/","distro_target":"sle-11-ppc64","autorefresh":true,"id":1260,"enabled":true,"description":"SLE11-SDK-SP1-Updates for sle-11-ppc64","installer_updates":false,"name":"SLE11-SDK-SP1-Updates"},{"distro_target":"sle-11-ppc64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-ppc64/","enabled":true,"id":1261,"description":"SLE11-SDK-SP1-Pool for sle-11-ppc64","installer_updates":false,"name":"SLE11-SDK-SP1-Pool"},{"description":"SLE11-SDK-SP1-Updates for sle-11-i586","name":"SLE11-SDK-SP1-Updates","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Updates/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","id":1262,"enabled":true},{"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-i586/","enabled":true,"id":1263,"description":"SLE11-SDK-SP1-Pool for sle-11-i586","name":"SLE11-SDK-SP1-Pool","installer_updates":false},{"installer_updates":false,"name":"SLE11-SDK-SP1-Pool","description":"SLE11-SDK-SP1-Pool for sle-11-x86_64","id":1264,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true},{"description":"SLE11-SDK-SP1-Updates for sle-11-x86_64","name":"SLE11-SDK-SP1-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Updates/sle-11-x86_64/","enabled":true,"id":1265},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Updates/sle-11-s390x/","distro_target":"sle-11-s390x","autorefresh":true,"id":1266,"enabled":true,"description":"SLE11-SDK-SP1-Updates for sle-11-s390x","installer_updates":false,"name":"SLE11-SDK-SP1-Updates"},{"description":"SLE11-SDK-SP2-Core for sle-11-ia64","name":"SLE11-SDK-SP2-Core","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-ia64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-ia64/","enabled":true,"id":1267},{"enabled":true,"id":1268,"autorefresh":true,"distro_target":"sle-11-s390x","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-s390x/","name":"SLE11-SDK-SP2-Core","installer_updates":false,"description":"SLE11-SDK-SP2-Core for sle-11-s390x"},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-s390x/","distro_target":"sle-11-s390x","autorefresh":true,"id":1269,"enabled":true,"description":"SLE11-SDK-SP2-Updates for sle-11-s390x","installer_updates":false,"name":"SLE11-SDK-SP2-Updates"},{"installer_updates":false,"name":"SLE11-SDK-SP2-Updates","description":"SLE11-SDK-SP2-Updates for sle-11-ppc64","id":1270,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-ppc64/","distro_target":"sle-11-ppc64","autorefresh":true},{"description":"SLE11-SDK-SP2-Updates for sle-11-i586","installer_updates":false,"name":"SLE11-SDK-SP2-Updates","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true,"id":1271,"enabled":true},{"enabled":true,"id":1272,"autorefresh":true,"distro_target":"sle-11-ia64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-ia64/","name":"SLE11-SDK-SP2-Updates","installer_updates":false,"description":"SLE11-SDK-SP2-Updates for sle-11-ia64"},{"id":1273,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-ppc64/","distro_target":"sle-11-ppc64","autorefresh":true,"installer_updates":false,"name":"SLE11-SDK-SP2-Core","description":"SLE11-SDK-SP2-Core for sle-11-ppc64"},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true,"id":1274,"enabled":true,"description":"SLE11-SDK-SP2-Core for sle-11-i586","installer_updates":false,"name":"SLE11-SDK-SP2-Core"},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true,"id":1275,"enabled":true,"description":"SLE11-SDK-SP2-Core for sle-11-x86_64","installer_updates":false,"name":"SLE11-SDK-SP2-Core"},{"id":1276,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64","name":"SLE11-SDK-SP2-Updates","installer_updates":false,"description":"SLE11-SDK-SP2-Updates for sle-11-x86_64"}],"predecessor_ids":[],"cpe":null,"product_type":"extension"},{"product_type":"extension","cpe":null,"online_predecessor_ids":[],"repositories":[{"id":1267,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-ia64/","autorefresh":true,"distro_target":"sle-11-ia64","name":"SLE11-SDK-SP2-Core","installer_updates":false,"description":"SLE11-SDK-SP2-Core for sle-11-ia64"},{"enabled":true,"id":1268,"distro_target":"sle-11-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-s390x/","installer_updates":false,"name":"SLE11-SDK-SP2-Core","description":"SLE11-SDK-SP2-Core for sle-11-s390x"},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-s390x/","autorefresh":true,"distro_target":"sle-11-s390x","id":1269,"enabled":true,"description":"SLE11-SDK-SP2-Updates for sle-11-s390x","name":"SLE11-SDK-SP2-Updates","installer_updates":false},{"name":"SLE11-SDK-SP2-Updates","installer_updates":false,"description":"SLE11-SDK-SP2-Updates for sle-11-ppc64","enabled":true,"id":1270,"autorefresh":true,"distro_target":"sle-11-ppc64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-ppc64/"},{"installer_updates":false,"name":"SLE11-SDK-SP2-Updates","description":"SLE11-SDK-SP2-Updates for sle-11-i586","enabled":true,"id":1271,"distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-i586/"},{"id":1272,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-ia64/","distro_target":"sle-11-ia64","autorefresh":true,"installer_updates":false,"name":"SLE11-SDK-SP2-Updates","description":"SLE11-SDK-SP2-Updates for sle-11-ia64"},{"installer_updates":false,"name":"SLE11-SDK-SP2-Core","description":"SLE11-SDK-SP2-Core for sle-11-ppc64","id":1273,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-ppc64/","distro_target":"sle-11-ppc64","autorefresh":true},{"description":"SLE11-SDK-SP2-Core for sle-11-i586","installer_updates":false,"name":"SLE11-SDK-SP2-Core","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true,"id":1274,"enabled":true},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true,"id":1275,"enabled":true,"description":"SLE11-SDK-SP2-Core for sle-11-x86_64","installer_updates":false,"name":"SLE11-SDK-SP2-Core"},{"enabled":true,"id":1276,"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-x86_64/","name":"SLE11-SDK-SP2-Updates","installer_updates":false,"description":"SLE11-SDK-SP2-Updates for sle-11-x86_64"}],"product_class":"SLE-SDK","predecessor_ids":[],"arch":null,"eula_url":"","free":true,"shortname":null,"description":null,"release_stage":"released","id":1163,"identifier":"sle-sdk-SP2-migration","extensions":[],"friendly_version":"11 SP1","former_identifier":"sle-sdk-SP2-migration","release_type":null,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Software Development Kit 11 SP1 (Migration)","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Software Development Kit","version":"11.1","recommended":false},{"arch":null,"eula_url":"","free":true,"shortname":null,"description":null,"product_type":"extension","cpe":null,"online_predecessor_ids":[],"product_class":"SLE-SDK","repositories":[{"name":"SLE11-SDK-SP3-Pool","installer_updates":false,"description":"SLE11-SDK-SP3-Pool for sle-11-i586","id":1277,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Pool/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586"},{"id":1278,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Pool/sle-11-ia64/","distro_target":"sle-11-ia64","autorefresh":true,"installer_updates":false,"name":"SLE11-SDK-SP3-Pool","description":"SLE11-SDK-SP3-Pool for sle-11-ia64"},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Updates/sle-11-ppc64/","distro_target":"sle-11-ppc64","autorefresh":true,"id":1279,"enabled":true,"description":"SLE11-SDK-SP3-Updates for sle-11-ppc64","installer_updates":false,"name":"SLE11-SDK-SP3-Updates"},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Updates/sle-11-ia64/","autorefresh":true,"distro_target":"sle-11-ia64","id":1280,"enabled":true,"description":"SLE11-SDK-SP3-Updates for sle-11-ia64","name":"SLE11-SDK-SP3-Updates","installer_updates":false},{"name":"SLE11-SDK-SP3-Pool","installer_updates":false,"description":"SLE11-SDK-SP3-Pool for sle-11-x86_64","enabled":true,"id":1281,"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Pool/sle-11-x86_64/"},{"description":"SLE11-SDK-SP3-Updates for sle-11-s390x","installer_updates":false,"name":"SLE11-SDK-SP3-Updates","distro_target":"sle-11-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Updates/sle-11-s390x/","enabled":true,"id":1282},{"autorefresh":true,"distro_target":"sle-11-ppc64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Pool/sle-11-ppc64/","enabled":true,"id":1283,"description":"SLE11-SDK-SP3-Pool for sle-11-ppc64","name":"SLE11-SDK-SP3-Pool","installer_updates":false},{"description":"SLE11-SDK-SP3-Updates for sle-11-x86_64","installer_updates":false,"name":"SLE11-SDK-SP3-Updates","distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Updates/sle-11-x86_64/","enabled":true,"id":1284},{"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Updates/sle-11-i586/","enabled":true,"id":1285,"description":"SLE11-SDK-SP3-Updates for sle-11-i586","name":"SLE11-SDK-SP3-Updates","installer_updates":false},{"id":1286,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Pool/sle-11-s390x/","distro_target":"sle-11-s390x","autorefresh":true,"installer_updates":false,"name":"SLE11-SDK-SP3-Pool","description":"SLE11-SDK-SP3-Pool for sle-11-s390x"}],"predecessor_ids":[],"release_type":null,"former_identifier":"sle-sdk-SP3-migration","migration_extra":false,"friendly_name":"SUSE Linux Enterprise Software Development Kit 11 SP2 (Migration)","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Software Development Kit","version":"11.2","recommended":false,"id":1164,"release_stage":"released","identifier":"sle-sdk-SP3-migration","extensions":[],"friendly_version":"11 SP2"},{"version":"11.2","recommended":false,"release_type":null,"former_identifier":"sle-smt","friendly_name":"SUSE Linux Enterprise Subscription Management Tool 11 SP2","migration_extra":false,"offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Subscription Management Tool","friendly_version":"11 SP2","release_stage":"released","identifier":"sle-smt","id":1193,"extensions":[],"free":true,"shortname":null,"description":null,"arch":null,"eula_url":"","repositories":[{"description":"SLE11-SMT-SP2-Pool for sle-11-x86_64","installer_updates":false,"name":"SLE11-SMT-SP2-Pool","url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP2-Pool/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true,"id":1392,"enabled":true},{"installer_updates":false,"name":"SLE11-SMT-SP2-Updates","description":"SLE11-SMT-SP2-Updates for sle-11-s390x","enabled":true,"id":1393,"distro_target":"sle-11-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP2-Updates/sle-11-s390x/"},{"enabled":true,"id":1394,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP2-Pool/sle-11-i586/","name":"SLE11-SMT-SP2-Pool","installer_updates":false,"description":"SLE11-SMT-SP2-Pool for sle-11-i586"},{"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP2-Updates/sle-11-i586/","enabled":true,"id":1395,"description":"SLE11-SMT-SP2-Updates for sle-11-i586","name":"SLE11-SMT-SP2-Updates","installer_updates":false},{"autorefresh":true,"distro_target":"sle-11-s390x","url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP2-Pool/sle-11-s390x/","enabled":true,"id":1396,"description":"SLE11-SMT-SP2-Pool for sle-11-s390x","name":"SLE11-SMT-SP2-Pool","installer_updates":false},{"installer_updates":false,"name":"SLE11-SMT-SP2-Updates","description":"SLE11-SMT-SP2-Updates for sle-11-x86_64","enabled":true,"id":1397,"distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP2-Updates/sle-11-x86_64/"}],"online_predecessor_ids":[],"product_class":"SLESMT","predecessor_ids":[],"product_type":"extension","cpe":null},{"product_type":"extension","cpe":null,"predecessor_ids":[],"online_predecessor_ids":[],"product_class":"SLESMT","repositories":[{"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP2-Pool/sle-11-x86_64/","enabled":true,"id":1392,"description":"SLE11-SMT-SP2-Pool for sle-11-x86_64","name":"SLE11-SMT-SP2-Pool","installer_updates":false},{"distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP2-Pool/sle-11-i586/","enabled":true,"id":1394,"description":"SLE11-SMT-SP2-Pool for sle-11-i586","installer_updates":false,"name":"SLE11-SMT-SP2-Pool"},{"description":"SLE11-SMT-SP2-Pool for sle-11-s390x","name":"SLE11-SMT-SP2-Pool","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-s390x","url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP2-Pool/sle-11-s390x/","enabled":true,"id":1396}],"eula_url":"","arch":null,"free":true,"shortname":null,"description":null,"extensions":[],"id":1194,"release_stage":"released","identifier":"sle-smt-SP2-migration","friendly_version":"11","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Subscription Management Tool","former_identifier":"sle-smt-SP2-migration","release_type":null,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Subscription Management Tool 11 (Migration)","recommended":false,"version":"11"},{"product_type":"extension","cpe":null,"online_predecessor_ids":[],"repositories":[{"description":"SLE11-SMT-SP3-Pool for sle-11-s390x","name":"SLE11-SMT-SP3-Pool","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-s390x","url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP3-Pool/sle-11-s390x/","enabled":true,"id":1408},{"name":"SLE11-SMT-SP3-Pool","installer_updates":false,"description":"SLE11-SMT-SP3-Pool for sle-11-x86_64","id":1409,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP3-Pool/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64"},{"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP3-Pool/sle-11-i586/","enabled":true,"id":1410,"description":"SLE11-SMT-SP3-Pool for sle-11-i586","name":"SLE11-SMT-SP3-Pool","installer_updates":false}],"product_class":"SLESMT","predecessor_ids":[],"arch":null,"eula_url":"","free":true,"shortname":null,"description":null,"id":1199,"release_stage":"released","identifier":"sle-smt-SP3-migration","extensions":[],"friendly_version":"11 SP2","former_identifier":"sle-smt-SP3-migration","release_type":null,"friendly_name":"SUSE Linux Enterprise Subscription Management Tool 11 SP2 (Migration)","migration_extra":false,"offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Subscription Management Tool","version":"11.2","recommended":false},{"eula_url":"","arch":null,"free":true,"shortname":null,"description":null,"product_type":"extension","cpe":null,"predecessor_ids":[],"product_class":"WEBYAST","online_predecessor_ids":[],"repositories":[{"installer_updates":false,"name":"SLE11-SP2-WebYaST-1.3-Pool","description":"SLE11-SP2-WebYaST-1.3-Pool for sle-11-x86_64","id":1185,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-WebYaST-1.3-Pool/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true},{"description":"SLE11-SP2-WebYaST-1.3-Pool for sle-11-s390x","name":"SLE11-SP2-WebYaST-1.3-Pool","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-s390x","url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-WebYaST-1.3-Pool/sle-11-s390x/","enabled":true,"id":1411},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-WebYaST-1.3-Pool/sle-11-ppc64/","autorefresh":true,"distro_target":"sle-11-ppc64","id":1414,"enabled":true,"description":"SLE11-SP2-WebYaST-1.3-Pool for sle-11-ppc64","name":"SLE11-SP2-WebYaST-1.3-Pool","installer_updates":false},{"description":"SLE11-SP2-WebYaST-1.3-Pool for sle-11-ia64","installer_updates":false,"name":"SLE11-SP2-WebYaST-1.3-Pool","distro_target":"sle-11-ia64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-WebYaST-1.3-Pool/sle-11-ia64/","enabled":true,"id":1416},{"installer_updates":false,"name":"SLE11-SP2-WebYaST-1.3-Pool","description":"SLE11-SP2-WebYaST-1.3-Pool for sle-11-i586","enabled":true,"id":1417,"distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-WebYaST-1.3-Pool/sle-11-i586/"}],"offline_predecessor_ids":[],"name":"SUSE WebYaST","release_type":null,"former_identifier":"sle-11-WebYaST-1.3-migration","migration_extra":false,"friendly_name":"SUSE WebYaST 1.2 (Migration)","recommended":false,"version":"1.2","extensions":[],"release_stage":"released","id":1207,"identifier":"sle-11-WebYaST-1.3-migration","friendly_version":"1.2"}],"id":946,"release_stage":"released","identifier":"SUSE_SLES"},{"free":false,"description":null,"shortname":null,"eula_url":"","arch":"ppc64","predecessor_ids":[],"product_class":"SLES-PPC","online_predecessor_ids":[],"repositories":[{"name":"SLES11-SP1-Pool","installer_updates":false,"description":"SLES11-SP1-Pool for sle-11-ppc64","enabled":false,"id":919,"autorefresh":true,"distro_target":"sle-11-ppc64","url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-Pool/sle-11-ppc64/"},{"installer_updates":false,"name":"SLES11-Extras","description":"SLES11-Extras for sle-11-ppc64","enabled":false,"id":920,"distro_target":"sle-11-ppc64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-Extras/sle-11-ppc64/"},{"distro_target":"sle-11-ppc64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-Updates/sle-11-ppc64/","enabled":false,"id":922,"description":"SLES11-SP1-Updates for sle-11-ppc64","installer_updates":false,"name":"SLES11-SP1-Updates"},{"distro_target":"sle-11-ppc64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Updates/sle-11-ppc64/","enabled":false,"id":924,"description":"SLE11-SP1-Debuginfo-Updates for sle-11-ppc64","installer_updates":false,"name":"SLE11-SP1-Debuginfo-Updates"},{"description":"SLE11-SP1-Debuginfo-Pool for sle-11-ppc64","name":"SLE11-SP1-Debuginfo-Pool","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Pool/sle-11-ppc64/","autorefresh":true,"distro_target":"sle-11-ppc64","id":925,"enabled":false},{"distro_target":"sle-11-ppc64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-Debuginfo-Updates/sle-11-ppc64/","enabled":false,"id":926,"description":"SLE11-SP2-Debuginfo-Updates for sle-11-ppc64","installer_updates":false,"name":"SLE11-SP2-Debuginfo-Updates"},{"id":927,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP2-Core/sle-11-ppc64/","distro_target":"sle-11-ppc64","autorefresh":true,"installer_updates":false,"name":"SLES11-SP2-Core","description":"SLES11-SP2-Core for sle-11-ppc64"},{"id":928,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP2-Updates/sle-11-ppc64/","autorefresh":true,"distro_target":"sle-11-ppc64","name":"SLES11-SP2-Updates","installer_updates":false,"description":"SLES11-SP2-Updates for sle-11-ppc64"},{"installer_updates":false,"name":"SLE11-SP2-Debuginfo-Core","description":"SLE11-SP2-Debuginfo-Core for sle-11-ppc64","enabled":false,"id":930,"distro_target":"sle-11-ppc64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-Debuginfo-Core/sle-11-ppc64/"},{"enabled":true,"id":936,"distro_target":"sle-11-ppc64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP3-Updates/sle-11-ppc64/","installer_updates":false,"name":"SLES11-SP3-Updates","description":"SLES11-SP3-Updates for sle-11-ppc64"},{"autorefresh":true,"distro_target":"sle-11-ppc64","url":"https://updates.suse.com/repo/$RCE/SLE11-SP3-Debuginfo-Pool/sle-11-ppc64/","enabled":false,"id":937,"description":"SLE11-SP3-Debuginfo-Pool for sle-11-ppc64","name":"SLE11-SP3-Debuginfo-Pool","installer_updates":false},{"distro_target":"sle-11-ppc64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP3-Extension-Store/sle-11-ppc64/","enabled":false,"id":938,"description":"SLES11-SP3-Extension-Store for sle-11-ppc64","installer_updates":false,"name":"SLES11-SP3-Extension-Store"},{"url":"https://updates.suse.com/repo/$RCE/SLES11-SP3-Pool/sle-11-ppc64/","distro_target":"sle-11-ppc64","autorefresh":true,"id":939,"enabled":true,"description":"SLES11-SP3-Pool for sle-11-ppc64","installer_updates":false,"name":"SLES11-SP3-Pool"},{"description":"SLES11-SP2-Extension-Store for sle-11-ppc64","name":"SLES11-SP2-Extension-Store","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-ppc64","url":"https://updates.suse.com/repo/$RCE/SLES11-SP2-Extension-Store/sle-11-ppc64/","enabled":true,"id":940},{"id":941,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP3-Debuginfo-Updates/sle-11-ppc64/","distro_target":"sle-11-ppc64","autorefresh":true,"installer_updates":false,"name":"SLE11-SP3-Debuginfo-Updates","description":"SLE11-SP3-Debuginfo-Updates for sle-11-ppc64"}],"product_type":"base","cpe":null,"recommended":false,"version":"11.2","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Server","former_identifier":"SUSE_SLES-SP3-migration","release_type":null,"friendly_name":"SUSE Linux Enterprise Server 11 SP2 ppc64 (Migration)","migration_extra":false,"friendly_version":"11 SP2","extensions":[{"eula_url":"","arch":"ppc64","free":false,"shortname":null,"description":null,"product_type":"extension","cpe":null,"predecessor_ids":[],"repositories":[{"autorefresh":true,"distro_target":"sle-11-ppc64","url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP2-Pool/sle-11-ppc64/","enabled":true,"id":1041,"description":"SLE11-HAE-SP2-Pool for sle-11-ppc64","name":"SLE11-HAE-SP2-Pool","installer_updates":false},{"installer_updates":false,"name":"SLE11-HAE-SP2-Updates","description":"SLE11-HAE-SP2-Updates for sle-11-ppc64","id":1042,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP2-Updates/sle-11-ppc64/","distro_target":"sle-11-ppc64","autorefresh":true}],"online_predecessor_ids":[],"product_class":"SLE-HAE-PPC","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise High Availability Extension","former_identifier":"sle-hae","release_type":null,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise High Availability Extension 11 SP2 ppc64","recommended":false,"version":"11.2","extensions":[],"identifier":"sle-hae","release_stage":"released","id":1044,"friendly_version":"11 SP2"},{"friendly_version":"11 SP2","extensions":[],"release_stage":"released","identifier":"sle-hae-SP3-migration","id":1050,"recommended":false,"version":"11.2","name":"SUSE Linux Enterprise High Availability Extension","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"SUSE Linux Enterprise High Availability Extension 11 SP2 ppc64 (Migration)","release_type":null,"former_identifier":"sle-hae-SP3-migration","predecessor_ids":[],"repositories":[{"url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP3-Pool/sle-11-ppc64/","distro_target":"sle-11-ppc64","autorefresh":true,"id":1045,"enabled":true,"description":"SLE11-HAE-SP3-Pool for sle-11-ppc64","installer_updates":false,"name":"SLE11-HAE-SP3-Pool"},{"name":"SLE11-HAE-SP3-Updates","installer_updates":false,"description":"SLE11-HAE-SP3-Updates for sle-11-ppc64","enabled":true,"id":1046,"autorefresh":true,"distro_target":"sle-11-ppc64","url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP3-Updates/sle-11-ppc64/"}],"online_predecessor_ids":[],"product_class":"SLE-HAE-PPC","cpe":null,"product_type":"extension","description":null,"shortname":null,"free":false,"eula_url":"","arch":"ppc64"}],"identifier":"SUSE_SLES-SP3-migration","release_stage":"released","id":947},{"release_stage":"released","identifier":"SUSE_SLES","id":948,"extensions":[{"version":"1.0","recommended":false,"friendly_name":"SUSE WebYaST 1.0","migration_extra":false,"release_type":null,"former_identifier":"sle-11-WebYaST","name":"SUSE WebYaST","offline_predecessor_ids":[],"friendly_version":"1.0","release_stage":"released","id":836,"identifier":"sle-11-WebYaST","extensions":[],"shortname":null,"description":null,"free":true,"arch":null,"eula_url":"","product_class":"WEBYAST","online_predecessor_ids":[],"repositories":[{"distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-WebYaST-1.0-Updates/sle-11-i586/","enabled":true,"id":829,"description":"SLE11-WebYaST-1.0-Updates for sle-11-i586","installer_updates":false,"name":"SLE11-WebYaST-1.0-Updates"},{"autorefresh":true,"distro_target":"sle-11-ia64","url":"https://updates.suse.com/repo/$RCE/SLE11-WebYaST-1.0-Pool/sle-11-ia64/","enabled":false,"id":830,"description":"SLE11-WebYaST-1.0-Pool for sle-11-ia64","name":"SLE11-WebYaST-1.0-Pool","installer_updates":false},{"id":831,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-WebYaST-1.0-Updates/sle-11-ppc64/","distro_target":"sle-11-ppc64","autorefresh":true,"installer_updates":false,"name":"SLE11-WebYaST-1.0-Updates","description":"SLE11-WebYaST-1.0-Updates for sle-11-ppc64"},{"description":"SLE11-WebYaST-1.0-Pool for sle-11-i586","name":"SLE11-WebYaST-1.0-Pool","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-WebYaST-1.0-Pool/sle-11-i586/","enabled":false,"id":832},{"enabled":false,"id":833,"distro_target":"sle-11-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-WebYaST-1.0-Pool/sle-11-s390x/","installer_updates":false,"name":"SLE11-WebYaST-1.0-Pool","description":"SLE11-WebYaST-1.0-Pool for sle-11-s390x"},{"distro_target":"sle-11-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-WebYaST-1.0-Updates/sle-11-s390x/","enabled":true,"id":834,"description":"SLE11-WebYaST-1.0-Updates for sle-11-s390x","installer_updates":false,"name":"SLE11-WebYaST-1.0-Updates"},{"description":"SLE11-WebYaST-1.0-Updates for sle-11-x86_64","installer_updates":false,"name":"SLE11-WebYaST-1.0-Updates","distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-WebYaST-1.0-Updates/sle-11-x86_64/","enabled":true,"id":835},{"description":"SLE11-WebYaST-1.0-Pool for sle-11-x86_64","name":"SLE11-WebYaST-1.0-Pool","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-WebYaST-1.0-Pool/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64","id":836,"enabled":false},{"description":"SLE11-WebYaST-1.0-Updates for sle-11-ia64","name":"SLE11-WebYaST-1.0-Updates","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-WebYaST-1.0-Updates/sle-11-ia64/","autorefresh":true,"distro_target":"sle-11-ia64","id":837,"enabled":true},{"enabled":false,"id":838,"autorefresh":true,"distro_target":"sle-11-ppc64","url":"https://updates.suse.com/repo/$RCE/SLE11-WebYaST-1.0-Pool/sle-11-ppc64/","name":"SLE11-WebYaST-1.0-Pool","installer_updates":false,"description":"SLE11-WebYaST-1.0-Pool for sle-11-ppc64"}],"predecessor_ids":[],"cpe":null,"product_type":"extension"},{"cpe":null,"product_type":"extension","product_class":"SLE-HAE-PPC","online_predecessor_ids":[],"repositories":[{"description":"SLE11-HAE-SP1-Pool for sle-11-ppc64","installer_updates":false,"name":"SLE11-HAE-SP1-Pool","distro_target":"sle-11-ppc64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP1-Pool/sle-11-ppc64/","enabled":true,"id":1043}],"predecessor_ids":[],"arch":"ppc","eula_url":"","shortname":null,"description":null,"free":false,"id":1049,"release_stage":"released","identifier":"sle-hae-SP1-migration","extensions":[],"friendly_version":"11","migration_extra":false,"friendly_name":"SUSE Linux Enterprise High Availability Extension 11 ppc (Migration)","release_type":null,"former_identifier":"sle-hae-SP1-migration","name":"SUSE Linux Enterprise High Availability Extension","offline_predecessor_ids":[],"version":"11","recommended":false},{"online_predecessor_ids":[],"product_class":"SLE-SDK","repositories":[{"id":1247,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-Updates/sle-11-ppc64/","autorefresh":true,"distro_target":"sle-11-ppc64","name":"SLE11-SDK-Updates","installer_updates":false,"description":"SLE11-SDK-Updates for sle-11-ppc64"},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-Pool/sle-11-s390x/","autorefresh":true,"distro_target":"sle-11-s390x","id":1248,"enabled":false,"description":"SLE11-SDK-Pool for sle-11-s390x","name":"SLE11-SDK-Pool","installer_updates":false},{"name":"SLE11-SDK-Updates","installer_updates":false,"description":"SLE11-SDK-Updates for sle-11-x86_64","enabled":true,"id":1249,"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-Updates/sle-11-x86_64/"},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-Pool/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","id":1250,"enabled":false,"description":"SLE11-SDK-Pool for sle-11-i586","name":"SLE11-SDK-Pool","installer_updates":false},{"name":"SLE11-SDK-Pool","installer_updates":false,"description":"SLE11-SDK-Pool for sle-11-x86_64","enabled":false,"id":1251,"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-Pool/sle-11-x86_64/"},{"distro_target":"sle-11-ppc64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-Pool/sle-11-ppc64/","enabled":false,"id":1252,"description":"SLE11-SDK-Pool for sle-11-ppc64","installer_updates":false,"name":"SLE11-SDK-Pool"},{"id":1253,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-Updates/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true,"installer_updates":false,"name":"SLE11-SDK-Updates","description":"SLE11-SDK-Updates for sle-11-i586"},{"enabled":false,"id":1254,"distro_target":"sle-11-ia64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-Pool/sle-11-ia64/","installer_updates":false,"name":"SLE11-SDK-Pool","description":"SLE11-SDK-Pool for sle-11-ia64"},{"name":"SLE11-SDK-Updates","installer_updates":false,"description":"SLE11-SDK-Updates for sle-11-s390x","id":1255,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-Updates/sle-11-s390x/","autorefresh":true,"distro_target":"sle-11-s390x"},{"id":1256,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-Updates/sle-11-ia64/","autorefresh":true,"distro_target":"sle-11-ia64","name":"SLE11-SDK-Updates","installer_updates":false,"description":"SLE11-SDK-Updates for sle-11-ia64"}],"predecessor_ids":[],"cpe":null,"product_type":"extension","shortname":null,"description":null,"free":true,"arch":null,"eula_url":"","friendly_version":"11","release_stage":"released","id":1158,"identifier":"sle-sdk","extensions":[],"version":"11","recommended":false,"friendly_name":"SUSE Linux Enterprise Software Development Kit 11","migration_extra":false,"release_type":null,"former_identifier":"sle-sdk","name":"SUSE Linux Enterprise Software Development Kit","offline_predecessor_ids":[]},{"predecessor_ids":[],"product_class":"SLE-SDK","online_predecessor_ids":[],"repositories":[{"enabled":true,"id":1258,"autorefresh":true,"distro_target":"sle-11-ia64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-ia64/","name":"SLE11-SDK-SP1-Pool","installer_updates":false,"description":"SLE11-SDK-SP1-Pool for sle-11-ia64"},{"enabled":true,"id":1259,"distro_target":"sle-11-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-s390x/","installer_updates":false,"name":"SLE11-SDK-SP1-Pool","description":"SLE11-SDK-SP1-Pool for sle-11-s390x"},{"id":1261,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-ppc64/","autorefresh":true,"distro_target":"sle-11-ppc64","name":"SLE11-SDK-SP1-Pool","installer_updates":false,"description":"SLE11-SDK-SP1-Pool for sle-11-ppc64"},{"installer_updates":false,"name":"SLE11-SDK-SP1-Pool","description":"SLE11-SDK-SP1-Pool for sle-11-i586","id":1263,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true},{"name":"SLE11-SDK-SP1-Pool","installer_updates":false,"description":"SLE11-SDK-SP1-Pool for sle-11-x86_64","id":1264,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64"}],"product_type":"extension","cpe":null,"free":true,"description":null,"shortname":null,"eula_url":"","arch":null,"friendly_version":"11","extensions":[],"release_stage":"released","id":1162,"identifier":"sle-sdk-SP1-migration","recommended":false,"version":"11","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Software Development Kit","release_type":null,"former_identifier":"sle-sdk-SP1-migration","friendly_name":"SUSE Linux Enterprise Software Development Kit 11 (Migration)","migration_extra":false},{"free":true,"description":null,"shortname":null,"eula_url":"","arch":null,"predecessor_ids":[],"product_class":"SLESMT","online_predecessor_ids":[],"repositories":[{"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP2-Pool/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64","id":1392,"enabled":true,"description":"SLE11-SMT-SP2-Pool for sle-11-x86_64","name":"SLE11-SMT-SP2-Pool","installer_updates":false},{"enabled":true,"id":1394,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP2-Pool/sle-11-i586/","name":"SLE11-SMT-SP2-Pool","installer_updates":false,"description":"SLE11-SMT-SP2-Pool for sle-11-i586"},{"enabled":true,"id":1396,"autorefresh":true,"distro_target":"sle-11-s390x","url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP2-Pool/sle-11-s390x/","name":"SLE11-SMT-SP2-Pool","installer_updates":false,"description":"SLE11-SMT-SP2-Pool for sle-11-s390x"}],"product_type":"extension","cpe":null,"recommended":false,"version":"11","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Subscription Management Tool","former_identifier":"sle-smt-SP2-migration","release_type":null,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Subscription Management Tool 11 (Migration)","friendly_version":"11","extensions":[],"identifier":"sle-smt-SP2-migration","release_stage":"released","id":1194},{"friendly_version":"11","release_stage":"released","id":1196,"identifier":"sle-smt","extensions":[],"version":"11","recommended":false,"former_identifier":"sle-smt","release_type":null,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Subscription Management Tool 11","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Subscription Management Tool","product_class":"SLESMT","online_predecessor_ids":[],"repositories":[{"enabled":true,"id":1400,"autorefresh":true,"distro_target":"sle-11-s390x","url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-Updates/sle-11-s390x/","name":"SLE11-SMT-Updates","installer_updates":false,"description":"SLE11-SMT-Updates for sle-11-s390x"},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-Updates/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64","id":1401,"enabled":true,"description":"SLE11-SMT-Updates for sle-11-x86_64","name":"SLE11-SMT-Updates","installer_updates":false},{"description":"SLE11-SMT-Updates for sle-11-i586","installer_updates":false,"name":"SLE11-SMT-Updates","distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-Updates/sle-11-i586/","enabled":true,"id":1402}],"predecessor_ids":[],"product_type":"extension","cpe":null,"free":true,"description":null,"shortname":null,"arch":null,"eula_url":""}],"friendly_version":"11","friendly_name":"SUSE Linux Enterprise Server 11 ppc","migration_extra":false,"former_identifier":"SUSE_SLES","release_type":null,"name":"SUSE Linux Enterprise Server","offline_predecessor_ids":[],"version":"11","recommended":false,"cpe":"cpe:/o:suse:suse_sles:11","product_type":"base","product_class":"SLES-PPC","online_predecessor_ids":[],"repositories":[{"installer_updates":false,"name":"SLES11-Extras","description":"SLES11-Extras for sle-11-ppc64","id":920,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLES11-Extras/sle-11-ppc64/","distro_target":"sle-11-ppc64","autorefresh":true},{"installer_updates":false,"name":"SLE11-Debuginfo-Pool","description":"SLE11-Debuginfo-Pool for sle-11-ppc64","id":932,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-Debuginfo-Pool/sle-11-ppc64/","distro_target":"sle-11-ppc64","autorefresh":true},{"installer_updates":false,"name":"SLES11-Pool","description":"SLES11-Pool for sle-11-ppc64","id":933,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLES11-Pool/sle-11-ppc64/","distro_target":"sle-11-ppc64","autorefresh":true},{"autorefresh":true,"distro_target":"sle-11-ppc64","url":"https://updates.suse.com/repo/$RCE/SLE11-Debuginfo-Updates/sle-11-ppc64/","enabled":false,"id":934,"description":"SLE11-Debuginfo-Updates for sle-11-ppc64","name":"SLE11-Debuginfo-Updates","installer_updates":false},{"distro_target":"sle-11-ppc64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-Updates/sle-11-ppc64/","enabled":true,"id":935,"description":"SLES11-Updates for sle-11-ppc64","installer_updates":false,"name":"SLES11-Updates"}],"predecessor_ids":[],"arch":"ppc","eula_url":"","shortname":null,"description":null,"free":false},{"eula_url":"","arch":"ppc64","description":null,"shortname":null,"free":false,"cpe":"cpe:/o:suse:suse_sles:11:sp3","product_type":"base","predecessor_ids":[],"online_predecessor_ids":[],"repositories":[{"id":919,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-Pool/sle-11-ppc64/","distro_target":"sle-11-ppc64","autorefresh":true,"installer_updates":false,"name":"SLES11-SP1-Pool","description":"SLES11-SP1-Pool for sle-11-ppc64"},{"enabled":false,"id":920,"autorefresh":true,"distro_target":"sle-11-ppc64","url":"https://updates.suse.com/repo/$RCE/SLES11-Extras/sle-11-ppc64/","name":"SLES11-Extras","installer_updates":false,"description":"SLES11-Extras for sle-11-ppc64"},{"name":"SLES11-SP1-Updates","installer_updates":false,"description":"SLES11-SP1-Updates for sle-11-ppc64","enabled":false,"id":922,"autorefresh":true,"distro_target":"sle-11-ppc64","url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-Updates/sle-11-ppc64/"},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Updates/sle-11-ppc64/","autorefresh":true,"distro_target":"sle-11-ppc64","id":924,"enabled":false,"description":"SLE11-SP1-Debuginfo-Updates for sle-11-ppc64","name":"SLE11-SP1-Debuginfo-Updates","installer_updates":false},{"id":925,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Pool/sle-11-ppc64/","distro_target":"sle-11-ppc64","autorefresh":true,"installer_updates":false,"name":"SLE11-SP1-Debuginfo-Pool","description":"SLE11-SP1-Debuginfo-Pool for sle-11-ppc64"},{"description":"SLE11-SP2-Debuginfo-Updates for sle-11-ppc64","name":"SLE11-SP2-Debuginfo-Updates","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-Debuginfo-Updates/sle-11-ppc64/","autorefresh":true,"distro_target":"sle-11-ppc64","id":926,"enabled":false},{"name":"SLES11-SP2-Core","installer_updates":false,"description":"SLES11-SP2-Core for sle-11-ppc64","enabled":false,"id":927,"autorefresh":true,"distro_target":"sle-11-ppc64","url":"https://updates.suse.com/repo/$RCE/SLES11-SP2-Core/sle-11-ppc64/"},{"name":"SLES11-SP2-Updates","installer_updates":false,"description":"SLES11-SP2-Updates for sle-11-ppc64","enabled":false,"id":928,"autorefresh":true,"distro_target":"sle-11-ppc64","url":"https://updates.suse.com/repo/$RCE/SLES11-SP2-Updates/sle-11-ppc64/"},{"description":"SLE11-SP2-Debuginfo-Core for sle-11-ppc64","name":"SLE11-SP2-Debuginfo-Core","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-ppc64","url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-Debuginfo-Core/sle-11-ppc64/","enabled":false,"id":930},{"distro_target":"sle-11-ppc64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP3-Updates/sle-11-ppc64/","enabled":true,"id":936,"description":"SLES11-SP3-Updates for sle-11-ppc64","installer_updates":false,"name":"SLES11-SP3-Updates"},{"description":"SLE11-SP3-Debuginfo-Pool for sle-11-ppc64","name":"SLE11-SP3-Debuginfo-Pool","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP3-Debuginfo-Pool/sle-11-ppc64/","autorefresh":true,"distro_target":"sle-11-ppc64","id":937,"enabled":false},{"enabled":false,"id":938,"distro_target":"sle-11-ppc64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP3-Extension-Store/sle-11-ppc64/","installer_updates":false,"name":"SLES11-SP3-Extension-Store","description":"SLES11-SP3-Extension-Store for sle-11-ppc64"},{"enabled":true,"id":939,"autorefresh":true,"distro_target":"sle-11-ppc64","url":"https://updates.suse.com/repo/$RCE/SLES11-SP3-Pool/sle-11-ppc64/","name":"SLES11-SP3-Pool","installer_updates":false,"description":"SLES11-SP3-Pool for sle-11-ppc64"},{"enabled":false,"id":940,"autorefresh":true,"distro_target":"sle-11-ppc64","url":"https://updates.suse.com/repo/$RCE/SLES11-SP2-Extension-Store/sle-11-ppc64/","name":"SLES11-SP2-Extension-Store","installer_updates":false,"description":"SLES11-SP2-Extension-Store for sle-11-ppc64"},{"autorefresh":true,"distro_target":"sle-11-ppc64","url":"https://updates.suse.com/repo/$RCE/SLE11-SP3-Debuginfo-Updates/sle-11-ppc64/","enabled":false,"id":941,"description":"SLE11-SP3-Debuginfo-Updates for sle-11-ppc64","name":"SLE11-SP3-Debuginfo-Updates","installer_updates":false},{"enabled":false,"id":1380,"distro_target":"sle-11-ppc64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-Security-Module/sle-11-ppc64/","installer_updates":false,"name":"SLE11-Security-Module","description":"SLE11-Security-Module for sle-11-ppc64"},{"name":"SLE11-Public-Cloud-Module","installer_updates":false,"description":"SLE11-Public-Cloud-Module for sle-11-ppc64","enabled":false,"id":1780,"autorefresh":true,"distro_target":"sle-11-ppc64","url":"https://updates.suse.com/repo/$RCE/SLE11-Public-Cloud-Module/sle-11-ppc64/"}],"product_class":"SLES-PPC","name":"SUSE Linux Enterprise Server","offline_predecessor_ids":[],"friendly_name":"SUSE Linux Enterprise Server 11 SP3 ppc64","migration_extra":false,"release_type":null,"former_identifier":"SUSE_SLES","recommended":false,"version":"11.3","extensions":[{"friendly_version":"11 SP3","extensions":[],"release_stage":"released","identifier":"sle-hae","id":1042,"recommended":false,"version":"11.3","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise High Availability Extension","release_type":null,"former_identifier":"sle-hae","migration_extra":false,"friendly_name":"SUSE Linux Enterprise High Availability Extension 11 SP3 ppc64","predecessor_ids":[],"online_predecessor_ids":[],"product_class":"SLE-HAE-PPC","repositories":[{"name":"SLE11-HAE-SP3-Pool","installer_updates":false,"description":"SLE11-HAE-SP3-Pool for sle-11-ppc64","id":1045,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP3-Pool/sle-11-ppc64/","autorefresh":true,"distro_target":"sle-11-ppc64"},{"id":1046,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP3-Updates/sle-11-ppc64/","distro_target":"sle-11-ppc64","autorefresh":true,"installer_updates":false,"name":"SLE11-HAE-SP3-Updates","description":"SLE11-HAE-SP3-Updates for sle-11-ppc64"}],"product_type":"extension","cpe":null,"free":false,"shortname":null,"description":null,"eula_url":"","arch":"ppc64"},{"product_type":"extension","cpe":null,"online_predecessor_ids":[],"product_class":"SLE-SDK","repositories":[{"id":1257,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Updates/sle-11-ia64/","autorefresh":true,"distro_target":"sle-11-ia64","name":"SLE11-SDK-SP1-Updates","installer_updates":false,"description":"SLE11-SDK-SP1-Updates for sle-11-ia64"},{"enabled":false,"id":1258,"distro_target":"sle-11-ia64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-ia64/","installer_updates":false,"name":"SLE11-SDK-SP1-Pool","description":"SLE11-SDK-SP1-Pool for sle-11-ia64"},{"autorefresh":true,"distro_target":"sle-11-s390x","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-s390x/","enabled":false,"id":1259,"description":"SLE11-SDK-SP1-Pool for sle-11-s390x","name":"SLE11-SDK-SP1-Pool","installer_updates":false},{"distro_target":"sle-11-ppc64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Updates/sle-11-ppc64/","enabled":false,"id":1260,"description":"SLE11-SDK-SP1-Updates for sle-11-ppc64","installer_updates":false,"name":"SLE11-SDK-SP1-Updates"},{"installer_updates":false,"name":"SLE11-SDK-SP1-Pool","description":"SLE11-SDK-SP1-Pool for sle-11-ppc64","id":1261,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-ppc64/","distro_target":"sle-11-ppc64","autorefresh":true},{"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Updates/sle-11-i586/","enabled":false,"id":1262,"description":"SLE11-SDK-SP1-Updates for sle-11-i586","name":"SLE11-SDK-SP1-Updates","installer_updates":false},{"description":"SLE11-SDK-SP1-Pool for sle-11-i586","installer_updates":false,"name":"SLE11-SDK-SP1-Pool","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true,"id":1263,"enabled":false},{"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-x86_64/","enabled":false,"id":1264,"description":"SLE11-SDK-SP1-Pool for sle-11-x86_64","name":"SLE11-SDK-SP1-Pool","installer_updates":false},{"name":"SLE11-SDK-SP1-Updates","installer_updates":false,"description":"SLE11-SDK-SP1-Updates for sle-11-x86_64","id":1265,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Updates/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64"},{"installer_updates":false,"name":"SLE11-SDK-SP1-Updates","description":"SLE11-SDK-SP1-Updates for sle-11-s390x","enabled":false,"id":1266,"distro_target":"sle-11-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Updates/sle-11-s390x/"},{"enabled":false,"id":1267,"autorefresh":true,"distro_target":"sle-11-ia64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-ia64/","name":"SLE11-SDK-SP2-Core","installer_updates":false,"description":"SLE11-SDK-SP2-Core for sle-11-ia64"},{"autorefresh":true,"distro_target":"sle-11-s390x","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-s390x/","enabled":false,"id":1268,"description":"SLE11-SDK-SP2-Core for sle-11-s390x","name":"SLE11-SDK-SP2-Core","installer_updates":false},{"description":"SLE11-SDK-SP2-Updates for sle-11-s390x","installer_updates":false,"name":"SLE11-SDK-SP2-Updates","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-s390x/","distro_target":"sle-11-s390x","autorefresh":true,"id":1269,"enabled":false},{"name":"SLE11-SDK-SP2-Updates","installer_updates":false,"description":"SLE11-SDK-SP2-Updates for sle-11-ppc64","id":1270,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-ppc64/","autorefresh":true,"distro_target":"sle-11-ppc64"},{"distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-i586/","enabled":false,"id":1271,"description":"SLE11-SDK-SP2-Updates for sle-11-i586","installer_updates":false,"name":"SLE11-SDK-SP2-Updates"},{"distro_target":"sle-11-ia64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-ia64/","enabled":false,"id":1272,"description":"SLE11-SDK-SP2-Updates for sle-11-ia64","installer_updates":false,"name":"SLE11-SDK-SP2-Updates"},{"autorefresh":true,"distro_target":"sle-11-ppc64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-ppc64/","enabled":false,"id":1273,"description":"SLE11-SDK-SP2-Core for sle-11-ppc64","name":"SLE11-SDK-SP2-Core","installer_updates":false},{"installer_updates":false,"name":"SLE11-SDK-SP2-Core","description":"SLE11-SDK-SP2-Core for sle-11-i586","id":1274,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true},{"description":"SLE11-SDK-SP2-Core for sle-11-x86_64","name":"SLE11-SDK-SP2-Core","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64","id":1275,"enabled":false},{"distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-x86_64/","enabled":false,"id":1276,"description":"SLE11-SDK-SP2-Updates for sle-11-x86_64","installer_updates":false,"name":"SLE11-SDK-SP2-Updates"},{"description":"SLE11-SDK-SP3-Pool for sle-11-i586","installer_updates":false,"name":"SLE11-SDK-SP3-Pool","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Pool/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true,"id":1277,"enabled":true},{"description":"SLE11-SDK-SP3-Pool for sle-11-ia64","installer_updates":false,"name":"SLE11-SDK-SP3-Pool","distro_target":"sle-11-ia64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Pool/sle-11-ia64/","enabled":true,"id":1278},{"description":"SLE11-SDK-SP3-Updates for sle-11-ppc64","installer_updates":false,"name":"SLE11-SDK-SP3-Updates","distro_target":"sle-11-ppc64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Updates/sle-11-ppc64/","enabled":true,"id":1279},{"distro_target":"sle-11-ia64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Updates/sle-11-ia64/","enabled":true,"id":1280,"description":"SLE11-SDK-SP3-Updates for sle-11-ia64","installer_updates":false,"name":"SLE11-SDK-SP3-Updates"},{"installer_updates":false,"name":"SLE11-SDK-SP3-Pool","description":"SLE11-SDK-SP3-Pool for sle-11-x86_64","enabled":true,"id":1281,"distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Pool/sle-11-x86_64/"},{"name":"SLE11-SDK-SP3-Updates","installer_updates":false,"description":"SLE11-SDK-SP3-Updates for sle-11-s390x","id":1282,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Updates/sle-11-s390x/","autorefresh":true,"distro_target":"sle-11-s390x"},{"distro_target":"sle-11-ppc64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Pool/sle-11-ppc64/","enabled":true,"id":1283,"description":"SLE11-SDK-SP3-Pool for sle-11-ppc64","installer_updates":false,"name":"SLE11-SDK-SP3-Pool"},{"id":1284,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Updates/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true,"installer_updates":false,"name":"SLE11-SDK-SP3-Updates","description":"SLE11-SDK-SP3-Updates for sle-11-x86_64"},{"id":1285,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Updates/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","name":"SLE11-SDK-SP3-Updates","installer_updates":false,"description":"SLE11-SDK-SP3-Updates for sle-11-i586"},{"description":"SLE11-SDK-SP3-Pool for sle-11-s390x","installer_updates":false,"name":"SLE11-SDK-SP3-Pool","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Pool/sle-11-s390x/","distro_target":"sle-11-s390x","autorefresh":true,"id":1286,"enabled":true}],"predecessor_ids":[],"arch":null,"eula_url":"","free":true,"shortname":null,"description":null,"identifier":"sle-sdk","release_stage":"released","id":1161,"extensions":[],"friendly_version":"11 SP3","former_identifier":"sle-sdk","release_type":null,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Software Development Kit 11 SP3","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Software Development Kit","version":"11.3","recommended":false},{"name":"SUSE Linux Enterprise Software Development Kit","offline_predecessor_ids":[],"friendly_name":"SUSE Linux Enterprise Software Development Kit 11 SP2 (Migration)","migration_extra":false,"release_type":null,"former_identifier":"sle-sdk-SP3-migration","recommended":false,"version":"11.2","extensions":[],"release_stage":"released","id":1164,"identifier":"sle-sdk-SP3-migration","friendly_version":"11 SP2","eula_url":"","arch":null,"shortname":null,"description":null,"free":true,"cpe":null,"product_type":"extension","predecessor_ids":[],"online_predecessor_ids":[],"repositories":[{"description":"SLE11-SDK-SP3-Pool for sle-11-i586","name":"SLE11-SDK-SP3-Pool","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Pool/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","id":1277,"enabled":true},{"description":"SLE11-SDK-SP3-Pool for sle-11-ia64","installer_updates":false,"name":"SLE11-SDK-SP3-Pool","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Pool/sle-11-ia64/","distro_target":"sle-11-ia64","autorefresh":true,"id":1278,"enabled":true},{"enabled":true,"id":1279,"distro_target":"sle-11-ppc64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Updates/sle-11-ppc64/","installer_updates":false,"name":"SLE11-SDK-SP3-Updates","description":"SLE11-SDK-SP3-Updates for sle-11-ppc64"},{"name":"SLE11-SDK-SP3-Updates","installer_updates":false,"description":"SLE11-SDK-SP3-Updates for sle-11-ia64","id":1280,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Updates/sle-11-ia64/","autorefresh":true,"distro_target":"sle-11-ia64"},{"description":"SLE11-SDK-SP3-Pool for sle-11-x86_64","name":"SLE11-SDK-SP3-Pool","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Pool/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64","id":1281,"enabled":true},{"enabled":true,"id":1282,"distro_target":"sle-11-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Updates/sle-11-s390x/","installer_updates":false,"name":"SLE11-SDK-SP3-Updates","description":"SLE11-SDK-SP3-Updates for sle-11-s390x"},{"name":"SLE11-SDK-SP3-Pool","installer_updates":false,"description":"SLE11-SDK-SP3-Pool for sle-11-ppc64","enabled":true,"id":1283,"autorefresh":true,"distro_target":"sle-11-ppc64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Pool/sle-11-ppc64/"},{"id":1284,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Updates/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64","name":"SLE11-SDK-SP3-Updates","installer_updates":false,"description":"SLE11-SDK-SP3-Updates for sle-11-x86_64"},{"description":"SLE11-SDK-SP3-Updates for sle-11-i586","name":"SLE11-SDK-SP3-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Updates/sle-11-i586/","enabled":true,"id":1285},{"distro_target":"sle-11-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Pool/sle-11-s390x/","enabled":true,"id":1286,"description":"SLE11-SDK-SP3-Pool for sle-11-s390x","installer_updates":false,"name":"SLE11-SDK-SP3-Pool"}],"product_class":"SLE-SDK"},{"arch":null,"eula_url":"","free":true,"description":null,"shortname":null,"product_type":"extension","cpe":null,"repositories":[{"name":"SLE11-SMT-SP3-Updates","installer_updates":false,"description":"SLE11-SMT-SP3-Updates for sle-11-x86_64","id":1405,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP3-Updates/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64"},{"description":"SLE11-SMT-SP3-Updates for sle-11-i586","installer_updates":false,"name":"SLE11-SMT-SP3-Updates","distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP3-Updates/sle-11-i586/","enabled":true,"id":1406},{"name":"SLE11-SMT-SP3-Updates","installer_updates":false,"description":"SLE11-SMT-SP3-Updates for sle-11-s390x","enabled":true,"id":1407,"autorefresh":true,"distro_target":"sle-11-s390x","url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP3-Updates/sle-11-s390x/"},{"description":"SLE11-SMT-SP3-Pool for sle-11-s390x","name":"SLE11-SMT-SP3-Pool","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-s390x","url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP3-Pool/sle-11-s390x/","enabled":true,"id":1408},{"description":"SLE11-SMT-SP3-Pool for sle-11-x86_64","name":"SLE11-SMT-SP3-Pool","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP3-Pool/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64","id":1409,"enabled":true},{"id":1410,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP3-Pool/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","name":"SLE11-SMT-SP3-Pool","installer_updates":false,"description":"SLE11-SMT-SP3-Pool for sle-11-i586"}],"online_predecessor_ids":[],"product_class":"SLESMT","predecessor_ids":[],"former_identifier":"sle-smt","release_type":null,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Subscription Management Tool 11 SP3","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Subscription Management Tool","version":"11.3","recommended":false,"identifier":"sle-smt","release_stage":"released","id":1198,"extensions":[],"friendly_version":"11 SP3"},{"release_type":null,"former_identifier":"sle-smt-SP3-migration","friendly_name":"SUSE Linux Enterprise Subscription Management Tool 11 SP2 (Migration)","migration_extra":false,"offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Subscription Management Tool","version":"11.2","recommended":false,"release_stage":"released","id":1199,"identifier":"sle-smt-SP3-migration","extensions":[],"friendly_version":"11 SP2","arch":null,"eula_url":"","free":true,"description":null,"shortname":null,"product_type":"extension","cpe":null,"online_predecessor_ids":[],"repositories":[{"description":"SLE11-SMT-SP3-Pool for sle-11-s390x","name":"SLE11-SMT-SP3-Pool","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP3-Pool/sle-11-s390x/","autorefresh":true,"distro_target":"sle-11-s390x","id":1408,"enabled":true},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP3-Pool/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true,"id":1409,"enabled":true,"description":"SLE11-SMT-SP3-Pool for sle-11-x86_64","installer_updates":false,"name":"SLE11-SMT-SP3-Pool"},{"name":"SLE11-SMT-SP3-Pool","installer_updates":false,"description":"SLE11-SMT-SP3-Pool for sle-11-i586","enabled":true,"id":1410,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP3-Pool/sle-11-i586/"}],"product_class":"SLESMT","predecessor_ids":[]},{"release_stage":"released","id":1206,"identifier":"sle-11-WebYaST","extensions":[],"friendly_version":"1.3","former_identifier":"sle-11-WebYaST","release_type":null,"migration_extra":false,"friendly_name":"SUSE WebYaST 1.3","offline_predecessor_ids":[],"name":"SUSE WebYaST","version":"1.3","recommended":false,"product_type":"extension","cpe":null,"repositories":[{"description":"SLE11-SP2-WebYaST-1.3-Pool for sle-11-x86_64","name":"SLE11-SP2-WebYaST-1.3-Pool","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-WebYaST-1.3-Pool/sle-11-x86_64/","enabled":true,"id":1185},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-WebYaST-1.3-Updates/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64","id":1188,"enabled":true,"description":"SLE11-SP2-WebYaST-1.3-Updates for sle-11-x86_64","name":"SLE11-SP2-WebYaST-1.3-Updates","installer_updates":false},{"enabled":true,"id":1411,"distro_target":"sle-11-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-WebYaST-1.3-Pool/sle-11-s390x/","installer_updates":false,"name":"SLE11-SP2-WebYaST-1.3-Pool","description":"SLE11-SP2-WebYaST-1.3-Pool for sle-11-s390x"},{"installer_updates":false,"name":"SLE11-SP2-WebYaST-1.3-Updates","description":"SLE11-SP2-WebYaST-1.3-Updates for sle-11-s390x","enabled":true,"id":1412,"distro_target":"sle-11-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-WebYaST-1.3-Updates/sle-11-s390x/"},{"description":"SLE11-SP2-WebYaST-1.3-Updates for sle-11-i586","name":"SLE11-SP2-WebYaST-1.3-Updates","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-WebYaST-1.3-Updates/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","id":1413,"enabled":true},{"description":"SLE11-SP2-WebYaST-1.3-Pool for sle-11-ppc64","name":"SLE11-SP2-WebYaST-1.3-Pool","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-ppc64","url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-WebYaST-1.3-Pool/sle-11-ppc64/","enabled":true,"id":1414},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-WebYaST-1.3-Updates/sle-11-ia64/","distro_target":"sle-11-ia64","autorefresh":true,"id":1415,"enabled":true,"description":"SLE11-SP2-WebYaST-1.3-Updates for sle-11-ia64","installer_updates":false,"name":"SLE11-SP2-WebYaST-1.3-Updates"},{"autorefresh":true,"distro_target":"sle-11-ia64","url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-WebYaST-1.3-Pool/sle-11-ia64/","enabled":true,"id":1416,"description":"SLE11-SP2-WebYaST-1.3-Pool for sle-11-ia64","name":"SLE11-SP2-WebYaST-1.3-Pool","installer_updates":false},{"description":"SLE11-SP2-WebYaST-1.3-Pool for sle-11-i586","name":"SLE11-SP2-WebYaST-1.3-Pool","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-WebYaST-1.3-Pool/sle-11-i586/","enabled":true,"id":1417},{"autorefresh":true,"distro_target":"sle-11-ppc64","url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-WebYaST-1.3-Updates/sle-11-ppc64/","enabled":true,"id":1418,"description":"SLE11-SP2-WebYaST-1.3-Updates for sle-11-ppc64","name":"SLE11-SP2-WebYaST-1.3-Updates","installer_updates":false}],"online_predecessor_ids":[],"product_class":"WEBYAST","predecessor_ids":[],"arch":null,"eula_url":"","free":true,"shortname":null,"description":null},{"eula_url":"","arch":"ppc64","free":false,"description":null,"shortname":null,"product_type":"extension","cpe":null,"predecessor_ids":[],"product_class":"SLE-HAE-PPC","online_predecessor_ids":[],"repositories":[{"enabled":true,"id":1756,"autorefresh":true,"distro_target":"sle-11-ppc64","url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP4-Pool/sle-11-ppc64/","name":"SLE11-HAE-SP4-Pool","installer_updates":false,"description":"SLE11-HAE-SP4-Pool for sle-11-ppc64"},{"enabled":true,"id":1757,"autorefresh":true,"distro_target":"sle-11-ppc64","url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP4-Updates/sle-11-ppc64/","name":"SLE11-HAE-SP4-Updates","installer_updates":false,"description":"SLE11-HAE-SP4-Updates for sle-11-ppc64"}],"offline_predecessor_ids":[],"name":"SUSE Linux Enterprise High Availability Extension","former_identifier":"sle-hae-SP4-migration","release_type":null,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise High Availability Extension 11 SP3 ppc64 (Migration)","recommended":false,"version":"11.3","extensions":[],"release_stage":"released","identifier":"sle-hae-SP4-migration","id":1283,"friendly_version":"11 SP3"},{"recommended":false,"version":"11.3","name":"SUSE Linux Enterprise Software Development Kit","offline_predecessor_ids":[],"friendly_name":"SUSE Linux Enterprise Software Development Kit 11 SP3 (Migration)","migration_extra":false,"release_type":null,"former_identifier":"sle-sdk-SP4-migration","friendly_version":"11 SP3","extensions":[],"identifier":"sle-sdk-SP4-migration","release_stage":"released","id":1318,"description":null,"shortname":null,"free":true,"eula_url":"","arch":null,"predecessor_ids":[],"online_predecessor_ids":[],"repositories":[{"enabled":false,"id":1257,"autorefresh":true,"distro_target":"sle-11-ia64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Updates/sle-11-ia64/","name":"SLE11-SDK-SP1-Updates","installer_updates":false,"description":"SLE11-SDK-SP1-Updates for sle-11-ia64"},{"id":1258,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-ia64/","autorefresh":true,"distro_target":"sle-11-ia64","name":"SLE11-SDK-SP1-Pool","installer_updates":false,"description":"SLE11-SDK-SP1-Pool for sle-11-ia64"},{"description":"SLE11-SDK-SP1-Pool for sle-11-s390x","name":"SLE11-SDK-SP1-Pool","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-s390x/","autorefresh":true,"distro_target":"sle-11-s390x","id":1259,"enabled":false},{"id":1260,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Updates/sle-11-ppc64/","autorefresh":true,"distro_target":"sle-11-ppc64","name":"SLE11-SDK-SP1-Updates","installer_updates":false,"description":"SLE11-SDK-SP1-Updates for sle-11-ppc64"},{"name":"SLE11-SDK-SP1-Pool","installer_updates":false,"description":"SLE11-SDK-SP1-Pool for sle-11-ppc64","enabled":false,"id":1261,"autorefresh":true,"distro_target":"sle-11-ppc64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-ppc64/"},{"name":"SLE11-SDK-SP1-Updates","installer_updates":false,"description":"SLE11-SDK-SP1-Updates for sle-11-i586","enabled":false,"id":1262,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Updates/sle-11-i586/"},{"description":"SLE11-SDK-SP1-Pool for sle-11-i586","installer_updates":false,"name":"SLE11-SDK-SP1-Pool","distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-i586/","enabled":false,"id":1263},{"description":"SLE11-SDK-SP1-Pool for sle-11-x86_64","installer_updates":false,"name":"SLE11-SDK-SP1-Pool","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true,"id":1264,"enabled":false},{"installer_updates":false,"name":"SLE11-SDK-SP1-Updates","description":"SLE11-SDK-SP1-Updates for sle-11-x86_64","id":1265,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Updates/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true},{"enabled":false,"id":1266,"autorefresh":true,"distro_target":"sle-11-s390x","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Updates/sle-11-s390x/","name":"SLE11-SDK-SP1-Updates","installer_updates":false,"description":"SLE11-SDK-SP1-Updates for sle-11-s390x"},{"installer_updates":false,"name":"SLE11-SDK-SP2-Core","description":"SLE11-SDK-SP2-Core for sle-11-ia64","enabled":false,"id":1267,"distro_target":"sle-11-ia64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-ia64/"},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-s390x/","autorefresh":true,"distro_target":"sle-11-s390x","id":1268,"enabled":false,"description":"SLE11-SDK-SP2-Core for sle-11-s390x","name":"SLE11-SDK-SP2-Core","installer_updates":false},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-s390x/","distro_target":"sle-11-s390x","autorefresh":true,"id":1269,"enabled":false,"description":"SLE11-SDK-SP2-Updates for sle-11-s390x","installer_updates":false,"name":"SLE11-SDK-SP2-Updates"},{"enabled":false,"id":1270,"distro_target":"sle-11-ppc64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-ppc64/","installer_updates":false,"name":"SLE11-SDK-SP2-Updates","description":"SLE11-SDK-SP2-Updates for sle-11-ppc64"},{"description":"SLE11-SDK-SP2-Updates for sle-11-i586","installer_updates":false,"name":"SLE11-SDK-SP2-Updates","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true,"id":1271,"enabled":false},{"enabled":false,"id":1272,"autorefresh":true,"distro_target":"sle-11-ia64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-ia64/","name":"SLE11-SDK-SP2-Updates","installer_updates":false,"description":"SLE11-SDK-SP2-Updates for sle-11-ia64"},{"description":"SLE11-SDK-SP2-Core for sle-11-ppc64","installer_updates":false,"name":"SLE11-SDK-SP2-Core","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-ppc64/","distro_target":"sle-11-ppc64","autorefresh":true,"id":1273,"enabled":false},{"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-i586/","enabled":false,"id":1274,"description":"SLE11-SDK-SP2-Core for sle-11-i586","name":"SLE11-SDK-SP2-Core","installer_updates":false},{"id":1275,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64","name":"SLE11-SDK-SP2-Core","installer_updates":false,"description":"SLE11-SDK-SP2-Core for sle-11-x86_64"},{"distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-x86_64/","enabled":false,"id":1276,"description":"SLE11-SDK-SP2-Updates for sle-11-x86_64","installer_updates":false,"name":"SLE11-SDK-SP2-Updates"},{"description":"SLE11-SDK-SP3-Pool for sle-11-i586","installer_updates":false,"name":"SLE11-SDK-SP3-Pool","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Pool/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true,"id":1277,"enabled":false},{"description":"SLE11-SDK-SP3-Pool for sle-11-ia64","installer_updates":false,"name":"SLE11-SDK-SP3-Pool","distro_target":"sle-11-ia64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Pool/sle-11-ia64/","enabled":false,"id":1278},{"description":"SLE11-SDK-SP3-Updates for sle-11-ppc64","name":"SLE11-SDK-SP3-Updates","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Updates/sle-11-ppc64/","autorefresh":true,"distro_target":"sle-11-ppc64","id":1279,"enabled":false},{"name":"SLE11-SDK-SP3-Updates","installer_updates":false,"description":"SLE11-SDK-SP3-Updates for sle-11-ia64","enabled":false,"id":1280,"autorefresh":true,"distro_target":"sle-11-ia64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Updates/sle-11-ia64/"},{"enabled":false,"id":1281,"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Pool/sle-11-x86_64/","name":"SLE11-SDK-SP3-Pool","installer_updates":false,"description":"SLE11-SDK-SP3-Pool for sle-11-x86_64"},{"installer_updates":false,"name":"SLE11-SDK-SP3-Updates","description":"SLE11-SDK-SP3-Updates for sle-11-s390x","enabled":false,"id":1282,"distro_target":"sle-11-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Updates/sle-11-s390x/"},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Pool/sle-11-ppc64/","distro_target":"sle-11-ppc64","autorefresh":true,"id":1283,"enabled":false,"description":"SLE11-SDK-SP3-Pool for sle-11-ppc64","installer_updates":false,"name":"SLE11-SDK-SP3-Pool"},{"description":"SLE11-SDK-SP3-Updates for sle-11-x86_64","installer_updates":false,"name":"SLE11-SDK-SP3-Updates","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Updates/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true,"id":1284,"enabled":false},{"name":"SLE11-SDK-SP3-Updates","installer_updates":false,"description":"SLE11-SDK-SP3-Updates for sle-11-i586","id":1285,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Updates/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586"},{"installer_updates":false,"name":"SLE11-SDK-SP3-Pool","description":"SLE11-SDK-SP3-Pool for sle-11-s390x","id":1286,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Pool/sle-11-s390x/","distro_target":"sle-11-s390x","autorefresh":true},{"name":"SLE11-SDK-SP4-Pool","installer_updates":false,"description":"SLE11-SDK-SP4-Pool for sle-11-i586","id":1817,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP4-Pool/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586"},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP4-Pool/sle-11-ia64/","autorefresh":true,"distro_target":"sle-11-ia64","id":1818,"enabled":true,"description":"SLE11-SDK-SP4-Pool for sle-11-ia64","name":"SLE11-SDK-SP4-Pool","installer_updates":false},{"enabled":true,"id":1819,"distro_target":"sle-11-ppc64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP4-Pool/sle-11-ppc64/","installer_updates":false,"name":"SLE11-SDK-SP4-Pool","description":"SLE11-SDK-SP4-Pool for sle-11-ppc64"},{"description":"SLE11-SDK-SP4-Pool for sle-11-s390x","installer_updates":false,"name":"SLE11-SDK-SP4-Pool","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP4-Pool/sle-11-s390x/","distro_target":"sle-11-s390x","autorefresh":true,"id":1820,"enabled":true},{"description":"SLE11-SDK-SP4-Pool for sle-11-x86_64","installer_updates":false,"name":"SLE11-SDK-SP4-Pool","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP4-Pool/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true,"id":1821,"enabled":true},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP4-Updates/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","id":1822,"enabled":true,"description":"SLE11-SDK-SP4-Updates for sle-11-i586","name":"SLE11-SDK-SP4-Updates","installer_updates":false},{"description":"SLE11-SDK-SP4-Updates for sle-11-ia64","name":"SLE11-SDK-SP4-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-ia64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP4-Updates/sle-11-ia64/","enabled":true,"id":1823},{"id":1824,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP4-Updates/sle-11-ppc64/","autorefresh":true,"distro_target":"sle-11-ppc64","name":"SLE11-SDK-SP4-Updates","installer_updates":false,"description":"SLE11-SDK-SP4-Updates for sle-11-ppc64"},{"enabled":true,"id":1825,"autorefresh":true,"distro_target":"sle-11-s390x","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP4-Updates/sle-11-s390x/","name":"SLE11-SDK-SP4-Updates","installer_updates":false,"description":"SLE11-SDK-SP4-Updates for sle-11-s390x"},{"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP4-Updates/sle-11-x86_64/","enabled":true,"id":1826,"description":"SLE11-SDK-SP4-Updates for sle-11-x86_64","name":"SLE11-SDK-SP4-Updates","installer_updates":false}],"product_class":"SLE-SDK","cpe":null,"product_type":"extension"}],"identifier":"SUSE_SLES","release_stage":"released","id":949,"friendly_version":"11 SP3"},{"cpe":null,"product_type":"base","product_class":"SLES-PPC","online_predecessor_ids":[],"repositories":[{"installer_updates":false,"name":"SLE11-SP1-Debuginfo-Updates","description":"SLE11-SP1-Debuginfo-Updates for sle-11-ppc64","id":924,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Updates/sle-11-ppc64/","distro_target":"sle-11-ppc64","autorefresh":true},{"distro_target":"sle-11-ppc64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Pool/sle-11-ppc64/","enabled":false,"id":925,"description":"SLE11-SP1-Debuginfo-Pool for sle-11-ppc64","installer_updates":false,"name":"SLE11-SP1-Debuginfo-Pool"},{"installer_updates":false,"name":"SLE11-SP2-Debuginfo-Updates","description":"SLE11-SP2-Debuginfo-Updates for sle-11-ppc64","enabled":false,"id":926,"distro_target":"sle-11-ppc64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-Debuginfo-Updates/sle-11-ppc64/"},{"id":927,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP2-Core/sle-11-ppc64/","distro_target":"sle-11-ppc64","autorefresh":true,"installer_updates":false,"name":"SLES11-SP2-Core","description":"SLES11-SP2-Core for sle-11-ppc64"},{"description":"SLES11-SP2-Updates for sle-11-ppc64","name":"SLES11-SP2-Updates","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP2-Updates/sle-11-ppc64/","autorefresh":true,"distro_target":"sle-11-ppc64","id":928,"enabled":true},{"description":"SLE11-WebYaST-SP2-Pool for sle-11-ppc64","installer_updates":false,"name":"SLE11-WebYaST-SP2-Pool","url":"https://updates.suse.com/repo/$RCE/SLE11-WebYaST-SP2-Pool/sle-11-ppc64/","distro_target":"sle-11-ppc64","autorefresh":true,"id":929,"enabled":false},{"name":"SLE11-SP2-Debuginfo-Core","installer_updates":false,"description":"SLE11-SP2-Debuginfo-Core for sle-11-ppc64","enabled":false,"id":930,"autorefresh":true,"distro_target":"sle-11-ppc64","url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-Debuginfo-Core/sle-11-ppc64/"},{"enabled":false,"id":931,"distro_target":"sle-11-ppc64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-WebYaST-SP2-Updates/sle-11-ppc64/","installer_updates":false,"name":"SLE11-WebYaST-SP2-Updates","description":"SLE11-WebYaST-SP2-Updates for sle-11-ppc64"}],"predecessor_ids":[],"arch":"ppc","eula_url":"","description":null,"shortname":null,"free":false,"identifier":"SUSE_SLES-SP2-migration","release_stage":"released","id":950,"extensions":[{"release_stage":"released","id":1040,"identifier":"sle-hae-SP2-migration","extensions":[],"friendly_version":"11 SP1","release_type":null,"former_identifier":"sle-hae-SP2-migration","friendly_name":"SUSE Linux Enterprise High Availability Extension 11 SP1 ppc (Migration)","migration_extra":false,"offline_predecessor_ids":[],"name":"SUSE Linux Enterprise High Availability Extension","version":"11.1","recommended":false,"product_type":"extension","cpe":null,"online_predecessor_ids":[],"repositories":[{"name":"SLE11-HAE-SP2-Pool","installer_updates":false,"description":"SLE11-HAE-SP2-Pool for sle-11-ppc64","enabled":true,"id":1041,"autorefresh":true,"distro_target":"sle-11-ppc64","url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP2-Pool/sle-11-ppc64/"},{"name":"SLE11-HAE-SP2-Updates","installer_updates":false,"description":"SLE11-HAE-SP2-Updates for sle-11-ppc64","id":1042,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP2-Updates/sle-11-ppc64/","autorefresh":true,"distro_target":"sle-11-ppc64"}],"product_class":"SLE-HAE-PPC","predecessor_ids":[],"arch":"ppc","eula_url":"","free":false,"description":null,"shortname":null},{"free":false,"shortname":null,"description":null,"eula_url":"","arch":"ppc","predecessor_ids":[],"repositories":[{"description":"SLE11-HAE-SP1-Pool for sle-11-ppc64","installer_updates":false,"name":"SLE11-HAE-SP1-Pool","url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP1-Pool/sle-11-ppc64/","distro_target":"sle-11-ppc64","autorefresh":true,"id":1043,"enabled":true},{"id":1044,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP1-Updates/sle-11-ppc64/","autorefresh":true,"distro_target":"sle-11-ppc64","name":"SLE11-HAE-SP1-Updates","installer_updates":false,"description":"SLE11-HAE-SP1-Updates for sle-11-ppc64"}],"online_predecessor_ids":[],"product_class":"SLE-HAE-PPC","product_type":"extension","cpe":null,"recommended":false,"version":"11.1","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise High Availability Extension","former_identifier":"sle-hae","release_type":null,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise High Availability Extension 11 SP1 ppc","friendly_version":"11 SP1","extensions":[],"release_stage":"released","identifier":"sle-hae","id":1041}],"friendly_version":"11 SP1","migration_extra":false,"friendly_name":"SUSE Linux Enterprise Server 11 SP1 ppc (Migration)","release_type":null,"former_identifier":"SUSE_SLES-SP2-migration","name":"SUSE Linux Enterprise Server","offline_predecessor_ids":[],"version":"11.1","recommended":false},{"eula_url":"","arch":"ppc","free":false,"shortname":null,"description":null,"product_type":"base","cpe":"cpe:/o:suse:suse_sles:11:sp1","predecessor_ids":[],"repositories":[{"id":919,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-Pool/sle-11-ppc64/","autorefresh":true,"distro_target":"sle-11-ppc64","name":"SLES11-SP1-Pool","installer_updates":false,"description":"SLES11-SP1-Pool for sle-11-ppc64"},{"description":"SLES11-Extras for sle-11-ppc64","installer_updates":false,"name":"SLES11-Extras","distro_target":"sle-11-ppc64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-Extras/sle-11-ppc64/","enabled":false,"id":920},{"autorefresh":true,"distro_target":"sle-11-ppc64","url":"https://updates.suse.com/repo/$RCE/SLE11-WebYaST-SP1-Updates/sle-11-ppc64/","enabled":false,"id":921,"description":"SLE11-WebYaST-SP1-Updates for sle-11-ppc64","name":"SLE11-WebYaST-SP1-Updates","installer_updates":false},{"url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-Updates/sle-11-ppc64/","autorefresh":true,"distro_target":"sle-11-ppc64","id":922,"enabled":true,"description":"SLES11-SP1-Updates for sle-11-ppc64","name":"SLES11-SP1-Updates","installer_updates":false},{"url":"https://updates.suse.com/repo/$RCE/SLE11-WebYaST-SP1-Pool/sle-11-ppc64/","autorefresh":true,"distro_target":"sle-11-ppc64","id":923,"enabled":false,"description":"SLE11-WebYaST-SP1-Pool for sle-11-ppc64","name":"SLE11-WebYaST-SP1-Pool","installer_updates":false},{"id":924,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Updates/sle-11-ppc64/","autorefresh":true,"distro_target":"sle-11-ppc64","name":"SLE11-SP1-Debuginfo-Updates","installer_updates":false,"description":"SLE11-SP1-Debuginfo-Updates for sle-11-ppc64"},{"enabled":false,"id":925,"autorefresh":true,"distro_target":"sle-11-ppc64","url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Pool/sle-11-ppc64/","name":"SLE11-SP1-Debuginfo-Pool","installer_updates":false,"description":"SLE11-SP1-Debuginfo-Pool for sle-11-ppc64"}],"online_predecessor_ids":[],"product_class":"SLES-PPC","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Server","release_type":null,"former_identifier":"SUSE_SLES","friendly_name":"SUSE Linux Enterprise Server 11 SP1 ppc","migration_extra":false,"recommended":false,"version":"11.1","extensions":[{"arch":null,"eula_url":"","free":true,"shortname":null,"description":null,"product_type":"extension","cpe":null,"repositories":[{"enabled":true,"id":825,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-WebYaST-1.1-Updates/sle-11-i586/","name":"SLE11-SP1-WebYaST-1.1-Updates","installer_updates":false,"description":"SLE11-SP1-WebYaST-1.1-Updates for sle-11-i586"},{"id":826,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-WebYaST-1.1-Pool/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","name":"SLE11-SP1-WebYaST-1.1-Pool","installer_updates":false,"description":"SLE11-SP1-WebYaST-1.1-Pool for sle-11-i586"},{"installer_updates":false,"name":"SLE11-SP1-WebYaST-1.1-Pool","description":"SLE11-SP1-WebYaST-1.1-Pool for sle-11-x86_64","enabled":false,"id":827,"distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-WebYaST-1.1-Pool/sle-11-x86_64/"},{"distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-WebYaST-1.1-Updates/sle-11-x86_64/","enabled":true,"id":828,"description":"SLE11-SP1-WebYaST-1.1-Updates for sle-11-x86_64","installer_updates":false,"name":"SLE11-SP1-WebYaST-1.1-Updates"}],"online_predecessor_ids":[],"product_class":"WEBYAST","predecessor_ids":[],"release_type":null,"former_identifier":"sle-11-WebYaST","migration_extra":false,"friendly_name":"SUSE WebYaST 1.1","offline_predecessor_ids":[],"name":"SUSE WebYaST","version":"1.1","recommended":false,"release_stage":"released","identifier":"sle-11-WebYaST","id":835,"extensions":[],"friendly_version":"1.1"},{"online_predecessor_ids":[],"product_class":"SLE-HAE-PPC","repositories":[{"description":"SLE11-HAE-SP2-Pool for sle-11-ppc64","name":"SLE11-HAE-SP2-Pool","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-ppc64","url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP2-Pool/sle-11-ppc64/","enabled":true,"id":1041},{"installer_updates":false,"name":"SLE11-HAE-SP2-Updates","description":"SLE11-HAE-SP2-Updates for sle-11-ppc64","id":1042,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP2-Updates/sle-11-ppc64/","distro_target":"sle-11-ppc64","autorefresh":true}],"predecessor_ids":[],"cpe":null,"product_type":"extension","shortname":null,"description":null,"free":false,"arch":"ppc","eula_url":"","friendly_version":"11 SP1","release_stage":"released","identifier":"sle-hae-SP2-migration","id":1040,"extensions":[],"version":"11.1","recommended":false,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise High Availability Extension 11 SP1 ppc (Migration)","former_identifier":"sle-hae-SP2-migration","release_type":null,"name":"SUSE Linux Enterprise High Availability Extension","offline_predecessor_ids":[]},{"identifier":"sle-hae","release_stage":"released","id":1041,"extensions":[],"friendly_version":"11 SP1","former_identifier":"sle-hae","release_type":null,"friendly_name":"SUSE Linux Enterprise High Availability Extension 11 SP1 ppc","migration_extra":false,"offline_predecessor_ids":[],"name":"SUSE Linux Enterprise High Availability Extension","version":"11.1","recommended":false,"product_type":"extension","cpe":null,"online_predecessor_ids":[],"product_class":"SLE-HAE-PPC","repositories":[{"url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP1-Pool/sle-11-ppc64/","distro_target":"sle-11-ppc64","autorefresh":true,"id":1043,"enabled":true,"description":"SLE11-HAE-SP1-Pool for sle-11-ppc64","installer_updates":false,"name":"SLE11-HAE-SP1-Pool"},{"url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP1-Updates/sle-11-ppc64/","autorefresh":true,"distro_target":"sle-11-ppc64","id":1044,"enabled":true,"description":"SLE11-HAE-SP1-Updates for sle-11-ppc64","name":"SLE11-HAE-SP1-Updates","installer_updates":false}],"predecessor_ids":[],"arch":"ppc","eula_url":"","free":false,"shortname":null,"description":null},{"online_predecessor_ids":[],"repositories":[{"distro_target":"sle-11-ia64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Updates/sle-11-ia64/","enabled":true,"id":1257,"description":"SLE11-SDK-SP1-Updates for sle-11-ia64","installer_updates":false,"name":"SLE11-SDK-SP1-Updates"},{"enabled":true,"id":1258,"distro_target":"sle-11-ia64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-ia64/","installer_updates":false,"name":"SLE11-SDK-SP1-Pool","description":"SLE11-SDK-SP1-Pool for sle-11-ia64"},{"installer_updates":false,"name":"SLE11-SDK-SP1-Pool","description":"SLE11-SDK-SP1-Pool for sle-11-s390x","id":1259,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-s390x/","distro_target":"sle-11-s390x","autorefresh":true},{"name":"SLE11-SDK-SP1-Updates","installer_updates":false,"description":"SLE11-SDK-SP1-Updates for sle-11-ppc64","enabled":true,"id":1260,"autorefresh":true,"distro_target":"sle-11-ppc64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Updates/sle-11-ppc64/"},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-ppc64/","distro_target":"sle-11-ppc64","autorefresh":true,"id":1261,"enabled":true,"description":"SLE11-SDK-SP1-Pool for sle-11-ppc64","installer_updates":false,"name":"SLE11-SDK-SP1-Pool"},{"description":"SLE11-SDK-SP1-Updates for sle-11-i586","name":"SLE11-SDK-SP1-Updates","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Updates/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","id":1262,"enabled":true},{"name":"SLE11-SDK-SP1-Pool","installer_updates":false,"description":"SLE11-SDK-SP1-Pool for sle-11-i586","id":1263,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586"},{"description":"SLE11-SDK-SP1-Pool for sle-11-x86_64","installer_updates":false,"name":"SLE11-SDK-SP1-Pool","distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-x86_64/","enabled":true,"id":1264},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Updates/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64","id":1265,"enabled":true,"description":"SLE11-SDK-SP1-Updates for sle-11-x86_64","name":"SLE11-SDK-SP1-Updates","installer_updates":false},{"installer_updates":false,"name":"SLE11-SDK-SP1-Updates","description":"SLE11-SDK-SP1-Updates for sle-11-s390x","id":1266,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Updates/sle-11-s390x/","distro_target":"sle-11-s390x","autorefresh":true}],"product_class":"SLE-SDK","predecessor_ids":[],"cpe":null,"product_type":"extension","description":null,"shortname":null,"free":true,"arch":null,"eula_url":"","friendly_version":"11 SP1","release_stage":"released","id":1159,"identifier":"sle-sdk","extensions":[],"version":"11.1","recommended":false,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Software Development Kit 11 SP1","former_identifier":"sle-sdk","release_type":null,"name":"SUSE Linux Enterprise Software Development Kit","offline_predecessor_ids":[]},{"friendly_version":"11","extensions":[],"id":1162,"release_stage":"released","identifier":"sle-sdk-SP1-migration","recommended":false,"version":"11","name":"SUSE Linux Enterprise Software Development Kit","offline_predecessor_ids":[],"friendly_name":"SUSE Linux Enterprise Software Development Kit 11 (Migration)","migration_extra":false,"former_identifier":"sle-sdk-SP1-migration","release_type":null,"predecessor_ids":[],"online_predecessor_ids":[],"repositories":[{"description":"SLE11-SDK-SP1-Pool for sle-11-ia64","installer_updates":false,"name":"SLE11-SDK-SP1-Pool","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-ia64/","distro_target":"sle-11-ia64","autorefresh":true,"id":1258,"enabled":true},{"id":1259,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-s390x/","autorefresh":true,"distro_target":"sle-11-s390x","name":"SLE11-SDK-SP1-Pool","installer_updates":false,"description":"SLE11-SDK-SP1-Pool for sle-11-s390x"},{"installer_updates":false,"name":"SLE11-SDK-SP1-Pool","description":"SLE11-SDK-SP1-Pool for sle-11-ppc64","enabled":true,"id":1261,"distro_target":"sle-11-ppc64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-ppc64/"},{"description":"SLE11-SDK-SP1-Pool for sle-11-i586","installer_updates":false,"name":"SLE11-SDK-SP1-Pool","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true,"id":1263,"enabled":true},{"name":"SLE11-SDK-SP1-Pool","installer_updates":false,"description":"SLE11-SDK-SP1-Pool for sle-11-x86_64","enabled":true,"id":1264,"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-x86_64/"}],"product_class":"SLE-SDK","cpe":null,"product_type":"extension","shortname":null,"description":null,"free":true,"eula_url":"","arch":null},{"product_type":"extension","cpe":null,"online_predecessor_ids":[],"product_class":"SLE-SDK","repositories":[{"installer_updates":false,"name":"SLE11-SDK-SP2-Core","description":"SLE11-SDK-SP2-Core for sle-11-ia64","id":1267,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-ia64/","distro_target":"sle-11-ia64","autorefresh":true},{"description":"SLE11-SDK-SP2-Core for sle-11-s390x","name":"SLE11-SDK-SP2-Core","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-s390x","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-s390x/","enabled":true,"id":1268},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-s390x/","autorefresh":true,"distro_target":"sle-11-s390x","id":1269,"enabled":true,"description":"SLE11-SDK-SP2-Updates for sle-11-s390x","name":"SLE11-SDK-SP2-Updates","installer_updates":false},{"name":"SLE11-SDK-SP2-Updates","installer_updates":false,"description":"SLE11-SDK-SP2-Updates for sle-11-ppc64","enabled":true,"id":1270,"autorefresh":true,"distro_target":"sle-11-ppc64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-ppc64/"},{"name":"SLE11-SDK-SP2-Updates","installer_updates":false,"description":"SLE11-SDK-SP2-Updates for sle-11-i586","enabled":true,"id":1271,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-i586/"},{"name":"SLE11-SDK-SP2-Updates","installer_updates":false,"description":"SLE11-SDK-SP2-Updates for sle-11-ia64","enabled":true,"id":1272,"autorefresh":true,"distro_target":"sle-11-ia64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-ia64/"},{"installer_updates":false,"name":"SLE11-SDK-SP2-Core","description":"SLE11-SDK-SP2-Core for sle-11-ppc64","enabled":true,"id":1273,"distro_target":"sle-11-ppc64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-ppc64/"},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true,"id":1274,"enabled":true,"description":"SLE11-SDK-SP2-Core for sle-11-i586","installer_updates":false,"name":"SLE11-SDK-SP2-Core"},{"id":1275,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true,"installer_updates":false,"name":"SLE11-SDK-SP2-Core","description":"SLE11-SDK-SP2-Core for sle-11-x86_64"},{"id":1276,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64","name":"SLE11-SDK-SP2-Updates","installer_updates":false,"description":"SLE11-SDK-SP2-Updates for sle-11-x86_64"}],"predecessor_ids":[],"arch":null,"eula_url":"","free":true,"description":null,"shortname":null,"release_stage":"released","id":1163,"identifier":"sle-sdk-SP2-migration","extensions":[],"friendly_version":"11 SP1","former_identifier":"sle-sdk-SP2-migration","release_type":null,"friendly_name":"SUSE Linux Enterprise Software Development Kit 11 SP1 (Migration)","migration_extra":false,"offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Software Development Kit","version":"11.1","recommended":false},{"eula_url":"","arch":null,"description":null,"shortname":null,"free":true,"cpe":null,"product_type":"extension","predecessor_ids":[],"online_predecessor_ids":[],"repositories":[{"description":"SLE11-SP1-SMT-Updates for sle-11-x86_64","installer_updates":false,"name":"SLE11-SP1-SMT-Updates","url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-SMT-Updates/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true,"id":1386,"enabled":true},{"description":"SLE11-SP1-SMT-Pool for sle-11-s390x","installer_updates":false,"name":"SLE11-SP1-SMT-Pool","url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-SMT-Pool/sle-11-s390x/","distro_target":"sle-11-s390x","autorefresh":true,"id":1387,"enabled":true},{"description":"SLE11-SP1-SMT-Pool for sle-11-x86_64","installer_updates":false,"name":"SLE11-SP1-SMT-Pool","url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-SMT-Pool/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true,"id":1388,"enabled":true},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-SMT-Updates/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true,"id":1389,"enabled":true,"description":"SLE11-SP1-SMT-Updates for sle-11-i586","installer_updates":false,"name":"SLE11-SP1-SMT-Updates"},{"distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-SMT-Pool/sle-11-i586/","enabled":true,"id":1390,"description":"SLE11-SP1-SMT-Pool for sle-11-i586","installer_updates":false,"name":"SLE11-SP1-SMT-Pool"},{"name":"SLE11-SP1-SMT-Updates","installer_updates":false,"description":"SLE11-SP1-SMT-Updates for sle-11-s390x","enabled":true,"id":1391,"autorefresh":true,"distro_target":"sle-11-s390x","url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-SMT-Updates/sle-11-s390x/"}],"product_class":"SLESMT","name":"SUSE Linux Enterprise Subscription Management Tool","offline_predecessor_ids":[],"friendly_name":"SUSE Linux Enterprise Subscription Management Tool 11 SP1","migration_extra":false,"former_identifier":"sle-smt","release_type":null,"recommended":false,"version":"11.1","extensions":[],"release_stage":"released","identifier":"sle-smt","id":1192,"friendly_version":"11 SP1"}],"release_stage":"released","identifier":"SUSE_SLES","id":951,"friendly_version":"11 SP1"},{"cpe":"cpe:/o:suse:suse_sles:11:sp2","product_type":"base","predecessor_ids":[],"product_class":"SLES-PPC","online_predecessor_ids":[],"repositories":[{"installer_updates":false,"name":"SLES11-SP1-Pool","description":"SLES11-SP1-Pool for sle-11-ppc64","enabled":true,"id":919,"distro_target":"sle-11-ppc64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-Pool/sle-11-ppc64/"},{"description":"SLES11-Extras for sle-11-ppc64","name":"SLES11-Extras","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-ppc64","url":"https://updates.suse.com/repo/$RCE/SLES11-Extras/sle-11-ppc64/","enabled":false,"id":920},{"enabled":true,"id":922,"distro_target":"sle-11-ppc64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-Updates/sle-11-ppc64/","installer_updates":false,"name":"SLES11-SP1-Updates","description":"SLES11-SP1-Updates for sle-11-ppc64"},{"enabled":false,"id":924,"autorefresh":true,"distro_target":"sle-11-ppc64","url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Updates/sle-11-ppc64/","name":"SLE11-SP1-Debuginfo-Updates","installer_updates":false,"description":"SLE11-SP1-Debuginfo-Updates for sle-11-ppc64"},{"id":925,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Pool/sle-11-ppc64/","distro_target":"sle-11-ppc64","autorefresh":true,"installer_updates":false,"name":"SLE11-SP1-Debuginfo-Pool","description":"SLE11-SP1-Debuginfo-Pool for sle-11-ppc64"},{"id":926,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-Debuginfo-Updates/sle-11-ppc64/","autorefresh":true,"distro_target":"sle-11-ppc64","name":"SLE11-SP2-Debuginfo-Updates","installer_updates":false,"description":"SLE11-SP2-Debuginfo-Updates for sle-11-ppc64"},{"name":"SLES11-SP2-Core","installer_updates":false,"description":"SLES11-SP2-Core for sle-11-ppc64","enabled":true,"id":927,"autorefresh":true,"distro_target":"sle-11-ppc64","url":"https://updates.suse.com/repo/$RCE/SLES11-SP2-Core/sle-11-ppc64/"},{"id":928,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP2-Updates/sle-11-ppc64/","distro_target":"sle-11-ppc64","autorefresh":true,"installer_updates":false,"name":"SLES11-SP2-Updates","description":"SLES11-SP2-Updates for sle-11-ppc64"},{"description":"SLE11-WebYaST-SP2-Pool for sle-11-ppc64","name":"SLE11-WebYaST-SP2-Pool","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-WebYaST-SP2-Pool/sle-11-ppc64/","autorefresh":true,"distro_target":"sle-11-ppc64","id":929,"enabled":false},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-Debuginfo-Core/sle-11-ppc64/","distro_target":"sle-11-ppc64","autorefresh":true,"id":930,"enabled":false,"description":"SLE11-SP2-Debuginfo-Core for sle-11-ppc64","installer_updates":false,"name":"SLE11-SP2-Debuginfo-Core"},{"description":"SLE11-WebYaST-SP2-Updates for sle-11-ppc64","name":"SLE11-WebYaST-SP2-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-ppc64","url":"https://updates.suse.com/repo/$RCE/SLE11-WebYaST-SP2-Updates/sle-11-ppc64/","enabled":false,"id":931},{"enabled":true,"id":940,"autorefresh":true,"distro_target":"sle-11-ppc64","url":"https://updates.suse.com/repo/$RCE/SLES11-SP2-Extension-Store/sle-11-ppc64/","name":"SLES11-SP2-Extension-Store","installer_updates":false,"description":"SLES11-SP2-Extension-Store for sle-11-ppc64"}],"eula_url":"","arch":"ppc","description":null,"shortname":null,"free":false,"extensions":[{"eula_url":"","arch":null,"description":null,"shortname":null,"free":true,"cpe":null,"product_type":"extension","predecessor_ids":[],"product_class":"WEBYAST","online_predecessor_ids":[],"repositories":[{"installer_updates":false,"name":"SLE11-SP1-WebYaST-1.2-Updates","description":"SLE11-SP1-WebYaST-1.2-Updates for sle-11-x86_64","enabled":true,"id":839,"distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-WebYaST-1.2-Updates/sle-11-x86_64/"},{"description":"SLE11-SP1-WebYaST-1.2-Pool for sle-11-i586","name":"SLE11-SP1-WebYaST-1.2-Pool","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-WebYaST-1.2-Pool/sle-11-i586/","enabled":false,"id":840},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-WebYaST-1.2-Pool/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true,"id":841,"enabled":false,"description":"SLE11-SP1-WebYaST-1.2-Pool for sle-11-x86_64","installer_updates":false,"name":"SLE11-SP1-WebYaST-1.2-Pool"},{"installer_updates":false,"name":"SLE11-SP1-WebYaST-1.2-Updates","description":"SLE11-SP1-WebYaST-1.2-Updates for sle-11-i586","enabled":true,"id":842,"distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-WebYaST-1.2-Updates/sle-11-i586/"}],"name":"SUSE WebYaST","offline_predecessor_ids":[],"friendly_name":"SUSE WebYaST 1.2","migration_extra":false,"release_type":null,"former_identifier":"sle-11-WebYaST","recommended":false,"version":"1.2","extensions":[],"identifier":"sle-11-WebYaST","release_stage":"released","id":837,"friendly_version":"1.2"},{"predecessor_ids":[],"product_class":"SLE-HAE-PPC","online_predecessor_ids":[],"repositories":[{"enabled":true,"id":1041,"distro_target":"sle-11-ppc64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP2-Pool/sle-11-ppc64/","installer_updates":false,"name":"SLE11-HAE-SP2-Pool","description":"SLE11-HAE-SP2-Pool for sle-11-ppc64"},{"url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP2-Updates/sle-11-ppc64/","distro_target":"sle-11-ppc64","autorefresh":true,"id":1042,"enabled":true,"description":"SLE11-HAE-SP2-Updates for sle-11-ppc64","installer_updates":false,"name":"SLE11-HAE-SP2-Updates"}],"cpe":null,"product_type":"extension","description":null,"shortname":null,"free":false,"eula_url":"","arch":"ppc","friendly_version":"11 SP2","extensions":[{"friendly_version":"11 SP2","extensions":[],"release_stage":"released","id":1112,"identifier":"sle-haegeo","recommended":false,"version":"11.2","offline_predecessor_ids":[],"name":"Geo Clustering for SUSE Linux Enterprise High Availability Extension","release_type":null,"former_identifier":"sle-haegeo","migration_extra":false,"friendly_name":"Geo Clustering for SUSE Linux Enterprise High Availability Extension 11 SP2 ppc","predecessor_ids":[],"online_predecessor_ids":[],"product_class":"SLE-HAE-GEO","repositories":[{"id":1122,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-GEO-SP2-Updates/sle-11-ppc64/","autorefresh":true,"distro_target":"sle-11-ppc64","name":"SLE11-HAE-GEO-SP2-Updates","installer_updates":false,"description":"SLE11-HAE-GEO-SP2-Updates for sle-11-ppc64"}],"product_type":"extension","cpe":null,"free":false,"description":null,"shortname":null,"eula_url":"","arch":"ppc"}],"id":1047,"release_stage":"released","identifier":"sle-hae","recommended":false,"version":"11.2","name":"SUSE Linux Enterprise High Availability Extension","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"SUSE Linux Enterprise High Availability Extension 11 SP2 ppc","release_type":null,"former_identifier":"sle-hae"},{"free":true,"description":null,"shortname":null,"eula_url":"","arch":null,"predecessor_ids":[],"product_class":"SLE-SDK","online_predecessor_ids":[],"repositories":[{"id":1257,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Updates/sle-11-ia64/","autorefresh":true,"distro_target":"sle-11-ia64","name":"SLE11-SDK-SP1-Updates","installer_updates":false,"description":"SLE11-SDK-SP1-Updates for sle-11-ia64"},{"enabled":true,"id":1258,"distro_target":"sle-11-ia64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-ia64/","installer_updates":false,"name":"SLE11-SDK-SP1-Pool","description":"SLE11-SDK-SP1-Pool for sle-11-ia64"},{"enabled":true,"id":1259,"autorefresh":true,"distro_target":"sle-11-s390x","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-s390x/","name":"SLE11-SDK-SP1-Pool","installer_updates":false,"description":"SLE11-SDK-SP1-Pool for sle-11-s390x"},{"installer_updates":false,"name":"SLE11-SDK-SP1-Updates","description":"SLE11-SDK-SP1-Updates for sle-11-ppc64","id":1260,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Updates/sle-11-ppc64/","distro_target":"sle-11-ppc64","autorefresh":true},{"description":"SLE11-SDK-SP1-Pool for sle-11-ppc64","name":"SLE11-SDK-SP1-Pool","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-ppc64/","autorefresh":true,"distro_target":"sle-11-ppc64","id":1261,"enabled":true},{"installer_updates":false,"name":"SLE11-SDK-SP1-Updates","description":"SLE11-SDK-SP1-Updates for sle-11-i586","enabled":true,"id":1262,"distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Updates/sle-11-i586/"},{"description":"SLE11-SDK-SP1-Pool for sle-11-i586","name":"SLE11-SDK-SP1-Pool","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-i586/","enabled":true,"id":1263},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true,"id":1264,"enabled":true,"description":"SLE11-SDK-SP1-Pool for sle-11-x86_64","installer_updates":false,"name":"SLE11-SDK-SP1-Pool"},{"installer_updates":false,"name":"SLE11-SDK-SP1-Updates","description":"SLE11-SDK-SP1-Updates for sle-11-x86_64","id":1265,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Updates/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true},{"installer_updates":false,"name":"SLE11-SDK-SP1-Updates","description":"SLE11-SDK-SP1-Updates for sle-11-s390x","id":1266,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Updates/sle-11-s390x/","distro_target":"sle-11-s390x","autorefresh":true},{"distro_target":"sle-11-ia64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-ia64/","enabled":true,"id":1267,"description":"SLE11-SDK-SP2-Core for sle-11-ia64","installer_updates":false,"name":"SLE11-SDK-SP2-Core"},{"name":"SLE11-SDK-SP2-Core","installer_updates":false,"description":"SLE11-SDK-SP2-Core for sle-11-s390x","enabled":true,"id":1268,"autorefresh":true,"distro_target":"sle-11-s390x","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-s390x/"},{"name":"SLE11-SDK-SP2-Updates","installer_updates":false,"description":"SLE11-SDK-SP2-Updates for sle-11-s390x","enabled":true,"id":1269,"autorefresh":true,"distro_target":"sle-11-s390x","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-s390x/"},{"distro_target":"sle-11-ppc64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-ppc64/","enabled":true,"id":1270,"description":"SLE11-SDK-SP2-Updates for sle-11-ppc64","installer_updates":false,"name":"SLE11-SDK-SP2-Updates"},{"id":1271,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","name":"SLE11-SDK-SP2-Updates","installer_updates":false,"description":"SLE11-SDK-SP2-Updates for sle-11-i586"},{"name":"SLE11-SDK-SP2-Updates","installer_updates":false,"description":"SLE11-SDK-SP2-Updates for sle-11-ia64","id":1272,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-ia64/","autorefresh":true,"distro_target":"sle-11-ia64"},{"distro_target":"sle-11-ppc64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-ppc64/","enabled":true,"id":1273,"description":"SLE11-SDK-SP2-Core for sle-11-ppc64","installer_updates":false,"name":"SLE11-SDK-SP2-Core"},{"id":1274,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true,"installer_updates":false,"name":"SLE11-SDK-SP2-Core","description":"SLE11-SDK-SP2-Core for sle-11-i586"},{"description":"SLE11-SDK-SP2-Core for sle-11-x86_64","name":"SLE11-SDK-SP2-Core","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64","id":1275,"enabled":true},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true,"id":1276,"enabled":true,"description":"SLE11-SDK-SP2-Updates for sle-11-x86_64","installer_updates":false,"name":"SLE11-SDK-SP2-Updates"}],"product_type":"extension","cpe":null,"recommended":false,"version":"11.2","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Software Development Kit","former_identifier":"sle-sdk","release_type":null,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Software Development Kit 11 SP2","friendly_version":"11 SP2","extensions":[],"release_stage":"released","id":1160,"identifier":"sle-sdk"},{"online_predecessor_ids":[],"product_class":"SLE-SDK","repositories":[{"installer_updates":false,"name":"SLE11-SDK-SP2-Core","description":"SLE11-SDK-SP2-Core for sle-11-ia64","id":1267,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-ia64/","distro_target":"sle-11-ia64","autorefresh":true},{"name":"SLE11-SDK-SP2-Core","installer_updates":false,"description":"SLE11-SDK-SP2-Core for sle-11-s390x","id":1268,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-s390x/","autorefresh":true,"distro_target":"sle-11-s390x"},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-s390x/","autorefresh":true,"distro_target":"sle-11-s390x","id":1269,"enabled":true,"description":"SLE11-SDK-SP2-Updates for sle-11-s390x","name":"SLE11-SDK-SP2-Updates","installer_updates":false},{"distro_target":"sle-11-ppc64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-ppc64/","enabled":true,"id":1270,"description":"SLE11-SDK-SP2-Updates for sle-11-ppc64","installer_updates":false,"name":"SLE11-SDK-SP2-Updates"},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true,"id":1271,"enabled":true,"description":"SLE11-SDK-SP2-Updates for sle-11-i586","installer_updates":false,"name":"SLE11-SDK-SP2-Updates"},{"name":"SLE11-SDK-SP2-Updates","installer_updates":false,"description":"SLE11-SDK-SP2-Updates for sle-11-ia64","enabled":true,"id":1272,"autorefresh":true,"distro_target":"sle-11-ia64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-ia64/"},{"id":1273,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-ppc64/","distro_target":"sle-11-ppc64","autorefresh":true,"installer_updates":false,"name":"SLE11-SDK-SP2-Core","description":"SLE11-SDK-SP2-Core for sle-11-ppc64"},{"name":"SLE11-SDK-SP2-Core","installer_updates":false,"description":"SLE11-SDK-SP2-Core for sle-11-i586","id":1274,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586"},{"installer_updates":false,"name":"SLE11-SDK-SP2-Core","description":"SLE11-SDK-SP2-Core for sle-11-x86_64","enabled":true,"id":1275,"distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-x86_64/"},{"name":"SLE11-SDK-SP2-Updates","installer_updates":false,"description":"SLE11-SDK-SP2-Updates for sle-11-x86_64","enabled":true,"id":1276,"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-x86_64/"}],"predecessor_ids":[],"product_type":"extension","cpe":null,"free":true,"description":null,"shortname":null,"arch":null,"eula_url":"","friendly_version":"11 SP1","identifier":"sle-sdk-SP2-migration","release_stage":"released","id":1163,"extensions":[],"version":"11.1","recommended":false,"release_type":null,"former_identifier":"sle-sdk-SP2-migration","migration_extra":false,"friendly_name":"SUSE Linux Enterprise Software Development Kit 11 SP1 (Migration)","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Software Development Kit"},{"friendly_version":"11 SP2","extensions":[],"release_stage":"released","identifier":"sle-sdk-SP3-migration","id":1164,"recommended":false,"version":"11.2","name":"SUSE Linux Enterprise Software Development Kit","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Software Development Kit 11 SP2 (Migration)","release_type":null,"former_identifier":"sle-sdk-SP3-migration","predecessor_ids":[],"online_predecessor_ids":[],"repositories":[{"distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Pool/sle-11-i586/","enabled":true,"id":1277,"description":"SLE11-SDK-SP3-Pool for sle-11-i586","installer_updates":false,"name":"SLE11-SDK-SP3-Pool"},{"description":"SLE11-SDK-SP3-Pool for sle-11-ia64","installer_updates":false,"name":"SLE11-SDK-SP3-Pool","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Pool/sle-11-ia64/","distro_target":"sle-11-ia64","autorefresh":true,"id":1278,"enabled":true},{"description":"SLE11-SDK-SP3-Updates for sle-11-ppc64","name":"SLE11-SDK-SP3-Updates","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Updates/sle-11-ppc64/","autorefresh":true,"distro_target":"sle-11-ppc64","id":1279,"enabled":true},{"description":"SLE11-SDK-SP3-Updates for sle-11-ia64","installer_updates":false,"name":"SLE11-SDK-SP3-Updates","distro_target":"sle-11-ia64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Updates/sle-11-ia64/","enabled":true,"id":1280},{"description":"SLE11-SDK-SP3-Pool for sle-11-x86_64","installer_updates":false,"name":"SLE11-SDK-SP3-Pool","distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Pool/sle-11-x86_64/","enabled":true,"id":1281},{"name":"SLE11-SDK-SP3-Updates","installer_updates":false,"description":"SLE11-SDK-SP3-Updates for sle-11-s390x","id":1282,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Updates/sle-11-s390x/","autorefresh":true,"distro_target":"sle-11-s390x"},{"id":1283,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Pool/sle-11-ppc64/","autorefresh":true,"distro_target":"sle-11-ppc64","name":"SLE11-SDK-SP3-Pool","installer_updates":false,"description":"SLE11-SDK-SP3-Pool for sle-11-ppc64"},{"description":"SLE11-SDK-SP3-Updates for sle-11-x86_64","installer_updates":false,"name":"SLE11-SDK-SP3-Updates","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Updates/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true,"id":1284,"enabled":true},{"description":"SLE11-SDK-SP3-Updates for sle-11-i586","name":"SLE11-SDK-SP3-Updates","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Updates/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","id":1285,"enabled":true},{"description":"SLE11-SDK-SP3-Pool for sle-11-s390x","name":"SLE11-SDK-SP3-Pool","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-s390x","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Pool/sle-11-s390x/","enabled":true,"id":1286}],"product_class":"SLE-SDK","cpe":null,"product_type":"extension","description":null,"shortname":null,"free":true,"eula_url":"","arch":null},{"name":"SUSE Linux Enterprise Subscription Management Tool","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Subscription Management Tool 11 SP2","former_identifier":"sle-smt","release_type":null,"recommended":false,"version":"11.2","extensions":[],"release_stage":"released","identifier":"sle-smt","id":1193,"friendly_version":"11 SP2","eula_url":"","arch":null,"shortname":null,"description":null,"free":true,"cpe":null,"product_type":"extension","predecessor_ids":[],"online_predecessor_ids":[],"product_class":"SLESMT","repositories":[{"name":"SLE11-SMT-SP2-Pool","installer_updates":false,"description":"SLE11-SMT-SP2-Pool for sle-11-x86_64","enabled":true,"id":1392,"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP2-Pool/sle-11-x86_64/"},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP2-Updates/sle-11-s390x/","autorefresh":true,"distro_target":"sle-11-s390x","id":1393,"enabled":true,"description":"SLE11-SMT-SP2-Updates for sle-11-s390x","name":"SLE11-SMT-SP2-Updates","installer_updates":false},{"description":"SLE11-SMT-SP2-Pool for sle-11-i586","name":"SLE11-SMT-SP2-Pool","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP2-Pool/sle-11-i586/","enabled":true,"id":1394},{"id":1395,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP2-Updates/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true,"installer_updates":false,"name":"SLE11-SMT-SP2-Updates","description":"SLE11-SMT-SP2-Updates for sle-11-i586"},{"enabled":true,"id":1396,"autorefresh":true,"distro_target":"sle-11-s390x","url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP2-Pool/sle-11-s390x/","name":"SLE11-SMT-SP2-Pool","installer_updates":false,"description":"SLE11-SMT-SP2-Pool for sle-11-s390x"},{"id":1397,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP2-Updates/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true,"installer_updates":false,"name":"SLE11-SMT-SP2-Updates","description":"SLE11-SMT-SP2-Updates for sle-11-x86_64"}]},{"recommended":false,"version":"11","name":"SUSE Linux Enterprise Subscription Management Tool","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Subscription Management Tool 11 (Migration)","former_identifier":"sle-smt-SP2-migration","release_type":null,"friendly_version":"11","extensions":[],"release_stage":"released","identifier":"sle-smt-SP2-migration","id":1194,"shortname":null,"description":null,"free":true,"eula_url":"","arch":null,"predecessor_ids":[],"repositories":[{"name":"SLE11-SMT-SP2-Pool","installer_updates":false,"description":"SLE11-SMT-SP2-Pool for sle-11-x86_64","enabled":true,"id":1392,"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP2-Pool/sle-11-x86_64/"},{"name":"SLE11-SMT-SP2-Pool","installer_updates":false,"description":"SLE11-SMT-SP2-Pool for sle-11-i586","enabled":true,"id":1394,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP2-Pool/sle-11-i586/"},{"enabled":true,"id":1396,"autorefresh":true,"distro_target":"sle-11-s390x","url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP2-Pool/sle-11-s390x/","name":"SLE11-SMT-SP2-Pool","installer_updates":false,"description":"SLE11-SMT-SP2-Pool for sle-11-s390x"}],"online_predecessor_ids":[],"product_class":"SLESMT","cpe":null,"product_type":"extension"},{"cpe":null,"product_type":"extension","predecessor_ids":[],"repositories":[{"id":1408,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP3-Pool/sle-11-s390x/","autorefresh":true,"distro_target":"sle-11-s390x","name":"SLE11-SMT-SP3-Pool","installer_updates":false,"description":"SLE11-SMT-SP3-Pool for sle-11-s390x"},{"description":"SLE11-SMT-SP3-Pool for sle-11-x86_64","installer_updates":false,"name":"SLE11-SMT-SP3-Pool","url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP3-Pool/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true,"id":1409,"enabled":true},{"name":"SLE11-SMT-SP3-Pool","installer_updates":false,"description":"SLE11-SMT-SP3-Pool for sle-11-i586","enabled":true,"id":1410,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP3-Pool/sle-11-i586/"}],"online_predecessor_ids":[],"product_class":"SLESMT","eula_url":"","arch":null,"description":null,"shortname":null,"free":true,"extensions":[],"release_stage":"released","identifier":"sle-smt-SP3-migration","id":1199,"friendly_version":"11 SP2","name":"SUSE Linux Enterprise Subscription Management Tool","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Subscription Management Tool 11 SP2 (Migration)","release_type":null,"former_identifier":"sle-smt-SP3-migration","recommended":false,"version":"11.2"},{"predecessor_ids":[],"repositories":[{"id":1185,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-WebYaST-1.3-Pool/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64","name":"SLE11-SP2-WebYaST-1.3-Pool","installer_updates":false,"description":"SLE11-SP2-WebYaST-1.3-Pool for sle-11-x86_64"},{"installer_updates":false,"name":"SLE11-SP2-WebYaST-1.3-Pool","description":"SLE11-SP2-WebYaST-1.3-Pool for sle-11-s390x","enabled":true,"id":1411,"distro_target":"sle-11-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-WebYaST-1.3-Pool/sle-11-s390x/"},{"name":"SLE11-SP2-WebYaST-1.3-Pool","installer_updates":false,"description":"SLE11-SP2-WebYaST-1.3-Pool for sle-11-ppc64","id":1414,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-WebYaST-1.3-Pool/sle-11-ppc64/","autorefresh":true,"distro_target":"sle-11-ppc64"},{"installer_updates":false,"name":"SLE11-SP2-WebYaST-1.3-Pool","description":"SLE11-SP2-WebYaST-1.3-Pool for sle-11-ia64","enabled":true,"id":1416,"distro_target":"sle-11-ia64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-WebYaST-1.3-Pool/sle-11-ia64/"},{"enabled":true,"id":1417,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-WebYaST-1.3-Pool/sle-11-i586/","name":"SLE11-SP2-WebYaST-1.3-Pool","installer_updates":false,"description":"SLE11-SP2-WebYaST-1.3-Pool for sle-11-i586"}],"online_predecessor_ids":[],"product_class":"WEBYAST","cpe":null,"product_type":"extension","shortname":null,"description":null,"free":true,"eula_url":"","arch":null,"friendly_version":"1.2","extensions":[],"id":1207,"release_stage":"released","identifier":"sle-11-WebYaST-1.3-migration","recommended":false,"version":"1.2","name":"SUSE WebYaST","offline_predecessor_ids":[],"friendly_name":"SUSE WebYaST 1.2 (Migration)","migration_extra":false,"release_type":null,"former_identifier":"sle-11-WebYaST-1.3-migration"}],"id":952,"release_stage":"released","identifier":"SUSE_SLES","friendly_version":"11 SP2","name":"SUSE Linux Enterprise Server","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Server 11 SP2 ppc","former_identifier":"SUSE_SLES","release_type":null,"recommended":false,"version":"11.2"},{"cpe":"cpe:/o:suse:suse_sles:11:sp3","product_type":"base","predecessor_ids":[],"repositories":[{"enabled":false,"id":919,"distro_target":"sle-11-ppc64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-Pool/sle-11-ppc64/","installer_updates":false,"name":"SLES11-SP1-Pool","description":"SLES11-SP1-Pool for sle-11-ppc64"},{"distro_target":"sle-11-ppc64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-Extras/sle-11-ppc64/","enabled":false,"id":920,"description":"SLES11-Extras for sle-11-ppc64","installer_updates":false,"name":"SLES11-Extras"},{"installer_updates":false,"name":"SLES11-SP1-Updates","description":"SLES11-SP1-Updates for sle-11-ppc64","id":922,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-Updates/sle-11-ppc64/","distro_target":"sle-11-ppc64","autorefresh":true},{"id":924,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Updates/sle-11-ppc64/","autorefresh":true,"distro_target":"sle-11-ppc64","name":"SLE11-SP1-Debuginfo-Updates","installer_updates":false,"description":"SLE11-SP1-Debuginfo-Updates for sle-11-ppc64"},{"description":"SLE11-SP1-Debuginfo-Pool for sle-11-ppc64","name":"SLE11-SP1-Debuginfo-Pool","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Pool/sle-11-ppc64/","autorefresh":true,"distro_target":"sle-11-ppc64","id":925,"enabled":false},{"name":"SLE11-SP2-Debuginfo-Updates","installer_updates":false,"description":"SLE11-SP2-Debuginfo-Updates for sle-11-ppc64","id":926,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-Debuginfo-Updates/sle-11-ppc64/","autorefresh":true,"distro_target":"sle-11-ppc64"},{"description":"SLES11-SP2-Core for sle-11-ppc64","name":"SLES11-SP2-Core","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP2-Core/sle-11-ppc64/","autorefresh":true,"distro_target":"sle-11-ppc64","id":927,"enabled":false},{"description":"SLES11-SP2-Updates for sle-11-ppc64","installer_updates":false,"name":"SLES11-SP2-Updates","distro_target":"sle-11-ppc64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP2-Updates/sle-11-ppc64/","enabled":false,"id":928},{"description":"SLE11-SP2-Debuginfo-Core for sle-11-ppc64","installer_updates":false,"name":"SLE11-SP2-Debuginfo-Core","distro_target":"sle-11-ppc64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-Debuginfo-Core/sle-11-ppc64/","enabled":false,"id":930},{"installer_updates":false,"name":"SLES11-SP3-Updates","description":"SLES11-SP3-Updates for sle-11-ppc64","id":936,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP3-Updates/sle-11-ppc64/","distro_target":"sle-11-ppc64","autorefresh":true},{"name":"SLE11-SP3-Debuginfo-Pool","installer_updates":false,"description":"SLE11-SP3-Debuginfo-Pool for sle-11-ppc64","enabled":false,"id":937,"autorefresh":true,"distro_target":"sle-11-ppc64","url":"https://updates.suse.com/repo/$RCE/SLE11-SP3-Debuginfo-Pool/sle-11-ppc64/"},{"name":"SLES11-SP3-Extension-Store","installer_updates":false,"description":"SLES11-SP3-Extension-Store for sle-11-ppc64","enabled":false,"id":938,"autorefresh":true,"distro_target":"sle-11-ppc64","url":"https://updates.suse.com/repo/$RCE/SLES11-SP3-Extension-Store/sle-11-ppc64/"},{"description":"SLES11-SP3-Pool for sle-11-ppc64","installer_updates":false,"name":"SLES11-SP3-Pool","distro_target":"sle-11-ppc64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP3-Pool/sle-11-ppc64/","enabled":true,"id":939},{"installer_updates":false,"name":"SLES11-SP2-Extension-Store","description":"SLES11-SP2-Extension-Store for sle-11-ppc64","id":940,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP2-Extension-Store/sle-11-ppc64/","distro_target":"sle-11-ppc64","autorefresh":true},{"name":"SLE11-SP3-Debuginfo-Updates","installer_updates":false,"description":"SLE11-SP3-Debuginfo-Updates for sle-11-ppc64","id":941,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP3-Debuginfo-Updates/sle-11-ppc64/","autorefresh":true,"distro_target":"sle-11-ppc64"}],"online_predecessor_ids":[],"product_class":"SLES-PPC","eula_url":"","arch":"ppc","description":null,"shortname":null,"free":false,"extensions":[{"friendly_version":"11 SP3","release_stage":"released","id":1161,"identifier":"sle-sdk","extensions":[],"version":"11.3","recommended":false,"former_identifier":"sle-sdk","release_type":null,"friendly_name":"SUSE Linux Enterprise Software Development Kit 11 SP3","migration_extra":false,"offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Software Development Kit","repositories":[{"description":"SLE11-SDK-SP1-Updates for sle-11-ia64","name":"SLE11-SDK-SP1-Updates","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Updates/sle-11-ia64/","autorefresh":true,"distro_target":"sle-11-ia64","id":1257,"enabled":false},{"description":"SLE11-SDK-SP1-Pool for sle-11-ia64","installer_updates":false,"name":"SLE11-SDK-SP1-Pool","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-ia64/","distro_target":"sle-11-ia64","autorefresh":true,"id":1258,"enabled":false},{"enabled":false,"id":1259,"autorefresh":true,"distro_target":"sle-11-s390x","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-s390x/","name":"SLE11-SDK-SP1-Pool","installer_updates":false,"description":"SLE11-SDK-SP1-Pool for sle-11-s390x"},{"autorefresh":true,"distro_target":"sle-11-ppc64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Updates/sle-11-ppc64/","enabled":false,"id":1260,"description":"SLE11-SDK-SP1-Updates for sle-11-ppc64","name":"SLE11-SDK-SP1-Updates","installer_updates":false},{"id":1261,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-ppc64/","autorefresh":true,"distro_target":"sle-11-ppc64","name":"SLE11-SDK-SP1-Pool","installer_updates":false,"description":"SLE11-SDK-SP1-Pool for sle-11-ppc64"},{"description":"SLE11-SDK-SP1-Updates for sle-11-i586","name":"SLE11-SDK-SP1-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Updates/sle-11-i586/","enabled":false,"id":1262},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","id":1263,"enabled":false,"description":"SLE11-SDK-SP1-Pool for sle-11-i586","name":"SLE11-SDK-SP1-Pool","installer_updates":false},{"distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-x86_64/","enabled":false,"id":1264,"description":"SLE11-SDK-SP1-Pool for sle-11-x86_64","installer_updates":false,"name":"SLE11-SDK-SP1-Pool"},{"description":"SLE11-SDK-SP1-Updates for sle-11-x86_64","installer_updates":false,"name":"SLE11-SDK-SP1-Updates","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Updates/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true,"id":1265,"enabled":false},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Updates/sle-11-s390x/","autorefresh":true,"distro_target":"sle-11-s390x","id":1266,"enabled":false,"description":"SLE11-SDK-SP1-Updates for sle-11-s390x","name":"SLE11-SDK-SP1-Updates","installer_updates":false},{"id":1267,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-ia64/","distro_target":"sle-11-ia64","autorefresh":true,"installer_updates":false,"name":"SLE11-SDK-SP2-Core","description":"SLE11-SDK-SP2-Core for sle-11-ia64"},{"description":"SLE11-SDK-SP2-Core for sle-11-s390x","name":"SLE11-SDK-SP2-Core","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-s390x","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-s390x/","enabled":false,"id":1268},{"id":1269,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-s390x/","distro_target":"sle-11-s390x","autorefresh":true,"installer_updates":false,"name":"SLE11-SDK-SP2-Updates","description":"SLE11-SDK-SP2-Updates for sle-11-s390x"},{"name":"SLE11-SDK-SP2-Updates","installer_updates":false,"description":"SLE11-SDK-SP2-Updates for sle-11-ppc64","enabled":false,"id":1270,"autorefresh":true,"distro_target":"sle-11-ppc64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-ppc64/"},{"description":"SLE11-SDK-SP2-Updates for sle-11-i586","name":"SLE11-SDK-SP2-Updates","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","id":1271,"enabled":false},{"distro_target":"sle-11-ia64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-ia64/","enabled":false,"id":1272,"description":"SLE11-SDK-SP2-Updates for sle-11-ia64","installer_updates":false,"name":"SLE11-SDK-SP2-Updates"},{"description":"SLE11-SDK-SP2-Core for sle-11-ppc64","name":"SLE11-SDK-SP2-Core","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-ppc64/","autorefresh":true,"distro_target":"sle-11-ppc64","id":1273,"enabled":false},{"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-i586/","enabled":false,"id":1274,"description":"SLE11-SDK-SP2-Core for sle-11-i586","name":"SLE11-SDK-SP2-Core","installer_updates":false},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true,"id":1275,"enabled":false,"description":"SLE11-SDK-SP2-Core for sle-11-x86_64","installer_updates":false,"name":"SLE11-SDK-SP2-Core"},{"description":"SLE11-SDK-SP2-Updates for sle-11-x86_64","name":"SLE11-SDK-SP2-Updates","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64","id":1276,"enabled":false},{"description":"SLE11-SDK-SP3-Pool for sle-11-i586","installer_updates":false,"name":"SLE11-SDK-SP3-Pool","distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Pool/sle-11-i586/","enabled":true,"id":1277},{"description":"SLE11-SDK-SP3-Pool for sle-11-ia64","name":"SLE11-SDK-SP3-Pool","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Pool/sle-11-ia64/","autorefresh":true,"distro_target":"sle-11-ia64","id":1278,"enabled":true},{"autorefresh":true,"distro_target":"sle-11-ppc64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Updates/sle-11-ppc64/","enabled":true,"id":1279,"description":"SLE11-SDK-SP3-Updates for sle-11-ppc64","name":"SLE11-SDK-SP3-Updates","installer_updates":false},{"enabled":true,"id":1280,"distro_target":"sle-11-ia64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Updates/sle-11-ia64/","installer_updates":false,"name":"SLE11-SDK-SP3-Updates","description":"SLE11-SDK-SP3-Updates for sle-11-ia64"},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Pool/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64","id":1281,"enabled":true,"description":"SLE11-SDK-SP3-Pool for sle-11-x86_64","name":"SLE11-SDK-SP3-Pool","installer_updates":false},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Updates/sle-11-s390x/","distro_target":"sle-11-s390x","autorefresh":true,"id":1282,"enabled":true,"description":"SLE11-SDK-SP3-Updates for sle-11-s390x","installer_updates":false,"name":"SLE11-SDK-SP3-Updates"},{"id":1283,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Pool/sle-11-ppc64/","distro_target":"sle-11-ppc64","autorefresh":true,"installer_updates":false,"name":"SLE11-SDK-SP3-Pool","description":"SLE11-SDK-SP3-Pool for sle-11-ppc64"},{"installer_updates":false,"name":"SLE11-SDK-SP3-Updates","description":"SLE11-SDK-SP3-Updates for sle-11-x86_64","enabled":true,"id":1284,"distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Updates/sle-11-x86_64/"},{"name":"SLE11-SDK-SP3-Updates","installer_updates":false,"description":"SLE11-SDK-SP3-Updates for sle-11-i586","id":1285,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Updates/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586"},{"enabled":true,"id":1286,"autorefresh":true,"distro_target":"sle-11-s390x","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Pool/sle-11-s390x/","name":"SLE11-SDK-SP3-Pool","installer_updates":false,"description":"SLE11-SDK-SP3-Pool for sle-11-s390x"}],"online_predecessor_ids":[],"product_class":"SLE-SDK","predecessor_ids":[],"product_type":"extension","cpe":null,"free":true,"shortname":null,"description":null,"arch":null,"eula_url":""},{"version":"11.2","recommended":false,"former_identifier":"sle-sdk-SP3-migration","release_type":null,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Software Development Kit 11 SP2 (Migration)","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Software Development Kit","friendly_version":"11 SP2","identifier":"sle-sdk-SP3-migration","release_stage":"released","id":1164,"extensions":[],"free":true,"shortname":null,"description":null,"arch":null,"eula_url":"","product_class":"SLE-SDK","online_predecessor_ids":[],"repositories":[{"description":"SLE11-SDK-SP3-Pool for sle-11-i586","installer_updates":false,"name":"SLE11-SDK-SP3-Pool","distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Pool/sle-11-i586/","enabled":true,"id":1277},{"name":"SLE11-SDK-SP3-Pool","installer_updates":false,"description":"SLE11-SDK-SP3-Pool for sle-11-ia64","enabled":true,"id":1278,"autorefresh":true,"distro_target":"sle-11-ia64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Pool/sle-11-ia64/"},{"autorefresh":true,"distro_target":"sle-11-ppc64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Updates/sle-11-ppc64/","enabled":true,"id":1279,"description":"SLE11-SDK-SP3-Updates for sle-11-ppc64","name":"SLE11-SDK-SP3-Updates","installer_updates":false},{"installer_updates":false,"name":"SLE11-SDK-SP3-Updates","description":"SLE11-SDK-SP3-Updates for sle-11-ia64","enabled":true,"id":1280,"distro_target":"sle-11-ia64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Updates/sle-11-ia64/"},{"enabled":true,"id":1281,"distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Pool/sle-11-x86_64/","installer_updates":false,"name":"SLE11-SDK-SP3-Pool","description":"SLE11-SDK-SP3-Pool for sle-11-x86_64"},{"name":"SLE11-SDK-SP3-Updates","installer_updates":false,"description":"SLE11-SDK-SP3-Updates for sle-11-s390x","enabled":true,"id":1282,"autorefresh":true,"distro_target":"sle-11-s390x","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Updates/sle-11-s390x/"},{"installer_updates":false,"name":"SLE11-SDK-SP3-Pool","description":"SLE11-SDK-SP3-Pool for sle-11-ppc64","enabled":true,"id":1283,"distro_target":"sle-11-ppc64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Pool/sle-11-ppc64/"},{"installer_updates":false,"name":"SLE11-SDK-SP3-Updates","description":"SLE11-SDK-SP3-Updates for sle-11-x86_64","enabled":true,"id":1284,"distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Updates/sle-11-x86_64/"},{"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Updates/sle-11-i586/","enabled":true,"id":1285,"description":"SLE11-SDK-SP3-Updates for sle-11-i586","name":"SLE11-SDK-SP3-Updates","installer_updates":false},{"description":"SLE11-SDK-SP3-Pool for sle-11-s390x","installer_updates":false,"name":"SLE11-SDK-SP3-Pool","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Pool/sle-11-s390x/","distro_target":"sle-11-s390x","autorefresh":true,"id":1286,"enabled":true}],"predecessor_ids":[],"product_type":"extension","cpe":null},{"cpe":null,"product_type":"extension","predecessor_ids":[],"online_predecessor_ids":[],"product_class":"SLESMT","repositories":[{"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP3-Updates/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true,"id":1405,"enabled":true,"description":"SLE11-SMT-SP3-Updates for sle-11-x86_64","installer_updates":false,"name":"SLE11-SMT-SP3-Updates"},{"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP3-Updates/sle-11-i586/","enabled":true,"id":1406,"description":"SLE11-SMT-SP3-Updates for sle-11-i586","name":"SLE11-SMT-SP3-Updates","installer_updates":false},{"description":"SLE11-SMT-SP3-Updates for sle-11-s390x","name":"SLE11-SMT-SP3-Updates","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP3-Updates/sle-11-s390x/","autorefresh":true,"distro_target":"sle-11-s390x","id":1407,"enabled":true},{"id":1408,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP3-Pool/sle-11-s390x/","autorefresh":true,"distro_target":"sle-11-s390x","name":"SLE11-SMT-SP3-Pool","installer_updates":false,"description":"SLE11-SMT-SP3-Pool for sle-11-s390x"},{"enabled":true,"id":1409,"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP3-Pool/sle-11-x86_64/","name":"SLE11-SMT-SP3-Pool","installer_updates":false,"description":"SLE11-SMT-SP3-Pool for sle-11-x86_64"},{"installer_updates":false,"name":"SLE11-SMT-SP3-Pool","description":"SLE11-SMT-SP3-Pool for sle-11-i586","enabled":true,"id":1410,"distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP3-Pool/sle-11-i586/"}],"eula_url":"","arch":null,"description":null,"shortname":null,"free":true,"extensions":[],"id":1198,"release_stage":"released","identifier":"sle-smt","friendly_version":"11 SP3","name":"SUSE Linux Enterprise Subscription Management Tool","offline_predecessor_ids":[],"friendly_name":"SUSE Linux Enterprise Subscription Management Tool 11 SP3","migration_extra":false,"former_identifier":"sle-smt","release_type":null,"recommended":false,"version":"11.3"},{"identifier":"sle-smt-SP3-migration","release_stage":"released","id":1199,"extensions":[],"friendly_version":"11 SP2","former_identifier":"sle-smt-SP3-migration","release_type":null,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Subscription Management Tool 11 SP2 (Migration)","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Subscription Management Tool","version":"11.2","recommended":false,"product_type":"extension","cpe":null,"product_class":"SLESMT","online_predecessor_ids":[],"repositories":[{"description":"SLE11-SMT-SP3-Pool for sle-11-s390x","installer_updates":false,"name":"SLE11-SMT-SP3-Pool","url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP3-Pool/sle-11-s390x/","distro_target":"sle-11-s390x","autorefresh":true,"id":1408,"enabled":true},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP3-Pool/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64","id":1409,"enabled":true,"description":"SLE11-SMT-SP3-Pool for sle-11-x86_64","name":"SLE11-SMT-SP3-Pool","installer_updates":false},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP3-Pool/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true,"id":1410,"enabled":true,"description":"SLE11-SMT-SP3-Pool for sle-11-i586","installer_updates":false,"name":"SLE11-SMT-SP3-Pool"}],"predecessor_ids":[],"arch":null,"eula_url":"","free":true,"description":null,"shortname":null},{"shortname":null,"description":null,"free":true,"eula_url":"","arch":null,"predecessor_ids":[],"repositories":[{"name":"SLE11-SP2-WebYaST-1.3-Pool","installer_updates":false,"description":"SLE11-SP2-WebYaST-1.3-Pool for sle-11-x86_64","enabled":true,"id":1185,"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-WebYaST-1.3-Pool/sle-11-x86_64/"},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-WebYaST-1.3-Updates/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true,"id":1188,"enabled":true,"description":"SLE11-SP2-WebYaST-1.3-Updates for sle-11-x86_64","installer_updates":false,"name":"SLE11-SP2-WebYaST-1.3-Updates"},{"enabled":true,"id":1411,"distro_target":"sle-11-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-WebYaST-1.3-Pool/sle-11-s390x/","installer_updates":false,"name":"SLE11-SP2-WebYaST-1.3-Pool","description":"SLE11-SP2-WebYaST-1.3-Pool for sle-11-s390x"},{"installer_updates":false,"name":"SLE11-SP2-WebYaST-1.3-Updates","description":"SLE11-SP2-WebYaST-1.3-Updates for sle-11-s390x","enabled":true,"id":1412,"distro_target":"sle-11-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-WebYaST-1.3-Updates/sle-11-s390x/"},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-WebYaST-1.3-Updates/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true,"id":1413,"enabled":true,"description":"SLE11-SP2-WebYaST-1.3-Updates for sle-11-i586","installer_updates":false,"name":"SLE11-SP2-WebYaST-1.3-Updates"},{"installer_updates":false,"name":"SLE11-SP2-WebYaST-1.3-Pool","description":"SLE11-SP2-WebYaST-1.3-Pool for sle-11-ppc64","id":1414,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-WebYaST-1.3-Pool/sle-11-ppc64/","distro_target":"sle-11-ppc64","autorefresh":true},{"name":"SLE11-SP2-WebYaST-1.3-Updates","installer_updates":false,"description":"SLE11-SP2-WebYaST-1.3-Updates for sle-11-ia64","id":1415,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-WebYaST-1.3-Updates/sle-11-ia64/","autorefresh":true,"distro_target":"sle-11-ia64"},{"autorefresh":true,"distro_target":"sle-11-ia64","url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-WebYaST-1.3-Pool/sle-11-ia64/","enabled":true,"id":1416,"description":"SLE11-SP2-WebYaST-1.3-Pool for sle-11-ia64","name":"SLE11-SP2-WebYaST-1.3-Pool","installer_updates":false},{"installer_updates":false,"name":"SLE11-SP2-WebYaST-1.3-Pool","description":"SLE11-SP2-WebYaST-1.3-Pool for sle-11-i586","enabled":true,"id":1417,"distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-WebYaST-1.3-Pool/sle-11-i586/"},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-WebYaST-1.3-Updates/sle-11-ppc64/","distro_target":"sle-11-ppc64","autorefresh":true,"id":1418,"enabled":true,"description":"SLE11-SP2-WebYaST-1.3-Updates for sle-11-ppc64","installer_updates":false,"name":"SLE11-SP2-WebYaST-1.3-Updates"}],"online_predecessor_ids":[],"product_class":"WEBYAST","cpe":null,"product_type":"extension","recommended":false,"version":"1.3","name":"SUSE WebYaST","offline_predecessor_ids":[],"friendly_name":"SUSE WebYaST 1.3","migration_extra":false,"former_identifier":"sle-11-WebYaST","release_type":null,"friendly_version":"1.3","extensions":[],"release_stage":"released","identifier":"sle-11-WebYaST","id":1206},{"free":true,"description":null,"shortname":null,"arch":null,"eula_url":"","product_class":"SLE-SDK","online_predecessor_ids":[],"repositories":[{"distro_target":"sle-11-ia64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Updates/sle-11-ia64/","enabled":false,"id":1257,"description":"SLE11-SDK-SP1-Updates for sle-11-ia64","installer_updates":false,"name":"SLE11-SDK-SP1-Updates"},{"name":"SLE11-SDK-SP1-Pool","installer_updates":false,"description":"SLE11-SDK-SP1-Pool for sle-11-ia64","enabled":false,"id":1258,"autorefresh":true,"distro_target":"sle-11-ia64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-ia64/"},{"enabled":false,"id":1259,"autorefresh":true,"distro_target":"sle-11-s390x","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-s390x/","name":"SLE11-SDK-SP1-Pool","installer_updates":false,"description":"SLE11-SDK-SP1-Pool for sle-11-s390x"},{"installer_updates":false,"name":"SLE11-SDK-SP1-Updates","description":"SLE11-SDK-SP1-Updates for sle-11-ppc64","id":1260,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Updates/sle-11-ppc64/","distro_target":"sle-11-ppc64","autorefresh":true},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-ppc64/","autorefresh":true,"distro_target":"sle-11-ppc64","id":1261,"enabled":false,"description":"SLE11-SDK-SP1-Pool for sle-11-ppc64","name":"SLE11-SDK-SP1-Pool","installer_updates":false},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Updates/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","id":1262,"enabled":false,"description":"SLE11-SDK-SP1-Updates for sle-11-i586","name":"SLE11-SDK-SP1-Updates","installer_updates":false},{"description":"SLE11-SDK-SP1-Pool for sle-11-i586","installer_updates":false,"name":"SLE11-SDK-SP1-Pool","distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-i586/","enabled":false,"id":1263},{"description":"SLE11-SDK-SP1-Pool for sle-11-x86_64","name":"SLE11-SDK-SP1-Pool","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64","id":1264,"enabled":false},{"enabled":false,"id":1265,"distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Updates/sle-11-x86_64/","installer_updates":false,"name":"SLE11-SDK-SP1-Updates","description":"SLE11-SDK-SP1-Updates for sle-11-x86_64"},{"description":"SLE11-SDK-SP1-Updates for sle-11-s390x","name":"SLE11-SDK-SP1-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-s390x","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Updates/sle-11-s390x/","enabled":false,"id":1266},{"description":"SLE11-SDK-SP2-Core for sle-11-ia64","name":"SLE11-SDK-SP2-Core","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-ia64/","autorefresh":true,"distro_target":"sle-11-ia64","id":1267,"enabled":false},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-s390x/","distro_target":"sle-11-s390x","autorefresh":true,"id":1268,"enabled":false,"description":"SLE11-SDK-SP2-Core for sle-11-s390x","installer_updates":false,"name":"SLE11-SDK-SP2-Core"},{"description":"SLE11-SDK-SP2-Updates for sle-11-s390x","installer_updates":false,"name":"SLE11-SDK-SP2-Updates","distro_target":"sle-11-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-s390x/","enabled":false,"id":1269},{"enabled":false,"id":1270,"autorefresh":true,"distro_target":"sle-11-ppc64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-ppc64/","name":"SLE11-SDK-SP2-Updates","installer_updates":false,"description":"SLE11-SDK-SP2-Updates for sle-11-ppc64"},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true,"id":1271,"enabled":false,"description":"SLE11-SDK-SP2-Updates for sle-11-i586","installer_updates":false,"name":"SLE11-SDK-SP2-Updates"},{"name":"SLE11-SDK-SP2-Updates","installer_updates":false,"description":"SLE11-SDK-SP2-Updates for sle-11-ia64","enabled":false,"id":1272,"autorefresh":true,"distro_target":"sle-11-ia64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-ia64/"},{"description":"SLE11-SDK-SP2-Core for sle-11-ppc64","installer_updates":false,"name":"SLE11-SDK-SP2-Core","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-ppc64/","distro_target":"sle-11-ppc64","autorefresh":true,"id":1273,"enabled":false},{"enabled":false,"id":1274,"distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-i586/","installer_updates":false,"name":"SLE11-SDK-SP2-Core","description":"SLE11-SDK-SP2-Core for sle-11-i586"},{"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-x86_64/","enabled":false,"id":1275,"description":"SLE11-SDK-SP2-Core for sle-11-x86_64","name":"SLE11-SDK-SP2-Core","installer_updates":false},{"description":"SLE11-SDK-SP2-Updates for sle-11-x86_64","name":"SLE11-SDK-SP2-Updates","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64","id":1276,"enabled":false},{"enabled":false,"id":1277,"distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Pool/sle-11-i586/","installer_updates":false,"name":"SLE11-SDK-SP3-Pool","description":"SLE11-SDK-SP3-Pool for sle-11-i586"},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Pool/sle-11-ia64/","distro_target":"sle-11-ia64","autorefresh":true,"id":1278,"enabled":false,"description":"SLE11-SDK-SP3-Pool for sle-11-ia64","installer_updates":false,"name":"SLE11-SDK-SP3-Pool"},{"name":"SLE11-SDK-SP3-Updates","installer_updates":false,"description":"SLE11-SDK-SP3-Updates for sle-11-ppc64","enabled":false,"id":1279,"autorefresh":true,"distro_target":"sle-11-ppc64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Updates/sle-11-ppc64/"},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Updates/sle-11-ia64/","distro_target":"sle-11-ia64","autorefresh":true,"id":1280,"enabled":false,"description":"SLE11-SDK-SP3-Updates for sle-11-ia64","installer_updates":false,"name":"SLE11-SDK-SP3-Updates"},{"name":"SLE11-SDK-SP3-Pool","installer_updates":false,"description":"SLE11-SDK-SP3-Pool for sle-11-x86_64","enabled":false,"id":1281,"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Pool/sle-11-x86_64/"},{"id":1282,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Updates/sle-11-s390x/","autorefresh":true,"distro_target":"sle-11-s390x","name":"SLE11-SDK-SP3-Updates","installer_updates":false,"description":"SLE11-SDK-SP3-Updates for sle-11-s390x"},{"installer_updates":false,"name":"SLE11-SDK-SP3-Pool","description":"SLE11-SDK-SP3-Pool for sle-11-ppc64","enabled":false,"id":1283,"distro_target":"sle-11-ppc64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Pool/sle-11-ppc64/"},{"description":"SLE11-SDK-SP3-Updates for sle-11-x86_64","installer_updates":false,"name":"SLE11-SDK-SP3-Updates","distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Updates/sle-11-x86_64/","enabled":false,"id":1284},{"enabled":false,"id":1285,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Updates/sle-11-i586/","name":"SLE11-SDK-SP3-Updates","installer_updates":false,"description":"SLE11-SDK-SP3-Updates for sle-11-i586"},{"installer_updates":false,"name":"SLE11-SDK-SP3-Pool","description":"SLE11-SDK-SP3-Pool for sle-11-s390x","id":1286,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Pool/sle-11-s390x/","distro_target":"sle-11-s390x","autorefresh":true},{"installer_updates":false,"name":"SLE11-SDK-SP4-Pool","description":"SLE11-SDK-SP4-Pool for sle-11-i586","enabled":true,"id":1817,"distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP4-Pool/sle-11-i586/"},{"distro_target":"sle-11-ia64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP4-Pool/sle-11-ia64/","enabled":true,"id":1818,"description":"SLE11-SDK-SP4-Pool for sle-11-ia64","installer_updates":false,"name":"SLE11-SDK-SP4-Pool"},{"description":"SLE11-SDK-SP4-Pool for sle-11-ppc64","installer_updates":false,"name":"SLE11-SDK-SP4-Pool","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP4-Pool/sle-11-ppc64/","distro_target":"sle-11-ppc64","autorefresh":true,"id":1819,"enabled":true},{"distro_target":"sle-11-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP4-Pool/sle-11-s390x/","enabled":true,"id":1820,"description":"SLE11-SDK-SP4-Pool for sle-11-s390x","installer_updates":false,"name":"SLE11-SDK-SP4-Pool"},{"id":1821,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP4-Pool/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true,"installer_updates":false,"name":"SLE11-SDK-SP4-Pool","description":"SLE11-SDK-SP4-Pool for sle-11-x86_64"},{"description":"SLE11-SDK-SP4-Updates for sle-11-i586","installer_updates":false,"name":"SLE11-SDK-SP4-Updates","distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP4-Updates/sle-11-i586/","enabled":true,"id":1822},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP4-Updates/sle-11-ia64/","distro_target":"sle-11-ia64","autorefresh":true,"id":1823,"enabled":true,"description":"SLE11-SDK-SP4-Updates for sle-11-ia64","installer_updates":false,"name":"SLE11-SDK-SP4-Updates"},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP4-Updates/sle-11-ppc64/","distro_target":"sle-11-ppc64","autorefresh":true,"id":1824,"enabled":true,"description":"SLE11-SDK-SP4-Updates for sle-11-ppc64","installer_updates":false,"name":"SLE11-SDK-SP4-Updates"},{"enabled":true,"id":1825,"autorefresh":true,"distro_target":"sle-11-s390x","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP4-Updates/sle-11-s390x/","name":"SLE11-SDK-SP4-Updates","installer_updates":false,"description":"SLE11-SDK-SP4-Updates for sle-11-s390x"},{"id":1826,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP4-Updates/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64","name":"SLE11-SDK-SP4-Updates","installer_updates":false,"description":"SLE11-SDK-SP4-Updates for sle-11-x86_64"}],"predecessor_ids":[],"product_type":"extension","cpe":null,"version":"11.3","recommended":false,"former_identifier":"sle-sdk-SP4-migration","release_type":null,"friendly_name":"SUSE Linux Enterprise Software Development Kit 11 SP3 (Migration)","migration_extra":false,"offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Software Development Kit","friendly_version":"11 SP3","release_stage":"released","id":1318,"identifier":"sle-sdk-SP4-migration","extensions":[]}],"release_stage":"released","identifier":"SUSE_SLES","id":953,"friendly_version":"11 SP3","name":"SUSE Linux Enterprise Server","offline_predecessor_ids":[],"friendly_name":"SUSE Linux Enterprise Server 11 SP3 ppc","migration_extra":false,"former_identifier":"SUSE_SLES","release_type":null,"recommended":false,"version":"11.3"},{"arch":null,"eula_url":"","description":null,"shortname":null,"free":false,"cpe":null,"product_type":"base","repositories":[],"online_predecessor_ids":[],"product_class":"7261","predecessor_ids":[],"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Server 9","former_identifier":"SUSE-Linux-SLES-i386","release_type":null,"name":"SUSE Linux Enterprise Server","offline_predecessor_ids":[],"version":"9","recommended":false,"identifier":"SUSE-Linux-SLES-i386","release_stage":"released","id":954,"extensions":[],"friendly_version":"9"},{"free":false,"shortname":null,"description":null,"eula_url":"","arch":null,"predecessor_ids":[],"online_predecessor_ids":[],"product_class":"7261","repositories":[],"product_type":"base","cpe":null,"recommended":false,"version":"9","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Server","former_identifier":"Novell-Open-Enterprise-Server-i386","release_type":null,"friendly_name":"SUSE Linux Enterprise Server 9","migration_extra":false,"friendly_version":"9","extensions":[],"release_stage":"released","identifier":"Novell-Open-Enterprise-Server-i386","id":955},{"product_type":"base","cpe":null,"online_predecessor_ids":[],"product_class":"7261","repositories":[],"predecessor_ids":[],"arch":null,"eula_url":"","free":false,"shortname":null,"description":null,"release_stage":"released","identifier":"SUSE-Linux-SLES-x86_64","id":956,"extensions":[],"friendly_version":"9","release_type":null,"former_identifier":"SUSE-Linux-SLES-x86_64","migration_extra":false,"friendly_name":"SUSE Linux Enterprise Server 9","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Server","version":"9","recommended":false},{"shortname":null,"description":null,"free":false,"eula_url":"","arch":null,"predecessor_ids":[],"repositories":[],"online_predecessor_ids":[],"product_class":"7261","cpe":null,"product_type":"base","recommended":false,"version":"9","name":"SUSE Linux Enterprise Server","offline_predecessor_ids":[],"friendly_name":"SUSE Linux Enterprise Server 9","migration_extra":false,"release_type":null,"former_identifier":"Novell-Open-Enterprise-Server-x86_64","friendly_version":"9","extensions":[],"release_stage":"released","identifier":"Novell-Open-Enterprise-Server-x86_64","id":957},{"online_predecessor_ids":[],"product_class":"SLE-HAE-X86","repositories":[{"id":942,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-Updates/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true,"installer_updates":false,"name":"SLE11-HAE-Updates","description":"SLE11-HAE-Updates for sle-11-x86_64"},{"url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-Pool/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64","id":943,"enabled":false,"description":"SLE11-HAE-Pool for sle-11-x86_64","name":"SLE11-HAE-Pool","installer_updates":false}],"predecessor_ids":[],"product_type":"extension","cpe":null,"free":false,"description":null,"shortname":null,"arch":"x86_64","eula_url":"","friendly_version":"11","identifier":"sle-hae","release_stage":"released","id":958,"extensions":[],"version":"11","recommended":false,"former_identifier":"sle-hae","release_type":null,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise High Availability Extension 11 x86_64","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise High Availability Extension"},{"description":null,"shortname":null,"free":false,"eula_url":"","arch":"i586","predecessor_ids":[],"repositories":[{"url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP1-Updates/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","id":944,"enabled":true,"description":"SLE11-HAE-SP1-Updates for sle-11-i586","name":"SLE11-HAE-SP1-Updates","installer_updates":false},{"installer_updates":false,"name":"SLE11-HAE-SP1-Pool","description":"SLE11-HAE-SP1-Pool for sle-11-i586","enabled":true,"id":945,"distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP1-Pool/sle-11-i586/"}],"online_predecessor_ids":[],"product_class":"SLE-HAE-X86","cpe":null,"product_type":"extension","recommended":false,"version":"11.1","name":"SUSE Linux Enterprise High Availability Extension","offline_predecessor_ids":[],"friendly_name":"SUSE Linux Enterprise High Availability Extension 11 SP1 i586","migration_extra":false,"former_identifier":"sle-hae","release_type":null,"friendly_version":"11 SP1","extensions":[],"release_stage":"released","id":959,"identifier":"sle-hae"},{"arch":"x86_64","eula_url":"","free":false,"shortname":null,"description":null,"product_type":"extension","cpe":null,"online_predecessor_ids":[],"repositories":[{"name":"SLE11-HAE-SP1-Pool","installer_updates":false,"description":"SLE11-HAE-SP1-Pool for sle-11-x86_64","enabled":true,"id":946,"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP1-Pool/sle-11-x86_64/"}],"product_class":"SLE-HAE-X86","predecessor_ids":[],"release_type":null,"former_identifier":"sle-hae-SP1-migration","friendly_name":"SUSE Linux Enterprise High Availability Extension 11 x86_64 (Migration)","migration_extra":false,"offline_predecessor_ids":[],"name":"SUSE Linux Enterprise High Availability Extension","version":"11","recommended":false,"identifier":"sle-hae-SP1-migration","release_stage":"released","id":960,"extensions":[],"friendly_version":"11"},{"release_type":null,"former_identifier":"sle-hae","migration_extra":false,"friendly_name":"SUSE Linux Enterprise High Availability Extension 11 SP2 x86_64","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise High Availability Extension","version":"11.2","recommended":false,"release_stage":"released","id":961,"identifier":"sle-hae","extensions":[],"friendly_version":"11 SP2","arch":"x86_64","eula_url":"","free":false,"shortname":null,"description":null,"product_type":"extension","cpe":null,"product_class":"SLE-HAE-X86","online_predecessor_ids":[],"repositories":[{"description":"SLE11-HAE-SP2-Pool for sle-11-x86_64","name":"SLE11-HAE-SP2-Pool","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP2-Pool/sle-11-x86_64/","enabled":true,"id":947},{"name":"SLE11-HAE-SP2-Updates","installer_updates":false,"description":"SLE11-HAE-SP2-Updates for sle-11-x86_64","id":948,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP2-Updates/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64"}],"predecessor_ids":[]},{"eula_url":"","arch":"i686","description":null,"shortname":null,"free":false,"cpe":null,"product_type":"extension","predecessor_ids":[],"product_class":"SLE-HAE-X86","online_predecessor_ids":[],"repositories":[{"description":"SLE11-HAE-SP2-Pool for sle-11-i586","name":"SLE11-HAE-SP2-Pool","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP2-Pool/sle-11-i586/","enabled":true,"id":949},{"url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP2-Updates/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","id":950,"enabled":true,"description":"SLE11-HAE-SP2-Updates for sle-11-i586","name":"SLE11-HAE-SP2-Updates","installer_updates":false}],"name":"SUSE Linux Enterprise High Availability Extension","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"SUSE Linux Enterprise High Availability Extension 11 SP1 i686 (Migration)","former_identifier":"sle-hae-SP2-migration","release_type":null,"recommended":false,"version":"11.1","extensions":[],"release_stage":"released","identifier":"sle-hae-SP2-migration","id":962,"friendly_version":"11 SP1"},{"extensions":[],"id":963,"release_stage":"released","identifier":"sle-hae-SP2-migration","friendly_version":"11 SP1","name":"SUSE Linux Enterprise High Availability Extension","offline_predecessor_ids":[],"friendly_name":"SUSE Linux Enterprise High Availability Extension 11 SP1 i586 (Migration)","migration_extra":false,"former_identifier":"sle-hae-SP2-migration","release_type":null,"recommended":false,"version":"11.1","cpe":null,"product_type":"extension","predecessor_ids":[],"product_class":"SLE-HAE-X86","online_predecessor_ids":[],"repositories":[{"description":"SLE11-HAE-SP2-Pool for sle-11-i586","name":"SLE11-HAE-SP2-Pool","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP2-Pool/sle-11-i586/","enabled":true,"id":949},{"enabled":true,"id":950,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP2-Updates/sle-11-i586/","name":"SLE11-HAE-SP2-Updates","installer_updates":false,"description":"SLE11-HAE-SP2-Updates for sle-11-i586"}],"eula_url":"","arch":"i586","shortname":null,"description":null,"free":false},{"cpe":null,"product_type":"extension","online_predecessor_ids":[],"product_class":"SLE-HAE-X86","repositories":[{"enabled":true,"id":951,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP3-Pool/sle-11-i586/","name":"SLE11-HAE-SP3-Pool","installer_updates":false,"description":"SLE11-HAE-SP3-Pool for sle-11-i586"},{"description":"SLE11-HAE-SP3-Updates for sle-11-i586","name":"SLE11-HAE-SP3-Updates","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP3-Updates/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","id":952,"enabled":true}],"predecessor_ids":[],"arch":"i686","eula_url":"","shortname":null,"description":null,"free":false,"release_stage":"released","identifier":"sle-hae-SP3-migration","id":964,"extensions":[],"friendly_version":"11 SP2","migration_extra":false,"friendly_name":"SUSE Linux Enterprise High Availability Extension 11 SP2 i686 (Migration)","release_type":null,"former_identifier":"sle-hae-SP3-migration","name":"SUSE Linux Enterprise High Availability Extension","offline_predecessor_ids":[],"version":"11.2","recommended":false},{"extensions":[],"identifier":"sle-hae","release_stage":"released","id":965,"friendly_version":"11 SP1","name":"SUSE Linux Enterprise High Availability Extension","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"SUSE Linux Enterprise High Availability Extension 11 SP1 i486","former_identifier":"sle-hae","release_type":null,"recommended":false,"version":"11.1","cpe":null,"product_type":"extension","predecessor_ids":[],"online_predecessor_ids":[],"repositories":[{"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP1-Updates/sle-11-i586/","enabled":true,"id":944,"description":"SLE11-HAE-SP1-Updates for sle-11-i586","name":"SLE11-HAE-SP1-Updates","installer_updates":false},{"description":"SLE11-HAE-SP1-Pool for sle-11-i586","installer_updates":false,"name":"SLE11-HAE-SP1-Pool","url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP1-Pool/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true,"id":945,"enabled":true}],"product_class":"SLE-HAE-X86","eula_url":"","arch":"i486","description":null,"shortname":null,"free":false},{"extensions":[],"identifier":"sle-hae","release_stage":"released","id":966,"friendly_version":"11 SP1","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise High Availability Extension","former_identifier":"sle-hae","release_type":null,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise High Availability Extension 11 SP1 i386","recommended":false,"version":"11.1","product_type":"extension","cpe":null,"predecessor_ids":[],"online_predecessor_ids":[],"product_class":"SLE-HAE-X86","repositories":[{"description":"SLE11-HAE-SP1-Updates for sle-11-i586","installer_updates":false,"name":"SLE11-HAE-SP1-Updates","distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP1-Updates/sle-11-i586/","enabled":true,"id":944},{"id":945,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP1-Pool/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true,"installer_updates":false,"name":"SLE11-HAE-SP1-Pool","description":"SLE11-HAE-SP1-Pool for sle-11-i586"}],"eula_url":"","arch":"i386","free":false,"description":null,"shortname":null},{"description":null,"shortname":null,"free":false,"eula_url":"","arch":"x86_64","predecessor_ids":[],"product_class":"SLE-HAE-X86","online_predecessor_ids":[],"repositories":[{"enabled":true,"id":946,"distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP1-Pool/sle-11-x86_64/","installer_updates":false,"name":"SLE11-HAE-SP1-Pool","description":"SLE11-HAE-SP1-Pool for sle-11-x86_64"},{"distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP1-Updates/sle-11-x86_64/","enabled":true,"id":953,"description":"SLE11-HAE-SP1-Updates for sle-11-x86_64","installer_updates":false,"name":"SLE11-HAE-SP1-Updates"}],"cpe":null,"product_type":"extension","recommended":false,"version":"11.1","name":"SUSE Linux Enterprise High Availability Extension","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"SUSE Linux Enterprise High Availability Extension 11 SP1 x86_64","former_identifier":"sle-hae","release_type":null,"friendly_version":"11 SP1","extensions":[],"release_stage":"released","id":967,"identifier":"sle-hae"},{"free":false,"shortname":null,"description":null,"arch":"x86_64","eula_url":"","product_class":"SLE-HAE-X86","online_predecessor_ids":[],"repositories":[{"url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP2-Pool/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true,"id":947,"enabled":true,"description":"SLE11-HAE-SP2-Pool for sle-11-x86_64","installer_updates":false,"name":"SLE11-HAE-SP2-Pool"},{"name":"SLE11-HAE-SP2-Updates","installer_updates":false,"description":"SLE11-HAE-SP2-Updates for sle-11-x86_64","enabled":true,"id":948,"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP2-Updates/sle-11-x86_64/"}],"predecessor_ids":[],"product_type":"extension","cpe":null,"version":"11.1","recommended":false,"former_identifier":"sle-hae-SP2-migration","release_type":null,"friendly_name":"SUSE Linux Enterprise High Availability Extension 11 SP1 x86_64 (Migration)","migration_extra":false,"offline_predecessor_ids":[],"name":"SUSE Linux Enterprise High Availability Extension","friendly_version":"11 SP1","identifier":"sle-hae-SP2-migration","release_stage":"released","id":968,"extensions":[]},{"free":false,"shortname":null,"description":null,"arch":"i586","eula_url":"","online_predecessor_ids":[],"product_class":"SLE-HAE-X86","repositories":[{"url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-Pool/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true,"id":954,"enabled":false,"description":"SLE11-HAE-Pool for sle-11-i586","installer_updates":false,"name":"SLE11-HAE-Pool"},{"enabled":true,"id":955,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-Updates/sle-11-i586/","name":"SLE11-HAE-Updates","installer_updates":false,"description":"SLE11-HAE-Updates for sle-11-i586"}],"predecessor_ids":[],"product_type":"extension","cpe":null,"version":"11","recommended":false,"release_type":null,"former_identifier":"sle-hae","friendly_name":"SUSE Linux Enterprise High Availability Extension 11 i586","migration_extra":false,"offline_predecessor_ids":[],"name":"SUSE Linux Enterprise High Availability Extension","friendly_version":"11","release_stage":"released","id":969,"identifier":"sle-hae","extensions":[]},{"version":"11.2","recommended":false,"friendly_name":"SUSE Linux Enterprise High Availability Extension 11 SP2 i686","migration_extra":false,"release_type":null,"former_identifier":"sle-hae","name":"SUSE Linux Enterprise High Availability Extension","offline_predecessor_ids":[],"friendly_version":"11 SP2","release_stage":"released","id":970,"identifier":"sle-hae","extensions":[],"description":null,"shortname":null,"free":false,"arch":"i686","eula_url":"","online_predecessor_ids":[],"product_class":"SLE-HAE-X86","repositories":[{"name":"SLE11-HAE-SP2-Pool","installer_updates":false,"description":"SLE11-HAE-SP2-Pool for sle-11-i586","enabled":true,"id":949,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP2-Pool/sle-11-i586/"},{"description":"SLE11-HAE-SP2-Updates for sle-11-i586","name":"SLE11-HAE-SP2-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP2-Updates/sle-11-i586/","enabled":true,"id":950}],"predecessor_ids":[],"cpe":null,"product_type":"extension"},{"friendly_version":"11 SP3","release_stage":"released","id":971,"identifier":"sle-hae","extensions":[],"version":"11.3","recommended":false,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise High Availability Extension 11 SP3 x86_64","release_type":null,"former_identifier":"sle-hae","name":"SUSE Linux Enterprise High Availability Extension","offline_predecessor_ids":[],"repositories":[{"name":"SLE11-HAE-SP3-Updates","installer_updates":false,"description":"SLE11-HAE-SP3-Updates for sle-11-x86_64","enabled":true,"id":956,"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP3-Updates/sle-11-x86_64/"},{"name":"SLE11-HAE-SP3-Pool","installer_updates":false,"description":"SLE11-HAE-SP3-Pool for sle-11-x86_64","enabled":true,"id":3037,"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP3-Pool/sle-11-x86_64/"}],"online_predecessor_ids":[],"product_class":"SLE-HAE-X86","predecessor_ids":[],"cpe":null,"product_type":"extension","description":null,"shortname":null,"free":false,"arch":"x86_64","eula_url":""},{"version":"11","recommended":false,"former_identifier":"sle-hae","release_type":null,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise High Availability Extension 11 i686","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise High Availability Extension","friendly_version":"11","identifier":"sle-hae","release_stage":"released","id":972,"extensions":[],"free":false,"shortname":null,"description":null,"arch":"i686","eula_url":"","online_predecessor_ids":[],"product_class":"SLE-HAE-X86","repositories":[{"description":"SLE11-HAE-Pool for sle-11-i586","name":"SLE11-HAE-Pool","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-Pool/sle-11-i586/","enabled":false,"id":954},{"description":"SLE11-HAE-Updates for sle-11-i586","installer_updates":false,"name":"SLE11-HAE-Updates","distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-Updates/sle-11-i586/","enabled":true,"id":955}],"predecessor_ids":[],"product_type":"extension","cpe":null},{"free":false,"shortname":null,"description":null,"arch":"i486","eula_url":"","online_predecessor_ids":[],"repositories":[{"url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-Pool/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true,"id":954,"enabled":false,"description":"SLE11-HAE-Pool for sle-11-i586","installer_updates":false,"name":"SLE11-HAE-Pool"},{"url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-Updates/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","id":955,"enabled":true,"description":"SLE11-HAE-Updates for sle-11-i586","name":"SLE11-HAE-Updates","installer_updates":false}],"product_class":"SLE-HAE-X86","predecessor_ids":[],"product_type":"extension","cpe":null,"version":"11","recommended":false,"former_identifier":"sle-hae","release_type":null,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise High Availability Extension 11 i486","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise High Availability Extension","friendly_version":"11","identifier":"sle-hae","release_stage":"released","id":973,"extensions":[]},{"friendly_version":"11","extensions":[],"id":974,"release_stage":"released","identifier":"sle-hae-SP1-migration","recommended":false,"version":"11","name":"SUSE Linux Enterprise High Availability Extension","offline_predecessor_ids":[],"friendly_name":"SUSE Linux Enterprise High Availability Extension 11 i586 (Migration)","migration_extra":false,"former_identifier":"sle-hae-SP1-migration","release_type":null,"predecessor_ids":[],"online_predecessor_ids":[],"repositories":[{"distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP1-Pool/sle-11-i586/","enabled":true,"id":945,"description":"SLE11-HAE-SP1-Pool for sle-11-i586","installer_updates":false,"name":"SLE11-HAE-SP1-Pool"}],"product_class":"SLE-HAE-X86","cpe":null,"product_type":"extension","description":null,"shortname":null,"free":false,"eula_url":"","arch":"i586"},{"predecessor_ids":[],"repositories":[{"distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP2-Pool/sle-11-i586/","enabled":true,"id":949,"description":"SLE11-HAE-SP2-Pool for sle-11-i586","installer_updates":false,"name":"SLE11-HAE-SP2-Pool"},{"url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP2-Updates/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true,"id":950,"enabled":true,"description":"SLE11-HAE-SP2-Updates for sle-11-i586","installer_updates":false,"name":"SLE11-HAE-SP2-Updates"}],"online_predecessor_ids":[],"product_class":"SLE-HAE-X86","product_type":"extension","cpe":null,"free":false,"shortname":null,"description":null,"eula_url":"","arch":"i586","friendly_version":"11 SP2","extensions":[],"identifier":"sle-hae","release_stage":"released","id":975,"recommended":false,"version":"11.2","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise High Availability Extension","former_identifier":"sle-hae","release_type":null,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise High Availability Extension 11 SP2 i586"},{"predecessor_ids":[],"product_class":"SLE-HAE-X86","online_predecessor_ids":[],"repositories":[{"distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP2-Pool/sle-11-i586/","enabled":true,"id":949,"description":"SLE11-HAE-SP2-Pool for sle-11-i586","installer_updates":false,"name":"SLE11-HAE-SP2-Pool"},{"installer_updates":false,"name":"SLE11-HAE-SP2-Updates","description":"SLE11-HAE-SP2-Updates for sle-11-i586","id":950,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP2-Updates/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true}],"product_type":"extension","cpe":null,"free":false,"description":null,"shortname":null,"eula_url":"","arch":"i486","friendly_version":"11 SP1","extensions":[],"release_stage":"released","identifier":"sle-hae-SP2-migration","id":976,"recommended":false,"version":"11.1","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise High Availability Extension","release_type":null,"former_identifier":"sle-hae-SP2-migration","friendly_name":"SUSE Linux Enterprise High Availability Extension 11 SP1 i486 (Migration)","migration_extra":false},{"extensions":[],"identifier":"sle-hae","release_stage":"released","id":977,"friendly_version":"11 SP3","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise High Availability Extension","release_type":null,"former_identifier":"sle-hae","migration_extra":false,"friendly_name":"SUSE Linux Enterprise High Availability Extension 11 SP3 i586","recommended":false,"version":"11.3","product_type":"extension","cpe":null,"predecessor_ids":[],"online_predecessor_ids":[],"repositories":[{"enabled":true,"id":951,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP3-Pool/sle-11-i586/","name":"SLE11-HAE-SP3-Pool","installer_updates":false,"description":"SLE11-HAE-SP3-Pool for sle-11-i586"},{"installer_updates":false,"name":"SLE11-HAE-SP3-Updates","description":"SLE11-HAE-SP3-Updates for sle-11-i586","enabled":true,"id":952,"distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP3-Updates/sle-11-i586/"}],"product_class":"SLE-HAE-X86","eula_url":"","arch":"i586","free":false,"shortname":null,"description":null},{"name":"SUSE Linux Enterprise High Availability Extension","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"SUSE Linux Enterprise High Availability Extension 11 SP1 i686","release_type":null,"former_identifier":"sle-hae","recommended":false,"version":"11.1","extensions":[],"id":978,"release_stage":"released","identifier":"sle-hae","friendly_version":"11 SP1","eula_url":"","arch":"i686","shortname":null,"description":null,"free":false,"cpe":null,"product_type":"extension","predecessor_ids":[],"online_predecessor_ids":[],"repositories":[{"enabled":true,"id":944,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP1-Updates/sle-11-i586/","name":"SLE11-HAE-SP1-Updates","installer_updates":false,"description":"SLE11-HAE-SP1-Updates for sle-11-i586"},{"distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP1-Pool/sle-11-i586/","enabled":true,"id":945,"description":"SLE11-HAE-SP1-Pool for sle-11-i586","installer_updates":false,"name":"SLE11-HAE-SP1-Pool"}],"product_class":"SLE-HAE-X86"},{"release_type":null,"former_identifier":"sle-hae","migration_extra":false,"friendly_name":"SUSE Linux Enterprise High Availability Extension 11 SP2 i486","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise High Availability Extension","version":"11.2","recommended":false,"release_stage":"released","id":979,"identifier":"sle-hae","extensions":[],"friendly_version":"11 SP2","arch":"i486","eula_url":"","free":false,"description":null,"shortname":null,"product_type":"extension","cpe":null,"online_predecessor_ids":[],"product_class":"SLE-HAE-X86","repositories":[{"description":"SLE11-HAE-SP2-Pool for sle-11-i586","installer_updates":false,"name":"SLE11-HAE-SP2-Pool","distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP2-Pool/sle-11-i586/","enabled":true,"id":949},{"id":950,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP2-Updates/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","name":"SLE11-HAE-SP2-Updates","installer_updates":false,"description":"SLE11-HAE-SP2-Updates for sle-11-i586"}],"predecessor_ids":[]},{"release_type":null,"former_identifier":"sle-hae-SP3-migration","migration_extra":false,"friendly_name":"SUSE Linux Enterprise High Availability Extension 11 SP2 x86_64 (Migration)","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise High Availability Extension","version":"11.2","recommended":false,"id":980,"release_stage":"released","identifier":"sle-hae-SP3-migration","extensions":[],"friendly_version":"11 SP2","arch":"x86_64","eula_url":"","free":false,"shortname":null,"description":null,"product_type":"extension","cpe":null,"online_predecessor_ids":[],"product_class":"SLE-HAE-X86","repositories":[{"id":956,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP3-Updates/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true,"installer_updates":false,"name":"SLE11-HAE-SP3-Updates","description":"SLE11-HAE-SP3-Updates for sle-11-x86_64"},{"name":"SLE11-HAE-SP3-Pool","installer_updates":false,"description":"SLE11-HAE-SP3-Pool for sle-11-x86_64","enabled":true,"id":3037,"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP3-Pool/sle-11-x86_64/"}],"predecessor_ids":[]},{"free":false,"description":null,"shortname":null,"arch":"i486","eula_url":"","online_predecessor_ids":[],"repositories":[{"url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP1-Pool/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true,"id":945,"enabled":true,"description":"SLE11-HAE-SP1-Pool for sle-11-i586","installer_updates":false,"name":"SLE11-HAE-SP1-Pool"}],"product_class":"SLE-HAE-X86","predecessor_ids":[],"product_type":"extension","cpe":null,"version":"11","recommended":false,"former_identifier":"sle-hae-SP1-migration","release_type":null,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise High Availability Extension 11 i486 (Migration)","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise High Availability Extension","friendly_version":"11","release_stage":"released","identifier":"sle-hae-SP1-migration","id":981,"extensions":[]},{"former_identifier":"sle-hae-SP2-migration","release_type":null,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise High Availability Extension 11 SP1 i386 (Migration)","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise High Availability Extension","version":"11.1","recommended":false,"identifier":"sle-hae-SP2-migration","release_stage":"released","id":982,"extensions":[],"friendly_version":"11 SP1","arch":"i386","eula_url":"","free":false,"shortname":null,"description":null,"product_type":"extension","cpe":null,"online_predecessor_ids":[],"product_class":"SLE-HAE-X86","repositories":[{"name":"SLE11-HAE-SP2-Pool","installer_updates":false,"description":"SLE11-HAE-SP2-Pool for sle-11-i586","enabled":true,"id":949,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP2-Pool/sle-11-i586/"},{"name":"SLE11-HAE-SP2-Updates","installer_updates":false,"description":"SLE11-HAE-SP2-Updates for sle-11-i586","id":950,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP2-Updates/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586"}],"predecessor_ids":[]},{"arch":"i386","eula_url":"","free":false,"description":null,"shortname":null,"product_type":"extension","cpe":null,"product_class":"SLE-HAE-X86","online_predecessor_ids":[],"repositories":[{"enabled":false,"id":954,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-Pool/sle-11-i586/","name":"SLE11-HAE-Pool","installer_updates":false,"description":"SLE11-HAE-Pool for sle-11-i586"},{"installer_updates":false,"name":"SLE11-HAE-Updates","description":"SLE11-HAE-Updates for sle-11-i586","id":955,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-Updates/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true}],"predecessor_ids":[],"release_type":null,"former_identifier":"sle-hae","friendly_name":"SUSE Linux Enterprise High Availability Extension 11 i386","migration_extra":false,"offline_predecessor_ids":[],"name":"SUSE Linux Enterprise High Availability Extension","version":"11","recommended":false,"identifier":"sle-hae","release_stage":"released","id":983,"extensions":[],"friendly_version":"11"},{"recommended":false,"version":"11.2","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise High Availability Extension","release_type":null,"former_identifier":"sle-hae","migration_extra":false,"friendly_name":"SUSE Linux Enterprise High Availability Extension 11 SP2 i386","friendly_version":"11 SP2","extensions":[],"identifier":"sle-hae","release_stage":"released","id":984,"free":false,"shortname":null,"description":null,"eula_url":"","arch":"i386","predecessor_ids":[],"product_class":"SLE-HAE-X86","online_predecessor_ids":[],"repositories":[{"url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP2-Pool/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true,"id":949,"enabled":true,"description":"SLE11-HAE-SP2-Pool for sle-11-i586","installer_updates":false,"name":"SLE11-HAE-SP2-Pool"},{"enabled":true,"id":950,"distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP2-Updates/sle-11-i586/","installer_updates":false,"name":"SLE11-HAE-SP2-Updates","description":"SLE11-HAE-SP2-Updates for sle-11-i586"}],"product_type":"extension","cpe":null},{"predecessor_ids":[],"online_predecessor_ids":[],"product_class":"SLE-HAE-X86","repositories":[{"installer_updates":false,"name":"SLE11-HAE-SP3-Pool","description":"SLE11-HAE-SP3-Pool for sle-11-i586","enabled":true,"id":951,"distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP3-Pool/sle-11-i586/"},{"enabled":true,"id":952,"distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP3-Updates/sle-11-i586/","installer_updates":false,"name":"SLE11-HAE-SP3-Updates","description":"SLE11-HAE-SP3-Updates for sle-11-i586"}],"product_type":"extension","cpe":null,"free":false,"description":null,"shortname":null,"eula_url":"","arch":"i686","friendly_version":"11 SP3","extensions":[],"identifier":"sle-hae","release_stage":"released","id":985,"recommended":false,"version":"11.3","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise High Availability Extension","release_type":null,"former_identifier":"sle-hae","friendly_name":"SUSE Linux Enterprise High Availability Extension 11 SP3 i686","migration_extra":false},{"recommended":false,"version":"11","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise High Availability Extension","release_type":null,"former_identifier":"sle-hae-SP1-migration","migration_extra":false,"friendly_name":"SUSE Linux Enterprise High Availability Extension 11 i686 (Migration)","friendly_version":"11","extensions":[],"identifier":"sle-hae-SP1-migration","release_stage":"released","id":986,"free":false,"shortname":null,"description":null,"eula_url":"","arch":"i686","predecessor_ids":[],"repositories":[{"url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP1-Pool/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true,"id":945,"enabled":true,"description":"SLE11-HAE-SP1-Pool for sle-11-i586","installer_updates":false,"name":"SLE11-HAE-SP1-Pool"}],"online_predecessor_ids":[],"product_class":"SLE-HAE-X86","product_type":"extension","cpe":null},{"eula_url":"","arch":"i386","free":false,"description":null,"shortname":null,"product_type":"extension","cpe":null,"predecessor_ids":[],"online_predecessor_ids":[],"repositories":[{"name":"SLE11-HAE-SP1-Pool","installer_updates":false,"description":"SLE11-HAE-SP1-Pool for sle-11-i586","enabled":true,"id":945,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP1-Pool/sle-11-i586/"}],"product_class":"SLE-HAE-X86","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise High Availability Extension","former_identifier":"sle-hae-SP1-migration","release_type":null,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise High Availability Extension 11 i386 (Migration)","recommended":false,"version":"11","extensions":[],"release_stage":"released","identifier":"sle-hae-SP1-migration","id":987,"friendly_version":"11"},{"arch":"i586","eula_url":"","shortname":null,"description":null,"free":false,"cpe":null,"product_type":"extension","online_predecessor_ids":[],"repositories":[{"installer_updates":false,"name":"SLE11-HAE-SP3-Pool","description":"SLE11-HAE-SP3-Pool for sle-11-i586","enabled":true,"id":951,"distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP3-Pool/sle-11-i586/"},{"id":952,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP3-Updates/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","name":"SLE11-HAE-SP3-Updates","installer_updates":false,"description":"SLE11-HAE-SP3-Updates for sle-11-i586"}],"product_class":"SLE-HAE-X86","predecessor_ids":[],"migration_extra":false,"friendly_name":"SUSE Linux Enterprise High Availability Extension 11 SP2 i586 (Migration)","former_identifier":"sle-hae-SP3-migration","release_type":null,"name":"SUSE Linux Enterprise High Availability Extension","offline_predecessor_ids":[],"version":"11.2","recommended":false,"id":988,"release_stage":"released","identifier":"sle-hae-SP3-migration","extensions":[],"friendly_version":"11 SP2"},{"offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Server","former_identifier":"SLES-for-VMware-SP3-migration","release_type":null,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Server 11 SP2 i586 (Migration)","recommended":false,"version":"11.2","extensions":[{"recommended":false,"version":"11.2","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise High Availability Extension","former_identifier":"sle-hae","release_type":null,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise High Availability Extension 11 SP2 i586","friendly_version":"11 SP2","extensions":[],"release_stage":"released","id":975,"identifier":"sle-hae","free":false,"description":null,"shortname":null,"eula_url":"","arch":"i586","predecessor_ids":[],"online_predecessor_ids":[],"product_class":"SLE-HAE-X86","repositories":[{"description":"SLE11-HAE-SP2-Pool for sle-11-i586","name":"SLE11-HAE-SP2-Pool","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP2-Pool/sle-11-i586/","enabled":true,"id":949},{"distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP2-Updates/sle-11-i586/","enabled":true,"id":950,"description":"SLE11-HAE-SP2-Updates for sle-11-i586","installer_updates":false,"name":"SLE11-HAE-SP2-Updates"}],"product_type":"extension","cpe":null},{"id":988,"release_stage":"released","identifier":"sle-hae-SP3-migration","extensions":[],"friendly_version":"11 SP2","former_identifier":"sle-hae-SP3-migration","release_type":null,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise High Availability Extension 11 SP2 i586 (Migration)","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise High Availability Extension","version":"11.2","recommended":false,"product_type":"extension","cpe":null,"online_predecessor_ids":[],"repositories":[{"url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP3-Pool/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true,"id":951,"enabled":true,"description":"SLE11-HAE-SP3-Pool for sle-11-i586","installer_updates":false,"name":"SLE11-HAE-SP3-Pool"},{"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP3-Updates/sle-11-i586/","enabled":true,"id":952,"description":"SLE11-HAE-SP3-Updates for sle-11-i586","name":"SLE11-HAE-SP3-Updates","installer_updates":false}],"product_class":"SLE-HAE-X86","predecessor_ids":[],"arch":"i586","eula_url":"","free":false,"shortname":null,"description":null},{"product_class":"SLESMT","online_predecessor_ids":[],"repositories":[{"installer_updates":false,"name":"SLE11-SMT-SP2-Pool","description":"SLE11-SMT-SP2-Pool for sle-11-x86_64","id":1392,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP2-Pool/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true},{"description":"SLE11-SMT-SP2-Updates for sle-11-s390x","name":"SLE11-SMT-SP2-Updates","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP2-Updates/sle-11-s390x/","autorefresh":true,"distro_target":"sle-11-s390x","id":1393,"enabled":true},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP2-Pool/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","id":1394,"enabled":true,"description":"SLE11-SMT-SP2-Pool for sle-11-i586","name":"SLE11-SMT-SP2-Pool","installer_updates":false},{"name":"SLE11-SMT-SP2-Updates","installer_updates":false,"description":"SLE11-SMT-SP2-Updates for sle-11-i586","enabled":true,"id":1395,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP2-Updates/sle-11-i586/"},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP2-Pool/sle-11-s390x/","distro_target":"sle-11-s390x","autorefresh":true,"id":1396,"enabled":true,"description":"SLE11-SMT-SP2-Pool for sle-11-s390x","installer_updates":false,"name":"SLE11-SMT-SP2-Pool"},{"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP2-Updates/sle-11-x86_64/","enabled":true,"id":1397,"description":"SLE11-SMT-SP2-Updates for sle-11-x86_64","name":"SLE11-SMT-SP2-Updates","installer_updates":false}],"predecessor_ids":[],"product_type":"extension","cpe":null,"free":true,"description":null,"shortname":null,"arch":null,"eula_url":"","friendly_version":"11 SP2","identifier":"sle-smt","release_stage":"released","id":1193,"extensions":[],"version":"11.2","recommended":false,"former_identifier":"sle-smt","release_type":null,"friendly_name":"SUSE Linux Enterprise Subscription Management Tool 11 SP2","migration_extra":false,"offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Subscription Management Tool"},{"product_class":"SLESMT","online_predecessor_ids":[],"repositories":[{"enabled":true,"id":1408,"distro_target":"sle-11-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP3-Pool/sle-11-s390x/","installer_updates":false,"name":"SLE11-SMT-SP3-Pool","description":"SLE11-SMT-SP3-Pool for sle-11-s390x"},{"enabled":true,"id":1409,"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP3-Pool/sle-11-x86_64/","name":"SLE11-SMT-SP3-Pool","installer_updates":false,"description":"SLE11-SMT-SP3-Pool for sle-11-x86_64"},{"id":1410,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP3-Pool/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","name":"SLE11-SMT-SP3-Pool","installer_updates":false,"description":"SLE11-SMT-SP3-Pool for sle-11-i586"}],"predecessor_ids":[],"product_type":"extension","cpe":null,"free":true,"description":null,"shortname":null,"arch":null,"eula_url":"","friendly_version":"11 SP2","release_stage":"released","id":1199,"identifier":"sle-smt-SP3-migration","extensions":[],"version":"11.2","recommended":false,"former_identifier":"sle-smt-SP3-migration","release_type":null,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Subscription Management Tool 11 SP2 (Migration)","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Subscription Management Tool"}],"id":989,"release_stage":"released","identifier":"SLES-for-VMware-SP3-migration","friendly_version":"11 SP2","eula_url":"","arch":"i586","free":false,"description":null,"shortname":null,"product_type":"base","cpe":null,"predecessor_ids":[],"online_predecessor_ids":[],"repositories":[{"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLES11-Extras/sle-11-i586/","enabled":false,"id":679,"description":"SLES11-Extras for sle-11-i586","name":"SLES11-Extras","installer_updates":false},{"installer_updates":false,"name":"SLE11-SP1-Debuginfo-Pool","description":"SLE11-SP1-Debuginfo-Pool for sle-11-i586","id":680,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Pool/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true},{"enabled":false,"id":682,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Updates/sle-11-i586/","name":"SLE11-SP1-Debuginfo-Updates","installer_updates":false,"description":"SLE11-SP1-Debuginfo-Updates for sle-11-i586"},{"id":717,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-Debuginfo-Core/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","name":"SLE11-SP2-Debuginfo-Core","installer_updates":false,"description":"SLE11-SP2-Debuginfo-Core for sle-11-i586"},{"name":"SLE11-SP2-Debuginfo-Updates","installer_updates":false,"description":"SLE11-SP2-Debuginfo-Updates for sle-11-i586","enabled":false,"id":719,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-Debuginfo-Updates/sle-11-i586/"},{"id":759,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP3-Debuginfo-Updates/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","name":"SLE11-SP3-Debuginfo-Updates","installer_updates":false,"description":"SLE11-SP3-Debuginfo-Updates for sle-11-i586"},{"description":"SLE11-SP3-Debuginfo-Pool for sle-11-i586","name":"SLE11-SP3-Debuginfo-Pool","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP3-Debuginfo-Pool/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","id":763,"enabled":false},{"installer_updates":false,"name":"SLES11-SP2-VMware-Updates","description":"SLES11-SP2-VMware-Updates for sle-11-i586","enabled":false,"id":958,"distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP2-VMware-Updates/sle-11-i586/"},{"enabled":false,"id":959,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-VMware-Pool/sle-11-i586/","name":"SLES11-SP1-VMware-Pool","installer_updates":false,"description":"SLES11-SP1-VMware-Pool for sle-11-i586"},{"name":"SLES11-SP3-VMware-Updates","installer_updates":false,"description":"SLES11-SP3-VMware-Updates for sle-11-i586","id":960,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP3-VMware-Updates/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586"},{"id":961,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-VMware-Updates/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true,"installer_updates":false,"name":"SLES11-SP1-VMware-Updates","description":"SLES11-SP1-VMware-Updates for sle-11-i586"},{"id":962,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP2-VMware-Core/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","name":"SLES11-SP2-VMware-Core","installer_updates":false,"description":"SLES11-SP2-VMware-Core for sle-11-i586"},{"url":"https://updates.suse.com/repo/$RCE/SLES11-SP3-VMware-Pool/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","id":963,"enabled":true,"description":"SLES11-SP3-VMware-Pool for sle-11-i586","name":"SLES11-SP3-VMware-Pool","installer_updates":false}],"product_class":"SLES-X86-VMWARE"},{"friendly_version":"11 SP1","id":990,"release_stage":"released","identifier":"SLES-for-VMware-SP2-migration","extensions":[{"predecessor_ids":[],"product_class":"SLE-HAE-X86","online_predecessor_ids":[],"repositories":[{"installer_updates":false,"name":"SLE11-HAE-SP2-Pool","description":"SLE11-HAE-SP2-Pool for sle-11-i586","enabled":true,"id":949,"distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP2-Pool/sle-11-i586/"},{"description":"SLE11-HAE-SP2-Updates for sle-11-i586","name":"SLE11-HAE-SP2-Updates","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP2-Updates/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","id":950,"enabled":true}],"product_type":"extension","cpe":null,"free":false,"shortname":null,"description":null,"eula_url":"","arch":"i686","friendly_version":"11 SP1","extensions":[],"id":962,"release_stage":"released","identifier":"sle-hae-SP2-migration","recommended":false,"version":"11.1","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise High Availability Extension","former_identifier":"sle-hae-SP2-migration","release_type":null,"friendly_name":"SUSE Linux Enterprise High Availability Extension 11 SP1 i686 (Migration)","migration_extra":false},{"predecessor_ids":[],"online_predecessor_ids":[],"product_class":"SLE-HAE-X86","repositories":[{"url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP1-Updates/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","id":944,"enabled":true,"description":"SLE11-HAE-SP1-Updates for sle-11-i586","name":"SLE11-HAE-SP1-Updates","installer_updates":false},{"enabled":true,"id":945,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP1-Pool/sle-11-i586/","name":"SLE11-HAE-SP1-Pool","installer_updates":false,"description":"SLE11-HAE-SP1-Pool for sle-11-i586"}],"cpe":null,"product_type":"extension","shortname":null,"description":null,"free":false,"eula_url":"","arch":"i686","friendly_version":"11 SP1","extensions":[],"release_stage":"released","id":978,"identifier":"sle-hae","recommended":false,"version":"11.1","name":"SUSE Linux Enterprise High Availability Extension","offline_predecessor_ids":[],"friendly_name":"SUSE Linux Enterprise High Availability Extension 11 SP1 i686","migration_extra":false,"former_identifier":"sle-hae","release_type":null},{"eula_url":"","arch":null,"free":true,"description":null,"shortname":null,"product_type":"extension","cpe":null,"predecessor_ids":[],"online_predecessor_ids":[],"repositories":[{"distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-SMT-Updates/sle-11-x86_64/","enabled":true,"id":1386,"description":"SLE11-SP1-SMT-Updates for sle-11-x86_64","installer_updates":false,"name":"SLE11-SP1-SMT-Updates"},{"enabled":true,"id":1387,"distro_target":"sle-11-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-SMT-Pool/sle-11-s390x/","installer_updates":false,"name":"SLE11-SP1-SMT-Pool","description":"SLE11-SP1-SMT-Pool for sle-11-s390x"},{"name":"SLE11-SP1-SMT-Pool","installer_updates":false,"description":"SLE11-SP1-SMT-Pool for sle-11-x86_64","id":1388,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-SMT-Pool/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64"},{"description":"SLE11-SP1-SMT-Updates for sle-11-i586","name":"SLE11-SP1-SMT-Updates","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-SMT-Updates/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","id":1389,"enabled":true},{"installer_updates":false,"name":"SLE11-SP1-SMT-Pool","description":"SLE11-SP1-SMT-Pool for sle-11-i586","id":1390,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-SMT-Pool/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-SMT-Updates/sle-11-s390x/","distro_target":"sle-11-s390x","autorefresh":true,"id":1391,"enabled":true,"description":"SLE11-SP1-SMT-Updates for sle-11-s390x","installer_updates":false,"name":"SLE11-SP1-SMT-Updates"}],"product_class":"SLESMT","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Subscription Management Tool","release_type":null,"former_identifier":"sle-smt","friendly_name":"SUSE Linux Enterprise Subscription Management Tool 11 SP1","migration_extra":false,"recommended":false,"version":"11.1","extensions":[],"release_stage":"released","id":1192,"identifier":"sle-smt","friendly_version":"11 SP1"}],"version":"11.1","recommended":false,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Server 11 SP1 i686 (Migration)","former_identifier":"SLES-for-VMware-SP2-migration","release_type":null,"name":"SUSE Linux Enterprise Server","offline_predecessor_ids":[],"online_predecessor_ids":[],"product_class":"SLES-X86-VMWARE","repositories":[{"url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-Debuginfo-Core/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true,"id":717,"enabled":false,"description":"SLE11-SP2-Debuginfo-Core for sle-11-i586","installer_updates":false,"name":"SLE11-SP2-Debuginfo-Core"},{"description":"SLE11-SP2-Debuginfo-Updates for sle-11-i586","installer_updates":false,"name":"SLE11-SP2-Debuginfo-Updates","distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-Debuginfo-Updates/sle-11-i586/","enabled":false,"id":719},{"description":"SLES11-SP2-VMware-Updates for sle-11-i586","name":"SLES11-SP2-VMware-Updates","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP2-VMware-Updates/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","id":958,"enabled":true},{"name":"SLES11-SP2-VMware-Core","installer_updates":false,"description":"SLES11-SP2-VMware-Core for sle-11-i586","id":962,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP2-VMware-Core/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586"}],"predecessor_ids":[],"cpe":null,"product_type":"base","description":null,"shortname":null,"free":false,"arch":"i686","eula_url":""},{"arch":"x86_64","eula_url":"","description":null,"shortname":null,"free":false,"cpe":null,"product_type":"base","product_class":"SLES-X86-VMWARE","online_predecessor_ids":[],"repositories":[{"distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-Debuginfo-Updates/sle-11-x86_64/","enabled":false,"id":712,"description":"SLE11-SP2-Debuginfo-Updates for sle-11-x86_64","installer_updates":false,"name":"SLE11-SP2-Debuginfo-Updates"},{"name":"SLE11-SP2-Debuginfo-Core","installer_updates":false,"description":"SLE11-SP2-Debuginfo-Core for sle-11-x86_64","id":716,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-Debuginfo-Core/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64"},{"description":"SLES11-SP2-VMware-Core for sle-11-x86_64","installer_updates":false,"name":"SLES11-SP2-VMware-Core","distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP2-VMware-Core/sle-11-x86_64/","enabled":true,"id":964},{"installer_updates":false,"name":"SLES11-SP2-VMware-Updates","description":"SLES11-SP2-VMware-Updates for sle-11-x86_64","enabled":true,"id":965,"distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP2-VMware-Updates/sle-11-x86_64/"}],"predecessor_ids":[],"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Server 11 SP1 x86_64 (Migration)","release_type":null,"former_identifier":"SLES-for-VMware-SP2-migration","name":"SUSE Linux Enterprise Server","offline_predecessor_ids":[],"version":"11.1","recommended":false,"identifier":"SLES-for-VMware-SP2-migration","release_stage":"released","id":991,"extensions":[{"friendly_version":"1.1","release_stage":"released","id":934,"identifier":"sle-slms-1.2-migration","extensions":[],"version":"1.1","recommended":false,"release_type":null,"former_identifier":"sle-slms-1.2-migration","friendly_name":"SUSE Lifecycle Management Server 1.1 (Migration)","migration_extra":false,"offline_predecessor_ids":[],"name":"SUSE Lifecycle Management Server","online_predecessor_ids":[],"repositories":[{"description":"SLE11-SP1-SLMS-1.2-Pool for sle-11-x86_64","installer_updates":false,"name":"SLE11-SP1-SLMS-1.2-Pool","distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-SLMS-1.2-Pool/sle-11-x86_64/","enabled":false,"id":913}],"product_class":"SLMS","predecessor_ids":[],"product_type":"extension","cpe":null,"free":false,"description":null,"shortname":null,"arch":null,"eula_url":""},{"cpe":null,"product_type":"extension","predecessor_ids":[],"online_predecessor_ids":[],"product_class":"SLMS","repositories":[{"installer_updates":false,"name":"SLE11-SP1-SLMS-1.1-Pool","description":"SLE11-SP1-SLMS-1.1-Pool for sle-11-x86_64","enabled":true,"id":914,"distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-SLMS-1.1-Pool/sle-11-x86_64/"},{"description":"SLE11-SP1-SLMS-1.1-Updates for sle-11-x86_64","name":"SLE11-SP1-SLMS-1.1-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-SLMS-1.1-Updates/sle-11-x86_64/","enabled":true,"id":915}],"eula_url":"","arch":null,"description":null,"shortname":null,"free":false,"extensions":[],"id":935,"release_stage":"released","identifier":"sle-slms","friendly_version":"1.1","name":"SUSE Lifecycle Management Server","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"SUSE Lifecycle Management Server 1.1","release_type":null,"former_identifier":"sle-slms","recommended":false,"version":"1.1"},{"cpe":null,"product_type":"extension","predecessor_ids":[],"product_class":"SLE-HAE-X86","online_predecessor_ids":[],"repositories":[{"installer_updates":false,"name":"SLE11-HAE-SP1-Pool","description":"SLE11-HAE-SP1-Pool for sle-11-x86_64","enabled":true,"id":946,"distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP1-Pool/sle-11-x86_64/"},{"description":"SLE11-HAE-SP1-Updates for sle-11-x86_64","installer_updates":false,"name":"SLE11-HAE-SP1-Updates","distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP1-Updates/sle-11-x86_64/","enabled":true,"id":953}],"eula_url":"","arch":"x86_64","shortname":null,"description":null,"free":false,"extensions":[],"release_stage":"released","id":967,"identifier":"sle-hae","friendly_version":"11 SP1","name":"SUSE Linux Enterprise High Availability Extension","offline_predecessor_ids":[],"friendly_name":"SUSE Linux Enterprise High Availability Extension 11 SP1 x86_64","migration_extra":false,"former_identifier":"sle-hae","release_type":null,"recommended":false,"version":"11.1"},{"free":false,"shortname":null,"description":null,"arch":"x86_64","eula_url":"","online_predecessor_ids":[],"product_class":"SLE-HAE-X86","repositories":[{"name":"SLE11-HAE-SP2-Pool","installer_updates":false,"description":"SLE11-HAE-SP2-Pool for sle-11-x86_64","id":947,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP2-Pool/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64"},{"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP2-Updates/sle-11-x86_64/","enabled":true,"id":948,"description":"SLE11-HAE-SP2-Updates for sle-11-x86_64","name":"SLE11-HAE-SP2-Updates","installer_updates":false}],"predecessor_ids":[],"product_type":"extension","cpe":null,"version":"11.1","recommended":false,"release_type":null,"former_identifier":"sle-hae-SP2-migration","friendly_name":"SUSE Linux Enterprise High Availability Extension 11 SP1 x86_64 (Migration)","migration_extra":false,"offline_predecessor_ids":[],"name":"SUSE Linux Enterprise High Availability Extension","friendly_version":"11 SP1","id":968,"release_stage":"released","identifier":"sle-hae-SP2-migration","extensions":[]},{"online_predecessor_ids":[],"product_class":"STUDIOONSITE","repositories":[{"enabled":false,"id":680,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Pool/sle-11-i586/","name":"SLE11-SP1-Debuginfo-Pool","installer_updates":false,"description":"SLE11-SP1-Debuginfo-Pool for sle-11-i586"},{"name":"SLE11-SP1-Debuginfo-Updates","installer_updates":false,"description":"SLE11-SP1-Debuginfo-Updates for sle-11-i586","id":682,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Updates/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586"},{"installer_updates":false,"name":"SLES11-SP1-Updates","description":"SLES11-SP1-Updates for sle-11-i586","enabled":true,"id":684,"distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-Updates/sle-11-i586/"},{"name":"SLES11-SP1-Pool","installer_updates":false,"description":"SLES11-SP1-Pool for sle-11-i586","id":686,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-Pool/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586"},{"distro_target":"sle-11-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-Pool/sle-11-s390x/","enabled":true,"id":687,"description":"SLES11-SP1-Pool for sle-11-s390x","installer_updates":false,"name":"SLES11-SP1-Pool"},{"enabled":false,"id":688,"autorefresh":true,"distro_target":"sle-11-s390x","url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Updates/sle-11-s390x/","name":"SLE11-SP1-Debuginfo-Updates","installer_updates":false,"description":"SLE11-SP1-Debuginfo-Updates for sle-11-s390x"},{"installer_updates":false,"name":"SLES11-SP1-Updates","description":"SLES11-SP1-Updates for sle-11-s390x","id":691,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-Updates/sle-11-s390x/","distro_target":"sle-11-s390x","autorefresh":true},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Pool/sle-11-s390x/","distro_target":"sle-11-s390x","autorefresh":true,"id":692,"enabled":false,"description":"SLE11-SP1-Debuginfo-Pool for sle-11-s390x","installer_updates":false,"name":"SLE11-SP1-Debuginfo-Pool"},{"name":"SLES11-SP1-Updates","installer_updates":false,"description":"SLES11-SP1-Updates for sle-11-x86_64","enabled":true,"id":705,"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-Updates/sle-11-x86_64/"},{"distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Pool/sle-11-x86_64/","enabled":false,"id":707,"description":"SLE11-SP1-Debuginfo-Pool for sle-11-x86_64","installer_updates":false,"name":"SLE11-SP1-Debuginfo-Pool"},{"enabled":true,"id":711,"distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-Pool/sle-11-x86_64/","installer_updates":false,"name":"SLES11-SP1-Pool","description":"SLES11-SP1-Pool for sle-11-x86_64"},{"id":715,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Updates/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true,"installer_updates":false,"name":"SLE11-SP1-Debuginfo-Updates","description":"SLE11-SP1-Debuginfo-Updates for sle-11-x86_64"},{"url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-Pool/sle-11-ppc64/","autorefresh":true,"distro_target":"sle-11-ppc64","id":919,"enabled":true,"description":"SLES11-SP1-Pool for sle-11-ppc64","name":"SLES11-SP1-Pool","installer_updates":false},{"name":"SLES11-SP1-Updates","installer_updates":false,"description":"SLES11-SP1-Updates for sle-11-ppc64","id":922,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-Updates/sle-11-ppc64/","autorefresh":true,"distro_target":"sle-11-ppc64"},{"name":"SLE11-SP1-Debuginfo-Updates","installer_updates":false,"description":"SLE11-SP1-Debuginfo-Updates for sle-11-ppc64","enabled":false,"id":924,"autorefresh":true,"distro_target":"sle-11-ppc64","url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Updates/sle-11-ppc64/"},{"distro_target":"sle-11-ppc64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Pool/sle-11-ppc64/","enabled":false,"id":925,"description":"SLE11-SP1-Debuginfo-Pool for sle-11-ppc64","installer_updates":false,"name":"SLE11-SP1-Debuginfo-Pool"},{"autorefresh":true,"distro_target":"sle-11-ia64","url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Pool/sle-11-ia64/","enabled":false,"id":970,"description":"SLE11-SP1-Debuginfo-Pool for sle-11-ia64","name":"SLE11-SP1-Debuginfo-Pool","installer_updates":false},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Updates/sle-11-ia64/","autorefresh":true,"distro_target":"sle-11-ia64","id":971,"enabled":false,"description":"SLE11-SP1-Debuginfo-Updates for sle-11-ia64","name":"SLE11-SP1-Debuginfo-Updates","installer_updates":false},{"name":"SLES11-SP1-Updates","installer_updates":false,"description":"SLES11-SP1-Updates for sle-11-ia64","id":987,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-Updates/sle-11-ia64/","autorefresh":true,"distro_target":"sle-11-ia64"},{"enabled":true,"id":991,"distro_target":"sle-11-ia64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-Pool/sle-11-ia64/","installer_updates":false,"name":"SLES11-SP1-Pool","description":"SLES11-SP1-Pool for sle-11-ia64"},{"description":"SLE11-StudioOnsite-1.1-Instrumentation for sle-11-x86_64","name":"SLE11-StudioOnsite-1.1-Instrumentation","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-StudioOnsite-1.1-Instrumentation/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64","id":1088,"enabled":true},{"url":"https://updates.suse.com/repo/$RCE/SLE11-StudioOnsite-1.1-Updates/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true,"id":1089,"enabled":true,"description":"SLE11-StudioOnsite-1.1-Updates for sle-11-x86_64","installer_updates":false,"name":"SLE11-StudioOnsite-1.1-Updates"},{"installer_updates":false,"name":"SLE11-StudioOnsite-1.1-Pool","description":"SLE11-StudioOnsite-1.1-Pool for sle-11-x86_64","id":1090,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-StudioOnsite-1.1-Pool/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true}],"predecessor_ids":[],"product_type":"extension","cpe":null,"free":false,"description":null,"shortname":null,"arch":null,"eula_url":"","friendly_version":"1.1","release_stage":"released","identifier":"sle-studioonsite","id":1074,"extensions":[],"version":"1.1","recommended":false,"release_type":null,"former_identifier":"sle-studioonsite","migration_extra":false,"friendly_name":"SUSE Studio OnSite 1.1","offline_predecessor_ids":[],"name":"SUSE Studio OnSite"},{"recommended":false,"version":"1.0","offline_predecessor_ids":[],"name":"SUSE Cloud","release_type":null,"former_identifier":"SUSE-Cloud","friendly_name":"SUSE Cloud 1.0 x86_64","migration_extra":false,"friendly_version":"1.0","extensions":[],"release_stage":"released","id":1090,"identifier":"SUSE-Cloud","free":false,"description":null,"shortname":null,"eula_url":"","arch":"x86_64","predecessor_ids":[],"online_predecessor_ids":[],"repositories":[{"name":"SUSE-Cloud-1.0-Pool","installer_updates":false,"description":"SUSE-Cloud-1.0-Pool for sle-11-x86_64","enabled":true,"id":1102,"autorefresh":false,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SUSE-Cloud-1.0-Pool/sle-11-x86_64/"},{"enabled":true,"id":1103,"distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SUSE-Cloud-1.0-Updates/sle-11-x86_64/","installer_updates":false,"name":"SUSE-Cloud-1.0-Updates","description":"SUSE-Cloud-1.0-Updates for sle-11-x86_64"}],"product_class":"SUSE_CLOUD","product_type":"extension","cpe":null},{"predecessor_ids":[],"online_predecessor_ids":[],"product_class":"SLESMT","repositories":[{"enabled":true,"id":1386,"distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-SMT-Updates/sle-11-x86_64/","installer_updates":false,"name":"SLE11-SP1-SMT-Updates","description":"SLE11-SP1-SMT-Updates for sle-11-x86_64"},{"installer_updates":false,"name":"SLE11-SP1-SMT-Pool","description":"SLE11-SP1-SMT-Pool for sle-11-s390x","enabled":true,"id":1387,"distro_target":"sle-11-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-SMT-Pool/sle-11-s390x/"},{"description":"SLE11-SP1-SMT-Pool for sle-11-x86_64","installer_updates":false,"name":"SLE11-SP1-SMT-Pool","url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-SMT-Pool/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true,"id":1388,"enabled":true},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-SMT-Updates/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true,"id":1389,"enabled":true,"description":"SLE11-SP1-SMT-Updates for sle-11-i586","installer_updates":false,"name":"SLE11-SP1-SMT-Updates"},{"description":"SLE11-SP1-SMT-Pool for sle-11-i586","installer_updates":false,"name":"SLE11-SP1-SMT-Pool","distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-SMT-Pool/sle-11-i586/","enabled":true,"id":1390},{"description":"SLE11-SP1-SMT-Updates for sle-11-s390x","name":"SLE11-SP1-SMT-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-s390x","url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-SMT-Updates/sle-11-s390x/","enabled":true,"id":1391}],"product_type":"extension","cpe":null,"free":true,"shortname":null,"description":null,"eula_url":"","arch":null,"friendly_version":"11 SP1","extensions":[],"identifier":"sle-smt","release_stage":"released","id":1192,"recommended":false,"version":"11.1","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Subscription Management Tool","former_identifier":"sle-smt","release_type":null,"friendly_name":"SUSE Linux Enterprise Subscription Management Tool 11 SP1","migration_extra":false}],"friendly_version":"11 SP1"},{"extensions":[{"free":false,"description":null,"shortname":null,"eula_url":"","arch":"i686","predecessor_ids":[],"product_class":"SLE-HAE-X86","online_predecessor_ids":[],"repositories":[{"name":"SLE11-HAE-SP3-Pool","installer_updates":false,"description":"SLE11-HAE-SP3-Pool for sle-11-i586","enabled":true,"id":951,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP3-Pool/sle-11-i586/"},{"enabled":true,"id":952,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP3-Updates/sle-11-i586/","name":"SLE11-HAE-SP3-Updates","installer_updates":false,"description":"SLE11-HAE-SP3-Updates for sle-11-i586"}],"product_type":"extension","cpe":null,"recommended":false,"version":"11.2","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise High Availability Extension","release_type":null,"former_identifier":"sle-hae-SP3-migration","friendly_name":"SUSE Linux Enterprise High Availability Extension 11 SP2 i686 (Migration)","migration_extra":false,"friendly_version":"11 SP2","extensions":[{"version":"11.2","recommended":false,"migration_extra":false,"friendly_name":"Geo Clustering for SUSE Linux Enterprise High Availability Extension 11 SP2 i686","release_type":null,"former_identifier":"sle-haegeo","name":"Geo Clustering for SUSE Linux Enterprise High Availability Extension","offline_predecessor_ids":[],"friendly_version":"11 SP2","identifier":"sle-haegeo","release_stage":"released","id":1111,"extensions":[],"description":null,"shortname":null,"free":false,"arch":"i686","eula_url":"","online_predecessor_ids":[],"repositories":[{"distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-GEO-SP2-Updates/sle-11-i586/","enabled":true,"id":1115,"description":"SLE11-HAE-GEO-SP2-Updates for sle-11-i586","installer_updates":false,"name":"SLE11-HAE-GEO-SP2-Updates"}],"product_class":"SLE-HAE-GEO","predecessor_ids":[],"cpe":null,"product_type":"extension"}],"id":964,"release_stage":"released","identifier":"sle-hae-SP3-migration"},{"online_predecessor_ids":[],"repositories":[{"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP2-Pool/sle-11-i586/","enabled":true,"id":949,"description":"SLE11-HAE-SP2-Pool for sle-11-i586","name":"SLE11-HAE-SP2-Pool","installer_updates":false},{"enabled":true,"id":950,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP2-Updates/sle-11-i586/","name":"SLE11-HAE-SP2-Updates","installer_updates":false,"description":"SLE11-HAE-SP2-Updates for sle-11-i586"}],"product_class":"SLE-HAE-X86","predecessor_ids":[],"product_type":"extension","cpe":null,"free":false,"description":null,"shortname":null,"arch":"i686","eula_url":"","friendly_version":"11 SP2","release_stage":"released","id":970,"identifier":"sle-hae","extensions":[{"product_type":"extension","cpe":null,"predecessor_ids":[],"product_class":"SLE-HAE-GEO","online_predecessor_ids":[],"repositories":[{"description":"SLE11-HAE-GEO-SP2-Updates for sle-11-i586","name":"SLE11-HAE-GEO-SP2-Updates","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-GEO-SP2-Updates/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","id":1115,"enabled":true}],"eula_url":"","arch":"i686","free":false,"description":null,"shortname":null,"extensions":[],"identifier":"sle-haegeo","release_stage":"released","id":1111,"friendly_version":"11 SP2","offline_predecessor_ids":[],"name":"Geo Clustering for SUSE Linux Enterprise High Availability Extension","former_identifier":"sle-haegeo","release_type":null,"friendly_name":"Geo Clustering for SUSE Linux Enterprise High Availability Extension 11 SP2 i686","migration_extra":false,"recommended":false,"version":"11.2"}],"version":"11.2","recommended":false,"release_type":null,"former_identifier":"sle-hae","friendly_name":"SUSE Linux Enterprise High Availability Extension 11 SP2 i686","migration_extra":false,"offline_predecessor_ids":[],"name":"SUSE Linux Enterprise High Availability Extension"},{"repositories":[{"id":1392,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP2-Pool/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64","name":"SLE11-SMT-SP2-Pool","installer_updates":false,"description":"SLE11-SMT-SP2-Pool for sle-11-x86_64"},{"installer_updates":false,"name":"SLE11-SMT-SP2-Updates","description":"SLE11-SMT-SP2-Updates for sle-11-s390x","enabled":true,"id":1393,"distro_target":"sle-11-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP2-Updates/sle-11-s390x/"},{"enabled":true,"id":1394,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP2-Pool/sle-11-i586/","name":"SLE11-SMT-SP2-Pool","installer_updates":false,"description":"SLE11-SMT-SP2-Pool for sle-11-i586"},{"description":"SLE11-SMT-SP2-Updates for sle-11-i586","name":"SLE11-SMT-SP2-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP2-Updates/sle-11-i586/","enabled":true,"id":1395},{"description":"SLE11-SMT-SP2-Pool for sle-11-s390x","installer_updates":false,"name":"SLE11-SMT-SP2-Pool","url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP2-Pool/sle-11-s390x/","distro_target":"sle-11-s390x","autorefresh":true,"id":1396,"enabled":true},{"installer_updates":false,"name":"SLE11-SMT-SP2-Updates","description":"SLE11-SMT-SP2-Updates for sle-11-x86_64","enabled":true,"id":1397,"distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP2-Updates/sle-11-x86_64/"}],"online_predecessor_ids":[],"product_class":"SLESMT","predecessor_ids":[],"cpe":null,"product_type":"extension","description":null,"shortname":null,"free":true,"arch":null,"eula_url":"","friendly_version":"11 SP2","id":1193,"release_stage":"released","identifier":"sle-smt","extensions":[],"version":"11.2","recommended":false,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Subscription Management Tool 11 SP2","former_identifier":"sle-smt","release_type":null,"name":"SUSE Linux Enterprise Subscription Management Tool","offline_predecessor_ids":[]},{"version":"11.2","recommended":false,"former_identifier":"sle-smt-SP3-migration","release_type":null,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Subscription Management Tool 11 SP2 (Migration)","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Subscription Management Tool","friendly_version":"11 SP2","release_stage":"released","identifier":"sle-smt-SP3-migration","id":1199,"extensions":[],"free":true,"shortname":null,"description":null,"arch":null,"eula_url":"","online_predecessor_ids":[],"repositories":[{"installer_updates":false,"name":"SLE11-SMT-SP3-Pool","description":"SLE11-SMT-SP3-Pool for sle-11-s390x","id":1408,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP3-Pool/sle-11-s390x/","distro_target":"sle-11-s390x","autorefresh":true},{"description":"SLE11-SMT-SP3-Pool for sle-11-x86_64","installer_updates":false,"name":"SLE11-SMT-SP3-Pool","distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP3-Pool/sle-11-x86_64/","enabled":true,"id":1409},{"description":"SLE11-SMT-SP3-Pool for sle-11-i586","installer_updates":false,"name":"SLE11-SMT-SP3-Pool","distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP3-Pool/sle-11-i586/","enabled":true,"id":1410}],"product_class":"SLESMT","predecessor_ids":[],"product_type":"extension","cpe":null}],"release_stage":"released","id":992,"identifier":"SLES-for-VMware-SP3-migration","friendly_version":"11 SP2","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Server","former_identifier":"SLES-for-VMware-SP3-migration","release_type":null,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Server 11 SP2 i686 (Migration)","recommended":false,"version":"11.2","product_type":"base","cpe":null,"predecessor_ids":[],"repositories":[{"installer_updates":false,"name":"SLES11-Extras","description":"SLES11-Extras for sle-11-i586","id":679,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLES11-Extras/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true},{"name":"SLE11-SP1-Debuginfo-Pool","installer_updates":false,"description":"SLE11-SP1-Debuginfo-Pool for sle-11-i586","enabled":false,"id":680,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Pool/sle-11-i586/"},{"description":"SLE11-SP1-Debuginfo-Updates for sle-11-i586","name":"SLE11-SP1-Debuginfo-Updates","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Updates/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","id":682,"enabled":false},{"id":717,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-Debuginfo-Core/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","name":"SLE11-SP2-Debuginfo-Core","installer_updates":false,"description":"SLE11-SP2-Debuginfo-Core for sle-11-i586"},{"description":"SLE11-SP2-Debuginfo-Updates for sle-11-i586","name":"SLE11-SP2-Debuginfo-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-Debuginfo-Updates/sle-11-i586/","enabled":false,"id":719},{"name":"SLE11-SP3-Debuginfo-Updates","installer_updates":false,"description":"SLE11-SP3-Debuginfo-Updates for sle-11-i586","enabled":false,"id":759,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-SP3-Debuginfo-Updates/sle-11-i586/"},{"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-SP3-Debuginfo-Pool/sle-11-i586/","enabled":false,"id":763,"description":"SLE11-SP3-Debuginfo-Pool for sle-11-i586","name":"SLE11-SP3-Debuginfo-Pool","installer_updates":false},{"id":958,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP2-VMware-Updates/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true,"installer_updates":false,"name":"SLES11-SP2-VMware-Updates","description":"SLES11-SP2-VMware-Updates for sle-11-i586"},{"url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-VMware-Pool/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true,"id":959,"enabled":false,"description":"SLES11-SP1-VMware-Pool for sle-11-i586","installer_updates":false,"name":"SLES11-SP1-VMware-Pool"},{"installer_updates":false,"name":"SLES11-SP3-VMware-Updates","description":"SLES11-SP3-VMware-Updates for sle-11-i586","enabled":true,"id":960,"distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP3-VMware-Updates/sle-11-i586/"},{"url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-VMware-Updates/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true,"id":961,"enabled":false,"description":"SLES11-SP1-VMware-Updates for sle-11-i586","installer_updates":false,"name":"SLES11-SP1-VMware-Updates"},{"installer_updates":false,"name":"SLES11-SP2-VMware-Core","description":"SLES11-SP2-VMware-Core for sle-11-i586","enabled":false,"id":962,"distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP2-VMware-Core/sle-11-i586/"},{"distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP3-VMware-Pool/sle-11-i586/","enabled":true,"id":963,"description":"SLES11-SP3-VMware-Pool for sle-11-i586","installer_updates":false,"name":"SLES11-SP3-VMware-Pool"}],"online_predecessor_ids":[],"product_class":"SLES-X86-VMWARE","eula_url":"","arch":"i686","free":false,"shortname":null,"description":null},{"friendly_version":"11 SP3","extensions":[{"version":"11.3","recommended":false,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Point of Service 11 SP3","release_type":null,"former_identifier":"sle-pos","name":"SUSE Linux Enterprise Point of Service","offline_predecessor_ids":[],"friendly_version":"11 SP3","release_stage":"released","identifier":"sle-pos","id":1073,"extensions":[],"description":null,"shortname":null,"free":false,"arch":null,"eula_url":"","online_predecessor_ids":[],"product_class":"10040","repositories":[{"description":"SLE11-POS-SP3-Pool for sle-11-i586","name":"SLE11-POS-SP3-Pool","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-POS-SP3-Pool/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","id":1084,"enabled":true},{"description":"SLE11-POS-SP3-Updates for sle-11-i586","name":"SLE11-POS-SP3-Updates","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-POS-SP3-Updates/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","id":1085,"enabled":true},{"id":1086,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-POS-SP3-Pool/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64","name":"SLE11-POS-SP3-Pool","installer_updates":false,"description":"SLE11-POS-SP3-Pool for sle-11-x86_64"},{"description":"SLE11-POS-SP3-Updates for sle-11-x86_64","installer_updates":false,"name":"SLE11-POS-SP3-Updates","distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-POS-SP3-Updates/sle-11-x86_64/","enabled":true,"id":1087}],"predecessor_ids":[],"cpe":null,"product_type":"extension"},{"recommended":false,"version":"11.3","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Software Development Kit","release_type":null,"former_identifier":"sle-sdk","migration_extra":false,"friendly_name":"SUSE Linux Enterprise Software Development Kit 11 SP3","friendly_version":"11 SP3","extensions":[],"release_stage":"released","id":1161,"identifier":"sle-sdk","free":true,"shortname":null,"description":null,"eula_url":"","arch":null,"predecessor_ids":[],"online_predecessor_ids":[],"product_class":"SLE-SDK","repositories":[{"distro_target":"sle-11-ia64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Updates/sle-11-ia64/","enabled":false,"id":1257,"description":"SLE11-SDK-SP1-Updates for sle-11-ia64","installer_updates":false,"name":"SLE11-SDK-SP1-Updates"},{"description":"SLE11-SDK-SP1-Pool for sle-11-ia64","name":"SLE11-SDK-SP1-Pool","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-ia64/","autorefresh":true,"distro_target":"sle-11-ia64","id":1258,"enabled":false},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-s390x/","autorefresh":true,"distro_target":"sle-11-s390x","id":1259,"enabled":false,"description":"SLE11-SDK-SP1-Pool for sle-11-s390x","name":"SLE11-SDK-SP1-Pool","installer_updates":false},{"id":1260,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Updates/sle-11-ppc64/","distro_target":"sle-11-ppc64","autorefresh":true,"installer_updates":false,"name":"SLE11-SDK-SP1-Updates","description":"SLE11-SDK-SP1-Updates for sle-11-ppc64"},{"distro_target":"sle-11-ppc64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-ppc64/","enabled":false,"id":1261,"description":"SLE11-SDK-SP1-Pool for sle-11-ppc64","installer_updates":false,"name":"SLE11-SDK-SP1-Pool"},{"installer_updates":false,"name":"SLE11-SDK-SP1-Updates","description":"SLE11-SDK-SP1-Updates for sle-11-i586","id":1262,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Updates/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true},{"name":"SLE11-SDK-SP1-Pool","installer_updates":false,"description":"SLE11-SDK-SP1-Pool for sle-11-i586","enabled":false,"id":1263,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-i586/"},{"id":1264,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64","name":"SLE11-SDK-SP1-Pool","installer_updates":false,"description":"SLE11-SDK-SP1-Pool for sle-11-x86_64"},{"id":1265,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Updates/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true,"installer_updates":false,"name":"SLE11-SDK-SP1-Updates","description":"SLE11-SDK-SP1-Updates for sle-11-x86_64"},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Updates/sle-11-s390x/","distro_target":"sle-11-s390x","autorefresh":true,"id":1266,"enabled":false,"description":"SLE11-SDK-SP1-Updates for sle-11-s390x","installer_updates":false,"name":"SLE11-SDK-SP1-Updates"},{"distro_target":"sle-11-ia64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-ia64/","enabled":false,"id":1267,"description":"SLE11-SDK-SP2-Core for sle-11-ia64","installer_updates":false,"name":"SLE11-SDK-SP2-Core"},{"enabled":false,"id":1268,"distro_target":"sle-11-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-s390x/","installer_updates":false,"name":"SLE11-SDK-SP2-Core","description":"SLE11-SDK-SP2-Core for sle-11-s390x"},{"description":"SLE11-SDK-SP2-Updates for sle-11-s390x","name":"SLE11-SDK-SP2-Updates","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-s390x/","autorefresh":true,"distro_target":"sle-11-s390x","id":1269,"enabled":false},{"id":1270,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-ppc64/","autorefresh":true,"distro_target":"sle-11-ppc64","name":"SLE11-SDK-SP2-Updates","installer_updates":false,"description":"SLE11-SDK-SP2-Updates for sle-11-ppc64"},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true,"id":1271,"enabled":false,"description":"SLE11-SDK-SP2-Updates for sle-11-i586","installer_updates":false,"name":"SLE11-SDK-SP2-Updates"},{"enabled":false,"id":1272,"autorefresh":true,"distro_target":"sle-11-ia64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-ia64/","name":"SLE11-SDK-SP2-Updates","installer_updates":false,"description":"SLE11-SDK-SP2-Updates for sle-11-ia64"},{"name":"SLE11-SDK-SP2-Core","installer_updates":false,"description":"SLE11-SDK-SP2-Core for sle-11-ppc64","enabled":false,"id":1273,"autorefresh":true,"distro_target":"sle-11-ppc64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-ppc64/"},{"description":"SLE11-SDK-SP2-Core for sle-11-i586","name":"SLE11-SDK-SP2-Core","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","id":1274,"enabled":false},{"name":"SLE11-SDK-SP2-Core","installer_updates":false,"description":"SLE11-SDK-SP2-Core for sle-11-x86_64","enabled":false,"id":1275,"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-x86_64/"},{"enabled":false,"id":1276,"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-x86_64/","name":"SLE11-SDK-SP2-Updates","installer_updates":false,"description":"SLE11-SDK-SP2-Updates for sle-11-x86_64"},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Pool/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","id":1277,"enabled":true,"description":"SLE11-SDK-SP3-Pool for sle-11-i586","name":"SLE11-SDK-SP3-Pool","installer_updates":false},{"autorefresh":true,"distro_target":"sle-11-ia64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Pool/sle-11-ia64/","enabled":true,"id":1278,"description":"SLE11-SDK-SP3-Pool for sle-11-ia64","name":"SLE11-SDK-SP3-Pool","installer_updates":false},{"id":1279,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Updates/sle-11-ppc64/","distro_target":"sle-11-ppc64","autorefresh":true,"installer_updates":false,"name":"SLE11-SDK-SP3-Updates","description":"SLE11-SDK-SP3-Updates for sle-11-ppc64"},{"installer_updates":false,"name":"SLE11-SDK-SP3-Updates","description":"SLE11-SDK-SP3-Updates for sle-11-ia64","id":1280,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Updates/sle-11-ia64/","distro_target":"sle-11-ia64","autorefresh":true},{"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Pool/sle-11-x86_64/","enabled":true,"id":1281,"description":"SLE11-SDK-SP3-Pool for sle-11-x86_64","name":"SLE11-SDK-SP3-Pool","installer_updates":false},{"description":"SLE11-SDK-SP3-Updates for sle-11-s390x","name":"SLE11-SDK-SP3-Updates","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Updates/sle-11-s390x/","autorefresh":true,"distro_target":"sle-11-s390x","id":1282,"enabled":true},{"enabled":true,"id":1283,"autorefresh":true,"distro_target":"sle-11-ppc64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Pool/sle-11-ppc64/","name":"SLE11-SDK-SP3-Pool","installer_updates":false,"description":"SLE11-SDK-SP3-Pool for sle-11-ppc64"},{"distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Updates/sle-11-x86_64/","enabled":true,"id":1284,"description":"SLE11-SDK-SP3-Updates for sle-11-x86_64","installer_updates":false,"name":"SLE11-SDK-SP3-Updates"},{"installer_updates":false,"name":"SLE11-SDK-SP3-Updates","description":"SLE11-SDK-SP3-Updates for sle-11-i586","id":1285,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Updates/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true},{"id":1286,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Pool/sle-11-s390x/","autorefresh":true,"distro_target":"sle-11-s390x","name":"SLE11-SDK-SP3-Pool","installer_updates":false,"description":"SLE11-SDK-SP3-Pool for sle-11-s390x"}],"product_type":"extension","cpe":null},{"arch":null,"eula_url":"","free":true,"description":null,"shortname":null,"product_type":"extension","cpe":null,"repositories":[{"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Pool/sle-11-i586/","enabled":true,"id":1277,"description":"SLE11-SDK-SP3-Pool for sle-11-i586","name":"SLE11-SDK-SP3-Pool","installer_updates":false},{"distro_target":"sle-11-ia64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Pool/sle-11-ia64/","enabled":true,"id":1278,"description":"SLE11-SDK-SP3-Pool for sle-11-ia64","installer_updates":false,"name":"SLE11-SDK-SP3-Pool"},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Updates/sle-11-ppc64/","autorefresh":true,"distro_target":"sle-11-ppc64","id":1279,"enabled":true,"description":"SLE11-SDK-SP3-Updates for sle-11-ppc64","name":"SLE11-SDK-SP3-Updates","installer_updates":false},{"enabled":true,"id":1280,"distro_target":"sle-11-ia64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Updates/sle-11-ia64/","installer_updates":false,"name":"SLE11-SDK-SP3-Updates","description":"SLE11-SDK-SP3-Updates for sle-11-ia64"},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Pool/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64","id":1281,"enabled":true,"description":"SLE11-SDK-SP3-Pool for sle-11-x86_64","name":"SLE11-SDK-SP3-Pool","installer_updates":false},{"id":1282,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Updates/sle-11-s390x/","autorefresh":true,"distro_target":"sle-11-s390x","name":"SLE11-SDK-SP3-Updates","installer_updates":false,"description":"SLE11-SDK-SP3-Updates for sle-11-s390x"},{"enabled":true,"id":1283,"autorefresh":true,"distro_target":"sle-11-ppc64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Pool/sle-11-ppc64/","name":"SLE11-SDK-SP3-Pool","installer_updates":false,"description":"SLE11-SDK-SP3-Pool for sle-11-ppc64"},{"description":"SLE11-SDK-SP3-Updates for sle-11-x86_64","installer_updates":false,"name":"SLE11-SDK-SP3-Updates","distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Updates/sle-11-x86_64/","enabled":true,"id":1284},{"installer_updates":false,"name":"SLE11-SDK-SP3-Updates","description":"SLE11-SDK-SP3-Updates for sle-11-i586","enabled":true,"id":1285,"distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Updates/sle-11-i586/"},{"enabled":true,"id":1286,"autorefresh":true,"distro_target":"sle-11-s390x","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Pool/sle-11-s390x/","name":"SLE11-SDK-SP3-Pool","installer_updates":false,"description":"SLE11-SDK-SP3-Pool for sle-11-s390x"}],"online_predecessor_ids":[],"product_class":"SLE-SDK","predecessor_ids":[],"former_identifier":"sle-sdk-SP3-migration","release_type":null,"friendly_name":"SUSE Linux Enterprise Software Development Kit 11 SP2 (Migration)","migration_extra":false,"offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Software Development Kit","version":"11.2","recommended":false,"release_stage":"released","id":1164,"identifier":"sle-sdk-SP3-migration","extensions":[],"friendly_version":"11 SP2"},{"release_type":null,"former_identifier":"sle-smt","friendly_name":"SUSE Linux Enterprise Subscription Management Tool 11 SP3","migration_extra":false,"offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Subscription Management Tool","version":"11.3","recommended":false,"release_stage":"released","id":1198,"identifier":"sle-smt","extensions":[],"friendly_version":"11 SP3","arch":null,"eula_url":"","free":true,"description":null,"shortname":null,"product_type":"extension","cpe":null,"repositories":[{"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP3-Updates/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64","id":1405,"enabled":true,"description":"SLE11-SMT-SP3-Updates for sle-11-x86_64","name":"SLE11-SMT-SP3-Updates","installer_updates":false},{"id":1406,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP3-Updates/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true,"installer_updates":false,"name":"SLE11-SMT-SP3-Updates","description":"SLE11-SMT-SP3-Updates for sle-11-i586"},{"name":"SLE11-SMT-SP3-Updates","installer_updates":false,"description":"SLE11-SMT-SP3-Updates for sle-11-s390x","enabled":true,"id":1407,"autorefresh":true,"distro_target":"sle-11-s390x","url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP3-Updates/sle-11-s390x/"},{"description":"SLE11-SMT-SP3-Pool for sle-11-s390x","name":"SLE11-SMT-SP3-Pool","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP3-Pool/sle-11-s390x/","autorefresh":true,"distro_target":"sle-11-s390x","id":1408,"enabled":true},{"description":"SLE11-SMT-SP3-Pool for sle-11-x86_64","name":"SLE11-SMT-SP3-Pool","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP3-Pool/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64","id":1409,"enabled":true},{"enabled":true,"id":1410,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP3-Pool/sle-11-i586/","name":"SLE11-SMT-SP3-Pool","installer_updates":false,"description":"SLE11-SMT-SP3-Pool for sle-11-i586"}],"online_predecessor_ids":[],"product_class":"SLESMT","predecessor_ids":[]},{"version":"11.2","recommended":false,"release_type":null,"former_identifier":"sle-smt-SP3-migration","migration_extra":false,"friendly_name":"SUSE Linux Enterprise Subscription Management Tool 11 SP2 (Migration)","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Subscription Management Tool","friendly_version":"11 SP2","id":1199,"release_stage":"released","identifier":"sle-smt-SP3-migration","extensions":[],"free":true,"shortname":null,"description":null,"arch":null,"eula_url":"","repositories":[{"id":1408,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP3-Pool/sle-11-s390x/","autorefresh":true,"distro_target":"sle-11-s390x","name":"SLE11-SMT-SP3-Pool","installer_updates":false,"description":"SLE11-SMT-SP3-Pool for sle-11-s390x"},{"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP3-Pool/sle-11-x86_64/","enabled":true,"id":1409,"description":"SLE11-SMT-SP3-Pool for sle-11-x86_64","name":"SLE11-SMT-SP3-Pool","installer_updates":false},{"description":"SLE11-SMT-SP3-Pool for sle-11-i586","installer_updates":false,"name":"SLE11-SMT-SP3-Pool","url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP3-Pool/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true,"id":1410,"enabled":true}],"online_predecessor_ids":[],"product_class":"SLESMT","predecessor_ids":[],"product_type":"extension","cpe":null},{"version":"1.3","recommended":false,"friendly_name":"SUSE WebYaST 1.3","migration_extra":false,"former_identifier":"sle-11-WebYaST","release_type":null,"name":"SUSE WebYaST","offline_predecessor_ids":[],"friendly_version":"1.3","release_stage":"released","id":1206,"identifier":"sle-11-WebYaST","extensions":[],"description":null,"shortname":null,"free":true,"arch":null,"eula_url":"","repositories":[{"url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-WebYaST-1.3-Pool/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true,"id":1185,"enabled":true,"description":"SLE11-SP2-WebYaST-1.3-Pool for sle-11-x86_64","installer_updates":false,"name":"SLE11-SP2-WebYaST-1.3-Pool"},{"enabled":true,"id":1188,"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-WebYaST-1.3-Updates/sle-11-x86_64/","name":"SLE11-SP2-WebYaST-1.3-Updates","installer_updates":false,"description":"SLE11-SP2-WebYaST-1.3-Updates for sle-11-x86_64"},{"distro_target":"sle-11-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-WebYaST-1.3-Pool/sle-11-s390x/","enabled":true,"id":1411,"description":"SLE11-SP2-WebYaST-1.3-Pool for sle-11-s390x","installer_updates":false,"name":"SLE11-SP2-WebYaST-1.3-Pool"},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-WebYaST-1.3-Updates/sle-11-s390x/","autorefresh":true,"distro_target":"sle-11-s390x","id":1412,"enabled":true,"description":"SLE11-SP2-WebYaST-1.3-Updates for sle-11-s390x","name":"SLE11-SP2-WebYaST-1.3-Updates","installer_updates":false},{"installer_updates":false,"name":"SLE11-SP2-WebYaST-1.3-Updates","description":"SLE11-SP2-WebYaST-1.3-Updates for sle-11-i586","id":1413,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-WebYaST-1.3-Updates/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true},{"enabled":true,"id":1414,"distro_target":"sle-11-ppc64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-WebYaST-1.3-Pool/sle-11-ppc64/","installer_updates":false,"name":"SLE11-SP2-WebYaST-1.3-Pool","description":"SLE11-SP2-WebYaST-1.3-Pool for sle-11-ppc64"},{"installer_updates":false,"name":"SLE11-SP2-WebYaST-1.3-Updates","description":"SLE11-SP2-WebYaST-1.3-Updates for sle-11-ia64","enabled":true,"id":1415,"distro_target":"sle-11-ia64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-WebYaST-1.3-Updates/sle-11-ia64/"},{"distro_target":"sle-11-ia64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-WebYaST-1.3-Pool/sle-11-ia64/","enabled":true,"id":1416,"description":"SLE11-SP2-WebYaST-1.3-Pool for sle-11-ia64","installer_updates":false,"name":"SLE11-SP2-WebYaST-1.3-Pool"},{"description":"SLE11-SP2-WebYaST-1.3-Pool for sle-11-i586","installer_updates":false,"name":"SLE11-SP2-WebYaST-1.3-Pool","url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-WebYaST-1.3-Pool/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true,"id":1417,"enabled":true},{"name":"SLE11-SP2-WebYaST-1.3-Updates","installer_updates":false,"description":"SLE11-SP2-WebYaST-1.3-Updates for sle-11-ppc64","enabled":true,"id":1418,"autorefresh":true,"distro_target":"sle-11-ppc64","url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-WebYaST-1.3-Updates/sle-11-ppc64/"}],"online_predecessor_ids":[],"product_class":"WEBYAST","predecessor_ids":[],"cpe":null,"product_type":"extension"},{"free":true,"shortname":null,"description":null,"arch":null,"eula_url":"","online_predecessor_ids":[],"product_class":"SLE-SDK","repositories":[{"description":"SLE11-SDK-SP1-Updates for sle-11-ia64","installer_updates":false,"name":"SLE11-SDK-SP1-Updates","distro_target":"sle-11-ia64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Updates/sle-11-ia64/","enabled":false,"id":1257},{"enabled":false,"id":1258,"distro_target":"sle-11-ia64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-ia64/","installer_updates":false,"name":"SLE11-SDK-SP1-Pool","description":"SLE11-SDK-SP1-Pool for sle-11-ia64"},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-s390x/","autorefresh":true,"distro_target":"sle-11-s390x","id":1259,"enabled":false,"description":"SLE11-SDK-SP1-Pool for sle-11-s390x","name":"SLE11-SDK-SP1-Pool","installer_updates":false},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Updates/sle-11-ppc64/","autorefresh":true,"distro_target":"sle-11-ppc64","id":1260,"enabled":false,"description":"SLE11-SDK-SP1-Updates for sle-11-ppc64","name":"SLE11-SDK-SP1-Updates","installer_updates":false},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-ppc64/","autorefresh":true,"distro_target":"sle-11-ppc64","id":1261,"enabled":false,"description":"SLE11-SDK-SP1-Pool for sle-11-ppc64","name":"SLE11-SDK-SP1-Pool","installer_updates":false},{"enabled":false,"id":1262,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Updates/sle-11-i586/","name":"SLE11-SDK-SP1-Updates","installer_updates":false,"description":"SLE11-SDK-SP1-Updates for sle-11-i586"},{"id":1263,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","name":"SLE11-SDK-SP1-Pool","installer_updates":false,"description":"SLE11-SDK-SP1-Pool for sle-11-i586"},{"distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-x86_64/","enabled":false,"id":1264,"description":"SLE11-SDK-SP1-Pool for sle-11-x86_64","installer_updates":false,"name":"SLE11-SDK-SP1-Pool"},{"id":1265,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Updates/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64","name":"SLE11-SDK-SP1-Updates","installer_updates":false,"description":"SLE11-SDK-SP1-Updates for sle-11-x86_64"},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Updates/sle-11-s390x/","distro_target":"sle-11-s390x","autorefresh":true,"id":1266,"enabled":false,"description":"SLE11-SDK-SP1-Updates for sle-11-s390x","installer_updates":false,"name":"SLE11-SDK-SP1-Updates"},{"autorefresh":true,"distro_target":"sle-11-ia64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-ia64/","enabled":false,"id":1267,"description":"SLE11-SDK-SP2-Core for sle-11-ia64","name":"SLE11-SDK-SP2-Core","installer_updates":false},{"name":"SLE11-SDK-SP2-Core","installer_updates":false,"description":"SLE11-SDK-SP2-Core for sle-11-s390x","enabled":false,"id":1268,"autorefresh":true,"distro_target":"sle-11-s390x","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-s390x/"},{"installer_updates":false,"name":"SLE11-SDK-SP2-Updates","description":"SLE11-SDK-SP2-Updates for sle-11-s390x","enabled":false,"id":1269,"distro_target":"sle-11-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-s390x/"},{"enabled":false,"id":1270,"distro_target":"sle-11-ppc64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-ppc64/","installer_updates":false,"name":"SLE11-SDK-SP2-Updates","description":"SLE11-SDK-SP2-Updates for sle-11-ppc64"},{"distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-i586/","enabled":false,"id":1271,"description":"SLE11-SDK-SP2-Updates for sle-11-i586","installer_updates":false,"name":"SLE11-SDK-SP2-Updates"},{"id":1272,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-ia64/","distro_target":"sle-11-ia64","autorefresh":true,"installer_updates":false,"name":"SLE11-SDK-SP2-Updates","description":"SLE11-SDK-SP2-Updates for sle-11-ia64"},{"id":1273,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-ppc64/","distro_target":"sle-11-ppc64","autorefresh":true,"installer_updates":false,"name":"SLE11-SDK-SP2-Core","description":"SLE11-SDK-SP2-Core for sle-11-ppc64"},{"installer_updates":false,"name":"SLE11-SDK-SP2-Core","description":"SLE11-SDK-SP2-Core for sle-11-i586","id":1274,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64","id":1275,"enabled":false,"description":"SLE11-SDK-SP2-Core for sle-11-x86_64","name":"SLE11-SDK-SP2-Core","installer_updates":false},{"description":"SLE11-SDK-SP2-Updates for sle-11-x86_64","name":"SLE11-SDK-SP2-Updates","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64","id":1276,"enabled":false},{"distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Pool/sle-11-i586/","enabled":false,"id":1277,"description":"SLE11-SDK-SP3-Pool for sle-11-i586","installer_updates":false,"name":"SLE11-SDK-SP3-Pool"},{"installer_updates":false,"name":"SLE11-SDK-SP3-Pool","description":"SLE11-SDK-SP3-Pool for sle-11-ia64","enabled":false,"id":1278,"distro_target":"sle-11-ia64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Pool/sle-11-ia64/"},{"description":"SLE11-SDK-SP3-Updates for sle-11-ppc64","installer_updates":false,"name":"SLE11-SDK-SP3-Updates","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Updates/sle-11-ppc64/","distro_target":"sle-11-ppc64","autorefresh":true,"id":1279,"enabled":false},{"installer_updates":false,"name":"SLE11-SDK-SP3-Updates","description":"SLE11-SDK-SP3-Updates for sle-11-ia64","id":1280,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Updates/sle-11-ia64/","distro_target":"sle-11-ia64","autorefresh":true},{"enabled":false,"id":1281,"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Pool/sle-11-x86_64/","name":"SLE11-SDK-SP3-Pool","installer_updates":false,"description":"SLE11-SDK-SP3-Pool for sle-11-x86_64"},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Updates/sle-11-s390x/","distro_target":"sle-11-s390x","autorefresh":true,"id":1282,"enabled":false,"description":"SLE11-SDK-SP3-Updates for sle-11-s390x","installer_updates":false,"name":"SLE11-SDK-SP3-Updates"},{"name":"SLE11-SDK-SP3-Pool","installer_updates":false,"description":"SLE11-SDK-SP3-Pool for sle-11-ppc64","enabled":false,"id":1283,"autorefresh":true,"distro_target":"sle-11-ppc64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Pool/sle-11-ppc64/"},{"description":"SLE11-SDK-SP3-Updates for sle-11-x86_64","name":"SLE11-SDK-SP3-Updates","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Updates/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64","id":1284,"enabled":false},{"enabled":false,"id":1285,"distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Updates/sle-11-i586/","installer_updates":false,"name":"SLE11-SDK-SP3-Updates","description":"SLE11-SDK-SP3-Updates for sle-11-i586"},{"installer_updates":false,"name":"SLE11-SDK-SP3-Pool","description":"SLE11-SDK-SP3-Pool for sle-11-s390x","id":1286,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Pool/sle-11-s390x/","distro_target":"sle-11-s390x","autorefresh":true},{"name":"SLE11-SDK-SP4-Pool","installer_updates":false,"description":"SLE11-SDK-SP4-Pool for sle-11-i586","enabled":true,"id":1817,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP4-Pool/sle-11-i586/"},{"installer_updates":false,"name":"SLE11-SDK-SP4-Pool","description":"SLE11-SDK-SP4-Pool for sle-11-ia64","enabled":true,"id":1818,"distro_target":"sle-11-ia64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP4-Pool/sle-11-ia64/"},{"description":"SLE11-SDK-SP4-Pool for sle-11-ppc64","installer_updates":false,"name":"SLE11-SDK-SP4-Pool","distro_target":"sle-11-ppc64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP4-Pool/sle-11-ppc64/","enabled":true,"id":1819},{"id":1820,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP4-Pool/sle-11-s390x/","autorefresh":true,"distro_target":"sle-11-s390x","name":"SLE11-SDK-SP4-Pool","installer_updates":false,"description":"SLE11-SDK-SP4-Pool for sle-11-s390x"},{"enabled":true,"id":1821,"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP4-Pool/sle-11-x86_64/","name":"SLE11-SDK-SP4-Pool","installer_updates":false,"description":"SLE11-SDK-SP4-Pool for sle-11-x86_64"},{"id":1822,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP4-Updates/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true,"installer_updates":false,"name":"SLE11-SDK-SP4-Updates","description":"SLE11-SDK-SP4-Updates for sle-11-i586"},{"description":"SLE11-SDK-SP4-Updates for sle-11-ia64","name":"SLE11-SDK-SP4-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-ia64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP4-Updates/sle-11-ia64/","enabled":true,"id":1823},{"installer_updates":false,"name":"SLE11-SDK-SP4-Updates","description":"SLE11-SDK-SP4-Updates for sle-11-ppc64","id":1824,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP4-Updates/sle-11-ppc64/","distro_target":"sle-11-ppc64","autorefresh":true},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP4-Updates/sle-11-s390x/","distro_target":"sle-11-s390x","autorefresh":true,"id":1825,"enabled":true,"description":"SLE11-SDK-SP4-Updates for sle-11-s390x","installer_updates":false,"name":"SLE11-SDK-SP4-Updates"},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP4-Updates/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true,"id":1826,"enabled":true,"description":"SLE11-SDK-SP4-Updates for sle-11-x86_64","installer_updates":false,"name":"SLE11-SDK-SP4-Updates"}],"predecessor_ids":[],"product_type":"extension","cpe":null,"version":"11.3","recommended":false,"release_type":null,"former_identifier":"sle-sdk-SP4-migration","migration_extra":false,"friendly_name":"SUSE Linux Enterprise Software Development Kit 11 SP3 (Migration)","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Software Development Kit","friendly_version":"11 SP3","identifier":"sle-sdk-SP4-migration","release_stage":"released","id":1318,"extensions":[]}],"id":993,"release_stage":"released","identifier":"SLES-for-VMware","recommended":false,"version":"11.3","name":"SUSE Linux Enterprise Server","offline_predecessor_ids":[],"friendly_name":"SUSE Linux Enterprise Server 11 SP3","migration_extra":false,"release_type":null,"former_identifier":"SLES-for-VMware","predecessor_ids":[],"product_class":"SLES-X86-VMWARE","online_predecessor_ids":[],"repositories":[{"description":"SLES11-Extras for sle-11-i586","installer_updates":false,"name":"SLES11-Extras","distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-Extras/sle-11-i586/","enabled":false,"id":679},{"distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Pool/sle-11-i586/","enabled":false,"id":680,"description":"SLE11-SP1-Debuginfo-Pool for sle-11-i586","installer_updates":false,"name":"SLE11-SP1-Debuginfo-Pool"},{"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Updates/sle-11-i586/","enabled":false,"id":682,"description":"SLE11-SP1-Debuginfo-Updates for sle-11-i586","name":"SLE11-SP1-Debuginfo-Updates","installer_updates":false},{"installer_updates":false,"name":"SLE11-SP1-Debuginfo-Pool","description":"SLE11-SP1-Debuginfo-Pool for sle-11-x86_64","enabled":false,"id":707,"distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Pool/sle-11-x86_64/"},{"id":710,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLES11-Extras/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64","name":"SLES11-Extras","installer_updates":false,"description":"SLES11-Extras for sle-11-x86_64"},{"id":712,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-Debuginfo-Updates/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64","name":"SLE11-SP2-Debuginfo-Updates","installer_updates":false,"description":"SLE11-SP2-Debuginfo-Updates for sle-11-x86_64"},{"enabled":false,"id":715,"distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Updates/sle-11-x86_64/","installer_updates":false,"name":"SLE11-SP1-Debuginfo-Updates","description":"SLE11-SP1-Debuginfo-Updates for sle-11-x86_64"},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-Debuginfo-Core/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true,"id":716,"enabled":false,"description":"SLE11-SP2-Debuginfo-Core for sle-11-x86_64","installer_updates":false,"name":"SLE11-SP2-Debuginfo-Core"},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-Debuginfo-Core/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","id":717,"enabled":false,"description":"SLE11-SP2-Debuginfo-Core for sle-11-i586","name":"SLE11-SP2-Debuginfo-Core","installer_updates":false},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-Debuginfo-Updates/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","id":719,"enabled":false,"description":"SLE11-SP2-Debuginfo-Updates for sle-11-i586","name":"SLE11-SP2-Debuginfo-Updates","installer_updates":false},{"description":"SLE11-SP3-Debuginfo-Updates for sle-11-x86_64","installer_updates":false,"name":"SLE11-SP3-Debuginfo-Updates","url":"https://updates.suse.com/repo/$RCE/SLE11-SP3-Debuginfo-Updates/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true,"id":735,"enabled":false},{"name":"SLE11-SP3-Debuginfo-Pool","installer_updates":false,"description":"SLE11-SP3-Debuginfo-Pool for sle-11-x86_64","enabled":false,"id":736,"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE11-SP3-Debuginfo-Pool/sle-11-x86_64/"},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SP3-Debuginfo-Updates/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","id":759,"enabled":false,"description":"SLE11-SP3-Debuginfo-Updates for sle-11-i586","name":"SLE11-SP3-Debuginfo-Updates","installer_updates":false},{"id":763,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP3-Debuginfo-Pool/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","name":"SLE11-SP3-Debuginfo-Pool","installer_updates":false,"description":"SLE11-SP3-Debuginfo-Pool for sle-11-i586"},{"name":"SLES11-SP2-VMware-Updates","installer_updates":false,"description":"SLES11-SP2-VMware-Updates for sle-11-i586","enabled":false,"id":958,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLES11-SP2-VMware-Updates/sle-11-i586/"},{"enabled":false,"id":959,"distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-VMware-Pool/sle-11-i586/","installer_updates":false,"name":"SLES11-SP1-VMware-Pool","description":"SLES11-SP1-VMware-Pool for sle-11-i586"},{"id":960,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP3-VMware-Updates/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true,"installer_updates":false,"name":"SLES11-SP3-VMware-Updates","description":"SLES11-SP3-VMware-Updates for sle-11-i586"},{"url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-VMware-Updates/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","id":961,"enabled":false,"description":"SLES11-SP1-VMware-Updates for sle-11-i586","name":"SLES11-SP1-VMware-Updates","installer_updates":false},{"description":"SLES11-SP2-VMware-Core for sle-11-i586","installer_updates":false,"name":"SLES11-SP2-VMware-Core","distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP2-VMware-Core/sle-11-i586/","enabled":false,"id":962},{"description":"SLES11-SP3-VMware-Pool for sle-11-i586","name":"SLES11-SP3-VMware-Pool","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLES11-SP3-VMware-Pool/sle-11-i586/","enabled":true,"id":963},{"distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP2-VMware-Core/sle-11-x86_64/","enabled":false,"id":964,"description":"SLES11-SP2-VMware-Core for sle-11-x86_64","installer_updates":false,"name":"SLES11-SP2-VMware-Core"},{"name":"SLES11-SP2-VMware-Updates","installer_updates":false,"description":"SLES11-SP2-VMware-Updates for sle-11-x86_64","enabled":false,"id":965,"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLES11-SP2-VMware-Updates/sle-11-x86_64/"},{"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-VMware-Updates/sle-11-x86_64/","enabled":false,"id":966,"description":"SLES11-SP1-VMware-Updates for sle-11-x86_64","name":"SLES11-SP1-VMware-Updates","installer_updates":false},{"enabled":false,"id":967,"distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-VMware-Pool/sle-11-x86_64/","installer_updates":false,"name":"SLES11-SP1-VMware-Pool","description":"SLES11-SP1-VMware-Pool for sle-11-x86_64"},{"name":"SLES11-SP3-VMware-Pool","installer_updates":false,"description":"SLES11-SP3-VMware-Pool for sle-11-x86_64","id":968,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP3-VMware-Pool/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64"},{"description":"SLES11-SP3-VMware-Updates for sle-11-x86_64","name":"SLES11-SP3-VMware-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLES11-SP3-VMware-Updates/sle-11-x86_64/","enabled":true,"id":969}],"cpe":"cpe:/o:suse:suse_sles:11:sp3","product_type":"base","shortname":null,"description":null,"free":false,"eula_url":"","arch":null},{"friendly_version":"11 SP2","extensions":[{"version":"1.2","recommended":false,"migration_extra":false,"friendly_name":"SUSE Lifecycle Management Server 1.2 (Migration)","release_type":null,"former_identifier":"sle-slms-1.3-migration","name":"SUSE Lifecycle Management Server","offline_predecessor_ids":[],"friendly_version":"1.2","release_stage":"released","identifier":"sle-slms-1.3-migration","id":938,"extensions":[],"shortname":null,"description":null,"free":false,"arch":null,"eula_url":"","online_predecessor_ids":[],"repositories":[{"enabled":true,"id":916,"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-SLMS-1.3-Pool/sle-11-x86_64/","name":"SLE11-SP2-SLMS-1.3-Pool","installer_updates":false,"description":"SLE11-SP2-SLMS-1.3-Pool for sle-11-x86_64"}],"product_class":"SLMS","predecessor_ids":[],"cpe":null,"product_type":"extension"},{"version":"1.2","recommended":false,"release_type":null,"former_identifier":"sle-slms","friendly_name":"SUSE Lifecycle Management Server 1.2","migration_extra":false,"offline_predecessor_ids":[],"name":"SUSE Lifecycle Management Server","friendly_version":"1.2","identifier":"sle-slms","release_stage":"released","id":939,"extensions":[],"free":false,"shortname":null,"description":null,"arch":null,"eula_url":"","repositories":[{"enabled":false,"id":913,"distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-SLMS-1.2-Pool/sle-11-x86_64/","installer_updates":false,"name":"SLE11-SP1-SLMS-1.2-Pool","description":"SLE11-SP1-SLMS-1.2-Pool for sle-11-x86_64"},{"name":"SLE11-SP1-SLMS-1.2-Updates","installer_updates":false,"description":"SLE11-SP1-SLMS-1.2-Updates for sle-11-x86_64","id":918,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-SLMS-1.2-Updates/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64"}],"online_predecessor_ids":[],"product_class":"SLMS","predecessor_ids":[],"product_type":"extension","cpe":null},{"friendly_version":"11 SP2","identifier":"sle-hae","release_stage":"released","id":961,"extensions":[],"version":"11.2","recommended":false,"former_identifier":"sle-hae","release_type":null,"friendly_name":"SUSE Linux Enterprise High Availability Extension 11 SP2 x86_64","migration_extra":false,"offline_predecessor_ids":[],"name":"SUSE Linux Enterprise High Availability Extension","online_predecessor_ids":[],"product_class":"SLE-HAE-X86","repositories":[{"description":"SLE11-HAE-SP2-Pool for sle-11-x86_64","installer_updates":false,"name":"SLE11-HAE-SP2-Pool","distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP2-Pool/sle-11-x86_64/","enabled":true,"id":947},{"description":"SLE11-HAE-SP2-Updates for sle-11-x86_64","installer_updates":false,"name":"SLE11-HAE-SP2-Updates","distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP2-Updates/sle-11-x86_64/","enabled":true,"id":948}],"predecessor_ids":[],"product_type":"extension","cpe":null,"free":false,"shortname":null,"description":null,"arch":"x86_64","eula_url":""},{"recommended":false,"version":"11.2","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise High Availability Extension","release_type":null,"former_identifier":"sle-hae-SP3-migration","migration_extra":false,"friendly_name":"SUSE Linux Enterprise High Availability Extension 11 SP2 x86_64 (Migration)","friendly_version":"11 SP2","extensions":[],"release_stage":"released","identifier":"sle-hae-SP3-migration","id":980,"free":false,"shortname":null,"description":null,"eula_url":"","arch":"x86_64","predecessor_ids":[],"online_predecessor_ids":[],"product_class":"SLE-HAE-X86","repositories":[{"url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP3-Updates/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64","id":956,"enabled":true,"description":"SLE11-HAE-SP3-Updates for sle-11-x86_64","name":"SLE11-HAE-SP3-Updates","installer_updates":false},{"name":"SLE11-HAE-SP3-Pool","installer_updates":false,"description":"SLE11-HAE-SP3-Pool for sle-11-x86_64","id":3037,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP3-Pool/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64"}],"product_type":"extension","cpe":null},{"cpe":null,"product_type":"extension","online_predecessor_ids":[],"repositories":[{"enabled":false,"id":680,"distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Pool/sle-11-i586/","installer_updates":false,"name":"SLE11-SP1-Debuginfo-Pool","description":"SLE11-SP1-Debuginfo-Pool for sle-11-i586"},{"id":682,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Updates/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true,"installer_updates":false,"name":"SLE11-SP1-Debuginfo-Updates","description":"SLE11-SP1-Debuginfo-Updates for sle-11-i586"},{"description":"SLES11-SP1-Updates for sle-11-i586","name":"SLES11-SP1-Updates","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-Updates/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","id":684,"enabled":true},{"name":"SLES11-SP1-Pool","installer_updates":false,"description":"SLES11-SP1-Pool for sle-11-i586","enabled":true,"id":686,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-Pool/sle-11-i586/"},{"distro_target":"sle-11-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-Pool/sle-11-s390x/","enabled":true,"id":687,"description":"SLES11-SP1-Pool for sle-11-s390x","installer_updates":false,"name":"SLES11-SP1-Pool"},{"installer_updates":false,"name":"SLE11-SP1-Debuginfo-Updates","description":"SLE11-SP1-Debuginfo-Updates for sle-11-s390x","id":688,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Updates/sle-11-s390x/","distro_target":"sle-11-s390x","autorefresh":true},{"id":691,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-Updates/sle-11-s390x/","distro_target":"sle-11-s390x","autorefresh":true,"installer_updates":false,"name":"SLES11-SP1-Updates","description":"SLES11-SP1-Updates for sle-11-s390x"},{"installer_updates":false,"name":"SLE11-SP1-Debuginfo-Pool","description":"SLE11-SP1-Debuginfo-Pool for sle-11-s390x","enabled":false,"id":692,"distro_target":"sle-11-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Pool/sle-11-s390x/"},{"id":705,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-Updates/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64","name":"SLES11-SP1-Updates","installer_updates":false,"description":"SLES11-SP1-Updates for sle-11-x86_64"},{"description":"SLE11-SP1-Debuginfo-Pool for sle-11-x86_64","name":"SLE11-SP1-Debuginfo-Pool","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Pool/sle-11-x86_64/","enabled":false,"id":707},{"installer_updates":false,"name":"SLES11-SP1-Pool","description":"SLES11-SP1-Pool for sle-11-x86_64","enabled":true,"id":711,"distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-Pool/sle-11-x86_64/"},{"enabled":false,"id":715,"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Updates/sle-11-x86_64/","name":"SLE11-SP1-Debuginfo-Updates","installer_updates":false,"description":"SLE11-SP1-Debuginfo-Updates for sle-11-x86_64"},{"name":"SLE11-SP1-WebYaST-1.2-Updates","installer_updates":false,"description":"SLE11-SP1-WebYaST-1.2-Updates for sle-11-x86_64","enabled":true,"id":839,"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-WebYaST-1.2-Updates/sle-11-x86_64/"},{"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-WebYaST-1.2-Pool/sle-11-i586/","enabled":true,"id":840,"description":"SLE11-SP1-WebYaST-1.2-Pool for sle-11-i586","name":"SLE11-SP1-WebYaST-1.2-Pool","installer_updates":false},{"description":"SLE11-SP1-WebYaST-1.2-Pool for sle-11-x86_64","installer_updates":false,"name":"SLE11-SP1-WebYaST-1.2-Pool","distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-WebYaST-1.2-Pool/sle-11-x86_64/","enabled":true,"id":841},{"distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-WebYaST-1.2-Updates/sle-11-i586/","enabled":true,"id":842,"description":"SLE11-SP1-WebYaST-1.2-Updates for sle-11-i586","installer_updates":false,"name":"SLE11-SP1-WebYaST-1.2-Updates"},{"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-SLMS-1.2-Pool/sle-11-x86_64/","enabled":false,"id":913,"description":"SLE11-SP1-SLMS-1.2-Pool for sle-11-x86_64","name":"SLE11-SP1-SLMS-1.2-Pool","installer_updates":false},{"id":918,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-SLMS-1.2-Updates/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64","name":"SLE11-SP1-SLMS-1.2-Updates","installer_updates":false,"description":"SLE11-SP1-SLMS-1.2-Updates for sle-11-x86_64"},{"description":"SLES11-SP1-Pool for sle-11-ppc64","installer_updates":false,"name":"SLES11-SP1-Pool","distro_target":"sle-11-ppc64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-Pool/sle-11-ppc64/","enabled":true,"id":919},{"name":"SLES11-SP1-Updates","installer_updates":false,"description":"SLES11-SP1-Updates for sle-11-ppc64","enabled":true,"id":922,"autorefresh":true,"distro_target":"sle-11-ppc64","url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-Updates/sle-11-ppc64/"},{"id":924,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Updates/sle-11-ppc64/","distro_target":"sle-11-ppc64","autorefresh":true,"installer_updates":false,"name":"SLE11-SP1-Debuginfo-Updates","description":"SLE11-SP1-Debuginfo-Updates for sle-11-ppc64"},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Pool/sle-11-ppc64/","autorefresh":true,"distro_target":"sle-11-ppc64","id":925,"enabled":false,"description":"SLE11-SP1-Debuginfo-Pool for sle-11-ppc64","name":"SLE11-SP1-Debuginfo-Pool","installer_updates":false},{"id":970,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Pool/sle-11-ia64/","autorefresh":true,"distro_target":"sle-11-ia64","name":"SLE11-SP1-Debuginfo-Pool","installer_updates":false,"description":"SLE11-SP1-Debuginfo-Pool for sle-11-ia64"},{"autorefresh":true,"distro_target":"sle-11-ia64","url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Updates/sle-11-ia64/","enabled":false,"id":971,"description":"SLE11-SP1-Debuginfo-Updates for sle-11-ia64","name":"SLE11-SP1-Debuginfo-Updates","installer_updates":false},{"url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-Updates/sle-11-ia64/","distro_target":"sle-11-ia64","autorefresh":true,"id":987,"enabled":true,"description":"SLES11-SP1-Updates for sle-11-ia64","installer_updates":false,"name":"SLES11-SP1-Updates"},{"description":"SLES11-SP1-Pool for sle-11-ia64","name":"SLES11-SP1-Pool","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-Pool/sle-11-ia64/","autorefresh":true,"distro_target":"sle-11-ia64","id":991,"enabled":true},{"name":"SLE11-SP1-WebYaST-1.2-Pool","installer_updates":false,"description":"SLE11-SP1-WebYaST-1.2-Pool for sle-11-s390x","enabled":true,"id":1005,"autorefresh":true,"distro_target":"sle-11-s390x","url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-WebYaST-1.2-Pool/sle-11-s390x/"},{"distro_target":"sle-11-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-WebYaST-1.2-Updates/sle-11-s390x/","enabled":true,"id":1006,"description":"SLE11-SP1-WebYaST-1.2-Updates for sle-11-s390x","installer_updates":false,"name":"SLE11-SP1-WebYaST-1.2-Updates"},{"name":"SLE11-SP1-StudioOnsite-1.2-Updates","installer_updates":false,"description":"SLE11-SP1-StudioOnsite-1.2-Updates for sle-11-x86_64","id":1007,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-StudioOnsite-1.2-Updates/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64"},{"name":"SLE11-SP1-StudioOnsite-1.2-Pool","installer_updates":false,"description":"SLE11-SP1-StudioOnsite-1.2-Pool for sle-11-x86_64","enabled":true,"id":1008,"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-StudioOnsite-1.2-Pool/sle-11-x86_64/"}],"product_class":"STUDIOONSITE","predecessor_ids":[],"arch":null,"eula_url":"","description":null,"shortname":null,"free":false,"release_stage":"released","identifier":"sle-studioonsite","id":1006,"extensions":[],"friendly_version":"1.2","migration_extra":false,"friendly_name":"SUSE Studio OnSite 1.2","former_identifier":"sle-studioonsite","release_type":null,"name":"SUSE Studio OnSite","offline_predecessor_ids":[],"version":"1.2","recommended":false},{"recommended":false,"version":"1.0","offline_predecessor_ids":[],"name":"SUSE Cloud","release_type":null,"former_identifier":"SUSE-Cloud","migration_extra":false,"friendly_name":"SUSE Cloud 1.0 x86_64","friendly_version":"1.0","extensions":[],"identifier":"SUSE-Cloud","release_stage":"released","id":1090,"free":false,"description":null,"shortname":null,"eula_url":"","arch":"x86_64","predecessor_ids":[],"online_predecessor_ids":[],"product_class":"SUSE_CLOUD","repositories":[{"description":"SUSE-Cloud-1.0-Pool for sle-11-x86_64","installer_updates":false,"name":"SUSE-Cloud-1.0-Pool","url":"https://updates.suse.com/repo/$RCE/SUSE-Cloud-1.0-Pool/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":false,"id":1102,"enabled":true},{"id":1103,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SUSE-Cloud-1.0-Updates/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true,"installer_updates":false,"name":"SUSE-Cloud-1.0-Updates","description":"SUSE-Cloud-1.0-Updates for sle-11-x86_64"}],"product_type":"extension","cpe":null},{"version":"1.2","recommended":false,"release_type":null,"former_identifier":"sle-studioonsiterunner","friendly_name":"SUSE Studio Extension for System z 1.2","migration_extra":false,"offline_predecessor_ids":[],"name":"SUSE Studio Extension for System z","friendly_version":"1.2","identifier":"sle-studioonsiterunner","release_stage":"released","id":1098,"extensions":[],"free":false,"description":null,"shortname":null,"arch":null,"eula_url":"","repositories":[{"description":"SLES11-SP1-Updates for sle-11-i586","installer_updates":false,"name":"SLES11-SP1-Updates","distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-Updates/sle-11-i586/","enabled":true,"id":684},{"enabled":true,"id":686,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-Pool/sle-11-i586/","name":"SLES11-SP1-Pool","installer_updates":false,"description":"SLES11-SP1-Pool for sle-11-i586"},{"installer_updates":false,"name":"SLES11-SP1-Pool","description":"SLES11-SP1-Pool for sle-11-s390x","id":687,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-Pool/sle-11-s390x/","distro_target":"sle-11-s390x","autorefresh":true},{"description":"SLES11-SP1-Updates for sle-11-s390x","installer_updates":false,"name":"SLES11-SP1-Updates","url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-Updates/sle-11-s390x/","distro_target":"sle-11-s390x","autorefresh":true,"id":691,"enabled":true},{"enabled":true,"id":705,"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-Updates/sle-11-x86_64/","name":"SLES11-SP1-Updates","installer_updates":false,"description":"SLES11-SP1-Updates for sle-11-x86_64"},{"enabled":true,"id":711,"distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-Pool/sle-11-x86_64/","installer_updates":false,"name":"SLES11-SP1-Pool","description":"SLES11-SP1-Pool for sle-11-x86_64"},{"installer_updates":false,"name":"SLES11-SP1-Pool","description":"SLES11-SP1-Pool for sle-11-ppc64","id":919,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-Pool/sle-11-ppc64/","distro_target":"sle-11-ppc64","autorefresh":true},{"id":922,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-Updates/sle-11-ppc64/","distro_target":"sle-11-ppc64","autorefresh":true,"installer_updates":false,"name":"SLES11-SP1-Updates","description":"SLES11-SP1-Updates for sle-11-ppc64"},{"description":"SLES11-SP1-Updates for sle-11-ia64","installer_updates":false,"name":"SLES11-SP1-Updates","url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-Updates/sle-11-ia64/","distro_target":"sle-11-ia64","autorefresh":true,"id":987,"enabled":true},{"description":"SLES11-SP1-Pool for sle-11-ia64","name":"SLES11-SP1-Pool","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-ia64","url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-Pool/sle-11-ia64/","enabled":true,"id":991},{"description":"SLE11-StudioOnsiteRunner-1.2-Pool for sle-11-s390x","name":"SLE11-StudioOnsiteRunner-1.2-Pool","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-s390x","url":"https://updates.suse.com/repo/$RCE/SLE11-StudioOnsiteRunner-1.2-Pool/sle-11-s390x/","enabled":true,"id":1111},{"description":"SLE11-StudioOnsiteRunner-1.2-Updates for sle-11-s390x","name":"SLE11-StudioOnsiteRunner-1.2-Updates","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-StudioOnsiteRunner-1.2-Updates/sle-11-s390x/","autorefresh":true,"distro_target":"sle-11-s390x","id":1112,"enabled":true}],"online_predecessor_ids":[],"product_class":"STUDIOONSITERUNNER","predecessor_ids":[],"product_type":"extension","cpe":null},{"recommended":false,"version":"11.2","name":"SUSE Linux Enterprise Subscription Management Tool","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Subscription Management Tool 11 SP2","release_type":null,"former_identifier":"sle-smt","friendly_version":"11 SP2","extensions":[],"identifier":"sle-smt","release_stage":"released","id":1193,"shortname":null,"description":null,"free":true,"eula_url":"","arch":null,"predecessor_ids":[],"product_class":"SLESMT","online_predecessor_ids":[],"repositories":[{"id":1392,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP2-Pool/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true,"installer_updates":false,"name":"SLE11-SMT-SP2-Pool","description":"SLE11-SMT-SP2-Pool for sle-11-x86_64"},{"installer_updates":false,"name":"SLE11-SMT-SP2-Updates","description":"SLE11-SMT-SP2-Updates for sle-11-s390x","enabled":true,"id":1393,"distro_target":"sle-11-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP2-Updates/sle-11-s390x/"},{"id":1394,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP2-Pool/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true,"installer_updates":false,"name":"SLE11-SMT-SP2-Pool","description":"SLE11-SMT-SP2-Pool for sle-11-i586"},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP2-Updates/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","id":1395,"enabled":true,"description":"SLE11-SMT-SP2-Updates for sle-11-i586","name":"SLE11-SMT-SP2-Updates","installer_updates":false},{"description":"SLE11-SMT-SP2-Pool for sle-11-s390x","installer_updates":false,"name":"SLE11-SMT-SP2-Pool","url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP2-Pool/sle-11-s390x/","distro_target":"sle-11-s390x","autorefresh":true,"id":1396,"enabled":true},{"enabled":true,"id":1397,"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP2-Updates/sle-11-x86_64/","name":"SLE11-SMT-SP2-Updates","installer_updates":false,"description":"SLE11-SMT-SP2-Updates for sle-11-x86_64"}],"cpe":null,"product_type":"extension"},{"offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Subscription Management Tool","former_identifier":"sle-smt-SP3-migration","release_type":null,"friendly_name":"SUSE Linux Enterprise Subscription Management Tool 11 SP2 (Migration)","migration_extra":false,"recommended":false,"version":"11.2","extensions":[],"id":1199,"release_stage":"released","identifier":"sle-smt-SP3-migration","friendly_version":"11 SP2","eula_url":"","arch":null,"free":true,"shortname":null,"description":null,"product_type":"extension","cpe":null,"predecessor_ids":[],"online_predecessor_ids":[],"repositories":[{"id":1408,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP3-Pool/sle-11-s390x/","autorefresh":true,"distro_target":"sle-11-s390x","name":"SLE11-SMT-SP3-Pool","installer_updates":false,"description":"SLE11-SMT-SP3-Pool for sle-11-s390x"},{"id":1409,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP3-Pool/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64","name":"SLE11-SMT-SP3-Pool","installer_updates":false,"description":"SLE11-SMT-SP3-Pool for sle-11-x86_64"},{"distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP3-Pool/sle-11-i586/","enabled":true,"id":1410,"description":"SLE11-SMT-SP3-Pool for sle-11-i586","installer_updates":false,"name":"SLE11-SMT-SP3-Pool"}],"product_class":"SLESMT"}],"identifier":"SLES-for-VMware-SP3-migration","release_stage":"released","id":994,"recommended":false,"version":"11.2","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Server","former_identifier":"SLES-for-VMware-SP3-migration","release_type":null,"friendly_name":"SUSE Linux Enterprise Server 11 SP2 x86_64 (Migration)","migration_extra":false,"predecessor_ids":[],"online_predecessor_ids":[],"product_class":"SLES-X86-VMWARE","repositories":[{"id":707,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Pool/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64","name":"SLE11-SP1-Debuginfo-Pool","installer_updates":false,"description":"SLE11-SP1-Debuginfo-Pool for sle-11-x86_64"},{"enabled":false,"id":710,"distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-Extras/sle-11-x86_64/","installer_updates":false,"name":"SLES11-Extras","description":"SLES11-Extras for sle-11-x86_64"},{"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-Debuginfo-Updates/sle-11-x86_64/","enabled":false,"id":712,"description":"SLE11-SP2-Debuginfo-Updates for sle-11-x86_64","name":"SLE11-SP2-Debuginfo-Updates","installer_updates":false},{"id":715,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Updates/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true,"installer_updates":false,"name":"SLE11-SP1-Debuginfo-Updates","description":"SLE11-SP1-Debuginfo-Updates for sle-11-x86_64"},{"description":"SLE11-SP2-Debuginfo-Core for sle-11-x86_64","installer_updates":false,"name":"SLE11-SP2-Debuginfo-Core","distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-Debuginfo-Core/sle-11-x86_64/","enabled":false,"id":716},{"description":"SLE11-SP3-Debuginfo-Updates for sle-11-x86_64","name":"SLE11-SP3-Debuginfo-Updates","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP3-Debuginfo-Updates/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64","id":735,"enabled":false},{"installer_updates":false,"name":"SLE11-SP3-Debuginfo-Pool","description":"SLE11-SP3-Debuginfo-Pool for sle-11-x86_64","id":736,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP3-Debuginfo-Pool/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true},{"url":"https://updates.suse.com/repo/$RCE/SLES11-SP2-VMware-Core/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64","id":964,"enabled":false,"description":"SLES11-SP2-VMware-Core for sle-11-x86_64","name":"SLES11-SP2-VMware-Core","installer_updates":false},{"url":"https://updates.suse.com/repo/$RCE/SLES11-SP2-VMware-Updates/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64","id":965,"enabled":false,"description":"SLES11-SP2-VMware-Updates for sle-11-x86_64","name":"SLES11-SP2-VMware-Updates","installer_updates":false},{"url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-VMware-Updates/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true,"id":966,"enabled":false,"description":"SLES11-SP1-VMware-Updates for sle-11-x86_64","installer_updates":false,"name":"SLES11-SP1-VMware-Updates"},{"url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-VMware-Pool/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64","id":967,"enabled":false,"description":"SLES11-SP1-VMware-Pool for sle-11-x86_64","name":"SLES11-SP1-VMware-Pool","installer_updates":false},{"url":"https://updates.suse.com/repo/$RCE/SLES11-SP3-VMware-Pool/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64","id":968,"enabled":true,"description":"SLES11-SP3-VMware-Pool for sle-11-x86_64","name":"SLES11-SP3-VMware-Pool","installer_updates":false},{"name":"SLES11-SP3-VMware-Updates","installer_updates":false,"description":"SLES11-SP3-VMware-Updates for sle-11-x86_64","enabled":true,"id":969,"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLES11-SP3-VMware-Updates/sle-11-x86_64/"}],"product_type":"base","cpe":null,"free":false,"description":null,"shortname":null,"eula_url":"","arch":"x86_64"},{"friendly_name":"SUSE Linux Enterprise Server 11 SP1 VMWARE","migration_extra":false,"former_identifier":"SUSE_SLES","release_type":"VMWARE","name":"SUSE Linux Enterprise Server","offline_predecessor_ids":[],"version":"11.1","recommended":false,"identifier":"SUSE_SLES","release_stage":"released","id":995,"extensions":[{"extensions":[],"id":835,"release_stage":"released","identifier":"sle-11-WebYaST","friendly_version":"1.1","offline_predecessor_ids":[],"name":"SUSE WebYaST","release_type":null,"former_identifier":"sle-11-WebYaST","friendly_name":"SUSE WebYaST 1.1","migration_extra":false,"recommended":false,"version":"1.1","product_type":"extension","cpe":null,"predecessor_ids":[],"product_class":"WEBYAST","online_predecessor_ids":[],"repositories":[{"description":"SLE11-SP1-WebYaST-1.1-Updates for sle-11-i586","name":"SLE11-SP1-WebYaST-1.1-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-WebYaST-1.1-Updates/sle-11-i586/","enabled":true,"id":825},{"description":"SLE11-SP1-WebYaST-1.1-Pool for sle-11-i586","installer_updates":false,"name":"SLE11-SP1-WebYaST-1.1-Pool","url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-WebYaST-1.1-Pool/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true,"id":826,"enabled":false},{"enabled":false,"id":827,"distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-WebYaST-1.1-Pool/sle-11-x86_64/","installer_updates":false,"name":"SLE11-SP1-WebYaST-1.1-Pool","description":"SLE11-SP1-WebYaST-1.1-Pool for sle-11-x86_64"},{"description":"SLE11-SP1-WebYaST-1.1-Updates for sle-11-x86_64","name":"SLE11-SP1-WebYaST-1.1-Updates","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-WebYaST-1.1-Updates/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64","id":828,"enabled":true}],"eula_url":"","arch":null,"free":true,"shortname":null,"description":null},{"id":1069,"release_stage":"released","identifier":"sle-pos-SP2-migration","extensions":[],"friendly_version":"11 SP1","friendly_name":"SUSE Linux Enterprise Point of Service 11 SP1 (Migration)","migration_extra":false,"release_type":null,"former_identifier":"sle-pos-SP2-migration","name":"SUSE Linux Enterprise Point of Service","offline_predecessor_ids":[],"version":"11.1","recommended":false,"cpe":null,"product_type":"extension","product_class":"10040","online_predecessor_ids":[],"repositories":[{"installer_updates":false,"name":"SLE11-POS-SP2-Pool","description":"SLE11-POS-SP2-Pool for sle-11-i586","id":1074,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-POS-SP2-Pool/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true},{"name":"SLE11-POS-SP2-Pool","installer_updates":false,"description":"SLE11-POS-SP2-Pool for sle-11-x86_64","id":1076,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-POS-SP2-Pool/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64"}],"predecessor_ids":[],"arch":null,"eula_url":"","shortname":null,"description":null,"free":false},{"eula_url":"","arch":null,"free":false,"description":null,"shortname":null,"product_type":"extension","cpe":null,"predecessor_ids":[],"product_class":"10040","online_predecessor_ids":[],"repositories":[{"id":1071,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-POS-SP1-Pool/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64","name":"SLE11-POS-SP1-Pool","installer_updates":false,"description":"SLE11-POS-SP1-Pool for sle-11-x86_64"},{"installer_updates":false,"name":"SLE11-POS-SP1-Pool","description":"SLE11-POS-SP1-Pool for sle-11-i586","enabled":true,"id":1072,"distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-POS-SP1-Pool/sle-11-i586/"},{"description":"SLE11-POS-SP1-Updates for sle-11-x86_64","installer_updates":false,"name":"SLE11-POS-SP1-Updates","url":"https://updates.suse.com/repo/$RCE/SLE11-POS-SP1-Updates/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true,"id":1082,"enabled":true},{"description":"SLE11-POS-SP1-Updates for sle-11-i586","installer_updates":false,"name":"SLE11-POS-SP1-Updates","distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-POS-SP1-Updates/sle-11-i586/","enabled":true,"id":1083}],"offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Point of Service","release_type":null,"former_identifier":"sle-pos","friendly_name":"SUSE Linux Enterprise Point of Service 11 SP1","migration_extra":false,"recommended":false,"version":"11.1","extensions":[],"release_stage":"released","identifier":"sle-pos","id":1072,"friendly_version":"11 SP1"},{"friendly_version":"11 SP1","identifier":"sle-sdk","release_stage":"released","id":1159,"extensions":[],"version":"11.1","recommended":false,"friendly_name":"SUSE Linux Enterprise Software Development Kit 11 SP1","migration_extra":false,"release_type":null,"former_identifier":"sle-sdk","name":"SUSE Linux Enterprise Software Development Kit","offline_predecessor_ids":[],"product_class":"SLE-SDK","online_predecessor_ids":[],"repositories":[{"enabled":true,"id":1257,"distro_target":"sle-11-ia64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Updates/sle-11-ia64/","installer_updates":false,"name":"SLE11-SDK-SP1-Updates","description":"SLE11-SDK-SP1-Updates for sle-11-ia64"},{"enabled":true,"id":1258,"autorefresh":true,"distro_target":"sle-11-ia64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-ia64/","name":"SLE11-SDK-SP1-Pool","installer_updates":false,"description":"SLE11-SDK-SP1-Pool for sle-11-ia64"},{"distro_target":"sle-11-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-s390x/","enabled":true,"id":1259,"description":"SLE11-SDK-SP1-Pool for sle-11-s390x","installer_updates":false,"name":"SLE11-SDK-SP1-Pool"},{"distro_target":"sle-11-ppc64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Updates/sle-11-ppc64/","enabled":true,"id":1260,"description":"SLE11-SDK-SP1-Updates for sle-11-ppc64","installer_updates":false,"name":"SLE11-SDK-SP1-Updates"},{"autorefresh":true,"distro_target":"sle-11-ppc64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-ppc64/","enabled":true,"id":1261,"description":"SLE11-SDK-SP1-Pool for sle-11-ppc64","name":"SLE11-SDK-SP1-Pool","installer_updates":false},{"id":1262,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Updates/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","name":"SLE11-SDK-SP1-Updates","installer_updates":false,"description":"SLE11-SDK-SP1-Updates for sle-11-i586"},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true,"id":1263,"enabled":true,"description":"SLE11-SDK-SP1-Pool for sle-11-i586","installer_updates":false,"name":"SLE11-SDK-SP1-Pool"},{"description":"SLE11-SDK-SP1-Pool for sle-11-x86_64","name":"SLE11-SDK-SP1-Pool","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-x86_64/","enabled":true,"id":1264},{"enabled":true,"id":1265,"distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Updates/sle-11-x86_64/","installer_updates":false,"name":"SLE11-SDK-SP1-Updates","description":"SLE11-SDK-SP1-Updates for sle-11-x86_64"},{"description":"SLE11-SDK-SP1-Updates for sle-11-s390x","installer_updates":false,"name":"SLE11-SDK-SP1-Updates","distro_target":"sle-11-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Updates/sle-11-s390x/","enabled":true,"id":1266}],"predecessor_ids":[],"cpe":null,"product_type":"extension","description":null,"shortname":null,"free":true,"arch":null,"eula_url":""},{"friendly_version":"11","release_stage":"released","identifier":"sle-sdk-SP1-migration","id":1162,"extensions":[],"version":"11","recommended":false,"release_type":null,"former_identifier":"sle-sdk-SP1-migration","migration_extra":false,"friendly_name":"SUSE Linux Enterprise Software Development Kit 11 (Migration)","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Software Development Kit","product_class":"SLE-SDK","online_predecessor_ids":[],"repositories":[{"enabled":true,"id":1258,"autorefresh":true,"distro_target":"sle-11-ia64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-ia64/","name":"SLE11-SDK-SP1-Pool","installer_updates":false,"description":"SLE11-SDK-SP1-Pool for sle-11-ia64"},{"description":"SLE11-SDK-SP1-Pool for sle-11-s390x","installer_updates":false,"name":"SLE11-SDK-SP1-Pool","distro_target":"sle-11-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-s390x/","enabled":true,"id":1259},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-ppc64/","distro_target":"sle-11-ppc64","autorefresh":true,"id":1261,"enabled":true,"description":"SLE11-SDK-SP1-Pool for sle-11-ppc64","installer_updates":false,"name":"SLE11-SDK-SP1-Pool"},{"description":"SLE11-SDK-SP1-Pool for sle-11-i586","name":"SLE11-SDK-SP1-Pool","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","id":1263,"enabled":true},{"description":"SLE11-SDK-SP1-Pool for sle-11-x86_64","installer_updates":false,"name":"SLE11-SDK-SP1-Pool","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true,"id":1264,"enabled":true}],"predecessor_ids":[],"product_type":"extension","cpe":null,"free":true,"shortname":null,"description":null,"arch":null,"eula_url":""},{"cpe":null,"product_type":"extension","online_predecessor_ids":[],"repositories":[{"enabled":true,"id":1267,"autorefresh":true,"distro_target":"sle-11-ia64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-ia64/","name":"SLE11-SDK-SP2-Core","installer_updates":false,"description":"SLE11-SDK-SP2-Core for sle-11-ia64"},{"description":"SLE11-SDK-SP2-Core for sle-11-s390x","name":"SLE11-SDK-SP2-Core","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-s390x","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-s390x/","enabled":true,"id":1268},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-s390x/","distro_target":"sle-11-s390x","autorefresh":true,"id":1269,"enabled":true,"description":"SLE11-SDK-SP2-Updates for sle-11-s390x","installer_updates":false,"name":"SLE11-SDK-SP2-Updates"},{"distro_target":"sle-11-ppc64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-ppc64/","enabled":true,"id":1270,"description":"SLE11-SDK-SP2-Updates for sle-11-ppc64","installer_updates":false,"name":"SLE11-SDK-SP2-Updates"},{"name":"SLE11-SDK-SP2-Updates","installer_updates":false,"description":"SLE11-SDK-SP2-Updates for sle-11-i586","enabled":true,"id":1271,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-i586/"},{"autorefresh":true,"distro_target":"sle-11-ia64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-ia64/","enabled":true,"id":1272,"description":"SLE11-SDK-SP2-Updates for sle-11-ia64","name":"SLE11-SDK-SP2-Updates","installer_updates":false},{"name":"SLE11-SDK-SP2-Core","installer_updates":false,"description":"SLE11-SDK-SP2-Core for sle-11-ppc64","id":1273,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-ppc64/","autorefresh":true,"distro_target":"sle-11-ppc64"},{"distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-i586/","enabled":true,"id":1274,"description":"SLE11-SDK-SP2-Core for sle-11-i586","installer_updates":false,"name":"SLE11-SDK-SP2-Core"},{"enabled":true,"id":1275,"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-x86_64/","name":"SLE11-SDK-SP2-Core","installer_updates":false,"description":"SLE11-SDK-SP2-Core for sle-11-x86_64"},{"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-x86_64/","enabled":true,"id":1276,"description":"SLE11-SDK-SP2-Updates for sle-11-x86_64","name":"SLE11-SDK-SP2-Updates","installer_updates":false}],"product_class":"SLE-SDK","predecessor_ids":[],"arch":null,"eula_url":"","shortname":null,"description":null,"free":true,"id":1163,"release_stage":"released","identifier":"sle-sdk-SP2-migration","extensions":[],"friendly_version":"11 SP1","friendly_name":"SUSE Linux Enterprise Software Development Kit 11 SP1 (Migration)","migration_extra":false,"release_type":null,"former_identifier":"sle-sdk-SP2-migration","name":"SUSE Linux Enterprise Software Development Kit","offline_predecessor_ids":[],"version":"11.1","recommended":false},{"offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Subscription Management Tool","release_type":null,"former_identifier":"sle-smt","migration_extra":false,"friendly_name":"SUSE Linux Enterprise Subscription Management Tool 11 SP1","recommended":false,"version":"11.1","extensions":[],"identifier":"sle-smt","release_stage":"released","id":1192,"friendly_version":"11 SP1","eula_url":"","arch":null,"free":true,"shortname":null,"description":null,"product_type":"extension","cpe":null,"predecessor_ids":[],"product_class":"SLESMT","online_predecessor_ids":[],"repositories":[{"id":1386,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-SMT-Updates/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true,"installer_updates":false,"name":"SLE11-SP1-SMT-Updates","description":"SLE11-SP1-SMT-Updates for sle-11-x86_64"},{"description":"SLE11-SP1-SMT-Pool for sle-11-s390x","name":"SLE11-SP1-SMT-Pool","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-s390x","url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-SMT-Pool/sle-11-s390x/","enabled":true,"id":1387},{"description":"SLE11-SP1-SMT-Pool for sle-11-x86_64","installer_updates":false,"name":"SLE11-SP1-SMT-Pool","distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-SMT-Pool/sle-11-x86_64/","enabled":true,"id":1388},{"id":1389,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-SMT-Updates/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true,"installer_updates":false,"name":"SLE11-SP1-SMT-Updates","description":"SLE11-SP1-SMT-Updates for sle-11-i586"},{"description":"SLE11-SP1-SMT-Pool for sle-11-i586","installer_updates":false,"name":"SLE11-SP1-SMT-Pool","distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-SMT-Pool/sle-11-i586/","enabled":true,"id":1390},{"description":"SLE11-SP1-SMT-Updates for sle-11-s390x","name":"SLE11-SP1-SMT-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-s390x","url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-SMT-Updates/sle-11-s390x/","enabled":true,"id":1391}]}],"friendly_version":"11 SP1","arch":null,"eula_url":"","description":null,"shortname":null,"free":false,"cpe":"cpe:/o:suse:suse_sles:11:sp1","product_type":"base","product_class":"SLES-X86-VMWARE","online_predecessor_ids":[],"repositories":[{"installer_updates":false,"name":"SLES11-Extras","description":"SLES11-Extras for sle-11-i586","enabled":false,"id":679,"distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-Extras/sle-11-i586/"},{"distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Pool/sle-11-i586/","enabled":false,"id":680,"description":"SLE11-SP1-Debuginfo-Pool for sle-11-i586","installer_updates":false,"name":"SLE11-SP1-Debuginfo-Pool"},{"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Updates/sle-11-i586/","enabled":false,"id":682,"description":"SLE11-SP1-Debuginfo-Updates for sle-11-i586","name":"SLE11-SP1-Debuginfo-Updates","installer_updates":false},{"id":688,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Updates/sle-11-s390x/","autorefresh":true,"distro_target":"sle-11-s390x","name":"SLE11-SP1-Debuginfo-Updates","installer_updates":false,"description":"SLE11-SP1-Debuginfo-Updates for sle-11-s390x"},{"installer_updates":false,"name":"SLES11-Extras","description":"SLES11-Extras for sle-11-s390x","id":689,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLES11-Extras/sle-11-s390x/","distro_target":"sle-11-s390x","autorefresh":true},{"description":"SLE11-SP1-Debuginfo-Pool for sle-11-s390x","installer_updates":false,"name":"SLE11-SP1-Debuginfo-Pool","url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Pool/sle-11-s390x/","distro_target":"sle-11-s390x","autorefresh":true,"id":692,"enabled":false},{"installer_updates":false,"name":"SLE11-SP1-Debuginfo-Pool","description":"SLE11-SP1-Debuginfo-Pool for sle-11-x86_64","enabled":false,"id":707,"distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Pool/sle-11-x86_64/"},{"installer_updates":false,"name":"SLES11-Extras","description":"SLES11-Extras for sle-11-x86_64","id":710,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLES11-Extras/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true},{"enabled":false,"id":715,"distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Updates/sle-11-x86_64/","installer_updates":false,"name":"SLE11-SP1-Debuginfo-Updates","description":"SLE11-SP1-Debuginfo-Updates for sle-11-x86_64"},{"installer_updates":false,"name":"SLES11-Extras","description":"SLES11-Extras for sle-11-ppc64","id":920,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLES11-Extras/sle-11-ppc64/","distro_target":"sle-11-ppc64","autorefresh":true},{"id":924,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Updates/sle-11-ppc64/","distro_target":"sle-11-ppc64","autorefresh":true,"installer_updates":false,"name":"SLE11-SP1-Debuginfo-Updates","description":"SLE11-SP1-Debuginfo-Updates for sle-11-ppc64"},{"id":925,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Pool/sle-11-ppc64/","autorefresh":true,"distro_target":"sle-11-ppc64","name":"SLE11-SP1-Debuginfo-Pool","installer_updates":false,"description":"SLE11-SP1-Debuginfo-Pool for sle-11-ppc64"},{"description":"SLES11-SP1-VMware-Pool for sle-11-i586","name":"SLES11-SP1-VMware-Pool","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-VMware-Pool/sle-11-i586/","enabled":true,"id":959},{"distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-VMware-Updates/sle-11-i586/","enabled":true,"id":961,"description":"SLES11-SP1-VMware-Updates for sle-11-i586","installer_updates":false,"name":"SLES11-SP1-VMware-Updates"},{"installer_updates":false,"name":"SLES11-SP1-VMware-Updates","description":"SLES11-SP1-VMware-Updates for sle-11-x86_64","enabled":true,"id":966,"distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-VMware-Updates/sle-11-x86_64/"},{"url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-VMware-Pool/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true,"id":967,"enabled":true,"description":"SLES11-SP1-VMware-Pool for sle-11-x86_64","installer_updates":false,"name":"SLES11-SP1-VMware-Pool"},{"id":970,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Pool/sle-11-ia64/","autorefresh":true,"distro_target":"sle-11-ia64","name":"SLE11-SP1-Debuginfo-Pool","installer_updates":false,"description":"SLE11-SP1-Debuginfo-Pool for sle-11-ia64"},{"description":"SLE11-SP1-Debuginfo-Updates for sle-11-ia64","name":"SLE11-SP1-Debuginfo-Updates","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Updates/sle-11-ia64/","autorefresh":true,"distro_target":"sle-11-ia64","id":971,"enabled":false},{"id":972,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLES11-Extras/sle-11-ia64/","distro_target":"sle-11-ia64","autorefresh":true,"installer_updates":false,"name":"SLES11-Extras","description":"SLES11-Extras for sle-11-ia64"}],"predecessor_ids":[]},{"predecessor_ids":[],"online_predecessor_ids":[],"product_class":"SLES-X86-VMWARE","repositories":[{"id":679,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLES11-Extras/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","name":"SLES11-Extras","installer_updates":false,"description":"SLES11-Extras for sle-11-i586"},{"description":"SLE11-SP1-Debuginfo-Pool for sle-11-i586","name":"SLE11-SP1-Debuginfo-Pool","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Pool/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","id":680,"enabled":false},{"name":"SLE11-SP1-Debuginfo-Updates","installer_updates":false,"description":"SLE11-SP1-Debuginfo-Updates for sle-11-i586","enabled":false,"id":682,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Updates/sle-11-i586/"},{"distro_target":"sle-11-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Updates/sle-11-s390x/","enabled":false,"id":688,"description":"SLE11-SP1-Debuginfo-Updates for sle-11-s390x","installer_updates":false,"name":"SLE11-SP1-Debuginfo-Updates"},{"description":"SLES11-Extras for sle-11-s390x","installer_updates":false,"name":"SLES11-Extras","distro_target":"sle-11-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-Extras/sle-11-s390x/","enabled":false,"id":689},{"description":"SLE11-SP1-Debuginfo-Pool for sle-11-s390x","name":"SLE11-SP1-Debuginfo-Pool","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-s390x","url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Pool/sle-11-s390x/","enabled":false,"id":692},{"installer_updates":false,"name":"SLE11-SP1-Debuginfo-Pool","description":"SLE11-SP1-Debuginfo-Pool for sle-11-x86_64","enabled":false,"id":707,"distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Pool/sle-11-x86_64/"},{"enabled":false,"id":710,"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLES11-Extras/sle-11-x86_64/","name":"SLES11-Extras","installer_updates":false,"description":"SLES11-Extras for sle-11-x86_64"},{"installer_updates":false,"name":"SLE11-SP2-Debuginfo-Updates","description":"SLE11-SP2-Debuginfo-Updates for sle-11-x86_64","id":712,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-Debuginfo-Updates/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true},{"description":"SLES11-SP2-Extension-Store for sle-11-x86_64","installer_updates":false,"name":"SLES11-SP2-Extension-Store","url":"https://updates.suse.com/repo/$RCE/SLES11-SP2-Extension-Store/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true,"id":713,"enabled":true},{"distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Updates/sle-11-x86_64/","enabled":false,"id":715,"description":"SLE11-SP1-Debuginfo-Updates for sle-11-x86_64","installer_updates":false,"name":"SLE11-SP1-Debuginfo-Updates"},{"name":"SLE11-SP2-Debuginfo-Core","installer_updates":false,"description":"SLE11-SP2-Debuginfo-Core for sle-11-x86_64","enabled":false,"id":716,"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-Debuginfo-Core/sle-11-x86_64/"},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-Debuginfo-Core/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","id":717,"enabled":false,"description":"SLE11-SP2-Debuginfo-Core for sle-11-i586","name":"SLE11-SP2-Debuginfo-Core","installer_updates":false},{"description":"SLE11-SP2-Debuginfo-Updates for sle-11-i586","installer_updates":false,"name":"SLE11-SP2-Debuginfo-Updates","url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-Debuginfo-Updates/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true,"id":719,"enabled":false},{"enabled":false,"id":725,"distro_target":"sle-11-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-Debuginfo-Updates/sle-11-s390x/","installer_updates":false,"name":"SLE11-SP2-Debuginfo-Updates","description":"SLE11-SP2-Debuginfo-Updates for sle-11-s390x"},{"description":"SLE11-SP2-Debuginfo-Core for sle-11-s390x","installer_updates":false,"name":"SLE11-SP2-Debuginfo-Core","url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-Debuginfo-Core/sle-11-s390x/","distro_target":"sle-11-s390x","autorefresh":true,"id":728,"enabled":false},{"url":"https://updates.suse.com/repo/$RCE/SLES11-SP2-Extension-Store/sle-11-s390x/","autorefresh":true,"distro_target":"sle-11-s390x","id":734,"enabled":true,"description":"SLES11-SP2-Extension-Store for sle-11-s390x","name":"SLES11-SP2-Extension-Store","installer_updates":false},{"name":"SLES11-SP2-Extension-Store","installer_updates":false,"description":"SLES11-SP2-Extension-Store for sle-11-i586","enabled":true,"id":761,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLES11-SP2-Extension-Store/sle-11-i586/"},{"description":"SLES11-Extras for sle-11-ppc64","installer_updates":false,"name":"SLES11-Extras","distro_target":"sle-11-ppc64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-Extras/sle-11-ppc64/","enabled":false,"id":920},{"name":"SLE11-SP1-Debuginfo-Updates","installer_updates":false,"description":"SLE11-SP1-Debuginfo-Updates for sle-11-ppc64","enabled":false,"id":924,"autorefresh":true,"distro_target":"sle-11-ppc64","url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Updates/sle-11-ppc64/"},{"description":"SLE11-SP1-Debuginfo-Pool for sle-11-ppc64","name":"SLE11-SP1-Debuginfo-Pool","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-ppc64","url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Pool/sle-11-ppc64/","enabled":false,"id":925},{"installer_updates":false,"name":"SLE11-SP2-Debuginfo-Updates","description":"SLE11-SP2-Debuginfo-Updates for sle-11-ppc64","enabled":false,"id":926,"distro_target":"sle-11-ppc64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-Debuginfo-Updates/sle-11-ppc64/"},{"id":930,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-Debuginfo-Core/sle-11-ppc64/","autorefresh":true,"distro_target":"sle-11-ppc64","name":"SLE11-SP2-Debuginfo-Core","installer_updates":false,"description":"SLE11-SP2-Debuginfo-Core for sle-11-ppc64"},{"id":940,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP2-Extension-Store/sle-11-ppc64/","autorefresh":true,"distro_target":"sle-11-ppc64","name":"SLES11-SP2-Extension-Store","installer_updates":false,"description":"SLES11-SP2-Extension-Store for sle-11-ppc64"},{"id":958,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP2-VMware-Updates/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true,"installer_updates":false,"name":"SLES11-SP2-VMware-Updates","description":"SLES11-SP2-VMware-Updates for sle-11-i586"},{"url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-VMware-Pool/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","id":959,"enabled":true,"description":"SLES11-SP1-VMware-Pool for sle-11-i586","name":"SLES11-SP1-VMware-Pool","installer_updates":false},{"description":"SLES11-SP1-VMware-Updates for sle-11-i586","installer_updates":false,"name":"SLES11-SP1-VMware-Updates","url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-VMware-Updates/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true,"id":961,"enabled":true},{"installer_updates":false,"name":"SLES11-SP2-VMware-Core","description":"SLES11-SP2-VMware-Core for sle-11-i586","enabled":true,"id":962,"distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP2-VMware-Core/sle-11-i586/"},{"enabled":true,"id":964,"distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP2-VMware-Core/sle-11-x86_64/","installer_updates":false,"name":"SLES11-SP2-VMware-Core","description":"SLES11-SP2-VMware-Core for sle-11-x86_64"},{"installer_updates":false,"name":"SLES11-SP2-VMware-Updates","description":"SLES11-SP2-VMware-Updates for sle-11-x86_64","enabled":true,"id":965,"distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP2-VMware-Updates/sle-11-x86_64/"},{"name":"SLES11-SP1-VMware-Updates","installer_updates":false,"description":"SLES11-SP1-VMware-Updates for sle-11-x86_64","id":966,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-VMware-Updates/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64"},{"installer_updates":false,"name":"SLES11-SP1-VMware-Pool","description":"SLES11-SP1-VMware-Pool for sle-11-x86_64","enabled":true,"id":967,"distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-VMware-Pool/sle-11-x86_64/"},{"installer_updates":false,"name":"SLE11-SP1-Debuginfo-Pool","description":"SLE11-SP1-Debuginfo-Pool for sle-11-ia64","enabled":false,"id":970,"distro_target":"sle-11-ia64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Pool/sle-11-ia64/"},{"installer_updates":false,"name":"SLE11-SP1-Debuginfo-Updates","description":"SLE11-SP1-Debuginfo-Updates for sle-11-ia64","id":971,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Updates/sle-11-ia64/","distro_target":"sle-11-ia64","autorefresh":true},{"url":"https://updates.suse.com/repo/$RCE/SLES11-Extras/sle-11-ia64/","autorefresh":true,"distro_target":"sle-11-ia64","id":972,"enabled":false,"description":"SLES11-Extras for sle-11-ia64","name":"SLES11-Extras","installer_updates":false},{"description":"SLE11-SP2-Debuginfo-Core for sle-11-ia64","name":"SLE11-SP2-Debuginfo-Core","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-Debuginfo-Core/sle-11-ia64/","autorefresh":true,"distro_target":"sle-11-ia64","id":973,"enabled":false},{"name":"SLES11-SP2-Extension-Store","installer_updates":false,"description":"SLES11-SP2-Extension-Store for sle-11-ia64","id":974,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP2-Extension-Store/sle-11-ia64/","autorefresh":true,"distro_target":"sle-11-ia64"},{"enabled":false,"id":975,"distro_target":"sle-11-ia64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-Debuginfo-Updates/sle-11-ia64/","installer_updates":false,"name":"SLE11-SP2-Debuginfo-Updates","description":"SLE11-SP2-Debuginfo-Updates for sle-11-ia64"}],"product_type":"base","cpe":"cpe:/o:suse:suse_sles:11:sp2","free":false,"description":null,"shortname":null,"eula_url":"","arch":null,"friendly_version":"11 SP2","extensions":[{"friendly_version":"1.2","identifier":"sle-11-WebYaST","release_stage":"released","id":837,"extensions":[],"version":"1.2","recommended":false,"friendly_name":"SUSE WebYaST 1.2","migration_extra":false,"former_identifier":"sle-11-WebYaST","release_type":null,"name":"SUSE WebYaST","offline_predecessor_ids":[],"repositories":[{"id":839,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-WebYaST-1.2-Updates/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true,"installer_updates":false,"name":"SLE11-SP1-WebYaST-1.2-Updates","description":"SLE11-SP1-WebYaST-1.2-Updates for sle-11-x86_64"},{"distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-WebYaST-1.2-Pool/sle-11-i586/","enabled":false,"id":840,"description":"SLE11-SP1-WebYaST-1.2-Pool for sle-11-i586","installer_updates":false,"name":"SLE11-SP1-WebYaST-1.2-Pool"},{"distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-WebYaST-1.2-Pool/sle-11-x86_64/","enabled":false,"id":841,"description":"SLE11-SP1-WebYaST-1.2-Pool for sle-11-x86_64","installer_updates":false,"name":"SLE11-SP1-WebYaST-1.2-Pool"},{"enabled":true,"id":842,"distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-WebYaST-1.2-Updates/sle-11-i586/","installer_updates":false,"name":"SLE11-SP1-WebYaST-1.2-Updates","description":"SLE11-SP1-WebYaST-1.2-Updates for sle-11-i586"}],"online_predecessor_ids":[],"product_class":"WEBYAST","predecessor_ids":[],"cpe":null,"product_type":"extension","description":null,"shortname":null,"free":true,"arch":null,"eula_url":""},{"extensions":[],"id":1068,"release_stage":"released","identifier":"sle-pos","friendly_version":"11 SP2","name":"SUSE Linux Enterprise Point of Service","offline_predecessor_ids":[],"friendly_name":"SUSE Linux Enterprise Point of Service 11 SP2","migration_extra":false,"former_identifier":"sle-pos","release_type":null,"recommended":false,"version":"11.2","cpe":null,"product_type":"extension","predecessor_ids":[],"product_class":"10040","online_predecessor_ids":[],"repositories":[{"description":"SLE11-POS-SP2-Updates for sle-11-i586","installer_updates":false,"name":"SLE11-POS-SP2-Updates","distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-POS-SP2-Updates/sle-11-i586/","enabled":true,"id":1073},{"url":"https://updates.suse.com/repo/$RCE/SLE11-POS-SP2-Pool/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true,"id":1074,"enabled":true,"description":"SLE11-POS-SP2-Pool for sle-11-i586","installer_updates":false,"name":"SLE11-POS-SP2-Pool"},{"distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-POS-SP2-Updates/sle-11-x86_64/","enabled":true,"id":1075,"description":"SLE11-POS-SP2-Updates for sle-11-x86_64","installer_updates":false,"name":"SLE11-POS-SP2-Updates"},{"description":"SLE11-POS-SP2-Pool for sle-11-x86_64","installer_updates":false,"name":"SLE11-POS-SP2-Pool","distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-POS-SP2-Pool/sle-11-x86_64/","enabled":true,"id":1076}],"eula_url":"","arch":null,"description":null,"shortname":null,"free":false},{"eula_url":"","arch":null,"shortname":null,"description":null,"free":true,"cpe":null,"product_type":"extension","predecessor_ids":[],"product_class":"SLE-SDK","online_predecessor_ids":[],"repositories":[{"enabled":true,"id":1257,"distro_target":"sle-11-ia64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Updates/sle-11-ia64/","installer_updates":false,"name":"SLE11-SDK-SP1-Updates","description":"SLE11-SDK-SP1-Updates for sle-11-ia64"},{"id":1258,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-ia64/","distro_target":"sle-11-ia64","autorefresh":true,"installer_updates":false,"name":"SLE11-SDK-SP1-Pool","description":"SLE11-SDK-SP1-Pool for sle-11-ia64"},{"description":"SLE11-SDK-SP1-Pool for sle-11-s390x","installer_updates":false,"name":"SLE11-SDK-SP1-Pool","distro_target":"sle-11-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-s390x/","enabled":true,"id":1259},{"description":"SLE11-SDK-SP1-Updates for sle-11-ppc64","name":"SLE11-SDK-SP1-Updates","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Updates/sle-11-ppc64/","autorefresh":true,"distro_target":"sle-11-ppc64","id":1260,"enabled":true},{"description":"SLE11-SDK-SP1-Pool for sle-11-ppc64","name":"SLE11-SDK-SP1-Pool","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-ppc64/","autorefresh":true,"distro_target":"sle-11-ppc64","id":1261,"enabled":true},{"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Updates/sle-11-i586/","enabled":true,"id":1262,"description":"SLE11-SDK-SP1-Updates for sle-11-i586","name":"SLE11-SDK-SP1-Updates","installer_updates":false},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true,"id":1263,"enabled":true,"description":"SLE11-SDK-SP1-Pool for sle-11-i586","installer_updates":false,"name":"SLE11-SDK-SP1-Pool"},{"id":1264,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64","name":"SLE11-SDK-SP1-Pool","installer_updates":false,"description":"SLE11-SDK-SP1-Pool for sle-11-x86_64"},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Updates/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true,"id":1265,"enabled":true,"description":"SLE11-SDK-SP1-Updates for sle-11-x86_64","installer_updates":false,"name":"SLE11-SDK-SP1-Updates"},{"description":"SLE11-SDK-SP1-Updates for sle-11-s390x","name":"SLE11-SDK-SP1-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-s390x","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Updates/sle-11-s390x/","enabled":true,"id":1266},{"description":"SLE11-SDK-SP2-Core for sle-11-ia64","installer_updates":false,"name":"SLE11-SDK-SP2-Core","distro_target":"sle-11-ia64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-ia64/","enabled":true,"id":1267},{"distro_target":"sle-11-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-s390x/","enabled":true,"id":1268,"description":"SLE11-SDK-SP2-Core for sle-11-s390x","installer_updates":false,"name":"SLE11-SDK-SP2-Core"},{"description":"SLE11-SDK-SP2-Updates for sle-11-s390x","installer_updates":false,"name":"SLE11-SDK-SP2-Updates","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-s390x/","distro_target":"sle-11-s390x","autorefresh":true,"id":1269,"enabled":true},{"installer_updates":false,"name":"SLE11-SDK-SP2-Updates","description":"SLE11-SDK-SP2-Updates for sle-11-ppc64","enabled":true,"id":1270,"distro_target":"sle-11-ppc64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-ppc64/"},{"description":"SLE11-SDK-SP2-Updates for sle-11-i586","name":"SLE11-SDK-SP2-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-i586/","enabled":true,"id":1271},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-ia64/","distro_target":"sle-11-ia64","autorefresh":true,"id":1272,"enabled":true,"description":"SLE11-SDK-SP2-Updates for sle-11-ia64","installer_updates":false,"name":"SLE11-SDK-SP2-Updates"},{"description":"SLE11-SDK-SP2-Core for sle-11-ppc64","installer_updates":false,"name":"SLE11-SDK-SP2-Core","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-ppc64/","distro_target":"sle-11-ppc64","autorefresh":true,"id":1273,"enabled":true},{"id":1274,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","name":"SLE11-SDK-SP2-Core","installer_updates":false,"description":"SLE11-SDK-SP2-Core for sle-11-i586"},{"enabled":true,"id":1275,"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-x86_64/","name":"SLE11-SDK-SP2-Core","installer_updates":false,"description":"SLE11-SDK-SP2-Core for sle-11-x86_64"},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64","id":1276,"enabled":true,"description":"SLE11-SDK-SP2-Updates for sle-11-x86_64","name":"SLE11-SDK-SP2-Updates","installer_updates":false}],"name":"SUSE Linux Enterprise Software Development Kit","offline_predecessor_ids":[],"friendly_name":"SUSE Linux Enterprise Software Development Kit 11 SP2","migration_extra":false,"former_identifier":"sle-sdk","release_type":null,"recommended":false,"version":"11.2","extensions":[],"identifier":"sle-sdk","release_stage":"released","id":1160,"friendly_version":"11 SP2"},{"description":null,"shortname":null,"free":true,"eula_url":"","arch":null,"predecessor_ids":[],"online_predecessor_ids":[],"repositories":[{"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-ia64/","distro_target":"sle-11-ia64","autorefresh":true,"id":1267,"enabled":true,"description":"SLE11-SDK-SP2-Core for sle-11-ia64","installer_updates":false,"name":"SLE11-SDK-SP2-Core"},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-s390x/","distro_target":"sle-11-s390x","autorefresh":true,"id":1268,"enabled":true,"description":"SLE11-SDK-SP2-Core for sle-11-s390x","installer_updates":false,"name":"SLE11-SDK-SP2-Core"},{"description":"SLE11-SDK-SP2-Updates for sle-11-s390x","name":"SLE11-SDK-SP2-Updates","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-s390x/","autorefresh":true,"distro_target":"sle-11-s390x","id":1269,"enabled":true},{"description":"SLE11-SDK-SP2-Updates for sle-11-ppc64","name":"SLE11-SDK-SP2-Updates","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-ppc64/","autorefresh":true,"distro_target":"sle-11-ppc64","id":1270,"enabled":true},{"description":"SLE11-SDK-SP2-Updates for sle-11-i586","name":"SLE11-SDK-SP2-Updates","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","id":1271,"enabled":true},{"installer_updates":false,"name":"SLE11-SDK-SP2-Updates","description":"SLE11-SDK-SP2-Updates for sle-11-ia64","enabled":true,"id":1272,"distro_target":"sle-11-ia64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-ia64/"},{"description":"SLE11-SDK-SP2-Core for sle-11-ppc64","installer_updates":false,"name":"SLE11-SDK-SP2-Core","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-ppc64/","distro_target":"sle-11-ppc64","autorefresh":true,"id":1273,"enabled":true},{"id":1274,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true,"installer_updates":false,"name":"SLE11-SDK-SP2-Core","description":"SLE11-SDK-SP2-Core for sle-11-i586"},{"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-x86_64/","enabled":true,"id":1275,"description":"SLE11-SDK-SP2-Core for sle-11-x86_64","name":"SLE11-SDK-SP2-Core","installer_updates":false},{"enabled":true,"id":1276,"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-x86_64/","name":"SLE11-SDK-SP2-Updates","installer_updates":false,"description":"SLE11-SDK-SP2-Updates for sle-11-x86_64"}],"product_class":"SLE-SDK","cpe":null,"product_type":"extension","recommended":false,"version":"11.1","name":"SUSE Linux Enterprise Software Development Kit","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Software Development Kit 11 SP1 (Migration)","release_type":null,"former_identifier":"sle-sdk-SP2-migration","friendly_version":"11 SP1","extensions":[],"release_stage":"released","identifier":"sle-sdk-SP2-migration","id":1163},{"friendly_version":"11 SP2","id":1164,"release_stage":"released","identifier":"sle-sdk-SP3-migration","extensions":[],"version":"11.2","recommended":false,"former_identifier":"sle-sdk-SP3-migration","release_type":null,"friendly_name":"SUSE Linux Enterprise Software Development Kit 11 SP2 (Migration)","migration_extra":false,"offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Software Development Kit","product_class":"SLE-SDK","online_predecessor_ids":[],"repositories":[{"id":1277,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Pool/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","name":"SLE11-SDK-SP3-Pool","installer_updates":false,"description":"SLE11-SDK-SP3-Pool for sle-11-i586"},{"id":1278,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Pool/sle-11-ia64/","distro_target":"sle-11-ia64","autorefresh":true,"installer_updates":false,"name":"SLE11-SDK-SP3-Pool","description":"SLE11-SDK-SP3-Pool for sle-11-ia64"},{"enabled":true,"id":1279,"distro_target":"sle-11-ppc64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Updates/sle-11-ppc64/","installer_updates":false,"name":"SLE11-SDK-SP3-Updates","description":"SLE11-SDK-SP3-Updates for sle-11-ppc64"},{"description":"SLE11-SDK-SP3-Updates for sle-11-ia64","name":"SLE11-SDK-SP3-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-ia64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Updates/sle-11-ia64/","enabled":true,"id":1280},{"distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Pool/sle-11-x86_64/","enabled":true,"id":1281,"description":"SLE11-SDK-SP3-Pool for sle-11-x86_64","installer_updates":false,"name":"SLE11-SDK-SP3-Pool"},{"autorefresh":true,"distro_target":"sle-11-s390x","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Updates/sle-11-s390x/","enabled":true,"id":1282,"description":"SLE11-SDK-SP3-Updates for sle-11-s390x","name":"SLE11-SDK-SP3-Updates","installer_updates":false},{"installer_updates":false,"name":"SLE11-SDK-SP3-Pool","description":"SLE11-SDK-SP3-Pool for sle-11-ppc64","enabled":true,"id":1283,"distro_target":"sle-11-ppc64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Pool/sle-11-ppc64/"},{"installer_updates":false,"name":"SLE11-SDK-SP3-Updates","description":"SLE11-SDK-SP3-Updates for sle-11-x86_64","id":1284,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Updates/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true},{"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Updates/sle-11-i586/","enabled":true,"id":1285,"description":"SLE11-SDK-SP3-Updates for sle-11-i586","name":"SLE11-SDK-SP3-Updates","installer_updates":false},{"name":"SLE11-SDK-SP3-Pool","installer_updates":false,"description":"SLE11-SDK-SP3-Pool for sle-11-s390x","id":1286,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Pool/sle-11-s390x/","autorefresh":true,"distro_target":"sle-11-s390x"}],"predecessor_ids":[],"product_type":"extension","cpe":null,"free":true,"description":null,"shortname":null,"arch":null,"eula_url":""},{"product_type":"extension","cpe":null,"predecessor_ids":[],"product_class":"SLESMT","online_predecessor_ids":[],"repositories":[{"distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP2-Pool/sle-11-x86_64/","enabled":true,"id":1392,"description":"SLE11-SMT-SP2-Pool for sle-11-x86_64","installer_updates":false,"name":"SLE11-SMT-SP2-Pool"},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP2-Updates/sle-11-s390x/","distro_target":"sle-11-s390x","autorefresh":true,"id":1393,"enabled":true,"description":"SLE11-SMT-SP2-Updates for sle-11-s390x","installer_updates":false,"name":"SLE11-SMT-SP2-Updates"},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP2-Pool/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","id":1394,"enabled":true,"description":"SLE11-SMT-SP2-Pool for sle-11-i586","name":"SLE11-SMT-SP2-Pool","installer_updates":false},{"description":"SLE11-SMT-SP2-Updates for sle-11-i586","installer_updates":false,"name":"SLE11-SMT-SP2-Updates","url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP2-Updates/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true,"id":1395,"enabled":true},{"description":"SLE11-SMT-SP2-Pool for sle-11-s390x","installer_updates":false,"name":"SLE11-SMT-SP2-Pool","url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP2-Pool/sle-11-s390x/","distro_target":"sle-11-s390x","autorefresh":true,"id":1396,"enabled":true},{"name":"SLE11-SMT-SP2-Updates","installer_updates":false,"description":"SLE11-SMT-SP2-Updates for sle-11-x86_64","enabled":true,"id":1397,"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP2-Updates/sle-11-x86_64/"}],"eula_url":"","arch":null,"free":true,"description":null,"shortname":null,"extensions":[],"release_stage":"released","identifier":"sle-smt","id":1193,"friendly_version":"11 SP2","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Subscription Management Tool","former_identifier":"sle-smt","release_type":null,"friendly_name":"SUSE Linux Enterprise Subscription Management Tool 11 SP2","migration_extra":false,"recommended":false,"version":"11.2"},{"recommended":false,"version":"11","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Subscription Management Tool","former_identifier":"sle-smt-SP2-migration","release_type":null,"friendly_name":"SUSE Linux Enterprise Subscription Management Tool 11 (Migration)","migration_extra":false,"friendly_version":"11","extensions":[],"id":1194,"release_stage":"released","identifier":"sle-smt-SP2-migration","free":true,"shortname":null,"description":null,"eula_url":"","arch":null,"predecessor_ids":[],"product_class":"SLESMT","online_predecessor_ids":[],"repositories":[{"installer_updates":false,"name":"SLE11-SMT-SP2-Pool","description":"SLE11-SMT-SP2-Pool for sle-11-x86_64","id":1392,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP2-Pool/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true},{"installer_updates":false,"name":"SLE11-SMT-SP2-Pool","description":"SLE11-SMT-SP2-Pool for sle-11-i586","enabled":true,"id":1394,"distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP2-Pool/sle-11-i586/"},{"name":"SLE11-SMT-SP2-Pool","installer_updates":false,"description":"SLE11-SMT-SP2-Pool for sle-11-s390x","id":1396,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP2-Pool/sle-11-s390x/","autorefresh":true,"distro_target":"sle-11-s390x"}],"product_type":"extension","cpe":null},{"extensions":[],"release_stage":"released","id":1199,"identifier":"sle-smt-SP3-migration","friendly_version":"11 SP2","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Subscription Management Tool","former_identifier":"sle-smt-SP3-migration","release_type":null,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Subscription Management Tool 11 SP2 (Migration)","recommended":false,"version":"11.2","product_type":"extension","cpe":null,"predecessor_ids":[],"repositories":[{"installer_updates":false,"name":"SLE11-SMT-SP3-Pool","description":"SLE11-SMT-SP3-Pool for sle-11-s390x","id":1408,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP3-Pool/sle-11-s390x/","distro_target":"sle-11-s390x","autorefresh":true},{"enabled":true,"id":1409,"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP3-Pool/sle-11-x86_64/","name":"SLE11-SMT-SP3-Pool","installer_updates":false,"description":"SLE11-SMT-SP3-Pool for sle-11-x86_64"},{"id":1410,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP3-Pool/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","name":"SLE11-SMT-SP3-Pool","installer_updates":false,"description":"SLE11-SMT-SP3-Pool for sle-11-i586"}],"online_predecessor_ids":[],"product_class":"SLESMT","eula_url":"","arch":null,"free":true,"description":null,"shortname":null},{"predecessor_ids":[],"online_predecessor_ids":[],"product_class":"WEBYAST","repositories":[{"description":"SLE11-SP2-WebYaST-1.3-Pool for sle-11-x86_64","installer_updates":false,"name":"SLE11-SP2-WebYaST-1.3-Pool","distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-WebYaST-1.3-Pool/sle-11-x86_64/","enabled":true,"id":1185},{"installer_updates":false,"name":"SLE11-SP2-WebYaST-1.3-Pool","description":"SLE11-SP2-WebYaST-1.3-Pool for sle-11-s390x","enabled":true,"id":1411,"distro_target":"sle-11-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-WebYaST-1.3-Pool/sle-11-s390x/"},{"distro_target":"sle-11-ppc64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-WebYaST-1.3-Pool/sle-11-ppc64/","enabled":true,"id":1414,"description":"SLE11-SP2-WebYaST-1.3-Pool for sle-11-ppc64","installer_updates":false,"name":"SLE11-SP2-WebYaST-1.3-Pool"},{"name":"SLE11-SP2-WebYaST-1.3-Pool","installer_updates":false,"description":"SLE11-SP2-WebYaST-1.3-Pool for sle-11-ia64","enabled":true,"id":1416,"autorefresh":true,"distro_target":"sle-11-ia64","url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-WebYaST-1.3-Pool/sle-11-ia64/"},{"enabled":true,"id":1417,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-WebYaST-1.3-Pool/sle-11-i586/","name":"SLE11-SP2-WebYaST-1.3-Pool","installer_updates":false,"description":"SLE11-SP2-WebYaST-1.3-Pool for sle-11-i586"}],"product_type":"extension","cpe":null,"free":true,"shortname":null,"description":null,"eula_url":"","arch":null,"friendly_version":"1.2","extensions":[],"identifier":"sle-11-WebYaST-1.3-migration","release_stage":"released","id":1207,"recommended":false,"version":"1.2","offline_predecessor_ids":[],"name":"SUSE WebYaST","former_identifier":"sle-11-WebYaST-1.3-migration","release_type":null,"migration_extra":false,"friendly_name":"SUSE WebYaST 1.2 (Migration)"}],"identifier":"SLES-for-VMware","release_stage":"released","id":996,"recommended":false,"version":"11.2","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Server","release_type":null,"former_identifier":"SLES-for-VMware","migration_extra":false,"friendly_name":"SUSE Linux Enterprise Server 11 SP2"},{"description":null,"shortname":null,"free":false,"eula_url":"","arch":"i586","predecessor_ids":[],"online_predecessor_ids":[],"repositories":[{"installer_updates":false,"name":"SLE11-SP2-Debuginfo-Core","description":"SLE11-SP2-Debuginfo-Core for sle-11-i586","id":717,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-Debuginfo-Core/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-Debuginfo-Updates/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","id":719,"enabled":false,"description":"SLE11-SP2-Debuginfo-Updates for sle-11-i586","name":"SLE11-SP2-Debuginfo-Updates","installer_updates":false},{"installer_updates":false,"name":"SLES11-SP2-VMware-Updates","description":"SLES11-SP2-VMware-Updates for sle-11-i586","enabled":true,"id":958,"distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP2-VMware-Updates/sle-11-i586/"},{"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLES11-SP2-VMware-Core/sle-11-i586/","enabled":true,"id":962,"description":"SLES11-SP2-VMware-Core for sle-11-i586","name":"SLES11-SP2-VMware-Core","installer_updates":false}],"product_class":"SLES-X86-VMWARE","cpe":null,"product_type":"base","recommended":false,"version":"11.1","name":"SUSE Linux Enterprise Server","offline_predecessor_ids":[],"friendly_name":"SUSE Linux Enterprise Server 11 SP1 i586 (Migration)","migration_extra":false,"release_type":null,"former_identifier":"SLES-for-VMware-SP2-migration","friendly_version":"11 SP1","extensions":[{"arch":"i586","eula_url":"","description":null,"shortname":null,"free":false,"cpe":null,"product_type":"extension","online_predecessor_ids":[],"repositories":[{"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP1-Updates/sle-11-i586/","enabled":true,"id":944,"description":"SLE11-HAE-SP1-Updates for sle-11-i586","name":"SLE11-HAE-SP1-Updates","installer_updates":false},{"name":"SLE11-HAE-SP1-Pool","installer_updates":false,"description":"SLE11-HAE-SP1-Pool for sle-11-i586","enabled":true,"id":945,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP1-Pool/sle-11-i586/"}],"product_class":"SLE-HAE-X86","predecessor_ids":[],"friendly_name":"SUSE Linux Enterprise High Availability Extension 11 SP1 i586","migration_extra":false,"release_type":null,"former_identifier":"sle-hae","name":"SUSE Linux Enterprise High Availability Extension","offline_predecessor_ids":[],"version":"11.1","recommended":false,"release_stage":"released","id":959,"identifier":"sle-hae","extensions":[],"friendly_version":"11 SP1"},{"extensions":[],"release_stage":"released","identifier":"sle-hae-SP2-migration","id":963,"friendly_version":"11 SP1","name":"SUSE Linux Enterprise High Availability Extension","offline_predecessor_ids":[],"friendly_name":"SUSE Linux Enterprise High Availability Extension 11 SP1 i586 (Migration)","migration_extra":false,"former_identifier":"sle-hae-SP2-migration","release_type":null,"recommended":false,"version":"11.1","cpe":null,"product_type":"extension","predecessor_ids":[],"repositories":[{"enabled":true,"id":949,"distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP2-Pool/sle-11-i586/","installer_updates":false,"name":"SLE11-HAE-SP2-Pool","description":"SLE11-HAE-SP2-Pool for sle-11-i586"},{"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP2-Updates/sle-11-i586/","enabled":true,"id":950,"description":"SLE11-HAE-SP2-Updates for sle-11-i586","name":"SLE11-HAE-SP2-Updates","installer_updates":false}],"online_predecessor_ids":[],"product_class":"SLE-HAE-X86","eula_url":"","arch":"i586","shortname":null,"description":null,"free":false},{"friendly_version":"11 SP1","release_stage":"released","identifier":"sle-smt","id":1192,"extensions":[],"version":"11.1","recommended":false,"friendly_name":"SUSE Linux Enterprise Subscription Management Tool 11 SP1","migration_extra":false,"release_type":null,"former_identifier":"sle-smt","name":"SUSE Linux Enterprise Subscription Management Tool","offline_predecessor_ids":[],"online_predecessor_ids":[],"repositories":[{"installer_updates":false,"name":"SLE11-SP1-SMT-Updates","description":"SLE11-SP1-SMT-Updates for sle-11-x86_64","enabled":true,"id":1386,"distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-SMT-Updates/sle-11-x86_64/"},{"distro_target":"sle-11-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-SMT-Pool/sle-11-s390x/","enabled":true,"id":1387,"description":"SLE11-SP1-SMT-Pool for sle-11-s390x","installer_updates":false,"name":"SLE11-SP1-SMT-Pool"},{"description":"SLE11-SP1-SMT-Pool for sle-11-x86_64","name":"SLE11-SP1-SMT-Pool","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-SMT-Pool/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64","id":1388,"enabled":true},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-SMT-Updates/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true,"id":1389,"enabled":true,"description":"SLE11-SP1-SMT-Updates for sle-11-i586","installer_updates":false,"name":"SLE11-SP1-SMT-Updates"},{"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-SMT-Pool/sle-11-i586/","enabled":true,"id":1390,"description":"SLE11-SP1-SMT-Pool for sle-11-i586","name":"SLE11-SP1-SMT-Pool","installer_updates":false},{"description":"SLE11-SP1-SMT-Updates for sle-11-s390x","installer_updates":false,"name":"SLE11-SP1-SMT-Updates","url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-SMT-Updates/sle-11-s390x/","distro_target":"sle-11-s390x","autorefresh":true,"id":1391,"enabled":true}],"product_class":"SLESMT","predecessor_ids":[],"cpe":null,"product_type":"extension","description":null,"shortname":null,"free":true,"arch":null,"eula_url":""}],"release_stage":"released","id":997,"identifier":"SLES-for-VMware-SP2-migration"},{"predecessor_ids":[],"online_predecessor_ids":[],"repositories":[{"description":"SLE11-SP1-Debuginfo-Pool for sle-11-i586","name":"SLE11-SP1-Debuginfo-Pool","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Pool/sle-11-i586/","enabled":false,"id":680},{"name":"SLE11-SP1-Debuginfo-Updates","installer_updates":false,"description":"SLE11-SP1-Debuginfo-Updates for sle-11-i586","id":682,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Updates/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586"},{"url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-Updates/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true,"id":684,"enabled":true,"description":"SLES11-SP1-Updates for sle-11-i586","installer_updates":false,"name":"SLES11-SP1-Updates"},{"name":"SLES11-SP1-Pool","installer_updates":false,"description":"SLES11-SP1-Pool for sle-11-i586","id":686,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-Pool/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586"},{"installer_updates":false,"name":"SLES11-SP1-Pool","description":"SLES11-SP1-Pool for sle-11-s390x","enabled":true,"id":687,"distro_target":"sle-11-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-Pool/sle-11-s390x/"},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Updates/sle-11-s390x/","autorefresh":true,"distro_target":"sle-11-s390x","id":688,"enabled":false,"description":"SLE11-SP1-Debuginfo-Updates for sle-11-s390x","name":"SLE11-SP1-Debuginfo-Updates","installer_updates":false},{"description":"SLES11-SP1-Updates for sle-11-s390x","name":"SLES11-SP1-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-s390x","url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-Updates/sle-11-s390x/","enabled":true,"id":691},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Pool/sle-11-s390x/","distro_target":"sle-11-s390x","autorefresh":true,"id":692,"enabled":false,"description":"SLE11-SP1-Debuginfo-Pool for sle-11-s390x","installer_updates":false,"name":"SLE11-SP1-Debuginfo-Pool"},{"name":"SLES11-SP1-Updates","installer_updates":false,"description":"SLES11-SP1-Updates for sle-11-x86_64","id":705,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-Updates/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64"},{"enabled":false,"id":707,"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Pool/sle-11-x86_64/","name":"SLE11-SP1-Debuginfo-Pool","installer_updates":false,"description":"SLE11-SP1-Debuginfo-Pool for sle-11-x86_64"},{"id":711,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-Pool/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true,"installer_updates":false,"name":"SLES11-SP1-Pool","description":"SLES11-SP1-Pool for sle-11-x86_64"},{"description":"SLE11-SP1-Debuginfo-Updates for sle-11-x86_64","name":"SLE11-SP1-Debuginfo-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Updates/sle-11-x86_64/","enabled":false,"id":715},{"id":919,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-Pool/sle-11-ppc64/","distro_target":"sle-11-ppc64","autorefresh":true,"installer_updates":false,"name":"SLES11-SP1-Pool","description":"SLES11-SP1-Pool for sle-11-ppc64"},{"installer_updates":false,"name":"SLES11-SP1-Updates","description":"SLES11-SP1-Updates for sle-11-ppc64","id":922,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-Updates/sle-11-ppc64/","distro_target":"sle-11-ppc64","autorefresh":true},{"description":"SLE11-SP1-Debuginfo-Updates for sle-11-ppc64","name":"SLE11-SP1-Debuginfo-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-ppc64","url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Updates/sle-11-ppc64/","enabled":false,"id":924},{"description":"SLE11-SP1-Debuginfo-Pool for sle-11-ppc64","name":"SLE11-SP1-Debuginfo-Pool","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-ppc64","url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Pool/sle-11-ppc64/","enabled":false,"id":925},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Pool/sle-11-ia64/","autorefresh":true,"distro_target":"sle-11-ia64","id":970,"enabled":false,"description":"SLE11-SP1-Debuginfo-Pool for sle-11-ia64","name":"SLE11-SP1-Debuginfo-Pool","installer_updates":false},{"distro_target":"sle-11-ia64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Updates/sle-11-ia64/","enabled":false,"id":971,"description":"SLE11-SP1-Debuginfo-Updates for sle-11-ia64","installer_updates":false,"name":"SLE11-SP1-Debuginfo-Updates"},{"id":976,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-SUSE-Manager-Tools/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","name":"SLES11-SP1-SUSE-Manager-Tools","installer_updates":false,"description":"SLES11-SP1-SUSE-Manager-Tools for sle-11-i586"},{"description":"RES-6-SUSE-Manager-Tools for x86_64","installer_updates":false,"name":"RES-6-SUSE-Manager-Tools","url":"https://updates.suse.com/repo/$RCE/RES6-SUSE-Manager-Tools/x86_64/","distro_target":"x86_64","autorefresh":true,"id":977,"enabled":false},{"installer_updates":false,"name":"SLE10-SUSE-Manager-Tools","description":"SLE10-SUSE-Manager-Tools for sle-10-ppc","id":978,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SUSE-Manager-Tools/sles-10-ppc/","distro_target":"sle-10-ppc","autorefresh":true},{"enabled":false,"id":979,"autorefresh":true,"distro_target":"x86_64","url":"https://updates.suse.com/repo/$RCE/RES5-SUSE-Manager-Tools/x86_64/","name":"RES-5-SUSE-Manager-Tools","installer_updates":false,"description":"RES-5-SUSE-Manager-Tools for x86_64"},{"url":"https://updates.suse.com/repo/$RCE/SUSE-Manager-Server-1.2-Updates/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64","id":980,"enabled":true,"description":"SUSE-Manager-Server-1.2-Updates for sle-11-x86_64","name":"SUSE-Manager-Server-1.2-Updates","installer_updates":false},{"name":"RES4-SUSE-Manager-Tools","installer_updates":false,"description":"RES4-SUSE-Manager-Tools for x86_64","id":981,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/RES4-SUSE-Manager-Tools/x86_64/","autorefresh":true,"distro_target":"x86_64"},{"name":"SLES11-SP1-SUSE-Manager-Tools","installer_updates":false,"description":"SLES11-SP1-SUSE-Manager-Tools for sle-11-s390x","enabled":false,"id":982,"autorefresh":true,"distro_target":"sle-11-s390x","url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-SUSE-Manager-Tools/sle-11-s390x/"},{"description":"SLES11-SP1-SUSE-Manager-Tools for sle-11-ppc64","installer_updates":false,"name":"SLES11-SP1-SUSE-Manager-Tools","url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-SUSE-Manager-Tools/sle-11-ppc64/","distro_target":"sle-11-ppc64","autorefresh":true,"id":983,"enabled":false},{"description":"SLES11-SP1-SUSE-Manager-Tools for sle-11-ia64","installer_updates":false,"name":"SLES11-SP1-SUSE-Manager-Tools","url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-SUSE-Manager-Tools/sle-11-ia64/","distro_target":"sle-11-ia64","autorefresh":true,"id":984,"enabled":false},{"url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-SUSE-Manager-Tools/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64","id":985,"enabled":false,"description":"SLES11-SP1-SUSE-Manager-Tools for sle-11-x86_64","name":"SLES11-SP1-SUSE-Manager-Tools","installer_updates":false},{"distro_target":"sle-11-x86_64","autorefresh":false,"url":"https://updates.suse.com/repo/$RCE/SUSE-Manager-Server-1.2-Pool/sle-11-x86_64/","enabled":true,"id":986,"description":"SUSE-Manager-Server-1.2-Pool for sle-11-x86_64","installer_updates":false,"name":"SUSE-Manager-Server-1.2-Pool"},{"installer_updates":false,"name":"SLES11-SP1-Updates","description":"SLES11-SP1-Updates for sle-11-ia64","enabled":true,"id":987,"distro_target":"sle-11-ia64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-Updates/sle-11-ia64/"},{"enabled":false,"id":988,"distro_target":"sle-10-ia64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SUSE-Manager-Tools/sles-10-ia64/","installer_updates":false,"name":"SLE10-SUSE-Manager-Tools","description":"SLE10-SUSE-Manager-Tools for sle-10-ia64"},{"url":"https://updates.suse.com/repo/$RCE/RES4-SUSE-Manager-Tools/i386/","distro_target":"i386","autorefresh":true,"id":989,"enabled":false,"description":"RES4-SUSE-Manager-Tools for i386","installer_updates":false,"name":"RES4-SUSE-Manager-Tools"},{"description":"RES-5-SUSE-Manager-Tools for i386","installer_updates":false,"name":"RES-5-SUSE-Manager-Tools","distro_target":"i386","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/RES5-SUSE-Manager-Tools/i386/","enabled":false,"id":990},{"name":"SLES11-SP1-Pool","installer_updates":false,"description":"SLES11-SP1-Pool for sle-11-ia64","enabled":true,"id":991,"autorefresh":true,"distro_target":"sle-11-ia64","url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-Pool/sle-11-ia64/"},{"description":"SLE10-SUSE-Manager-Tools for sle-10-s390x","installer_updates":false,"name":"SLE10-SUSE-Manager-Tools","url":"https://updates.suse.com/repo/$RCE/SLE10-SUSE-Manager-Tools/sles-10-s390x/","distro_target":"sle-10-s390x","autorefresh":true,"id":992,"enabled":false},{"enabled":false,"id":993,"autorefresh":true,"distro_target":"sle-10-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE10-SUSE-Manager-Tools/sles-10-x86_64/","name":"SLE10-SUSE-Manager-Tools","installer_updates":false,"description":"SLE10-SUSE-Manager-Tools for sle-10-x86_64"},{"description":"RES-6-SUSE-Manager-Tools for i386","installer_updates":false,"name":"RES-6-SUSE-Manager-Tools","distro_target":"i386","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/RES6-SUSE-Manager-Tools/i386/","enabled":false,"id":994},{"distro_target":"sle-10-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SUSE-Manager-Tools/sles-10-i586/","enabled":false,"id":1827,"description":"SLE10-SUSE-Manager-Tools for sle-10-i586","installer_updates":false,"name":"SLE10-SUSE-Manager-Tools"}],"product_class":"SMS-X86","cpe":null,"product_type":"base","shortname":null,"description":null,"free":false,"eula_url":"","arch":null,"friendly_version":"1.2","extensions":[{"eula_url":"","arch":null,"description":null,"shortname":null,"free":false,"cpe":null,"product_type":"extension","predecessor_ids":[],"online_predecessor_ids":[],"product_class":"SM_ENT_MGM_S","repositories":[],"name":"SUSE Manager Mgmt Single","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"SUSE Manager Mgmt Single 1.2","release_type":null,"former_identifier":"SUSE-Manager-Mgmt-Single","recommended":false,"version":"1.2","extensions":[],"release_stage":"released","identifier":"SUSE-Manager-Mgmt-Single","id":1076,"friendly_version":"1.2"},{"arch":null,"eula_url":"","free":false,"description":null,"shortname":null,"product_type":"extension","cpe":null,"repositories":[],"online_predecessor_ids":[],"product_class":"SM_ENT_MGM_V","predecessor_ids":[],"former_identifier":"SUSE-Manager-Mgmt-Unlimited-Virtual","release_type":null,"migration_extra":false,"friendly_name":"SUSE Manager Mgmt Unlimited Virtual 1.2","offline_predecessor_ids":[],"name":"SUSE Manager Mgmt Unlimited Virtual","version":"1.2","recommended":false,"identifier":"SUSE-Manager-Mgmt-Unlimited-Virtual","release_stage":"released","id":1078,"extensions":[],"friendly_version":"1.2"},{"friendly_version":"1.2","extensions":[],"release_stage":"released","identifier":"SUSE-Manager-Prov-Single","id":1097,"recommended":false,"version":"1.2","name":"SUSE Manager Mgmt Single","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"SUSE Manager Mgmt Single 1.2","former_identifier":"SUSE-Manager-Prov-Single","release_type":null,"predecessor_ids":[],"online_predecessor_ids":[],"repositories":[],"product_class":"SM_ENT_PROV_S","cpe":null,"product_type":"extension","description":null,"shortname":null,"free":false,"eula_url":"","arch":null},{"extensions":[],"identifier":"SUSE-Manager-Mgmt-Unlimited-Virtual-Z","release_stage":"released","id":1200,"friendly_version":"1.2","offline_predecessor_ids":[],"name":"SUSE Manager Mgmt Unlimited Virtual Z","former_identifier":"SUSE-Manager-Mgmt-Unlimited-Virtual-Z","release_type":null,"friendly_name":"SUSE Manager Mgmt Unlimited Virtual Z 1.2","migration_extra":false,"recommended":false,"version":"1.2","product_type":"extension","cpe":null,"predecessor_ids":[],"online_predecessor_ids":[],"product_class":"SM_ENT_MGM_Z","repositories":[],"eula_url":"","arch":null,"free":false,"description":null,"shortname":null},{"version":"1.2","recommended":false,"friendly_name":"SUSE Manager Monitoring Single 1.2","migration_extra":false,"former_identifier":"SUSE-Manager-Mon-Single","release_type":null,"name":"SUSE Manager Monitoring Single","offline_predecessor_ids":[],"friendly_version":"1.2","release_stage":"released","id":1201,"identifier":"SUSE-Manager-Mon-Single","extensions":[],"description":null,"shortname":null,"free":false,"arch":null,"eula_url":"","online_predecessor_ids":[],"product_class":"SM_ENT_MON_S","repositories":[],"predecessor_ids":[],"cpe":null,"product_type":"extension"},{"extensions":[],"release_stage":"released","id":1202,"identifier":"SUSE-Manager-Mon-Unlimited-Virtual","friendly_version":"1.2","name":"SUSE Manager Monitoring Unlimited Virtual","offline_predecessor_ids":[],"friendly_name":"SUSE Manager Monitoring Unlimited Virtual 1.2","migration_extra":false,"release_type":null,"former_identifier":"SUSE-Manager-Mon-Unlimited-Virtual","recommended":false,"version":"1.2","cpe":null,"product_type":"extension","predecessor_ids":[],"online_predecessor_ids":[],"product_class":"SM_ENT_MON_V","repositories":[],"eula_url":"","arch":null,"shortname":null,"description":null,"free":false},{"friendly_version":"1.2","extensions":[],"id":1203,"release_stage":"released","identifier":"SUSE-Manager-Mon-Unlimited-Virtual-Z","recommended":false,"version":"1.2","offline_predecessor_ids":[],"name":"SUSE Manager Monitoring Unlimited Virtual Z","former_identifier":"SUSE-Manager-Mon-Unlimited-Virtual-Z","release_type":null,"friendly_name":"SUSE Manager Monitoring Unlimited Virtual Z 1.2","migration_extra":false,"predecessor_ids":[],"product_class":"SM_ENT_MON_Z","online_predecessor_ids":[],"repositories":[],"product_type":"extension","cpe":null,"free":false,"description":null,"shortname":null,"eula_url":"","arch":null},{"id":1204,"release_stage":"released","identifier":"SUSE-Manager-Prov-Unlimited-Virtual","extensions":[],"friendly_version":"1.2","release_type":null,"former_identifier":"SUSE-Manager-Prov-Unlimited-Virtual","friendly_name":"SUSE Manager Provisioning Unlimited Virtual 1.2","migration_extra":false,"offline_predecessor_ids":[],"name":"SUSE Manager Provisioning Unlimited Virtual","version":"1.2","recommended":false,"product_type":"extension","cpe":null,"online_predecessor_ids":[],"repositories":[],"product_class":"SM_ENT_PROV_V","predecessor_ids":[],"arch":null,"eula_url":"","free":false,"shortname":null,"description":null},{"version":"1.2","recommended":false,"former_identifier":"SUSE-Manager-Prov-Unlimited-Virtual-Z","release_type":null,"friendly_name":"SUSE Manager Provisioning Unlimited Virtual Z 1.2","migration_extra":false,"offline_predecessor_ids":[],"name":"SUSE Manager Provisioning Unlimited Virtual Z","friendly_version":"1.2","release_stage":"released","id":1205,"identifier":"SUSE-Manager-Prov-Unlimited-Virtual-Z","extensions":[],"free":false,"shortname":null,"description":null,"arch":null,"eula_url":"","product_class":"SM_ENT_PROV_Z","online_predecessor_ids":[],"repositories":[],"predecessor_ids":[],"product_type":"extension","cpe":null}],"release_stage":"released","identifier":"SUSE-Manager-Server","id":998,"recommended":false,"version":"1.2","name":"SUSE Manager Server x86 and x86-64","offline_predecessor_ids":[],"friendly_name":"SUSE Manager Server x86 and x86-64 1.2","migration_extra":false,"release_type":null,"former_identifier":"SUSE-Manager-Server"},{"shortname":null,"description":null,"free":false,"arch":null,"eula_url":"","repositories":[{"description":"SLES11-SP1-Updates for sle-11-x86_64","installer_updates":false,"name":"SLES11-SP1-Updates","url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-Updates/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true,"id":705,"enabled":true},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Pool/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64","id":707,"enabled":false,"description":"SLE11-SP1-Debuginfo-Pool for sle-11-x86_64","name":"SLE11-SP1-Debuginfo-Pool","installer_updates":false},{"name":"SLES11-SP2-Core","installer_updates":false,"description":"SLES11-SP2-Core for sle-11-x86_64","enabled":true,"id":709,"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLES11-SP2-Core/sle-11-x86_64/"},{"name":"SLES11-SP1-Pool","installer_updates":false,"description":"SLES11-SP1-Pool for sle-11-x86_64","enabled":true,"id":711,"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-Pool/sle-11-x86_64/"},{"installer_updates":false,"name":"SLE11-SP2-Debuginfo-Updates","description":"SLE11-SP2-Debuginfo-Updates for sle-11-x86_64","id":712,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-Debuginfo-Updates/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true},{"description":"SLES11-SP2-Updates for sle-11-x86_64","installer_updates":false,"name":"SLES11-SP2-Updates","distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP2-Updates/sle-11-x86_64/","enabled":true,"id":714},{"enabled":false,"id":715,"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Updates/sle-11-x86_64/","name":"SLE11-SP1-Debuginfo-Updates","installer_updates":false,"description":"SLE11-SP1-Debuginfo-Updates for sle-11-x86_64"},{"description":"SLE11-SP2-Debuginfo-Core for sle-11-x86_64","name":"SLE11-SP2-Debuginfo-Core","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-Debuginfo-Core/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64","id":716,"enabled":false},{"installer_updates":false,"name":"SUSE-Manager-Server-1.7-Pool","description":"SUSE-Manager-Server-1.7-Pool for sle-11-x86_64","id":995,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SUSE-Manager-Server-1.7-Pool/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":false},{"distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SUSE-Manager-Server-1.7-Updates/sle-11-x86_64/","enabled":true,"id":996,"description":"SUSE-Manager-Server-1.7-Updates for sle-11-x86_64","installer_updates":false,"name":"SUSE-Manager-Server-1.7-Updates"}],"online_predecessor_ids":[],"product_class":"SMS-X86","predecessor_ids":[],"cpe":null,"product_type":"base","version":"1.2","recommended":false,"friendly_name":"SUSE Manager Server x86 and x86-64 1.2 (Migration)","migration_extra":false,"release_type":null,"former_identifier":"SUSE-Manager-Server-1.7-migration","name":"SUSE Manager Server x86 and x86-64","offline_predecessor_ids":[],"friendly_version":"1.2","id":999,"release_stage":"released","identifier":"SUSE-Manager-Server-1.7-migration","extensions":[{"repositories":[],"online_predecessor_ids":[],"product_class":"SM_ENT_MGM_S","predecessor_ids":[],"product_type":"extension","cpe":null,"free":false,"description":null,"shortname":null,"arch":null,"eula_url":"","friendly_version":"1.2","release_stage":"released","identifier":"SUSE-Manager-Mgmt-Single","id":1076,"extensions":[],"version":"1.2","recommended":false,"former_identifier":"SUSE-Manager-Mgmt-Single","release_type":null,"migration_extra":false,"friendly_name":"SUSE Manager Mgmt Single 1.2","offline_predecessor_ids":[],"name":"SUSE Manager Mgmt Single"},{"eula_url":"","arch":null,"shortname":null,"description":null,"free":false,"cpe":null,"product_type":"extension","predecessor_ids":[],"product_class":"SM_ENT_MGM_V","online_predecessor_ids":[],"repositories":[],"name":"SUSE Manager Mgmt Unlimited Virtual","offline_predecessor_ids":[],"friendly_name":"SUSE Manager Mgmt Unlimited Virtual 1.2","migration_extra":false,"release_type":null,"former_identifier":"SUSE-Manager-Mgmt-Unlimited-Virtual","recommended":false,"version":"1.2","extensions":[],"release_stage":"released","id":1078,"identifier":"SUSE-Manager-Mgmt-Unlimited-Virtual","friendly_version":"1.2"},{"version":"1.2","recommended":false,"release_type":null,"former_identifier":"SUSE-Manager-Prov-Single","friendly_name":"SUSE Manager Mgmt Single 1.2","migration_extra":false,"offline_predecessor_ids":[],"name":"SUSE Manager Mgmt Single","friendly_version":"1.2","release_stage":"released","id":1097,"identifier":"SUSE-Manager-Prov-Single","extensions":[],"free":false,"shortname":null,"description":null,"arch":null,"eula_url":"","product_class":"SM_ENT_PROV_S","online_predecessor_ids":[],"repositories":[],"predecessor_ids":[],"product_type":"extension","cpe":null},{"version":"1.2","recommended":false,"release_type":null,"former_identifier":"SUSE-Manager-Mgmt-Unlimited-Virtual-Z","migration_extra":false,"friendly_name":"SUSE Manager Mgmt Unlimited Virtual Z 1.2","offline_predecessor_ids":[],"name":"SUSE Manager Mgmt Unlimited Virtual Z","friendly_version":"1.2","identifier":"SUSE-Manager-Mgmt-Unlimited-Virtual-Z","release_stage":"released","id":1200,"extensions":[],"free":false,"description":null,"shortname":null,"arch":null,"eula_url":"","product_class":"SM_ENT_MGM_Z","online_predecessor_ids":[],"repositories":[],"predecessor_ids":[],"product_type":"extension","cpe":null},{"friendly_version":"1.2","release_stage":"released","identifier":"SUSE-Manager-Mon-Single","id":1201,"extensions":[],"version":"1.2","recommended":false,"migration_extra":false,"friendly_name":"SUSE Manager Monitoring Single 1.2","former_identifier":"SUSE-Manager-Mon-Single","release_type":null,"name":"SUSE Manager Monitoring Single","offline_predecessor_ids":[],"online_predecessor_ids":[],"repositories":[],"product_class":"SM_ENT_MON_S","predecessor_ids":[],"cpe":null,"product_type":"extension","description":null,"shortname":null,"free":false,"arch":null,"eula_url":""},{"release_stage":"released","id":1202,"identifier":"SUSE-Manager-Mon-Unlimited-Virtual","extensions":[],"friendly_version":"1.2","friendly_name":"SUSE Manager Monitoring Unlimited Virtual 1.2","migration_extra":false,"former_identifier":"SUSE-Manager-Mon-Unlimited-Virtual","release_type":null,"name":"SUSE Manager Monitoring Unlimited Virtual","offline_predecessor_ids":[],"version":"1.2","recommended":false,"cpe":null,"product_type":"extension","online_predecessor_ids":[],"product_class":"SM_ENT_MON_V","repositories":[],"predecessor_ids":[],"arch":null,"eula_url":"","description":null,"shortname":null,"free":false},{"id":1203,"release_stage":"released","identifier":"SUSE-Manager-Mon-Unlimited-Virtual-Z","extensions":[],"friendly_version":"1.2","former_identifier":"SUSE-Manager-Mon-Unlimited-Virtual-Z","release_type":null,"migration_extra":false,"friendly_name":"SUSE Manager Monitoring Unlimited Virtual Z 1.2","offline_predecessor_ids":[],"name":"SUSE Manager Monitoring Unlimited Virtual Z","version":"1.2","recommended":false,"product_type":"extension","cpe":null,"product_class":"SM_ENT_MON_Z","online_predecessor_ids":[],"repositories":[],"predecessor_ids":[],"arch":null,"eula_url":"","free":false,"shortname":null,"description":null},{"free":false,"description":null,"shortname":null,"eula_url":"","arch":null,"predecessor_ids":[],"online_predecessor_ids":[],"product_class":"SM_ENT_PROV_V","repositories":[],"product_type":"extension","cpe":null,"recommended":false,"version":"1.2","offline_predecessor_ids":[],"name":"SUSE Manager Provisioning Unlimited Virtual","former_identifier":"SUSE-Manager-Prov-Unlimited-Virtual","release_type":null,"friendly_name":"SUSE Manager Provisioning Unlimited Virtual 1.2","migration_extra":false,"friendly_version":"1.2","extensions":[],"release_stage":"released","identifier":"SUSE-Manager-Prov-Unlimited-Virtual","id":1204},{"name":"SUSE Manager Provisioning Unlimited Virtual Z","offline_predecessor_ids":[],"friendly_name":"SUSE Manager Provisioning Unlimited Virtual Z 1.2","migration_extra":false,"release_type":null,"former_identifier":"SUSE-Manager-Prov-Unlimited-Virtual-Z","recommended":false,"version":"1.2","extensions":[],"release_stage":"released","id":1205,"identifier":"SUSE-Manager-Prov-Unlimited-Virtual-Z","friendly_version":"1.2","eula_url":"","arch":null,"description":null,"shortname":null,"free":false,"cpe":null,"product_type":"extension","predecessor_ids":[],"online_predecessor_ids":[],"repositories":[],"product_class":"SM_ENT_PROV_Z"}]},{"repositories":[{"description":"SLE11-SP1-Debuginfo-Pool for sle-11-i586","name":"SLE11-SP1-Debuginfo-Pool","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Pool/sle-11-i586/","enabled":false,"id":680},{"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Updates/sle-11-i586/","enabled":false,"id":682,"description":"SLE11-SP1-Debuginfo-Updates for sle-11-i586","name":"SLE11-SP1-Debuginfo-Updates","installer_updates":false},{"description":"SLES11-SP1-Updates for sle-11-i586","installer_updates":false,"name":"SLES11-SP1-Updates","url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-Updates/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true,"id":684,"enabled":true},{"description":"SLES11-SP1-Pool for sle-11-i586","installer_updates":false,"name":"SLES11-SP1-Pool","distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-Pool/sle-11-i586/","enabled":true,"id":686},{"enabled":true,"id":687,"distro_target":"sle-11-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-Pool/sle-11-s390x/","installer_updates":false,"name":"SLES11-SP1-Pool","description":"SLES11-SP1-Pool for sle-11-s390x"},{"distro_target":"sle-11-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Updates/sle-11-s390x/","enabled":false,"id":688,"description":"SLE11-SP1-Debuginfo-Updates for sle-11-s390x","installer_updates":false,"name":"SLE11-SP1-Debuginfo-Updates"},{"description":"SLES11-SP1-Updates for sle-11-s390x","installer_updates":false,"name":"SLES11-SP1-Updates","distro_target":"sle-11-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-Updates/sle-11-s390x/","enabled":true,"id":691},{"distro_target":"sle-11-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Pool/sle-11-s390x/","enabled":false,"id":692,"description":"SLE11-SP1-Debuginfo-Pool for sle-11-s390x","installer_updates":false,"name":"SLE11-SP1-Debuginfo-Pool"},{"description":"SLES11-SP1-Updates for sle-11-x86_64","name":"SLES11-SP1-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-Updates/sle-11-x86_64/","enabled":true,"id":705},{"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Pool/sle-11-x86_64/","enabled":false,"id":707,"description":"SLE11-SP1-Debuginfo-Pool for sle-11-x86_64","name":"SLE11-SP1-Debuginfo-Pool","installer_updates":false},{"installer_updates":false,"name":"SLES11-SP1-Pool","description":"SLES11-SP1-Pool for sle-11-x86_64","enabled":true,"id":711,"distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-Pool/sle-11-x86_64/"},{"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Updates/sle-11-x86_64/","enabled":false,"id":715,"description":"SLE11-SP1-Debuginfo-Updates for sle-11-x86_64","name":"SLE11-SP1-Debuginfo-Updates","installer_updates":false},{"distro_target":"sle-11-ppc64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-Pool/sle-11-ppc64/","enabled":true,"id":919,"description":"SLES11-SP1-Pool for sle-11-ppc64","installer_updates":false,"name":"SLES11-SP1-Pool"},{"name":"SLES11-SP1-Updates","installer_updates":false,"description":"SLES11-SP1-Updates for sle-11-ppc64","enabled":true,"id":922,"autorefresh":true,"distro_target":"sle-11-ppc64","url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-Updates/sle-11-ppc64/"},{"description":"SLE11-SP1-Debuginfo-Updates for sle-11-ppc64","installer_updates":false,"name":"SLE11-SP1-Debuginfo-Updates","url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Updates/sle-11-ppc64/","distro_target":"sle-11-ppc64","autorefresh":true,"id":924,"enabled":false},{"enabled":false,"id":925,"distro_target":"sle-11-ppc64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Pool/sle-11-ppc64/","installer_updates":false,"name":"SLE11-SP1-Debuginfo-Pool","description":"SLE11-SP1-Debuginfo-Pool for sle-11-ppc64"},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Pool/sle-11-ia64/","autorefresh":true,"distro_target":"sle-11-ia64","id":970,"enabled":false,"description":"SLE11-SP1-Debuginfo-Pool for sle-11-ia64","name":"SLE11-SP1-Debuginfo-Pool","installer_updates":false},{"installer_updates":false,"name":"SLE11-SP1-Debuginfo-Updates","description":"SLE11-SP1-Debuginfo-Updates for sle-11-ia64","enabled":false,"id":971,"distro_target":"sle-11-ia64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Updates/sle-11-ia64/"},{"url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-Updates/sle-11-ia64/","autorefresh":true,"distro_target":"sle-11-ia64","id":987,"enabled":true,"description":"SLES11-SP1-Updates for sle-11-ia64","name":"SLES11-SP1-Updates","installer_updates":false},{"description":"SLES11-SP1-Pool for sle-11-ia64","name":"SLES11-SP1-Pool","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-Pool/sle-11-ia64/","autorefresh":true,"distro_target":"sle-11-ia64","id":991,"enabled":true},{"installer_updates":false,"name":"SUSE-Manager-Proxy-1.2-Updates","description":"SUSE-Manager-Proxy-1.2-Updates for sle-11-x86_64","enabled":true,"id":997,"distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SUSE-Manager-Proxy-1.2-Updates/sle-11-x86_64/"},{"distro_target":"sle-11-x86_64","autorefresh":false,"url":"https://updates.suse.com/repo/$RCE/SUSE-Manager-Proxy-1.2-Pool/sle-11-x86_64/","enabled":true,"id":998,"description":"SUSE-Manager-Proxy-1.2-Pool for sle-11-x86_64","installer_updates":false,"name":"SUSE-Manager-Proxy-1.2-Pool"}],"online_predecessor_ids":[],"product_class":"SMP","predecessor_ids":[],"cpe":null,"product_type":"base","shortname":null,"description":null,"free":false,"arch":null,"eula_url":"","friendly_version":"1.2","id":1000,"release_stage":"released","identifier":"SUSE-Manager-Proxy","extensions":[],"version":"1.2","recommended":false,"migration_extra":false,"friendly_name":"SUSE Manager Proxy 1.2","release_type":null,"former_identifier":"SUSE-Manager-Proxy","name":"SUSE Manager Proxy","offline_predecessor_ids":[]},{"offline_predecessor_ids":[],"name":"SUSE Manager Server x86 and x86-64","release_type":null,"former_identifier":"SUSE-Manager-Server","friendly_name":"SUSE Manager Server x86 and x86-64 1.7 x86_64","migration_extra":false,"recommended":false,"version":"1.7","extensions":[{"friendly_version":"1.2","extensions":[],"identifier":"SUSE-Manager-Mgmt-Single","release_stage":"released","id":1076,"recommended":false,"version":"1.2","offline_predecessor_ids":[],"name":"SUSE Manager Mgmt Single","former_identifier":"SUSE-Manager-Mgmt-Single","release_type":null,"friendly_name":"SUSE Manager Mgmt Single 1.2","migration_extra":false,"predecessor_ids":[],"online_predecessor_ids":[],"repositories":[],"product_class":"SM_ENT_MGM_S","product_type":"extension","cpe":null,"free":false,"shortname":null,"description":null,"eula_url":"","arch":null},{"friendly_version":"1.2","release_stage":"released","identifier":"SUSE-Manager-Mgmt-Unlimited-Virtual","id":1078,"extensions":[],"version":"1.2","recommended":false,"migration_extra":false,"friendly_name":"SUSE Manager Mgmt Unlimited Virtual 1.2","release_type":null,"former_identifier":"SUSE-Manager-Mgmt-Unlimited-Virtual","name":"SUSE Manager Mgmt Unlimited Virtual","offline_predecessor_ids":[],"product_class":"SM_ENT_MGM_V","online_predecessor_ids":[],"repositories":[],"predecessor_ids":[],"cpe":null,"product_type":"extension","description":null,"shortname":null,"free":false,"arch":null,"eula_url":""},{"product_type":"extension","cpe":null,"product_class":"SM_ENT_PROV_S","online_predecessor_ids":[],"repositories":[],"predecessor_ids":[],"arch":null,"eula_url":"","free":false,"description":null,"shortname":null,"release_stage":"released","identifier":"SUSE-Manager-Prov-Single","id":1097,"extensions":[],"friendly_version":"1.2","former_identifier":"SUSE-Manager-Prov-Single","release_type":null,"friendly_name":"SUSE Manager Mgmt Single 1.2","migration_extra":false,"offline_predecessor_ids":[],"name":"SUSE Manager Mgmt Single","version":"1.2","recommended":false},{"predecessor_ids":[],"online_predecessor_ids":[],"product_class":"SM_ENT_MGM_Z","repositories":[],"product_type":"extension","cpe":null,"free":false,"shortname":null,"description":null,"eula_url":"","arch":null,"friendly_version":"1.2","extensions":[],"id":1200,"release_stage":"released","identifier":"SUSE-Manager-Mgmt-Unlimited-Virtual-Z","recommended":false,"version":"1.2","offline_predecessor_ids":[],"name":"SUSE Manager Mgmt Unlimited Virtual Z","release_type":null,"former_identifier":"SUSE-Manager-Mgmt-Unlimited-Virtual-Z","migration_extra":false,"friendly_name":"SUSE Manager Mgmt Unlimited Virtual Z 1.2"},{"shortname":null,"description":null,"free":false,"arch":null,"eula_url":"","repositories":[],"online_predecessor_ids":[],"product_class":"SM_ENT_MON_S","predecessor_ids":[],"cpe":null,"product_type":"extension","version":"1.2","recommended":false,"migration_extra":false,"friendly_name":"SUSE Manager Monitoring Single 1.2","former_identifier":"SUSE-Manager-Mon-Single","release_type":null,"name":"SUSE Manager Monitoring Single","offline_predecessor_ids":[],"friendly_version":"1.2","release_stage":"released","id":1201,"identifier":"SUSE-Manager-Mon-Single","extensions":[]},{"product_type":"extension","cpe":null,"online_predecessor_ids":[],"product_class":"SM_ENT_MON_V","repositories":[],"predecessor_ids":[],"arch":null,"eula_url":"","free":false,"description":null,"shortname":null,"release_stage":"released","id":1202,"identifier":"SUSE-Manager-Mon-Unlimited-Virtual","extensions":[],"friendly_version":"1.2","release_type":null,"former_identifier":"SUSE-Manager-Mon-Unlimited-Virtual","migration_extra":false,"friendly_name":"SUSE Manager Monitoring Unlimited Virtual 1.2","offline_predecessor_ids":[],"name":"SUSE Manager Monitoring Unlimited Virtual","version":"1.2","recommended":false},{"shortname":null,"description":null,"free":false,"eula_url":"","arch":null,"predecessor_ids":[],"online_predecessor_ids":[],"repositories":[],"product_class":"SM_ENT_MON_Z","cpe":null,"product_type":"extension","recommended":false,"version":"1.2","name":"SUSE Manager Monitoring Unlimited Virtual Z","offline_predecessor_ids":[],"friendly_name":"SUSE Manager Monitoring Unlimited Virtual Z 1.2","migration_extra":false,"release_type":null,"former_identifier":"SUSE-Manager-Mon-Unlimited-Virtual-Z","friendly_version":"1.2","extensions":[],"identifier":"SUSE-Manager-Mon-Unlimited-Virtual-Z","release_stage":"released","id":1203},{"eula_url":"","arch":null,"description":null,"shortname":null,"free":false,"cpe":null,"product_type":"extension","predecessor_ids":[],"repositories":[],"online_predecessor_ids":[],"product_class":"SM_ENT_PROV_V","name":"SUSE Manager Provisioning Unlimited Virtual","offline_predecessor_ids":[],"friendly_name":"SUSE Manager Provisioning Unlimited Virtual 1.2","migration_extra":false,"former_identifier":"SUSE-Manager-Prov-Unlimited-Virtual","release_type":null,"recommended":false,"version":"1.2","extensions":[],"id":1204,"release_stage":"released","identifier":"SUSE-Manager-Prov-Unlimited-Virtual","friendly_version":"1.2"},{"version":"1.2","recommended":false,"former_identifier":"SUSE-Manager-Prov-Unlimited-Virtual-Z","release_type":null,"migration_extra":false,"friendly_name":"SUSE Manager Provisioning Unlimited Virtual Z 1.2","offline_predecessor_ids":[],"name":"SUSE Manager Provisioning Unlimited Virtual Z","friendly_version":"1.2","identifier":"SUSE-Manager-Prov-Unlimited-Virtual-Z","release_stage":"released","id":1205,"extensions":[],"free":false,"shortname":null,"description":null,"arch":null,"eula_url":"","repositories":[],"online_predecessor_ids":[],"product_class":"SM_ENT_PROV_Z","predecessor_ids":[],"product_type":"extension","cpe":null}],"release_stage":"released","identifier":"SUSE-Manager-Server","id":1001,"friendly_version":"1.7","eula_url":"","arch":"x86_64","free":false,"description":null,"shortname":null,"product_type":"base","cpe":null,"predecessor_ids":[],"online_predecessor_ids":[],"product_class":"SMS-X86","repositories":[{"name":"SLES11-SP1-Updates","installer_updates":false,"description":"SLES11-SP1-Updates for sle-11-x86_64","enabled":true,"id":705,"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-Updates/sle-11-x86_64/"},{"distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Pool/sle-11-x86_64/","enabled":false,"id":707,"description":"SLE11-SP1-Debuginfo-Pool for sle-11-x86_64","installer_updates":false,"name":"SLE11-SP1-Debuginfo-Pool"},{"name":"SLES11-SP2-Core","installer_updates":false,"description":"SLES11-SP2-Core for sle-11-x86_64","id":709,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP2-Core/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64"},{"installer_updates":false,"name":"SLES11-SP1-Pool","description":"SLES11-SP1-Pool for sle-11-x86_64","id":711,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-Pool/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true},{"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-Debuginfo-Updates/sle-11-x86_64/","enabled":false,"id":712,"description":"SLE11-SP2-Debuginfo-Updates for sle-11-x86_64","name":"SLE11-SP2-Debuginfo-Updates","installer_updates":false},{"name":"SLES11-SP2-Updates","installer_updates":false,"description":"SLES11-SP2-Updates for sle-11-x86_64","id":714,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP2-Updates/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64"},{"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Updates/sle-11-x86_64/","enabled":false,"id":715,"description":"SLE11-SP1-Debuginfo-Updates for sle-11-x86_64","name":"SLE11-SP1-Debuginfo-Updates","installer_updates":false},{"description":"SLE11-SP2-Debuginfo-Core for sle-11-x86_64","installer_updates":false,"name":"SLE11-SP2-Debuginfo-Core","distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-Debuginfo-Core/sle-11-x86_64/","enabled":false,"id":716},{"url":"https://updates.suse.com/repo/$RCE/SUSE-Manager-Server-1.7-Pool/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":false,"id":995,"enabled":true,"description":"SUSE-Manager-Server-1.7-Pool for sle-11-x86_64","installer_updates":false,"name":"SUSE-Manager-Server-1.7-Pool"},{"description":"SUSE-Manager-Server-1.7-Updates for sle-11-x86_64","name":"SUSE-Manager-Server-1.7-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SUSE-Manager-Server-1.7-Updates/sle-11-x86_64/","enabled":true,"id":996},{"installer_updates":false,"name":"SLES11-SP2-SUSE-Manager-Tools","description":"SLES11-SP2-SUSE-Manager-Tools for sle-11-i586","enabled":false,"id":1567,"distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP2-SUSE-Manager-Tools/sle-11-i586/"},{"distro_target":"sle-11-ia64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP2-SUSE-Manager-Tools/sle-11-ia64/","enabled":false,"id":1568,"description":"SLES11-SP2-SUSE-Manager-Tools for sle-11-ia64","installer_updates":false,"name":"SLES11-SP2-SUSE-Manager-Tools"},{"description":"SLES11-SP2-SUSE-Manager-Tools for sle-11-ppc64","name":"SLES11-SP2-SUSE-Manager-Tools","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP2-SUSE-Manager-Tools/sle-11-ppc64/","autorefresh":true,"distro_target":"sle-11-ppc64","id":1569,"enabled":false},{"name":"SLES11-SP2-SUSE-Manager-Tools","installer_updates":false,"description":"SLES11-SP2-SUSE-Manager-Tools for sle-11-s390x","enabled":false,"id":1570,"autorefresh":true,"distro_target":"sle-11-s390x","url":"https://updates.suse.com/repo/$RCE/SLES11-SP2-SUSE-Manager-Tools/sle-11-s390x/"},{"installer_updates":false,"name":"SLES11-SP2-SUSE-Manager-Tools","description":"SLES11-SP2-SUSE-Manager-Tools for sle-11-x86_64","id":1571,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP2-SUSE-Manager-Tools/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true}]},{"release_stage":"released","id":1002,"identifier":"SUSE-Manager-Proxy","extensions":[],"friendly_version":"1.7","migration_extra":false,"friendly_name":"SUSE Manager Proxy 1.7 x86_64","release_type":null,"former_identifier":"SUSE-Manager-Proxy","name":"SUSE Manager Proxy","offline_predecessor_ids":[],"version":"1.7","recommended":false,"cpe":null,"product_type":"base","product_class":"SMP","online_predecessor_ids":[],"repositories":[{"installer_updates":false,"name":"SLES11-SP1-Updates","description":"SLES11-SP1-Updates for sle-11-x86_64","enabled":true,"id":705,"distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-Updates/sle-11-x86_64/"},{"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Pool/sle-11-x86_64/","enabled":false,"id":707,"description":"SLE11-SP1-Debuginfo-Pool for sle-11-x86_64","name":"SLE11-SP1-Debuginfo-Pool","installer_updates":false},{"description":"SLES11-SP2-Core for sle-11-x86_64","name":"SLES11-SP2-Core","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP2-Core/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64","id":709,"enabled":true},{"description":"SLES11-SP1-Pool for sle-11-x86_64","installer_updates":false,"name":"SLES11-SP1-Pool","distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-Pool/sle-11-x86_64/","enabled":true,"id":711},{"id":712,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-Debuginfo-Updates/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64","name":"SLE11-SP2-Debuginfo-Updates","installer_updates":false,"description":"SLE11-SP2-Debuginfo-Updates for sle-11-x86_64"},{"installer_updates":false,"name":"SLES11-SP2-Updates","description":"SLES11-SP2-Updates for sle-11-x86_64","id":714,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP2-Updates/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true},{"enabled":false,"id":715,"distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Updates/sle-11-x86_64/","installer_updates":false,"name":"SLE11-SP1-Debuginfo-Updates","description":"SLE11-SP1-Debuginfo-Updates for sle-11-x86_64"},{"enabled":false,"id":716,"distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-Debuginfo-Core/sle-11-x86_64/","installer_updates":false,"name":"SLE11-SP2-Debuginfo-Core","description":"SLE11-SP2-Debuginfo-Core for sle-11-x86_64"},{"name":"SUSE-Manager-Proxy-1.7-Updates","installer_updates":false,"description":"SUSE-Manager-Proxy-1.7-Updates for sle-11-x86_64","id":999,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SUSE-Manager-Proxy-1.7-Updates/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64"},{"autorefresh":false,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SUSE-Manager-Proxy-1.7-Pool/sle-11-x86_64/","enabled":true,"id":1000,"description":"SUSE-Manager-Proxy-1.7-Pool for sle-11-x86_64","name":"SUSE-Manager-Proxy-1.7-Pool","installer_updates":false}],"predecessor_ids":[],"arch":"x86_64","eula_url":"","description":null,"shortname":null,"free":false},{"friendly_version":"11 SP1","extensions":[{"free":true,"shortname":null,"description":null,"arch":null,"eula_url":"","product_class":"SLE-SDK","online_predecessor_ids":[],"repositories":[{"description":"SLE11-SDK-SP1-Updates for sle-11-ia64","name":"SLE11-SDK-SP1-Updates","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Updates/sle-11-ia64/","autorefresh":true,"distro_target":"sle-11-ia64","id":1257,"enabled":true},{"name":"SLE11-SDK-SP1-Pool","installer_updates":false,"description":"SLE11-SDK-SP1-Pool for sle-11-ia64","id":1258,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-ia64/","autorefresh":true,"distro_target":"sle-11-ia64"},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-s390x/","autorefresh":true,"distro_target":"sle-11-s390x","id":1259,"enabled":true,"description":"SLE11-SDK-SP1-Pool for sle-11-s390x","name":"SLE11-SDK-SP1-Pool","installer_updates":false},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Updates/sle-11-ppc64/","distro_target":"sle-11-ppc64","autorefresh":true,"id":1260,"enabled":true,"description":"SLE11-SDK-SP1-Updates for sle-11-ppc64","installer_updates":false,"name":"SLE11-SDK-SP1-Updates"},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-ppc64/","autorefresh":true,"distro_target":"sle-11-ppc64","id":1261,"enabled":true,"description":"SLE11-SDK-SP1-Pool for sle-11-ppc64","name":"SLE11-SDK-SP1-Pool","installer_updates":false},{"distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Updates/sle-11-i586/","enabled":true,"id":1262,"description":"SLE11-SDK-SP1-Updates for sle-11-i586","installer_updates":false,"name":"SLE11-SDK-SP1-Updates"},{"enabled":true,"id":1263,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-i586/","name":"SLE11-SDK-SP1-Pool","installer_updates":false,"description":"SLE11-SDK-SP1-Pool for sle-11-i586"},{"description":"SLE11-SDK-SP1-Pool for sle-11-x86_64","installer_updates":false,"name":"SLE11-SDK-SP1-Pool","distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-x86_64/","enabled":true,"id":1264},{"distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Updates/sle-11-x86_64/","enabled":true,"id":1265,"description":"SLE11-SDK-SP1-Updates for sle-11-x86_64","installer_updates":false,"name":"SLE11-SDK-SP1-Updates"},{"id":1266,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Updates/sle-11-s390x/","autorefresh":true,"distro_target":"sle-11-s390x","name":"SLE11-SDK-SP1-Updates","installer_updates":false,"description":"SLE11-SDK-SP1-Updates for sle-11-s390x"}],"predecessor_ids":[],"product_type":"extension","cpe":null,"version":"11.1","recommended":false,"former_identifier":"sle-sdk","release_type":null,"friendly_name":"SUSE Linux Enterprise Software Development Kit 11 SP1","migration_extra":false,"offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Software Development Kit","friendly_version":"11 SP1","id":1159,"release_stage":"released","identifier":"sle-sdk","extensions":[]},{"recommended":false,"version":"11.1","name":"SUSE Linux Enterprise Software Development Kit","offline_predecessor_ids":[],"friendly_name":"SUSE Linux Enterprise Software Development Kit 11 SP1 (Migration)","migration_extra":false,"release_type":null,"former_identifier":"sle-sdk-SP2-migration","friendly_version":"11 SP1","extensions":[],"release_stage":"released","id":1163,"identifier":"sle-sdk-SP2-migration","description":null,"shortname":null,"free":true,"eula_url":"","arch":null,"predecessor_ids":[],"online_predecessor_ids":[],"product_class":"SLE-SDK","repositories":[{"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-ia64/","autorefresh":true,"distro_target":"sle-11-ia64","id":1267,"enabled":true,"description":"SLE11-SDK-SP2-Core for sle-11-ia64","name":"SLE11-SDK-SP2-Core","installer_updates":false},{"installer_updates":false,"name":"SLE11-SDK-SP2-Core","description":"SLE11-SDK-SP2-Core for sle-11-s390x","enabled":true,"id":1268,"distro_target":"sle-11-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-s390x/"},{"description":"SLE11-SDK-SP2-Updates for sle-11-s390x","name":"SLE11-SDK-SP2-Updates","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-s390x/","autorefresh":true,"distro_target":"sle-11-s390x","id":1269,"enabled":true},{"description":"SLE11-SDK-SP2-Updates for sle-11-ppc64","name":"SLE11-SDK-SP2-Updates","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-ppc64/","autorefresh":true,"distro_target":"sle-11-ppc64","id":1270,"enabled":true},{"id":1271,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true,"installer_updates":false,"name":"SLE11-SDK-SP2-Updates","description":"SLE11-SDK-SP2-Updates for sle-11-i586"},{"id":1272,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-ia64/","autorefresh":true,"distro_target":"sle-11-ia64","name":"SLE11-SDK-SP2-Updates","installer_updates":false,"description":"SLE11-SDK-SP2-Updates for sle-11-ia64"},{"name":"SLE11-SDK-SP2-Core","installer_updates":false,"description":"SLE11-SDK-SP2-Core for sle-11-ppc64","id":1273,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-ppc64/","autorefresh":true,"distro_target":"sle-11-ppc64"},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true,"id":1274,"enabled":true,"description":"SLE11-SDK-SP2-Core for sle-11-i586","installer_updates":false,"name":"SLE11-SDK-SP2-Core"},{"distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-x86_64/","enabled":true,"id":1275,"description":"SLE11-SDK-SP2-Core for sle-11-x86_64","installer_updates":false,"name":"SLE11-SDK-SP2-Core"},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true,"id":1276,"enabled":true,"description":"SLE11-SDK-SP2-Updates for sle-11-x86_64","installer_updates":false,"name":"SLE11-SDK-SP2-Updates"}],"cpe":null,"product_type":"extension"}],"identifier":"SUSE_SLED","release_stage":"released","id":1003,"recommended":false,"version":"11.1","name":"SUSE Linux Enterprise Desktop","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Desktop 11 SP1 ACER","former_identifier":"SUSE_SLED","release_type":"ACER","predecessor_ids":[],"online_predecessor_ids":[],"repositories":[{"enabled":false,"id":680,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Pool/sle-11-i586/","name":"SLE11-SP1-Debuginfo-Pool","installer_updates":false,"description":"SLE11-SP1-Debuginfo-Pool for sle-11-i586"},{"id":682,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Updates/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true,"installer_updates":false,"name":"SLE11-SP1-Debuginfo-Updates","description":"SLE11-SP1-Debuginfo-Updates for sle-11-i586"},{"name":"SLE11-SP1-Debuginfo-Updates","installer_updates":false,"description":"SLE11-SP1-Debuginfo-Updates for sle-11-s390x","enabled":false,"id":688,"autorefresh":true,"distro_target":"sle-11-s390x","url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Updates/sle-11-s390x/"},{"distro_target":"sle-11-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Pool/sle-11-s390x/","enabled":false,"id":692,"description":"SLE11-SP1-Debuginfo-Pool for sle-11-s390x","installer_updates":false,"name":"SLE11-SP1-Debuginfo-Pool"},{"name":"SLE11-SP1-Debuginfo-Pool","installer_updates":false,"description":"SLE11-SP1-Debuginfo-Pool for sle-11-x86_64","enabled":false,"id":707,"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Pool/sle-11-x86_64/"},{"id":715,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Updates/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64","name":"SLE11-SP1-Debuginfo-Updates","installer_updates":false,"description":"SLE11-SP1-Debuginfo-Updates for sle-11-x86_64"},{"installer_updates":false,"name":"SLED11-Extras","description":"SLED11-Extras for sle-11-i586","id":846,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLED11-Extras/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true},{"installer_updates":false,"name":"SLED11-SP1-Updates","description":"SLED11-SP1-Updates for sle-11-i586","id":851,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLED11-SP1-Updates/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true},{"id":852,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLED11-SP1-Pool/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true,"installer_updates":false,"name":"SLED11-SP1-Pool","description":"SLED11-SP1-Pool for sle-11-i586"},{"description":"SLED11-SP1-Updates for sle-11-x86_64","name":"SLED11-SP1-Updates","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLED11-SP1-Updates/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64","id":902,"enabled":true},{"enabled":false,"id":903,"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLED11-Extras/sle-11-x86_64/","name":"SLED11-Extras","installer_updates":false,"description":"SLED11-Extras for sle-11-x86_64"},{"description":"SLED11-SP1-Pool for sle-11-x86_64","installer_updates":false,"name":"SLED11-SP1-Pool","url":"https://updates.suse.com/repo/$RCE/SLED11-SP1-Pool/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true,"id":905,"enabled":true},{"description":"SLE11-SP1-Debuginfo-Updates for sle-11-ppc64","installer_updates":false,"name":"SLE11-SP1-Debuginfo-Updates","distro_target":"sle-11-ppc64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Updates/sle-11-ppc64/","enabled":false,"id":924},{"enabled":false,"id":925,"distro_target":"sle-11-ppc64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Pool/sle-11-ppc64/","installer_updates":false,"name":"SLE11-SP1-Debuginfo-Pool","description":"SLE11-SP1-Debuginfo-Pool for sle-11-ppc64"},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Pool/sle-11-ia64/","autorefresh":true,"distro_target":"sle-11-ia64","id":970,"enabled":false,"description":"SLE11-SP1-Debuginfo-Pool for sle-11-ia64","name":"SLE11-SP1-Debuginfo-Pool","installer_updates":false},{"enabled":false,"id":971,"autorefresh":true,"distro_target":"sle-11-ia64","url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Updates/sle-11-ia64/","name":"SLE11-SP1-Debuginfo-Updates","installer_updates":false,"description":"SLE11-SP1-Debuginfo-Updates for sle-11-ia64"}],"product_class":"7260","cpe":null,"product_type":"base","description":null,"shortname":null,"free":false,"eula_url":"","arch":null},{"cpe":null,"product_type":"base","online_predecessor_ids":[],"product_class":"7260","repositories":[{"description":"SLE11-SP1-Debuginfo-Pool for sle-11-i586","installer_updates":false,"name":"SLE11-SP1-Debuginfo-Pool","url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Pool/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true,"id":680,"enabled":false},{"enabled":false,"id":682,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Updates/sle-11-i586/","name":"SLE11-SP1-Debuginfo-Updates","installer_updates":false,"description":"SLE11-SP1-Debuginfo-Updates for sle-11-i586"},{"enabled":false,"id":688,"distro_target":"sle-11-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Updates/sle-11-s390x/","installer_updates":false,"name":"SLE11-SP1-Debuginfo-Updates","description":"SLE11-SP1-Debuginfo-Updates for sle-11-s390x"},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Pool/sle-11-s390x/","autorefresh":true,"distro_target":"sle-11-s390x","id":692,"enabled":false,"description":"SLE11-SP1-Debuginfo-Pool for sle-11-s390x","name":"SLE11-SP1-Debuginfo-Pool","installer_updates":false},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Pool/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true,"id":707,"enabled":false,"description":"SLE11-SP1-Debuginfo-Pool for sle-11-x86_64","installer_updates":false,"name":"SLE11-SP1-Debuginfo-Pool"},{"installer_updates":false,"name":"SLE11-SP2-Debuginfo-Updates","description":"SLE11-SP2-Debuginfo-Updates for sle-11-x86_64","enabled":false,"id":712,"distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-Debuginfo-Updates/sle-11-x86_64/"},{"id":715,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Updates/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true,"installer_updates":false,"name":"SLE11-SP1-Debuginfo-Updates","description":"SLE11-SP1-Debuginfo-Updates for sle-11-x86_64"},{"enabled":false,"id":716,"distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-Debuginfo-Core/sle-11-x86_64/","installer_updates":false,"name":"SLE11-SP2-Debuginfo-Core","description":"SLE11-SP2-Debuginfo-Core for sle-11-x86_64"},{"name":"SLE11-SP2-Debuginfo-Core","installer_updates":false,"description":"SLE11-SP2-Debuginfo-Core for sle-11-i586","enabled":false,"id":717,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-Debuginfo-Core/sle-11-i586/"},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-Debuginfo-Updates/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","id":719,"enabled":false,"description":"SLE11-SP2-Debuginfo-Updates for sle-11-i586","name":"SLE11-SP2-Debuginfo-Updates","installer_updates":false},{"description":"SLE11-SP2-Debuginfo-Updates for sle-11-s390x","name":"SLE11-SP2-Debuginfo-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-s390x","url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-Debuginfo-Updates/sle-11-s390x/","enabled":false,"id":725},{"id":728,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-Debuginfo-Core/sle-11-s390x/","distro_target":"sle-11-s390x","autorefresh":true,"installer_updates":false,"name":"SLE11-SP2-Debuginfo-Core","description":"SLE11-SP2-Debuginfo-Core for sle-11-s390x"},{"url":"https://updates.suse.com/repo/$RCE/SLED11-Extras/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","id":846,"enabled":false,"description":"SLED11-Extras for sle-11-i586","name":"SLED11-Extras","installer_updates":false},{"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLED11-SP1-Updates/sle-11-i586/","enabled":true,"id":851,"description":"SLED11-SP1-Updates for sle-11-i586","name":"SLED11-SP1-Updates","installer_updates":false},{"enabled":true,"id":852,"distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLED11-SP1-Pool/sle-11-i586/","installer_updates":false,"name":"SLED11-SP1-Pool","description":"SLED11-SP1-Pool for sle-11-i586"},{"enabled":true,"id":856,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLED11-SP2-Core/sle-11-i586/","name":"SLED11-SP2-Core","installer_updates":false,"description":"SLED11-SP2-Core for sle-11-i586"},{"description":"SLED11-SP2-Updates for sle-11-i586","name":"SLED11-SP2-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLED11-SP2-Updates/sle-11-i586/","enabled":true,"id":857},{"name":"SLED11-SP2-Updates","installer_updates":false,"description":"SLED11-SP2-Updates for sle-11-x86_64","id":886,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLED11-SP2-Updates/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64"},{"enabled":true,"id":887,"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLED11-SP2-Core/sle-11-x86_64/","name":"SLED11-SP2-Core","installer_updates":false,"description":"SLED11-SP2-Core for sle-11-x86_64"},{"url":"https://updates.suse.com/repo/$RCE/SLED11-SP1-Updates/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true,"id":902,"enabled":true,"description":"SLED11-SP1-Updates for sle-11-x86_64","installer_updates":false,"name":"SLED11-SP1-Updates"},{"installer_updates":false,"name":"SLED11-Extras","description":"SLED11-Extras for sle-11-x86_64","id":903,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLED11-Extras/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true},{"enabled":true,"id":905,"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLED11-SP1-Pool/sle-11-x86_64/","name":"SLED11-SP1-Pool","installer_updates":false,"description":"SLED11-SP1-Pool for sle-11-x86_64"},{"description":"SLE11-SP1-Debuginfo-Updates for sle-11-ppc64","name":"SLE11-SP1-Debuginfo-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-ppc64","url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Updates/sle-11-ppc64/","enabled":false,"id":924},{"id":925,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Pool/sle-11-ppc64/","autorefresh":true,"distro_target":"sle-11-ppc64","name":"SLE11-SP1-Debuginfo-Pool","installer_updates":false,"description":"SLE11-SP1-Debuginfo-Pool for sle-11-ppc64"},{"name":"SLE11-SP2-Debuginfo-Updates","installer_updates":false,"description":"SLE11-SP2-Debuginfo-Updates for sle-11-ppc64","enabled":false,"id":926,"autorefresh":true,"distro_target":"sle-11-ppc64","url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-Debuginfo-Updates/sle-11-ppc64/"},{"name":"SLE11-SP2-Debuginfo-Core","installer_updates":false,"description":"SLE11-SP2-Debuginfo-Core for sle-11-ppc64","enabled":false,"id":930,"autorefresh":true,"distro_target":"sle-11-ppc64","url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-Debuginfo-Core/sle-11-ppc64/"},{"description":"SLE11-SP1-Debuginfo-Pool for sle-11-ia64","installer_updates":false,"name":"SLE11-SP1-Debuginfo-Pool","url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Pool/sle-11-ia64/","distro_target":"sle-11-ia64","autorefresh":true,"id":970,"enabled":false},{"description":"SLE11-SP1-Debuginfo-Updates for sle-11-ia64","name":"SLE11-SP1-Debuginfo-Updates","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Updates/sle-11-ia64/","autorefresh":true,"distro_target":"sle-11-ia64","id":971,"enabled":false},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-Debuginfo-Core/sle-11-ia64/","distro_target":"sle-11-ia64","autorefresh":true,"id":973,"enabled":false,"description":"SLE11-SP2-Debuginfo-Core for sle-11-ia64","installer_updates":false,"name":"SLE11-SP2-Debuginfo-Core"},{"description":"SLE11-SP2-Debuginfo-Updates for sle-11-ia64","installer_updates":false,"name":"SLE11-SP2-Debuginfo-Updates","url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-Debuginfo-Updates/sle-11-ia64/","distro_target":"sle-11-ia64","autorefresh":true,"id":975,"enabled":false},{"enabled":true,"id":1365,"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLED11-SP2-HP-BNB-Updates/sle-11-x86_64/","name":"SLED11-SP2-HP-BNB-Updates","installer_updates":false,"description":"SLED11-SP2-HP-BNB-Updates for sle-11-x86_64"},{"description":"SLED11-SP2-HP-BNB-Updates for sle-11-i586","name":"SLED11-SP2-HP-BNB-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLED11-SP2-HP-BNB-Updates/sle-11-i586/","enabled":true,"id":1366}],"predecessor_ids":[],"arch":null,"eula_url":"","shortname":null,"description":null,"free":false,"identifier":"SUSE_SLED","release_stage":"released","id":1004,"extensions":[{"release_type":null,"former_identifier":"sle-sdk","migration_extra":false,"friendly_name":"SUSE Linux Enterprise Software Development Kit 11 SP2","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Software Development Kit","version":"11.2","recommended":false,"release_stage":"released","id":1160,"identifier":"sle-sdk","extensions":[],"friendly_version":"11 SP2","arch":null,"eula_url":"","free":true,"description":null,"shortname":null,"product_type":"extension","cpe":null,"online_predecessor_ids":[],"repositories":[{"autorefresh":true,"distro_target":"sle-11-ia64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Updates/sle-11-ia64/","enabled":true,"id":1257,"description":"SLE11-SDK-SP1-Updates for sle-11-ia64","name":"SLE11-SDK-SP1-Updates","installer_updates":false},{"distro_target":"sle-11-ia64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-ia64/","enabled":true,"id":1258,"description":"SLE11-SDK-SP1-Pool for sle-11-ia64","installer_updates":false,"name":"SLE11-SDK-SP1-Pool"},{"name":"SLE11-SDK-SP1-Pool","installer_updates":false,"description":"SLE11-SDK-SP1-Pool for sle-11-s390x","enabled":true,"id":1259,"autorefresh":true,"distro_target":"sle-11-s390x","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-s390x/"},{"installer_updates":false,"name":"SLE11-SDK-SP1-Updates","description":"SLE11-SDK-SP1-Updates for sle-11-ppc64","enabled":true,"id":1260,"distro_target":"sle-11-ppc64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Updates/sle-11-ppc64/"},{"name":"SLE11-SDK-SP1-Pool","installer_updates":false,"description":"SLE11-SDK-SP1-Pool for sle-11-ppc64","enabled":true,"id":1261,"autorefresh":true,"distro_target":"sle-11-ppc64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-ppc64/"},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Updates/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true,"id":1262,"enabled":true,"description":"SLE11-SDK-SP1-Updates for sle-11-i586","installer_updates":false,"name":"SLE11-SDK-SP1-Updates"},{"name":"SLE11-SDK-SP1-Pool","installer_updates":false,"description":"SLE11-SDK-SP1-Pool for sle-11-i586","id":1263,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586"},{"description":"SLE11-SDK-SP1-Pool for sle-11-x86_64","name":"SLE11-SDK-SP1-Pool","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64","id":1264,"enabled":true},{"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Updates/sle-11-x86_64/","enabled":true,"id":1265,"description":"SLE11-SDK-SP1-Updates for sle-11-x86_64","name":"SLE11-SDK-SP1-Updates","installer_updates":false},{"id":1266,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Updates/sle-11-s390x/","distro_target":"sle-11-s390x","autorefresh":true,"installer_updates":false,"name":"SLE11-SDK-SP1-Updates","description":"SLE11-SDK-SP1-Updates for sle-11-s390x"},{"name":"SLE11-SDK-SP2-Core","installer_updates":false,"description":"SLE11-SDK-SP2-Core for sle-11-ia64","enabled":true,"id":1267,"autorefresh":true,"distro_target":"sle-11-ia64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-ia64/"},{"description":"SLE11-SDK-SP2-Core for sle-11-s390x","name":"SLE11-SDK-SP2-Core","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-s390x/","autorefresh":true,"distro_target":"sle-11-s390x","id":1268,"enabled":true},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-s390x/","autorefresh":true,"distro_target":"sle-11-s390x","id":1269,"enabled":true,"description":"SLE11-SDK-SP2-Updates for sle-11-s390x","name":"SLE11-SDK-SP2-Updates","installer_updates":false},{"name":"SLE11-SDK-SP2-Updates","installer_updates":false,"description":"SLE11-SDK-SP2-Updates for sle-11-ppc64","enabled":true,"id":1270,"autorefresh":true,"distro_target":"sle-11-ppc64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-ppc64/"},{"enabled":true,"id":1271,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-i586/","name":"SLE11-SDK-SP2-Updates","installer_updates":false,"description":"SLE11-SDK-SP2-Updates for sle-11-i586"},{"id":1272,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-ia64/","distro_target":"sle-11-ia64","autorefresh":true,"installer_updates":false,"name":"SLE11-SDK-SP2-Updates","description":"SLE11-SDK-SP2-Updates for sle-11-ia64"},{"description":"SLE11-SDK-SP2-Core for sle-11-ppc64","name":"SLE11-SDK-SP2-Core","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-ppc64/","autorefresh":true,"distro_target":"sle-11-ppc64","id":1273,"enabled":true},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true,"id":1274,"enabled":true,"description":"SLE11-SDK-SP2-Core for sle-11-i586","installer_updates":false,"name":"SLE11-SDK-SP2-Core"},{"name":"SLE11-SDK-SP2-Core","installer_updates":false,"description":"SLE11-SDK-SP2-Core for sle-11-x86_64","enabled":true,"id":1275,"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-x86_64/"},{"description":"SLE11-SDK-SP2-Updates for sle-11-x86_64","name":"SLE11-SDK-SP2-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-x86_64/","enabled":true,"id":1276}],"product_class":"SLE-SDK","predecessor_ids":[]},{"product_type":"extension","cpe":null,"product_class":"SLE-SDK","online_predecessor_ids":[],"repositories":[{"name":"SLE11-SDK-SP3-Pool","installer_updates":false,"description":"SLE11-SDK-SP3-Pool for sle-11-i586","enabled":true,"id":1277,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Pool/sle-11-i586/"},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Pool/sle-11-ia64/","distro_target":"sle-11-ia64","autorefresh":true,"id":1278,"enabled":true,"description":"SLE11-SDK-SP3-Pool for sle-11-ia64","installer_updates":false,"name":"SLE11-SDK-SP3-Pool"},{"description":"SLE11-SDK-SP3-Updates for sle-11-ppc64","name":"SLE11-SDK-SP3-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-ppc64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Updates/sle-11-ppc64/","enabled":true,"id":1279},{"name":"SLE11-SDK-SP3-Updates","installer_updates":false,"description":"SLE11-SDK-SP3-Updates for sle-11-ia64","enabled":true,"id":1280,"autorefresh":true,"distro_target":"sle-11-ia64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Updates/sle-11-ia64/"},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Pool/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true,"id":1281,"enabled":true,"description":"SLE11-SDK-SP3-Pool for sle-11-x86_64","installer_updates":false,"name":"SLE11-SDK-SP3-Pool"},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Updates/sle-11-s390x/","distro_target":"sle-11-s390x","autorefresh":true,"id":1282,"enabled":true,"description":"SLE11-SDK-SP3-Updates for sle-11-s390x","installer_updates":false,"name":"SLE11-SDK-SP3-Updates"},{"enabled":true,"id":1283,"autorefresh":true,"distro_target":"sle-11-ppc64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Pool/sle-11-ppc64/","name":"SLE11-SDK-SP3-Pool","installer_updates":false,"description":"SLE11-SDK-SP3-Pool for sle-11-ppc64"},{"description":"SLE11-SDK-SP3-Updates for sle-11-x86_64","name":"SLE11-SDK-SP3-Updates","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Updates/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64","id":1284,"enabled":true},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Updates/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true,"id":1285,"enabled":true,"description":"SLE11-SDK-SP3-Updates for sle-11-i586","installer_updates":false,"name":"SLE11-SDK-SP3-Updates"},{"description":"SLE11-SDK-SP3-Pool for sle-11-s390x","name":"SLE11-SDK-SP3-Pool","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-s390x","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Pool/sle-11-s390x/","enabled":true,"id":1286}],"predecessor_ids":[],"arch":null,"eula_url":"","free":true,"description":null,"shortname":null,"release_stage":"released","identifier":"sle-sdk-SP3-migration","id":1164,"extensions":[],"friendly_version":"11 SP2","release_type":null,"former_identifier":"sle-sdk-SP3-migration","migration_extra":false,"friendly_name":"SUSE Linux Enterprise Software Development Kit 11 SP2 (Migration)","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Software Development Kit","version":"11.2","recommended":false}],"friendly_version":"11 SP2","friendly_name":"SUSE Linux Enterprise Desktop 11 SP2 HP-BNB-2010","migration_extra":false,"former_identifier":"SUSE_SLED","release_type":"HP-BNB-2010","name":"SUSE Linux Enterprise Desktop","offline_predecessor_ids":[],"version":"11.2","recommended":false},{"recommended":false,"version":"11.1","name":"SUSE Linux Enterprise Desktop","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Desktop 11 SP1 HP-BNB-2010 (Migration)","release_type":"HP-BNB-2010","former_identifier":"SUSE_SLED-SP2-migration","friendly_version":"11 SP1","extensions":[{"arch":null,"eula_url":"","free":true,"shortname":null,"description":null,"product_type":"extension","cpe":null,"product_class":"SLE-SDK","online_predecessor_ids":[],"repositories":[{"id":1257,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Updates/sle-11-ia64/","distro_target":"sle-11-ia64","autorefresh":true,"installer_updates":false,"name":"SLE11-SDK-SP1-Updates","description":"SLE11-SDK-SP1-Updates for sle-11-ia64"},{"description":"SLE11-SDK-SP1-Pool for sle-11-ia64","installer_updates":false,"name":"SLE11-SDK-SP1-Pool","distro_target":"sle-11-ia64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-ia64/","enabled":true,"id":1258},{"enabled":true,"id":1259,"distro_target":"sle-11-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-s390x/","installer_updates":false,"name":"SLE11-SDK-SP1-Pool","description":"SLE11-SDK-SP1-Pool for sle-11-s390x"},{"installer_updates":false,"name":"SLE11-SDK-SP1-Updates","description":"SLE11-SDK-SP1-Updates for sle-11-ppc64","enabled":true,"id":1260,"distro_target":"sle-11-ppc64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Updates/sle-11-ppc64/"},{"description":"SLE11-SDK-SP1-Pool for sle-11-ppc64","installer_updates":false,"name":"SLE11-SDK-SP1-Pool","distro_target":"sle-11-ppc64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-ppc64/","enabled":true,"id":1261},{"description":"SLE11-SDK-SP1-Updates for sle-11-i586","installer_updates":false,"name":"SLE11-SDK-SP1-Updates","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Updates/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true,"id":1262,"enabled":true},{"name":"SLE11-SDK-SP1-Pool","installer_updates":false,"description":"SLE11-SDK-SP1-Pool for sle-11-i586","enabled":true,"id":1263,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-i586/"},{"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-x86_64/","enabled":true,"id":1264,"description":"SLE11-SDK-SP1-Pool for sle-11-x86_64","name":"SLE11-SDK-SP1-Pool","installer_updates":false},{"id":1265,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Updates/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64","name":"SLE11-SDK-SP1-Updates","installer_updates":false,"description":"SLE11-SDK-SP1-Updates for sle-11-x86_64"},{"enabled":true,"id":1266,"autorefresh":true,"distro_target":"sle-11-s390x","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Updates/sle-11-s390x/","name":"SLE11-SDK-SP1-Updates","installer_updates":false,"description":"SLE11-SDK-SP1-Updates for sle-11-s390x"}],"predecessor_ids":[],"release_type":null,"former_identifier":"sle-sdk","migration_extra":false,"friendly_name":"SUSE Linux Enterprise Software Development Kit 11 SP1","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Software Development Kit","version":"11.1","recommended":false,"release_stage":"released","id":1159,"identifier":"sle-sdk","extensions":[],"friendly_version":"11 SP1"},{"product_type":"extension","cpe":null,"online_predecessor_ids":[],"repositories":[{"description":"SLE11-SDK-SP2-Core for sle-11-ia64","name":"SLE11-SDK-SP2-Core","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-ia64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-ia64/","enabled":true,"id":1267},{"installer_updates":false,"name":"SLE11-SDK-SP2-Core","description":"SLE11-SDK-SP2-Core for sle-11-s390x","id":1268,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-s390x/","distro_target":"sle-11-s390x","autorefresh":true},{"id":1269,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-s390x/","distro_target":"sle-11-s390x","autorefresh":true,"installer_updates":false,"name":"SLE11-SDK-SP2-Updates","description":"SLE11-SDK-SP2-Updates for sle-11-s390x"},{"distro_target":"sle-11-ppc64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-ppc64/","enabled":true,"id":1270,"description":"SLE11-SDK-SP2-Updates for sle-11-ppc64","installer_updates":false,"name":"SLE11-SDK-SP2-Updates"},{"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-i586/","enabled":true,"id":1271,"description":"SLE11-SDK-SP2-Updates for sle-11-i586","name":"SLE11-SDK-SP2-Updates","installer_updates":false},{"autorefresh":true,"distro_target":"sle-11-ia64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-ia64/","enabled":true,"id":1272,"description":"SLE11-SDK-SP2-Updates for sle-11-ia64","name":"SLE11-SDK-SP2-Updates","installer_updates":false},{"description":"SLE11-SDK-SP2-Core for sle-11-ppc64","name":"SLE11-SDK-SP2-Core","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-ppc64/","autorefresh":true,"distro_target":"sle-11-ppc64","id":1273,"enabled":true},{"installer_updates":false,"name":"SLE11-SDK-SP2-Core","description":"SLE11-SDK-SP2-Core for sle-11-i586","id":1274,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true},{"installer_updates":false,"name":"SLE11-SDK-SP2-Core","description":"SLE11-SDK-SP2-Core for sle-11-x86_64","id":1275,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true},{"enabled":true,"id":1276,"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-x86_64/","name":"SLE11-SDK-SP2-Updates","installer_updates":false,"description":"SLE11-SDK-SP2-Updates for sle-11-x86_64"}],"product_class":"SLE-SDK","predecessor_ids":[],"arch":null,"eula_url":"","free":true,"shortname":null,"description":null,"id":1163,"release_stage":"released","identifier":"sle-sdk-SP2-migration","extensions":[],"friendly_version":"11 SP1","former_identifier":"sle-sdk-SP2-migration","release_type":null,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Software Development Kit 11 SP1 (Migration)","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Software Development Kit","version":"11.1","recommended":false}],"id":1005,"release_stage":"released","identifier":"SUSE_SLED-SP2-migration","shortname":null,"description":null,"free":false,"eula_url":"","arch":null,"predecessor_ids":[],"online_predecessor_ids":[],"product_class":"7260","repositories":[{"url":"https://updates.suse.com/repo/$RCE/SLED11-SP1-Updates/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","id":851,"enabled":true,"description":"SLED11-SP1-Updates for sle-11-i586","name":"SLED11-SP1-Updates","installer_updates":false},{"url":"https://updates.suse.com/repo/$RCE/SLED11-SP1-Pool/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","id":852,"enabled":true,"description":"SLED11-SP1-Pool for sle-11-i586","name":"SLED11-SP1-Pool","installer_updates":false},{"description":"SLED11-SP2-Core for sle-11-i586","installer_updates":false,"name":"SLED11-SP2-Core","url":"https://updates.suse.com/repo/$RCE/SLED11-SP2-Core/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true,"id":856,"enabled":true},{"enabled":true,"id":857,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLED11-SP2-Updates/sle-11-i586/","name":"SLED11-SP2-Updates","installer_updates":false,"description":"SLED11-SP2-Updates for sle-11-i586"},{"enabled":true,"id":886,"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLED11-SP2-Updates/sle-11-x86_64/","name":"SLED11-SP2-Updates","installer_updates":false,"description":"SLED11-SP2-Updates for sle-11-x86_64"},{"description":"SLED11-SP2-Core for sle-11-x86_64","name":"SLED11-SP2-Core","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLED11-SP2-Core/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64","id":887,"enabled":true},{"name":"SLED11-SP1-Updates","installer_updates":false,"description":"SLED11-SP1-Updates for sle-11-x86_64","id":902,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLED11-SP1-Updates/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64"},{"url":"https://updates.suse.com/repo/$RCE/SLED11-SP1-Pool/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true,"id":905,"enabled":true,"description":"SLED11-SP1-Pool for sle-11-x86_64","installer_updates":false,"name":"SLED11-SP1-Pool"},{"url":"http://www.lsi.com/sep/Pages/SML/HP/NL/hp/bnb/2012/sle11sp2/","autorefresh":true,"distro_target":null,"id":1002,"enabled":true,"description":"LSI-Driver-HP-BNB-SLE11-SP2","name":"LSI-Driver-HP-BNB-SLE11-SP2","installer_updates":false},{"url":"http://www.broadcom.com/docs/linux_sta/repo/HP/bnb/2012/sle11sp2/","distro_target":null,"autorefresh":true,"id":1003,"enabled":true,"description":"Broadcom-Driver-HP-BNB-SLE11-SP2","installer_updates":false,"name":"Broadcom-Driver-HP-BNB-SLE11-SP2"}],"cpe":null,"product_type":"base"},{"eula_url":"","arch":null,"shortname":null,"description":null,"free":false,"cpe":null,"product_type":"extension","predecessor_ids":[],"repositories":[{"enabled":false,"id":680,"distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Pool/sle-11-i586/","installer_updates":false,"name":"SLE11-SP1-Debuginfo-Pool","description":"SLE11-SP1-Debuginfo-Pool for sle-11-i586"},{"description":"SLE11-SP1-Debuginfo-Updates for sle-11-i586","name":"SLE11-SP1-Debuginfo-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Updates/sle-11-i586/","enabled":false,"id":682},{"description":"SLES11-SP1-Updates for sle-11-i586","name":"SLES11-SP1-Updates","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-Updates/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","id":684,"enabled":true},{"id":686,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-Pool/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","name":"SLES11-SP1-Pool","installer_updates":false,"description":"SLES11-SP1-Pool for sle-11-i586"},{"description":"SLES11-SP1-Pool for sle-11-s390x","installer_updates":false,"name":"SLES11-SP1-Pool","url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-Pool/sle-11-s390x/","distro_target":"sle-11-s390x","autorefresh":true,"id":687,"enabled":true},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Updates/sle-11-s390x/","distro_target":"sle-11-s390x","autorefresh":true,"id":688,"enabled":false,"description":"SLE11-SP1-Debuginfo-Updates for sle-11-s390x","installer_updates":false,"name":"SLE11-SP1-Debuginfo-Updates"},{"id":691,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-Updates/sle-11-s390x/","distro_target":"sle-11-s390x","autorefresh":true,"installer_updates":false,"name":"SLES11-SP1-Updates","description":"SLES11-SP1-Updates for sle-11-s390x"},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Pool/sle-11-s390x/","distro_target":"sle-11-s390x","autorefresh":true,"id":692,"enabled":false,"description":"SLE11-SP1-Debuginfo-Pool for sle-11-s390x","installer_updates":false,"name":"SLE11-SP1-Debuginfo-Pool"},{"installer_updates":false,"name":"SLES11-SP1-Updates","description":"SLES11-SP1-Updates for sle-11-x86_64","id":705,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-Updates/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true},{"enabled":false,"id":707,"distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Pool/sle-11-x86_64/","installer_updates":false,"name":"SLE11-SP1-Debuginfo-Pool","description":"SLE11-SP1-Debuginfo-Pool for sle-11-x86_64"},{"name":"SLES11-SP1-Pool","installer_updates":false,"description":"SLES11-SP1-Pool for sle-11-x86_64","id":711,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-Pool/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64"},{"name":"SLE11-SP1-Debuginfo-Updates","installer_updates":false,"description":"SLE11-SP1-Debuginfo-Updates for sle-11-x86_64","enabled":false,"id":715,"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Updates/sle-11-x86_64/"},{"id":839,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-WebYaST-1.2-Updates/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true,"installer_updates":false,"name":"SLE11-SP1-WebYaST-1.2-Updates","description":"SLE11-SP1-WebYaST-1.2-Updates for sle-11-x86_64"},{"description":"SLE11-SP1-WebYaST-1.2-Pool for sle-11-i586","name":"SLE11-SP1-WebYaST-1.2-Pool","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-WebYaST-1.2-Pool/sle-11-i586/","enabled":true,"id":840},{"name":"SLE11-SP1-WebYaST-1.2-Pool","installer_updates":false,"description":"SLE11-SP1-WebYaST-1.2-Pool for sle-11-x86_64","id":841,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-WebYaST-1.2-Pool/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64"},{"description":"SLE11-SP1-WebYaST-1.2-Updates for sle-11-i586","installer_updates":false,"name":"SLE11-SP1-WebYaST-1.2-Updates","distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-WebYaST-1.2-Updates/sle-11-i586/","enabled":true,"id":842},{"description":"SLE11-SP1-SLMS-1.2-Pool for sle-11-x86_64","name":"SLE11-SP1-SLMS-1.2-Pool","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-SLMS-1.2-Pool/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64","id":913,"enabled":false},{"installer_updates":false,"name":"SLE11-SP1-SLMS-1.2-Updates","description":"SLE11-SP1-SLMS-1.2-Updates for sle-11-x86_64","id":918,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-SLMS-1.2-Updates/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true},{"enabled":true,"id":919,"distro_target":"sle-11-ppc64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-Pool/sle-11-ppc64/","installer_updates":false,"name":"SLES11-SP1-Pool","description":"SLES11-SP1-Pool for sle-11-ppc64"},{"autorefresh":true,"distro_target":"sle-11-ppc64","url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-Updates/sle-11-ppc64/","enabled":true,"id":922,"description":"SLES11-SP1-Updates for sle-11-ppc64","name":"SLES11-SP1-Updates","installer_updates":false},{"name":"SLE11-SP1-Debuginfo-Updates","installer_updates":false,"description":"SLE11-SP1-Debuginfo-Updates for sle-11-ppc64","enabled":false,"id":924,"autorefresh":true,"distro_target":"sle-11-ppc64","url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Updates/sle-11-ppc64/"},{"name":"SLE11-SP1-Debuginfo-Pool","installer_updates":false,"description":"SLE11-SP1-Debuginfo-Pool for sle-11-ppc64","enabled":false,"id":925,"autorefresh":true,"distro_target":"sle-11-ppc64","url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Pool/sle-11-ppc64/"},{"description":"SLE11-SP1-Debuginfo-Pool for sle-11-ia64","installer_updates":false,"name":"SLE11-SP1-Debuginfo-Pool","distro_target":"sle-11-ia64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Pool/sle-11-ia64/","enabled":false,"id":970},{"installer_updates":false,"name":"SLE11-SP1-Debuginfo-Updates","description":"SLE11-SP1-Debuginfo-Updates for sle-11-ia64","id":971,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Updates/sle-11-ia64/","distro_target":"sle-11-ia64","autorefresh":true},{"description":"SLES11-SP1-Updates for sle-11-ia64","name":"SLES11-SP1-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-ia64","url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-Updates/sle-11-ia64/","enabled":true,"id":987},{"distro_target":"sle-11-ia64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-Pool/sle-11-ia64/","enabled":true,"id":991,"description":"SLES11-SP1-Pool for sle-11-ia64","installer_updates":false,"name":"SLES11-SP1-Pool"},{"description":"SLE11-SP1-WebYaST-1.2-Pool for sle-11-s390x","name":"SLE11-SP1-WebYaST-1.2-Pool","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-WebYaST-1.2-Pool/sle-11-s390x/","autorefresh":true,"distro_target":"sle-11-s390x","id":1005,"enabled":true},{"enabled":true,"id":1006,"autorefresh":true,"distro_target":"sle-11-s390x","url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-WebYaST-1.2-Updates/sle-11-s390x/","name":"SLE11-SP1-WebYaST-1.2-Updates","installer_updates":false,"description":"SLE11-SP1-WebYaST-1.2-Updates for sle-11-s390x"},{"id":1007,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-StudioOnsite-1.2-Updates/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true,"installer_updates":false,"name":"SLE11-SP1-StudioOnsite-1.2-Updates","description":"SLE11-SP1-StudioOnsite-1.2-Updates for sle-11-x86_64"},{"description":"SLE11-SP1-StudioOnsite-1.2-Pool for sle-11-x86_64","installer_updates":false,"name":"SLE11-SP1-StudioOnsite-1.2-Pool","url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-StudioOnsite-1.2-Pool/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true,"id":1008,"enabled":true}],"online_predecessor_ids":[],"product_class":"STUDIOONSITE","name":"SUSE Studio OnSite","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"SUSE Studio OnSite 1.2","former_identifier":"sle-studioonsite","release_type":null,"recommended":false,"version":"1.2","extensions":[],"identifier":"sle-studioonsite","release_stage":"released","id":1006,"friendly_version":"1.2"},{"name":"SUSE Linux Enterprise Desktop","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Desktop 11 SP2 HP-CNB","release_type":"HP-CNB","former_identifier":"SUSE_SLED","recommended":false,"version":"11.2","extensions":[{"release_stage":"released","id":1160,"identifier":"sle-sdk","extensions":[],"friendly_version":"11 SP2","migration_extra":false,"friendly_name":"SUSE Linux Enterprise Software Development Kit 11 SP2","former_identifier":"sle-sdk","release_type":null,"name":"SUSE Linux Enterprise Software Development Kit","offline_predecessor_ids":[],"version":"11.2","recommended":false,"cpe":null,"product_type":"extension","product_class":"SLE-SDK","online_predecessor_ids":[],"repositories":[{"id":1257,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Updates/sle-11-ia64/","distro_target":"sle-11-ia64","autorefresh":true,"installer_updates":false,"name":"SLE11-SDK-SP1-Updates","description":"SLE11-SDK-SP1-Updates for sle-11-ia64"},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-ia64/","distro_target":"sle-11-ia64","autorefresh":true,"id":1258,"enabled":true,"description":"SLE11-SDK-SP1-Pool for sle-11-ia64","installer_updates":false,"name":"SLE11-SDK-SP1-Pool"},{"name":"SLE11-SDK-SP1-Pool","installer_updates":false,"description":"SLE11-SDK-SP1-Pool for sle-11-s390x","enabled":true,"id":1259,"autorefresh":true,"distro_target":"sle-11-s390x","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-s390x/"},{"name":"SLE11-SDK-SP1-Updates","installer_updates":false,"description":"SLE11-SDK-SP1-Updates for sle-11-ppc64","enabled":true,"id":1260,"autorefresh":true,"distro_target":"sle-11-ppc64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Updates/sle-11-ppc64/"},{"distro_target":"sle-11-ppc64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-ppc64/","enabled":true,"id":1261,"description":"SLE11-SDK-SP1-Pool for sle-11-ppc64","installer_updates":false,"name":"SLE11-SDK-SP1-Pool"},{"description":"SLE11-SDK-SP1-Updates for sle-11-i586","name":"SLE11-SDK-SP1-Updates","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Updates/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","id":1262,"enabled":true},{"name":"SLE11-SDK-SP1-Pool","installer_updates":false,"description":"SLE11-SDK-SP1-Pool for sle-11-i586","id":1263,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586"},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true,"id":1264,"enabled":true,"description":"SLE11-SDK-SP1-Pool for sle-11-x86_64","installer_updates":false,"name":"SLE11-SDK-SP1-Pool"},{"description":"SLE11-SDK-SP1-Updates for sle-11-x86_64","name":"SLE11-SDK-SP1-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Updates/sle-11-x86_64/","enabled":true,"id":1265},{"enabled":true,"id":1266,"distro_target":"sle-11-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Updates/sle-11-s390x/","installer_updates":false,"name":"SLE11-SDK-SP1-Updates","description":"SLE11-SDK-SP1-Updates for sle-11-s390x"},{"enabled":true,"id":1267,"autorefresh":true,"distro_target":"sle-11-ia64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-ia64/","name":"SLE11-SDK-SP2-Core","installer_updates":false,"description":"SLE11-SDK-SP2-Core for sle-11-ia64"},{"id":1268,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-s390x/","autorefresh":true,"distro_target":"sle-11-s390x","name":"SLE11-SDK-SP2-Core","installer_updates":false,"description":"SLE11-SDK-SP2-Core for sle-11-s390x"},{"enabled":true,"id":1269,"distro_target":"sle-11-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-s390x/","installer_updates":false,"name":"SLE11-SDK-SP2-Updates","description":"SLE11-SDK-SP2-Updates for sle-11-s390x"},{"installer_updates":false,"name":"SLE11-SDK-SP2-Updates","description":"SLE11-SDK-SP2-Updates for sle-11-ppc64","id":1270,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-ppc64/","distro_target":"sle-11-ppc64","autorefresh":true},{"description":"SLE11-SDK-SP2-Updates for sle-11-i586","name":"SLE11-SDK-SP2-Updates","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","id":1271,"enabled":true},{"installer_updates":false,"name":"SLE11-SDK-SP2-Updates","description":"SLE11-SDK-SP2-Updates for sle-11-ia64","enabled":true,"id":1272,"distro_target":"sle-11-ia64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-ia64/"},{"installer_updates":false,"name":"SLE11-SDK-SP2-Core","description":"SLE11-SDK-SP2-Core for sle-11-ppc64","id":1273,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-ppc64/","distro_target":"sle-11-ppc64","autorefresh":true},{"enabled":true,"id":1274,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-i586/","name":"SLE11-SDK-SP2-Core","installer_updates":false,"description":"SLE11-SDK-SP2-Core for sle-11-i586"},{"distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-x86_64/","enabled":true,"id":1275,"description":"SLE11-SDK-SP2-Core for sle-11-x86_64","installer_updates":false,"name":"SLE11-SDK-SP2-Core"},{"enabled":true,"id":1276,"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-x86_64/","name":"SLE11-SDK-SP2-Updates","installer_updates":false,"description":"SLE11-SDK-SP2-Updates for sle-11-x86_64"}],"predecessor_ids":[],"arch":null,"eula_url":"","description":null,"shortname":null,"free":true},{"cpe":null,"product_type":"extension","predecessor_ids":[],"online_predecessor_ids":[],"product_class":"SLE-SDK","repositories":[{"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Pool/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true,"id":1277,"enabled":true,"description":"SLE11-SDK-SP3-Pool for sle-11-i586","installer_updates":false,"name":"SLE11-SDK-SP3-Pool"},{"id":1278,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Pool/sle-11-ia64/","autorefresh":true,"distro_target":"sle-11-ia64","name":"SLE11-SDK-SP3-Pool","installer_updates":false,"description":"SLE11-SDK-SP3-Pool for sle-11-ia64"},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Updates/sle-11-ppc64/","distro_target":"sle-11-ppc64","autorefresh":true,"id":1279,"enabled":true,"description":"SLE11-SDK-SP3-Updates for sle-11-ppc64","installer_updates":false,"name":"SLE11-SDK-SP3-Updates"},{"installer_updates":false,"name":"SLE11-SDK-SP3-Updates","description":"SLE11-SDK-SP3-Updates for sle-11-ia64","enabled":true,"id":1280,"distro_target":"sle-11-ia64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Updates/sle-11-ia64/"},{"installer_updates":false,"name":"SLE11-SDK-SP3-Pool","description":"SLE11-SDK-SP3-Pool for sle-11-x86_64","id":1281,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Pool/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true},{"name":"SLE11-SDK-SP3-Updates","installer_updates":false,"description":"SLE11-SDK-SP3-Updates for sle-11-s390x","enabled":true,"id":1282,"autorefresh":true,"distro_target":"sle-11-s390x","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Updates/sle-11-s390x/"},{"name":"SLE11-SDK-SP3-Pool","installer_updates":false,"description":"SLE11-SDK-SP3-Pool for sle-11-ppc64","id":1283,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Pool/sle-11-ppc64/","autorefresh":true,"distro_target":"sle-11-ppc64"},{"id":1284,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Updates/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true,"installer_updates":false,"name":"SLE11-SDK-SP3-Updates","description":"SLE11-SDK-SP3-Updates for sle-11-x86_64"},{"enabled":true,"id":1285,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Updates/sle-11-i586/","name":"SLE11-SDK-SP3-Updates","installer_updates":false,"description":"SLE11-SDK-SP3-Updates for sle-11-i586"},{"enabled":true,"id":1286,"autorefresh":true,"distro_target":"sle-11-s390x","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Pool/sle-11-s390x/","name":"SLE11-SDK-SP3-Pool","installer_updates":false,"description":"SLE11-SDK-SP3-Pool for sle-11-s390x"}],"eula_url":"","arch":null,"description":null,"shortname":null,"free":true,"extensions":[],"release_stage":"released","id":1164,"identifier":"sle-sdk-SP3-migration","friendly_version":"11 SP2","name":"SUSE Linux Enterprise Software Development Kit","offline_predecessor_ids":[],"friendly_name":"SUSE Linux Enterprise Software Development Kit 11 SP2 (Migration)","migration_extra":false,"release_type":null,"former_identifier":"sle-sdk-SP3-migration","recommended":false,"version":"11.2"}],"identifier":"SUSE_SLED","release_stage":"released","id":1007,"friendly_version":"11 SP2","eula_url":"","arch":null,"description":null,"shortname":null,"free":false,"cpe":null,"product_type":"base","predecessor_ids":[],"online_predecessor_ids":[],"repositories":[{"name":"SLE11-SP1-Debuginfo-Pool","installer_updates":false,"description":"SLE11-SP1-Debuginfo-Pool for sle-11-i586","id":680,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Pool/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586"},{"description":"SLE11-SP1-Debuginfo-Updates for sle-11-i586","name":"SLE11-SP1-Debuginfo-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Updates/sle-11-i586/","enabled":false,"id":682},{"description":"SLE11-SP1-Debuginfo-Updates for sle-11-s390x","installer_updates":false,"name":"SLE11-SP1-Debuginfo-Updates","distro_target":"sle-11-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Updates/sle-11-s390x/","enabled":false,"id":688},{"distro_target":"sle-11-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Pool/sle-11-s390x/","enabled":false,"id":692,"description":"SLE11-SP1-Debuginfo-Pool for sle-11-s390x","installer_updates":false,"name":"SLE11-SP1-Debuginfo-Pool"},{"description":"SLE11-SP1-Debuginfo-Pool for sle-11-x86_64","name":"SLE11-SP1-Debuginfo-Pool","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Pool/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64","id":707,"enabled":false},{"id":712,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-Debuginfo-Updates/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true,"installer_updates":false,"name":"SLE11-SP2-Debuginfo-Updates","description":"SLE11-SP2-Debuginfo-Updates for sle-11-x86_64"},{"name":"SLE11-SP1-Debuginfo-Updates","installer_updates":false,"description":"SLE11-SP1-Debuginfo-Updates for sle-11-x86_64","enabled":false,"id":715,"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Updates/sle-11-x86_64/"},{"installer_updates":false,"name":"SLE11-SP2-Debuginfo-Core","description":"SLE11-SP2-Debuginfo-Core for sle-11-x86_64","id":716,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-Debuginfo-Core/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-Debuginfo-Core/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","id":717,"enabled":false,"description":"SLE11-SP2-Debuginfo-Core for sle-11-i586","name":"SLE11-SP2-Debuginfo-Core","installer_updates":false},{"installer_updates":false,"name":"SLE11-SP2-Debuginfo-Updates","description":"SLE11-SP2-Debuginfo-Updates for sle-11-i586","enabled":false,"id":719,"distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-Debuginfo-Updates/sle-11-i586/"},{"autorefresh":true,"distro_target":"sle-11-s390x","url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-Debuginfo-Updates/sle-11-s390x/","enabled":false,"id":725,"description":"SLE11-SP2-Debuginfo-Updates for sle-11-s390x","name":"SLE11-SP2-Debuginfo-Updates","installer_updates":false},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-Debuginfo-Core/sle-11-s390x/","autorefresh":true,"distro_target":"sle-11-s390x","id":728,"enabled":false,"description":"SLE11-SP2-Debuginfo-Core for sle-11-s390x","name":"SLE11-SP2-Debuginfo-Core","installer_updates":false},{"url":"https://updates.suse.com/repo/$RCE/SLED11-Extras/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","id":846,"enabled":false,"description":"SLED11-Extras for sle-11-i586","name":"SLED11-Extras","installer_updates":false},{"description":"SLED11-SP1-Updates for sle-11-i586","name":"SLED11-SP1-Updates","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLED11-SP1-Updates/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","id":851,"enabled":true},{"enabled":true,"id":852,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLED11-SP1-Pool/sle-11-i586/","name":"SLED11-SP1-Pool","installer_updates":false,"description":"SLED11-SP1-Pool for sle-11-i586"},{"description":"SLED11-SP2-Core for sle-11-i586","installer_updates":false,"name":"SLED11-SP2-Core","url":"https://updates.suse.com/repo/$RCE/SLED11-SP2-Core/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true,"id":856,"enabled":true},{"id":857,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLED11-SP2-Updates/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true,"installer_updates":false,"name":"SLED11-SP2-Updates","description":"SLED11-SP2-Updates for sle-11-i586"},{"id":886,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLED11-SP2-Updates/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64","name":"SLED11-SP2-Updates","installer_updates":false,"description":"SLED11-SP2-Updates for sle-11-x86_64"},{"url":"https://updates.suse.com/repo/$RCE/SLED11-SP2-Core/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true,"id":887,"enabled":true,"description":"SLED11-SP2-Core for sle-11-x86_64","installer_updates":false,"name":"SLED11-SP2-Core"},{"description":"SLED11-SP1-Updates for sle-11-x86_64","installer_updates":false,"name":"SLED11-SP1-Updates","url":"https://updates.suse.com/repo/$RCE/SLED11-SP1-Updates/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true,"id":902,"enabled":true},{"enabled":false,"id":903,"distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLED11-Extras/sle-11-x86_64/","installer_updates":false,"name":"SLED11-Extras","description":"SLED11-Extras for sle-11-x86_64"},{"id":905,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLED11-SP1-Pool/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64","name":"SLED11-SP1-Pool","installer_updates":false,"description":"SLED11-SP1-Pool for sle-11-x86_64"},{"enabled":false,"id":924,"autorefresh":true,"distro_target":"sle-11-ppc64","url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Updates/sle-11-ppc64/","name":"SLE11-SP1-Debuginfo-Updates","installer_updates":false,"description":"SLE11-SP1-Debuginfo-Updates for sle-11-ppc64"},{"description":"SLE11-SP1-Debuginfo-Pool for sle-11-ppc64","installer_updates":false,"name":"SLE11-SP1-Debuginfo-Pool","distro_target":"sle-11-ppc64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Pool/sle-11-ppc64/","enabled":false,"id":925},{"enabled":false,"id":926,"autorefresh":true,"distro_target":"sle-11-ppc64","url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-Debuginfo-Updates/sle-11-ppc64/","name":"SLE11-SP2-Debuginfo-Updates","installer_updates":false,"description":"SLE11-SP2-Debuginfo-Updates for sle-11-ppc64"},{"enabled":false,"id":930,"distro_target":"sle-11-ppc64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-Debuginfo-Core/sle-11-ppc64/","installer_updates":false,"name":"SLE11-SP2-Debuginfo-Core","description":"SLE11-SP2-Debuginfo-Core for sle-11-ppc64"},{"name":"SLE11-SP1-Debuginfo-Pool","installer_updates":false,"description":"SLE11-SP1-Debuginfo-Pool for sle-11-ia64","enabled":false,"id":970,"autorefresh":true,"distro_target":"sle-11-ia64","url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Pool/sle-11-ia64/"},{"name":"SLE11-SP1-Debuginfo-Updates","installer_updates":false,"description":"SLE11-SP1-Debuginfo-Updates for sle-11-ia64","id":971,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Updates/sle-11-ia64/","autorefresh":true,"distro_target":"sle-11-ia64"},{"id":973,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-Debuginfo-Core/sle-11-ia64/","autorefresh":true,"distro_target":"sle-11-ia64","name":"SLE11-SP2-Debuginfo-Core","installer_updates":false,"description":"SLE11-SP2-Debuginfo-Core for sle-11-ia64"},{"id":975,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-Debuginfo-Updates/sle-11-ia64/","autorefresh":true,"distro_target":"sle-11-ia64","name":"SLE11-SP2-Debuginfo-Updates","installer_updates":false,"description":"SLE11-SP2-Debuginfo-Updates for sle-11-ia64"},{"id":1009,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLED11-SP2-HP-CNB-Updates/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64","name":"SLED11-SP2-HP-CNB-Updates","installer_updates":false,"description":"SLED11-SP2-HP-CNB-Updates for sle-11-x86_64"},{"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLED11-SP2-HP-CNB-Updates/sle-11-i586/","enabled":true,"id":1010,"description":"SLED11-SP2-HP-CNB-Updates for sle-11-i586","name":"SLED11-SP2-HP-CNB-Updates","installer_updates":false}],"product_class":"7260"},{"product_type":"extension","cpe":null,"predecessor_ids":[],"online_predecessor_ids":[],"product_class":"STUDIOONSITE","repositories":[{"id":680,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Pool/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true,"installer_updates":false,"name":"SLE11-SP1-Debuginfo-Pool","description":"SLE11-SP1-Debuginfo-Pool for sle-11-i586"},{"id":682,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Updates/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true,"installer_updates":false,"name":"SLE11-SP1-Debuginfo-Updates","description":"SLE11-SP1-Debuginfo-Updates for sle-11-i586"},{"description":"SLES11-SP1-Updates for sle-11-i586","name":"SLES11-SP1-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-Updates/sle-11-i586/","enabled":true,"id":684},{"distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-Pool/sle-11-i586/","enabled":true,"id":686,"description":"SLES11-SP1-Pool for sle-11-i586","installer_updates":false,"name":"SLES11-SP1-Pool"},{"id":687,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-Pool/sle-11-s390x/","autorefresh":true,"distro_target":"sle-11-s390x","name":"SLES11-SP1-Pool","installer_updates":false,"description":"SLES11-SP1-Pool for sle-11-s390x"},{"name":"SLE11-SP1-Debuginfo-Updates","installer_updates":false,"description":"SLE11-SP1-Debuginfo-Updates for sle-11-s390x","id":688,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Updates/sle-11-s390x/","autorefresh":true,"distro_target":"sle-11-s390x"},{"name":"SLES11-SP1-Updates","installer_updates":false,"description":"SLES11-SP1-Updates for sle-11-s390x","id":691,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-Updates/sle-11-s390x/","autorefresh":true,"distro_target":"sle-11-s390x"},{"installer_updates":false,"name":"SLE11-SP1-Debuginfo-Pool","description":"SLE11-SP1-Debuginfo-Pool for sle-11-s390x","id":692,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Pool/sle-11-s390x/","distro_target":"sle-11-s390x","autorefresh":true},{"description":"SLES11-SP1-Updates for sle-11-x86_64","name":"SLES11-SP1-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-Updates/sle-11-x86_64/","enabled":true,"id":705},{"enabled":false,"id":707,"distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Pool/sle-11-x86_64/","installer_updates":false,"name":"SLE11-SP1-Debuginfo-Pool","description":"SLE11-SP1-Debuginfo-Pool for sle-11-x86_64"},{"description":"SLES11-SP2-Core for sle-11-x86_64","installer_updates":false,"name":"SLES11-SP2-Core","url":"https://updates.suse.com/repo/$RCE/SLES11-SP2-Core/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true,"id":709,"enabled":true},{"name":"SLES11-SP1-Pool","installer_updates":false,"description":"SLES11-SP1-Pool for sle-11-x86_64","enabled":true,"id":711,"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-Pool/sle-11-x86_64/"},{"id":712,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-Debuginfo-Updates/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true,"installer_updates":false,"name":"SLE11-SP2-Debuginfo-Updates","description":"SLE11-SP2-Debuginfo-Updates for sle-11-x86_64"},{"description":"SLES11-SP2-Updates for sle-11-x86_64","name":"SLES11-SP2-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLES11-SP2-Updates/sle-11-x86_64/","enabled":true,"id":714},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Updates/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true,"id":715,"enabled":false,"description":"SLE11-SP1-Debuginfo-Updates for sle-11-x86_64","installer_updates":false,"name":"SLE11-SP1-Debuginfo-Updates"},{"id":716,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-Debuginfo-Core/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true,"installer_updates":false,"name":"SLE11-SP2-Debuginfo-Core","description":"SLE11-SP2-Debuginfo-Core for sle-11-x86_64"},{"description":"SLE11-SP2-Debuginfo-Core for sle-11-i586","name":"SLE11-SP2-Debuginfo-Core","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-Debuginfo-Core/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","id":717,"enabled":false},{"id":719,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-Debuginfo-Updates/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","name":"SLE11-SP2-Debuginfo-Updates","installer_updates":false,"description":"SLE11-SP2-Debuginfo-Updates for sle-11-i586"},{"enabled":true,"id":720,"distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP2-Updates/sle-11-i586/","installer_updates":false,"name":"SLES11-SP2-Updates","description":"SLES11-SP2-Updates for sle-11-i586"},{"name":"SLES11-SP2-Core","installer_updates":false,"description":"SLES11-SP2-Core for sle-11-i586","id":722,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP2-Core/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586"},{"autorefresh":true,"distro_target":"sle-11-s390x","url":"https://updates.suse.com/repo/$RCE/SLES11-SP2-Updates/sle-11-s390x/","enabled":true,"id":724,"description":"SLES11-SP2-Updates for sle-11-s390x","name":"SLES11-SP2-Updates","installer_updates":false},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-Debuginfo-Updates/sle-11-s390x/","distro_target":"sle-11-s390x","autorefresh":true,"id":725,"enabled":false,"description":"SLE11-SP2-Debuginfo-Updates for sle-11-s390x","installer_updates":false,"name":"SLE11-SP2-Debuginfo-Updates"},{"url":"https://updates.suse.com/repo/$RCE/SLES11-SP2-Core/sle-11-s390x/","autorefresh":true,"distro_target":"sle-11-s390x","id":726,"enabled":true,"description":"SLES11-SP2-Core for sle-11-s390x","name":"SLES11-SP2-Core","installer_updates":false},{"name":"SLE11-SP2-Debuginfo-Core","installer_updates":false,"description":"SLE11-SP2-Debuginfo-Core for sle-11-s390x","enabled":false,"id":728,"autorefresh":true,"distro_target":"sle-11-s390x","url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-Debuginfo-Core/sle-11-s390x/"},{"description":"SLES11-SP1-Pool for sle-11-ppc64","installer_updates":false,"name":"SLES11-SP1-Pool","distro_target":"sle-11-ppc64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-Pool/sle-11-ppc64/","enabled":true,"id":919},{"name":"SLES11-SP1-Updates","installer_updates":false,"description":"SLES11-SP1-Updates for sle-11-ppc64","id":922,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-Updates/sle-11-ppc64/","autorefresh":true,"distro_target":"sle-11-ppc64"},{"description":"SLE11-SP1-Debuginfo-Updates for sle-11-ppc64","installer_updates":false,"name":"SLE11-SP1-Debuginfo-Updates","distro_target":"sle-11-ppc64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Updates/sle-11-ppc64/","enabled":false,"id":924},{"id":925,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Pool/sle-11-ppc64/","distro_target":"sle-11-ppc64","autorefresh":true,"installer_updates":false,"name":"SLE11-SP1-Debuginfo-Pool","description":"SLE11-SP1-Debuginfo-Pool for sle-11-ppc64"},{"description":"SLE11-SP2-Debuginfo-Updates for sle-11-ppc64","name":"SLE11-SP2-Debuginfo-Updates","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-Debuginfo-Updates/sle-11-ppc64/","autorefresh":true,"distro_target":"sle-11-ppc64","id":926,"enabled":false},{"description":"SLES11-SP2-Core for sle-11-ppc64","name":"SLES11-SP2-Core","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-ppc64","url":"https://updates.suse.com/repo/$RCE/SLES11-SP2-Core/sle-11-ppc64/","enabled":true,"id":927},{"description":"SLES11-SP2-Updates for sle-11-ppc64","name":"SLES11-SP2-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-ppc64","url":"https://updates.suse.com/repo/$RCE/SLES11-SP2-Updates/sle-11-ppc64/","enabled":true,"id":928},{"description":"SLE11-SP2-Debuginfo-Core for sle-11-ppc64","installer_updates":false,"name":"SLE11-SP2-Debuginfo-Core","distro_target":"sle-11-ppc64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-Debuginfo-Core/sle-11-ppc64/","enabled":false,"id":930},{"name":"SLE11-SP1-Debuginfo-Pool","installer_updates":false,"description":"SLE11-SP1-Debuginfo-Pool for sle-11-ia64","enabled":false,"id":970,"autorefresh":true,"distro_target":"sle-11-ia64","url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Pool/sle-11-ia64/"},{"distro_target":"sle-11-ia64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Updates/sle-11-ia64/","enabled":false,"id":971,"description":"SLE11-SP1-Debuginfo-Updates for sle-11-ia64","installer_updates":false,"name":"SLE11-SP1-Debuginfo-Updates"},{"name":"SLE11-SP2-Debuginfo-Core","installer_updates":false,"description":"SLE11-SP2-Debuginfo-Core for sle-11-ia64","id":973,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-Debuginfo-Core/sle-11-ia64/","autorefresh":true,"distro_target":"sle-11-ia64"},{"installer_updates":false,"name":"SLE11-SP2-Debuginfo-Updates","description":"SLE11-SP2-Debuginfo-Updates for sle-11-ia64","id":975,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-Debuginfo-Updates/sle-11-ia64/","distro_target":"sle-11-ia64","autorefresh":true},{"autorefresh":true,"distro_target":"sle-11-ia64","url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-Updates/sle-11-ia64/","enabled":true,"id":987,"description":"SLES11-SP1-Updates for sle-11-ia64","name":"SLES11-SP1-Updates","installer_updates":false},{"installer_updates":false,"name":"SLES11-SP1-Pool","description":"SLES11-SP1-Pool for sle-11-ia64","enabled":true,"id":991,"distro_target":"sle-11-ia64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-Pool/sle-11-ia64/"},{"installer_updates":false,"name":"SLES11-SP2-Updates","description":"SLES11-SP2-Updates for sle-11-ia64","id":1011,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP2-Updates/sle-11-ia64/","distro_target":"sle-11-ia64","autorefresh":true},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-StudioOnsite-1.3-Pool/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64","id":1012,"enabled":true,"description":"SLE11-SP2-StudioOnsite-1.3-Pool for sle-11-x86_64","name":"SLE11-SP2-StudioOnsite-1.3-Pool","installer_updates":false},{"id":1013,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-StudioOnsite-1.3-Updates/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64","name":"SLE11-SP2-StudioOnsite-1.3-Updates","installer_updates":false,"description":"SLE11-SP2-StudioOnsite-1.3-Updates for sle-11-x86_64"},{"description":"SLES11-SP2-Core for sle-11-ia64","installer_updates":false,"name":"SLES11-SP2-Core","url":"https://updates.suse.com/repo/$RCE/SLES11-SP2-Core/sle-11-ia64/","distro_target":"sle-11-ia64","autorefresh":true,"id":1014,"enabled":true},{"url":"https://updates.suse.com/repo/$RCE/SLES11-SP2-LTSS-Updates/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true,"id":1157,"enabled":true,"description":"SLES11-SP2-LTSS-Updates for sle-11-x86_64","installer_updates":false,"name":"SLES11-SP2-LTSS-Updates"}],"eula_url":"","arch":null,"free":false,"shortname":null,"description":null,"extensions":[],"release_stage":"released","identifier":"sle-studioonsite","id":1008,"friendly_version":"1.3","offline_predecessor_ids":[],"name":"SUSE Studio OnSite","release_type":null,"former_identifier":"sle-studioonsite","friendly_name":"SUSE Studio OnSite 1.3","migration_extra":false,"recommended":false,"version":"1.3"},{"shortname":null,"description":null,"free":false,"eula_url":"","arch":null,"predecessor_ids":[],"repositories":[{"id":851,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLED11-SP1-Updates/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","name":"SLED11-SP1-Updates","installer_updates":false,"description":"SLED11-SP1-Updates for sle-11-i586"},{"name":"SLED11-SP1-Pool","installer_updates":false,"description":"SLED11-SP1-Pool for sle-11-i586","enabled":true,"id":852,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLED11-SP1-Pool/sle-11-i586/"},{"id":857,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLED11-SP2-Updates/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true,"installer_updates":false,"name":"SLED11-SP2-Updates","description":"SLED11-SP2-Updates for sle-11-i586"},{"url":"https://updates.suse.com/repo/$RCE/SLED11-SP2-Updates/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true,"id":886,"enabled":true,"description":"SLED11-SP2-Updates for sle-11-x86_64","installer_updates":false,"name":"SLED11-SP2-Updates"},{"description":"SLED11-SP1-Updates for sle-11-x86_64","name":"SLED11-SP1-Updates","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLED11-SP1-Updates/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64","id":902,"enabled":true},{"description":"SLED11-SP1-Pool for sle-11-x86_64","name":"SLED11-SP1-Pool","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLED11-SP1-Pool/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64","id":905,"enabled":true},{"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLED11-SP2-HP-CNB-Updates/sle-11-x86_64/","enabled":true,"id":1009,"description":"SLED11-SP2-HP-CNB-Updates for sle-11-x86_64","name":"SLED11-SP2-HP-CNB-Updates","installer_updates":false},{"url":"https://updates.suse.com/repo/$RCE/SLED11-SP2-HP-CNB-Updates/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","id":1010,"enabled":true,"description":"SLED11-SP2-HP-CNB-Updates for sle-11-i586","name":"SLED11-SP2-HP-CNB-Updates","installer_updates":false}],"online_predecessor_ids":[],"product_class":"7260","cpe":null,"product_type":"base","recommended":false,"version":"11.1","name":"SUSE Linux Enterprise Desktop","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Desktop 11 SP1 HP-CNB (Migration)","release_type":"HP-CNB","former_identifier":"SUSE_SLED-SP2-migration","friendly_version":"11 SP1","extensions":[{"free":true,"shortname":null,"description":null,"eula_url":"","arch":null,"predecessor_ids":[],"repositories":[{"autorefresh":true,"distro_target":"sle-11-ia64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Updates/sle-11-ia64/","enabled":true,"id":1257,"description":"SLE11-SDK-SP1-Updates for sle-11-ia64","name":"SLE11-SDK-SP1-Updates","installer_updates":false},{"enabled":true,"id":1258,"distro_target":"sle-11-ia64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-ia64/","installer_updates":false,"name":"SLE11-SDK-SP1-Pool","description":"SLE11-SDK-SP1-Pool for sle-11-ia64"},{"id":1259,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-s390x/","distro_target":"sle-11-s390x","autorefresh":true,"installer_updates":false,"name":"SLE11-SDK-SP1-Pool","description":"SLE11-SDK-SP1-Pool for sle-11-s390x"},{"description":"SLE11-SDK-SP1-Updates for sle-11-ppc64","name":"SLE11-SDK-SP1-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-ppc64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Updates/sle-11-ppc64/","enabled":true,"id":1260},{"name":"SLE11-SDK-SP1-Pool","installer_updates":false,"description":"SLE11-SDK-SP1-Pool for sle-11-ppc64","enabled":true,"id":1261,"autorefresh":true,"distro_target":"sle-11-ppc64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-ppc64/"},{"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Updates/sle-11-i586/","enabled":true,"id":1262,"description":"SLE11-SDK-SP1-Updates for sle-11-i586","name":"SLE11-SDK-SP1-Updates","installer_updates":false},{"distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-i586/","enabled":true,"id":1263,"description":"SLE11-SDK-SP1-Pool for sle-11-i586","installer_updates":false,"name":"SLE11-SDK-SP1-Pool"},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64","id":1264,"enabled":true,"description":"SLE11-SDK-SP1-Pool for sle-11-x86_64","name":"SLE11-SDK-SP1-Pool","installer_updates":false},{"name":"SLE11-SDK-SP1-Updates","installer_updates":false,"description":"SLE11-SDK-SP1-Updates for sle-11-x86_64","enabled":true,"id":1265,"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Updates/sle-11-x86_64/"},{"description":"SLE11-SDK-SP1-Updates for sle-11-s390x","name":"SLE11-SDK-SP1-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-s390x","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Updates/sle-11-s390x/","enabled":true,"id":1266}],"online_predecessor_ids":[],"product_class":"SLE-SDK","product_type":"extension","cpe":null,"recommended":false,"version":"11.1","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Software Development Kit","release_type":null,"former_identifier":"sle-sdk","migration_extra":false,"friendly_name":"SUSE Linux Enterprise Software Development Kit 11 SP1","friendly_version":"11 SP1","extensions":[],"id":1159,"release_stage":"released","identifier":"sle-sdk"},{"offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Software Development Kit","former_identifier":"sle-sdk-SP2-migration","release_type":null,"friendly_name":"SUSE Linux Enterprise Software Development Kit 11 SP1 (Migration)","migration_extra":false,"recommended":false,"version":"11.1","extensions":[],"id":1163,"release_stage":"released","identifier":"sle-sdk-SP2-migration","friendly_version":"11 SP1","eula_url":"","arch":null,"free":true,"description":null,"shortname":null,"product_type":"extension","cpe":null,"predecessor_ids":[],"online_predecessor_ids":[],"product_class":"SLE-SDK","repositories":[{"name":"SLE11-SDK-SP2-Core","installer_updates":false,"description":"SLE11-SDK-SP2-Core for sle-11-ia64","id":1267,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-ia64/","autorefresh":true,"distro_target":"sle-11-ia64"},{"distro_target":"sle-11-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-s390x/","enabled":true,"id":1268,"description":"SLE11-SDK-SP2-Core for sle-11-s390x","installer_updates":false,"name":"SLE11-SDK-SP2-Core"},{"enabled":true,"id":1269,"autorefresh":true,"distro_target":"sle-11-s390x","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-s390x/","name":"SLE11-SDK-SP2-Updates","installer_updates":false,"description":"SLE11-SDK-SP2-Updates for sle-11-s390x"},{"description":"SLE11-SDK-SP2-Updates for sle-11-ppc64","installer_updates":false,"name":"SLE11-SDK-SP2-Updates","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-ppc64/","distro_target":"sle-11-ppc64","autorefresh":true,"id":1270,"enabled":true},{"description":"SLE11-SDK-SP2-Updates for sle-11-i586","installer_updates":false,"name":"SLE11-SDK-SP2-Updates","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true,"id":1271,"enabled":true},{"distro_target":"sle-11-ia64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-ia64/","enabled":true,"id":1272,"description":"SLE11-SDK-SP2-Updates for sle-11-ia64","installer_updates":false,"name":"SLE11-SDK-SP2-Updates"},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-ppc64/","distro_target":"sle-11-ppc64","autorefresh":true,"id":1273,"enabled":true,"description":"SLE11-SDK-SP2-Core for sle-11-ppc64","installer_updates":false,"name":"SLE11-SDK-SP2-Core"},{"installer_updates":false,"name":"SLE11-SDK-SP2-Core","description":"SLE11-SDK-SP2-Core for sle-11-i586","enabled":true,"id":1274,"distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-i586/"},{"description":"SLE11-SDK-SP2-Core for sle-11-x86_64","name":"SLE11-SDK-SP2-Core","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-x86_64/","enabled":true,"id":1275},{"enabled":true,"id":1276,"distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-x86_64/","installer_updates":false,"name":"SLE11-SDK-SP2-Updates","description":"SLE11-SDK-SP2-Updates for sle-11-x86_64"}]}],"id":1009,"release_stage":"released","identifier":"SUSE_SLED-SP2-migration"},{"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Desktop 10 SP1 Lenovo_1_1y","former_identifier":"SUSE-Linux-Enterprise-Desktop-SP1","release_type":"Lenovo_1_1y","name":"SUSE Linux Enterprise Desktop","offline_predecessor_ids":[],"version":"10","recommended":false,"id":1010,"release_stage":"released","identifier":"SUSE-Linux-Enterprise-Desktop-SP1","extensions":[{"friendly_version":"10 SP1","extensions":[],"release_stage":"released","identifier":"SUSE-Linux-Enterprise-SDK-SP1","id":1174,"recommended":false,"version":"10","name":"SUSE Linux Enterprise Software Development Kit","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Software Development Kit 10 SP1","release_type":null,"former_identifier":"SUSE-Linux-Enterprise-SDK-SP1","predecessor_ids":[],"online_predecessor_ids":[],"repositories":[{"enabled":true,"id":1294,"autorefresh":true,"distro_target":"sles-10-s390x","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sles-10-s390x/","name":"SLE10-SDK-SP1-Online","installer_updates":false,"description":"SLE10-SDK-SP1-Online for sles-10-s390x"},{"description":"SLE10-SDK-SP1-Online for sles-10-x86_64","name":"SLE10-SDK-SP1-Online","installer_updates":false,"autorefresh":true,"distro_target":"sles-10-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sles-10-x86_64/","enabled":true,"id":1295},{"description":"SLE10-SDK-SP1-Online for sled-10-i586","installer_updates":false,"name":"SLE10-SDK-SP1-Online","distro_target":"sled-10-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sled-10-i586/","enabled":true,"id":1296},{"enabled":true,"id":1297,"autorefresh":true,"distro_target":"sles-10-ppc","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sles-10-ppc/","name":"SLE10-SDK-SP1-Online","installer_updates":false,"description":"SLE10-SDK-SP1-Online for sles-10-ppc"},{"name":"SLE10-SDK-SP1-Updates","installer_updates":false,"description":"SLE10-SDK-SP1-Updates for sles-10-s390x","id":1298,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Updates/sles-10-s390x/","autorefresh":true,"distro_target":"sles-10-s390x"},{"enabled":true,"id":1299,"autorefresh":true,"distro_target":"sled-10-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Updates/sled-10-x86_64/","name":"SLE10-SDK-SP1-Updates","installer_updates":false,"description":"SLE10-SDK-SP1-Updates for sled-10-x86_64"},{"distro_target":"sles-10-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Updates/sles-10-x86_64/","enabled":true,"id":1300,"description":"SLE10-SDK-SP1-Updates for sles-10-x86_64","installer_updates":false,"name":"SLE10-SDK-SP1-Updates"},{"description":"SLE10-SDK-SP1-Online for sles-10-ia64","name":"SLE10-SDK-SP1-Online","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sles-10-ia64/","autorefresh":true,"distro_target":"sles-10-ia64","id":1301,"enabled":true},{"description":"SLE10-SDK-SP1-Updates for sled-10-i586","name":"SLE10-SDK-SP1-Updates","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Updates/sled-10-i586/","autorefresh":true,"distro_target":"sled-10-i586","id":1302,"enabled":true},{"name":"SLE10-SDK-SP1-Online","installer_updates":false,"description":"SLE10-SDK-SP1-Online for sles-10-i586","id":1303,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sles-10-i586/","autorefresh":true,"distro_target":"sles-10-i586"},{"id":1304,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Updates/sles-10-ia64/","autorefresh":true,"distro_target":"sles-10-ia64","name":"SLE10-SDK-SP1-Updates","installer_updates":false,"description":"SLE10-SDK-SP1-Updates for sles-10-ia64"},{"id":1305,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Updates/sles-10-ppc/","autorefresh":true,"distro_target":"sles-10-ppc","name":"SLE10-SDK-SP1-Updates","installer_updates":false,"description":"SLE10-SDK-SP1-Updates for sles-10-ppc"},{"enabled":true,"id":1306,"autorefresh":true,"distro_target":"sles-10-i586","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Updates/sles-10-i586/","name":"SLE10-SDK-SP1-Updates","installer_updates":false,"description":"SLE10-SDK-SP1-Updates for sles-10-i586"},{"installer_updates":false,"name":"SLE10-SDK-SP1-Online","description":"SLE10-SDK-SP1-Online for sled-10-x86_64","id":1307,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sled-10-x86_64/","distro_target":"sled-10-x86_64","autorefresh":true}],"product_class":"SLE-SDK","cpe":null,"product_type":"extension","shortname":null,"description":null,"free":true,"eula_url":"","arch":null}],"friendly_version":"10 SP1","arch":null,"eula_url":"","shortname":null,"description":null,"free":false,"cpe":null,"product_type":"base","product_class":"7260","online_predecessor_ids":[],"repositories":[{"installer_updates":false,"name":"SLED10-SP1-Updates","description":"SLED10-SP1-Updates for sled-10-i586","id":843,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLED10-SP1-Updates/sled-10-i586/","distro_target":"sled-10-i586","autorefresh":true},{"autorefresh":true,"distro_target":"sled-10-i586","url":"https://updates.suse.com/repo/$RCE/SLED10-SP1-Online/sled-10-i586/","enabled":true,"id":844,"description":"SLED10-SP1-Online for sled-10-i586","name":"SLED10-SP1-Online","installer_updates":false},{"installer_updates":false,"name":"SLE10-SP1-Debuginfo-Updates","description":"SLE10-SP1-Debuginfo-Updates for sled-10-i586","id":845,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP1-Debuginfo-Updates/sled-10-i586/","distro_target":"sled-10-i586","autorefresh":true},{"description":"SLED10-SP1-Online for sled-10-x86_64","installer_updates":false,"name":"SLED10-SP1-Online","url":"https://updates.suse.com/repo/$RCE/SLED10-SP1-Online/sled-10-x86_64/","distro_target":"sled-10-x86_64","autorefresh":true,"id":906,"enabled":true},{"url":"https://updates.suse.com/repo/$RCE/SLE10-SP1-Debuginfo-Updates/sled-10-x86_64/","autorefresh":true,"distro_target":"sled-10-x86_64","id":907,"enabled":false,"description":"SLE10-SP1-Debuginfo-Updates for sled-10-x86_64","name":"SLE10-SP1-Debuginfo-Updates","installer_updates":false},{"id":908,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLED10-SP1-Updates/sled-10-x86_64/","distro_target":"sled-10-x86_64","autorefresh":true,"installer_updates":false,"name":"SLED10-SP1-Updates","description":"SLED10-SP1-Updates for sled-10-x86_64"}],"predecessor_ids":[]},{"version":"10","recommended":false,"former_identifier":"SUSE-Linux-Enterprise-Desktop-SP1","release_type":"Lenovo_1_3y","friendly_name":"SUSE Linux Enterprise Desktop 10 SP1 Lenovo_1_3y","migration_extra":false,"offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Desktop","friendly_version":"10 SP1","id":1011,"release_stage":"released","identifier":"SUSE-Linux-Enterprise-Desktop-SP1","extensions":[{"identifier":"SUSE-Linux-Enterprise-SDK-SP1","release_stage":"released","id":1174,"extensions":[],"friendly_version":"10 SP1","friendly_name":"SUSE Linux Enterprise Software Development Kit 10 SP1","migration_extra":false,"former_identifier":"SUSE-Linux-Enterprise-SDK-SP1","release_type":null,"name":"SUSE Linux Enterprise Software Development Kit","offline_predecessor_ids":[],"version":"10","recommended":false,"cpe":null,"product_type":"extension","online_predecessor_ids":[],"repositories":[{"description":"SLE10-SDK-SP1-Online for sles-10-s390x","installer_updates":false,"name":"SLE10-SDK-SP1-Online","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sles-10-s390x/","distro_target":"sles-10-s390x","autorefresh":true,"id":1294,"enabled":true},{"description":"SLE10-SDK-SP1-Online for sles-10-x86_64","name":"SLE10-SDK-SP1-Online","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sles-10-x86_64/","autorefresh":true,"distro_target":"sles-10-x86_64","id":1295,"enabled":true},{"enabled":true,"id":1296,"autorefresh":true,"distro_target":"sled-10-i586","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sled-10-i586/","name":"SLE10-SDK-SP1-Online","installer_updates":false,"description":"SLE10-SDK-SP1-Online for sled-10-i586"},{"description":"SLE10-SDK-SP1-Online for sles-10-ppc","installer_updates":false,"name":"SLE10-SDK-SP1-Online","distro_target":"sles-10-ppc","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sles-10-ppc/","enabled":true,"id":1297},{"id":1298,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Updates/sles-10-s390x/","autorefresh":true,"distro_target":"sles-10-s390x","name":"SLE10-SDK-SP1-Updates","installer_updates":false,"description":"SLE10-SDK-SP1-Updates for sles-10-s390x"},{"distro_target":"sled-10-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Updates/sled-10-x86_64/","enabled":true,"id":1299,"description":"SLE10-SDK-SP1-Updates for sled-10-x86_64","installer_updates":false,"name":"SLE10-SDK-SP1-Updates"},{"description":"SLE10-SDK-SP1-Updates for sles-10-x86_64","installer_updates":false,"name":"SLE10-SDK-SP1-Updates","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Updates/sles-10-x86_64/","distro_target":"sles-10-x86_64","autorefresh":true,"id":1300,"enabled":true},{"autorefresh":true,"distro_target":"sles-10-ia64","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sles-10-ia64/","enabled":true,"id":1301,"description":"SLE10-SDK-SP1-Online for sles-10-ia64","name":"SLE10-SDK-SP1-Online","installer_updates":false},{"distro_target":"sled-10-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Updates/sled-10-i586/","enabled":true,"id":1302,"description":"SLE10-SDK-SP1-Updates for sled-10-i586","installer_updates":false,"name":"SLE10-SDK-SP1-Updates"},{"description":"SLE10-SDK-SP1-Online for sles-10-i586","installer_updates":false,"name":"SLE10-SDK-SP1-Online","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sles-10-i586/","distro_target":"sles-10-i586","autorefresh":true,"id":1303,"enabled":true},{"autorefresh":true,"distro_target":"sles-10-ia64","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Updates/sles-10-ia64/","enabled":true,"id":1304,"description":"SLE10-SDK-SP1-Updates for sles-10-ia64","name":"SLE10-SDK-SP1-Updates","installer_updates":false},{"id":1305,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Updates/sles-10-ppc/","autorefresh":true,"distro_target":"sles-10-ppc","name":"SLE10-SDK-SP1-Updates","installer_updates":false,"description":"SLE10-SDK-SP1-Updates for sles-10-ppc"},{"installer_updates":false,"name":"SLE10-SDK-SP1-Updates","description":"SLE10-SDK-SP1-Updates for sles-10-i586","id":1306,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Updates/sles-10-i586/","distro_target":"sles-10-i586","autorefresh":true},{"description":"SLE10-SDK-SP1-Online for sled-10-x86_64","name":"SLE10-SDK-SP1-Online","installer_updates":false,"autorefresh":true,"distro_target":"sled-10-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sled-10-x86_64/","enabled":true,"id":1307}],"product_class":"SLE-SDK","predecessor_ids":[],"arch":null,"eula_url":"","description":null,"shortname":null,"free":true}],"free":false,"description":null,"shortname":null,"arch":null,"eula_url":"","online_predecessor_ids":[],"repositories":[{"url":"https://updates.suse.com/repo/$RCE/SLED10-SP1-Updates/sled-10-i586/","autorefresh":true,"distro_target":"sled-10-i586","id":843,"enabled":true,"description":"SLED10-SP1-Updates for sled-10-i586","name":"SLED10-SP1-Updates","installer_updates":false},{"name":"SLED10-SP1-Online","installer_updates":false,"description":"SLED10-SP1-Online for sled-10-i586","id":844,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLED10-SP1-Online/sled-10-i586/","autorefresh":true,"distro_target":"sled-10-i586"},{"name":"SLE10-SP1-Debuginfo-Updates","installer_updates":false,"description":"SLE10-SP1-Debuginfo-Updates for sled-10-i586","enabled":false,"id":845,"autorefresh":true,"distro_target":"sled-10-i586","url":"https://updates.suse.com/repo/$RCE/SLE10-SP1-Debuginfo-Updates/sled-10-i586/"},{"id":906,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLED10-SP1-Online/sled-10-x86_64/","autorefresh":true,"distro_target":"sled-10-x86_64","name":"SLED10-SP1-Online","installer_updates":false,"description":"SLED10-SP1-Online for sled-10-x86_64"},{"id":907,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP1-Debuginfo-Updates/sled-10-x86_64/","distro_target":"sled-10-x86_64","autorefresh":true,"installer_updates":false,"name":"SLE10-SP1-Debuginfo-Updates","description":"SLE10-SP1-Debuginfo-Updates for sled-10-x86_64"},{"enabled":true,"id":908,"autorefresh":true,"distro_target":"sled-10-x86_64","url":"https://updates.suse.com/repo/$RCE/SLED10-SP1-Updates/sled-10-x86_64/","name":"SLED10-SP1-Updates","installer_updates":false,"description":"SLED10-SP1-Updates for sled-10-x86_64"}],"product_class":"7260","predecessor_ids":[],"product_type":"base","cpe":null},{"name":"SUSE Linux Enterprise Desktop","offline_predecessor_ids":[],"friendly_name":"SUSE Linux Enterprise Desktop 10 SP1 DellChina","migration_extra":false,"former_identifier":"SUSE-Linux-Enterprise-Desktop-SP1","release_type":"DellChina","recommended":false,"version":"10","extensions":[{"shortname":null,"description":null,"free":true,"arch":null,"eula_url":"","online_predecessor_ids":[],"product_class":"SLE-SDK","repositories":[{"description":"SLE10-SDK-SP1-Online for sles-10-s390x","installer_updates":false,"name":"SLE10-SDK-SP1-Online","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sles-10-s390x/","distro_target":"sles-10-s390x","autorefresh":true,"id":1294,"enabled":true},{"distro_target":"sles-10-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sles-10-x86_64/","enabled":true,"id":1295,"description":"SLE10-SDK-SP1-Online for sles-10-x86_64","installer_updates":false,"name":"SLE10-SDK-SP1-Online"},{"description":"SLE10-SDK-SP1-Online for sled-10-i586","installer_updates":false,"name":"SLE10-SDK-SP1-Online","distro_target":"sled-10-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sled-10-i586/","enabled":true,"id":1296},{"autorefresh":true,"distro_target":"sles-10-ppc","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sles-10-ppc/","enabled":true,"id":1297,"description":"SLE10-SDK-SP1-Online for sles-10-ppc","name":"SLE10-SDK-SP1-Online","installer_updates":false},{"enabled":true,"id":1298,"autorefresh":true,"distro_target":"sles-10-s390x","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Updates/sles-10-s390x/","name":"SLE10-SDK-SP1-Updates","installer_updates":false,"description":"SLE10-SDK-SP1-Updates for sles-10-s390x"},{"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Updates/sled-10-x86_64/","distro_target":"sled-10-x86_64","autorefresh":true,"id":1299,"enabled":true,"description":"SLE10-SDK-SP1-Updates for sled-10-x86_64","installer_updates":false,"name":"SLE10-SDK-SP1-Updates"},{"description":"SLE10-SDK-SP1-Updates for sles-10-x86_64","installer_updates":false,"name":"SLE10-SDK-SP1-Updates","distro_target":"sles-10-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Updates/sles-10-x86_64/","enabled":true,"id":1300},{"installer_updates":false,"name":"SLE10-SDK-SP1-Online","description":"SLE10-SDK-SP1-Online for sles-10-ia64","enabled":true,"id":1301,"distro_target":"sles-10-ia64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sles-10-ia64/"},{"id":1302,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Updates/sled-10-i586/","distro_target":"sled-10-i586","autorefresh":true,"installer_updates":false,"name":"SLE10-SDK-SP1-Updates","description":"SLE10-SDK-SP1-Updates for sled-10-i586"},{"id":1303,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sles-10-i586/","autorefresh":true,"distro_target":"sles-10-i586","name":"SLE10-SDK-SP1-Online","installer_updates":false,"description":"SLE10-SDK-SP1-Online for sles-10-i586"},{"id":1304,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Updates/sles-10-ia64/","distro_target":"sles-10-ia64","autorefresh":true,"installer_updates":false,"name":"SLE10-SDK-SP1-Updates","description":"SLE10-SDK-SP1-Updates for sles-10-ia64"},{"distro_target":"sles-10-ppc","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Updates/sles-10-ppc/","enabled":true,"id":1305,"description":"SLE10-SDK-SP1-Updates for sles-10-ppc","installer_updates":false,"name":"SLE10-SDK-SP1-Updates"},{"description":"SLE10-SDK-SP1-Updates for sles-10-i586","name":"SLE10-SDK-SP1-Updates","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Updates/sles-10-i586/","autorefresh":true,"distro_target":"sles-10-i586","id":1306,"enabled":true},{"installer_updates":false,"name":"SLE10-SDK-SP1-Online","description":"SLE10-SDK-SP1-Online for sled-10-x86_64","id":1307,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sled-10-x86_64/","distro_target":"sled-10-x86_64","autorefresh":true}],"predecessor_ids":[],"cpe":null,"product_type":"extension","version":"10","recommended":false,"friendly_name":"SUSE Linux Enterprise Software Development Kit 10 SP1","migration_extra":false,"former_identifier":"SUSE-Linux-Enterprise-SDK-SP1","release_type":null,"name":"SUSE Linux Enterprise Software Development Kit","offline_predecessor_ids":[],"friendly_version":"10 SP1","id":1174,"release_stage":"released","identifier":"SUSE-Linux-Enterprise-SDK-SP1","extensions":[]}],"id":1012,"release_stage":"released","identifier":"SUSE-Linux-Enterprise-Desktop-SP1","friendly_version":"10 SP1","eula_url":"","arch":null,"description":null,"shortname":null,"free":false,"cpe":null,"product_type":"base","predecessor_ids":[],"online_predecessor_ids":[],"product_class":"7260","repositories":[{"url":"https://updates.suse.com/repo/$RCE/SLED10-SP1-Updates/sled-10-i586/","autorefresh":true,"distro_target":"sled-10-i586","id":843,"enabled":true,"description":"SLED10-SP1-Updates for sled-10-i586","name":"SLED10-SP1-Updates","installer_updates":false},{"enabled":true,"id":844,"distro_target":"sled-10-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLED10-SP1-Online/sled-10-i586/","installer_updates":false,"name":"SLED10-SP1-Online","description":"SLED10-SP1-Online for sled-10-i586"},{"distro_target":"sled-10-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP1-Debuginfo-Updates/sled-10-i586/","enabled":false,"id":845,"description":"SLE10-SP1-Debuginfo-Updates for sled-10-i586","installer_updates":false,"name":"SLE10-SP1-Debuginfo-Updates"},{"url":"https://updates.suse.com/repo/$RCE/SLED10-SP1-Online/sled-10-x86_64/","distro_target":"sled-10-x86_64","autorefresh":true,"id":906,"enabled":true,"description":"SLED10-SP1-Online for sled-10-x86_64","installer_updates":false,"name":"SLED10-SP1-Online"},{"enabled":false,"id":907,"distro_target":"sled-10-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP1-Debuginfo-Updates/sled-10-x86_64/","installer_updates":false,"name":"SLE10-SP1-Debuginfo-Updates","description":"SLE10-SP1-Debuginfo-Updates for sled-10-x86_64"},{"installer_updates":false,"name":"SLED10-SP1-Updates","description":"SLED10-SP1-Updates for sled-10-x86_64","enabled":true,"id":908,"distro_target":"sled-10-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLED10-SP1-Updates/sled-10-x86_64/"}]},{"description":null,"shortname":null,"free":false,"eula_url":"","arch":null,"predecessor_ids":[],"repositories":[],"online_predecessor_ids":[],"product_class":"7260","cpe":null,"product_type":"base","recommended":false,"version":"9","name":"SUSE Linux Enterprise Desktop","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Desktop 9","former_identifier":"SLES9-SLD-SP-i386","release_type":null,"friendly_version":"9","extensions":[],"release_stage":"released","identifier":"SLES9-SLD-SP-i386","id":1013},{"cpe":null,"product_type":"base","online_predecessor_ids":[],"repositories":[],"product_class":"7260","predecessor_ids":[],"arch":null,"eula_url":"","description":null,"shortname":null,"free":false,"id":1014,"release_stage":"released","identifier":"SLES9-SLD-SP-x86_64","extensions":[],"friendly_version":"9","migration_extra":false,"friendly_name":"SUSE Linux Enterprise Desktop 9","release_type":null,"former_identifier":"SLES9-SLD-SP-x86_64","name":"SUSE Linux Enterprise Desktop","offline_predecessor_ids":[],"version":"9","recommended":false},{"free":false,"description":null,"shortname":null,"arch":null,"eula_url":"","repositories":[{"id":860,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLED10-SP2-Online/sled-10-i586/","autorefresh":true,"distro_target":"sled-10-i586","name":"SLED10-SP2-Online","installer_updates":false,"description":"SLED10-SP2-Online for sled-10-i586"},{"distro_target":"sled-10-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLED10-SP2-Online/sled-10-x86_64/","enabled":false,"id":861,"description":"SLED10-SP2-Online for sled-10-x86_64","installer_updates":false,"name":"SLED10-SP2-Online"},{"description":"SLED10-SP2-Pool for sled-10-i586","name":"SLED10-SP2-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sled-10-i586","url":"https://updates.suse.com/repo/$RCE/SLED10-SP2-Pool/sled-10-i586/","enabled":true,"id":862},{"name":"SLED10-SP2-Updates","installer_updates":false,"description":"SLED10-SP2-Updates for sled-10-i586","enabled":true,"id":863,"autorefresh":true,"distro_target":"sled-10-i586","url":"https://updates.suse.com/repo/$RCE/SLED10-SP2-Updates/sled-10-i586/"},{"name":"SLED10-SP2-Updates","installer_updates":false,"description":"SLED10-SP2-Updates for sled-10-x86_64","id":866,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLED10-SP2-Updates/sled-10-x86_64/","autorefresh":true,"distro_target":"sled-10-x86_64"},{"id":867,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLED10-SP2-Pool/sled-10-x86_64/","autorefresh":false,"distro_target":"sled-10-x86_64","name":"SLED10-SP2-Pool","installer_updates":false,"description":"SLED10-SP2-Pool for sled-10-x86_64"}],"online_predecessor_ids":[],"product_class":"7260","predecessor_ids":[],"product_type":"base","cpe":null,"version":"10","recommended":false,"former_identifier":"SUSE-Linux-Enterprise-Desktop-SP2","release_type":"DellChina","friendly_name":"SUSE Linux Enterprise Desktop 10 SP2 DellChina","migration_extra":false,"offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Desktop","friendly_version":"10 SP2","release_stage":"released","id":1015,"identifier":"SUSE-Linux-Enterprise-Desktop-SP2","extensions":[{"version":"10","recommended":false,"former_identifier":"SUSE-Linux-Enterprise-SDK-SP2","release_type":"MigrationBeta","friendly_name":"SUSE Linux Enterprise Software Development Kit 10 SP2 MigrationBeta","migration_extra":false,"offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Software Development Kit","friendly_version":"10 SP2","release_stage":"released","identifier":"SUSE-Linux-Enterprise-SDK-SP2","id":1176,"extensions":[],"free":true,"shortname":null,"description":null,"arch":null,"eula_url":"","repositories":[],"online_predecessor_ids":[],"product_class":"SLE-SDK","predecessor_ids":[],"product_type":"extension","cpe":null},{"product_type":"extension","cpe":null,"product_class":"SLE-SDK","online_predecessor_ids":[],"repositories":[{"description":"SLE10-SDK-SP2-Online for sled-10-i586","installer_updates":false,"name":"SLE10-SDK-SP2-Online","distro_target":"sled-10-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sled-10-i586/","enabled":true,"id":1308},{"description":"SLE10-SDK-SP2-Updates for sles-10-i586","installer_updates":false,"name":"SLE10-SDK-SP2-Updates","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Updates/sles-10-i586/","distro_target":"sles-10-i586","autorefresh":true,"id":1309,"enabled":true},{"distro_target":"sles-10-ia64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Updates/sles-10-ia64/","enabled":true,"id":1310,"description":"SLE10-SDK-SP2-Updates for sles-10-ia64","installer_updates":false,"name":"SLE10-SDK-SP2-Updates"},{"id":1311,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Updates/sles-10-s390x/","distro_target":"sles-10-s390x","autorefresh":true,"installer_updates":false,"name":"SLE10-SDK-SP2-Updates","description":"SLE10-SDK-SP2-Updates for sles-10-s390x"},{"autorefresh":true,"distro_target":"sles-10-ppc","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sles-10-ppc/","enabled":true,"id":1312,"description":"SLE10-SDK-SP2-Online for sles-10-ppc","name":"SLE10-SDK-SP2-Online","installer_updates":false},{"id":1313,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sles-10-i586/","autorefresh":true,"distro_target":"sles-10-i586","name":"SLE10-SDK-SP2-Online","installer_updates":false,"description":"SLE10-SDK-SP2-Online for sles-10-i586"},{"description":"SLE10-SDK-SP2-Online for sled-10-x86_64","name":"SLE10-SDK-SP2-Online","installer_updates":false,"autorefresh":true,"distro_target":"sled-10-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sled-10-x86_64/","enabled":true,"id":1314},{"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Updates/sles-10-x86_64/","autorefresh":true,"distro_target":"sles-10-x86_64","id":1315,"enabled":true,"description":"SLE10-SDK-SP2-Updates for sles-10-x86_64","name":"SLE10-SDK-SP2-Updates","installer_updates":false},{"installer_updates":false,"name":"SLE10-SDK-SP2-Online","description":"SLE10-SDK-SP2-Online for sles-10-ia64","id":1316,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sles-10-ia64/","distro_target":"sles-10-ia64","autorefresh":true},{"name":"SLE10-SDK-SP2-Updates","installer_updates":false,"description":"SLE10-SDK-SP2-Updates for sles-10-ppc","id":1317,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Updates/sles-10-ppc/","autorefresh":true,"distro_target":"sles-10-ppc"},{"description":"SLE10-SDK-SP2-Online for sles-10-s390x","name":"SLE10-SDK-SP2-Online","installer_updates":false,"autorefresh":true,"distro_target":"sles-10-s390x","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sles-10-s390x/","enabled":true,"id":1318},{"installer_updates":false,"name":"SLE10-SDK-SP2-Updates","description":"SLE10-SDK-SP2-Updates for sled-10-x86_64","id":1319,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Updates/sled-10-x86_64/","distro_target":"sled-10-x86_64","autorefresh":true},{"installer_updates":false,"name":"SLE10-SDK-SP2-Updates","description":"SLE10-SDK-SP2-Updates for sled-10-i586","enabled":true,"id":1320,"distro_target":"sled-10-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Updates/sled-10-i586/"},{"description":"SLE10-SDK-SP2-Online for sles-10-x86_64","installer_updates":false,"name":"SLE10-SDK-SP2-Online","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sles-10-x86_64/","distro_target":"sles-10-x86_64","autorefresh":true,"id":1321,"enabled":true}],"predecessor_ids":[],"arch":null,"eula_url":"","free":true,"description":null,"shortname":null,"id":1177,"release_stage":"released","identifier":"SUSE-Linux-Enterprise-SDK-SP2","extensions":[],"friendly_version":"10 SP2","former_identifier":"SUSE-Linux-Enterprise-SDK-SP2","release_type":null,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Software Development Kit 10 SP2","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Software Development Kit","version":"10","recommended":false}]},{"former_identifier":"SUSE-Linux-Enterprise-Desktop-SP2","release_type":"HP_01","friendly_name":"SUSE Linux Enterprise Desktop 10 SP2 HP_01","migration_extra":false,"offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Desktop","version":"10","recommended":false,"release_stage":"released","identifier":"SUSE-Linux-Enterprise-Desktop-SP2","id":1016,"extensions":[{"friendly_version":"10 SP2","extensions":[],"release_stage":"released","id":1176,"identifier":"SUSE-Linux-Enterprise-SDK-SP2","recommended":false,"version":"10","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Software Development Kit","release_type":"MigrationBeta","former_identifier":"SUSE-Linux-Enterprise-SDK-SP2","friendly_name":"SUSE Linux Enterprise Software Development Kit 10 SP2 MigrationBeta","migration_extra":false,"predecessor_ids":[],"repositories":[],"online_predecessor_ids":[],"product_class":"SLE-SDK","product_type":"extension","cpe":null,"free":true,"description":null,"shortname":null,"eula_url":"","arch":null},{"predecessor_ids":[],"product_class":"SLE-SDK","online_predecessor_ids":[],"repositories":[{"name":"SLE10-SDK-SP2-Online","installer_updates":false,"description":"SLE10-SDK-SP2-Online for sled-10-i586","enabled":true,"id":1308,"autorefresh":true,"distro_target":"sled-10-i586","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sled-10-i586/"},{"description":"SLE10-SDK-SP2-Updates for sles-10-i586","name":"SLE10-SDK-SP2-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sles-10-i586","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Updates/sles-10-i586/","enabled":true,"id":1309},{"autorefresh":true,"distro_target":"sles-10-ia64","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Updates/sles-10-ia64/","enabled":true,"id":1310,"description":"SLE10-SDK-SP2-Updates for sles-10-ia64","name":"SLE10-SDK-SP2-Updates","installer_updates":false},{"distro_target":"sles-10-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Updates/sles-10-s390x/","enabled":true,"id":1311,"description":"SLE10-SDK-SP2-Updates for sles-10-s390x","installer_updates":false,"name":"SLE10-SDK-SP2-Updates"},{"description":"SLE10-SDK-SP2-Online for sles-10-ppc","installer_updates":false,"name":"SLE10-SDK-SP2-Online","distro_target":"sles-10-ppc","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sles-10-ppc/","enabled":true,"id":1312},{"description":"SLE10-SDK-SP2-Online for sles-10-i586","installer_updates":false,"name":"SLE10-SDK-SP2-Online","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sles-10-i586/","distro_target":"sles-10-i586","autorefresh":true,"id":1313,"enabled":true},{"name":"SLE10-SDK-SP2-Online","installer_updates":false,"description":"SLE10-SDK-SP2-Online for sled-10-x86_64","id":1314,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sled-10-x86_64/","autorefresh":true,"distro_target":"sled-10-x86_64"},{"installer_updates":false,"name":"SLE10-SDK-SP2-Updates","description":"SLE10-SDK-SP2-Updates for sles-10-x86_64","id":1315,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Updates/sles-10-x86_64/","distro_target":"sles-10-x86_64","autorefresh":true},{"description":"SLE10-SDK-SP2-Online for sles-10-ia64","installer_updates":false,"name":"SLE10-SDK-SP2-Online","distro_target":"sles-10-ia64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sles-10-ia64/","enabled":true,"id":1316},{"installer_updates":false,"name":"SLE10-SDK-SP2-Updates","description":"SLE10-SDK-SP2-Updates for sles-10-ppc","enabled":true,"id":1317,"distro_target":"sles-10-ppc","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Updates/sles-10-ppc/"},{"name":"SLE10-SDK-SP2-Online","installer_updates":false,"description":"SLE10-SDK-SP2-Online for sles-10-s390x","enabled":true,"id":1318,"autorefresh":true,"distro_target":"sles-10-s390x","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sles-10-s390x/"},{"autorefresh":true,"distro_target":"sled-10-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Updates/sled-10-x86_64/","enabled":true,"id":1319,"description":"SLE10-SDK-SP2-Updates for sled-10-x86_64","name":"SLE10-SDK-SP2-Updates","installer_updates":false},{"name":"SLE10-SDK-SP2-Updates","installer_updates":false,"description":"SLE10-SDK-SP2-Updates for sled-10-i586","id":1320,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Updates/sled-10-i586/","autorefresh":true,"distro_target":"sled-10-i586"},{"id":1321,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sles-10-x86_64/","distro_target":"sles-10-x86_64","autorefresh":true,"installer_updates":false,"name":"SLE10-SDK-SP2-Online","description":"SLE10-SDK-SP2-Online for sles-10-x86_64"}],"product_type":"extension","cpe":null,"free":true,"description":null,"shortname":null,"eula_url":"","arch":null,"friendly_version":"10 SP2","extensions":[],"release_stage":"released","identifier":"SUSE-Linux-Enterprise-SDK-SP2","id":1177,"recommended":false,"version":"10","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Software Development Kit","former_identifier":"SUSE-Linux-Enterprise-SDK-SP2","release_type":null,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Software Development Kit 10 SP2"}],"friendly_version":"10 SP2","arch":null,"eula_url":"","free":false,"shortname":null,"description":null,"product_type":"base","cpe":null,"product_class":"7260","online_predecessor_ids":[],"repositories":[{"installer_updates":false,"name":"SLE10-SP2-Debuginfo-Updates","description":"SLE10-SP2-Debuginfo-Updates for sles-10-i586","id":656,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP2-Debuginfo-Updates/sles-10-i586/","distro_target":"sles-10-i586","autorefresh":true},{"enabled":false,"id":661,"distro_target":"sles-10-ppc","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP2-Debuginfo-Updates/sles-10-ppc/","installer_updates":false,"name":"SLE10-SP2-Debuginfo-Updates","description":"SLE10-SP2-Debuginfo-Updates for sles-10-ppc"},{"installer_updates":false,"name":"SLE10-SP2-Debuginfo-Updates","description":"SLE10-SP2-Debuginfo-Updates for sles-10-s390x","id":765,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP2-Debuginfo-Updates/sles-10-s390x/","distro_target":"sles-10-s390x","autorefresh":true},{"installer_updates":false,"name":"SLE10-SP2-Debuginfo-Updates","description":"SLE10-SP2-Debuginfo-Updates for sles-10-ia64","id":776,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP2-Debuginfo-Updates/sles-10-ia64/","distro_target":"sles-10-ia64","autorefresh":true},{"installer_updates":false,"name":"SLE10-SP2-Debuginfo-Updates","description":"SLE10-SP2-Debuginfo-Updates for sles-10-x86_64","id":808,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP2-Debuginfo-Updates/sles-10-x86_64/","distro_target":"sles-10-x86_64","autorefresh":true},{"installer_updates":false,"name":"SLED10-SP2-Pool","description":"SLED10-SP2-Pool for sled-10-i586","enabled":true,"id":862,"distro_target":"sled-10-i586","autorefresh":false,"url":"https://updates.suse.com/repo/$RCE/SLED10-SP2-Pool/sled-10-i586/"},{"distro_target":"sled-10-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLED10-SP2-Updates/sled-10-i586/","enabled":true,"id":863,"description":"SLED10-SP2-Updates for sled-10-i586","installer_updates":false,"name":"SLED10-SP2-Updates"},{"id":864,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP2-Debuginfo-Updates/sled-10-i586/","autorefresh":true,"distro_target":"sled-10-i586","name":"SLE10-SP2-Debuginfo-Updates","installer_updates":false,"description":"SLE10-SP2-Debuginfo-Updates for sled-10-i586"},{"description":"SLE10-SP2-Debuginfo-Updates for sled-10-x86_64","installer_updates":false,"name":"SLE10-SP2-Debuginfo-Updates","distro_target":"sled-10-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP2-Debuginfo-Updates/sled-10-x86_64/","enabled":false,"id":865},{"installer_updates":false,"name":"SLED10-SP2-Updates","description":"SLED10-SP2-Updates for sled-10-x86_64","enabled":true,"id":866,"distro_target":"sled-10-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLED10-SP2-Updates/sled-10-x86_64/"},{"installer_updates":false,"name":"SLED10-SP2-Pool","description":"SLED10-SP2-Pool for sled-10-x86_64","enabled":true,"id":867,"distro_target":"sled-10-x86_64","autorefresh":false,"url":"https://updates.suse.com/repo/$RCE/SLED10-SP2-Pool/sled-10-x86_64/"}],"predecessor_ids":[]},{"cpe":null,"product_type":"base","predecessor_ids":[],"product_class":"7260","online_predecessor_ids":[],"repositories":[{"id":641,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP1-Debuginfo-Updates/sles-10-i586/","distro_target":"sles-10-i586","autorefresh":true,"installer_updates":false,"name":"SLE10-SP1-Debuginfo-Updates","description":"SLE10-SP1-Debuginfo-Updates for sles-10-i586"},{"id":648,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP1-Debuginfo-Updates/sles-10-ppc/","autorefresh":true,"distro_target":"sles-10-ppc","name":"SLE10-SP1-Debuginfo-Updates","installer_updates":false,"description":"SLE10-SP1-Debuginfo-Updates for sles-10-ppc"},{"enabled":false,"id":652,"autorefresh":true,"distro_target":"sles-10-s390x","url":"https://updates.suse.com/repo/$RCE/SLE10-SP1-Debuginfo-Updates/sles-10-s390x/","name":"SLE10-SP1-Debuginfo-Updates","installer_updates":false,"description":"SLE10-SP1-Debuginfo-Updates for sles-10-s390x"},{"id":773,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP1-Debuginfo-Updates/sles-10-x86_64/","autorefresh":true,"distro_target":"sles-10-x86_64","name":"SLE10-SP1-Debuginfo-Updates","installer_updates":false,"description":"SLE10-SP1-Debuginfo-Updates for sles-10-x86_64"},{"description":"SLE10-SP1-Debuginfo-Updates for sles-10-ia64","installer_updates":false,"name":"SLE10-SP1-Debuginfo-Updates","distro_target":"sles-10-ia64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP1-Debuginfo-Updates/sles-10-ia64/","enabled":false,"id":795},{"description":"SLED10-SP1-Updates for sled-10-i586","name":"SLED10-SP1-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sled-10-i586","url":"https://updates.suse.com/repo/$RCE/SLED10-SP1-Updates/sled-10-i586/","enabled":true,"id":843},{"description":"SLE10-SP1-Debuginfo-Updates for sled-10-i586","installer_updates":false,"name":"SLE10-SP1-Debuginfo-Updates","url":"https://updates.suse.com/repo/$RCE/SLE10-SP1-Debuginfo-Updates/sled-10-i586/","distro_target":"sled-10-i586","autorefresh":true,"id":845,"enabled":false},{"installer_updates":false,"name":"SLE10-SP1-Debuginfo-Updates","description":"SLE10-SP1-Debuginfo-Updates for sled-10-x86_64","id":907,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP1-Debuginfo-Updates/sled-10-x86_64/","distro_target":"sled-10-x86_64","autorefresh":true},{"enabled":true,"id":908,"autorefresh":true,"distro_target":"sled-10-x86_64","url":"https://updates.suse.com/repo/$RCE/SLED10-SP1-Updates/sled-10-x86_64/","name":"SLED10-SP1-Updates","installer_updates":false,"description":"SLED10-SP1-Updates for sled-10-x86_64"}],"eula_url":"","arch":null,"description":null,"shortname":null,"free":false,"extensions":[{"arch":null,"eula_url":"","free":true,"shortname":null,"description":null,"product_type":"extension","cpe":null,"product_class":"SLE-SDK","online_predecessor_ids":[],"repositories":[{"autorefresh":true,"distro_target":"sles-10-s390x","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sles-10-s390x/","enabled":true,"id":1294,"description":"SLE10-SDK-SP1-Online for sles-10-s390x","name":"SLE10-SDK-SP1-Online","installer_updates":false},{"enabled":true,"id":1295,"distro_target":"sles-10-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sles-10-x86_64/","installer_updates":false,"name":"SLE10-SDK-SP1-Online","description":"SLE10-SDK-SP1-Online for sles-10-x86_64"},{"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sled-10-i586/","distro_target":"sled-10-i586","autorefresh":true,"id":1296,"enabled":true,"description":"SLE10-SDK-SP1-Online for sled-10-i586","installer_updates":false,"name":"SLE10-SDK-SP1-Online"},{"autorefresh":true,"distro_target":"sles-10-ppc","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sles-10-ppc/","enabled":true,"id":1297,"description":"SLE10-SDK-SP1-Online for sles-10-ppc","name":"SLE10-SDK-SP1-Online","installer_updates":false},{"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Updates/sles-10-s390x/","distro_target":"sles-10-s390x","autorefresh":true,"id":1298,"enabled":true,"description":"SLE10-SDK-SP1-Updates for sles-10-s390x","installer_updates":false,"name":"SLE10-SDK-SP1-Updates"},{"enabled":true,"id":1299,"autorefresh":true,"distro_target":"sled-10-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Updates/sled-10-x86_64/","name":"SLE10-SDK-SP1-Updates","installer_updates":false,"description":"SLE10-SDK-SP1-Updates for sled-10-x86_64"},{"id":1300,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Updates/sles-10-x86_64/","distro_target":"sles-10-x86_64","autorefresh":true,"installer_updates":false,"name":"SLE10-SDK-SP1-Updates","description":"SLE10-SDK-SP1-Updates for sles-10-x86_64"},{"description":"SLE10-SDK-SP1-Online for sles-10-ia64","installer_updates":false,"name":"SLE10-SDK-SP1-Online","distro_target":"sles-10-ia64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sles-10-ia64/","enabled":true,"id":1301},{"name":"SLE10-SDK-SP1-Updates","installer_updates":false,"description":"SLE10-SDK-SP1-Updates for sled-10-i586","enabled":true,"id":1302,"autorefresh":true,"distro_target":"sled-10-i586","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Updates/sled-10-i586/"},{"distro_target":"sles-10-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sles-10-i586/","enabled":true,"id":1303,"description":"SLE10-SDK-SP1-Online for sles-10-i586","installer_updates":false,"name":"SLE10-SDK-SP1-Online"},{"autorefresh":true,"distro_target":"sles-10-ia64","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Updates/sles-10-ia64/","enabled":true,"id":1304,"description":"SLE10-SDK-SP1-Updates for sles-10-ia64","name":"SLE10-SDK-SP1-Updates","installer_updates":false},{"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Updates/sles-10-ppc/","distro_target":"sles-10-ppc","autorefresh":true,"id":1305,"enabled":true,"description":"SLE10-SDK-SP1-Updates for sles-10-ppc","installer_updates":false,"name":"SLE10-SDK-SP1-Updates"},{"description":"SLE10-SDK-SP1-Updates for sles-10-i586","name":"SLE10-SDK-SP1-Updates","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Updates/sles-10-i586/","autorefresh":true,"distro_target":"sles-10-i586","id":1306,"enabled":true},{"description":"SLE10-SDK-SP1-Online for sled-10-x86_64","installer_updates":false,"name":"SLE10-SDK-SP1-Online","distro_target":"sled-10-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sled-10-x86_64/","enabled":true,"id":1307}],"predecessor_ids":[],"release_type":null,"former_identifier":"SUSE-Linux-Enterprise-SDK-SP1","friendly_name":"SUSE Linux Enterprise Software Development Kit 10 SP1","migration_extra":false,"offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Software Development Kit","version":"10","recommended":false,"id":1174,"release_stage":"released","identifier":"SUSE-Linux-Enterprise-SDK-SP1","extensions":[],"friendly_version":"10 SP1"}],"id":1017,"release_stage":"released","identifier":"SUSE-Linux-Enterprise-Desktop-SP1","friendly_version":"10 SP1","name":"SUSE Linux Enterprise Desktop","offline_predecessor_ids":[],"friendly_name":"SUSE Linux Enterprise Desktop 10 SP1 HP_07","migration_extra":false,"former_identifier":"SUSE-Linux-Enterprise-Desktop-SP1","release_type":"HP_07","recommended":false,"version":"10"},{"eula_url":"","arch":null,"free":false,"description":null,"shortname":null,"product_type":"base","cpe":null,"predecessor_ids":[],"repositories":[{"id":656,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP2-Debuginfo-Updates/sles-10-i586/","distro_target":"sles-10-i586","autorefresh":true,"installer_updates":false,"name":"SLE10-SP2-Debuginfo-Updates","description":"SLE10-SP2-Debuginfo-Updates for sles-10-i586"},{"id":661,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP2-Debuginfo-Updates/sles-10-ppc/","autorefresh":true,"distro_target":"sles-10-ppc","name":"SLE10-SP2-Debuginfo-Updates","installer_updates":false,"description":"SLE10-SP2-Debuginfo-Updates for sles-10-ppc"},{"autorefresh":true,"distro_target":"sles-10-s390x","url":"https://updates.suse.com/repo/$RCE/SLE10-SP2-Debuginfo-Updates/sles-10-s390x/","enabled":true,"id":765,"description":"SLE10-SP2-Debuginfo-Updates for sles-10-s390x","name":"SLE10-SP2-Debuginfo-Updates","installer_updates":false},{"enabled":true,"id":776,"autorefresh":true,"distro_target":"sles-10-ia64","url":"https://updates.suse.com/repo/$RCE/SLE10-SP2-Debuginfo-Updates/sles-10-ia64/","name":"SLE10-SP2-Debuginfo-Updates","installer_updates":false,"description":"SLE10-SP2-Debuginfo-Updates for sles-10-ia64"},{"url":"https://updates.suse.com/repo/$RCE/SLE10-SP2-Debuginfo-Updates/sles-10-x86_64/","distro_target":"sles-10-x86_64","autorefresh":true,"id":808,"enabled":true,"description":"SLE10-SP2-Debuginfo-Updates for sles-10-x86_64","installer_updates":false,"name":"SLE10-SP2-Debuginfo-Updates"},{"autorefresh":false,"distro_target":"sled-10-i586","url":"https://updates.suse.com/repo/$RCE/SLED10-SP2-Pool/sled-10-i586/","enabled":true,"id":862,"description":"SLED10-SP2-Pool for sled-10-i586","name":"SLED10-SP2-Pool","installer_updates":false},{"enabled":true,"id":863,"distro_target":"sled-10-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLED10-SP2-Updates/sled-10-i586/","installer_updates":false,"name":"SLED10-SP2-Updates","description":"SLED10-SP2-Updates for sled-10-i586"},{"url":"https://updates.suse.com/repo/$RCE/SLE10-SP2-Debuginfo-Updates/sled-10-i586/","autorefresh":true,"distro_target":"sled-10-i586","id":864,"enabled":true,"description":"SLE10-SP2-Debuginfo-Updates for sled-10-i586","name":"SLE10-SP2-Debuginfo-Updates","installer_updates":false},{"name":"SLE10-SP2-Debuginfo-Updates","installer_updates":false,"description":"SLE10-SP2-Debuginfo-Updates for sled-10-x86_64","enabled":true,"id":865,"autorefresh":true,"distro_target":"sled-10-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE10-SP2-Debuginfo-Updates/sled-10-x86_64/"},{"installer_updates":false,"name":"SLED10-SP2-Updates","description":"SLED10-SP2-Updates for sled-10-x86_64","id":866,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLED10-SP2-Updates/sled-10-x86_64/","distro_target":"sled-10-x86_64","autorefresh":true},{"name":"SLED10-SP2-Pool","installer_updates":false,"description":"SLED10-SP2-Pool for sled-10-x86_64","enabled":true,"id":867,"autorefresh":false,"distro_target":"sled-10-x86_64","url":"https://updates.suse.com/repo/$RCE/SLED10-SP2-Pool/sled-10-x86_64/"}],"online_predecessor_ids":[],"product_class":"7260","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Desktop","former_identifier":"SUSE-Linux-Enterprise-Desktop-SP2","release_type":"Lenovo_1_1y","migration_extra":false,"friendly_name":"SUSE Linux Enterprise Desktop 10 SP2 Lenovo_1_1y","recommended":false,"version":"10","extensions":[{"former_identifier":"SUSE-Linux-Enterprise-SDK-SP2","release_type":"MigrationBeta","friendly_name":"SUSE Linux Enterprise Software Development Kit 10 SP2 MigrationBeta","migration_extra":false,"offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Software Development Kit","version":"10","recommended":false,"release_stage":"released","id":1176,"identifier":"SUSE-Linux-Enterprise-SDK-SP2","extensions":[],"friendly_version":"10 SP2","arch":null,"eula_url":"","free":true,"shortname":null,"description":null,"product_type":"extension","cpe":null,"product_class":"SLE-SDK","online_predecessor_ids":[],"repositories":[],"predecessor_ids":[]},{"product_class":"SLE-SDK","online_predecessor_ids":[],"repositories":[{"id":1308,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sled-10-i586/","autorefresh":true,"distro_target":"sled-10-i586","name":"SLE10-SDK-SP2-Online","installer_updates":false,"description":"SLE10-SDK-SP2-Online for sled-10-i586"},{"distro_target":"sles-10-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Updates/sles-10-i586/","enabled":true,"id":1309,"description":"SLE10-SDK-SP2-Updates for sles-10-i586","installer_updates":false,"name":"SLE10-SDK-SP2-Updates"},{"enabled":true,"id":1310,"distro_target":"sles-10-ia64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Updates/sles-10-ia64/","installer_updates":false,"name":"SLE10-SDK-SP2-Updates","description":"SLE10-SDK-SP2-Updates for sles-10-ia64"},{"name":"SLE10-SDK-SP2-Updates","installer_updates":false,"description":"SLE10-SDK-SP2-Updates for sles-10-s390x","enabled":true,"id":1311,"autorefresh":true,"distro_target":"sles-10-s390x","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Updates/sles-10-s390x/"},{"id":1312,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sles-10-ppc/","autorefresh":true,"distro_target":"sles-10-ppc","name":"SLE10-SDK-SP2-Online","installer_updates":false,"description":"SLE10-SDK-SP2-Online for sles-10-ppc"},{"description":"SLE10-SDK-SP2-Online for sles-10-i586","name":"SLE10-SDK-SP2-Online","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sles-10-i586/","autorefresh":true,"distro_target":"sles-10-i586","id":1313,"enabled":true},{"id":1314,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sled-10-x86_64/","autorefresh":true,"distro_target":"sled-10-x86_64","name":"SLE10-SDK-SP2-Online","installer_updates":false,"description":"SLE10-SDK-SP2-Online for sled-10-x86_64"},{"description":"SLE10-SDK-SP2-Updates for sles-10-x86_64","installer_updates":false,"name":"SLE10-SDK-SP2-Updates","distro_target":"sles-10-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Updates/sles-10-x86_64/","enabled":true,"id":1315},{"name":"SLE10-SDK-SP2-Online","installer_updates":false,"description":"SLE10-SDK-SP2-Online for sles-10-ia64","id":1316,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sles-10-ia64/","autorefresh":true,"distro_target":"sles-10-ia64"},{"description":"SLE10-SDK-SP2-Updates for sles-10-ppc","name":"SLE10-SDK-SP2-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sles-10-ppc","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Updates/sles-10-ppc/","enabled":true,"id":1317},{"enabled":true,"id":1318,"autorefresh":true,"distro_target":"sles-10-s390x","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sles-10-s390x/","name":"SLE10-SDK-SP2-Online","installer_updates":false,"description":"SLE10-SDK-SP2-Online for sles-10-s390x"},{"description":"SLE10-SDK-SP2-Updates for sled-10-x86_64","name":"SLE10-SDK-SP2-Updates","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Updates/sled-10-x86_64/","autorefresh":true,"distro_target":"sled-10-x86_64","id":1319,"enabled":true},{"name":"SLE10-SDK-SP2-Updates","installer_updates":false,"description":"SLE10-SDK-SP2-Updates for sled-10-i586","id":1320,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Updates/sled-10-i586/","autorefresh":true,"distro_target":"sled-10-i586"},{"id":1321,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sles-10-x86_64/","distro_target":"sles-10-x86_64","autorefresh":true,"installer_updates":false,"name":"SLE10-SDK-SP2-Online","description":"SLE10-SDK-SP2-Online for sles-10-x86_64"}],"predecessor_ids":[],"cpe":null,"product_type":"extension","description":null,"shortname":null,"free":true,"arch":null,"eula_url":"","friendly_version":"10 SP2","release_stage":"released","id":1177,"identifier":"SUSE-Linux-Enterprise-SDK-SP2","extensions":[],"version":"10","recommended":false,"friendly_name":"SUSE Linux Enterprise Software Development Kit 10 SP2","migration_extra":false,"former_identifier":"SUSE-Linux-Enterprise-SDK-SP2","release_type":null,"name":"SUSE Linux Enterprise Software Development Kit","offline_predecessor_ids":[]}],"id":1018,"release_stage":"released","identifier":"SUSE-Linux-Enterprise-Desktop-SP2","friendly_version":"10 SP2"},{"name":"SUSE Linux Enterprise Desktop","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Desktop 11 HP-BNB","release_type":"HP-BNB","former_identifier":"SUSE_SLED","recommended":false,"version":"11","extensions":[{"release_stage":"released","id":1158,"identifier":"sle-sdk","extensions":[],"friendly_version":"11","friendly_name":"SUSE Linux Enterprise Software Development Kit 11","migration_extra":false,"release_type":null,"former_identifier":"sle-sdk","name":"SUSE Linux Enterprise Software Development Kit","offline_predecessor_ids":[],"version":"11","recommended":false,"cpe":null,"product_type":"extension","online_predecessor_ids":[],"repositories":[{"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-Updates/sle-11-ppc64/","distro_target":"sle-11-ppc64","autorefresh":true,"id":1247,"enabled":true,"description":"SLE11-SDK-Updates for sle-11-ppc64","installer_updates":false,"name":"SLE11-SDK-Updates"},{"description":"SLE11-SDK-Pool for sle-11-s390x","name":"SLE11-SDK-Pool","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-Pool/sle-11-s390x/","autorefresh":true,"distro_target":"sle-11-s390x","id":1248,"enabled":false},{"name":"SLE11-SDK-Updates","installer_updates":false,"description":"SLE11-SDK-Updates for sle-11-x86_64","id":1249,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-Updates/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64"},{"description":"SLE11-SDK-Pool for sle-11-i586","installer_updates":false,"name":"SLE11-SDK-Pool","distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-Pool/sle-11-i586/","enabled":false,"id":1250},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-Pool/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64","id":1251,"enabled":false,"description":"SLE11-SDK-Pool for sle-11-x86_64","name":"SLE11-SDK-Pool","installer_updates":false},{"autorefresh":true,"distro_target":"sle-11-ppc64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-Pool/sle-11-ppc64/","enabled":false,"id":1252,"description":"SLE11-SDK-Pool for sle-11-ppc64","name":"SLE11-SDK-Pool","installer_updates":false},{"name":"SLE11-SDK-Updates","installer_updates":false,"description":"SLE11-SDK-Updates for sle-11-i586","id":1253,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-Updates/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586"},{"installer_updates":false,"name":"SLE11-SDK-Pool","description":"SLE11-SDK-Pool for sle-11-ia64","id":1254,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-Pool/sle-11-ia64/","distro_target":"sle-11-ia64","autorefresh":true},{"enabled":true,"id":1255,"autorefresh":true,"distro_target":"sle-11-s390x","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-Updates/sle-11-s390x/","name":"SLE11-SDK-Updates","installer_updates":false,"description":"SLE11-SDK-Updates for sle-11-s390x"},{"installer_updates":false,"name":"SLE11-SDK-Updates","description":"SLE11-SDK-Updates for sle-11-ia64","id":1256,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-Updates/sle-11-ia64/","distro_target":"sle-11-ia64","autorefresh":true}],"product_class":"SLE-SDK","predecessor_ids":[],"arch":null,"eula_url":"","shortname":null,"description":null,"free":true},{"friendly_version":"11","extensions":[],"id":1162,"release_stage":"released","identifier":"sle-sdk-SP1-migration","recommended":false,"version":"11","name":"SUSE Linux Enterprise Software Development Kit","offline_predecessor_ids":[],"friendly_name":"SUSE Linux Enterprise Software Development Kit 11 (Migration)","migration_extra":false,"release_type":null,"former_identifier":"sle-sdk-SP1-migration","predecessor_ids":[],"product_class":"SLE-SDK","online_predecessor_ids":[],"repositories":[{"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-ia64/","distro_target":"sle-11-ia64","autorefresh":true,"id":1258,"enabled":true,"description":"SLE11-SDK-SP1-Pool for sle-11-ia64","installer_updates":false,"name":"SLE11-SDK-SP1-Pool"},{"description":"SLE11-SDK-SP1-Pool for sle-11-s390x","name":"SLE11-SDK-SP1-Pool","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-s390x/","autorefresh":true,"distro_target":"sle-11-s390x","id":1259,"enabled":true},{"id":1261,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-ppc64/","autorefresh":true,"distro_target":"sle-11-ppc64","name":"SLE11-SDK-SP1-Pool","installer_updates":false,"description":"SLE11-SDK-SP1-Pool for sle-11-ppc64"},{"distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-i586/","enabled":true,"id":1263,"description":"SLE11-SDK-SP1-Pool for sle-11-i586","installer_updates":false,"name":"SLE11-SDK-SP1-Pool"},{"enabled":true,"id":1264,"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-x86_64/","name":"SLE11-SDK-SP1-Pool","installer_updates":false,"description":"SLE11-SDK-SP1-Pool for sle-11-x86_64"}],"cpe":null,"product_type":"extension","description":null,"shortname":null,"free":true,"eula_url":"","arch":null}],"id":1019,"release_stage":"released","identifier":"SUSE_SLED","friendly_version":"11","eula_url":"","arch":null,"description":null,"shortname":null,"free":false,"cpe":null,"product_type":"base","predecessor_ids":[],"repositories":[{"name":"SLE11-Debuginfo-Pool","installer_updates":false,"description":"SLE11-Debuginfo-Pool for sle-11-i586","id":747,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-Debuginfo-Pool/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586"},{"installer_updates":false,"name":"SLE11-Debuginfo-Updates","description":"SLE11-Debuginfo-Updates for sle-11-i586","enabled":false,"id":748,"distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-Debuginfo-Updates/sle-11-i586/"},{"enabled":false,"id":846,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLED11-Extras/sle-11-i586/","name":"SLED11-Extras","installer_updates":false,"description":"SLED11-Extras for sle-11-i586"},{"installer_updates":false,"name":"SLED11-Pool","description":"SLED11-Pool for sle-11-i586","enabled":false,"id":848,"distro_target":"sle-11-i586","autorefresh":false,"url":"https://updates.suse.com/repo/$RCE/SLED11-Pool/sle-11-i586/"},{"description":"SLED11-Updates for sle-11-i586","name":"SLED11-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLED11-Updates/sle-11-i586/","enabled":true,"id":849}],"online_predecessor_ids":[],"product_class":"7260"},{"identifier":"SUSE_SLED","release_stage":"released","id":1020,"extensions":[{"version":"11","recommended":false,"release_type":null,"former_identifier":"sle-sdk","friendly_name":"SUSE Linux Enterprise Software Development Kit 11","migration_extra":false,"offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Software Development Kit","friendly_version":"11","identifier":"sle-sdk","release_stage":"released","id":1158,"extensions":[],"free":true,"description":null,"shortname":null,"arch":null,"eula_url":"","online_predecessor_ids":[],"repositories":[{"installer_updates":false,"name":"SLE11-SDK-Updates","description":"SLE11-SDK-Updates for sle-11-ppc64","enabled":true,"id":1247,"distro_target":"sle-11-ppc64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-Updates/sle-11-ppc64/"},{"installer_updates":false,"name":"SLE11-SDK-Pool","description":"SLE11-SDK-Pool for sle-11-s390x","enabled":false,"id":1248,"distro_target":"sle-11-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-Pool/sle-11-s390x/"},{"description":"SLE11-SDK-Updates for sle-11-x86_64","installer_updates":false,"name":"SLE11-SDK-Updates","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-Updates/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true,"id":1249,"enabled":true},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-Pool/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","id":1250,"enabled":false,"description":"SLE11-SDK-Pool for sle-11-i586","name":"SLE11-SDK-Pool","installer_updates":false},{"enabled":false,"id":1251,"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-Pool/sle-11-x86_64/","name":"SLE11-SDK-Pool","installer_updates":false,"description":"SLE11-SDK-Pool for sle-11-x86_64"},{"description":"SLE11-SDK-Pool for sle-11-ppc64","installer_updates":false,"name":"SLE11-SDK-Pool","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-Pool/sle-11-ppc64/","distro_target":"sle-11-ppc64","autorefresh":true,"id":1252,"enabled":false},{"installer_updates":false,"name":"SLE11-SDK-Updates","description":"SLE11-SDK-Updates for sle-11-i586","id":1253,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-Updates/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true},{"distro_target":"sle-11-ia64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-Pool/sle-11-ia64/","enabled":false,"id":1254,"description":"SLE11-SDK-Pool for sle-11-ia64","installer_updates":false,"name":"SLE11-SDK-Pool"},{"distro_target":"sle-11-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-Updates/sle-11-s390x/","enabled":true,"id":1255,"description":"SLE11-SDK-Updates for sle-11-s390x","installer_updates":false,"name":"SLE11-SDK-Updates"},{"name":"SLE11-SDK-Updates","installer_updates":false,"description":"SLE11-SDK-Updates for sle-11-ia64","id":1256,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-Updates/sle-11-ia64/","autorefresh":true,"distro_target":"sle-11-ia64"}],"product_class":"SLE-SDK","predecessor_ids":[],"product_type":"extension","cpe":null},{"friendly_version":"11","identifier":"sle-sdk-SP1-migration","release_stage":"released","id":1162,"extensions":[],"version":"11","recommended":false,"former_identifier":"sle-sdk-SP1-migration","release_type":null,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Software Development Kit 11 (Migration)","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Software Development Kit","online_predecessor_ids":[],"product_class":"SLE-SDK","repositories":[{"enabled":true,"id":1258,"distro_target":"sle-11-ia64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-ia64/","installer_updates":false,"name":"SLE11-SDK-SP1-Pool","description":"SLE11-SDK-SP1-Pool for sle-11-ia64"},{"installer_updates":false,"name":"SLE11-SDK-SP1-Pool","description":"SLE11-SDK-SP1-Pool for sle-11-s390x","id":1259,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-s390x/","distro_target":"sle-11-s390x","autorefresh":true},{"description":"SLE11-SDK-SP1-Pool for sle-11-ppc64","name":"SLE11-SDK-SP1-Pool","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-ppc64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-ppc64/","enabled":true,"id":1261},{"id":1263,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","name":"SLE11-SDK-SP1-Pool","installer_updates":false,"description":"SLE11-SDK-SP1-Pool for sle-11-i586"},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64","id":1264,"enabled":true,"description":"SLE11-SDK-SP1-Pool for sle-11-x86_64","name":"SLE11-SDK-SP1-Pool","installer_updates":false}],"predecessor_ids":[],"product_type":"extension","cpe":null,"free":true,"description":null,"shortname":null,"arch":null,"eula_url":""}],"friendly_version":"11","release_type":"HP-WGBU","former_identifier":"SUSE_SLED","friendly_name":"SUSE Linux Enterprise Desktop 11 HP-WGBU","migration_extra":false,"offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Desktop","version":"11","recommended":false,"product_type":"base","cpe":null,"online_predecessor_ids":[],"product_class":"7260","repositories":[{"id":747,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-Debuginfo-Pool/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true,"installer_updates":false,"name":"SLE11-Debuginfo-Pool","description":"SLE11-Debuginfo-Pool for sle-11-i586"},{"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-Debuginfo-Updates/sle-11-i586/","enabled":false,"id":748,"description":"SLE11-Debuginfo-Updates for sle-11-i586","name":"SLE11-Debuginfo-Updates","installer_updates":false},{"description":"SLED11-Extras for sle-11-i586","name":"SLED11-Extras","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLED11-Extras/sle-11-i586/","enabled":false,"id":846},{"description":"SLED11-Pool for sle-11-i586","installer_updates":false,"name":"SLED11-Pool","distro_target":"sle-11-i586","autorefresh":false,"url":"https://updates.suse.com/repo/$RCE/SLED11-Pool/sle-11-i586/","enabled":false,"id":848},{"description":"SLED11-Updates for sle-11-i586","installer_updates":false,"name":"SLED11-Updates","distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLED11-Updates/sle-11-i586/","enabled":true,"id":849}],"predecessor_ids":[],"arch":null,"eula_url":"","free":false,"description":null,"shortname":null},{"product_type":"base","cpe":null,"predecessor_ids":[],"online_predecessor_ids":[],"product_class":"7260","repositories":[{"name":"SLE11-Debuginfo-Pool","installer_updates":false,"description":"SLE11-Debuginfo-Pool for sle-11-i586","enabled":false,"id":747,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-Debuginfo-Pool/sle-11-i586/"},{"name":"SLE11-Debuginfo-Updates","installer_updates":false,"description":"SLE11-Debuginfo-Updates for sle-11-i586","enabled":false,"id":748,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-Debuginfo-Updates/sle-11-i586/"},{"name":"SLED11-Extras","installer_updates":false,"description":"SLED11-Extras for sle-11-i586","id":846,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLED11-Extras/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586"},{"name":"SLED11-Pool","installer_updates":false,"description":"SLED11-Pool for sle-11-i586","enabled":false,"id":848,"autorefresh":false,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLED11-Pool/sle-11-i586/"},{"enabled":true,"id":849,"distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLED11-Updates/sle-11-i586/","installer_updates":false,"name":"SLED11-Updates","description":"SLED11-Updates for sle-11-i586"},{"installer_updates":false,"name":"SLED11-MSI-Updates","description":"SLED11-MSI-Updates for sle-11-x86_64","enabled":true,"id":1015,"distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLED11-MSI-Updates/sle-11-x86_64/"},{"description":"SLED11-MSI-Updates for sle-11-i586","name":"SLED11-MSI-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLED11-MSI-Updates/sle-11-i586/","enabled":true,"id":1016}],"eula_url":"","arch":null,"free":false,"shortname":null,"description":null,"extensions":[{"recommended":false,"version":"11","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Software Development Kit","release_type":null,"former_identifier":"sle-sdk","friendly_name":"SUSE Linux Enterprise Software Development Kit 11","migration_extra":false,"friendly_version":"11","extensions":[],"release_stage":"released","identifier":"sle-sdk","id":1158,"free":true,"description":null,"shortname":null,"eula_url":"","arch":null,"predecessor_ids":[],"online_predecessor_ids":[],"product_class":"SLE-SDK","repositories":[{"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-Updates/sle-11-ppc64/","distro_target":"sle-11-ppc64","autorefresh":true,"id":1247,"enabled":true,"description":"SLE11-SDK-Updates for sle-11-ppc64","installer_updates":false,"name":"SLE11-SDK-Updates"},{"description":"SLE11-SDK-Pool for sle-11-s390x","name":"SLE11-SDK-Pool","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-s390x","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-Pool/sle-11-s390x/","enabled":false,"id":1248},{"installer_updates":false,"name":"SLE11-SDK-Updates","description":"SLE11-SDK-Updates for sle-11-x86_64","enabled":true,"id":1249,"distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-Updates/sle-11-x86_64/"},{"description":"SLE11-SDK-Pool for sle-11-i586","name":"SLE11-SDK-Pool","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-Pool/sle-11-i586/","enabled":false,"id":1250},{"description":"SLE11-SDK-Pool for sle-11-x86_64","name":"SLE11-SDK-Pool","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-Pool/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64","id":1251,"enabled":false},{"id":1252,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-Pool/sle-11-ppc64/","distro_target":"sle-11-ppc64","autorefresh":true,"installer_updates":false,"name":"SLE11-SDK-Pool","description":"SLE11-SDK-Pool for sle-11-ppc64"},{"enabled":true,"id":1253,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-Updates/sle-11-i586/","name":"SLE11-SDK-Updates","installer_updates":false,"description":"SLE11-SDK-Updates for sle-11-i586"},{"installer_updates":false,"name":"SLE11-SDK-Pool","description":"SLE11-SDK-Pool for sle-11-ia64","enabled":false,"id":1254,"distro_target":"sle-11-ia64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-Pool/sle-11-ia64/"},{"id":1255,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-Updates/sle-11-s390x/","distro_target":"sle-11-s390x","autorefresh":true,"installer_updates":false,"name":"SLE11-SDK-Updates","description":"SLE11-SDK-Updates for sle-11-s390x"},{"description":"SLE11-SDK-Updates for sle-11-ia64","installer_updates":false,"name":"SLE11-SDK-Updates","distro_target":"sle-11-ia64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-Updates/sle-11-ia64/","enabled":true,"id":1256}],"product_type":"extension","cpe":null},{"free":true,"description":null,"shortname":null,"arch":null,"eula_url":"","online_predecessor_ids":[],"repositories":[{"description":"SLE11-SDK-SP1-Pool for sle-11-ia64","installer_updates":false,"name":"SLE11-SDK-SP1-Pool","distro_target":"sle-11-ia64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-ia64/","enabled":true,"id":1258},{"description":"SLE11-SDK-SP1-Pool for sle-11-s390x","installer_updates":false,"name":"SLE11-SDK-SP1-Pool","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-s390x/","distro_target":"sle-11-s390x","autorefresh":true,"id":1259,"enabled":true},{"description":"SLE11-SDK-SP1-Pool for sle-11-ppc64","name":"SLE11-SDK-SP1-Pool","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-ppc64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-ppc64/","enabled":true,"id":1261},{"id":1263,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true,"installer_updates":false,"name":"SLE11-SDK-SP1-Pool","description":"SLE11-SDK-SP1-Pool for sle-11-i586"},{"id":1264,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true,"installer_updates":false,"name":"SLE11-SDK-SP1-Pool","description":"SLE11-SDK-SP1-Pool for sle-11-x86_64"}],"product_class":"SLE-SDK","predecessor_ids":[],"product_type":"extension","cpe":null,"version":"11","recommended":false,"former_identifier":"sle-sdk-SP1-migration","release_type":null,"friendly_name":"SUSE Linux Enterprise Software Development Kit 11 (Migration)","migration_extra":false,"offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Software Development Kit","friendly_version":"11","release_stage":"released","identifier":"sle-sdk-SP1-migration","id":1162,"extensions":[]}],"identifier":"SUSE_SLED","release_stage":"released","id":1021,"friendly_version":"11","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Desktop","release_type":"MSI","former_identifier":"SUSE_SLED","friendly_name":"SUSE Linux Enterprise Desktop 11 MSI","migration_extra":false,"recommended":false,"version":"11"},{"free":false,"shortname":null,"description":null,"arch":null,"eula_url":"","online_predecessor_ids":[],"product_class":"7260","repositories":[{"name":"SLE11-Debuginfo-Pool","installer_updates":false,"description":"SLE11-Debuginfo-Pool for sle-11-i586","enabled":false,"id":747,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-Debuginfo-Pool/sle-11-i586/"},{"installer_updates":false,"name":"SLE11-Debuginfo-Updates","description":"SLE11-Debuginfo-Updates for sle-11-i586","id":748,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-Debuginfo-Updates/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true},{"name":"SLED11-Extras","installer_updates":false,"description":"SLED11-Extras for sle-11-i586","enabled":false,"id":846,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLED11-Extras/sle-11-i586/"},{"description":"SLED11-Pool for sle-11-i586","name":"SLED11-Pool","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLED11-Pool/sle-11-i586/","autorefresh":false,"distro_target":"sle-11-i586","id":848,"enabled":false},{"enabled":true,"id":849,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLED11-Updates/sle-11-i586/","name":"SLED11-Updates","installer_updates":false,"description":"SLED11-Updates for sle-11-i586"}],"predecessor_ids":[],"product_type":"base","cpe":null,"version":"11","recommended":false,"release_type":"HP-DPC","former_identifier":"SUSE_SLED","friendly_name":"SUSE Linux Enterprise Desktop 11 HP-DPC","migration_extra":false,"offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Desktop","friendly_version":"11","release_stage":"released","identifier":"SUSE_SLED","id":1022,"extensions":[{"product_type":"extension","cpe":null,"online_predecessor_ids":[],"repositories":[{"description":"SLE11-SDK-Updates for sle-11-ppc64","name":"SLE11-SDK-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-ppc64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-Updates/sle-11-ppc64/","enabled":true,"id":1247},{"description":"SLE11-SDK-Pool for sle-11-s390x","installer_updates":false,"name":"SLE11-SDK-Pool","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-Pool/sle-11-s390x/","distro_target":"sle-11-s390x","autorefresh":true,"id":1248,"enabled":false},{"description":"SLE11-SDK-Updates for sle-11-x86_64","installer_updates":false,"name":"SLE11-SDK-Updates","distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-Updates/sle-11-x86_64/","enabled":true,"id":1249},{"id":1250,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-Pool/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true,"installer_updates":false,"name":"SLE11-SDK-Pool","description":"SLE11-SDK-Pool for sle-11-i586"},{"description":"SLE11-SDK-Pool for sle-11-x86_64","installer_updates":false,"name":"SLE11-SDK-Pool","distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-Pool/sle-11-x86_64/","enabled":false,"id":1251},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-Pool/sle-11-ppc64/","distro_target":"sle-11-ppc64","autorefresh":true,"id":1252,"enabled":false,"description":"SLE11-SDK-Pool for sle-11-ppc64","installer_updates":false,"name":"SLE11-SDK-Pool"},{"installer_updates":false,"name":"SLE11-SDK-Updates","description":"SLE11-SDK-Updates for sle-11-i586","enabled":true,"id":1253,"distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-Updates/sle-11-i586/"},{"installer_updates":false,"name":"SLE11-SDK-Pool","description":"SLE11-SDK-Pool for sle-11-ia64","id":1254,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-Pool/sle-11-ia64/","distro_target":"sle-11-ia64","autorefresh":true},{"name":"SLE11-SDK-Updates","installer_updates":false,"description":"SLE11-SDK-Updates for sle-11-s390x","enabled":true,"id":1255,"autorefresh":true,"distro_target":"sle-11-s390x","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-Updates/sle-11-s390x/"},{"enabled":true,"id":1256,"autorefresh":true,"distro_target":"sle-11-ia64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-Updates/sle-11-ia64/","name":"SLE11-SDK-Updates","installer_updates":false,"description":"SLE11-SDK-Updates for sle-11-ia64"}],"product_class":"SLE-SDK","predecessor_ids":[],"arch":null,"eula_url":"","free":true,"description":null,"shortname":null,"identifier":"sle-sdk","release_stage":"released","id":1158,"extensions":[],"friendly_version":"11","former_identifier":"sle-sdk","release_type":null,"friendly_name":"SUSE Linux Enterprise Software Development Kit 11","migration_extra":false,"offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Software Development Kit","version":"11","recommended":false},{"extensions":[],"id":1162,"release_stage":"released","identifier":"sle-sdk-SP1-migration","friendly_version":"11","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Software Development Kit","former_identifier":"sle-sdk-SP1-migration","release_type":null,"friendly_name":"SUSE Linux Enterprise Software Development Kit 11 (Migration)","migration_extra":false,"recommended":false,"version":"11","product_type":"extension","cpe":null,"predecessor_ids":[],"online_predecessor_ids":[],"product_class":"SLE-SDK","repositories":[{"id":1258,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-ia64/","distro_target":"sle-11-ia64","autorefresh":true,"installer_updates":false,"name":"SLE11-SDK-SP1-Pool","description":"SLE11-SDK-SP1-Pool for sle-11-ia64"},{"name":"SLE11-SDK-SP1-Pool","installer_updates":false,"description":"SLE11-SDK-SP1-Pool for sle-11-s390x","enabled":true,"id":1259,"autorefresh":true,"distro_target":"sle-11-s390x","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-s390x/"},{"installer_updates":false,"name":"SLE11-SDK-SP1-Pool","description":"SLE11-SDK-SP1-Pool for sle-11-ppc64","id":1261,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-ppc64/","distro_target":"sle-11-ppc64","autorefresh":true},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true,"id":1263,"enabled":true,"description":"SLE11-SDK-SP1-Pool for sle-11-i586","installer_updates":false,"name":"SLE11-SDK-SP1-Pool"},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true,"id":1264,"enabled":true,"description":"SLE11-SDK-SP1-Pool for sle-11-x86_64","installer_updates":false,"name":"SLE11-SDK-SP1-Pool"}],"eula_url":"","arch":null,"free":true,"description":null,"shortname":null}]},{"name":"SUSE Linux Enterprise Desktop","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Desktop 11 HP-BNB-2010","former_identifier":"SUSE_SLED","release_type":"HP-BNB-2010","recommended":false,"version":"11","extensions":[{"repositories":[{"description":"SLE11-SDK-Updates for sle-11-ppc64","installer_updates":false,"name":"SLE11-SDK-Updates","distro_target":"sle-11-ppc64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-Updates/sle-11-ppc64/","enabled":true,"id":1247},{"id":1248,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-Pool/sle-11-s390x/","distro_target":"sle-11-s390x","autorefresh":true,"installer_updates":false,"name":"SLE11-SDK-Pool","description":"SLE11-SDK-Pool for sle-11-s390x"},{"description":"SLE11-SDK-Updates for sle-11-x86_64","name":"SLE11-SDK-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-Updates/sle-11-x86_64/","enabled":true,"id":1249},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-Pool/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","id":1250,"enabled":false,"description":"SLE11-SDK-Pool for sle-11-i586","name":"SLE11-SDK-Pool","installer_updates":false},{"description":"SLE11-SDK-Pool for sle-11-x86_64","name":"SLE11-SDK-Pool","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-Pool/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64","id":1251,"enabled":false},{"enabled":false,"id":1252,"autorefresh":true,"distro_target":"sle-11-ppc64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-Pool/sle-11-ppc64/","name":"SLE11-SDK-Pool","installer_updates":false,"description":"SLE11-SDK-Pool for sle-11-ppc64"},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-Updates/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true,"id":1253,"enabled":true,"description":"SLE11-SDK-Updates for sle-11-i586","installer_updates":false,"name":"SLE11-SDK-Updates"},{"enabled":false,"id":1254,"autorefresh":true,"distro_target":"sle-11-ia64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-Pool/sle-11-ia64/","name":"SLE11-SDK-Pool","installer_updates":false,"description":"SLE11-SDK-Pool for sle-11-ia64"},{"description":"SLE11-SDK-Updates for sle-11-s390x","name":"SLE11-SDK-Updates","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-Updates/sle-11-s390x/","autorefresh":true,"distro_target":"sle-11-s390x","id":1255,"enabled":true},{"installer_updates":false,"name":"SLE11-SDK-Updates","description":"SLE11-SDK-Updates for sle-11-ia64","enabled":true,"id":1256,"distro_target":"sle-11-ia64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-Updates/sle-11-ia64/"}],"online_predecessor_ids":[],"product_class":"SLE-SDK","predecessor_ids":[],"product_type":"extension","cpe":null,"free":true,"description":null,"shortname":null,"arch":null,"eula_url":"","friendly_version":"11","id":1158,"release_stage":"released","identifier":"sle-sdk","extensions":[],"version":"11","recommended":false,"former_identifier":"sle-sdk","release_type":null,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Software Development Kit 11","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Software Development Kit"},{"version":"11","recommended":false,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Software Development Kit 11 (Migration)","release_type":null,"former_identifier":"sle-sdk-SP1-migration","name":"SUSE Linux Enterprise Software Development Kit","offline_predecessor_ids":[],"friendly_version":"11","release_stage":"released","identifier":"sle-sdk-SP1-migration","id":1162,"extensions":[],"shortname":null,"description":null,"free":true,"arch":null,"eula_url":"","product_class":"SLE-SDK","online_predecessor_ids":[],"repositories":[{"installer_updates":false,"name":"SLE11-SDK-SP1-Pool","description":"SLE11-SDK-SP1-Pool for sle-11-ia64","id":1258,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-ia64/","distro_target":"sle-11-ia64","autorefresh":true},{"distro_target":"sle-11-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-s390x/","enabled":true,"id":1259,"description":"SLE11-SDK-SP1-Pool for sle-11-s390x","installer_updates":false,"name":"SLE11-SDK-SP1-Pool"},{"description":"SLE11-SDK-SP1-Pool for sle-11-ppc64","installer_updates":false,"name":"SLE11-SDK-SP1-Pool","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-ppc64/","distro_target":"sle-11-ppc64","autorefresh":true,"id":1261,"enabled":true},{"name":"SLE11-SDK-SP1-Pool","installer_updates":false,"description":"SLE11-SDK-SP1-Pool for sle-11-i586","id":1263,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586"},{"description":"SLE11-SDK-SP1-Pool for sle-11-x86_64","installer_updates":false,"name":"SLE11-SDK-SP1-Pool","distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-x86_64/","enabled":true,"id":1264}],"predecessor_ids":[],"cpe":null,"product_type":"extension"}],"identifier":"SUSE_SLED","release_stage":"released","id":1023,"friendly_version":"11","eula_url":"","arch":null,"description":null,"shortname":null,"free":false,"cpe":null,"product_type":"base","predecessor_ids":[],"online_predecessor_ids":[],"product_class":"7260","repositories":[{"description":"SLE11-Debuginfo-Pool for sle-11-i586","installer_updates":false,"name":"SLE11-Debuginfo-Pool","distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-Debuginfo-Pool/sle-11-i586/","enabled":false,"id":747},{"name":"SLE11-Debuginfo-Updates","installer_updates":false,"description":"SLE11-Debuginfo-Updates for sle-11-i586","id":748,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-Debuginfo-Updates/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586"},{"description":"SLE11-Debuginfo-Updates for sle-11-s390x","name":"SLE11-Debuginfo-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-s390x","url":"https://updates.suse.com/repo/$RCE/SLE11-Debuginfo-Updates/sle-11-s390x/","enabled":false,"id":811},{"description":"SLE11-Debuginfo-Pool for sle-11-s390x","name":"SLE11-Debuginfo-Pool","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-s390x","url":"https://updates.suse.com/repo/$RCE/SLE11-Debuginfo-Pool/sle-11-s390x/","enabled":false,"id":813},{"url":"https://updates.suse.com/repo/$RCE/SLE11-Debuginfo-Pool/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true,"id":817,"enabled":false,"description":"SLE11-Debuginfo-Pool for sle-11-x86_64","installer_updates":false,"name":"SLE11-Debuginfo-Pool"},{"description":"SLE11-Debuginfo-Updates for sle-11-x86_64","installer_updates":false,"name":"SLE11-Debuginfo-Updates","distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-Debuginfo-Updates/sle-11-x86_64/","enabled":false,"id":818},{"description":"SLED11-Extras for sle-11-i586","installer_updates":false,"name":"SLED11-Extras","url":"https://updates.suse.com/repo/$RCE/SLED11-Extras/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true,"id":846,"enabled":false},{"distro_target":"sle-11-i586","autorefresh":false,"url":"https://updates.suse.com/repo/$RCE/SLED11-Pool/sle-11-i586/","enabled":false,"id":848,"description":"SLED11-Pool for sle-11-i586","installer_updates":false,"name":"SLED11-Pool"},{"description":"SLED11-Updates for sle-11-i586","name":"SLED11-Updates","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLED11-Updates/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","id":849,"enabled":true},{"enabled":false,"id":903,"distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLED11-Extras/sle-11-x86_64/","installer_updates":false,"name":"SLED11-Extras","description":"SLED11-Extras for sle-11-x86_64"},{"description":"SLED11-Updates for sle-11-x86_64","installer_updates":false,"name":"SLED11-Updates","distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLED11-Updates/sle-11-x86_64/","enabled":true,"id":909},{"enabled":false,"id":910,"distro_target":"sle-11-x86_64","autorefresh":false,"url":"https://updates.suse.com/repo/$RCE/SLED11-Pool/sle-11-x86_64/","installer_updates":false,"name":"SLED11-Pool","description":"SLED11-Pool for sle-11-x86_64"},{"description":"SLE11-Debuginfo-Pool for sle-11-ppc64","name":"SLE11-Debuginfo-Pool","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-Debuginfo-Pool/sle-11-ppc64/","autorefresh":true,"distro_target":"sle-11-ppc64","id":932,"enabled":false},{"url":"https://updates.suse.com/repo/$RCE/SLE11-Debuginfo-Updates/sle-11-ppc64/","distro_target":"sle-11-ppc64","autorefresh":true,"id":934,"enabled":false,"description":"SLE11-Debuginfo-Updates for sle-11-ppc64","installer_updates":false,"name":"SLE11-Debuginfo-Updates"},{"enabled":false,"id":1017,"distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLED11-HWRefresh2010A-Debuginfo-Updates/sle-11-x86_64/","installer_updates":false,"name":"SLED11-HWRefresh2010A-Debuginfo-Updates","description":"SLED11-HWRefresh2010A-Debuginfo-Updates for sle-11-x86_64"},{"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLED11-HWRefresh2010A-Updates/sle-11-x86_64/","enabled":true,"id":1018,"description":"SLED11-HWRefresh2010A-Updates for sle-11-x86_64","name":"SLED11-HWRefresh2010A-Updates","installer_updates":false},{"distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLED11-HWRefresh2010A-Debuginfo-Updates/sle-11-i586/","enabled":false,"id":1019,"description":"SLED11-HWRefresh2010A-Debuginfo-Updates for sle-11-i586","installer_updates":false,"name":"SLED11-HWRefresh2010A-Debuginfo-Updates"},{"description":"SLE11-Debuginfo-Updates for sle-11-ia64","name":"SLE11-Debuginfo-Updates","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-Debuginfo-Updates/sle-11-ia64/","autorefresh":true,"distro_target":"sle-11-ia64","id":1020,"enabled":false},{"enabled":true,"id":1021,"distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLED11-HWRefresh2010A-Updates/sle-11-i586/","installer_updates":false,"name":"SLED11-HWRefresh2010A-Updates","description":"SLED11-HWRefresh2010A-Updates for sle-11-i586"},{"description":"SLE11-Debuginfo-Pool for sle-11-ia64","installer_updates":false,"name":"SLE11-Debuginfo-Pool","url":"https://updates.suse.com/repo/$RCE/SLE11-Debuginfo-Pool/sle-11-ia64/","distro_target":"sle-11-ia64","autorefresh":true,"id":1022,"enabled":false}]},{"shortname":null,"description":null,"free":false,"arch":null,"eula_url":"","repositories":[{"description":"SLE11-Debuginfo-Pool for sle-11-i586","name":"SLE11-Debuginfo-Pool","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-Debuginfo-Pool/sle-11-i586/","enabled":false,"id":747},{"url":"https://updates.suse.com/repo/$RCE/SLE11-Debuginfo-Updates/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true,"id":748,"enabled":false,"description":"SLE11-Debuginfo-Updates for sle-11-i586","installer_updates":false,"name":"SLE11-Debuginfo-Updates"},{"enabled":false,"id":811,"distro_target":"sle-11-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-Debuginfo-Updates/sle-11-s390x/","installer_updates":false,"name":"SLE11-Debuginfo-Updates","description":"SLE11-Debuginfo-Updates for sle-11-s390x"},{"description":"SLE11-Debuginfo-Pool for sle-11-s390x","installer_updates":false,"name":"SLE11-Debuginfo-Pool","distro_target":"sle-11-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-Debuginfo-Pool/sle-11-s390x/","enabled":false,"id":813},{"enabled":false,"id":817,"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE11-Debuginfo-Pool/sle-11-x86_64/","name":"SLE11-Debuginfo-Pool","installer_updates":false,"description":"SLE11-Debuginfo-Pool for sle-11-x86_64"},{"installer_updates":false,"name":"SLE11-Debuginfo-Updates","description":"SLE11-Debuginfo-Updates for sle-11-x86_64","id":818,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-Debuginfo-Updates/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true},{"description":"SLED11-Extras for sle-11-i586","installer_updates":false,"name":"SLED11-Extras","url":"https://updates.suse.com/repo/$RCE/SLED11-Extras/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true,"id":846,"enabled":false},{"description":"SLED11-Pool for sle-11-i586","installer_updates":false,"name":"SLED11-Pool","distro_target":"sle-11-i586","autorefresh":false,"url":"https://updates.suse.com/repo/$RCE/SLED11-Pool/sle-11-i586/","enabled":false,"id":848},{"enabled":true,"id":849,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLED11-Updates/sle-11-i586/","name":"SLED11-Updates","installer_updates":false,"description":"SLED11-Updates for sle-11-i586"},{"description":"SLED11-Extras for sle-11-x86_64","name":"SLED11-Extras","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLED11-Extras/sle-11-x86_64/","enabled":false,"id":903},{"installer_updates":false,"name":"SLED11-Updates","description":"SLED11-Updates for sle-11-x86_64","id":909,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLED11-Updates/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true},{"description":"SLED11-Pool for sle-11-x86_64","installer_updates":false,"name":"SLED11-Pool","url":"https://updates.suse.com/repo/$RCE/SLED11-Pool/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":false,"id":910,"enabled":false},{"description":"SLE11-Debuginfo-Pool for sle-11-ppc64","name":"SLE11-Debuginfo-Pool","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-Debuginfo-Pool/sle-11-ppc64/","autorefresh":true,"distro_target":"sle-11-ppc64","id":932,"enabled":false},{"id":934,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-Debuginfo-Updates/sle-11-ppc64/","distro_target":"sle-11-ppc64","autorefresh":true,"installer_updates":false,"name":"SLE11-Debuginfo-Updates","description":"SLE11-Debuginfo-Updates for sle-11-ppc64"},{"name":"SLED11-HWRefresh2010A-Debuginfo-Updates","installer_updates":false,"description":"SLED11-HWRefresh2010A-Debuginfo-Updates for sle-11-x86_64","enabled":false,"id":1017,"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLED11-HWRefresh2010A-Debuginfo-Updates/sle-11-x86_64/"},{"enabled":true,"id":1018,"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLED11-HWRefresh2010A-Updates/sle-11-x86_64/","name":"SLED11-HWRefresh2010A-Updates","installer_updates":false,"description":"SLED11-HWRefresh2010A-Updates for sle-11-x86_64"},{"name":"SLED11-HWRefresh2010A-Debuginfo-Updates","installer_updates":false,"description":"SLED11-HWRefresh2010A-Debuginfo-Updates for sle-11-i586","id":1019,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLED11-HWRefresh2010A-Debuginfo-Updates/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586"},{"autorefresh":true,"distro_target":"sle-11-ia64","url":"https://updates.suse.com/repo/$RCE/SLE11-Debuginfo-Updates/sle-11-ia64/","enabled":false,"id":1020,"description":"SLE11-Debuginfo-Updates for sle-11-ia64","name":"SLE11-Debuginfo-Updates","installer_updates":false},{"id":1021,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLED11-HWRefresh2010A-Updates/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","name":"SLED11-HWRefresh2010A-Updates","installer_updates":false,"description":"SLED11-HWRefresh2010A-Updates for sle-11-i586"},{"description":"SLE11-Debuginfo-Pool for sle-11-ia64","name":"SLE11-Debuginfo-Pool","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-ia64","url":"https://updates.suse.com/repo/$RCE/SLE11-Debuginfo-Pool/sle-11-ia64/","enabled":false,"id":1022},{"installer_updates":false,"name":"SLED11-HP-CNB-Updates","description":"SLED11-HP-CNB-Updates for sle-11-i586","id":1023,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLED11-HP-CNB-Updates/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true}],"online_predecessor_ids":[],"product_class":"7260","predecessor_ids":[],"cpe":null,"product_type":"base","version":"11","recommended":false,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Desktop 11 HP-CNB","release_type":"HP-CNB","former_identifier":"SUSE_SLED","name":"SUSE Linux Enterprise Desktop","offline_predecessor_ids":[],"friendly_version":"11","release_stage":"released","identifier":"SUSE_SLED","id":1024,"extensions":[{"arch":null,"eula_url":"","shortname":null,"description":null,"free":true,"cpe":null,"product_type":"extension","repositories":[{"id":1247,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-Updates/sle-11-ppc64/","distro_target":"sle-11-ppc64","autorefresh":true,"installer_updates":false,"name":"SLE11-SDK-Updates","description":"SLE11-SDK-Updates for sle-11-ppc64"},{"installer_updates":false,"name":"SLE11-SDK-Pool","description":"SLE11-SDK-Pool for sle-11-s390x","id":1248,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-Pool/sle-11-s390x/","distro_target":"sle-11-s390x","autorefresh":true},{"enabled":true,"id":1249,"distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-Updates/sle-11-x86_64/","installer_updates":false,"name":"SLE11-SDK-Updates","description":"SLE11-SDK-Updates for sle-11-x86_64"},{"name":"SLE11-SDK-Pool","installer_updates":false,"description":"SLE11-SDK-Pool for sle-11-i586","id":1250,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-Pool/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586"},{"description":"SLE11-SDK-Pool for sle-11-x86_64","name":"SLE11-SDK-Pool","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-Pool/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64","id":1251,"enabled":false},{"description":"SLE11-SDK-Pool for sle-11-ppc64","installer_updates":false,"name":"SLE11-SDK-Pool","distro_target":"sle-11-ppc64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-Pool/sle-11-ppc64/","enabled":false,"id":1252},{"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-Updates/sle-11-i586/","enabled":true,"id":1253,"description":"SLE11-SDK-Updates for sle-11-i586","name":"SLE11-SDK-Updates","installer_updates":false},{"name":"SLE11-SDK-Pool","installer_updates":false,"description":"SLE11-SDK-Pool for sle-11-ia64","id":1254,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-Pool/sle-11-ia64/","autorefresh":true,"distro_target":"sle-11-ia64"},{"name":"SLE11-SDK-Updates","installer_updates":false,"description":"SLE11-SDK-Updates for sle-11-s390x","id":1255,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-Updates/sle-11-s390x/","autorefresh":true,"distro_target":"sle-11-s390x"},{"description":"SLE11-SDK-Updates for sle-11-ia64","name":"SLE11-SDK-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-ia64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-Updates/sle-11-ia64/","enabled":true,"id":1256}],"online_predecessor_ids":[],"product_class":"SLE-SDK","predecessor_ids":[],"friendly_name":"SUSE Linux Enterprise Software Development Kit 11","migration_extra":false,"release_type":null,"former_identifier":"sle-sdk","name":"SUSE Linux Enterprise Software Development Kit","offline_predecessor_ids":[],"version":"11","recommended":false,"id":1158,"release_stage":"released","identifier":"sle-sdk","extensions":[],"friendly_version":"11"},{"friendly_version":"11","release_stage":"released","id":1162,"identifier":"sle-sdk-SP1-migration","extensions":[],"version":"11","recommended":false,"release_type":null,"former_identifier":"sle-sdk-SP1-migration","friendly_name":"SUSE Linux Enterprise Software Development Kit 11 (Migration)","migration_extra":false,"offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Software Development Kit","repositories":[{"enabled":true,"id":1258,"autorefresh":true,"distro_target":"sle-11-ia64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-ia64/","name":"SLE11-SDK-SP1-Pool","installer_updates":false,"description":"SLE11-SDK-SP1-Pool for sle-11-ia64"},{"description":"SLE11-SDK-SP1-Pool for sle-11-s390x","installer_updates":false,"name":"SLE11-SDK-SP1-Pool","distro_target":"sle-11-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-s390x/","enabled":true,"id":1259},{"id":1261,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-ppc64/","autorefresh":true,"distro_target":"sle-11-ppc64","name":"SLE11-SDK-SP1-Pool","installer_updates":false,"description":"SLE11-SDK-SP1-Pool for sle-11-ppc64"},{"distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-i586/","enabled":true,"id":1263,"description":"SLE11-SDK-SP1-Pool for sle-11-i586","installer_updates":false,"name":"SLE11-SDK-SP1-Pool"},{"description":"SLE11-SDK-SP1-Pool for sle-11-x86_64","installer_updates":false,"name":"SLE11-SDK-SP1-Pool","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true,"id":1264,"enabled":true}],"online_predecessor_ids":[],"product_class":"SLE-SDK","predecessor_ids":[],"product_type":"extension","cpe":null,"free":true,"shortname":null,"description":null,"arch":null,"eula_url":""}]},{"free":false,"description":null,"shortname":null,"eula_url":"","arch":null,"predecessor_ids":[],"online_predecessor_ids":[],"repositories":[{"distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Pool/sle-11-i586/","enabled":false,"id":680,"description":"SLE11-SP1-Debuginfo-Pool for sle-11-i586","installer_updates":false,"name":"SLE11-SP1-Debuginfo-Pool"},{"description":"SLE11-SP1-Debuginfo-Updates for sle-11-i586","name":"SLE11-SP1-Debuginfo-Updates","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Updates/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","id":682,"enabled":false},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Updates/sle-11-s390x/","autorefresh":true,"distro_target":"sle-11-s390x","id":688,"enabled":false,"description":"SLE11-SP1-Debuginfo-Updates for sle-11-s390x","name":"SLE11-SP1-Debuginfo-Updates","installer_updates":false},{"description":"SLE11-SP1-Debuginfo-Pool for sle-11-s390x","name":"SLE11-SP1-Debuginfo-Pool","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-s390x","url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Pool/sle-11-s390x/","enabled":false,"id":692},{"installer_updates":false,"name":"SLE11-SP1-Debuginfo-Pool","description":"SLE11-SP1-Debuginfo-Pool for sle-11-x86_64","id":707,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Pool/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Updates/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64","id":715,"enabled":false,"description":"SLE11-SP1-Debuginfo-Updates for sle-11-x86_64","name":"SLE11-SP1-Debuginfo-Updates","installer_updates":false},{"description":"SLED11-Extras for sle-11-i586","name":"SLED11-Extras","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLED11-Extras/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","id":846,"enabled":false},{"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLED11-SP1-Updates/sle-11-i586/","enabled":true,"id":851,"description":"SLED11-SP1-Updates for sle-11-i586","name":"SLED11-SP1-Updates","installer_updates":false},{"distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLED11-SP1-Pool/sle-11-i586/","enabled":true,"id":852,"description":"SLED11-SP1-Pool for sle-11-i586","installer_updates":false,"name":"SLED11-SP1-Pool"},{"distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLED11-SP1-Updates/sle-11-x86_64/","enabled":true,"id":902,"description":"SLED11-SP1-Updates for sle-11-x86_64","installer_updates":false,"name":"SLED11-SP1-Updates"},{"distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLED11-Extras/sle-11-x86_64/","enabled":false,"id":903,"description":"SLED11-Extras for sle-11-x86_64","installer_updates":false,"name":"SLED11-Extras"},{"enabled":true,"id":905,"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLED11-SP1-Pool/sle-11-x86_64/","name":"SLED11-SP1-Pool","installer_updates":false,"description":"SLED11-SP1-Pool for sle-11-x86_64"},{"distro_target":"sle-11-ppc64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Updates/sle-11-ppc64/","enabled":false,"id":924,"description":"SLE11-SP1-Debuginfo-Updates for sle-11-ppc64","installer_updates":false,"name":"SLE11-SP1-Debuginfo-Updates"},{"installer_updates":false,"name":"SLE11-SP1-Debuginfo-Pool","description":"SLE11-SP1-Debuginfo-Pool for sle-11-ppc64","enabled":false,"id":925,"distro_target":"sle-11-ppc64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Pool/sle-11-ppc64/"},{"id":970,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Pool/sle-11-ia64/","autorefresh":true,"distro_target":"sle-11-ia64","name":"SLE11-SP1-Debuginfo-Pool","installer_updates":false,"description":"SLE11-SP1-Debuginfo-Pool for sle-11-ia64"},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Updates/sle-11-ia64/","autorefresh":true,"distro_target":"sle-11-ia64","id":971,"enabled":false,"description":"SLE11-SP1-Debuginfo-Updates for sle-11-ia64","name":"SLE11-SP1-Debuginfo-Updates","installer_updates":false}],"product_class":"7260","product_type":"base","cpe":null,"recommended":false,"version":"11.1","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Desktop","former_identifier":"SUSE_SLED","release_type":"HP-BNB","friendly_name":"SUSE Linux Enterprise Desktop 11 SP1 HP-BNB","migration_extra":false,"friendly_version":"11 SP1","extensions":[{"description":null,"shortname":null,"free":true,"eula_url":"","arch":null,"predecessor_ids":[],"repositories":[{"distro_target":"sle-11-ia64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Updates/sle-11-ia64/","enabled":true,"id":1257,"description":"SLE11-SDK-SP1-Updates for sle-11-ia64","installer_updates":false,"name":"SLE11-SDK-SP1-Updates"},{"name":"SLE11-SDK-SP1-Pool","installer_updates":false,"description":"SLE11-SDK-SP1-Pool for sle-11-ia64","id":1258,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-ia64/","autorefresh":true,"distro_target":"sle-11-ia64"},{"description":"SLE11-SDK-SP1-Pool for sle-11-s390x","installer_updates":false,"name":"SLE11-SDK-SP1-Pool","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-s390x/","distro_target":"sle-11-s390x","autorefresh":true,"id":1259,"enabled":true},{"description":"SLE11-SDK-SP1-Updates for sle-11-ppc64","name":"SLE11-SDK-SP1-Updates","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Updates/sle-11-ppc64/","autorefresh":true,"distro_target":"sle-11-ppc64","id":1260,"enabled":true},{"description":"SLE11-SDK-SP1-Pool for sle-11-ppc64","name":"SLE11-SDK-SP1-Pool","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-ppc64/","autorefresh":true,"distro_target":"sle-11-ppc64","id":1261,"enabled":true},{"distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Updates/sle-11-i586/","enabled":true,"id":1262,"description":"SLE11-SDK-SP1-Updates for sle-11-i586","installer_updates":false,"name":"SLE11-SDK-SP1-Updates"},{"id":1263,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true,"installer_updates":false,"name":"SLE11-SDK-SP1-Pool","description":"SLE11-SDK-SP1-Pool for sle-11-i586"},{"description":"SLE11-SDK-SP1-Pool for sle-11-x86_64","name":"SLE11-SDK-SP1-Pool","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64","id":1264,"enabled":true},{"name":"SLE11-SDK-SP1-Updates","installer_updates":false,"description":"SLE11-SDK-SP1-Updates for sle-11-x86_64","enabled":true,"id":1265,"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Updates/sle-11-x86_64/"},{"distro_target":"sle-11-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Updates/sle-11-s390x/","enabled":true,"id":1266,"description":"SLE11-SDK-SP1-Updates for sle-11-s390x","installer_updates":false,"name":"SLE11-SDK-SP1-Updates"}],"online_predecessor_ids":[],"product_class":"SLE-SDK","cpe":null,"product_type":"extension","recommended":false,"version":"11.1","name":"SUSE Linux Enterprise Software Development Kit","offline_predecessor_ids":[],"friendly_name":"SUSE Linux Enterprise Software Development Kit 11 SP1","migration_extra":false,"former_identifier":"sle-sdk","release_type":null,"friendly_version":"11 SP1","extensions":[],"release_stage":"released","identifier":"sle-sdk","id":1159},{"offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Software Development Kit","release_type":null,"former_identifier":"sle-sdk-SP2-migration","friendly_name":"SUSE Linux Enterprise Software Development Kit 11 SP1 (Migration)","migration_extra":false,"recommended":false,"version":"11.1","extensions":[],"identifier":"sle-sdk-SP2-migration","release_stage":"released","id":1163,"friendly_version":"11 SP1","eula_url":"","arch":null,"free":true,"description":null,"shortname":null,"product_type":"extension","cpe":null,"predecessor_ids":[],"online_predecessor_ids":[],"product_class":"SLE-SDK","repositories":[{"description":"SLE11-SDK-SP2-Core for sle-11-ia64","installer_updates":false,"name":"SLE11-SDK-SP2-Core","distro_target":"sle-11-ia64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-ia64/","enabled":true,"id":1267},{"enabled":true,"id":1268,"autorefresh":true,"distro_target":"sle-11-s390x","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-s390x/","name":"SLE11-SDK-SP2-Core","installer_updates":false,"description":"SLE11-SDK-SP2-Core for sle-11-s390x"},{"description":"SLE11-SDK-SP2-Updates for sle-11-s390x","name":"SLE11-SDK-SP2-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-s390x","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-s390x/","enabled":true,"id":1269},{"description":"SLE11-SDK-SP2-Updates for sle-11-ppc64","name":"SLE11-SDK-SP2-Updates","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-ppc64/","autorefresh":true,"distro_target":"sle-11-ppc64","id":1270,"enabled":true},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true,"id":1271,"enabled":true,"description":"SLE11-SDK-SP2-Updates for sle-11-i586","installer_updates":false,"name":"SLE11-SDK-SP2-Updates"},{"description":"SLE11-SDK-SP2-Updates for sle-11-ia64","installer_updates":false,"name":"SLE11-SDK-SP2-Updates","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-ia64/","distro_target":"sle-11-ia64","autorefresh":true,"id":1272,"enabled":true},{"description":"SLE11-SDK-SP2-Core for sle-11-ppc64","installer_updates":false,"name":"SLE11-SDK-SP2-Core","distro_target":"sle-11-ppc64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-ppc64/","enabled":true,"id":1273},{"name":"SLE11-SDK-SP2-Core","installer_updates":false,"description":"SLE11-SDK-SP2-Core for sle-11-i586","id":1274,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586"},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true,"id":1275,"enabled":true,"description":"SLE11-SDK-SP2-Core for sle-11-x86_64","installer_updates":false,"name":"SLE11-SDK-SP2-Core"},{"name":"SLE11-SDK-SP2-Updates","installer_updates":false,"description":"SLE11-SDK-SP2-Updates for sle-11-x86_64","enabled":true,"id":1276,"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-x86_64/"}]}],"release_stage":"released","id":1025,"identifier":"SUSE_SLED"},{"online_predecessor_ids":[],"product_class":"7260","repositories":[{"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Pool/sle-11-i586/","enabled":false,"id":680,"description":"SLE11-SP1-Debuginfo-Pool for sle-11-i586","name":"SLE11-SP1-Debuginfo-Pool","installer_updates":false},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Updates/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true,"id":682,"enabled":false,"description":"SLE11-SP1-Debuginfo-Updates for sle-11-i586","installer_updates":false,"name":"SLE11-SP1-Debuginfo-Updates"},{"name":"SLE11-SP1-Debuginfo-Updates","installer_updates":false,"description":"SLE11-SP1-Debuginfo-Updates for sle-11-s390x","enabled":false,"id":688,"autorefresh":true,"distro_target":"sle-11-s390x","url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Updates/sle-11-s390x/"},{"description":"SLE11-SP1-Debuginfo-Pool for sle-11-s390x","installer_updates":false,"name":"SLE11-SP1-Debuginfo-Pool","distro_target":"sle-11-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Pool/sle-11-s390x/","enabled":false,"id":692},{"name":"SLE11-SP1-Debuginfo-Pool","installer_updates":false,"description":"SLE11-SP1-Debuginfo-Pool for sle-11-x86_64","enabled":false,"id":707,"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Pool/sle-11-x86_64/"},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Updates/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64","id":715,"enabled":false,"description":"SLE11-SP1-Debuginfo-Updates for sle-11-x86_64","name":"SLE11-SP1-Debuginfo-Updates","installer_updates":false},{"description":"SLED11-Extras for sle-11-i586","installer_updates":false,"name":"SLED11-Extras","distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLED11-Extras/sle-11-i586/","enabled":false,"id":846},{"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLED11-SP1-Updates/sle-11-i586/","enabled":true,"id":851,"description":"SLED11-SP1-Updates for sle-11-i586","name":"SLED11-SP1-Updates","installer_updates":false},{"id":852,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLED11-SP1-Pool/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true,"installer_updates":false,"name":"SLED11-SP1-Pool","description":"SLED11-SP1-Pool for sle-11-i586"},{"name":"SLED11-SP1-Updates","installer_updates":false,"description":"SLED11-SP1-Updates for sle-11-x86_64","id":902,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLED11-SP1-Updates/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64"},{"installer_updates":false,"name":"SLED11-Extras","description":"SLED11-Extras for sle-11-x86_64","enabled":false,"id":903,"distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLED11-Extras/sle-11-x86_64/"},{"description":"SLED11-SP1-Pool for sle-11-x86_64","name":"SLED11-SP1-Pool","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLED11-SP1-Pool/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64","id":905,"enabled":true},{"id":924,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Updates/sle-11-ppc64/","distro_target":"sle-11-ppc64","autorefresh":true,"installer_updates":false,"name":"SLE11-SP1-Debuginfo-Updates","description":"SLE11-SP1-Debuginfo-Updates for sle-11-ppc64"},{"name":"SLE11-SP1-Debuginfo-Pool","installer_updates":false,"description":"SLE11-SP1-Debuginfo-Pool for sle-11-ppc64","id":925,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Pool/sle-11-ppc64/","autorefresh":true,"distro_target":"sle-11-ppc64"},{"autorefresh":true,"distro_target":"sle-11-ia64","url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Pool/sle-11-ia64/","enabled":false,"id":970,"description":"SLE11-SP1-Debuginfo-Pool for sle-11-ia64","name":"SLE11-SP1-Debuginfo-Pool","installer_updates":false},{"description":"SLE11-SP1-Debuginfo-Updates for sle-11-ia64","name":"SLE11-SP1-Debuginfo-Updates","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Updates/sle-11-ia64/","autorefresh":true,"distro_target":"sle-11-ia64","id":971,"enabled":false},{"description":"SLED11-SP1-HP-BNB-Updates for sle-11-x86_64","installer_updates":false,"name":"SLED11-SP1-HP-BNB-Updates","url":"https://updates.suse.com/repo/$RCE/SLED11-SP1-HP-BNB-Updates/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true,"id":1024,"enabled":true},{"description":"SLED11-SP1-HP-BNB-Updates for sle-11-i586","name":"SLED11-SP1-HP-BNB-Updates","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLED11-SP1-HP-BNB-Updates/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","id":1025,"enabled":true}],"predecessor_ids":[],"product_type":"base","cpe":null,"free":false,"description":null,"shortname":null,"arch":null,"eula_url":"","friendly_version":"11 SP1","id":1026,"release_stage":"released","identifier":"SUSE_SLED","extensions":[{"shortname":null,"description":null,"free":true,"arch":null,"eula_url":"","repositories":[{"description":"SLE11-SDK-SP1-Updates for sle-11-ia64","name":"SLE11-SDK-SP1-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-ia64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Updates/sle-11-ia64/","enabled":true,"id":1257},{"distro_target":"sle-11-ia64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-ia64/","enabled":true,"id":1258,"description":"SLE11-SDK-SP1-Pool for sle-11-ia64","installer_updates":false,"name":"SLE11-SDK-SP1-Pool"},{"description":"SLE11-SDK-SP1-Pool for sle-11-s390x","installer_updates":false,"name":"SLE11-SDK-SP1-Pool","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-s390x/","distro_target":"sle-11-s390x","autorefresh":true,"id":1259,"enabled":true},{"enabled":true,"id":1260,"autorefresh":true,"distro_target":"sle-11-ppc64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Updates/sle-11-ppc64/","name":"SLE11-SDK-SP1-Updates","installer_updates":false,"description":"SLE11-SDK-SP1-Updates for sle-11-ppc64"},{"description":"SLE11-SDK-SP1-Pool for sle-11-ppc64","name":"SLE11-SDK-SP1-Pool","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-ppc64/","autorefresh":true,"distro_target":"sle-11-ppc64","id":1261,"enabled":true},{"enabled":true,"id":1262,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Updates/sle-11-i586/","name":"SLE11-SDK-SP1-Updates","installer_updates":false,"description":"SLE11-SDK-SP1-Updates for sle-11-i586"},{"distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-i586/","enabled":true,"id":1263,"description":"SLE11-SDK-SP1-Pool for sle-11-i586","installer_updates":false,"name":"SLE11-SDK-SP1-Pool"},{"enabled":true,"id":1264,"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-x86_64/","name":"SLE11-SDK-SP1-Pool","installer_updates":false,"description":"SLE11-SDK-SP1-Pool for sle-11-x86_64"},{"enabled":true,"id":1265,"distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Updates/sle-11-x86_64/","installer_updates":false,"name":"SLE11-SDK-SP1-Updates","description":"SLE11-SDK-SP1-Updates for sle-11-x86_64"},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Updates/sle-11-s390x/","autorefresh":true,"distro_target":"sle-11-s390x","id":1266,"enabled":true,"description":"SLE11-SDK-SP1-Updates for sle-11-s390x","name":"SLE11-SDK-SP1-Updates","installer_updates":false}],"online_predecessor_ids":[],"product_class":"SLE-SDK","predecessor_ids":[],"cpe":null,"product_type":"extension","version":"11.1","recommended":false,"friendly_name":"SUSE Linux Enterprise Software Development Kit 11 SP1","migration_extra":false,"former_identifier":"sle-sdk","release_type":null,"name":"SUSE Linux Enterprise Software Development Kit","offline_predecessor_ids":[],"friendly_version":"11 SP1","release_stage":"released","id":1159,"identifier":"sle-sdk","extensions":[]},{"version":"11.1","recommended":false,"friendly_name":"SUSE Linux Enterprise Software Development Kit 11 SP1 (Migration)","migration_extra":false,"release_type":null,"former_identifier":"sle-sdk-SP2-migration","name":"SUSE Linux Enterprise Software Development Kit","offline_predecessor_ids":[],"friendly_version":"11 SP1","identifier":"sle-sdk-SP2-migration","release_stage":"released","id":1163,"extensions":[],"shortname":null,"description":null,"free":true,"arch":null,"eula_url":"","product_class":"SLE-SDK","online_predecessor_ids":[],"repositories":[{"name":"SLE11-SDK-SP2-Core","installer_updates":false,"description":"SLE11-SDK-SP2-Core for sle-11-ia64","id":1267,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-ia64/","autorefresh":true,"distro_target":"sle-11-ia64"},{"name":"SLE11-SDK-SP2-Core","installer_updates":false,"description":"SLE11-SDK-SP2-Core for sle-11-s390x","id":1268,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-s390x/","autorefresh":true,"distro_target":"sle-11-s390x"},{"id":1269,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-s390x/","autorefresh":true,"distro_target":"sle-11-s390x","name":"SLE11-SDK-SP2-Updates","installer_updates":false,"description":"SLE11-SDK-SP2-Updates for sle-11-s390x"},{"name":"SLE11-SDK-SP2-Updates","installer_updates":false,"description":"SLE11-SDK-SP2-Updates for sle-11-ppc64","id":1270,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-ppc64/","autorefresh":true,"distro_target":"sle-11-ppc64"},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","id":1271,"enabled":true,"description":"SLE11-SDK-SP2-Updates for sle-11-i586","name":"SLE11-SDK-SP2-Updates","installer_updates":false},{"description":"SLE11-SDK-SP2-Updates for sle-11-ia64","installer_updates":false,"name":"SLE11-SDK-SP2-Updates","distro_target":"sle-11-ia64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-ia64/","enabled":true,"id":1272},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-ppc64/","distro_target":"sle-11-ppc64","autorefresh":true,"id":1273,"enabled":true,"description":"SLE11-SDK-SP2-Core for sle-11-ppc64","installer_updates":false,"name":"SLE11-SDK-SP2-Core"},{"description":"SLE11-SDK-SP2-Core for sle-11-i586","name":"SLE11-SDK-SP2-Core","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","id":1274,"enabled":true},{"installer_updates":false,"name":"SLE11-SDK-SP2-Core","description":"SLE11-SDK-SP2-Core for sle-11-x86_64","enabled":true,"id":1275,"distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-x86_64/"},{"distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-x86_64/","enabled":true,"id":1276,"description":"SLE11-SDK-SP2-Updates for sle-11-x86_64","installer_updates":false,"name":"SLE11-SDK-SP2-Updates"}],"predecessor_ids":[],"cpe":null,"product_type":"extension"}],"version":"11.1","recommended":false,"release_type":"HP-BNB-2010","former_identifier":"SUSE_SLED","friendly_name":"SUSE Linux Enterprise Desktop 11 SP1 HP-BNB-2010","migration_extra":false,"offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Desktop"},{"predecessor_ids":[],"repositories":[{"description":"SLED11-SP1-Pool for sle-11-i586","installer_updates":false,"name":"SLED11-SP1-Pool","distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLED11-SP1-Pool/sle-11-i586/","enabled":true,"id":852},{"description":"SLED11-SP1-Pool for sle-11-x86_64","name":"SLED11-SP1-Pool","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLED11-SP1-Pool/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64","id":905,"enabled":true}],"online_predecessor_ids":[],"product_class":"7260","product_type":"base","cpe":null,"free":false,"description":null,"shortname":null,"eula_url":"","arch":null,"friendly_version":"11","extensions":[{"arch":null,"eula_url":"","shortname":null,"description":null,"free":true,"cpe":null,"product_type":"extension","product_class":"SLE-SDK","online_predecessor_ids":[],"repositories":[{"installer_updates":false,"name":"SLE11-SDK-Updates","description":"SLE11-SDK-Updates for sle-11-ppc64","enabled":true,"id":1247,"distro_target":"sle-11-ppc64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-Updates/sle-11-ppc64/"},{"installer_updates":false,"name":"SLE11-SDK-Pool","description":"SLE11-SDK-Pool for sle-11-s390x","id":1248,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-Pool/sle-11-s390x/","distro_target":"sle-11-s390x","autorefresh":true},{"description":"SLE11-SDK-Updates for sle-11-x86_64","name":"SLE11-SDK-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-Updates/sle-11-x86_64/","enabled":true,"id":1249},{"description":"SLE11-SDK-Pool for sle-11-i586","installer_updates":false,"name":"SLE11-SDK-Pool","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-Pool/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true,"id":1250,"enabled":false},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-Pool/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true,"id":1251,"enabled":false,"description":"SLE11-SDK-Pool for sle-11-x86_64","installer_updates":false,"name":"SLE11-SDK-Pool"},{"name":"SLE11-SDK-Pool","installer_updates":false,"description":"SLE11-SDK-Pool for sle-11-ppc64","enabled":false,"id":1252,"autorefresh":true,"distro_target":"sle-11-ppc64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-Pool/sle-11-ppc64/"},{"distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-Updates/sle-11-i586/","enabled":true,"id":1253,"description":"SLE11-SDK-Updates for sle-11-i586","installer_updates":false,"name":"SLE11-SDK-Updates"},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-Pool/sle-11-ia64/","autorefresh":true,"distro_target":"sle-11-ia64","id":1254,"enabled":false,"description":"SLE11-SDK-Pool for sle-11-ia64","name":"SLE11-SDK-Pool","installer_updates":false},{"installer_updates":false,"name":"SLE11-SDK-Updates","description":"SLE11-SDK-Updates for sle-11-s390x","enabled":true,"id":1255,"distro_target":"sle-11-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-Updates/sle-11-s390x/"},{"installer_updates":false,"name":"SLE11-SDK-Updates","description":"SLE11-SDK-Updates for sle-11-ia64","enabled":true,"id":1256,"distro_target":"sle-11-ia64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-Updates/sle-11-ia64/"}],"predecessor_ids":[],"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Software Development Kit 11","release_type":null,"former_identifier":"sle-sdk","name":"SUSE Linux Enterprise Software Development Kit","offline_predecessor_ids":[],"version":"11","recommended":false,"release_stage":"released","id":1158,"identifier":"sle-sdk","extensions":[],"friendly_version":"11"},{"recommended":false,"version":"11","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Software Development Kit","release_type":null,"former_identifier":"sle-sdk-SP1-migration","migration_extra":false,"friendly_name":"SUSE Linux Enterprise Software Development Kit 11 (Migration)","friendly_version":"11","extensions":[],"release_stage":"released","identifier":"sle-sdk-SP1-migration","id":1162,"free":true,"shortname":null,"description":null,"eula_url":"","arch":null,"predecessor_ids":[],"product_class":"SLE-SDK","online_predecessor_ids":[],"repositories":[{"name":"SLE11-SDK-SP1-Pool","installer_updates":false,"description":"SLE11-SDK-SP1-Pool for sle-11-ia64","enabled":true,"id":1258,"autorefresh":true,"distro_target":"sle-11-ia64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-ia64/"},{"name":"SLE11-SDK-SP1-Pool","installer_updates":false,"description":"SLE11-SDK-SP1-Pool for sle-11-s390x","id":1259,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-s390x/","autorefresh":true,"distro_target":"sle-11-s390x"},{"description":"SLE11-SDK-SP1-Pool for sle-11-ppc64","name":"SLE11-SDK-SP1-Pool","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-ppc64/","autorefresh":true,"distro_target":"sle-11-ppc64","id":1261,"enabled":true},{"name":"SLE11-SDK-SP1-Pool","installer_updates":false,"description":"SLE11-SDK-SP1-Pool for sle-11-i586","id":1263,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586"},{"description":"SLE11-SDK-SP1-Pool for sle-11-x86_64","installer_updates":false,"name":"SLE11-SDK-SP1-Pool","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true,"id":1264,"enabled":true}],"product_type":"extension","cpe":null}],"release_stage":"released","identifier":"SUSE_SLED-SP1-migration","id":1027,"recommended":false,"version":"11","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Desktop","former_identifier":"SUSE_SLED-SP1-migration","release_type":"HP-BNB","migration_extra":false,"friendly_name":"SUSE Linux Enterprise Desktop 11 HP-BNB (Migration)"},{"shortname":null,"description":null,"free":false,"arch":null,"eula_url":"","repositories":[{"description":"SLED11-SP1-Pool for sle-11-i586","installer_updates":false,"name":"SLED11-SP1-Pool","url":"https://updates.suse.com/repo/$RCE/SLED11-SP1-Pool/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true,"id":852,"enabled":true},{"name":"SLED11-SP1-Pool","installer_updates":false,"description":"SLED11-SP1-Pool for sle-11-x86_64","id":905,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLED11-SP1-Pool/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64"}],"online_predecessor_ids":[],"product_class":"7260","predecessor_ids":[],"cpe":null,"product_type":"base","version":"11","recommended":false,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Desktop 11 HP-BNB-2010 (Migration)","release_type":"HP-BNB-2010","former_identifier":"SUSE_SLED-SP1-migration","name":"SUSE Linux Enterprise Desktop","offline_predecessor_ids":[],"friendly_version":"11","identifier":"SUSE_SLED-SP1-migration","release_stage":"released","id":1028,"extensions":[{"predecessor_ids":[],"online_predecessor_ids":[],"repositories":[{"enabled":true,"id":1247,"distro_target":"sle-11-ppc64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-Updates/sle-11-ppc64/","installer_updates":false,"name":"SLE11-SDK-Updates","description":"SLE11-SDK-Updates for sle-11-ppc64"},{"id":1248,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-Pool/sle-11-s390x/","autorefresh":true,"distro_target":"sle-11-s390x","name":"SLE11-SDK-Pool","installer_updates":false,"description":"SLE11-SDK-Pool for sle-11-s390x"},{"installer_updates":false,"name":"SLE11-SDK-Updates","description":"SLE11-SDK-Updates for sle-11-x86_64","enabled":true,"id":1249,"distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-Updates/sle-11-x86_64/"},{"description":"SLE11-SDK-Pool for sle-11-i586","name":"SLE11-SDK-Pool","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-Pool/sle-11-i586/","enabled":false,"id":1250},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-Pool/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true,"id":1251,"enabled":false,"description":"SLE11-SDK-Pool for sle-11-x86_64","installer_updates":false,"name":"SLE11-SDK-Pool"},{"name":"SLE11-SDK-Pool","installer_updates":false,"description":"SLE11-SDK-Pool for sle-11-ppc64","id":1252,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-Pool/sle-11-ppc64/","autorefresh":true,"distro_target":"sle-11-ppc64"},{"installer_updates":false,"name":"SLE11-SDK-Updates","description":"SLE11-SDK-Updates for sle-11-i586","id":1253,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-Updates/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true},{"installer_updates":false,"name":"SLE11-SDK-Pool","description":"SLE11-SDK-Pool for sle-11-ia64","enabled":false,"id":1254,"distro_target":"sle-11-ia64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-Pool/sle-11-ia64/"},{"description":"SLE11-SDK-Updates for sle-11-s390x","installer_updates":false,"name":"SLE11-SDK-Updates","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-Updates/sle-11-s390x/","distro_target":"sle-11-s390x","autorefresh":true,"id":1255,"enabled":true},{"name":"SLE11-SDK-Updates","installer_updates":false,"description":"SLE11-SDK-Updates for sle-11-ia64","id":1256,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-Updates/sle-11-ia64/","autorefresh":true,"distro_target":"sle-11-ia64"}],"product_class":"SLE-SDK","product_type":"extension","cpe":null,"free":true,"shortname":null,"description":null,"eula_url":"","arch":null,"friendly_version":"11","extensions":[],"release_stage":"released","identifier":"sle-sdk","id":1158,"recommended":false,"version":"11","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Software Development Kit","former_identifier":"sle-sdk","release_type":null,"friendly_name":"SUSE Linux Enterprise Software Development Kit 11","migration_extra":false},{"friendly_version":"11","id":1162,"release_stage":"released","identifier":"sle-sdk-SP1-migration","extensions":[],"version":"11","recommended":false,"release_type":null,"former_identifier":"sle-sdk-SP1-migration","migration_extra":false,"friendly_name":"SUSE Linux Enterprise Software Development Kit 11 (Migration)","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Software Development Kit","online_predecessor_ids":[],"product_class":"SLE-SDK","repositories":[{"description":"SLE11-SDK-SP1-Pool for sle-11-ia64","installer_updates":false,"name":"SLE11-SDK-SP1-Pool","distro_target":"sle-11-ia64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-ia64/","enabled":true,"id":1258},{"description":"SLE11-SDK-SP1-Pool for sle-11-s390x","installer_updates":false,"name":"SLE11-SDK-SP1-Pool","distro_target":"sle-11-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-s390x/","enabled":true,"id":1259},{"name":"SLE11-SDK-SP1-Pool","installer_updates":false,"description":"SLE11-SDK-SP1-Pool for sle-11-ppc64","id":1261,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-ppc64/","autorefresh":true,"distro_target":"sle-11-ppc64"},{"enabled":true,"id":1263,"distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-i586/","installer_updates":false,"name":"SLE11-SDK-SP1-Pool","description":"SLE11-SDK-SP1-Pool for sle-11-i586"},{"description":"SLE11-SDK-SP1-Pool for sle-11-x86_64","installer_updates":false,"name":"SLE11-SDK-SP1-Pool","distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-x86_64/","enabled":true,"id":1264}],"predecessor_ids":[],"product_type":"extension","cpe":null,"free":true,"shortname":null,"description":null,"arch":null,"eula_url":""}]},{"eula_url":"","arch":null,"description":null,"shortname":null,"free":false,"cpe":null,"product_type":"base","predecessor_ids":[],"repositories":[{"id":680,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Pool/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true,"installer_updates":false,"name":"SLE11-SP1-Debuginfo-Pool","description":"SLE11-SP1-Debuginfo-Pool for sle-11-i586"},{"description":"SLE11-SP1-Debuginfo-Updates for sle-11-i586","installer_updates":false,"name":"SLE11-SP1-Debuginfo-Updates","distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Updates/sle-11-i586/","enabled":false,"id":682},{"description":"SLE11-SP1-Debuginfo-Updates for sle-11-s390x","name":"SLE11-SP1-Debuginfo-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-s390x","url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Updates/sle-11-s390x/","enabled":false,"id":688},{"description":"SLE11-SP1-Debuginfo-Pool for sle-11-s390x","name":"SLE11-SP1-Debuginfo-Pool","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-s390x","url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Pool/sle-11-s390x/","enabled":false,"id":692},{"installer_updates":false,"name":"SLE11-SP1-Debuginfo-Pool","description":"SLE11-SP1-Debuginfo-Pool for sle-11-x86_64","enabled":false,"id":707,"distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Pool/sle-11-x86_64/"},{"distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Updates/sle-11-x86_64/","enabled":false,"id":715,"description":"SLE11-SP1-Debuginfo-Updates for sle-11-x86_64","installer_updates":false,"name":"SLE11-SP1-Debuginfo-Updates"},{"description":"SLED11-Extras for sle-11-i586","installer_updates":false,"name":"SLED11-Extras","url":"https://updates.suse.com/repo/$RCE/SLED11-Extras/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true,"id":846,"enabled":false},{"installer_updates":false,"name":"SLED11-SP1-Updates","description":"SLED11-SP1-Updates for sle-11-i586","enabled":true,"id":851,"distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLED11-SP1-Updates/sle-11-i586/"},{"url":"https://updates.suse.com/repo/$RCE/SLED11-SP1-Pool/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true,"id":852,"enabled":true,"description":"SLED11-SP1-Pool for sle-11-i586","installer_updates":false,"name":"SLED11-SP1-Pool"},{"id":902,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLED11-SP1-Updates/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true,"installer_updates":false,"name":"SLED11-SP1-Updates","description":"SLED11-SP1-Updates for sle-11-x86_64"},{"id":903,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLED11-Extras/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64","name":"SLED11-Extras","installer_updates":false,"description":"SLED11-Extras for sle-11-x86_64"},{"name":"SLED11-SP1-Pool","installer_updates":false,"description":"SLED11-SP1-Pool for sle-11-x86_64","id":905,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLED11-SP1-Pool/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64"},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Updates/sle-11-ppc64/","autorefresh":true,"distro_target":"sle-11-ppc64","id":924,"enabled":false,"description":"SLE11-SP1-Debuginfo-Updates for sle-11-ppc64","name":"SLE11-SP1-Debuginfo-Updates","installer_updates":false},{"name":"SLE11-SP1-Debuginfo-Pool","installer_updates":false,"description":"SLE11-SP1-Debuginfo-Pool for sle-11-ppc64","id":925,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Pool/sle-11-ppc64/","autorefresh":true,"distro_target":"sle-11-ppc64"},{"distro_target":"sle-11-ia64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Pool/sle-11-ia64/","enabled":false,"id":970,"description":"SLE11-SP1-Debuginfo-Pool for sle-11-ia64","installer_updates":false,"name":"SLE11-SP1-Debuginfo-Pool"},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Updates/sle-11-ia64/","autorefresh":true,"distro_target":"sle-11-ia64","id":971,"enabled":false,"description":"SLE11-SP1-Debuginfo-Updates for sle-11-ia64","name":"SLE11-SP1-Debuginfo-Updates","installer_updates":false},{"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLED11-SP1-HP-CNB-Updates/sle-11-i586/","enabled":true,"id":1026,"description":"SLED11-SP1-HP-CNB-Updates for sle-11-i586","name":"SLED11-SP1-HP-CNB-Updates","installer_updates":false},{"description":"SLED11-SP1-HP-CNB-Updates for sle-11-x86_64","installer_updates":false,"name":"SLED11-SP1-HP-CNB-Updates","url":"https://updates.suse.com/repo/$RCE/SLED11-SP1-HP-CNB-Updates/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true,"id":1027,"enabled":true}],"online_predecessor_ids":[],"product_class":"7260","name":"SUSE Linux Enterprise Desktop","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Desktop 11 SP1 HP-CNB","release_type":"HP-CNB","former_identifier":"SUSE_SLED","recommended":false,"version":"11.1","extensions":[{"name":"SUSE Linux Enterprise Software Development Kit","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Software Development Kit 11 SP1","former_identifier":"sle-sdk","release_type":null,"recommended":false,"version":"11.1","extensions":[],"release_stage":"released","identifier":"sle-sdk","id":1159,"friendly_version":"11 SP1","eula_url":"","arch":null,"shortname":null,"description":null,"free":true,"cpe":null,"product_type":"extension","predecessor_ids":[],"online_predecessor_ids":[],"product_class":"SLE-SDK","repositories":[{"id":1257,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Updates/sle-11-ia64/","autorefresh":true,"distro_target":"sle-11-ia64","name":"SLE11-SDK-SP1-Updates","installer_updates":false,"description":"SLE11-SDK-SP1-Updates for sle-11-ia64"},{"description":"SLE11-SDK-SP1-Pool for sle-11-ia64","installer_updates":false,"name":"SLE11-SDK-SP1-Pool","distro_target":"sle-11-ia64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-ia64/","enabled":true,"id":1258},{"description":"SLE11-SDK-SP1-Pool for sle-11-s390x","installer_updates":false,"name":"SLE11-SDK-SP1-Pool","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-s390x/","distro_target":"sle-11-s390x","autorefresh":true,"id":1259,"enabled":true},{"id":1260,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Updates/sle-11-ppc64/","autorefresh":true,"distro_target":"sle-11-ppc64","name":"SLE11-SDK-SP1-Updates","installer_updates":false,"description":"SLE11-SDK-SP1-Updates for sle-11-ppc64"},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-ppc64/","autorefresh":true,"distro_target":"sle-11-ppc64","id":1261,"enabled":true,"description":"SLE11-SDK-SP1-Pool for sle-11-ppc64","name":"SLE11-SDK-SP1-Pool","installer_updates":false},{"distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Updates/sle-11-i586/","enabled":true,"id":1262,"description":"SLE11-SDK-SP1-Updates for sle-11-i586","installer_updates":false,"name":"SLE11-SDK-SP1-Updates"},{"description":"SLE11-SDK-SP1-Pool for sle-11-i586","installer_updates":false,"name":"SLE11-SDK-SP1-Pool","distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-i586/","enabled":true,"id":1263},{"description":"SLE11-SDK-SP1-Pool for sle-11-x86_64","installer_updates":false,"name":"SLE11-SDK-SP1-Pool","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true,"id":1264,"enabled":true},{"description":"SLE11-SDK-SP1-Updates for sle-11-x86_64","name":"SLE11-SDK-SP1-Updates","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Updates/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64","id":1265,"enabled":true},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Updates/sle-11-s390x/","autorefresh":true,"distro_target":"sle-11-s390x","id":1266,"enabled":true,"description":"SLE11-SDK-SP1-Updates for sle-11-s390x","name":"SLE11-SDK-SP1-Updates","installer_updates":false}]},{"online_predecessor_ids":[],"product_class":"SLE-SDK","repositories":[{"description":"SLE11-SDK-SP2-Core for sle-11-ia64","name":"SLE11-SDK-SP2-Core","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-ia64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-ia64/","enabled":true,"id":1267},{"description":"SLE11-SDK-SP2-Core for sle-11-s390x","name":"SLE11-SDK-SP2-Core","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-s390x","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-s390x/","enabled":true,"id":1268},{"description":"SLE11-SDK-SP2-Updates for sle-11-s390x","name":"SLE11-SDK-SP2-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-s390x","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-s390x/","enabled":true,"id":1269},{"id":1270,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-ppc64/","distro_target":"sle-11-ppc64","autorefresh":true,"installer_updates":false,"name":"SLE11-SDK-SP2-Updates","description":"SLE11-SDK-SP2-Updates for sle-11-ppc64"},{"enabled":true,"id":1271,"distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-i586/","installer_updates":false,"name":"SLE11-SDK-SP2-Updates","description":"SLE11-SDK-SP2-Updates for sle-11-i586"},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-ia64/","autorefresh":true,"distro_target":"sle-11-ia64","id":1272,"enabled":true,"description":"SLE11-SDK-SP2-Updates for sle-11-ia64","name":"SLE11-SDK-SP2-Updates","installer_updates":false},{"description":"SLE11-SDK-SP2-Core for sle-11-ppc64","installer_updates":false,"name":"SLE11-SDK-SP2-Core","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-ppc64/","distro_target":"sle-11-ppc64","autorefresh":true,"id":1273,"enabled":true},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","id":1274,"enabled":true,"description":"SLE11-SDK-SP2-Core for sle-11-i586","name":"SLE11-SDK-SP2-Core","installer_updates":false},{"name":"SLE11-SDK-SP2-Core","installer_updates":false,"description":"SLE11-SDK-SP2-Core for sle-11-x86_64","id":1275,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64"},{"id":1276,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64","name":"SLE11-SDK-SP2-Updates","installer_updates":false,"description":"SLE11-SDK-SP2-Updates for sle-11-x86_64"}],"predecessor_ids":[],"cpe":null,"product_type":"extension","shortname":null,"description":null,"free":true,"arch":null,"eula_url":"","friendly_version":"11 SP1","identifier":"sle-sdk-SP2-migration","release_stage":"released","id":1163,"extensions":[],"version":"11.1","recommended":false,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Software Development Kit 11 SP1 (Migration)","release_type":null,"former_identifier":"sle-sdk-SP2-migration","name":"SUSE Linux Enterprise Software Development Kit","offline_predecessor_ids":[]}],"id":1029,"release_stage":"released","identifier":"SUSE_SLED","friendly_version":"11 SP1"},{"eula_url":"","arch":null,"free":false,"shortname":null,"description":null,"product_type":"base","cpe":null,"predecessor_ids":[],"online_predecessor_ids":[],"product_class":"7260","repositories":[{"distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLED11-SP1-Pool/sle-11-i586/","enabled":true,"id":852,"description":"SLED11-SP1-Pool for sle-11-i586","installer_updates":false,"name":"SLED11-SP1-Pool"},{"url":"https://updates.suse.com/repo/$RCE/SLED11-SP1-Pool/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true,"id":905,"enabled":true,"description":"SLED11-SP1-Pool for sle-11-x86_64","installer_updates":false,"name":"SLED11-SP1-Pool"},{"url":"https://updates.suse.com/repo/$RCE/SLED11-SP1-HP-CNB-Updates/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true,"id":1026,"enabled":true,"description":"SLED11-SP1-HP-CNB-Updates for sle-11-i586","installer_updates":false,"name":"SLED11-SP1-HP-CNB-Updates"},{"installer_updates":false,"name":"SLED11-SP1-HP-CNB-Updates","description":"SLED11-SP1-HP-CNB-Updates for sle-11-x86_64","id":1027,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLED11-SP1-HP-CNB-Updates/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true}],"offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Desktop","former_identifier":"SUSE_SLED-SP1-migration","release_type":"HP-CNB","friendly_name":"SUSE Linux Enterprise Desktop 11 HP-CNB (Migration)","migration_extra":false,"recommended":false,"version":"11","extensions":[{"offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Software Development Kit","former_identifier":"sle-sdk","release_type":null,"friendly_name":"SUSE Linux Enterprise Software Development Kit 11","migration_extra":false,"recommended":false,"version":"11","extensions":[],"release_stage":"released","id":1158,"identifier":"sle-sdk","friendly_version":"11","eula_url":"","arch":null,"free":true,"description":null,"shortname":null,"product_type":"extension","cpe":null,"predecessor_ids":[],"online_predecessor_ids":[],"repositories":[{"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-Updates/sle-11-ppc64/","distro_target":"sle-11-ppc64","autorefresh":true,"id":1247,"enabled":true,"description":"SLE11-SDK-Updates for sle-11-ppc64","installer_updates":false,"name":"SLE11-SDK-Updates"},{"id":1248,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-Pool/sle-11-s390x/","autorefresh":true,"distro_target":"sle-11-s390x","name":"SLE11-SDK-Pool","installer_updates":false,"description":"SLE11-SDK-Pool for sle-11-s390x"},{"enabled":true,"id":1249,"distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-Updates/sle-11-x86_64/","installer_updates":false,"name":"SLE11-SDK-Updates","description":"SLE11-SDK-Updates for sle-11-x86_64"},{"enabled":false,"id":1250,"distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-Pool/sle-11-i586/","installer_updates":false,"name":"SLE11-SDK-Pool","description":"SLE11-SDK-Pool for sle-11-i586"},{"installer_updates":false,"name":"SLE11-SDK-Pool","description":"SLE11-SDK-Pool for sle-11-x86_64","enabled":false,"id":1251,"distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-Pool/sle-11-x86_64/"},{"name":"SLE11-SDK-Pool","installer_updates":false,"description":"SLE11-SDK-Pool for sle-11-ppc64","enabled":false,"id":1252,"autorefresh":true,"distro_target":"sle-11-ppc64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-Pool/sle-11-ppc64/"},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-Updates/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true,"id":1253,"enabled":true,"description":"SLE11-SDK-Updates for sle-11-i586","installer_updates":false,"name":"SLE11-SDK-Updates"},{"installer_updates":false,"name":"SLE11-SDK-Pool","description":"SLE11-SDK-Pool for sle-11-ia64","enabled":false,"id":1254,"distro_target":"sle-11-ia64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-Pool/sle-11-ia64/"},{"description":"SLE11-SDK-Updates for sle-11-s390x","name":"SLE11-SDK-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-s390x","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-Updates/sle-11-s390x/","enabled":true,"id":1255},{"enabled":true,"id":1256,"autorefresh":true,"distro_target":"sle-11-ia64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-Updates/sle-11-ia64/","name":"SLE11-SDK-Updates","installer_updates":false,"description":"SLE11-SDK-Updates for sle-11-ia64"}],"product_class":"SLE-SDK"},{"eula_url":"","arch":null,"free":true,"description":null,"shortname":null,"product_type":"extension","cpe":null,"predecessor_ids":[],"online_predecessor_ids":[],"product_class":"SLE-SDK","repositories":[{"id":1258,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-ia64/","autorefresh":true,"distro_target":"sle-11-ia64","name":"SLE11-SDK-SP1-Pool","installer_updates":false,"description":"SLE11-SDK-SP1-Pool for sle-11-ia64"},{"enabled":true,"id":1259,"distro_target":"sle-11-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-s390x/","installer_updates":false,"name":"SLE11-SDK-SP1-Pool","description":"SLE11-SDK-SP1-Pool for sle-11-s390x"},{"id":1261,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-ppc64/","autorefresh":true,"distro_target":"sle-11-ppc64","name":"SLE11-SDK-SP1-Pool","installer_updates":false,"description":"SLE11-SDK-SP1-Pool for sle-11-ppc64"},{"name":"SLE11-SDK-SP1-Pool","installer_updates":false,"description":"SLE11-SDK-SP1-Pool for sle-11-i586","enabled":true,"id":1263,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-i586/"},{"distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-x86_64/","enabled":true,"id":1264,"description":"SLE11-SDK-SP1-Pool for sle-11-x86_64","installer_updates":false,"name":"SLE11-SDK-SP1-Pool"}],"offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Software Development Kit","former_identifier":"sle-sdk-SP1-migration","release_type":null,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Software Development Kit 11 (Migration)","recommended":false,"version":"11","extensions":[],"identifier":"sle-sdk-SP1-migration","release_stage":"released","id":1162,"friendly_version":"11"}],"id":1030,"release_stage":"released","identifier":"SUSE_SLED-SP1-migration","friendly_version":"11"},{"cpe":null,"product_type":"base","predecessor_ids":[],"online_predecessor_ids":[],"repositories":[{"autorefresh":true,"distro_target":"sle-11-s390x","url":"https://updates.suse.com/repo/$RCE/SLE11-SP3-Debuginfo-Pool/sle-11-s390x/","enabled":false,"id":732,"description":"SLE11-SP3-Debuginfo-Pool for sle-11-s390x","name":"SLE11-SP3-Debuginfo-Pool","installer_updates":false},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SP3-Debuginfo-Updates/sle-11-s390x/","distro_target":"sle-11-s390x","autorefresh":true,"id":733,"enabled":false,"description":"SLE11-SP3-Debuginfo-Updates for sle-11-s390x","installer_updates":false,"name":"SLE11-SP3-Debuginfo-Updates"},{"id":735,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP3-Debuginfo-Updates/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64","name":"SLE11-SP3-Debuginfo-Updates","installer_updates":false,"description":"SLE11-SP3-Debuginfo-Updates for sle-11-x86_64"},{"installer_updates":false,"name":"SLE11-SP3-Debuginfo-Pool","description":"SLE11-SP3-Debuginfo-Pool for sle-11-x86_64","enabled":false,"id":736,"distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP3-Debuginfo-Pool/sle-11-x86_64/"},{"distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP3-Debuginfo-Updates/sle-11-i586/","enabled":false,"id":759,"description":"SLE11-SP3-Debuginfo-Updates for sle-11-i586","installer_updates":false,"name":"SLE11-SP3-Debuginfo-Updates"},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SP3-Debuginfo-Pool/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true,"id":763,"enabled":false,"description":"SLE11-SP3-Debuginfo-Pool for sle-11-i586","installer_updates":false,"name":"SLE11-SP3-Debuginfo-Pool"},{"name":"SLED11-Extras","installer_updates":false,"description":"SLED11-Extras for sle-11-i586","id":846,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLED11-Extras/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586"},{"description":"SLED11-SP3-Updates for sle-11-i586","name":"SLED11-SP3-Updates","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLED11-SP3-Updates/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","id":890,"enabled":true},{"id":891,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLED11-SP3-Pool/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true,"installer_updates":false,"name":"SLED11-SP3-Pool","description":"SLED11-SP3-Pool for sle-11-i586"},{"description":"SLED11-SP3-Pool for sle-11-x86_64","name":"SLED11-SP3-Pool","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLED11-SP3-Pool/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64","id":901,"enabled":true},{"description":"SLED11-Extras for sle-11-x86_64","name":"SLED11-Extras","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLED11-Extras/sle-11-x86_64/","enabled":false,"id":903},{"installer_updates":false,"name":"SLED11-SP3-Updates","description":"SLED11-SP3-Updates for sle-11-x86_64","id":904,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLED11-SP3-Updates/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true},{"name":"SLE11-SP3-Debuginfo-Pool","installer_updates":false,"description":"SLE11-SP3-Debuginfo-Pool for sle-11-ppc64","enabled":false,"id":937,"autorefresh":true,"distro_target":"sle-11-ppc64","url":"https://updates.suse.com/repo/$RCE/SLE11-SP3-Debuginfo-Pool/sle-11-ppc64/"},{"enabled":false,"id":941,"distro_target":"sle-11-ppc64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP3-Debuginfo-Updates/sle-11-ppc64/","installer_updates":false,"name":"SLE11-SP3-Debuginfo-Updates","description":"SLE11-SP3-Debuginfo-Updates for sle-11-ppc64"},{"distro_target":"sle-11-ia64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP3-Debuginfo-Updates/sle-11-ia64/","enabled":false,"id":1028,"description":"SLE11-SP3-Debuginfo-Updates for sle-11-ia64","installer_updates":false,"name":"SLE11-SP3-Debuginfo-Updates"},{"description":"SLED11-SP3-HP-BNB-Updates for sle-11-i586","installer_updates":false,"name":"SLED11-SP3-HP-BNB-Updates","distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLED11-SP3-HP-BNB-Updates/sle-11-i586/","enabled":true,"id":1029},{"description":"SLE11-SP3-Debuginfo-Pool for sle-11-ia64","name":"SLE11-SP3-Debuginfo-Pool","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-ia64","url":"https://updates.suse.com/repo/$RCE/SLE11-SP3-Debuginfo-Pool/sle-11-ia64/","enabled":false,"id":1030},{"name":"SLED11-SP3-HP-BNB-Updates","installer_updates":false,"description":"SLED11-SP3-HP-BNB-Updates for sle-11-x86_64","enabled":true,"id":1031,"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLED11-SP3-HP-BNB-Updates/sle-11-x86_64/"}],"product_class":"7260","eula_url":"","arch":null,"description":null,"shortname":null,"free":false,"extensions":[{"friendly_version":"11 SP3","extensions":[],"release_stage":"released","identifier":"sle-sdk","id":1161,"recommended":false,"version":"11.3","name":"SUSE Linux Enterprise Software Development Kit","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Software Development Kit 11 SP3","release_type":null,"former_identifier":"sle-sdk","predecessor_ids":[],"repositories":[{"description":"SLE11-SDK-SP1-Updates for sle-11-ia64","installer_updates":false,"name":"SLE11-SDK-SP1-Updates","distro_target":"sle-11-ia64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Updates/sle-11-ia64/","enabled":false,"id":1257},{"installer_updates":false,"name":"SLE11-SDK-SP1-Pool","description":"SLE11-SDK-SP1-Pool for sle-11-ia64","enabled":false,"id":1258,"distro_target":"sle-11-ia64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-ia64/"},{"id":1259,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-s390x/","distro_target":"sle-11-s390x","autorefresh":true,"installer_updates":false,"name":"SLE11-SDK-SP1-Pool","description":"SLE11-SDK-SP1-Pool for sle-11-s390x"},{"description":"SLE11-SDK-SP1-Updates for sle-11-ppc64","name":"SLE11-SDK-SP1-Updates","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Updates/sle-11-ppc64/","autorefresh":true,"distro_target":"sle-11-ppc64","id":1260,"enabled":false},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-ppc64/","autorefresh":true,"distro_target":"sle-11-ppc64","id":1261,"enabled":false,"description":"SLE11-SDK-SP1-Pool for sle-11-ppc64","name":"SLE11-SDK-SP1-Pool","installer_updates":false},{"description":"SLE11-SDK-SP1-Updates for sle-11-i586","name":"SLE11-SDK-SP1-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Updates/sle-11-i586/","enabled":false,"id":1262},{"installer_updates":false,"name":"SLE11-SDK-SP1-Pool","description":"SLE11-SDK-SP1-Pool for sle-11-i586","id":1263,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true},{"installer_updates":false,"name":"SLE11-SDK-SP1-Pool","description":"SLE11-SDK-SP1-Pool for sle-11-x86_64","id":1264,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Updates/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64","id":1265,"enabled":false,"description":"SLE11-SDK-SP1-Updates for sle-11-x86_64","name":"SLE11-SDK-SP1-Updates","installer_updates":false},{"description":"SLE11-SDK-SP1-Updates for sle-11-s390x","name":"SLE11-SDK-SP1-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-s390x","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Updates/sle-11-s390x/","enabled":false,"id":1266},{"enabled":false,"id":1267,"distro_target":"sle-11-ia64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-ia64/","installer_updates":false,"name":"SLE11-SDK-SP2-Core","description":"SLE11-SDK-SP2-Core for sle-11-ia64"},{"description":"SLE11-SDK-SP2-Core for sle-11-s390x","name":"SLE11-SDK-SP2-Core","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-s390x","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-s390x/","enabled":false,"id":1268},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-s390x/","distro_target":"sle-11-s390x","autorefresh":true,"id":1269,"enabled":false,"description":"SLE11-SDK-SP2-Updates for sle-11-s390x","installer_updates":false,"name":"SLE11-SDK-SP2-Updates"},{"description":"SLE11-SDK-SP2-Updates for sle-11-ppc64","name":"SLE11-SDK-SP2-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-ppc64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-ppc64/","enabled":false,"id":1270},{"enabled":false,"id":1271,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-i586/","name":"SLE11-SDK-SP2-Updates","installer_updates":false,"description":"SLE11-SDK-SP2-Updates for sle-11-i586"},{"enabled":false,"id":1272,"distro_target":"sle-11-ia64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-ia64/","installer_updates":false,"name":"SLE11-SDK-SP2-Updates","description":"SLE11-SDK-SP2-Updates for sle-11-ia64"},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-ppc64/","autorefresh":true,"distro_target":"sle-11-ppc64","id":1273,"enabled":false,"description":"SLE11-SDK-SP2-Core for sle-11-ppc64","name":"SLE11-SDK-SP2-Core","installer_updates":false},{"description":"SLE11-SDK-SP2-Core for sle-11-i586","installer_updates":false,"name":"SLE11-SDK-SP2-Core","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true,"id":1274,"enabled":false},{"id":1275,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true,"installer_updates":false,"name":"SLE11-SDK-SP2-Core","description":"SLE11-SDK-SP2-Core for sle-11-x86_64"},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true,"id":1276,"enabled":false,"description":"SLE11-SDK-SP2-Updates for sle-11-x86_64","installer_updates":false,"name":"SLE11-SDK-SP2-Updates"},{"name":"SLE11-SDK-SP3-Pool","installer_updates":false,"description":"SLE11-SDK-SP3-Pool for sle-11-i586","enabled":true,"id":1277,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Pool/sle-11-i586/"},{"installer_updates":false,"name":"SLE11-SDK-SP3-Pool","description":"SLE11-SDK-SP3-Pool for sle-11-ia64","enabled":true,"id":1278,"distro_target":"sle-11-ia64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Pool/sle-11-ia64/"},{"description":"SLE11-SDK-SP3-Updates for sle-11-ppc64","installer_updates":false,"name":"SLE11-SDK-SP3-Updates","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Updates/sle-11-ppc64/","distro_target":"sle-11-ppc64","autorefresh":true,"id":1279,"enabled":true},{"description":"SLE11-SDK-SP3-Updates for sle-11-ia64","name":"SLE11-SDK-SP3-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-ia64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Updates/sle-11-ia64/","enabled":true,"id":1280},{"distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Pool/sle-11-x86_64/","enabled":true,"id":1281,"description":"SLE11-SDK-SP3-Pool for sle-11-x86_64","installer_updates":false,"name":"SLE11-SDK-SP3-Pool"},{"installer_updates":false,"name":"SLE11-SDK-SP3-Updates","description":"SLE11-SDK-SP3-Updates for sle-11-s390x","id":1282,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Updates/sle-11-s390x/","distro_target":"sle-11-s390x","autorefresh":true},{"distro_target":"sle-11-ppc64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Pool/sle-11-ppc64/","enabled":true,"id":1283,"description":"SLE11-SDK-SP3-Pool for sle-11-ppc64","installer_updates":false,"name":"SLE11-SDK-SP3-Pool"},{"id":1284,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Updates/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true,"installer_updates":false,"name":"SLE11-SDK-SP3-Updates","description":"SLE11-SDK-SP3-Updates for sle-11-x86_64"},{"installer_updates":false,"name":"SLE11-SDK-SP3-Updates","description":"SLE11-SDK-SP3-Updates for sle-11-i586","id":1285,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Updates/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true},{"name":"SLE11-SDK-SP3-Pool","installer_updates":false,"description":"SLE11-SDK-SP3-Pool for sle-11-s390x","enabled":true,"id":1286,"autorefresh":true,"distro_target":"sle-11-s390x","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Pool/sle-11-s390x/"}],"online_predecessor_ids":[],"product_class":"SLE-SDK","cpe":null,"product_type":"extension","description":null,"shortname":null,"free":true,"eula_url":"","arch":null},{"product_class":"SLE-SDK","online_predecessor_ids":[],"repositories":[{"distro_target":"sle-11-ia64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Updates/sle-11-ia64/","enabled":false,"id":1257,"description":"SLE11-SDK-SP1-Updates for sle-11-ia64","installer_updates":false,"name":"SLE11-SDK-SP1-Updates"},{"description":"SLE11-SDK-SP1-Pool for sle-11-ia64","installer_updates":false,"name":"SLE11-SDK-SP1-Pool","distro_target":"sle-11-ia64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-ia64/","enabled":false,"id":1258},{"description":"SLE11-SDK-SP1-Pool for sle-11-s390x","installer_updates":false,"name":"SLE11-SDK-SP1-Pool","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-s390x/","distro_target":"sle-11-s390x","autorefresh":true,"id":1259,"enabled":false},{"name":"SLE11-SDK-SP1-Updates","installer_updates":false,"description":"SLE11-SDK-SP1-Updates for sle-11-ppc64","id":1260,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Updates/sle-11-ppc64/","autorefresh":true,"distro_target":"sle-11-ppc64"},{"description":"SLE11-SDK-SP1-Pool for sle-11-ppc64","installer_updates":false,"name":"SLE11-SDK-SP1-Pool","distro_target":"sle-11-ppc64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-ppc64/","enabled":false,"id":1261},{"id":1262,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Updates/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","name":"SLE11-SDK-SP1-Updates","installer_updates":false,"description":"SLE11-SDK-SP1-Updates for sle-11-i586"},{"distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-i586/","enabled":false,"id":1263,"description":"SLE11-SDK-SP1-Pool for sle-11-i586","installer_updates":false,"name":"SLE11-SDK-SP1-Pool"},{"name":"SLE11-SDK-SP1-Pool","installer_updates":false,"description":"SLE11-SDK-SP1-Pool for sle-11-x86_64","enabled":false,"id":1264,"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-x86_64/"},{"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Updates/sle-11-x86_64/","enabled":false,"id":1265,"description":"SLE11-SDK-SP1-Updates for sle-11-x86_64","name":"SLE11-SDK-SP1-Updates","installer_updates":false},{"description":"SLE11-SDK-SP1-Updates for sle-11-s390x","name":"SLE11-SDK-SP1-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-s390x","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Updates/sle-11-s390x/","enabled":false,"id":1266},{"id":1267,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-ia64/","distro_target":"sle-11-ia64","autorefresh":true,"installer_updates":false,"name":"SLE11-SDK-SP2-Core","description":"SLE11-SDK-SP2-Core for sle-11-ia64"},{"enabled":false,"id":1268,"autorefresh":true,"distro_target":"sle-11-s390x","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-s390x/","name":"SLE11-SDK-SP2-Core","installer_updates":false,"description":"SLE11-SDK-SP2-Core for sle-11-s390x"},{"name":"SLE11-SDK-SP2-Updates","installer_updates":false,"description":"SLE11-SDK-SP2-Updates for sle-11-s390x","enabled":false,"id":1269,"autorefresh":true,"distro_target":"sle-11-s390x","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-s390x/"},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-ppc64/","autorefresh":true,"distro_target":"sle-11-ppc64","id":1270,"enabled":false,"description":"SLE11-SDK-SP2-Updates for sle-11-ppc64","name":"SLE11-SDK-SP2-Updates","installer_updates":false},{"id":1271,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true,"installer_updates":false,"name":"SLE11-SDK-SP2-Updates","description":"SLE11-SDK-SP2-Updates for sle-11-i586"},{"installer_updates":false,"name":"SLE11-SDK-SP2-Updates","description":"SLE11-SDK-SP2-Updates for sle-11-ia64","id":1272,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-ia64/","distro_target":"sle-11-ia64","autorefresh":true},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-ppc64/","distro_target":"sle-11-ppc64","autorefresh":true,"id":1273,"enabled":false,"description":"SLE11-SDK-SP2-Core for sle-11-ppc64","installer_updates":false,"name":"SLE11-SDK-SP2-Core"},{"description":"SLE11-SDK-SP2-Core for sle-11-i586","installer_updates":false,"name":"SLE11-SDK-SP2-Core","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true,"id":1274,"enabled":false},{"distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-x86_64/","enabled":false,"id":1275,"description":"SLE11-SDK-SP2-Core for sle-11-x86_64","installer_updates":false,"name":"SLE11-SDK-SP2-Core"},{"id":1276,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64","name":"SLE11-SDK-SP2-Updates","installer_updates":false,"description":"SLE11-SDK-SP2-Updates for sle-11-x86_64"},{"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Pool/sle-11-i586/","enabled":false,"id":1277,"description":"SLE11-SDK-SP3-Pool for sle-11-i586","name":"SLE11-SDK-SP3-Pool","installer_updates":false},{"description":"SLE11-SDK-SP3-Pool for sle-11-ia64","installer_updates":false,"name":"SLE11-SDK-SP3-Pool","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Pool/sle-11-ia64/","distro_target":"sle-11-ia64","autorefresh":true,"id":1278,"enabled":false},{"description":"SLE11-SDK-SP3-Updates for sle-11-ppc64","name":"SLE11-SDK-SP3-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-ppc64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Updates/sle-11-ppc64/","enabled":false,"id":1279},{"id":1280,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Updates/sle-11-ia64/","distro_target":"sle-11-ia64","autorefresh":true,"installer_updates":false,"name":"SLE11-SDK-SP3-Updates","description":"SLE11-SDK-SP3-Updates for sle-11-ia64"},{"enabled":false,"id":1281,"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Pool/sle-11-x86_64/","name":"SLE11-SDK-SP3-Pool","installer_updates":false,"description":"SLE11-SDK-SP3-Pool for sle-11-x86_64"},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Updates/sle-11-s390x/","autorefresh":true,"distro_target":"sle-11-s390x","id":1282,"enabled":false,"description":"SLE11-SDK-SP3-Updates for sle-11-s390x","name":"SLE11-SDK-SP3-Updates","installer_updates":false},{"name":"SLE11-SDK-SP3-Pool","installer_updates":false,"description":"SLE11-SDK-SP3-Pool for sle-11-ppc64","id":1283,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Pool/sle-11-ppc64/","autorefresh":true,"distro_target":"sle-11-ppc64"},{"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Updates/sle-11-x86_64/","enabled":false,"id":1284,"description":"SLE11-SDK-SP3-Updates for sle-11-x86_64","name":"SLE11-SDK-SP3-Updates","installer_updates":false},{"id":1285,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Updates/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","name":"SLE11-SDK-SP3-Updates","installer_updates":false,"description":"SLE11-SDK-SP3-Updates for sle-11-i586"},{"description":"SLE11-SDK-SP3-Pool for sle-11-s390x","name":"SLE11-SDK-SP3-Pool","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-s390x","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Pool/sle-11-s390x/","enabled":false,"id":1286},{"id":1817,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP4-Pool/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","name":"SLE11-SDK-SP4-Pool","installer_updates":false,"description":"SLE11-SDK-SP4-Pool for sle-11-i586"},{"name":"SLE11-SDK-SP4-Pool","installer_updates":false,"description":"SLE11-SDK-SP4-Pool for sle-11-ia64","enabled":true,"id":1818,"autorefresh":true,"distro_target":"sle-11-ia64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP4-Pool/sle-11-ia64/"},{"description":"SLE11-SDK-SP4-Pool for sle-11-ppc64","installer_updates":false,"name":"SLE11-SDK-SP4-Pool","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP4-Pool/sle-11-ppc64/","distro_target":"sle-11-ppc64","autorefresh":true,"id":1819,"enabled":true},{"description":"SLE11-SDK-SP4-Pool for sle-11-s390x","installer_updates":false,"name":"SLE11-SDK-SP4-Pool","distro_target":"sle-11-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP4-Pool/sle-11-s390x/","enabled":true,"id":1820},{"id":1821,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP4-Pool/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true,"installer_updates":false,"name":"SLE11-SDK-SP4-Pool","description":"SLE11-SDK-SP4-Pool for sle-11-x86_64"},{"id":1822,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP4-Updates/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","name":"SLE11-SDK-SP4-Updates","installer_updates":false,"description":"SLE11-SDK-SP4-Updates for sle-11-i586"},{"distro_target":"sle-11-ia64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP4-Updates/sle-11-ia64/","enabled":true,"id":1823,"description":"SLE11-SDK-SP4-Updates for sle-11-ia64","installer_updates":false,"name":"SLE11-SDK-SP4-Updates"},{"autorefresh":true,"distro_target":"sle-11-ppc64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP4-Updates/sle-11-ppc64/","enabled":true,"id":1824,"description":"SLE11-SDK-SP4-Updates for sle-11-ppc64","name":"SLE11-SDK-SP4-Updates","installer_updates":false},{"name":"SLE11-SDK-SP4-Updates","installer_updates":false,"description":"SLE11-SDK-SP4-Updates for sle-11-s390x","id":1825,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP4-Updates/sle-11-s390x/","autorefresh":true,"distro_target":"sle-11-s390x"},{"description":"SLE11-SDK-SP4-Updates for sle-11-x86_64","name":"SLE11-SDK-SP4-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP4-Updates/sle-11-x86_64/","enabled":true,"id":1826}],"predecessor_ids":[],"product_type":"extension","cpe":null,"free":true,"shortname":null,"description":null,"arch":null,"eula_url":"","friendly_version":"11 SP3","release_stage":"released","identifier":"sle-sdk-SP4-migration","id":1318,"extensions":[],"version":"11.3","recommended":false,"former_identifier":"sle-sdk-SP4-migration","release_type":null,"friendly_name":"SUSE Linux Enterprise Software Development Kit 11 SP3 (Migration)","migration_extra":false,"offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Software Development Kit"}],"identifier":"SUSE_SLED","release_stage":"released","id":1031,"friendly_version":"11 SP3","name":"SUSE Linux Enterprise Desktop","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Desktop 11 SP3 HP-BNB-2013","former_identifier":"SUSE_SLED","release_type":"HP-BNB-2013","recommended":false,"version":"11.3"},{"product_type":"base","cpe":null,"online_predecessor_ids":[],"product_class":"7260","repositories":[{"name":"SLED11-SP3-Pool","installer_updates":false,"description":"SLED11-SP3-Pool for sle-11-i586","id":891,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLED11-SP3-Pool/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586"},{"enabled":true,"id":901,"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLED11-SP3-Pool/sle-11-x86_64/","name":"SLED11-SP3-Pool","installer_updates":false,"description":"SLED11-SP3-Pool for sle-11-x86_64"},{"description":"SLED11-SP3-HP-BNB-Updates for sle-11-i586","name":"SLED11-SP3-HP-BNB-Updates","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLED11-SP3-HP-BNB-Updates/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","id":1029,"enabled":true},{"enabled":true,"id":1031,"distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLED11-SP3-HP-BNB-Updates/sle-11-x86_64/","installer_updates":false,"name":"SLED11-SP3-HP-BNB-Updates","description":"SLED11-SP3-HP-BNB-Updates for sle-11-x86_64"}],"predecessor_ids":[],"arch":null,"eula_url":"","free":false,"description":null,"shortname":null,"release_stage":"released","identifier":"SUSE_SLED-SP3-migration","id":1032,"extensions":[{"version":"11.2","recommended":false,"friendly_name":"SUSE Linux Enterprise Software Development Kit 11 SP2","migration_extra":false,"release_type":null,"former_identifier":"sle-sdk","name":"SUSE Linux Enterprise Software Development Kit","offline_predecessor_ids":[],"friendly_version":"11 SP2","release_stage":"released","identifier":"sle-sdk","id":1160,"extensions":[],"shortname":null,"description":null,"free":true,"arch":null,"eula_url":"","repositories":[{"description":"SLE11-SDK-SP1-Updates for sle-11-ia64","installer_updates":false,"name":"SLE11-SDK-SP1-Updates","distro_target":"sle-11-ia64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Updates/sle-11-ia64/","enabled":true,"id":1257},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-ia64/","autorefresh":true,"distro_target":"sle-11-ia64","id":1258,"enabled":true,"description":"SLE11-SDK-SP1-Pool for sle-11-ia64","name":"SLE11-SDK-SP1-Pool","installer_updates":false},{"description":"SLE11-SDK-SP1-Pool for sle-11-s390x","name":"SLE11-SDK-SP1-Pool","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-s390x/","autorefresh":true,"distro_target":"sle-11-s390x","id":1259,"enabled":true},{"enabled":true,"id":1260,"autorefresh":true,"distro_target":"sle-11-ppc64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Updates/sle-11-ppc64/","name":"SLE11-SDK-SP1-Updates","installer_updates":false,"description":"SLE11-SDK-SP1-Updates for sle-11-ppc64"},{"description":"SLE11-SDK-SP1-Pool for sle-11-ppc64","installer_updates":false,"name":"SLE11-SDK-SP1-Pool","distro_target":"sle-11-ppc64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-ppc64/","enabled":true,"id":1261},{"installer_updates":false,"name":"SLE11-SDK-SP1-Updates","description":"SLE11-SDK-SP1-Updates for sle-11-i586","id":1262,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Updates/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","id":1263,"enabled":true,"description":"SLE11-SDK-SP1-Pool for sle-11-i586","name":"SLE11-SDK-SP1-Pool","installer_updates":false},{"id":1264,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64","name":"SLE11-SDK-SP1-Pool","installer_updates":false,"description":"SLE11-SDK-SP1-Pool for sle-11-x86_64"},{"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Updates/sle-11-x86_64/","enabled":true,"id":1265,"description":"SLE11-SDK-SP1-Updates for sle-11-x86_64","name":"SLE11-SDK-SP1-Updates","installer_updates":false},{"enabled":true,"id":1266,"distro_target":"sle-11-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Updates/sle-11-s390x/","installer_updates":false,"name":"SLE11-SDK-SP1-Updates","description":"SLE11-SDK-SP1-Updates for sle-11-s390x"},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-ia64/","autorefresh":true,"distro_target":"sle-11-ia64","id":1267,"enabled":true,"description":"SLE11-SDK-SP2-Core for sle-11-ia64","name":"SLE11-SDK-SP2-Core","installer_updates":false},{"autorefresh":true,"distro_target":"sle-11-s390x","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-s390x/","enabled":true,"id":1268,"description":"SLE11-SDK-SP2-Core for sle-11-s390x","name":"SLE11-SDK-SP2-Core","installer_updates":false},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-s390x/","autorefresh":true,"distro_target":"sle-11-s390x","id":1269,"enabled":true,"description":"SLE11-SDK-SP2-Updates for sle-11-s390x","name":"SLE11-SDK-SP2-Updates","installer_updates":false},{"enabled":true,"id":1270,"distro_target":"sle-11-ppc64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-ppc64/","installer_updates":false,"name":"SLE11-SDK-SP2-Updates","description":"SLE11-SDK-SP2-Updates for sle-11-ppc64"},{"id":1271,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","name":"SLE11-SDK-SP2-Updates","installer_updates":false,"description":"SLE11-SDK-SP2-Updates for sle-11-i586"},{"distro_target":"sle-11-ia64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-ia64/","enabled":true,"id":1272,"description":"SLE11-SDK-SP2-Updates for sle-11-ia64","installer_updates":false,"name":"SLE11-SDK-SP2-Updates"},{"description":"SLE11-SDK-SP2-Core for sle-11-ppc64","name":"SLE11-SDK-SP2-Core","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-ppc64/","autorefresh":true,"distro_target":"sle-11-ppc64","id":1273,"enabled":true},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","id":1274,"enabled":true,"description":"SLE11-SDK-SP2-Core for sle-11-i586","name":"SLE11-SDK-SP2-Core","installer_updates":false},{"enabled":true,"id":1275,"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-x86_64/","name":"SLE11-SDK-SP2-Core","installer_updates":false,"description":"SLE11-SDK-SP2-Core for sle-11-x86_64"},{"enabled":true,"id":1276,"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-x86_64/","name":"SLE11-SDK-SP2-Updates","installer_updates":false,"description":"SLE11-SDK-SP2-Updates for sle-11-x86_64"}],"online_predecessor_ids":[],"product_class":"SLE-SDK","predecessor_ids":[],"cpe":null,"product_type":"extension"},{"product_class":"SLE-SDK","online_predecessor_ids":[],"repositories":[{"description":"SLE11-SDK-SP3-Pool for sle-11-i586","installer_updates":false,"name":"SLE11-SDK-SP3-Pool","distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Pool/sle-11-i586/","enabled":true,"id":1277},{"autorefresh":true,"distro_target":"sle-11-ia64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Pool/sle-11-ia64/","enabled":true,"id":1278,"description":"SLE11-SDK-SP3-Pool for sle-11-ia64","name":"SLE11-SDK-SP3-Pool","installer_updates":false},{"description":"SLE11-SDK-SP3-Updates for sle-11-ppc64","installer_updates":false,"name":"SLE11-SDK-SP3-Updates","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Updates/sle-11-ppc64/","distro_target":"sle-11-ppc64","autorefresh":true,"id":1279,"enabled":true},{"id":1280,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Updates/sle-11-ia64/","distro_target":"sle-11-ia64","autorefresh":true,"installer_updates":false,"name":"SLE11-SDK-SP3-Updates","description":"SLE11-SDK-SP3-Updates for sle-11-ia64"},{"enabled":true,"id":1281,"distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Pool/sle-11-x86_64/","installer_updates":false,"name":"SLE11-SDK-SP3-Pool","description":"SLE11-SDK-SP3-Pool for sle-11-x86_64"},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Updates/sle-11-s390x/","autorefresh":true,"distro_target":"sle-11-s390x","id":1282,"enabled":true,"description":"SLE11-SDK-SP3-Updates for sle-11-s390x","name":"SLE11-SDK-SP3-Updates","installer_updates":false},{"description":"SLE11-SDK-SP3-Pool for sle-11-ppc64","name":"SLE11-SDK-SP3-Pool","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-ppc64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Pool/sle-11-ppc64/","enabled":true,"id":1283},{"installer_updates":false,"name":"SLE11-SDK-SP3-Updates","description":"SLE11-SDK-SP3-Updates for sle-11-x86_64","id":1284,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Updates/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Updates/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","id":1285,"enabled":true,"description":"SLE11-SDK-SP3-Updates for sle-11-i586","name":"SLE11-SDK-SP3-Updates","installer_updates":false},{"enabled":true,"id":1286,"distro_target":"sle-11-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Pool/sle-11-s390x/","installer_updates":false,"name":"SLE11-SDK-SP3-Pool","description":"SLE11-SDK-SP3-Pool for sle-11-s390x"}],"predecessor_ids":[],"cpe":null,"product_type":"extension","shortname":null,"description":null,"free":true,"arch":null,"eula_url":"","friendly_version":"11 SP2","release_stage":"released","identifier":"sle-sdk-SP3-migration","id":1164,"extensions":[],"version":"11.2","recommended":false,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Software Development Kit 11 SP2 (Migration)","release_type":null,"former_identifier":"sle-sdk-SP3-migration","name":"SUSE Linux Enterprise Software Development Kit","offline_predecessor_ids":[]}],"friendly_version":"11 SP2","former_identifier":"SUSE_SLED-SP3-migration","release_type":"HP-BNB-2013","friendly_name":"SUSE Linux Enterprise Desktop 11 SP2 HP-BNB-2013 (Migration)","migration_extra":false,"offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Desktop","version":"11.2","recommended":false},{"product_type":"base","cpe":"cpe:/o:suse:suse_sles:11:sp1","online_predecessor_ids":[],"product_class":"SLES-IA","repositories":[{"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Pool/sle-11-ia64/","autorefresh":true,"distro_target":"sle-11-ia64","id":970,"enabled":false,"description":"SLE11-SP1-Debuginfo-Pool for sle-11-ia64","name":"SLE11-SP1-Debuginfo-Pool","installer_updates":false},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Updates/sle-11-ia64/","distro_target":"sle-11-ia64","autorefresh":true,"id":971,"enabled":false,"description":"SLE11-SP1-Debuginfo-Updates for sle-11-ia64","installer_updates":false,"name":"SLE11-SP1-Debuginfo-Updates"},{"name":"SLES11-Extras","installer_updates":false,"description":"SLES11-Extras for sle-11-ia64","enabled":false,"id":972,"autorefresh":true,"distro_target":"sle-11-ia64","url":"https://updates.suse.com/repo/$RCE/SLES11-Extras/sle-11-ia64/"},{"description":"SLES11-SP1-Updates for sle-11-ia64","installer_updates":false,"name":"SLES11-SP1-Updates","url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-Updates/sle-11-ia64/","distro_target":"sle-11-ia64","autorefresh":true,"id":987,"enabled":true},{"name":"SLES11-SP1-Pool","installer_updates":false,"description":"SLES11-SP1-Pool for sle-11-ia64","id":991,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-Pool/sle-11-ia64/","autorefresh":true,"distro_target":"sle-11-ia64"},{"description":"SLE11-WebYaST-SP1-Pool for sle-11-ia64","installer_updates":false,"name":"SLE11-WebYaST-SP1-Pool","distro_target":"sle-11-ia64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-WebYaST-SP1-Pool/sle-11-ia64/","enabled":false,"id":1032},{"enabled":false,"id":1033,"distro_target":"sle-11-ia64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-WebYaST-SP1-Updates/sle-11-ia64/","installer_updates":false,"name":"SLE11-WebYaST-SP1-Updates","description":"SLE11-WebYaST-SP1-Updates for sle-11-ia64"}],"predecessor_ids":[],"arch":"ia64","eula_url":"","free":false,"shortname":null,"description":null,"identifier":"SUSE_SLES","release_stage":"released","id":1033,"extensions":[{"friendly_version":"1.1","extensions":[],"release_stage":"released","identifier":"sle-11-WebYaST","id":835,"recommended":false,"version":"1.1","name":"SUSE WebYaST","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"SUSE WebYaST 1.1","release_type":null,"former_identifier":"sle-11-WebYaST","predecessor_ids":[],"online_predecessor_ids":[],"repositories":[{"id":825,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-WebYaST-1.1-Updates/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","name":"SLE11-SP1-WebYaST-1.1-Updates","installer_updates":false,"description":"SLE11-SP1-WebYaST-1.1-Updates for sle-11-i586"},{"enabled":false,"id":826,"distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-WebYaST-1.1-Pool/sle-11-i586/","installer_updates":false,"name":"SLE11-SP1-WebYaST-1.1-Pool","description":"SLE11-SP1-WebYaST-1.1-Pool for sle-11-i586"},{"id":827,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-WebYaST-1.1-Pool/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true,"installer_updates":false,"name":"SLE11-SP1-WebYaST-1.1-Pool","description":"SLE11-SP1-WebYaST-1.1-Pool for sle-11-x86_64"},{"id":828,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-WebYaST-1.1-Updates/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true,"installer_updates":false,"name":"SLE11-SP1-WebYaST-1.1-Updates","description":"SLE11-SP1-WebYaST-1.1-Updates for sle-11-x86_64"}],"product_class":"WEBYAST","cpe":null,"product_type":"extension","description":null,"shortname":null,"free":true,"eula_url":"","arch":null},{"predecessor_ids":[],"product_class":"SLE-HAE-IA","online_predecessor_ids":[],"repositories":[{"url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP1-Updates/sle-11-ia64/","distro_target":"sle-11-ia64","autorefresh":true,"id":1065,"enabled":true,"description":"SLE11-HAE-SP1-Updates for sle-11-ia64","installer_updates":false,"name":"SLE11-HAE-SP1-Updates"},{"id":1066,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP1-Pool/sle-11-ia64/","autorefresh":true,"distro_target":"sle-11-ia64","name":"SLE11-HAE-SP1-Pool","installer_updates":false,"description":"SLE11-HAE-SP1-Pool for sle-11-ia64"}],"product_type":"extension","cpe":null,"free":false,"description":null,"shortname":null,"eula_url":"","arch":"ia64","friendly_version":"11 SP1","extensions":[],"release_stage":"released","identifier":"sle-hae","id":1061,"recommended":false,"version":"11.1","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise High Availability Extension","former_identifier":"sle-hae","release_type":null,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise High Availability Extension 11 SP1 ia64"},{"eula_url":"","arch":"ia64","shortname":null,"description":null,"free":false,"cpe":null,"product_type":"extension","predecessor_ids":[],"product_class":"SLE-HAE-IA","online_predecessor_ids":[],"repositories":[{"url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP2-Updates/sle-11-ia64/","distro_target":"sle-11-ia64","autorefresh":true,"id":1063,"enabled":true,"description":"SLE11-HAE-SP2-Updates for sle-11-ia64","installer_updates":false,"name":"SLE11-HAE-SP2-Updates"},{"description":"SLE11-HAE-SP2-Pool for sle-11-ia64","name":"SLE11-HAE-SP2-Pool","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-ia64","url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP2-Pool/sle-11-ia64/","enabled":true,"id":1064}],"name":"SUSE Linux Enterprise High Availability Extension","offline_predecessor_ids":[],"friendly_name":"SUSE Linux Enterprise High Availability Extension 11 SP1 ia64 (Migration)","migration_extra":false,"former_identifier":"sle-hae-SP2-migration","release_type":null,"recommended":false,"version":"11.1","extensions":[],"release_stage":"released","id":1066,"identifier":"sle-hae-SP2-migration","friendly_version":"11 SP1"},{"extensions":[],"identifier":"sle-sdk","release_stage":"released","id":1159,"friendly_version":"11 SP1","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Software Development Kit","former_identifier":"sle-sdk","release_type":null,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Software Development Kit 11 SP1","recommended":false,"version":"11.1","product_type":"extension","cpe":null,"predecessor_ids":[],"online_predecessor_ids":[],"product_class":"SLE-SDK","repositories":[{"autorefresh":true,"distro_target":"sle-11-ia64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Updates/sle-11-ia64/","enabled":true,"id":1257,"description":"SLE11-SDK-SP1-Updates for sle-11-ia64","name":"SLE11-SDK-SP1-Updates","installer_updates":false},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-ia64/","distro_target":"sle-11-ia64","autorefresh":true,"id":1258,"enabled":true,"description":"SLE11-SDK-SP1-Pool for sle-11-ia64","installer_updates":false,"name":"SLE11-SDK-SP1-Pool"},{"enabled":true,"id":1259,"distro_target":"sle-11-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-s390x/","installer_updates":false,"name":"SLE11-SDK-SP1-Pool","description":"SLE11-SDK-SP1-Pool for sle-11-s390x"},{"description":"SLE11-SDK-SP1-Updates for sle-11-ppc64","name":"SLE11-SDK-SP1-Updates","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Updates/sle-11-ppc64/","autorefresh":true,"distro_target":"sle-11-ppc64","id":1260,"enabled":true},{"name":"SLE11-SDK-SP1-Pool","installer_updates":false,"description":"SLE11-SDK-SP1-Pool for sle-11-ppc64","enabled":true,"id":1261,"autorefresh":true,"distro_target":"sle-11-ppc64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-ppc64/"},{"description":"SLE11-SDK-SP1-Updates for sle-11-i586","installer_updates":false,"name":"SLE11-SDK-SP1-Updates","distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Updates/sle-11-i586/","enabled":true,"id":1262},{"name":"SLE11-SDK-SP1-Pool","installer_updates":false,"description":"SLE11-SDK-SP1-Pool for sle-11-i586","id":1263,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586"},{"enabled":true,"id":1264,"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-x86_64/","name":"SLE11-SDK-SP1-Pool","installer_updates":false,"description":"SLE11-SDK-SP1-Pool for sle-11-x86_64"},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Updates/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64","id":1265,"enabled":true,"description":"SLE11-SDK-SP1-Updates for sle-11-x86_64","name":"SLE11-SDK-SP1-Updates","installer_updates":false},{"enabled":true,"id":1266,"distro_target":"sle-11-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Updates/sle-11-s390x/","installer_updates":false,"name":"SLE11-SDK-SP1-Updates","description":"SLE11-SDK-SP1-Updates for sle-11-s390x"}],"eula_url":"","arch":null,"free":true,"shortname":null,"description":null},{"predecessor_ids":[],"product_class":"SLE-SDK","online_predecessor_ids":[],"repositories":[{"distro_target":"sle-11-ia64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-ia64/","enabled":true,"id":1258,"description":"SLE11-SDK-SP1-Pool for sle-11-ia64","installer_updates":false,"name":"SLE11-SDK-SP1-Pool"},{"autorefresh":true,"distro_target":"sle-11-s390x","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-s390x/","enabled":true,"id":1259,"description":"SLE11-SDK-SP1-Pool for sle-11-s390x","name":"SLE11-SDK-SP1-Pool","installer_updates":false},{"enabled":true,"id":1261,"autorefresh":true,"distro_target":"sle-11-ppc64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-ppc64/","name":"SLE11-SDK-SP1-Pool","installer_updates":false,"description":"SLE11-SDK-SP1-Pool for sle-11-ppc64"},{"name":"SLE11-SDK-SP1-Pool","installer_updates":false,"description":"SLE11-SDK-SP1-Pool for sle-11-i586","id":1263,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586"},{"id":1264,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true,"installer_updates":false,"name":"SLE11-SDK-SP1-Pool","description":"SLE11-SDK-SP1-Pool for sle-11-x86_64"}],"cpe":null,"product_type":"extension","description":null,"shortname":null,"free":true,"eula_url":"","arch":null,"friendly_version":"11","extensions":[],"release_stage":"released","id":1162,"identifier":"sle-sdk-SP1-migration","recommended":false,"version":"11","name":"SUSE Linux Enterprise Software Development Kit","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Software Development Kit 11 (Migration)","release_type":null,"former_identifier":"sle-sdk-SP1-migration"},{"predecessor_ids":[],"online_predecessor_ids":[],"repositories":[{"distro_target":"sle-11-ia64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-ia64/","enabled":true,"id":1267,"description":"SLE11-SDK-SP2-Core for sle-11-ia64","installer_updates":false,"name":"SLE11-SDK-SP2-Core"},{"installer_updates":false,"name":"SLE11-SDK-SP2-Core","description":"SLE11-SDK-SP2-Core for sle-11-s390x","enabled":true,"id":1268,"distro_target":"sle-11-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-s390x/"},{"description":"SLE11-SDK-SP2-Updates for sle-11-s390x","name":"SLE11-SDK-SP2-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-s390x","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-s390x/","enabled":true,"id":1269},{"enabled":true,"id":1270,"distro_target":"sle-11-ppc64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-ppc64/","installer_updates":false,"name":"SLE11-SDK-SP2-Updates","description":"SLE11-SDK-SP2-Updates for sle-11-ppc64"},{"name":"SLE11-SDK-SP2-Updates","installer_updates":false,"description":"SLE11-SDK-SP2-Updates for sle-11-i586","enabled":true,"id":1271,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-i586/"},{"enabled":true,"id":1272,"autorefresh":true,"distro_target":"sle-11-ia64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-ia64/","name":"SLE11-SDK-SP2-Updates","installer_updates":false,"description":"SLE11-SDK-SP2-Updates for sle-11-ia64"},{"distro_target":"sle-11-ppc64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-ppc64/","enabled":true,"id":1273,"description":"SLE11-SDK-SP2-Core for sle-11-ppc64","installer_updates":false,"name":"SLE11-SDK-SP2-Core"},{"id":1274,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","name":"SLE11-SDK-SP2-Core","installer_updates":false,"description":"SLE11-SDK-SP2-Core for sle-11-i586"},{"description":"SLE11-SDK-SP2-Core for sle-11-x86_64","name":"SLE11-SDK-SP2-Core","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-x86_64/","enabled":true,"id":1275},{"description":"SLE11-SDK-SP2-Updates for sle-11-x86_64","name":"SLE11-SDK-SP2-Updates","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64","id":1276,"enabled":true}],"product_class":"SLE-SDK","cpe":null,"product_type":"extension","shortname":null,"description":null,"free":true,"eula_url":"","arch":null,"friendly_version":"11 SP1","extensions":[],"release_stage":"released","identifier":"sle-sdk-SP2-migration","id":1163,"recommended":false,"version":"11.1","name":"SUSE Linux Enterprise Software Development Kit","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Software Development Kit 11 SP1 (Migration)","release_type":null,"former_identifier":"sle-sdk-SP2-migration"},{"extensions":[],"identifier":"sle-smt","release_stage":"released","id":1192,"friendly_version":"11 SP1","name":"SUSE Linux Enterprise Subscription Management Tool","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Subscription Management Tool 11 SP1","release_type":null,"former_identifier":"sle-smt","recommended":false,"version":"11.1","cpe":null,"product_type":"extension","predecessor_ids":[],"online_predecessor_ids":[],"repositories":[{"description":"SLE11-SP1-SMT-Updates for sle-11-x86_64","installer_updates":false,"name":"SLE11-SP1-SMT-Updates","distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-SMT-Updates/sle-11-x86_64/","enabled":true,"id":1386},{"installer_updates":false,"name":"SLE11-SP1-SMT-Pool","description":"SLE11-SP1-SMT-Pool for sle-11-s390x","enabled":true,"id":1387,"distro_target":"sle-11-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-SMT-Pool/sle-11-s390x/"},{"installer_updates":false,"name":"SLE11-SP1-SMT-Pool","description":"SLE11-SP1-SMT-Pool for sle-11-x86_64","enabled":true,"id":1388,"distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-SMT-Pool/sle-11-x86_64/"},{"description":"SLE11-SP1-SMT-Updates for sle-11-i586","installer_updates":false,"name":"SLE11-SP1-SMT-Updates","url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-SMT-Updates/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true,"id":1389,"enabled":true},{"name":"SLE11-SP1-SMT-Pool","installer_updates":false,"description":"SLE11-SP1-SMT-Pool for sle-11-i586","id":1390,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-SMT-Pool/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586"},{"name":"SLE11-SP1-SMT-Updates","installer_updates":false,"description":"SLE11-SP1-SMT-Updates for sle-11-s390x","enabled":true,"id":1391,"autorefresh":true,"distro_target":"sle-11-s390x","url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-SMT-Updates/sle-11-s390x/"}],"product_class":"SLESMT","eula_url":"","arch":null,"shortname":null,"description":null,"free":true}],"friendly_version":"11 SP1","former_identifier":"SUSE_SLES","release_type":null,"friendly_name":"SUSE Linux Enterprise Server 11 SP1 ia64","migration_extra":false,"offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Server","version":"11.1","recommended":false},{"eula_url":"","arch":"ia64","free":false,"description":null,"shortname":null,"product_type":"base","cpe":"cpe:/o:suse:suse_sles:11:sp2","predecessor_ids":[],"product_class":"SLES-IA","online_predecessor_ids":[],"repositories":[{"name":"SLE11-SP1-Debuginfo-Pool","installer_updates":false,"description":"SLE11-SP1-Debuginfo-Pool for sle-11-ia64","id":970,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Pool/sle-11-ia64/","autorefresh":true,"distro_target":"sle-11-ia64"},{"enabled":false,"id":971,"distro_target":"sle-11-ia64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Updates/sle-11-ia64/","installer_updates":false,"name":"SLE11-SP1-Debuginfo-Updates","description":"SLE11-SP1-Debuginfo-Updates for sle-11-ia64"},{"id":972,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLES11-Extras/sle-11-ia64/","autorefresh":true,"distro_target":"sle-11-ia64","name":"SLES11-Extras","installer_updates":false,"description":"SLES11-Extras for sle-11-ia64"},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-Debuginfo-Core/sle-11-ia64/","distro_target":"sle-11-ia64","autorefresh":true,"id":973,"enabled":false,"description":"SLE11-SP2-Debuginfo-Core for sle-11-ia64","installer_updates":false,"name":"SLE11-SP2-Debuginfo-Core"},{"description":"SLES11-SP2-Extension-Store for sle-11-ia64","installer_updates":false,"name":"SLES11-SP2-Extension-Store","url":"https://updates.suse.com/repo/$RCE/SLES11-SP2-Extension-Store/sle-11-ia64/","distro_target":"sle-11-ia64","autorefresh":true,"id":974,"enabled":true},{"name":"SLE11-SP2-Debuginfo-Updates","installer_updates":false,"description":"SLE11-SP2-Debuginfo-Updates for sle-11-ia64","id":975,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-Debuginfo-Updates/sle-11-ia64/","autorefresh":true,"distro_target":"sle-11-ia64"},{"url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-Updates/sle-11-ia64/","autorefresh":true,"distro_target":"sle-11-ia64","id":987,"enabled":true,"description":"SLES11-SP1-Updates for sle-11-ia64","name":"SLES11-SP1-Updates","installer_updates":false},{"url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-Pool/sle-11-ia64/","autorefresh":true,"distro_target":"sle-11-ia64","id":991,"enabled":true,"description":"SLES11-SP1-Pool for sle-11-ia64","name":"SLES11-SP1-Pool","installer_updates":false},{"installer_updates":false,"name":"SLES11-SP2-Updates","description":"SLES11-SP2-Updates for sle-11-ia64","id":1011,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP2-Updates/sle-11-ia64/","distro_target":"sle-11-ia64","autorefresh":true},{"description":"SLES11-SP2-Core for sle-11-ia64","installer_updates":false,"name":"SLES11-SP2-Core","distro_target":"sle-11-ia64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP2-Core/sle-11-ia64/","enabled":true,"id":1014},{"url":"https://updates.suse.com/repo/$RCE/SLE11-WebYaST-SP2-Updates/sle-11-ia64/","distro_target":"sle-11-ia64","autorefresh":true,"id":1034,"enabled":false,"description":"SLE11-WebYaST-SP2-Updates for sle-11-ia64","installer_updates":false,"name":"SLE11-WebYaST-SP2-Updates"},{"id":1035,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-WebYaST-SP2-Pool/sle-11-ia64/","autorefresh":true,"distro_target":"sle-11-ia64","name":"SLE11-WebYaST-SP2-Pool","installer_updates":false,"description":"SLE11-WebYaST-SP2-Pool for sle-11-ia64"}],"offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Server","release_type":null,"former_identifier":"SUSE_SLES","migration_extra":false,"friendly_name":"SUSE Linux Enterprise Server 11 SP2 ia64","recommended":false,"version":"11.2","extensions":[{"id":837,"release_stage":"released","identifier":"sle-11-WebYaST","extensions":[],"friendly_version":"1.2","former_identifier":"sle-11-WebYaST","release_type":null,"friendly_name":"SUSE WebYaST 1.2","migration_extra":false,"offline_predecessor_ids":[],"name":"SUSE WebYaST","version":"1.2","recommended":false,"product_type":"extension","cpe":null,"product_class":"WEBYAST","online_predecessor_ids":[],"repositories":[{"id":839,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-WebYaST-1.2-Updates/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64","name":"SLE11-SP1-WebYaST-1.2-Updates","installer_updates":false,"description":"SLE11-SP1-WebYaST-1.2-Updates for sle-11-x86_64"},{"enabled":false,"id":840,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-WebYaST-1.2-Pool/sle-11-i586/","name":"SLE11-SP1-WebYaST-1.2-Pool","installer_updates":false,"description":"SLE11-SP1-WebYaST-1.2-Pool for sle-11-i586"},{"name":"SLE11-SP1-WebYaST-1.2-Pool","installer_updates":false,"description":"SLE11-SP1-WebYaST-1.2-Pool for sle-11-x86_64","id":841,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-WebYaST-1.2-Pool/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64"},{"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-WebYaST-1.2-Updates/sle-11-i586/","enabled":true,"id":842,"description":"SLE11-SP1-WebYaST-1.2-Updates for sle-11-i586","name":"SLE11-SP1-WebYaST-1.2-Updates","installer_updates":false}],"predecessor_ids":[],"arch":null,"eula_url":"","free":true,"shortname":null,"description":null},{"description":null,"shortname":null,"free":false,"arch":"ia64","eula_url":"","online_predecessor_ids":[],"repositories":[{"url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP2-Updates/sle-11-ia64/","distro_target":"sle-11-ia64","autorefresh":true,"id":1063,"enabled":true,"description":"SLE11-HAE-SP2-Updates for sle-11-ia64","installer_updates":false,"name":"SLE11-HAE-SP2-Updates"},{"description":"SLE11-HAE-SP2-Pool for sle-11-ia64","installer_updates":false,"name":"SLE11-HAE-SP2-Pool","url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP2-Pool/sle-11-ia64/","distro_target":"sle-11-ia64","autorefresh":true,"id":1064,"enabled":true}],"product_class":"SLE-HAE-IA","predecessor_ids":[],"cpe":null,"product_type":"extension","version":"11.2","recommended":false,"friendly_name":"SUSE Linux Enterprise High Availability Extension 11 SP2 ia64","migration_extra":false,"former_identifier":"sle-hae","release_type":null,"name":"SUSE Linux Enterprise High Availability Extension","offline_predecessor_ids":[],"friendly_version":"11 SP2","id":1060,"release_stage":"released","identifier":"sle-hae","extensions":[{"version":"11.2","recommended":false,"friendly_name":"Geo Clustering for SUSE Linux Enterprise High Availability Extension 11 SP2 ia64","migration_extra":false,"former_identifier":"sle-haegeo","release_type":null,"name":"Geo Clustering for SUSE Linux Enterprise High Availability Extension","offline_predecessor_ids":[],"friendly_version":"11 SP2","release_stage":"released","id":1106,"identifier":"sle-haegeo","extensions":[],"shortname":null,"description":null,"free":false,"arch":"ia64","eula_url":"","online_predecessor_ids":[],"product_class":"SLE-HAE-GEO","repositories":[{"name":"SLE11-HAE-GEO-SP2-Updates","installer_updates":false,"description":"SLE11-HAE-GEO-SP2-Updates for sle-11-ia64","id":1119,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-GEO-SP2-Updates/sle-11-ia64/","autorefresh":true,"distro_target":"sle-11-ia64"}],"predecessor_ids":[],"cpe":null,"product_type":"extension"}]},{"description":null,"shortname":null,"free":false,"eula_url":"","arch":"ia64","predecessor_ids":[],"repositories":[{"autorefresh":true,"distro_target":"sle-11-ia64","url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP3-Updates/sle-11-ia64/","enabled":true,"id":1069,"description":"SLE11-HAE-SP3-Updates for sle-11-ia64","name":"SLE11-HAE-SP3-Updates","installer_updates":false},{"installer_updates":false,"name":"SLE11-HAE-SP3-Pool","description":"SLE11-HAE-SP3-Pool for sle-11-ia64","id":1070,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP3-Pool/sle-11-ia64/","distro_target":"sle-11-ia64","autorefresh":true}],"online_predecessor_ids":[],"product_class":"SLE-HAE-IA","cpe":null,"product_type":"extension","recommended":false,"version":"11.2","name":"SUSE Linux Enterprise High Availability Extension","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"SUSE Linux Enterprise High Availability Extension 11 SP2 ia64 (Migration)","former_identifier":"sle-hae-SP3-migration","release_type":null,"friendly_version":"11 SP2","extensions":[{"product_type":"extension","cpe":null,"repositories":[{"url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-GEO-SP2-Updates/sle-11-ia64/","autorefresh":true,"distro_target":"sle-11-ia64","id":1119,"enabled":true,"description":"SLE11-HAE-GEO-SP2-Updates for sle-11-ia64","name":"SLE11-HAE-GEO-SP2-Updates","installer_updates":false}],"online_predecessor_ids":[],"product_class":"SLE-HAE-GEO","predecessor_ids":[],"arch":"ia64","eula_url":"","free":false,"shortname":null,"description":null,"id":1106,"release_stage":"released","identifier":"sle-haegeo","extensions":[],"friendly_version":"11 SP2","release_type":null,"former_identifier":"sle-haegeo","migration_extra":false,"friendly_name":"Geo Clustering for SUSE Linux Enterprise High Availability Extension 11 SP2 ia64","offline_predecessor_ids":[],"name":"Geo Clustering for SUSE Linux Enterprise High Availability Extension","version":"11.2","recommended":false}],"release_stage":"released","id":1064,"identifier":"sle-hae-SP3-migration"},{"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Software Development Kit 11 SP2","release_type":null,"former_identifier":"sle-sdk","name":"SUSE Linux Enterprise Software Development Kit","offline_predecessor_ids":[],"version":"11.2","recommended":false,"identifier":"sle-sdk","release_stage":"released","id":1160,"extensions":[],"friendly_version":"11 SP2","arch":null,"eula_url":"","shortname":null,"description":null,"free":true,"cpe":null,"product_type":"extension","online_predecessor_ids":[],"repositories":[{"id":1257,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Updates/sle-11-ia64/","autorefresh":true,"distro_target":"sle-11-ia64","name":"SLE11-SDK-SP1-Updates","installer_updates":false,"description":"SLE11-SDK-SP1-Updates for sle-11-ia64"},{"description":"SLE11-SDK-SP1-Pool for sle-11-ia64","name":"SLE11-SDK-SP1-Pool","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-ia64/","autorefresh":true,"distro_target":"sle-11-ia64","id":1258,"enabled":true},{"description":"SLE11-SDK-SP1-Pool for sle-11-s390x","installer_updates":false,"name":"SLE11-SDK-SP1-Pool","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-s390x/","distro_target":"sle-11-s390x","autorefresh":true,"id":1259,"enabled":true},{"autorefresh":true,"distro_target":"sle-11-ppc64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Updates/sle-11-ppc64/","enabled":true,"id":1260,"description":"SLE11-SDK-SP1-Updates for sle-11-ppc64","name":"SLE11-SDK-SP1-Updates","installer_updates":false},{"id":1261,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-ppc64/","autorefresh":true,"distro_target":"sle-11-ppc64","name":"SLE11-SDK-SP1-Pool","installer_updates":false,"description":"SLE11-SDK-SP1-Pool for sle-11-ppc64"},{"description":"SLE11-SDK-SP1-Updates for sle-11-i586","installer_updates":false,"name":"SLE11-SDK-SP1-Updates","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Updates/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true,"id":1262,"enabled":true},{"enabled":true,"id":1263,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-i586/","name":"SLE11-SDK-SP1-Pool","installer_updates":false,"description":"SLE11-SDK-SP1-Pool for sle-11-i586"},{"enabled":true,"id":1264,"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-x86_64/","name":"SLE11-SDK-SP1-Pool","installer_updates":false,"description":"SLE11-SDK-SP1-Pool for sle-11-x86_64"},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Updates/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true,"id":1265,"enabled":true,"description":"SLE11-SDK-SP1-Updates for sle-11-x86_64","installer_updates":false,"name":"SLE11-SDK-SP1-Updates"},{"installer_updates":false,"name":"SLE11-SDK-SP1-Updates","description":"SLE11-SDK-SP1-Updates for sle-11-s390x","id":1266,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Updates/sle-11-s390x/","distro_target":"sle-11-s390x","autorefresh":true},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-ia64/","distro_target":"sle-11-ia64","autorefresh":true,"id":1267,"enabled":true,"description":"SLE11-SDK-SP2-Core for sle-11-ia64","installer_updates":false,"name":"SLE11-SDK-SP2-Core"},{"id":1268,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-s390x/","distro_target":"sle-11-s390x","autorefresh":true,"installer_updates":false,"name":"SLE11-SDK-SP2-Core","description":"SLE11-SDK-SP2-Core for sle-11-s390x"},{"enabled":true,"id":1269,"autorefresh":true,"distro_target":"sle-11-s390x","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-s390x/","name":"SLE11-SDK-SP2-Updates","installer_updates":false,"description":"SLE11-SDK-SP2-Updates for sle-11-s390x"},{"enabled":true,"id":1270,"autorefresh":true,"distro_target":"sle-11-ppc64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-ppc64/","name":"SLE11-SDK-SP2-Updates","installer_updates":false,"description":"SLE11-SDK-SP2-Updates for sle-11-ppc64"},{"enabled":true,"id":1271,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-i586/","name":"SLE11-SDK-SP2-Updates","installer_updates":false,"description":"SLE11-SDK-SP2-Updates for sle-11-i586"},{"enabled":true,"id":1272,"autorefresh":true,"distro_target":"sle-11-ia64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-ia64/","name":"SLE11-SDK-SP2-Updates","installer_updates":false,"description":"SLE11-SDK-SP2-Updates for sle-11-ia64"},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-ppc64/","autorefresh":true,"distro_target":"sle-11-ppc64","id":1273,"enabled":true,"description":"SLE11-SDK-SP2-Core for sle-11-ppc64","name":"SLE11-SDK-SP2-Core","installer_updates":false},{"id":1274,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true,"installer_updates":false,"name":"SLE11-SDK-SP2-Core","description":"SLE11-SDK-SP2-Core for sle-11-i586"},{"enabled":true,"id":1275,"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-x86_64/","name":"SLE11-SDK-SP2-Core","installer_updates":false,"description":"SLE11-SDK-SP2-Core for sle-11-x86_64"},{"name":"SLE11-SDK-SP2-Updates","installer_updates":false,"description":"SLE11-SDK-SP2-Updates for sle-11-x86_64","enabled":true,"id":1276,"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-x86_64/"}],"product_class":"SLE-SDK","predecessor_ids":[]},{"free":true,"shortname":null,"description":null,"arch":null,"eula_url":"","product_class":"SLE-SDK","online_predecessor_ids":[],"repositories":[{"id":1267,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-ia64/","autorefresh":true,"distro_target":"sle-11-ia64","name":"SLE11-SDK-SP2-Core","installer_updates":false,"description":"SLE11-SDK-SP2-Core for sle-11-ia64"},{"enabled":true,"id":1268,"distro_target":"sle-11-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-s390x/","installer_updates":false,"name":"SLE11-SDK-SP2-Core","description":"SLE11-SDK-SP2-Core for sle-11-s390x"},{"name":"SLE11-SDK-SP2-Updates","installer_updates":false,"description":"SLE11-SDK-SP2-Updates for sle-11-s390x","enabled":true,"id":1269,"autorefresh":true,"distro_target":"sle-11-s390x","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-s390x/"},{"description":"SLE11-SDK-SP2-Updates for sle-11-ppc64","installer_updates":false,"name":"SLE11-SDK-SP2-Updates","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-ppc64/","distro_target":"sle-11-ppc64","autorefresh":true,"id":1270,"enabled":true},{"id":1271,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","name":"SLE11-SDK-SP2-Updates","installer_updates":false,"description":"SLE11-SDK-SP2-Updates for sle-11-i586"},{"distro_target":"sle-11-ia64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-ia64/","enabled":true,"id":1272,"description":"SLE11-SDK-SP2-Updates for sle-11-ia64","installer_updates":false,"name":"SLE11-SDK-SP2-Updates"},{"id":1273,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-ppc64/","autorefresh":true,"distro_target":"sle-11-ppc64","name":"SLE11-SDK-SP2-Core","installer_updates":false,"description":"SLE11-SDK-SP2-Core for sle-11-ppc64"},{"name":"SLE11-SDK-SP2-Core","installer_updates":false,"description":"SLE11-SDK-SP2-Core for sle-11-i586","id":1274,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586"},{"enabled":true,"id":1275,"distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-x86_64/","installer_updates":false,"name":"SLE11-SDK-SP2-Core","description":"SLE11-SDK-SP2-Core for sle-11-x86_64"},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64","id":1276,"enabled":true,"description":"SLE11-SDK-SP2-Updates for sle-11-x86_64","name":"SLE11-SDK-SP2-Updates","installer_updates":false}],"predecessor_ids":[],"product_type":"extension","cpe":null,"version":"11.1","recommended":false,"former_identifier":"sle-sdk-SP2-migration","release_type":null,"friendly_name":"SUSE Linux Enterprise Software Development Kit 11 SP1 (Migration)","migration_extra":false,"offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Software Development Kit","friendly_version":"11 SP1","identifier":"sle-sdk-SP2-migration","release_stage":"released","id":1163,"extensions":[]},{"online_predecessor_ids":[],"product_class":"SLE-SDK","repositories":[{"description":"SLE11-SDK-SP3-Pool for sle-11-i586","name":"SLE11-SDK-SP3-Pool","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Pool/sle-11-i586/","enabled":true,"id":1277},{"enabled":true,"id":1278,"autorefresh":true,"distro_target":"sle-11-ia64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Pool/sle-11-ia64/","name":"SLE11-SDK-SP3-Pool","installer_updates":false,"description":"SLE11-SDK-SP3-Pool for sle-11-ia64"},{"id":1279,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Updates/sle-11-ppc64/","distro_target":"sle-11-ppc64","autorefresh":true,"installer_updates":false,"name":"SLE11-SDK-SP3-Updates","description":"SLE11-SDK-SP3-Updates for sle-11-ppc64"},{"id":1280,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Updates/sle-11-ia64/","autorefresh":true,"distro_target":"sle-11-ia64","name":"SLE11-SDK-SP3-Updates","installer_updates":false,"description":"SLE11-SDK-SP3-Updates for sle-11-ia64"},{"name":"SLE11-SDK-SP3-Pool","installer_updates":false,"description":"SLE11-SDK-SP3-Pool for sle-11-x86_64","id":1281,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Pool/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64"},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Updates/sle-11-s390x/","autorefresh":true,"distro_target":"sle-11-s390x","id":1282,"enabled":true,"description":"SLE11-SDK-SP3-Updates for sle-11-s390x","name":"SLE11-SDK-SP3-Updates","installer_updates":false},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Pool/sle-11-ppc64/","autorefresh":true,"distro_target":"sle-11-ppc64","id":1283,"enabled":true,"description":"SLE11-SDK-SP3-Pool for sle-11-ppc64","name":"SLE11-SDK-SP3-Pool","installer_updates":false},{"distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Updates/sle-11-x86_64/","enabled":true,"id":1284,"description":"SLE11-SDK-SP3-Updates for sle-11-x86_64","installer_updates":false,"name":"SLE11-SDK-SP3-Updates"},{"enabled":true,"id":1285,"distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Updates/sle-11-i586/","installer_updates":false,"name":"SLE11-SDK-SP3-Updates","description":"SLE11-SDK-SP3-Updates for sle-11-i586"},{"id":1286,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Pool/sle-11-s390x/","distro_target":"sle-11-s390x","autorefresh":true,"installer_updates":false,"name":"SLE11-SDK-SP3-Pool","description":"SLE11-SDK-SP3-Pool for sle-11-s390x"}],"predecessor_ids":[],"cpe":null,"product_type":"extension","shortname":null,"description":null,"free":true,"arch":null,"eula_url":"","friendly_version":"11 SP2","id":1164,"release_stage":"released","identifier":"sle-sdk-SP3-migration","extensions":[],"version":"11.2","recommended":false,"friendly_name":"SUSE Linux Enterprise Software Development Kit 11 SP2 (Migration)","migration_extra":false,"former_identifier":"sle-sdk-SP3-migration","release_type":null,"name":"SUSE Linux Enterprise Software Development Kit","offline_predecessor_ids":[]},{"id":1193,"release_stage":"released","identifier":"sle-smt","extensions":[],"friendly_version":"11 SP2","friendly_name":"SUSE Linux Enterprise Subscription Management Tool 11 SP2","migration_extra":false,"release_type":null,"former_identifier":"sle-smt","name":"SUSE Linux Enterprise Subscription Management Tool","offline_predecessor_ids":[],"version":"11.2","recommended":false,"cpe":null,"product_type":"extension","online_predecessor_ids":[],"repositories":[{"description":"SLE11-SMT-SP2-Pool for sle-11-x86_64","installer_updates":false,"name":"SLE11-SMT-SP2-Pool","distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP2-Pool/sle-11-x86_64/","enabled":true,"id":1392},{"description":"SLE11-SMT-SP2-Updates for sle-11-s390x","name":"SLE11-SMT-SP2-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-s390x","url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP2-Updates/sle-11-s390x/","enabled":true,"id":1393},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP2-Pool/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","id":1394,"enabled":true,"description":"SLE11-SMT-SP2-Pool for sle-11-i586","name":"SLE11-SMT-SP2-Pool","installer_updates":false},{"enabled":true,"id":1395,"distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP2-Updates/sle-11-i586/","installer_updates":false,"name":"SLE11-SMT-SP2-Updates","description":"SLE11-SMT-SP2-Updates for sle-11-i586"},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP2-Pool/sle-11-s390x/","distro_target":"sle-11-s390x","autorefresh":true,"id":1396,"enabled":true,"description":"SLE11-SMT-SP2-Pool for sle-11-s390x","installer_updates":false,"name":"SLE11-SMT-SP2-Pool"},{"description":"SLE11-SMT-SP2-Updates for sle-11-x86_64","name":"SLE11-SMT-SP2-Updates","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP2-Updates/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64","id":1397,"enabled":true}],"product_class":"SLESMT","predecessor_ids":[],"arch":null,"eula_url":"","description":null,"shortname":null,"free":true},{"recommended":false,"version":"11","name":"SUSE Linux Enterprise Subscription Management Tool","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Subscription Management Tool 11 (Migration)","release_type":null,"former_identifier":"sle-smt-SP2-migration","friendly_version":"11","extensions":[],"identifier":"sle-smt-SP2-migration","release_stage":"released","id":1194,"description":null,"shortname":null,"free":true,"eula_url":"","arch":null,"predecessor_ids":[],"online_predecessor_ids":[],"product_class":"SLESMT","repositories":[{"enabled":true,"id":1392,"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP2-Pool/sle-11-x86_64/","name":"SLE11-SMT-SP2-Pool","installer_updates":false,"description":"SLE11-SMT-SP2-Pool for sle-11-x86_64"},{"installer_updates":false,"name":"SLE11-SMT-SP2-Pool","description":"SLE11-SMT-SP2-Pool for sle-11-i586","enabled":true,"id":1394,"distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP2-Pool/sle-11-i586/"},{"enabled":true,"id":1396,"autorefresh":true,"distro_target":"sle-11-s390x","url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP2-Pool/sle-11-s390x/","name":"SLE11-SMT-SP2-Pool","installer_updates":false,"description":"SLE11-SMT-SP2-Pool for sle-11-s390x"}],"cpe":null,"product_type":"extension"},{"version":"11.2","recommended":false,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Subscription Management Tool 11 SP2 (Migration)","former_identifier":"sle-smt-SP3-migration","release_type":null,"name":"SUSE Linux Enterprise Subscription Management Tool","offline_predecessor_ids":[],"friendly_version":"11 SP2","id":1199,"release_stage":"released","identifier":"sle-smt-SP3-migration","extensions":[],"shortname":null,"description":null,"free":true,"arch":null,"eula_url":"","product_class":"SLESMT","online_predecessor_ids":[],"repositories":[{"name":"SLE11-SMT-SP3-Pool","installer_updates":false,"description":"SLE11-SMT-SP3-Pool for sle-11-s390x","enabled":true,"id":1408,"autorefresh":true,"distro_target":"sle-11-s390x","url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP3-Pool/sle-11-s390x/"},{"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP3-Pool/sle-11-x86_64/","enabled":true,"id":1409,"description":"SLE11-SMT-SP3-Pool for sle-11-x86_64","name":"SLE11-SMT-SP3-Pool","installer_updates":false},{"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP3-Pool/sle-11-i586/","enabled":true,"id":1410,"description":"SLE11-SMT-SP3-Pool for sle-11-i586","name":"SLE11-SMT-SP3-Pool","installer_updates":false}],"predecessor_ids":[],"cpe":null,"product_type":"extension"},{"description":null,"shortname":null,"free":true,"eula_url":"","arch":null,"predecessor_ids":[],"product_class":"WEBYAST","online_predecessor_ids":[],"repositories":[{"description":"SLE11-SP2-WebYaST-1.3-Pool for sle-11-x86_64","name":"SLE11-SP2-WebYaST-1.3-Pool","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-WebYaST-1.3-Pool/sle-11-x86_64/","enabled":true,"id":1185},{"name":"SLE11-SP2-WebYaST-1.3-Pool","installer_updates":false,"description":"SLE11-SP2-WebYaST-1.3-Pool for sle-11-s390x","enabled":true,"id":1411,"autorefresh":true,"distro_target":"sle-11-s390x","url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-WebYaST-1.3-Pool/sle-11-s390x/"},{"description":"SLE11-SP2-WebYaST-1.3-Pool for sle-11-ppc64","name":"SLE11-SP2-WebYaST-1.3-Pool","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-WebYaST-1.3-Pool/sle-11-ppc64/","autorefresh":true,"distro_target":"sle-11-ppc64","id":1414,"enabled":true},{"name":"SLE11-SP2-WebYaST-1.3-Pool","installer_updates":false,"description":"SLE11-SP2-WebYaST-1.3-Pool for sle-11-ia64","id":1416,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-WebYaST-1.3-Pool/sle-11-ia64/","autorefresh":true,"distro_target":"sle-11-ia64"},{"installer_updates":false,"name":"SLE11-SP2-WebYaST-1.3-Pool","description":"SLE11-SP2-WebYaST-1.3-Pool for sle-11-i586","enabled":true,"id":1417,"distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-WebYaST-1.3-Pool/sle-11-i586/"}],"cpe":null,"product_type":"extension","recommended":false,"version":"1.2","name":"SUSE WebYaST","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"SUSE WebYaST 1.2 (Migration)","release_type":null,"former_identifier":"sle-11-WebYaST-1.3-migration","friendly_version":"1.2","extensions":[],"id":1207,"release_stage":"released","identifier":"sle-11-WebYaST-1.3-migration"}],"identifier":"SUSE_SLES","release_stage":"released","id":1034,"friendly_version":"11 SP2"},{"identifier":"SUSE_SLES-SP3-migration","release_stage":"released","id":1035,"extensions":[{"version":"11.2","recommended":false,"former_identifier":"sle-hae","release_type":null,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise High Availability Extension 11 SP2 ia64","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise High Availability Extension","friendly_version":"11 SP2","release_stage":"released","id":1060,"identifier":"sle-hae","extensions":[],"free":false,"description":null,"shortname":null,"arch":"ia64","eula_url":"","product_class":"SLE-HAE-IA","online_predecessor_ids":[],"repositories":[{"installer_updates":false,"name":"SLE11-HAE-SP2-Updates","description":"SLE11-HAE-SP2-Updates for sle-11-ia64","enabled":true,"id":1063,"distro_target":"sle-11-ia64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP2-Updates/sle-11-ia64/"},{"enabled":true,"id":1064,"autorefresh":true,"distro_target":"sle-11-ia64","url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP2-Pool/sle-11-ia64/","name":"SLE11-HAE-SP2-Pool","installer_updates":false,"description":"SLE11-HAE-SP2-Pool for sle-11-ia64"}],"predecessor_ids":[],"product_type":"extension","cpe":null},{"predecessor_ids":[],"online_predecessor_ids":[],"product_class":"SLE-HAE-IA","repositories":[{"installer_updates":false,"name":"SLE11-HAE-SP3-Updates","description":"SLE11-HAE-SP3-Updates for sle-11-ia64","enabled":true,"id":1069,"distro_target":"sle-11-ia64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP3-Updates/sle-11-ia64/"},{"enabled":true,"id":1070,"autorefresh":true,"distro_target":"sle-11-ia64","url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP3-Pool/sle-11-ia64/","name":"SLE11-HAE-SP3-Pool","installer_updates":false,"description":"SLE11-HAE-SP3-Pool for sle-11-ia64"}],"product_type":"extension","cpe":null,"free":false,"shortname":null,"description":null,"eula_url":"","arch":"ia64","friendly_version":"11 SP2","extensions":[],"identifier":"sle-hae-SP3-migration","release_stage":"released","id":1064,"recommended":false,"version":"11.2","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise High Availability Extension","release_type":null,"former_identifier":"sle-hae-SP3-migration","migration_extra":false,"friendly_name":"SUSE Linux Enterprise High Availability Extension 11 SP2 ia64 (Migration)"}],"friendly_version":"11 SP2","friendly_name":"SUSE Linux Enterprise Server 11 SP2 ia64 (Migration)","migration_extra":false,"former_identifier":"SUSE_SLES-SP3-migration","release_type":null,"name":"SUSE Linux Enterprise Server","offline_predecessor_ids":[],"version":"11.2","recommended":false,"cpe":null,"product_type":"base","online_predecessor_ids":[],"repositories":[{"distro_target":"sle-11-ia64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Pool/sle-11-ia64/","enabled":false,"id":970,"description":"SLE11-SP1-Debuginfo-Pool for sle-11-ia64","installer_updates":false,"name":"SLE11-SP1-Debuginfo-Pool"},{"distro_target":"sle-11-ia64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Updates/sle-11-ia64/","enabled":false,"id":971,"description":"SLE11-SP1-Debuginfo-Updates for sle-11-ia64","installer_updates":false,"name":"SLE11-SP1-Debuginfo-Updates"},{"installer_updates":false,"name":"SLES11-Extras","description":"SLES11-Extras for sle-11-ia64","id":972,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLES11-Extras/sle-11-ia64/","distro_target":"sle-11-ia64","autorefresh":true},{"name":"SLE11-SP2-Debuginfo-Core","installer_updates":false,"description":"SLE11-SP2-Debuginfo-Core for sle-11-ia64","id":973,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-Debuginfo-Core/sle-11-ia64/","autorefresh":true,"distro_target":"sle-11-ia64"},{"name":"SLES11-SP2-Extension-Store","installer_updates":false,"description":"SLES11-SP2-Extension-Store for sle-11-ia64","id":974,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP2-Extension-Store/sle-11-ia64/","autorefresh":true,"distro_target":"sle-11-ia64"},{"enabled":false,"id":975,"autorefresh":true,"distro_target":"sle-11-ia64","url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-Debuginfo-Updates/sle-11-ia64/","name":"SLE11-SP2-Debuginfo-Updates","installer_updates":false,"description":"SLE11-SP2-Debuginfo-Updates for sle-11-ia64"},{"name":"SLES11-SP1-Updates","installer_updates":false,"description":"SLES11-SP1-Updates for sle-11-ia64","enabled":false,"id":987,"autorefresh":true,"distro_target":"sle-11-ia64","url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-Updates/sle-11-ia64/"},{"name":"SLES11-SP1-Pool","installer_updates":false,"description":"SLES11-SP1-Pool for sle-11-ia64","id":991,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-Pool/sle-11-ia64/","autorefresh":true,"distro_target":"sle-11-ia64"},{"id":1011,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP2-Updates/sle-11-ia64/","distro_target":"sle-11-ia64","autorefresh":true,"installer_updates":false,"name":"SLES11-SP2-Updates","description":"SLES11-SP2-Updates for sle-11-ia64"},{"enabled":false,"id":1014,"distro_target":"sle-11-ia64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP2-Core/sle-11-ia64/","installer_updates":false,"name":"SLES11-SP2-Core","description":"SLES11-SP2-Core for sle-11-ia64"},{"id":1028,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP3-Debuginfo-Updates/sle-11-ia64/","autorefresh":true,"distro_target":"sle-11-ia64","name":"SLE11-SP3-Debuginfo-Updates","installer_updates":false,"description":"SLE11-SP3-Debuginfo-Updates for sle-11-ia64"},{"name":"SLE11-SP3-Debuginfo-Pool","installer_updates":false,"description":"SLE11-SP3-Debuginfo-Pool for sle-11-ia64","enabled":false,"id":1030,"autorefresh":true,"distro_target":"sle-11-ia64","url":"https://updates.suse.com/repo/$RCE/SLE11-SP3-Debuginfo-Pool/sle-11-ia64/"},{"enabled":true,"id":1036,"autorefresh":true,"distro_target":"sle-11-ia64","url":"https://updates.suse.com/repo/$RCE/SLES11-SP3-Updates/sle-11-ia64/","name":"SLES11-SP3-Updates","installer_updates":false,"description":"SLES11-SP3-Updates for sle-11-ia64"},{"autorefresh":true,"distro_target":"sle-11-ia64","url":"https://updates.suse.com/repo/$RCE/SLES11-SP3-Pool/sle-11-ia64/","enabled":true,"id":1037,"description":"SLES11-SP3-Pool for sle-11-ia64","name":"SLES11-SP3-Pool","installer_updates":false},{"installer_updates":false,"name":"SLES11-SP3-Extension-Store","description":"SLES11-SP3-Extension-Store for sle-11-ia64","id":1038,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP3-Extension-Store/sle-11-ia64/","distro_target":"sle-11-ia64","autorefresh":true}],"product_class":"SLES-IA","predecessor_ids":[],"arch":"ia64","eula_url":"","shortname":null,"description":null,"free":false},{"cpe":null,"product_type":"base","predecessor_ids":[],"repositories":[{"installer_updates":false,"name":"SLE11-SP1-Debuginfo-Pool","description":"SLE11-SP1-Debuginfo-Pool for sle-11-ia64","enabled":false,"id":970,"distro_target":"sle-11-ia64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Pool/sle-11-ia64/"},{"name":"SLE11-SP1-Debuginfo-Updates","installer_updates":false,"description":"SLE11-SP1-Debuginfo-Updates for sle-11-ia64","id":971,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Updates/sle-11-ia64/","autorefresh":true,"distro_target":"sle-11-ia64"},{"enabled":false,"id":973,"autorefresh":true,"distro_target":"sle-11-ia64","url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-Debuginfo-Core/sle-11-ia64/","name":"SLE11-SP2-Debuginfo-Core","installer_updates":false,"description":"SLE11-SP2-Debuginfo-Core for sle-11-ia64"},{"installer_updates":false,"name":"SLE11-SP2-Debuginfo-Updates","description":"SLE11-SP2-Debuginfo-Updates for sle-11-ia64","enabled":false,"id":975,"distro_target":"sle-11-ia64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-Debuginfo-Updates/sle-11-ia64/"},{"description":"SLES11-SP2-Updates for sle-11-ia64","name":"SLES11-SP2-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-ia64","url":"https://updates.suse.com/repo/$RCE/SLES11-SP2-Updates/sle-11-ia64/","enabled":true,"id":1011},{"description":"SLES11-SP2-Core for sle-11-ia64","name":"SLES11-SP2-Core","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-ia64","url":"https://updates.suse.com/repo/$RCE/SLES11-SP2-Core/sle-11-ia64/","enabled":true,"id":1014},{"id":1034,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-WebYaST-SP2-Updates/sle-11-ia64/","distro_target":"sle-11-ia64","autorefresh":true,"installer_updates":false,"name":"SLE11-WebYaST-SP2-Updates","description":"SLE11-WebYaST-SP2-Updates for sle-11-ia64"},{"enabled":false,"id":1035,"autorefresh":true,"distro_target":"sle-11-ia64","url":"https://updates.suse.com/repo/$RCE/SLE11-WebYaST-SP2-Pool/sle-11-ia64/","name":"SLE11-WebYaST-SP2-Pool","installer_updates":false,"description":"SLE11-WebYaST-SP2-Pool for sle-11-ia64"}],"online_predecessor_ids":[],"product_class":"SLES-IA","eula_url":"","arch":"ia64","shortname":null,"description":null,"free":false,"extensions":[{"eula_url":"","arch":"ia64","free":false,"description":null,"shortname":null,"product_type":"extension","cpe":null,"predecessor_ids":[],"repositories":[{"url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP1-Updates/sle-11-ia64/","autorefresh":true,"distro_target":"sle-11-ia64","id":1065,"enabled":true,"description":"SLE11-HAE-SP1-Updates for sle-11-ia64","name":"SLE11-HAE-SP1-Updates","installer_updates":false},{"name":"SLE11-HAE-SP1-Pool","installer_updates":false,"description":"SLE11-HAE-SP1-Pool for sle-11-ia64","enabled":true,"id":1066,"autorefresh":true,"distro_target":"sle-11-ia64","url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP1-Pool/sle-11-ia64/"}],"online_predecessor_ids":[],"product_class":"SLE-HAE-IA","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise High Availability Extension","former_identifier":"sle-hae","release_type":null,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise High Availability Extension 11 SP1 ia64","recommended":false,"version":"11.1","extensions":[],"release_stage":"released","id":1061,"identifier":"sle-hae","friendly_version":"11 SP1"},{"friendly_version":"11 SP1","extensions":[],"id":1066,"release_stage":"released","identifier":"sle-hae-SP2-migration","recommended":false,"version":"11.1","name":"SUSE Linux Enterprise High Availability Extension","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"SUSE Linux Enterprise High Availability Extension 11 SP1 ia64 (Migration)","former_identifier":"sle-hae-SP2-migration","release_type":null,"predecessor_ids":[],"online_predecessor_ids":[],"product_class":"SLE-HAE-IA","repositories":[{"id":1063,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP2-Updates/sle-11-ia64/","autorefresh":true,"distro_target":"sle-11-ia64","name":"SLE11-HAE-SP2-Updates","installer_updates":false,"description":"SLE11-HAE-SP2-Updates for sle-11-ia64"},{"name":"SLE11-HAE-SP2-Pool","installer_updates":false,"description":"SLE11-HAE-SP2-Pool for sle-11-ia64","enabled":true,"id":1064,"autorefresh":true,"distro_target":"sle-11-ia64","url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP2-Pool/sle-11-ia64/"}],"cpe":null,"product_type":"extension","shortname":null,"description":null,"free":false,"eula_url":"","arch":"ia64"}],"identifier":"SUSE_SLES-SP2-migration","release_stage":"released","id":1036,"friendly_version":"11 SP1","name":"SUSE Linux Enterprise Server","offline_predecessor_ids":[],"friendly_name":"SUSE Linux Enterprise Server 11 SP1 ia64 (Migration)","migration_extra":false,"release_type":null,"former_identifier":"SUSE_SLES-SP2-migration","recommended":false,"version":"11.1"},{"free":false,"description":null,"shortname":null,"eula_url":"","arch":"ia64","predecessor_ids":[],"repositories":[{"name":"SLE11-SP1-Debuginfo-Pool","installer_updates":false,"description":"SLE11-SP1-Debuginfo-Pool for sle-11-ia64","enabled":false,"id":970,"autorefresh":true,"distro_target":"sle-11-ia64","url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Pool/sle-11-ia64/"},{"description":"SLE11-SP1-Debuginfo-Updates for sle-11-ia64","name":"SLE11-SP1-Debuginfo-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-ia64","url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Updates/sle-11-ia64/","enabled":false,"id":971},{"enabled":false,"id":972,"autorefresh":true,"distro_target":"sle-11-ia64","url":"https://updates.suse.com/repo/$RCE/SLES11-Extras/sle-11-ia64/","name":"SLES11-Extras","installer_updates":false,"description":"SLES11-Extras for sle-11-ia64"},{"id":973,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-Debuginfo-Core/sle-11-ia64/","autorefresh":true,"distro_target":"sle-11-ia64","name":"SLE11-SP2-Debuginfo-Core","installer_updates":false,"description":"SLE11-SP2-Debuginfo-Core for sle-11-ia64"},{"installer_updates":false,"name":"SLES11-SP2-Extension-Store","description":"SLES11-SP2-Extension-Store for sle-11-ia64","enabled":false,"id":974,"distro_target":"sle-11-ia64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP2-Extension-Store/sle-11-ia64/"},{"description":"SLE11-SP2-Debuginfo-Updates for sle-11-ia64","name":"SLE11-SP2-Debuginfo-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-ia64","url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-Debuginfo-Updates/sle-11-ia64/","enabled":false,"id":975},{"autorefresh":true,"distro_target":"sle-11-ia64","url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-Updates/sle-11-ia64/","enabled":false,"id":987,"description":"SLES11-SP1-Updates for sle-11-ia64","name":"SLES11-SP1-Updates","installer_updates":false},{"description":"SLES11-SP1-Pool for sle-11-ia64","installer_updates":false,"name":"SLES11-SP1-Pool","distro_target":"sle-11-ia64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-Pool/sle-11-ia64/","enabled":false,"id":991},{"description":"SLES11-SP2-Updates for sle-11-ia64","installer_updates":false,"name":"SLES11-SP2-Updates","distro_target":"sle-11-ia64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP2-Updates/sle-11-ia64/","enabled":false,"id":1011},{"description":"SLES11-SP2-Core for sle-11-ia64","installer_updates":false,"name":"SLES11-SP2-Core","url":"https://updates.suse.com/repo/$RCE/SLES11-SP2-Core/sle-11-ia64/","distro_target":"sle-11-ia64","autorefresh":true,"id":1014,"enabled":false},{"description":"SLE11-SP3-Debuginfo-Updates for sle-11-ia64","name":"SLE11-SP3-Debuginfo-Updates","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP3-Debuginfo-Updates/sle-11-ia64/","autorefresh":true,"distro_target":"sle-11-ia64","id":1028,"enabled":false},{"enabled":false,"id":1030,"distro_target":"sle-11-ia64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP3-Debuginfo-Pool/sle-11-ia64/","installer_updates":false,"name":"SLE11-SP3-Debuginfo-Pool","description":"SLE11-SP3-Debuginfo-Pool for sle-11-ia64"},{"name":"SLES11-SP3-Updates","installer_updates":false,"description":"SLES11-SP3-Updates for sle-11-ia64","enabled":true,"id":1036,"autorefresh":true,"distro_target":"sle-11-ia64","url":"https://updates.suse.com/repo/$RCE/SLES11-SP3-Updates/sle-11-ia64/"},{"url":"https://updates.suse.com/repo/$RCE/SLES11-SP3-Pool/sle-11-ia64/","autorefresh":true,"distro_target":"sle-11-ia64","id":1037,"enabled":true,"description":"SLES11-SP3-Pool for sle-11-ia64","name":"SLES11-SP3-Pool","installer_updates":false},{"distro_target":"sle-11-ia64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP3-Extension-Store/sle-11-ia64/","enabled":false,"id":1038,"description":"SLES11-SP3-Extension-Store for sle-11-ia64","installer_updates":false,"name":"SLES11-SP3-Extension-Store"},{"id":1385,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-Security-Module/sle-11-ia64/","autorefresh":true,"distro_target":"sle-11-ia64","name":"SLE11-Security-Module","installer_updates":false,"description":"SLE11-Security-Module for sle-11-ia64"},{"description":"SLE11-Public-Cloud-Module for sle-11-ia64","name":"SLE11-Public-Cloud-Module","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-Public-Cloud-Module/sle-11-ia64/","autorefresh":true,"distro_target":"sle-11-ia64","id":1783,"enabled":false}],"online_predecessor_ids":[],"product_class":"SLES-IA","product_type":"base","cpe":"cpe:/o:suse:suse_sles:11:sp3","recommended":false,"version":"11.3","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Server","release_type":null,"former_identifier":"SUSE_SLES","friendly_name":"SUSE Linux Enterprise Server 11 SP3 ia64","migration_extra":false,"friendly_version":"11 SP3","extensions":[{"release_type":null,"former_identifier":"sle-hae","migration_extra":false,"friendly_name":"SUSE Linux Enterprise High Availability Extension 11 SP3 ia64","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise High Availability Extension","version":"11.3","recommended":false,"release_stage":"released","identifier":"sle-hae","id":1063,"extensions":[],"friendly_version":"11 SP3","arch":"ia64","eula_url":"","free":false,"shortname":null,"description":null,"product_type":"extension","cpe":null,"online_predecessor_ids":[],"product_class":"SLE-HAE-IA","repositories":[{"name":"SLE11-HAE-SP3-Updates","installer_updates":false,"description":"SLE11-HAE-SP3-Updates for sle-11-ia64","enabled":true,"id":1069,"autorefresh":true,"distro_target":"sle-11-ia64","url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP3-Updates/sle-11-ia64/"},{"name":"SLE11-HAE-SP3-Pool","installer_updates":false,"description":"SLE11-HAE-SP3-Pool for sle-11-ia64","enabled":true,"id":1070,"autorefresh":true,"distro_target":"sle-11-ia64","url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP3-Pool/sle-11-ia64/"}],"predecessor_ids":[]},{"predecessor_ids":[],"repositories":[{"name":"SLE11-SDK-SP1-Updates","installer_updates":false,"description":"SLE11-SDK-SP1-Updates for sle-11-ia64","id":1257,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Updates/sle-11-ia64/","autorefresh":true,"distro_target":"sle-11-ia64"},{"id":1258,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-ia64/","autorefresh":true,"distro_target":"sle-11-ia64","name":"SLE11-SDK-SP1-Pool","installer_updates":false,"description":"SLE11-SDK-SP1-Pool for sle-11-ia64"},{"distro_target":"sle-11-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-s390x/","enabled":false,"id":1259,"description":"SLE11-SDK-SP1-Pool for sle-11-s390x","installer_updates":false,"name":"SLE11-SDK-SP1-Pool"},{"id":1260,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Updates/sle-11-ppc64/","distro_target":"sle-11-ppc64","autorefresh":true,"installer_updates":false,"name":"SLE11-SDK-SP1-Updates","description":"SLE11-SDK-SP1-Updates for sle-11-ppc64"},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-ppc64/","distro_target":"sle-11-ppc64","autorefresh":true,"id":1261,"enabled":false,"description":"SLE11-SDK-SP1-Pool for sle-11-ppc64","installer_updates":false,"name":"SLE11-SDK-SP1-Pool"},{"description":"SLE11-SDK-SP1-Updates for sle-11-i586","installer_updates":false,"name":"SLE11-SDK-SP1-Updates","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Updates/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true,"id":1262,"enabled":false},{"id":1263,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true,"installer_updates":false,"name":"SLE11-SDK-SP1-Pool","description":"SLE11-SDK-SP1-Pool for sle-11-i586"},{"id":1264,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64","name":"SLE11-SDK-SP1-Pool","installer_updates":false,"description":"SLE11-SDK-SP1-Pool for sle-11-x86_64"},{"distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Updates/sle-11-x86_64/","enabled":false,"id":1265,"description":"SLE11-SDK-SP1-Updates for sle-11-x86_64","installer_updates":false,"name":"SLE11-SDK-SP1-Updates"},{"name":"SLE11-SDK-SP1-Updates","installer_updates":false,"description":"SLE11-SDK-SP1-Updates for sle-11-s390x","enabled":false,"id":1266,"autorefresh":true,"distro_target":"sle-11-s390x","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Updates/sle-11-s390x/"},{"enabled":false,"id":1267,"distro_target":"sle-11-ia64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-ia64/","installer_updates":false,"name":"SLE11-SDK-SP2-Core","description":"SLE11-SDK-SP2-Core for sle-11-ia64"},{"description":"SLE11-SDK-SP2-Core for sle-11-s390x","installer_updates":false,"name":"SLE11-SDK-SP2-Core","distro_target":"sle-11-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-s390x/","enabled":false,"id":1268},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-s390x/","distro_target":"sle-11-s390x","autorefresh":true,"id":1269,"enabled":false,"description":"SLE11-SDK-SP2-Updates for sle-11-s390x","installer_updates":false,"name":"SLE11-SDK-SP2-Updates"},{"description":"SLE11-SDK-SP2-Updates for sle-11-ppc64","installer_updates":false,"name":"SLE11-SDK-SP2-Updates","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-ppc64/","distro_target":"sle-11-ppc64","autorefresh":true,"id":1270,"enabled":false},{"enabled":false,"id":1271,"distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-i586/","installer_updates":false,"name":"SLE11-SDK-SP2-Updates","description":"SLE11-SDK-SP2-Updates for sle-11-i586"},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-ia64/","distro_target":"sle-11-ia64","autorefresh":true,"id":1272,"enabled":false,"description":"SLE11-SDK-SP2-Updates for sle-11-ia64","installer_updates":false,"name":"SLE11-SDK-SP2-Updates"},{"distro_target":"sle-11-ppc64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-ppc64/","enabled":false,"id":1273,"description":"SLE11-SDK-SP2-Core for sle-11-ppc64","installer_updates":false,"name":"SLE11-SDK-SP2-Core"},{"description":"SLE11-SDK-SP2-Core for sle-11-i586","name":"SLE11-SDK-SP2-Core","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","id":1274,"enabled":false},{"enabled":false,"id":1275,"distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-x86_64/","installer_updates":false,"name":"SLE11-SDK-SP2-Core","description":"SLE11-SDK-SP2-Core for sle-11-x86_64"},{"description":"SLE11-SDK-SP2-Updates for sle-11-x86_64","installer_updates":false,"name":"SLE11-SDK-SP2-Updates","distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-x86_64/","enabled":false,"id":1276},{"name":"SLE11-SDK-SP3-Pool","installer_updates":false,"description":"SLE11-SDK-SP3-Pool for sle-11-i586","enabled":true,"id":1277,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Pool/sle-11-i586/"},{"installer_updates":false,"name":"SLE11-SDK-SP3-Pool","description":"SLE11-SDK-SP3-Pool for sle-11-ia64","enabled":true,"id":1278,"distro_target":"sle-11-ia64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Pool/sle-11-ia64/"},{"id":1279,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Updates/sle-11-ppc64/","autorefresh":true,"distro_target":"sle-11-ppc64","name":"SLE11-SDK-SP3-Updates","installer_updates":false,"description":"SLE11-SDK-SP3-Updates for sle-11-ppc64"},{"description":"SLE11-SDK-SP3-Updates for sle-11-ia64","installer_updates":false,"name":"SLE11-SDK-SP3-Updates","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Updates/sle-11-ia64/","distro_target":"sle-11-ia64","autorefresh":true,"id":1280,"enabled":true},{"description":"SLE11-SDK-SP3-Pool for sle-11-x86_64","name":"SLE11-SDK-SP3-Pool","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Pool/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64","id":1281,"enabled":true},{"autorefresh":true,"distro_target":"sle-11-s390x","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Updates/sle-11-s390x/","enabled":true,"id":1282,"description":"SLE11-SDK-SP3-Updates for sle-11-s390x","name":"SLE11-SDK-SP3-Updates","installer_updates":false},{"name":"SLE11-SDK-SP3-Pool","installer_updates":false,"description":"SLE11-SDK-SP3-Pool for sle-11-ppc64","enabled":true,"id":1283,"autorefresh":true,"distro_target":"sle-11-ppc64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Pool/sle-11-ppc64/"},{"id":1284,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Updates/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64","name":"SLE11-SDK-SP3-Updates","installer_updates":false,"description":"SLE11-SDK-SP3-Updates for sle-11-x86_64"},{"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Updates/sle-11-i586/","enabled":true,"id":1285,"description":"SLE11-SDK-SP3-Updates for sle-11-i586","name":"SLE11-SDK-SP3-Updates","installer_updates":false},{"installer_updates":false,"name":"SLE11-SDK-SP3-Pool","description":"SLE11-SDK-SP3-Pool for sle-11-s390x","enabled":true,"id":1286,"distro_target":"sle-11-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Pool/sle-11-s390x/"}],"online_predecessor_ids":[],"product_class":"SLE-SDK","cpe":null,"product_type":"extension","description":null,"shortname":null,"free":true,"eula_url":"","arch":null,"friendly_version":"11 SP3","extensions":[],"release_stage":"released","identifier":"sle-sdk","id":1161,"recommended":false,"version":"11.3","name":"SUSE Linux Enterprise Software Development Kit","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Software Development Kit 11 SP3","release_type":null,"former_identifier":"sle-sdk"},{"recommended":false,"version":"11.2","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Software Development Kit","release_type":null,"former_identifier":"sle-sdk-SP3-migration","friendly_name":"SUSE Linux Enterprise Software Development Kit 11 SP2 (Migration)","migration_extra":false,"friendly_version":"11 SP2","extensions":[],"release_stage":"released","identifier":"sle-sdk-SP3-migration","id":1164,"free":true,"description":null,"shortname":null,"eula_url":"","arch":null,"predecessor_ids":[],"product_class":"SLE-SDK","online_predecessor_ids":[],"repositories":[{"description":"SLE11-SDK-SP3-Pool for sle-11-i586","name":"SLE11-SDK-SP3-Pool","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Pool/sle-11-i586/","enabled":true,"id":1277},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Pool/sle-11-ia64/","distro_target":"sle-11-ia64","autorefresh":true,"id":1278,"enabled":true,"description":"SLE11-SDK-SP3-Pool for sle-11-ia64","installer_updates":false,"name":"SLE11-SDK-SP3-Pool"},{"autorefresh":true,"distro_target":"sle-11-ppc64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Updates/sle-11-ppc64/","enabled":true,"id":1279,"description":"SLE11-SDK-SP3-Updates for sle-11-ppc64","name":"SLE11-SDK-SP3-Updates","installer_updates":false},{"description":"SLE11-SDK-SP3-Updates for sle-11-ia64","name":"SLE11-SDK-SP3-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-ia64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Updates/sle-11-ia64/","enabled":true,"id":1280},{"enabled":true,"id":1281,"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Pool/sle-11-x86_64/","name":"SLE11-SDK-SP3-Pool","installer_updates":false,"description":"SLE11-SDK-SP3-Pool for sle-11-x86_64"},{"installer_updates":false,"name":"SLE11-SDK-SP3-Updates","description":"SLE11-SDK-SP3-Updates for sle-11-s390x","enabled":true,"id":1282,"distro_target":"sle-11-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Updates/sle-11-s390x/"},{"installer_updates":false,"name":"SLE11-SDK-SP3-Pool","description":"SLE11-SDK-SP3-Pool for sle-11-ppc64","enabled":true,"id":1283,"distro_target":"sle-11-ppc64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Pool/sle-11-ppc64/"},{"name":"SLE11-SDK-SP3-Updates","installer_updates":false,"description":"SLE11-SDK-SP3-Updates for sle-11-x86_64","id":1284,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Updates/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64"},{"id":1285,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Updates/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true,"installer_updates":false,"name":"SLE11-SDK-SP3-Updates","description":"SLE11-SDK-SP3-Updates for sle-11-i586"},{"description":"SLE11-SDK-SP3-Pool for sle-11-s390x","name":"SLE11-SDK-SP3-Pool","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-s390x","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Pool/sle-11-s390x/","enabled":true,"id":1286}],"product_type":"extension","cpe":null},{"identifier":"sle-smt","release_stage":"released","id":1198,"extensions":[],"friendly_version":"11 SP3","release_type":null,"former_identifier":"sle-smt","migration_extra":false,"friendly_name":"SUSE Linux Enterprise Subscription Management Tool 11 SP3","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Subscription Management Tool","version":"11.3","recommended":false,"product_type":"extension","cpe":null,"repositories":[{"description":"SLE11-SMT-SP3-Updates for sle-11-x86_64","name":"SLE11-SMT-SP3-Updates","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP3-Updates/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64","id":1405,"enabled":true},{"distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP3-Updates/sle-11-i586/","enabled":true,"id":1406,"description":"SLE11-SMT-SP3-Updates for sle-11-i586","installer_updates":false,"name":"SLE11-SMT-SP3-Updates"},{"installer_updates":false,"name":"SLE11-SMT-SP3-Updates","description":"SLE11-SMT-SP3-Updates for sle-11-s390x","enabled":true,"id":1407,"distro_target":"sle-11-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP3-Updates/sle-11-s390x/"},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP3-Pool/sle-11-s390x/","autorefresh":true,"distro_target":"sle-11-s390x","id":1408,"enabled":true,"description":"SLE11-SMT-SP3-Pool for sle-11-s390x","name":"SLE11-SMT-SP3-Pool","installer_updates":false},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP3-Pool/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64","id":1409,"enabled":true,"description":"SLE11-SMT-SP3-Pool for sle-11-x86_64","name":"SLE11-SMT-SP3-Pool","installer_updates":false},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP3-Pool/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","id":1410,"enabled":true,"description":"SLE11-SMT-SP3-Pool for sle-11-i586","name":"SLE11-SMT-SP3-Pool","installer_updates":false}],"online_predecessor_ids":[],"product_class":"SLESMT","predecessor_ids":[],"arch":null,"eula_url":"","free":true,"description":null,"shortname":null},{"recommended":false,"version":"11.2","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Subscription Management Tool","former_identifier":"sle-smt-SP3-migration","release_type":null,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Subscription Management Tool 11 SP2 (Migration)","friendly_version":"11 SP2","extensions":[],"identifier":"sle-smt-SP3-migration","release_stage":"released","id":1199,"free":true,"shortname":null,"description":null,"eula_url":"","arch":null,"predecessor_ids":[],"repositories":[{"distro_target":"sle-11-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP3-Pool/sle-11-s390x/","enabled":true,"id":1408,"description":"SLE11-SMT-SP3-Pool for sle-11-s390x","installer_updates":false,"name":"SLE11-SMT-SP3-Pool"},{"enabled":true,"id":1409,"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP3-Pool/sle-11-x86_64/","name":"SLE11-SMT-SP3-Pool","installer_updates":false,"description":"SLE11-SMT-SP3-Pool for sle-11-x86_64"},{"description":"SLE11-SMT-SP3-Pool for sle-11-i586","installer_updates":false,"name":"SLE11-SMT-SP3-Pool","distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP3-Pool/sle-11-i586/","enabled":true,"id":1410}],"online_predecessor_ids":[],"product_class":"SLESMT","product_type":"extension","cpe":null},{"friendly_version":"1.3","extensions":[],"identifier":"sle-11-WebYaST","release_stage":"released","id":1206,"recommended":false,"version":"1.3","offline_predecessor_ids":[],"name":"SUSE WebYaST","former_identifier":"sle-11-WebYaST","release_type":null,"migration_extra":false,"friendly_name":"SUSE WebYaST 1.3","predecessor_ids":[],"product_class":"WEBYAST","online_predecessor_ids":[],"repositories":[{"enabled":true,"id":1185,"distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-WebYaST-1.3-Pool/sle-11-x86_64/","installer_updates":false,"name":"SLE11-SP2-WebYaST-1.3-Pool","description":"SLE11-SP2-WebYaST-1.3-Pool for sle-11-x86_64"},{"installer_updates":false,"name":"SLE11-SP2-WebYaST-1.3-Updates","description":"SLE11-SP2-WebYaST-1.3-Updates for sle-11-x86_64","id":1188,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-WebYaST-1.3-Updates/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true},{"description":"SLE11-SP2-WebYaST-1.3-Pool for sle-11-s390x","name":"SLE11-SP2-WebYaST-1.3-Pool","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-s390x","url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-WebYaST-1.3-Pool/sle-11-s390x/","enabled":true,"id":1411},{"name":"SLE11-SP2-WebYaST-1.3-Updates","installer_updates":false,"description":"SLE11-SP2-WebYaST-1.3-Updates for sle-11-s390x","id":1412,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-WebYaST-1.3-Updates/sle-11-s390x/","autorefresh":true,"distro_target":"sle-11-s390x"},{"id":1413,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-WebYaST-1.3-Updates/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true,"installer_updates":false,"name":"SLE11-SP2-WebYaST-1.3-Updates","description":"SLE11-SP2-WebYaST-1.3-Updates for sle-11-i586"},{"id":1414,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-WebYaST-1.3-Pool/sle-11-ppc64/","distro_target":"sle-11-ppc64","autorefresh":true,"installer_updates":false,"name":"SLE11-SP2-WebYaST-1.3-Pool","description":"SLE11-SP2-WebYaST-1.3-Pool for sle-11-ppc64"},{"autorefresh":true,"distro_target":"sle-11-ia64","url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-WebYaST-1.3-Updates/sle-11-ia64/","enabled":true,"id":1415,"description":"SLE11-SP2-WebYaST-1.3-Updates for sle-11-ia64","name":"SLE11-SP2-WebYaST-1.3-Updates","installer_updates":false},{"description":"SLE11-SP2-WebYaST-1.3-Pool for sle-11-ia64","name":"SLE11-SP2-WebYaST-1.3-Pool","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-ia64","url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-WebYaST-1.3-Pool/sle-11-ia64/","enabled":true,"id":1416},{"description":"SLE11-SP2-WebYaST-1.3-Pool for sle-11-i586","installer_updates":false,"name":"SLE11-SP2-WebYaST-1.3-Pool","distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-WebYaST-1.3-Pool/sle-11-i586/","enabled":true,"id":1417},{"enabled":true,"id":1418,"distro_target":"sle-11-ppc64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-WebYaST-1.3-Updates/sle-11-ppc64/","installer_updates":false,"name":"SLE11-SP2-WebYaST-1.3-Updates","description":"SLE11-SP2-WebYaST-1.3-Updates for sle-11-ppc64"}],"product_type":"extension","cpe":null,"free":true,"shortname":null,"description":null,"eula_url":"","arch":null},{"cpe":null,"product_type":"extension","predecessor_ids":[],"product_class":"SLE-HAE-IA","online_predecessor_ids":[],"repositories":[{"distro_target":"sle-11-ia64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP4-Pool/sle-11-ia64/","enabled":true,"id":1754,"description":"SLE11-HAE-SP4-Pool for sle-11-ia64","installer_updates":false,"name":"SLE11-HAE-SP4-Pool"},{"id":1755,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP4-Updates/sle-11-ia64/","distro_target":"sle-11-ia64","autorefresh":true,"installer_updates":false,"name":"SLE11-HAE-SP4-Updates","description":"SLE11-HAE-SP4-Updates for sle-11-ia64"}],"eula_url":"","arch":"ia64","description":null,"shortname":null,"free":false,"extensions":[],"release_stage":"released","id":1279,"identifier":"sle-hae-SP4-migration","friendly_version":"11 SP3","name":"SUSE Linux Enterprise High Availability Extension","offline_predecessor_ids":[],"friendly_name":"SUSE Linux Enterprise High Availability Extension 11 SP3 ia64 (Migration)","migration_extra":false,"former_identifier":"sle-hae-SP4-migration","release_type":null,"recommended":false,"version":"11.3"},{"friendly_version":"11 SP3","release_stage":"released","id":1318,"identifier":"sle-sdk-SP4-migration","extensions":[],"version":"11.3","recommended":false,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Software Development Kit 11 SP3 (Migration)","former_identifier":"sle-sdk-SP4-migration","release_type":null,"name":"SUSE Linux Enterprise Software Development Kit","offline_predecessor_ids":[],"online_predecessor_ids":[],"product_class":"SLE-SDK","repositories":[{"description":"SLE11-SDK-SP1-Updates for sle-11-ia64","name":"SLE11-SDK-SP1-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-ia64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Updates/sle-11-ia64/","enabled":false,"id":1257},{"name":"SLE11-SDK-SP1-Pool","installer_updates":false,"description":"SLE11-SDK-SP1-Pool for sle-11-ia64","id":1258,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-ia64/","autorefresh":true,"distro_target":"sle-11-ia64"},{"description":"SLE11-SDK-SP1-Pool for sle-11-s390x","installer_updates":false,"name":"SLE11-SDK-SP1-Pool","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-s390x/","distro_target":"sle-11-s390x","autorefresh":true,"id":1259,"enabled":false},{"description":"SLE11-SDK-SP1-Updates for sle-11-ppc64","name":"SLE11-SDK-SP1-Updates","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Updates/sle-11-ppc64/","autorefresh":true,"distro_target":"sle-11-ppc64","id":1260,"enabled":false},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-ppc64/","distro_target":"sle-11-ppc64","autorefresh":true,"id":1261,"enabled":false,"description":"SLE11-SDK-SP1-Pool for sle-11-ppc64","installer_updates":false,"name":"SLE11-SDK-SP1-Pool"},{"name":"SLE11-SDK-SP1-Updates","installer_updates":false,"description":"SLE11-SDK-SP1-Updates for sle-11-i586","enabled":false,"id":1262,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Updates/sle-11-i586/"},{"description":"SLE11-SDK-SP1-Pool for sle-11-i586","installer_updates":false,"name":"SLE11-SDK-SP1-Pool","distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-i586/","enabled":false,"id":1263},{"name":"SLE11-SDK-SP1-Pool","installer_updates":false,"description":"SLE11-SDK-SP1-Pool for sle-11-x86_64","id":1264,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64"},{"enabled":false,"id":1265,"distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Updates/sle-11-x86_64/","installer_updates":false,"name":"SLE11-SDK-SP1-Updates","description":"SLE11-SDK-SP1-Updates for sle-11-x86_64"},{"id":1266,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Updates/sle-11-s390x/","distro_target":"sle-11-s390x","autorefresh":true,"installer_updates":false,"name":"SLE11-SDK-SP1-Updates","description":"SLE11-SDK-SP1-Updates for sle-11-s390x"},{"installer_updates":false,"name":"SLE11-SDK-SP2-Core","description":"SLE11-SDK-SP2-Core for sle-11-ia64","enabled":false,"id":1267,"distro_target":"sle-11-ia64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-ia64/"},{"enabled":false,"id":1268,"autorefresh":true,"distro_target":"sle-11-s390x","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-s390x/","name":"SLE11-SDK-SP2-Core","installer_updates":false,"description":"SLE11-SDK-SP2-Core for sle-11-s390x"},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-s390x/","autorefresh":true,"distro_target":"sle-11-s390x","id":1269,"enabled":false,"description":"SLE11-SDK-SP2-Updates for sle-11-s390x","name":"SLE11-SDK-SP2-Updates","installer_updates":false},{"name":"SLE11-SDK-SP2-Updates","installer_updates":false,"description":"SLE11-SDK-SP2-Updates for sle-11-ppc64","enabled":false,"id":1270,"autorefresh":true,"distro_target":"sle-11-ppc64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-ppc64/"},{"enabled":false,"id":1271,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-i586/","name":"SLE11-SDK-SP2-Updates","installer_updates":false,"description":"SLE11-SDK-SP2-Updates for sle-11-i586"},{"installer_updates":false,"name":"SLE11-SDK-SP2-Updates","description":"SLE11-SDK-SP2-Updates for sle-11-ia64","id":1272,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-ia64/","distro_target":"sle-11-ia64","autorefresh":true},{"description":"SLE11-SDK-SP2-Core for sle-11-ppc64","installer_updates":false,"name":"SLE11-SDK-SP2-Core","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-ppc64/","distro_target":"sle-11-ppc64","autorefresh":true,"id":1273,"enabled":false},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true,"id":1274,"enabled":false,"description":"SLE11-SDK-SP2-Core for sle-11-i586","installer_updates":false,"name":"SLE11-SDK-SP2-Core"},{"id":1275,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64","name":"SLE11-SDK-SP2-Core","installer_updates":false,"description":"SLE11-SDK-SP2-Core for sle-11-x86_64"},{"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-x86_64/","enabled":false,"id":1276,"description":"SLE11-SDK-SP2-Updates for sle-11-x86_64","name":"SLE11-SDK-SP2-Updates","installer_updates":false},{"installer_updates":false,"name":"SLE11-SDK-SP3-Pool","description":"SLE11-SDK-SP3-Pool for sle-11-i586","enabled":false,"id":1277,"distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Pool/sle-11-i586/"},{"name":"SLE11-SDK-SP3-Pool","installer_updates":false,"description":"SLE11-SDK-SP3-Pool for sle-11-ia64","enabled":false,"id":1278,"autorefresh":true,"distro_target":"sle-11-ia64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Pool/sle-11-ia64/"},{"installer_updates":false,"name":"SLE11-SDK-SP3-Updates","description":"SLE11-SDK-SP3-Updates for sle-11-ppc64","id":1279,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Updates/sle-11-ppc64/","distro_target":"sle-11-ppc64","autorefresh":true},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Updates/sle-11-ia64/","distro_target":"sle-11-ia64","autorefresh":true,"id":1280,"enabled":false,"description":"SLE11-SDK-SP3-Updates for sle-11-ia64","installer_updates":false,"name":"SLE11-SDK-SP3-Updates"},{"description":"SLE11-SDK-SP3-Pool for sle-11-x86_64","installer_updates":false,"name":"SLE11-SDK-SP3-Pool","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Pool/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true,"id":1281,"enabled":false},{"installer_updates":false,"name":"SLE11-SDK-SP3-Updates","description":"SLE11-SDK-SP3-Updates for sle-11-s390x","enabled":false,"id":1282,"distro_target":"sle-11-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Updates/sle-11-s390x/"},{"enabled":false,"id":1283,"distro_target":"sle-11-ppc64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Pool/sle-11-ppc64/","installer_updates":false,"name":"SLE11-SDK-SP3-Pool","description":"SLE11-SDK-SP3-Pool for sle-11-ppc64"},{"distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Updates/sle-11-x86_64/","enabled":false,"id":1284,"description":"SLE11-SDK-SP3-Updates for sle-11-x86_64","installer_updates":false,"name":"SLE11-SDK-SP3-Updates"},{"enabled":false,"id":1285,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Updates/sle-11-i586/","name":"SLE11-SDK-SP3-Updates","installer_updates":false,"description":"SLE11-SDK-SP3-Updates for sle-11-i586"},{"enabled":false,"id":1286,"distro_target":"sle-11-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Pool/sle-11-s390x/","installer_updates":false,"name":"SLE11-SDK-SP3-Pool","description":"SLE11-SDK-SP3-Pool for sle-11-s390x"},{"description":"SLE11-SDK-SP4-Pool for sle-11-i586","name":"SLE11-SDK-SP4-Pool","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP4-Pool/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","id":1817,"enabled":true},{"enabled":true,"id":1818,"autorefresh":true,"distro_target":"sle-11-ia64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP4-Pool/sle-11-ia64/","name":"SLE11-SDK-SP4-Pool","installer_updates":false,"description":"SLE11-SDK-SP4-Pool for sle-11-ia64"},{"id":1819,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP4-Pool/sle-11-ppc64/","autorefresh":true,"distro_target":"sle-11-ppc64","name":"SLE11-SDK-SP4-Pool","installer_updates":false,"description":"SLE11-SDK-SP4-Pool for sle-11-ppc64"},{"name":"SLE11-SDK-SP4-Pool","installer_updates":false,"description":"SLE11-SDK-SP4-Pool for sle-11-s390x","id":1820,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP4-Pool/sle-11-s390x/","autorefresh":true,"distro_target":"sle-11-s390x"},{"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP4-Pool/sle-11-x86_64/","enabled":true,"id":1821,"description":"SLE11-SDK-SP4-Pool for sle-11-x86_64","name":"SLE11-SDK-SP4-Pool","installer_updates":false},{"installer_updates":false,"name":"SLE11-SDK-SP4-Updates","description":"SLE11-SDK-SP4-Updates for sle-11-i586","id":1822,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP4-Updates/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true},{"id":1823,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP4-Updates/sle-11-ia64/","distro_target":"sle-11-ia64","autorefresh":true,"installer_updates":false,"name":"SLE11-SDK-SP4-Updates","description":"SLE11-SDK-SP4-Updates for sle-11-ia64"},{"description":"SLE11-SDK-SP4-Updates for sle-11-ppc64","name":"SLE11-SDK-SP4-Updates","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP4-Updates/sle-11-ppc64/","autorefresh":true,"distro_target":"sle-11-ppc64","id":1824,"enabled":true},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP4-Updates/sle-11-s390x/","distro_target":"sle-11-s390x","autorefresh":true,"id":1825,"enabled":true,"description":"SLE11-SDK-SP4-Updates for sle-11-s390x","installer_updates":false,"name":"SLE11-SDK-SP4-Updates"},{"installer_updates":false,"name":"SLE11-SDK-SP4-Updates","description":"SLE11-SDK-SP4-Updates for sle-11-x86_64","enabled":true,"id":1826,"distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP4-Updates/sle-11-x86_64/"}],"predecessor_ids":[],"cpe":null,"product_type":"extension","description":null,"shortname":null,"free":true,"arch":null,"eula_url":""}],"id":1037,"release_stage":"released","identifier":"SUSE_SLES"},{"free":false,"shortname":null,"description":null,"eula_url":"","arch":"ia64","predecessor_ids":[],"repositories":[{"description":"SLES11-Extras for sle-11-ia64","installer_updates":false,"name":"SLES11-Extras","url":"https://updates.suse.com/repo/$RCE/SLES11-Extras/sle-11-ia64/","distro_target":"sle-11-ia64","autorefresh":true,"id":972,"enabled":false},{"enabled":false,"id":1020,"autorefresh":true,"distro_target":"sle-11-ia64","url":"https://updates.suse.com/repo/$RCE/SLE11-Debuginfo-Updates/sle-11-ia64/","name":"SLE11-Debuginfo-Updates","installer_updates":false,"description":"SLE11-Debuginfo-Updates for sle-11-ia64"},{"enabled":false,"id":1022,"distro_target":"sle-11-ia64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-Debuginfo-Pool/sle-11-ia64/","installer_updates":false,"name":"SLE11-Debuginfo-Pool","description":"SLE11-Debuginfo-Pool for sle-11-ia64"},{"description":"SLES11-Updates for sle-11-ia64","name":"SLES11-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-ia64","url":"https://updates.suse.com/repo/$RCE/SLES11-Updates/sle-11-ia64/","enabled":true,"id":1039},{"name":"SLES11-Pool","installer_updates":false,"description":"SLES11-Pool for sle-11-ia64","id":1040,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLES11-Pool/sle-11-ia64/","autorefresh":true,"distro_target":"sle-11-ia64"}],"online_predecessor_ids":[],"product_class":"SLES-IA","product_type":"base","cpe":"cpe:/o:suse:suse_sles:11","recommended":false,"version":"11","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Server","former_identifier":"SUSE_SLES","release_type":null,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Server 11 ia64","friendly_version":"11","extensions":[{"friendly_version":"1.0","extensions":[],"identifier":"sle-11-WebYaST","release_stage":"released","id":836,"recommended":false,"version":"1.0","name":"SUSE WebYaST","offline_predecessor_ids":[],"friendly_name":"SUSE WebYaST 1.0","migration_extra":false,"former_identifier":"sle-11-WebYaST","release_type":null,"predecessor_ids":[],"product_class":"WEBYAST","online_predecessor_ids":[],"repositories":[{"url":"https://updates.suse.com/repo/$RCE/SLE11-WebYaST-1.0-Updates/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","id":829,"enabled":true,"description":"SLE11-WebYaST-1.0-Updates for sle-11-i586","name":"SLE11-WebYaST-1.0-Updates","installer_updates":false},{"url":"https://updates.suse.com/repo/$RCE/SLE11-WebYaST-1.0-Pool/sle-11-ia64/","autorefresh":true,"distro_target":"sle-11-ia64","id":830,"enabled":false,"description":"SLE11-WebYaST-1.0-Pool for sle-11-ia64","name":"SLE11-WebYaST-1.0-Pool","installer_updates":false},{"installer_updates":false,"name":"SLE11-WebYaST-1.0-Updates","description":"SLE11-WebYaST-1.0-Updates for sle-11-ppc64","id":831,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-WebYaST-1.0-Updates/sle-11-ppc64/","distro_target":"sle-11-ppc64","autorefresh":true},{"url":"https://updates.suse.com/repo/$RCE/SLE11-WebYaST-1.0-Pool/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","id":832,"enabled":false,"description":"SLE11-WebYaST-1.0-Pool for sle-11-i586","name":"SLE11-WebYaST-1.0-Pool","installer_updates":false},{"installer_updates":false,"name":"SLE11-WebYaST-1.0-Pool","description":"SLE11-WebYaST-1.0-Pool for sle-11-s390x","enabled":false,"id":833,"distro_target":"sle-11-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-WebYaST-1.0-Pool/sle-11-s390x/"},{"description":"SLE11-WebYaST-1.0-Updates for sle-11-s390x","installer_updates":false,"name":"SLE11-WebYaST-1.0-Updates","url":"https://updates.suse.com/repo/$RCE/SLE11-WebYaST-1.0-Updates/sle-11-s390x/","distro_target":"sle-11-s390x","autorefresh":true,"id":834,"enabled":true},{"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE11-WebYaST-1.0-Updates/sle-11-x86_64/","enabled":true,"id":835,"description":"SLE11-WebYaST-1.0-Updates for sle-11-x86_64","name":"SLE11-WebYaST-1.0-Updates","installer_updates":false},{"id":836,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-WebYaST-1.0-Pool/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true,"installer_updates":false,"name":"SLE11-WebYaST-1.0-Pool","description":"SLE11-WebYaST-1.0-Pool for sle-11-x86_64"},{"autorefresh":true,"distro_target":"sle-11-ia64","url":"https://updates.suse.com/repo/$RCE/SLE11-WebYaST-1.0-Updates/sle-11-ia64/","enabled":true,"id":837,"description":"SLE11-WebYaST-1.0-Updates for sle-11-ia64","name":"SLE11-WebYaST-1.0-Updates","installer_updates":false},{"installer_updates":false,"name":"SLE11-WebYaST-1.0-Pool","description":"SLE11-WebYaST-1.0-Pool for sle-11-ppc64","enabled":false,"id":838,"distro_target":"sle-11-ppc64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-WebYaST-1.0-Pool/sle-11-ppc64/"}],"cpe":null,"product_type":"extension","description":null,"shortname":null,"free":true,"eula_url":"","arch":null},{"extensions":[],"release_stage":"released","id":1062,"identifier":"sle-hae","friendly_version":"11","name":"SUSE Linux Enterprise High Availability Extension","offline_predecessor_ids":[],"friendly_name":"SUSE Linux Enterprise High Availability Extension 11 ia64","migration_extra":false,"former_identifier":"sle-hae","release_type":null,"recommended":false,"version":"11","cpe":null,"product_type":"extension","predecessor_ids":[],"product_class":"SLE-HAE-IA","online_predecessor_ids":[],"repositories":[{"name":"SLE11-HAE-Updates","installer_updates":false,"description":"SLE11-HAE-Updates for sle-11-ia64","id":1067,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-Updates/sle-11-ia64/","autorefresh":true,"distro_target":"sle-11-ia64"},{"autorefresh":true,"distro_target":"sle-11-ia64","url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-Pool/sle-11-ia64/","enabled":false,"id":1068,"description":"SLE11-HAE-Pool for sle-11-ia64","name":"SLE11-HAE-Pool","installer_updates":false}],"eula_url":"","arch":"ia64","shortname":null,"description":null,"free":false},{"friendly_version":"11","release_stage":"released","identifier":"sle-hae-SP1-migration","id":1065,"extensions":[],"version":"11","recommended":false,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise High Availability Extension 11 ia64 (Migration)","former_identifier":"sle-hae-SP1-migration","release_type":null,"name":"SUSE Linux Enterprise High Availability Extension","offline_predecessor_ids":[],"online_predecessor_ids":[],"repositories":[{"distro_target":"sle-11-ia64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP1-Pool/sle-11-ia64/","enabled":true,"id":1066,"description":"SLE11-HAE-SP1-Pool for sle-11-ia64","installer_updates":false,"name":"SLE11-HAE-SP1-Pool"}],"product_class":"SLE-HAE-IA","predecessor_ids":[],"cpe":null,"product_type":"extension","shortname":null,"description":null,"free":false,"arch":"ia64","eula_url":""},{"friendly_version":"11","extensions":[],"release_stage":"released","id":1158,"identifier":"sle-sdk","recommended":false,"version":"11","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Software Development Kit","former_identifier":"sle-sdk","release_type":null,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Software Development Kit 11","predecessor_ids":[],"repositories":[{"autorefresh":true,"distro_target":"sle-11-ppc64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-Updates/sle-11-ppc64/","enabled":true,"id":1247,"description":"SLE11-SDK-Updates for sle-11-ppc64","name":"SLE11-SDK-Updates","installer_updates":false},{"description":"SLE11-SDK-Pool for sle-11-s390x","name":"SLE11-SDK-Pool","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-Pool/sle-11-s390x/","autorefresh":true,"distro_target":"sle-11-s390x","id":1248,"enabled":false},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-Updates/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64","id":1249,"enabled":true,"description":"SLE11-SDK-Updates for sle-11-x86_64","name":"SLE11-SDK-Updates","installer_updates":false},{"enabled":false,"id":1250,"distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-Pool/sle-11-i586/","installer_updates":false,"name":"SLE11-SDK-Pool","description":"SLE11-SDK-Pool for sle-11-i586"},{"id":1251,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-Pool/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true,"installer_updates":false,"name":"SLE11-SDK-Pool","description":"SLE11-SDK-Pool for sle-11-x86_64"},{"enabled":false,"id":1252,"distro_target":"sle-11-ppc64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-Pool/sle-11-ppc64/","installer_updates":false,"name":"SLE11-SDK-Pool","description":"SLE11-SDK-Pool for sle-11-ppc64"},{"name":"SLE11-SDK-Updates","installer_updates":false,"description":"SLE11-SDK-Updates for sle-11-i586","id":1253,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-Updates/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586"},{"description":"SLE11-SDK-Pool for sle-11-ia64","installer_updates":false,"name":"SLE11-SDK-Pool","distro_target":"sle-11-ia64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-Pool/sle-11-ia64/","enabled":false,"id":1254},{"name":"SLE11-SDK-Updates","installer_updates":false,"description":"SLE11-SDK-Updates for sle-11-s390x","enabled":true,"id":1255,"autorefresh":true,"distro_target":"sle-11-s390x","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-Updates/sle-11-s390x/"},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-Updates/sle-11-ia64/","distro_target":"sle-11-ia64","autorefresh":true,"id":1256,"enabled":true,"description":"SLE11-SDK-Updates for sle-11-ia64","installer_updates":false,"name":"SLE11-SDK-Updates"}],"online_predecessor_ids":[],"product_class":"SLE-SDK","product_type":"extension","cpe":null,"free":true,"description":null,"shortname":null,"eula_url":"","arch":null},{"free":true,"shortname":null,"description":null,"arch":null,"eula_url":"","online_predecessor_ids":[],"product_class":"SLE-SDK","repositories":[{"installer_updates":false,"name":"SLE11-SDK-SP1-Pool","description":"SLE11-SDK-SP1-Pool for sle-11-ia64","enabled":true,"id":1258,"distro_target":"sle-11-ia64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-ia64/"},{"distro_target":"sle-11-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-s390x/","enabled":true,"id":1259,"description":"SLE11-SDK-SP1-Pool for sle-11-s390x","installer_updates":false,"name":"SLE11-SDK-SP1-Pool"},{"autorefresh":true,"distro_target":"sle-11-ppc64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-ppc64/","enabled":true,"id":1261,"description":"SLE11-SDK-SP1-Pool for sle-11-ppc64","name":"SLE11-SDK-SP1-Pool","installer_updates":false},{"installer_updates":false,"name":"SLE11-SDK-SP1-Pool","description":"SLE11-SDK-SP1-Pool for sle-11-i586","id":1263,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true},{"description":"SLE11-SDK-SP1-Pool for sle-11-x86_64","installer_updates":false,"name":"SLE11-SDK-SP1-Pool","distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-x86_64/","enabled":true,"id":1264}],"predecessor_ids":[],"product_type":"extension","cpe":null,"version":"11","recommended":false,"release_type":null,"former_identifier":"sle-sdk-SP1-migration","migration_extra":false,"friendly_name":"SUSE Linux Enterprise Software Development Kit 11 (Migration)","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Software Development Kit","friendly_version":"11","release_stage":"released","id":1162,"identifier":"sle-sdk-SP1-migration","extensions":[]},{"friendly_version":"11","extensions":[],"release_stage":"released","identifier":"sle-smt-SP2-migration","id":1194,"recommended":false,"version":"11","name":"SUSE Linux Enterprise Subscription Management Tool","offline_predecessor_ids":[],"friendly_name":"SUSE Linux Enterprise Subscription Management Tool 11 (Migration)","migration_extra":false,"release_type":null,"former_identifier":"sle-smt-SP2-migration","predecessor_ids":[],"online_predecessor_ids":[],"repositories":[{"id":1392,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP2-Pool/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true,"installer_updates":false,"name":"SLE11-SMT-SP2-Pool","description":"SLE11-SMT-SP2-Pool for sle-11-x86_64"},{"name":"SLE11-SMT-SP2-Pool","installer_updates":false,"description":"SLE11-SMT-SP2-Pool for sle-11-i586","enabled":true,"id":1394,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP2-Pool/sle-11-i586/"},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP2-Pool/sle-11-s390x/","autorefresh":true,"distro_target":"sle-11-s390x","id":1396,"enabled":true,"description":"SLE11-SMT-SP2-Pool for sle-11-s390x","name":"SLE11-SMT-SP2-Pool","installer_updates":false}],"product_class":"SLESMT","cpe":null,"product_type":"extension","shortname":null,"description":null,"free":true,"eula_url":"","arch":null},{"id":1196,"release_stage":"released","identifier":"sle-smt","extensions":[],"friendly_version":"11","release_type":null,"former_identifier":"sle-smt","friendly_name":"SUSE Linux Enterprise Subscription Management Tool 11","migration_extra":false,"offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Subscription Management Tool","version":"11","recommended":false,"product_type":"extension","cpe":null,"online_predecessor_ids":[],"product_class":"SLESMT","repositories":[{"enabled":true,"id":1400,"distro_target":"sle-11-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-Updates/sle-11-s390x/","installer_updates":false,"name":"SLE11-SMT-Updates","description":"SLE11-SMT-Updates for sle-11-s390x"},{"id":1401,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-Updates/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64","name":"SLE11-SMT-Updates","installer_updates":false,"description":"SLE11-SMT-Updates for sle-11-x86_64"},{"enabled":true,"id":1402,"distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-Updates/sle-11-i586/","installer_updates":false,"name":"SLE11-SMT-Updates","description":"SLE11-SMT-Updates for sle-11-i586"}],"predecessor_ids":[],"arch":null,"eula_url":"","free":true,"description":null,"shortname":null}],"release_stage":"released","identifier":"SUSE_SLES","id":1038},{"extensions":[{"migration_extra":false,"friendly_name":"SUSE WebYaST 1.0","release_type":null,"former_identifier":"sle-11-WebYaST","name":"SUSE WebYaST","offline_predecessor_ids":[],"version":"1.0","recommended":false,"release_stage":"released","id":836,"identifier":"sle-11-WebYaST","extensions":[],"friendly_version":"1.0","arch":null,"eula_url":"","shortname":null,"description":null,"free":true,"cpe":null,"product_type":"extension","online_predecessor_ids":[],"product_class":"WEBYAST","repositories":[{"description":"SLE11-WebYaST-1.0-Updates for sle-11-i586","name":"SLE11-WebYaST-1.0-Updates","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-WebYaST-1.0-Updates/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","id":829,"enabled":true},{"url":"https://updates.suse.com/repo/$RCE/SLE11-WebYaST-1.0-Pool/sle-11-ia64/","distro_target":"sle-11-ia64","autorefresh":true,"id":830,"enabled":false,"description":"SLE11-WebYaST-1.0-Pool for sle-11-ia64","installer_updates":false,"name":"SLE11-WebYaST-1.0-Pool"},{"enabled":true,"id":831,"distro_target":"sle-11-ppc64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-WebYaST-1.0-Updates/sle-11-ppc64/","installer_updates":false,"name":"SLE11-WebYaST-1.0-Updates","description":"SLE11-WebYaST-1.0-Updates for sle-11-ppc64"},{"url":"https://updates.suse.com/repo/$RCE/SLE11-WebYaST-1.0-Pool/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","id":832,"enabled":false,"description":"SLE11-WebYaST-1.0-Pool for sle-11-i586","name":"SLE11-WebYaST-1.0-Pool","installer_updates":false},{"enabled":false,"id":833,"distro_target":"sle-11-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-WebYaST-1.0-Pool/sle-11-s390x/","installer_updates":false,"name":"SLE11-WebYaST-1.0-Pool","description":"SLE11-WebYaST-1.0-Pool for sle-11-s390x"},{"description":"SLE11-WebYaST-1.0-Updates for sle-11-s390x","installer_updates":false,"name":"SLE11-WebYaST-1.0-Updates","distro_target":"sle-11-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-WebYaST-1.0-Updates/sle-11-s390x/","enabled":true,"id":834},{"id":835,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-WebYaST-1.0-Updates/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64","name":"SLE11-WebYaST-1.0-Updates","installer_updates":false,"description":"SLE11-WebYaST-1.0-Updates for sle-11-x86_64"},{"name":"SLE11-WebYaST-1.0-Pool","installer_updates":false,"description":"SLE11-WebYaST-1.0-Pool for sle-11-x86_64","id":836,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-WebYaST-1.0-Pool/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64"},{"id":837,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-WebYaST-1.0-Updates/sle-11-ia64/","autorefresh":true,"distro_target":"sle-11-ia64","name":"SLE11-WebYaST-1.0-Updates","installer_updates":false,"description":"SLE11-WebYaST-1.0-Updates for sle-11-ia64"},{"url":"https://updates.suse.com/repo/$RCE/SLE11-WebYaST-1.0-Pool/sle-11-ppc64/","distro_target":"sle-11-ppc64","autorefresh":true,"id":838,"enabled":false,"description":"SLE11-WebYaST-1.0-Pool for sle-11-ppc64","installer_updates":false,"name":"SLE11-WebYaST-1.0-Pool"}],"predecessor_ids":[]},{"id":1062,"release_stage":"released","identifier":"sle-hae","extensions":[],"friendly_version":"11","former_identifier":"sle-hae","release_type":null,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise High Availability Extension 11 ia64","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise High Availability Extension","version":"11","recommended":false,"product_type":"extension","cpe":null,"online_predecessor_ids":[],"repositories":[{"description":"SLE11-HAE-Updates for sle-11-ia64","name":"SLE11-HAE-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-ia64","url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-Updates/sle-11-ia64/","enabled":true,"id":1067},{"description":"SLE11-HAE-Pool for sle-11-ia64","installer_updates":false,"name":"SLE11-HAE-Pool","distro_target":"sle-11-ia64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-Pool/sle-11-ia64/","enabled":false,"id":1068}],"product_class":"SLE-HAE-IA","predecessor_ids":[],"arch":"ia64","eula_url":"","free":false,"shortname":null,"description":null},{"offline_predecessor_ids":[],"name":"SUSE Linux Enterprise High Availability Extension","former_identifier":"sle-hae-SP1-migration","release_type":null,"friendly_name":"SUSE Linux Enterprise High Availability Extension 11 ia64 (Migration)","migration_extra":false,"recommended":false,"version":"11","extensions":[],"identifier":"sle-hae-SP1-migration","release_stage":"released","id":1065,"friendly_version":"11","eula_url":"","arch":"ia64","free":false,"description":null,"shortname":null,"product_type":"extension","cpe":null,"predecessor_ids":[],"online_predecessor_ids":[],"repositories":[{"autorefresh":true,"distro_target":"sle-11-ia64","url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP1-Pool/sle-11-ia64/","enabled":true,"id":1066,"description":"SLE11-HAE-SP1-Pool for sle-11-ia64","name":"SLE11-HAE-SP1-Pool","installer_updates":false}],"product_class":"SLE-HAE-IA"}],"identifier":"SUSE_SLES-SP1-migration","release_stage":"released","id":1039,"friendly_version":"11","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Server","release_type":null,"former_identifier":"SUSE_SLES-SP1-migration","friendly_name":"SUSE Linux Enterprise Server 11 ia64 (Migration)","migration_extra":false,"recommended":false,"version":"11","product_type":"base","cpe":null,"predecessor_ids":[],"product_class":"SLES-IA","online_predecessor_ids":[],"repositories":[{"id":991,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-Pool/sle-11-ia64/","distro_target":"sle-11-ia64","autorefresh":true,"installer_updates":false,"name":"SLES11-SP1-Pool","description":"SLES11-SP1-Pool for sle-11-ia64"}],"eula_url":"","arch":"ia64","free":false,"shortname":null,"description":null},{"friendly_version":"11 SP1","id":1040,"release_stage":"released","identifier":"sle-hae-SP2-migration","extensions":[],"version":"11.1","recommended":false,"friendly_name":"SUSE Linux Enterprise High Availability Extension 11 SP1 ppc (Migration)","migration_extra":false,"release_type":null,"former_identifier":"sle-hae-SP2-migration","name":"SUSE Linux Enterprise High Availability Extension","offline_predecessor_ids":[],"online_predecessor_ids":[],"repositories":[{"enabled":true,"id":1041,"distro_target":"sle-11-ppc64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP2-Pool/sle-11-ppc64/","installer_updates":false,"name":"SLE11-HAE-SP2-Pool","description":"SLE11-HAE-SP2-Pool for sle-11-ppc64"},{"autorefresh":true,"distro_target":"sle-11-ppc64","url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP2-Updates/sle-11-ppc64/","enabled":true,"id":1042,"description":"SLE11-HAE-SP2-Updates for sle-11-ppc64","name":"SLE11-HAE-SP2-Updates","installer_updates":false}],"product_class":"SLE-HAE-PPC","predecessor_ids":[],"cpe":null,"product_type":"extension","description":null,"shortname":null,"free":false,"arch":"ppc","eula_url":""},{"repositories":[{"name":"SLE11-HAE-SP1-Pool","installer_updates":false,"description":"SLE11-HAE-SP1-Pool for sle-11-ppc64","id":1043,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP1-Pool/sle-11-ppc64/","autorefresh":true,"distro_target":"sle-11-ppc64"},{"enabled":true,"id":1044,"autorefresh":true,"distro_target":"sle-11-ppc64","url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP1-Updates/sle-11-ppc64/","name":"SLE11-HAE-SP1-Updates","installer_updates":false,"description":"SLE11-HAE-SP1-Updates for sle-11-ppc64"}],"online_predecessor_ids":[],"product_class":"SLE-HAE-PPC","predecessor_ids":[],"product_type":"extension","cpe":null,"free":false,"description":null,"shortname":null,"arch":"ppc","eula_url":"","friendly_version":"11 SP1","release_stage":"released","identifier":"sle-hae","id":1041,"extensions":[],"version":"11.1","recommended":false,"former_identifier":"sle-hae","release_type":null,"friendly_name":"SUSE Linux Enterprise High Availability Extension 11 SP1 ppc","migration_extra":false,"offline_predecessor_ids":[],"name":"SUSE Linux Enterprise High Availability Extension"},{"product_type":"extension","cpe":null,"predecessor_ids":[],"online_predecessor_ids":[],"product_class":"SLE-HAE-PPC","repositories":[{"enabled":true,"id":1045,"autorefresh":true,"distro_target":"sle-11-ppc64","url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP3-Pool/sle-11-ppc64/","name":"SLE11-HAE-SP3-Pool","installer_updates":false,"description":"SLE11-HAE-SP3-Pool for sle-11-ppc64"},{"description":"SLE11-HAE-SP3-Updates for sle-11-ppc64","name":"SLE11-HAE-SP3-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-ppc64","url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP3-Updates/sle-11-ppc64/","enabled":true,"id":1046}],"eula_url":"","arch":"ppc64","free":false,"description":null,"shortname":null,"extensions":[],"release_stage":"released","identifier":"sle-hae","id":1042,"friendly_version":"11 SP3","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise High Availability Extension","release_type":null,"former_identifier":"sle-hae","friendly_name":"SUSE Linux Enterprise High Availability Extension 11 SP3 ppc64","migration_extra":false,"recommended":false,"version":"11.3"},{"offline_predecessor_ids":[],"name":"SUSE Linux Enterprise High Availability Extension","former_identifier":"sle-hae-SP1-migration","release_type":null,"friendly_name":"SUSE Linux Enterprise High Availability Extension 11 ppc64 (Migration)","migration_extra":false,"recommended":false,"version":"11","extensions":[],"release_stage":"released","identifier":"sle-hae-SP1-migration","id":1043,"friendly_version":"11","eula_url":"","arch":"ppc64","free":false,"shortname":null,"description":null,"product_type":"extension","cpe":null,"predecessor_ids":[],"online_predecessor_ids":[],"repositories":[{"id":1043,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP1-Pool/sle-11-ppc64/","distro_target":"sle-11-ppc64","autorefresh":true,"installer_updates":false,"name":"SLE11-HAE-SP1-Pool","description":"SLE11-HAE-SP1-Pool for sle-11-ppc64"}],"product_class":"SLE-HAE-PPC"},{"extensions":[],"release_stage":"released","identifier":"sle-hae","id":1044,"friendly_version":"11 SP2","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise High Availability Extension","former_identifier":"sle-hae","release_type":null,"friendly_name":"SUSE Linux Enterprise High Availability Extension 11 SP2 ppc64","migration_extra":false,"recommended":false,"version":"11.2","product_type":"extension","cpe":null,"predecessor_ids":[],"product_class":"SLE-HAE-PPC","online_predecessor_ids":[],"repositories":[{"distro_target":"sle-11-ppc64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP2-Pool/sle-11-ppc64/","enabled":true,"id":1041,"description":"SLE11-HAE-SP2-Pool for sle-11-ppc64","installer_updates":false,"name":"SLE11-HAE-SP2-Pool"},{"url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP2-Updates/sle-11-ppc64/","distro_target":"sle-11-ppc64","autorefresh":true,"id":1042,"enabled":true,"description":"SLE11-HAE-SP2-Updates for sle-11-ppc64","installer_updates":false,"name":"SLE11-HAE-SP2-Updates"}],"eula_url":"","arch":"ppc64","free":false,"description":null,"shortname":null},{"product_type":"extension","cpe":null,"online_predecessor_ids":[],"repositories":[{"description":"SLE11-HAE-Updates for sle-11-ppc64","installer_updates":false,"name":"SLE11-HAE-Updates","distro_target":"sle-11-ppc64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-Updates/sle-11-ppc64/","enabled":true,"id":1047},{"enabled":false,"id":1048,"distro_target":"sle-11-ppc64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-Pool/sle-11-ppc64/","installer_updates":false,"name":"SLE11-HAE-Pool","description":"SLE11-HAE-Pool for sle-11-ppc64"}],"product_class":"SLE-HAE-PPC","predecessor_ids":[],"arch":"ppc64","eula_url":"","free":false,"description":null,"shortname":null,"identifier":"sle-hae","release_stage":"released","id":1045,"extensions":[],"friendly_version":"11","former_identifier":"sle-hae","release_type":null,"friendly_name":"SUSE Linux Enterprise High Availability Extension 11 ppc64","migration_extra":false,"offline_predecessor_ids":[],"name":"SUSE Linux Enterprise High Availability Extension","version":"11","recommended":false},{"arch":"ppc64","eula_url":"","free":false,"shortname":null,"description":null,"product_type":"extension","cpe":null,"online_predecessor_ids":[],"product_class":"SLE-HAE-PPC","repositories":[{"id":1043,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP1-Pool/sle-11-ppc64/","autorefresh":true,"distro_target":"sle-11-ppc64","name":"SLE11-HAE-SP1-Pool","installer_updates":false,"description":"SLE11-HAE-SP1-Pool for sle-11-ppc64"},{"name":"SLE11-HAE-SP1-Updates","installer_updates":false,"description":"SLE11-HAE-SP1-Updates for sle-11-ppc64","enabled":true,"id":1044,"autorefresh":true,"distro_target":"sle-11-ppc64","url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP1-Updates/sle-11-ppc64/"}],"predecessor_ids":[],"former_identifier":"sle-hae","release_type":null,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise High Availability Extension 11 SP1 ppc64","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise High Availability Extension","version":"11.1","recommended":false,"release_stage":"released","id":1046,"identifier":"sle-hae","extensions":[],"friendly_version":"11 SP1"},{"friendly_version":"11 SP2","release_stage":"released","id":1047,"identifier":"sle-hae","extensions":[],"version":"11.2","recommended":false,"release_type":null,"former_identifier":"sle-hae","friendly_name":"SUSE Linux Enterprise High Availability Extension 11 SP2 ppc","migration_extra":false,"offline_predecessor_ids":[],"name":"SUSE Linux Enterprise High Availability Extension","online_predecessor_ids":[],"product_class":"SLE-HAE-PPC","repositories":[{"enabled":true,"id":1041,"distro_target":"sle-11-ppc64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP2-Pool/sle-11-ppc64/","installer_updates":false,"name":"SLE11-HAE-SP2-Pool","description":"SLE11-HAE-SP2-Pool for sle-11-ppc64"},{"enabled":true,"id":1042,"distro_target":"sle-11-ppc64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP2-Updates/sle-11-ppc64/","installer_updates":false,"name":"SLE11-HAE-SP2-Updates","description":"SLE11-HAE-SP2-Updates for sle-11-ppc64"}],"predecessor_ids":[],"product_type":"extension","cpe":null,"free":false,"description":null,"shortname":null,"arch":"ppc","eula_url":""},{"friendly_version":"11 SP1","extensions":[],"release_stage":"released","identifier":"sle-hae-SP2-migration","id":1048,"recommended":false,"version":"11.1","name":"SUSE Linux Enterprise High Availability Extension","offline_predecessor_ids":[],"friendly_name":"SUSE Linux Enterprise High Availability Extension 11 SP1 ppc64 (Migration)","migration_extra":false,"release_type":null,"former_identifier":"sle-hae-SP2-migration","predecessor_ids":[],"repositories":[{"description":"SLE11-HAE-SP2-Pool for sle-11-ppc64","name":"SLE11-HAE-SP2-Pool","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP2-Pool/sle-11-ppc64/","autorefresh":true,"distro_target":"sle-11-ppc64","id":1041,"enabled":true},{"enabled":true,"id":1042,"autorefresh":true,"distro_target":"sle-11-ppc64","url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP2-Updates/sle-11-ppc64/","name":"SLE11-HAE-SP2-Updates","installer_updates":false,"description":"SLE11-HAE-SP2-Updates for sle-11-ppc64"}],"online_predecessor_ids":[],"product_class":"SLE-HAE-PPC","cpe":null,"product_type":"extension","shortname":null,"description":null,"free":false,"eula_url":"","arch":"ppc64"},{"release_stage":"released","id":1049,"identifier":"sle-hae-SP1-migration","extensions":[],"friendly_version":"11","release_type":null,"former_identifier":"sle-hae-SP1-migration","friendly_name":"SUSE Linux Enterprise High Availability Extension 11 ppc (Migration)","migration_extra":false,"offline_predecessor_ids":[],"name":"SUSE Linux Enterprise High Availability Extension","version":"11","recommended":false,"product_type":"extension","cpe":null,"online_predecessor_ids":[],"product_class":"SLE-HAE-PPC","repositories":[{"description":"SLE11-HAE-SP1-Pool for sle-11-ppc64","name":"SLE11-HAE-SP1-Pool","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP1-Pool/sle-11-ppc64/","autorefresh":true,"distro_target":"sle-11-ppc64","id":1043,"enabled":true}],"predecessor_ids":[],"arch":"ppc","eula_url":"","free":false,"shortname":null,"description":null},{"cpe":null,"product_type":"extension","repositories":[{"enabled":true,"id":1045,"autorefresh":true,"distro_target":"sle-11-ppc64","url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP3-Pool/sle-11-ppc64/","name":"SLE11-HAE-SP3-Pool","installer_updates":false,"description":"SLE11-HAE-SP3-Pool for sle-11-ppc64"},{"id":1046,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP3-Updates/sle-11-ppc64/","distro_target":"sle-11-ppc64","autorefresh":true,"installer_updates":false,"name":"SLE11-HAE-SP3-Updates","description":"SLE11-HAE-SP3-Updates for sle-11-ppc64"}],"online_predecessor_ids":[],"product_class":"SLE-HAE-PPC","predecessor_ids":[],"arch":"ppc64","eula_url":"","description":null,"shortname":null,"free":false,"release_stage":"released","id":1050,"identifier":"sle-hae-SP3-migration","extensions":[],"friendly_version":"11 SP2","friendly_name":"SUSE Linux Enterprise High Availability Extension 11 SP2 ppc64 (Migration)","migration_extra":false,"release_type":null,"former_identifier":"sle-hae-SP3-migration","name":"SUSE Linux Enterprise High Availability Extension","offline_predecessor_ids":[],"version":"11.2","recommended":false},{"arch":null,"eula_url":"","description":null,"shortname":null,"free":false,"cpe":null,"product_type":"extension","online_predecessor_ids":[],"product_class":"13319","repositories":[{"name":"SLERT11-SP1-Updates","installer_updates":false,"description":"SLERT11-SP1-Updates for sle-11-x86_64","id":1049,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLERT11-SP1-Updates/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64"},{"description":"SLERT11-SP1-Pool for sle-11-x86_64","name":"SLERT11-SP1-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLERT11-SP1-Pool/sle-11-x86_64/","enabled":true,"id":1050}],"predecessor_ids":[],"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Real Time 11 SP1","release_type":null,"former_identifier":"SUSE-Linux-Enterprise-RT","name":"SUSE Linux Enterprise Real Time","offline_predecessor_ids":[],"version":"11.1","recommended":false,"release_stage":"released","identifier":"SUSE-Linux-Enterprise-RT","id":1051,"extensions":[],"friendly_version":"11 SP1"},{"description":null,"shortname":null,"free":false,"eula_url":"","arch":null,"predecessor_ids":[],"product_class":"13319","online_predecessor_ids":[],"repositories":[{"id":1051,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLERT11-SP2-Updates/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64","name":"SLERT11-SP2-Updates","installer_updates":false,"description":"SLERT11-SP2-Updates for sle-11-x86_64"},{"url":"https://updates.suse.com/repo/$RCE/SLERT11-SP2-Pool/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":false,"id":1052,"enabled":true,"description":"SLERT11-SP2-Pool for sle-11-x86_64","installer_updates":false,"name":"SLERT11-SP2-Pool"}],"cpe":null,"product_type":"extension","recommended":false,"version":"11.2","name":"SUSE Linux Enterprise Real Time","offline_predecessor_ids":[],"friendly_name":"SUSE Linux Enterprise Real Time 11 SP2","migration_extra":false,"release_type":null,"former_identifier":"SUSE-Linux-Enterprise-RT","friendly_version":"11 SP2","extensions":[],"id":1052,"release_stage":"released","identifier":"SUSE-Linux-Enterprise-RT"},{"friendly_version":"11 SP1","id":1053,"release_stage":"released","identifier":"SUSE-Linux-Enterprise-RT-sp2-migration","extensions":[],"version":"11.1","recommended":false,"friendly_name":"SUSE Linux Enterprise Real Time 11 SP1 (Migration)","migration_extra":false,"former_identifier":"SUSE-Linux-Enterprise-RT-sp2-migration","release_type":null,"name":"SUSE Linux Enterprise Real Time","offline_predecessor_ids":[],"repositories":[{"name":"SLERT11-SP2-Updates","installer_updates":false,"description":"SLERT11-SP2-Updates for sle-11-x86_64","id":1051,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLERT11-SP2-Updates/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64"},{"name":"SLERT11-SP2-Pool","installer_updates":false,"description":"SLERT11-SP2-Pool for sle-11-x86_64","enabled":true,"id":1052,"autorefresh":false,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLERT11-SP2-Pool/sle-11-x86_64/"}],"online_predecessor_ids":[],"product_class":"13319","predecessor_ids":[],"cpe":null,"product_type":"extension","shortname":null,"description":null,"free":false,"arch":null,"eula_url":""},{"friendly_version":"10","release_stage":"released","identifier":"SUSE-Linux-Enterprise-RT","id":1054,"extensions":[{"shortname":null,"description":null,"free":true,"eula_url":"","arch":null,"predecessor_ids":[],"online_predecessor_ids":[],"repositories":[{"enabled":true,"id":1294,"distro_target":"sles-10-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sles-10-s390x/","installer_updates":false,"name":"SLE10-SDK-SP1-Online","description":"SLE10-SDK-SP1-Online for sles-10-s390x"},{"name":"SLE10-SDK-SP1-Online","installer_updates":false,"description":"SLE10-SDK-SP1-Online for sles-10-x86_64","id":1295,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sles-10-x86_64/","autorefresh":true,"distro_target":"sles-10-x86_64"},{"id":1296,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sled-10-i586/","distro_target":"sled-10-i586","autorefresh":true,"installer_updates":false,"name":"SLE10-SDK-SP1-Online","description":"SLE10-SDK-SP1-Online for sled-10-i586"},{"distro_target":"sles-10-ppc","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sles-10-ppc/","enabled":true,"id":1297,"description":"SLE10-SDK-SP1-Online for sles-10-ppc","installer_updates":false,"name":"SLE10-SDK-SP1-Online"},{"enabled":true,"id":1301,"distro_target":"sles-10-ia64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sles-10-ia64/","installer_updates":false,"name":"SLE10-SDK-SP1-Online","description":"SLE10-SDK-SP1-Online for sles-10-ia64"},{"autorefresh":true,"distro_target":"sles-10-i586","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sles-10-i586/","enabled":true,"id":1303,"description":"SLE10-SDK-SP1-Online for sles-10-i586","name":"SLE10-SDK-SP1-Online","installer_updates":false},{"description":"SLE10-SDK-SP1-Online for sled-10-x86_64","installer_updates":false,"name":"SLE10-SDK-SP1-Online","distro_target":"sled-10-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sled-10-x86_64/","enabled":true,"id":1307}],"product_class":"SLE-SDK","cpe":null,"product_type":"extension","recommended":false,"version":"10","name":"SUSE Linux Enterprise Software Development Kit","offline_predecessor_ids":[],"friendly_name":"SUSE Linux Enterprise Software Development Kit 10 (Migration)","migration_extra":false,"former_identifier":"SUSE-Linux-Enterprise-SDK-SP1-migration","release_type":null,"friendly_version":"10","extensions":[],"release_stage":"released","id":1175,"identifier":"SUSE-Linux-Enterprise-SDK-SP1-migration"},{"release_stage":"released","id":1178,"identifier":"SUSE-Linux-Enterprise-SDK-SP2-migration","extensions":[],"friendly_version":"10","migration_extra":false,"friendly_name":"SUSE Linux Enterprise Software Development Kit 10 online (Migration)","former_identifier":"SUSE-Linux-Enterprise-SDK-SP2-migration","release_type":"online","name":"SUSE Linux Enterprise Software Development Kit","offline_predecessor_ids":[],"version":"10","recommended":false,"cpe":null,"product_type":"extension","repositories":[{"autorefresh":true,"distro_target":"sled-10-i586","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sled-10-i586/","enabled":true,"id":1308,"description":"SLE10-SDK-SP2-Online for sled-10-i586","name":"SLE10-SDK-SP2-Online","installer_updates":false},{"name":"SLE10-SDK-SP2-Online","installer_updates":false,"description":"SLE10-SDK-SP2-Online for sles-10-ppc","id":1312,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sles-10-ppc/","autorefresh":true,"distro_target":"sles-10-ppc"},{"description":"SLE10-SDK-SP2-Online for sles-10-i586","name":"SLE10-SDK-SP2-Online","installer_updates":false,"autorefresh":true,"distro_target":"sles-10-i586","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sles-10-i586/","enabled":true,"id":1313},{"enabled":true,"id":1314,"distro_target":"sled-10-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sled-10-x86_64/","installer_updates":false,"name":"SLE10-SDK-SP2-Online","description":"SLE10-SDK-SP2-Online for sled-10-x86_64"},{"enabled":true,"id":1316,"autorefresh":true,"distro_target":"sles-10-ia64","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sles-10-ia64/","name":"SLE10-SDK-SP2-Online","installer_updates":false,"description":"SLE10-SDK-SP2-Online for sles-10-ia64"},{"description":"SLE10-SDK-SP2-Online for sles-10-s390x","name":"SLE10-SDK-SP2-Online","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sles-10-s390x/","autorefresh":true,"distro_target":"sles-10-s390x","id":1318,"enabled":true},{"id":1321,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sles-10-x86_64/","distro_target":"sles-10-x86_64","autorefresh":true,"installer_updates":false,"name":"SLE10-SDK-SP2-Online","description":"SLE10-SDK-SP2-Online for sles-10-x86_64"}],"online_predecessor_ids":[],"product_class":"SLE-SDK","predecessor_ids":[],"arch":null,"eula_url":"","shortname":null,"description":null,"free":true},{"eula_url":"","arch":null,"free":true,"shortname":null,"description":null,"product_type":"extension","cpe":null,"predecessor_ids":[],"online_predecessor_ids":[],"product_class":"SLE-SDK","repositories":[{"id":1324,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sled-10-i586/","distro_target":"sled-10-i586","autorefresh":true,"installer_updates":false,"name":"SLE10-SDK-SP3-Online","description":"SLE10-SDK-SP3-Online for sled-10-i586"},{"description":"SLE10-SDK-SP3-Online for sled-10-x86_64","name":"SLE10-SDK-SP3-Online","installer_updates":false,"autorefresh":true,"distro_target":"sled-10-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sled-10-x86_64/","enabled":true,"id":1326},{"description":"SLE10-SDK-SP3-Online for sles-10-ia64","name":"SLE10-SDK-SP3-Online","installer_updates":false,"autorefresh":true,"distro_target":"sles-10-ia64","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sles-10-ia64/","enabled":true,"id":1328},{"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sles-10-i586/","autorefresh":true,"distro_target":"sles-10-i586","id":1330,"enabled":true,"description":"SLE10-SDK-SP3-Online for sles-10-i586","name":"SLE10-SDK-SP3-Online","installer_updates":false},{"installer_updates":false,"name":"SLE10-SDK-SP3-Online","description":"SLE10-SDK-SP3-Online for sles-10-s390x","enabled":true,"id":1335,"distro_target":"sles-10-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sles-10-s390x/"},{"name":"SLE10-SDK-SP3-Online","installer_updates":false,"description":"SLE10-SDK-SP3-Online for sles-10-x86_64","enabled":true,"id":1341,"autorefresh":true,"distro_target":"sles-10-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sles-10-x86_64/"},{"description":"SLE10-SDK-SP3-Online for sles-10-ppc","installer_updates":false,"name":"SLE10-SDK-SP3-Online","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sles-10-ppc/","distro_target":"sles-10-ppc","autorefresh":true,"id":1342,"enabled":true}],"offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Software Development Kit","release_type":null,"former_identifier":"SUSE-Linux-Enterprise-SDK-SP3-migration","friendly_name":"SUSE Linux Enterprise Software Development Kit 10 (Migration)","migration_extra":false,"recommended":false,"version":"10","extensions":[],"id":1180,"release_stage":"released","identifier":"SUSE-Linux-Enterprise-SDK-SP3-migration","friendly_version":"10"},{"version":"10","recommended":false,"friendly_name":"SUSE Linux Enterprise Software Development Kit 10 (Migration)","migration_extra":false,"former_identifier":"SUSE-Linux-Enterprise-SDK-SP4-migration","release_type":null,"name":"SUSE Linux Enterprise Software Development Kit","offline_predecessor_ids":[],"friendly_version":"10","id":1182,"release_stage":"released","identifier":"SUSE-Linux-Enterprise-SDK-SP4-migration","extensions":[],"description":null,"shortname":null,"free":true,"arch":null,"eula_url":"","product_class":"SLE-SDK","online_predecessor_ids":[],"repositories":[{"description":"SLE10-SDK-SP4-Online for sles-10-x86_64","installer_updates":false,"name":"SLE10-SDK-SP4-Online","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP4-Online/sles-10-x86_64/","distro_target":"sles-10-x86_64","autorefresh":true,"id":1357,"enabled":true},{"description":"SLE10-SDK-SP4-Online for sles-10-i586","name":"SLE10-SDK-SP4-Online","installer_updates":false,"autorefresh":true,"distro_target":"sles-10-i586","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP4-Online/sles-10-i586/","enabled":true,"id":1358},{"installer_updates":false,"name":"SLE10-SDK-SP4-Online","description":"SLE10-SDK-SP4-Online for sles-10-ia64","enabled":true,"id":1359,"distro_target":"sles-10-ia64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP4-Online/sles-10-ia64/"},{"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP4-Online/sled-10-x86_64/","autorefresh":true,"distro_target":"sled-10-x86_64","id":1360,"enabled":true,"description":"SLE10-SDK-SP4-Online for sled-10-x86_64","name":"SLE10-SDK-SP4-Online","installer_updates":false},{"description":"SLE10-SDK-SP4-Online for sled-10-i586","installer_updates":false,"name":"SLE10-SDK-SP4-Online","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP4-Online/sled-10-i586/","distro_target":"sled-10-i586","autorefresh":true,"id":1361,"enabled":true},{"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP4-Online/sles-10-ppc/","distro_target":"sles-10-ppc","autorefresh":true,"id":1362,"enabled":true,"description":"SLE10-SDK-SP4-Online for sles-10-ppc","installer_updates":false,"name":"SLE10-SDK-SP4-Online"},{"description":"SLE10-SDK-SP4-Online for sles-10-s390x","name":"SLE10-SDK-SP4-Online","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP4-Online/sles-10-s390x/","autorefresh":true,"distro_target":"sles-10-s390x","id":1363,"enabled":true}],"predecessor_ids":[],"cpe":null,"product_type":"extension"}],"version":"10","recommended":false,"release_type":null,"former_identifier":"SUSE-Linux-Enterprise-RT","migration_extra":false,"friendly_name":"SUSE Linux Enterprise Real Time 10","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Real Time","repositories":[{"enabled":false,"id":634,"distro_target":"sles-10-ppc","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-Debuginfo-Updates/sles-10-ppc/","installer_updates":false,"name":"SLE10-Debuginfo-Updates","description":"SLE10-Debuginfo-Updates for sles-10-ppc"},{"description":"SLE10-Debuginfo-Updates for sles-10-ia64","name":"SLE10-Debuginfo-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sles-10-ia64","url":"https://updates.suse.com/repo/$RCE/SLE10-Debuginfo-Updates/sles-10-ia64/","enabled":false,"id":635},{"url":"https://updates.suse.com/repo/$RCE/SLE10-Debuginfo-Updates/sles-10-s390x/","autorefresh":true,"distro_target":"sles-10-s390x","id":638,"enabled":false,"description":"SLE10-Debuginfo-Updates for sles-10-s390x","name":"SLE10-Debuginfo-Updates","installer_updates":false},{"enabled":false,"id":741,"autorefresh":true,"distro_target":"sles-10-i586","url":"https://updates.suse.com/repo/$RCE/SLE10-Debuginfo-Updates/sles-10-i586/","name":"SLE10-Debuginfo-Updates","installer_updates":false,"description":"SLE10-Debuginfo-Updates for sles-10-i586"},{"distro_target":"sles-10-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-Debuginfo-Updates/sles-10-x86_64/","enabled":false,"id":805,"description":"SLE10-Debuginfo-Updates for sles-10-x86_64","installer_updates":false,"name":"SLE10-Debuginfo-Updates"},{"distro_target":"sled-10-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-Debuginfo-Updates/sled-10-i586/","enabled":false,"id":859,"description":"SLE10-Debuginfo-Updates for sled-10-i586","installer_updates":false,"name":"SLE10-Debuginfo-Updates"},{"url":"https://updates.suse.com/repo/$RCE/SLE10-Debuginfo-Updates/sled-10-x86_64/","distro_target":"sled-10-x86_64","autorefresh":true,"id":893,"enabled":false,"description":"SLE10-Debuginfo-Updates for sled-10-x86_64","installer_updates":false,"name":"SLE10-Debuginfo-Updates"},{"installer_updates":false,"name":"SLERT10-Updates","description":"SLERT10-Updates for sles-10-i586","enabled":true,"id":1053,"distro_target":"sles-10-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLERT10-Updates/sles-10-i586/"},{"url":"https://updates.suse.com/repo/$RCE/SLERT10-Updates/sles-10-x86_64/","distro_target":"sles-10-x86_64","autorefresh":true,"id":1054,"enabled":true,"description":"SLERT10-Updates for sles-10-x86_64","installer_updates":false,"name":"SLERT10-Updates"}],"online_predecessor_ids":[],"product_class":"13319","predecessor_ids":[],"product_type":"base","cpe":null,"free":false,"description":null,"shortname":null,"arch":null,"eula_url":""},{"cpe":null,"product_type":"extension","repositories":[{"id":634,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-Debuginfo-Updates/sles-10-ppc/","autorefresh":true,"distro_target":"sles-10-ppc","name":"SLE10-Debuginfo-Updates","installer_updates":false,"description":"SLE10-Debuginfo-Updates for sles-10-ppc"},{"description":"SLE10-Debuginfo-Updates for sles-10-ia64","name":"SLE10-Debuginfo-Updates","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-Debuginfo-Updates/sles-10-ia64/","autorefresh":true,"distro_target":"sles-10-ia64","id":635,"enabled":false},{"autorefresh":true,"distro_target":"sles-10-s390x","url":"https://updates.suse.com/repo/$RCE/SLE10-Debuginfo-Updates/sles-10-s390x/","enabled":false,"id":638,"description":"SLE10-Debuginfo-Updates for sles-10-s390x","name":"SLE10-Debuginfo-Updates","installer_updates":false},{"name":"SLE10-Debuginfo-Updates","installer_updates":false,"description":"SLE10-Debuginfo-Updates for sles-10-i586","id":741,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-Debuginfo-Updates/sles-10-i586/","autorefresh":true,"distro_target":"sles-10-i586"},{"distro_target":"sles-10-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-Debuginfo-Updates/sles-10-x86_64/","enabled":false,"id":805,"description":"SLE10-Debuginfo-Updates for sles-10-x86_64","installer_updates":false,"name":"SLE10-Debuginfo-Updates"},{"autorefresh":true,"distro_target":"sled-10-i586","url":"https://updates.suse.com/repo/$RCE/SLE10-Debuginfo-Updates/sled-10-i586/","enabled":false,"id":859,"description":"SLE10-Debuginfo-Updates for sled-10-i586","name":"SLE10-Debuginfo-Updates","installer_updates":false},{"name":"SLE10-Debuginfo-Updates","installer_updates":false,"description":"SLE10-Debuginfo-Updates for sled-10-x86_64","enabled":false,"id":893,"autorefresh":true,"distro_target":"sled-10-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE10-Debuginfo-Updates/sled-10-x86_64/"},{"description":"SLERT10-Updates for sles-10-i586","name":"SLERT10-Updates","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLERT10-Updates/sles-10-i586/","autorefresh":true,"distro_target":"sles-10-i586","id":1053,"enabled":true},{"description":"SLERT10-Updates for sles-10-x86_64","name":"SLERT10-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sles-10-x86_64","url":"https://updates.suse.com/repo/$RCE/SLERT10-Updates/sles-10-x86_64/","enabled":true,"id":1054}],"online_predecessor_ids":[],"product_class":"13319","predecessor_ids":[],"arch":null,"eula_url":"","shortname":null,"description":null,"free":false,"identifier":"SUSE-Linux-Enterprise-RT","release_stage":"released","id":1055,"extensions":[],"friendly_version":"10 SP2 SP0","friendly_name":"SUSE Linux Enterprise Real Time 10 SP2 SP0","migration_extra":false,"release_type":null,"former_identifier":"SUSE-Linux-Enterprise-RT","name":"SUSE Linux Enterprise Real Time","offline_predecessor_ids":[],"version":"10.2.0","recommended":false},{"version":"10.2.2","recommended":false,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Real Time 10 SP2 SP2","release_type":null,"former_identifier":"SUSE-Linux-Enterprise-RT","name":"SUSE Linux Enterprise Real Time","offline_predecessor_ids":[],"friendly_version":"10 SP2 SP2","release_stage":"released","identifier":"SUSE-Linux-Enterprise-RT","id":1056,"extensions":[],"description":null,"shortname":null,"free":false,"arch":null,"eula_url":"","online_predecessor_ids":[],"product_class":"13319","repositories":[{"url":"https://updates.suse.com/repo/$RCE/SLERT10-SP2-Updates/sles-10-i586/","autorefresh":true,"distro_target":"sles-10-i586","id":1055,"enabled":true,"description":"SLERT10-SP2-Updates for sles-10-i586","name":"SLERT10-SP2-Updates","installer_updates":false},{"url":"https://updates.suse.com/repo/$RCE/SLERT10-SP2-Updates/sles-10-x86_64/","distro_target":"sles-10-x86_64","autorefresh":true,"id":1056,"enabled":true,"description":"SLERT10-SP2-Updates for sles-10-x86_64","installer_updates":false,"name":"SLERT10-SP2-Updates"}],"predecessor_ids":[],"cpe":null,"product_type":"base"},{"cpe":null,"product_type":"base","predecessor_ids":[],"online_predecessor_ids":[],"product_class":"13319","repositories":[{"description":"SLERT10-SP3-Updates for sles-10-x86_64","name":"SLERT10-SP3-Updates","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLERT10-SP3-Updates/sles-10-x86_64/","autorefresh":true,"distro_target":"sles-10-x86_64","id":1057,"enabled":true},{"url":"https://updates.suse.com/repo/$RCE/SLERT10-SP3-Pool/sles-10-x86_64/","distro_target":"sles-10-x86_64","autorefresh":false,"id":1058,"enabled":false,"description":"SLERT10-SP3-Pool for sles-10-x86_64","installer_updates":false,"name":"SLERT10-SP3-Pool"},{"enabled":false,"id":1059,"autorefresh":false,"distro_target":"sles-10-i586","url":"https://updates.suse.com/repo/$RCE/SLERT10-SP3-Pool/sles-10-i586/","name":"SLERT10-SP3-Pool","installer_updates":false,"description":"SLERT10-SP3-Pool for sles-10-i586"},{"name":"SLERT10-SP3-Updates","installer_updates":false,"description":"SLERT10-SP3-Updates for sles-10-i586","enabled":true,"id":1060,"autorefresh":true,"distro_target":"sles-10-i586","url":"https://updates.suse.com/repo/$RCE/SLERT10-SP3-Updates/sles-10-i586/"}],"eula_url":"","arch":null,"description":null,"shortname":null,"free":false,"extensions":[{"release_stage":"released","id":1179,"identifier":"SUSE-Linux-Enterprise-SDK-SP3","extensions":[],"friendly_version":"10 SP3","friendly_name":"SUSE Linux Enterprise Software Development Kit 10 SP3","migration_extra":false,"former_identifier":"SUSE-Linux-Enterprise-SDK-SP3","release_type":null,"name":"SUSE Linux Enterprise Software Development Kit","offline_predecessor_ids":[],"version":"10","recommended":false,"cpe":null,"product_type":"extension","repositories":[{"name":"SLE10-SDK-SP3-Pool","installer_updates":false,"description":"SLE10-SDK-SP3-Pool for sles-10-ppc","id":1322,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Pool/sles-10-ppc/","autorefresh":false,"distro_target":"sles-10-ppc"},{"id":1323,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Pool/sles-10-x86_64/","autorefresh":false,"distro_target":"sles-10-x86_64","name":"SLE10-SDK-SP3-Pool","installer_updates":false,"description":"SLE10-SDK-SP3-Pool for sles-10-x86_64"},{"autorefresh":true,"distro_target":"sled-10-i586","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sled-10-i586/","enabled":true,"id":1324,"description":"SLE10-SDK-SP3-Online for sled-10-i586","name":"SLE10-SDK-SP3-Online","installer_updates":false},{"autorefresh":true,"distro_target":"sled-10-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Updates/sled-10-x86_64/","enabled":true,"id":1325,"description":"SLE10-SDK-SP3-Updates for sled-10-x86_64","name":"SLE10-SDK-SP3-Updates","installer_updates":false},{"installer_updates":false,"name":"SLE10-SDK-SP3-Online","description":"SLE10-SDK-SP3-Online for sled-10-x86_64","enabled":true,"id":1326,"distro_target":"sled-10-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sled-10-x86_64/"},{"installer_updates":false,"name":"SLE10-SDK-SP3-Pool","description":"SLE10-SDK-SP3-Pool for sled-10-x86_64","enabled":true,"id":1327,"distro_target":"sled-10-x86_64","autorefresh":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Pool/sled-10-x86_64/"},{"name":"SLE10-SDK-SP3-Online","installer_updates":false,"description":"SLE10-SDK-SP3-Online for sles-10-ia64","id":1328,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sles-10-ia64/","autorefresh":true,"distro_target":"sles-10-ia64"},{"installer_updates":false,"name":"SLE10-SDK-SP3-Updates","description":"SLE10-SDK-SP3-Updates for sles-10-ia64","id":1329,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Updates/sles-10-ia64/","distro_target":"sles-10-ia64","autorefresh":true},{"installer_updates":false,"name":"SLE10-SDK-SP3-Online","description":"SLE10-SDK-SP3-Online for sles-10-i586","enabled":true,"id":1330,"distro_target":"sles-10-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sles-10-i586/"},{"distro_target":"sles-10-ia64","autorefresh":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Pool/sles-10-ia64/","enabled":true,"id":1331,"description":"SLE10-SDK-SP3-Pool for sles-10-ia64","installer_updates":false,"name":"SLE10-SDK-SP3-Pool"},{"name":"SLE10-SDK-SP3-Updates","installer_updates":false,"description":"SLE10-SDK-SP3-Updates for sles-10-x86_64","enabled":true,"id":1332,"autorefresh":true,"distro_target":"sles-10-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Updates/sles-10-x86_64/"},{"id":1333,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Pool/sles-10-i586/","distro_target":"sles-10-i586","autorefresh":false,"installer_updates":false,"name":"SLE10-SDK-SP3-Pool","description":"SLE10-SDK-SP3-Pool for sles-10-i586"},{"name":"SLE10-SDK-SP3-Updates","installer_updates":false,"description":"SLE10-SDK-SP3-Updates for sles-10-i586","enabled":true,"id":1334,"autorefresh":true,"distro_target":"sles-10-i586","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Updates/sles-10-i586/"},{"description":"SLE10-SDK-SP3-Online for sles-10-s390x","name":"SLE10-SDK-SP3-Online","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sles-10-s390x/","autorefresh":true,"distro_target":"sles-10-s390x","id":1335,"enabled":true},{"description":"SLE10-SDK-SP3-Updates for sles-10-ppc","installer_updates":false,"name":"SLE10-SDK-SP3-Updates","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Updates/sles-10-ppc/","distro_target":"sles-10-ppc","autorefresh":true,"id":1336,"enabled":true},{"id":1337,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Pool/sles-10-s390x/","distro_target":"sles-10-s390x","autorefresh":false,"installer_updates":false,"name":"SLE10-SDK-SP3-Pool","description":"SLE10-SDK-SP3-Pool for sles-10-s390x"},{"description":"SLE10-SDK-SP3-Pool for sled-10-i586","installer_updates":false,"name":"SLE10-SDK-SP3-Pool","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Pool/sled-10-i586/","distro_target":"sled-10-i586","autorefresh":false,"id":1338,"enabled":true},{"name":"SLE10-SDK-SP3-Updates","installer_updates":false,"description":"SLE10-SDK-SP3-Updates for sles-10-s390x","id":1339,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Updates/sles-10-s390x/","autorefresh":true,"distro_target":"sles-10-s390x"},{"description":"SLE10-SDK-SP3-Updates for sled-10-i586","installer_updates":false,"name":"SLE10-SDK-SP3-Updates","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Updates/sled-10-i586/","distro_target":"sled-10-i586","autorefresh":true,"id":1340,"enabled":true},{"enabled":true,"id":1341,"distro_target":"sles-10-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sles-10-x86_64/","installer_updates":false,"name":"SLE10-SDK-SP3-Online","description":"SLE10-SDK-SP3-Online for sles-10-x86_64"},{"installer_updates":false,"name":"SLE10-SDK-SP3-Online","description":"SLE10-SDK-SP3-Online for sles-10-ppc","enabled":true,"id":1342,"distro_target":"sles-10-ppc","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sles-10-ppc/"}],"online_predecessor_ids":[],"product_class":"SLE-SDK","predecessor_ids":[],"arch":null,"eula_url":"","shortname":null,"description":null,"free":true},{"product_class":"SLE-SDK","online_predecessor_ids":[],"repositories":[{"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sled-10-i586/","autorefresh":true,"distro_target":"sled-10-i586","id":1324,"enabled":true,"description":"SLE10-SDK-SP3-Online for sled-10-i586","name":"SLE10-SDK-SP3-Online","installer_updates":false},{"installer_updates":false,"name":"SLE10-SDK-SP3-Online","description":"SLE10-SDK-SP3-Online for sled-10-x86_64","enabled":true,"id":1326,"distro_target":"sled-10-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sled-10-x86_64/"},{"name":"SLE10-SDK-SP3-Online","installer_updates":false,"description":"SLE10-SDK-SP3-Online for sles-10-ia64","id":1328,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sles-10-ia64/","autorefresh":true,"distro_target":"sles-10-ia64"},{"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sles-10-i586/","distro_target":"sles-10-i586","autorefresh":true,"id":1330,"enabled":true,"description":"SLE10-SDK-SP3-Online for sles-10-i586","installer_updates":false,"name":"SLE10-SDK-SP3-Online"},{"distro_target":"sles-10-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sles-10-s390x/","enabled":true,"id":1335,"description":"SLE10-SDK-SP3-Online for sles-10-s390x","installer_updates":false,"name":"SLE10-SDK-SP3-Online"},{"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sles-10-x86_64/","autorefresh":true,"distro_target":"sles-10-x86_64","id":1341,"enabled":true,"description":"SLE10-SDK-SP3-Online for sles-10-x86_64","name":"SLE10-SDK-SP3-Online","installer_updates":false},{"description":"SLE10-SDK-SP3-Online for sles-10-ppc","installer_updates":false,"name":"SLE10-SDK-SP3-Online","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sles-10-ppc/","distro_target":"sles-10-ppc","autorefresh":true,"id":1342,"enabled":true}],"predecessor_ids":[],"product_type":"extension","cpe":null,"free":true,"description":null,"shortname":null,"arch":null,"eula_url":"","friendly_version":"10","release_stage":"released","identifier":"SUSE-Linux-Enterprise-SDK-SP3-migration","id":1180,"extensions":[],"version":"10","recommended":false,"release_type":null,"former_identifier":"SUSE-Linux-Enterprise-SDK-SP3-migration","migration_extra":false,"friendly_name":"SUSE Linux Enterprise Software Development Kit 10 (Migration)","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Software Development Kit"},{"friendly_version":"10 SP3","id":1197,"release_stage":"released","identifier":"SUSE-Linux-Enterprise-SMT-SP3","extensions":[],"version":"10.3","recommended":false,"former_identifier":"SUSE-Linux-Enterprise-SMT-SP3","release_type":null,"friendly_name":"SUSE Linux Enterprise Subscription Management Tool 10 SP3","migration_extra":false,"offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Subscription Management Tool","online_predecessor_ids":[],"repositories":[{"id":664,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Updates/sles-10-i586/","distro_target":"sles-10-i586","autorefresh":true,"installer_updates":false,"name":"SLE10-SP3-Debuginfo-Updates","description":"SLE10-SP3-Debuginfo-Updates for sles-10-i586"},{"url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Pool/sles-10-i586/","autorefresh":false,"distro_target":"sles-10-i586","id":669,"enabled":false,"description":"SLE10-SP3-Debuginfo-Pool for sles-10-i586","name":"SLE10-SP3-Debuginfo-Pool","installer_updates":false},{"name":"SLE10-SP3-Debuginfo-Pool","installer_updates":false,"description":"SLE10-SP3-Debuginfo-Pool for sles-10-s390x","id":672,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Pool/sles-10-s390x/","autorefresh":false,"distro_target":"sles-10-s390x"},{"description":"SLE10-SP3-Debuginfo-Updates for sles-10-s390x","name":"SLE10-SP3-Debuginfo-Updates","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Updates/sles-10-s390x/","autorefresh":true,"distro_target":"sles-10-s390x","id":675,"enabled":false},{"enabled":false,"id":750,"distro_target":"sles-10-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Updates/sles-10-x86_64/","installer_updates":false,"name":"SLE10-SP3-Debuginfo-Updates","description":"SLE10-SP3-Debuginfo-Updates for sles-10-x86_64"},{"installer_updates":false,"name":"SLE10-SP3-Debuginfo-Pool","description":"SLE10-SP3-Debuginfo-Pool for sles-10-x86_64","id":751,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Pool/sles-10-x86_64/","distro_target":"sles-10-x86_64","autorefresh":false},{"installer_updates":false,"name":"SLE10-SP3-Debuginfo-Pool","description":"SLE10-SP3-Debuginfo-Pool for sles-10-ppc","id":779,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Pool/sles-10-ppc/","distro_target":"sles-10-ppc","autorefresh":false},{"installer_updates":false,"name":"SLE10-SP3-Debuginfo-Updates","description":"SLE10-SP3-Debuginfo-Updates for sles-10-ppc","enabled":false,"id":780,"distro_target":"sles-10-ppc","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Updates/sles-10-ppc/"},{"enabled":false,"id":788,"autorefresh":false,"distro_target":"sles-10-ia64","url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Pool/sles-10-ia64/","name":"SLE10-SP3-Debuginfo-Pool","installer_updates":false,"description":"SLE10-SP3-Debuginfo-Pool for sles-10-ia64"},{"installer_updates":false,"name":"SLE10-SP3-Debuginfo-Updates","description":"SLE10-SP3-Debuginfo-Updates for sles-10-ia64","id":789,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Updates/sles-10-ia64/","distro_target":"sles-10-ia64","autorefresh":true},{"enabled":false,"id":869,"distro_target":"sled-10-x86_64","autorefresh":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Pool/sled-10-x86_64/","installer_updates":false,"name":"SLE10-SP3-Debuginfo-Pool","description":"SLE10-SP3-Debuginfo-Pool for sled-10-x86_64"},{"installer_updates":false,"name":"SLE10-SP3-Debuginfo-Updates","description":"SLE10-SP3-Debuginfo-Updates for sled-10-x86_64","id":870,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Updates/sled-10-x86_64/","distro_target":"sled-10-x86_64","autorefresh":true},{"name":"SLE10-SP3-Debuginfo-Pool","installer_updates":false,"description":"SLE10-SP3-Debuginfo-Pool for sled-10-i586","enabled":false,"id":895,"autorefresh":false,"distro_target":"sled-10-i586","url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Pool/sled-10-i586/"},{"distro_target":"sled-10-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Updates/sled-10-i586/","enabled":false,"id":896,"description":"SLE10-SP3-Debuginfo-Updates for sled-10-i586","installer_updates":false,"name":"SLE10-SP3-Debuginfo-Updates"},{"installer_updates":false,"name":"SLE10-SP3-SMT-Updates","description":"SLE10-SP3-SMT-Updates for sles-10-i586","id":1403,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-SMT-Updates/sles-10-i586/","distro_target":"sles-10-i586","autorefresh":true},{"id":1404,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-SMT-Updates/sles-10-x86_64/","autorefresh":true,"distro_target":"sles-10-x86_64","name":"SLE10-SP3-SMT-Updates","installer_updates":false,"description":"SLE10-SP3-SMT-Updates for sles-10-x86_64"}],"product_class":"SLESMT","predecessor_ids":[],"product_type":"extension","cpe":null,"free":true,"shortname":null,"description":null,"arch":null,"eula_url":""}],"release_stage":"released","id":1057,"identifier":"SUSE-Linux-Enterprise-RT","friendly_version":"10 SP3","name":"SUSE Linux Enterprise Real Time","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Real Time 10 SP3","former_identifier":"SUSE-Linux-Enterprise-RT","release_type":null,"recommended":false,"version":"10.3"},{"extensions":[],"identifier":"SUSE-Linux-Enterprise-RT","release_stage":"released","id":1058,"friendly_version":"11 SP3","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Real Time","former_identifier":"SUSE-Linux-Enterprise-RT","release_type":null,"friendly_name":"SUSE Linux Enterprise Real Time 11 SP3","migration_extra":false,"recommended":false,"version":"11.3","product_type":"extension","cpe":null,"predecessor_ids":[],"product_class":"13319","online_predecessor_ids":[],"repositories":[{"enabled":true,"id":1061,"distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLERT11-SP3-Pool/sle-11-x86_64/","installer_updates":false,"name":"SLERT11-SP3-Pool","description":"SLERT11-SP3-Pool for sle-11-x86_64"},{"url":"https://updates.suse.com/repo/$RCE/SLERT11-SP3-Updates/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64","id":1062,"enabled":true,"description":"SLERT11-SP3-Updates for sle-11-x86_64","name":"SLERT11-SP3-Updates","installer_updates":false}],"eula_url":"","arch":null,"free":false,"shortname":null,"description":null},{"free":false,"shortname":null,"description":null,"eula_url":"","arch":null,"predecessor_ids":[],"online_predecessor_ids":[],"repositories":[{"description":"SLERT11-SP3-Pool for sle-11-x86_64","installer_updates":false,"name":"SLERT11-SP3-Pool","distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLERT11-SP3-Pool/sle-11-x86_64/","enabled":true,"id":1061},{"url":"https://updates.suse.com/repo/$RCE/SLERT11-SP3-Updates/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true,"id":1062,"enabled":true,"description":"SLERT11-SP3-Updates for sle-11-x86_64","installer_updates":false,"name":"SLERT11-SP3-Updates"}],"product_class":"13319","product_type":"extension","cpe":null,"recommended":false,"version":"11.2","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Real Time","release_type":null,"former_identifier":"SUSE-Linux-Enterprise-RT-SP3-migration","migration_extra":false,"friendly_name":"SUSE Linux Enterprise Real Time 11 SP2 (Migration)","friendly_version":"11 SP2","extensions":[],"release_stage":"released","id":1059,"identifier":"SUSE-Linux-Enterprise-RT-SP3-migration"},{"arch":"ia64","eula_url":"","free":false,"shortname":null,"description":null,"product_type":"extension","cpe":null,"online_predecessor_ids":[],"repositories":[{"url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP2-Updates/sle-11-ia64/","autorefresh":true,"distro_target":"sle-11-ia64","id":1063,"enabled":true,"description":"SLE11-HAE-SP2-Updates for sle-11-ia64","name":"SLE11-HAE-SP2-Updates","installer_updates":false},{"description":"SLE11-HAE-SP2-Pool for sle-11-ia64","installer_updates":false,"name":"SLE11-HAE-SP2-Pool","url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP2-Pool/sle-11-ia64/","distro_target":"sle-11-ia64","autorefresh":true,"id":1064,"enabled":true}],"product_class":"SLE-HAE-IA","predecessor_ids":[],"release_type":null,"former_identifier":"sle-hae","migration_extra":false,"friendly_name":"SUSE Linux Enterprise High Availability Extension 11 SP2 ia64","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise High Availability Extension","version":"11.2","recommended":false,"identifier":"sle-hae","release_stage":"released","id":1060,"extensions":[],"friendly_version":"11 SP2"},{"recommended":false,"version":"11.1","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise High Availability Extension","release_type":null,"former_identifier":"sle-hae","migration_extra":false,"friendly_name":"SUSE Linux Enterprise High Availability Extension 11 SP1 ia64","friendly_version":"11 SP1","extensions":[],"release_stage":"released","id":1061,"identifier":"sle-hae","free":false,"description":null,"shortname":null,"eula_url":"","arch":"ia64","predecessor_ids":[],"repositories":[{"enabled":true,"id":1065,"autorefresh":true,"distro_target":"sle-11-ia64","url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP1-Updates/sle-11-ia64/","name":"SLE11-HAE-SP1-Updates","installer_updates":false,"description":"SLE11-HAE-SP1-Updates for sle-11-ia64"},{"description":"SLE11-HAE-SP1-Pool for sle-11-ia64","name":"SLE11-HAE-SP1-Pool","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP1-Pool/sle-11-ia64/","autorefresh":true,"distro_target":"sle-11-ia64","id":1066,"enabled":true}],"online_predecessor_ids":[],"product_class":"SLE-HAE-IA","product_type":"extension","cpe":null},{"eula_url":"","arch":"ia64","free":false,"shortname":null,"description":null,"product_type":"extension","cpe":null,"predecessor_ids":[],"online_predecessor_ids":[],"product_class":"SLE-HAE-IA","repositories":[{"name":"SLE11-HAE-Updates","installer_updates":false,"description":"SLE11-HAE-Updates for sle-11-ia64","enabled":true,"id":1067,"autorefresh":true,"distro_target":"sle-11-ia64","url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-Updates/sle-11-ia64/"},{"description":"SLE11-HAE-Pool for sle-11-ia64","name":"SLE11-HAE-Pool","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-Pool/sle-11-ia64/","autorefresh":true,"distro_target":"sle-11-ia64","id":1068,"enabled":false}],"offline_predecessor_ids":[],"name":"SUSE Linux Enterprise High Availability Extension","former_identifier":"sle-hae","release_type":null,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise High Availability Extension 11 ia64","recommended":false,"version":"11","extensions":[],"release_stage":"released","identifier":"sle-hae","id":1062,"friendly_version":"11"},{"recommended":false,"version":"11.3","name":"SUSE Linux Enterprise High Availability Extension","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"SUSE Linux Enterprise High Availability Extension 11 SP3 ia64","release_type":null,"former_identifier":"sle-hae","friendly_version":"11 SP3","extensions":[],"id":1063,"release_stage":"released","identifier":"sle-hae","description":null,"shortname":null,"free":false,"eula_url":"","arch":"ia64","predecessor_ids":[],"online_predecessor_ids":[],"repositories":[{"installer_updates":false,"name":"SLE11-HAE-SP3-Updates","description":"SLE11-HAE-SP3-Updates for sle-11-ia64","enabled":true,"id":1069,"distro_target":"sle-11-ia64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP3-Updates/sle-11-ia64/"},{"name":"SLE11-HAE-SP3-Pool","installer_updates":false,"description":"SLE11-HAE-SP3-Pool for sle-11-ia64","id":1070,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP3-Pool/sle-11-ia64/","autorefresh":true,"distro_target":"sle-11-ia64"}],"product_class":"SLE-HAE-IA","cpe":null,"product_type":"extension"},{"description":null,"shortname":null,"free":false,"arch":"ia64","eula_url":"","online_predecessor_ids":[],"repositories":[{"installer_updates":false,"name":"SLE11-HAE-SP3-Updates","description":"SLE11-HAE-SP3-Updates for sle-11-ia64","enabled":true,"id":1069,"distro_target":"sle-11-ia64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP3-Updates/sle-11-ia64/"},{"id":1070,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP3-Pool/sle-11-ia64/","distro_target":"sle-11-ia64","autorefresh":true,"installer_updates":false,"name":"SLE11-HAE-SP3-Pool","description":"SLE11-HAE-SP3-Pool for sle-11-ia64"}],"product_class":"SLE-HAE-IA","predecessor_ids":[],"cpe":null,"product_type":"extension","version":"11.2","recommended":false,"friendly_name":"SUSE Linux Enterprise High Availability Extension 11 SP2 ia64 (Migration)","migration_extra":false,"former_identifier":"sle-hae-SP3-migration","release_type":null,"name":"SUSE Linux Enterprise High Availability Extension","offline_predecessor_ids":[],"friendly_version":"11 SP2","release_stage":"released","identifier":"sle-hae-SP3-migration","id":1064,"extensions":[]},{"friendly_version":"11","identifier":"sle-hae-SP1-migration","release_stage":"released","id":1065,"extensions":[],"version":"11","recommended":false,"former_identifier":"sle-hae-SP1-migration","release_type":null,"friendly_name":"SUSE Linux Enterprise High Availability Extension 11 ia64 (Migration)","migration_extra":false,"offline_predecessor_ids":[],"name":"SUSE Linux Enterprise High Availability Extension","online_predecessor_ids":[],"repositories":[{"enabled":true,"id":1066,"autorefresh":true,"distro_target":"sle-11-ia64","url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP1-Pool/sle-11-ia64/","name":"SLE11-HAE-SP1-Pool","installer_updates":false,"description":"SLE11-HAE-SP1-Pool for sle-11-ia64"}],"product_class":"SLE-HAE-IA","predecessor_ids":[],"product_type":"extension","cpe":null,"free":false,"description":null,"shortname":null,"arch":"ia64","eula_url":""},{"arch":"ia64","eula_url":"","free":false,"description":null,"shortname":null,"product_type":"extension","cpe":null,"repositories":[{"installer_updates":false,"name":"SLE11-HAE-SP2-Updates","description":"SLE11-HAE-SP2-Updates for sle-11-ia64","id":1063,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP2-Updates/sle-11-ia64/","distro_target":"sle-11-ia64","autorefresh":true},{"description":"SLE11-HAE-SP2-Pool for sle-11-ia64","name":"SLE11-HAE-SP2-Pool","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-ia64","url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP2-Pool/sle-11-ia64/","enabled":true,"id":1064}],"online_predecessor_ids":[],"product_class":"SLE-HAE-IA","predecessor_ids":[],"former_identifier":"sle-hae-SP2-migration","release_type":null,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise High Availability Extension 11 SP1 ia64 (Migration)","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise High Availability Extension","version":"11.1","recommended":false,"id":1066,"release_stage":"released","identifier":"sle-hae-SP2-migration","extensions":[],"friendly_version":"11 SP1"},{"recommended":false,"version":"11","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Point of Service","former_identifier":"sle-pos-SP1-migration","release_type":null,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Point of Service 11 (Migration)","friendly_version":"11","extensions":[],"release_stage":"released","identifier":"sle-pos-SP1-migration","id":1067,"free":false,"shortname":null,"description":null,"eula_url":"","arch":null,"predecessor_ids":[],"product_class":"10040","online_predecessor_ids":[],"repositories":[{"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE11-POS-SP1-Pool/sle-11-x86_64/","enabled":true,"id":1071,"description":"SLE11-POS-SP1-Pool for sle-11-x86_64","name":"SLE11-POS-SP1-Pool","installer_updates":false},{"enabled":true,"id":1072,"distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-POS-SP1-Pool/sle-11-i586/","installer_updates":false,"name":"SLE11-POS-SP1-Pool","description":"SLE11-POS-SP1-Pool for sle-11-i586"}],"product_type":"extension","cpe":null},{"recommended":false,"version":"11.2","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Point of Service","release_type":null,"former_identifier":"sle-pos","friendly_name":"SUSE Linux Enterprise Point of Service 11 SP2","migration_extra":false,"friendly_version":"11 SP2","extensions":[],"release_stage":"released","identifier":"sle-pos","id":1068,"free":false,"description":null,"shortname":null,"eula_url":"","arch":null,"predecessor_ids":[],"product_class":"10040","online_predecessor_ids":[],"repositories":[{"description":"SLE11-POS-SP2-Updates for sle-11-i586","installer_updates":false,"name":"SLE11-POS-SP2-Updates","url":"https://updates.suse.com/repo/$RCE/SLE11-POS-SP2-Updates/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true,"id":1073,"enabled":true},{"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-POS-SP2-Pool/sle-11-i586/","enabled":true,"id":1074,"description":"SLE11-POS-SP2-Pool for sle-11-i586","name":"SLE11-POS-SP2-Pool","installer_updates":false},{"url":"https://updates.suse.com/repo/$RCE/SLE11-POS-SP2-Updates/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true,"id":1075,"enabled":true,"description":"SLE11-POS-SP2-Updates for sle-11-x86_64","installer_updates":false,"name":"SLE11-POS-SP2-Updates"},{"description":"SLE11-POS-SP2-Pool for sle-11-x86_64","installer_updates":false,"name":"SLE11-POS-SP2-Pool","url":"https://updates.suse.com/repo/$RCE/SLE11-POS-SP2-Pool/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true,"id":1076,"enabled":true}],"product_type":"extension","cpe":null},{"free":false,"shortname":null,"description":null,"arch":null,"eula_url":"","online_predecessor_ids":[],"repositories":[{"url":"https://updates.suse.com/repo/$RCE/SLE11-POS-SP2-Pool/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true,"id":1074,"enabled":true,"description":"SLE11-POS-SP2-Pool for sle-11-i586","installer_updates":false,"name":"SLE11-POS-SP2-Pool"},{"url":"https://updates.suse.com/repo/$RCE/SLE11-POS-SP2-Pool/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true,"id":1076,"enabled":true,"description":"SLE11-POS-SP2-Pool for sle-11-x86_64","installer_updates":false,"name":"SLE11-POS-SP2-Pool"}],"product_class":"10040","predecessor_ids":[],"product_type":"extension","cpe":null,"version":"11.1","recommended":false,"release_type":null,"former_identifier":"sle-pos-SP2-migration","friendly_name":"SUSE Linux Enterprise Point of Service 11 SP1 (Migration)","migration_extra":false,"offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Point of Service","friendly_version":"11 SP1","release_stage":"released","identifier":"sle-pos-SP2-migration","id":1069,"extensions":[]},{"extensions":[],"release_stage":"released","id":1070,"identifier":"SUSE-Linux-Enterprise-POS","friendly_version":"10","name":"SUSE Linux Enterprise Point of Service","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Point of Service 10","release_type":null,"former_identifier":"SUSE-Linux-Enterprise-POS","recommended":false,"version":"10","cpe":null,"product_type":"extension","predecessor_ids":[],"online_predecessor_ids":[],"product_class":"10040","repositories":[{"installer_updates":false,"name":"SLE10-POS-Updates","description":"SLE10-POS-Updates for sles-10-i586","id":1077,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-POS-Updates/sles-10-i586/","distro_target":"sles-10-i586","autorefresh":true}],"eula_url":"","arch":null,"description":null,"shortname":null,"free":false},{"predecessor_ids":[],"product_class":"10040","online_predecessor_ids":[],"repositories":[{"description":"SLE11-POS-Updates for sle-11-i586","name":"SLE11-POS-Updates","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-POS-Updates/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","id":1078,"enabled":true},{"id":1079,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-POS-Pool/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true,"installer_updates":false,"name":"SLE11-POS-Pool","description":"SLE11-POS-Pool for sle-11-i586"},{"installer_updates":false,"name":"SLE11-POS-Pool","description":"SLE11-POS-Pool for sle-11-x86_64","id":1080,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-POS-Pool/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true},{"id":1081,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-POS-Updates/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true,"installer_updates":false,"name":"SLE11-POS-Updates","description":"SLE11-POS-Updates for sle-11-x86_64"}],"cpe":null,"product_type":"extension","shortname":null,"description":null,"free":false,"eula_url":"","arch":null,"friendly_version":"11","extensions":[],"identifier":"sle-pos","release_stage":"released","id":1071,"recommended":false,"version":"11","name":"SUSE Linux Enterprise Point of Service","offline_predecessor_ids":[],"friendly_name":"SUSE Linux Enterprise Point of Service 11","migration_extra":false,"former_identifier":"sle-pos","release_type":null},{"friendly_version":"11 SP1","identifier":"sle-pos","release_stage":"released","id":1072,"extensions":[],"version":"11.1","recommended":false,"former_identifier":"sle-pos","release_type":null,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Point of Service 11 SP1","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Point of Service","online_predecessor_ids":[],"product_class":"10040","repositories":[{"id":1071,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-POS-SP1-Pool/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64","name":"SLE11-POS-SP1-Pool","installer_updates":false,"description":"SLE11-POS-SP1-Pool for sle-11-x86_64"},{"name":"SLE11-POS-SP1-Pool","installer_updates":false,"description":"SLE11-POS-SP1-Pool for sle-11-i586","enabled":true,"id":1072,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-POS-SP1-Pool/sle-11-i586/"},{"id":1082,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-POS-SP1-Updates/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true,"installer_updates":false,"name":"SLE11-POS-SP1-Updates","description":"SLE11-POS-SP1-Updates for sle-11-x86_64"},{"name":"SLE11-POS-SP1-Updates","installer_updates":false,"description":"SLE11-POS-SP1-Updates for sle-11-i586","enabled":true,"id":1083,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-POS-SP1-Updates/sle-11-i586/"}],"predecessor_ids":[],"product_type":"extension","cpe":null,"free":false,"shortname":null,"description":null,"arch":null,"eula_url":""},{"identifier":"sle-pos","release_stage":"released","id":1073,"extensions":[],"friendly_version":"11 SP3","former_identifier":"sle-pos","release_type":null,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Point of Service 11 SP3","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Point of Service","version":"11.3","recommended":false,"product_type":"extension","cpe":null,"online_predecessor_ids":[],"product_class":"10040","repositories":[{"description":"SLE11-POS-SP3-Pool for sle-11-i586","installer_updates":false,"name":"SLE11-POS-SP3-Pool","distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-POS-SP3-Pool/sle-11-i586/","enabled":true,"id":1084},{"distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-POS-SP3-Updates/sle-11-i586/","enabled":true,"id":1085,"description":"SLE11-POS-SP3-Updates for sle-11-i586","installer_updates":false,"name":"SLE11-POS-SP3-Updates"},{"installer_updates":false,"name":"SLE11-POS-SP3-Pool","description":"SLE11-POS-SP3-Pool for sle-11-x86_64","enabled":true,"id":1086,"distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-POS-SP3-Pool/sle-11-x86_64/"},{"name":"SLE11-POS-SP3-Updates","installer_updates":false,"description":"SLE11-POS-SP3-Updates for sle-11-x86_64","id":1087,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-POS-SP3-Updates/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64"}],"predecessor_ids":[],"arch":null,"eula_url":"","free":false,"description":null,"shortname":null},{"description":null,"shortname":null,"free":false,"arch":null,"eula_url":"","online_predecessor_ids":[],"product_class":"STUDIOONSITE","repositories":[{"description":"SLE11-SP1-Debuginfo-Pool for sle-11-i586","name":"SLE11-SP1-Debuginfo-Pool","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Pool/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","id":680,"enabled":false},{"name":"SLE11-SP1-Debuginfo-Updates","installer_updates":false,"description":"SLE11-SP1-Debuginfo-Updates for sle-11-i586","id":682,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Updates/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586"},{"description":"SLES11-SP1-Updates for sle-11-i586","installer_updates":false,"name":"SLES11-SP1-Updates","distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-Updates/sle-11-i586/","enabled":true,"id":684},{"name":"SLES11-SP1-Pool","installer_updates":false,"description":"SLES11-SP1-Pool for sle-11-i586","enabled":true,"id":686,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-Pool/sle-11-i586/"},{"name":"SLES11-SP1-Pool","installer_updates":false,"description":"SLES11-SP1-Pool for sle-11-s390x","enabled":true,"id":687,"autorefresh":true,"distro_target":"sle-11-s390x","url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-Pool/sle-11-s390x/"},{"installer_updates":false,"name":"SLE11-SP1-Debuginfo-Updates","description":"SLE11-SP1-Debuginfo-Updates for sle-11-s390x","enabled":false,"id":688,"distro_target":"sle-11-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Updates/sle-11-s390x/"},{"description":"SLES11-SP1-Updates for sle-11-s390x","name":"SLES11-SP1-Updates","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-Updates/sle-11-s390x/","autorefresh":true,"distro_target":"sle-11-s390x","id":691,"enabled":true},{"id":692,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Pool/sle-11-s390x/","distro_target":"sle-11-s390x","autorefresh":true,"installer_updates":false,"name":"SLE11-SP1-Debuginfo-Pool","description":"SLE11-SP1-Debuginfo-Pool for sle-11-s390x"},{"distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-Updates/sle-11-x86_64/","enabled":true,"id":705,"description":"SLES11-SP1-Updates for sle-11-x86_64","installer_updates":false,"name":"SLES11-SP1-Updates"},{"id":707,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Pool/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true,"installer_updates":false,"name":"SLE11-SP1-Debuginfo-Pool","description":"SLE11-SP1-Debuginfo-Pool for sle-11-x86_64"},{"description":"SLES11-SP1-Pool for sle-11-x86_64","name":"SLES11-SP1-Pool","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-Pool/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64","id":711,"enabled":true},{"enabled":false,"id":715,"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Updates/sle-11-x86_64/","name":"SLE11-SP1-Debuginfo-Updates","installer_updates":false,"description":"SLE11-SP1-Debuginfo-Updates for sle-11-x86_64"},{"enabled":true,"id":919,"distro_target":"sle-11-ppc64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-Pool/sle-11-ppc64/","installer_updates":false,"name":"SLES11-SP1-Pool","description":"SLES11-SP1-Pool for sle-11-ppc64"},{"name":"SLES11-SP1-Updates","installer_updates":false,"description":"SLES11-SP1-Updates for sle-11-ppc64","enabled":true,"id":922,"autorefresh":true,"distro_target":"sle-11-ppc64","url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-Updates/sle-11-ppc64/"},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Updates/sle-11-ppc64/","autorefresh":true,"distro_target":"sle-11-ppc64","id":924,"enabled":false,"description":"SLE11-SP1-Debuginfo-Updates for sle-11-ppc64","name":"SLE11-SP1-Debuginfo-Updates","installer_updates":false},{"distro_target":"sle-11-ppc64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Pool/sle-11-ppc64/","enabled":false,"id":925,"description":"SLE11-SP1-Debuginfo-Pool for sle-11-ppc64","installer_updates":false,"name":"SLE11-SP1-Debuginfo-Pool"},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Pool/sle-11-ia64/","distro_target":"sle-11-ia64","autorefresh":true,"id":970,"enabled":false,"description":"SLE11-SP1-Debuginfo-Pool for sle-11-ia64","installer_updates":false,"name":"SLE11-SP1-Debuginfo-Pool"},{"enabled":false,"id":971,"distro_target":"sle-11-ia64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Updates/sle-11-ia64/","installer_updates":false,"name":"SLE11-SP1-Debuginfo-Updates","description":"SLE11-SP1-Debuginfo-Updates for sle-11-ia64"},{"enabled":true,"id":987,"autorefresh":true,"distro_target":"sle-11-ia64","url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-Updates/sle-11-ia64/","name":"SLES11-SP1-Updates","installer_updates":false,"description":"SLES11-SP1-Updates for sle-11-ia64"},{"description":"SLES11-SP1-Pool for sle-11-ia64","name":"SLES11-SP1-Pool","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-Pool/sle-11-ia64/","autorefresh":true,"distro_target":"sle-11-ia64","id":991,"enabled":true},{"description":"SLE11-StudioOnsite-1.1-Instrumentation for sle-11-x86_64","installer_updates":false,"name":"SLE11-StudioOnsite-1.1-Instrumentation","distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-StudioOnsite-1.1-Instrumentation/sle-11-x86_64/","enabled":true,"id":1088},{"id":1089,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-StudioOnsite-1.1-Updates/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true,"installer_updates":false,"name":"SLE11-StudioOnsite-1.1-Updates","description":"SLE11-StudioOnsite-1.1-Updates for sle-11-x86_64"},{"id":1090,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-StudioOnsite-1.1-Pool/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true,"installer_updates":false,"name":"SLE11-StudioOnsite-1.1-Pool","description":"SLE11-StudioOnsite-1.1-Pool for sle-11-x86_64"}],"predecessor_ids":[],"cpe":null,"product_type":"extension","version":"1.1","recommended":false,"friendly_name":"SUSE Studio OnSite 1.1","migration_extra":false,"release_type":null,"former_identifier":"sle-studioonsite","name":"SUSE Studio OnSite","offline_predecessor_ids":[],"friendly_version":"1.1","identifier":"sle-studioonsite","release_stage":"released","id":1074,"extensions":[]},{"free":false,"shortname":null,"description":null,"arch":null,"eula_url":"","product_class":"STUDIOONSITE","online_predecessor_ids":[],"repositories":[{"distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-StudioOnsite-1.0-Pool/sle-11-x86_64/","enabled":false,"id":1091,"description":"SLE11-StudioOnsite-1.0-Pool for sle-11-x86_64","installer_updates":false,"name":"SLE11-StudioOnsite-1.0-Pool"},{"description":"SLE11-StudioOnsite-1.0-Updates for sle-11-x86_64","installer_updates":false,"name":"SLE11-StudioOnsite-1.0-Updates","distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-StudioOnsite-1.0-Updates/sle-11-x86_64/","enabled":true,"id":1092}],"predecessor_ids":[],"product_type":"extension","cpe":null,"version":"1.0","recommended":false,"release_type":null,"former_identifier":"sle-studioonsite","migration_extra":false,"friendly_name":"SUSE Studio OnSite 1.0","offline_predecessor_ids":[],"name":"SUSE Studio OnSite","friendly_version":"1.0","identifier":"sle-studioonsite","release_stage":"released","id":1075,"extensions":[]},{"arch":null,"eula_url":"","free":false,"shortname":null,"description":null,"product_type":"extension","cpe":null,"online_predecessor_ids":[],"repositories":[],"product_class":"SM_ENT_MGM_S","predecessor_ids":[],"release_type":null,"former_identifier":"SUSE-Manager-Mgmt-Single","friendly_name":"SUSE Manager Mgmt Single 1.2","migration_extra":false,"offline_predecessor_ids":[],"name":"SUSE Manager Mgmt Single","version":"1.2","recommended":false,"identifier":"SUSE-Manager-Mgmt-Single","release_stage":"released","id":1076,"extensions":[],"friendly_version":"1.2"},{"cpe":null,"product_type":"extension","predecessor_ids":[],"online_predecessor_ids":[],"repositories":[{"description":"SLEHA1-Updates for sles-10-i586","name":"SLEHA1-Updates","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLEHA1-Updates/sles-10-i586/","autorefresh":true,"distro_target":"sles-10-i586","id":1093,"enabled":true}],"product_class":"SLE-HAS","eula_url":"","arch":null,"shortname":null,"description":null,"free":false,"extensions":[],"id":1077,"release_stage":"released","identifier":"SUSE-Linux-Enterprise-HA-Server","friendly_version":"1 SP0","name":"SUSE Linux Enterprise High Availability Server","offline_predecessor_ids":[],"friendly_name":"SUSE Linux Enterprise High Availability Server 1 SP0","migration_extra":false,"former_identifier":"SUSE-Linux-Enterprise-HA-Server","release_type":null,"recommended":false,"version":"1.0"},{"online_predecessor_ids":[],"repositories":[],"product_class":"SM_ENT_MGM_V","predecessor_ids":[],"cpe":null,"product_type":"extension","shortname":null,"description":null,"free":false,"arch":null,"eula_url":"","friendly_version":"1.2","release_stage":"released","identifier":"SUSE-Manager-Mgmt-Unlimited-Virtual","id":1078,"extensions":[],"version":"1.2","recommended":false,"friendly_name":"SUSE Manager Mgmt Unlimited Virtual 1.2","migration_extra":false,"release_type":null,"former_identifier":"SUSE-Manager-Mgmt-Unlimited-Virtual","name":"SUSE Manager Mgmt Unlimited Virtual","offline_predecessor_ids":[]},{"extensions":[],"release_stage":"released","id":1079,"identifier":"sle-hae","friendly_version":"11 SP1","name":"SUSE Linux Enterprise High Availability Extension","offline_predecessor_ids":[],"friendly_name":"SUSE Linux Enterprise High Availability Extension 11 SP1 s390","migration_extra":false,"former_identifier":"sle-hae","release_type":null,"recommended":false,"version":"11.1","cpe":null,"product_type":"extension","predecessor_ids":[],"product_class":"SLE-HAE-Z","online_predecessor_ids":[],"repositories":[{"name":"SLE11-HAE-SP1-Pool","installer_updates":false,"description":"SLE11-HAE-SP1-Pool for sle-11-s390x","enabled":true,"id":1094,"autorefresh":true,"distro_target":"sle-11-s390x","url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP1-Pool/sle-11-s390x/"},{"description":"SLE11-HAE-SP1-Updates for sle-11-s390x","installer_updates":false,"name":"SLE11-HAE-SP1-Updates","distro_target":"sle-11-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP1-Updates/sle-11-s390x/","enabled":true,"id":1095}],"eula_url":"","arch":"s390","description":null,"shortname":null,"free":false},{"name":"SUSE Linux Enterprise High Availability Extension","offline_predecessor_ids":[],"friendly_name":"SUSE Linux Enterprise High Availability Extension 11 SP3 s390x","migration_extra":false,"former_identifier":"sle-hae","release_type":null,"recommended":false,"version":"11.3","extensions":[],"id":1080,"release_stage":"released","identifier":"sle-hae","friendly_version":"11 SP3","eula_url":"","arch":"s390x","description":null,"shortname":null,"free":false,"cpe":null,"product_type":"extension","predecessor_ids":[],"product_class":"SLE-HAE-Z","online_predecessor_ids":[],"repositories":[{"enabled":true,"id":1096,"distro_target":"sle-11-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP3-Pool/sle-11-s390x/","installer_updates":false,"name":"SLE11-HAE-SP3-Pool","description":"SLE11-HAE-SP3-Pool for sle-11-s390x"},{"description":"SLE11-HAE-SP3-Updates for sle-11-s390x","installer_updates":false,"name":"SLE11-HAE-SP3-Updates","url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP3-Updates/sle-11-s390x/","distro_target":"sle-11-s390x","autorefresh":true,"id":1097,"enabled":true}]},{"predecessor_ids":[],"online_predecessor_ids":[],"product_class":"SLE-HAE-Z","repositories":[{"description":"SLE11-HAE-SP1-Pool for sle-11-s390x","name":"SLE11-HAE-SP1-Pool","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP1-Pool/sle-11-s390x/","autorefresh":true,"distro_target":"sle-11-s390x","id":1094,"enabled":true}],"cpe":null,"product_type":"extension","description":null,"shortname":null,"free":false,"eula_url":"","arch":"s390","friendly_version":"11","extensions":[],"release_stage":"released","identifier":"sle-hae-SP1-migration","id":1081,"recommended":false,"version":"11","name":"SUSE Linux Enterprise High Availability Extension","offline_predecessor_ids":[],"friendly_name":"SUSE Linux Enterprise High Availability Extension 11 s390 (Migration)","migration_extra":false,"former_identifier":"sle-hae-SP1-migration","release_type":null},{"recommended":false,"version":"11.2","name":"SUSE Linux Enterprise High Availability Extension","offline_predecessor_ids":[],"friendly_name":"SUSE Linux Enterprise High Availability Extension 11 SP2 s390x","migration_extra":false,"release_type":null,"former_identifier":"sle-hae","friendly_version":"11 SP2","extensions":[],"release_stage":"released","id":1082,"identifier":"sle-hae","shortname":null,"description":null,"free":false,"eula_url":"","arch":"s390x","predecessor_ids":[],"repositories":[{"name":"SLE11-HAE-SP2-Pool","installer_updates":false,"description":"SLE11-HAE-SP2-Pool for sle-11-s390x","enabled":true,"id":1098,"autorefresh":true,"distro_target":"sle-11-s390x","url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP2-Pool/sle-11-s390x/"},{"installer_updates":false,"name":"SLE11-HAE-SP2-Updates","description":"SLE11-HAE-SP2-Updates for sle-11-s390x","enabled":true,"id":1099,"distro_target":"sle-11-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP2-Updates/sle-11-s390x/"}],"online_predecessor_ids":[],"product_class":"SLE-HAE-Z","cpe":null,"product_type":"extension"},{"identifier":"sle-hae-SP2-migration","release_stage":"released","id":1083,"extensions":[],"friendly_version":"11 SP1","migration_extra":false,"friendly_name":"SUSE Linux Enterprise High Availability Extension 11 SP1 s390x (Migration)","former_identifier":"sle-hae-SP2-migration","release_type":null,"name":"SUSE Linux Enterprise High Availability Extension","offline_predecessor_ids":[],"version":"11.1","recommended":false,"cpe":null,"product_type":"extension","product_class":"SLE-HAE-Z","online_predecessor_ids":[],"repositories":[{"description":"SLE11-HAE-SP2-Pool for sle-11-s390x","name":"SLE11-HAE-SP2-Pool","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP2-Pool/sle-11-s390x/","autorefresh":true,"distro_target":"sle-11-s390x","id":1098,"enabled":true},{"installer_updates":false,"name":"SLE11-HAE-SP2-Updates","description":"SLE11-HAE-SP2-Updates for sle-11-s390x","enabled":true,"id":1099,"distro_target":"sle-11-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP2-Updates/sle-11-s390x/"}],"predecessor_ids":[],"arch":"s390x","eula_url":"","shortname":null,"description":null,"free":false},{"arch":"s390x","eula_url":"","free":false,"shortname":null,"description":null,"product_type":"extension","cpe":null,"online_predecessor_ids":[],"repositories":[{"installer_updates":false,"name":"SLE11-HAE-SP1-Pool","description":"SLE11-HAE-SP1-Pool for sle-11-s390x","enabled":true,"id":1094,"distro_target":"sle-11-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP1-Pool/sle-11-s390x/"},{"url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP1-Updates/sle-11-s390x/","distro_target":"sle-11-s390x","autorefresh":true,"id":1095,"enabled":true,"description":"SLE11-HAE-SP1-Updates for sle-11-s390x","installer_updates":false,"name":"SLE11-HAE-SP1-Updates"}],"product_class":"SLE-HAE-Z","predecessor_ids":[],"release_type":null,"former_identifier":"sle-hae","friendly_name":"SUSE Linux Enterprise High Availability Extension 11 SP1 s390x","migration_extra":false,"offline_predecessor_ids":[],"name":"SUSE Linux Enterprise High Availability Extension","version":"11.1","recommended":false,"release_stage":"released","id":1084,"identifier":"sle-hae","extensions":[],"friendly_version":"11 SP1"},{"description":null,"shortname":null,"free":false,"eula_url":"","arch":"s390","predecessor_ids":[],"repositories":[{"description":"SLE11-HAE-SP2-Pool for sle-11-s390x","installer_updates":false,"name":"SLE11-HAE-SP2-Pool","distro_target":"sle-11-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP2-Pool/sle-11-s390x/","enabled":true,"id":1098},{"enabled":true,"id":1099,"autorefresh":true,"distro_target":"sle-11-s390x","url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP2-Updates/sle-11-s390x/","name":"SLE11-HAE-SP2-Updates","installer_updates":false,"description":"SLE11-HAE-SP2-Updates for sle-11-s390x"}],"online_predecessor_ids":[],"product_class":"SLE-HAE-Z","cpe":null,"product_type":"extension","recommended":false,"version":"11.2","name":"SUSE Linux Enterprise High Availability Extension","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"SUSE Linux Enterprise High Availability Extension 11 SP2 s390","former_identifier":"sle-hae","release_type":null,"friendly_version":"11 SP2","extensions":[],"id":1085,"release_stage":"released","identifier":"sle-hae"},{"eula_url":"","arch":"s390x","free":false,"shortname":null,"description":null,"product_type":"extension","cpe":null,"predecessor_ids":[],"online_predecessor_ids":[],"repositories":[{"distro_target":"sle-11-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-Updates/sle-11-s390x/","enabled":true,"id":1100,"description":"SLE11-HAE-Updates for sle-11-s390x","installer_updates":false,"name":"SLE11-HAE-Updates"},{"id":1101,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-Pool/sle-11-s390x/","distro_target":"sle-11-s390x","autorefresh":true,"installer_updates":false,"name":"SLE11-HAE-Pool","description":"SLE11-HAE-Pool for sle-11-s390x"}],"product_class":"SLE-HAE-Z","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise High Availability Extension","former_identifier":"sle-hae","release_type":null,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise High Availability Extension 11 s390x","recommended":false,"version":"11","extensions":[],"identifier":"sle-hae","release_stage":"released","id":1086,"friendly_version":"11"},{"free":false,"description":null,"shortname":null,"arch":"s390x","eula_url":"","repositories":[{"description":"SLE11-HAE-SP1-Pool for sle-11-s390x","name":"SLE11-HAE-SP1-Pool","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP1-Pool/sle-11-s390x/","autorefresh":true,"distro_target":"sle-11-s390x","id":1094,"enabled":true}],"online_predecessor_ids":[],"product_class":"SLE-HAE-Z","predecessor_ids":[],"product_type":"extension","cpe":null,"version":"11","recommended":false,"former_identifier":"sle-hae-SP1-migration","release_type":null,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise High Availability Extension 11 s390x (Migration)","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise High Availability Extension","friendly_version":"11","id":1087,"release_stage":"released","identifier":"sle-hae-SP1-migration","extensions":[]},{"cpe":null,"product_type":"extension","repositories":[{"distro_target":"sle-11-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP3-Pool/sle-11-s390x/","enabled":true,"id":1096,"description":"SLE11-HAE-SP3-Pool for sle-11-s390x","installer_updates":false,"name":"SLE11-HAE-SP3-Pool"},{"enabled":true,"id":1097,"distro_target":"sle-11-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP3-Updates/sle-11-s390x/","installer_updates":false,"name":"SLE11-HAE-SP3-Updates","description":"SLE11-HAE-SP3-Updates for sle-11-s390x"}],"online_predecessor_ids":[],"product_class":"SLE-HAE-Z","predecessor_ids":[],"arch":"s390x","eula_url":"","shortname":null,"description":null,"free":false,"id":1088,"release_stage":"released","identifier":"sle-hae-SP3-migration","extensions":[],"friendly_version":"11 SP2","friendly_name":"SUSE Linux Enterprise High Availability Extension 11 SP2 s390x (Migration)","migration_extra":false,"release_type":null,"former_identifier":"sle-hae-SP3-migration","name":"SUSE Linux Enterprise High Availability Extension","offline_predecessor_ids":[],"version":"11.2","recommended":false},{"extensions":[],"release_stage":"released","id":1089,"identifier":"sle-hae-SP2-migration","friendly_version":"11 SP1","name":"SUSE Linux Enterprise High Availability Extension","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"SUSE Linux Enterprise High Availability Extension 11 SP1 s390 (Migration)","former_identifier":"sle-hae-SP2-migration","release_type":null,"recommended":false,"version":"11.1","cpe":null,"product_type":"extension","predecessor_ids":[],"repositories":[{"url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP2-Pool/sle-11-s390x/","distro_target":"sle-11-s390x","autorefresh":true,"id":1098,"enabled":true,"description":"SLE11-HAE-SP2-Pool for sle-11-s390x","installer_updates":false,"name":"SLE11-HAE-SP2-Pool"},{"autorefresh":true,"distro_target":"sle-11-s390x","url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP2-Updates/sle-11-s390x/","enabled":true,"id":1099,"description":"SLE11-HAE-SP2-Updates for sle-11-s390x","name":"SLE11-HAE-SP2-Updates","installer_updates":false}],"online_predecessor_ids":[],"product_class":"SLE-HAE-Z","eula_url":"","arch":"s390","description":null,"shortname":null,"free":false},{"name":"SUSE Cloud","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"SUSE Cloud 1.0 x86_64","release_type":null,"former_identifier":"SUSE-Cloud","recommended":false,"version":"1.0","extensions":[],"release_stage":"released","identifier":"SUSE-Cloud","id":1090,"friendly_version":"1.0","eula_url":"","arch":"x86_64","shortname":null,"description":null,"free":false,"cpe":null,"product_type":"extension","predecessor_ids":[],"product_class":"SUSE_CLOUD","online_predecessor_ids":[],"repositories":[{"enabled":true,"id":1102,"distro_target":"sle-11-x86_64","autorefresh":false,"url":"https://updates.suse.com/repo/$RCE/SUSE-Cloud-1.0-Pool/sle-11-x86_64/","installer_updates":false,"name":"SUSE-Cloud-1.0-Pool","description":"SUSE-Cloud-1.0-Pool for sle-11-x86_64"},{"description":"SUSE-Cloud-1.0-Updates for sle-11-x86_64","name":"SUSE-Cloud-1.0-Updates","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SUSE-Cloud-1.0-Updates/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64","id":1103,"enabled":true}]},{"recommended":false,"version":"2.0","offline_predecessor_ids":[],"name":"SUSE Cloud","former_identifier":"SUSE-Cloud","release_type":null,"migration_extra":false,"friendly_name":"SUSE Cloud 2.0 x86_64","friendly_version":"2.0","extensions":[],"id":1091,"release_stage":"released","identifier":"SUSE-Cloud","free":false,"shortname":null,"description":null,"eula_url":"","arch":"x86_64","predecessor_ids":[],"online_predecessor_ids":[],"repositories":[{"name":"SUSE-Cloud-2.0-Updates","installer_updates":false,"description":"SUSE-Cloud-2.0-Updates for sle-11-x86_64","enabled":true,"id":1104,"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SUSE-Cloud-2.0-Updates/sle-11-x86_64/"},{"id":1105,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SUSE-Cloud-2.0-Pool/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":false,"installer_updates":false,"name":"SUSE-Cloud-2.0-Pool","description":"SUSE-Cloud-2.0-Pool for sle-11-x86_64"},{"url":"https://updates.suse.com/repo/$RCE/SUSE-Cloud-3.0-Pool/sle-11-x86_64/","autorefresh":false,"distro_target":"sle-11-x86_64","id":1158,"enabled":false,"description":"SUSE-Cloud-3.0-Pool for sle-11-x86_64","name":"SUSE-Cloud-3.0-Pool","installer_updates":false},{"enabled":false,"id":1159,"distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SUSE-Cloud-3.0-Updates/sle-11-x86_64/","installer_updates":false,"name":"SUSE-Cloud-3.0-Updates","description":"SUSE-Cloud-3.0-Updates for sle-11-x86_64"}],"product_class":"SUSE_CLOUD","product_type":"extension","cpe":null},{"cpe":null,"product_type":"base","online_predecessor_ids":[],"product_class":"SLES-EC2","repositories":[],"predecessor_ids":[],"arch":null,"eula_url":"","shortname":null,"description":null,"free":false,"identifier":"SUSE_SLES","release_stage":"released","id":1093,"extensions":[{"cpe":null,"product_type":"extension","online_predecessor_ids":[],"repositories":[{"description":"SLE11-POS-SP1-Pool for sle-11-x86_64","installer_updates":false,"name":"SLE11-POS-SP1-Pool","url":"https://updates.suse.com/repo/$RCE/SLE11-POS-SP1-Pool/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true,"id":1071,"enabled":true},{"name":"SLE11-POS-SP1-Pool","installer_updates":false,"description":"SLE11-POS-SP1-Pool for sle-11-i586","enabled":true,"id":1072,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-POS-SP1-Pool/sle-11-i586/"}],"product_class":"10040","predecessor_ids":[],"arch":null,"eula_url":"","shortname":null,"description":null,"free":false,"identifier":"sle-pos-SP1-migration","release_stage":"released","id":1067,"extensions":[],"friendly_version":"11","friendly_name":"SUSE Linux Enterprise Point of Service 11 (Migration)","migration_extra":false,"former_identifier":"sle-pos-SP1-migration","release_type":null,"name":"SUSE Linux Enterprise Point of Service","offline_predecessor_ids":[],"version":"11","recommended":false},{"version":"11","recommended":false,"friendly_name":"SUSE Linux Enterprise Point of Service 11","migration_extra":false,"former_identifier":"sle-pos","release_type":null,"name":"SUSE Linux Enterprise Point of Service","offline_predecessor_ids":[],"friendly_version":"11","release_stage":"released","identifier":"sle-pos","id":1071,"extensions":[],"shortname":null,"description":null,"free":false,"arch":null,"eula_url":"","repositories":[{"enabled":true,"id":1078,"distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-POS-Updates/sle-11-i586/","installer_updates":false,"name":"SLE11-POS-Updates","description":"SLE11-POS-Updates for sle-11-i586"},{"name":"SLE11-POS-Pool","installer_updates":false,"description":"SLE11-POS-Pool for sle-11-i586","enabled":false,"id":1079,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-POS-Pool/sle-11-i586/"},{"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE11-POS-Pool/sle-11-x86_64/","enabled":false,"id":1080,"description":"SLE11-POS-Pool for sle-11-x86_64","name":"SLE11-POS-Pool","installer_updates":false},{"id":1081,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-POS-Updates/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64","name":"SLE11-POS-Updates","installer_updates":false,"description":"SLE11-POS-Updates for sle-11-x86_64"}],"online_predecessor_ids":[],"product_class":"10040","predecessor_ids":[],"cpe":null,"product_type":"extension"},{"predecessor_ids":[],"product_class":"SLE-SDK","online_predecessor_ids":[],"repositories":[{"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-Updates/sle-11-ppc64/","distro_target":"sle-11-ppc64","autorefresh":true,"id":1247,"enabled":true,"description":"SLE11-SDK-Updates for sle-11-ppc64","installer_updates":false,"name":"SLE11-SDK-Updates"},{"name":"SLE11-SDK-Pool","installer_updates":false,"description":"SLE11-SDK-Pool for sle-11-s390x","enabled":false,"id":1248,"autorefresh":true,"distro_target":"sle-11-s390x","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-Pool/sle-11-s390x/"},{"installer_updates":false,"name":"SLE11-SDK-Updates","description":"SLE11-SDK-Updates for sle-11-x86_64","id":1249,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-Updates/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true},{"installer_updates":false,"name":"SLE11-SDK-Pool","description":"SLE11-SDK-Pool for sle-11-i586","id":1250,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-Pool/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true},{"distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-Pool/sle-11-x86_64/","enabled":false,"id":1251,"description":"SLE11-SDK-Pool for sle-11-x86_64","installer_updates":false,"name":"SLE11-SDK-Pool"},{"name":"SLE11-SDK-Pool","installer_updates":false,"description":"SLE11-SDK-Pool for sle-11-ppc64","id":1252,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-Pool/sle-11-ppc64/","autorefresh":true,"distro_target":"sle-11-ppc64"},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-Updates/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true,"id":1253,"enabled":true,"description":"SLE11-SDK-Updates for sle-11-i586","installer_updates":false,"name":"SLE11-SDK-Updates"},{"description":"SLE11-SDK-Pool for sle-11-ia64","name":"SLE11-SDK-Pool","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-ia64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-Pool/sle-11-ia64/","enabled":false,"id":1254},{"id":1255,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-Updates/sle-11-s390x/","autorefresh":true,"distro_target":"sle-11-s390x","name":"SLE11-SDK-Updates","installer_updates":false,"description":"SLE11-SDK-Updates for sle-11-s390x"},{"description":"SLE11-SDK-Updates for sle-11-ia64","installer_updates":false,"name":"SLE11-SDK-Updates","distro_target":"sle-11-ia64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-Updates/sle-11-ia64/","enabled":true,"id":1256}],"cpe":null,"product_type":"extension","description":null,"shortname":null,"free":true,"eula_url":"","arch":null,"friendly_version":"11","extensions":[],"release_stage":"released","id":1158,"identifier":"sle-sdk","recommended":false,"version":"11","name":"SUSE Linux Enterprise Software Development Kit","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Software Development Kit 11","former_identifier":"sle-sdk","release_type":null},{"name":"SUSE Linux Enterprise Software Development Kit","offline_predecessor_ids":[],"friendly_name":"SUSE Linux Enterprise Software Development Kit 11 (Migration)","migration_extra":false,"former_identifier":"sle-sdk-SP1-migration","release_type":null,"recommended":false,"version":"11","extensions":[],"id":1162,"release_stage":"released","identifier":"sle-sdk-SP1-migration","friendly_version":"11","eula_url":"","arch":null,"description":null,"shortname":null,"free":true,"cpe":null,"product_type":"extension","predecessor_ids":[],"product_class":"SLE-SDK","online_predecessor_ids":[],"repositories":[{"description":"SLE11-SDK-SP1-Pool for sle-11-ia64","installer_updates":false,"name":"SLE11-SDK-SP1-Pool","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-ia64/","distro_target":"sle-11-ia64","autorefresh":true,"id":1258,"enabled":true},{"description":"SLE11-SDK-SP1-Pool for sle-11-s390x","name":"SLE11-SDK-SP1-Pool","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-s390x","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-s390x/","enabled":true,"id":1259},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-ppc64/","distro_target":"sle-11-ppc64","autorefresh":true,"id":1261,"enabled":true,"description":"SLE11-SDK-SP1-Pool for sle-11-ppc64","installer_updates":false,"name":"SLE11-SDK-SP1-Pool"},{"enabled":true,"id":1263,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-i586/","name":"SLE11-SDK-SP1-Pool","installer_updates":false,"description":"SLE11-SDK-SP1-Pool for sle-11-i586"},{"installer_updates":false,"name":"SLE11-SDK-SP1-Pool","description":"SLE11-SDK-SP1-Pool for sle-11-x86_64","enabled":true,"id":1264,"distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-x86_64/"}]},{"arch":null,"eula_url":"","free":true,"description":null,"shortname":null,"product_type":"extension","cpe":null,"online_predecessor_ids":[],"product_class":"SLESMT","repositories":[{"installer_updates":false,"name":"SLE11-SMT-SP2-Pool","description":"SLE11-SMT-SP2-Pool for sle-11-x86_64","id":1392,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP2-Pool/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true},{"id":1394,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP2-Pool/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true,"installer_updates":false,"name":"SLE11-SMT-SP2-Pool","description":"SLE11-SMT-SP2-Pool for sle-11-i586"},{"id":1396,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP2-Pool/sle-11-s390x/","distro_target":"sle-11-s390x","autorefresh":true,"installer_updates":false,"name":"SLE11-SMT-SP2-Pool","description":"SLE11-SMT-SP2-Pool for sle-11-s390x"}],"predecessor_ids":[],"former_identifier":"sle-smt-SP2-migration","release_type":null,"friendly_name":"SUSE Linux Enterprise Subscription Management Tool 11 (Migration)","migration_extra":false,"offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Subscription Management Tool","version":"11","recommended":false,"release_stage":"released","identifier":"sle-smt-SP2-migration","id":1194,"extensions":[],"friendly_version":"11"},{"eula_url":"","arch":null,"free":true,"description":null,"shortname":null,"product_type":"extension","cpe":null,"predecessor_ids":[],"online_predecessor_ids":[],"product_class":"SLESMT","repositories":[{"description":"SLE11-SMT-Updates for sle-11-s390x","name":"SLE11-SMT-Updates","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-Updates/sle-11-s390x/","autorefresh":true,"distro_target":"sle-11-s390x","id":1400,"enabled":true},{"enabled":true,"id":1401,"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-Updates/sle-11-x86_64/","name":"SLE11-SMT-Updates","installer_updates":false,"description":"SLE11-SMT-Updates for sle-11-x86_64"},{"description":"SLE11-SMT-Updates for sle-11-i586","name":"SLE11-SMT-Updates","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-Updates/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","id":1402,"enabled":true}],"offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Subscription Management Tool","former_identifier":"sle-smt","release_type":null,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Subscription Management Tool 11","recommended":false,"version":"11","extensions":[],"release_stage":"released","identifier":"sle-smt","id":1196,"friendly_version":"11"}],"friendly_version":"11","migration_extra":false,"friendly_name":"SUSE Linux Enterprise Server 11 EC2-DevPay-Public","release_type":"EC2-DevPay-Public","former_identifier":"SUSE_SLES","name":"SUSE Linux Enterprise Server","offline_predecessor_ids":[],"version":"11","recommended":false},{"eula_url":"","arch":null,"free":false,"description":null,"shortname":null,"product_type":"extension","cpe":null,"predecessor_ids":[],"product_class":"SM_ENT_PROV_S","online_predecessor_ids":[],"repositories":[],"offline_predecessor_ids":[],"name":"SUSE Manager Mgmt Single","release_type":null,"former_identifier":"SUSE-Manager-Prov-Single","migration_extra":false,"friendly_name":"SUSE Manager Mgmt Single 1.2","recommended":false,"version":"1.2","extensions":[],"release_stage":"released","identifier":"SUSE-Manager-Prov-Single","id":1097,"friendly_version":"1.2"},{"release_type":null,"former_identifier":"sle-studioonsiterunner","migration_extra":false,"friendly_name":"SUSE Studio Extension for System z 1.2","offline_predecessor_ids":[],"name":"SUSE Studio Extension for System z","version":"1.2","recommended":false,"id":1098,"release_stage":"released","identifier":"sle-studioonsiterunner","extensions":[],"friendly_version":"1.2","arch":null,"eula_url":"","free":false,"description":null,"shortname":null,"product_type":"extension","cpe":null,"product_class":"STUDIOONSITERUNNER","online_predecessor_ids":[],"repositories":[{"url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-Updates/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","id":684,"enabled":true,"description":"SLES11-SP1-Updates for sle-11-i586","name":"SLES11-SP1-Updates","installer_updates":false},{"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-Pool/sle-11-i586/","enabled":true,"id":686,"description":"SLES11-SP1-Pool for sle-11-i586","name":"SLES11-SP1-Pool","installer_updates":false},{"url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-Pool/sle-11-s390x/","autorefresh":true,"distro_target":"sle-11-s390x","id":687,"enabled":true,"description":"SLES11-SP1-Pool for sle-11-s390x","name":"SLES11-SP1-Pool","installer_updates":false},{"description":"SLES11-SP1-Updates for sle-11-s390x","name":"SLES11-SP1-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-s390x","url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-Updates/sle-11-s390x/","enabled":true,"id":691},{"distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-Updates/sle-11-x86_64/","enabled":true,"id":705,"description":"SLES11-SP1-Updates for sle-11-x86_64","installer_updates":false,"name":"SLES11-SP1-Updates"},{"enabled":true,"id":711,"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-Pool/sle-11-x86_64/","name":"SLES11-SP1-Pool","installer_updates":false,"description":"SLES11-SP1-Pool for sle-11-x86_64"},{"name":"SLES11-SP1-Pool","installer_updates":false,"description":"SLES11-SP1-Pool for sle-11-ppc64","id":919,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-Pool/sle-11-ppc64/","autorefresh":true,"distro_target":"sle-11-ppc64"},{"name":"SLES11-SP1-Updates","installer_updates":false,"description":"SLES11-SP1-Updates for sle-11-ppc64","id":922,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-Updates/sle-11-ppc64/","autorefresh":true,"distro_target":"sle-11-ppc64"},{"enabled":true,"id":987,"distro_target":"sle-11-ia64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-Updates/sle-11-ia64/","installer_updates":false,"name":"SLES11-SP1-Updates","description":"SLES11-SP1-Updates for sle-11-ia64"},{"url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-Pool/sle-11-ia64/","autorefresh":true,"distro_target":"sle-11-ia64","id":991,"enabled":true,"description":"SLES11-SP1-Pool for sle-11-ia64","name":"SLES11-SP1-Pool","installer_updates":false},{"url":"https://updates.suse.com/repo/$RCE/SLE11-StudioOnsiteRunner-1.2-Pool/sle-11-s390x/","distro_target":"sle-11-s390x","autorefresh":true,"id":1111,"enabled":true,"description":"SLE11-StudioOnsiteRunner-1.2-Pool for sle-11-s390x","installer_updates":false,"name":"SLE11-StudioOnsiteRunner-1.2-Pool"},{"installer_updates":false,"name":"SLE11-StudioOnsiteRunner-1.2-Updates","description":"SLE11-StudioOnsiteRunner-1.2-Updates for sle-11-s390x","id":1112,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-StudioOnsiteRunner-1.2-Updates/sle-11-s390x/","distro_target":"sle-11-s390x","autorefresh":true}],"predecessor_ids":[]},{"product_type":"extension","cpe":null,"online_predecessor_ids":[],"product_class":"STUDIOONSITERUNNER","repositories":[{"description":"SLE11-StudioOnsiteRunner-1.3-Pool for sle-11-s390x","name":"SLE11-StudioOnsiteRunner-1.3-Pool","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-StudioOnsiteRunner-1.3-Pool/sle-11-s390x/","autorefresh":true,"distro_target":"sle-11-s390x","id":1113,"enabled":true},{"installer_updates":false,"name":"SLE11-StudioOnsiteRunner-1.3-Updates","description":"SLE11-StudioOnsiteRunner-1.3-Updates for sle-11-s390x","id":1114,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-StudioOnsiteRunner-1.3-Updates/sle-11-s390x/","distro_target":"sle-11-s390x","autorefresh":true}],"predecessor_ids":[],"arch":null,"eula_url":"","free":false,"shortname":null,"description":null,"id":1099,"release_stage":"released","identifier":"sle-studioonsiterunner","extensions":[],"friendly_version":"1.3","former_identifier":"sle-studioonsiterunner","release_type":null,"migration_extra":false,"friendly_name":"SUSE Studio Extension for System z 1.3","offline_predecessor_ids":[],"name":"SUSE Studio Extension for System z","version":"1.3","recommended":false},{"friendly_version":"11 SP2","identifier":"sle-haegeo","release_stage":"released","id":1100,"extensions":[],"version":"11.2","recommended":false,"former_identifier":"sle-haegeo","release_type":null,"friendly_name":"Geo Clustering for SUSE Linux Enterprise High Availability Extension 11 SP2 i586","migration_extra":false,"offline_predecessor_ids":[],"name":"Geo Clustering for SUSE Linux Enterprise High Availability Extension","repositories":[{"enabled":true,"id":1115,"distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-GEO-SP2-Updates/sle-11-i586/","installer_updates":false,"name":"SLE11-HAE-GEO-SP2-Updates","description":"SLE11-HAE-GEO-SP2-Updates for sle-11-i586"}],"online_predecessor_ids":[],"product_class":"SLE-HAE-GEO","predecessor_ids":[],"product_type":"extension","cpe":null,"free":false,"description":null,"shortname":null,"arch":"i586","eula_url":""},{"repositories":[{"distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-GEO-SP2-Updates/sle-11-x86_64/","enabled":true,"id":1116,"description":"SLE11-HAE-GEO-SP2-Updates for sle-11-x86_64","installer_updates":false,"name":"SLE11-HAE-GEO-SP2-Updates"}],"online_predecessor_ids":[],"product_class":"SLE-HAE-GEO","predecessor_ids":[],"product_type":"extension","cpe":null,"free":false,"description":null,"shortname":null,"arch":"x86_64","eula_url":"","friendly_version":"11 SP2","release_stage":"released","id":1101,"identifier":"sle-haegeo","extensions":[],"version":"11.2","recommended":false,"release_type":null,"former_identifier":"sle-haegeo","friendly_name":"Geo Clustering for SUSE Linux Enterprise High Availability Extension 11 SP2 x86_64","migration_extra":false,"offline_predecessor_ids":[],"name":"Geo Clustering for SUSE Linux Enterprise High Availability Extension"},{"arch":"i586","eula_url":"","description":null,"shortname":null,"free":false,"cpe":null,"product_type":"extension","online_predecessor_ids":[],"repositories":[{"description":"SLE11-HAE-GEO-SP3-Updates for sle-11-i586","installer_updates":false,"name":"SLE11-HAE-GEO-SP3-Updates","distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-GEO-SP3-Updates/sle-11-i586/","enabled":true,"id":1117}],"product_class":"SLE-HAE-GEO","predecessor_ids":[],"friendly_name":"Geo Clustering for SUSE Linux Enterprise High Availability Extension 11 SP3 i586","migration_extra":false,"release_type":null,"former_identifier":"sle-haegeo","name":"Geo Clustering for SUSE Linux Enterprise High Availability Extension","offline_predecessor_ids":[],"version":"11.3","recommended":false,"id":1102,"release_stage":"released","identifier":"sle-haegeo","extensions":[],"friendly_version":"11 SP3"},{"friendly_version":"11 SP2","id":1103,"release_stage":"released","identifier":"sle-haegeo","extensions":[],"version":"11.2","recommended":false,"former_identifier":"sle-haegeo","release_type":null,"friendly_name":"Geo Clustering for SUSE Linux Enterprise High Availability Extension 11 SP2 s390","migration_extra":false,"offline_predecessor_ids":[],"name":"Geo Clustering for SUSE Linux Enterprise High Availability Extension","online_predecessor_ids":[],"product_class":"SLE-HAE-GEO","repositories":[{"installer_updates":false,"name":"SLE11-HAE-GEO-SP2-Updates","description":"SLE11-HAE-GEO-SP2-Updates for sle-11-s390x","id":1118,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-GEO-SP2-Updates/sle-11-s390x/","distro_target":"sle-11-s390x","autorefresh":true}],"predecessor_ids":[],"product_type":"extension","cpe":null,"free":false,"description":null,"shortname":null,"arch":"s390","eula_url":""},{"migration_extra":false,"friendly_name":"Geo Clustering for SUSE Linux Enterprise High Availability Extension 11 SP3 i686","release_type":null,"former_identifier":"sle-haegeo","name":"Geo Clustering for SUSE Linux Enterprise High Availability Extension","offline_predecessor_ids":[],"version":"11.3","recommended":false,"release_stage":"released","id":1104,"identifier":"sle-haegeo","extensions":[],"friendly_version":"11 SP3","arch":"i686","eula_url":"","description":null,"shortname":null,"free":false,"cpe":null,"product_type":"extension","online_predecessor_ids":[],"product_class":"SLE-HAE-GEO","repositories":[{"enabled":true,"id":1117,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-GEO-SP3-Updates/sle-11-i586/","name":"SLE11-HAE-GEO-SP3-Updates","installer_updates":false,"description":"SLE11-HAE-GEO-SP3-Updates for sle-11-i586"}],"predecessor_ids":[]},{"cpe":null,"product_type":"extension","online_predecessor_ids":[],"repositories":[{"description":"SLE11-HAE-GEO-SP2-Updates for sle-11-i586","name":"SLE11-HAE-GEO-SP2-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-GEO-SP2-Updates/sle-11-i586/","enabled":true,"id":1115}],"product_class":"SLE-HAE-GEO","predecessor_ids":[],"arch":"i486","eula_url":"","description":null,"shortname":null,"free":false,"identifier":"sle-haegeo","release_stage":"released","id":1105,"extensions":[],"friendly_version":"11 SP2","friendly_name":"Geo Clustering for SUSE Linux Enterprise High Availability Extension 11 SP2 i486","migration_extra":false,"release_type":null,"former_identifier":"sle-haegeo","name":"Geo Clustering for SUSE Linux Enterprise High Availability Extension","offline_predecessor_ids":[],"version":"11.2","recommended":false},{"friendly_version":"11 SP2","extensions":[],"identifier":"sle-haegeo","release_stage":"released","id":1106,"recommended":false,"version":"11.2","name":"Geo Clustering for SUSE Linux Enterprise High Availability Extension","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"Geo Clustering for SUSE Linux Enterprise High Availability Extension 11 SP2 ia64","former_identifier":"sle-haegeo","release_type":null,"predecessor_ids":[],"product_class":"SLE-HAE-GEO","online_predecessor_ids":[],"repositories":[{"description":"SLE11-HAE-GEO-SP2-Updates for sle-11-ia64","name":"SLE11-HAE-GEO-SP2-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-ia64","url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-GEO-SP2-Updates/sle-11-ia64/","enabled":true,"id":1119}],"cpe":null,"product_type":"extension","shortname":null,"description":null,"free":false,"eula_url":"","arch":"ia64"},{"recommended":false,"version":"11.3","offline_predecessor_ids":[],"name":"Geo Clustering for SUSE Linux Enterprise High Availability Extension","release_type":null,"former_identifier":"sle-haegeo","friendly_name":"Geo Clustering for SUSE Linux Enterprise High Availability Extension 11 SP3 x86_64","migration_extra":false,"friendly_version":"11 SP3","extensions":[],"id":1107,"release_stage":"released","identifier":"sle-haegeo","free":false,"shortname":null,"description":null,"eula_url":"","arch":"x86_64","predecessor_ids":[],"online_predecessor_ids":[],"product_class":"SLE-HAE-GEO","repositories":[{"url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-GEO-SP3-Updates/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true,"id":1120,"enabled":true,"description":"SLE11-HAE-GEO-SP3-Updates for sle-11-x86_64","installer_updates":false,"name":"SLE11-HAE-GEO-SP3-Updates"}],"product_type":"extension","cpe":null},{"offline_predecessor_ids":[],"name":"Geo Clustering for SUSE Linux Enterprise High Availability Extension","former_identifier":"sle-haegeo","release_type":null,"friendly_name":"Geo Clustering for SUSE Linux Enterprise High Availability Extension 11 SP2 i386","migration_extra":false,"recommended":false,"version":"11.2","extensions":[],"id":1108,"release_stage":"released","identifier":"sle-haegeo","friendly_version":"11 SP2","eula_url":"","arch":"i386","free":false,"description":null,"shortname":null,"product_type":"extension","cpe":null,"predecessor_ids":[],"online_predecessor_ids":[],"product_class":"SLE-HAE-GEO","repositories":[{"enabled":true,"id":1115,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-GEO-SP2-Updates/sle-11-i586/","name":"SLE11-HAE-GEO-SP2-Updates","installer_updates":false,"description":"SLE11-HAE-GEO-SP2-Updates for sle-11-i586"}]},{"friendly_version":"11 SP2","extensions":[],"release_stage":"released","id":1109,"identifier":"sle-haegeo","recommended":false,"version":"11.2","offline_predecessor_ids":[],"name":"Geo Clustering for SUSE Linux Enterprise High Availability Extension","release_type":null,"former_identifier":"sle-haegeo","friendly_name":"Geo Clustering for SUSE Linux Enterprise High Availability Extension 11 SP2 s390x","migration_extra":false,"predecessor_ids":[],"product_class":"SLE-HAE-GEO","online_predecessor_ids":[],"repositories":[{"installer_updates":false,"name":"SLE11-HAE-GEO-SP2-Updates","description":"SLE11-HAE-GEO-SP2-Updates for sle-11-s390x","id":1118,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-GEO-SP2-Updates/sle-11-s390x/","distro_target":"sle-11-s390x","autorefresh":true}],"product_type":"extension","cpe":null,"free":false,"shortname":null,"description":null,"eula_url":"","arch":"s390x"},{"friendly_version":"11 SP3","extensions":[],"release_stage":"released","identifier":"sle-haegeo","id":1110,"recommended":false,"version":"11.3","offline_predecessor_ids":[],"name":"Geo Clustering for SUSE Linux Enterprise High Availability Extension","release_type":null,"former_identifier":"sle-haegeo","friendly_name":"Geo Clustering for SUSE Linux Enterprise High Availability Extension 11 SP3 s390x","migration_extra":false,"predecessor_ids":[],"online_predecessor_ids":[],"product_class":"SLE-HAE-GEO","repositories":[{"installer_updates":false,"name":"SLE11-HAE-GEO-SP3-Updates","description":"SLE11-HAE-GEO-SP3-Updates for sle-11-s390x","enabled":true,"id":1121,"distro_target":"sle-11-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-GEO-SP3-Updates/sle-11-s390x/"}],"product_type":"extension","cpe":null,"free":false,"shortname":null,"description":null,"eula_url":"","arch":"s390x"},{"eula_url":"","arch":"i686","free":false,"shortname":null,"description":null,"product_type":"extension","cpe":null,"predecessor_ids":[],"repositories":[{"url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-GEO-SP2-Updates/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true,"id":1115,"enabled":true,"description":"SLE11-HAE-GEO-SP2-Updates for sle-11-i586","installer_updates":false,"name":"SLE11-HAE-GEO-SP2-Updates"}],"online_predecessor_ids":[],"product_class":"SLE-HAE-GEO","offline_predecessor_ids":[],"name":"Geo Clustering for SUSE Linux Enterprise High Availability Extension","release_type":null,"former_identifier":"sle-haegeo","friendly_name":"Geo Clustering for SUSE Linux Enterprise High Availability Extension 11 SP2 i686","migration_extra":false,"recommended":false,"version":"11.2","extensions":[],"release_stage":"released","id":1111,"identifier":"sle-haegeo","friendly_version":"11 SP2"},{"version":"11.2","recommended":false,"migration_extra":false,"friendly_name":"Geo Clustering for SUSE Linux Enterprise High Availability Extension 11 SP2 ppc","former_identifier":"sle-haegeo","release_type":null,"name":"Geo Clustering for SUSE Linux Enterprise High Availability Extension","offline_predecessor_ids":[],"friendly_version":"11 SP2","release_stage":"released","id":1112,"identifier":"sle-haegeo","extensions":[],"description":null,"shortname":null,"free":false,"arch":"ppc","eula_url":"","online_predecessor_ids":[],"repositories":[{"url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-GEO-SP2-Updates/sle-11-ppc64/","distro_target":"sle-11-ppc64","autorefresh":true,"id":1122,"enabled":true,"description":"SLE11-HAE-GEO-SP2-Updates for sle-11-ppc64","installer_updates":false,"name":"SLE11-HAE-GEO-SP2-Updates"}],"product_class":"SLE-HAE-GEO","predecessor_ids":[],"cpe":null,"product_type":"extension"},{"description":null,"shortname":null,"free":false,"arch":"ppc64","eula_url":"","product_class":"SLE-HAE-GEO","online_predecessor_ids":[],"repositories":[{"autorefresh":true,"distro_target":"sle-11-ppc64","url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-GEO-SP2-Updates/sle-11-ppc64/","enabled":true,"id":1122,"description":"SLE11-HAE-GEO-SP2-Updates for sle-11-ppc64","name":"SLE11-HAE-GEO-SP2-Updates","installer_updates":false}],"predecessor_ids":[],"cpe":null,"product_type":"extension","version":"11.2","recommended":false,"migration_extra":false,"friendly_name":"Geo Clustering for SUSE Linux Enterprise High Availability Extension 11 SP2 ppc64","release_type":null,"former_identifier":"sle-haegeo","name":"Geo Clustering for SUSE Linux Enterprise High Availability Extension","offline_predecessor_ids":[],"friendly_version":"11 SP2","release_stage":"released","id":1113,"identifier":"sle-haegeo","extensions":[]},{"friendly_version":"3","identifier":"SUSE-Cloud","release_stage":"released","id":1114,"extensions":[],"version":"3","recommended":false,"migration_extra":false,"friendly_name":"SUSE Cloud 3 x86_64","release_type":null,"former_identifier":"SUSE-Cloud","name":"SUSE Cloud","offline_predecessor_ids":[],"online_predecessor_ids":[],"repositories":[{"url":"https://updates.suse.com/repo/$RCE/SUSE-Cloud-3.0-Pool/sle-11-x86_64/","autorefresh":false,"distro_target":"sle-11-x86_64","id":1158,"enabled":true,"description":"SUSE-Cloud-3.0-Pool for sle-11-x86_64","name":"SUSE-Cloud-3.0-Pool","installer_updates":false},{"installer_updates":false,"name":"SUSE-Cloud-3.0-Updates","description":"SUSE-Cloud-3.0-Updates for sle-11-x86_64","enabled":true,"id":1159,"distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SUSE-Cloud-3.0-Updates/sle-11-x86_64/"},{"distro_target":"sle-11-x86_64","autorefresh":false,"url":"https://updates.suse.com/repo/$RCE/SUSE-Cloud-4-Pool/sle-11-x86_64/","enabled":false,"id":1466,"description":"SUSE-Cloud-4-Pool for sle-11-x86_64","installer_updates":false,"name":"SUSE-Cloud-4-Pool"},{"enabled":false,"id":1467,"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SUSE-Cloud-4-Updates/sle-11-x86_64/","name":"SUSE-Cloud-4-Updates","installer_updates":false,"description":"SUSE-Cloud-4-Updates for sle-11-x86_64"}],"product_class":"SUSE_CLOUD","predecessor_ids":[],"cpe":null,"product_type":"extension","shortname":null,"description":null,"free":false,"arch":"x86_64","eula_url":""},{"friendly_version":"12","extensions":[{"shortname":"SDK12","description":"

SUSE Linux Enterprise Software Development Kit 12 is the Software Development Kit for the family of SUSE Linux Enterprise products. It is a free of charge extension for partners and customers working with SUSE Linux Enterprise Server and Desktop and derived products.

Packages on the SDK are delivered without L3 support; maintenance updates will be done for critical security and critical non-security issues, and where needed to remain in sync with packages delivered in the SUSE Linux Enterprise Server and Desktop products.

Packages to rebuild SUSE Linux Enterprise Server are not part of the SUSE Linux Enterprise Software Development Kit.

","free":true,"eula_url":"https://updates.suse.com/SUSE/Products/SLE-SDK/12/s390x/product.license/","arch":"s390x","predecessor_ids":[],"online_predecessor_ids":[],"product_class":"SLE-SDK","repositories":[{"description":"SLE-SDK12-Updates for sle-12-s390x","installer_updates":false,"name":"SLE-SDK12-Updates","url":"https://updates.suse.com/SUSE/Updates/SLE-SDK/12/s390x/update/","distro_target":"sle-12-s390x","autorefresh":true,"id":1660,"enabled":true},{"enabled":false,"id":1661,"distro_target":"sle-12-s390x","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-SDK/12/s390x/update_debug/","installer_updates":false,"name":"SLE-SDK12-Debuginfo-Updates","description":"SLE-SDK12-Debuginfo-Updates for sle-12-s390x"},{"enabled":true,"id":1662,"autorefresh":false,"distro_target":"sle-12-s390x","url":"https://updates.suse.com/SUSE/Products/SLE-SDK/12/s390x/product/","name":"SLE-SDK12-Pool","installer_updates":false,"description":"SLE-SDK12-Pool for sle-12-s390x"},{"description":"SLE-SDK12-Debuginfo-Pool for sle-12-s390x","installer_updates":false,"name":"SLE-SDK12-Debuginfo-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-SDK/12/s390x/product_debug/","distro_target":"sle-12-s390x","autorefresh":false,"id":1663,"enabled":false}],"cpe":"cpe:/o:suse:sle-sdk:12","product_type":"extension","recommended":false,"version":"12","name":"SUSE Linux Enterprise Software Development Kit","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Software Development Kit 12 s390x","former_identifier":"sle-sdk","release_type":null,"friendly_version":"12","extensions":[],"id":1146,"release_stage":"released","identifier":"sle-sdk"},{"friendly_version":"12","id":1149,"release_stage":"released","identifier":"sle-module-legacy","extensions":[],"version":"12","recommended":false,"former_identifier":"sle-module-legacy","release_type":null,"friendly_name":"Legacy Module 12 s390x","migration_extra":false,"offline_predecessor_ids":[],"name":"Legacy Module","product_class":"MODULE","online_predecessor_ids":[],"repositories":[{"installer_updates":false,"name":"SLE-Module-Legacy12-Updates","description":"SLE-Module-Legacy12-Updates for sle-12-s390x","enabled":true,"id":1672,"distro_target":"sle-12-s390x","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/12/s390x/update/"},{"description":"SLE-Module-Legacy12-Debuginfo-Updates for sle-12-s390x","installer_updates":false,"name":"SLE-Module-Legacy12-Debuginfo-Updates","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/12/s390x/update_debug/","distro_target":"sle-12-s390x","autorefresh":true,"id":1673,"enabled":false},{"installer_updates":false,"name":"SLE-Module-Legacy12-Pool","description":"SLE-Module-Legacy12-Pool for sle-12-s390x","id":1674,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/12/s390x/product/","distro_target":"sle-12-s390x","autorefresh":false},{"autorefresh":false,"distro_target":"sle-12-s390x","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/12/s390x/product_debug/","enabled":false,"id":1675,"description":"SLE-Module-Legacy12-Debuginfo-Pool for sle-12-s390x","name":"SLE-Module-Legacy12-Debuginfo-Pool","installer_updates":false},{"installer_updates":false,"name":"SLE-Module-Legacy12-Source-Pool","description":"SLE-Module-Legacy12-Source-Pool for sle-12-s390x","id":1988,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/12/s390x/product_source/","distro_target":"sle-12-s390x","autorefresh":false}],"predecessor_ids":[],"product_type":"module","cpe":"cpe:/o:suse:sle-module-legacy:12","free":true,"description":"

The Legacy Module helps you migrating applications from SUSE Linux Enterprise 10 and 11 and other systems to SUSE Linux Enterprise 12, by providing packages which are discontinued on SUSE Linux Enterprise Server, such as: sendmail, syslog-ng, IBM Java6, and a number of libraries (for example openssl-0.9.8).

Access to the Legacy Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself. Packages in the this module are usually supported for at most three years. Support for Sendmail and IBM Java 6 will end in September 2017 the latest.

","shortname":"Legacy-Module","arch":"s390x","eula_url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/12/s390x/product.license/"},{"cpe":"cpe:/o:suse:sle-module-web-scripting:12","product_type":"module","online_predecessor_ids":[],"product_class":"MODULE","repositories":[{"id":1684,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/12/s390x/update/","autorefresh":true,"distro_target":"sle-12-s390x","name":"SLE-Module-Web-Scripting12-Updates","installer_updates":false,"description":"SLE-Module-Web-Scripting12-Updates for sle-12-s390x"},{"description":"SLE-Module-Web-Scripting12-Debuginfo-Updates for sle-12-s390x","name":"SLE-Module-Web-Scripting12-Debuginfo-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-12-s390x","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/12/s390x/update_debug/","enabled":false,"id":1685},{"description":"SLE-Module-Web-Scripting12-Pool for sle-12-s390x","installer_updates":false,"name":"SLE-Module-Web-Scripting12-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/12/s390x/product/","distro_target":"sle-12-s390x","autorefresh":false,"id":1686,"enabled":true},{"id":1687,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/12/s390x/product_debug/","distro_target":"sle-12-s390x","autorefresh":false,"installer_updates":false,"name":"SLE-Module-Web-Scripting12-Debuginfo-Pool","description":"SLE-Module-Web-Scripting12-Debuginfo-Pool for sle-12-s390x"},{"description":"SLE-Module-Web-Scripting12-Source-Pool for sle-12-s390x","installer_updates":false,"name":"SLE-Module-Web-Scripting12-Source-Pool","distro_target":"sle-12-s390x","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/12/s390x/product_source/","enabled":false,"id":1991}],"predecessor_ids":[],"arch":"s390x","eula_url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/12/s390x/product.license/","shortname":"Web-and-Scripting-Module","description":"

The SUSE Linux Enterprise Web and Scripting Module delivers a comprehensive suite of scripting languages, frameworks, and related tools helping developers and systems administrators accelerate the creation of stable, modern web applications, using dynamic languages, such as PHP, Ruby on Rails, and Python.

Access to the Web and Scripting Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself: Package versions in the this module are usually supported for at most three years. We are planning to release more recent versions on a schedule of approximately 18 month; the exact dates may differ per package.

","free":true,"id":1152,"release_stage":"released","identifier":"sle-module-web-scripting","extensions":[],"friendly_version":"12","migration_extra":false,"friendly_name":"Web and Scripting Module 12 s390x","release_type":null,"former_identifier":"sle-module-web-scripting","name":"Web and Scripting Module","offline_predecessor_ids":[],"version":"12","recommended":false},{"friendly_name":"Public Cloud Module 12 s390x","migration_extra":false,"release_type":null,"former_identifier":"sle-module-public-cloud","name":"Public Cloud Module","offline_predecessor_ids":[],"version":"12","recommended":false,"identifier":"sle-module-public-cloud","release_stage":"released","id":1219,"extensions":[],"friendly_version":"12","arch":"s390x","eula_url":"","shortname":"Public-Cloud-Module","description":"

The Public Cloud Module is a collection of tools that enables you to create and manage cloud images from the commandline on SUSE Linux Enterprise Server. When building your own images with KIWI or SUSE Studio, initialization code specific to the target cloud is included in that image.

Access to the Public Cloud Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself; please check the Release Notes for further details.

","free":true,"cpe":"cpe:/o:suse:sle-module-public-cloud:12","product_type":"module","repositories":[{"description":"SLE-Module-Public-Cloud12-Updates for sle-12-s390x","name":"SLE-Module-Public-Cloud12-Updates","installer_updates":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/12/s390x/update/","autorefresh":true,"distro_target":"sle-12-s390x","id":1696,"enabled":true},{"enabled":false,"id":1697,"distro_target":"sle-12-s390x","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/12/s390x/update_debug/","installer_updates":false,"name":"SLE-Module-Public-Cloud12-Debuginfo-Updates","description":"SLE-Module-Public-Cloud12-Debuginfo-Updates for sle-12-s390x"},{"enabled":true,"id":1698,"distro_target":"sle-12-s390x","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/12/s390x/product/","installer_updates":false,"name":"SLE-Module-Public-Cloud12-Pool","description":"SLE-Module-Public-Cloud12-Pool for sle-12-s390x"},{"description":"SLE-Module-Public-Cloud12-Debuginfo-Pool for sle-12-s390x","name":"SLE-Module-Public-Cloud12-Debuginfo-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-12-s390x","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/12/s390x/product_debug/","enabled":false,"id":1699},{"id":1994,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/12/s390x/product_source/","autorefresh":false,"distro_target":"sle-12-s390x","name":"SLE-Module-Public-Cloud12-Source-Pool","installer_updates":false,"description":"SLE-Module-Public-Cloud12-Source-Pool for sle-12-s390x"}],"online_predecessor_ids":[],"product_class":"MODULE","predecessor_ids":[]},{"friendly_version":"12","extensions":[{"friendly_version":"12","release_stage":"released","id":1156,"identifier":"sle-ha-geo","extensions":[],"version":"12","recommended":false,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise High Availability GEO Extension 12 s390x","release_type":null,"former_identifier":"sle-haegeo","name":"SUSE Linux Enterprise High Availability GEO Extension","offline_predecessor_ids":[1109,1110,1287],"online_predecessor_ids":[],"repositories":[{"installer_updates":false,"name":"SLE-HA-GEO12-Updates","description":"SLE-HA-GEO12-Updates for sle-12-s390x","id":1716,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-HA-GEO/12/s390x/update/","distro_target":"sle-12-s390x","autorefresh":true},{"url":"https://updates.suse.com/SUSE/Updates/SLE-HA-GEO/12/s390x/update_debug/","distro_target":"sle-12-s390x","autorefresh":true,"id":1717,"enabled":false,"description":"SLE-HA-GEO12-Debuginfo-Updates for sle-12-s390x","installer_updates":false,"name":"SLE-HA-GEO12-Debuginfo-Updates"},{"id":1718,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-HA-GEO/12/s390x/product/","autorefresh":false,"distro_target":"sle-12-s390x","name":"SLE-HA-GEO12-Pool","installer_updates":false,"description":"SLE-HA-GEO12-Pool for sle-12-s390x"},{"id":1719,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-HA-GEO/12/s390x/product_debug/","distro_target":"sle-12-s390x","autorefresh":false,"installer_updates":false,"name":"SLE-HA-GEO12-Debuginfo-Pool","description":"SLE-HA-GEO12-Debuginfo-Pool for sle-12-s390x"}],"product_class":"SLE-HAE-GEO","predecessor_ids":[],"cpe":"cpe:/o:suse:sle-ha-geo:12","product_type":"extension","description":"SUSE Linux Enterprise High Availability Geographical Cluster Extension","shortname":"SLEHA-12-GEO","free":false,"arch":"s390x","eula_url":"https://updates.suse.com/SUSE/Products/SLE-HA-GEO/12/s390x/product.license/"}],"release_stage":"released","id":1244,"identifier":"sle-ha","recommended":false,"version":"12","offline_predecessor_ids":[1080,1082,1084,1086,1257],"name":"SUSE Linux Enterprise High Availability Extension","former_identifier":"sle-hae","release_type":null,"friendly_name":"SUSE Linux Enterprise High Availability Extension 12 s390x","migration_extra":false,"predecessor_ids":[],"product_class":"SLE-HAE-Z","online_predecessor_ids":[],"repositories":[{"installer_updates":false,"name":"SLE-HA12-Updates","description":"SLE-HA12-Updates for sle-12-s390x","id":1708,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-HA/12/s390x/update/","distro_target":"sle-12-s390x","autorefresh":true},{"description":"SLE-HA12-Debuginfo-Updates for sle-12-s390x","name":"SLE-HA12-Debuginfo-Updates","installer_updates":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-HA/12/s390x/update_debug/","autorefresh":true,"distro_target":"sle-12-s390x","id":1709,"enabled":false},{"installer_updates":false,"name":"SLE-HA12-Pool","description":"SLE-HA12-Pool for sle-12-s390x","enabled":true,"id":1710,"distro_target":"sle-12-s390x","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-HA/12/s390x/product/"},{"url":"https://updates.suse.com/SUSE/Products/SLE-HA/12/s390x/product_debug/","distro_target":"sle-12-s390x","autorefresh":false,"id":1711,"enabled":false,"description":"SLE-HA12-Debuginfo-Pool for sle-12-s390x","installer_updates":false,"name":"SLE-HA12-Debuginfo-Pool"}],"product_type":"extension","cpe":"cpe:/o:suse:sle-ha:12","free":false,"description":"SUSE Linux Enterprise High Availability Extension.","shortname":"SLEHA-12","eula_url":"https://updates.suse.com/SUSE/Products/SLE-HA/12/s390x/product.license/","arch":"s390x"},{"predecessor_ids":[],"online_predecessor_ids":[],"repositories":[{"description":"SLE-Module-Adv-Systems-Management12-Updates for sle-12-s390x","name":"SLE-Module-Adv-Systems-Management12-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-12-s390x","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Adv-Systems-Management/12/s390x/update/","enabled":true,"id":1766},{"description":"SLE-Module-Adv-Systems-Management12-Debuginfo-Updates for sle-12-s390x","name":"SLE-Module-Adv-Systems-Management12-Debuginfo-Updates","installer_updates":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Adv-Systems-Management/12/s390x/update_debug/","autorefresh":true,"distro_target":"sle-12-s390x","id":1767,"enabled":false},{"description":"SLE-Module-Adv-Systems-Management12-Pool for sle-12-s390x","name":"SLE-Module-Adv-Systems-Management12-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Adv-Systems-Management/12/s390x/product/","autorefresh":false,"distro_target":"sle-12-s390x","id":1768,"enabled":true},{"id":1769,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Adv-Systems-Management/12/s390x/product_debug/","autorefresh":false,"distro_target":"sle-12-s390x","name":"SLE-Module-Adv-Systems-Management12-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-Adv-Systems-Management12-Debuginfo-Pool for sle-12-s390x"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Adv-Systems-Management/12/s390x/product_source/","distro_target":"sle-12-s390x","autorefresh":false,"id":1997,"enabled":false,"description":"SLE-Module-Adv-Systems-Management12-Source-Pool for sle-12-s390x","installer_updates":false,"name":"SLE-Module-Adv-Systems-Management12-Source-Pool"}],"product_class":"MODULE","product_type":"module","cpe":"cpe:/o:suse:sle-module-adv-systems-management:12","free":true,"description":"

This Module contains current versions of the popular configuration management frameworks Puppet and CFEngine as well as the new systems management toolbox called machinery.

The machinery tool will be frequently updated and is SUSE's upcoming systems management toolbox for inspecting and validating systems remotely, storing their system description and creating new systems to deploy them in datacenters and clouds.

","shortname":"Adv-Sys-Mgmt-Module","eula_url":"","arch":"s390x","friendly_version":"12","extensions":[],"id":1295,"release_stage":"released","identifier":"sle-module-adv-systems-management","recommended":false,"version":"12","offline_predecessor_ids":[],"name":"Advanced Systems Management Module","former_identifier":"sle-module-adv-systems-management","release_type":null,"friendly_name":"Advanced Systems Management Module 12 s390x","migration_extra":false},{"version":"12","recommended":false,"friendly_name":"Toolchain Module 12 s390x","migration_extra":false,"release_type":null,"former_identifier":"sle-module-toolchain","name":"Toolchain Module","offline_predecessor_ids":[],"friendly_version":"12","release_stage":"released","identifier":"sle-module-toolchain","id":1340,"extensions":[],"shortname":"Toolchain-Module","description":"Via this Module you will have access to a more recent GCC and Toolchain in addition to the default compiler of SUSE Linux Enterprise. Access to the Toolchain Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself. Please check the Release Notes for further details.","free":true,"arch":"s390x","eula_url":"","product_class":"MODULE","online_predecessor_ids":[],"repositories":[{"enabled":true,"id":1899,"distro_target":"sle-12-s390x","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Toolchain/12/s390x/update/","installer_updates":false,"name":"SLE-Module-Toolchain12-Updates","description":"SLE-Module-Toolchain12-Updates for sle-12-s390x"},{"description":"SLE-Module-Toolchain12-Debuginfo-Updates for sle-12-s390x","installer_updates":false,"name":"SLE-Module-Toolchain12-Debuginfo-Updates","distro_target":"sle-12-s390x","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Toolchain/12/s390x/update_debug/","enabled":false,"id":1900},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Toolchain/12/s390x/product/","autorefresh":false,"distro_target":"sle-12-s390x","id":1901,"enabled":true,"description":"SLE-Module-Toolchain12-Pool for sle-12-s390x","name":"SLE-Module-Toolchain12-Pool","installer_updates":false},{"name":"SLE-Module-Toolchain12-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-Toolchain12-Debuginfo-Pool for sle-12-s390x","id":1902,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Toolchain/12/s390x/product_debug/","autorefresh":false,"distro_target":"sle-12-s390x"}],"predecessor_ids":[],"cpe":"cpe:/o:suse:sle-module-toolchain:12","product_type":"module"},{"former_identifier":"sle-module-containers","release_type":null,"migration_extra":false,"friendly_name":"Containers Module 12 s390x","offline_predecessor_ids":[],"name":"Containers Module","version":"12","recommended":false,"id":1354,"release_stage":"released","identifier":"sle-module-containers","extensions":[],"friendly_version":"12","arch":"s390x","eula_url":"","free":true,"shortname":"Containers-Module","description":"

This Module contains several packages revolving around containers and related tools.

","product_type":"module","cpe":"cpe:/o:suse:sle-module-containers:12","product_class":"MODULE","online_predecessor_ids":[],"repositories":[{"description":"SLE-Module-Containers12-Updates for sle-12-s390x","installer_updates":false,"name":"SLE-Module-Containers12-Updates","distro_target":"sle-12-s390x","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/12/s390x/update/","enabled":true,"id":1977},{"autorefresh":true,"distro_target":"sle-12-s390x","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/12/s390x/update_debug/","enabled":false,"id":1978,"description":"SLE-Module-Containers12-Debuginfo-Updates for sle-12-s390x","name":"SLE-Module-Containers12-Debuginfo-Updates","installer_updates":false},{"description":"SLE-Module-Containers12-Pool for sle-12-s390x","installer_updates":false,"name":"SLE-Module-Containers12-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/12/s390x/product/","distro_target":"sle-12-s390x","autorefresh":false,"id":1979,"enabled":true},{"name":"SLE-Module-Containers12-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-Containers12-Debuginfo-Pool for sle-12-s390x","enabled":false,"id":1980,"autorefresh":false,"distro_target":"sle-12-s390x","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/12/s390x/product_debug/"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/12/s390x/product_source/","distro_target":"sle-12-s390x","autorefresh":false,"id":1981,"enabled":false,"description":"SLE-Module-Containers12-Source-Pool for sle-12-s390x","installer_updates":false,"name":"SLE-Module-Containers12-Source-Pool"}],"predecessor_ids":[]},{"product_type":"module","cpe":"cpe:/o:suse:sle-module-certifications:12","predecessor_ids":[],"repositories":[{"description":"SLE-Module-Certifications12-Updates for sle-12-s390x","name":"SLE-Module-Certifications12-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-12-s390x","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Certifications/12/s390x/update/","enabled":true,"id":2064},{"name":"SLE-Module-Certifications12-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-Certifications12-Debuginfo-Updates for sle-12-s390x","id":2065,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Certifications/12/s390x/update_debug/","autorefresh":true,"distro_target":"sle-12-s390x"},{"installer_updates":false,"name":"SLE-Module-Certifications12-Pool","description":"SLE-Module-Certifications12-Pool for sle-12-s390x","enabled":true,"id":2066,"distro_target":"sle-12-s390x","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Certifications/12/s390x/product/"},{"enabled":false,"id":2067,"autorefresh":false,"distro_target":"sle-12-s390x","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Certifications/12/s390x/product_debug/","name":"SLE-Module-Certifications12-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-Certifications12-Debuginfo-Pool for sle-12-s390x"}],"online_predecessor_ids":[],"product_class":"MODULE","eula_url":"","arch":"s390x","free":true,"shortname":"Certifications","description":"

This module contains packages specific to certifications.

It contains:

Packages used for the Evaluated Configuration of the Common Criteria Certification of SUSE Linux Enterprise Server 12 GA.

Packages used for the FIPS 140-2 certification of various cryptographics modules.

Please refer to our certification pages referenced from https://www.suse.com/security/

","extensions":[],"id":1367,"release_stage":"released","identifier":"sle-module-certifications","friendly_version":"12","offline_predecessor_ids":[],"name":"Certifications Module","release_type":null,"former_identifier":"sle-module-certifications","friendly_name":"Certifications Module 12 s390x","migration_extra":false,"recommended":false,"version":"12"},{"friendly_version":"12","release_stage":"released","identifier":"SLES-LTSS","id":1380,"extensions":[],"version":"12","recommended":false,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Server LTSS 12 s390x","release_type":null,"former_identifier":"SUSE_SLES","name":"SUSE Linux Enterprise Server LTSS","offline_predecessor_ids":[],"product_class":"SLES12-GA-LTSS-Z","online_predecessor_ids":[],"repositories":[{"description":"SLES12-LTSS-Updates for sle-12-s390x","name":"SLES12-LTSS-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-12-s390x","url":"https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-LTSS/s390x/update/","enabled":true,"id":2107},{"autorefresh":true,"distro_target":"sle-12-s390x","url":"https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-LTSS/s390x/update_debug/","enabled":false,"id":2108,"description":"SLES12-LTSS-Debuginfo-Updates for sle-12-s390x","name":"SLES12-LTSS-Debuginfo-Updates","installer_updates":false}],"predecessor_ids":[],"cpe":"cpe:/o:suse:sles-ltss:12","product_type":"extension","shortname":"SLES12 LTSS","description":"SUSE Linux Enterprise offers a comprehensive suite of products built on a single code base. The platform addresses business needs from the smallest thin-client devices to the world's most powerful high-performance computing and mainframe servers. SUSE Linux Enterprise offers common management tools and technology certifications across the platform, and each product is enterprise-class.","free":false,"arch":"s390x","eula_url":""},{"predecessor_ids":[],"online_predecessor_ids":[],"product_class":"SLES-Z","repositories":[{"url":"https://updates.suse.com/SUSE/Backports/SLE-12_s390x/standard/","distro_target":"sle-12-s390x","autorefresh":false,"id":2330,"enabled":true,"description":"SUSE-PackageHub-12-Standard-Pool for sle-12-s390x","installer_updates":false,"name":"SUSE-PackageHub-12-Standard-Pool"},{"installer_updates":false,"name":"SUSE-PackageHub-12-Debuginfo","description":"SUSE-PackageHub-12-Debuginfo for sle-12-s390x","id":2331,"enabled":false,"url":"https://updates.suse.com/SUSE/Backports/SLE-12_s390x/standard_debug/","distro_target":"sle-12-s390x","autorefresh":true},{"description":"SUSE-PackageHub-12-Pool for sle-12-s390x","name":"SUSE-PackageHub-12-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Backports/SLE-12_s390x/product/","autorefresh":false,"distro_target":"sle-12-s390x","id":2332,"enabled":true}],"product_type":"extension","cpe":"cpe:/o:suse:packagehub:12","free":true,"shortname":"SUSE-PackageHub-12","description":"SUSE Package Hub is a free of charge extension providing access to community maintained packages built to run on SUSE Linux Enterprise Server. Built from the same sources used in the openSUSE distributions, these quality packages provide additional software to what is found in the SUSE Linux Enterprise Server product. Packages from the Package Hub are delivered without L3 support from SUSE. General updates and fixes to the packages in SUSE Package Hub are provided by the openSUSE community based on their discretion though SUSE will monitor and ensure that any known critical security issues will be addressed. Packages in the Package Hub are approved by SUSE for use with SUSE Linux Enterprise Server 12 and to not interfere with the supportability of SUSE Linux Enterprise Server it's modules and extensions. For more information about SUSE Package Hub please visit https://packagehub.suse.com.","eula_url":"","arch":"s390x","friendly_version":"12","extensions":[],"identifier":"PackageHub","release_stage":"released","id":1474,"recommended":false,"version":"12","offline_predecessor_ids":[],"name":"SUSE Package Hub","former_identifier":"PackageHub","release_type":null,"migration_extra":false,"friendly_name":"SUSE Package Hub 12 s390x"}],"release_stage":"released","id":1115,"identifier":"SLES","recommended":false,"version":"12","name":"SUSE Linux Enterprise Server","offline_predecessor_ids":[693,745,755,805],"friendly_name":"SUSE Linux Enterprise Server 12 s390x","migration_extra":false,"release_type":null,"former_identifier":"SUSE_SLES","predecessor_ids":[],"repositories":[{"description":"SLES12-Updates for sle-12-s390x","installer_updates":false,"name":"SLES12-Updates","url":"https://updates.suse.com/SUSE/Updates/SLE-SERVER/12/s390x/update/","distro_target":"sle-12-s390x","autorefresh":true,"id":1628,"enabled":true},{"description":"SLES12-Debuginfo-Updates for sle-12-s390x","installer_updates":false,"name":"SLES12-Debuginfo-Updates","distro_target":"sle-12-s390x","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-SERVER/12/s390x/update_debug/","enabled":false,"id":1629},{"description":"SLES12-Pool for sle-12-s390x","installer_updates":false,"name":"SLES12-Pool","distro_target":"sle-12-s390x","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-SERVER/12/s390x/product/","enabled":true,"id":1630},{"description":"SLES12-Debuginfo-Pool for sle-12-s390x","installer_updates":false,"name":"SLES12-Debuginfo-Pool","distro_target":"sle-12-s390x","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-SERVER/12/s390x/product_debug/","enabled":false,"id":1631}],"online_predecessor_ids":[],"product_class":"SLES-Z","cpe":"cpe:/o:suse:sles:12","product_type":"base","shortname":"SLES12","description":"SUSE Linux Enterprise offers a comprehensive suite of products built on a single code base. The platform addresses business needs from the smallest thin-client devices to the world's most powerful high-performance computing and mainframe servers. SUSE Linux Enterprise offers common management tools and technology certifications across the platform, and each product is enterprise-class.","free":false,"eula_url":"https://updates.suse.com/SUSE/Products/SLE-SERVER/12/s390x/product.license/","arch":"s390x"},{"version":"12","recommended":false,"friendly_name":"SUSE Linux Enterprise Server 12 ppc64le","migration_extra":false,"release_type":null,"former_identifier":"SUSE_SLES","name":"SUSE Linux Enterprise Server","offline_predecessor_ids":[],"friendly_version":"12","release_stage":"released","identifier":"SLES","id":1116,"extensions":[{"release_stage":"released","identifier":"sle-sdk","id":1145,"extensions":[],"friendly_version":"12","migration_extra":false,"friendly_name":"SUSE Linux Enterprise Software Development Kit 12 ppc64le","release_type":null,"former_identifier":"sle-sdk","name":"SUSE Linux Enterprise Software Development Kit","offline_predecessor_ids":[],"version":"12","recommended":false,"cpe":"cpe:/o:suse:sle-sdk:12","product_type":"extension","online_predecessor_ids":[],"product_class":"SLE-SDK","repositories":[{"id":1656,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-SDK/12/ppc64le/update/","autorefresh":true,"distro_target":"sle-12-ppc64le","name":"SLE-SDK12-Updates","installer_updates":false,"description":"SLE-SDK12-Updates for sle-12-ppc64le"},{"description":"SLE-SDK12-Debuginfo-Updates for sle-12-ppc64le","installer_updates":false,"name":"SLE-SDK12-Debuginfo-Updates","url":"https://updates.suse.com/SUSE/Updates/SLE-SDK/12/ppc64le/update_debug/","distro_target":"sle-12-ppc64le","autorefresh":true,"id":1657,"enabled":false},{"description":"SLE-SDK12-Pool for sle-12-ppc64le","installer_updates":false,"name":"SLE-SDK12-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-SDK/12/ppc64le/product/","distro_target":"sle-12-ppc64le","autorefresh":false,"id":1658,"enabled":true},{"id":1659,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-SDK/12/ppc64le/product_debug/","autorefresh":false,"distro_target":"sle-12-ppc64le","name":"SLE-SDK12-Debuginfo-Pool","installer_updates":false,"description":"SLE-SDK12-Debuginfo-Pool for sle-12-ppc64le"}],"predecessor_ids":[],"arch":"ppc64le","eula_url":"https://updates.suse.com/SUSE/Products/SLE-SDK/12/ppc64le/product.license/","shortname":"SDK12","description":"

SUSE Linux Enterprise Software Development Kit 12 is the Software Development Kit for the family of SUSE Linux Enterprise products. It is a free of charge extension for partners and customers working with SUSE Linux Enterprise Server and Desktop and derived products.

Packages on the SDK are delivered without L3 support; maintenance updates will be done for critical security and critical non-security issues, and where needed to remain in sync with packages delivered in the SUSE Linux Enterprise Server and Desktop products.

Packages to rebuild SUSE Linux Enterprise Server are not part of the SUSE Linux Enterprise Software Development Kit.

","free":true},{"version":"12","recommended":false,"former_identifier":"sle-module-legacy","release_type":null,"friendly_name":"Legacy Module 12 ppc64le","migration_extra":false,"offline_predecessor_ids":[],"name":"Legacy Module","friendly_version":"12","identifier":"sle-module-legacy","release_stage":"released","id":1148,"extensions":[],"free":true,"shortname":"Legacy-Module","description":"

The Legacy Module helps you migrating applications from SUSE Linux Enterprise 10 and 11 and other systems to SUSE Linux Enterprise 12, by providing packages which are discontinued on SUSE Linux Enterprise Server, such as: sendmail, syslog-ng, IBM Java6, and a number of libraries (for example openssl-0.9.8).

Access to the Legacy Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself. Packages in the this module are usually supported for at most three years. Support for Sendmail and IBM Java 6 will end in September 2017 the latest.

","arch":"ppc64le","eula_url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/12/ppc64le/product.license/","product_class":"MODULE","online_predecessor_ids":[],"repositories":[{"name":"SLE-Module-Legacy12-Updates","installer_updates":false,"description":"SLE-Module-Legacy12-Updates for sle-12-ppc64le","id":1668,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/12/ppc64le/update/","autorefresh":true,"distro_target":"sle-12-ppc64le"},{"autorefresh":true,"distro_target":"sle-12-ppc64le","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/12/ppc64le/update_debug/","enabled":false,"id":1669,"description":"SLE-Module-Legacy12-Debuginfo-Updates for sle-12-ppc64le","name":"SLE-Module-Legacy12-Debuginfo-Updates","installer_updates":false},{"installer_updates":false,"name":"SLE-Module-Legacy12-Pool","description":"SLE-Module-Legacy12-Pool for sle-12-ppc64le","enabled":true,"id":1670,"distro_target":"sle-12-ppc64le","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/12/ppc64le/product/"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/12/ppc64le/product_debug/","distro_target":"sle-12-ppc64le","autorefresh":false,"id":1671,"enabled":false,"description":"SLE-Module-Legacy12-Debuginfo-Pool for sle-12-ppc64le","installer_updates":false,"name":"SLE-Module-Legacy12-Debuginfo-Pool"},{"id":1987,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/12/ppc64le/product_source/","distro_target":"sle-12-ppc64le","autorefresh":false,"installer_updates":false,"name":"SLE-Module-Legacy12-Source-Pool","description":"SLE-Module-Legacy12-Source-Pool for sle-12-ppc64le"}],"predecessor_ids":[],"product_type":"module","cpe":"cpe:/o:suse:sle-module-legacy:12"},{"recommended":false,"version":"12","name":"Web and Scripting Module","offline_predecessor_ids":[],"friendly_name":"Web and Scripting Module 12 ppc64le","migration_extra":false,"former_identifier":"sle-module-web-scripting","release_type":null,"friendly_version":"12","extensions":[],"identifier":"sle-module-web-scripting","release_stage":"released","id":1151,"shortname":"Web-and-Scripting-Module","description":"

The SUSE Linux Enterprise Web and Scripting Module delivers a comprehensive suite of scripting languages, frameworks, and related tools helping developers and systems administrators accelerate the creation of stable, modern web applications, using dynamic languages, such as PHP, Ruby on Rails, and Python.

Access to the Web and Scripting Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself: Package versions in the this module are usually supported for at most three years. We are planning to release more recent versions on a schedule of approximately 18 month; the exact dates may differ per package.

","free":true,"eula_url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/12/ppc64le/product.license/","arch":"ppc64le","predecessor_ids":[],"product_class":"MODULE","online_predecessor_ids":[],"repositories":[{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/12/ppc64le/update/","autorefresh":true,"distro_target":"sle-12-ppc64le","id":1680,"enabled":true,"description":"SLE-Module-Web-Scripting12-Updates for sle-12-ppc64le","name":"SLE-Module-Web-Scripting12-Updates","installer_updates":false},{"description":"SLE-Module-Web-Scripting12-Debuginfo-Updates for sle-12-ppc64le","installer_updates":false,"name":"SLE-Module-Web-Scripting12-Debuginfo-Updates","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/12/ppc64le/update_debug/","distro_target":"sle-12-ppc64le","autorefresh":true,"id":1681,"enabled":false},{"name":"SLE-Module-Web-Scripting12-Pool","installer_updates":false,"description":"SLE-Module-Web-Scripting12-Pool for sle-12-ppc64le","id":1682,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/12/ppc64le/product/","autorefresh":false,"distro_target":"sle-12-ppc64le"},{"enabled":false,"id":1683,"distro_target":"sle-12-ppc64le","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/12/ppc64le/product_debug/","installer_updates":false,"name":"SLE-Module-Web-Scripting12-Debuginfo-Pool","description":"SLE-Module-Web-Scripting12-Debuginfo-Pool for sle-12-ppc64le"},{"name":"SLE-Module-Web-Scripting12-Source-Pool","installer_updates":false,"description":"SLE-Module-Web-Scripting12-Source-Pool for sle-12-ppc64le","enabled":false,"id":1990,"autorefresh":false,"distro_target":"sle-12-ppc64le","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/12/ppc64le/product_source/"}],"cpe":"cpe:/o:suse:sle-module-web-scripting:12","product_type":"module"},{"offline_predecessor_ids":[],"name":"Public Cloud Module","former_identifier":"sle-module-public-cloud","release_type":null,"migration_extra":false,"friendly_name":"Public Cloud Module 12 ppc64le","recommended":false,"version":"12","extensions":[],"release_stage":"released","id":1218,"identifier":"sle-module-public-cloud","friendly_version":"12","eula_url":"","arch":"ppc64le","free":true,"shortname":"Public-Cloud-Module","description":"

The Public Cloud Module is a collection of tools that enables you to create and manage cloud images from the commandline on SUSE Linux Enterprise Server. When building your own images with KIWI or SUSE Studio, initialization code specific to the target cloud is included in that image.

Access to the Public Cloud Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself; please check the Release Notes for further details.

","product_type":"module","cpe":"cpe:/o:suse:sle-module-public-cloud:12","predecessor_ids":[],"online_predecessor_ids":[],"product_class":"MODULE","repositories":[{"name":"SLE-Module-Public-Cloud12-Updates","installer_updates":false,"description":"SLE-Module-Public-Cloud12-Updates for sle-12-ppc64le","id":1692,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/12/ppc64le/update/","autorefresh":true,"distro_target":"sle-12-ppc64le"},{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/12/ppc64le/update_debug/","distro_target":"sle-12-ppc64le","autorefresh":true,"id":1693,"enabled":false,"description":"SLE-Module-Public-Cloud12-Debuginfo-Updates for sle-12-ppc64le","installer_updates":false,"name":"SLE-Module-Public-Cloud12-Debuginfo-Updates"},{"installer_updates":false,"name":"SLE-Module-Public-Cloud12-Pool","description":"SLE-Module-Public-Cloud12-Pool for sle-12-ppc64le","id":1694,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/12/ppc64le/product/","distro_target":"sle-12-ppc64le","autorefresh":false},{"name":"SLE-Module-Public-Cloud12-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-Public-Cloud12-Debuginfo-Pool for sle-12-ppc64le","id":1695,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/12/ppc64le/product_debug/","autorefresh":false,"distro_target":"sle-12-ppc64le"},{"description":"SLE-Module-Public-Cloud12-Source-Pool for sle-12-ppc64le","installer_updates":false,"name":"SLE-Module-Public-Cloud12-Source-Pool","distro_target":"sle-12-ppc64le","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/12/ppc64le/product_source/","enabled":false,"id":1993}]},{"release_stage":"released","id":1249,"identifier":"ibm-dlpar-sdk","extensions":[],"friendly_version":"12","release_type":null,"former_identifier":"ibm-dlpar-sdk","migration_extra":false,"friendly_name":"IBM DLPAR SDK for SLE 12 ppc64le","offline_predecessor_ids":[],"name":"IBM DLPAR SDK for SLE","version":"12","recommended":false,"product_type":"extension","cpe":"cpe:/o:suse:ibm-dlpar-sdk:12","online_predecessor_ids":[],"repositories":[{"url":"https://public.dhe.ibm.com/software/server/POWER/Linux/toolchain/at/suse/SLES_12/","distro_target":null,"autorefresh":true,"id":4429,"enabled":true,"description":"IBM-DLPAR-SDK","installer_updates":false,"name":"IBM-DLPAR-SDK"}],"product_class":"SLES-PPC","predecessor_ids":[],"arch":"ppc64le","eula_url":"","free":true,"description":"IBM DLPAR SDK for SLE 12","shortname":"IBMDLPS12"},{"offline_predecessor_ids":[],"name":"IBM DLPAR Utils for SLE","former_identifier":"ibm-dlpar-utils","release_type":null,"migration_extra":false,"friendly_name":"IBM DLPAR Utils for SLE 12 ppc64le","recommended":false,"version":"12","extensions":[],"identifier":"ibm-dlpar-utils","release_stage":"released","id":1250,"friendly_version":"12","eula_url":"https://public.dhe.ibm.com/software/server/POWER/Linux/yum/OSS/SLES/12/ppc64le.license/","arch":"ppc64le","free":true,"shortname":"IBMDLPU12","description":"IBM DLPAR Utils for SLE 12","product_type":"extension","cpe":"cpe:/o:suse:ibm-dlpar-utils:12","predecessor_ids":[],"online_predecessor_ids":[],"product_class":"SLES-PPC","repositories":[{"distro_target":null,"autorefresh":true,"url":"https://public.dhe.ibm.com/software/server/POWER/Linux/yum/OSS/SLES/12/ppc64le/","enabled":true,"id":6216,"description":"IBM-DLPAR-utils","installer_updates":false,"name":"IBM-DLPAR-utils"}]},{"identifier":"sle-module-adv-systems-management","release_stage":"released","id":1294,"extensions":[],"friendly_version":"12","former_identifier":"sle-module-adv-systems-management","release_type":null,"migration_extra":false,"friendly_name":"Advanced Systems Management Module 12 ppc64le","offline_predecessor_ids":[],"name":"Advanced Systems Management Module","version":"12","recommended":false,"product_type":"module","cpe":"cpe:/o:suse:sle-module-adv-systems-management:12","repositories":[{"id":1762,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Adv-Systems-Management/12/ppc64le/update/","autorefresh":true,"distro_target":"sle-12-ppc64le","name":"SLE-Module-Adv-Systems-Management12-Updates","installer_updates":false,"description":"SLE-Module-Adv-Systems-Management12-Updates for sle-12-ppc64le"},{"id":1763,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Adv-Systems-Management/12/ppc64le/update_debug/","distro_target":"sle-12-ppc64le","autorefresh":true,"installer_updates":false,"name":"SLE-Module-Adv-Systems-Management12-Debuginfo-Updates","description":"SLE-Module-Adv-Systems-Management12-Debuginfo-Updates for sle-12-ppc64le"},{"installer_updates":false,"name":"SLE-Module-Adv-Systems-Management12-Pool","description":"SLE-Module-Adv-Systems-Management12-Pool for sle-12-ppc64le","enabled":true,"id":1764,"distro_target":"sle-12-ppc64le","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Adv-Systems-Management/12/ppc64le/product/"},{"description":"SLE-Module-Adv-Systems-Management12-Debuginfo-Pool for sle-12-ppc64le","installer_updates":false,"name":"SLE-Module-Adv-Systems-Management12-Debuginfo-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Adv-Systems-Management/12/ppc64le/product_debug/","distro_target":"sle-12-ppc64le","autorefresh":false,"id":1765,"enabled":false},{"installer_updates":false,"name":"SLE-Module-Adv-Systems-Management12-Source-Pool","description":"SLE-Module-Adv-Systems-Management12-Source-Pool for sle-12-ppc64le","id":1996,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Adv-Systems-Management/12/ppc64le/product_source/","distro_target":"sle-12-ppc64le","autorefresh":false}],"online_predecessor_ids":[],"product_class":"MODULE","predecessor_ids":[],"arch":"ppc64le","eula_url":"","free":true,"description":"

This Module contains current versions of the popular configuration management frameworks Puppet and CFEngine as well as the new systems management toolbox called machinery.

The machinery tool will be frequently updated and is SUSE's upcoming systems management toolbox for inspecting and validating systems remotely, storing their system description and creating new systems to deploy them in datacenters and clouds.

","shortname":"Adv-Sys-Mgmt-Module"},{"cpe":"cpe:/o:suse:sle-module-toolchain:12","product_type":"module","repositories":[{"description":"SLE-Module-Toolchain12-Updates for sle-12-ppc64le","name":"SLE-Module-Toolchain12-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-12-ppc64le","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Toolchain/12/ppc64le/update/","enabled":true,"id":1895},{"description":"SLE-Module-Toolchain12-Debuginfo-Updates for sle-12-ppc64le","installer_updates":false,"name":"SLE-Module-Toolchain12-Debuginfo-Updates","distro_target":"sle-12-ppc64le","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Toolchain/12/ppc64le/update_debug/","enabled":false,"id":1896},{"installer_updates":false,"name":"SLE-Module-Toolchain12-Pool","description":"SLE-Module-Toolchain12-Pool for sle-12-ppc64le","id":1897,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Toolchain/12/ppc64le/product/","distro_target":"sle-12-ppc64le","autorefresh":false},{"installer_updates":false,"name":"SLE-Module-Toolchain12-Debuginfo-Pool","description":"SLE-Module-Toolchain12-Debuginfo-Pool for sle-12-ppc64le","enabled":false,"id":1898,"distro_target":"sle-12-ppc64le","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Toolchain/12/ppc64le/product_debug/"}],"online_predecessor_ids":[],"product_class":"MODULE","predecessor_ids":[],"arch":"ppc64le","eula_url":"","description":"Via this Module you will have access to a more recent GCC and Toolchain in addition to the default compiler of SUSE Linux Enterprise. Access to the Toolchain Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself. Please check the Release Notes for further details.","shortname":"Toolchain-Module","free":true,"release_stage":"released","identifier":"sle-module-toolchain","id":1339,"extensions":[],"friendly_version":"12","migration_extra":false,"friendly_name":"Toolchain Module 12 ppc64le","former_identifier":"sle-module-toolchain","release_type":null,"name":"Toolchain Module","offline_predecessor_ids":[],"version":"12","recommended":false},{"arch":"ppc64le","eula_url":"","free":true,"shortname":"Containers-Module","description":"

This Module contains several packages revolving around containers and related tools.

","product_type":"module","cpe":"cpe:/o:suse:sle-module-containers:12","repositories":[{"enabled":true,"id":1972,"autorefresh":true,"distro_target":"sle-12-ppc64le","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/12/ppc64le/update/","name":"SLE-Module-Containers12-Updates","installer_updates":false,"description":"SLE-Module-Containers12-Updates for sle-12-ppc64le"},{"enabled":false,"id":1973,"autorefresh":true,"distro_target":"sle-12-ppc64le","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/12/ppc64le/update_debug/","name":"SLE-Module-Containers12-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-Containers12-Debuginfo-Updates for sle-12-ppc64le"},{"id":1974,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/12/ppc64le/product/","autorefresh":false,"distro_target":"sle-12-ppc64le","name":"SLE-Module-Containers12-Pool","installer_updates":false,"description":"SLE-Module-Containers12-Pool for sle-12-ppc64le"},{"autorefresh":false,"distro_target":"sle-12-ppc64le","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/12/ppc64le/product_debug/","enabled":false,"id":1975,"description":"SLE-Module-Containers12-Debuginfo-Pool for sle-12-ppc64le","name":"SLE-Module-Containers12-Debuginfo-Pool","installer_updates":false},{"name":"SLE-Module-Containers12-Source-Pool","installer_updates":false,"description":"SLE-Module-Containers12-Source-Pool for sle-12-ppc64le","id":1976,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/12/ppc64le/product_source/","autorefresh":false,"distro_target":"sle-12-ppc64le"}],"online_predecessor_ids":[],"product_class":"MODULE","predecessor_ids":[],"former_identifier":"sle-module-containers","release_type":null,"friendly_name":"Containers Module 12 ppc64le","migration_extra":false,"offline_predecessor_ids":[],"name":"Containers Module","version":"12","recommended":false,"release_stage":"released","identifier":"sle-module-containers","id":1353,"extensions":[],"friendly_version":"12"},{"free":true,"shortname":"SUSE-PackageHub-12","description":"SUSE Package Hub is a free of charge extension providing access to community maintained packages built to run on SUSE Linux Enterprise Server. Built from the same sources used in the openSUSE distributions, these quality packages provide additional software to what is found in the SUSE Linux Enterprise Server product. Packages from the Package Hub are delivered without L3 support from SUSE. General updates and fixes to the packages in SUSE Package Hub are provided by the openSUSE community based on their discretion though SUSE will monitor and ensure that any known critical security issues will be addressed. Packages in the Package Hub are approved by SUSE for use with SUSE Linux Enterprise Server 12 and to not interfere with the supportability of SUSE Linux Enterprise Server it's modules and extensions. For more information about SUSE Package Hub please visit https://packagehub.suse.com.","eula_url":"","arch":"ppc64le","predecessor_ids":[],"repositories":[{"name":"SUSE-PackageHub-12-Standard-Pool","installer_updates":false,"description":"SUSE-PackageHub-12-Standard-Pool for sle-12-ppc64le","id":2333,"enabled":true,"url":"https://updates.suse.com/SUSE/Backports/SLE-12_ppc64le/standard/","autorefresh":false,"distro_target":"sle-12-ppc64le"},{"name":"SUSE-PackageHub-12-Debuginfo","installer_updates":false,"description":"SUSE-PackageHub-12-Debuginfo for sle-12-ppc64le","id":2334,"enabled":false,"url":"https://updates.suse.com/SUSE/Backports/SLE-12_ppc64le/standard_debug/","autorefresh":true,"distro_target":"sle-12-ppc64le"},{"description":"SUSE-PackageHub-12-Pool for sle-12-ppc64le","installer_updates":false,"name":"SUSE-PackageHub-12-Pool","url":"https://updates.suse.com/SUSE/Backports/SLE-12_ppc64le/product/","distro_target":"sle-12-ppc64le","autorefresh":false,"id":2335,"enabled":true}],"online_predecessor_ids":[],"product_class":"SLES-PPC","product_type":"extension","cpe":"cpe:/o:suse:packagehub:12","recommended":false,"version":"12","offline_predecessor_ids":[],"name":"SUSE Package Hub","release_type":null,"former_identifier":"PackageHub","friendly_name":"SUSE Package Hub 12 ppc64le","migration_extra":false,"friendly_version":"12","extensions":[],"release_stage":"released","id":1475,"identifier":"PackageHub"}],"shortname":"SLES12","description":"SUSE Linux Enterprise offers a comprehensive suite of products built on a single code base. The platform addresses business needs from the smallest thin-client devices to the world's most powerful high-performance computing and mainframe servers. SUSE Linux Enterprise offers common management tools and technology certifications across the platform, and each product is enterprise-class.","free":false,"arch":"ppc64le","eula_url":"https://updates.suse.com/SUSE/Products/SLE-SERVER/12/ppc64le/product.license/","online_predecessor_ids":[],"product_class":"SLES-PPC","repositories":[{"id":1624,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-SERVER/12/ppc64le/update/","autorefresh":true,"distro_target":"sle-12-ppc64le","name":"SLES12-Updates","installer_updates":false,"description":"SLES12-Updates for sle-12-ppc64le"},{"description":"SLES12-Debuginfo-Updates for sle-12-ppc64le","name":"SLES12-Debuginfo-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-12-ppc64le","url":"https://updates.suse.com/SUSE/Updates/SLE-SERVER/12/ppc64le/update_debug/","enabled":false,"id":1625},{"id":1626,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-SERVER/12/ppc64le/product/","autorefresh":false,"distro_target":"sle-12-ppc64le","name":"SLES12-Pool","installer_updates":false,"description":"SLES12-Pool for sle-12-ppc64le"},{"distro_target":"sle-12-ppc64le","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-SERVER/12/ppc64le/product_debug/","enabled":false,"id":1627,"description":"SLES12-Debuginfo-Pool for sle-12-ppc64le","installer_updates":false,"name":"SLES12-Debuginfo-Pool"}],"predecessor_ids":[],"cpe":"cpe:/o:suse:sles:12","product_type":"base"},{"recommended":false,"version":"12","offline_predecessor_ids":[690,769,814,824],"name":"SUSE Linux Enterprise Server","release_type":null,"former_identifier":"SUSE_SLES","friendly_name":"SUSE Linux Enterprise Server 12 x86_64","migration_extra":false,"friendly_version":"12","extensions":[{"extensions":[],"release_stage":"released","identifier":"sle-module-legacy","id":1150,"friendly_version":"12","name":"Legacy Module","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"Legacy Module 12 x86_64","release_type":null,"former_identifier":"sle-module-legacy","recommended":false,"version":"12","cpe":"cpe:/o:suse:sle-module-legacy:12","product_type":"module","predecessor_ids":[],"online_predecessor_ids":[],"product_class":"MODULE","repositories":[{"description":"SLE-Module-Legacy12-Updates for sle-12-x86_64","installer_updates":false,"name":"SLE-Module-Legacy12-Updates","distro_target":"sle-12-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/12/x86_64/update/","enabled":true,"id":1676},{"distro_target":"sle-12-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/12/x86_64/update_debug/","enabled":false,"id":1677,"description":"SLE-Module-Legacy12-Debuginfo-Updates for sle-12-x86_64","installer_updates":false,"name":"SLE-Module-Legacy12-Debuginfo-Updates"},{"name":"SLE-Module-Legacy12-Pool","installer_updates":false,"description":"SLE-Module-Legacy12-Pool for sle-12-x86_64","enabled":true,"id":1678,"autorefresh":false,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/12/x86_64/product/"},{"installer_updates":false,"name":"SLE-Module-Legacy12-Debuginfo-Pool","description":"SLE-Module-Legacy12-Debuginfo-Pool for sle-12-x86_64","enabled":false,"id":1679,"distro_target":"sle-12-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/12/x86_64/product_debug/"},{"description":"SLE-Module-Legacy12-Source-Pool for sle-12-x86_64","installer_updates":false,"name":"SLE-Module-Legacy12-Source-Pool","distro_target":"sle-12-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/12/x86_64/product_source/","enabled":false,"id":1989}],"eula_url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/12/x86_64/product.license/","arch":"x86_64","shortname":"Legacy-Module","description":"

The Legacy Module helps you migrating applications from SUSE Linux Enterprise 10 and 11 and other systems to SUSE Linux Enterprise 12, by providing packages which are discontinued on SUSE Linux Enterprise Server, such as: sendmail, syslog-ng, IBM Java6, and a number of libraries (for example openssl-0.9.8).

Access to the Legacy Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself. Packages in the this module are usually supported for at most three years. Support for Sendmail and IBM Java 6 will end in September 2017 the latest.

","free":true},{"repositories":[{"name":"SLE-Module-Web-Scripting12-Updates","installer_updates":false,"description":"SLE-Module-Web-Scripting12-Updates for sle-12-x86_64","id":1688,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/12/x86_64/update/","autorefresh":true,"distro_target":"sle-12-x86_64"},{"description":"SLE-Module-Web-Scripting12-Debuginfo-Updates for sle-12-x86_64","installer_updates":false,"name":"SLE-Module-Web-Scripting12-Debuginfo-Updates","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/12/x86_64/update_debug/","distro_target":"sle-12-x86_64","autorefresh":true,"id":1689,"enabled":false},{"name":"SLE-Module-Web-Scripting12-Pool","installer_updates":false,"description":"SLE-Module-Web-Scripting12-Pool for sle-12-x86_64","id":1690,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/12/x86_64/product/","autorefresh":false,"distro_target":"sle-12-x86_64"},{"id":1691,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/12/x86_64/product_debug/","autorefresh":false,"distro_target":"sle-12-x86_64","name":"SLE-Module-Web-Scripting12-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-Web-Scripting12-Debuginfo-Pool for sle-12-x86_64"},{"description":"SLE-Module-Web-Scripting12-Source-Pool for sle-12-x86_64","installer_updates":false,"name":"SLE-Module-Web-Scripting12-Source-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/12/x86_64/product_source/","distro_target":"sle-12-x86_64","autorefresh":false,"id":1992,"enabled":false}],"online_predecessor_ids":[],"product_class":"MODULE","predecessor_ids":[],"product_type":"module","cpe":"cpe:/o:suse:sle-module-web-scripting:12","free":true,"shortname":"Web-and-Scripting-Module","description":"

The SUSE Linux Enterprise Web and Scripting Module delivers a comprehensive suite of scripting languages, frameworks, and related tools helping developers and systems administrators accelerate the creation of stable, modern web applications, using dynamic languages, such as PHP, Ruby on Rails, and Python.

Access to the Web and Scripting Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself: Package versions in the this module are usually supported for at most three years. We are planning to release more recent versions on a schedule of approximately 18 month; the exact dates may differ per package.

","arch":"x86_64","eula_url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/12/x86_64/product.license/","friendly_version":"12","release_stage":"released","identifier":"sle-module-web-scripting","id":1153,"extensions":[],"version":"12","recommended":false,"former_identifier":"sle-module-web-scripting","release_type":null,"migration_extra":false,"friendly_name":"Web and Scripting Module 12 x86_64","offline_predecessor_ids":[],"name":"Web and Scripting Module"},{"friendly_version":"12","extensions":[],"release_stage":"released","id":1212,"identifier":"sle-module-adv-systems-management","recommended":false,"version":"12","offline_predecessor_ids":[],"name":"Advanced Systems Management Module","release_type":null,"former_identifier":"sle-module-adv-systems-management","friendly_name":"Advanced Systems Management Module 12 x86_64","migration_extra":false,"predecessor_ids":[],"repositories":[{"installer_updates":false,"name":"SLE-Module-Adv-Systems-Management12-Updates","description":"SLE-Module-Adv-Systems-Management12-Updates for sle-12-x86_64","id":1704,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Adv-Systems-Management/12/x86_64/update/","distro_target":"sle-12-x86_64","autorefresh":true},{"autorefresh":true,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Adv-Systems-Management/12/x86_64/update_debug/","enabled":false,"id":1705,"description":"SLE-Module-Adv-Systems-Management12-Debuginfo-Updates for sle-12-x86_64","name":"SLE-Module-Adv-Systems-Management12-Debuginfo-Updates","installer_updates":false},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Adv-Systems-Management/12/x86_64/product/","distro_target":"sle-12-x86_64","autorefresh":false,"id":1706,"enabled":true,"description":"SLE-Module-Adv-Systems-Management12-Pool for sle-12-x86_64","installer_updates":false,"name":"SLE-Module-Adv-Systems-Management12-Pool"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Adv-Systems-Management/12/x86_64/product_debug/","distro_target":"sle-12-x86_64","autorefresh":false,"id":1707,"enabled":false,"description":"SLE-Module-Adv-Systems-Management12-Debuginfo-Pool for sle-12-x86_64","installer_updates":false,"name":"SLE-Module-Adv-Systems-Management12-Debuginfo-Pool"},{"installer_updates":false,"name":"SLE-Module-Adv-Systems-Management12-Source-Pool","description":"SLE-Module-Adv-Systems-Management12-Source-Pool for sle-12-x86_64","enabled":false,"id":1998,"distro_target":"sle-12-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Adv-Systems-Management/12/x86_64/product_source/"}],"online_predecessor_ids":[],"product_class":"MODULE","product_type":"module","cpe":"cpe:/o:suse:sle-module-adv-systems-management:12","free":true,"shortname":"Adv-Sys-Mgmt-Module","description":"

This Module contains current versions of the popular configuration management frameworks Puppet and CFEngine as well as the new systems management toolbox called machinery.

The machinery tool will be frequently updated and is SUSE's upcoming systems management toolbox for inspecting and validating systems remotely, storing their system description and creating new systems to deploy them in datacenters and clouds.

","eula_url":"","arch":"x86_64"},{"friendly_version":"12","extensions":[],"identifier":"sle-module-public-cloud","release_stage":"released","id":1220,"recommended":false,"version":"12","offline_predecessor_ids":[],"name":"Public Cloud Module","release_type":null,"former_identifier":"sle-module-public-cloud","migration_extra":false,"friendly_name":"Public Cloud Module 12 x86_64","predecessor_ids":[],"product_class":"MODULE","online_predecessor_ids":[],"repositories":[{"installer_updates":false,"name":"SLE-Module-Public-Cloud12-Updates","description":"SLE-Module-Public-Cloud12-Updates for sle-12-x86_64","id":1700,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/12/x86_64/update/","distro_target":"sle-12-x86_64","autorefresh":true},{"installer_updates":false,"name":"SLE-Module-Public-Cloud12-Debuginfo-Updates","description":"SLE-Module-Public-Cloud12-Debuginfo-Updates for sle-12-x86_64","enabled":false,"id":1701,"distro_target":"sle-12-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/12/x86_64/update_debug/"},{"installer_updates":false,"name":"SLE-Module-Public-Cloud12-Pool","description":"SLE-Module-Public-Cloud12-Pool for sle-12-x86_64","id":1702,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/12/x86_64/product/","distro_target":"sle-12-x86_64","autorefresh":false},{"description":"SLE-Module-Public-Cloud12-Debuginfo-Pool for sle-12-x86_64","name":"SLE-Module-Public-Cloud12-Debuginfo-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/12/x86_64/product_debug/","enabled":false,"id":1703},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/12/x86_64/product_source/","distro_target":"sle-12-x86_64","autorefresh":false,"id":1995,"enabled":false,"description":"SLE-Module-Public-Cloud12-Source-Pool for sle-12-x86_64","installer_updates":false,"name":"SLE-Module-Public-Cloud12-Source-Pool"}],"product_type":"module","cpe":"cpe:/o:suse:sle-module-public-cloud:12","free":true,"shortname":"Public-Cloud-Module","description":"

The Public Cloud Module is a collection of tools that enables you to create and manage cloud images from the commandline on SUSE Linux Enterprise Server. When building your own images with KIWI or SUSE Studio, initialization code specific to the target cloud is included in that image.

Access to the Public Cloud Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself; please check the Release Notes for further details.

","eula_url":"","arch":"x86_64"},{"name":"SUSE Linux Enterprise Workstation Extension","offline_predecessor_ids":[],"friendly_name":"SUSE Linux Enterprise Workstation Extension 12 x86_64","migration_extra":false,"release_type":null,"former_identifier":"sle-we","recommended":false,"version":"12","extensions":[],"identifier":"sle-we","release_stage":"released","id":1222,"friendly_version":"12","eula_url":"https://updates.suse.com/SUSE/Products/SLE-WE/12/x86_64/product.license/","arch":"x86_64","shortname":"SLEWE12","description":"SUSE Linux Enterprise Workstation Extension extends the functionality of SUSE Linux Enterprise Server with packages of SUSE Linux Enterprise Desktop, like additional desktop applications (office suite, email client, graphical editor ...) and libraries. It allows to combine both products to create a full featured Workstation.","free":false,"cpe":"cpe:/o:suse:sle-we:12","product_type":"extension","predecessor_ids":[],"product_class":"SLE-WE","online_predecessor_ids":[],"repositories":[{"autorefresh":true,"distro_target":null,"url":"http://download.nvidia.com/novell/sle12/","enabled":true,"id":1503,"description":"SLE-12-GA-Desktop-NVIDIA-Driver","name":"SLE-12-GA-Desktop-NVIDIA-Driver","installer_updates":false},{"name":"SLE-WE12-Updates","installer_updates":false,"description":"SLE-WE12-Updates for sle-12-x86_64","id":1652,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-WE/12/x86_64/update/","autorefresh":true,"distro_target":"sle-12-x86_64"},{"description":"SLE-WE12-Debuginfo-Updates for sle-12-x86_64","installer_updates":false,"name":"SLE-WE12-Debuginfo-Updates","url":"https://updates.suse.com/SUSE/Updates/SLE-WE/12/x86_64/update_debug/","distro_target":"sle-12-x86_64","autorefresh":true,"id":1653,"enabled":false},{"name":"SLE-WE12-Pool","installer_updates":false,"description":"SLE-WE12-Pool for sle-12-x86_64","id":1654,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-WE/12/x86_64/product/","autorefresh":false,"distro_target":"sle-12-x86_64"},{"url":"https://updates.suse.com/SUSE/Products/SLE-WE/12/x86_64/product_debug/","autorefresh":false,"distro_target":"sle-12-x86_64","id":1655,"enabled":false,"description":"SLE-WE12-Debuginfo-Pool for sle-12-x86_64","name":"SLE-WE12-Debuginfo-Pool","installer_updates":false}]},{"arch":"x86_64","eula_url":"https://updates.suse.com/SUSE/Products/SLE-SDK/12/x86_64/product.license/","free":true,"description":"

SUSE Linux Enterprise Software Development Kit 12 is the Software Development Kit for the family of SUSE Linux Enterprise products. It is a free of charge extension for partners and customers working with SUSE Linux Enterprise Server and Desktop and derived products.

Packages on the SDK are delivered without L3 support; maintenance updates will be done for critical security and critical non-security issues, and where needed to remain in sync with packages delivered in the SUSE Linux Enterprise Server and Desktop products.

Packages to rebuild SUSE Linux Enterprise Server are not part of the SUSE Linux Enterprise Software Development Kit.

","shortname":"SDK12","product_type":"extension","cpe":"cpe:/o:suse:sle-sdk:12","online_predecessor_ids":[],"repositories":[{"name":"SLE-SDK12-Updates","installer_updates":false,"description":"SLE-SDK12-Updates for sle-12-x86_64","enabled":true,"id":1664,"autorefresh":true,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-SDK/12/x86_64/update/"},{"id":1665,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-SDK/12/x86_64/update_debug/","distro_target":"sle-12-x86_64","autorefresh":true,"installer_updates":false,"name":"SLE-SDK12-Debuginfo-Updates","description":"SLE-SDK12-Debuginfo-Updates for sle-12-x86_64"},{"installer_updates":false,"name":"SLE-SDK12-Pool","description":"SLE-SDK12-Pool for sle-12-x86_64","enabled":true,"id":1666,"distro_target":"sle-12-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-SDK/12/x86_64/product/"},{"id":1667,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-SDK/12/x86_64/product_debug/","distro_target":"sle-12-x86_64","autorefresh":false,"installer_updates":false,"name":"SLE-SDK12-Debuginfo-Pool","description":"SLE-SDK12-Debuginfo-Pool for sle-12-x86_64"}],"product_class":"SLE-SDK","predecessor_ids":[],"former_identifier":"sle-sdk","release_type":null,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Software Development Kit 12 x86_64","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Software Development Kit","version":"12","recommended":false,"release_stage":"released","identifier":"sle-sdk","id":1223,"extensions":[],"friendly_version":"12"},{"arch":"x86_64","eula_url":"https://updates.suse.com/SUSE/Products/SLE-HA/12/x86_64/product.license/","shortname":"SLEHA-12","description":"SUSE Linux Enterprise High Availability Extension.","free":false,"cpe":"cpe:/o:suse:sle-ha:12","product_type":"extension","repositories":[{"distro_target":"sle-12-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-HA/12/x86_64/update/","enabled":true,"id":1712,"description":"SLE-HA12-Updates for sle-12-x86_64","installer_updates":false,"name":"SLE-HA12-Updates"},{"description":"SLE-HA12-Debuginfo-Updates for sle-12-x86_64","installer_updates":false,"name":"SLE-HA12-Debuginfo-Updates","url":"https://updates.suse.com/SUSE/Updates/SLE-HA/12/x86_64/update_debug/","distro_target":"sle-12-x86_64","autorefresh":true,"id":1713,"enabled":false},{"name":"SLE-HA12-Pool","installer_updates":false,"description":"SLE-HA12-Pool for sle-12-x86_64","id":1714,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-HA/12/x86_64/product/","autorefresh":false,"distro_target":"sle-12-x86_64"},{"description":"SLE-HA12-Debuginfo-Pool for sle-12-x86_64","installer_updates":false,"name":"SLE-HA12-Debuginfo-Pool","distro_target":"sle-12-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-HA/12/x86_64/product_debug/","enabled":false,"id":1715}],"online_predecessor_ids":[],"product_class":"SLE-HAE-X86","predecessor_ids":[],"migration_extra":false,"friendly_name":"SUSE Linux Enterprise High Availability Extension 12 x86_64","release_type":null,"former_identifier":"sle-hae","name":"SUSE Linux Enterprise High Availability Extension","offline_predecessor_ids":[958,961,967,971,1256],"version":"12","recommended":false,"release_stage":"released","identifier":"sle-ha","id":1245,"extensions":[{"friendly_version":"12","extensions":[],"release_stage":"released","identifier":"sle-ha-geo","id":1157,"recommended":false,"version":"12","name":"SUSE Linux Enterprise High Availability GEO Extension","offline_predecessor_ids":[1101,1107,1286],"migration_extra":false,"friendly_name":"SUSE Linux Enterprise High Availability GEO Extension 12 x86_64","former_identifier":"sle-haegeo","release_type":null,"predecessor_ids":[],"repositories":[{"installer_updates":false,"name":"SLE-HA-GEO12-Updates","description":"SLE-HA-GEO12-Updates for sle-12-x86_64","id":1720,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-HA-GEO/12/x86_64/update/","distro_target":"sle-12-x86_64","autorefresh":true},{"description":"SLE-HA-GEO12-Debuginfo-Updates for sle-12-x86_64","name":"SLE-HA-GEO12-Debuginfo-Updates","installer_updates":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-HA-GEO/12/x86_64/update_debug/","autorefresh":true,"distro_target":"sle-12-x86_64","id":1721,"enabled":false},{"description":"SLE-HA-GEO12-Pool for sle-12-x86_64","name":"SLE-HA-GEO12-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-HA-GEO/12/x86_64/product/","enabled":true,"id":1722},{"description":"SLE-HA-GEO12-Debuginfo-Pool for sle-12-x86_64","installer_updates":false,"name":"SLE-HA-GEO12-Debuginfo-Pool","distro_target":"sle-12-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-HA-GEO/12/x86_64/product_debug/","enabled":false,"id":1723}],"online_predecessor_ids":[],"product_class":"SLE-HAE-GEO","cpe":"cpe:/o:suse:sle-ha-geo:12","product_type":"extension","description":"SUSE Linux Enterprise High Availability Geographical Cluster Extension","shortname":"SLEHA-12-GEO","free":false,"eula_url":"https://updates.suse.com/SUSE/Products/SLE-HA-GEO/12/x86_64/product.license/","arch":"x86_64"}],"friendly_version":"12"},{"version":"12","recommended":false,"release_type":null,"former_identifier":"sle-live-patching","friendly_name":"SUSE Linux Enterprise Live Patching 12 x86_64","migration_extra":false,"offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Live Patching","friendly_version":"12","release_stage":"released","id":1253,"identifier":"sle-live-patching","extensions":[],"free":false,"shortname":"Live-Patching","description":"

SUSE Linux Enterprise Live Patching provides packages to update critical kernel modules live in SUSE Linux Enterprise. With SUSE Linux Enterprise Live Patching, you can perform critical kernel patching without shutting down your system, reducing the need for planned downtime and increasing service availability.

","arch":"x86_64","eula_url":"https://updates.suse.com/SUSE/Products/SLE-Live-Patching/12/x86_64/product.license/","online_predecessor_ids":[],"product_class":"SLE-LP","repositories":[{"description":"SLE-Live-Patching12-Updates for sle-12-x86_64","name":"SLE-Live-Patching12-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Live-Patching/12/x86_64/update/","enabled":true,"id":1741},{"url":"https://updates.suse.com/SUSE/Updates/SLE-Live-Patching/12/x86_64/update_debug/","autorefresh":true,"distro_target":"sle-12-x86_64","id":1742,"enabled":false,"description":"SLE-Live-Patching12-Debuginfo-Updates for sle-12-x86_64","name":"SLE-Live-Patching12-Debuginfo-Updates","installer_updates":false},{"distro_target":"sle-12-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Live-Patching/12/x86_64/product/","enabled":true,"id":1743,"description":"SLE-Live-Patching12-Pool for sle-12-x86_64","installer_updates":false,"name":"SLE-Live-Patching12-Pool"},{"autorefresh":false,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Live-Patching/12/x86_64/product_debug/","enabled":false,"id":1744,"description":"SLE-Live-Patching12-Debuginfo-Pool for sle-12-x86_64","name":"SLE-Live-Patching12-Debuginfo-Pool","installer_updates":false},{"id":1986,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Live-Patching/12/x86_64/product_source/","distro_target":"sle-12-x86_64","autorefresh":false,"installer_updates":false,"name":"SLE-Live-Patching12-Source-Pool","description":"SLE-Live-Patching12-Source-Pool for sle-12-x86_64"}],"predecessor_ids":[],"product_type":"extension","cpe":"cpe:/o:suse:sle-live-patching:12"},{"cpe":"cpe:/o:suse:suse-sle12-cloud-compute:5","product_type":"extension","repositories":[{"id":1813,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/12-Cloud-Compute/5/x86_64/update/","autorefresh":true,"distro_target":"sle-12-x86_64","name":"SLE-12-Cloud-Compute5-Updates","installer_updates":false,"description":"SLE-12-Cloud-Compute5-Updates for sle-12-x86_64"},{"url":"https://updates.suse.com/SUSE/Updates/12-Cloud-Compute/5/x86_64/update_debug/","distro_target":"sle-12-x86_64","autorefresh":true,"id":1814,"enabled":false,"description":"SLE-12-Cloud-Compute5-Debuginfo-Updates for sle-12-x86_64","installer_updates":false,"name":"SLE-12-Cloud-Compute5-Debuginfo-Updates"},{"installer_updates":false,"name":"SLE-12-Cloud-Compute5-Pool","description":"SLE-12-Cloud-Compute5-Pool for sle-12-x86_64","enabled":true,"id":1815,"distro_target":"sle-12-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/12-Cloud-Compute/5/x86_64/product/"},{"enabled":false,"id":1816,"distro_target":"sle-12-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/12-Cloud-Compute/5/x86_64/product_debug/","installer_updates":false,"name":"SLE-12-Cloud-Compute5-Debuginfo-Pool","description":"SLE-12-Cloud-Compute5-Debuginfo-Pool for sle-12-x86_64"},{"autorefresh":false,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Products/12-Cloud-Compute/5/x86_64/product_source/","enabled":false,"id":1999,"description":"SLE-12-Cloud-Compute5-Source-Pool for sle-12-x86_64","name":"SLE-12-Cloud-Compute5-Source-Pool","installer_updates":false}],"online_predecessor_ids":[],"product_class":"SUSE_CLOUD","predecessor_ids":[],"arch":"x86_64","eula_url":"https://updates.suse.com/SUSE/Products/12-Cloud-Compute/5/x86_64/product.license/","shortname":"SUSE Cloud for SLE 12 Compute Nodes","description":"SUSE Cloud for SLE 12 Compute Nodes","free":false,"release_stage":"released","id":1317,"identifier":"suse-sle12-cloud-compute","extensions":[],"friendly_version":"5","migration_extra":false,"friendly_name":"SUSE Cloud for SLE 12 Compute Nodes 5 x86_64","release_type":null,"former_identifier":"suse-sle12-cloud-compute","name":"SUSE Cloud for SLE 12 Compute Nodes","offline_predecessor_ids":[],"version":"5","recommended":false},{"cpe":"cpe:/o:suse:sle-module-containers:12","product_type":"module","predecessor_ids":[],"product_class":"MODULE","online_predecessor_ids":[],"repositories":[{"name":"SLE-Module-Containers12-Updates","installer_updates":false,"description":"SLE-Module-Containers12-Updates for sle-12-x86_64","enabled":true,"id":1864,"autorefresh":true,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/12/x86_64/update/"},{"installer_updates":false,"name":"SLE-Module-Containers12-Debuginfo-Updates","description":"SLE-Module-Containers12-Debuginfo-Updates for sle-12-x86_64","id":1865,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/12/x86_64/update_debug/","distro_target":"sle-12-x86_64","autorefresh":true},{"distro_target":"sle-12-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/12/x86_64/product/","enabled":true,"id":1866,"description":"SLE-Module-Containers12-Pool for sle-12-x86_64","installer_updates":false,"name":"SLE-Module-Containers12-Pool"},{"name":"SLE-Module-Containers12-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-Containers12-Debuginfo-Pool for sle-12-x86_64","enabled":false,"id":1867,"autorefresh":false,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/12/x86_64/product_debug/"},{"description":"SLE-Module-Containers12-Source-Pool for sle-12-x86_64","installer_updates":false,"name":"SLE-Module-Containers12-Source-Pool","distro_target":"sle-12-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/12/x86_64/product_source/","enabled":false,"id":1957}],"eula_url":"","arch":"x86_64","description":"

This Module contains several packages revolving around containers and related tools.

","shortname":"Containers-Module","free":true,"extensions":[],"id":1332,"release_stage":"released","identifier":"sle-module-containers","friendly_version":"12","name":"Containers Module","offline_predecessor_ids":[],"friendly_name":"Containers Module 12 x86_64","migration_extra":false,"former_identifier":"sle-module-containers","release_type":null,"recommended":false,"version":"12"},{"free":true,"shortname":"Toolchain-Module","description":"Via this Module you will have access to a more recent GCC and Toolchain in addition to the default compiler of SUSE Linux Enterprise. Access to the Toolchain Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself. Please check the Release Notes for further details.","eula_url":"","arch":"x86_64","predecessor_ids":[],"online_predecessor_ids":[],"product_class":"MODULE","repositories":[{"id":1903,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Toolchain/12/x86_64/update/","autorefresh":true,"distro_target":"sle-12-x86_64","name":"SLE-Module-Toolchain12-Updates","installer_updates":false,"description":"SLE-Module-Toolchain12-Updates for sle-12-x86_64"},{"id":1904,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Toolchain/12/x86_64/update_debug/","autorefresh":true,"distro_target":"sle-12-x86_64","name":"SLE-Module-Toolchain12-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-Toolchain12-Debuginfo-Updates for sle-12-x86_64"},{"enabled":true,"id":1905,"distro_target":"sle-12-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Toolchain/12/x86_64/product/","installer_updates":false,"name":"SLE-Module-Toolchain12-Pool","description":"SLE-Module-Toolchain12-Pool for sle-12-x86_64"},{"description":"SLE-Module-Toolchain12-Debuginfo-Pool for sle-12-x86_64","name":"SLE-Module-Toolchain12-Debuginfo-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Toolchain/12/x86_64/product_debug/","enabled":false,"id":1906}],"product_type":"module","cpe":"cpe:/o:suse:sle-module-toolchain:12","recommended":false,"version":"12","offline_predecessor_ids":[],"name":"Toolchain Module","release_type":null,"former_identifier":"sle-module-toolchain","friendly_name":"Toolchain Module 12 x86_64","migration_extra":false,"friendly_version":"12","extensions":[],"identifier":"sle-module-toolchain","release_stage":"released","id":1341},{"free":false,"description":"SUSE Enterprise Storage 2 for SUSE Linux Enterprise Server 12, powered by Ceph.","shortname":"SES2","eula_url":"https://updates.suse.com/SUSE/Products/Storage/2/x86_64/product.license/","arch":"x86_64","predecessor_ids":[],"repositories":[{"enabled":true,"id":1917,"distro_target":"sle-12-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/Storage/2/x86_64/update/","installer_updates":false,"name":"SUSE-Enterprise-Storage-2-Updates","description":"SUSE-Enterprise-Storage-2-Updates for sle-12-x86_64"},{"description":"SUSE-Enterprise-Storage-2-Debuginfo-Updates for sle-12-x86_64","installer_updates":false,"name":"SUSE-Enterprise-Storage-2-Debuginfo-Updates","url":"https://updates.suse.com/SUSE/Updates/Storage/2/x86_64/update_debug/","distro_target":"sle-12-x86_64","autorefresh":true,"id":1918,"enabled":false},{"name":"SUSE-Enterprise-Storage-2-Pool","installer_updates":false,"description":"SUSE-Enterprise-Storage-2-Pool for sle-12-x86_64","enabled":true,"id":1919,"autorefresh":false,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Products/Storage/2/x86_64/product/"},{"name":"SUSE-Enterprise-Storage-2-Debuginfo-Pool","installer_updates":false,"description":"SUSE-Enterprise-Storage-2-Debuginfo-Pool for sle-12-x86_64","enabled":false,"id":1920,"autorefresh":false,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Products/Storage/2/x86_64/product_debug/"},{"id":1921,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/Storage/2/x86_64/product_source/","autorefresh":false,"distro_target":"sle-12-x86_64","name":"SUSE-Enterprise-Storage-2-Source-Pool","installer_updates":false,"description":"SUSE-Enterprise-Storage-2-Source-Pool for sle-12-x86_64"}],"online_predecessor_ids":[],"product_class":"SES","product_type":"extension","cpe":"cpe:/o:suse:ses:2","recommended":false,"version":"2","offline_predecessor_ids":[],"name":"SUSE Enterprise Storage","former_identifier":"ses","release_type":null,"migration_extra":false,"friendly_name":"SUSE Enterprise Storage 2 x86_64","friendly_version":"2","extensions":[],"id":1342,"release_stage":"released","identifier":"ses"},{"former_identifier":"sle-module-certifications","release_type":null,"friendly_name":"Certifications Module 12 x86_64","migration_extra":false,"offline_predecessor_ids":[],"name":"Certifications Module","version":"12","recommended":false,"identifier":"sle-module-certifications","release_stage":"released","id":1368,"extensions":[],"friendly_version":"12","arch":"x86_64","eula_url":"","free":true,"shortname":"Certifications","description":"

This module contains packages specific to certifications.

It contains:

Packages used for the Evaluated Configuration of the Common Criteria Certification of SUSE Linux Enterprise Server 12 GA.

Packages used for the FIPS 140-2 certification of various cryptographics modules.

Please refer to our certification pages referenced from https://www.suse.com/security/

","product_type":"module","cpe":"cpe:/o:suse:sle-module-certifications:12","online_predecessor_ids":[],"repositories":[{"enabled":true,"id":2068,"autorefresh":true,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Certifications/12/x86_64/update/","name":"SLE-Module-Certifications12-Updates","installer_updates":false,"description":"SLE-Module-Certifications12-Updates for sle-12-x86_64"},{"autorefresh":true,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Certifications/12/x86_64/update_debug/","enabled":false,"id":2069,"description":"SLE-Module-Certifications12-Debuginfo-Updates for sle-12-x86_64","name":"SLE-Module-Certifications12-Debuginfo-Updates","installer_updates":false},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Certifications/12/x86_64/product/","autorefresh":false,"distro_target":"sle-12-x86_64","id":2070,"enabled":true,"description":"SLE-Module-Certifications12-Pool for sle-12-x86_64","name":"SLE-Module-Certifications12-Pool","installer_updates":false},{"description":"SLE-Module-Certifications12-Debuginfo-Pool for sle-12-x86_64","name":"SLE-Module-Certifications12-Debuginfo-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Certifications/12/x86_64/product_debug/","enabled":false,"id":2071}],"product_class":"MODULE","predecessor_ids":[]},{"predecessor_ids":[],"online_predecessor_ids":[],"repositories":[{"autorefresh":true,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-LTSS/x86_64/update/","enabled":true,"id":2105,"description":"SLES12-LTSS-Updates for sle-12-x86_64","name":"SLES12-LTSS-Updates","installer_updates":false},{"description":"SLES12-LTSS-Debuginfo-Updates for sle-12-x86_64","installer_updates":false,"name":"SLES12-LTSS-Debuginfo-Updates","url":"https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-LTSS/x86_64/update_debug/","distro_target":"sle-12-x86_64","autorefresh":true,"id":2106,"enabled":false}],"product_class":"SLES12-GA-LTSS-X86","cpe":"cpe:/o:suse:sles-ltss:12","product_type":"extension","shortname":"SLES12 LTSS","description":"SUSE Linux Enterprise offers a comprehensive suite of products built on a single code base. The platform addresses business needs from the smallest thin-client devices to the world's most powerful high-performance computing and mainframe servers. SUSE Linux Enterprise offers common management tools and technology certifications across the platform, and each product is enterprise-class.","free":false,"eula_url":"","arch":"x86_64","friendly_version":"12","extensions":[],"release_stage":"released","id":1379,"identifier":"SLES-LTSS","recommended":false,"version":"12","name":"SUSE Linux Enterprise Server LTSS","offline_predecessor_ids":[],"friendly_name":"SUSE Linux Enterprise Server LTSS 12 x86_64","migration_extra":false,"release_type":null,"former_identifier":"SUSE_SLES"},{"description":"SUSE Package Hub is a free of charge extension providing access to community maintained packages built to run on SUSE Linux Enterprise Server. Built from the same sources used in the openSUSE distributions, these quality packages provide additional software to what is found in the SUSE Linux Enterprise Server product. Packages from the Package Hub are delivered without L3 support from SUSE. General updates and fixes to the packages in SUSE Package Hub are provided by the openSUSE community based on their discretion though SUSE will monitor and ensure that any known critical security issues will be addressed. Packages in the Package Hub are approved by SUSE for use with SUSE Linux Enterprise Server 12 and to not interfere with the supportability of SUSE Linux Enterprise Server it's modules and extensions. For more information about SUSE Package Hub please visit https://packagehub.suse.com.","shortname":"SUSE-PackageHub-12","free":true,"arch":"x86_64","eula_url":"","online_predecessor_ids":[],"repositories":[{"id":2327,"enabled":true,"url":"https://updates.suse.com/SUSE/Backports/SLE-12_x86_64/standard/","distro_target":"sle-12-x86_64","autorefresh":false,"installer_updates":false,"name":"SUSE-PackageHub-12-Standard-Pool","description":"SUSE-PackageHub-12-Standard-Pool for sle-12-x86_64"},{"enabled":false,"id":2328,"distro_target":"sle-12-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Backports/SLE-12_x86_64/standard_debug/","installer_updates":false,"name":"SUSE-PackageHub-12-Debuginfo","description":"SUSE-PackageHub-12-Debuginfo for sle-12-x86_64"},{"description":"SUSE-PackageHub-12-Pool for sle-12-x86_64","name":"SUSE-PackageHub-12-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Backports/SLE-12_x86_64/product/","autorefresh":false,"distro_target":"sle-12-x86_64","id":2329,"enabled":true}],"product_class":"7261","predecessor_ids":[],"cpe":"cpe:/o:suse:packagehub:12","product_type":"extension","version":"12","recommended":false,"migration_extra":false,"friendly_name":"SUSE Package Hub 12 x86_64","former_identifier":"PackageHub","release_type":null,"name":"SUSE Package Hub","offline_predecessor_ids":[],"friendly_version":"12","identifier":"PackageHub","release_stage":"released","id":1473,"extensions":[]}],"id":1117,"release_stage":"released","identifier":"SLES","free":false,"shortname":"SLES12","description":"SUSE Linux Enterprise offers a comprehensive suite of products built on a single code base. The platform addresses business needs from the smallest thin-client devices to the world's most powerful high-performance computing and mainframe servers. SUSE Linux Enterprise offers common management tools and technology certifications across the platform, and each product is enterprise-class.","eula_url":"https://updates.suse.com/SUSE/Products/SLE-SERVER/12/x86_64/product.license/","arch":"x86_64","predecessor_ids":[],"online_predecessor_ids":[],"repositories":[{"description":"SLES12-Updates for sle-12-x86_64","name":"SLES12-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-SERVER/12/x86_64/update/","enabled":true,"id":1632},{"autorefresh":true,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-SERVER/12/x86_64/update_debug/","enabled":false,"id":1633,"description":"SLES12-Debuginfo-Updates for sle-12-x86_64","name":"SLES12-Debuginfo-Updates","installer_updates":false},{"distro_target":"sle-12-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-SERVER/12/x86_64/product/","enabled":true,"id":1634,"description":"SLES12-Pool for sle-12-x86_64","installer_updates":false,"name":"SLES12-Pool"},{"description":"SLES12-Debuginfo-Pool for sle-12-x86_64","installer_updates":false,"name":"SLES12-Debuginfo-Pool","distro_target":"sle-12-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-SERVER/12/x86_64/product_debug/","enabled":false,"id":1635}],"product_class":"7261","product_type":"base","cpe":"cpe:/o:suse:sles:12"},{"free":false,"shortname":"SLED12","description":"SUSE Linux Enterprise offers a comprehensive suite of products built on a single code base. The platform addresses business needs from the smallest thin-client devices to the world's most powerful high-performance computing and mainframe servers. SUSE Linux Enterprise offers common management tools and technology certifications across the platform, and each product is enterprise-class. SUSE Linux Enterprise provides more than a cute desktop product or a basic server offering. It is the only Linux platform for enterprise computing, and it is now replacing UNIX* and Windows* as well.","eula_url":"https://updates.suse.com/SUSE/Products/SLE-DESKTOP/12/x86_64/product.license/","arch":"x86_64","predecessor_ids":[],"online_predecessor_ids":[],"repositories":[{"url":"http://download.nvidia.com/novell/sle12/","distro_target":null,"autorefresh":true,"id":1503,"enabled":true,"description":"SLE-12-GA-Desktop-NVIDIA-Driver","installer_updates":false,"name":"SLE-12-GA-Desktop-NVIDIA-Driver"},{"enabled":true,"id":1636,"autorefresh":true,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-DESKTOP/12/x86_64/update/","name":"SLED12-Updates","installer_updates":false,"description":"SLED12-Updates for sle-12-x86_64"},{"description":"SLED12-Debuginfo-Updates for sle-12-x86_64","installer_updates":false,"name":"SLED12-Debuginfo-Updates","url":"https://updates.suse.com/SUSE/Updates/SLE-DESKTOP/12/x86_64/update_debug/","distro_target":"sle-12-x86_64","autorefresh":true,"id":1637,"enabled":false},{"id":1638,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-DESKTOP/12/x86_64/product/","autorefresh":false,"distro_target":"sle-12-x86_64","name":"SLED12-Pool","installer_updates":false,"description":"SLED12-Pool for sle-12-x86_64"},{"description":"SLED12-Debuginfo-Pool for sle-12-x86_64","name":"SLED12-Debuginfo-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-DESKTOP/12/x86_64/product_debug/","enabled":false,"id":1639}],"product_class":"7260","product_type":"base","cpe":"cpe:/o:suse:sled:12","recommended":false,"version":"12","offline_predecessor_ids":[887,901,902,924,1313],"name":"SUSE Linux Enterprise Desktop","release_type":null,"former_identifier":"SUSE_SLED","migration_extra":false,"friendly_name":"SUSE Linux Enterprise Desktop 12 x86_64","friendly_version":"12","extensions":[{"offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Software Development Kit","former_identifier":"sle-sdk","release_type":null,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Software Development Kit 12 x86_64","recommended":false,"version":"12","extensions":[],"identifier":"sle-sdk","release_stage":"released","id":1223,"friendly_version":"12","eula_url":"https://updates.suse.com/SUSE/Products/SLE-SDK/12/x86_64/product.license/","arch":"x86_64","free":true,"description":"

SUSE Linux Enterprise Software Development Kit 12 is the Software Development Kit for the family of SUSE Linux Enterprise products. It is a free of charge extension for partners and customers working with SUSE Linux Enterprise Server and Desktop and derived products.

Packages on the SDK are delivered without L3 support; maintenance updates will be done for critical security and critical non-security issues, and where needed to remain in sync with packages delivered in the SUSE Linux Enterprise Server and Desktop products.

Packages to rebuild SUSE Linux Enterprise Server are not part of the SUSE Linux Enterprise Software Development Kit.

","shortname":"SDK12","product_type":"extension","cpe":"cpe:/o:suse:sle-sdk:12","predecessor_ids":[],"online_predecessor_ids":[],"repositories":[{"url":"https://updates.suse.com/SUSE/Updates/SLE-SDK/12/x86_64/update/","distro_target":"sle-12-x86_64","autorefresh":true,"id":1664,"enabled":true,"description":"SLE-SDK12-Updates for sle-12-x86_64","installer_updates":false,"name":"SLE-SDK12-Updates"},{"description":"SLE-SDK12-Debuginfo-Updates for sle-12-x86_64","name":"SLE-SDK12-Debuginfo-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-SDK/12/x86_64/update_debug/","enabled":false,"id":1665},{"description":"SLE-SDK12-Pool for sle-12-x86_64","name":"SLE-SDK12-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-SDK/12/x86_64/product/","autorefresh":false,"distro_target":"sle-12-x86_64","id":1666,"enabled":true},{"id":1667,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-SDK/12/x86_64/product_debug/","autorefresh":false,"distro_target":"sle-12-x86_64","name":"SLE-SDK12-Debuginfo-Pool","installer_updates":false,"description":"SLE-SDK12-Debuginfo-Pool for sle-12-x86_64"}],"product_class":"SLE-SDK"},{"id":1473,"release_stage":"released","identifier":"PackageHub","extensions":[],"friendly_version":"12","former_identifier":"PackageHub","release_type":null,"friendly_name":"SUSE Package Hub 12 x86_64","migration_extra":false,"offline_predecessor_ids":[],"name":"SUSE Package Hub","version":"12","recommended":false,"product_type":"extension","cpe":"cpe:/o:suse:packagehub:12","repositories":[{"enabled":true,"id":2327,"autorefresh":false,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Backports/SLE-12_x86_64/standard/","name":"SUSE-PackageHub-12-Standard-Pool","installer_updates":false,"description":"SUSE-PackageHub-12-Standard-Pool for sle-12-x86_64"},{"installer_updates":false,"name":"SUSE-PackageHub-12-Debuginfo","description":"SUSE-PackageHub-12-Debuginfo for sle-12-x86_64","id":2328,"enabled":false,"url":"https://updates.suse.com/SUSE/Backports/SLE-12_x86_64/standard_debug/","distro_target":"sle-12-x86_64","autorefresh":true},{"description":"SUSE-PackageHub-12-Pool for sle-12-x86_64","installer_updates":false,"name":"SUSE-PackageHub-12-Pool","url":"https://updates.suse.com/SUSE/Backports/SLE-12_x86_64/product/","distro_target":"sle-12-x86_64","autorefresh":false,"id":2329,"enabled":true}],"online_predecessor_ids":[],"product_class":"7261","predecessor_ids":[],"arch":"x86_64","eula_url":"","free":true,"shortname":"SUSE-PackageHub-12","description":"SUSE Package Hub is a free of charge extension providing access to community maintained packages built to run on SUSE Linux Enterprise Server. Built from the same sources used in the openSUSE distributions, these quality packages provide additional software to what is found in the SUSE Linux Enterprise Server product. Packages from the Package Hub are delivered without L3 support from SUSE. General updates and fixes to the packages in SUSE Package Hub are provided by the openSUSE community based on their discretion though SUSE will monitor and ensure that any known critical security issues will be addressed. Packages in the Package Hub are approved by SUSE for use with SUSE Linux Enterprise Server 12 and to not interfere with the supportability of SUSE Linux Enterprise Server it's modules and extensions. For more information about SUSE Package Hub please visit https://packagehub.suse.com."}],"id":1118,"release_stage":"released","identifier":"SLED"},{"eula_url":"","arch":"x86_64","free":false,"description":null,"shortname":null,"product_type":"base","cpe":null,"predecessor_ids":[],"online_predecessor_ids":[],"product_class":"SMS-X86","repositories":[{"url":"https://updates.suse.com/repo/$RCE/SLE11-SP3-Debuginfo-Updates/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64","id":735,"enabled":false,"description":"SLE11-SP3-Debuginfo-Updates for sle-11-x86_64","name":"SLE11-SP3-Debuginfo-Updates","installer_updates":false},{"installer_updates":false,"name":"SLE11-SP3-Debuginfo-Pool","description":"SLE11-SP3-Debuginfo-Pool for sle-11-x86_64","id":736,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP3-Debuginfo-Pool/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true},{"name":"SLES11-SP3-Pool","installer_updates":false,"description":"SLES11-SP3-Pool for sle-11-x86_64","id":737,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP3-Pool/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64"},{"description":"SLES11-SP3-Updates for sle-11-x86_64","installer_updates":false,"name":"SLES11-SP3-Updates","url":"https://updates.suse.com/repo/$RCE/SLES11-SP3-Updates/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true,"id":738,"enabled":true},{"autorefresh":true,"distro_target":"x86_64","url":"https://updates.suse.com/repo/$RCE/RES6-SUSE-Manager-Tools/x86_64/","enabled":false,"id":977,"description":"RES-6-SUSE-Manager-Tools for x86_64","name":"RES-6-SUSE-Manager-Tools","installer_updates":false},{"description":"RES-5-SUSE-Manager-Tools for x86_64","installer_updates":false,"name":"RES-5-SUSE-Manager-Tools","distro_target":"x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/RES5-SUSE-Manager-Tools/x86_64/","enabled":false,"id":979},{"description":"SUSE-Manager-Server-2.1-Pool for sle-11-x86_64","name":"SUSE-Manager-Server-2.1-Pool","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SUSE-Manager-Server-2.1-Pool/sle-11-x86_64/","autorefresh":false,"distro_target":"sle-11-x86_64","id":1206,"enabled":true},{"id":1207,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SUSE-Manager-Server-2.1-Updates/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64","name":"SUSE-Manager-Server-2.1-Updates","installer_updates":false,"description":"SUSE-Manager-Server-2.1-Updates for sle-11-x86_64"},{"name":"SLES11-SP3-SUSE-Manager-Tools","installer_updates":false,"description":"SLES11-SP3-SUSE-Manager-Tools for sle-11-x86_64","enabled":false,"id":1208,"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLES11-SP3-SUSE-Manager-Tools/sle-11-x86_64/"},{"description":"SLES11-SP3-SUSE-Manager-Tools for sle-11-s390x","name":"SLES11-SP3-SUSE-Manager-Tools","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP3-SUSE-Manager-Tools/sle-11-s390x/","autorefresh":true,"distro_target":"sle-11-s390x","id":1473,"enabled":false},{"url":"https://updates.suse.com/repo/$RCE/SLES11-SP3-SUSE-Manager-Tools/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","id":1572,"enabled":false,"description":"SLES11-SP3-SUSE-Manager-Tools for sle-11-i586","name":"SLES11-SP3-SUSE-Manager-Tools","installer_updates":false},{"enabled":false,"id":1573,"autorefresh":true,"distro_target":"sle-11-ia64","url":"https://updates.suse.com/repo/$RCE/SLES11-SP3-SUSE-Manager-Tools/sle-11-ia64/","name":"SLES11-SP3-SUSE-Manager-Tools","installer_updates":false,"description":"SLES11-SP3-SUSE-Manager-Tools for sle-11-ia64"},{"enabled":false,"id":1574,"distro_target":"sle-11-ppc64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP3-SUSE-Manager-Tools/sle-11-ppc64/","installer_updates":false,"name":"SLES11-SP3-SUSE-Manager-Tools","description":"SLES11-SP3-SUSE-Manager-Tools for sle-11-ppc64"},{"distro_target":"x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/RES7-SUSE-Manager-Tools/x86_64/","enabled":false,"id":1746,"description":"RES-7-SUSE-Manager-Tools for x86_64","installer_updates":false,"name":"RES-7-SUSE-Manager-Tools"},{"description":"SLES11-SP4-SUSE-Manager-Tools for sle-11-i586","name":"SLES11-SP4-SUSE-Manager-Tools","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLES11-SP4-SUSE-Manager-Tools/sle-11-i586/","enabled":false,"id":1841},{"url":"https://updates.suse.com/repo/$RCE/SLES11-SP4-SUSE-Manager-Tools/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true,"id":1842,"enabled":false,"description":"SLES11-SP4-SUSE-Manager-Tools for sle-11-x86_64","installer_updates":false,"name":"SLES11-SP4-SUSE-Manager-Tools"},{"distro_target":"sle-11-ppc64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP4-SUSE-Manager-Tools/sle-11-ppc64/","enabled":false,"id":1843,"description":"SLES11-SP4-SUSE-Manager-Tools for sle-11-ppc64","installer_updates":false,"name":"SLES11-SP4-SUSE-Manager-Tools"},{"id":1844,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP4-SUSE-Manager-Tools/sle-11-ia64/","autorefresh":true,"distro_target":"sle-11-ia64","name":"SLES11-SP4-SUSE-Manager-Tools","installer_updates":false,"description":"SLES11-SP4-SUSE-Manager-Tools for sle-11-ia64"},{"url":"https://updates.suse.com/repo/$RCE/SLES11-SP4-SUSE-Manager-Tools/sle-11-s390x/","distro_target":"sle-11-s390x","autorefresh":true,"id":1845,"enabled":false,"description":"SLES11-SP4-SUSE-Manager-Tools for sle-11-s390x","installer_updates":false,"name":"SLES11-SP4-SUSE-Manager-Tools"}],"offline_predecessor_ids":[],"name":"SUSE Manager Server x86 and x86-64","former_identifier":"SUSE-Manager-Server","release_type":null,"migration_extra":false,"friendly_name":"SUSE Manager Server x86 and x86-64 2.1 x86_64","recommended":false,"version":"2.1","extensions":[{"friendly_version":"1.2","extensions":[],"id":1076,"release_stage":"released","identifier":"SUSE-Manager-Mgmt-Single","recommended":false,"version":"1.2","offline_predecessor_ids":[],"name":"SUSE Manager Mgmt Single","release_type":null,"former_identifier":"SUSE-Manager-Mgmt-Single","migration_extra":false,"friendly_name":"SUSE Manager Mgmt Single 1.2","predecessor_ids":[],"online_predecessor_ids":[],"product_class":"SM_ENT_MGM_S","repositories":[],"product_type":"extension","cpe":null,"free":false,"shortname":null,"description":null,"eula_url":"","arch":null},{"cpe":null,"product_type":"extension","online_predecessor_ids":[],"product_class":"SM_ENT_MGM_V","repositories":[],"predecessor_ids":[],"arch":null,"eula_url":"","shortname":null,"description":null,"free":false,"release_stage":"released","identifier":"SUSE-Manager-Mgmt-Unlimited-Virtual","id":1078,"extensions":[],"friendly_version":"1.2","friendly_name":"SUSE Manager Mgmt Unlimited Virtual 1.2","migration_extra":false,"former_identifier":"SUSE-Manager-Mgmt-Unlimited-Virtual","release_type":null,"name":"SUSE Manager Mgmt Unlimited Virtual","offline_predecessor_ids":[],"version":"1.2","recommended":false},{"arch":null,"eula_url":"","description":null,"shortname":null,"free":false,"cpe":null,"product_type":"extension","product_class":"SM_ENT_PROV_S","online_predecessor_ids":[],"repositories":[],"predecessor_ids":[],"migration_extra":false,"friendly_name":"SUSE Manager Mgmt Single 1.2","release_type":null,"former_identifier":"SUSE-Manager-Prov-Single","name":"SUSE Manager Mgmt Single","offline_predecessor_ids":[],"version":"1.2","recommended":false,"release_stage":"released","id":1097,"identifier":"SUSE-Manager-Prov-Single","extensions":[],"friendly_version":"1.2"},{"recommended":false,"version":"1.2","name":"SUSE Manager Mgmt Unlimited Virtual Z","offline_predecessor_ids":[],"friendly_name":"SUSE Manager Mgmt Unlimited Virtual Z 1.2","migration_extra":false,"former_identifier":"SUSE-Manager-Mgmt-Unlimited-Virtual-Z","release_type":null,"friendly_version":"1.2","extensions":[],"release_stage":"released","identifier":"SUSE-Manager-Mgmt-Unlimited-Virtual-Z","id":1200,"description":null,"shortname":null,"free":false,"eula_url":"","arch":null,"predecessor_ids":[],"online_predecessor_ids":[],"product_class":"SM_ENT_MGM_Z","repositories":[],"cpe":null,"product_type":"extension"},{"predecessor_ids":[],"product_class":"SM_ENT_MON_S","online_predecessor_ids":[],"repositories":[],"cpe":null,"product_type":"extension","description":null,"shortname":null,"free":false,"eula_url":"","arch":null,"friendly_version":"1.2","extensions":[],"id":1201,"release_stage":"released","identifier":"SUSE-Manager-Mon-Single","recommended":false,"version":"1.2","name":"SUSE Manager Monitoring Single","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"SUSE Manager Monitoring Single 1.2","former_identifier":"SUSE-Manager-Mon-Single","release_type":null},{"description":null,"shortname":null,"free":false,"arch":null,"eula_url":"","product_class":"SM_ENT_MON_V","online_predecessor_ids":[],"repositories":[],"predecessor_ids":[],"cpe":null,"product_type":"extension","version":"1.2","recommended":false,"migration_extra":false,"friendly_name":"SUSE Manager Monitoring Unlimited Virtual 1.2","former_identifier":"SUSE-Manager-Mon-Unlimited-Virtual","release_type":null,"name":"SUSE Manager Monitoring Unlimited Virtual","offline_predecessor_ids":[],"friendly_version":"1.2","id":1202,"release_stage":"released","identifier":"SUSE-Manager-Mon-Unlimited-Virtual","extensions":[]},{"version":"1.2","recommended":false,"former_identifier":"SUSE-Manager-Mon-Unlimited-Virtual-Z","release_type":null,"migration_extra":false,"friendly_name":"SUSE Manager Monitoring Unlimited Virtual Z 1.2","offline_predecessor_ids":[],"name":"SUSE Manager Monitoring Unlimited Virtual Z","friendly_version":"1.2","release_stage":"released","identifier":"SUSE-Manager-Mon-Unlimited-Virtual-Z","id":1203,"extensions":[],"free":false,"description":null,"shortname":null,"arch":null,"eula_url":"","online_predecessor_ids":[],"product_class":"SM_ENT_MON_Z","repositories":[],"predecessor_ids":[],"product_type":"extension","cpe":null},{"name":"SUSE Manager Provisioning Unlimited Virtual","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"SUSE Manager Provisioning Unlimited Virtual 1.2","former_identifier":"SUSE-Manager-Prov-Unlimited-Virtual","release_type":null,"recommended":false,"version":"1.2","extensions":[],"id":1204,"release_stage":"released","identifier":"SUSE-Manager-Prov-Unlimited-Virtual","friendly_version":"1.2","eula_url":"","arch":null,"description":null,"shortname":null,"free":false,"cpe":null,"product_type":"extension","predecessor_ids":[],"repositories":[],"online_predecessor_ids":[],"product_class":"SM_ENT_PROV_V"},{"cpe":null,"product_type":"extension","online_predecessor_ids":[],"repositories":[],"product_class":"SM_ENT_PROV_Z","predecessor_ids":[],"arch":null,"eula_url":"","shortname":null,"description":null,"free":false,"id":1205,"release_stage":"released","identifier":"SUSE-Manager-Prov-Unlimited-Virtual-Z","extensions":[],"friendly_version":"1.2","friendly_name":"SUSE Manager Provisioning Unlimited Virtual Z 1.2","migration_extra":false,"release_type":null,"former_identifier":"SUSE-Manager-Prov-Unlimited-Virtual-Z","name":"SUSE Manager Provisioning Unlimited Virtual Z","offline_predecessor_ids":[],"version":"1.2","recommended":false}],"release_stage":"released","id":1119,"identifier":"SUSE-Manager-Server","friendly_version":"2.1"},{"id":1122,"release_stage":"released","identifier":"RES","extensions":[],"friendly_version":"5","release_type":null,"former_identifier":"RES","migration_extra":false,"friendly_name":"SUSE Linux Enterprise Server with Expanded Support 5 x86_64","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Server with Expanded Support","version":"5","recommended":false,"product_type":"base","cpe":null,"repositories":[{"id":1168,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/RES5/src/","distro_target":"src","autorefresh":true,"installer_updates":false,"name":"RES5","description":"RES5 for src"},{"name":"RES5","installer_updates":false,"description":"RES5 for x86_64","id":1169,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/RES5/x86_64/","autorefresh":true,"distro_target":"x86_64"},{"distro_target":"i386","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/RES5/i386/","enabled":true,"id":1170,"description":"RES5 for i386","installer_updates":false,"name":"RES5"}],"online_predecessor_ids":[],"product_class":"RES","predecessor_ids":[],"arch":"x86_64","eula_url":"","free":false,"shortname":null,"description":null},{"friendly_version":"4","release_stage":"released","id":1127,"identifier":"RES","extensions":[],"version":"4","recommended":false,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Server with Expanded Support 4 x86_64","release_type":null,"former_identifier":"RES","name":"SUSE Linux Enterprise Server with Expanded Support","offline_predecessor_ids":[],"online_predecessor_ids":[],"repositories":[{"url":"https://updates.suse.com/repo/$RCE/RES4-LTS/i386/","distro_target":"i386","autorefresh":true,"id":1180,"enabled":true,"description":"RES4-LTS for i386","installer_updates":false,"name":"RES4-LTS"},{"description":"RES4-LTS for x86_64","installer_updates":false,"name":"RES4-LTS","url":"https://updates.suse.com/repo/$RCE/RES4-LTS/x86_64/","distro_target":"x86_64","autorefresh":true,"id":1181,"enabled":true},{"description":"RES4 for src","name":"RES4","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/RES4/src/","autorefresh":true,"distro_target":"src","id":1182,"enabled":true},{"enabled":true,"id":1183,"distro_target":"x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/RES4/x86_64/","installer_updates":false,"name":"RES4","description":"RES4 for x86_64"},{"name":"RES4","installer_updates":false,"description":"RES4 for i386","id":1184,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/RES4/i386/","autorefresh":true,"distro_target":"i386"}],"product_class":"RES","predecessor_ids":[],"cpe":null,"product_type":"base","description":null,"shortname":null,"free":false,"arch":"x86_64","eula_url":""},{"product_class":"AiO","online_predecessor_ids":[],"repositories":[{"name":"SLES11-SP1-Updates","installer_updates":false,"description":"SLES11-SP1-Updates for sle-11-x86_64","enabled":false,"id":705,"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-Updates/sle-11-x86_64/"},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Pool/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64","id":707,"enabled":false,"description":"SLE11-SP1-Debuginfo-Pool for sle-11-x86_64","name":"SLE11-SP1-Debuginfo-Pool","installer_updates":false},{"enabled":false,"id":709,"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLES11-SP2-Core/sle-11-x86_64/","name":"SLES11-SP2-Core","installer_updates":false,"description":"SLES11-SP2-Core for sle-11-x86_64"},{"description":"SLES11-Extras for sle-11-x86_64","installer_updates":false,"name":"SLES11-Extras","distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-Extras/sle-11-x86_64/","enabled":false,"id":710},{"id":711,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-Pool/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64","name":"SLES11-SP1-Pool","installer_updates":false,"description":"SLES11-SP1-Pool for sle-11-x86_64"},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-Debuginfo-Updates/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64","id":712,"enabled":false,"description":"SLE11-SP2-Debuginfo-Updates for sle-11-x86_64","name":"SLE11-SP2-Debuginfo-Updates","installer_updates":false},{"description":"SLES11-SP2-Extension-Store for sle-11-x86_64","name":"SLES11-SP2-Extension-Store","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP2-Extension-Store/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64","id":713,"enabled":false},{"url":"https://updates.suse.com/repo/$RCE/SLES11-SP2-Updates/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64","id":714,"enabled":false,"description":"SLES11-SP2-Updates for sle-11-x86_64","name":"SLES11-SP2-Updates","installer_updates":false},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Updates/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true,"id":715,"enabled":false,"description":"SLE11-SP1-Debuginfo-Updates for sle-11-x86_64","installer_updates":false,"name":"SLE11-SP1-Debuginfo-Updates"},{"id":716,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-Debuginfo-Core/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64","name":"SLE11-SP2-Debuginfo-Core","installer_updates":false,"description":"SLE11-SP2-Debuginfo-Core for sle-11-x86_64"},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SP3-Debuginfo-Updates/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true,"id":735,"enabled":false,"description":"SLE11-SP3-Debuginfo-Updates for sle-11-x86_64","installer_updates":false,"name":"SLE11-SP3-Debuginfo-Updates"},{"description":"SLE11-SP3-Debuginfo-Pool for sle-11-x86_64","name":"SLE11-SP3-Debuginfo-Pool","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE11-SP3-Debuginfo-Pool/sle-11-x86_64/","enabled":false,"id":736},{"description":"SLES11-SP3-Pool for sle-11-x86_64","name":"SLES11-SP3-Pool","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLES11-SP3-Pool/sle-11-x86_64/","enabled":true,"id":737},{"description":"SLES11-SP3-Updates for sle-11-x86_64","installer_updates":false,"name":"SLES11-SP3-Updates","url":"https://updates.suse.com/repo/$RCE/SLES11-SP3-Updates/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true,"id":738,"enabled":true},{"id":739,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP3-Extension-Store/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64","name":"SLES11-SP3-Extension-Store","installer_updates":false,"description":"SLES11-SP3-Extension-Store for sle-11-x86_64"},{"description":"SLE11-HAE-SP3-Updates for sle-11-x86_64","installer_updates":false,"name":"SLE11-HAE-SP3-Updates","distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP3-Updates/sle-11-x86_64/","enabled":true,"id":956},{"description":"SLE11-SP2-WebYaST-1.3-Pool for sle-11-x86_64","name":"SLE11-SP2-WebYaST-1.3-Pool","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-WebYaST-1.3-Pool/sle-11-x86_64/","enabled":true,"id":1185},{"id":1187,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP3-SAP-Updates/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true,"installer_updates":false,"name":"SLE11-SP3-SAP-Updates","description":"SLE11-SP3-SAP-Updates for sle-11-x86_64"},{"description":"SLE11-SP2-WebYaST-1.3-Updates for sle-11-x86_64","name":"SLE11-SP2-WebYaST-1.3-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-WebYaST-1.3-Updates/sle-11-x86_64/","enabled":true,"id":1188},{"enabled":true,"id":1189,"distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP3-SAP-Pool/sle-11-x86_64/","installer_updates":false,"name":"SLE11-SP3-SAP-Pool","description":"SLE11-SP3-SAP-Pool for sle-11-x86_64"},{"description":"SLE11-Security-Module for sle-11-x86_64","name":"SLE11-Security-Module","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-Security-Module/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64","id":1447,"enabled":false},{"description":"SLES11-SP3-LTSS-Updates for sle-11-x86_64","installer_updates":false,"name":"SLES11-SP3-LTSS-Updates","url":"https://updates.suse.com/repo/$RCE/SLES11-SP3-LTSS-Updates/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true,"id":1967,"enabled":true},{"description":"SLE11-HAE-SP3-Pool for sle-11-x86_64","name":"SLE11-HAE-SP3-Pool","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP3-Pool/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64","id":3037,"enabled":true}],"predecessor_ids":[],"product_type":"base","cpe":null,"free":false,"description":null,"shortname":null,"arch":"x86_64","eula_url":"","friendly_version":"11 SP2","identifier":"SUSE_SLES_SAP-SP3-migration","release_stage":"released","id":1128,"extensions":[{"id":938,"release_stage":"released","identifier":"sle-slms-1.3-migration","extensions":[],"friendly_version":"1.2","release_type":null,"former_identifier":"sle-slms-1.3-migration","friendly_name":"SUSE Lifecycle Management Server 1.2 (Migration)","migration_extra":false,"offline_predecessor_ids":[],"name":"SUSE Lifecycle Management Server","version":"1.2","recommended":false,"product_type":"extension","cpe":null,"repositories":[{"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-SLMS-1.3-Pool/sle-11-x86_64/","enabled":true,"id":916,"description":"SLE11-SP2-SLMS-1.3-Pool for sle-11-x86_64","name":"SLE11-SP2-SLMS-1.3-Pool","installer_updates":false}],"online_predecessor_ids":[],"product_class":"SLMS","predecessor_ids":[],"arch":null,"eula_url":"","free":false,"shortname":null,"description":null},{"release_stage":"released","identifier":"sle-slms","id":939,"extensions":[],"friendly_version":"1.2","friendly_name":"SUSE Lifecycle Management Server 1.2","migration_extra":false,"former_identifier":"sle-slms","release_type":null,"name":"SUSE Lifecycle Management Server","offline_predecessor_ids":[],"version":"1.2","recommended":false,"cpe":null,"product_type":"extension","online_predecessor_ids":[],"repositories":[{"id":913,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-SLMS-1.2-Pool/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64","name":"SLE11-SP1-SLMS-1.2-Pool","installer_updates":false,"description":"SLE11-SP1-SLMS-1.2-Pool for sle-11-x86_64"},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-SLMS-1.2-Updates/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64","id":918,"enabled":false,"description":"SLE11-SP1-SLMS-1.2-Updates for sle-11-x86_64","name":"SLE11-SP1-SLMS-1.2-Updates","installer_updates":false}],"product_class":"SLMS","predecessor_ids":[],"arch":null,"eula_url":"","shortname":null,"description":null,"free":false},{"eula_url":"","arch":null,"shortname":null,"description":null,"free":false,"cpe":null,"product_type":"extension","predecessor_ids":[],"product_class":"STUDIOONSITE","online_predecessor_ids":[],"repositories":[{"description":"SLE11-SP1-Debuginfo-Pool for sle-11-i586","name":"SLE11-SP1-Debuginfo-Pool","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Pool/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","id":680,"enabled":false},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Updates/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","id":682,"enabled":false,"description":"SLE11-SP1-Debuginfo-Updates for sle-11-i586","name":"SLE11-SP1-Debuginfo-Updates","installer_updates":false},{"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-Updates/sle-11-i586/","enabled":true,"id":684,"description":"SLES11-SP1-Updates for sle-11-i586","name":"SLES11-SP1-Updates","installer_updates":false},{"url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-Pool/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true,"id":686,"enabled":true,"description":"SLES11-SP1-Pool for sle-11-i586","installer_updates":false,"name":"SLES11-SP1-Pool"},{"id":687,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-Pool/sle-11-s390x/","distro_target":"sle-11-s390x","autorefresh":true,"installer_updates":false,"name":"SLES11-SP1-Pool","description":"SLES11-SP1-Pool for sle-11-s390x"},{"autorefresh":true,"distro_target":"sle-11-s390x","url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Updates/sle-11-s390x/","enabled":false,"id":688,"description":"SLE11-SP1-Debuginfo-Updates for sle-11-s390x","name":"SLE11-SP1-Debuginfo-Updates","installer_updates":false},{"url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-Updates/sle-11-s390x/","autorefresh":true,"distro_target":"sle-11-s390x","id":691,"enabled":true,"description":"SLES11-SP1-Updates for sle-11-s390x","name":"SLES11-SP1-Updates","installer_updates":false},{"name":"SLE11-SP1-Debuginfo-Pool","installer_updates":false,"description":"SLE11-SP1-Debuginfo-Pool for sle-11-s390x","id":692,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Pool/sle-11-s390x/","autorefresh":true,"distro_target":"sle-11-s390x"},{"name":"SLES11-SP1-Updates","installer_updates":false,"description":"SLES11-SP1-Updates for sle-11-x86_64","enabled":true,"id":705,"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-Updates/sle-11-x86_64/"},{"description":"SLE11-SP1-Debuginfo-Pool for sle-11-x86_64","installer_updates":false,"name":"SLE11-SP1-Debuginfo-Pool","distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Pool/sle-11-x86_64/","enabled":false,"id":707},{"id":711,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-Pool/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64","name":"SLES11-SP1-Pool","installer_updates":false,"description":"SLES11-SP1-Pool for sle-11-x86_64"},{"description":"SLE11-SP1-Debuginfo-Updates for sle-11-x86_64","name":"SLE11-SP1-Debuginfo-Updates","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Updates/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64","id":715,"enabled":false},{"name":"SLE11-SP1-WebYaST-1.2-Updates","installer_updates":false,"description":"SLE11-SP1-WebYaST-1.2-Updates for sle-11-x86_64","id":839,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-WebYaST-1.2-Updates/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64"},{"description":"SLE11-SP1-WebYaST-1.2-Pool for sle-11-i586","name":"SLE11-SP1-WebYaST-1.2-Pool","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-WebYaST-1.2-Pool/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","id":840,"enabled":true},{"description":"SLE11-SP1-WebYaST-1.2-Pool for sle-11-x86_64","installer_updates":false,"name":"SLE11-SP1-WebYaST-1.2-Pool","url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-WebYaST-1.2-Pool/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true,"id":841,"enabled":true},{"description":"SLE11-SP1-WebYaST-1.2-Updates for sle-11-i586","installer_updates":false,"name":"SLE11-SP1-WebYaST-1.2-Updates","distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-WebYaST-1.2-Updates/sle-11-i586/","enabled":true,"id":842},{"id":913,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-SLMS-1.2-Pool/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true,"installer_updates":false,"name":"SLE11-SP1-SLMS-1.2-Pool","description":"SLE11-SP1-SLMS-1.2-Pool for sle-11-x86_64"},{"description":"SLE11-SP1-SLMS-1.2-Updates for sle-11-x86_64","name":"SLE11-SP1-SLMS-1.2-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-SLMS-1.2-Updates/sle-11-x86_64/","enabled":false,"id":918},{"autorefresh":true,"distro_target":"sle-11-ppc64","url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-Pool/sle-11-ppc64/","enabled":true,"id":919,"description":"SLES11-SP1-Pool for sle-11-ppc64","name":"SLES11-SP1-Pool","installer_updates":false},{"enabled":true,"id":922,"distro_target":"sle-11-ppc64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-Updates/sle-11-ppc64/","installer_updates":false,"name":"SLES11-SP1-Updates","description":"SLES11-SP1-Updates for sle-11-ppc64"},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Updates/sle-11-ppc64/","autorefresh":true,"distro_target":"sle-11-ppc64","id":924,"enabled":false,"description":"SLE11-SP1-Debuginfo-Updates for sle-11-ppc64","name":"SLE11-SP1-Debuginfo-Updates","installer_updates":false},{"distro_target":"sle-11-ppc64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Pool/sle-11-ppc64/","enabled":false,"id":925,"description":"SLE11-SP1-Debuginfo-Pool for sle-11-ppc64","installer_updates":false,"name":"SLE11-SP1-Debuginfo-Pool"},{"id":970,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Pool/sle-11-ia64/","distro_target":"sle-11-ia64","autorefresh":true,"installer_updates":false,"name":"SLE11-SP1-Debuginfo-Pool","description":"SLE11-SP1-Debuginfo-Pool for sle-11-ia64"},{"description":"SLE11-SP1-Debuginfo-Updates for sle-11-ia64","name":"SLE11-SP1-Debuginfo-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-ia64","url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Updates/sle-11-ia64/","enabled":false,"id":971},{"name":"SLES11-SP1-Updates","installer_updates":false,"description":"SLES11-SP1-Updates for sle-11-ia64","id":987,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-Updates/sle-11-ia64/","autorefresh":true,"distro_target":"sle-11-ia64"},{"name":"SLES11-SP1-Pool","installer_updates":false,"description":"SLES11-SP1-Pool for sle-11-ia64","id":991,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-Pool/sle-11-ia64/","autorefresh":true,"distro_target":"sle-11-ia64"},{"installer_updates":false,"name":"SLE11-SP1-WebYaST-1.2-Pool","description":"SLE11-SP1-WebYaST-1.2-Pool for sle-11-s390x","enabled":true,"id":1005,"distro_target":"sle-11-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-WebYaST-1.2-Pool/sle-11-s390x/"},{"description":"SLE11-SP1-WebYaST-1.2-Updates for sle-11-s390x","installer_updates":false,"name":"SLE11-SP1-WebYaST-1.2-Updates","distro_target":"sle-11-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-WebYaST-1.2-Updates/sle-11-s390x/","enabled":true,"id":1006},{"description":"SLE11-SP1-StudioOnsite-1.2-Updates for sle-11-x86_64","installer_updates":false,"name":"SLE11-SP1-StudioOnsite-1.2-Updates","url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-StudioOnsite-1.2-Updates/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true,"id":1007,"enabled":true},{"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-StudioOnsite-1.2-Pool/sle-11-x86_64/","enabled":true,"id":1008,"description":"SLE11-SP1-StudioOnsite-1.2-Pool for sle-11-x86_64","name":"SLE11-SP1-StudioOnsite-1.2-Pool","installer_updates":false}],"name":"SUSE Studio OnSite","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"SUSE Studio OnSite 1.2","former_identifier":"sle-studioonsite","release_type":null,"recommended":false,"version":"1.2","extensions":[],"identifier":"sle-studioonsite","release_stage":"released","id":1006,"friendly_version":"1.2"},{"eula_url":"","arch":null,"free":false,"description":null,"shortname":null,"product_type":"extension","cpe":null,"predecessor_ids":[],"online_predecessor_ids":[],"product_class":"STUDIOONSITERUNNER","repositories":[{"distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-Updates/sle-11-i586/","enabled":true,"id":684,"description":"SLES11-SP1-Updates for sle-11-i586","installer_updates":false,"name":"SLES11-SP1-Updates"},{"installer_updates":false,"name":"SLES11-SP1-Pool","description":"SLES11-SP1-Pool for sle-11-i586","enabled":true,"id":686,"distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-Pool/sle-11-i586/"},{"url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-Pool/sle-11-s390x/","autorefresh":true,"distro_target":"sle-11-s390x","id":687,"enabled":true,"description":"SLES11-SP1-Pool for sle-11-s390x","name":"SLES11-SP1-Pool","installer_updates":false},{"description":"SLES11-SP1-Updates for sle-11-s390x","name":"SLES11-SP1-Updates","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-Updates/sle-11-s390x/","autorefresh":true,"distro_target":"sle-11-s390x","id":691,"enabled":true},{"description":"SLES11-SP1-Updates for sle-11-x86_64","installer_updates":false,"name":"SLES11-SP1-Updates","url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-Updates/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true,"id":705,"enabled":true},{"enabled":true,"id":711,"distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-Pool/sle-11-x86_64/","installer_updates":false,"name":"SLES11-SP1-Pool","description":"SLES11-SP1-Pool for sle-11-x86_64"},{"description":"SLES11-SP1-Pool for sle-11-ppc64","installer_updates":false,"name":"SLES11-SP1-Pool","url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-Pool/sle-11-ppc64/","distro_target":"sle-11-ppc64","autorefresh":true,"id":919,"enabled":true},{"url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-Updates/sle-11-ppc64/","distro_target":"sle-11-ppc64","autorefresh":true,"id":922,"enabled":true,"description":"SLES11-SP1-Updates for sle-11-ppc64","installer_updates":false,"name":"SLES11-SP1-Updates"},{"id":987,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-Updates/sle-11-ia64/","autorefresh":true,"distro_target":"sle-11-ia64","name":"SLES11-SP1-Updates","installer_updates":false,"description":"SLES11-SP1-Updates for sle-11-ia64"},{"enabled":true,"id":991,"autorefresh":true,"distro_target":"sle-11-ia64","url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-Pool/sle-11-ia64/","name":"SLES11-SP1-Pool","installer_updates":false,"description":"SLES11-SP1-Pool for sle-11-ia64"},{"id":1111,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-StudioOnsiteRunner-1.2-Pool/sle-11-s390x/","autorefresh":true,"distro_target":"sle-11-s390x","name":"SLE11-StudioOnsiteRunner-1.2-Pool","installer_updates":false,"description":"SLE11-StudioOnsiteRunner-1.2-Pool for sle-11-s390x"},{"name":"SLE11-StudioOnsiteRunner-1.2-Updates","installer_updates":false,"description":"SLE11-StudioOnsiteRunner-1.2-Updates for sle-11-s390x","id":1112,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-StudioOnsiteRunner-1.2-Updates/sle-11-s390x/","autorefresh":true,"distro_target":"sle-11-s390x"}],"offline_predecessor_ids":[],"name":"SUSE Studio Extension for System z","former_identifier":"sle-studioonsiterunner","release_type":null,"migration_extra":false,"friendly_name":"SUSE Studio Extension for System z 1.2","recommended":false,"version":"1.2","extensions":[],"release_stage":"released","identifier":"sle-studioonsiterunner","id":1098,"friendly_version":"1.2"},{"friendly_version":"11 SP2","extensions":[],"id":1193,"release_stage":"released","identifier":"sle-smt","recommended":false,"version":"11.2","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Subscription Management Tool","former_identifier":"sle-smt","release_type":null,"friendly_name":"SUSE Linux Enterprise Subscription Management Tool 11 SP2","migration_extra":false,"predecessor_ids":[],"online_predecessor_ids":[],"product_class":"SLESMT","repositories":[{"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP2-Pool/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64","id":1392,"enabled":true,"description":"SLE11-SMT-SP2-Pool for sle-11-x86_64","name":"SLE11-SMT-SP2-Pool","installer_updates":false},{"autorefresh":true,"distro_target":"sle-11-s390x","url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP2-Updates/sle-11-s390x/","enabled":true,"id":1393,"description":"SLE11-SMT-SP2-Updates for sle-11-s390x","name":"SLE11-SMT-SP2-Updates","installer_updates":false},{"description":"SLE11-SMT-SP2-Pool for sle-11-i586","installer_updates":false,"name":"SLE11-SMT-SP2-Pool","url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP2-Pool/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true,"id":1394,"enabled":true},{"installer_updates":false,"name":"SLE11-SMT-SP2-Updates","description":"SLE11-SMT-SP2-Updates for sle-11-i586","id":1395,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP2-Updates/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true},{"description":"SLE11-SMT-SP2-Pool for sle-11-s390x","name":"SLE11-SMT-SP2-Pool","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP2-Pool/sle-11-s390x/","autorefresh":true,"distro_target":"sle-11-s390x","id":1396,"enabled":true},{"id":1397,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP2-Updates/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true,"installer_updates":false,"name":"SLE11-SMT-SP2-Updates","description":"SLE11-SMT-SP2-Updates for sle-11-x86_64"}],"product_type":"extension","cpe":null,"free":true,"shortname":null,"description":null,"eula_url":"","arch":null},{"repositories":[{"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP3-Pool/sle-11-s390x/","autorefresh":true,"distro_target":"sle-11-s390x","id":1408,"enabled":true,"description":"SLE11-SMT-SP3-Pool for sle-11-s390x","name":"SLE11-SMT-SP3-Pool","installer_updates":false},{"id":1409,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP3-Pool/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true,"installer_updates":false,"name":"SLE11-SMT-SP3-Pool","description":"SLE11-SMT-SP3-Pool for sle-11-x86_64"},{"installer_updates":false,"name":"SLE11-SMT-SP3-Pool","description":"SLE11-SMT-SP3-Pool for sle-11-i586","id":1410,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP3-Pool/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true}],"online_predecessor_ids":[],"product_class":"SLESMT","predecessor_ids":[],"product_type":"extension","cpe":null,"free":true,"shortname":null,"description":null,"arch":null,"eula_url":"","friendly_version":"11 SP2","identifier":"sle-smt-SP3-migration","release_stage":"released","id":1199,"extensions":[],"version":"11.2","recommended":false,"release_type":null,"former_identifier":"sle-smt-SP3-migration","friendly_name":"SUSE Linux Enterprise Subscription Management Tool 11 SP2 (Migration)","migration_extra":false,"offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Subscription Management Tool"}],"version":"11.2","recommended":false,"release_type":null,"former_identifier":"SUSE_SLES_SAP-SP3-migration","migration_extra":false,"friendly_name":"SUSE Linux Enterprise Server for SAP All-in-One 11 SP2 x86_64 (Migration)","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Server for SAP All-in-One"},{"version":"11.1","recommended":false,"release_type":null,"former_identifier":"SUSE_SLES_SAP","friendly_name":"SUSE Linux Enterprise Server for SAP All-in-One 11 SP1","migration_extra":false,"offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Server for SAP All-in-One","friendly_version":"11 SP1","identifier":"SUSE_SLES_SAP","release_stage":"released","id":1129,"extensions":[{"extensions":[],"identifier":"sle-11-WebYaST","release_stage":"released","id":835,"friendly_version":"1.1","offline_predecessor_ids":[],"name":"SUSE WebYaST","release_type":null,"former_identifier":"sle-11-WebYaST","friendly_name":"SUSE WebYaST 1.1","migration_extra":false,"recommended":false,"version":"1.1","product_type":"extension","cpe":null,"predecessor_ids":[],"product_class":"WEBYAST","online_predecessor_ids":[],"repositories":[{"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-WebYaST-1.1-Updates/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true,"id":825,"enabled":true,"description":"SLE11-SP1-WebYaST-1.1-Updates for sle-11-i586","installer_updates":false,"name":"SLE11-SP1-WebYaST-1.1-Updates"},{"distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-WebYaST-1.1-Pool/sle-11-i586/","enabled":false,"id":826,"description":"SLE11-SP1-WebYaST-1.1-Pool for sle-11-i586","installer_updates":false,"name":"SLE11-SP1-WebYaST-1.1-Pool"},{"installer_updates":false,"name":"SLE11-SP1-WebYaST-1.1-Pool","description":"SLE11-SP1-WebYaST-1.1-Pool for sle-11-x86_64","enabled":false,"id":827,"distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-WebYaST-1.1-Pool/sle-11-x86_64/"},{"enabled":true,"id":828,"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-WebYaST-1.1-Updates/sle-11-x86_64/","name":"SLE11-SP1-WebYaST-1.1-Updates","installer_updates":false,"description":"SLE11-SP1-WebYaST-1.1-Updates for sle-11-x86_64"}],"eula_url":"","arch":null,"free":true,"shortname":null,"description":null},{"version":"11.1","recommended":false,"former_identifier":"sle-sdk","release_type":null,"friendly_name":"SUSE Linux Enterprise Software Development Kit 11 SP1","migration_extra":false,"offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Software Development Kit","friendly_version":"11 SP1","release_stage":"released","identifier":"sle-sdk","id":1159,"extensions":[],"free":true,"description":null,"shortname":null,"arch":null,"eula_url":"","online_predecessor_ids":[],"product_class":"SLE-SDK","repositories":[{"description":"SLE11-SDK-SP1-Updates for sle-11-ia64","installer_updates":false,"name":"SLE11-SDK-SP1-Updates","distro_target":"sle-11-ia64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Updates/sle-11-ia64/","enabled":true,"id":1257},{"installer_updates":false,"name":"SLE11-SDK-SP1-Pool","description":"SLE11-SDK-SP1-Pool for sle-11-ia64","enabled":true,"id":1258,"distro_target":"sle-11-ia64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-ia64/"},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-s390x/","distro_target":"sle-11-s390x","autorefresh":true,"id":1259,"enabled":true,"description":"SLE11-SDK-SP1-Pool for sle-11-s390x","installer_updates":false,"name":"SLE11-SDK-SP1-Pool"},{"enabled":true,"id":1260,"distro_target":"sle-11-ppc64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Updates/sle-11-ppc64/","installer_updates":false,"name":"SLE11-SDK-SP1-Updates","description":"SLE11-SDK-SP1-Updates for sle-11-ppc64"},{"enabled":true,"id":1261,"distro_target":"sle-11-ppc64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-ppc64/","installer_updates":false,"name":"SLE11-SDK-SP1-Pool","description":"SLE11-SDK-SP1-Pool for sle-11-ppc64"},{"name":"SLE11-SDK-SP1-Updates","installer_updates":false,"description":"SLE11-SDK-SP1-Updates for sle-11-i586","enabled":true,"id":1262,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Updates/sle-11-i586/"},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true,"id":1263,"enabled":true,"description":"SLE11-SDK-SP1-Pool for sle-11-i586","installer_updates":false,"name":"SLE11-SDK-SP1-Pool"},{"name":"SLE11-SDK-SP1-Pool","installer_updates":false,"description":"SLE11-SDK-SP1-Pool for sle-11-x86_64","enabled":true,"id":1264,"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-x86_64/"},{"id":1265,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Updates/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64","name":"SLE11-SDK-SP1-Updates","installer_updates":false,"description":"SLE11-SDK-SP1-Updates for sle-11-x86_64"},{"installer_updates":false,"name":"SLE11-SDK-SP1-Updates","description":"SLE11-SDK-SP1-Updates for sle-11-s390x","id":1266,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Updates/sle-11-s390x/","distro_target":"sle-11-s390x","autorefresh":true}],"predecessor_ids":[],"product_type":"extension","cpe":null},{"eula_url":"","arch":null,"free":true,"description":null,"shortname":null,"product_type":"extension","cpe":null,"predecessor_ids":[],"repositories":[{"id":1258,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-ia64/","distro_target":"sle-11-ia64","autorefresh":true,"installer_updates":false,"name":"SLE11-SDK-SP1-Pool","description":"SLE11-SDK-SP1-Pool for sle-11-ia64"},{"description":"SLE11-SDK-SP1-Pool for sle-11-s390x","installer_updates":false,"name":"SLE11-SDK-SP1-Pool","distro_target":"sle-11-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-s390x/","enabled":true,"id":1259},{"name":"SLE11-SDK-SP1-Pool","installer_updates":false,"description":"SLE11-SDK-SP1-Pool for sle-11-ppc64","enabled":true,"id":1261,"autorefresh":true,"distro_target":"sle-11-ppc64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-ppc64/"},{"description":"SLE11-SDK-SP1-Pool for sle-11-i586","name":"SLE11-SDK-SP1-Pool","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-i586/","enabled":true,"id":1263},{"description":"SLE11-SDK-SP1-Pool for sle-11-x86_64","name":"SLE11-SDK-SP1-Pool","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-x86_64/","enabled":true,"id":1264}],"online_predecessor_ids":[],"product_class":"SLE-SDK","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Software Development Kit","former_identifier":"sle-sdk-SP1-migration","release_type":null,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Software Development Kit 11 (Migration)","recommended":false,"version":"11","extensions":[],"identifier":"sle-sdk-SP1-migration","release_stage":"released","id":1162,"friendly_version":"11"},{"product_type":"extension","cpe":null,"predecessor_ids":[],"online_predecessor_ids":[],"product_class":"SLE-SDK","repositories":[{"id":1267,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-ia64/","autorefresh":true,"distro_target":"sle-11-ia64","name":"SLE11-SDK-SP2-Core","installer_updates":false,"description":"SLE11-SDK-SP2-Core for sle-11-ia64"},{"id":1268,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-s390x/","autorefresh":true,"distro_target":"sle-11-s390x","name":"SLE11-SDK-SP2-Core","installer_updates":false,"description":"SLE11-SDK-SP2-Core for sle-11-s390x"},{"id":1269,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-s390x/","distro_target":"sle-11-s390x","autorefresh":true,"installer_updates":false,"name":"SLE11-SDK-SP2-Updates","description":"SLE11-SDK-SP2-Updates for sle-11-s390x"},{"enabled":true,"id":1270,"autorefresh":true,"distro_target":"sle-11-ppc64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-ppc64/","name":"SLE11-SDK-SP2-Updates","installer_updates":false,"description":"SLE11-SDK-SP2-Updates for sle-11-ppc64"},{"installer_updates":false,"name":"SLE11-SDK-SP2-Updates","description":"SLE11-SDK-SP2-Updates for sle-11-i586","id":1271,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true},{"description":"SLE11-SDK-SP2-Updates for sle-11-ia64","name":"SLE11-SDK-SP2-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-ia64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-ia64/","enabled":true,"id":1272},{"installer_updates":false,"name":"SLE11-SDK-SP2-Core","description":"SLE11-SDK-SP2-Core for sle-11-ppc64","id":1273,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-ppc64/","distro_target":"sle-11-ppc64","autorefresh":true},{"description":"SLE11-SDK-SP2-Core for sle-11-i586","installer_updates":false,"name":"SLE11-SDK-SP2-Core","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true,"id":1274,"enabled":true},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true,"id":1275,"enabled":true,"description":"SLE11-SDK-SP2-Core for sle-11-x86_64","installer_updates":false,"name":"SLE11-SDK-SP2-Core"},{"enabled":true,"id":1276,"distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-x86_64/","installer_updates":false,"name":"SLE11-SDK-SP2-Updates","description":"SLE11-SDK-SP2-Updates for sle-11-x86_64"}],"eula_url":"","arch":null,"free":true,"description":null,"shortname":null,"extensions":[],"release_stage":"released","identifier":"sle-sdk-SP2-migration","id":1163,"friendly_version":"11 SP1","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Software Development Kit","former_identifier":"sle-sdk-SP2-migration","release_type":null,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Software Development Kit 11 SP1 (Migration)","recommended":false,"version":"11.1"},{"repositories":[{"description":"SLE11-SP1-SMT-Updates for sle-11-x86_64","installer_updates":false,"name":"SLE11-SP1-SMT-Updates","url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-SMT-Updates/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true,"id":1386,"enabled":true},{"enabled":true,"id":1387,"distro_target":"sle-11-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-SMT-Pool/sle-11-s390x/","installer_updates":false,"name":"SLE11-SP1-SMT-Pool","description":"SLE11-SP1-SMT-Pool for sle-11-s390x"},{"installer_updates":false,"name":"SLE11-SP1-SMT-Pool","description":"SLE11-SP1-SMT-Pool for sle-11-x86_64","enabled":true,"id":1388,"distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-SMT-Pool/sle-11-x86_64/"},{"distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-SMT-Updates/sle-11-i586/","enabled":true,"id":1389,"description":"SLE11-SP1-SMT-Updates for sle-11-i586","installer_updates":false,"name":"SLE11-SP1-SMT-Updates"},{"enabled":true,"id":1390,"distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-SMT-Pool/sle-11-i586/","installer_updates":false,"name":"SLE11-SP1-SMT-Pool","description":"SLE11-SP1-SMT-Pool for sle-11-i586"},{"description":"SLE11-SP1-SMT-Updates for sle-11-s390x","name":"SLE11-SP1-SMT-Updates","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-SMT-Updates/sle-11-s390x/","autorefresh":true,"distro_target":"sle-11-s390x","id":1391,"enabled":true}],"online_predecessor_ids":[],"product_class":"SLESMT","predecessor_ids":[],"cpe":null,"product_type":"extension","description":null,"shortname":null,"free":true,"arch":null,"eula_url":"","friendly_version":"11 SP1","release_stage":"released","identifier":"sle-smt","id":1192,"extensions":[],"version":"11.1","recommended":false,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Subscription Management Tool 11 SP1","former_identifier":"sle-smt","release_type":null,"name":"SUSE Linux Enterprise Subscription Management Tool","offline_predecessor_ids":[]}],"free":false,"shortname":null,"description":null,"arch":null,"eula_url":"","product_class":"AiO","online_predecessor_ids":[],"repositories":[{"distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Pool/sle-11-i586/","enabled":false,"id":680,"description":"SLE11-SP1-Debuginfo-Pool for sle-11-i586","installer_updates":false,"name":"SLE11-SP1-Debuginfo-Pool"},{"name":"SLE11-WebYaST-SP1-Pool","installer_updates":false,"description":"SLE11-WebYaST-SP1-Pool for sle-11-i586","id":681,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-WebYaST-SP1-Pool/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586"},{"description":"SLE11-SP1-Debuginfo-Updates for sle-11-i586","name":"SLE11-SP1-Debuginfo-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Updates/sle-11-i586/","enabled":false,"id":682},{"distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-Updates/sle-11-i586/","enabled":true,"id":684,"description":"SLES11-SP1-Updates for sle-11-i586","installer_updates":false,"name":"SLES11-SP1-Updates"},{"id":685,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-WebYaST-SP1-Updates/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","name":"SLE11-WebYaST-SP1-Updates","installer_updates":false,"description":"SLE11-WebYaST-SP1-Updates for sle-11-i586"},{"id":686,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-Pool/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","name":"SLES11-SP1-Pool","installer_updates":false,"description":"SLES11-SP1-Pool for sle-11-i586"},{"name":"SLES11-SP1-Pool","installer_updates":false,"description":"SLES11-SP1-Pool for sle-11-s390x","enabled":true,"id":687,"autorefresh":true,"distro_target":"sle-11-s390x","url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-Pool/sle-11-s390x/"},{"enabled":false,"id":688,"distro_target":"sle-11-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Updates/sle-11-s390x/","installer_updates":false,"name":"SLE11-SP1-Debuginfo-Updates","description":"SLE11-SP1-Debuginfo-Updates for sle-11-s390x"},{"description":"SLE11-WebYaST-SP1-Updates for sle-11-s390x","installer_updates":false,"name":"SLE11-WebYaST-SP1-Updates","distro_target":"sle-11-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-WebYaST-SP1-Updates/sle-11-s390x/","enabled":true,"id":690},{"name":"SLES11-SP1-Updates","installer_updates":false,"description":"SLES11-SP1-Updates for sle-11-s390x","enabled":true,"id":691,"autorefresh":true,"distro_target":"sle-11-s390x","url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-Updates/sle-11-s390x/"},{"distro_target":"sle-11-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Pool/sle-11-s390x/","enabled":false,"id":692,"description":"SLE11-SP1-Debuginfo-Pool for sle-11-s390x","installer_updates":false,"name":"SLE11-SP1-Debuginfo-Pool"},{"name":"SLE11-WebYaST-SP1-Pool","installer_updates":false,"description":"SLE11-WebYaST-SP1-Pool for sle-11-s390x","enabled":true,"id":693,"autorefresh":true,"distro_target":"sle-11-s390x","url":"https://updates.suse.com/repo/$RCE/SLE11-WebYaST-SP1-Pool/sle-11-s390x/"},{"name":"SLES11-SP1-Updates","installer_updates":false,"description":"SLES11-SP1-Updates for sle-11-x86_64","enabled":true,"id":705,"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-Updates/sle-11-x86_64/"},{"description":"SLE11-SP1-Debuginfo-Pool for sle-11-x86_64","name":"SLE11-SP1-Debuginfo-Pool","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Pool/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64","id":707,"enabled":false},{"description":"SLES11-SP1-Pool for sle-11-x86_64","installer_updates":false,"name":"SLES11-SP1-Pool","url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-Pool/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true,"id":711,"enabled":true},{"id":715,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Updates/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true,"installer_updates":false,"name":"SLE11-SP1-Debuginfo-Updates","description":"SLE11-SP1-Debuginfo-Updates for sle-11-x86_64"},{"enabled":true,"id":796,"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-LTSS-Updates/sle-11-x86_64/","name":"SLES11-SP1-LTSS-Updates","installer_updates":false,"description":"SLES11-SP1-LTSS-Updates for sle-11-x86_64"},{"description":"SLE11-WebYaST-SP1-Updates for sle-11-x86_64","installer_updates":false,"name":"SLE11-WebYaST-SP1-Updates","url":"https://updates.suse.com/repo/$RCE/SLE11-WebYaST-SP1-Updates/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true,"id":797,"enabled":true},{"installer_updates":false,"name":"SLE11-WebYaST-SP1-Pool","description":"SLE11-WebYaST-SP1-Pool for sle-11-x86_64","id":798,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-WebYaST-SP1-Pool/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true},{"url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-Pool/sle-11-ppc64/","autorefresh":true,"distro_target":"sle-11-ppc64","id":919,"enabled":true,"description":"SLES11-SP1-Pool for sle-11-ppc64","name":"SLES11-SP1-Pool","installer_updates":false},{"enabled":true,"id":921,"autorefresh":true,"distro_target":"sle-11-ppc64","url":"https://updates.suse.com/repo/$RCE/SLE11-WebYaST-SP1-Updates/sle-11-ppc64/","name":"SLE11-WebYaST-SP1-Updates","installer_updates":false,"description":"SLE11-WebYaST-SP1-Updates for sle-11-ppc64"},{"description":"SLES11-SP1-Updates for sle-11-ppc64","name":"SLES11-SP1-Updates","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-Updates/sle-11-ppc64/","autorefresh":true,"distro_target":"sle-11-ppc64","id":922,"enabled":true},{"description":"SLE11-WebYaST-SP1-Pool for sle-11-ppc64","installer_updates":false,"name":"SLE11-WebYaST-SP1-Pool","url":"https://updates.suse.com/repo/$RCE/SLE11-WebYaST-SP1-Pool/sle-11-ppc64/","distro_target":"sle-11-ppc64","autorefresh":true,"id":923,"enabled":true},{"installer_updates":false,"name":"SLE11-SP1-Debuginfo-Updates","description":"SLE11-SP1-Debuginfo-Updates for sle-11-ppc64","enabled":false,"id":924,"distro_target":"sle-11-ppc64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Updates/sle-11-ppc64/"},{"installer_updates":false,"name":"SLE11-SP1-Debuginfo-Pool","description":"SLE11-SP1-Debuginfo-Pool for sle-11-ppc64","id":925,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Pool/sle-11-ppc64/","distro_target":"sle-11-ppc64","autorefresh":true},{"id":944,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP1-Updates/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","name":"SLE11-HAE-SP1-Updates","installer_updates":false,"description":"SLE11-HAE-SP1-Updates for sle-11-i586"},{"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP1-Pool/sle-11-i586/","enabled":true,"id":945,"description":"SLE11-HAE-SP1-Pool for sle-11-i586","name":"SLE11-HAE-SP1-Pool","installer_updates":false},{"url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP1-Pool/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64","id":946,"enabled":true,"description":"SLE11-HAE-SP1-Pool for sle-11-x86_64","name":"SLE11-HAE-SP1-Pool","installer_updates":false},{"name":"SLE11-HAE-SP1-Updates","installer_updates":false,"description":"SLE11-HAE-SP1-Updates for sle-11-x86_64","enabled":true,"id":953,"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP1-Updates/sle-11-x86_64/"},{"id":970,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Pool/sle-11-ia64/","autorefresh":true,"distro_target":"sle-11-ia64","name":"SLE11-SP1-Debuginfo-Pool","installer_updates":false,"description":"SLE11-SP1-Debuginfo-Pool for sle-11-ia64"},{"autorefresh":true,"distro_target":"sle-11-ia64","url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Updates/sle-11-ia64/","enabled":false,"id":971,"description":"SLE11-SP1-Debuginfo-Updates for sle-11-ia64","name":"SLE11-SP1-Debuginfo-Updates","installer_updates":false},{"description":"SLES11-SP1-Updates for sle-11-ia64","installer_updates":false,"name":"SLES11-SP1-Updates","url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-Updates/sle-11-ia64/","distro_target":"sle-11-ia64","autorefresh":true,"id":987,"enabled":true},{"name":"SLES11-SP1-Pool","installer_updates":false,"description":"SLES11-SP1-Pool for sle-11-ia64","id":991,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-Pool/sle-11-ia64/","autorefresh":true,"distro_target":"sle-11-ia64"},{"description":"SLE11-WebYaST-SP1-Pool for sle-11-ia64","name":"SLE11-WebYaST-SP1-Pool","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-WebYaST-SP1-Pool/sle-11-ia64/","autorefresh":true,"distro_target":"sle-11-ia64","id":1032,"enabled":true},{"description":"SLE11-WebYaST-SP1-Updates for sle-11-ia64","name":"SLE11-WebYaST-SP1-Updates","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-WebYaST-SP1-Updates/sle-11-ia64/","autorefresh":true,"distro_target":"sle-11-ia64","id":1033,"enabled":true},{"id":1043,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP1-Pool/sle-11-ppc64/","autorefresh":true,"distro_target":"sle-11-ppc64","name":"SLE11-HAE-SP1-Pool","installer_updates":false,"description":"SLE11-HAE-SP1-Pool for sle-11-ppc64"},{"installer_updates":false,"name":"SLE11-HAE-SP1-Updates","description":"SLE11-HAE-SP1-Updates for sle-11-ppc64","enabled":true,"id":1044,"distro_target":"sle-11-ppc64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP1-Updates/sle-11-ppc64/"},{"url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP1-Updates/sle-11-ia64/","autorefresh":true,"distro_target":"sle-11-ia64","id":1065,"enabled":true,"description":"SLE11-HAE-SP1-Updates for sle-11-ia64","name":"SLE11-HAE-SP1-Updates","installer_updates":false},{"id":1066,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP1-Pool/sle-11-ia64/","autorefresh":true,"distro_target":"sle-11-ia64","name":"SLE11-HAE-SP1-Pool","installer_updates":false,"description":"SLE11-HAE-SP1-Pool for sle-11-ia64"},{"url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP1-Pool/sle-11-s390x/","autorefresh":true,"distro_target":"sle-11-s390x","id":1094,"enabled":true,"description":"SLE11-HAE-SP1-Pool for sle-11-s390x","name":"SLE11-HAE-SP1-Pool","installer_updates":false},{"name":"SLE11-HAE-SP1-Updates","installer_updates":false,"description":"SLE11-HAE-SP1-Updates for sle-11-s390x","enabled":true,"id":1095,"autorefresh":true,"distro_target":"sle-11-s390x","url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP1-Updates/sle-11-s390x/"},{"description":"SLE11-SP1-SAP-AIO-Updates for sle-11-x86_64","installer_updates":false,"name":"SLE11-SP1-SAP-AIO-Updates","distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-SAP-AIO-Updates/sle-11-x86_64/","enabled":true,"id":1190},{"distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-SAP-AIO-Pool/sle-11-x86_64/","enabled":true,"id":1191,"description":"SLE11-SP1-SAP-AIO-Pool for sle-11-x86_64","installer_updates":false,"name":"SLE11-SP1-SAP-AIO-Pool"}],"predecessor_ids":[],"product_type":"base","cpe":null},{"product_type":"base","cpe":null,"predecessor_ids":[],"repositories":[{"installer_updates":false,"name":"SLE11-SP1-Debuginfo-Pool","description":"SLE11-SP1-Debuginfo-Pool for sle-11-i586","enabled":false,"id":680,"distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Pool/sle-11-i586/"},{"id":684,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-Updates/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","name":"SLES11-SP1-Updates","installer_updates":false,"description":"SLES11-SP1-Updates for sle-11-i586"},{"id":686,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-Pool/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true,"installer_updates":false,"name":"SLES11-SP1-Pool","description":"SLES11-SP1-Pool for sle-11-i586"},{"id":687,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-Pool/sle-11-s390x/","autorefresh":true,"distro_target":"sle-11-s390x","name":"SLES11-SP1-Pool","installer_updates":false,"description":"SLES11-SP1-Pool for sle-11-s390x"},{"installer_updates":false,"name":"SLES11-SP1-Updates","description":"SLES11-SP1-Updates for sle-11-s390x","id":691,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-Updates/sle-11-s390x/","distro_target":"sle-11-s390x","autorefresh":true},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Pool/sle-11-s390x/","autorefresh":true,"distro_target":"sle-11-s390x","id":692,"enabled":false,"description":"SLE11-SP1-Debuginfo-Pool for sle-11-s390x","name":"SLE11-SP1-Debuginfo-Pool","installer_updates":false},{"description":"SLES11-SP1-Updates for sle-11-x86_64","name":"SLES11-SP1-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-Updates/sle-11-x86_64/","enabled":true,"id":705},{"enabled":true,"id":706,"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE11-WebYaST-SP2-Pool/sle-11-x86_64/","name":"SLE11-WebYaST-SP2-Pool","installer_updates":false,"description":"SLE11-WebYaST-SP2-Pool for sle-11-x86_64"},{"installer_updates":false,"name":"SLE11-SP1-Debuginfo-Pool","description":"SLE11-SP1-Debuginfo-Pool for sle-11-x86_64","id":707,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Pool/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true},{"enabled":true,"id":708,"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE11-WebYaST-SP2-Updates/sle-11-x86_64/","name":"SLE11-WebYaST-SP2-Updates","installer_updates":false,"description":"SLE11-WebYaST-SP2-Updates for sle-11-x86_64"},{"description":"SLES11-SP2-Core for sle-11-x86_64","name":"SLES11-SP2-Core","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLES11-SP2-Core/sle-11-x86_64/","enabled":true,"id":709},{"description":"SLES11-SP1-Pool for sle-11-x86_64","installer_updates":false,"name":"SLES11-SP1-Pool","distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-Pool/sle-11-x86_64/","enabled":true,"id":711},{"description":"SLES11-SP2-Updates for sle-11-x86_64","name":"SLES11-SP2-Updates","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP2-Updates/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64","id":714,"enabled":true},{"id":718,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-WebYaST-SP2-Pool/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","name":"SLE11-WebYaST-SP2-Pool","installer_updates":false,"description":"SLE11-WebYaST-SP2-Pool for sle-11-i586"},{"name":"SLES11-SP2-Updates","installer_updates":false,"description":"SLES11-SP2-Updates for sle-11-i586","id":720,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP2-Updates/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586"},{"description":"SLE11-WebYaST-SP2-Updates for sle-11-i586","name":"SLE11-WebYaST-SP2-Updates","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-WebYaST-SP2-Updates/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","id":721,"enabled":true},{"description":"SLES11-SP2-Core for sle-11-i586","name":"SLES11-SP2-Core","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP2-Core/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","id":722,"enabled":true},{"description":"SLE11-WebYaST-SP2-Updates for sle-11-s390x","name":"SLE11-WebYaST-SP2-Updates","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-WebYaST-SP2-Updates/sle-11-s390x/","autorefresh":true,"distro_target":"sle-11-s390x","id":723,"enabled":true},{"name":"SLES11-SP2-Updates","installer_updates":false,"description":"SLES11-SP2-Updates for sle-11-s390x","enabled":true,"id":724,"autorefresh":true,"distro_target":"sle-11-s390x","url":"https://updates.suse.com/repo/$RCE/SLES11-SP2-Updates/sle-11-s390x/"},{"url":"https://updates.suse.com/repo/$RCE/SLES11-SP2-Core/sle-11-s390x/","distro_target":"sle-11-s390x","autorefresh":true,"id":726,"enabled":true,"description":"SLES11-SP2-Core for sle-11-s390x","installer_updates":false,"name":"SLES11-SP2-Core"},{"name":"SLE11-WebYaST-SP2-Pool","installer_updates":false,"description":"SLE11-WebYaST-SP2-Pool for sle-11-s390x","enabled":true,"id":727,"autorefresh":true,"distro_target":"sle-11-s390x","url":"https://updates.suse.com/repo/$RCE/SLE11-WebYaST-SP2-Pool/sle-11-s390x/"},{"id":919,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-Pool/sle-11-ppc64/","autorefresh":true,"distro_target":"sle-11-ppc64","name":"SLES11-SP1-Pool","installer_updates":false,"description":"SLES11-SP1-Pool for sle-11-ppc64"},{"name":"SLES11-SP1-Updates","installer_updates":false,"description":"SLES11-SP1-Updates for sle-11-ppc64","id":922,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-Updates/sle-11-ppc64/","autorefresh":true,"distro_target":"sle-11-ppc64"},{"enabled":false,"id":925,"distro_target":"sle-11-ppc64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Pool/sle-11-ppc64/","installer_updates":false,"name":"SLE11-SP1-Debuginfo-Pool","description":"SLE11-SP1-Debuginfo-Pool for sle-11-ppc64"},{"autorefresh":true,"distro_target":"sle-11-ppc64","url":"https://updates.suse.com/repo/$RCE/SLES11-SP2-Core/sle-11-ppc64/","enabled":true,"id":927,"description":"SLES11-SP2-Core for sle-11-ppc64","name":"SLES11-SP2-Core","installer_updates":false},{"id":928,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP2-Updates/sle-11-ppc64/","distro_target":"sle-11-ppc64","autorefresh":true,"installer_updates":false,"name":"SLES11-SP2-Updates","description":"SLES11-SP2-Updates for sle-11-ppc64"},{"url":"https://updates.suse.com/repo/$RCE/SLE11-WebYaST-SP2-Pool/sle-11-ppc64/","autorefresh":true,"distro_target":"sle-11-ppc64","id":929,"enabled":true,"description":"SLE11-WebYaST-SP2-Pool for sle-11-ppc64","name":"SLE11-WebYaST-SP2-Pool","installer_updates":false},{"enabled":true,"id":931,"distro_target":"sle-11-ppc64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-WebYaST-SP2-Updates/sle-11-ppc64/","installer_updates":false,"name":"SLE11-WebYaST-SP2-Updates","description":"SLE11-WebYaST-SP2-Updates for sle-11-ppc64"},{"description":"SLE11-HAE-SP2-Pool for sle-11-x86_64","name":"SLE11-HAE-SP2-Pool","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP2-Pool/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64","id":947,"enabled":true},{"description":"SLE11-HAE-SP2-Updates for sle-11-x86_64","name":"SLE11-HAE-SP2-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP2-Updates/sle-11-x86_64/","enabled":true,"id":948},{"url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP2-Pool/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true,"id":949,"enabled":true,"description":"SLE11-HAE-SP2-Pool for sle-11-i586","installer_updates":false,"name":"SLE11-HAE-SP2-Pool"},{"name":"SLE11-HAE-SP2-Updates","installer_updates":false,"description":"SLE11-HAE-SP2-Updates for sle-11-i586","enabled":true,"id":950,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP2-Updates/sle-11-i586/"},{"id":970,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Pool/sle-11-ia64/","autorefresh":true,"distro_target":"sle-11-ia64","name":"SLE11-SP1-Debuginfo-Pool","installer_updates":false,"description":"SLE11-SP1-Debuginfo-Pool for sle-11-ia64"},{"description":"SLES11-SP1-Updates for sle-11-ia64","installer_updates":false,"name":"SLES11-SP1-Updates","url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-Updates/sle-11-ia64/","distro_target":"sle-11-ia64","autorefresh":true,"id":987,"enabled":true},{"name":"SLES11-SP1-Pool","installer_updates":false,"description":"SLES11-SP1-Pool for sle-11-ia64","id":991,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-Pool/sle-11-ia64/","autorefresh":true,"distro_target":"sle-11-ia64"},{"url":"https://updates.suse.com/repo/$RCE/SLES11-SP2-Updates/sle-11-ia64/","distro_target":"sle-11-ia64","autorefresh":true,"id":1011,"enabled":true,"description":"SLES11-SP2-Updates for sle-11-ia64","installer_updates":false,"name":"SLES11-SP2-Updates"},{"url":"https://updates.suse.com/repo/$RCE/SLES11-SP2-Core/sle-11-ia64/","distro_target":"sle-11-ia64","autorefresh":true,"id":1014,"enabled":true,"description":"SLES11-SP2-Core for sle-11-ia64","installer_updates":false,"name":"SLES11-SP2-Core"},{"id":1034,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-WebYaST-SP2-Updates/sle-11-ia64/","distro_target":"sle-11-ia64","autorefresh":true,"installer_updates":false,"name":"SLE11-WebYaST-SP2-Updates","description":"SLE11-WebYaST-SP2-Updates for sle-11-ia64"},{"url":"https://updates.suse.com/repo/$RCE/SLE11-WebYaST-SP2-Pool/sle-11-ia64/","distro_target":"sle-11-ia64","autorefresh":true,"id":1035,"enabled":true,"description":"SLE11-WebYaST-SP2-Pool for sle-11-ia64","installer_updates":false,"name":"SLE11-WebYaST-SP2-Pool"},{"enabled":true,"id":1041,"distro_target":"sle-11-ppc64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP2-Pool/sle-11-ppc64/","installer_updates":false,"name":"SLE11-HAE-SP2-Pool","description":"SLE11-HAE-SP2-Pool for sle-11-ppc64"},{"name":"SLE11-HAE-SP2-Updates","installer_updates":false,"description":"SLE11-HAE-SP2-Updates for sle-11-ppc64","id":1042,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP2-Updates/sle-11-ppc64/","autorefresh":true,"distro_target":"sle-11-ppc64"},{"id":1063,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP2-Updates/sle-11-ia64/","distro_target":"sle-11-ia64","autorefresh":true,"installer_updates":false,"name":"SLE11-HAE-SP2-Updates","description":"SLE11-HAE-SP2-Updates for sle-11-ia64"},{"name":"SLE11-HAE-SP2-Pool","installer_updates":false,"description":"SLE11-HAE-SP2-Pool for sle-11-ia64","enabled":true,"id":1064,"autorefresh":true,"distro_target":"sle-11-ia64","url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP2-Pool/sle-11-ia64/"},{"description":"SLE11-HAE-SP2-Pool for sle-11-s390x","name":"SLE11-HAE-SP2-Pool","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP2-Pool/sle-11-s390x/","autorefresh":true,"distro_target":"sle-11-s390x","id":1098,"enabled":true},{"id":1099,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP2-Updates/sle-11-s390x/","autorefresh":true,"distro_target":"sle-11-s390x","name":"SLE11-HAE-SP2-Updates","installer_updates":false,"description":"SLE11-HAE-SP2-Updates for sle-11-s390x"},{"description":"SLES11-SP2-LTSS-Updates for sle-11-x86_64","installer_updates":false,"name":"SLES11-SP2-LTSS-Updates","distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP2-LTSS-Updates/sle-11-x86_64/","enabled":true,"id":1157},{"description":"SLE11-SP2-SAP-Updates for sle-11-x86_64","name":"SLE11-SP2-SAP-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-SAP-Updates/sle-11-x86_64/","enabled":true,"id":1192}],"online_predecessor_ids":[],"product_class":"AiO","eula_url":"","arch":null,"free":false,"description":null,"shortname":null,"extensions":[{"id":837,"release_stage":"released","identifier":"sle-11-WebYaST","extensions":[],"friendly_version":"1.2","migration_extra":false,"friendly_name":"SUSE WebYaST 1.2","release_type":null,"former_identifier":"sle-11-WebYaST","name":"SUSE WebYaST","offline_predecessor_ids":[],"version":"1.2","recommended":false,"cpe":null,"product_type":"extension","product_class":"WEBYAST","online_predecessor_ids":[],"repositories":[{"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-WebYaST-1.2-Updates/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64","id":839,"enabled":true,"description":"SLE11-SP1-WebYaST-1.2-Updates for sle-11-x86_64","name":"SLE11-SP1-WebYaST-1.2-Updates","installer_updates":false},{"enabled":false,"id":840,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-WebYaST-1.2-Pool/sle-11-i586/","name":"SLE11-SP1-WebYaST-1.2-Pool","installer_updates":false,"description":"SLE11-SP1-WebYaST-1.2-Pool for sle-11-i586"},{"id":841,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-WebYaST-1.2-Pool/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64","name":"SLE11-SP1-WebYaST-1.2-Pool","installer_updates":false,"description":"SLE11-SP1-WebYaST-1.2-Pool for sle-11-x86_64"},{"description":"SLE11-SP1-WebYaST-1.2-Updates for sle-11-i586","name":"SLE11-SP1-WebYaST-1.2-Updates","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-WebYaST-1.2-Updates/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","id":842,"enabled":true}],"predecessor_ids":[],"arch":null,"eula_url":"","description":null,"shortname":null,"free":true},{"product_class":"SLE-SDK","online_predecessor_ids":[],"repositories":[{"installer_updates":false,"name":"SLE11-SDK-SP1-Updates","description":"SLE11-SDK-SP1-Updates for sle-11-ia64","id":1257,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Updates/sle-11-ia64/","distro_target":"sle-11-ia64","autorefresh":true},{"description":"SLE11-SDK-SP1-Pool for sle-11-ia64","installer_updates":false,"name":"SLE11-SDK-SP1-Pool","distro_target":"sle-11-ia64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-ia64/","enabled":true,"id":1258},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-s390x/","distro_target":"sle-11-s390x","autorefresh":true,"id":1259,"enabled":true,"description":"SLE11-SDK-SP1-Pool for sle-11-s390x","installer_updates":false,"name":"SLE11-SDK-SP1-Pool"},{"description":"SLE11-SDK-SP1-Updates for sle-11-ppc64","name":"SLE11-SDK-SP1-Updates","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Updates/sle-11-ppc64/","autorefresh":true,"distro_target":"sle-11-ppc64","id":1260,"enabled":true},{"id":1261,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-ppc64/","distro_target":"sle-11-ppc64","autorefresh":true,"installer_updates":false,"name":"SLE11-SDK-SP1-Pool","description":"SLE11-SDK-SP1-Pool for sle-11-ppc64"},{"installer_updates":false,"name":"SLE11-SDK-SP1-Updates","description":"SLE11-SDK-SP1-Updates for sle-11-i586","enabled":true,"id":1262,"distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Updates/sle-11-i586/"},{"distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-i586/","enabled":true,"id":1263,"description":"SLE11-SDK-SP1-Pool for sle-11-i586","installer_updates":false,"name":"SLE11-SDK-SP1-Pool"},{"description":"SLE11-SDK-SP1-Pool for sle-11-x86_64","name":"SLE11-SDK-SP1-Pool","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-x86_64/","enabled":true,"id":1264},{"description":"SLE11-SDK-SP1-Updates for sle-11-x86_64","installer_updates":false,"name":"SLE11-SDK-SP1-Updates","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Updates/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true,"id":1265,"enabled":true},{"description":"SLE11-SDK-SP1-Updates for sle-11-s390x","installer_updates":false,"name":"SLE11-SDK-SP1-Updates","distro_target":"sle-11-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Updates/sle-11-s390x/","enabled":true,"id":1266},{"description":"SLE11-SDK-SP2-Core for sle-11-ia64","installer_updates":false,"name":"SLE11-SDK-SP2-Core","distro_target":"sle-11-ia64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-ia64/","enabled":true,"id":1267},{"description":"SLE11-SDK-SP2-Core for sle-11-s390x","installer_updates":false,"name":"SLE11-SDK-SP2-Core","distro_target":"sle-11-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-s390x/","enabled":true,"id":1268},{"name":"SLE11-SDK-SP2-Updates","installer_updates":false,"description":"SLE11-SDK-SP2-Updates for sle-11-s390x","id":1269,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-s390x/","autorefresh":true,"distro_target":"sle-11-s390x"},{"id":1270,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-ppc64/","autorefresh":true,"distro_target":"sle-11-ppc64","name":"SLE11-SDK-SP2-Updates","installer_updates":false,"description":"SLE11-SDK-SP2-Updates for sle-11-ppc64"},{"name":"SLE11-SDK-SP2-Updates","installer_updates":false,"description":"SLE11-SDK-SP2-Updates for sle-11-i586","enabled":true,"id":1271,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-i586/"},{"name":"SLE11-SDK-SP2-Updates","installer_updates":false,"description":"SLE11-SDK-SP2-Updates for sle-11-ia64","enabled":true,"id":1272,"autorefresh":true,"distro_target":"sle-11-ia64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-ia64/"},{"id":1273,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-ppc64/","autorefresh":true,"distro_target":"sle-11-ppc64","name":"SLE11-SDK-SP2-Core","installer_updates":false,"description":"SLE11-SDK-SP2-Core for sle-11-ppc64"},{"enabled":true,"id":1274,"distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-i586/","installer_updates":false,"name":"SLE11-SDK-SP2-Core","description":"SLE11-SDK-SP2-Core for sle-11-i586"},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true,"id":1275,"enabled":true,"description":"SLE11-SDK-SP2-Core for sle-11-x86_64","installer_updates":false,"name":"SLE11-SDK-SP2-Core"},{"enabled":true,"id":1276,"distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-x86_64/","installer_updates":false,"name":"SLE11-SDK-SP2-Updates","description":"SLE11-SDK-SP2-Updates for sle-11-x86_64"}],"predecessor_ids":[],"cpe":null,"product_type":"extension","shortname":null,"description":null,"free":true,"arch":null,"eula_url":"","friendly_version":"11 SP2","release_stage":"released","id":1160,"identifier":"sle-sdk","extensions":[],"version":"11.2","recommended":false,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Software Development Kit 11 SP2","release_type":null,"former_identifier":"sle-sdk","name":"SUSE Linux Enterprise Software Development Kit","offline_predecessor_ids":[]},{"free":true,"description":null,"shortname":null,"eula_url":"","arch":null,"predecessor_ids":[],"product_class":"SLE-SDK","online_predecessor_ids":[],"repositories":[{"description":"SLE11-SDK-SP2-Core for sle-11-ia64","installer_updates":false,"name":"SLE11-SDK-SP2-Core","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-ia64/","distro_target":"sle-11-ia64","autorefresh":true,"id":1267,"enabled":true},{"description":"SLE11-SDK-SP2-Core for sle-11-s390x","name":"SLE11-SDK-SP2-Core","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-s390x/","autorefresh":true,"distro_target":"sle-11-s390x","id":1268,"enabled":true},{"description":"SLE11-SDK-SP2-Updates for sle-11-s390x","name":"SLE11-SDK-SP2-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-s390x","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-s390x/","enabled":true,"id":1269},{"id":1270,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-ppc64/","autorefresh":true,"distro_target":"sle-11-ppc64","name":"SLE11-SDK-SP2-Updates","installer_updates":false,"description":"SLE11-SDK-SP2-Updates for sle-11-ppc64"},{"enabled":true,"id":1271,"distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-i586/","installer_updates":false,"name":"SLE11-SDK-SP2-Updates","description":"SLE11-SDK-SP2-Updates for sle-11-i586"},{"installer_updates":false,"name":"SLE11-SDK-SP2-Updates","description":"SLE11-SDK-SP2-Updates for sle-11-ia64","id":1272,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-ia64/","distro_target":"sle-11-ia64","autorefresh":true},{"description":"SLE11-SDK-SP2-Core for sle-11-ppc64","installer_updates":false,"name":"SLE11-SDK-SP2-Core","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-ppc64/","distro_target":"sle-11-ppc64","autorefresh":true,"id":1273,"enabled":true},{"id":1274,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","name":"SLE11-SDK-SP2-Core","installer_updates":false,"description":"SLE11-SDK-SP2-Core for sle-11-i586"},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true,"id":1275,"enabled":true,"description":"SLE11-SDK-SP2-Core for sle-11-x86_64","installer_updates":false,"name":"SLE11-SDK-SP2-Core"},{"description":"SLE11-SDK-SP2-Updates for sle-11-x86_64","installer_updates":false,"name":"SLE11-SDK-SP2-Updates","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true,"id":1276,"enabled":true}],"product_type":"extension","cpe":null,"recommended":false,"version":"11.1","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Software Development Kit","former_identifier":"sle-sdk-SP2-migration","release_type":null,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Software Development Kit 11 SP1 (Migration)","friendly_version":"11 SP1","extensions":[],"id":1163,"release_stage":"released","identifier":"sle-sdk-SP2-migration"},{"version":"11.2","recommended":false,"release_type":null,"former_identifier":"sle-sdk-SP3-migration","friendly_name":"SUSE Linux Enterprise Software Development Kit 11 SP2 (Migration)","migration_extra":false,"offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Software Development Kit","friendly_version":"11 SP2","release_stage":"released","id":1164,"identifier":"sle-sdk-SP3-migration","extensions":[],"free":true,"shortname":null,"description":null,"arch":null,"eula_url":"","online_predecessor_ids":[],"repositories":[{"name":"SLE11-SDK-SP3-Pool","installer_updates":false,"description":"SLE11-SDK-SP3-Pool for sle-11-i586","id":1277,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Pool/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586"},{"description":"SLE11-SDK-SP3-Pool for sle-11-ia64","installer_updates":false,"name":"SLE11-SDK-SP3-Pool","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Pool/sle-11-ia64/","distro_target":"sle-11-ia64","autorefresh":true,"id":1278,"enabled":true},{"autorefresh":true,"distro_target":"sle-11-ppc64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Updates/sle-11-ppc64/","enabled":true,"id":1279,"description":"SLE11-SDK-SP3-Updates for sle-11-ppc64","name":"SLE11-SDK-SP3-Updates","installer_updates":false},{"description":"SLE11-SDK-SP3-Updates for sle-11-ia64","installer_updates":false,"name":"SLE11-SDK-SP3-Updates","distro_target":"sle-11-ia64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Updates/sle-11-ia64/","enabled":true,"id":1280},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Pool/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64","id":1281,"enabled":true,"description":"SLE11-SDK-SP3-Pool for sle-11-x86_64","name":"SLE11-SDK-SP3-Pool","installer_updates":false},{"id":1282,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Updates/sle-11-s390x/","distro_target":"sle-11-s390x","autorefresh":true,"installer_updates":false,"name":"SLE11-SDK-SP3-Updates","description":"SLE11-SDK-SP3-Updates for sle-11-s390x"},{"description":"SLE11-SDK-SP3-Pool for sle-11-ppc64","installer_updates":false,"name":"SLE11-SDK-SP3-Pool","distro_target":"sle-11-ppc64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Pool/sle-11-ppc64/","enabled":true,"id":1283},{"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Updates/sle-11-x86_64/","enabled":true,"id":1284,"description":"SLE11-SDK-SP3-Updates for sle-11-x86_64","name":"SLE11-SDK-SP3-Updates","installer_updates":false},{"id":1285,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Updates/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true,"installer_updates":false,"name":"SLE11-SDK-SP3-Updates","description":"SLE11-SDK-SP3-Updates for sle-11-i586"},{"description":"SLE11-SDK-SP3-Pool for sle-11-s390x","name":"SLE11-SDK-SP3-Pool","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-s390x","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Pool/sle-11-s390x/","enabled":true,"id":1286}],"product_class":"SLE-SDK","predecessor_ids":[],"product_type":"extension","cpe":null},{"version":"11.2","recommended":false,"former_identifier":"sle-smt","release_type":null,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Subscription Management Tool 11 SP2","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Subscription Management Tool","friendly_version":"11 SP2","release_stage":"released","id":1193,"identifier":"sle-smt","extensions":[],"free":true,"shortname":null,"description":null,"arch":null,"eula_url":"","online_predecessor_ids":[],"product_class":"SLESMT","repositories":[{"distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP2-Pool/sle-11-x86_64/","enabled":true,"id":1392,"description":"SLE11-SMT-SP2-Pool for sle-11-x86_64","installer_updates":false,"name":"SLE11-SMT-SP2-Pool"},{"enabled":true,"id":1393,"distro_target":"sle-11-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP2-Updates/sle-11-s390x/","installer_updates":false,"name":"SLE11-SMT-SP2-Updates","description":"SLE11-SMT-SP2-Updates for sle-11-s390x"},{"installer_updates":false,"name":"SLE11-SMT-SP2-Pool","description":"SLE11-SMT-SP2-Pool for sle-11-i586","enabled":true,"id":1394,"distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP2-Pool/sle-11-i586/"},{"id":1395,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP2-Updates/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true,"installer_updates":false,"name":"SLE11-SMT-SP2-Updates","description":"SLE11-SMT-SP2-Updates for sle-11-i586"},{"distro_target":"sle-11-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP2-Pool/sle-11-s390x/","enabled":true,"id":1396,"description":"SLE11-SMT-SP2-Pool for sle-11-s390x","installer_updates":false,"name":"SLE11-SMT-SP2-Pool"},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP2-Updates/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true,"id":1397,"enabled":true,"description":"SLE11-SMT-SP2-Updates for sle-11-x86_64","installer_updates":false,"name":"SLE11-SMT-SP2-Updates"}],"predecessor_ids":[],"product_type":"extension","cpe":null},{"cpe":null,"product_type":"extension","predecessor_ids":[],"online_predecessor_ids":[],"repositories":[{"id":1392,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP2-Pool/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64","name":"SLE11-SMT-SP2-Pool","installer_updates":false,"description":"SLE11-SMT-SP2-Pool for sle-11-x86_64"},{"id":1394,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP2-Pool/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true,"installer_updates":false,"name":"SLE11-SMT-SP2-Pool","description":"SLE11-SMT-SP2-Pool for sle-11-i586"},{"description":"SLE11-SMT-SP2-Pool for sle-11-s390x","name":"SLE11-SMT-SP2-Pool","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP2-Pool/sle-11-s390x/","autorefresh":true,"distro_target":"sle-11-s390x","id":1396,"enabled":true}],"product_class":"SLESMT","eula_url":"","arch":null,"shortname":null,"description":null,"free":true,"extensions":[],"release_stage":"released","id":1194,"identifier":"sle-smt-SP2-migration","friendly_version":"11","name":"SUSE Linux Enterprise Subscription Management Tool","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Subscription Management Tool 11 (Migration)","former_identifier":"sle-smt-SP2-migration","release_type":null,"recommended":false,"version":"11"},{"friendly_version":"11 SP2","release_stage":"released","id":1199,"identifier":"sle-smt-SP3-migration","extensions":[],"version":"11.2","recommended":false,"former_identifier":"sle-smt-SP3-migration","release_type":null,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Subscription Management Tool 11 SP2 (Migration)","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Subscription Management Tool","online_predecessor_ids":[],"repositories":[{"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP3-Pool/sle-11-s390x/","distro_target":"sle-11-s390x","autorefresh":true,"id":1408,"enabled":true,"description":"SLE11-SMT-SP3-Pool for sle-11-s390x","installer_updates":false,"name":"SLE11-SMT-SP3-Pool"},{"enabled":true,"id":1409,"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP3-Pool/sle-11-x86_64/","name":"SLE11-SMT-SP3-Pool","installer_updates":false,"description":"SLE11-SMT-SP3-Pool for sle-11-x86_64"},{"id":1410,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP3-Pool/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","name":"SLE11-SMT-SP3-Pool","installer_updates":false,"description":"SLE11-SMT-SP3-Pool for sle-11-i586"}],"product_class":"SLESMT","predecessor_ids":[],"product_type":"extension","cpe":null,"free":true,"shortname":null,"description":null,"arch":null,"eula_url":""},{"friendly_version":"1.2","release_stage":"released","identifier":"sle-11-WebYaST-1.3-migration","id":1207,"extensions":[],"version":"1.2","recommended":false,"former_identifier":"sle-11-WebYaST-1.3-migration","release_type":null,"friendly_name":"SUSE WebYaST 1.2 (Migration)","migration_extra":false,"offline_predecessor_ids":[],"name":"SUSE WebYaST","online_predecessor_ids":[],"product_class":"WEBYAST","repositories":[{"name":"SLE11-SP2-WebYaST-1.3-Pool","installer_updates":false,"description":"SLE11-SP2-WebYaST-1.3-Pool for sle-11-x86_64","id":1185,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-WebYaST-1.3-Pool/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64"},{"description":"SLE11-SP2-WebYaST-1.3-Pool for sle-11-s390x","name":"SLE11-SP2-WebYaST-1.3-Pool","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-s390x","url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-WebYaST-1.3-Pool/sle-11-s390x/","enabled":true,"id":1411},{"id":1414,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-WebYaST-1.3-Pool/sle-11-ppc64/","distro_target":"sle-11-ppc64","autorefresh":true,"installer_updates":false,"name":"SLE11-SP2-WebYaST-1.3-Pool","description":"SLE11-SP2-WebYaST-1.3-Pool for sle-11-ppc64"},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-WebYaST-1.3-Pool/sle-11-ia64/","distro_target":"sle-11-ia64","autorefresh":true,"id":1416,"enabled":true,"description":"SLE11-SP2-WebYaST-1.3-Pool for sle-11-ia64","installer_updates":false,"name":"SLE11-SP2-WebYaST-1.3-Pool"},{"enabled":true,"id":1417,"distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-WebYaST-1.3-Pool/sle-11-i586/","installer_updates":false,"name":"SLE11-SP2-WebYaST-1.3-Pool","description":"SLE11-SP2-WebYaST-1.3-Pool for sle-11-i586"}],"predecessor_ids":[],"product_type":"extension","cpe":null,"free":true,"description":null,"shortname":null,"arch":null,"eula_url":""}],"identifier":"SUSE_SLES_SAP","release_stage":"released","id":1130,"friendly_version":"11 SP2","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Server for SAP All-in-One","former_identifier":"SUSE_SLES_SAP","release_type":null,"friendly_name":"SUSE Linux Enterprise Server for SAP All-in-One 11 SP2","migration_extra":false,"recommended":false,"version":"11.2"},{"friendly_version":"11 SP3","release_stage":"released","identifier":"SUSE_SLES_SAP","id":1131,"extensions":[{"arch":null,"eula_url":"","free":true,"description":null,"shortname":null,"product_type":"extension","cpe":null,"online_predecessor_ids":[],"repositories":[{"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Updates/sle-11-ia64/","autorefresh":true,"distro_target":"sle-11-ia64","id":1257,"enabled":false,"description":"SLE11-SDK-SP1-Updates for sle-11-ia64","name":"SLE11-SDK-SP1-Updates","installer_updates":false},{"description":"SLE11-SDK-SP1-Pool for sle-11-ia64","installer_updates":false,"name":"SLE11-SDK-SP1-Pool","distro_target":"sle-11-ia64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-ia64/","enabled":false,"id":1258},{"name":"SLE11-SDK-SP1-Pool","installer_updates":false,"description":"SLE11-SDK-SP1-Pool for sle-11-s390x","enabled":false,"id":1259,"autorefresh":true,"distro_target":"sle-11-s390x","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-s390x/"},{"enabled":false,"id":1260,"autorefresh":true,"distro_target":"sle-11-ppc64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Updates/sle-11-ppc64/","name":"SLE11-SDK-SP1-Updates","installer_updates":false,"description":"SLE11-SDK-SP1-Updates for sle-11-ppc64"},{"description":"SLE11-SDK-SP1-Pool for sle-11-ppc64","name":"SLE11-SDK-SP1-Pool","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-ppc64/","autorefresh":true,"distro_target":"sle-11-ppc64","id":1261,"enabled":false},{"name":"SLE11-SDK-SP1-Updates","installer_updates":false,"description":"SLE11-SDK-SP1-Updates for sle-11-i586","enabled":false,"id":1262,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Updates/sle-11-i586/"},{"description":"SLE11-SDK-SP1-Pool for sle-11-i586","installer_updates":false,"name":"SLE11-SDK-SP1-Pool","distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-i586/","enabled":false,"id":1263},{"description":"SLE11-SDK-SP1-Pool for sle-11-x86_64","installer_updates":false,"name":"SLE11-SDK-SP1-Pool","distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-x86_64/","enabled":false,"id":1264},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Updates/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true,"id":1265,"enabled":false,"description":"SLE11-SDK-SP1-Updates for sle-11-x86_64","installer_updates":false,"name":"SLE11-SDK-SP1-Updates"},{"description":"SLE11-SDK-SP1-Updates for sle-11-s390x","name":"SLE11-SDK-SP1-Updates","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Updates/sle-11-s390x/","autorefresh":true,"distro_target":"sle-11-s390x","id":1266,"enabled":false},{"name":"SLE11-SDK-SP2-Core","installer_updates":false,"description":"SLE11-SDK-SP2-Core for sle-11-ia64","enabled":false,"id":1267,"autorefresh":true,"distro_target":"sle-11-ia64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-ia64/"},{"installer_updates":false,"name":"SLE11-SDK-SP2-Core","description":"SLE11-SDK-SP2-Core for sle-11-s390x","id":1268,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-s390x/","distro_target":"sle-11-s390x","autorefresh":true},{"enabled":false,"id":1269,"distro_target":"sle-11-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-s390x/","installer_updates":false,"name":"SLE11-SDK-SP2-Updates","description":"SLE11-SDK-SP2-Updates for sle-11-s390x"},{"description":"SLE11-SDK-SP2-Updates for sle-11-ppc64","installer_updates":false,"name":"SLE11-SDK-SP2-Updates","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-ppc64/","distro_target":"sle-11-ppc64","autorefresh":true,"id":1270,"enabled":false},{"installer_updates":false,"name":"SLE11-SDK-SP2-Updates","description":"SLE11-SDK-SP2-Updates for sle-11-i586","enabled":false,"id":1271,"distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-i586/"},{"id":1272,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-ia64/","autorefresh":true,"distro_target":"sle-11-ia64","name":"SLE11-SDK-SP2-Updates","installer_updates":false,"description":"SLE11-SDK-SP2-Updates for sle-11-ia64"},{"name":"SLE11-SDK-SP2-Core","installer_updates":false,"description":"SLE11-SDK-SP2-Core for sle-11-ppc64","enabled":false,"id":1273,"autorefresh":true,"distro_target":"sle-11-ppc64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-ppc64/"},{"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-i586/","enabled":false,"id":1274,"description":"SLE11-SDK-SP2-Core for sle-11-i586","name":"SLE11-SDK-SP2-Core","installer_updates":false},{"distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-x86_64/","enabled":false,"id":1275,"description":"SLE11-SDK-SP2-Core for sle-11-x86_64","installer_updates":false,"name":"SLE11-SDK-SP2-Core"},{"name":"SLE11-SDK-SP2-Updates","installer_updates":false,"description":"SLE11-SDK-SP2-Updates for sle-11-x86_64","id":1276,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64"},{"distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Pool/sle-11-i586/","enabled":true,"id":1277,"description":"SLE11-SDK-SP3-Pool for sle-11-i586","installer_updates":false,"name":"SLE11-SDK-SP3-Pool"},{"description":"SLE11-SDK-SP3-Pool for sle-11-ia64","installer_updates":false,"name":"SLE11-SDK-SP3-Pool","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Pool/sle-11-ia64/","distro_target":"sle-11-ia64","autorefresh":true,"id":1278,"enabled":true},{"description":"SLE11-SDK-SP3-Updates for sle-11-ppc64","installer_updates":false,"name":"SLE11-SDK-SP3-Updates","distro_target":"sle-11-ppc64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Updates/sle-11-ppc64/","enabled":true,"id":1279},{"installer_updates":false,"name":"SLE11-SDK-SP3-Updates","description":"SLE11-SDK-SP3-Updates for sle-11-ia64","id":1280,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Updates/sle-11-ia64/","distro_target":"sle-11-ia64","autorefresh":true},{"description":"SLE11-SDK-SP3-Pool for sle-11-x86_64","installer_updates":false,"name":"SLE11-SDK-SP3-Pool","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Pool/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true,"id":1281,"enabled":true},{"id":1282,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Updates/sle-11-s390x/","distro_target":"sle-11-s390x","autorefresh":true,"installer_updates":false,"name":"SLE11-SDK-SP3-Updates","description":"SLE11-SDK-SP3-Updates for sle-11-s390x"},{"description":"SLE11-SDK-SP3-Pool for sle-11-ppc64","name":"SLE11-SDK-SP3-Pool","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Pool/sle-11-ppc64/","autorefresh":true,"distro_target":"sle-11-ppc64","id":1283,"enabled":true},{"distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Updates/sle-11-x86_64/","enabled":true,"id":1284,"description":"SLE11-SDK-SP3-Updates for sle-11-x86_64","installer_updates":false,"name":"SLE11-SDK-SP3-Updates"},{"enabled":true,"id":1285,"distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Updates/sle-11-i586/","installer_updates":false,"name":"SLE11-SDK-SP3-Updates","description":"SLE11-SDK-SP3-Updates for sle-11-i586"},{"id":1286,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Pool/sle-11-s390x/","autorefresh":true,"distro_target":"sle-11-s390x","name":"SLE11-SDK-SP3-Pool","installer_updates":false,"description":"SLE11-SDK-SP3-Pool for sle-11-s390x"}],"product_class":"SLE-SDK","predecessor_ids":[],"release_type":null,"former_identifier":"sle-sdk","friendly_name":"SUSE Linux Enterprise Software Development Kit 11 SP3","migration_extra":false,"offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Software Development Kit","version":"11.3","recommended":false,"release_stage":"released","id":1161,"identifier":"sle-sdk","extensions":[],"friendly_version":"11 SP3"},{"free":true,"shortname":null,"description":null,"eula_url":"","arch":null,"predecessor_ids":[],"repositories":[{"enabled":true,"id":1277,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Pool/sle-11-i586/","name":"SLE11-SDK-SP3-Pool","installer_updates":false,"description":"SLE11-SDK-SP3-Pool for sle-11-i586"},{"description":"SLE11-SDK-SP3-Pool for sle-11-ia64","installer_updates":false,"name":"SLE11-SDK-SP3-Pool","distro_target":"sle-11-ia64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Pool/sle-11-ia64/","enabled":true,"id":1278},{"enabled":true,"id":1279,"distro_target":"sle-11-ppc64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Updates/sle-11-ppc64/","installer_updates":false,"name":"SLE11-SDK-SP3-Updates","description":"SLE11-SDK-SP3-Updates for sle-11-ppc64"},{"description":"SLE11-SDK-SP3-Updates for sle-11-ia64","installer_updates":false,"name":"SLE11-SDK-SP3-Updates","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Updates/sle-11-ia64/","distro_target":"sle-11-ia64","autorefresh":true,"id":1280,"enabled":true},{"description":"SLE11-SDK-SP3-Pool for sle-11-x86_64","name":"SLE11-SDK-SP3-Pool","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Pool/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64","id":1281,"enabled":true},{"id":1282,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Updates/sle-11-s390x/","distro_target":"sle-11-s390x","autorefresh":true,"installer_updates":false,"name":"SLE11-SDK-SP3-Updates","description":"SLE11-SDK-SP3-Updates for sle-11-s390x"},{"autorefresh":true,"distro_target":"sle-11-ppc64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Pool/sle-11-ppc64/","enabled":true,"id":1283,"description":"SLE11-SDK-SP3-Pool for sle-11-ppc64","name":"SLE11-SDK-SP3-Pool","installer_updates":false},{"id":1284,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Updates/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64","name":"SLE11-SDK-SP3-Updates","installer_updates":false,"description":"SLE11-SDK-SP3-Updates for sle-11-x86_64"},{"description":"SLE11-SDK-SP3-Updates for sle-11-i586","installer_updates":false,"name":"SLE11-SDK-SP3-Updates","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Updates/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true,"id":1285,"enabled":true},{"name":"SLE11-SDK-SP3-Pool","installer_updates":false,"description":"SLE11-SDK-SP3-Pool for sle-11-s390x","enabled":true,"id":1286,"autorefresh":true,"distro_target":"sle-11-s390x","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Pool/sle-11-s390x/"}],"online_predecessor_ids":[],"product_class":"SLE-SDK","product_type":"extension","cpe":null,"recommended":false,"version":"11.2","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Software Development Kit","release_type":null,"former_identifier":"sle-sdk-SP3-migration","migration_extra":false,"friendly_name":"SUSE Linux Enterprise Software Development Kit 11 SP2 (Migration)","friendly_version":"11 SP2","extensions":[],"release_stage":"released","identifier":"sle-sdk-SP3-migration","id":1164},{"friendly_version":"11 SP3","extensions":[],"id":1198,"release_stage":"released","identifier":"sle-smt","recommended":false,"version":"11.3","name":"SUSE Linux Enterprise Subscription Management Tool","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Subscription Management Tool 11 SP3","former_identifier":"sle-smt","release_type":null,"predecessor_ids":[],"online_predecessor_ids":[],"repositories":[{"id":1405,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP3-Updates/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64","name":"SLE11-SMT-SP3-Updates","installer_updates":false,"description":"SLE11-SMT-SP3-Updates for sle-11-x86_64"},{"id":1406,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP3-Updates/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true,"installer_updates":false,"name":"SLE11-SMT-SP3-Updates","description":"SLE11-SMT-SP3-Updates for sle-11-i586"},{"id":1407,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP3-Updates/sle-11-s390x/","autorefresh":true,"distro_target":"sle-11-s390x","name":"SLE11-SMT-SP3-Updates","installer_updates":false,"description":"SLE11-SMT-SP3-Updates for sle-11-s390x"},{"enabled":true,"id":1408,"distro_target":"sle-11-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP3-Pool/sle-11-s390x/","installer_updates":false,"name":"SLE11-SMT-SP3-Pool","description":"SLE11-SMT-SP3-Pool for sle-11-s390x"},{"name":"SLE11-SMT-SP3-Pool","installer_updates":false,"description":"SLE11-SMT-SP3-Pool for sle-11-x86_64","enabled":true,"id":1409,"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP3-Pool/sle-11-x86_64/"},{"installer_updates":false,"name":"SLE11-SMT-SP3-Pool","description":"SLE11-SMT-SP3-Pool for sle-11-i586","enabled":true,"id":1410,"distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP3-Pool/sle-11-i586/"}],"product_class":"SLESMT","cpe":null,"product_type":"extension","shortname":null,"description":null,"free":true,"eula_url":"","arch":null},{"arch":null,"eula_url":"","free":true,"description":null,"shortname":null,"product_type":"extension","cpe":null,"product_class":"SLESMT","online_predecessor_ids":[],"repositories":[{"installer_updates":false,"name":"SLE11-SMT-SP3-Pool","description":"SLE11-SMT-SP3-Pool for sle-11-s390x","enabled":true,"id":1408,"distro_target":"sle-11-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP3-Pool/sle-11-s390x/"},{"installer_updates":false,"name":"SLE11-SMT-SP3-Pool","description":"SLE11-SMT-SP3-Pool for sle-11-x86_64","id":1409,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP3-Pool/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP3-Pool/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","id":1410,"enabled":true,"description":"SLE11-SMT-SP3-Pool for sle-11-i586","name":"SLE11-SMT-SP3-Pool","installer_updates":false}],"predecessor_ids":[],"former_identifier":"sle-smt-SP3-migration","release_type":null,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Subscription Management Tool 11 SP2 (Migration)","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Subscription Management Tool","version":"11.2","recommended":false,"id":1199,"release_stage":"released","identifier":"sle-smt-SP3-migration","extensions":[],"friendly_version":"11 SP2"},{"friendly_version":"1.3","extensions":[],"id":1206,"release_stage":"released","identifier":"sle-11-WebYaST","recommended":false,"version":"1.3","offline_predecessor_ids":[],"name":"SUSE WebYaST","release_type":null,"former_identifier":"sle-11-WebYaST","migration_extra":false,"friendly_name":"SUSE WebYaST 1.3","predecessor_ids":[],"online_predecessor_ids":[],"repositories":[{"name":"SLE11-SP2-WebYaST-1.3-Pool","installer_updates":false,"description":"SLE11-SP2-WebYaST-1.3-Pool for sle-11-x86_64","enabled":true,"id":1185,"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-WebYaST-1.3-Pool/sle-11-x86_64/"},{"id":1188,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-WebYaST-1.3-Updates/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64","name":"SLE11-SP2-WebYaST-1.3-Updates","installer_updates":false,"description":"SLE11-SP2-WebYaST-1.3-Updates for sle-11-x86_64"},{"distro_target":"sle-11-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-WebYaST-1.3-Pool/sle-11-s390x/","enabled":true,"id":1411,"description":"SLE11-SP2-WebYaST-1.3-Pool for sle-11-s390x","installer_updates":false,"name":"SLE11-SP2-WebYaST-1.3-Pool"},{"description":"SLE11-SP2-WebYaST-1.3-Updates for sle-11-s390x","name":"SLE11-SP2-WebYaST-1.3-Updates","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-WebYaST-1.3-Updates/sle-11-s390x/","autorefresh":true,"distro_target":"sle-11-s390x","id":1412,"enabled":true},{"enabled":true,"id":1413,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-WebYaST-1.3-Updates/sle-11-i586/","name":"SLE11-SP2-WebYaST-1.3-Updates","installer_updates":false,"description":"SLE11-SP2-WebYaST-1.3-Updates for sle-11-i586"},{"description":"SLE11-SP2-WebYaST-1.3-Pool for sle-11-ppc64","installer_updates":false,"name":"SLE11-SP2-WebYaST-1.3-Pool","url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-WebYaST-1.3-Pool/sle-11-ppc64/","distro_target":"sle-11-ppc64","autorefresh":true,"id":1414,"enabled":true},{"id":1415,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-WebYaST-1.3-Updates/sle-11-ia64/","distro_target":"sle-11-ia64","autorefresh":true,"installer_updates":false,"name":"SLE11-SP2-WebYaST-1.3-Updates","description":"SLE11-SP2-WebYaST-1.3-Updates for sle-11-ia64"},{"enabled":true,"id":1416,"autorefresh":true,"distro_target":"sle-11-ia64","url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-WebYaST-1.3-Pool/sle-11-ia64/","name":"SLE11-SP2-WebYaST-1.3-Pool","installer_updates":false,"description":"SLE11-SP2-WebYaST-1.3-Pool for sle-11-ia64"},{"id":1417,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-WebYaST-1.3-Pool/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true,"installer_updates":false,"name":"SLE11-SP2-WebYaST-1.3-Pool","description":"SLE11-SP2-WebYaST-1.3-Pool for sle-11-i586"},{"installer_updates":false,"name":"SLE11-SP2-WebYaST-1.3-Updates","description":"SLE11-SP2-WebYaST-1.3-Updates for sle-11-ppc64","enabled":true,"id":1418,"distro_target":"sle-11-ppc64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-WebYaST-1.3-Updates/sle-11-ppc64/"}],"product_class":"WEBYAST","product_type":"extension","cpe":null,"free":true,"description":null,"shortname":null,"eula_url":"","arch":null},{"former_identifier":"sle-sdk-SP4-migration","release_type":null,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Software Development Kit 11 SP3 (Migration)","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Software Development Kit","version":"11.3","recommended":false,"release_stage":"released","identifier":"sle-sdk-SP4-migration","id":1318,"extensions":[],"friendly_version":"11 SP3","arch":null,"eula_url":"","free":true,"shortname":null,"description":null,"product_type":"extension","cpe":null,"online_predecessor_ids":[],"product_class":"SLE-SDK","repositories":[{"id":1257,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Updates/sle-11-ia64/","distro_target":"sle-11-ia64","autorefresh":true,"installer_updates":false,"name":"SLE11-SDK-SP1-Updates","description":"SLE11-SDK-SP1-Updates for sle-11-ia64"},{"name":"SLE11-SDK-SP1-Pool","installer_updates":false,"description":"SLE11-SDK-SP1-Pool for sle-11-ia64","id":1258,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-ia64/","autorefresh":true,"distro_target":"sle-11-ia64"},{"id":1259,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-s390x/","autorefresh":true,"distro_target":"sle-11-s390x","name":"SLE11-SDK-SP1-Pool","installer_updates":false,"description":"SLE11-SDK-SP1-Pool for sle-11-s390x"},{"description":"SLE11-SDK-SP1-Updates for sle-11-ppc64","installer_updates":false,"name":"SLE11-SDK-SP1-Updates","distro_target":"sle-11-ppc64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Updates/sle-11-ppc64/","enabled":false,"id":1260},{"distro_target":"sle-11-ppc64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-ppc64/","enabled":false,"id":1261,"description":"SLE11-SDK-SP1-Pool for sle-11-ppc64","installer_updates":false,"name":"SLE11-SDK-SP1-Pool"},{"description":"SLE11-SDK-SP1-Updates for sle-11-i586","installer_updates":false,"name":"SLE11-SDK-SP1-Updates","distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Updates/sle-11-i586/","enabled":false,"id":1262},{"id":1263,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true,"installer_updates":false,"name":"SLE11-SDK-SP1-Pool","description":"SLE11-SDK-SP1-Pool for sle-11-i586"},{"description":"SLE11-SDK-SP1-Pool for sle-11-x86_64","installer_updates":false,"name":"SLE11-SDK-SP1-Pool","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true,"id":1264,"enabled":false},{"description":"SLE11-SDK-SP1-Updates for sle-11-x86_64","name":"SLE11-SDK-SP1-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Updates/sle-11-x86_64/","enabled":false,"id":1265},{"name":"SLE11-SDK-SP1-Updates","installer_updates":false,"description":"SLE11-SDK-SP1-Updates for sle-11-s390x","enabled":false,"id":1266,"autorefresh":true,"distro_target":"sle-11-s390x","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Updates/sle-11-s390x/"},{"enabled":false,"id":1267,"distro_target":"sle-11-ia64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-ia64/","installer_updates":false,"name":"SLE11-SDK-SP2-Core","description":"SLE11-SDK-SP2-Core for sle-11-ia64"},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-s390x/","autorefresh":true,"distro_target":"sle-11-s390x","id":1268,"enabled":false,"description":"SLE11-SDK-SP2-Core for sle-11-s390x","name":"SLE11-SDK-SP2-Core","installer_updates":false},{"description":"SLE11-SDK-SP2-Updates for sle-11-s390x","installer_updates":false,"name":"SLE11-SDK-SP2-Updates","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-s390x/","distro_target":"sle-11-s390x","autorefresh":true,"id":1269,"enabled":false},{"distro_target":"sle-11-ppc64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-ppc64/","enabled":false,"id":1270,"description":"SLE11-SDK-SP2-Updates for sle-11-ppc64","installer_updates":false,"name":"SLE11-SDK-SP2-Updates"},{"enabled":false,"id":1271,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-i586/","name":"SLE11-SDK-SP2-Updates","installer_updates":false,"description":"SLE11-SDK-SP2-Updates for sle-11-i586"},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-ia64/","distro_target":"sle-11-ia64","autorefresh":true,"id":1272,"enabled":false,"description":"SLE11-SDK-SP2-Updates for sle-11-ia64","installer_updates":false,"name":"SLE11-SDK-SP2-Updates"},{"description":"SLE11-SDK-SP2-Core for sle-11-ppc64","installer_updates":false,"name":"SLE11-SDK-SP2-Core","distro_target":"sle-11-ppc64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-ppc64/","enabled":false,"id":1273},{"name":"SLE11-SDK-SP2-Core","installer_updates":false,"description":"SLE11-SDK-SP2-Core for sle-11-i586","enabled":false,"id":1274,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-i586/"},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true,"id":1275,"enabled":false,"description":"SLE11-SDK-SP2-Core for sle-11-x86_64","installer_updates":false,"name":"SLE11-SDK-SP2-Core"},{"enabled":false,"id":1276,"distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-x86_64/","installer_updates":false,"name":"SLE11-SDK-SP2-Updates","description":"SLE11-SDK-SP2-Updates for sle-11-x86_64"},{"name":"SLE11-SDK-SP3-Pool","installer_updates":false,"description":"SLE11-SDK-SP3-Pool for sle-11-i586","id":1277,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Pool/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586"},{"id":1278,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Pool/sle-11-ia64/","autorefresh":true,"distro_target":"sle-11-ia64","name":"SLE11-SDK-SP3-Pool","installer_updates":false,"description":"SLE11-SDK-SP3-Pool for sle-11-ia64"},{"name":"SLE11-SDK-SP3-Updates","installer_updates":false,"description":"SLE11-SDK-SP3-Updates for sle-11-ppc64","id":1279,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Updates/sle-11-ppc64/","autorefresh":true,"distro_target":"sle-11-ppc64"},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Updates/sle-11-ia64/","distro_target":"sle-11-ia64","autorefresh":true,"id":1280,"enabled":false,"description":"SLE11-SDK-SP3-Updates for sle-11-ia64","installer_updates":false,"name":"SLE11-SDK-SP3-Updates"},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Pool/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64","id":1281,"enabled":false,"description":"SLE11-SDK-SP3-Pool for sle-11-x86_64","name":"SLE11-SDK-SP3-Pool","installer_updates":false},{"autorefresh":true,"distro_target":"sle-11-s390x","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Updates/sle-11-s390x/","enabled":false,"id":1282,"description":"SLE11-SDK-SP3-Updates for sle-11-s390x","name":"SLE11-SDK-SP3-Updates","installer_updates":false},{"description":"SLE11-SDK-SP3-Pool for sle-11-ppc64","name":"SLE11-SDK-SP3-Pool","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-ppc64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Pool/sle-11-ppc64/","enabled":false,"id":1283},{"installer_updates":false,"name":"SLE11-SDK-SP3-Updates","description":"SLE11-SDK-SP3-Updates for sle-11-x86_64","id":1284,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Updates/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true},{"distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Updates/sle-11-i586/","enabled":false,"id":1285,"description":"SLE11-SDK-SP3-Updates for sle-11-i586","installer_updates":false,"name":"SLE11-SDK-SP3-Updates"},{"id":1286,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Pool/sle-11-s390x/","distro_target":"sle-11-s390x","autorefresh":true,"installer_updates":false,"name":"SLE11-SDK-SP3-Pool","description":"SLE11-SDK-SP3-Pool for sle-11-s390x"},{"description":"SLE11-SDK-SP4-Pool for sle-11-i586","name":"SLE11-SDK-SP4-Pool","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP4-Pool/sle-11-i586/","enabled":true,"id":1817},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP4-Pool/sle-11-ia64/","distro_target":"sle-11-ia64","autorefresh":true,"id":1818,"enabled":true,"description":"SLE11-SDK-SP4-Pool for sle-11-ia64","installer_updates":false,"name":"SLE11-SDK-SP4-Pool"},{"id":1819,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP4-Pool/sle-11-ppc64/","autorefresh":true,"distro_target":"sle-11-ppc64","name":"SLE11-SDK-SP4-Pool","installer_updates":false,"description":"SLE11-SDK-SP4-Pool for sle-11-ppc64"},{"description":"SLE11-SDK-SP4-Pool for sle-11-s390x","name":"SLE11-SDK-SP4-Pool","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-s390x","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP4-Pool/sle-11-s390x/","enabled":true,"id":1820},{"description":"SLE11-SDK-SP4-Pool for sle-11-x86_64","name":"SLE11-SDK-SP4-Pool","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP4-Pool/sle-11-x86_64/","enabled":true,"id":1821},{"name":"SLE11-SDK-SP4-Updates","installer_updates":false,"description":"SLE11-SDK-SP4-Updates for sle-11-i586","enabled":true,"id":1822,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP4-Updates/sle-11-i586/"},{"autorefresh":true,"distro_target":"sle-11-ia64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP4-Updates/sle-11-ia64/","enabled":true,"id":1823,"description":"SLE11-SDK-SP4-Updates for sle-11-ia64","name":"SLE11-SDK-SP4-Updates","installer_updates":false},{"name":"SLE11-SDK-SP4-Updates","installer_updates":false,"description":"SLE11-SDK-SP4-Updates for sle-11-ppc64","enabled":true,"id":1824,"autorefresh":true,"distro_target":"sle-11-ppc64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP4-Updates/sle-11-ppc64/"},{"description":"SLE11-SDK-SP4-Updates for sle-11-s390x","name":"SLE11-SDK-SP4-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-s390x","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP4-Updates/sle-11-s390x/","enabled":true,"id":1825},{"description":"SLE11-SDK-SP4-Updates for sle-11-x86_64","installer_updates":false,"name":"SLE11-SDK-SP4-Updates","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP4-Updates/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true,"id":1826,"enabled":true}],"predecessor_ids":[]}],"version":"11.3","recommended":false,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Server for SAP All-in-One 11 SP3","former_identifier":"SUSE_SLES_SAP","release_type":null,"name":"SUSE Linux Enterprise Server for SAP All-in-One","offline_predecessor_ids":[],"repositories":[{"description":"SLES11-SP1-Updates for sle-11-x86_64","installer_updates":false,"name":"SLES11-SP1-Updates","url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-Updates/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true,"id":705,"enabled":false},{"description":"SLE11-SP1-Debuginfo-Pool for sle-11-x86_64","installer_updates":false,"name":"SLE11-SP1-Debuginfo-Pool","url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Pool/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true,"id":707,"enabled":false},{"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLES11-SP2-Core/sle-11-x86_64/","enabled":false,"id":709,"description":"SLES11-SP2-Core for sle-11-x86_64","name":"SLES11-SP2-Core","installer_updates":false},{"name":"SLES11-Extras","installer_updates":false,"description":"SLES11-Extras for sle-11-x86_64","id":710,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLES11-Extras/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64"},{"enabled":false,"id":711,"distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-Pool/sle-11-x86_64/","installer_updates":false,"name":"SLES11-SP1-Pool","description":"SLES11-SP1-Pool for sle-11-x86_64"},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-Debuginfo-Updates/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64","id":712,"enabled":false,"description":"SLE11-SP2-Debuginfo-Updates for sle-11-x86_64","name":"SLE11-SP2-Debuginfo-Updates","installer_updates":false},{"description":"SLES11-SP2-Extension-Store for sle-11-x86_64","name":"SLES11-SP2-Extension-Store","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLES11-SP2-Extension-Store/sle-11-x86_64/","enabled":false,"id":713},{"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLES11-SP2-Updates/sle-11-x86_64/","enabled":false,"id":714,"description":"SLES11-SP2-Updates for sle-11-x86_64","name":"SLES11-SP2-Updates","installer_updates":false},{"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Updates/sle-11-x86_64/","enabled":false,"id":715,"description":"SLE11-SP1-Debuginfo-Updates for sle-11-x86_64","name":"SLE11-SP1-Debuginfo-Updates","installer_updates":false},{"name":"SLE11-SP2-Debuginfo-Core","installer_updates":false,"description":"SLE11-SP2-Debuginfo-Core for sle-11-x86_64","id":716,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-Debuginfo-Core/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64"},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SP3-Debuginfo-Updates/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64","id":735,"enabled":false,"description":"SLE11-SP3-Debuginfo-Updates for sle-11-x86_64","name":"SLE11-SP3-Debuginfo-Updates","installer_updates":false},{"enabled":false,"id":736,"distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP3-Debuginfo-Pool/sle-11-x86_64/","installer_updates":false,"name":"SLE11-SP3-Debuginfo-Pool","description":"SLE11-SP3-Debuginfo-Pool for sle-11-x86_64"},{"url":"https://updates.suse.com/repo/$RCE/SLES11-SP3-Pool/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64","id":737,"enabled":true,"description":"SLES11-SP3-Pool for sle-11-x86_64","name":"SLES11-SP3-Pool","installer_updates":false},{"distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP3-Updates/sle-11-x86_64/","enabled":true,"id":738,"description":"SLES11-SP3-Updates for sle-11-x86_64","installer_updates":false,"name":"SLES11-SP3-Updates"},{"url":"https://updates.suse.com/repo/$RCE/SLES11-SP3-Extension-Store/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64","id":739,"enabled":false,"description":"SLES11-SP3-Extension-Store for sle-11-x86_64","name":"SLES11-SP3-Extension-Store","installer_updates":false},{"id":956,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP3-Updates/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true,"installer_updates":false,"name":"SLE11-HAE-SP3-Updates","description":"SLE11-HAE-SP3-Updates for sle-11-x86_64"},{"description":"SLE11-SP2-WebYaST-1.3-Pool for sle-11-x86_64","installer_updates":false,"name":"SLE11-SP2-WebYaST-1.3-Pool","distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-WebYaST-1.3-Pool/sle-11-x86_64/","enabled":true,"id":1185},{"installer_updates":false,"name":"SLE11-SP3-SAP-Updates","description":"SLE11-SP3-SAP-Updates for sle-11-x86_64","id":1187,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP3-SAP-Updates/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true},{"enabled":true,"id":1188,"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-WebYaST-1.3-Updates/sle-11-x86_64/","name":"SLE11-SP2-WebYaST-1.3-Updates","installer_updates":false,"description":"SLE11-SP2-WebYaST-1.3-Updates for sle-11-x86_64"},{"installer_updates":false,"name":"SLE11-SP3-SAP-Pool","description":"SLE11-SP3-SAP-Pool for sle-11-x86_64","id":1189,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP3-SAP-Pool/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true},{"installer_updates":false,"name":"SLE11-Security-Module","description":"SLE11-Security-Module for sle-11-x86_64","enabled":false,"id":1447,"distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-Security-Module/sle-11-x86_64/"},{"description":"SLES11-SP3-LTSS-Updates for sle-11-x86_64","installer_updates":false,"name":"SLES11-SP3-LTSS-Updates","distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP3-LTSS-Updates/sle-11-x86_64/","enabled":true,"id":1967},{"enabled":true,"id":3037,"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP3-Pool/sle-11-x86_64/","name":"SLE11-HAE-SP3-Pool","installer_updates":false,"description":"SLE11-HAE-SP3-Pool for sle-11-x86_64"}],"online_predecessor_ids":[],"product_class":"AiO","predecessor_ids":[],"cpe":null,"product_type":"base","description":null,"shortname":null,"free":false,"arch":null,"eula_url":""},{"friendly_version":"6","identifier":"RES-HA","release_stage":"released","id":1132,"extensions":[],"version":"6","recommended":false,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise High Availability Extension with Expanded Support 6 x86_64","release_type":null,"former_identifier":"RES-HA","name":"SUSE Linux Enterprise High Availability Extension with Expanded Support","offline_predecessor_ids":[],"online_predecessor_ids":[],"repositories":[{"description":"RES6-HA for i386","installer_updates":false,"name":"RES6-HA","distro_target":"i386","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/RES6-HA/i386/","enabled":true,"id":1171},{"description":"RES6-HA for src","installer_updates":false,"name":"RES6-HA","distro_target":"src","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/RES6-HA/src/","enabled":true,"id":1172},{"enabled":true,"id":1176,"autorefresh":true,"distro_target":"x86_64","url":"https://updates.suse.com/repo/$RCE/RES6-HA/x86_64/","name":"RES6-HA","installer_updates":false,"description":"RES6-HA for x86_64"}],"product_class":"RES-HA","predecessor_ids":[],"cpe":null,"product_type":"extension","shortname":null,"description":null,"free":false,"arch":"x86_64","eula_url":""},{"free":false,"description":null,"shortname":null,"eula_url":"","arch":null,"predecessor_ids":[],"product_class":"AiO","online_predecessor_ids":[],"repositories":[{"distro_target":"sles-10-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP2-SAP-AIO-Updates/sles-10-x86_64/","enabled":true,"id":1193,"description":"SLE10-SP2-SAP-AIO-Updates for sles-10-x86_64","installer_updates":false,"name":"SLE10-SP2-SAP-AIO-Updates"}],"product_type":"base","cpe":null,"recommended":false,"version":"10","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Server for SAP All-in-One","release_type":null,"former_identifier":"SUSE-Linux-Enterprise-Server-SP2-SAP-AiO","migration_extra":false,"friendly_name":"SUSE Linux Enterprise Server for SAP All-in-One 10","friendly_version":"10","extensions":[{"online_predecessor_ids":[],"repositories":[{"installer_updates":false,"name":"SLE10-SDK-SP1-Online","description":"SLE10-SDK-SP1-Online for sles-10-s390x","id":1294,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sles-10-s390x/","distro_target":"sles-10-s390x","autorefresh":true},{"name":"SLE10-SDK-SP1-Online","installer_updates":false,"description":"SLE10-SDK-SP1-Online for sles-10-x86_64","enabled":true,"id":1295,"autorefresh":true,"distro_target":"sles-10-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sles-10-x86_64/"},{"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sled-10-i586/","distro_target":"sled-10-i586","autorefresh":true,"id":1296,"enabled":true,"description":"SLE10-SDK-SP1-Online for sled-10-i586","installer_updates":false,"name":"SLE10-SDK-SP1-Online"},{"enabled":true,"id":1297,"autorefresh":true,"distro_target":"sles-10-ppc","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sles-10-ppc/","name":"SLE10-SDK-SP1-Online","installer_updates":false,"description":"SLE10-SDK-SP1-Online for sles-10-ppc"},{"name":"SLE10-SDK-SP1-Online","installer_updates":false,"description":"SLE10-SDK-SP1-Online for sles-10-ia64","id":1301,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sles-10-ia64/","autorefresh":true,"distro_target":"sles-10-ia64"},{"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sles-10-i586/","autorefresh":true,"distro_target":"sles-10-i586","id":1303,"enabled":true,"description":"SLE10-SDK-SP1-Online for sles-10-i586","name":"SLE10-SDK-SP1-Online","installer_updates":false},{"enabled":true,"id":1307,"distro_target":"sled-10-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sled-10-x86_64/","installer_updates":false,"name":"SLE10-SDK-SP1-Online","description":"SLE10-SDK-SP1-Online for sled-10-x86_64"}],"product_class":"SLE-SDK","predecessor_ids":[],"product_type":"extension","cpe":null,"free":true,"shortname":null,"description":null,"arch":null,"eula_url":"","friendly_version":"10","identifier":"SUSE-Linux-Enterprise-SDK-SP1-migration","release_stage":"released","id":1175,"extensions":[],"version":"10","recommended":false,"former_identifier":"SUSE-Linux-Enterprise-SDK-SP1-migration","release_type":null,"friendly_name":"SUSE Linux Enterprise Software Development Kit 10 (Migration)","migration_extra":false,"offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Software Development Kit"},{"shortname":null,"description":null,"free":true,"eula_url":"","arch":null,"predecessor_ids":[],"online_predecessor_ids":[],"repositories":[{"installer_updates":false,"name":"SLE10-SDK-SP2-Online","description":"SLE10-SDK-SP2-Online for sled-10-i586","enabled":true,"id":1308,"distro_target":"sled-10-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sled-10-i586/"},{"name":"SLE10-SDK-SP2-Online","installer_updates":false,"description":"SLE10-SDK-SP2-Online for sles-10-ppc","enabled":true,"id":1312,"autorefresh":true,"distro_target":"sles-10-ppc","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sles-10-ppc/"},{"autorefresh":true,"distro_target":"sles-10-i586","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sles-10-i586/","enabled":true,"id":1313,"description":"SLE10-SDK-SP2-Online for sles-10-i586","name":"SLE10-SDK-SP2-Online","installer_updates":false},{"description":"SLE10-SDK-SP2-Online for sled-10-x86_64","installer_updates":false,"name":"SLE10-SDK-SP2-Online","distro_target":"sled-10-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sled-10-x86_64/","enabled":true,"id":1314},{"autorefresh":true,"distro_target":"sles-10-ia64","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sles-10-ia64/","enabled":true,"id":1316,"description":"SLE10-SDK-SP2-Online for sles-10-ia64","name":"SLE10-SDK-SP2-Online","installer_updates":false},{"id":1318,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sles-10-s390x/","autorefresh":true,"distro_target":"sles-10-s390x","name":"SLE10-SDK-SP2-Online","installer_updates":false,"description":"SLE10-SDK-SP2-Online for sles-10-s390x"},{"installer_updates":false,"name":"SLE10-SDK-SP2-Online","description":"SLE10-SDK-SP2-Online for sles-10-x86_64","id":1321,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sles-10-x86_64/","distro_target":"sles-10-x86_64","autorefresh":true}],"product_class":"SLE-SDK","cpe":null,"product_type":"extension","recommended":false,"version":"10","name":"SUSE Linux Enterprise Software Development Kit","offline_predecessor_ids":[],"friendly_name":"SUSE Linux Enterprise Software Development Kit 10 online (Migration)","migration_extra":false,"release_type":"online","former_identifier":"SUSE-Linux-Enterprise-SDK-SP2-migration","friendly_version":"10","extensions":[],"release_stage":"released","identifier":"SUSE-Linux-Enterprise-SDK-SP2-migration","id":1178},{"friendly_name":"SUSE Linux Enterprise Software Development Kit 10 (Migration)","migration_extra":false,"release_type":null,"former_identifier":"SUSE-Linux-Enterprise-SDK-SP3-migration","name":"SUSE Linux Enterprise Software Development Kit","offline_predecessor_ids":[],"version":"10","recommended":false,"release_stage":"released","id":1180,"identifier":"SUSE-Linux-Enterprise-SDK-SP3-migration","extensions":[],"friendly_version":"10","arch":null,"eula_url":"","shortname":null,"description":null,"free":true,"cpe":null,"product_type":"extension","online_predecessor_ids":[],"repositories":[{"name":"SLE10-SDK-SP3-Online","installer_updates":false,"description":"SLE10-SDK-SP3-Online for sled-10-i586","id":1324,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sled-10-i586/","autorefresh":true,"distro_target":"sled-10-i586"},{"distro_target":"sled-10-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sled-10-x86_64/","enabled":true,"id":1326,"description":"SLE10-SDK-SP3-Online for sled-10-x86_64","installer_updates":false,"name":"SLE10-SDK-SP3-Online"},{"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sles-10-ia64/","autorefresh":true,"distro_target":"sles-10-ia64","id":1328,"enabled":true,"description":"SLE10-SDK-SP3-Online for sles-10-ia64","name":"SLE10-SDK-SP3-Online","installer_updates":false},{"name":"SLE10-SDK-SP3-Online","installer_updates":false,"description":"SLE10-SDK-SP3-Online for sles-10-i586","enabled":true,"id":1330,"autorefresh":true,"distro_target":"sles-10-i586","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sles-10-i586/"},{"description":"SLE10-SDK-SP3-Online for sles-10-s390x","installer_updates":false,"name":"SLE10-SDK-SP3-Online","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sles-10-s390x/","distro_target":"sles-10-s390x","autorefresh":true,"id":1335,"enabled":true},{"description":"SLE10-SDK-SP3-Online for sles-10-x86_64","name":"SLE10-SDK-SP3-Online","installer_updates":false,"autorefresh":true,"distro_target":"sles-10-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sles-10-x86_64/","enabled":true,"id":1341},{"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sles-10-ppc/","autorefresh":true,"distro_target":"sles-10-ppc","id":1342,"enabled":true,"description":"SLE10-SDK-SP3-Online for sles-10-ppc","name":"SLE10-SDK-SP3-Online","installer_updates":false}],"product_class":"SLE-SDK","predecessor_ids":[]},{"offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Software Development Kit","former_identifier":"SUSE-Linux-Enterprise-SDK-SP4-migration","release_type":null,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Software Development Kit 10 (Migration)","recommended":false,"version":"10","extensions":[],"identifier":"SUSE-Linux-Enterprise-SDK-SP4-migration","release_stage":"released","id":1182,"friendly_version":"10","eula_url":"","arch":null,"free":true,"description":null,"shortname":null,"product_type":"extension","cpe":null,"predecessor_ids":[],"repositories":[{"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP4-Online/sles-10-x86_64/","distro_target":"sles-10-x86_64","autorefresh":true,"id":1357,"enabled":true,"description":"SLE10-SDK-SP4-Online for sles-10-x86_64","installer_updates":false,"name":"SLE10-SDK-SP4-Online"},{"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP4-Online/sles-10-i586/","autorefresh":true,"distro_target":"sles-10-i586","id":1358,"enabled":true,"description":"SLE10-SDK-SP4-Online for sles-10-i586","name":"SLE10-SDK-SP4-Online","installer_updates":false},{"id":1359,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP4-Online/sles-10-ia64/","autorefresh":true,"distro_target":"sles-10-ia64","name":"SLE10-SDK-SP4-Online","installer_updates":false,"description":"SLE10-SDK-SP4-Online for sles-10-ia64"},{"distro_target":"sled-10-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP4-Online/sled-10-x86_64/","enabled":true,"id":1360,"description":"SLE10-SDK-SP4-Online for sled-10-x86_64","installer_updates":false,"name":"SLE10-SDK-SP4-Online"},{"enabled":true,"id":1361,"autorefresh":true,"distro_target":"sled-10-i586","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP4-Online/sled-10-i586/","name":"SLE10-SDK-SP4-Online","installer_updates":false,"description":"SLE10-SDK-SP4-Online for sled-10-i586"},{"name":"SLE10-SDK-SP4-Online","installer_updates":false,"description":"SLE10-SDK-SP4-Online for sles-10-ppc","id":1362,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP4-Online/sles-10-ppc/","autorefresh":true,"distro_target":"sles-10-ppc"},{"enabled":true,"id":1363,"autorefresh":true,"distro_target":"sles-10-s390x","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP4-Online/sles-10-s390x/","name":"SLE10-SDK-SP4-Online","installer_updates":false,"description":"SLE10-SDK-SP4-Online for sles-10-s390x"}],"online_predecessor_ids":[],"product_class":"SLE-SDK"}],"identifier":"SUSE-Linux-Enterprise-Server-SP2-SAP-AiO","release_stage":"released","id":1133},{"former_identifier":"SUSE-Linux-Enterprise-Server-SP3-SAP-APL","release_type":null,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Server for SAP All-in-One 10","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Server for SAP All-in-One","version":"10","recommended":false,"release_stage":"released","id":1134,"identifier":"SUSE-Linux-Enterprise-Server-SP3-SAP-APL","extensions":[{"recommended":false,"version":"10","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Software Development Kit","former_identifier":"SUSE-Linux-Enterprise-SDK-SP1-migration","release_type":null,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Software Development Kit 10 (Migration)","friendly_version":"10","extensions":[],"identifier":"SUSE-Linux-Enterprise-SDK-SP1-migration","release_stage":"released","id":1175,"free":true,"description":null,"shortname":null,"eula_url":"","arch":null,"predecessor_ids":[],"online_predecessor_ids":[],"repositories":[{"name":"SLE10-SDK-SP1-Online","installer_updates":false,"description":"SLE10-SDK-SP1-Online for sles-10-s390x","id":1294,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sles-10-s390x/","autorefresh":true,"distro_target":"sles-10-s390x"},{"name":"SLE10-SDK-SP1-Online","installer_updates":false,"description":"SLE10-SDK-SP1-Online for sles-10-x86_64","id":1295,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sles-10-x86_64/","autorefresh":true,"distro_target":"sles-10-x86_64"},{"installer_updates":false,"name":"SLE10-SDK-SP1-Online","description":"SLE10-SDK-SP1-Online for sled-10-i586","enabled":true,"id":1296,"distro_target":"sled-10-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sled-10-i586/"},{"description":"SLE10-SDK-SP1-Online for sles-10-ppc","installer_updates":false,"name":"SLE10-SDK-SP1-Online","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sles-10-ppc/","distro_target":"sles-10-ppc","autorefresh":true,"id":1297,"enabled":true},{"enabled":true,"id":1301,"autorefresh":true,"distro_target":"sles-10-ia64","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sles-10-ia64/","name":"SLE10-SDK-SP1-Online","installer_updates":false,"description":"SLE10-SDK-SP1-Online for sles-10-ia64"},{"enabled":true,"id":1303,"distro_target":"sles-10-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sles-10-i586/","installer_updates":false,"name":"SLE10-SDK-SP1-Online","description":"SLE10-SDK-SP1-Online for sles-10-i586"},{"enabled":true,"id":1307,"distro_target":"sled-10-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sled-10-x86_64/","installer_updates":false,"name":"SLE10-SDK-SP1-Online","description":"SLE10-SDK-SP1-Online for sled-10-x86_64"}],"product_class":"SLE-SDK","product_type":"extension","cpe":null},{"name":"SUSE Linux Enterprise Software Development Kit","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Software Development Kit 10 online (Migration)","release_type":"online","former_identifier":"SUSE-Linux-Enterprise-SDK-SP2-migration","recommended":false,"version":"10","extensions":[],"release_stage":"released","id":1178,"identifier":"SUSE-Linux-Enterprise-SDK-SP2-migration","friendly_version":"10","eula_url":"","arch":null,"description":null,"shortname":null,"free":true,"cpe":null,"product_type":"extension","predecessor_ids":[],"online_predecessor_ids":[],"repositories":[{"name":"SLE10-SDK-SP2-Online","installer_updates":false,"description":"SLE10-SDK-SP2-Online for sled-10-i586","enabled":true,"id":1308,"autorefresh":true,"distro_target":"sled-10-i586","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sled-10-i586/"},{"description":"SLE10-SDK-SP2-Online for sles-10-ppc","installer_updates":false,"name":"SLE10-SDK-SP2-Online","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sles-10-ppc/","distro_target":"sles-10-ppc","autorefresh":true,"id":1312,"enabled":true},{"description":"SLE10-SDK-SP2-Online for sles-10-i586","name":"SLE10-SDK-SP2-Online","installer_updates":false,"autorefresh":true,"distro_target":"sles-10-i586","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sles-10-i586/","enabled":true,"id":1313},{"name":"SLE10-SDK-SP2-Online","installer_updates":false,"description":"SLE10-SDK-SP2-Online for sled-10-x86_64","id":1314,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sled-10-x86_64/","autorefresh":true,"distro_target":"sled-10-x86_64"},{"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sles-10-ia64/","autorefresh":true,"distro_target":"sles-10-ia64","id":1316,"enabled":true,"description":"SLE10-SDK-SP2-Online for sles-10-ia64","name":"SLE10-SDK-SP2-Online","installer_updates":false},{"installer_updates":false,"name":"SLE10-SDK-SP2-Online","description":"SLE10-SDK-SP2-Online for sles-10-s390x","enabled":true,"id":1318,"distro_target":"sles-10-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sles-10-s390x/"},{"description":"SLE10-SDK-SP2-Online for sles-10-x86_64","installer_updates":false,"name":"SLE10-SDK-SP2-Online","distro_target":"sles-10-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sles-10-x86_64/","enabled":true,"id":1321}],"product_class":"SLE-SDK"},{"friendly_version":"10","extensions":[],"identifier":"SUSE-Linux-Enterprise-SDK-SP3-migration","release_stage":"released","id":1180,"recommended":false,"version":"10","name":"SUSE Linux Enterprise Software Development Kit","offline_predecessor_ids":[],"friendly_name":"SUSE Linux Enterprise Software Development Kit 10 (Migration)","migration_extra":false,"former_identifier":"SUSE-Linux-Enterprise-SDK-SP3-migration","release_type":null,"predecessor_ids":[],"repositories":[{"description":"SLE10-SDK-SP3-Online for sled-10-i586","name":"SLE10-SDK-SP3-Online","installer_updates":false,"autorefresh":true,"distro_target":"sled-10-i586","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sled-10-i586/","enabled":true,"id":1324},{"enabled":true,"id":1326,"distro_target":"sled-10-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sled-10-x86_64/","installer_updates":false,"name":"SLE10-SDK-SP3-Online","description":"SLE10-SDK-SP3-Online for sled-10-x86_64"},{"id":1328,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sles-10-ia64/","autorefresh":true,"distro_target":"sles-10-ia64","name":"SLE10-SDK-SP3-Online","installer_updates":false,"description":"SLE10-SDK-SP3-Online for sles-10-ia64"},{"enabled":true,"id":1330,"distro_target":"sles-10-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sles-10-i586/","installer_updates":false,"name":"SLE10-SDK-SP3-Online","description":"SLE10-SDK-SP3-Online for sles-10-i586"},{"installer_updates":false,"name":"SLE10-SDK-SP3-Online","description":"SLE10-SDK-SP3-Online for sles-10-s390x","enabled":true,"id":1335,"distro_target":"sles-10-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sles-10-s390x/"},{"description":"SLE10-SDK-SP3-Online for sles-10-x86_64","name":"SLE10-SDK-SP3-Online","installer_updates":false,"autorefresh":true,"distro_target":"sles-10-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sles-10-x86_64/","enabled":true,"id":1341},{"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sles-10-ppc/","autorefresh":true,"distro_target":"sles-10-ppc","id":1342,"enabled":true,"description":"SLE10-SDK-SP3-Online for sles-10-ppc","name":"SLE10-SDK-SP3-Online","installer_updates":false}],"online_predecessor_ids":[],"product_class":"SLE-SDK","cpe":null,"product_type":"extension","description":null,"shortname":null,"free":true,"eula_url":"","arch":null},{"recommended":false,"version":"10","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Software Development Kit","former_identifier":"SUSE-Linux-Enterprise-SDK-SP4-migration","release_type":null,"friendly_name":"SUSE Linux Enterprise Software Development Kit 10 (Migration)","migration_extra":false,"friendly_version":"10","extensions":[],"release_stage":"released","identifier":"SUSE-Linux-Enterprise-SDK-SP4-migration","id":1182,"free":true,"description":null,"shortname":null,"eula_url":"","arch":null,"predecessor_ids":[],"online_predecessor_ids":[],"repositories":[{"installer_updates":false,"name":"SLE10-SDK-SP4-Online","description":"SLE10-SDK-SP4-Online for sles-10-x86_64","id":1357,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP4-Online/sles-10-x86_64/","distro_target":"sles-10-x86_64","autorefresh":true},{"id":1358,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP4-Online/sles-10-i586/","distro_target":"sles-10-i586","autorefresh":true,"installer_updates":false,"name":"SLE10-SDK-SP4-Online","description":"SLE10-SDK-SP4-Online for sles-10-i586"},{"autorefresh":true,"distro_target":"sles-10-ia64","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP4-Online/sles-10-ia64/","enabled":true,"id":1359,"description":"SLE10-SDK-SP4-Online for sles-10-ia64","name":"SLE10-SDK-SP4-Online","installer_updates":false},{"description":"SLE10-SDK-SP4-Online for sled-10-x86_64","name":"SLE10-SDK-SP4-Online","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP4-Online/sled-10-x86_64/","autorefresh":true,"distro_target":"sled-10-x86_64","id":1360,"enabled":true},{"enabled":true,"id":1361,"autorefresh":true,"distro_target":"sled-10-i586","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP4-Online/sled-10-i586/","name":"SLE10-SDK-SP4-Online","installer_updates":false,"description":"SLE10-SDK-SP4-Online for sled-10-i586"},{"enabled":true,"id":1362,"distro_target":"sles-10-ppc","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP4-Online/sles-10-ppc/","installer_updates":false,"name":"SLE10-SDK-SP4-Online","description":"SLE10-SDK-SP4-Online for sles-10-ppc"},{"name":"SLE10-SDK-SP4-Online","installer_updates":false,"description":"SLE10-SDK-SP4-Online for sles-10-s390x","enabled":true,"id":1363,"autorefresh":true,"distro_target":"sles-10-s390x","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP4-Online/sles-10-s390x/"}],"product_class":"SLE-SDK","product_type":"extension","cpe":null}],"friendly_version":"10","arch":null,"eula_url":"","free":false,"description":null,"shortname":null,"product_type":"base","cpe":null,"online_predecessor_ids":[],"repositories":[{"autorefresh":true,"distro_target":"sles-10-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-SAP-AIO-Updates/sles-10-x86_64/","enabled":true,"id":1194,"description":"SLE10-SP3-SAP-AIO-Updates for sles-10-x86_64","name":"SLE10-SP3-SAP-AIO-Updates","installer_updates":false}],"product_class":"AiO","predecessor_ids":[]},{"recommended":false,"version":"10","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Server for SAP All-in-One","former_identifier":"SUSE-Linux-Enterprise-Server-10-SP1-SAP-AiO","release_type":null,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Server for SAP All-in-One 10 SP1","friendly_version":"10 SP1","extensions":[{"online_predecessor_ids":[],"repositories":[{"id":1294,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sles-10-s390x/","distro_target":"sles-10-s390x","autorefresh":true,"installer_updates":false,"name":"SLE10-SDK-SP1-Online","description":"SLE10-SDK-SP1-Online for sles-10-s390x"},{"name":"SLE10-SDK-SP1-Online","installer_updates":false,"description":"SLE10-SDK-SP1-Online for sles-10-x86_64","enabled":true,"id":1295,"autorefresh":true,"distro_target":"sles-10-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sles-10-x86_64/"},{"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sled-10-i586/","distro_target":"sled-10-i586","autorefresh":true,"id":1296,"enabled":true,"description":"SLE10-SDK-SP1-Online for sled-10-i586","installer_updates":false,"name":"SLE10-SDK-SP1-Online"},{"installer_updates":false,"name":"SLE10-SDK-SP1-Online","description":"SLE10-SDK-SP1-Online for sles-10-ppc","id":1297,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sles-10-ppc/","distro_target":"sles-10-ppc","autorefresh":true},{"distro_target":"sles-10-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Updates/sles-10-s390x/","enabled":true,"id":1298,"description":"SLE10-SDK-SP1-Updates for sles-10-s390x","installer_updates":false,"name":"SLE10-SDK-SP1-Updates"},{"name":"SLE10-SDK-SP1-Updates","installer_updates":false,"description":"SLE10-SDK-SP1-Updates for sled-10-x86_64","enabled":true,"id":1299,"autorefresh":true,"distro_target":"sled-10-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Updates/sled-10-x86_64/"},{"enabled":true,"id":1300,"distro_target":"sles-10-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Updates/sles-10-x86_64/","installer_updates":false,"name":"SLE10-SDK-SP1-Updates","description":"SLE10-SDK-SP1-Updates for sles-10-x86_64"},{"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sles-10-ia64/","distro_target":"sles-10-ia64","autorefresh":true,"id":1301,"enabled":true,"description":"SLE10-SDK-SP1-Online for sles-10-ia64","installer_updates":false,"name":"SLE10-SDK-SP1-Online"},{"distro_target":"sled-10-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Updates/sled-10-i586/","enabled":true,"id":1302,"description":"SLE10-SDK-SP1-Updates for sled-10-i586","installer_updates":false,"name":"SLE10-SDK-SP1-Updates"},{"name":"SLE10-SDK-SP1-Online","installer_updates":false,"description":"SLE10-SDK-SP1-Online for sles-10-i586","enabled":true,"id":1303,"autorefresh":true,"distro_target":"sles-10-i586","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sles-10-i586/"},{"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Updates/sles-10-ia64/","autorefresh":true,"distro_target":"sles-10-ia64","id":1304,"enabled":true,"description":"SLE10-SDK-SP1-Updates for sles-10-ia64","name":"SLE10-SDK-SP1-Updates","installer_updates":false},{"id":1305,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Updates/sles-10-ppc/","autorefresh":true,"distro_target":"sles-10-ppc","name":"SLE10-SDK-SP1-Updates","installer_updates":false,"description":"SLE10-SDK-SP1-Updates for sles-10-ppc"},{"id":1306,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Updates/sles-10-i586/","autorefresh":true,"distro_target":"sles-10-i586","name":"SLE10-SDK-SP1-Updates","installer_updates":false,"description":"SLE10-SDK-SP1-Updates for sles-10-i586"},{"installer_updates":false,"name":"SLE10-SDK-SP1-Online","description":"SLE10-SDK-SP1-Online for sled-10-x86_64","enabled":true,"id":1307,"distro_target":"sled-10-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sled-10-x86_64/"}],"product_class":"SLE-SDK","predecessor_ids":[],"cpe":null,"product_type":"extension","description":null,"shortname":null,"free":true,"arch":null,"eula_url":"","friendly_version":"10 SP1","id":1174,"release_stage":"released","identifier":"SUSE-Linux-Enterprise-SDK-SP1","extensions":[],"version":"10","recommended":false,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Software Development Kit 10 SP1","release_type":null,"former_identifier":"SUSE-Linux-Enterprise-SDK-SP1","name":"SUSE Linux Enterprise Software Development Kit","offline_predecessor_ids":[]},{"offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Software Development Kit","release_type":null,"former_identifier":"SUSE-Linux-Enterprise-SDK-SP1-migration","friendly_name":"SUSE Linux Enterprise Software Development Kit 10 (Migration)","migration_extra":false,"recommended":false,"version":"10","extensions":[],"release_stage":"released","identifier":"SUSE-Linux-Enterprise-SDK-SP1-migration","id":1175,"friendly_version":"10","eula_url":"","arch":null,"free":true,"shortname":null,"description":null,"product_type":"extension","cpe":null,"predecessor_ids":[],"online_predecessor_ids":[],"product_class":"SLE-SDK","repositories":[{"enabled":true,"id":1294,"autorefresh":true,"distro_target":"sles-10-s390x","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sles-10-s390x/","name":"SLE10-SDK-SP1-Online","installer_updates":false,"description":"SLE10-SDK-SP1-Online for sles-10-s390x"},{"enabled":true,"id":1295,"autorefresh":true,"distro_target":"sles-10-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sles-10-x86_64/","name":"SLE10-SDK-SP1-Online","installer_updates":false,"description":"SLE10-SDK-SP1-Online for sles-10-x86_64"},{"enabled":true,"id":1296,"distro_target":"sled-10-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sled-10-i586/","installer_updates":false,"name":"SLE10-SDK-SP1-Online","description":"SLE10-SDK-SP1-Online for sled-10-i586"},{"name":"SLE10-SDK-SP1-Online","installer_updates":false,"description":"SLE10-SDK-SP1-Online for sles-10-ppc","id":1297,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sles-10-ppc/","autorefresh":true,"distro_target":"sles-10-ppc"},{"name":"SLE10-SDK-SP1-Online","installer_updates":false,"description":"SLE10-SDK-SP1-Online for sles-10-ia64","enabled":true,"id":1301,"autorefresh":true,"distro_target":"sles-10-ia64","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sles-10-ia64/"},{"distro_target":"sles-10-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sles-10-i586/","enabled":true,"id":1303,"description":"SLE10-SDK-SP1-Online for sles-10-i586","installer_updates":false,"name":"SLE10-SDK-SP1-Online"},{"id":1307,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sled-10-x86_64/","distro_target":"sled-10-x86_64","autorefresh":true,"installer_updates":false,"name":"SLE10-SDK-SP1-Online","description":"SLE10-SDK-SP1-Online for sled-10-x86_64"}]}],"id":1135,"release_stage":"released","identifier":"SUSE-Linux-Enterprise-Server-10-SP1-SAP-AiO","free":false,"description":null,"shortname":null,"eula_url":"","arch":null,"predecessor_ids":[],"online_predecessor_ids":[],"repositories":[{"description":"SLE10-SP1-SAP-AIO-Updates for sles-10-x86_64","name":"SLE10-SP1-SAP-AIO-Updates","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP1-SAP-AIO-Updates/sles-10-x86_64/","autorefresh":true,"distro_target":"sles-10-x86_64","id":1195,"enabled":true}],"product_class":"AiO","product_type":"base","cpe":null},{"extensions":[],"id":1136,"release_stage":"released","identifier":"SUSE-Linux-Enterprise-Server-SP3-SAP-APL-migration","friendly_version":"10","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Server for SAP All-in-One","release_type":null,"former_identifier":"SUSE-Linux-Enterprise-Server-SP3-SAP-APL-migration","friendly_name":"SUSE Linux Enterprise Server for SAP All-in-One 10 (Migration)","migration_extra":false,"recommended":false,"version":"10","product_type":"base","cpe":null,"predecessor_ids":[],"product_class":"AiO","online_predecessor_ids":[],"repositories":[{"id":1196,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-SAP-AIO-Online/sles-10-x86_64/","distro_target":"sles-10-x86_64","autorefresh":true,"installer_updates":false,"name":"SLE10-SP3-SAP-AIO-Online","description":"SLE10-SP3-SAP-AIO-Online for sles-10-x86_64"}],"eula_url":"","arch":null,"free":false,"shortname":null,"description":null},{"product_class":"VMDP","online_predecessor_ids":[],"repositories":[{"description":"SLE10-VMDriverPack-Updates for sles-10-x86_64","installer_updates":false,"name":"SLE10-VMDriverPack-Updates","url":"https://updates.suse.com/repo/$RCE/SLE10-VMDriverPack-Updates/sles-10-x86_64/","distro_target":"sles-10-x86_64","autorefresh":true,"id":1166,"enabled":true},{"url":"https://updates.suse.com/repo/$RCE/SLE10-VMDriverPack-Updates/sles-10-i586/","distro_target":"sles-10-i586","autorefresh":true,"id":1167,"enabled":true,"description":"SLE10-VMDriverPack-Updates for sles-10-i586","installer_updates":false,"name":"SLE10-VMDriverPack-Updates"}],"predecessor_ids":[],"cpe":null,"product_type":"extension","description":null,"shortname":null,"free":false,"arch":null,"eula_url":"","friendly_version":"10","identifier":"SUSE-Linux-Enterprise-Virtual-Machine-Driver-Pack","release_stage":"released","id":1137,"extensions":[],"version":"10","recommended":false,"friendly_name":"Virtual Machine Driver Pack 10","migration_extra":false,"release_type":null,"former_identifier":"SUSE-Linux-Enterprise-Virtual-Machine-Driver-Pack","name":"Virtual Machine Driver Pack","offline_predecessor_ids":[]},{"predecessor_ids":[],"product_class":"RES","online_predecessor_ids":[],"repositories":[{"installer_updates":false,"name":"RES6-HA","description":"RES6-HA for i386","enabled":true,"id":1171,"distro_target":"i386","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/RES6-HA/i386/"},{"autorefresh":true,"distro_target":"src","url":"https://updates.suse.com/repo/$RCE/RES6-HA/src/","enabled":true,"id":1172,"description":"RES6-HA for src","name":"RES6-HA","installer_updates":false},{"name":"RES6","installer_updates":false,"description":"RES6 for x86_64","id":1173,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/RES6/x86_64/","autorefresh":true,"distro_target":"x86_64"},{"description":"RES6 for src","name":"RES6","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/RES6/src/","autorefresh":true,"distro_target":"src","id":1174,"enabled":true},{"description":"RES6 for i386","installer_updates":false,"name":"RES6","url":"https://updates.suse.com/repo/$RCE/RES6/i386/","distro_target":"i386","autorefresh":true,"id":1175,"enabled":true},{"name":"RES6-HA","installer_updates":false,"description":"RES6-HA for x86_64","enabled":true,"id":1176,"autorefresh":true,"distro_target":"x86_64","url":"https://updates.suse.com/repo/$RCE/RES6-HA/x86_64/"}],"cpe":null,"product_type":"base","description":null,"shortname":null,"free":false,"eula_url":"","arch":"x86_64","friendly_version":"6","extensions":[],"release_stage":"released","id":1138,"identifier":"RES","recommended":false,"version":"6","name":"SUSE Linux Enterprise Server with Expanded Support","offline_predecessor_ids":[],"friendly_name":"SUSE Linux Enterprise Server with Expanded Support 6 x86_64","migration_extra":false,"former_identifier":"RES","release_type":null},{"repositories":[{"id":1177,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/RES3/src/","autorefresh":true,"distro_target":"src","name":"RES3","installer_updates":false,"description":"RES3 for src"},{"url":"https://updates.suse.com/repo/$RCE/RES3/x86_64/","autorefresh":true,"distro_target":"x86_64","id":1178,"enabled":true,"description":"RES3 for x86_64","name":"RES3","installer_updates":false},{"url":"https://updates.suse.com/repo/$RCE/RES3/i386/","autorefresh":true,"distro_target":"i386","id":1179,"enabled":true,"description":"RES3 for i386","name":"RES3","installer_updates":false}],"online_predecessor_ids":[],"product_class":"RES","predecessor_ids":[],"cpe":null,"product_type":"base","description":null,"shortname":null,"free":false,"arch":"x86_64","eula_url":"","friendly_version":"3","id":1139,"release_stage":"released","identifier":"RES","extensions":[],"version":"3","recommended":false,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Server with Expanded Support 3 x86_64","former_identifier":"RES","release_type":null,"name":"SUSE Linux Enterprise Server with Expanded Support","offline_predecessor_ids":[]},{"friendly_version":"1.7","extensions":[{"predecessor_ids":[],"online_predecessor_ids":[],"repositories":[],"product_class":"SM_ENT_MGM_S","cpe":null,"product_type":"extension","description":null,"shortname":null,"free":false,"eula_url":"","arch":null,"friendly_version":"1.2","extensions":[],"release_stage":"released","identifier":"SUSE-Manager-Mgmt-Single","id":1076,"recommended":false,"version":"1.2","name":"SUSE Manager Mgmt Single","offline_predecessor_ids":[],"friendly_name":"SUSE Manager Mgmt Single 1.2","migration_extra":false,"release_type":null,"former_identifier":"SUSE-Manager-Mgmt-Single"},{"product_class":"SM_ENT_MGM_V","online_predecessor_ids":[],"repositories":[],"predecessor_ids":[],"cpe":null,"product_type":"extension","shortname":null,"description":null,"free":false,"arch":null,"eula_url":"","friendly_version":"1.2","release_stage":"released","identifier":"SUSE-Manager-Mgmt-Unlimited-Virtual","id":1078,"extensions":[],"version":"1.2","recommended":false,"migration_extra":false,"friendly_name":"SUSE Manager Mgmt Unlimited Virtual 1.2","former_identifier":"SUSE-Manager-Mgmt-Unlimited-Virtual","release_type":null,"name":"SUSE Manager Mgmt Unlimited Virtual","offline_predecessor_ids":[]},{"online_predecessor_ids":[],"repositories":[],"product_class":"SM_ENT_PROV_S","predecessor_ids":[],"cpe":null,"product_type":"extension","description":null,"shortname":null,"free":false,"arch":null,"eula_url":"","friendly_version":"1.2","release_stage":"released","id":1097,"identifier":"SUSE-Manager-Prov-Single","extensions":[],"version":"1.2","recommended":false,"migration_extra":false,"friendly_name":"SUSE Manager Mgmt Single 1.2","release_type":null,"former_identifier":"SUSE-Manager-Prov-Single","name":"SUSE Manager Mgmt Single","offline_predecessor_ids":[]},{"extensions":[],"identifier":"SUSE-Manager-Mgmt-Unlimited-Virtual-Z","release_stage":"released","id":1200,"friendly_version":"1.2","name":"SUSE Manager Mgmt Unlimited Virtual Z","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"SUSE Manager Mgmt Unlimited Virtual Z 1.2","former_identifier":"SUSE-Manager-Mgmt-Unlimited-Virtual-Z","release_type":null,"recommended":false,"version":"1.2","cpe":null,"product_type":"extension","predecessor_ids":[],"repositories":[],"online_predecessor_ids":[],"product_class":"SM_ENT_MGM_Z","eula_url":"","arch":null,"shortname":null,"description":null,"free":false},{"product_type":"extension","cpe":null,"product_class":"SM_ENT_MON_S","online_predecessor_ids":[],"repositories":[],"predecessor_ids":[],"arch":null,"eula_url":"","free":false,"description":null,"shortname":null,"release_stage":"released","identifier":"SUSE-Manager-Mon-Single","id":1201,"extensions":[],"friendly_version":"1.2","release_type":null,"former_identifier":"SUSE-Manager-Mon-Single","friendly_name":"SUSE Manager Monitoring Single 1.2","migration_extra":false,"offline_predecessor_ids":[],"name":"SUSE Manager Monitoring Single","version":"1.2","recommended":false},{"arch":null,"eula_url":"","shortname":null,"description":null,"free":false,"cpe":null,"product_type":"extension","product_class":"SM_ENT_MON_V","online_predecessor_ids":[],"repositories":[],"predecessor_ids":[],"friendly_name":"SUSE Manager Monitoring Unlimited Virtual 1.2","migration_extra":false,"release_type":null,"former_identifier":"SUSE-Manager-Mon-Unlimited-Virtual","name":"SUSE Manager Monitoring Unlimited Virtual","offline_predecessor_ids":[],"version":"1.2","recommended":false,"id":1202,"release_stage":"released","identifier":"SUSE-Manager-Mon-Unlimited-Virtual","extensions":[],"friendly_version":"1.2"},{"recommended":false,"version":"1.2","name":"SUSE Manager Monitoring Unlimited Virtual Z","offline_predecessor_ids":[],"friendly_name":"SUSE Manager Monitoring Unlimited Virtual Z 1.2","migration_extra":false,"former_identifier":"SUSE-Manager-Mon-Unlimited-Virtual-Z","release_type":null,"friendly_version":"1.2","extensions":[],"identifier":"SUSE-Manager-Mon-Unlimited-Virtual-Z","release_stage":"released","id":1203,"description":null,"shortname":null,"free":false,"eula_url":"","arch":null,"predecessor_ids":[],"online_predecessor_ids":[],"repositories":[],"product_class":"SM_ENT_MON_Z","cpe":null,"product_type":"extension"},{"migration_extra":false,"friendly_name":"SUSE Manager Provisioning Unlimited Virtual 1.2","release_type":null,"former_identifier":"SUSE-Manager-Prov-Unlimited-Virtual","name":"SUSE Manager Provisioning Unlimited Virtual","offline_predecessor_ids":[],"version":"1.2","recommended":false,"identifier":"SUSE-Manager-Prov-Unlimited-Virtual","release_stage":"released","id":1204,"extensions":[],"friendly_version":"1.2","arch":null,"eula_url":"","description":null,"shortname":null,"free":false,"cpe":null,"product_type":"extension","repositories":[],"online_predecessor_ids":[],"product_class":"SM_ENT_PROV_V","predecessor_ids":[]},{"predecessor_ids":[],"product_class":"SM_ENT_PROV_Z","online_predecessor_ids":[],"repositories":[],"cpe":null,"product_type":"extension","shortname":null,"description":null,"free":false,"eula_url":"","arch":null,"friendly_version":"1.2","extensions":[],"id":1205,"release_stage":"released","identifier":"SUSE-Manager-Prov-Unlimited-Virtual-Z","recommended":false,"version":"1.2","name":"SUSE Manager Provisioning Unlimited Virtual Z","offline_predecessor_ids":[],"friendly_name":"SUSE Manager Provisioning Unlimited Virtual Z 1.2","migration_extra":false,"former_identifier":"SUSE-Manager-Prov-Unlimited-Virtual-Z","release_type":null}],"id":1140,"release_stage":"released","identifier":"SUSE-Manager-Server-2.1-migration","recommended":false,"version":"1.7","offline_predecessor_ids":[],"name":"SUSE Manager Server x86 and x86-64","former_identifier":"SUSE-Manager-Server-2.1-migration","release_type":null,"migration_extra":false,"friendly_name":"SUSE Manager Server x86 and x86-64 1.7 x86_64 (Migration)","predecessor_ids":[],"online_predecessor_ids":[],"repositories":[{"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE11-SP3-Debuginfo-Updates/sle-11-x86_64/","enabled":false,"id":735,"description":"SLE11-SP3-Debuginfo-Updates for sle-11-x86_64","name":"SLE11-SP3-Debuginfo-Updates","installer_updates":false},{"distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP3-Debuginfo-Pool/sle-11-x86_64/","enabled":false,"id":736,"description":"SLE11-SP3-Debuginfo-Pool for sle-11-x86_64","installer_updates":false,"name":"SLE11-SP3-Debuginfo-Pool"},{"installer_updates":false,"name":"SLES11-SP3-Pool","description":"SLES11-SP3-Pool for sle-11-x86_64","id":737,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP3-Pool/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true},{"name":"SLES11-SP3-Updates","installer_updates":false,"description":"SLES11-SP3-Updates for sle-11-x86_64","enabled":true,"id":738,"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLES11-SP3-Updates/sle-11-x86_64/"},{"enabled":false,"id":977,"distro_target":"x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/RES6-SUSE-Manager-Tools/x86_64/","installer_updates":false,"name":"RES-6-SUSE-Manager-Tools","description":"RES-6-SUSE-Manager-Tools for x86_64"},{"url":"https://updates.suse.com/repo/$RCE/RES5-SUSE-Manager-Tools/x86_64/","distro_target":"x86_64","autorefresh":true,"id":979,"enabled":false,"description":"RES-5-SUSE-Manager-Tools for x86_64","installer_updates":false,"name":"RES-5-SUSE-Manager-Tools"},{"enabled":true,"id":1206,"autorefresh":false,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SUSE-Manager-Server-2.1-Pool/sle-11-x86_64/","name":"SUSE-Manager-Server-2.1-Pool","installer_updates":false,"description":"SUSE-Manager-Server-2.1-Pool for sle-11-x86_64"},{"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SUSE-Manager-Server-2.1-Updates/sle-11-x86_64/","enabled":true,"id":1207,"description":"SUSE-Manager-Server-2.1-Updates for sle-11-x86_64","name":"SUSE-Manager-Server-2.1-Updates","installer_updates":false},{"description":"RES-7-SUSE-Manager-Tools for x86_64","installer_updates":false,"name":"RES-7-SUSE-Manager-Tools","distro_target":"x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/RES7-SUSE-Manager-Tools/x86_64/","enabled":false,"id":1746}],"product_class":"SMS-X86","product_type":"base","cpe":null,"free":false,"description":null,"shortname":null,"eula_url":"","arch":"x86_64"},{"online_predecessor_ids":[],"product_class":"SMP","repositories":[{"description":"SLE11-SP3-Debuginfo-Updates for sle-11-x86_64","installer_updates":false,"name":"SLE11-SP3-Debuginfo-Updates","distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP3-Debuginfo-Updates/sle-11-x86_64/","enabled":false,"id":735},{"installer_updates":false,"name":"SLE11-SP3-Debuginfo-Pool","description":"SLE11-SP3-Debuginfo-Pool for sle-11-x86_64","enabled":false,"id":736,"distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP3-Debuginfo-Pool/sle-11-x86_64/"},{"description":"SLES11-SP3-Pool for sle-11-x86_64","installer_updates":false,"name":"SLES11-SP3-Pool","distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP3-Pool/sle-11-x86_64/","enabled":true,"id":737},{"installer_updates":false,"name":"SLES11-SP3-Updates","description":"SLES11-SP3-Updates for sle-11-x86_64","enabled":true,"id":738,"distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP3-Updates/sle-11-x86_64/"},{"id":1209,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SUSE-Manager-Proxy-2.1-Updates/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true,"installer_updates":false,"name":"SUSE-Manager-Proxy-2.1-Updates","description":"SUSE-Manager-Proxy-2.1-Updates for sle-11-x86_64"},{"id":1210,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SUSE-Manager-Proxy-2.1-Pool/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":false,"installer_updates":false,"name":"SUSE-Manager-Proxy-2.1-Pool","description":"SUSE-Manager-Proxy-2.1-Pool for sle-11-x86_64"}],"predecessor_ids":[],"cpe":null,"product_type":"base","description":null,"shortname":null,"free":false,"arch":"x86_64","eula_url":"","friendly_version":"2.1","identifier":"SUSE-Manager-Proxy","release_stage":"released","id":1141,"extensions":[],"version":"2.1","recommended":false,"friendly_name":"SUSE Manager Proxy 2.1 x86_64","migration_extra":false,"release_type":null,"former_identifier":"SUSE-Manager-Proxy","name":"SUSE Manager Proxy","offline_predecessor_ids":[]},{"friendly_version":"12","extensions":[],"identifier":"sle-sdk","release_stage":"released","id":1145,"recommended":false,"version":"12","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Software Development Kit","former_identifier":"sle-sdk","release_type":null,"friendly_name":"SUSE Linux Enterprise Software Development Kit 12 ppc64le","migration_extra":false,"predecessor_ids":[],"online_predecessor_ids":[],"repositories":[{"description":"SLE-SDK12-Updates for sle-12-ppc64le","installer_updates":false,"name":"SLE-SDK12-Updates","url":"https://updates.suse.com/SUSE/Updates/SLE-SDK/12/ppc64le/update/","distro_target":"sle-12-ppc64le","autorefresh":true,"id":1656,"enabled":true},{"autorefresh":true,"distro_target":"sle-12-ppc64le","url":"https://updates.suse.com/SUSE/Updates/SLE-SDK/12/ppc64le/update_debug/","enabled":false,"id":1657,"description":"SLE-SDK12-Debuginfo-Updates for sle-12-ppc64le","name":"SLE-SDK12-Debuginfo-Updates","installer_updates":false},{"url":"https://updates.suse.com/SUSE/Products/SLE-SDK/12/ppc64le/product/","autorefresh":false,"distro_target":"sle-12-ppc64le","id":1658,"enabled":true,"description":"SLE-SDK12-Pool for sle-12-ppc64le","name":"SLE-SDK12-Pool","installer_updates":false},{"url":"https://updates.suse.com/SUSE/Products/SLE-SDK/12/ppc64le/product_debug/","distro_target":"sle-12-ppc64le","autorefresh":false,"id":1659,"enabled":false,"description":"SLE-SDK12-Debuginfo-Pool for sle-12-ppc64le","installer_updates":false,"name":"SLE-SDK12-Debuginfo-Pool"}],"product_class":"SLE-SDK","product_type":"extension","cpe":"cpe:/o:suse:sle-sdk:12","free":true,"description":"

SUSE Linux Enterprise Software Development Kit 12 is the Software Development Kit for the family of SUSE Linux Enterprise products. It is a free of charge extension for partners and customers working with SUSE Linux Enterprise Server and Desktop and derived products.

Packages on the SDK are delivered without L3 support; maintenance updates will be done for critical security and critical non-security issues, and where needed to remain in sync with packages delivered in the SUSE Linux Enterprise Server and Desktop products.

Packages to rebuild SUSE Linux Enterprise Server are not part of the SUSE Linux Enterprise Software Development Kit.

","shortname":"SDK12","eula_url":"https://updates.suse.com/SUSE/Products/SLE-SDK/12/ppc64le/product.license/","arch":"ppc64le"},{"eula_url":"https://updates.suse.com/SUSE/Products/SLE-SDK/12/s390x/product.license/","arch":"s390x","shortname":"SDK12","description":"

SUSE Linux Enterprise Software Development Kit 12 is the Software Development Kit for the family of SUSE Linux Enterprise products. It is a free of charge extension for partners and customers working with SUSE Linux Enterprise Server and Desktop and derived products.

Packages on the SDK are delivered without L3 support; maintenance updates will be done for critical security and critical non-security issues, and where needed to remain in sync with packages delivered in the SUSE Linux Enterprise Server and Desktop products.

Packages to rebuild SUSE Linux Enterprise Server are not part of the SUSE Linux Enterprise Software Development Kit.

","free":true,"cpe":"cpe:/o:suse:sle-sdk:12","product_type":"extension","predecessor_ids":[],"online_predecessor_ids":[],"repositories":[{"description":"SLE-SDK12-Updates for sle-12-s390x","installer_updates":false,"name":"SLE-SDK12-Updates","distro_target":"sle-12-s390x","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-SDK/12/s390x/update/","enabled":true,"id":1660},{"autorefresh":true,"distro_target":"sle-12-s390x","url":"https://updates.suse.com/SUSE/Updates/SLE-SDK/12/s390x/update_debug/","enabled":false,"id":1661,"description":"SLE-SDK12-Debuginfo-Updates for sle-12-s390x","name":"SLE-SDK12-Debuginfo-Updates","installer_updates":false},{"url":"https://updates.suse.com/SUSE/Products/SLE-SDK/12/s390x/product/","distro_target":"sle-12-s390x","autorefresh":false,"id":1662,"enabled":true,"description":"SLE-SDK12-Pool for sle-12-s390x","installer_updates":false,"name":"SLE-SDK12-Pool"},{"url":"https://updates.suse.com/SUSE/Products/SLE-SDK/12/s390x/product_debug/","distro_target":"sle-12-s390x","autorefresh":false,"id":1663,"enabled":false,"description":"SLE-SDK12-Debuginfo-Pool for sle-12-s390x","installer_updates":false,"name":"SLE-SDK12-Debuginfo-Pool"}],"product_class":"SLE-SDK","name":"SUSE Linux Enterprise Software Development Kit","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Software Development Kit 12 s390x","release_type":null,"former_identifier":"sle-sdk","recommended":false,"version":"12","extensions":[],"id":1146,"release_stage":"released","identifier":"sle-sdk","friendly_version":"12"},{"friendly_version":"12","identifier":"sle-module-legacy","release_stage":"released","id":1148,"extensions":[],"version":"12","recommended":false,"migration_extra":false,"friendly_name":"Legacy Module 12 ppc64le","former_identifier":"sle-module-legacy","release_type":null,"name":"Legacy Module","offline_predecessor_ids":[],"product_class":"MODULE","online_predecessor_ids":[],"repositories":[{"description":"SLE-Module-Legacy12-Updates for sle-12-ppc64le","installer_updates":false,"name":"SLE-Module-Legacy12-Updates","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/12/ppc64le/update/","distro_target":"sle-12-ppc64le","autorefresh":true,"id":1668,"enabled":true},{"description":"SLE-Module-Legacy12-Debuginfo-Updates for sle-12-ppc64le","name":"SLE-Module-Legacy12-Debuginfo-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-12-ppc64le","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/12/ppc64le/update_debug/","enabled":false,"id":1669},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/12/ppc64le/product/","autorefresh":false,"distro_target":"sle-12-ppc64le","id":1670,"enabled":true,"description":"SLE-Module-Legacy12-Pool for sle-12-ppc64le","name":"SLE-Module-Legacy12-Pool","installer_updates":false},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/12/ppc64le/product_debug/","autorefresh":false,"distro_target":"sle-12-ppc64le","id":1671,"enabled":false,"description":"SLE-Module-Legacy12-Debuginfo-Pool for sle-12-ppc64le","name":"SLE-Module-Legacy12-Debuginfo-Pool","installer_updates":false},{"installer_updates":false,"name":"SLE-Module-Legacy12-Source-Pool","description":"SLE-Module-Legacy12-Source-Pool for sle-12-ppc64le","enabled":false,"id":1987,"distro_target":"sle-12-ppc64le","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/12/ppc64le/product_source/"}],"predecessor_ids":[],"cpe":"cpe:/o:suse:sle-module-legacy:12","product_type":"module","description":"

The Legacy Module helps you migrating applications from SUSE Linux Enterprise 10 and 11 and other systems to SUSE Linux Enterprise 12, by providing packages which are discontinued on SUSE Linux Enterprise Server, such as: sendmail, syslog-ng, IBM Java6, and a number of libraries (for example openssl-0.9.8).

Access to the Legacy Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself. Packages in the this module are usually supported for at most three years. Support for Sendmail and IBM Java 6 will end in September 2017 the latest.

","shortname":"Legacy-Module","free":true,"arch":"ppc64le","eula_url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/12/ppc64le/product.license/"},{"eula_url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/12/s390x/product.license/","arch":"s390x","description":"

The Legacy Module helps you migrating applications from SUSE Linux Enterprise 10 and 11 and other systems to SUSE Linux Enterprise 12, by providing packages which are discontinued on SUSE Linux Enterprise Server, such as: sendmail, syslog-ng, IBM Java6, and a number of libraries (for example openssl-0.9.8).

Access to the Legacy Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself. Packages in the this module are usually supported for at most three years. Support for Sendmail and IBM Java 6 will end in September 2017 the latest.

","shortname":"Legacy-Module","free":true,"cpe":"cpe:/o:suse:sle-module-legacy:12","product_type":"module","predecessor_ids":[],"repositories":[{"description":"SLE-Module-Legacy12-Updates for sle-12-s390x","name":"SLE-Module-Legacy12-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-12-s390x","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/12/s390x/update/","enabled":true,"id":1672},{"installer_updates":false,"name":"SLE-Module-Legacy12-Debuginfo-Updates","description":"SLE-Module-Legacy12-Debuginfo-Updates for sle-12-s390x","enabled":false,"id":1673,"distro_target":"sle-12-s390x","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/12/s390x/update_debug/"},{"installer_updates":false,"name":"SLE-Module-Legacy12-Pool","description":"SLE-Module-Legacy12-Pool for sle-12-s390x","enabled":true,"id":1674,"distro_target":"sle-12-s390x","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/12/s390x/product/"},{"description":"SLE-Module-Legacy12-Debuginfo-Pool for sle-12-s390x","installer_updates":false,"name":"SLE-Module-Legacy12-Debuginfo-Pool","distro_target":"sle-12-s390x","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/12/s390x/product_debug/","enabled":false,"id":1675},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/12/s390x/product_source/","distro_target":"sle-12-s390x","autorefresh":false,"id":1988,"enabled":false,"description":"SLE-Module-Legacy12-Source-Pool for sle-12-s390x","installer_updates":false,"name":"SLE-Module-Legacy12-Source-Pool"}],"online_predecessor_ids":[],"product_class":"MODULE","name":"Legacy Module","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"Legacy Module 12 s390x","release_type":null,"former_identifier":"sle-module-legacy","recommended":false,"version":"12","extensions":[],"release_stage":"released","id":1149,"identifier":"sle-module-legacy","friendly_version":"12"},{"description":"

The Legacy Module helps you migrating applications from SUSE Linux Enterprise 10 and 11 and other systems to SUSE Linux Enterprise 12, by providing packages which are discontinued on SUSE Linux Enterprise Server, such as: sendmail, syslog-ng, IBM Java6, and a number of libraries (for example openssl-0.9.8).

Access to the Legacy Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself. Packages in the this module are usually supported for at most three years. Support for Sendmail and IBM Java 6 will end in September 2017 the latest.

","shortname":"Legacy-Module","free":true,"eula_url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/12/x86_64/product.license/","arch":"x86_64","predecessor_ids":[],"product_class":"MODULE","online_predecessor_ids":[],"repositories":[{"enabled":true,"id":1676,"autorefresh":true,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/12/x86_64/update/","name":"SLE-Module-Legacy12-Updates","installer_updates":false,"description":"SLE-Module-Legacy12-Updates for sle-12-x86_64"},{"id":1677,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/12/x86_64/update_debug/","distro_target":"sle-12-x86_64","autorefresh":true,"installer_updates":false,"name":"SLE-Module-Legacy12-Debuginfo-Updates","description":"SLE-Module-Legacy12-Debuginfo-Updates for sle-12-x86_64"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/12/x86_64/product/","autorefresh":false,"distro_target":"sle-12-x86_64","id":1678,"enabled":true,"description":"SLE-Module-Legacy12-Pool for sle-12-x86_64","name":"SLE-Module-Legacy12-Pool","installer_updates":false},{"name":"SLE-Module-Legacy12-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-Legacy12-Debuginfo-Pool for sle-12-x86_64","enabled":false,"id":1679,"autorefresh":false,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/12/x86_64/product_debug/"},{"description":"SLE-Module-Legacy12-Source-Pool for sle-12-x86_64","installer_updates":false,"name":"SLE-Module-Legacy12-Source-Pool","distro_target":"sle-12-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/12/x86_64/product_source/","enabled":false,"id":1989}],"cpe":"cpe:/o:suse:sle-module-legacy:12","product_type":"module","recommended":false,"version":"12","name":"Legacy Module","offline_predecessor_ids":[],"friendly_name":"Legacy Module 12 x86_64","migration_extra":false,"release_type":null,"former_identifier":"sle-module-legacy","friendly_version":"12","extensions":[],"identifier":"sle-module-legacy","release_stage":"released","id":1150},{"cpe":"cpe:/o:suse:sle-module-web-scripting:12","product_type":"module","predecessor_ids":[],"product_class":"MODULE","online_predecessor_ids":[],"repositories":[{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/12/ppc64le/update/","distro_target":"sle-12-ppc64le","autorefresh":true,"id":1680,"enabled":true,"description":"SLE-Module-Web-Scripting12-Updates for sle-12-ppc64le","installer_updates":false,"name":"SLE-Module-Web-Scripting12-Updates"},{"name":"SLE-Module-Web-Scripting12-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-Web-Scripting12-Debuginfo-Updates for sle-12-ppc64le","id":1681,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/12/ppc64le/update_debug/","autorefresh":true,"distro_target":"sle-12-ppc64le"},{"description":"SLE-Module-Web-Scripting12-Pool for sle-12-ppc64le","installer_updates":false,"name":"SLE-Module-Web-Scripting12-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/12/ppc64le/product/","distro_target":"sle-12-ppc64le","autorefresh":false,"id":1682,"enabled":true},{"description":"SLE-Module-Web-Scripting12-Debuginfo-Pool for sle-12-ppc64le","installer_updates":false,"name":"SLE-Module-Web-Scripting12-Debuginfo-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/12/ppc64le/product_debug/","distro_target":"sle-12-ppc64le","autorefresh":false,"id":1683,"enabled":false},{"distro_target":"sle-12-ppc64le","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/12/ppc64le/product_source/","enabled":false,"id":1990,"description":"SLE-Module-Web-Scripting12-Source-Pool for sle-12-ppc64le","installer_updates":false,"name":"SLE-Module-Web-Scripting12-Source-Pool"}],"eula_url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/12/ppc64le/product.license/","arch":"ppc64le","shortname":"Web-and-Scripting-Module","description":"

The SUSE Linux Enterprise Web and Scripting Module delivers a comprehensive suite of scripting languages, frameworks, and related tools helping developers and systems administrators accelerate the creation of stable, modern web applications, using dynamic languages, such as PHP, Ruby on Rails, and Python.

Access to the Web and Scripting Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself: Package versions in the this module are usually supported for at most three years. We are planning to release more recent versions on a schedule of approximately 18 month; the exact dates may differ per package.

","free":true,"extensions":[],"release_stage":"released","identifier":"sle-module-web-scripting","id":1151,"friendly_version":"12","name":"Web and Scripting Module","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"Web and Scripting Module 12 ppc64le","former_identifier":"sle-module-web-scripting","release_type":null,"recommended":false,"version":"12"},{"release_stage":"released","identifier":"sle-module-web-scripting","id":1152,"extensions":[],"friendly_version":"12","release_type":null,"former_identifier":"sle-module-web-scripting","migration_extra":false,"friendly_name":"Web and Scripting Module 12 s390x","offline_predecessor_ids":[],"name":"Web and Scripting Module","version":"12","recommended":false,"product_type":"module","cpe":"cpe:/o:suse:sle-module-web-scripting:12","online_predecessor_ids":[],"product_class":"MODULE","repositories":[{"installer_updates":false,"name":"SLE-Module-Web-Scripting12-Updates","description":"SLE-Module-Web-Scripting12-Updates for sle-12-s390x","id":1684,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/12/s390x/update/","distro_target":"sle-12-s390x","autorefresh":true},{"autorefresh":true,"distro_target":"sle-12-s390x","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/12/s390x/update_debug/","enabled":false,"id":1685,"description":"SLE-Module-Web-Scripting12-Debuginfo-Updates for sle-12-s390x","name":"SLE-Module-Web-Scripting12-Debuginfo-Updates","installer_updates":false},{"enabled":true,"id":1686,"autorefresh":false,"distro_target":"sle-12-s390x","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/12/s390x/product/","name":"SLE-Module-Web-Scripting12-Pool","installer_updates":false,"description":"SLE-Module-Web-Scripting12-Pool for sle-12-s390x"},{"description":"SLE-Module-Web-Scripting12-Debuginfo-Pool for sle-12-s390x","installer_updates":false,"name":"SLE-Module-Web-Scripting12-Debuginfo-Pool","distro_target":"sle-12-s390x","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/12/s390x/product_debug/","enabled":false,"id":1687},{"description":"SLE-Module-Web-Scripting12-Source-Pool for sle-12-s390x","name":"SLE-Module-Web-Scripting12-Source-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-12-s390x","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/12/s390x/product_source/","enabled":false,"id":1991}],"predecessor_ids":[],"arch":"s390x","eula_url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/12/s390x/product.license/","free":true,"description":"

The SUSE Linux Enterprise Web and Scripting Module delivers a comprehensive suite of scripting languages, frameworks, and related tools helping developers and systems administrators accelerate the creation of stable, modern web applications, using dynamic languages, such as PHP, Ruby on Rails, and Python.

Access to the Web and Scripting Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself: Package versions in the this module are usually supported for at most three years. We are planning to release more recent versions on a schedule of approximately 18 month; the exact dates may differ per package.

","shortname":"Web-and-Scripting-Module"},{"recommended":false,"version":"12","name":"Web and Scripting Module","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"Web and Scripting Module 12 x86_64","release_type":null,"former_identifier":"sle-module-web-scripting","friendly_version":"12","extensions":[],"release_stage":"released","id":1153,"identifier":"sle-module-web-scripting","description":"

The SUSE Linux Enterprise Web and Scripting Module delivers a comprehensive suite of scripting languages, frameworks, and related tools helping developers and systems administrators accelerate the creation of stable, modern web applications, using dynamic languages, such as PHP, Ruby on Rails, and Python.

Access to the Web and Scripting Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself: Package versions in the this module are usually supported for at most three years. We are planning to release more recent versions on a schedule of approximately 18 month; the exact dates may differ per package.

","shortname":"Web-and-Scripting-Module","free":true,"eula_url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/12/x86_64/product.license/","arch":"x86_64","predecessor_ids":[],"repositories":[{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/12/x86_64/update/","autorefresh":true,"distro_target":"sle-12-x86_64","id":1688,"enabled":true,"description":"SLE-Module-Web-Scripting12-Updates for sle-12-x86_64","name":"SLE-Module-Web-Scripting12-Updates","installer_updates":false},{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/12/x86_64/update_debug/","distro_target":"sle-12-x86_64","autorefresh":true,"id":1689,"enabled":false,"description":"SLE-Module-Web-Scripting12-Debuginfo-Updates for sle-12-x86_64","installer_updates":false,"name":"SLE-Module-Web-Scripting12-Debuginfo-Updates"},{"description":"SLE-Module-Web-Scripting12-Pool for sle-12-x86_64","name":"SLE-Module-Web-Scripting12-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/12/x86_64/product/","enabled":true,"id":1690},{"enabled":false,"id":1691,"autorefresh":false,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/12/x86_64/product_debug/","name":"SLE-Module-Web-Scripting12-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-Web-Scripting12-Debuginfo-Pool for sle-12-x86_64"},{"description":"SLE-Module-Web-Scripting12-Source-Pool for sle-12-x86_64","installer_updates":false,"name":"SLE-Module-Web-Scripting12-Source-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/12/x86_64/product_source/","distro_target":"sle-12-x86_64","autorefresh":false,"id":1992,"enabled":false}],"online_predecessor_ids":[],"product_class":"MODULE","cpe":"cpe:/o:suse:sle-module-web-scripting:12","product_type":"module"},{"former_identifier":"sle-haegeo","release_type":null,"friendly_name":"SUSE Linux Enterprise High Availability GEO Extension 12 s390x","migration_extra":false,"offline_predecessor_ids":[1109,1110,1287],"name":"SUSE Linux Enterprise High Availability GEO Extension","version":"12","recommended":false,"identifier":"sle-ha-geo","release_stage":"released","id":1156,"extensions":[],"friendly_version":"12","arch":"s390x","eula_url":"https://updates.suse.com/SUSE/Products/SLE-HA-GEO/12/s390x/product.license/","free":false,"shortname":"SLEHA-12-GEO","description":"SUSE Linux Enterprise High Availability Geographical Cluster Extension","product_type":"extension","cpe":"cpe:/o:suse:sle-ha-geo:12","repositories":[{"name":"SLE-HA-GEO12-Updates","installer_updates":false,"description":"SLE-HA-GEO12-Updates for sle-12-s390x","id":1716,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-HA-GEO/12/s390x/update/","autorefresh":true,"distro_target":"sle-12-s390x"},{"id":1717,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-HA-GEO/12/s390x/update_debug/","distro_target":"sle-12-s390x","autorefresh":true,"installer_updates":false,"name":"SLE-HA-GEO12-Debuginfo-Updates","description":"SLE-HA-GEO12-Debuginfo-Updates for sle-12-s390x"},{"enabled":true,"id":1718,"autorefresh":false,"distro_target":"sle-12-s390x","url":"https://updates.suse.com/SUSE/Products/SLE-HA-GEO/12/s390x/product/","name":"SLE-HA-GEO12-Pool","installer_updates":false,"description":"SLE-HA-GEO12-Pool for sle-12-s390x"},{"description":"SLE-HA-GEO12-Debuginfo-Pool for sle-12-s390x","name":"SLE-HA-GEO12-Debuginfo-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-HA-GEO/12/s390x/product_debug/","autorefresh":false,"distro_target":"sle-12-s390x","id":1719,"enabled":false}],"online_predecessor_ids":[],"product_class":"SLE-HAE-GEO","predecessor_ids":[]},{"release_stage":"released","id":1157,"identifier":"sle-ha-geo","extensions":[],"friendly_version":"12","friendly_name":"SUSE Linux Enterprise High Availability GEO Extension 12 x86_64","migration_extra":false,"former_identifier":"sle-haegeo","release_type":null,"name":"SUSE Linux Enterprise High Availability GEO Extension","offline_predecessor_ids":[1101,1107,1286],"version":"12","recommended":false,"cpe":"cpe:/o:suse:sle-ha-geo:12","product_type":"extension","repositories":[{"url":"https://updates.suse.com/SUSE/Updates/SLE-HA-GEO/12/x86_64/update/","autorefresh":true,"distro_target":"sle-12-x86_64","id":1720,"enabled":true,"description":"SLE-HA-GEO12-Updates for sle-12-x86_64","name":"SLE-HA-GEO12-Updates","installer_updates":false},{"enabled":false,"id":1721,"autorefresh":true,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-HA-GEO/12/x86_64/update_debug/","name":"SLE-HA-GEO12-Debuginfo-Updates","installer_updates":false,"description":"SLE-HA-GEO12-Debuginfo-Updates for sle-12-x86_64"},{"distro_target":"sle-12-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-HA-GEO/12/x86_64/product/","enabled":true,"id":1722,"description":"SLE-HA-GEO12-Pool for sle-12-x86_64","installer_updates":false,"name":"SLE-HA-GEO12-Pool"},{"enabled":false,"id":1723,"distro_target":"sle-12-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-HA-GEO/12/x86_64/product_debug/","installer_updates":false,"name":"SLE-HA-GEO12-Debuginfo-Pool","description":"SLE-HA-GEO12-Debuginfo-Pool for sle-12-x86_64"}],"online_predecessor_ids":[],"product_class":"SLE-HAE-GEO","predecessor_ids":[],"arch":"x86_64","eula_url":"https://updates.suse.com/SUSE/Products/SLE-HA-GEO/12/x86_64/product.license/","shortname":"SLEHA-12-GEO","description":"SUSE Linux Enterprise High Availability Geographical Cluster Extension","free":false},{"repositories":[{"distro_target":"sle-11-ppc64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-Updates/sle-11-ppc64/","enabled":true,"id":1247,"description":"SLE11-SDK-Updates for sle-11-ppc64","installer_updates":false,"name":"SLE11-SDK-Updates"},{"name":"SLE11-SDK-Pool","installer_updates":false,"description":"SLE11-SDK-Pool for sle-11-s390x","id":1248,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-Pool/sle-11-s390x/","autorefresh":true,"distro_target":"sle-11-s390x"},{"description":"SLE11-SDK-Updates for sle-11-x86_64","name":"SLE11-SDK-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-Updates/sle-11-x86_64/","enabled":true,"id":1249},{"id":1250,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-Pool/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true,"installer_updates":false,"name":"SLE11-SDK-Pool","description":"SLE11-SDK-Pool for sle-11-i586"},{"description":"SLE11-SDK-Pool for sle-11-x86_64","name":"SLE11-SDK-Pool","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-Pool/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64","id":1251,"enabled":false},{"id":1252,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-Pool/sle-11-ppc64/","distro_target":"sle-11-ppc64","autorefresh":true,"installer_updates":false,"name":"SLE11-SDK-Pool","description":"SLE11-SDK-Pool for sle-11-ppc64"},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-Updates/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","id":1253,"enabled":true,"description":"SLE11-SDK-Updates for sle-11-i586","name":"SLE11-SDK-Updates","installer_updates":false},{"autorefresh":true,"distro_target":"sle-11-ia64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-Pool/sle-11-ia64/","enabled":false,"id":1254,"description":"SLE11-SDK-Pool for sle-11-ia64","name":"SLE11-SDK-Pool","installer_updates":false},{"enabled":true,"id":1255,"autorefresh":true,"distro_target":"sle-11-s390x","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-Updates/sle-11-s390x/","name":"SLE11-SDK-Updates","installer_updates":false,"description":"SLE11-SDK-Updates for sle-11-s390x"},{"enabled":true,"id":1256,"distro_target":"sle-11-ia64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-Updates/sle-11-ia64/","installer_updates":false,"name":"SLE11-SDK-Updates","description":"SLE11-SDK-Updates for sle-11-ia64"}],"online_predecessor_ids":[],"product_class":"SLE-SDK","predecessor_ids":[],"cpe":null,"product_type":"extension","shortname":null,"description":null,"free":true,"arch":null,"eula_url":"","friendly_version":"11","release_stage":"released","identifier":"sle-sdk","id":1158,"extensions":[],"version":"11","recommended":false,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Software Development Kit 11","former_identifier":"sle-sdk","release_type":null,"name":"SUSE Linux Enterprise Software Development Kit","offline_predecessor_ids":[]},{"description":null,"shortname":null,"free":true,"eula_url":"","arch":null,"predecessor_ids":[],"repositories":[{"enabled":true,"id":1257,"distro_target":"sle-11-ia64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Updates/sle-11-ia64/","installer_updates":false,"name":"SLE11-SDK-SP1-Updates","description":"SLE11-SDK-SP1-Updates for sle-11-ia64"},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-ia64/","autorefresh":true,"distro_target":"sle-11-ia64","id":1258,"enabled":true,"description":"SLE11-SDK-SP1-Pool for sle-11-ia64","name":"SLE11-SDK-SP1-Pool","installer_updates":false},{"installer_updates":false,"name":"SLE11-SDK-SP1-Pool","description":"SLE11-SDK-SP1-Pool for sle-11-s390x","id":1259,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-s390x/","distro_target":"sle-11-s390x","autorefresh":true},{"name":"SLE11-SDK-SP1-Updates","installer_updates":false,"description":"SLE11-SDK-SP1-Updates for sle-11-ppc64","enabled":true,"id":1260,"autorefresh":true,"distro_target":"sle-11-ppc64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Updates/sle-11-ppc64/"},{"distro_target":"sle-11-ppc64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-ppc64/","enabled":true,"id":1261,"description":"SLE11-SDK-SP1-Pool for sle-11-ppc64","installer_updates":false,"name":"SLE11-SDK-SP1-Pool"},{"description":"SLE11-SDK-SP1-Updates for sle-11-i586","name":"SLE11-SDK-SP1-Updates","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Updates/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","id":1262,"enabled":true},{"description":"SLE11-SDK-SP1-Pool for sle-11-i586","installer_updates":false,"name":"SLE11-SDK-SP1-Pool","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true,"id":1263,"enabled":true},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64","id":1264,"enabled":true,"description":"SLE11-SDK-SP1-Pool for sle-11-x86_64","name":"SLE11-SDK-SP1-Pool","installer_updates":false},{"description":"SLE11-SDK-SP1-Updates for sle-11-x86_64","installer_updates":false,"name":"SLE11-SDK-SP1-Updates","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Updates/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true,"id":1265,"enabled":true},{"id":1266,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Updates/sle-11-s390x/","autorefresh":true,"distro_target":"sle-11-s390x","name":"SLE11-SDK-SP1-Updates","installer_updates":false,"description":"SLE11-SDK-SP1-Updates for sle-11-s390x"}],"online_predecessor_ids":[],"product_class":"SLE-SDK","cpe":null,"product_type":"extension","recommended":false,"version":"11.1","name":"SUSE Linux Enterprise Software Development Kit","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Software Development Kit 11 SP1","former_identifier":"sle-sdk","release_type":null,"friendly_version":"11 SP1","extensions":[],"release_stage":"released","identifier":"sle-sdk","id":1159},{"shortname":null,"description":null,"free":true,"eula_url":"","arch":null,"predecessor_ids":[],"repositories":[{"enabled":true,"id":1257,"distro_target":"sle-11-ia64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Updates/sle-11-ia64/","installer_updates":false,"name":"SLE11-SDK-SP1-Updates","description":"SLE11-SDK-SP1-Updates for sle-11-ia64"},{"installer_updates":false,"name":"SLE11-SDK-SP1-Pool","description":"SLE11-SDK-SP1-Pool for sle-11-ia64","enabled":true,"id":1258,"distro_target":"sle-11-ia64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-ia64/"},{"id":1259,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-s390x/","autorefresh":true,"distro_target":"sle-11-s390x","name":"SLE11-SDK-SP1-Pool","installer_updates":false,"description":"SLE11-SDK-SP1-Pool for sle-11-s390x"},{"id":1260,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Updates/sle-11-ppc64/","distro_target":"sle-11-ppc64","autorefresh":true,"installer_updates":false,"name":"SLE11-SDK-SP1-Updates","description":"SLE11-SDK-SP1-Updates for sle-11-ppc64"},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-ppc64/","distro_target":"sle-11-ppc64","autorefresh":true,"id":1261,"enabled":true,"description":"SLE11-SDK-SP1-Pool for sle-11-ppc64","installer_updates":false,"name":"SLE11-SDK-SP1-Pool"},{"description":"SLE11-SDK-SP1-Updates for sle-11-i586","installer_updates":false,"name":"SLE11-SDK-SP1-Updates","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Updates/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true,"id":1262,"enabled":true},{"name":"SLE11-SDK-SP1-Pool","installer_updates":false,"description":"SLE11-SDK-SP1-Pool for sle-11-i586","enabled":true,"id":1263,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-i586/"},{"enabled":true,"id":1264,"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-x86_64/","name":"SLE11-SDK-SP1-Pool","installer_updates":false,"description":"SLE11-SDK-SP1-Pool for sle-11-x86_64"},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Updates/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64","id":1265,"enabled":true,"description":"SLE11-SDK-SP1-Updates for sle-11-x86_64","name":"SLE11-SDK-SP1-Updates","installer_updates":false},{"description":"SLE11-SDK-SP1-Updates for sle-11-s390x","name":"SLE11-SDK-SP1-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-s390x","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Updates/sle-11-s390x/","enabled":true,"id":1266},{"description":"SLE11-SDK-SP2-Core for sle-11-ia64","installer_updates":false,"name":"SLE11-SDK-SP2-Core","distro_target":"sle-11-ia64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-ia64/","enabled":true,"id":1267},{"installer_updates":false,"name":"SLE11-SDK-SP2-Core","description":"SLE11-SDK-SP2-Core for sle-11-s390x","enabled":true,"id":1268,"distro_target":"sle-11-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-s390x/"},{"enabled":true,"id":1269,"autorefresh":true,"distro_target":"sle-11-s390x","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-s390x/","name":"SLE11-SDK-SP2-Updates","installer_updates":false,"description":"SLE11-SDK-SP2-Updates for sle-11-s390x"},{"installer_updates":false,"name":"SLE11-SDK-SP2-Updates","description":"SLE11-SDK-SP2-Updates for sle-11-ppc64","enabled":true,"id":1270,"distro_target":"sle-11-ppc64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-ppc64/"},{"description":"SLE11-SDK-SP2-Updates for sle-11-i586","name":"SLE11-SDK-SP2-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-i586/","enabled":true,"id":1271},{"installer_updates":false,"name":"SLE11-SDK-SP2-Updates","description":"SLE11-SDK-SP2-Updates for sle-11-ia64","id":1272,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-ia64/","distro_target":"sle-11-ia64","autorefresh":true},{"id":1273,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-ppc64/","distro_target":"sle-11-ppc64","autorefresh":true,"installer_updates":false,"name":"SLE11-SDK-SP2-Core","description":"SLE11-SDK-SP2-Core for sle-11-ppc64"},{"id":1274,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","name":"SLE11-SDK-SP2-Core","installer_updates":false,"description":"SLE11-SDK-SP2-Core for sle-11-i586"},{"installer_updates":false,"name":"SLE11-SDK-SP2-Core","description":"SLE11-SDK-SP2-Core for sle-11-x86_64","id":1275,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true},{"enabled":true,"id":1276,"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-x86_64/","name":"SLE11-SDK-SP2-Updates","installer_updates":false,"description":"SLE11-SDK-SP2-Updates for sle-11-x86_64"}],"online_predecessor_ids":[],"product_class":"SLE-SDK","cpe":null,"product_type":"extension","recommended":false,"version":"11.2","name":"SUSE Linux Enterprise Software Development Kit","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Software Development Kit 11 SP2","release_type":null,"former_identifier":"sle-sdk","friendly_version":"11 SP2","extensions":[],"id":1160,"release_stage":"released","identifier":"sle-sdk"},{"release_stage":"released","identifier":"sle-sdk","id":1161,"extensions":[],"friendly_version":"11 SP3","migration_extra":false,"friendly_name":"SUSE Linux Enterprise Software Development Kit 11 SP3","release_type":null,"former_identifier":"sle-sdk","name":"SUSE Linux Enterprise Software Development Kit","offline_predecessor_ids":[],"version":"11.3","recommended":false,"cpe":null,"product_type":"extension","repositories":[{"id":1257,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Updates/sle-11-ia64/","autorefresh":true,"distro_target":"sle-11-ia64","name":"SLE11-SDK-SP1-Updates","installer_updates":false,"description":"SLE11-SDK-SP1-Updates for sle-11-ia64"},{"enabled":false,"id":1258,"autorefresh":true,"distro_target":"sle-11-ia64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-ia64/","name":"SLE11-SDK-SP1-Pool","installer_updates":false,"description":"SLE11-SDK-SP1-Pool for sle-11-ia64"},{"description":"SLE11-SDK-SP1-Pool for sle-11-s390x","installer_updates":false,"name":"SLE11-SDK-SP1-Pool","distro_target":"sle-11-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-s390x/","enabled":false,"id":1259},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Updates/sle-11-ppc64/","autorefresh":true,"distro_target":"sle-11-ppc64","id":1260,"enabled":false,"description":"SLE11-SDK-SP1-Updates for sle-11-ppc64","name":"SLE11-SDK-SP1-Updates","installer_updates":false},{"distro_target":"sle-11-ppc64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-ppc64/","enabled":false,"id":1261,"description":"SLE11-SDK-SP1-Pool for sle-11-ppc64","installer_updates":false,"name":"SLE11-SDK-SP1-Pool"},{"name":"SLE11-SDK-SP1-Updates","installer_updates":false,"description":"SLE11-SDK-SP1-Updates for sle-11-i586","enabled":false,"id":1262,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Updates/sle-11-i586/"},{"enabled":false,"id":1263,"distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-i586/","installer_updates":false,"name":"SLE11-SDK-SP1-Pool","description":"SLE11-SDK-SP1-Pool for sle-11-i586"},{"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-x86_64/","enabled":false,"id":1264,"description":"SLE11-SDK-SP1-Pool for sle-11-x86_64","name":"SLE11-SDK-SP1-Pool","installer_updates":false},{"description":"SLE11-SDK-SP1-Updates for sle-11-x86_64","installer_updates":false,"name":"SLE11-SDK-SP1-Updates","distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Updates/sle-11-x86_64/","enabled":false,"id":1265},{"installer_updates":false,"name":"SLE11-SDK-SP1-Updates","description":"SLE11-SDK-SP1-Updates for sle-11-s390x","id":1266,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Updates/sle-11-s390x/","distro_target":"sle-11-s390x","autorefresh":true},{"id":1267,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-ia64/","distro_target":"sle-11-ia64","autorefresh":true,"installer_updates":false,"name":"SLE11-SDK-SP2-Core","description":"SLE11-SDK-SP2-Core for sle-11-ia64"},{"description":"SLE11-SDK-SP2-Core for sle-11-s390x","name":"SLE11-SDK-SP2-Core","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-s390x","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-s390x/","enabled":false,"id":1268},{"id":1269,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-s390x/","autorefresh":true,"distro_target":"sle-11-s390x","name":"SLE11-SDK-SP2-Updates","installer_updates":false,"description":"SLE11-SDK-SP2-Updates for sle-11-s390x"},{"name":"SLE11-SDK-SP2-Updates","installer_updates":false,"description":"SLE11-SDK-SP2-Updates for sle-11-ppc64","id":1270,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-ppc64/","autorefresh":true,"distro_target":"sle-11-ppc64"},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","id":1271,"enabled":false,"description":"SLE11-SDK-SP2-Updates for sle-11-i586","name":"SLE11-SDK-SP2-Updates","installer_updates":false},{"id":1272,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-ia64/","distro_target":"sle-11-ia64","autorefresh":true,"installer_updates":false,"name":"SLE11-SDK-SP2-Updates","description":"SLE11-SDK-SP2-Updates for sle-11-ia64"},{"id":1273,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-ppc64/","autorefresh":true,"distro_target":"sle-11-ppc64","name":"SLE11-SDK-SP2-Core","installer_updates":false,"description":"SLE11-SDK-SP2-Core for sle-11-ppc64"},{"distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-i586/","enabled":false,"id":1274,"description":"SLE11-SDK-SP2-Core for sle-11-i586","installer_updates":false,"name":"SLE11-SDK-SP2-Core"},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64","id":1275,"enabled":false,"description":"SLE11-SDK-SP2-Core for sle-11-x86_64","name":"SLE11-SDK-SP2-Core","installer_updates":false},{"description":"SLE11-SDK-SP2-Updates for sle-11-x86_64","installer_updates":false,"name":"SLE11-SDK-SP2-Updates","distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-x86_64/","enabled":false,"id":1276},{"enabled":true,"id":1277,"distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Pool/sle-11-i586/","installer_updates":false,"name":"SLE11-SDK-SP3-Pool","description":"SLE11-SDK-SP3-Pool for sle-11-i586"},{"enabled":true,"id":1278,"autorefresh":true,"distro_target":"sle-11-ia64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Pool/sle-11-ia64/","name":"SLE11-SDK-SP3-Pool","installer_updates":false,"description":"SLE11-SDK-SP3-Pool for sle-11-ia64"},{"enabled":true,"id":1279,"autorefresh":true,"distro_target":"sle-11-ppc64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Updates/sle-11-ppc64/","name":"SLE11-SDK-SP3-Updates","installer_updates":false,"description":"SLE11-SDK-SP3-Updates for sle-11-ppc64"},{"description":"SLE11-SDK-SP3-Updates for sle-11-ia64","name":"SLE11-SDK-SP3-Updates","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Updates/sle-11-ia64/","autorefresh":true,"distro_target":"sle-11-ia64","id":1280,"enabled":true},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Pool/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true,"id":1281,"enabled":true,"description":"SLE11-SDK-SP3-Pool for sle-11-x86_64","installer_updates":false,"name":"SLE11-SDK-SP3-Pool"},{"installer_updates":false,"name":"SLE11-SDK-SP3-Updates","description":"SLE11-SDK-SP3-Updates for sle-11-s390x","enabled":true,"id":1282,"distro_target":"sle-11-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Updates/sle-11-s390x/"},{"name":"SLE11-SDK-SP3-Pool","installer_updates":false,"description":"SLE11-SDK-SP3-Pool for sle-11-ppc64","id":1283,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Pool/sle-11-ppc64/","autorefresh":true,"distro_target":"sle-11-ppc64"},{"id":1284,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Updates/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64","name":"SLE11-SDK-SP3-Updates","installer_updates":false,"description":"SLE11-SDK-SP3-Updates for sle-11-x86_64"},{"description":"SLE11-SDK-SP3-Updates for sle-11-i586","name":"SLE11-SDK-SP3-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Updates/sle-11-i586/","enabled":true,"id":1285},{"name":"SLE11-SDK-SP3-Pool","installer_updates":false,"description":"SLE11-SDK-SP3-Pool for sle-11-s390x","enabled":true,"id":1286,"autorefresh":true,"distro_target":"sle-11-s390x","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Pool/sle-11-s390x/"}],"online_predecessor_ids":[],"product_class":"SLE-SDK","predecessor_ids":[],"arch":null,"eula_url":"","description":null,"shortname":null,"free":true},{"recommended":false,"version":"11","name":"SUSE Linux Enterprise Software Development Kit","offline_predecessor_ids":[],"friendly_name":"SUSE Linux Enterprise Software Development Kit 11 (Migration)","migration_extra":false,"former_identifier":"sle-sdk-SP1-migration","release_type":null,"friendly_version":"11","extensions":[],"release_stage":"released","identifier":"sle-sdk-SP1-migration","id":1162,"description":null,"shortname":null,"free":true,"eula_url":"","arch":null,"predecessor_ids":[],"online_predecessor_ids":[],"product_class":"SLE-SDK","repositories":[{"description":"SLE11-SDK-SP1-Pool for sle-11-ia64","installer_updates":false,"name":"SLE11-SDK-SP1-Pool","distro_target":"sle-11-ia64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-ia64/","enabled":true,"id":1258},{"name":"SLE11-SDK-SP1-Pool","installer_updates":false,"description":"SLE11-SDK-SP1-Pool for sle-11-s390x","id":1259,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-s390x/","autorefresh":true,"distro_target":"sle-11-s390x"},{"enabled":true,"id":1261,"autorefresh":true,"distro_target":"sle-11-ppc64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-ppc64/","name":"SLE11-SDK-SP1-Pool","installer_updates":false,"description":"SLE11-SDK-SP1-Pool for sle-11-ppc64"},{"distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-i586/","enabled":true,"id":1263,"description":"SLE11-SDK-SP1-Pool for sle-11-i586","installer_updates":false,"name":"SLE11-SDK-SP1-Pool"},{"description":"SLE11-SDK-SP1-Pool for sle-11-x86_64","installer_updates":false,"name":"SLE11-SDK-SP1-Pool","distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-x86_64/","enabled":true,"id":1264}],"cpe":null,"product_type":"extension"},{"friendly_version":"11 SP1","release_stage":"released","id":1163,"identifier":"sle-sdk-SP2-migration","extensions":[],"version":"11.1","recommended":false,"friendly_name":"SUSE Linux Enterprise Software Development Kit 11 SP1 (Migration)","migration_extra":false,"release_type":null,"former_identifier":"sle-sdk-SP2-migration","name":"SUSE Linux Enterprise Software Development Kit","offline_predecessor_ids":[],"online_predecessor_ids":[],"repositories":[{"id":1267,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-ia64/","distro_target":"sle-11-ia64","autorefresh":true,"installer_updates":false,"name":"SLE11-SDK-SP2-Core","description":"SLE11-SDK-SP2-Core for sle-11-ia64"},{"description":"SLE11-SDK-SP2-Core for sle-11-s390x","installer_updates":false,"name":"SLE11-SDK-SP2-Core","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-s390x/","distro_target":"sle-11-s390x","autorefresh":true,"id":1268,"enabled":true},{"name":"SLE11-SDK-SP2-Updates","installer_updates":false,"description":"SLE11-SDK-SP2-Updates for sle-11-s390x","enabled":true,"id":1269,"autorefresh":true,"distro_target":"sle-11-s390x","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-s390x/"},{"enabled":true,"id":1270,"distro_target":"sle-11-ppc64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-ppc64/","installer_updates":false,"name":"SLE11-SDK-SP2-Updates","description":"SLE11-SDK-SP2-Updates for sle-11-ppc64"},{"installer_updates":false,"name":"SLE11-SDK-SP2-Updates","description":"SLE11-SDK-SP2-Updates for sle-11-i586","enabled":true,"id":1271,"distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-i586/"},{"autorefresh":true,"distro_target":"sle-11-ia64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-ia64/","enabled":true,"id":1272,"description":"SLE11-SDK-SP2-Updates for sle-11-ia64","name":"SLE11-SDK-SP2-Updates","installer_updates":false},{"enabled":true,"id":1273,"autorefresh":true,"distro_target":"sle-11-ppc64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-ppc64/","name":"SLE11-SDK-SP2-Core","installer_updates":false,"description":"SLE11-SDK-SP2-Core for sle-11-ppc64"},{"id":1274,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true,"installer_updates":false,"name":"SLE11-SDK-SP2-Core","description":"SLE11-SDK-SP2-Core for sle-11-i586"},{"installer_updates":false,"name":"SLE11-SDK-SP2-Core","description":"SLE11-SDK-SP2-Core for sle-11-x86_64","id":1275,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64","id":1276,"enabled":true,"description":"SLE11-SDK-SP2-Updates for sle-11-x86_64","name":"SLE11-SDK-SP2-Updates","installer_updates":false}],"product_class":"SLE-SDK","predecessor_ids":[],"cpe":null,"product_type":"extension","shortname":null,"description":null,"free":true,"arch":null,"eula_url":""},{"friendly_name":"SUSE Linux Enterprise Software Development Kit 11 SP2 (Migration)","migration_extra":false,"former_identifier":"sle-sdk-SP3-migration","release_type":null,"name":"SUSE Linux Enterprise Software Development Kit","offline_predecessor_ids":[],"version":"11.2","recommended":false,"identifier":"sle-sdk-SP3-migration","release_stage":"released","id":1164,"extensions":[],"friendly_version":"11 SP2","arch":null,"eula_url":"","description":null,"shortname":null,"free":true,"cpe":null,"product_type":"extension","online_predecessor_ids":[],"repositories":[{"description":"SLE11-SDK-SP3-Pool for sle-11-i586","installer_updates":false,"name":"SLE11-SDK-SP3-Pool","distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Pool/sle-11-i586/","enabled":true,"id":1277},{"enabled":true,"id":1278,"distro_target":"sle-11-ia64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Pool/sle-11-ia64/","installer_updates":false,"name":"SLE11-SDK-SP3-Pool","description":"SLE11-SDK-SP3-Pool for sle-11-ia64"},{"installer_updates":false,"name":"SLE11-SDK-SP3-Updates","description":"SLE11-SDK-SP3-Updates for sle-11-ppc64","id":1279,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Updates/sle-11-ppc64/","distro_target":"sle-11-ppc64","autorefresh":true},{"name":"SLE11-SDK-SP3-Updates","installer_updates":false,"description":"SLE11-SDK-SP3-Updates for sle-11-ia64","enabled":true,"id":1280,"autorefresh":true,"distro_target":"sle-11-ia64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Updates/sle-11-ia64/"},{"installer_updates":false,"name":"SLE11-SDK-SP3-Pool","description":"SLE11-SDK-SP3-Pool for sle-11-x86_64","id":1281,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Pool/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true},{"description":"SLE11-SDK-SP3-Updates for sle-11-s390x","installer_updates":false,"name":"SLE11-SDK-SP3-Updates","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Updates/sle-11-s390x/","distro_target":"sle-11-s390x","autorefresh":true,"id":1282,"enabled":true},{"description":"SLE11-SDK-SP3-Pool for sle-11-ppc64","installer_updates":false,"name":"SLE11-SDK-SP3-Pool","distro_target":"sle-11-ppc64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Pool/sle-11-ppc64/","enabled":true,"id":1283},{"id":1284,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Updates/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true,"installer_updates":false,"name":"SLE11-SDK-SP3-Updates","description":"SLE11-SDK-SP3-Updates for sle-11-x86_64"},{"installer_updates":false,"name":"SLE11-SDK-SP3-Updates","description":"SLE11-SDK-SP3-Updates for sle-11-i586","id":1285,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Updates/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true},{"id":1286,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Pool/sle-11-s390x/","autorefresh":true,"distro_target":"sle-11-s390x","name":"SLE11-SDK-SP3-Pool","installer_updates":false,"description":"SLE11-SDK-SP3-Pool for sle-11-s390x"}],"product_class":"SLE-SDK","predecessor_ids":[]},{"release_stage":"released","identifier":"SUSE-Linux-Enterprise-SDK-DVD-i386","id":1165,"extensions":[],"friendly_version":"10","former_identifier":"SUSE-Linux-Enterprise-SDK-DVD-i386","release_type":null,"friendly_name":"SUSE Linux Enterprise Software Development Kit 10 i386","migration_extra":false,"offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Software Development Kit","version":"10","recommended":false,"product_type":"extension","cpe":null,"product_class":"SLE-SDK","online_predecessor_ids":[],"repositories":[{"name":"SLE10-SDK-Updates","installer_updates":false,"description":"SLE10-SDK-Updates for sled-10-i586","id":1287,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-Updates/sled-10-i586/","autorefresh":true,"distro_target":"sled-10-i586"},{"id":1288,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-Updates/sles-10-i586/","distro_target":"sles-10-i586","autorefresh":true,"installer_updates":false,"name":"SLE10-SDK-Updates","description":"SLE10-SDK-Updates for sles-10-i586"}],"predecessor_ids":[],"arch":"i386","eula_url":"","free":true,"description":null,"shortname":null},{"predecessor_ids":[],"product_class":"SLE-SDK","online_predecessor_ids":[],"repositories":[{"id":1287,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-Updates/sled-10-i586/","autorefresh":true,"distro_target":"sled-10-i586","name":"SLE10-SDK-Updates","installer_updates":false,"description":"SLE10-SDK-Updates for sled-10-i586"},{"installer_updates":false,"name":"SLE10-SDK-Updates","description":"SLE10-SDK-Updates for sles-10-ia64","enabled":true,"id":1289,"distro_target":"sles-10-ia64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-Updates/sles-10-ia64/"}],"product_type":"extension","cpe":null,"free":true,"shortname":null,"description":null,"eula_url":"","arch":"ia64","friendly_version":"10","extensions":[],"id":1166,"release_stage":"released","identifier":"SUSE-Linux-Enterprise-SDK-DVD-ia64","recommended":false,"version":"10","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Software Development Kit","release_type":null,"former_identifier":"SUSE-Linux-Enterprise-SDK-DVD-ia64","friendly_name":"SUSE Linux Enterprise Software Development Kit 10 ia64","migration_extra":false},{"friendly_version":"10","extensions":[],"release_stage":"released","identifier":"SUSE-Linux-Enterprise-SDK-DVD-ppc","id":1167,"recommended":false,"version":"10","name":"SUSE Linux Enterprise Software Development Kit","offline_predecessor_ids":[],"friendly_name":"SUSE Linux Enterprise Software Development Kit 10 ppc","migration_extra":false,"former_identifier":"SUSE-Linux-Enterprise-SDK-DVD-ppc","release_type":null,"predecessor_ids":[],"online_predecessor_ids":[],"product_class":"SLE-SDK","repositories":[{"installer_updates":false,"name":"SLE10-SDK-Updates","description":"SLE10-SDK-Updates for sles-10-ppc","enabled":true,"id":1290,"distro_target":"sles-10-ppc","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-Updates/sles-10-ppc/"}],"cpe":null,"product_type":"extension","shortname":null,"description":null,"free":true,"eula_url":"","arch":"ppc"},{"friendly_version":"10","id":1168,"release_stage":"released","identifier":"SUSE-Linux-Enterprise-SDK-DVD-s390x","extensions":[],"version":"10","recommended":false,"release_type":null,"former_identifier":"SUSE-Linux-Enterprise-SDK-DVD-s390x","migration_extra":false,"friendly_name":"SUSE Linux Enterprise Software Development Kit 10 s390x","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Software Development Kit","repositories":[{"installer_updates":false,"name":"SLE10-SDK-Updates","description":"SLE10-SDK-Updates for sles-10-s390x","enabled":true,"id":1291,"distro_target":"sles-10-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-Updates/sles-10-s390x/"}],"online_predecessor_ids":[],"product_class":"SLE-SDK","predecessor_ids":[],"product_type":"extension","cpe":null,"free":true,"shortname":null,"description":null,"arch":"s390x","eula_url":""},{"release_stage":"released","identifier":"SUSE-Linux-Enterprise-SDK-DVD-x86_64","id":1169,"extensions":[],"friendly_version":"10","friendly_name":"SUSE Linux Enterprise Software Development Kit 10 x86_64","migration_extra":false,"release_type":null,"former_identifier":"SUSE-Linux-Enterprise-SDK-DVD-x86_64","name":"SUSE Linux Enterprise Software Development Kit","offline_predecessor_ids":[],"version":"10","recommended":false,"cpe":null,"product_type":"extension","online_predecessor_ids":[],"product_class":"SLE-SDK","repositories":[{"description":"SLE10-SDK-Updates for sled-10-x86_64","name":"SLE10-SDK-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sled-10-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-Updates/sled-10-x86_64/","enabled":true,"id":1292},{"autorefresh":true,"distro_target":"sles-10-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-Updates/sles-10-x86_64/","enabled":true,"id":1293,"description":"SLE10-SDK-Updates for sles-10-x86_64","name":"SLE10-SDK-Updates","installer_updates":false}],"predecessor_ids":[],"arch":"x86_64","eula_url":"","description":null,"shortname":null,"free":true},{"version":"10","recommended":false,"former_identifier":"SUSE-Linux-Enterprise-SDK-i386","release_type":null,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Software Development Kit 10 i386","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Software Development Kit","friendly_version":"10","release_stage":"released","id":1170,"identifier":"SUSE-Linux-Enterprise-SDK-i386","extensions":[],"free":true,"shortname":null,"description":null,"arch":"i386","eula_url":"","online_predecessor_ids":[],"product_class":"SLE-SDK","repositories":[{"installer_updates":false,"name":"SLE10-SDK-Updates","description":"SLE10-SDK-Updates for sled-10-i586","id":1287,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-Updates/sled-10-i586/","distro_target":"sled-10-i586","autorefresh":true},{"installer_updates":false,"name":"SLE10-SDK-Updates","description":"SLE10-SDK-Updates for sles-10-i586","id":1288,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-Updates/sles-10-i586/","distro_target":"sles-10-i586","autorefresh":true}],"predecessor_ids":[],"product_type":"extension","cpe":null},{"release_type":null,"former_identifier":"SUSE-Linux-Enterprise-SDK-ia64","migration_extra":false,"friendly_name":"SUSE Linux Enterprise Software Development Kit 10 ia64","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Software Development Kit","version":"10","recommended":false,"release_stage":"released","identifier":"SUSE-Linux-Enterprise-SDK-ia64","id":1171,"extensions":[],"friendly_version":"10","arch":"ia64","eula_url":"","free":true,"description":null,"shortname":null,"product_type":"extension","cpe":null,"online_predecessor_ids":[],"product_class":"SLE-SDK","repositories":[{"description":"SLE10-SDK-Updates for sled-10-i586","name":"SLE10-SDK-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sled-10-i586","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-Updates/sled-10-i586/","enabled":true,"id":1287},{"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-Updates/sles-10-ia64/","autorefresh":true,"distro_target":"sles-10-ia64","id":1289,"enabled":true,"description":"SLE10-SDK-Updates for sles-10-ia64","name":"SLE10-SDK-Updates","installer_updates":false}],"predecessor_ids":[]},{"offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Software Development Kit","former_identifier":"SUSE-Linux-Enterprise-SDK-ppc","release_type":null,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Software Development Kit 10 ppc","recommended":false,"version":"10","extensions":[],"release_stage":"released","identifier":"SUSE-Linux-Enterprise-SDK-ppc","id":1172,"friendly_version":"10","eula_url":"","arch":"ppc","free":true,"shortname":null,"description":null,"product_type":"extension","cpe":null,"predecessor_ids":[],"online_predecessor_ids":[],"repositories":[{"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-Updates/sles-10-ppc/","distro_target":"sles-10-ppc","autorefresh":true,"id":1290,"enabled":true,"description":"SLE10-SDK-Updates for sles-10-ppc","installer_updates":false,"name":"SLE10-SDK-Updates"}],"product_class":"SLE-SDK"},{"description":null,"shortname":null,"free":true,"arch":"s390x","eula_url":"","online_predecessor_ids":[],"product_class":"SLE-SDK","repositories":[{"enabled":true,"id":1291,"distro_target":"sles-10-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-Updates/sles-10-s390x/","installer_updates":false,"name":"SLE10-SDK-Updates","description":"SLE10-SDK-Updates for sles-10-s390x"}],"predecessor_ids":[],"cpe":null,"product_type":"extension","version":"10","recommended":false,"friendly_name":"SUSE Linux Enterprise Software Development Kit 10 s390x","migration_extra":false,"former_identifier":"SUSE-Linux-Enterprise-SDK-s390x","release_type":null,"name":"SUSE Linux Enterprise Software Development Kit","offline_predecessor_ids":[],"friendly_version":"10","release_stage":"released","identifier":"SUSE-Linux-Enterprise-SDK-s390x","id":1173,"extensions":[]},{"version":"10","recommended":false,"former_identifier":"SUSE-Linux-Enterprise-SDK-SP1","release_type":null,"friendly_name":"SUSE Linux Enterprise Software Development Kit 10 SP1","migration_extra":false,"offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Software Development Kit","friendly_version":"10 SP1","release_stage":"released","id":1174,"identifier":"SUSE-Linux-Enterprise-SDK-SP1","extensions":[],"free":true,"description":null,"shortname":null,"arch":null,"eula_url":"","online_predecessor_ids":[],"product_class":"SLE-SDK","repositories":[{"enabled":true,"id":1294,"distro_target":"sles-10-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sles-10-s390x/","installer_updates":false,"name":"SLE10-SDK-SP1-Online","description":"SLE10-SDK-SP1-Online for sles-10-s390x"},{"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sles-10-x86_64/","autorefresh":true,"distro_target":"sles-10-x86_64","id":1295,"enabled":true,"description":"SLE10-SDK-SP1-Online for sles-10-x86_64","name":"SLE10-SDK-SP1-Online","installer_updates":false},{"autorefresh":true,"distro_target":"sled-10-i586","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sled-10-i586/","enabled":true,"id":1296,"description":"SLE10-SDK-SP1-Online for sled-10-i586","name":"SLE10-SDK-SP1-Online","installer_updates":false},{"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sles-10-ppc/","autorefresh":true,"distro_target":"sles-10-ppc","id":1297,"enabled":true,"description":"SLE10-SDK-SP1-Online for sles-10-ppc","name":"SLE10-SDK-SP1-Online","installer_updates":false},{"description":"SLE10-SDK-SP1-Updates for sles-10-s390x","installer_updates":false,"name":"SLE10-SDK-SP1-Updates","distro_target":"sles-10-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Updates/sles-10-s390x/","enabled":true,"id":1298},{"description":"SLE10-SDK-SP1-Updates for sled-10-x86_64","name":"SLE10-SDK-SP1-Updates","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Updates/sled-10-x86_64/","autorefresh":true,"distro_target":"sled-10-x86_64","id":1299,"enabled":true},{"enabled":true,"id":1300,"autorefresh":true,"distro_target":"sles-10-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Updates/sles-10-x86_64/","name":"SLE10-SDK-SP1-Updates","installer_updates":false,"description":"SLE10-SDK-SP1-Updates for sles-10-x86_64"},{"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sles-10-ia64/","autorefresh":true,"distro_target":"sles-10-ia64","id":1301,"enabled":true,"description":"SLE10-SDK-SP1-Online for sles-10-ia64","name":"SLE10-SDK-SP1-Online","installer_updates":false},{"name":"SLE10-SDK-SP1-Updates","installer_updates":false,"description":"SLE10-SDK-SP1-Updates for sled-10-i586","enabled":true,"id":1302,"autorefresh":true,"distro_target":"sled-10-i586","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Updates/sled-10-i586/"},{"name":"SLE10-SDK-SP1-Online","installer_updates":false,"description":"SLE10-SDK-SP1-Online for sles-10-i586","enabled":true,"id":1303,"autorefresh":true,"distro_target":"sles-10-i586","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sles-10-i586/"},{"description":"SLE10-SDK-SP1-Updates for sles-10-ia64","installer_updates":false,"name":"SLE10-SDK-SP1-Updates","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Updates/sles-10-ia64/","distro_target":"sles-10-ia64","autorefresh":true,"id":1304,"enabled":true},{"description":"SLE10-SDK-SP1-Updates for sles-10-ppc","name":"SLE10-SDK-SP1-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sles-10-ppc","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Updates/sles-10-ppc/","enabled":true,"id":1305},{"description":"SLE10-SDK-SP1-Updates for sles-10-i586","installer_updates":false,"name":"SLE10-SDK-SP1-Updates","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Updates/sles-10-i586/","distro_target":"sles-10-i586","autorefresh":true,"id":1306,"enabled":true},{"enabled":true,"id":1307,"distro_target":"sled-10-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sled-10-x86_64/","installer_updates":false,"name":"SLE10-SDK-SP1-Online","description":"SLE10-SDK-SP1-Online for sled-10-x86_64"}],"predecessor_ids":[],"product_type":"extension","cpe":null},{"eula_url":"","arch":null,"description":null,"shortname":null,"free":true,"cpe":null,"product_type":"extension","predecessor_ids":[],"repositories":[{"id":1294,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sles-10-s390x/","distro_target":"sles-10-s390x","autorefresh":true,"installer_updates":false,"name":"SLE10-SDK-SP1-Online","description":"SLE10-SDK-SP1-Online for sles-10-s390x"},{"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sles-10-x86_64/","autorefresh":true,"distro_target":"sles-10-x86_64","id":1295,"enabled":true,"description":"SLE10-SDK-SP1-Online for sles-10-x86_64","name":"SLE10-SDK-SP1-Online","installer_updates":false},{"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sled-10-i586/","autorefresh":true,"distro_target":"sled-10-i586","id":1296,"enabled":true,"description":"SLE10-SDK-SP1-Online for sled-10-i586","name":"SLE10-SDK-SP1-Online","installer_updates":false},{"description":"SLE10-SDK-SP1-Online for sles-10-ppc","name":"SLE10-SDK-SP1-Online","installer_updates":false,"autorefresh":true,"distro_target":"sles-10-ppc","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sles-10-ppc/","enabled":true,"id":1297},{"enabled":true,"id":1301,"autorefresh":true,"distro_target":"sles-10-ia64","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sles-10-ia64/","name":"SLE10-SDK-SP1-Online","installer_updates":false,"description":"SLE10-SDK-SP1-Online for sles-10-ia64"},{"id":1303,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sles-10-i586/","autorefresh":true,"distro_target":"sles-10-i586","name":"SLE10-SDK-SP1-Online","installer_updates":false,"description":"SLE10-SDK-SP1-Online for sles-10-i586"},{"enabled":true,"id":1307,"distro_target":"sled-10-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP1-Online/sled-10-x86_64/","installer_updates":false,"name":"SLE10-SDK-SP1-Online","description":"SLE10-SDK-SP1-Online for sled-10-x86_64"}],"online_predecessor_ids":[],"product_class":"SLE-SDK","name":"SUSE Linux Enterprise Software Development Kit","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Software Development Kit 10 (Migration)","former_identifier":"SUSE-Linux-Enterprise-SDK-SP1-migration","release_type":null,"recommended":false,"version":"10","extensions":[],"release_stage":"released","identifier":"SUSE-Linux-Enterprise-SDK-SP1-migration","id":1175,"friendly_version":"10"},{"release_stage":"released","id":1176,"identifier":"SUSE-Linux-Enterprise-SDK-SP2","extensions":[],"friendly_version":"10 SP2","friendly_name":"SUSE Linux Enterprise Software Development Kit 10 SP2 MigrationBeta","migration_extra":false,"release_type":"MigrationBeta","former_identifier":"SUSE-Linux-Enterprise-SDK-SP2","name":"SUSE Linux Enterprise Software Development Kit","offline_predecessor_ids":[],"version":"10","recommended":false,"cpe":null,"product_type":"extension","online_predecessor_ids":[],"repositories":[],"product_class":"SLE-SDK","predecessor_ids":[],"arch":null,"eula_url":"","shortname":null,"description":null,"free":true},{"product_type":"extension","cpe":null,"online_predecessor_ids":[],"product_class":"SLE-SDK","repositories":[{"installer_updates":false,"name":"SLE10-SDK-SP2-Online","description":"SLE10-SDK-SP2-Online for sled-10-i586","enabled":true,"id":1308,"distro_target":"sled-10-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sled-10-i586/"},{"id":1309,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Updates/sles-10-i586/","autorefresh":true,"distro_target":"sles-10-i586","name":"SLE10-SDK-SP2-Updates","installer_updates":false,"description":"SLE10-SDK-SP2-Updates for sles-10-i586"},{"distro_target":"sles-10-ia64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Updates/sles-10-ia64/","enabled":true,"id":1310,"description":"SLE10-SDK-SP2-Updates for sles-10-ia64","installer_updates":false,"name":"SLE10-SDK-SP2-Updates"},{"description":"SLE10-SDK-SP2-Updates for sles-10-s390x","name":"SLE10-SDK-SP2-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sles-10-s390x","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Updates/sles-10-s390x/","enabled":true,"id":1311},{"id":1312,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sles-10-ppc/","autorefresh":true,"distro_target":"sles-10-ppc","name":"SLE10-SDK-SP2-Online","installer_updates":false,"description":"SLE10-SDK-SP2-Online for sles-10-ppc"},{"name":"SLE10-SDK-SP2-Online","installer_updates":false,"description":"SLE10-SDK-SP2-Online for sles-10-i586","enabled":true,"id":1313,"autorefresh":true,"distro_target":"sles-10-i586","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sles-10-i586/"},{"description":"SLE10-SDK-SP2-Online for sled-10-x86_64","name":"SLE10-SDK-SP2-Online","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sled-10-x86_64/","autorefresh":true,"distro_target":"sled-10-x86_64","id":1314,"enabled":true},{"distro_target":"sles-10-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Updates/sles-10-x86_64/","enabled":true,"id":1315,"description":"SLE10-SDK-SP2-Updates for sles-10-x86_64","installer_updates":false,"name":"SLE10-SDK-SP2-Updates"},{"description":"SLE10-SDK-SP2-Online for sles-10-ia64","installer_updates":false,"name":"SLE10-SDK-SP2-Online","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sles-10-ia64/","distro_target":"sles-10-ia64","autorefresh":true,"id":1316,"enabled":true},{"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Updates/sles-10-ppc/","autorefresh":true,"distro_target":"sles-10-ppc","id":1317,"enabled":true,"description":"SLE10-SDK-SP2-Updates for sles-10-ppc","name":"SLE10-SDK-SP2-Updates","installer_updates":false},{"name":"SLE10-SDK-SP2-Online","installer_updates":false,"description":"SLE10-SDK-SP2-Online for sles-10-s390x","enabled":true,"id":1318,"autorefresh":true,"distro_target":"sles-10-s390x","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sles-10-s390x/"},{"distro_target":"sled-10-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Updates/sled-10-x86_64/","enabled":true,"id":1319,"description":"SLE10-SDK-SP2-Updates for sled-10-x86_64","installer_updates":false,"name":"SLE10-SDK-SP2-Updates"},{"description":"SLE10-SDK-SP2-Updates for sled-10-i586","installer_updates":false,"name":"SLE10-SDK-SP2-Updates","distro_target":"sled-10-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Updates/sled-10-i586/","enabled":true,"id":1320},{"description":"SLE10-SDK-SP2-Online for sles-10-x86_64","name":"SLE10-SDK-SP2-Online","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sles-10-x86_64/","autorefresh":true,"distro_target":"sles-10-x86_64","id":1321,"enabled":true}],"predecessor_ids":[],"arch":null,"eula_url":"","free":true,"shortname":null,"description":null,"identifier":"SUSE-Linux-Enterprise-SDK-SP2","release_stage":"released","id":1177,"extensions":[],"friendly_version":"10 SP2","former_identifier":"SUSE-Linux-Enterprise-SDK-SP2","release_type":null,"friendly_name":"SUSE Linux Enterprise Software Development Kit 10 SP2","migration_extra":false,"offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Software Development Kit","version":"10","recommended":false},{"arch":null,"eula_url":"","description":null,"shortname":null,"free":true,"cpe":null,"product_type":"extension","online_predecessor_ids":[],"product_class":"SLE-SDK","repositories":[{"description":"SLE10-SDK-SP2-Online for sled-10-i586","name":"SLE10-SDK-SP2-Online","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sled-10-i586/","autorefresh":true,"distro_target":"sled-10-i586","id":1308,"enabled":true},{"installer_updates":false,"name":"SLE10-SDK-SP2-Online","description":"SLE10-SDK-SP2-Online for sles-10-ppc","id":1312,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sles-10-ppc/","distro_target":"sles-10-ppc","autorefresh":true},{"description":"SLE10-SDK-SP2-Online for sles-10-i586","installer_updates":false,"name":"SLE10-SDK-SP2-Online","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sles-10-i586/","distro_target":"sles-10-i586","autorefresh":true,"id":1313,"enabled":true},{"description":"SLE10-SDK-SP2-Online for sled-10-x86_64","name":"SLE10-SDK-SP2-Online","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sled-10-x86_64/","autorefresh":true,"distro_target":"sled-10-x86_64","id":1314,"enabled":true},{"description":"SLE10-SDK-SP2-Online for sles-10-ia64","name":"SLE10-SDK-SP2-Online","installer_updates":false,"autorefresh":true,"distro_target":"sles-10-ia64","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sles-10-ia64/","enabled":true,"id":1316},{"enabled":true,"id":1318,"distro_target":"sles-10-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sles-10-s390x/","installer_updates":false,"name":"SLE10-SDK-SP2-Online","description":"SLE10-SDK-SP2-Online for sles-10-s390x"},{"installer_updates":false,"name":"SLE10-SDK-SP2-Online","description":"SLE10-SDK-SP2-Online for sles-10-x86_64","enabled":true,"id":1321,"distro_target":"sles-10-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP2-Online/sles-10-x86_64/"}],"predecessor_ids":[],"friendly_name":"SUSE Linux Enterprise Software Development Kit 10 online (Migration)","migration_extra":false,"release_type":"online","former_identifier":"SUSE-Linux-Enterprise-SDK-SP2-migration","name":"SUSE Linux Enterprise Software Development Kit","offline_predecessor_ids":[],"version":"10","recommended":false,"release_stage":"released","identifier":"SUSE-Linux-Enterprise-SDK-SP2-migration","id":1178,"extensions":[],"friendly_version":"10"},{"version":"10","recommended":false,"release_type":null,"former_identifier":"SUSE-Linux-Enterprise-SDK-SP3","friendly_name":"SUSE Linux Enterprise Software Development Kit 10 SP3","migration_extra":false,"offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Software Development Kit","friendly_version":"10 SP3","identifier":"SUSE-Linux-Enterprise-SDK-SP3","release_stage":"released","id":1179,"extensions":[],"free":true,"shortname":null,"description":null,"arch":null,"eula_url":"","online_predecessor_ids":[],"repositories":[{"description":"SLE10-SDK-SP3-Pool for sles-10-ppc","installer_updates":false,"name":"SLE10-SDK-SP3-Pool","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Pool/sles-10-ppc/","distro_target":"sles-10-ppc","autorefresh":false,"id":1322,"enabled":true},{"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Pool/sles-10-x86_64/","distro_target":"sles-10-x86_64","autorefresh":false,"id":1323,"enabled":true,"description":"SLE10-SDK-SP3-Pool for sles-10-x86_64","installer_updates":false,"name":"SLE10-SDK-SP3-Pool"},{"enabled":true,"id":1324,"autorefresh":true,"distro_target":"sled-10-i586","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sled-10-i586/","name":"SLE10-SDK-SP3-Online","installer_updates":false,"description":"SLE10-SDK-SP3-Online for sled-10-i586"},{"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Updates/sled-10-x86_64/","distro_target":"sled-10-x86_64","autorefresh":true,"id":1325,"enabled":true,"description":"SLE10-SDK-SP3-Updates for sled-10-x86_64","installer_updates":false,"name":"SLE10-SDK-SP3-Updates"},{"id":1326,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sled-10-x86_64/","autorefresh":true,"distro_target":"sled-10-x86_64","name":"SLE10-SDK-SP3-Online","installer_updates":false,"description":"SLE10-SDK-SP3-Online for sled-10-x86_64"},{"installer_updates":false,"name":"SLE10-SDK-SP3-Pool","description":"SLE10-SDK-SP3-Pool for sled-10-x86_64","id":1327,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Pool/sled-10-x86_64/","distro_target":"sled-10-x86_64","autorefresh":false},{"enabled":true,"id":1328,"autorefresh":true,"distro_target":"sles-10-ia64","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sles-10-ia64/","name":"SLE10-SDK-SP3-Online","installer_updates":false,"description":"SLE10-SDK-SP3-Online for sles-10-ia64"},{"description":"SLE10-SDK-SP3-Updates for sles-10-ia64","name":"SLE10-SDK-SP3-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sles-10-ia64","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Updates/sles-10-ia64/","enabled":true,"id":1329},{"installer_updates":false,"name":"SLE10-SDK-SP3-Online","description":"SLE10-SDK-SP3-Online for sles-10-i586","enabled":true,"id":1330,"distro_target":"sles-10-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sles-10-i586/"},{"id":1331,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Pool/sles-10-ia64/","autorefresh":false,"distro_target":"sles-10-ia64","name":"SLE10-SDK-SP3-Pool","installer_updates":false,"description":"SLE10-SDK-SP3-Pool for sles-10-ia64"},{"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Updates/sles-10-x86_64/","distro_target":"sles-10-x86_64","autorefresh":true,"id":1332,"enabled":true,"description":"SLE10-SDK-SP3-Updates for sles-10-x86_64","installer_updates":false,"name":"SLE10-SDK-SP3-Updates"},{"installer_updates":false,"name":"SLE10-SDK-SP3-Pool","description":"SLE10-SDK-SP3-Pool for sles-10-i586","id":1333,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Pool/sles-10-i586/","distro_target":"sles-10-i586","autorefresh":false},{"id":1334,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Updates/sles-10-i586/","distro_target":"sles-10-i586","autorefresh":true,"installer_updates":false,"name":"SLE10-SDK-SP3-Updates","description":"SLE10-SDK-SP3-Updates for sles-10-i586"},{"autorefresh":true,"distro_target":"sles-10-s390x","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sles-10-s390x/","enabled":true,"id":1335,"description":"SLE10-SDK-SP3-Online for sles-10-s390x","name":"SLE10-SDK-SP3-Online","installer_updates":false},{"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Updates/sles-10-ppc/","autorefresh":true,"distro_target":"sles-10-ppc","id":1336,"enabled":true,"description":"SLE10-SDK-SP3-Updates for sles-10-ppc","name":"SLE10-SDK-SP3-Updates","installer_updates":false},{"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Pool/sles-10-s390x/","autorefresh":false,"distro_target":"sles-10-s390x","id":1337,"enabled":true,"description":"SLE10-SDK-SP3-Pool for sles-10-s390x","name":"SLE10-SDK-SP3-Pool","installer_updates":false},{"description":"SLE10-SDK-SP3-Pool for sled-10-i586","installer_updates":false,"name":"SLE10-SDK-SP3-Pool","distro_target":"sled-10-i586","autorefresh":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Pool/sled-10-i586/","enabled":true,"id":1338},{"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Updates/sles-10-s390x/","distro_target":"sles-10-s390x","autorefresh":true,"id":1339,"enabled":true,"description":"SLE10-SDK-SP3-Updates for sles-10-s390x","installer_updates":false,"name":"SLE10-SDK-SP3-Updates"},{"enabled":true,"id":1340,"autorefresh":true,"distro_target":"sled-10-i586","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Updates/sled-10-i586/","name":"SLE10-SDK-SP3-Updates","installer_updates":false,"description":"SLE10-SDK-SP3-Updates for sled-10-i586"},{"id":1341,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sles-10-x86_64/","distro_target":"sles-10-x86_64","autorefresh":true,"installer_updates":false,"name":"SLE10-SDK-SP3-Online","description":"SLE10-SDK-SP3-Online for sles-10-x86_64"},{"description":"SLE10-SDK-SP3-Online for sles-10-ppc","installer_updates":false,"name":"SLE10-SDK-SP3-Online","distro_target":"sles-10-ppc","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sles-10-ppc/","enabled":true,"id":1342}],"product_class":"SLE-SDK","predecessor_ids":[],"product_type":"extension","cpe":null},{"recommended":false,"version":"10","name":"SUSE Linux Enterprise Software Development Kit","offline_predecessor_ids":[],"friendly_name":"SUSE Linux Enterprise Software Development Kit 10 (Migration)","migration_extra":false,"former_identifier":"SUSE-Linux-Enterprise-SDK-SP3-migration","release_type":null,"friendly_version":"10","extensions":[],"release_stage":"released","id":1180,"identifier":"SUSE-Linux-Enterprise-SDK-SP3-migration","shortname":null,"description":null,"free":true,"eula_url":"","arch":null,"predecessor_ids":[],"product_class":"SLE-SDK","online_predecessor_ids":[],"repositories":[{"distro_target":"sled-10-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sled-10-i586/","enabled":true,"id":1324,"description":"SLE10-SDK-SP3-Online for sled-10-i586","installer_updates":false,"name":"SLE10-SDK-SP3-Online"},{"autorefresh":true,"distro_target":"sled-10-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sled-10-x86_64/","enabled":true,"id":1326,"description":"SLE10-SDK-SP3-Online for sled-10-x86_64","name":"SLE10-SDK-SP3-Online","installer_updates":false},{"enabled":true,"id":1328,"distro_target":"sles-10-ia64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sles-10-ia64/","installer_updates":false,"name":"SLE10-SDK-SP3-Online","description":"SLE10-SDK-SP3-Online for sles-10-ia64"},{"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sles-10-i586/","autorefresh":true,"distro_target":"sles-10-i586","id":1330,"enabled":true,"description":"SLE10-SDK-SP3-Online for sles-10-i586","name":"SLE10-SDK-SP3-Online","installer_updates":false},{"installer_updates":false,"name":"SLE10-SDK-SP3-Online","description":"SLE10-SDK-SP3-Online for sles-10-s390x","enabled":true,"id":1335,"distro_target":"sles-10-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sles-10-s390x/"},{"installer_updates":false,"name":"SLE10-SDK-SP3-Online","description":"SLE10-SDK-SP3-Online for sles-10-x86_64","id":1341,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sles-10-x86_64/","distro_target":"sles-10-x86_64","autorefresh":true},{"name":"SLE10-SDK-SP3-Online","installer_updates":false,"description":"SLE10-SDK-SP3-Online for sles-10-ppc","id":1342,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Online/sles-10-ppc/","autorefresh":true,"distro_target":"sles-10-ppc"}],"cpe":null,"product_type":"extension"},{"cpe":null,"product_type":"extension","product_class":"SLE-SDK","online_predecessor_ids":[],"repositories":[{"autorefresh":false,"distro_target":"sles-10-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP4-Pool/sles-10-x86_64/","enabled":true,"id":1343,"description":"SLE10-SDK-SP4-Pool for sles-10-x86_64","name":"SLE10-SDK-SP4-Pool","installer_updates":false},{"id":1344,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP4-Pool/sles-10-ppc/","autorefresh":false,"distro_target":"sles-10-ppc","name":"SLE10-SDK-SP4-Pool","installer_updates":false,"description":"SLE10-SDK-SP4-Pool for sles-10-ppc"},{"name":"SLE10-SDK-SP4-Pool","installer_updates":false,"description":"SLE10-SDK-SP4-Pool for sles-10-i586","enabled":true,"id":1345,"autorefresh":false,"distro_target":"sles-10-i586","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP4-Pool/sles-10-i586/"},{"description":"SLE10-SDK-SP4-Pool for sled-10-i586","name":"SLE10-SDK-SP4-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sled-10-i586","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP4-Pool/sled-10-i586/","enabled":true,"id":1346},{"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP4-Updates/sled-10-x86_64/","autorefresh":true,"distro_target":"sled-10-x86_64","id":1347,"enabled":true,"description":"SLE10-SDK-SP4-Updates for sled-10-x86_64","name":"SLE10-SDK-SP4-Updates","installer_updates":false},{"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP4-Pool/sles-10-s390x/","autorefresh":false,"distro_target":"sles-10-s390x","id":1348,"enabled":true,"description":"SLE10-SDK-SP4-Pool for sles-10-s390x","name":"SLE10-SDK-SP4-Pool","installer_updates":false},{"distro_target":"sles-10-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP4-Updates/sles-10-x86_64/","enabled":true,"id":1349,"description":"SLE10-SDK-SP4-Updates for sles-10-x86_64","installer_updates":false,"name":"SLE10-SDK-SP4-Updates"},{"autorefresh":true,"distro_target":"sles-10-s390x","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP4-Updates/sles-10-s390x/","enabled":true,"id":1350,"description":"SLE10-SDK-SP4-Updates for sles-10-s390x","name":"SLE10-SDK-SP4-Updates","installer_updates":false},{"enabled":true,"id":1351,"distro_target":"sled-10-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP4-Updates/sled-10-i586/","installer_updates":false,"name":"SLE10-SDK-SP4-Updates","description":"SLE10-SDK-SP4-Updates for sled-10-i586"},{"description":"SLE10-SDK-SP4-Updates for sles-10-ppc","name":"SLE10-SDK-SP4-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sles-10-ppc","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP4-Updates/sles-10-ppc/","enabled":true,"id":1352},{"distro_target":"sles-10-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP4-Updates/sles-10-i586/","enabled":true,"id":1353,"description":"SLE10-SDK-SP4-Updates for sles-10-i586","installer_updates":false,"name":"SLE10-SDK-SP4-Updates"},{"enabled":true,"id":1354,"autorefresh":true,"distro_target":"sles-10-ia64","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP4-Updates/sles-10-ia64/","name":"SLE10-SDK-SP4-Updates","installer_updates":false,"description":"SLE10-SDK-SP4-Updates for sles-10-ia64"},{"enabled":true,"id":1355,"autorefresh":false,"distro_target":"sled-10-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP4-Pool/sled-10-x86_64/","name":"SLE10-SDK-SP4-Pool","installer_updates":false,"description":"SLE10-SDK-SP4-Pool for sled-10-x86_64"},{"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP4-Pool/sles-10-ia64/","autorefresh":false,"distro_target":"sles-10-ia64","id":1356,"enabled":true,"description":"SLE10-SDK-SP4-Pool for sles-10-ia64","name":"SLE10-SDK-SP4-Pool","installer_updates":false}],"predecessor_ids":[],"arch":null,"eula_url":"","description":null,"shortname":null,"free":true,"release_stage":"released","identifier":"SUSE-Linux-Enterprise-SDK-SP4","id":1181,"extensions":[],"friendly_version":"10 SP4","migration_extra":false,"friendly_name":"SUSE Linux Enterprise Software Development Kit 10 SP4","release_type":null,"former_identifier":"SUSE-Linux-Enterprise-SDK-SP4","name":"SUSE Linux Enterprise Software Development Kit","offline_predecessor_ids":[],"version":"10","recommended":false},{"friendly_version":"10","identifier":"SUSE-Linux-Enterprise-SDK-SP4-migration","release_stage":"released","id":1182,"extensions":[],"version":"10","recommended":false,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Software Development Kit 10 (Migration)","former_identifier":"SUSE-Linux-Enterprise-SDK-SP4-migration","release_type":null,"name":"SUSE Linux Enterprise Software Development Kit","offline_predecessor_ids":[],"online_predecessor_ids":[],"repositories":[{"description":"SLE10-SDK-SP4-Online for sles-10-x86_64","name":"SLE10-SDK-SP4-Online","installer_updates":false,"autorefresh":true,"distro_target":"sles-10-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP4-Online/sles-10-x86_64/","enabled":true,"id":1357},{"installer_updates":false,"name":"SLE10-SDK-SP4-Online","description":"SLE10-SDK-SP4-Online for sles-10-i586","id":1358,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP4-Online/sles-10-i586/","distro_target":"sles-10-i586","autorefresh":true},{"description":"SLE10-SDK-SP4-Online for sles-10-ia64","installer_updates":false,"name":"SLE10-SDK-SP4-Online","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP4-Online/sles-10-ia64/","distro_target":"sles-10-ia64","autorefresh":true,"id":1359,"enabled":true},{"autorefresh":true,"distro_target":"sled-10-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP4-Online/sled-10-x86_64/","enabled":true,"id":1360,"description":"SLE10-SDK-SP4-Online for sled-10-x86_64","name":"SLE10-SDK-SP4-Online","installer_updates":false},{"enabled":true,"id":1361,"autorefresh":true,"distro_target":"sled-10-i586","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP4-Online/sled-10-i586/","name":"SLE10-SDK-SP4-Online","installer_updates":false,"description":"SLE10-SDK-SP4-Online for sled-10-i586"},{"enabled":true,"id":1362,"distro_target":"sles-10-ppc","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP4-Online/sles-10-ppc/","installer_updates":false,"name":"SLE10-SDK-SP4-Online","description":"SLE10-SDK-SP4-Online for sles-10-ppc"},{"installer_updates":false,"name":"SLE10-SDK-SP4-Online","description":"SLE10-SDK-SP4-Online for sles-10-s390x","enabled":true,"id":1363,"distro_target":"sles-10-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-SP4-Online/sles-10-s390x/"}],"product_class":"SLE-SDK","predecessor_ids":[],"cpe":null,"product_type":"extension","description":null,"shortname":null,"free":true,"arch":null,"eula_url":""},{"friendly_version":"10","release_stage":"released","identifier":"SUSE-Linux-Enterprise-SDK-x86_64","id":1183,"extensions":[],"version":"10","recommended":false,"release_type":null,"former_identifier":"SUSE-Linux-Enterprise-SDK-x86_64","migration_extra":false,"friendly_name":"SUSE Linux Enterprise Software Development Kit 10 x86_64","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Software Development Kit","repositories":[{"autorefresh":true,"distro_target":"sled-10-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-Updates/sled-10-x86_64/","enabled":true,"id":1292,"description":"SLE10-SDK-Updates for sled-10-x86_64","name":"SLE10-SDK-Updates","installer_updates":false},{"enabled":true,"id":1293,"distro_target":"sles-10-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SDK-Updates/sles-10-x86_64/","installer_updates":false,"name":"SLE10-SDK-Updates","description":"SLE10-SDK-Updates for sles-10-x86_64"}],"online_predecessor_ids":[],"product_class":"SLE-SDK","predecessor_ids":[],"product_type":"extension","cpe":null,"free":true,"description":null,"shortname":null,"arch":"x86_64","eula_url":""},{"predecessor_ids":[],"online_predecessor_ids":[],"product_class":"HP-HWREF","repositories":[{"enabled":false,"id":1381,"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLED11-SP1-HWRefresh2011A-Debuginfo-Updates/sle-11-x86_64/","name":"SLED11-SP1-HWRefresh2011A-Debuginfo-Updates","installer_updates":false,"description":"SLED11-SP1-HWRefresh2011A-Debuginfo-Updates for sle-11-x86_64"},{"installer_updates":false,"name":"SLED11-SP1-HWRefresh2011A-Debuginfo-Updates","description":"SLED11-SP1-HWRefresh2011A-Debuginfo-Updates for sle-11-i586","id":1382,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLED11-SP1-HWRefresh2011A-Debuginfo-Updates/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true},{"url":"https://updates.suse.com/repo/$RCE/SLED11-SP1-HWRefresh2011A-Updates/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","id":1383,"enabled":true,"description":"SLED11-SP1-HWRefresh2011A-Updates for sle-11-i586","name":"SLED11-SP1-HWRefresh2011A-Updates","installer_updates":false},{"name":"SLED11-SP1-HWRefresh2011A-Updates","installer_updates":false,"description":"SLED11-SP1-HWRefresh2011A-Updates for sle-11-x86_64","enabled":true,"id":1384,"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLED11-SP1-HWRefresh2011A-Updates/sle-11-x86_64/"}],"cpe":null,"product_type":"base","shortname":null,"description":null,"free":false,"eula_url":"","arch":null,"friendly_version":"11 SP1","extensions":[{"release_stage":"released","identifier":"sle-sdk","id":1158,"extensions":[],"friendly_version":"11","release_type":null,"former_identifier":"sle-sdk","migration_extra":false,"friendly_name":"SUSE Linux Enterprise Software Development Kit 11","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Software Development Kit","version":"11","recommended":false,"product_type":"extension","cpe":null,"online_predecessor_ids":[],"repositories":[{"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-Updates/sle-11-ppc64/","autorefresh":true,"distro_target":"sle-11-ppc64","id":1247,"enabled":true,"description":"SLE11-SDK-Updates for sle-11-ppc64","name":"SLE11-SDK-Updates","installer_updates":false},{"enabled":false,"id":1248,"distro_target":"sle-11-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-Pool/sle-11-s390x/","installer_updates":false,"name":"SLE11-SDK-Pool","description":"SLE11-SDK-Pool for sle-11-s390x"},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-Updates/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true,"id":1249,"enabled":true,"description":"SLE11-SDK-Updates for sle-11-x86_64","installer_updates":false,"name":"SLE11-SDK-Updates"},{"distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-Pool/sle-11-i586/","enabled":false,"id":1250,"description":"SLE11-SDK-Pool for sle-11-i586","installer_updates":false,"name":"SLE11-SDK-Pool"},{"name":"SLE11-SDK-Pool","installer_updates":false,"description":"SLE11-SDK-Pool for sle-11-x86_64","id":1251,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-Pool/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64"},{"name":"SLE11-SDK-Pool","installer_updates":false,"description":"SLE11-SDK-Pool for sle-11-ppc64","id":1252,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-Pool/sle-11-ppc64/","autorefresh":true,"distro_target":"sle-11-ppc64"},{"enabled":true,"id":1253,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-Updates/sle-11-i586/","name":"SLE11-SDK-Updates","installer_updates":false,"description":"SLE11-SDK-Updates for sle-11-i586"},{"autorefresh":true,"distro_target":"sle-11-ia64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-Pool/sle-11-ia64/","enabled":false,"id":1254,"description":"SLE11-SDK-Pool for sle-11-ia64","name":"SLE11-SDK-Pool","installer_updates":false},{"id":1255,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-Updates/sle-11-s390x/","autorefresh":true,"distro_target":"sle-11-s390x","name":"SLE11-SDK-Updates","installer_updates":false,"description":"SLE11-SDK-Updates for sle-11-s390x"},{"enabled":true,"id":1256,"distro_target":"sle-11-ia64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-Updates/sle-11-ia64/","installer_updates":false,"name":"SLE11-SDK-Updates","description":"SLE11-SDK-Updates for sle-11-ia64"}],"product_class":"SLE-SDK","predecessor_ids":[],"arch":null,"eula_url":"","free":true,"description":null,"shortname":null},{"release_stage":"released","id":1162,"identifier":"sle-sdk-SP1-migration","extensions":[],"friendly_version":"11","former_identifier":"sle-sdk-SP1-migration","release_type":null,"friendly_name":"SUSE Linux Enterprise Software Development Kit 11 (Migration)","migration_extra":false,"offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Software Development Kit","version":"11","recommended":false,"product_type":"extension","cpe":null,"repositories":[{"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-ia64/","autorefresh":true,"distro_target":"sle-11-ia64","id":1258,"enabled":true,"description":"SLE11-SDK-SP1-Pool for sle-11-ia64","name":"SLE11-SDK-SP1-Pool","installer_updates":false},{"name":"SLE11-SDK-SP1-Pool","installer_updates":false,"description":"SLE11-SDK-SP1-Pool for sle-11-s390x","id":1259,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-s390x/","autorefresh":true,"distro_target":"sle-11-s390x"},{"description":"SLE11-SDK-SP1-Pool for sle-11-ppc64","name":"SLE11-SDK-SP1-Pool","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-ppc64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-ppc64/","enabled":true,"id":1261},{"description":"SLE11-SDK-SP1-Pool for sle-11-i586","name":"SLE11-SDK-SP1-Pool","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","id":1263,"enabled":true},{"id":1264,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true,"installer_updates":false,"name":"SLE11-SDK-SP1-Pool","description":"SLE11-SDK-SP1-Pool for sle-11-x86_64"}],"online_predecessor_ids":[],"product_class":"SLE-SDK","predecessor_ids":[],"arch":null,"eula_url":"","free":true,"shortname":null,"description":null}],"id":1191,"release_stage":"released","identifier":"sle-hwrefresh2011a","recommended":false,"version":"11","name":"SUSE Linux Enterprise Desktop 11 SP1 Hardware Refresh","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Desktop 11 SP1 Hardware Refresh 11 SP1","former_identifier":"sle-hwrefresh2011a","release_type":null},{"friendly_name":"SUSE Linux Enterprise Subscription Management Tool 11 SP1","migration_extra":false,"release_type":null,"former_identifier":"sle-smt","name":"SUSE Linux Enterprise Subscription Management Tool","offline_predecessor_ids":[],"version":"11.1","recommended":false,"release_stage":"released","identifier":"sle-smt","id":1192,"extensions":[],"friendly_version":"11 SP1","arch":null,"eula_url":"","shortname":null,"description":null,"free":true,"cpe":null,"product_type":"extension","online_predecessor_ids":[],"repositories":[{"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-SMT-Updates/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64","id":1386,"enabled":true,"description":"SLE11-SP1-SMT-Updates for sle-11-x86_64","name":"SLE11-SP1-SMT-Updates","installer_updates":false},{"id":1387,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-SMT-Pool/sle-11-s390x/","autorefresh":true,"distro_target":"sle-11-s390x","name":"SLE11-SP1-SMT-Pool","installer_updates":false,"description":"SLE11-SP1-SMT-Pool for sle-11-s390x"},{"description":"SLE11-SP1-SMT-Pool for sle-11-x86_64","name":"SLE11-SP1-SMT-Pool","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-SMT-Pool/sle-11-x86_64/","enabled":true,"id":1388},{"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-SMT-Updates/sle-11-i586/","enabled":true,"id":1389,"description":"SLE11-SP1-SMT-Updates for sle-11-i586","name":"SLE11-SP1-SMT-Updates","installer_updates":false},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-SMT-Pool/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true,"id":1390,"enabled":true,"description":"SLE11-SP1-SMT-Pool for sle-11-i586","installer_updates":false,"name":"SLE11-SP1-SMT-Pool"},{"name":"SLE11-SP1-SMT-Updates","installer_updates":false,"description":"SLE11-SP1-SMT-Updates for sle-11-s390x","id":1391,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-SMT-Updates/sle-11-s390x/","autorefresh":true,"distro_target":"sle-11-s390x"}],"product_class":"SLESMT","predecessor_ids":[]},{"offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Subscription Management Tool","former_identifier":"sle-smt","release_type":null,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Subscription Management Tool 11 SP2","recommended":false,"version":"11.2","extensions":[],"release_stage":"released","id":1193,"identifier":"sle-smt","friendly_version":"11 SP2","eula_url":"","arch":null,"free":true,"shortname":null,"description":null,"product_type":"extension","cpe":null,"predecessor_ids":[],"online_predecessor_ids":[],"repositories":[{"id":1392,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP2-Pool/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true,"installer_updates":false,"name":"SLE11-SMT-SP2-Pool","description":"SLE11-SMT-SP2-Pool for sle-11-x86_64"},{"enabled":true,"id":1393,"distro_target":"sle-11-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP2-Updates/sle-11-s390x/","installer_updates":false,"name":"SLE11-SMT-SP2-Updates","description":"SLE11-SMT-SP2-Updates for sle-11-s390x"},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP2-Pool/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","id":1394,"enabled":true,"description":"SLE11-SMT-SP2-Pool for sle-11-i586","name":"SLE11-SMT-SP2-Pool","installer_updates":false},{"enabled":true,"id":1395,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP2-Updates/sle-11-i586/","name":"SLE11-SMT-SP2-Updates","installer_updates":false,"description":"SLE11-SMT-SP2-Updates for sle-11-i586"},{"distro_target":"sle-11-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP2-Pool/sle-11-s390x/","enabled":true,"id":1396,"description":"SLE11-SMT-SP2-Pool for sle-11-s390x","installer_updates":false,"name":"SLE11-SMT-SP2-Pool"},{"description":"SLE11-SMT-SP2-Updates for sle-11-x86_64","name":"SLE11-SMT-SP2-Updates","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP2-Updates/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64","id":1397,"enabled":true}],"product_class":"SLESMT"},{"description":null,"shortname":null,"free":true,"arch":null,"eula_url":"","repositories":[{"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP2-Pool/sle-11-x86_64/","enabled":true,"id":1392,"description":"SLE11-SMT-SP2-Pool for sle-11-x86_64","name":"SLE11-SMT-SP2-Pool","installer_updates":false},{"description":"SLE11-SMT-SP2-Pool for sle-11-i586","installer_updates":false,"name":"SLE11-SMT-SP2-Pool","url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP2-Pool/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true,"id":1394,"enabled":true},{"name":"SLE11-SMT-SP2-Pool","installer_updates":false,"description":"SLE11-SMT-SP2-Pool for sle-11-s390x","id":1396,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP2-Pool/sle-11-s390x/","autorefresh":true,"distro_target":"sle-11-s390x"}],"online_predecessor_ids":[],"product_class":"SLESMT","predecessor_ids":[],"cpe":null,"product_type":"extension","version":"11","recommended":false,"friendly_name":"SUSE Linux Enterprise Subscription Management Tool 11 (Migration)","migration_extra":false,"release_type":null,"former_identifier":"sle-smt-SP2-migration","name":"SUSE Linux Enterprise Subscription Management Tool","offline_predecessor_ids":[],"friendly_version":"11","release_stage":"released","id":1194,"identifier":"sle-smt-SP2-migration","extensions":[]},{"version":"10.2","recommended":false,"friendly_name":"SUSE Linux Enterprise Subscription Management Tool 10 SP2","migration_extra":false,"former_identifier":"SUSE-Linux-Enterprise-SMT-SP2","release_type":null,"name":"SUSE Linux Enterprise Subscription Management Tool","offline_predecessor_ids":[],"friendly_version":"10 SP2","identifier":"SUSE-Linux-Enterprise-SMT-SP2","release_stage":"released","id":1195,"extensions":[],"shortname":null,"description":null,"free":true,"arch":null,"eula_url":"","repositories":[{"description":"SLE10-SP2-SMT-Updates for sles-10-x86_64","installer_updates":false,"name":"SLE10-SP2-SMT-Updates","distro_target":"sles-10-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP2-SMT-Updates/sles-10-x86_64/","enabled":true,"id":1398},{"url":"https://updates.suse.com/repo/$RCE/SLE10-SP2-SMT-Updates/sles-10-i586/","autorefresh":true,"distro_target":"sles-10-i586","id":1399,"enabled":true,"description":"SLE10-SP2-SMT-Updates for sles-10-i586","name":"SLE10-SP2-SMT-Updates","installer_updates":false}],"online_predecessor_ids":[],"product_class":"SLESMT","predecessor_ids":[],"cpe":null,"product_type":"extension"},{"recommended":false,"version":"11","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Subscription Management Tool","release_type":null,"former_identifier":"sle-smt","migration_extra":false,"friendly_name":"SUSE Linux Enterprise Subscription Management Tool 11","friendly_version":"11","extensions":[],"identifier":"sle-smt","release_stage":"released","id":1196,"free":true,"description":null,"shortname":null,"eula_url":"","arch":null,"predecessor_ids":[],"repositories":[{"id":1400,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-Updates/sle-11-s390x/","distro_target":"sle-11-s390x","autorefresh":true,"installer_updates":false,"name":"SLE11-SMT-Updates","description":"SLE11-SMT-Updates for sle-11-s390x"},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-Updates/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true,"id":1401,"enabled":true,"description":"SLE11-SMT-Updates for sle-11-x86_64","installer_updates":false,"name":"SLE11-SMT-Updates"},{"id":1402,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-Updates/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","name":"SLE11-SMT-Updates","installer_updates":false,"description":"SLE11-SMT-Updates for sle-11-i586"}],"online_predecessor_ids":[],"product_class":"SLESMT","product_type":"extension","cpe":null},{"former_identifier":"SUSE-Linux-Enterprise-SMT-SP3","release_type":null,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Subscription Management Tool 10 SP3","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Subscription Management Tool","version":"10.3","recommended":false,"identifier":"SUSE-Linux-Enterprise-SMT-SP3","release_stage":"released","id":1197,"extensions":[],"friendly_version":"10 SP3","arch":null,"eula_url":"","free":true,"shortname":null,"description":null,"product_type":"extension","cpe":null,"online_predecessor_ids":[],"repositories":[{"description":"SLE10-SP3-Debuginfo-Updates for sles-10-i586","name":"SLE10-SP3-Debuginfo-Updates","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Updates/sles-10-i586/","autorefresh":true,"distro_target":"sles-10-i586","id":664,"enabled":false},{"description":"SLE10-SP3-Debuginfo-Pool for sles-10-i586","installer_updates":false,"name":"SLE10-SP3-Debuginfo-Pool","url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Pool/sles-10-i586/","distro_target":"sles-10-i586","autorefresh":false,"id":669,"enabled":false},{"url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Pool/sles-10-s390x/","distro_target":"sles-10-s390x","autorefresh":false,"id":672,"enabled":false,"description":"SLE10-SP3-Debuginfo-Pool for sles-10-s390x","installer_updates":false,"name":"SLE10-SP3-Debuginfo-Pool"},{"id":675,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Updates/sles-10-s390x/","autorefresh":true,"distro_target":"sles-10-s390x","name":"SLE10-SP3-Debuginfo-Updates","installer_updates":false,"description":"SLE10-SP3-Debuginfo-Updates for sles-10-s390x"},{"enabled":false,"id":750,"autorefresh":true,"distro_target":"sles-10-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Updates/sles-10-x86_64/","name":"SLE10-SP3-Debuginfo-Updates","installer_updates":false,"description":"SLE10-SP3-Debuginfo-Updates for sles-10-x86_64"},{"name":"SLE10-SP3-Debuginfo-Pool","installer_updates":false,"description":"SLE10-SP3-Debuginfo-Pool for sles-10-x86_64","enabled":false,"id":751,"autorefresh":false,"distro_target":"sles-10-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Pool/sles-10-x86_64/"},{"enabled":false,"id":779,"distro_target":"sles-10-ppc","autorefresh":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Pool/sles-10-ppc/","installer_updates":false,"name":"SLE10-SP3-Debuginfo-Pool","description":"SLE10-SP3-Debuginfo-Pool for sles-10-ppc"},{"id":780,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Updates/sles-10-ppc/","distro_target":"sles-10-ppc","autorefresh":true,"installer_updates":false,"name":"SLE10-SP3-Debuginfo-Updates","description":"SLE10-SP3-Debuginfo-Updates for sles-10-ppc"},{"url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Pool/sles-10-ia64/","distro_target":"sles-10-ia64","autorefresh":false,"id":788,"enabled":false,"description":"SLE10-SP3-Debuginfo-Pool for sles-10-ia64","installer_updates":false,"name":"SLE10-SP3-Debuginfo-Pool"},{"id":789,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Updates/sles-10-ia64/","distro_target":"sles-10-ia64","autorefresh":true,"installer_updates":false,"name":"SLE10-SP3-Debuginfo-Updates","description":"SLE10-SP3-Debuginfo-Updates for sles-10-ia64"},{"url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Pool/sled-10-x86_64/","distro_target":"sled-10-x86_64","autorefresh":false,"id":869,"enabled":false,"description":"SLE10-SP3-Debuginfo-Pool for sled-10-x86_64","installer_updates":false,"name":"SLE10-SP3-Debuginfo-Pool"},{"name":"SLE10-SP3-Debuginfo-Updates","installer_updates":false,"description":"SLE10-SP3-Debuginfo-Updates for sled-10-x86_64","id":870,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Updates/sled-10-x86_64/","autorefresh":true,"distro_target":"sled-10-x86_64"},{"description":"SLE10-SP3-Debuginfo-Pool for sled-10-i586","name":"SLE10-SP3-Debuginfo-Pool","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Pool/sled-10-i586/","autorefresh":false,"distro_target":"sled-10-i586","id":895,"enabled":false},{"enabled":false,"id":896,"autorefresh":true,"distro_target":"sled-10-i586","url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Updates/sled-10-i586/","name":"SLE10-SP3-Debuginfo-Updates","installer_updates":false,"description":"SLE10-SP3-Debuginfo-Updates for sled-10-i586"},{"description":"SLE10-SP3-SMT-Updates for sles-10-i586","name":"SLE10-SP3-SMT-Updates","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-SMT-Updates/sles-10-i586/","autorefresh":true,"distro_target":"sles-10-i586","id":1403,"enabled":true},{"autorefresh":true,"distro_target":"sles-10-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE10-SP3-SMT-Updates/sles-10-x86_64/","enabled":true,"id":1404,"description":"SLE10-SP3-SMT-Updates for sles-10-x86_64","name":"SLE10-SP3-SMT-Updates","installer_updates":false}],"product_class":"SLESMT","predecessor_ids":[]},{"former_identifier":"sle-smt","release_type":null,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Subscription Management Tool 11 SP3","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Subscription Management Tool","version":"11.3","recommended":false,"release_stage":"released","id":1198,"identifier":"sle-smt","extensions":[],"friendly_version":"11 SP3","arch":null,"eula_url":"","free":true,"description":null,"shortname":null,"product_type":"extension","cpe":null,"repositories":[{"enabled":true,"id":1405,"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP3-Updates/sle-11-x86_64/","name":"SLE11-SMT-SP3-Updates","installer_updates":false,"description":"SLE11-SMT-SP3-Updates for sle-11-x86_64"},{"distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP3-Updates/sle-11-i586/","enabled":true,"id":1406,"description":"SLE11-SMT-SP3-Updates for sle-11-i586","installer_updates":false,"name":"SLE11-SMT-SP3-Updates"},{"enabled":true,"id":1407,"autorefresh":true,"distro_target":"sle-11-s390x","url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP3-Updates/sle-11-s390x/","name":"SLE11-SMT-SP3-Updates","installer_updates":false,"description":"SLE11-SMT-SP3-Updates for sle-11-s390x"},{"description":"SLE11-SMT-SP3-Pool for sle-11-s390x","installer_updates":false,"name":"SLE11-SMT-SP3-Pool","distro_target":"sle-11-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP3-Pool/sle-11-s390x/","enabled":true,"id":1408},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP3-Pool/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64","id":1409,"enabled":true,"description":"SLE11-SMT-SP3-Pool for sle-11-x86_64","name":"SLE11-SMT-SP3-Pool","installer_updates":false},{"installer_updates":false,"name":"SLE11-SMT-SP3-Pool","description":"SLE11-SMT-SP3-Pool for sle-11-i586","enabled":true,"id":1410,"distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP3-Pool/sle-11-i586/"}],"online_predecessor_ids":[],"product_class":"SLESMT","predecessor_ids":[]},{"name":"SUSE Linux Enterprise Subscription Management Tool","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Subscription Management Tool 11 SP2 (Migration)","release_type":null,"former_identifier":"sle-smt-SP3-migration","recommended":false,"version":"11.2","extensions":[],"release_stage":"released","identifier":"sle-smt-SP3-migration","id":1199,"friendly_version":"11 SP2","eula_url":"","arch":null,"shortname":null,"description":null,"free":true,"cpe":null,"product_type":"extension","predecessor_ids":[],"online_predecessor_ids":[],"product_class":"SLESMT","repositories":[{"enabled":true,"id":1408,"autorefresh":true,"distro_target":"sle-11-s390x","url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP3-Pool/sle-11-s390x/","name":"SLE11-SMT-SP3-Pool","installer_updates":false,"description":"SLE11-SMT-SP3-Pool for sle-11-s390x"},{"description":"SLE11-SMT-SP3-Pool for sle-11-x86_64","name":"SLE11-SMT-SP3-Pool","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP3-Pool/sle-11-x86_64/","enabled":true,"id":1409},{"installer_updates":false,"name":"SLE11-SMT-SP3-Pool","description":"SLE11-SMT-SP3-Pool for sle-11-i586","id":1410,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP3-Pool/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true}]},{"version":"1.2","recommended":false,"friendly_name":"SUSE Manager Mgmt Unlimited Virtual Z 1.2","migration_extra":false,"release_type":null,"former_identifier":"SUSE-Manager-Mgmt-Unlimited-Virtual-Z","name":"SUSE Manager Mgmt Unlimited Virtual Z","offline_predecessor_ids":[],"friendly_version":"1.2","release_stage":"released","id":1200,"identifier":"SUSE-Manager-Mgmt-Unlimited-Virtual-Z","extensions":[],"description":null,"shortname":null,"free":false,"arch":null,"eula_url":"","product_class":"SM_ENT_MGM_Z","online_predecessor_ids":[],"repositories":[],"predecessor_ids":[],"cpe":null,"product_type":"extension"},{"friendly_version":"1.2","extensions":[],"release_stage":"released","identifier":"SUSE-Manager-Mon-Single","id":1201,"recommended":false,"version":"1.2","name":"SUSE Manager Monitoring Single","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"SUSE Manager Monitoring Single 1.2","former_identifier":"SUSE-Manager-Mon-Single","release_type":null,"predecessor_ids":[],"online_predecessor_ids":[],"product_class":"SM_ENT_MON_S","repositories":[],"cpe":null,"product_type":"extension","description":null,"shortname":null,"free":false,"eula_url":"","arch":null},{"online_predecessor_ids":[],"product_class":"SM_ENT_MON_V","repositories":[],"predecessor_ids":[],"product_type":"extension","cpe":null,"free":false,"description":null,"shortname":null,"arch":null,"eula_url":"","friendly_version":"1.2","id":1202,"release_stage":"released","identifier":"SUSE-Manager-Mon-Unlimited-Virtual","extensions":[],"version":"1.2","recommended":false,"former_identifier":"SUSE-Manager-Mon-Unlimited-Virtual","release_type":null,"migration_extra":false,"friendly_name":"SUSE Manager Monitoring Unlimited Virtual 1.2","offline_predecessor_ids":[],"name":"SUSE Manager Monitoring Unlimited Virtual"},{"former_identifier":"SUSE-Manager-Mon-Unlimited-Virtual-Z","release_type":null,"friendly_name":"SUSE Manager Monitoring Unlimited Virtual Z 1.2","migration_extra":false,"offline_predecessor_ids":[],"name":"SUSE Manager Monitoring Unlimited Virtual Z","version":"1.2","recommended":false,"release_stage":"released","identifier":"SUSE-Manager-Mon-Unlimited-Virtual-Z","id":1203,"extensions":[],"friendly_version":"1.2","arch":null,"eula_url":"","free":false,"description":null,"shortname":null,"product_type":"extension","cpe":null,"online_predecessor_ids":[],"product_class":"SM_ENT_MON_Z","repositories":[],"predecessor_ids":[]},{"eula_url":"","arch":null,"free":false,"description":null,"shortname":null,"product_type":"extension","cpe":null,"predecessor_ids":[],"online_predecessor_ids":[],"repositories":[],"product_class":"SM_ENT_PROV_V","offline_predecessor_ids":[],"name":"SUSE Manager Provisioning Unlimited Virtual","former_identifier":"SUSE-Manager-Prov-Unlimited-Virtual","release_type":null,"migration_extra":false,"friendly_name":"SUSE Manager Provisioning Unlimited Virtual 1.2","recommended":false,"version":"1.2","extensions":[],"id":1204,"release_stage":"released","identifier":"SUSE-Manager-Prov-Unlimited-Virtual","friendly_version":"1.2"},{"release_stage":"released","id":1205,"identifier":"SUSE-Manager-Prov-Unlimited-Virtual-Z","extensions":[],"friendly_version":"1.2","friendly_name":"SUSE Manager Provisioning Unlimited Virtual Z 1.2","migration_extra":false,"former_identifier":"SUSE-Manager-Prov-Unlimited-Virtual-Z","release_type":null,"name":"SUSE Manager Provisioning Unlimited Virtual Z","offline_predecessor_ids":[],"version":"1.2","recommended":false,"cpe":null,"product_type":"extension","product_class":"SM_ENT_PROV_Z","online_predecessor_ids":[],"repositories":[],"predecessor_ids":[],"arch":null,"eula_url":"","shortname":null,"description":null,"free":false},{"predecessor_ids":[],"online_predecessor_ids":[],"product_class":"WEBYAST","repositories":[{"enabled":true,"id":1185,"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-WebYaST-1.3-Pool/sle-11-x86_64/","name":"SLE11-SP2-WebYaST-1.3-Pool","installer_updates":false,"description":"SLE11-SP2-WebYaST-1.3-Pool for sle-11-x86_64"},{"enabled":true,"id":1188,"distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-WebYaST-1.3-Updates/sle-11-x86_64/","installer_updates":false,"name":"SLE11-SP2-WebYaST-1.3-Updates","description":"SLE11-SP2-WebYaST-1.3-Updates for sle-11-x86_64"},{"distro_target":"sle-11-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-WebYaST-1.3-Pool/sle-11-s390x/","enabled":true,"id":1411,"description":"SLE11-SP2-WebYaST-1.3-Pool for sle-11-s390x","installer_updates":false,"name":"SLE11-SP2-WebYaST-1.3-Pool"},{"installer_updates":false,"name":"SLE11-SP2-WebYaST-1.3-Updates","description":"SLE11-SP2-WebYaST-1.3-Updates for sle-11-s390x","enabled":true,"id":1412,"distro_target":"sle-11-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-WebYaST-1.3-Updates/sle-11-s390x/"},{"name":"SLE11-SP2-WebYaST-1.3-Updates","installer_updates":false,"description":"SLE11-SP2-WebYaST-1.3-Updates for sle-11-i586","enabled":true,"id":1413,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-WebYaST-1.3-Updates/sle-11-i586/"},{"description":"SLE11-SP2-WebYaST-1.3-Pool for sle-11-ppc64","installer_updates":false,"name":"SLE11-SP2-WebYaST-1.3-Pool","url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-WebYaST-1.3-Pool/sle-11-ppc64/","distro_target":"sle-11-ppc64","autorefresh":true,"id":1414,"enabled":true},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-WebYaST-1.3-Updates/sle-11-ia64/","autorefresh":true,"distro_target":"sle-11-ia64","id":1415,"enabled":true,"description":"SLE11-SP2-WebYaST-1.3-Updates for sle-11-ia64","name":"SLE11-SP2-WebYaST-1.3-Updates","installer_updates":false},{"description":"SLE11-SP2-WebYaST-1.3-Pool for sle-11-ia64","name":"SLE11-SP2-WebYaST-1.3-Pool","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-WebYaST-1.3-Pool/sle-11-ia64/","autorefresh":true,"distro_target":"sle-11-ia64","id":1416,"enabled":true},{"enabled":true,"id":1417,"distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-WebYaST-1.3-Pool/sle-11-i586/","installer_updates":false,"name":"SLE11-SP2-WebYaST-1.3-Pool","description":"SLE11-SP2-WebYaST-1.3-Pool for sle-11-i586"},{"distro_target":"sle-11-ppc64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-WebYaST-1.3-Updates/sle-11-ppc64/","enabled":true,"id":1418,"description":"SLE11-SP2-WebYaST-1.3-Updates for sle-11-ppc64","installer_updates":false,"name":"SLE11-SP2-WebYaST-1.3-Updates"}],"cpe":null,"product_type":"extension","description":null,"shortname":null,"free":true,"eula_url":"","arch":null,"friendly_version":"1.3","extensions":[],"release_stage":"released","identifier":"sle-11-WebYaST","id":1206,"recommended":false,"version":"1.3","name":"SUSE WebYaST","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"SUSE WebYaST 1.3","former_identifier":"sle-11-WebYaST","release_type":null},{"extensions":[],"identifier":"sle-11-WebYaST-1.3-migration","release_stage":"released","id":1207,"friendly_version":"1.2","offline_predecessor_ids":[],"name":"SUSE WebYaST","former_identifier":"sle-11-WebYaST-1.3-migration","release_type":null,"friendly_name":"SUSE WebYaST 1.2 (Migration)","migration_extra":false,"recommended":false,"version":"1.2","product_type":"extension","cpe":null,"predecessor_ids":[],"online_predecessor_ids":[],"repositories":[{"description":"SLE11-SP2-WebYaST-1.3-Pool for sle-11-x86_64","name":"SLE11-SP2-WebYaST-1.3-Pool","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-WebYaST-1.3-Pool/sle-11-x86_64/","enabled":true,"id":1185},{"enabled":true,"id":1411,"autorefresh":true,"distro_target":"sle-11-s390x","url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-WebYaST-1.3-Pool/sle-11-s390x/","name":"SLE11-SP2-WebYaST-1.3-Pool","installer_updates":false,"description":"SLE11-SP2-WebYaST-1.3-Pool for sle-11-s390x"},{"installer_updates":false,"name":"SLE11-SP2-WebYaST-1.3-Pool","description":"SLE11-SP2-WebYaST-1.3-Pool for sle-11-ppc64","id":1414,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-WebYaST-1.3-Pool/sle-11-ppc64/","distro_target":"sle-11-ppc64","autorefresh":true},{"installer_updates":false,"name":"SLE11-SP2-WebYaST-1.3-Pool","description":"SLE11-SP2-WebYaST-1.3-Pool for sle-11-ia64","id":1416,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-WebYaST-1.3-Pool/sle-11-ia64/","distro_target":"sle-11-ia64","autorefresh":true},{"description":"SLE11-SP2-WebYaST-1.3-Pool for sle-11-i586","name":"SLE11-SP2-WebYaST-1.3-Pool","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-WebYaST-1.3-Pool/sle-11-i586/","enabled":true,"id":1417}],"product_class":"WEBYAST","eula_url":"","arch":null,"free":true,"shortname":null,"description":null},{"arch":"x86_64","eula_url":"","shortname":"Adv-Sys-Mgmt-Module","description":"

This Module contains current versions of the popular configuration management frameworks Puppet and CFEngine as well as the new systems management toolbox called machinery.

The machinery tool will be frequently updated and is SUSE's upcoming systems management toolbox for inspecting and validating systems remotely, storing their system description and creating new systems to deploy them in datacenters and clouds.

","free":true,"cpe":"cpe:/o:suse:sle-module-adv-systems-management:12","product_type":"module","online_predecessor_ids":[],"repositories":[{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Adv-Systems-Management/12/x86_64/update/","distro_target":"sle-12-x86_64","autorefresh":true,"id":1704,"enabled":true,"description":"SLE-Module-Adv-Systems-Management12-Updates for sle-12-x86_64","installer_updates":false,"name":"SLE-Module-Adv-Systems-Management12-Updates"},{"autorefresh":true,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Adv-Systems-Management/12/x86_64/update_debug/","enabled":false,"id":1705,"description":"SLE-Module-Adv-Systems-Management12-Debuginfo-Updates for sle-12-x86_64","name":"SLE-Module-Adv-Systems-Management12-Debuginfo-Updates","installer_updates":false},{"enabled":true,"id":1706,"distro_target":"sle-12-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Adv-Systems-Management/12/x86_64/product/","installer_updates":false,"name":"SLE-Module-Adv-Systems-Management12-Pool","description":"SLE-Module-Adv-Systems-Management12-Pool for sle-12-x86_64"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Adv-Systems-Management/12/x86_64/product_debug/","autorefresh":false,"distro_target":"sle-12-x86_64","id":1707,"enabled":false,"description":"SLE-Module-Adv-Systems-Management12-Debuginfo-Pool for sle-12-x86_64","name":"SLE-Module-Adv-Systems-Management12-Debuginfo-Pool","installer_updates":false},{"id":1998,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Adv-Systems-Management/12/x86_64/product_source/","autorefresh":false,"distro_target":"sle-12-x86_64","name":"SLE-Module-Adv-Systems-Management12-Source-Pool","installer_updates":false,"description":"SLE-Module-Adv-Systems-Management12-Source-Pool for sle-12-x86_64"}],"product_class":"MODULE","predecessor_ids":[],"migration_extra":false,"friendly_name":"Advanced Systems Management Module 12 x86_64","release_type":null,"former_identifier":"sle-module-adv-systems-management","name":"Advanced Systems Management Module","offline_predecessor_ids":[],"version":"12","recommended":false,"release_stage":"released","id":1212,"identifier":"sle-module-adv-systems-management","extensions":[],"friendly_version":"12"},{"friendly_name":"SUSE Linux Enterprise Software Bootstrap Kit 12 ppc64le","migration_extra":false,"former_identifier":"sle-bsk","release_type":null,"name":"SUSE Linux Enterprise Software Bootstrap Kit","offline_predecessor_ids":[],"version":"12","recommended":false,"release_stage":"released","id":1214,"identifier":"sle-bsk","extensions":[],"friendly_version":"12","arch":"ppc64le","eula_url":"https://updates.suse.com/SUSE/Products/SLE-BSK/12/ppc64le/product.license/","description":"This is the SUSE Linux Enterprise Software Bootstrap Kit","shortname":"BSK12","free":false,"cpe":"cpe:/o:suse:sle-bsk:12","product_type":"base","repositories":[{"autorefresh":true,"distro_target":"sle-12-ppc64le","url":"https://updates.suse.com/SUSE/Updates/SLE-BSK/12/ppc64le/update/","enabled":true,"id":1640,"description":"SLE-BSK12-Updates for sle-12-ppc64le","name":"SLE-BSK12-Updates","installer_updates":false},{"description":"SLE-BSK12-Debuginfo-Updates for sle-12-ppc64le","name":"SLE-BSK12-Debuginfo-Updates","installer_updates":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-BSK/12/ppc64le/update_debug/","autorefresh":true,"distro_target":"sle-12-ppc64le","id":1641,"enabled":false},{"description":"SLE-BSK12-Pool for sle-12-ppc64le","name":"SLE-BSK12-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-12-ppc64le","url":"https://updates.suse.com/SUSE/Products/SLE-BSK/12/ppc64le/product/","enabled":true,"id":1642},{"url":"https://updates.suse.com/SUSE/Products/SLE-BSK/12/ppc64le/product_debug/","autorefresh":false,"distro_target":"sle-12-ppc64le","id":1643,"enabled":false,"description":"SLE-BSK12-Debuginfo-Pool for sle-12-ppc64le","name":"SLE-BSK12-Debuginfo-Pool","installer_updates":false}],"online_predecessor_ids":[],"product_class":"SLE-BSK","predecessor_ids":[]},{"extensions":[],"release_stage":"released","identifier":"sle-bsk","id":1215,"friendly_version":"12","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Software Bootstrap Kit","release_type":null,"former_identifier":"sle-bsk","friendly_name":"SUSE Linux Enterprise Software Bootstrap Kit 12 s390x","migration_extra":false,"recommended":false,"version":"12","product_type":"base","cpe":"cpe:/o:suse:sle-bsk:12","predecessor_ids":[],"product_class":"SLE-BSK","online_predecessor_ids":[],"repositories":[{"description":"SLE-BSK12-Updates for sle-12-s390x","installer_updates":false,"name":"SLE-BSK12-Updates","url":"https://updates.suse.com/SUSE/Updates/SLE-BSK/12/s390x/update/","distro_target":"sle-12-s390x","autorefresh":true,"id":1644,"enabled":true},{"distro_target":"sle-12-s390x","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-BSK/12/s390x/update_debug/","enabled":false,"id":1645,"description":"SLE-BSK12-Debuginfo-Updates for sle-12-s390x","installer_updates":false,"name":"SLE-BSK12-Debuginfo-Updates"},{"installer_updates":false,"name":"SLE-BSK12-Pool","description":"SLE-BSK12-Pool for sle-12-s390x","id":1646,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-BSK/12/s390x/product/","distro_target":"sle-12-s390x","autorefresh":false},{"url":"https://updates.suse.com/SUSE/Products/SLE-BSK/12/s390x/product_debug/","autorefresh":false,"distro_target":"sle-12-s390x","id":1647,"enabled":false,"description":"SLE-BSK12-Debuginfo-Pool for sle-12-s390x","name":"SLE-BSK12-Debuginfo-Pool","installer_updates":false}],"eula_url":"https://updates.suse.com/SUSE/Products/SLE-BSK/12/s390x/product.license/","arch":"s390x","free":false,"shortname":"BSK12","description":"This is the SUSE Linux Enterprise Software Bootstrap Kit"},{"offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Software Bootstrap Kit","former_identifier":"sle-bsk","release_type":null,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Software Bootstrap Kit 12 x86_64","recommended":false,"version":"12","extensions":[],"release_stage":"released","identifier":"sle-bsk","id":1216,"friendly_version":"12","eula_url":"https://updates.suse.com/SUSE/Products/SLE-BSK/12/x86_64/product.license/","arch":"x86_64","free":false,"shortname":"BSK12","description":"This is the SUSE Linux Enterprise Software Bootstrap Kit","product_type":"base","cpe":"cpe:/o:suse:sle-bsk:12","predecessor_ids":[],"online_predecessor_ids":[],"repositories":[{"id":1648,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-BSK/12/x86_64/update/","autorefresh":true,"distro_target":"sle-12-x86_64","name":"SLE-BSK12-Updates","installer_updates":false,"description":"SLE-BSK12-Updates for sle-12-x86_64"},{"name":"SLE-BSK12-Debuginfo-Updates","installer_updates":false,"description":"SLE-BSK12-Debuginfo-Updates for sle-12-x86_64","enabled":false,"id":1649,"autorefresh":true,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-BSK/12/x86_64/update_debug/"},{"enabled":true,"id":1650,"autorefresh":false,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-BSK/12/x86_64/product/","name":"SLE-BSK12-Pool","installer_updates":false,"description":"SLE-BSK12-Pool for sle-12-x86_64"},{"url":"https://updates.suse.com/SUSE/Products/SLE-BSK/12/x86_64/product_debug/","distro_target":"sle-12-x86_64","autorefresh":false,"id":1651,"enabled":false,"description":"SLE-BSK12-Debuginfo-Pool for sle-12-x86_64","installer_updates":false,"name":"SLE-BSK12-Debuginfo-Pool"}],"product_class":"SLE-BSK"},{"id":1218,"release_stage":"released","identifier":"sle-module-public-cloud","extensions":[],"friendly_version":"12","migration_extra":false,"friendly_name":"Public Cloud Module 12 ppc64le","release_type":null,"former_identifier":"sle-module-public-cloud","name":"Public Cloud Module","offline_predecessor_ids":[],"version":"12","recommended":false,"cpe":"cpe:/o:suse:sle-module-public-cloud:12","product_type":"module","online_predecessor_ids":[],"product_class":"MODULE","repositories":[{"id":1692,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/12/ppc64le/update/","autorefresh":true,"distro_target":"sle-12-ppc64le","name":"SLE-Module-Public-Cloud12-Updates","installer_updates":false,"description":"SLE-Module-Public-Cloud12-Updates for sle-12-ppc64le"},{"name":"SLE-Module-Public-Cloud12-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-Public-Cloud12-Debuginfo-Updates for sle-12-ppc64le","enabled":false,"id":1693,"autorefresh":true,"distro_target":"sle-12-ppc64le","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/12/ppc64le/update_debug/"},{"description":"SLE-Module-Public-Cloud12-Pool for sle-12-ppc64le","name":"SLE-Module-Public-Cloud12-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-12-ppc64le","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/12/ppc64le/product/","enabled":true,"id":1694},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/12/ppc64le/product_debug/","distro_target":"sle-12-ppc64le","autorefresh":false,"id":1695,"enabled":false,"description":"SLE-Module-Public-Cloud12-Debuginfo-Pool for sle-12-ppc64le","installer_updates":false,"name":"SLE-Module-Public-Cloud12-Debuginfo-Pool"},{"description":"SLE-Module-Public-Cloud12-Source-Pool for sle-12-ppc64le","installer_updates":false,"name":"SLE-Module-Public-Cloud12-Source-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/12/ppc64le/product_source/","distro_target":"sle-12-ppc64le","autorefresh":false,"id":1993,"enabled":false}],"predecessor_ids":[],"arch":"ppc64le","eula_url":"","shortname":"Public-Cloud-Module","description":"

The Public Cloud Module is a collection of tools that enables you to create and manage cloud images from the commandline on SUSE Linux Enterprise Server. When building your own images with KIWI or SUSE Studio, initialization code specific to the target cloud is included in that image.

Access to the Public Cloud Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself; please check the Release Notes for further details.

","free":true},{"shortname":"Public-Cloud-Module","description":"

The Public Cloud Module is a collection of tools that enables you to create and manage cloud images from the commandline on SUSE Linux Enterprise Server. When building your own images with KIWI or SUSE Studio, initialization code specific to the target cloud is included in that image.

Access to the Public Cloud Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself; please check the Release Notes for further details.

","free":true,"arch":"s390x","eula_url":"","product_class":"MODULE","online_predecessor_ids":[],"repositories":[{"id":1696,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/12/s390x/update/","distro_target":"sle-12-s390x","autorefresh":true,"installer_updates":false,"name":"SLE-Module-Public-Cloud12-Updates","description":"SLE-Module-Public-Cloud12-Updates for sle-12-s390x"},{"id":1697,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/12/s390x/update_debug/","distro_target":"sle-12-s390x","autorefresh":true,"installer_updates":false,"name":"SLE-Module-Public-Cloud12-Debuginfo-Updates","description":"SLE-Module-Public-Cloud12-Debuginfo-Updates for sle-12-s390x"},{"description":"SLE-Module-Public-Cloud12-Pool for sle-12-s390x","name":"SLE-Module-Public-Cloud12-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/12/s390x/product/","autorefresh":false,"distro_target":"sle-12-s390x","id":1698,"enabled":true},{"id":1699,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/12/s390x/product_debug/","distro_target":"sle-12-s390x","autorefresh":false,"installer_updates":false,"name":"SLE-Module-Public-Cloud12-Debuginfo-Pool","description":"SLE-Module-Public-Cloud12-Debuginfo-Pool for sle-12-s390x"},{"installer_updates":false,"name":"SLE-Module-Public-Cloud12-Source-Pool","description":"SLE-Module-Public-Cloud12-Source-Pool for sle-12-s390x","id":1994,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/12/s390x/product_source/","distro_target":"sle-12-s390x","autorefresh":false}],"predecessor_ids":[],"cpe":"cpe:/o:suse:sle-module-public-cloud:12","product_type":"module","version":"12","recommended":false,"migration_extra":false,"friendly_name":"Public Cloud Module 12 s390x","former_identifier":"sle-module-public-cloud","release_type":null,"name":"Public Cloud Module","offline_predecessor_ids":[],"friendly_version":"12","release_stage":"released","identifier":"sle-module-public-cloud","id":1219,"extensions":[]},{"eula_url":"","arch":"x86_64","shortname":"Public-Cloud-Module","description":"

The Public Cloud Module is a collection of tools that enables you to create and manage cloud images from the commandline on SUSE Linux Enterprise Server. When building your own images with KIWI or SUSE Studio, initialization code specific to the target cloud is included in that image.

Access to the Public Cloud Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself; please check the Release Notes for further details.

","free":true,"cpe":"cpe:/o:suse:sle-module-public-cloud:12","product_type":"module","predecessor_ids":[],"repositories":[{"description":"SLE-Module-Public-Cloud12-Updates for sle-12-x86_64","installer_updates":false,"name":"SLE-Module-Public-Cloud12-Updates","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/12/x86_64/update/","distro_target":"sle-12-x86_64","autorefresh":true,"id":1700,"enabled":true},{"installer_updates":false,"name":"SLE-Module-Public-Cloud12-Debuginfo-Updates","description":"SLE-Module-Public-Cloud12-Debuginfo-Updates for sle-12-x86_64","enabled":false,"id":1701,"distro_target":"sle-12-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/12/x86_64/update_debug/"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/12/x86_64/product/","distro_target":"sle-12-x86_64","autorefresh":false,"id":1702,"enabled":true,"description":"SLE-Module-Public-Cloud12-Pool for sle-12-x86_64","installer_updates":false,"name":"SLE-Module-Public-Cloud12-Pool"},{"description":"SLE-Module-Public-Cloud12-Debuginfo-Pool for sle-12-x86_64","name":"SLE-Module-Public-Cloud12-Debuginfo-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/12/x86_64/product_debug/","autorefresh":false,"distro_target":"sle-12-x86_64","id":1703,"enabled":false},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/12/x86_64/product_source/","autorefresh":false,"distro_target":"sle-12-x86_64","id":1995,"enabled":false,"description":"SLE-Module-Public-Cloud12-Source-Pool for sle-12-x86_64","name":"SLE-Module-Public-Cloud12-Source-Pool","installer_updates":false}],"online_predecessor_ids":[],"product_class":"MODULE","name":"Public Cloud Module","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"Public Cloud Module 12 x86_64","release_type":null,"former_identifier":"sle-module-public-cloud","recommended":false,"version":"12","extensions":[],"id":1220,"release_stage":"released","identifier":"sle-module-public-cloud","friendly_version":"12"},{"friendly_version":"4","extensions":[],"id":1221,"release_stage":"released","identifier":"SUSE-Cloud","recommended":false,"version":"4","name":"SUSE Cloud","offline_predecessor_ids":[],"friendly_name":"SUSE Cloud 4 x86_64","migration_extra":false,"release_type":null,"former_identifier":"SUSE-Cloud","predecessor_ids":[],"repositories":[{"name":"SUSE-Cloud-4-Pool","installer_updates":false,"description":"SUSE-Cloud-4-Pool for sle-11-x86_64","id":1466,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SUSE-Cloud-4-Pool/sle-11-x86_64/","autorefresh":false,"distro_target":"sle-11-x86_64"},{"url":"https://updates.suse.com/repo/$RCE/SUSE-Cloud-4-Updates/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64","id":1467,"enabled":true,"description":"SUSE-Cloud-4-Updates for sle-11-x86_64","name":"SUSE-Cloud-4-Updates","installer_updates":false},{"enabled":false,"id":1770,"autorefresh":false,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SUSE-Cloud-5-Pool/sle-11-x86_64/","name":"SUSE-Cloud-5-Pool","installer_updates":false,"description":"SUSE-Cloud-5-Pool for sle-11-x86_64"},{"url":"https://updates.suse.com/repo/$RCE/SUSE-Cloud-5-Updates/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64","id":1771,"enabled":false,"description":"SUSE-Cloud-5-Updates for sle-11-x86_64","name":"SUSE-Cloud-5-Updates","installer_updates":false}],"online_predecessor_ids":[],"product_class":"SUSE_CLOUD","cpe":null,"product_type":"extension","shortname":null,"description":null,"free":false,"eula_url":"","arch":"x86_64"},{"free":false,"shortname":"SLEWE12","description":"SUSE Linux Enterprise Workstation Extension extends the functionality of SUSE Linux Enterprise Server with packages of SUSE Linux Enterprise Desktop, like additional desktop applications (office suite, email client, graphical editor ...) and libraries. It allows to combine both products to create a full featured Workstation.","arch":"x86_64","eula_url":"https://updates.suse.com/SUSE/Products/SLE-WE/12/x86_64/product.license/","online_predecessor_ids":[],"product_class":"SLE-WE","repositories":[{"distro_target":null,"autorefresh":true,"url":"http://download.nvidia.com/novell/sle12/","enabled":true,"id":1503,"description":"SLE-12-GA-Desktop-NVIDIA-Driver","installer_updates":false,"name":"SLE-12-GA-Desktop-NVIDIA-Driver"},{"installer_updates":false,"name":"SLE-WE12-Updates","description":"SLE-WE12-Updates for sle-12-x86_64","enabled":true,"id":1652,"distro_target":"sle-12-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-WE/12/x86_64/update/"},{"description":"SLE-WE12-Debuginfo-Updates for sle-12-x86_64","installer_updates":false,"name":"SLE-WE12-Debuginfo-Updates","distro_target":"sle-12-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-WE/12/x86_64/update_debug/","enabled":false,"id":1653},{"url":"https://updates.suse.com/SUSE/Products/SLE-WE/12/x86_64/product/","distro_target":"sle-12-x86_64","autorefresh":false,"id":1654,"enabled":true,"description":"SLE-WE12-Pool for sle-12-x86_64","installer_updates":false,"name":"SLE-WE12-Pool"},{"distro_target":"sle-12-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-WE/12/x86_64/product_debug/","enabled":false,"id":1655,"description":"SLE-WE12-Debuginfo-Pool for sle-12-x86_64","installer_updates":false,"name":"SLE-WE12-Debuginfo-Pool"}],"predecessor_ids":[],"product_type":"extension","cpe":"cpe:/o:suse:sle-we:12","version":"12","recommended":false,"former_identifier":"sle-we","release_type":null,"friendly_name":"SUSE Linux Enterprise Workstation Extension 12 x86_64","migration_extra":false,"offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Workstation Extension","friendly_version":"12","id":1222,"release_stage":"released","identifier":"sle-we","extensions":[]},{"free":true,"shortname":"SDK12","description":"

SUSE Linux Enterprise Software Development Kit 12 is the Software Development Kit for the family of SUSE Linux Enterprise products. It is a free of charge extension for partners and customers working with SUSE Linux Enterprise Server and Desktop and derived products.

Packages on the SDK are delivered without L3 support; maintenance updates will be done for critical security and critical non-security issues, and where needed to remain in sync with packages delivered in the SUSE Linux Enterprise Server and Desktop products.

Packages to rebuild SUSE Linux Enterprise Server are not part of the SUSE Linux Enterprise Software Development Kit.

","arch":"x86_64","eula_url":"https://updates.suse.com/SUSE/Products/SLE-SDK/12/x86_64/product.license/","online_predecessor_ids":[],"product_class":"SLE-SDK","repositories":[{"installer_updates":false,"name":"SLE-SDK12-Updates","description":"SLE-SDK12-Updates for sle-12-x86_64","enabled":true,"id":1664,"distro_target":"sle-12-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-SDK/12/x86_64/update/"},{"name":"SLE-SDK12-Debuginfo-Updates","installer_updates":false,"description":"SLE-SDK12-Debuginfo-Updates for sle-12-x86_64","id":1665,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-SDK/12/x86_64/update_debug/","autorefresh":true,"distro_target":"sle-12-x86_64"},{"id":1666,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-SDK/12/x86_64/product/","autorefresh":false,"distro_target":"sle-12-x86_64","name":"SLE-SDK12-Pool","installer_updates":false,"description":"SLE-SDK12-Pool for sle-12-x86_64"},{"url":"https://updates.suse.com/SUSE/Products/SLE-SDK/12/x86_64/product_debug/","autorefresh":false,"distro_target":"sle-12-x86_64","id":1667,"enabled":false,"description":"SLE-SDK12-Debuginfo-Pool for sle-12-x86_64","name":"SLE-SDK12-Debuginfo-Pool","installer_updates":false}],"predecessor_ids":[],"product_type":"extension","cpe":"cpe:/o:suse:sle-sdk:12","version":"12","recommended":false,"former_identifier":"sle-sdk","release_type":null,"friendly_name":"SUSE Linux Enterprise Software Development Kit 12 x86_64","migration_extra":false,"offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Software Development Kit","friendly_version":"12","release_stage":"released","identifier":"sle-sdk","id":1223,"extensions":[]},{"id":1224,"release_stage":"released","identifier":"SUSE-Manager-Server","extensions":[{"predecessor_ids":[],"product_class":"SM_ENT_MGM_S","online_predecessor_ids":[],"repositories":[],"cpe":null,"product_type":"extension","shortname":null,"description":null,"free":false,"eula_url":"","arch":null,"friendly_version":"1.2","extensions":[],"release_stage":"released","identifier":"SUSE-Manager-Mgmt-Single","id":1076,"recommended":false,"version":"1.2","name":"SUSE Manager Mgmt Single","offline_predecessor_ids":[],"friendly_name":"SUSE Manager Mgmt Single 1.2","migration_extra":false,"former_identifier":"SUSE-Manager-Mgmt-Single","release_type":null},{"description":null,"shortname":null,"free":false,"eula_url":"","arch":null,"predecessor_ids":[],"online_predecessor_ids":[],"product_class":"SM_ENT_MGM_V","repositories":[],"cpe":null,"product_type":"extension","recommended":false,"version":"1.2","name":"SUSE Manager Mgmt Unlimited Virtual","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"SUSE Manager Mgmt Unlimited Virtual 1.2","release_type":null,"former_identifier":"SUSE-Manager-Mgmt-Unlimited-Virtual","friendly_version":"1.2","extensions":[],"identifier":"SUSE-Manager-Mgmt-Unlimited-Virtual","release_stage":"released","id":1078},{"cpe":null,"product_type":"extension","online_predecessor_ids":[],"product_class":"SM_ENT_PROV_S","repositories":[],"predecessor_ids":[],"arch":null,"eula_url":"","shortname":null,"description":null,"free":false,"id":1097,"release_stage":"released","identifier":"SUSE-Manager-Prov-Single","extensions":[],"friendly_version":"1.2","friendly_name":"SUSE Manager Mgmt Single 1.2","migration_extra":false,"release_type":null,"former_identifier":"SUSE-Manager-Prov-Single","name":"SUSE Manager Mgmt Single","offline_predecessor_ids":[],"version":"1.2","recommended":false},{"arch":null,"eula_url":"","description":null,"shortname":null,"free":false,"cpe":null,"product_type":"extension","online_predecessor_ids":[],"product_class":"SM_ENT_MGM_Z","repositories":[],"predecessor_ids":[],"friendly_name":"SUSE Manager Mgmt Unlimited Virtual Z 1.2","migration_extra":false,"former_identifier":"SUSE-Manager-Mgmt-Unlimited-Virtual-Z","release_type":null,"name":"SUSE Manager Mgmt Unlimited Virtual Z","offline_predecessor_ids":[],"version":"1.2","recommended":false,"identifier":"SUSE-Manager-Mgmt-Unlimited-Virtual-Z","release_stage":"released","id":1200,"extensions":[],"friendly_version":"1.2"},{"migration_extra":false,"friendly_name":"SUSE Manager Monitoring Single 1.2","former_identifier":"SUSE-Manager-Mon-Single","release_type":null,"name":"SUSE Manager Monitoring Single","offline_predecessor_ids":[],"version":"1.2","recommended":false,"release_stage":"released","id":1201,"identifier":"SUSE-Manager-Mon-Single","extensions":[],"friendly_version":"1.2","arch":null,"eula_url":"","description":null,"shortname":null,"free":false,"cpe":null,"product_type":"extension","product_class":"SM_ENT_MON_S","online_predecessor_ids":[],"repositories":[],"predecessor_ids":[]},{"release_stage":"released","identifier":"SUSE-Manager-Mon-Unlimited-Virtual","id":1202,"extensions":[],"friendly_version":"1.2","former_identifier":"SUSE-Manager-Mon-Unlimited-Virtual","release_type":null,"migration_extra":false,"friendly_name":"SUSE Manager Monitoring Unlimited Virtual 1.2","offline_predecessor_ids":[],"name":"SUSE Manager Monitoring Unlimited Virtual","version":"1.2","recommended":false,"product_type":"extension","cpe":null,"online_predecessor_ids":[],"product_class":"SM_ENT_MON_V","repositories":[],"predecessor_ids":[],"arch":null,"eula_url":"","free":false,"shortname":null,"description":null},{"arch":null,"eula_url":"","shortname":null,"description":null,"free":false,"cpe":null,"product_type":"extension","online_predecessor_ids":[],"repositories":[],"product_class":"SM_ENT_MON_Z","predecessor_ids":[],"migration_extra":false,"friendly_name":"SUSE Manager Monitoring Unlimited Virtual Z 1.2","former_identifier":"SUSE-Manager-Mon-Unlimited-Virtual-Z","release_type":null,"name":"SUSE Manager Monitoring Unlimited Virtual Z","offline_predecessor_ids":[],"version":"1.2","recommended":false,"id":1203,"release_stage":"released","identifier":"SUSE-Manager-Mon-Unlimited-Virtual-Z","extensions":[],"friendly_version":"1.2"},{"extensions":[],"identifier":"SUSE-Manager-Prov-Unlimited-Virtual","release_stage":"released","id":1204,"friendly_version":"1.2","offline_predecessor_ids":[],"name":"SUSE Manager Provisioning Unlimited Virtual","release_type":null,"former_identifier":"SUSE-Manager-Prov-Unlimited-Virtual","migration_extra":false,"friendly_name":"SUSE Manager Provisioning Unlimited Virtual 1.2","recommended":false,"version":"1.2","product_type":"extension","cpe":null,"predecessor_ids":[],"online_predecessor_ids":[],"product_class":"SM_ENT_PROV_V","repositories":[],"eula_url":"","arch":null,"free":false,"shortname":null,"description":null},{"name":"SUSE Manager Provisioning Unlimited Virtual Z","offline_predecessor_ids":[],"friendly_name":"SUSE Manager Provisioning Unlimited Virtual Z 1.2","migration_extra":false,"release_type":null,"former_identifier":"SUSE-Manager-Prov-Unlimited-Virtual-Z","recommended":false,"version":"1.2","extensions":[],"id":1205,"release_stage":"released","identifier":"SUSE-Manager-Prov-Unlimited-Virtual-Z","friendly_version":"1.2","eula_url":"","arch":null,"description":null,"shortname":null,"free":false,"cpe":null,"product_type":"extension","predecessor_ids":[],"repositories":[],"online_predecessor_ids":[],"product_class":"SM_ENT_PROV_Z"}],"friendly_version":"2.1","migration_extra":false,"friendly_name":"SUSE Manager Server System Z 2.1 s390x","release_type":null,"former_identifier":"SUSE-Manager-Server","name":"SUSE Manager Server System Z","offline_predecessor_ids":[],"version":"2.1","recommended":false,"cpe":null,"product_type":"base","repositories":[{"name":"SLES11-SP3-Pool","installer_updates":false,"description":"SLES11-SP3-Pool for sle-11-s390x","enabled":true,"id":729,"autorefresh":true,"distro_target":"sle-11-s390x","url":"https://updates.suse.com/repo/$RCE/SLES11-SP3-Pool/sle-11-s390x/"},{"enabled":true,"id":731,"distro_target":"sle-11-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP3-Updates/sle-11-s390x/","installer_updates":false,"name":"SLES11-SP3-Updates","description":"SLES11-SP3-Updates for sle-11-s390x"},{"id":732,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP3-Debuginfo-Pool/sle-11-s390x/","distro_target":"sle-11-s390x","autorefresh":true,"installer_updates":false,"name":"SLE11-SP3-Debuginfo-Pool","description":"SLE11-SP3-Debuginfo-Pool for sle-11-s390x"},{"enabled":false,"id":733,"distro_target":"sle-11-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP3-Debuginfo-Updates/sle-11-s390x/","installer_updates":false,"name":"SLE11-SP3-Debuginfo-Updates","description":"SLE11-SP3-Debuginfo-Updates for sle-11-s390x"},{"id":1208,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP3-SUSE-Manager-Tools/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64","name":"SLES11-SP3-SUSE-Manager-Tools","installer_updates":false,"description":"SLES11-SP3-SUSE-Manager-Tools for sle-11-x86_64"},{"url":"https://updates.suse.com/repo/$RCE/SUSE-Manager-Server-2.1-Pool/sle-11-s390x/","autorefresh":false,"distro_target":"sle-11-s390x","id":1471,"enabled":true,"description":"SUSE-Manager-Server-2.1-Pool for sle-11-s390x","name":"SUSE-Manager-Server-2.1-Pool","installer_updates":false},{"id":1472,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SUSE-Manager-Server-2.1-Updates/sle-11-s390x/","autorefresh":true,"distro_target":"sle-11-s390x","name":"SUSE-Manager-Server-2.1-Updates","installer_updates":false,"description":"SUSE-Manager-Server-2.1-Updates for sle-11-s390x"},{"name":"SLES11-SP3-SUSE-Manager-Tools","installer_updates":false,"description":"SLES11-SP3-SUSE-Manager-Tools for sle-11-s390x","enabled":false,"id":1473,"autorefresh":true,"distro_target":"sle-11-s390x","url":"https://updates.suse.com/repo/$RCE/SLES11-SP3-SUSE-Manager-Tools/sle-11-s390x/"},{"url":"https://updates.suse.com/repo/$RCE/SLES11-SP3-SUSE-Manager-Tools/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true,"id":1572,"enabled":false,"description":"SLES11-SP3-SUSE-Manager-Tools for sle-11-i586","installer_updates":false,"name":"SLES11-SP3-SUSE-Manager-Tools"},{"distro_target":"sle-11-ia64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP3-SUSE-Manager-Tools/sle-11-ia64/","enabled":false,"id":1573,"description":"SLES11-SP3-SUSE-Manager-Tools for sle-11-ia64","installer_updates":false,"name":"SLES11-SP3-SUSE-Manager-Tools"},{"name":"SLES11-SP3-SUSE-Manager-Tools","installer_updates":false,"description":"SLES11-SP3-SUSE-Manager-Tools for sle-11-ppc64","id":1574,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP3-SUSE-Manager-Tools/sle-11-ppc64/","autorefresh":true,"distro_target":"sle-11-ppc64"},{"description":"SLES11-SP4-SUSE-Manager-Tools for sle-11-i586","installer_updates":false,"name":"SLES11-SP4-SUSE-Manager-Tools","url":"https://updates.suse.com/repo/$RCE/SLES11-SP4-SUSE-Manager-Tools/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true,"id":1841,"enabled":false},{"distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP4-SUSE-Manager-Tools/sle-11-x86_64/","enabled":false,"id":1842,"description":"SLES11-SP4-SUSE-Manager-Tools for sle-11-x86_64","installer_updates":false,"name":"SLES11-SP4-SUSE-Manager-Tools"},{"installer_updates":false,"name":"SLES11-SP4-SUSE-Manager-Tools","description":"SLES11-SP4-SUSE-Manager-Tools for sle-11-ppc64","id":1843,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP4-SUSE-Manager-Tools/sle-11-ppc64/","distro_target":"sle-11-ppc64","autorefresh":true},{"name":"SLES11-SP4-SUSE-Manager-Tools","installer_updates":false,"description":"SLES11-SP4-SUSE-Manager-Tools for sle-11-ia64","enabled":false,"id":1844,"autorefresh":true,"distro_target":"sle-11-ia64","url":"https://updates.suse.com/repo/$RCE/SLES11-SP4-SUSE-Manager-Tools/sle-11-ia64/"},{"description":"SLES11-SP4-SUSE-Manager-Tools for sle-11-s390x","installer_updates":false,"name":"SLES11-SP4-SUSE-Manager-Tools","url":"https://updates.suse.com/repo/$RCE/SLES11-SP4-SUSE-Manager-Tools/sle-11-s390x/","distro_target":"sle-11-s390x","autorefresh":true,"id":1845,"enabled":false}],"online_predecessor_ids":[],"product_class":"SMS-Z","predecessor_ids":[],"arch":"s390x","eula_url":"","shortname":null,"description":null,"free":false},{"eula_url":"https://updates.suse.com/SUSE/Products/SLE-HA/12/s390x/product.license/","arch":"s390x","shortname":"SLEHA-12","description":"SUSE Linux Enterprise High Availability Extension.","free":false,"cpe":"cpe:/o:suse:sle-ha:12","product_type":"extension","predecessor_ids":[],"repositories":[{"name":"SLE-HA12-Updates","installer_updates":false,"description":"SLE-HA12-Updates for sle-12-s390x","enabled":true,"id":1708,"autorefresh":true,"distro_target":"sle-12-s390x","url":"https://updates.suse.com/SUSE/Updates/SLE-HA/12/s390x/update/"},{"description":"SLE-HA12-Debuginfo-Updates for sle-12-s390x","installer_updates":false,"name":"SLE-HA12-Debuginfo-Updates","url":"https://updates.suse.com/SUSE/Updates/SLE-HA/12/s390x/update_debug/","distro_target":"sle-12-s390x","autorefresh":true,"id":1709,"enabled":false},{"url":"https://updates.suse.com/SUSE/Products/SLE-HA/12/s390x/product/","distro_target":"sle-12-s390x","autorefresh":false,"id":1710,"enabled":true,"description":"SLE-HA12-Pool for sle-12-s390x","installer_updates":false,"name":"SLE-HA12-Pool"},{"description":"SLE-HA12-Debuginfo-Pool for sle-12-s390x","name":"SLE-HA12-Debuginfo-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-HA/12/s390x/product_debug/","autorefresh":false,"distro_target":"sle-12-s390x","id":1711,"enabled":false}],"online_predecessor_ids":[],"product_class":"SLE-HAE-Z","name":"SUSE Linux Enterprise High Availability Extension","offline_predecessor_ids":[1080,1082,1084,1086,1257],"friendly_name":"SUSE Linux Enterprise High Availability Extension 12 s390x","migration_extra":false,"former_identifier":"sle-hae","release_type":null,"recommended":false,"version":"12","extensions":[],"release_stage":"released","identifier":"sle-ha","id":1244,"friendly_version":"12"},{"free":false,"description":"SUSE Linux Enterprise High Availability Extension.","shortname":"SLEHA-12","eula_url":"https://updates.suse.com/SUSE/Products/SLE-HA/12/x86_64/product.license/","arch":"x86_64","predecessor_ids":[],"repositories":[{"installer_updates":false,"name":"SLE-HA12-Updates","description":"SLE-HA12-Updates for sle-12-x86_64","id":1712,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-HA/12/x86_64/update/","distro_target":"sle-12-x86_64","autorefresh":true},{"description":"SLE-HA12-Debuginfo-Updates for sle-12-x86_64","installer_updates":false,"name":"SLE-HA12-Debuginfo-Updates","url":"https://updates.suse.com/SUSE/Updates/SLE-HA/12/x86_64/update_debug/","distro_target":"sle-12-x86_64","autorefresh":true,"id":1713,"enabled":false},{"installer_updates":false,"name":"SLE-HA12-Pool","description":"SLE-HA12-Pool for sle-12-x86_64","enabled":true,"id":1714,"distro_target":"sle-12-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-HA/12/x86_64/product/"},{"name":"SLE-HA12-Debuginfo-Pool","installer_updates":false,"description":"SLE-HA12-Debuginfo-Pool for sle-12-x86_64","enabled":false,"id":1715,"autorefresh":false,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-HA/12/x86_64/product_debug/"}],"online_predecessor_ids":[],"product_class":"SLE-HAE-X86","product_type":"extension","cpe":"cpe:/o:suse:sle-ha:12","recommended":false,"version":"12","offline_predecessor_ids":[958,961,967,971,1256],"name":"SUSE Linux Enterprise High Availability Extension","release_type":null,"former_identifier":"sle-hae","migration_extra":false,"friendly_name":"SUSE Linux Enterprise High Availability Extension 12 x86_64","friendly_version":"12","extensions":[],"release_stage":"released","id":1245,"identifier":"sle-ha"},{"online_predecessor_ids":[],"product_class":"SLE-M-T","repositories":[{"description":"SLE-Manager-Tools12-Updates for sle-12-ppc64le","installer_updates":false,"name":"SLE-Manager-Tools12-Updates","url":"https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/12/ppc64le/update/","distro_target":"sle-12-ppc64le","autorefresh":true,"id":1724,"enabled":true},{"id":1725,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/12/ppc64le/update_debug/","autorefresh":true,"distro_target":"sle-12-ppc64le","name":"SLE-Manager-Tools12-Debuginfo-Updates","installer_updates":false,"description":"SLE-Manager-Tools12-Debuginfo-Updates for sle-12-ppc64le"},{"id":1726,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/12/ppc64le/product/","autorefresh":false,"distro_target":"sle-12-ppc64le","name":"SLE-Manager-Tools12-Pool","installer_updates":false,"description":"SLE-Manager-Tools12-Pool for sle-12-ppc64le"},{"installer_updates":false,"name":"SLE-Manager-Tools12-Debuginfo-Pool","description":"SLE-Manager-Tools12-Debuginfo-Pool for sle-12-ppc64le","enabled":false,"id":1727,"distro_target":"sle-12-ppc64le","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/12/ppc64le/product_debug/"}],"predecessor_ids":[],"product_type":"extension","cpe":"cpe:/o:suse:sle-manager-tools:12","free":false,"description":"SUSE Manager Tools provide packages required to connect to a SUSE Manager Server.","shortname":"Manager-Tools","arch":"ppc64le","eula_url":"","friendly_version":"12","identifier":"sle-manager-tools","release_stage":"released","id":1246,"extensions":[],"version":"12","recommended":false,"former_identifier":"sle-manager-tools","release_type":null,"migration_extra":false,"friendly_name":"SUSE Manager Client Tools for SLE 12 ppc64le","offline_predecessor_ids":[],"name":"SUSE Manager Client Tools for SLE"},{"product_type":"extension","cpe":"cpe:/o:suse:sle-manager-tools:12","predecessor_ids":[],"online_predecessor_ids":[],"repositories":[{"installer_updates":false,"name":"SLE-Manager-Tools12-Updates","description":"SLE-Manager-Tools12-Updates for sle-12-s390x","id":1728,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/12/s390x/update/","distro_target":"sle-12-s390x","autorefresh":true},{"distro_target":"sle-12-s390x","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/12/s390x/update_debug/","enabled":false,"id":1729,"description":"SLE-Manager-Tools12-Debuginfo-Updates for sle-12-s390x","installer_updates":false,"name":"SLE-Manager-Tools12-Debuginfo-Updates"},{"enabled":true,"id":1730,"distro_target":"sle-12-s390x","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/12/s390x/product/","installer_updates":false,"name":"SLE-Manager-Tools12-Pool","description":"SLE-Manager-Tools12-Pool for sle-12-s390x"},{"description":"SLE-Manager-Tools12-Debuginfo-Pool for sle-12-s390x","installer_updates":false,"name":"SLE-Manager-Tools12-Debuginfo-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/12/s390x/product_debug/","distro_target":"sle-12-s390x","autorefresh":false,"id":1731,"enabled":false}],"product_class":"SLE-M-T","eula_url":"","arch":"s390x","free":false,"shortname":"Manager-Tools","description":"SUSE Manager Tools provide packages required to connect to a SUSE Manager Server.","extensions":[],"release_stage":"released","identifier":"sle-manager-tools","id":1247,"friendly_version":"12","offline_predecessor_ids":[],"name":"SUSE Manager Client Tools for SLE","former_identifier":"sle-manager-tools","release_type":null,"friendly_name":"SUSE Manager Client Tools for SLE 12 s390x","migration_extra":false,"recommended":false,"version":"12"},{"product_type":"extension","cpe":"cpe:/o:suse:sle-manager-tools:12","predecessor_ids":[],"online_predecessor_ids":[],"product_class":"SLE-M-T","repositories":[{"autorefresh":true,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/12/x86_64/update/","enabled":true,"id":1732,"description":"SLE-Manager-Tools12-Updates for sle-12-x86_64","name":"SLE-Manager-Tools12-Updates","installer_updates":false},{"id":1733,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/12/x86_64/update_debug/","distro_target":"sle-12-x86_64","autorefresh":true,"installer_updates":false,"name":"SLE-Manager-Tools12-Debuginfo-Updates","description":"SLE-Manager-Tools12-Debuginfo-Updates for sle-12-x86_64"},{"installer_updates":false,"name":"SLE-Manager-Tools12-Pool","description":"SLE-Manager-Tools12-Pool for sle-12-x86_64","id":1734,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/12/x86_64/product/","distro_target":"sle-12-x86_64","autorefresh":false},{"enabled":false,"id":1735,"autorefresh":false,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/12/x86_64/product_debug/","name":"SLE-Manager-Tools12-Debuginfo-Pool","installer_updates":false,"description":"SLE-Manager-Tools12-Debuginfo-Pool for sle-12-x86_64"}],"eula_url":"","arch":"x86_64","free":false,"shortname":"Manager-Tools","description":"SUSE Manager Tools provide packages required to connect to a SUSE Manager Server.","extensions":[],"release_stage":"released","identifier":"sle-manager-tools","id":1248,"friendly_version":"12","offline_predecessor_ids":[],"name":"SUSE Manager Client Tools for SLE","release_type":null,"former_identifier":"sle-manager-tools","migration_extra":false,"friendly_name":"SUSE Manager Client Tools for SLE 12 x86_64","recommended":false,"version":"12"},{"shortname":"IBMDLPS12","description":"IBM DLPAR SDK for SLE 12","free":true,"eula_url":"","arch":"ppc64le","predecessor_ids":[],"online_predecessor_ids":[],"repositories":[{"description":"IBM-DLPAR-SDK","installer_updates":false,"name":"IBM-DLPAR-SDK","distro_target":null,"autorefresh":true,"url":"https://public.dhe.ibm.com/software/server/POWER/Linux/toolchain/at/suse/SLES_12/","enabled":true,"id":4429}],"product_class":"SLES-PPC","cpe":"cpe:/o:suse:ibm-dlpar-sdk:12","product_type":"extension","recommended":false,"version":"12","name":"IBM DLPAR SDK for SLE","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"IBM DLPAR SDK for SLE 12 ppc64le","former_identifier":"ibm-dlpar-sdk","release_type":null,"friendly_version":"12","extensions":[],"release_stage":"released","id":1249,"identifier":"ibm-dlpar-sdk"},{"cpe":"cpe:/o:suse:ibm-dlpar-utils:12","product_type":"extension","predecessor_ids":[],"product_class":"SLES-PPC","online_predecessor_ids":[],"repositories":[{"enabled":true,"id":6216,"distro_target":null,"autorefresh":true,"url":"https://public.dhe.ibm.com/software/server/POWER/Linux/yum/OSS/SLES/12/ppc64le/","installer_updates":false,"name":"IBM-DLPAR-utils","description":"IBM-DLPAR-utils"}],"eula_url":"https://public.dhe.ibm.com/software/server/POWER/Linux/yum/OSS/SLES/12/ppc64le.license/","arch":"ppc64le","description":"IBM DLPAR Utils for SLE 12","shortname":"IBMDLPU12","free":true,"extensions":[],"release_stage":"released","id":1250,"identifier":"ibm-dlpar-utils","friendly_version":"12","name":"IBM DLPAR Utils for SLE","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"IBM DLPAR Utils for SLE 12 ppc64le","release_type":null,"former_identifier":"ibm-dlpar-utils","recommended":false,"version":"12"},{"online_predecessor_ids":[],"product_class":"RES","repositories":[{"name":"RES7","installer_updates":false,"description":"RES7 for x86_64","id":1736,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/RES7/x86_64/","autorefresh":true,"distro_target":"x86_64"},{"description":"RES7 for src","name":"RES7","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/RES7/src/","autorefresh":true,"distro_target":"src","id":1963,"enabled":true}],"predecessor_ids":[],"cpe":null,"product_type":"base","shortname":null,"description":null,"free":false,"arch":"x86_64","eula_url":"","friendly_version":"7","identifier":"RES","release_stage":"released","id":1251,"extensions":[],"version":"7","recommended":false,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Server with Expanded Support 7 x86_64","release_type":null,"former_identifier":"RES","name":"SUSE Linux Enterprise Server with Expanded Support","offline_predecessor_ids":[]},{"predecessor_ids":[],"product_class":"RES-HA","online_predecessor_ids":[],"repositories":[{"id":1737,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/RES7-HA/x86_64/","autorefresh":true,"distro_target":"x86_64","name":"RES7-HA","installer_updates":false,"description":"RES7-HA for x86_64"},{"distro_target":"src","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/RES7-HA/src/","enabled":true,"id":1964,"description":"RES7-HA for src","installer_updates":false,"name":"RES7-HA"}],"cpe":null,"product_type":"extension","shortname":null,"description":null,"free":false,"eula_url":"","arch":"x86_64","friendly_version":"7","extensions":[],"release_stage":"released","identifier":"RES-HA","id":1252,"recommended":false,"version":"7","name":"SUSE Linux Enterprise High Availability Extension with Expanded Support","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"SUSE Linux Enterprise High Availability Extension with Expanded Support 7 x86_64","release_type":null,"former_identifier":"RES-HA"},{"identifier":"sle-live-patching","release_stage":"released","id":1253,"extensions":[],"friendly_version":"12","release_type":null,"former_identifier":"sle-live-patching","migration_extra":false,"friendly_name":"SUSE Linux Enterprise Live Patching 12 x86_64","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Live Patching","version":"12","recommended":false,"product_type":"extension","cpe":"cpe:/o:suse:sle-live-patching:12","repositories":[{"url":"https://updates.suse.com/SUSE/Updates/SLE-Live-Patching/12/x86_64/update/","distro_target":"sle-12-x86_64","autorefresh":true,"id":1741,"enabled":true,"description":"SLE-Live-Patching12-Updates for sle-12-x86_64","installer_updates":false,"name":"SLE-Live-Patching12-Updates"},{"url":"https://updates.suse.com/SUSE/Updates/SLE-Live-Patching/12/x86_64/update_debug/","distro_target":"sle-12-x86_64","autorefresh":true,"id":1742,"enabled":false,"description":"SLE-Live-Patching12-Debuginfo-Updates for sle-12-x86_64","installer_updates":false,"name":"SLE-Live-Patching12-Debuginfo-Updates"},{"description":"SLE-Live-Patching12-Pool for sle-12-x86_64","installer_updates":false,"name":"SLE-Live-Patching12-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Live-Patching/12/x86_64/product/","distro_target":"sle-12-x86_64","autorefresh":false,"id":1743,"enabled":true},{"url":"https://updates.suse.com/SUSE/Products/SLE-Live-Patching/12/x86_64/product_debug/","autorefresh":false,"distro_target":"sle-12-x86_64","id":1744,"enabled":false,"description":"SLE-Live-Patching12-Debuginfo-Pool for sle-12-x86_64","name":"SLE-Live-Patching12-Debuginfo-Pool","installer_updates":false},{"enabled":false,"id":1986,"autorefresh":false,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Live-Patching/12/x86_64/product_source/","name":"SLE-Live-Patching12-Source-Pool","installer_updates":false,"description":"SLE-Live-Patching12-Source-Pool for sle-12-x86_64"}],"online_predecessor_ids":[],"product_class":"SLE-LP","predecessor_ids":[],"arch":"x86_64","eula_url":"https://updates.suse.com/SUSE/Products/SLE-Live-Patching/12/x86_64/product.license/","free":false,"description":"

SUSE Linux Enterprise Live Patching provides packages to update critical kernel modules live in SUSE Linux Enterprise. With SUSE Linux Enterprise Live Patching, you can perform critical kernel patching without shutting down your system, reducing the need for planned downtime and increasing service availability.

","shortname":"Live-Patching"},{"arch":"i686","eula_url":"","free":false,"shortname":null,"description":null,"product_type":"extension","cpe":null,"repositories":[{"description":"SLE11-HAE-SP4-Pool for sle-11-i586","name":"SLE11-HAE-SP4-Pool","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP4-Pool/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","id":1747,"enabled":true},{"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP4-Updates/sle-11-i586/","enabled":true,"id":1749,"description":"SLE11-HAE-SP4-Updates for sle-11-i586","name":"SLE11-HAE-SP4-Updates","installer_updates":false}],"online_predecessor_ids":[],"product_class":"SLE-HAE-X86","predecessor_ids":[],"former_identifier":"sle-hae","release_type":null,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise High Availability Extension 11 SP4 i686","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise High Availability Extension","version":"11.4","recommended":false,"release_stage":"released","id":1254,"identifier":"sle-hae","extensions":[],"friendly_version":"11 SP4"},{"extensions":[],"release_stage":"released","id":1255,"identifier":"sle-hae","friendly_version":"11 SP4","name":"SUSE Linux Enterprise High Availability Extension","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"SUSE Linux Enterprise High Availability Extension 11 SP4 i586","release_type":null,"former_identifier":"sle-hae","recommended":false,"version":"11.4","cpe":null,"product_type":"extension","predecessor_ids":[],"online_predecessor_ids":[],"product_class":"SLE-HAE-X86","repositories":[{"description":"SLE11-HAE-SP4-Pool for sle-11-i586","name":"SLE11-HAE-SP4-Pool","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP4-Pool/sle-11-i586/","enabled":true,"id":1747},{"description":"SLE11-HAE-SP4-Updates for sle-11-i586","installer_updates":false,"name":"SLE11-HAE-SP4-Updates","url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP4-Updates/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true,"id":1749,"enabled":true}],"eula_url":"","arch":"i586","shortname":null,"description":null,"free":false},{"free":false,"shortname":null,"description":null,"arch":"x86_64","eula_url":"","online_predecessor_ids":[],"product_class":"SLE-HAE-X86","repositories":[{"id":1750,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP4-Pool/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64","name":"SLE11-HAE-SP4-Pool","installer_updates":false,"description":"SLE11-HAE-SP4-Pool for sle-11-x86_64"},{"distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP4-Updates/sle-11-x86_64/","enabled":true,"id":1753,"description":"SLE11-HAE-SP4-Updates for sle-11-x86_64","installer_updates":false,"name":"SLE11-HAE-SP4-Updates"}],"predecessor_ids":[],"product_type":"extension","cpe":null,"version":"11.4","recommended":false,"release_type":null,"former_identifier":"sle-hae","migration_extra":false,"friendly_name":"SUSE Linux Enterprise High Availability Extension 11 SP4 x86_64","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise High Availability Extension","friendly_version":"11 SP4","release_stage":"released","identifier":"sle-hae","id":1256,"extensions":[]},{"description":null,"shortname":null,"free":false,"arch":"s390x","eula_url":"","online_predecessor_ids":[],"repositories":[{"description":"SLE11-HAE-SP4-Pool for sle-11-s390x","name":"SLE11-HAE-SP4-Pool","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-s390x","url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP4-Pool/sle-11-s390x/","enabled":true,"id":1758},{"url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP4-Updates/sle-11-s390x/","distro_target":"sle-11-s390x","autorefresh":true,"id":1759,"enabled":true,"description":"SLE11-HAE-SP4-Updates for sle-11-s390x","installer_updates":false,"name":"SLE11-HAE-SP4-Updates"}],"product_class":"SLE-HAE-Z","predecessor_ids":[],"cpe":null,"product_type":"extension","version":"11.4","recommended":false,"friendly_name":"SUSE Linux Enterprise High Availability Extension 11 SP4 s390x","migration_extra":false,"release_type":null,"former_identifier":"sle-hae","name":"SUSE Linux Enterprise High Availability Extension","offline_predecessor_ids":[],"friendly_version":"11 SP4","id":1257,"release_stage":"released","identifier":"sle-hae","extensions":[]},{"cpe":null,"product_type":"extension","product_class":"SLE-HAE-PPC","online_predecessor_ids":[],"repositories":[{"id":1756,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP4-Pool/sle-11-ppc64/","autorefresh":true,"distro_target":"sle-11-ppc64","name":"SLE11-HAE-SP4-Pool","installer_updates":false,"description":"SLE11-HAE-SP4-Pool for sle-11-ppc64"},{"description":"SLE11-HAE-SP4-Updates for sle-11-ppc64","installer_updates":false,"name":"SLE11-HAE-SP4-Updates","distro_target":"sle-11-ppc64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP4-Updates/sle-11-ppc64/","enabled":true,"id":1757}],"predecessor_ids":[],"arch":"ppc64","eula_url":"","shortname":null,"description":null,"free":false,"release_stage":"released","identifier":"sle-hae","id":1258,"extensions":[],"friendly_version":"11 SP4","friendly_name":"SUSE Linux Enterprise High Availability Extension 11 SP4 ppc64","migration_extra":false,"former_identifier":"sle-hae","release_type":null,"name":"SUSE Linux Enterprise High Availability Extension","offline_predecessor_ids":[],"version":"11.4","recommended":false},{"version":"11.4","recommended":false,"former_identifier":"sle-hae","release_type":null,"friendly_name":"SUSE Linux Enterprise High Availability Extension 11 SP4 ia64","migration_extra":false,"offline_predecessor_ids":[],"name":"SUSE Linux Enterprise High Availability Extension","friendly_version":"11 SP4","release_stage":"released","id":1259,"identifier":"sle-hae","extensions":[],"free":false,"shortname":null,"description":null,"arch":"ia64","eula_url":"","online_predecessor_ids":[],"repositories":[{"installer_updates":false,"name":"SLE11-HAE-SP4-Pool","description":"SLE11-HAE-SP4-Pool for sle-11-ia64","enabled":true,"id":1754,"distro_target":"sle-11-ia64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP4-Pool/sle-11-ia64/"},{"url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP4-Updates/sle-11-ia64/","distro_target":"sle-11-ia64","autorefresh":true,"id":1755,"enabled":true,"description":"SLE11-HAE-SP4-Updates for sle-11-ia64","installer_updates":false,"name":"SLE11-HAE-SP4-Updates"}],"product_class":"SLE-HAE-IA","predecessor_ids":[],"product_type":"extension","cpe":null},{"cpe":null,"product_type":"extension","online_predecessor_ids":[],"repositories":[{"enabled":true,"id":1747,"distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP4-Pool/sle-11-i586/","installer_updates":false,"name":"SLE11-HAE-SP4-Pool","description":"SLE11-HAE-SP4-Pool for sle-11-i586"},{"name":"SLE11-HAE-SP4-Updates","installer_updates":false,"description":"SLE11-HAE-SP4-Updates for sle-11-i586","id":1749,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP4-Updates/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586"}],"product_class":"SLE-HAE-X86","predecessor_ids":[],"arch":"i686","eula_url":"","shortname":null,"description":null,"free":false,"release_stage":"released","id":1276,"identifier":"sle-hae-SP4-migration","extensions":[],"friendly_version":"11 SP3","friendly_name":"SUSE Linux Enterprise High Availability Extension 11 SP3 i686 (Migration)","migration_extra":false,"former_identifier":"sle-hae-SP4-migration","release_type":null,"name":"SUSE Linux Enterprise High Availability Extension","offline_predecessor_ids":[],"version":"11.3","recommended":false},{"arch":"i586","eula_url":"","free":false,"description":null,"shortname":null,"product_type":"extension","cpe":null,"online_predecessor_ids":[],"repositories":[{"id":1747,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP4-Pool/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true,"installer_updates":false,"name":"SLE11-HAE-SP4-Pool","description":"SLE11-HAE-SP4-Pool for sle-11-i586"},{"enabled":true,"id":1749,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP4-Updates/sle-11-i586/","name":"SLE11-HAE-SP4-Updates","installer_updates":false,"description":"SLE11-HAE-SP4-Updates for sle-11-i586"}],"product_class":"SLE-HAE-X86","predecessor_ids":[],"former_identifier":"sle-hae-SP4-migration","release_type":null,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise High Availability Extension 11 SP3 i586 (Migration)","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise High Availability Extension","version":"11.3","recommended":false,"release_stage":"released","id":1277,"identifier":"sle-hae-SP4-migration","extensions":[],"friendly_version":"11 SP3"},{"arch":"x86_64","eula_url":"","free":false,"description":null,"shortname":null,"product_type":"extension","cpe":null,"online_predecessor_ids":[],"repositories":[{"url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP4-Pool/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64","id":1750,"enabled":true,"description":"SLE11-HAE-SP4-Pool for sle-11-x86_64","name":"SLE11-HAE-SP4-Pool","installer_updates":false},{"installer_updates":false,"name":"SLE11-HAE-SP4-Updates","description":"SLE11-HAE-SP4-Updates for sle-11-x86_64","enabled":true,"id":1753,"distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP4-Updates/sle-11-x86_64/"}],"product_class":"SLE-HAE-X86","predecessor_ids":[],"former_identifier":"sle-hae-SP4-migration","release_type":null,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise High Availability Extension 11 SP3 x86_64 (Migration)","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise High Availability Extension","version":"11.3","recommended":false,"identifier":"sle-hae-SP4-migration","release_stage":"released","id":1278,"extensions":[],"friendly_version":"11 SP3"},{"friendly_version":"11 SP3","id":1279,"release_stage":"released","identifier":"sle-hae-SP4-migration","extensions":[],"version":"11.3","recommended":false,"friendly_name":"SUSE Linux Enterprise High Availability Extension 11 SP3 ia64 (Migration)","migration_extra":false,"release_type":null,"former_identifier":"sle-hae-SP4-migration","name":"SUSE Linux Enterprise High Availability Extension","offline_predecessor_ids":[],"online_predecessor_ids":[],"product_class":"SLE-HAE-IA","repositories":[{"url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP4-Pool/sle-11-ia64/","autorefresh":true,"distro_target":"sle-11-ia64","id":1754,"enabled":true,"description":"SLE11-HAE-SP4-Pool for sle-11-ia64","name":"SLE11-HAE-SP4-Pool","installer_updates":false},{"id":1755,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP4-Updates/sle-11-ia64/","distro_target":"sle-11-ia64","autorefresh":true,"installer_updates":false,"name":"SLE11-HAE-SP4-Updates","description":"SLE11-HAE-SP4-Updates for sle-11-ia64"}],"predecessor_ids":[],"cpe":null,"product_type":"extension","shortname":null,"description":null,"free":false,"arch":"ia64","eula_url":""},{"recommended":false,"version":"11.3","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise High Availability Extension","release_type":null,"former_identifier":"sle-hae-SP4-migration","migration_extra":false,"friendly_name":"SUSE Linux Enterprise High Availability Extension 11 SP3 s390x (Migration)","friendly_version":"11 SP3","extensions":[],"release_stage":"released","identifier":"sle-hae-SP4-migration","id":1282,"free":false,"shortname":null,"description":null,"eula_url":"","arch":"s390x","predecessor_ids":[],"repositories":[{"id":1758,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP4-Pool/sle-11-s390x/","distro_target":"sle-11-s390x","autorefresh":true,"installer_updates":false,"name":"SLE11-HAE-SP4-Pool","description":"SLE11-HAE-SP4-Pool for sle-11-s390x"},{"id":1759,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP4-Updates/sle-11-s390x/","autorefresh":true,"distro_target":"sle-11-s390x","name":"SLE11-HAE-SP4-Updates","installer_updates":false,"description":"SLE11-HAE-SP4-Updates for sle-11-s390x"}],"online_predecessor_ids":[],"product_class":"SLE-HAE-Z","product_type":"extension","cpe":null},{"friendly_version":"11 SP3","extensions":[],"identifier":"sle-hae-SP4-migration","release_stage":"released","id":1283,"recommended":false,"version":"11.3","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise High Availability Extension","former_identifier":"sle-hae-SP4-migration","release_type":null,"friendly_name":"SUSE Linux Enterprise High Availability Extension 11 SP3 ppc64 (Migration)","migration_extra":false,"predecessor_ids":[],"product_class":"SLE-HAE-PPC","online_predecessor_ids":[],"repositories":[{"installer_updates":false,"name":"SLE11-HAE-SP4-Pool","description":"SLE11-HAE-SP4-Pool for sle-11-ppc64","enabled":true,"id":1756,"distro_target":"sle-11-ppc64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP4-Pool/sle-11-ppc64/"},{"url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP4-Updates/sle-11-ppc64/","autorefresh":true,"distro_target":"sle-11-ppc64","id":1757,"enabled":true,"description":"SLE11-HAE-SP4-Updates for sle-11-ppc64","name":"SLE11-HAE-SP4-Updates","installer_updates":false}],"product_type":"extension","cpe":null,"free":false,"description":null,"shortname":null,"eula_url":"","arch":"ppc64"},{"friendly_version":"11 SP4","identifier":"sle-haegeo","release_stage":"released","id":1286,"extensions":[],"version":"11.4","recommended":false,"friendly_name":"Geo Clustering for SUSE Linux Enterprise High Availability Extension 11 SP4 x86_64","migration_extra":false,"release_type":null,"former_identifier":"sle-haegeo","name":"Geo Clustering for SUSE Linux Enterprise High Availability Extension","offline_predecessor_ids":[],"online_predecessor_ids":[],"repositories":[{"id":1760,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-GEO-SP4-Updates/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true,"installer_updates":false,"name":"SLE11-HAE-GEO-SP4-Updates","description":"SLE11-HAE-GEO-SP4-Updates for sle-11-x86_64"},{"installer_updates":false,"name":"SLE11-HAE-GEO-SP4-Pool","description":"SLE11-HAE-GEO-SP4-Pool for sle-11-x86_64","enabled":true,"id":1858,"distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-GEO-SP4-Pool/sle-11-x86_64/"}],"product_class":"SLE-HAE-GEO","predecessor_ids":[],"cpe":null,"product_type":"extension","description":null,"shortname":null,"free":false,"arch":"x86_64","eula_url":""},{"name":"Geo Clustering for SUSE Linux Enterprise High Availability Extension","offline_predecessor_ids":[],"friendly_name":"Geo Clustering for SUSE Linux Enterprise High Availability Extension 11 SP4 s390x","migration_extra":false,"former_identifier":"sle-haegeo","release_type":null,"recommended":false,"version":"11.4","extensions":[],"id":1287,"release_stage":"released","identifier":"sle-haegeo","friendly_version":"11 SP4","eula_url":"","arch":"s390x","description":null,"shortname":null,"free":false,"cpe":null,"product_type":"extension","predecessor_ids":[],"online_predecessor_ids":[],"repositories":[{"enabled":true,"id":1761,"autorefresh":true,"distro_target":"sle-11-s390x","url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-GEO-SP4-Updates/sle-11-s390x/","name":"SLE11-HAE-GEO-SP4-Updates","installer_updates":false,"description":"SLE11-HAE-GEO-SP4-Updates for sle-11-s390x"},{"name":"SLE11-HAE-GEO-SP4-Pool","installer_updates":false,"description":"SLE11-HAE-GEO-SP4-Pool for sle-11-s390x","id":1859,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-GEO-SP4-Pool/sle-11-s390x/","autorefresh":true,"distro_target":"sle-11-s390x"}],"product_class":"SLE-HAE-GEO"},{"free":false,"description":null,"shortname":null,"eula_url":"","arch":"x86_64","predecessor_ids":[],"product_class":"SUSE_CLOUD","online_predecessor_ids":[],"repositories":[{"enabled":true,"id":1770,"autorefresh":false,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SUSE-Cloud-5-Pool/sle-11-x86_64/","name":"SUSE-Cloud-5-Pool","installer_updates":false,"description":"SUSE-Cloud-5-Pool for sle-11-x86_64"},{"description":"SUSE-Cloud-5-Updates for sle-11-x86_64","name":"SUSE-Cloud-5-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SUSE-Cloud-5-Updates/sle-11-x86_64/","enabled":true,"id":1771}],"product_type":"extension","cpe":null,"recommended":false,"version":"5","offline_predecessor_ids":[],"name":"SUSE Cloud","former_identifier":"SUSE-Cloud","release_type":null,"friendly_name":"SUSE Cloud 5 x86_64","migration_extra":false,"friendly_version":"5","extensions":[],"release_stage":"released","id":1288,"identifier":"SUSE-Cloud"},{"repositories":[{"name":"SLE-Module-Adv-Systems-Management12-Updates","installer_updates":false,"description":"SLE-Module-Adv-Systems-Management12-Updates for sle-12-ppc64le","id":1762,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Adv-Systems-Management/12/ppc64le/update/","autorefresh":true,"distro_target":"sle-12-ppc64le"},{"description":"SLE-Module-Adv-Systems-Management12-Debuginfo-Updates for sle-12-ppc64le","installer_updates":false,"name":"SLE-Module-Adv-Systems-Management12-Debuginfo-Updates","distro_target":"sle-12-ppc64le","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Adv-Systems-Management/12/ppc64le/update_debug/","enabled":false,"id":1763},{"description":"SLE-Module-Adv-Systems-Management12-Pool for sle-12-ppc64le","name":"SLE-Module-Adv-Systems-Management12-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-12-ppc64le","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Adv-Systems-Management/12/ppc64le/product/","enabled":true,"id":1764},{"description":"SLE-Module-Adv-Systems-Management12-Debuginfo-Pool for sle-12-ppc64le","installer_updates":false,"name":"SLE-Module-Adv-Systems-Management12-Debuginfo-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Adv-Systems-Management/12/ppc64le/product_debug/","distro_target":"sle-12-ppc64le","autorefresh":false,"id":1765,"enabled":false},{"installer_updates":false,"name":"SLE-Module-Adv-Systems-Management12-Source-Pool","description":"SLE-Module-Adv-Systems-Management12-Source-Pool for sle-12-ppc64le","enabled":false,"id":1996,"distro_target":"sle-12-ppc64le","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Adv-Systems-Management/12/ppc64le/product_source/"}],"online_predecessor_ids":[],"product_class":"MODULE","predecessor_ids":[],"product_type":"module","cpe":"cpe:/o:suse:sle-module-adv-systems-management:12","free":true,"description":"

This Module contains current versions of the popular configuration management frameworks Puppet and CFEngine as well as the new systems management toolbox called machinery.

The machinery tool will be frequently updated and is SUSE's upcoming systems management toolbox for inspecting and validating systems remotely, storing their system description and creating new systems to deploy them in datacenters and clouds.

","shortname":"Adv-Sys-Mgmt-Module","arch":"ppc64le","eula_url":"","friendly_version":"12","release_stage":"released","identifier":"sle-module-adv-systems-management","id":1294,"extensions":[],"version":"12","recommended":false,"former_identifier":"sle-module-adv-systems-management","release_type":null,"friendly_name":"Advanced Systems Management Module 12 ppc64le","migration_extra":false,"offline_predecessor_ids":[],"name":"Advanced Systems Management Module"},{"arch":"s390x","eula_url":"","free":true,"description":"

This Module contains current versions of the popular configuration management frameworks Puppet and CFEngine as well as the new systems management toolbox called machinery.

The machinery tool will be frequently updated and is SUSE's upcoming systems management toolbox for inspecting and validating systems remotely, storing their system description and creating new systems to deploy them in datacenters and clouds.

","shortname":"Adv-Sys-Mgmt-Module","product_type":"module","cpe":"cpe:/o:suse:sle-module-adv-systems-management:12","online_predecessor_ids":[],"product_class":"MODULE","repositories":[{"installer_updates":false,"name":"SLE-Module-Adv-Systems-Management12-Updates","description":"SLE-Module-Adv-Systems-Management12-Updates for sle-12-s390x","id":1766,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Adv-Systems-Management/12/s390x/update/","distro_target":"sle-12-s390x","autorefresh":true},{"id":1767,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Adv-Systems-Management/12/s390x/update_debug/","distro_target":"sle-12-s390x","autorefresh":true,"installer_updates":false,"name":"SLE-Module-Adv-Systems-Management12-Debuginfo-Updates","description":"SLE-Module-Adv-Systems-Management12-Debuginfo-Updates for sle-12-s390x"},{"id":1768,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Adv-Systems-Management/12/s390x/product/","distro_target":"sle-12-s390x","autorefresh":false,"installer_updates":false,"name":"SLE-Module-Adv-Systems-Management12-Pool","description":"SLE-Module-Adv-Systems-Management12-Pool for sle-12-s390x"},{"description":"SLE-Module-Adv-Systems-Management12-Debuginfo-Pool for sle-12-s390x","name":"SLE-Module-Adv-Systems-Management12-Debuginfo-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Adv-Systems-Management/12/s390x/product_debug/","autorefresh":false,"distro_target":"sle-12-s390x","id":1769,"enabled":false},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Adv-Systems-Management/12/s390x/product_source/","distro_target":"sle-12-s390x","autorefresh":false,"id":1997,"enabled":false,"description":"SLE-Module-Adv-Systems-Management12-Source-Pool for sle-12-s390x","installer_updates":false,"name":"SLE-Module-Adv-Systems-Management12-Source-Pool"}],"predecessor_ids":[],"release_type":null,"former_identifier":"sle-module-adv-systems-management","friendly_name":"Advanced Systems Management Module 12 s390x","migration_extra":false,"offline_predecessor_ids":[],"name":"Advanced Systems Management Module","version":"12","recommended":false,"identifier":"sle-module-adv-systems-management","release_stage":"released","id":1295,"extensions":[],"friendly_version":"12"},{"version":"11.4","recommended":false,"friendly_name":"SUSE Linux Enterprise Real Time 11 SP4 x86_64","migration_extra":false,"former_identifier":"SUSE-Linux-Enterprise-RT","release_type":null,"name":"SUSE Linux Enterprise Real Time","offline_predecessor_ids":[],"friendly_version":"11 SP4","release_stage":"released","id":1296,"identifier":"SUSE-Linux-Enterprise-RT","extensions":[],"description":null,"shortname":null,"free":false,"arch":"x86_64","eula_url":"","repositories":[{"installer_updates":false,"name":"SLERT11-SP4-Pool","description":"SLERT11-SP4-Pool for sle-11-x86_64","id":1781,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLERT11-SP4-Pool/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true},{"installer_updates":false,"name":"SLERT11-SP4-Updates","description":"SLERT11-SP4-Updates for sle-11-x86_64","enabled":true,"id":1782,"distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLERT11-SP4-Updates/sle-11-x86_64/"}],"online_predecessor_ids":[],"product_class":"13319","predecessor_ids":[],"cpe":null,"product_type":"extension"},{"shortname":null,"description":null,"free":false,"arch":"x86_64","eula_url":"","online_predecessor_ids":[],"product_class":"13319","repositories":[{"description":"SLERT11-SP4-Pool for sle-11-x86_64","name":"SLERT11-SP4-Pool","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLERT11-SP4-Pool/sle-11-x86_64/","enabled":true,"id":1781},{"installer_updates":false,"name":"SLERT11-SP4-Updates","description":"SLERT11-SP4-Updates for sle-11-x86_64","id":1782,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLERT11-SP4-Updates/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true}],"predecessor_ids":[],"cpe":null,"product_type":"extension","version":"11.3","recommended":false,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Real Time 11 SP3 x86_64 (Migration)","former_identifier":"SUSE-Linux-Enterprise-RT-SP4-migration","release_type":null,"name":"SUSE Linux Enterprise Real Time","offline_predecessor_ids":[],"friendly_version":"11 SP3","identifier":"SUSE-Linux-Enterprise-RT-SP4-migration","release_stage":"released","id":1297,"extensions":[]},{"extensions":[{"extensions":[],"release_stage":"released","id":1198,"identifier":"sle-smt","friendly_version":"11 SP3","name":"SUSE Linux Enterprise Subscription Management Tool","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Subscription Management Tool 11 SP3","release_type":null,"former_identifier":"sle-smt","recommended":false,"version":"11.3","cpe":null,"product_type":"extension","predecessor_ids":[],"repositories":[{"enabled":true,"id":1405,"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP3-Updates/sle-11-x86_64/","name":"SLE11-SMT-SP3-Updates","installer_updates":false,"description":"SLE11-SMT-SP3-Updates for sle-11-x86_64"},{"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP3-Updates/sle-11-i586/","enabled":true,"id":1406,"description":"SLE11-SMT-SP3-Updates for sle-11-i586","name":"SLE11-SMT-SP3-Updates","installer_updates":false},{"description":"SLE11-SMT-SP3-Updates for sle-11-s390x","name":"SLE11-SMT-SP3-Updates","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP3-Updates/sle-11-s390x/","autorefresh":true,"distro_target":"sle-11-s390x","id":1407,"enabled":true},{"id":1408,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP3-Pool/sle-11-s390x/","distro_target":"sle-11-s390x","autorefresh":true,"installer_updates":false,"name":"SLE11-SMT-SP3-Pool","description":"SLE11-SMT-SP3-Pool for sle-11-s390x"},{"installer_updates":false,"name":"SLE11-SMT-SP3-Pool","description":"SLE11-SMT-SP3-Pool for sle-11-x86_64","enabled":true,"id":1409,"distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP3-Pool/sle-11-x86_64/"},{"id":1410,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP3-Pool/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true,"installer_updates":false,"name":"SLE11-SMT-SP3-Pool","description":"SLE11-SMT-SP3-Pool for sle-11-i586"}],"online_predecessor_ids":[],"product_class":"SLESMT","eula_url":"","arch":null,"description":null,"shortname":null,"free":true},{"friendly_version":"11 SP4","release_stage":"released","id":1254,"identifier":"sle-hae","extensions":[],"version":"11.4","recommended":false,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise High Availability Extension 11 SP4 i686","former_identifier":"sle-hae","release_type":null,"name":"SUSE Linux Enterprise High Availability Extension","offline_predecessor_ids":[],"online_predecessor_ids":[],"repositories":[{"installer_updates":false,"name":"SLE11-HAE-SP4-Pool","description":"SLE11-HAE-SP4-Pool for sle-11-i586","enabled":true,"id":1747,"distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP4-Pool/sle-11-i586/"},{"name":"SLE11-HAE-SP4-Updates","installer_updates":false,"description":"SLE11-HAE-SP4-Updates for sle-11-i586","enabled":true,"id":1749,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP4-Updates/sle-11-i586/"}],"product_class":"SLE-HAE-X86","predecessor_ids":[],"cpe":null,"product_type":"extension","description":null,"shortname":null,"free":false,"arch":"i686","eula_url":""},{"product_type":"extension","cpe":null,"repositories":[{"distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP4-Pool/sle-11-i586/","enabled":true,"id":1817,"description":"SLE11-SDK-SP4-Pool for sle-11-i586","installer_updates":false,"name":"SLE11-SDK-SP4-Pool"},{"description":"SLE11-SDK-SP4-Pool for sle-11-ia64","name":"SLE11-SDK-SP4-Pool","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-ia64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP4-Pool/sle-11-ia64/","enabled":true,"id":1818},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP4-Pool/sle-11-ppc64/","distro_target":"sle-11-ppc64","autorefresh":true,"id":1819,"enabled":true,"description":"SLE11-SDK-SP4-Pool for sle-11-ppc64","installer_updates":false,"name":"SLE11-SDK-SP4-Pool"},{"autorefresh":true,"distro_target":"sle-11-s390x","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP4-Pool/sle-11-s390x/","enabled":true,"id":1820,"description":"SLE11-SDK-SP4-Pool for sle-11-s390x","name":"SLE11-SDK-SP4-Pool","installer_updates":false},{"name":"SLE11-SDK-SP4-Pool","installer_updates":false,"description":"SLE11-SDK-SP4-Pool for sle-11-x86_64","id":1821,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP4-Pool/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64"},{"distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP4-Updates/sle-11-i586/","enabled":true,"id":1822,"description":"SLE11-SDK-SP4-Updates for sle-11-i586","installer_updates":false,"name":"SLE11-SDK-SP4-Updates"},{"installer_updates":false,"name":"SLE11-SDK-SP4-Updates","description":"SLE11-SDK-SP4-Updates for sle-11-ia64","enabled":true,"id":1823,"distro_target":"sle-11-ia64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP4-Updates/sle-11-ia64/"},{"id":1824,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP4-Updates/sle-11-ppc64/","distro_target":"sle-11-ppc64","autorefresh":true,"installer_updates":false,"name":"SLE11-SDK-SP4-Updates","description":"SLE11-SDK-SP4-Updates for sle-11-ppc64"},{"enabled":true,"id":1825,"distro_target":"sle-11-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP4-Updates/sle-11-s390x/","installer_updates":false,"name":"SLE11-SDK-SP4-Updates","description":"SLE11-SDK-SP4-Updates for sle-11-s390x"},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP4-Updates/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64","id":1826,"enabled":true,"description":"SLE11-SDK-SP4-Updates for sle-11-x86_64","name":"SLE11-SDK-SP4-Updates","installer_updates":false}],"online_predecessor_ids":[],"product_class":"SLE-SDK","predecessor_ids":[],"arch":null,"eula_url":"","free":true,"description":null,"shortname":null,"identifier":"sle-sdk","release_stage":"released","id":1320,"extensions":[],"friendly_version":"11 SP4","former_identifier":"sle-sdk","release_type":null,"friendly_name":"SUSE Linux Enterprise Software Development Kit 11 SP4","migration_extra":false,"offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Software Development Kit","version":"11.4","recommended":false}],"id":1298,"release_stage":"released","identifier":"SUSE_SLES","friendly_version":"11 SP4","name":"SUSE Linux Enterprise Server","offline_predecessor_ids":[],"friendly_name":"SUSE Linux Enterprise Server 11 SP4 i686","migration_extra":false,"release_type":null,"former_identifier":"SUSE_SLES","recommended":false,"version":"11.4","cpe":"cpe:/o:suse:suse_sles:11:sp4","product_type":"base","predecessor_ids":[],"online_predecessor_ids":[],"product_class":"7261","repositories":[{"url":"https://updates.suse.com/repo/$RCE/SLES11-Extras/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","id":679,"enabled":false,"description":"SLES11-Extras for sle-11-i586","name":"SLES11-Extras","installer_updates":false},{"installer_updates":false,"name":"SLE11-Security-Module","description":"SLE11-Security-Module for sle-11-i586","id":1379,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-Security-Module/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true},{"description":"SLE11-Public-Cloud-Module for sle-11-i586","name":"SLE11-Public-Cloud-Module","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-Public-Cloud-Module/sle-11-i586/","enabled":false,"id":1776},{"description":"SLES11-SP4-Pool for sle-11-i586","installer_updates":false,"name":"SLES11-SP4-Pool","distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP4-Pool/sle-11-i586/","enabled":true,"id":1797},{"description":"SLES11-SP4-Updates for sle-11-i586","name":"SLES11-SP4-Updates","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP4-Updates/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","id":1799,"enabled":true},{"distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP4-Debuginfo-Pool/sle-11-i586/","enabled":false,"id":1800,"description":"SLE11-SP4-Debuginfo-Pool for sle-11-i586","installer_updates":false,"name":"SLE11-SP4-Debuginfo-Pool"},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SP4-Debuginfo-Updates/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","id":1801,"enabled":false,"description":"SLE11-SP4-Debuginfo-Updates for sle-11-i586","name":"SLE11-SP4-Debuginfo-Updates","installer_updates":false},{"enabled":true,"id":3759,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLES11-SP4-LTSS-Updates/sle-11-i586/","name":"SLES11-SP4-LTSS-Updates","installer_updates":false,"description":"SLES11-SP4-LTSS-Updates for sle-11-i586"}],"eula_url":"","arch":"i686","shortname":null,"description":null,"free":false},{"release_stage":"released","identifier":"SUSE_SLES","id":1299,"extensions":[{"free":false,"shortname":null,"description":null,"eula_url":"","arch":null,"predecessor_ids":[],"product_class":"10040","online_predecessor_ids":[],"repositories":[{"name":"SLE11-POS-SP3-Pool","installer_updates":false,"description":"SLE11-POS-SP3-Pool for sle-11-i586","id":1084,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-POS-SP3-Pool/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586"},{"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-POS-SP3-Updates/sle-11-i586/","enabled":true,"id":1085,"description":"SLE11-POS-SP3-Updates for sle-11-i586","name":"SLE11-POS-SP3-Updates","installer_updates":false},{"enabled":true,"id":1086,"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE11-POS-SP3-Pool/sle-11-x86_64/","name":"SLE11-POS-SP3-Pool","installer_updates":false,"description":"SLE11-POS-SP3-Pool for sle-11-x86_64"},{"url":"https://updates.suse.com/repo/$RCE/SLE11-POS-SP3-Updates/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64","id":1087,"enabled":true,"description":"SLE11-POS-SP3-Updates for sle-11-x86_64","name":"SLE11-POS-SP3-Updates","installer_updates":false}],"product_type":"extension","cpe":null,"recommended":false,"version":"11.3","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Point of Service","release_type":null,"former_identifier":"sle-pos","friendly_name":"SUSE Linux Enterprise Point of Service 11 SP3","migration_extra":false,"friendly_version":"11 SP3","extensions":[],"release_stage":"released","identifier":"sle-pos","id":1073},{"eula_url":"","arch":null,"description":null,"shortname":null,"free":true,"cpe":null,"product_type":"extension","predecessor_ids":[],"online_predecessor_ids":[],"product_class":"SLESMT","repositories":[{"id":1405,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP3-Updates/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64","name":"SLE11-SMT-SP3-Updates","installer_updates":false,"description":"SLE11-SMT-SP3-Updates for sle-11-x86_64"},{"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP3-Updates/sle-11-i586/","enabled":true,"id":1406,"description":"SLE11-SMT-SP3-Updates for sle-11-i586","name":"SLE11-SMT-SP3-Updates","installer_updates":false},{"installer_updates":false,"name":"SLE11-SMT-SP3-Updates","description":"SLE11-SMT-SP3-Updates for sle-11-s390x","enabled":true,"id":1407,"distro_target":"sle-11-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP3-Updates/sle-11-s390x/"},{"description":"SLE11-SMT-SP3-Pool for sle-11-s390x","name":"SLE11-SMT-SP3-Pool","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-s390x","url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP3-Pool/sle-11-s390x/","enabled":true,"id":1408},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP3-Pool/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64","id":1409,"enabled":true,"description":"SLE11-SMT-SP3-Pool for sle-11-x86_64","name":"SLE11-SMT-SP3-Pool","installer_updates":false},{"name":"SLE11-SMT-SP3-Pool","installer_updates":false,"description":"SLE11-SMT-SP3-Pool for sle-11-i586","id":1410,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP3-Pool/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586"}],"name":"SUSE Linux Enterprise Subscription Management Tool","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Subscription Management Tool 11 SP3","release_type":null,"former_identifier":"sle-smt","recommended":false,"version":"11.3","extensions":[],"id":1198,"release_stage":"released","identifier":"sle-smt","friendly_version":"11 SP3"},{"cpe":null,"product_type":"extension","predecessor_ids":[],"product_class":"SLE-HAE-X86","online_predecessor_ids":[],"repositories":[{"url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP4-Pool/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","id":1747,"enabled":true,"description":"SLE11-HAE-SP4-Pool for sle-11-i586","name":"SLE11-HAE-SP4-Pool","installer_updates":false},{"description":"SLE11-HAE-SP4-Updates for sle-11-i586","installer_updates":false,"name":"SLE11-HAE-SP4-Updates","url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP4-Updates/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true,"id":1749,"enabled":true}],"eula_url":"","arch":"i586","shortname":null,"description":null,"free":false,"extensions":[],"release_stage":"released","identifier":"sle-hae","id":1255,"friendly_version":"11 SP4","name":"SUSE Linux Enterprise High Availability Extension","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"SUSE Linux Enterprise High Availability Extension 11 SP4 i586","former_identifier":"sle-hae","release_type":null,"recommended":false,"version":"11.4"},{"version":"11.4","recommended":false,"release_type":null,"former_identifier":"sle-sdk","friendly_name":"SUSE Linux Enterprise Software Development Kit 11 SP4","migration_extra":false,"offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Software Development Kit","friendly_version":"11 SP4","identifier":"sle-sdk","release_stage":"released","id":1320,"extensions":[],"free":true,"description":null,"shortname":null,"arch":null,"eula_url":"","repositories":[{"distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP4-Pool/sle-11-i586/","enabled":true,"id":1817,"description":"SLE11-SDK-SP4-Pool for sle-11-i586","installer_updates":false,"name":"SLE11-SDK-SP4-Pool"},{"installer_updates":false,"name":"SLE11-SDK-SP4-Pool","description":"SLE11-SDK-SP4-Pool for sle-11-ia64","enabled":true,"id":1818,"distro_target":"sle-11-ia64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP4-Pool/sle-11-ia64/"},{"description":"SLE11-SDK-SP4-Pool for sle-11-ppc64","installer_updates":false,"name":"SLE11-SDK-SP4-Pool","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP4-Pool/sle-11-ppc64/","distro_target":"sle-11-ppc64","autorefresh":true,"id":1819,"enabled":true},{"id":1820,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP4-Pool/sle-11-s390x/","distro_target":"sle-11-s390x","autorefresh":true,"installer_updates":false,"name":"SLE11-SDK-SP4-Pool","description":"SLE11-SDK-SP4-Pool for sle-11-s390x"},{"description":"SLE11-SDK-SP4-Pool for sle-11-x86_64","name":"SLE11-SDK-SP4-Pool","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP4-Pool/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64","id":1821,"enabled":true},{"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP4-Updates/sle-11-i586/","enabled":true,"id":1822,"description":"SLE11-SDK-SP4-Updates for sle-11-i586","name":"SLE11-SDK-SP4-Updates","installer_updates":false},{"id":1823,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP4-Updates/sle-11-ia64/","autorefresh":true,"distro_target":"sle-11-ia64","name":"SLE11-SDK-SP4-Updates","installer_updates":false,"description":"SLE11-SDK-SP4-Updates for sle-11-ia64"},{"description":"SLE11-SDK-SP4-Updates for sle-11-ppc64","name":"SLE11-SDK-SP4-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-ppc64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP4-Updates/sle-11-ppc64/","enabled":true,"id":1824},{"distro_target":"sle-11-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP4-Updates/sle-11-s390x/","enabled":true,"id":1825,"description":"SLE11-SDK-SP4-Updates for sle-11-s390x","installer_updates":false,"name":"SLE11-SDK-SP4-Updates"},{"enabled":true,"id":1826,"distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP4-Updates/sle-11-x86_64/","installer_updates":false,"name":"SLE11-SDK-SP4-Updates","description":"SLE11-SDK-SP4-Updates for sle-11-x86_64"}],"online_predecessor_ids":[],"product_class":"SLE-SDK","predecessor_ids":[],"product_type":"extension","cpe":null}],"friendly_version":"11 SP4","migration_extra":false,"friendly_name":"SUSE Linux Enterprise Server 11 SP4 i586","release_type":null,"former_identifier":"SUSE_SLES","name":"SUSE Linux Enterprise Server","offline_predecessor_ids":[],"version":"11.4","recommended":false,"cpe":"cpe:/o:suse:suse_sles:11:sp4","product_type":"base","online_predecessor_ids":[],"product_class":"7261","repositories":[{"description":"SLES11-Extras for sle-11-i586","name":"SLES11-Extras","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLES11-Extras/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","id":679,"enabled":false},{"id":1379,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-Security-Module/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","name":"SLE11-Security-Module","installer_updates":false,"description":"SLE11-Security-Module for sle-11-i586"},{"id":1776,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-Public-Cloud-Module/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","name":"SLE11-Public-Cloud-Module","installer_updates":false,"description":"SLE11-Public-Cloud-Module for sle-11-i586"},{"name":"SLES11-SP4-Pool","installer_updates":false,"description":"SLES11-SP4-Pool for sle-11-i586","id":1797,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP4-Pool/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586"},{"installer_updates":false,"name":"SLES11-SP4-Updates","description":"SLES11-SP4-Updates for sle-11-i586","enabled":true,"id":1799,"distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP4-Updates/sle-11-i586/"},{"name":"SLE11-SP4-Debuginfo-Pool","installer_updates":false,"description":"SLE11-SP4-Debuginfo-Pool for sle-11-i586","enabled":false,"id":1800,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-SP4-Debuginfo-Pool/sle-11-i586/"},{"enabled":false,"id":1801,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-SP4-Debuginfo-Updates/sle-11-i586/","name":"SLE11-SP4-Debuginfo-Updates","installer_updates":false,"description":"SLE11-SP4-Debuginfo-Updates for sle-11-i586"},{"description":"SLES11-SP4-LTSS-Updates for sle-11-i586","installer_updates":false,"name":"SLES11-SP4-LTSS-Updates","distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP4-LTSS-Updates/sle-11-i586/","enabled":true,"id":3759}],"predecessor_ids":[],"arch":"i586","eula_url":"","description":null,"shortname":null,"free":false},{"release_stage":"released","identifier":"SUSE_SLES","id":1300,"extensions":[{"eula_url":"","arch":null,"description":null,"shortname":null,"free":false,"cpe":null,"product_type":"extension","predecessor_ids":[],"online_predecessor_ids":[],"product_class":"10040","repositories":[{"id":1084,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-POS-SP3-Pool/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true,"installer_updates":false,"name":"SLE11-POS-SP3-Pool","description":"SLE11-POS-SP3-Pool for sle-11-i586"},{"url":"https://updates.suse.com/repo/$RCE/SLE11-POS-SP3-Updates/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","id":1085,"enabled":true,"description":"SLE11-POS-SP3-Updates for sle-11-i586","name":"SLE11-POS-SP3-Updates","installer_updates":false},{"installer_updates":false,"name":"SLE11-POS-SP3-Pool","description":"SLE11-POS-SP3-Pool for sle-11-x86_64","enabled":true,"id":1086,"distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-POS-SP3-Pool/sle-11-x86_64/"},{"description":"SLE11-POS-SP3-Updates for sle-11-x86_64","name":"SLE11-POS-SP3-Updates","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-POS-SP3-Updates/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64","id":1087,"enabled":true}],"name":"SUSE Linux Enterprise Point of Service","offline_predecessor_ids":[],"friendly_name":"SUSE Linux Enterprise Point of Service 11 SP3","migration_extra":false,"former_identifier":"sle-pos","release_type":null,"recommended":false,"version":"11.3","extensions":[],"id":1073,"release_stage":"released","identifier":"sle-pos","friendly_version":"11 SP3"},{"extensions":[],"release_stage":"released","id":1198,"identifier":"sle-smt","friendly_version":"11 SP3","name":"SUSE Linux Enterprise Subscription Management Tool","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Subscription Management Tool 11 SP3","former_identifier":"sle-smt","release_type":null,"recommended":false,"version":"11.3","cpe":null,"product_type":"extension","predecessor_ids":[],"product_class":"SLESMT","online_predecessor_ids":[],"repositories":[{"installer_updates":false,"name":"SLE11-SMT-SP3-Updates","description":"SLE11-SMT-SP3-Updates for sle-11-x86_64","enabled":true,"id":1405,"distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP3-Updates/sle-11-x86_64/"},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP3-Updates/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true,"id":1406,"enabled":true,"description":"SLE11-SMT-SP3-Updates for sle-11-i586","installer_updates":false,"name":"SLE11-SMT-SP3-Updates"},{"description":"SLE11-SMT-SP3-Updates for sle-11-s390x","installer_updates":false,"name":"SLE11-SMT-SP3-Updates","url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP3-Updates/sle-11-s390x/","distro_target":"sle-11-s390x","autorefresh":true,"id":1407,"enabled":true},{"enabled":true,"id":1408,"autorefresh":true,"distro_target":"sle-11-s390x","url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP3-Pool/sle-11-s390x/","name":"SLE11-SMT-SP3-Pool","installer_updates":false,"description":"SLE11-SMT-SP3-Pool for sle-11-s390x"},{"name":"SLE11-SMT-SP3-Pool","installer_updates":false,"description":"SLE11-SMT-SP3-Pool for sle-11-x86_64","id":1409,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP3-Pool/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64"},{"name":"SLE11-SMT-SP3-Pool","installer_updates":false,"description":"SLE11-SMT-SP3-Pool for sle-11-i586","enabled":true,"id":1410,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP3-Pool/sle-11-i586/"}],"eula_url":"","arch":null,"description":null,"shortname":null,"free":true},{"predecessor_ids":[],"online_predecessor_ids":[],"repositories":[{"name":"SLE11-HAE-SP4-Pool","installer_updates":false,"description":"SLE11-HAE-SP4-Pool for sle-11-x86_64","id":1750,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP4-Pool/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64"},{"id":1753,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP4-Updates/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64","name":"SLE11-HAE-SP4-Updates","installer_updates":false,"description":"SLE11-HAE-SP4-Updates for sle-11-x86_64"}],"product_class":"SLE-HAE-X86","product_type":"extension","cpe":null,"free":false,"description":null,"shortname":null,"eula_url":"","arch":"x86_64","friendly_version":"11 SP4","extensions":[{"cpe":null,"product_type":"extension","online_predecessor_ids":[],"repositories":[{"description":"SLE11-HAE-GEO-SP4-Updates for sle-11-x86_64","name":"SLE11-HAE-GEO-SP4-Updates","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-GEO-SP4-Updates/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64","id":1760,"enabled":true},{"description":"SLE11-HAE-GEO-SP4-Pool for sle-11-x86_64","name":"SLE11-HAE-GEO-SP4-Pool","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-GEO-SP4-Pool/sle-11-x86_64/","enabled":true,"id":1858}],"product_class":"SLE-HAE-GEO","predecessor_ids":[],"arch":"x86_64","eula_url":"","shortname":null,"description":null,"free":false,"release_stage":"released","identifier":"sle-haegeo","id":1286,"extensions":[],"friendly_version":"11 SP4","friendly_name":"Geo Clustering for SUSE Linux Enterprise High Availability Extension 11 SP4 x86_64","migration_extra":false,"release_type":null,"former_identifier":"sle-haegeo","name":"Geo Clustering for SUSE Linux Enterprise High Availability Extension","offline_predecessor_ids":[],"version":"11.4","recommended":false}],"identifier":"sle-hae","release_stage":"released","id":1256,"recommended":false,"version":"11.4","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise High Availability Extension","former_identifier":"sle-hae","release_type":null,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise High Availability Extension 11 SP4 x86_64"},{"version":"11.4","recommended":false,"friendly_name":"SUSE Linux Enterprise Real Time 11 SP4 x86_64","migration_extra":false,"release_type":null,"former_identifier":"SUSE-Linux-Enterprise-RT","name":"SUSE Linux Enterprise Real Time","offline_predecessor_ids":[],"friendly_version":"11 SP4","release_stage":"released","id":1296,"identifier":"SUSE-Linux-Enterprise-RT","extensions":[],"shortname":null,"description":null,"free":false,"arch":"x86_64","eula_url":"","repositories":[{"installer_updates":false,"name":"SLERT11-SP4-Pool","description":"SLERT11-SP4-Pool for sle-11-x86_64","id":1781,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLERT11-SP4-Pool/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true},{"installer_updates":false,"name":"SLERT11-SP4-Updates","description":"SLERT11-SP4-Updates for sle-11-x86_64","id":1782,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLERT11-SP4-Updates/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true}],"online_predecessor_ids":[],"product_class":"13319","predecessor_ids":[],"cpe":null,"product_type":"extension"},{"description":null,"shortname":null,"free":true,"eula_url":"","arch":null,"predecessor_ids":[],"repositories":[{"description":"SLE11-SDK-SP4-Pool for sle-11-i586","installer_updates":false,"name":"SLE11-SDK-SP4-Pool","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP4-Pool/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true,"id":1817,"enabled":true},{"id":1818,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP4-Pool/sle-11-ia64/","distro_target":"sle-11-ia64","autorefresh":true,"installer_updates":false,"name":"SLE11-SDK-SP4-Pool","description":"SLE11-SDK-SP4-Pool for sle-11-ia64"},{"autorefresh":true,"distro_target":"sle-11-ppc64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP4-Pool/sle-11-ppc64/","enabled":true,"id":1819,"description":"SLE11-SDK-SP4-Pool for sle-11-ppc64","name":"SLE11-SDK-SP4-Pool","installer_updates":false},{"description":"SLE11-SDK-SP4-Pool for sle-11-s390x","name":"SLE11-SDK-SP4-Pool","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP4-Pool/sle-11-s390x/","autorefresh":true,"distro_target":"sle-11-s390x","id":1820,"enabled":true},{"id":1821,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP4-Pool/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true,"installer_updates":false,"name":"SLE11-SDK-SP4-Pool","description":"SLE11-SDK-SP4-Pool for sle-11-x86_64"},{"installer_updates":false,"name":"SLE11-SDK-SP4-Updates","description":"SLE11-SDK-SP4-Updates for sle-11-i586","id":1822,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP4-Updates/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true},{"id":1823,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP4-Updates/sle-11-ia64/","autorefresh":true,"distro_target":"sle-11-ia64","name":"SLE11-SDK-SP4-Updates","installer_updates":false,"description":"SLE11-SDK-SP4-Updates for sle-11-ia64"},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP4-Updates/sle-11-ppc64/","autorefresh":true,"distro_target":"sle-11-ppc64","id":1824,"enabled":true,"description":"SLE11-SDK-SP4-Updates for sle-11-ppc64","name":"SLE11-SDK-SP4-Updates","installer_updates":false},{"name":"SLE11-SDK-SP4-Updates","installer_updates":false,"description":"SLE11-SDK-SP4-Updates for sle-11-s390x","id":1825,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP4-Updates/sle-11-s390x/","autorefresh":true,"distro_target":"sle-11-s390x"},{"description":"SLE11-SDK-SP4-Updates for sle-11-x86_64","installer_updates":false,"name":"SLE11-SDK-SP4-Updates","distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP4-Updates/sle-11-x86_64/","enabled":true,"id":1826}],"online_predecessor_ids":[],"product_class":"SLE-SDK","cpe":null,"product_type":"extension","recommended":false,"version":"11.4","name":"SUSE Linux Enterprise Software Development Kit","offline_predecessor_ids":[],"friendly_name":"SUSE Linux Enterprise Software Development Kit 11 SP4","migration_extra":false,"former_identifier":"sle-sdk","release_type":null,"friendly_version":"11 SP4","extensions":[],"identifier":"sle-sdk","release_stage":"released","id":1320}],"friendly_version":"11 SP4","former_identifier":"SUSE_SLES","release_type":null,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Server 11 SP4 x86_64","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Server","version":"11.4","recommended":false,"product_type":"base","cpe":"cpe:/o:suse:suse_sles:11:sp4","repositories":[{"installer_updates":false,"name":"SLES11-Extras","description":"SLES11-Extras for sle-11-x86_64","enabled":false,"id":710,"distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-Extras/sle-11-x86_64/"},{"name":"SLE11-Security-Module","installer_updates":false,"description":"SLE11-Security-Module for sle-11-x86_64","id":1447,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-Security-Module/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64"},{"distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-Public-Cloud-Module/sle-11-x86_64/","enabled":false,"id":1777,"description":"SLE11-Public-Cloud-Module for sle-11-x86_64","installer_updates":false,"name":"SLE11-Public-Cloud-Module"},{"description":"SLES11-SP4-Pool for sle-11-x86_64","installer_updates":false,"name":"SLES11-SP4-Pool","url":"https://updates.suse.com/repo/$RCE/SLES11-SP4-Pool/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true,"id":1802,"enabled":true},{"name":"SLES11-SP4-Updates","installer_updates":false,"description":"SLES11-SP4-Updates for sle-11-x86_64","enabled":true,"id":1803,"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLES11-SP4-Updates/sle-11-x86_64/"},{"distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP4-Debuginfo-Pool/sle-11-x86_64/","enabled":false,"id":1804,"description":"SLE11-SP4-Debuginfo-Pool for sle-11-x86_64","installer_updates":false,"name":"SLE11-SP4-Debuginfo-Pool"},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SP4-Debuginfo-Updates/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true,"id":1806,"enabled":false,"description":"SLE11-SP4-Debuginfo-Updates for sle-11-x86_64","installer_updates":false,"name":"SLE11-SP4-Debuginfo-Updates"},{"installer_updates":false,"name":"SLES11-SP4-LTSS-Updates","description":"SLES11-SP4-LTSS-Updates for sle-11-x86_64","id":3760,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP4-LTSS-Updates/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true},{"url":"https://updates.suse.com/SUSE/Updates/SLE-SERVER/11-SP4-LTSS-EXTREME-CORE/x86_64/update/","autorefresh":true,"distro_target":"sle-11-x86_64","id":6166,"enabled":true,"description":"SLES11-SP4-LTSS-EXTREME-CORE-Updates for sle-11-x86_64","name":"SLES11-SP4-LTSS-EXTREME-CORE-Updates","installer_updates":false}],"online_predecessor_ids":[],"product_class":"7261","predecessor_ids":[],"arch":"x86_64","eula_url":"","free":false,"description":null,"shortname":null},{"predecessor_ids":[],"product_class":"SLES-PPC","online_predecessor_ids":[],"repositories":[{"name":"SLES11-Extras","installer_updates":false,"description":"SLES11-Extras for sle-11-ppc64","enabled":false,"id":920,"autorefresh":true,"distro_target":"sle-11-ppc64","url":"https://updates.suse.com/repo/$RCE/SLES11-Extras/sle-11-ppc64/"},{"enabled":false,"id":1380,"distro_target":"sle-11-ppc64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-Security-Module/sle-11-ppc64/","installer_updates":false,"name":"SLE11-Security-Module","description":"SLE11-Security-Module for sle-11-ppc64"},{"id":1780,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-Public-Cloud-Module/sle-11-ppc64/","autorefresh":true,"distro_target":"sle-11-ppc64","name":"SLE11-Public-Cloud-Module","installer_updates":false,"description":"SLE11-Public-Cloud-Module for sle-11-ppc64"},{"description":"SLES11-SP4-Pool for sle-11-ppc64","installer_updates":false,"name":"SLES11-SP4-Pool","distro_target":"sle-11-ppc64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP4-Pool/sle-11-ppc64/","enabled":true,"id":1785},{"url":"https://updates.suse.com/repo/$RCE/SLES11-SP4-Updates/sle-11-ppc64/","autorefresh":true,"distro_target":"sle-11-ppc64","id":1786,"enabled":true,"description":"SLES11-SP4-Updates for sle-11-ppc64","name":"SLES11-SP4-Updates","installer_updates":false},{"installer_updates":false,"name":"SLE11-SP4-Debuginfo-Pool","description":"SLE11-SP4-Debuginfo-Pool for sle-11-ppc64","id":1787,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP4-Debuginfo-Pool/sle-11-ppc64/","distro_target":"sle-11-ppc64","autorefresh":true},{"description":"SLE11-SP4-Debuginfo-Updates for sle-11-ppc64","name":"SLE11-SP4-Debuginfo-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-ppc64","url":"https://updates.suse.com/repo/$RCE/SLE11-SP4-Debuginfo-Updates/sle-11-ppc64/","enabled":false,"id":1788},{"description":"SLES11-SP4-LTSS-Updates for sle-11-ppc64","installer_updates":false,"name":"SLES11-SP4-LTSS-Updates","url":"https://updates.suse.com/repo/$RCE/SLES11-SP4-LTSS-Updates/sle-11-ppc64/","distro_target":"sle-11-ppc64","autorefresh":true,"id":3880,"enabled":true}],"product_type":"base","cpe":"cpe:/o:suse:suse_sles:11:sp4","free":false,"description":null,"shortname":null,"eula_url":"","arch":"ppc64","friendly_version":"11 SP4","extensions":[{"friendly_version":"11 SP3","release_stage":"released","identifier":"sle-smt","id":1198,"extensions":[],"version":"11.3","recommended":false,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Subscription Management Tool 11 SP3","release_type":null,"former_identifier":"sle-smt","name":"SUSE Linux Enterprise Subscription Management Tool","offline_predecessor_ids":[],"repositories":[{"enabled":true,"id":1405,"distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP3-Updates/sle-11-x86_64/","installer_updates":false,"name":"SLE11-SMT-SP3-Updates","description":"SLE11-SMT-SP3-Updates for sle-11-x86_64"},{"enabled":true,"id":1406,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP3-Updates/sle-11-i586/","name":"SLE11-SMT-SP3-Updates","installer_updates":false,"description":"SLE11-SMT-SP3-Updates for sle-11-i586"},{"installer_updates":false,"name":"SLE11-SMT-SP3-Updates","description":"SLE11-SMT-SP3-Updates for sle-11-s390x","id":1407,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP3-Updates/sle-11-s390x/","distro_target":"sle-11-s390x","autorefresh":true},{"autorefresh":true,"distro_target":"sle-11-s390x","url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP3-Pool/sle-11-s390x/","enabled":true,"id":1408,"description":"SLE11-SMT-SP3-Pool for sle-11-s390x","name":"SLE11-SMT-SP3-Pool","installer_updates":false},{"installer_updates":false,"name":"SLE11-SMT-SP3-Pool","description":"SLE11-SMT-SP3-Pool for sle-11-x86_64","id":1409,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP3-Pool/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP3-Pool/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true,"id":1410,"enabled":true,"description":"SLE11-SMT-SP3-Pool for sle-11-i586","installer_updates":false,"name":"SLE11-SMT-SP3-Pool"}],"online_predecessor_ids":[],"product_class":"SLESMT","predecessor_ids":[],"cpe":null,"product_type":"extension","description":null,"shortname":null,"free":true,"arch":null,"eula_url":""},{"product_type":"extension","cpe":null,"online_predecessor_ids":[],"repositories":[{"id":1756,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP4-Pool/sle-11-ppc64/","autorefresh":true,"distro_target":"sle-11-ppc64","name":"SLE11-HAE-SP4-Pool","installer_updates":false,"description":"SLE11-HAE-SP4-Pool for sle-11-ppc64"},{"installer_updates":false,"name":"SLE11-HAE-SP4-Updates","description":"SLE11-HAE-SP4-Updates for sle-11-ppc64","id":1757,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP4-Updates/sle-11-ppc64/","distro_target":"sle-11-ppc64","autorefresh":true}],"product_class":"SLE-HAE-PPC","predecessor_ids":[],"arch":"ppc64","eula_url":"","free":false,"description":null,"shortname":null,"identifier":"sle-hae","release_stage":"released","id":1258,"extensions":[],"friendly_version":"11 SP4","former_identifier":"sle-hae","release_type":null,"friendly_name":"SUSE Linux Enterprise High Availability Extension 11 SP4 ppc64","migration_extra":false,"offline_predecessor_ids":[],"name":"SUSE Linux Enterprise High Availability Extension","version":"11.4","recommended":false},{"recommended":false,"version":"11.4","name":"SUSE Linux Enterprise Software Development Kit","offline_predecessor_ids":[],"friendly_name":"SUSE Linux Enterprise Software Development Kit 11 SP4","migration_extra":false,"former_identifier":"sle-sdk","release_type":null,"friendly_version":"11 SP4","extensions":[],"release_stage":"released","identifier":"sle-sdk","id":1320,"shortname":null,"description":null,"free":true,"eula_url":"","arch":null,"predecessor_ids":[],"repositories":[{"name":"SLE11-SDK-SP4-Pool","installer_updates":false,"description":"SLE11-SDK-SP4-Pool for sle-11-i586","id":1817,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP4-Pool/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586"},{"description":"SLE11-SDK-SP4-Pool for sle-11-ia64","name":"SLE11-SDK-SP4-Pool","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-ia64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP4-Pool/sle-11-ia64/","enabled":true,"id":1818},{"autorefresh":true,"distro_target":"sle-11-ppc64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP4-Pool/sle-11-ppc64/","enabled":true,"id":1819,"description":"SLE11-SDK-SP4-Pool for sle-11-ppc64","name":"SLE11-SDK-SP4-Pool","installer_updates":false},{"id":1820,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP4-Pool/sle-11-s390x/","distro_target":"sle-11-s390x","autorefresh":true,"installer_updates":false,"name":"SLE11-SDK-SP4-Pool","description":"SLE11-SDK-SP4-Pool for sle-11-s390x"},{"installer_updates":false,"name":"SLE11-SDK-SP4-Pool","description":"SLE11-SDK-SP4-Pool for sle-11-x86_64","enabled":true,"id":1821,"distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP4-Pool/sle-11-x86_64/"},{"description":"SLE11-SDK-SP4-Updates for sle-11-i586","name":"SLE11-SDK-SP4-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP4-Updates/sle-11-i586/","enabled":true,"id":1822},{"description":"SLE11-SDK-SP4-Updates for sle-11-ia64","name":"SLE11-SDK-SP4-Updates","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP4-Updates/sle-11-ia64/","autorefresh":true,"distro_target":"sle-11-ia64","id":1823,"enabled":true},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP4-Updates/sle-11-ppc64/","autorefresh":true,"distro_target":"sle-11-ppc64","id":1824,"enabled":true,"description":"SLE11-SDK-SP4-Updates for sle-11-ppc64","name":"SLE11-SDK-SP4-Updates","installer_updates":false},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP4-Updates/sle-11-s390x/","distro_target":"sle-11-s390x","autorefresh":true,"id":1825,"enabled":true,"description":"SLE11-SDK-SP4-Updates for sle-11-s390x","installer_updates":false,"name":"SLE11-SDK-SP4-Updates"},{"description":"SLE11-SDK-SP4-Updates for sle-11-x86_64","name":"SLE11-SDK-SP4-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP4-Updates/sle-11-x86_64/","enabled":true,"id":1826}],"online_predecessor_ids":[],"product_class":"SLE-SDK","cpe":null,"product_type":"extension"}],"identifier":"SUSE_SLES","release_stage":"released","id":1301,"recommended":false,"version":"11.4","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Server","release_type":null,"former_identifier":"SUSE_SLES","migration_extra":false,"friendly_name":"SUSE Linux Enterprise Server 11 SP4 ppc64"},{"free":false,"shortname":null,"description":null,"arch":"ia64","eula_url":"","online_predecessor_ids":[],"product_class":"SLES-IA","repositories":[{"url":"https://updates.suse.com/repo/$RCE/SLES11-Extras/sle-11-ia64/","autorefresh":true,"distro_target":"sle-11-ia64","id":972,"enabled":false,"description":"SLES11-Extras for sle-11-ia64","name":"SLES11-Extras","installer_updates":false},{"name":"SLE11-Security-Module","installer_updates":false,"description":"SLE11-Security-Module for sle-11-ia64","id":1385,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-Security-Module/sle-11-ia64/","autorefresh":true,"distro_target":"sle-11-ia64"},{"distro_target":"sle-11-ia64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-Public-Cloud-Module/sle-11-ia64/","enabled":false,"id":1783,"description":"SLE11-Public-Cloud-Module for sle-11-ia64","installer_updates":false,"name":"SLE11-Public-Cloud-Module"},{"installer_updates":false,"name":"SLES11-SP4-Pool","description":"SLES11-SP4-Pool for sle-11-ia64","enabled":true,"id":1793,"distro_target":"sle-11-ia64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP4-Pool/sle-11-ia64/"},{"autorefresh":true,"distro_target":"sle-11-ia64","url":"https://updates.suse.com/repo/$RCE/SLES11-SP4-Updates/sle-11-ia64/","enabled":true,"id":1794,"description":"SLES11-SP4-Updates for sle-11-ia64","name":"SLES11-SP4-Updates","installer_updates":false},{"enabled":false,"id":1795,"autorefresh":true,"distro_target":"sle-11-ia64","url":"https://updates.suse.com/repo/$RCE/SLE11-SP4-Debuginfo-Pool/sle-11-ia64/","name":"SLE11-SP4-Debuginfo-Pool","installer_updates":false,"description":"SLE11-SP4-Debuginfo-Pool for sle-11-ia64"},{"description":"SLE11-SP4-Debuginfo-Updates for sle-11-ia64","name":"SLE11-SP4-Debuginfo-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-ia64","url":"https://updates.suse.com/repo/$RCE/SLE11-SP4-Debuginfo-Updates/sle-11-ia64/","enabled":false,"id":1796}],"predecessor_ids":[],"product_type":"base","cpe":"cpe:/o:suse:suse_sles:11:sp4","version":"11.4","recommended":false,"release_type":null,"former_identifier":"SUSE_SLES","migration_extra":false,"friendly_name":"SUSE Linux Enterprise Server 11 SP4 ia64","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Server","friendly_version":"11 SP4","id":1302,"release_stage":"released","identifier":"SUSE_SLES","extensions":[{"product_type":"extension","cpe":null,"predecessor_ids":[],"product_class":"SLESMT","online_predecessor_ids":[],"repositories":[{"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP3-Updates/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64","id":1405,"enabled":true,"description":"SLE11-SMT-SP3-Updates for sle-11-x86_64","name":"SLE11-SMT-SP3-Updates","installer_updates":false},{"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP3-Updates/sle-11-i586/","enabled":true,"id":1406,"description":"SLE11-SMT-SP3-Updates for sle-11-i586","name":"SLE11-SMT-SP3-Updates","installer_updates":false},{"name":"SLE11-SMT-SP3-Updates","installer_updates":false,"description":"SLE11-SMT-SP3-Updates for sle-11-s390x","enabled":true,"id":1407,"autorefresh":true,"distro_target":"sle-11-s390x","url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP3-Updates/sle-11-s390x/"},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP3-Pool/sle-11-s390x/","autorefresh":true,"distro_target":"sle-11-s390x","id":1408,"enabled":true,"description":"SLE11-SMT-SP3-Pool for sle-11-s390x","name":"SLE11-SMT-SP3-Pool","installer_updates":false},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP3-Pool/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true,"id":1409,"enabled":true,"description":"SLE11-SMT-SP3-Pool for sle-11-x86_64","installer_updates":false,"name":"SLE11-SMT-SP3-Pool"},{"description":"SLE11-SMT-SP3-Pool for sle-11-i586","installer_updates":false,"name":"SLE11-SMT-SP3-Pool","distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP3-Pool/sle-11-i586/","enabled":true,"id":1410}],"eula_url":"","arch":null,"free":true,"shortname":null,"description":null,"extensions":[],"release_stage":"released","identifier":"sle-smt","id":1198,"friendly_version":"11 SP3","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Subscription Management Tool","former_identifier":"sle-smt","release_type":null,"friendly_name":"SUSE Linux Enterprise Subscription Management Tool 11 SP3","migration_extra":false,"recommended":false,"version":"11.3"},{"version":"11.4","recommended":false,"friendly_name":"SUSE Linux Enterprise High Availability Extension 11 SP4 ia64","migration_extra":false,"release_type":null,"former_identifier":"sle-hae","name":"SUSE Linux Enterprise High Availability Extension","offline_predecessor_ids":[],"friendly_version":"11 SP4","release_stage":"released","id":1259,"identifier":"sle-hae","extensions":[],"description":null,"shortname":null,"free":false,"arch":"ia64","eula_url":"","online_predecessor_ids":[],"repositories":[{"installer_updates":false,"name":"SLE11-HAE-SP4-Pool","description":"SLE11-HAE-SP4-Pool for sle-11-ia64","id":1754,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP4-Pool/sle-11-ia64/","distro_target":"sle-11-ia64","autorefresh":true},{"distro_target":"sle-11-ia64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP4-Updates/sle-11-ia64/","enabled":true,"id":1755,"description":"SLE11-HAE-SP4-Updates for sle-11-ia64","installer_updates":false,"name":"SLE11-HAE-SP4-Updates"}],"product_class":"SLE-HAE-IA","predecessor_ids":[],"cpe":null,"product_type":"extension"},{"release_stage":"released","identifier":"sle-sdk","id":1320,"extensions":[],"friendly_version":"11 SP4","release_type":null,"former_identifier":"sle-sdk","friendly_name":"SUSE Linux Enterprise Software Development Kit 11 SP4","migration_extra":false,"offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Software Development Kit","version":"11.4","recommended":false,"product_type":"extension","cpe":null,"online_predecessor_ids":[],"product_class":"SLE-SDK","repositories":[{"name":"SLE11-SDK-SP4-Pool","installer_updates":false,"description":"SLE11-SDK-SP4-Pool for sle-11-i586","id":1817,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP4-Pool/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586"},{"description":"SLE11-SDK-SP4-Pool for sle-11-ia64","name":"SLE11-SDK-SP4-Pool","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-ia64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP4-Pool/sle-11-ia64/","enabled":true,"id":1818},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP4-Pool/sle-11-ppc64/","distro_target":"sle-11-ppc64","autorefresh":true,"id":1819,"enabled":true,"description":"SLE11-SDK-SP4-Pool for sle-11-ppc64","installer_updates":false,"name":"SLE11-SDK-SP4-Pool"},{"enabled":true,"id":1820,"distro_target":"sle-11-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP4-Pool/sle-11-s390x/","installer_updates":false,"name":"SLE11-SDK-SP4-Pool","description":"SLE11-SDK-SP4-Pool for sle-11-s390x"},{"id":1821,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP4-Pool/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true,"installer_updates":false,"name":"SLE11-SDK-SP4-Pool","description":"SLE11-SDK-SP4-Pool for sle-11-x86_64"},{"name":"SLE11-SDK-SP4-Updates","installer_updates":false,"description":"SLE11-SDK-SP4-Updates for sle-11-i586","id":1822,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP4-Updates/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586"},{"distro_target":"sle-11-ia64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP4-Updates/sle-11-ia64/","enabled":true,"id":1823,"description":"SLE11-SDK-SP4-Updates for sle-11-ia64","installer_updates":false,"name":"SLE11-SDK-SP4-Updates"},{"distro_target":"sle-11-ppc64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP4-Updates/sle-11-ppc64/","enabled":true,"id":1824,"description":"SLE11-SDK-SP4-Updates for sle-11-ppc64","installer_updates":false,"name":"SLE11-SDK-SP4-Updates"},{"id":1825,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP4-Updates/sle-11-s390x/","distro_target":"sle-11-s390x","autorefresh":true,"installer_updates":false,"name":"SLE11-SDK-SP4-Updates","description":"SLE11-SDK-SP4-Updates for sle-11-s390x"},{"id":1826,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP4-Updates/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64","name":"SLE11-SDK-SP4-Updates","installer_updates":false,"description":"SLE11-SDK-SP4-Updates for sle-11-x86_64"}],"predecessor_ids":[],"arch":null,"eula_url":"","free":true,"shortname":null,"description":null}]},{"friendly_version":"11 SP4","extensions":[{"eula_url":"","arch":null,"free":true,"shortname":null,"description":null,"product_type":"extension","cpe":null,"predecessor_ids":[],"repositories":[{"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP3-Updates/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64","id":1405,"enabled":true,"description":"SLE11-SMT-SP3-Updates for sle-11-x86_64","name":"SLE11-SMT-SP3-Updates","installer_updates":false},{"installer_updates":false,"name":"SLE11-SMT-SP3-Updates","description":"SLE11-SMT-SP3-Updates for sle-11-i586","id":1406,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP3-Updates/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true},{"distro_target":"sle-11-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP3-Updates/sle-11-s390x/","enabled":true,"id":1407,"description":"SLE11-SMT-SP3-Updates for sle-11-s390x","installer_updates":false,"name":"SLE11-SMT-SP3-Updates"},{"id":1408,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP3-Pool/sle-11-s390x/","autorefresh":true,"distro_target":"sle-11-s390x","name":"SLE11-SMT-SP3-Pool","installer_updates":false,"description":"SLE11-SMT-SP3-Pool for sle-11-s390x"},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP3-Pool/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true,"id":1409,"enabled":true,"description":"SLE11-SMT-SP3-Pool for sle-11-x86_64","installer_updates":false,"name":"SLE11-SMT-SP3-Pool"},{"id":1410,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP3-Pool/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","name":"SLE11-SMT-SP3-Pool","installer_updates":false,"description":"SLE11-SMT-SP3-Pool for sle-11-i586"}],"online_predecessor_ids":[],"product_class":"SLESMT","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Subscription Management Tool","release_type":null,"former_identifier":"sle-smt","migration_extra":false,"friendly_name":"SUSE Linux Enterprise Subscription Management Tool 11 SP3","recommended":false,"version":"11.3","extensions":[],"id":1198,"release_stage":"released","identifier":"sle-smt","friendly_version":"11 SP3"},{"name":"SUSE Linux Enterprise High Availability Extension","offline_predecessor_ids":[],"friendly_name":"SUSE Linux Enterprise High Availability Extension 11 SP4 s390x","migration_extra":false,"former_identifier":"sle-hae","release_type":null,"recommended":false,"version":"11.4","extensions":[{"shortname":null,"description":null,"free":false,"eula_url":"","arch":"s390x","predecessor_ids":[],"online_predecessor_ids":[],"product_class":"SLE-HAE-GEO","repositories":[{"enabled":true,"id":1761,"autorefresh":true,"distro_target":"sle-11-s390x","url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-GEO-SP4-Updates/sle-11-s390x/","name":"SLE11-HAE-GEO-SP4-Updates","installer_updates":false,"description":"SLE11-HAE-GEO-SP4-Updates for sle-11-s390x"},{"url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-GEO-SP4-Pool/sle-11-s390x/","autorefresh":true,"distro_target":"sle-11-s390x","id":1859,"enabled":true,"description":"SLE11-HAE-GEO-SP4-Pool for sle-11-s390x","name":"SLE11-HAE-GEO-SP4-Pool","installer_updates":false}],"cpe":null,"product_type":"extension","recommended":false,"version":"11.4","name":"Geo Clustering for SUSE Linux Enterprise High Availability Extension","offline_predecessor_ids":[],"friendly_name":"Geo Clustering for SUSE Linux Enterprise High Availability Extension 11 SP4 s390x","migration_extra":false,"former_identifier":"sle-haegeo","release_type":null,"friendly_version":"11 SP4","extensions":[],"id":1287,"release_stage":"released","identifier":"sle-haegeo"}],"identifier":"sle-hae","release_stage":"released","id":1257,"friendly_version":"11 SP4","eula_url":"","arch":"s390x","shortname":null,"description":null,"free":false,"cpe":null,"product_type":"extension","predecessor_ids":[],"repositories":[{"description":"SLE11-HAE-SP4-Pool for sle-11-s390x","installer_updates":false,"name":"SLE11-HAE-SP4-Pool","url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP4-Pool/sle-11-s390x/","distro_target":"sle-11-s390x","autorefresh":true,"id":1758,"enabled":true},{"enabled":true,"id":1759,"distro_target":"sle-11-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP4-Updates/sle-11-s390x/","installer_updates":false,"name":"SLE11-HAE-SP4-Updates","description":"SLE11-HAE-SP4-Updates for sle-11-s390x"}],"online_predecessor_ids":[],"product_class":"SLE-HAE-Z"},{"recommended":false,"version":"11.4","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Software Development Kit","former_identifier":"sle-sdk","release_type":null,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Software Development Kit 11 SP4","friendly_version":"11 SP4","extensions":[],"identifier":"sle-sdk","release_stage":"released","id":1320,"free":true,"description":null,"shortname":null,"eula_url":"","arch":null,"predecessor_ids":[],"online_predecessor_ids":[],"product_class":"SLE-SDK","repositories":[{"enabled":true,"id":1817,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP4-Pool/sle-11-i586/","name":"SLE11-SDK-SP4-Pool","installer_updates":false,"description":"SLE11-SDK-SP4-Pool for sle-11-i586"},{"enabled":true,"id":1818,"distro_target":"sle-11-ia64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP4-Pool/sle-11-ia64/","installer_updates":false,"name":"SLE11-SDK-SP4-Pool","description":"SLE11-SDK-SP4-Pool for sle-11-ia64"},{"id":1819,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP4-Pool/sle-11-ppc64/","distro_target":"sle-11-ppc64","autorefresh":true,"installer_updates":false,"name":"SLE11-SDK-SP4-Pool","description":"SLE11-SDK-SP4-Pool for sle-11-ppc64"},{"id":1820,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP4-Pool/sle-11-s390x/","autorefresh":true,"distro_target":"sle-11-s390x","name":"SLE11-SDK-SP4-Pool","installer_updates":false,"description":"SLE11-SDK-SP4-Pool for sle-11-s390x"},{"id":1821,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP4-Pool/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64","name":"SLE11-SDK-SP4-Pool","installer_updates":false,"description":"SLE11-SDK-SP4-Pool for sle-11-x86_64"},{"id":1822,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP4-Updates/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","name":"SLE11-SDK-SP4-Updates","installer_updates":false,"description":"SLE11-SDK-SP4-Updates for sle-11-i586"},{"enabled":true,"id":1823,"autorefresh":true,"distro_target":"sle-11-ia64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP4-Updates/sle-11-ia64/","name":"SLE11-SDK-SP4-Updates","installer_updates":false,"description":"SLE11-SDK-SP4-Updates for sle-11-ia64"},{"installer_updates":false,"name":"SLE11-SDK-SP4-Updates","description":"SLE11-SDK-SP4-Updates for sle-11-ppc64","enabled":true,"id":1824,"distro_target":"sle-11-ppc64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP4-Updates/sle-11-ppc64/"},{"id":1825,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP4-Updates/sle-11-s390x/","distro_target":"sle-11-s390x","autorefresh":true,"installer_updates":false,"name":"SLE11-SDK-SP4-Updates","description":"SLE11-SDK-SP4-Updates for sle-11-s390x"},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP4-Updates/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64","id":1826,"enabled":true,"description":"SLE11-SDK-SP4-Updates for sle-11-x86_64","name":"SLE11-SDK-SP4-Updates","installer_updates":false}],"product_type":"extension","cpe":null}],"identifier":"SUSE_SLES","release_stage":"released","id":1303,"recommended":false,"version":"11.4","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Server","former_identifier":"SUSE_SLES","release_type":null,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Server 11 SP4 s390x","predecessor_ids":[],"online_predecessor_ids":[],"repositories":[{"installer_updates":false,"name":"SLES11-Extras","description":"SLES11-Extras for sle-11-s390x","enabled":false,"id":689,"distro_target":"sle-11-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-Extras/sle-11-s390x/"},{"enabled":false,"id":1446,"distro_target":"sle-11-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-Security-Module/sle-11-s390x/","installer_updates":false,"name":"SLE11-Security-Module","description":"SLE11-Security-Module for sle-11-s390x"},{"installer_updates":false,"name":"SLE11-Public-Cloud-Module","description":"SLE11-Public-Cloud-Module for sle-11-s390x","enabled":false,"id":1778,"distro_target":"sle-11-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-Public-Cloud-Module/sle-11-s390x/"},{"description":"SLE11-SP4-Debuginfo-Pool for sle-11-s390x","name":"SLE11-SP4-Debuginfo-Pool","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP4-Debuginfo-Pool/sle-11-s390x/","autorefresh":true,"distro_target":"sle-11-s390x","id":1789,"enabled":false},{"installer_updates":false,"name":"SLE11-SP4-Debuginfo-Updates","description":"SLE11-SP4-Debuginfo-Updates for sle-11-s390x","enabled":false,"id":1790,"distro_target":"sle-11-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP4-Debuginfo-Updates/sle-11-s390x/"},{"installer_updates":false,"name":"SLES11-SP4-Pool","description":"SLES11-SP4-Pool for sle-11-s390x","id":1791,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP4-Pool/sle-11-s390x/","distro_target":"sle-11-s390x","autorefresh":true},{"installer_updates":false,"name":"SLES11-SP4-Updates","description":"SLES11-SP4-Updates for sle-11-s390x","enabled":true,"id":1792,"distro_target":"sle-11-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP4-Updates/sle-11-s390x/"},{"description":"SLES11-SP4-LTSS-Updates for sle-11-s390x","name":"SLES11-SP4-LTSS-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-s390x","url":"https://updates.suse.com/repo/$RCE/SLES11-SP4-LTSS-Updates/sle-11-s390x/","enabled":true,"id":3761}],"product_class":"SLES-Z","product_type":"base","cpe":"cpe:/o:suse:suse_sles:11:sp4","free":false,"shortname":null,"description":null,"eula_url":"","arch":"s390x"},{"repositories":[{"description":"SUSE-Enterprise-Storage-1.0-Updates for sle-12-x86_64","name":"SUSE-Enterprise-Storage-1.0-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Updates/Storage/1.0/x86_64/update/","enabled":true,"id":1772},{"description":"SUSE-Enterprise-Storage-1.0-Debuginfo-Updates for sle-12-x86_64","installer_updates":false,"name":"SUSE-Enterprise-Storage-1.0-Debuginfo-Updates","distro_target":"sle-12-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/Storage/1.0/x86_64/update_debug/","enabled":false,"id":1773},{"id":1774,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/Storage/1.0/x86_64/product/","distro_target":"sle-12-x86_64","autorefresh":false,"installer_updates":false,"name":"SUSE-Enterprise-Storage-1.0-Pool","description":"SUSE-Enterprise-Storage-1.0-Pool for sle-12-x86_64"},{"description":"SUSE-Enterprise-Storage-1.0-Debuginfo-Pool for sle-12-x86_64","name":"SUSE-Enterprise-Storage-1.0-Debuginfo-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Products/Storage/1.0/x86_64/product_debug/","enabled":false,"id":1775},{"description":"SUSE-Enterprise-Storage-1.0-Source-Pool for sle-12-x86_64","installer_updates":false,"name":"SUSE-Enterprise-Storage-1.0-Source-Pool","distro_target":"sle-12-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/Storage/1.0/x86_64/product_source/","enabled":false,"id":1985}],"online_predecessor_ids":[],"product_class":"SES","predecessor_ids":[],"cpe":"cpe:/o:suse:ses:1","product_type":"extension","shortname":"SES1.0","description":"SUSE Enterprise Storage 1.0 for SUSE Linux Enterprise Server 12, powered by Ceph.","free":false,"arch":"x86_64","eula_url":"https://updates.suse.com/SUSE/Products/Storage/1.0/x86_64/product.license/","friendly_version":"1","release_stage":"released","identifier":"ses","id":1304,"extensions":[],"version":"1","recommended":false,"migration_extra":false,"friendly_name":"SUSE Enterprise Storage 1 x86_64","release_type":null,"former_identifier":"ses","name":"SUSE Enterprise Storage","offline_predecessor_ids":[]},{"predecessor_ids":[],"online_predecessor_ids":[],"repositories":[{"description":"SLES11-Extras for sle-11-i586","name":"SLES11-Extras","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLES11-Extras/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","id":679,"enabled":false},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Pool/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","id":680,"enabled":false,"description":"SLE11-SP1-Debuginfo-Pool for sle-11-i586","name":"SLE11-SP1-Debuginfo-Pool","installer_updates":false},{"description":"SLE11-SP1-Debuginfo-Updates for sle-11-i586","name":"SLE11-SP1-Debuginfo-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Updates/sle-11-i586/","enabled":false,"id":682},{"enabled":false,"id":684,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-Updates/sle-11-i586/","name":"SLES11-SP1-Updates","installer_updates":false,"description":"SLES11-SP1-Updates for sle-11-i586"},{"name":"SLES11-SP1-Pool","installer_updates":false,"description":"SLES11-SP1-Pool for sle-11-i586","id":686,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-Pool/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586"},{"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-Debuginfo-Core/sle-11-i586/","enabled":false,"id":717,"description":"SLE11-SP2-Debuginfo-Core for sle-11-i586","name":"SLE11-SP2-Debuginfo-Core","installer_updates":false},{"enabled":false,"id":719,"distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-Debuginfo-Updates/sle-11-i586/","installer_updates":false,"name":"SLE11-SP2-Debuginfo-Updates","description":"SLE11-SP2-Debuginfo-Updates for sle-11-i586"},{"installer_updates":false,"name":"SLES11-SP2-Updates","description":"SLES11-SP2-Updates for sle-11-i586","enabled":false,"id":720,"distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP2-Updates/sle-11-i586/"},{"installer_updates":false,"name":"SLES11-SP2-Core","description":"SLES11-SP2-Core for sle-11-i586","id":722,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP2-Core/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true},{"installer_updates":false,"name":"SLE11-SP3-Debuginfo-Updates","description":"SLE11-SP3-Debuginfo-Updates for sle-11-i586","id":759,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP3-Debuginfo-Updates/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true},{"enabled":false,"id":760,"distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP3-Pool/sle-11-i586/","installer_updates":false,"name":"SLES11-SP3-Pool","description":"SLES11-SP3-Pool for sle-11-i586"},{"enabled":false,"id":762,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLES11-SP3-Updates/sle-11-i586/","name":"SLES11-SP3-Updates","installer_updates":false,"description":"SLES11-SP3-Updates for sle-11-i586"},{"description":"SLE11-SP3-Debuginfo-Pool for sle-11-i586","installer_updates":false,"name":"SLE11-SP3-Debuginfo-Pool","url":"https://updates.suse.com/repo/$RCE/SLE11-SP3-Debuginfo-Pool/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true,"id":763,"enabled":false},{"description":"SLE11-Security-Module for sle-11-i586","name":"SLE11-Security-Module","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-Security-Module/sle-11-i586/","enabled":false,"id":1379},{"description":"SLES11-SP4-Pool for sle-11-i586","name":"SLES11-SP4-Pool","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP4-Pool/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","id":1797,"enabled":true},{"id":1799,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP4-Updates/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","name":"SLES11-SP4-Updates","installer_updates":false,"description":"SLES11-SP4-Updates for sle-11-i586"},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SP4-Debuginfo-Pool/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","id":1800,"enabled":false,"description":"SLE11-SP4-Debuginfo-Pool for sle-11-i586","name":"SLE11-SP4-Debuginfo-Pool","installer_updates":false},{"description":"SLE11-SP4-Debuginfo-Updates for sle-11-i586","name":"SLE11-SP4-Debuginfo-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-SP4-Debuginfo-Updates/sle-11-i586/","enabled":false,"id":1801}],"product_class":"7261","product_type":"base","cpe":null,"free":false,"description":null,"shortname":null,"eula_url":"","arch":"i686","friendly_version":"11 SP3","extensions":[{"release_stage":"released","identifier":"sle-hae","id":985,"extensions":[],"friendly_version":"11 SP3","migration_extra":false,"friendly_name":"SUSE Linux Enterprise High Availability Extension 11 SP3 i686","former_identifier":"sle-hae","release_type":null,"name":"SUSE Linux Enterprise High Availability Extension","offline_predecessor_ids":[],"version":"11.3","recommended":false,"cpe":null,"product_type":"extension","online_predecessor_ids":[],"product_class":"SLE-HAE-X86","repositories":[{"url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP3-Pool/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true,"id":951,"enabled":true,"description":"SLE11-HAE-SP3-Pool for sle-11-i586","installer_updates":false,"name":"SLE11-HAE-SP3-Pool"},{"url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP3-Updates/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true,"id":952,"enabled":true,"description":"SLE11-HAE-SP3-Updates for sle-11-i586","installer_updates":false,"name":"SLE11-HAE-SP3-Updates"}],"predecessor_ids":[],"arch":"i686","eula_url":"","description":null,"shortname":null,"free":false},{"description":null,"shortname":null,"free":true,"arch":null,"eula_url":"","online_predecessor_ids":[],"product_class":"SLESMT","repositories":[{"installer_updates":false,"name":"SLE11-SMT-SP3-Updates","description":"SLE11-SMT-SP3-Updates for sle-11-x86_64","enabled":true,"id":1405,"distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP3-Updates/sle-11-x86_64/"},{"description":"SLE11-SMT-SP3-Updates for sle-11-i586","installer_updates":false,"name":"SLE11-SMT-SP3-Updates","url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP3-Updates/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true,"id":1406,"enabled":true},{"description":"SLE11-SMT-SP3-Updates for sle-11-s390x","installer_updates":false,"name":"SLE11-SMT-SP3-Updates","url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP3-Updates/sle-11-s390x/","distro_target":"sle-11-s390x","autorefresh":true,"id":1407,"enabled":true},{"installer_updates":false,"name":"SLE11-SMT-SP3-Pool","description":"SLE11-SMT-SP3-Pool for sle-11-s390x","id":1408,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP3-Pool/sle-11-s390x/","distro_target":"sle-11-s390x","autorefresh":true},{"enabled":true,"id":1409,"distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP3-Pool/sle-11-x86_64/","installer_updates":false,"name":"SLE11-SMT-SP3-Pool","description":"SLE11-SMT-SP3-Pool for sle-11-x86_64"},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP3-Pool/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","id":1410,"enabled":true,"description":"SLE11-SMT-SP3-Pool for sle-11-i586","name":"SLE11-SMT-SP3-Pool","installer_updates":false}],"predecessor_ids":[],"cpe":null,"product_type":"extension","version":"11.3","recommended":false,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Subscription Management Tool 11 SP3","former_identifier":"sle-smt","release_type":null,"name":"SUSE Linux Enterprise Subscription Management Tool","offline_predecessor_ids":[],"friendly_version":"11 SP3","identifier":"sle-smt","release_stage":"released","id":1198,"extensions":[]},{"predecessor_ids":[],"repositories":[{"id":1747,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP4-Pool/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true,"installer_updates":false,"name":"SLE11-HAE-SP4-Pool","description":"SLE11-HAE-SP4-Pool for sle-11-i586"},{"enabled":true,"id":1749,"distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP4-Updates/sle-11-i586/","installer_updates":false,"name":"SLE11-HAE-SP4-Updates","description":"SLE11-HAE-SP4-Updates for sle-11-i586"}],"online_predecessor_ids":[],"product_class":"SLE-HAE-X86","cpe":null,"product_type":"extension","shortname":null,"description":null,"free":false,"eula_url":"","arch":"i686","friendly_version":"11 SP3","extensions":[],"release_stage":"released","identifier":"sle-hae-SP4-migration","id":1276,"recommended":false,"version":"11.3","name":"SUSE Linux Enterprise High Availability Extension","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"SUSE Linux Enterprise High Availability Extension 11 SP3 i686 (Migration)","former_identifier":"sle-hae-SP4-migration","release_type":null}],"release_stage":"released","identifier":"SUSE_SLES-SP4-migration","id":1305,"recommended":false,"version":"11.3","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Server","former_identifier":"SUSE_SLES-SP4-migration","release_type":null,"friendly_name":"SUSE Linux Enterprise Server 11 SP3 i686 (Migration)","migration_extra":false},{"name":"SUSE Linux Enterprise Server","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Server 11 SP3 i586 (Migration)","release_type":null,"former_identifier":"SUSE_SLES-SP4-migration","recommended":false,"version":"11.3","extensions":[{"product_class":"SLE-HAE-X86","online_predecessor_ids":[],"repositories":[{"description":"SLE11-HAE-SP3-Pool for sle-11-i586","installer_updates":false,"name":"SLE11-HAE-SP3-Pool","url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP3-Pool/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true,"id":951,"enabled":true},{"name":"SLE11-HAE-SP3-Updates","installer_updates":false,"description":"SLE11-HAE-SP3-Updates for sle-11-i586","id":952,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP3-Updates/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586"}],"predecessor_ids":[],"product_type":"extension","cpe":null,"free":false,"shortname":null,"description":null,"arch":"i586","eula_url":"","friendly_version":"11 SP3","release_stage":"released","identifier":"sle-hae","id":977,"extensions":[],"version":"11.3","recommended":false,"release_type":null,"former_identifier":"sle-hae","migration_extra":false,"friendly_name":"SUSE Linux Enterprise High Availability Extension 11 SP3 i586","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise High Availability Extension"},{"eula_url":"","arch":null,"description":null,"shortname":null,"free":true,"cpe":null,"product_type":"extension","predecessor_ids":[],"online_predecessor_ids":[],"product_class":"SLESMT","repositories":[{"distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP3-Updates/sle-11-x86_64/","enabled":true,"id":1405,"description":"SLE11-SMT-SP3-Updates for sle-11-x86_64","installer_updates":false,"name":"SLE11-SMT-SP3-Updates"},{"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP3-Updates/sle-11-i586/","enabled":true,"id":1406,"description":"SLE11-SMT-SP3-Updates for sle-11-i586","name":"SLE11-SMT-SP3-Updates","installer_updates":false},{"id":1407,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP3-Updates/sle-11-s390x/","distro_target":"sle-11-s390x","autorefresh":true,"installer_updates":false,"name":"SLE11-SMT-SP3-Updates","description":"SLE11-SMT-SP3-Updates for sle-11-s390x"},{"description":"SLE11-SMT-SP3-Pool for sle-11-s390x","name":"SLE11-SMT-SP3-Pool","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-s390x","url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP3-Pool/sle-11-s390x/","enabled":true,"id":1408},{"id":1409,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP3-Pool/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64","name":"SLE11-SMT-SP3-Pool","installer_updates":false,"description":"SLE11-SMT-SP3-Pool for sle-11-x86_64"},{"description":"SLE11-SMT-SP3-Pool for sle-11-i586","name":"SLE11-SMT-SP3-Pool","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP3-Pool/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","id":1410,"enabled":true}],"name":"SUSE Linux Enterprise Subscription Management Tool","offline_predecessor_ids":[],"friendly_name":"SUSE Linux Enterprise Subscription Management Tool 11 SP3","migration_extra":false,"former_identifier":"sle-smt","release_type":null,"recommended":false,"version":"11.3","extensions":[],"id":1198,"release_stage":"released","identifier":"sle-smt","friendly_version":"11 SP3"},{"friendly_version":"11 SP3","release_stage":"released","identifier":"sle-hae-SP4-migration","id":1277,"extensions":[],"version":"11.3","recommended":false,"release_type":null,"former_identifier":"sle-hae-SP4-migration","friendly_name":"SUSE Linux Enterprise High Availability Extension 11 SP3 i586 (Migration)","migration_extra":false,"offline_predecessor_ids":[],"name":"SUSE Linux Enterprise High Availability Extension","repositories":[{"name":"SLE11-HAE-SP4-Pool","installer_updates":false,"description":"SLE11-HAE-SP4-Pool for sle-11-i586","id":1747,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP4-Pool/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586"},{"description":"SLE11-HAE-SP4-Updates for sle-11-i586","installer_updates":false,"name":"SLE11-HAE-SP4-Updates","distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP4-Updates/sle-11-i586/","enabled":true,"id":1749}],"online_predecessor_ids":[],"product_class":"SLE-HAE-X86","predecessor_ids":[],"product_type":"extension","cpe":null,"free":false,"description":null,"shortname":null,"arch":"i586","eula_url":""}],"release_stage":"released","id":1306,"identifier":"SUSE_SLES-SP4-migration","friendly_version":"11 SP3","eula_url":"","arch":"i586","description":null,"shortname":null,"free":false,"cpe":null,"product_type":"base","predecessor_ids":[],"product_class":"7261","online_predecessor_ids":[],"repositories":[{"id":679,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLES11-Extras/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","name":"SLES11-Extras","installer_updates":false,"description":"SLES11-Extras for sle-11-i586"},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Pool/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true,"id":680,"enabled":false,"description":"SLE11-SP1-Debuginfo-Pool for sle-11-i586","installer_updates":false,"name":"SLE11-SP1-Debuginfo-Pool"},{"name":"SLE11-SP1-Debuginfo-Updates","installer_updates":false,"description":"SLE11-SP1-Debuginfo-Updates for sle-11-i586","id":682,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Updates/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586"},{"id":684,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-Updates/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true,"installer_updates":false,"name":"SLES11-SP1-Updates","description":"SLES11-SP1-Updates for sle-11-i586"},{"url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-Pool/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true,"id":686,"enabled":false,"description":"SLES11-SP1-Pool for sle-11-i586","installer_updates":false,"name":"SLES11-SP1-Pool"},{"name":"SLE11-SP2-Debuginfo-Core","installer_updates":false,"description":"SLE11-SP2-Debuginfo-Core for sle-11-i586","id":717,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-Debuginfo-Core/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586"},{"name":"SLE11-SP2-Debuginfo-Updates","installer_updates":false,"description":"SLE11-SP2-Debuginfo-Updates for sle-11-i586","id":719,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-Debuginfo-Updates/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586"},{"installer_updates":false,"name":"SLES11-SP2-Updates","description":"SLES11-SP2-Updates for sle-11-i586","enabled":false,"id":720,"distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP2-Updates/sle-11-i586/"},{"name":"SLES11-SP2-Core","installer_updates":false,"description":"SLES11-SP2-Core for sle-11-i586","id":722,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP2-Core/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586"},{"enabled":false,"id":759,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-SP3-Debuginfo-Updates/sle-11-i586/","name":"SLE11-SP3-Debuginfo-Updates","installer_updates":false,"description":"SLE11-SP3-Debuginfo-Updates for sle-11-i586"},{"name":"SLES11-SP3-Pool","installer_updates":false,"description":"SLES11-SP3-Pool for sle-11-i586","id":760,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP3-Pool/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586"},{"distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP3-Updates/sle-11-i586/","enabled":false,"id":762,"description":"SLES11-SP3-Updates for sle-11-i586","installer_updates":false,"name":"SLES11-SP3-Updates"},{"name":"SLE11-SP3-Debuginfo-Pool","installer_updates":false,"description":"SLE11-SP3-Debuginfo-Pool for sle-11-i586","id":763,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP3-Debuginfo-Pool/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586"},{"description":"SLE11-Security-Module for sle-11-i586","installer_updates":false,"name":"SLE11-Security-Module","url":"https://updates.suse.com/repo/$RCE/SLE11-Security-Module/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true,"id":1379,"enabled":false},{"description":"SLES11-SP4-Pool for sle-11-i586","installer_updates":false,"name":"SLES11-SP4-Pool","url":"https://updates.suse.com/repo/$RCE/SLES11-SP4-Pool/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true,"id":1797,"enabled":true},{"url":"https://updates.suse.com/repo/$RCE/SLES11-SP4-Updates/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","id":1799,"enabled":true,"description":"SLES11-SP4-Updates for sle-11-i586","name":"SLES11-SP4-Updates","installer_updates":false},{"id":1800,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP4-Debuginfo-Pool/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","name":"SLE11-SP4-Debuginfo-Pool","installer_updates":false,"description":"SLE11-SP4-Debuginfo-Pool for sle-11-i586"},{"description":"SLE11-SP4-Debuginfo-Updates for sle-11-i586","name":"SLE11-SP4-Debuginfo-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-SP4-Debuginfo-Updates/sle-11-i586/","enabled":false,"id":1801}]},{"free":false,"description":null,"shortname":null,"eula_url":"","arch":"x86_64","predecessor_ids":[],"repositories":[{"enabled":false,"id":705,"distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-Updates/sle-11-x86_64/","installer_updates":false,"name":"SLES11-SP1-Updates","description":"SLES11-SP1-Updates for sle-11-x86_64"},{"enabled":false,"id":707,"distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Pool/sle-11-x86_64/","installer_updates":false,"name":"SLE11-SP1-Debuginfo-Pool","description":"SLE11-SP1-Debuginfo-Pool for sle-11-x86_64"},{"url":"https://updates.suse.com/repo/$RCE/SLES11-SP2-Core/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64","id":709,"enabled":false,"description":"SLES11-SP2-Core for sle-11-x86_64","name":"SLES11-SP2-Core","installer_updates":false},{"description":"SLES11-Extras for sle-11-x86_64","installer_updates":false,"name":"SLES11-Extras","distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-Extras/sle-11-x86_64/","enabled":false,"id":710},{"enabled":false,"id":711,"distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-Pool/sle-11-x86_64/","installer_updates":false,"name":"SLES11-SP1-Pool","description":"SLES11-SP1-Pool for sle-11-x86_64"},{"description":"SLE11-SP2-Debuginfo-Updates for sle-11-x86_64","installer_updates":false,"name":"SLE11-SP2-Debuginfo-Updates","distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-Debuginfo-Updates/sle-11-x86_64/","enabled":false,"id":712},{"id":714,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP2-Updates/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64","name":"SLES11-SP2-Updates","installer_updates":false,"description":"SLES11-SP2-Updates for sle-11-x86_64"},{"description":"SLE11-SP1-Debuginfo-Updates for sle-11-x86_64","installer_updates":false,"name":"SLE11-SP1-Debuginfo-Updates","url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Updates/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true,"id":715,"enabled":false},{"id":716,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-Debuginfo-Core/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64","name":"SLE11-SP2-Debuginfo-Core","installer_updates":false,"description":"SLE11-SP2-Debuginfo-Core for sle-11-x86_64"},{"installer_updates":false,"name":"SLE11-SP3-Debuginfo-Updates","description":"SLE11-SP3-Debuginfo-Updates for sle-11-x86_64","enabled":false,"id":735,"distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP3-Debuginfo-Updates/sle-11-x86_64/"},{"name":"SLE11-SP3-Debuginfo-Pool","installer_updates":false,"description":"SLE11-SP3-Debuginfo-Pool for sle-11-x86_64","enabled":false,"id":736,"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE11-SP3-Debuginfo-Pool/sle-11-x86_64/"},{"description":"SLES11-SP3-Pool for sle-11-x86_64","name":"SLES11-SP3-Pool","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLES11-SP3-Pool/sle-11-x86_64/","enabled":false,"id":737},{"description":"SLES11-SP3-Updates for sle-11-x86_64","name":"SLES11-SP3-Updates","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP3-Updates/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64","id":738,"enabled":false},{"enabled":false,"id":1447,"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE11-Security-Module/sle-11-x86_64/","name":"SLE11-Security-Module","installer_updates":false,"description":"SLE11-Security-Module for sle-11-x86_64"},{"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLES11-SP4-Pool/sle-11-x86_64/","enabled":true,"id":1802,"description":"SLES11-SP4-Pool for sle-11-x86_64","name":"SLES11-SP4-Pool","installer_updates":false},{"installer_updates":false,"name":"SLES11-SP4-Updates","description":"SLES11-SP4-Updates for sle-11-x86_64","id":1803,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP4-Updates/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true},{"description":"SLE11-SP4-Debuginfo-Pool for sle-11-x86_64","installer_updates":false,"name":"SLE11-SP4-Debuginfo-Pool","distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP4-Debuginfo-Pool/sle-11-x86_64/","enabled":false,"id":1804},{"description":"SLE11-SP4-Debuginfo-Updates for sle-11-x86_64","installer_updates":false,"name":"SLE11-SP4-Debuginfo-Updates","url":"https://updates.suse.com/repo/$RCE/SLE11-SP4-Debuginfo-Updates/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true,"id":1806,"enabled":false}],"online_predecessor_ids":[],"product_class":"7261","product_type":"base","cpe":null,"recommended":false,"version":"11.3","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Server","former_identifier":"SUSE_SLES-SP4-migration","release_type":null,"friendly_name":"SUSE Linux Enterprise Server 11 SP3 x86_64 (Migration)","migration_extra":false,"friendly_version":"11 SP3","extensions":[{"offline_predecessor_ids":[],"name":"SUSE Lifecycle Management Server","release_type":null,"former_identifier":"sle-slms","migration_extra":false,"friendly_name":"SUSE Lifecycle Management Server 1.3","recommended":false,"version":"1.3","extensions":[],"release_stage":"released","identifier":"sle-slms","id":937,"friendly_version":"1.3","eula_url":"","arch":null,"free":false,"description":null,"shortname":null,"product_type":"extension","cpe":null,"predecessor_ids":[],"online_predecessor_ids":[],"repositories":[{"id":916,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-SLMS-1.3-Pool/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64","name":"SLE11-SP2-SLMS-1.3-Pool","installer_updates":false,"description":"SLE11-SP2-SLMS-1.3-Pool for sle-11-x86_64"},{"name":"SLE11-SP2-SLMS-1.3-Updates","installer_updates":false,"description":"SLE11-SP2-SLMS-1.3-Updates for sle-11-x86_64","enabled":true,"id":917,"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-SLMS-1.3-Updates/sle-11-x86_64/"},{"installer_updates":false,"name":"SLES11-SP2-LTSS-Updates","description":"SLES11-SP2-LTSS-Updates for sle-11-x86_64","id":1157,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP2-LTSS-Updates/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true}],"product_class":"SLMS"},{"product_class":"SLE-HAE-X86","online_predecessor_ids":[],"repositories":[{"distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP3-Updates/sle-11-x86_64/","enabled":true,"id":956,"description":"SLE11-HAE-SP3-Updates for sle-11-x86_64","installer_updates":false,"name":"SLE11-HAE-SP3-Updates"},{"description":"SLE11-HAE-SP3-Pool for sle-11-x86_64","installer_updates":false,"name":"SLE11-HAE-SP3-Pool","url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP3-Pool/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true,"id":3037,"enabled":true}],"predecessor_ids":[],"product_type":"extension","cpe":null,"free":false,"shortname":null,"description":null,"arch":"x86_64","eula_url":"","friendly_version":"11 SP3","identifier":"sle-hae","release_stage":"released","id":971,"extensions":[],"version":"11.3","recommended":false,"release_type":null,"former_identifier":"sle-hae","migration_extra":false,"friendly_name":"SUSE Linux Enterprise High Availability Extension 11 SP3 x86_64","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise High Availability Extension"},{"arch":null,"eula_url":"","free":false,"shortname":null,"description":null,"product_type":"extension","cpe":null,"online_predecessor_ids":[],"repositories":[{"description":"SLE11-SP1-Debuginfo-Pool for sle-11-i586","installer_updates":false,"name":"SLE11-SP1-Debuginfo-Pool","url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Pool/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true,"id":680,"enabled":false},{"name":"SLE11-SP1-Debuginfo-Updates","installer_updates":false,"description":"SLE11-SP1-Debuginfo-Updates for sle-11-i586","enabled":false,"id":682,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Updates/sle-11-i586/"},{"enabled":true,"id":684,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-Updates/sle-11-i586/","name":"SLES11-SP1-Updates","installer_updates":false,"description":"SLES11-SP1-Updates for sle-11-i586"},{"distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-Pool/sle-11-i586/","enabled":true,"id":686,"description":"SLES11-SP1-Pool for sle-11-i586","installer_updates":false,"name":"SLES11-SP1-Pool"},{"description":"SLES11-SP1-Pool for sle-11-s390x","name":"SLES11-SP1-Pool","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-Pool/sle-11-s390x/","autorefresh":true,"distro_target":"sle-11-s390x","id":687,"enabled":true},{"name":"SLE11-SP1-Debuginfo-Updates","installer_updates":false,"description":"SLE11-SP1-Debuginfo-Updates for sle-11-s390x","id":688,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Updates/sle-11-s390x/","autorefresh":true,"distro_target":"sle-11-s390x"},{"description":"SLES11-SP1-Updates for sle-11-s390x","installer_updates":false,"name":"SLES11-SP1-Updates","distro_target":"sle-11-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-Updates/sle-11-s390x/","enabled":true,"id":691},{"name":"SLE11-SP1-Debuginfo-Pool","installer_updates":false,"description":"SLE11-SP1-Debuginfo-Pool for sle-11-s390x","id":692,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Pool/sle-11-s390x/","autorefresh":true,"distro_target":"sle-11-s390x"},{"name":"SLES11-SP1-Updates","installer_updates":false,"description":"SLES11-SP1-Updates for sle-11-x86_64","id":705,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-Updates/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64"},{"name":"SLE11-SP1-Debuginfo-Pool","installer_updates":false,"description":"SLE11-SP1-Debuginfo-Pool for sle-11-x86_64","enabled":false,"id":707,"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Pool/sle-11-x86_64/"},{"name":"SLES11-SP2-Core","installer_updates":false,"description":"SLES11-SP2-Core for sle-11-x86_64","enabled":true,"id":709,"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLES11-SP2-Core/sle-11-x86_64/"},{"name":"SLES11-SP1-Pool","installer_updates":false,"description":"SLES11-SP1-Pool for sle-11-x86_64","id":711,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-Pool/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64"},{"enabled":false,"id":712,"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-Debuginfo-Updates/sle-11-x86_64/","name":"SLE11-SP2-Debuginfo-Updates","installer_updates":false,"description":"SLE11-SP2-Debuginfo-Updates for sle-11-x86_64"},{"url":"https://updates.suse.com/repo/$RCE/SLES11-SP2-Updates/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64","id":714,"enabled":true,"description":"SLES11-SP2-Updates for sle-11-x86_64","name":"SLES11-SP2-Updates","installer_updates":false},{"description":"SLE11-SP1-Debuginfo-Updates for sle-11-x86_64","name":"SLE11-SP1-Debuginfo-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Updates/sle-11-x86_64/","enabled":false,"id":715},{"name":"SLE11-SP2-Debuginfo-Core","installer_updates":false,"description":"SLE11-SP2-Debuginfo-Core for sle-11-x86_64","id":716,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-Debuginfo-Core/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64"},{"name":"SLE11-SP2-Debuginfo-Core","installer_updates":false,"description":"SLE11-SP2-Debuginfo-Core for sle-11-i586","id":717,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-Debuginfo-Core/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586"},{"description":"SLE11-SP2-Debuginfo-Updates for sle-11-i586","name":"SLE11-SP2-Debuginfo-Updates","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-Debuginfo-Updates/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","id":719,"enabled":false},{"enabled":true,"id":720,"distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP2-Updates/sle-11-i586/","installer_updates":false,"name":"SLES11-SP2-Updates","description":"SLES11-SP2-Updates for sle-11-i586"},{"url":"https://updates.suse.com/repo/$RCE/SLES11-SP2-Core/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true,"id":722,"enabled":true,"description":"SLES11-SP2-Core for sle-11-i586","installer_updates":false,"name":"SLES11-SP2-Core"},{"url":"https://updates.suse.com/repo/$RCE/SLES11-SP2-Updates/sle-11-s390x/","autorefresh":true,"distro_target":"sle-11-s390x","id":724,"enabled":true,"description":"SLES11-SP2-Updates for sle-11-s390x","name":"SLES11-SP2-Updates","installer_updates":false},{"installer_updates":false,"name":"SLE11-SP2-Debuginfo-Updates","description":"SLE11-SP2-Debuginfo-Updates for sle-11-s390x","enabled":false,"id":725,"distro_target":"sle-11-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-Debuginfo-Updates/sle-11-s390x/"},{"installer_updates":false,"name":"SLES11-SP2-Core","description":"SLES11-SP2-Core for sle-11-s390x","id":726,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP2-Core/sle-11-s390x/","distro_target":"sle-11-s390x","autorefresh":true},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-Debuginfo-Core/sle-11-s390x/","autorefresh":true,"distro_target":"sle-11-s390x","id":728,"enabled":false,"description":"SLE11-SP2-Debuginfo-Core for sle-11-s390x","name":"SLE11-SP2-Debuginfo-Core","installer_updates":false},{"url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-Pool/sle-11-ppc64/","distro_target":"sle-11-ppc64","autorefresh":true,"id":919,"enabled":true,"description":"SLES11-SP1-Pool for sle-11-ppc64","installer_updates":false,"name":"SLES11-SP1-Pool"},{"description":"SLES11-SP1-Updates for sle-11-ppc64","name":"SLES11-SP1-Updates","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-Updates/sle-11-ppc64/","autorefresh":true,"distro_target":"sle-11-ppc64","id":922,"enabled":true},{"id":924,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Updates/sle-11-ppc64/","autorefresh":true,"distro_target":"sle-11-ppc64","name":"SLE11-SP1-Debuginfo-Updates","installer_updates":false,"description":"SLE11-SP1-Debuginfo-Updates for sle-11-ppc64"},{"enabled":false,"id":925,"autorefresh":true,"distro_target":"sle-11-ppc64","url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Pool/sle-11-ppc64/","name":"SLE11-SP1-Debuginfo-Pool","installer_updates":false,"description":"SLE11-SP1-Debuginfo-Pool for sle-11-ppc64"},{"id":926,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-Debuginfo-Updates/sle-11-ppc64/","distro_target":"sle-11-ppc64","autorefresh":true,"installer_updates":false,"name":"SLE11-SP2-Debuginfo-Updates","description":"SLE11-SP2-Debuginfo-Updates for sle-11-ppc64"},{"enabled":true,"id":927,"autorefresh":true,"distro_target":"sle-11-ppc64","url":"https://updates.suse.com/repo/$RCE/SLES11-SP2-Core/sle-11-ppc64/","name":"SLES11-SP2-Core","installer_updates":false,"description":"SLES11-SP2-Core for sle-11-ppc64"},{"name":"SLES11-SP2-Updates","installer_updates":false,"description":"SLES11-SP2-Updates for sle-11-ppc64","enabled":true,"id":928,"autorefresh":true,"distro_target":"sle-11-ppc64","url":"https://updates.suse.com/repo/$RCE/SLES11-SP2-Updates/sle-11-ppc64/"},{"description":"SLE11-SP2-Debuginfo-Core for sle-11-ppc64","installer_updates":false,"name":"SLE11-SP2-Debuginfo-Core","distro_target":"sle-11-ppc64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-Debuginfo-Core/sle-11-ppc64/","enabled":false,"id":930},{"description":"SLE11-SP1-Debuginfo-Pool for sle-11-ia64","name":"SLE11-SP1-Debuginfo-Pool","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Pool/sle-11-ia64/","autorefresh":true,"distro_target":"sle-11-ia64","id":970,"enabled":false},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Updates/sle-11-ia64/","autorefresh":true,"distro_target":"sle-11-ia64","id":971,"enabled":false,"description":"SLE11-SP1-Debuginfo-Updates for sle-11-ia64","name":"SLE11-SP1-Debuginfo-Updates","installer_updates":false},{"description":"SLE11-SP2-Debuginfo-Core for sle-11-ia64","name":"SLE11-SP2-Debuginfo-Core","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-Debuginfo-Core/sle-11-ia64/","autorefresh":true,"distro_target":"sle-11-ia64","id":973,"enabled":false},{"description":"SLE11-SP2-Debuginfo-Updates for sle-11-ia64","name":"SLE11-SP2-Debuginfo-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-ia64","url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-Debuginfo-Updates/sle-11-ia64/","enabled":false,"id":975},{"description":"SLES11-SP1-Updates for sle-11-ia64","installer_updates":false,"name":"SLES11-SP1-Updates","distro_target":"sle-11-ia64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-Updates/sle-11-ia64/","enabled":true,"id":987},{"distro_target":"sle-11-ia64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-Pool/sle-11-ia64/","enabled":true,"id":991,"description":"SLES11-SP1-Pool for sle-11-ia64","installer_updates":false,"name":"SLES11-SP1-Pool"},{"installer_updates":false,"name":"SLES11-SP2-Updates","description":"SLES11-SP2-Updates for sle-11-ia64","enabled":true,"id":1011,"distro_target":"sle-11-ia64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP2-Updates/sle-11-ia64/"},{"id":1012,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-StudioOnsite-1.3-Pool/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true,"installer_updates":false,"name":"SLE11-SP2-StudioOnsite-1.3-Pool","description":"SLE11-SP2-StudioOnsite-1.3-Pool for sle-11-x86_64"},{"installer_updates":false,"name":"SLE11-SP2-StudioOnsite-1.3-Updates","description":"SLE11-SP2-StudioOnsite-1.3-Updates for sle-11-x86_64","id":1013,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-StudioOnsite-1.3-Updates/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true},{"description":"SLES11-SP2-Core for sle-11-ia64","name":"SLES11-SP2-Core","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-ia64","url":"https://updates.suse.com/repo/$RCE/SLES11-SP2-Core/sle-11-ia64/","enabled":true,"id":1014},{"id":1157,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP2-LTSS-Updates/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64","name":"SLES11-SP2-LTSS-Updates","installer_updates":false,"description":"SLES11-SP2-LTSS-Updates for sle-11-x86_64"}],"product_class":"STUDIOONSITE","predecessor_ids":[],"former_identifier":"sle-studioonsite","release_type":null,"friendly_name":"SUSE Studio OnSite 1.3","migration_extra":false,"offline_predecessor_ids":[],"name":"SUSE Studio OnSite","version":"1.3","recommended":false,"identifier":"sle-studioonsite","release_stage":"released","id":1008,"extensions":[],"friendly_version":"1.3"},{"friendly_version":"2.0","id":1091,"release_stage":"released","identifier":"SUSE-Cloud","extensions":[],"version":"2.0","recommended":false,"migration_extra":false,"friendly_name":"SUSE Cloud 2.0 x86_64","release_type":null,"former_identifier":"SUSE-Cloud","name":"SUSE Cloud","offline_predecessor_ids":[],"product_class":"SUSE_CLOUD","online_predecessor_ids":[],"repositories":[{"description":"SUSE-Cloud-2.0-Updates for sle-11-x86_64","installer_updates":false,"name":"SUSE-Cloud-2.0-Updates","url":"https://updates.suse.com/repo/$RCE/SUSE-Cloud-2.0-Updates/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true,"id":1104,"enabled":true},{"name":"SUSE-Cloud-2.0-Pool","installer_updates":false,"description":"SUSE-Cloud-2.0-Pool for sle-11-x86_64","enabled":true,"id":1105,"autorefresh":false,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SUSE-Cloud-2.0-Pool/sle-11-x86_64/"},{"id":1158,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SUSE-Cloud-3.0-Pool/sle-11-x86_64/","autorefresh":false,"distro_target":"sle-11-x86_64","name":"SUSE-Cloud-3.0-Pool","installer_updates":false,"description":"SUSE-Cloud-3.0-Pool for sle-11-x86_64"},{"url":"https://updates.suse.com/repo/$RCE/SUSE-Cloud-3.0-Updates/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64","id":1159,"enabled":false,"description":"SUSE-Cloud-3.0-Updates for sle-11-x86_64","name":"SUSE-Cloud-3.0-Updates","installer_updates":false}],"predecessor_ids":[],"cpe":null,"product_type":"extension","shortname":null,"description":null,"free":false,"arch":"x86_64","eula_url":""},{"predecessor_ids":[],"online_predecessor_ids":[],"repositories":[{"url":"https://updates.suse.com/repo/$RCE/SLE11-StudioOnsiteRunner-1.3-Pool/sle-11-s390x/","distro_target":"sle-11-s390x","autorefresh":true,"id":1113,"enabled":true,"description":"SLE11-StudioOnsiteRunner-1.3-Pool for sle-11-s390x","installer_updates":false,"name":"SLE11-StudioOnsiteRunner-1.3-Pool"},{"description":"SLE11-StudioOnsiteRunner-1.3-Updates for sle-11-s390x","installer_updates":false,"name":"SLE11-StudioOnsiteRunner-1.3-Updates","url":"https://updates.suse.com/repo/$RCE/SLE11-StudioOnsiteRunner-1.3-Updates/sle-11-s390x/","distro_target":"sle-11-s390x","autorefresh":true,"id":1114,"enabled":true}],"product_class":"STUDIOONSITERUNNER","cpe":null,"product_type":"extension","description":null,"shortname":null,"free":false,"eula_url":"","arch":null,"friendly_version":"1.3","extensions":[],"release_stage":"released","identifier":"sle-studioonsiterunner","id":1099,"recommended":false,"version":"1.3","name":"SUSE Studio Extension for System z","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"SUSE Studio Extension for System z 1.3","former_identifier":"sle-studioonsiterunner","release_type":null},{"version":"3","recommended":false,"friendly_name":"SUSE Cloud 3 x86_64","migration_extra":false,"release_type":null,"former_identifier":"SUSE-Cloud","name":"SUSE Cloud","offline_predecessor_ids":[],"friendly_version":"3","release_stage":"released","id":1114,"identifier":"SUSE-Cloud","extensions":[],"shortname":null,"description":null,"free":false,"arch":"x86_64","eula_url":"","product_class":"SUSE_CLOUD","online_predecessor_ids":[],"repositories":[{"distro_target":"sle-11-x86_64","autorefresh":false,"url":"https://updates.suse.com/repo/$RCE/SUSE-Cloud-3.0-Pool/sle-11-x86_64/","enabled":true,"id":1158,"description":"SUSE-Cloud-3.0-Pool for sle-11-x86_64","installer_updates":false,"name":"SUSE-Cloud-3.0-Pool"},{"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SUSE-Cloud-3.0-Updates/sle-11-x86_64/","enabled":true,"id":1159,"description":"SUSE-Cloud-3.0-Updates for sle-11-x86_64","name":"SUSE-Cloud-3.0-Updates","installer_updates":false},{"id":1466,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SUSE-Cloud-4-Pool/sle-11-x86_64/","autorefresh":false,"distro_target":"sle-11-x86_64","name":"SUSE-Cloud-4-Pool","installer_updates":false,"description":"SUSE-Cloud-4-Pool for sle-11-x86_64"},{"installer_updates":false,"name":"SUSE-Cloud-4-Updates","description":"SUSE-Cloud-4-Updates for sle-11-x86_64","enabled":false,"id":1467,"distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SUSE-Cloud-4-Updates/sle-11-x86_64/"}],"predecessor_ids":[],"cpe":null,"product_type":"extension"},{"product_type":"extension","cpe":null,"predecessor_ids":[],"repositories":[{"installer_updates":false,"name":"SLE11-SMT-SP3-Updates","description":"SLE11-SMT-SP3-Updates for sle-11-x86_64","id":1405,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP3-Updates/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true},{"distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP3-Updates/sle-11-i586/","enabled":true,"id":1406,"description":"SLE11-SMT-SP3-Updates for sle-11-i586","installer_updates":false,"name":"SLE11-SMT-SP3-Updates"},{"description":"SLE11-SMT-SP3-Updates for sle-11-s390x","installer_updates":false,"name":"SLE11-SMT-SP3-Updates","url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP3-Updates/sle-11-s390x/","distro_target":"sle-11-s390x","autorefresh":true,"id":1407,"enabled":true},{"installer_updates":false,"name":"SLE11-SMT-SP3-Pool","description":"SLE11-SMT-SP3-Pool for sle-11-s390x","enabled":true,"id":1408,"distro_target":"sle-11-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP3-Pool/sle-11-s390x/"},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP3-Pool/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true,"id":1409,"enabled":true,"description":"SLE11-SMT-SP3-Pool for sle-11-x86_64","installer_updates":false,"name":"SLE11-SMT-SP3-Pool"},{"installer_updates":false,"name":"SLE11-SMT-SP3-Pool","description":"SLE11-SMT-SP3-Pool for sle-11-i586","id":1410,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP3-Pool/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true}],"online_predecessor_ids":[],"product_class":"SLESMT","eula_url":"","arch":null,"free":true,"description":null,"shortname":null,"extensions":[],"id":1198,"release_stage":"released","identifier":"sle-smt","friendly_version":"11 SP3","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Subscription Management Tool","former_identifier":"sle-smt","release_type":null,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Subscription Management Tool 11 SP3","recommended":false,"version":"11.3"},{"friendly_version":"4","extensions":[],"release_stage":"released","id":1221,"identifier":"SUSE-Cloud","recommended":false,"version":"4","offline_predecessor_ids":[],"name":"SUSE Cloud","former_identifier":"SUSE-Cloud","release_type":null,"migration_extra":false,"friendly_name":"SUSE Cloud 4 x86_64","predecessor_ids":[],"repositories":[{"description":"SUSE-Cloud-4-Pool for sle-11-x86_64","installer_updates":false,"name":"SUSE-Cloud-4-Pool","url":"https://updates.suse.com/repo/$RCE/SUSE-Cloud-4-Pool/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":false,"id":1466,"enabled":true},{"enabled":true,"id":1467,"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SUSE-Cloud-4-Updates/sle-11-x86_64/","name":"SUSE-Cloud-4-Updates","installer_updates":false,"description":"SUSE-Cloud-4-Updates for sle-11-x86_64"},{"enabled":false,"id":1770,"distro_target":"sle-11-x86_64","autorefresh":false,"url":"https://updates.suse.com/repo/$RCE/SUSE-Cloud-5-Pool/sle-11-x86_64/","installer_updates":false,"name":"SUSE-Cloud-5-Pool","description":"SUSE-Cloud-5-Pool for sle-11-x86_64"},{"name":"SUSE-Cloud-5-Updates","installer_updates":false,"description":"SUSE-Cloud-5-Updates for sle-11-x86_64","id":1771,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SUSE-Cloud-5-Updates/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64"}],"online_predecessor_ids":[],"product_class":"SUSE_CLOUD","product_type":"extension","cpe":null,"free":false,"shortname":null,"description":null,"eula_url":"","arch":"x86_64"},{"eula_url":"","arch":"x86_64","description":null,"shortname":null,"free":false,"cpe":null,"product_type":"extension","predecessor_ids":[],"online_predecessor_ids":[],"repositories":[{"description":"SLE11-HAE-SP4-Pool for sle-11-x86_64","name":"SLE11-HAE-SP4-Pool","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP4-Pool/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64","id":1750,"enabled":true},{"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP4-Updates/sle-11-x86_64/","enabled":true,"id":1753,"description":"SLE11-HAE-SP4-Updates for sle-11-x86_64","name":"SLE11-HAE-SP4-Updates","installer_updates":false}],"product_class":"SLE-HAE-X86","name":"SUSE Linux Enterprise High Availability Extension","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"SUSE Linux Enterprise High Availability Extension 11 SP3 x86_64 (Migration)","release_type":null,"former_identifier":"sle-hae-SP4-migration","recommended":false,"version":"11.3","extensions":[],"release_stage":"released","id":1278,"identifier":"sle-hae-SP4-migration","friendly_version":"11 SP3"},{"extensions":[],"id":1288,"release_stage":"released","identifier":"SUSE-Cloud","friendly_version":"5","offline_predecessor_ids":[],"name":"SUSE Cloud","former_identifier":"SUSE-Cloud","release_type":null,"friendly_name":"SUSE Cloud 5 x86_64","migration_extra":false,"recommended":false,"version":"5","product_type":"extension","cpe":null,"predecessor_ids":[],"online_predecessor_ids":[],"product_class":"SUSE_CLOUD","repositories":[{"autorefresh":false,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SUSE-Cloud-5-Pool/sle-11-x86_64/","enabled":true,"id":1770,"description":"SUSE-Cloud-5-Pool for sle-11-x86_64","name":"SUSE-Cloud-5-Pool","installer_updates":false},{"id":1771,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SUSE-Cloud-5-Updates/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true,"installer_updates":false,"name":"SUSE-Cloud-5-Updates","description":"SUSE-Cloud-5-Updates for sle-11-x86_64"}],"eula_url":"","arch":"x86_64","free":false,"description":null,"shortname":null},{"description":null,"shortname":null,"free":false,"arch":"x86_64","eula_url":"","product_class":"SES","online_predecessor_ids":[],"repositories":[{"description":"SES-Tools-1.0-Updates for sle-11-x86_64","installer_updates":false,"name":"SES-Tools-1.0-Updates","url":"https://updates.suse.com/repo/$RCE/SES-Tools-1.0-Updates/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true,"id":1840,"enabled":true}],"predecessor_ids":[],"cpe":null,"product_type":"extension","version":"1.0","recommended":false,"friendly_name":"SUSE Enterprise Storage Tools 1.0 x86_64","migration_extra":false,"release_type":null,"former_identifier":"suse-enterprise-storage","name":"SUSE Enterprise Storage Tools","offline_predecessor_ids":[],"friendly_version":"1.0","identifier":"suse-enterprise-storage","release_stage":"released","id":1321,"extensions":[]}],"release_stage":"released","identifier":"SUSE_SLES-SP4-migration","id":1307},{"product_type":"base","cpe":null,"predecessor_ids":[],"online_predecessor_ids":[],"repositories":[{"name":"SLES11-SP1-Pool","installer_updates":false,"description":"SLES11-SP1-Pool for sle-11-ppc64","enabled":false,"id":919,"autorefresh":true,"distro_target":"sle-11-ppc64","url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-Pool/sle-11-ppc64/"},{"autorefresh":true,"distro_target":"sle-11-ppc64","url":"https://updates.suse.com/repo/$RCE/SLES11-Extras/sle-11-ppc64/","enabled":false,"id":920,"description":"SLES11-Extras for sle-11-ppc64","name":"SLES11-Extras","installer_updates":false},{"name":"SLES11-SP1-Updates","installer_updates":false,"description":"SLES11-SP1-Updates for sle-11-ppc64","id":922,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-Updates/sle-11-ppc64/","autorefresh":true,"distro_target":"sle-11-ppc64"},{"autorefresh":true,"distro_target":"sle-11-ppc64","url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Updates/sle-11-ppc64/","enabled":false,"id":924,"description":"SLE11-SP1-Debuginfo-Updates for sle-11-ppc64","name":"SLE11-SP1-Debuginfo-Updates","installer_updates":false},{"name":"SLE11-SP1-Debuginfo-Pool","installer_updates":false,"description":"SLE11-SP1-Debuginfo-Pool for sle-11-ppc64","enabled":false,"id":925,"autorefresh":true,"distro_target":"sle-11-ppc64","url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Pool/sle-11-ppc64/"},{"distro_target":"sle-11-ppc64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-Debuginfo-Updates/sle-11-ppc64/","enabled":false,"id":926,"description":"SLE11-SP2-Debuginfo-Updates for sle-11-ppc64","installer_updates":false,"name":"SLE11-SP2-Debuginfo-Updates"},{"description":"SLES11-SP2-Core for sle-11-ppc64","installer_updates":false,"name":"SLES11-SP2-Core","distro_target":"sle-11-ppc64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP2-Core/sle-11-ppc64/","enabled":false,"id":927},{"autorefresh":true,"distro_target":"sle-11-ppc64","url":"https://updates.suse.com/repo/$RCE/SLES11-SP2-Updates/sle-11-ppc64/","enabled":false,"id":928,"description":"SLES11-SP2-Updates for sle-11-ppc64","name":"SLES11-SP2-Updates","installer_updates":false},{"autorefresh":true,"distro_target":"sle-11-ppc64","url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-Debuginfo-Core/sle-11-ppc64/","enabled":false,"id":930,"description":"SLE11-SP2-Debuginfo-Core for sle-11-ppc64","name":"SLE11-SP2-Debuginfo-Core","installer_updates":false},{"description":"SLES11-SP3-Updates for sle-11-ppc64","name":"SLES11-SP3-Updates","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP3-Updates/sle-11-ppc64/","autorefresh":true,"distro_target":"sle-11-ppc64","id":936,"enabled":false},{"id":937,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP3-Debuginfo-Pool/sle-11-ppc64/","autorefresh":true,"distro_target":"sle-11-ppc64","name":"SLE11-SP3-Debuginfo-Pool","installer_updates":false,"description":"SLE11-SP3-Debuginfo-Pool for sle-11-ppc64"},{"name":"SLES11-SP3-Pool","installer_updates":false,"description":"SLES11-SP3-Pool for sle-11-ppc64","id":939,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP3-Pool/sle-11-ppc64/","autorefresh":true,"distro_target":"sle-11-ppc64"},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SP3-Debuginfo-Updates/sle-11-ppc64/","distro_target":"sle-11-ppc64","autorefresh":true,"id":941,"enabled":false,"description":"SLE11-SP3-Debuginfo-Updates for sle-11-ppc64","installer_updates":false,"name":"SLE11-SP3-Debuginfo-Updates"},{"description":"SLE11-Security-Module for sle-11-ppc64","name":"SLE11-Security-Module","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-Security-Module/sle-11-ppc64/","autorefresh":true,"distro_target":"sle-11-ppc64","id":1380,"enabled":false},{"url":"https://updates.suse.com/repo/$RCE/SLES11-SP4-Pool/sle-11-ppc64/","distro_target":"sle-11-ppc64","autorefresh":true,"id":1785,"enabled":true,"description":"SLES11-SP4-Pool for sle-11-ppc64","installer_updates":false,"name":"SLES11-SP4-Pool"},{"distro_target":"sle-11-ppc64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP4-Updates/sle-11-ppc64/","enabled":true,"id":1786,"description":"SLES11-SP4-Updates for sle-11-ppc64","installer_updates":false,"name":"SLES11-SP4-Updates"},{"id":1787,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP4-Debuginfo-Pool/sle-11-ppc64/","distro_target":"sle-11-ppc64","autorefresh":true,"installer_updates":false,"name":"SLE11-SP4-Debuginfo-Pool","description":"SLE11-SP4-Debuginfo-Pool for sle-11-ppc64"},{"name":"SLE11-SP4-Debuginfo-Updates","installer_updates":false,"description":"SLE11-SP4-Debuginfo-Updates for sle-11-ppc64","enabled":false,"id":1788,"autorefresh":true,"distro_target":"sle-11-ppc64","url":"https://updates.suse.com/repo/$RCE/SLE11-SP4-Debuginfo-Updates/sle-11-ppc64/"}],"product_class":"SLES-PPC","eula_url":"","arch":"ppc64","free":false,"description":null,"shortname":null,"extensions":[{"version":"11.3","recommended":false,"release_type":null,"former_identifier":"sle-hae","friendly_name":"SUSE Linux Enterprise High Availability Extension 11 SP3 ppc64","migration_extra":false,"offline_predecessor_ids":[],"name":"SUSE Linux Enterprise High Availability Extension","friendly_version":"11 SP3","id":1042,"release_stage":"released","identifier":"sle-hae","extensions":[],"free":false,"description":null,"shortname":null,"arch":"ppc64","eula_url":"","online_predecessor_ids":[],"product_class":"SLE-HAE-PPC","repositories":[{"enabled":true,"id":1045,"autorefresh":true,"distro_target":"sle-11-ppc64","url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP3-Pool/sle-11-ppc64/","name":"SLE11-HAE-SP3-Pool","installer_updates":false,"description":"SLE11-HAE-SP3-Pool for sle-11-ppc64"},{"description":"SLE11-HAE-SP3-Updates for sle-11-ppc64","name":"SLE11-HAE-SP3-Updates","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP3-Updates/sle-11-ppc64/","autorefresh":true,"distro_target":"sle-11-ppc64","id":1046,"enabled":true}],"predecessor_ids":[],"product_type":"extension","cpe":null},{"friendly_version":"11 SP3","identifier":"sle-hae-SP4-migration","release_stage":"released","id":1283,"extensions":[],"version":"11.3","recommended":false,"friendly_name":"SUSE Linux Enterprise High Availability Extension 11 SP3 ppc64 (Migration)","migration_extra":false,"release_type":null,"former_identifier":"sle-hae-SP4-migration","name":"SUSE Linux Enterprise High Availability Extension","offline_predecessor_ids":[],"product_class":"SLE-HAE-PPC","online_predecessor_ids":[],"repositories":[{"enabled":true,"id":1756,"distro_target":"sle-11-ppc64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP4-Pool/sle-11-ppc64/","installer_updates":false,"name":"SLE11-HAE-SP4-Pool","description":"SLE11-HAE-SP4-Pool for sle-11-ppc64"},{"distro_target":"sle-11-ppc64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP4-Updates/sle-11-ppc64/","enabled":true,"id":1757,"description":"SLE11-HAE-SP4-Updates for sle-11-ppc64","installer_updates":false,"name":"SLE11-HAE-SP4-Updates"}],"predecessor_ids":[],"cpe":null,"product_type":"extension","shortname":null,"description":null,"free":false,"arch":"ppc64","eula_url":""}],"identifier":"SUSE_SLES-SP4-migration","release_stage":"released","id":1308,"friendly_version":"11 SP3","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Server","former_identifier":"SUSE_SLES-SP4-migration","release_type":null,"friendly_name":"SUSE Linux Enterprise Server 11 SP3 ppc64 (Migration)","migration_extra":false,"recommended":false,"version":"11.3"},{"predecessor_ids":[],"online_predecessor_ids":[],"repositories":[{"autorefresh":true,"distro_target":"sle-11-s390x","url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-Pool/sle-11-s390x/","enabled":false,"id":687,"description":"SLES11-SP1-Pool for sle-11-s390x","name":"SLES11-SP1-Pool","installer_updates":false},{"distro_target":"sle-11-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Updates/sle-11-s390x/","enabled":false,"id":688,"description":"SLE11-SP1-Debuginfo-Updates for sle-11-s390x","installer_updates":false,"name":"SLE11-SP1-Debuginfo-Updates"},{"description":"SLES11-Extras for sle-11-s390x","name":"SLES11-Extras","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLES11-Extras/sle-11-s390x/","autorefresh":true,"distro_target":"sle-11-s390x","id":689,"enabled":false},{"url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-Updates/sle-11-s390x/","autorefresh":true,"distro_target":"sle-11-s390x","id":691,"enabled":false,"description":"SLES11-SP1-Updates for sle-11-s390x","name":"SLES11-SP1-Updates","installer_updates":false},{"description":"SLE11-SP1-Debuginfo-Pool for sle-11-s390x","name":"SLE11-SP1-Debuginfo-Pool","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-s390x","url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Pool/sle-11-s390x/","enabled":false,"id":692},{"installer_updates":false,"name":"SLES11-SP2-Updates","description":"SLES11-SP2-Updates for sle-11-s390x","id":724,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP2-Updates/sle-11-s390x/","distro_target":"sle-11-s390x","autorefresh":true},{"name":"SLE11-SP2-Debuginfo-Updates","installer_updates":false,"description":"SLE11-SP2-Debuginfo-Updates for sle-11-s390x","id":725,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-Debuginfo-Updates/sle-11-s390x/","autorefresh":true,"distro_target":"sle-11-s390x"},{"url":"https://updates.suse.com/repo/$RCE/SLES11-SP2-Core/sle-11-s390x/","distro_target":"sle-11-s390x","autorefresh":true,"id":726,"enabled":false,"description":"SLES11-SP2-Core for sle-11-s390x","installer_updates":false,"name":"SLES11-SP2-Core"},{"description":"SLE11-SP2-Debuginfo-Core for sle-11-s390x","name":"SLE11-SP2-Debuginfo-Core","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-s390x","url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-Debuginfo-Core/sle-11-s390x/","enabled":false,"id":728},{"installer_updates":false,"name":"SLES11-SP3-Pool","description":"SLES11-SP3-Pool for sle-11-s390x","enabled":false,"id":729,"distro_target":"sle-11-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP3-Pool/sle-11-s390x/"},{"description":"SLES11-SP3-Updates for sle-11-s390x","name":"SLES11-SP3-Updates","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP3-Updates/sle-11-s390x/","autorefresh":true,"distro_target":"sle-11-s390x","id":731,"enabled":false},{"name":"SLE11-SP3-Debuginfo-Pool","installer_updates":false,"description":"SLE11-SP3-Debuginfo-Pool for sle-11-s390x","enabled":false,"id":732,"autorefresh":true,"distro_target":"sle-11-s390x","url":"https://updates.suse.com/repo/$RCE/SLE11-SP3-Debuginfo-Pool/sle-11-s390x/"},{"description":"SLE11-SP3-Debuginfo-Updates for sle-11-s390x","name":"SLE11-SP3-Debuginfo-Updates","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP3-Debuginfo-Updates/sle-11-s390x/","autorefresh":true,"distro_target":"sle-11-s390x","id":733,"enabled":false},{"installer_updates":false,"name":"SLE11-Security-Module","description":"SLE11-Security-Module for sle-11-s390x","id":1446,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-Security-Module/sle-11-s390x/","distro_target":"sle-11-s390x","autorefresh":true},{"id":1789,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP4-Debuginfo-Pool/sle-11-s390x/","distro_target":"sle-11-s390x","autorefresh":true,"installer_updates":false,"name":"SLE11-SP4-Debuginfo-Pool","description":"SLE11-SP4-Debuginfo-Pool for sle-11-s390x"},{"name":"SLE11-SP4-Debuginfo-Updates","installer_updates":false,"description":"SLE11-SP4-Debuginfo-Updates for sle-11-s390x","id":1790,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP4-Debuginfo-Updates/sle-11-s390x/","autorefresh":true,"distro_target":"sle-11-s390x"},{"name":"SLES11-SP4-Pool","installer_updates":false,"description":"SLES11-SP4-Pool for sle-11-s390x","id":1791,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP4-Pool/sle-11-s390x/","autorefresh":true,"distro_target":"sle-11-s390x"},{"id":1792,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP4-Updates/sle-11-s390x/","distro_target":"sle-11-s390x","autorefresh":true,"installer_updates":false,"name":"SLES11-SP4-Updates","description":"SLES11-SP4-Updates for sle-11-s390x"}],"product_class":"SLES-Z","cpe":null,"product_type":"base","description":null,"shortname":null,"free":false,"eula_url":"","arch":"s390x","friendly_version":"11 SP3","extensions":[{"version":"11.3","recommended":false,"release_type":null,"former_identifier":"sle-hae","migration_extra":false,"friendly_name":"SUSE Linux Enterprise High Availability Extension 11 SP3 s390x","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise High Availability Extension","friendly_version":"11 SP3","release_stage":"released","id":1080,"identifier":"sle-hae","extensions":[],"free":false,"description":null,"shortname":null,"arch":"s390x","eula_url":"","repositories":[{"description":"SLE11-HAE-SP3-Pool for sle-11-s390x","name":"SLE11-HAE-SP3-Pool","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-s390x","url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP3-Pool/sle-11-s390x/","enabled":true,"id":1096},{"description":"SLE11-HAE-SP3-Updates for sle-11-s390x","installer_updates":false,"name":"SLE11-HAE-SP3-Updates","url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP3-Updates/sle-11-s390x/","distro_target":"sle-11-s390x","autorefresh":true,"id":1097,"enabled":true}],"online_predecessor_ids":[],"product_class":"SLE-HAE-Z","predecessor_ids":[],"product_type":"extension","cpe":null},{"product_type":"extension","cpe":null,"predecessor_ids":[],"product_class":"SLESMT","online_predecessor_ids":[],"repositories":[{"id":1405,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP3-Updates/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true,"installer_updates":false,"name":"SLE11-SMT-SP3-Updates","description":"SLE11-SMT-SP3-Updates for sle-11-x86_64"},{"installer_updates":false,"name":"SLE11-SMT-SP3-Updates","description":"SLE11-SMT-SP3-Updates for sle-11-i586","id":1406,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP3-Updates/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true},{"installer_updates":false,"name":"SLE11-SMT-SP3-Updates","description":"SLE11-SMT-SP3-Updates for sle-11-s390x","id":1407,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP3-Updates/sle-11-s390x/","distro_target":"sle-11-s390x","autorefresh":true},{"description":"SLE11-SMT-SP3-Pool for sle-11-s390x","installer_updates":false,"name":"SLE11-SMT-SP3-Pool","distro_target":"sle-11-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP3-Pool/sle-11-s390x/","enabled":true,"id":1408},{"enabled":true,"id":1409,"distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP3-Pool/sle-11-x86_64/","installer_updates":false,"name":"SLE11-SMT-SP3-Pool","description":"SLE11-SMT-SP3-Pool for sle-11-x86_64"},{"id":1410,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP3-Pool/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","name":"SLE11-SMT-SP3-Pool","installer_updates":false,"description":"SLE11-SMT-SP3-Pool for sle-11-i586"}],"eula_url":"","arch":null,"free":true,"shortname":null,"description":null,"extensions":[],"release_stage":"released","identifier":"sle-smt","id":1198,"friendly_version":"11 SP3","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Subscription Management Tool","former_identifier":"sle-smt","release_type":null,"friendly_name":"SUSE Linux Enterprise Subscription Management Tool 11 SP3","migration_extra":false,"recommended":false,"version":"11.3"},{"offline_predecessor_ids":[],"name":"SUSE Linux Enterprise High Availability Extension","former_identifier":"sle-hae-SP4-migration","release_type":null,"friendly_name":"SUSE Linux Enterprise High Availability Extension 11 SP3 s390x (Migration)","migration_extra":false,"recommended":false,"version":"11.3","extensions":[],"release_stage":"released","identifier":"sle-hae-SP4-migration","id":1282,"friendly_version":"11 SP3","eula_url":"","arch":"s390x","free":false,"shortname":null,"description":null,"product_type":"extension","cpe":null,"predecessor_ids":[],"online_predecessor_ids":[],"product_class":"SLE-HAE-Z","repositories":[{"distro_target":"sle-11-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP4-Pool/sle-11-s390x/","enabled":true,"id":1758,"description":"SLE11-HAE-SP4-Pool for sle-11-s390x","installer_updates":false,"name":"SLE11-HAE-SP4-Pool"},{"url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP4-Updates/sle-11-s390x/","distro_target":"sle-11-s390x","autorefresh":true,"id":1759,"enabled":true,"description":"SLE11-HAE-SP4-Updates for sle-11-s390x","installer_updates":false,"name":"SLE11-HAE-SP4-Updates"}]}],"identifier":"SUSE_SLES-SP4-migration","release_stage":"released","id":1309,"recommended":false,"version":"11.3","name":"SUSE Linux Enterprise Server","offline_predecessor_ids":[],"friendly_name":"SUSE Linux Enterprise Server 11 SP3 s390x (Migration)","migration_extra":false,"release_type":null,"former_identifier":"SUSE_SLES-SP4-migration"},{"free":false,"description":null,"shortname":null,"eula_url":"","arch":"ia64","predecessor_ids":[],"online_predecessor_ids":[],"product_class":"SLES-IA","repositories":[{"description":"SLE11-SP1-Debuginfo-Pool for sle-11-ia64","name":"SLE11-SP1-Debuginfo-Pool","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Pool/sle-11-ia64/","autorefresh":true,"distro_target":"sle-11-ia64","id":970,"enabled":false},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Updates/sle-11-ia64/","distro_target":"sle-11-ia64","autorefresh":true,"id":971,"enabled":false,"description":"SLE11-SP1-Debuginfo-Updates for sle-11-ia64","installer_updates":false,"name":"SLE11-SP1-Debuginfo-Updates"},{"installer_updates":false,"name":"SLES11-Extras","description":"SLES11-Extras for sle-11-ia64","enabled":false,"id":972,"distro_target":"sle-11-ia64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-Extras/sle-11-ia64/"},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-Debuginfo-Core/sle-11-ia64/","autorefresh":true,"distro_target":"sle-11-ia64","id":973,"enabled":false,"description":"SLE11-SP2-Debuginfo-Core for sle-11-ia64","name":"SLE11-SP2-Debuginfo-Core","installer_updates":false},{"id":975,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-Debuginfo-Updates/sle-11-ia64/","distro_target":"sle-11-ia64","autorefresh":true,"installer_updates":false,"name":"SLE11-SP2-Debuginfo-Updates","description":"SLE11-SP2-Debuginfo-Updates for sle-11-ia64"},{"enabled":false,"id":987,"autorefresh":true,"distro_target":"sle-11-ia64","url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-Updates/sle-11-ia64/","name":"SLES11-SP1-Updates","installer_updates":false,"description":"SLES11-SP1-Updates for sle-11-ia64"},{"installer_updates":false,"name":"SLES11-SP1-Pool","description":"SLES11-SP1-Pool for sle-11-ia64","id":991,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-Pool/sle-11-ia64/","distro_target":"sle-11-ia64","autorefresh":true},{"url":"https://updates.suse.com/repo/$RCE/SLES11-SP2-Updates/sle-11-ia64/","distro_target":"sle-11-ia64","autorefresh":true,"id":1011,"enabled":false,"description":"SLES11-SP2-Updates for sle-11-ia64","installer_updates":false,"name":"SLES11-SP2-Updates"},{"name":"SLES11-SP2-Core","installer_updates":false,"description":"SLES11-SP2-Core for sle-11-ia64","enabled":false,"id":1014,"autorefresh":true,"distro_target":"sle-11-ia64","url":"https://updates.suse.com/repo/$RCE/SLES11-SP2-Core/sle-11-ia64/"},{"description":"SLE11-SP3-Debuginfo-Updates for sle-11-ia64","name":"SLE11-SP3-Debuginfo-Updates","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP3-Debuginfo-Updates/sle-11-ia64/","autorefresh":true,"distro_target":"sle-11-ia64","id":1028,"enabled":false},{"enabled":false,"id":1030,"distro_target":"sle-11-ia64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP3-Debuginfo-Pool/sle-11-ia64/","installer_updates":false,"name":"SLE11-SP3-Debuginfo-Pool","description":"SLE11-SP3-Debuginfo-Pool for sle-11-ia64"},{"id":1036,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP3-Updates/sle-11-ia64/","distro_target":"sle-11-ia64","autorefresh":true,"installer_updates":false,"name":"SLES11-SP3-Updates","description":"SLES11-SP3-Updates for sle-11-ia64"},{"url":"https://updates.suse.com/repo/$RCE/SLES11-SP3-Pool/sle-11-ia64/","autorefresh":true,"distro_target":"sle-11-ia64","id":1037,"enabled":false,"description":"SLES11-SP3-Pool for sle-11-ia64","name":"SLES11-SP3-Pool","installer_updates":false},{"description":"SLE11-Security-Module for sle-11-ia64","name":"SLE11-Security-Module","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-Security-Module/sle-11-ia64/","autorefresh":true,"distro_target":"sle-11-ia64","id":1385,"enabled":false},{"id":1793,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP4-Pool/sle-11-ia64/","distro_target":"sle-11-ia64","autorefresh":true,"installer_updates":false,"name":"SLES11-SP4-Pool","description":"SLES11-SP4-Pool for sle-11-ia64"},{"enabled":true,"id":1794,"distro_target":"sle-11-ia64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP4-Updates/sle-11-ia64/","installer_updates":false,"name":"SLES11-SP4-Updates","description":"SLES11-SP4-Updates for sle-11-ia64"},{"installer_updates":false,"name":"SLE11-SP4-Debuginfo-Pool","description":"SLE11-SP4-Debuginfo-Pool for sle-11-ia64","enabled":false,"id":1795,"distro_target":"sle-11-ia64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP4-Debuginfo-Pool/sle-11-ia64/"},{"id":1796,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP4-Debuginfo-Updates/sle-11-ia64/","distro_target":"sle-11-ia64","autorefresh":true,"installer_updates":false,"name":"SLE11-SP4-Debuginfo-Updates","description":"SLE11-SP4-Debuginfo-Updates for sle-11-ia64"}],"product_type":"base","cpe":null,"recommended":false,"version":"11.3","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Server","release_type":null,"former_identifier":"SUSE_SLES-SP4-migration","friendly_name":"SUSE Linux Enterprise Server 11 SP3 ia64 (Migration)","migration_extra":false,"friendly_version":"11 SP3","extensions":[{"product_type":"extension","cpe":null,"predecessor_ids":[],"online_predecessor_ids":[],"repositories":[{"description":"SLE11-HAE-SP3-Updates for sle-11-ia64","installer_updates":false,"name":"SLE11-HAE-SP3-Updates","url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP3-Updates/sle-11-ia64/","distro_target":"sle-11-ia64","autorefresh":true,"id":1069,"enabled":true},{"installer_updates":false,"name":"SLE11-HAE-SP3-Pool","description":"SLE11-HAE-SP3-Pool for sle-11-ia64","id":1070,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP3-Pool/sle-11-ia64/","distro_target":"sle-11-ia64","autorefresh":true}],"product_class":"SLE-HAE-IA","eula_url":"","arch":"ia64","free":false,"description":null,"shortname":null,"extensions":[],"identifier":"sle-hae","release_stage":"released","id":1063,"friendly_version":"11 SP3","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise High Availability Extension","release_type":null,"former_identifier":"sle-hae","migration_extra":false,"friendly_name":"SUSE Linux Enterprise High Availability Extension 11 SP3 ia64","recommended":false,"version":"11.3"},{"eula_url":"","arch":"ia64","description":null,"shortname":null,"free":false,"cpe":null,"product_type":"extension","predecessor_ids":[],"product_class":"SLE-HAE-IA","online_predecessor_ids":[],"repositories":[{"autorefresh":true,"distro_target":"sle-11-ia64","url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP4-Pool/sle-11-ia64/","enabled":true,"id":1754,"description":"SLE11-HAE-SP4-Pool for sle-11-ia64","name":"SLE11-HAE-SP4-Pool","installer_updates":false},{"name":"SLE11-HAE-SP4-Updates","installer_updates":false,"description":"SLE11-HAE-SP4-Updates for sle-11-ia64","enabled":true,"id":1755,"autorefresh":true,"distro_target":"sle-11-ia64","url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP4-Updates/sle-11-ia64/"}],"name":"SUSE Linux Enterprise High Availability Extension","offline_predecessor_ids":[],"friendly_name":"SUSE Linux Enterprise High Availability Extension 11 SP3 ia64 (Migration)","migration_extra":false,"release_type":null,"former_identifier":"sle-hae-SP4-migration","recommended":false,"version":"11.3","extensions":[],"release_stage":"released","identifier":"sle-hae-SP4-migration","id":1279,"friendly_version":"11 SP3"}],"id":1310,"release_stage":"released","identifier":"SUSE_SLES-SP4-migration"},{"repositories":[{"description":"SLED11-Extras for sle-11-i586","installer_updates":false,"name":"SLED11-Extras","distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLED11-Extras/sle-11-i586/","enabled":false,"id":846},{"name":"SLE11-SP4-Debuginfo-Pool","installer_updates":false,"description":"SLE11-SP4-Debuginfo-Pool for sle-11-i586","enabled":false,"id":1800,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-SP4-Debuginfo-Pool/sle-11-i586/"},{"description":"SLE11-SP4-Debuginfo-Updates for sle-11-i586","name":"SLE11-SP4-Debuginfo-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-SP4-Debuginfo-Updates/sle-11-i586/","enabled":false,"id":1801},{"installer_updates":false,"name":"SLED11-SP4-Updates","description":"SLED11-SP4-Updates for sle-11-i586","id":1807,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLED11-SP4-Updates/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true},{"enabled":true,"id":1808,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLED11-SP4-Pool/sle-11-i586/","name":"SLED11-SP4-Pool","installer_updates":false,"description":"SLED11-SP4-Pool for sle-11-i586"}],"online_predecessor_ids":[],"product_class":"7260","predecessor_ids":[],"product_type":"base","cpe":null,"free":false,"description":null,"shortname":null,"arch":"i686","eula_url":"","friendly_version":"11 SP4","id":1311,"release_stage":"released","identifier":"SUSE_SLED","extensions":[],"version":"11.4","recommended":false,"release_type":null,"former_identifier":"SUSE_SLED","friendly_name":"SUSE Linux Enterprise Desktop 11 SP4 i686","migration_extra":false,"offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Desktop"},{"version":"11.4","recommended":false,"former_identifier":"SUSE_SLED","release_type":null,"friendly_name":"SUSE Linux Enterprise Desktop 11 SP4 i586","migration_extra":false,"offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Desktop","friendly_version":"11 SP4","release_stage":"released","identifier":"SUSE_SLED","id":1312,"extensions":[],"free":false,"description":null,"shortname":null,"arch":"i586","eula_url":"","online_predecessor_ids":[],"repositories":[{"description":"SLED11-Extras for sle-11-i586","name":"SLED11-Extras","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLED11-Extras/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","id":846,"enabled":false},{"installer_updates":false,"name":"SLE11-SP4-Debuginfo-Pool","description":"SLE11-SP4-Debuginfo-Pool for sle-11-i586","id":1800,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP4-Debuginfo-Pool/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true},{"id":1801,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP4-Debuginfo-Updates/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","name":"SLE11-SP4-Debuginfo-Updates","installer_updates":false,"description":"SLE11-SP4-Debuginfo-Updates for sle-11-i586"},{"description":"SLED11-SP4-Updates for sle-11-i586","installer_updates":false,"name":"SLED11-SP4-Updates","url":"https://updates.suse.com/repo/$RCE/SLED11-SP4-Updates/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true,"id":1807,"enabled":true},{"distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLED11-SP4-Pool/sle-11-i586/","enabled":true,"id":1808,"description":"SLED11-SP4-Pool for sle-11-i586","installer_updates":false,"name":"SLED11-SP4-Pool"}],"product_class":"7260","predecessor_ids":[],"product_type":"base","cpe":null},{"name":"SUSE Linux Enterprise Desktop","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Desktop 11 SP4 x86_64","former_identifier":"SUSE_SLED","release_type":null,"recommended":false,"version":"11.4","extensions":[],"id":1313,"release_stage":"released","identifier":"SUSE_SLED","friendly_version":"11 SP4","eula_url":"","arch":"x86_64","shortname":null,"description":null,"free":false,"cpe":null,"product_type":"base","predecessor_ids":[],"online_predecessor_ids":[],"repositories":[{"id":903,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLED11-Extras/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true,"installer_updates":false,"name":"SLED11-Extras","description":"SLED11-Extras for sle-11-x86_64"},{"description":"SLE11-SP4-Debuginfo-Pool for sle-11-x86_64","installer_updates":false,"name":"SLE11-SP4-Debuginfo-Pool","url":"https://updates.suse.com/repo/$RCE/SLE11-SP4-Debuginfo-Pool/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true,"id":1804,"enabled":false},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SP4-Debuginfo-Updates/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64","id":1806,"enabled":false,"description":"SLE11-SP4-Debuginfo-Updates for sle-11-x86_64","name":"SLE11-SP4-Debuginfo-Updates","installer_updates":false},{"distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLED11-SP4-Pool/sle-11-x86_64/","enabled":true,"id":1809,"description":"SLED11-SP4-Pool for sle-11-x86_64","installer_updates":false,"name":"SLED11-SP4-Pool"},{"name":"SLED11-SP4-Updates","installer_updates":false,"description":"SLED11-SP4-Updates for sle-11-x86_64","id":1810,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLED11-SP4-Updates/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64"}],"product_class":"7260"},{"friendly_version":"11 SP3","release_stage":"released","id":1314,"identifier":"SUSE_SLED-SP4-migration","extensions":[],"version":"11.3","recommended":false,"friendly_name":"SUSE Linux Enterprise Desktop 11 SP3 i686 (Migration)","migration_extra":false,"release_type":null,"former_identifier":"SUSE_SLED-SP4-migration","name":"SUSE Linux Enterprise Desktop","offline_predecessor_ids":[],"online_predecessor_ids":[],"product_class":"7260","repositories":[{"id":680,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Pool/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","name":"SLE11-SP1-Debuginfo-Pool","installer_updates":false,"description":"SLE11-SP1-Debuginfo-Pool for sle-11-i586"},{"distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Updates/sle-11-i586/","enabled":false,"id":682,"description":"SLE11-SP1-Debuginfo-Updates for sle-11-i586","installer_updates":false,"name":"SLE11-SP1-Debuginfo-Updates"},{"enabled":false,"id":717,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-Debuginfo-Core/sle-11-i586/","name":"SLE11-SP2-Debuginfo-Core","installer_updates":false,"description":"SLE11-SP2-Debuginfo-Core for sle-11-i586"},{"enabled":false,"id":719,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-Debuginfo-Updates/sle-11-i586/","name":"SLE11-SP2-Debuginfo-Updates","installer_updates":false,"description":"SLE11-SP2-Debuginfo-Updates for sle-11-i586"},{"enabled":false,"id":759,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-SP3-Debuginfo-Updates/sle-11-i586/","name":"SLE11-SP3-Debuginfo-Updates","installer_updates":false,"description":"SLE11-SP3-Debuginfo-Updates for sle-11-i586"},{"name":"SLE11-SP3-Debuginfo-Pool","installer_updates":false,"description":"SLE11-SP3-Debuginfo-Pool for sle-11-i586","id":763,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP3-Debuginfo-Pool/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586"},{"installer_updates":false,"name":"SLED11-Extras","description":"SLED11-Extras for sle-11-i586","enabled":false,"id":846,"distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLED11-Extras/sle-11-i586/"},{"description":"SLED11-SP1-Updates for sle-11-i586","name":"SLED11-SP1-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLED11-SP1-Updates/sle-11-i586/","enabled":false,"id":851},{"enabled":false,"id":852,"distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLED11-SP1-Pool/sle-11-i586/","installer_updates":false,"name":"SLED11-SP1-Pool","description":"SLED11-SP1-Pool for sle-11-i586"},{"name":"SLED11-SP2-Core","installer_updates":false,"description":"SLED11-SP2-Core for sle-11-i586","enabled":false,"id":856,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLED11-SP2-Core/sle-11-i586/"},{"id":857,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLED11-SP2-Updates/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true,"installer_updates":false,"name":"SLED11-SP2-Updates","description":"SLED11-SP2-Updates for sle-11-i586"},{"description":"SLED11-SP3-Updates for sle-11-i586","installer_updates":false,"name":"SLED11-SP3-Updates","distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLED11-SP3-Updates/sle-11-i586/","enabled":false,"id":890},{"description":"SLED11-SP3-Pool for sle-11-i586","installer_updates":false,"name":"SLED11-SP3-Pool","distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLED11-SP3-Pool/sle-11-i586/","enabled":false,"id":891},{"enabled":false,"id":1800,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-SP4-Debuginfo-Pool/sle-11-i586/","name":"SLE11-SP4-Debuginfo-Pool","installer_updates":false,"description":"SLE11-SP4-Debuginfo-Pool for sle-11-i586"},{"description":"SLE11-SP4-Debuginfo-Updates for sle-11-i586","installer_updates":false,"name":"SLE11-SP4-Debuginfo-Updates","distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP4-Debuginfo-Updates/sle-11-i586/","enabled":false,"id":1801},{"description":"SLED11-SP4-Updates for sle-11-i586","installer_updates":false,"name":"SLED11-SP4-Updates","distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLED11-SP4-Updates/sle-11-i586/","enabled":true,"id":1807},{"description":"SLED11-SP4-Pool for sle-11-i586","installer_updates":false,"name":"SLED11-SP4-Pool","distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLED11-SP4-Pool/sle-11-i586/","enabled":true,"id":1808},{"id":1869,"enabled":true,"url":"http://download.nvidia.com/novell/sle11sp4/","autorefresh":true,"distro_target":null,"name":"nVidia-Driver-SLE11-SP4","installer_updates":false,"description":"nVidia-Driver-SLE11-SP4"}],"predecessor_ids":[],"cpe":null,"product_type":"base","shortname":null,"description":null,"free":false,"arch":"i686","eula_url":""},{"former_identifier":"SUSE_SLED-SP4-migration","release_type":null,"friendly_name":"SUSE Linux Enterprise Desktop 11 SP3 i586 (Migration)","migration_extra":false,"offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Desktop","version":"11.3","recommended":false,"release_stage":"released","id":1315,"identifier":"SUSE_SLED-SP4-migration","extensions":[],"friendly_version":"11 SP3","arch":"i586","eula_url":"","free":false,"description":null,"shortname":null,"product_type":"base","cpe":null,"online_predecessor_ids":[],"repositories":[{"description":"SLE11-SP1-Debuginfo-Pool for sle-11-i586","name":"SLE11-SP1-Debuginfo-Pool","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Pool/sle-11-i586/","enabled":false,"id":680},{"description":"SLE11-SP1-Debuginfo-Updates for sle-11-i586","installer_updates":false,"name":"SLE11-SP1-Debuginfo-Updates","url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Updates/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true,"id":682,"enabled":false},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-Debuginfo-Core/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","id":717,"enabled":false,"description":"SLE11-SP2-Debuginfo-Core for sle-11-i586","name":"SLE11-SP2-Debuginfo-Core","installer_updates":false},{"description":"SLE11-SP2-Debuginfo-Updates for sle-11-i586","name":"SLE11-SP2-Debuginfo-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-Debuginfo-Updates/sle-11-i586/","enabled":false,"id":719},{"description":"SLE11-SP3-Debuginfo-Updates for sle-11-i586","installer_updates":false,"name":"SLE11-SP3-Debuginfo-Updates","url":"https://updates.suse.com/repo/$RCE/SLE11-SP3-Debuginfo-Updates/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true,"id":759,"enabled":false},{"distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP3-Debuginfo-Pool/sle-11-i586/","enabled":false,"id":763,"description":"SLE11-SP3-Debuginfo-Pool for sle-11-i586","installer_updates":false,"name":"SLE11-SP3-Debuginfo-Pool"},{"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLED11-Extras/sle-11-i586/","enabled":false,"id":846,"description":"SLED11-Extras for sle-11-i586","name":"SLED11-Extras","installer_updates":false},{"description":"SLED11-SP1-Updates for sle-11-i586","installer_updates":false,"name":"SLED11-SP1-Updates","url":"https://updates.suse.com/repo/$RCE/SLED11-SP1-Updates/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true,"id":851,"enabled":false},{"installer_updates":false,"name":"SLED11-SP1-Pool","description":"SLED11-SP1-Pool for sle-11-i586","id":852,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLED11-SP1-Pool/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true},{"enabled":false,"id":856,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLED11-SP2-Core/sle-11-i586/","name":"SLED11-SP2-Core","installer_updates":false,"description":"SLED11-SP2-Core for sle-11-i586"},{"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLED11-SP2-Updates/sle-11-i586/","enabled":false,"id":857,"description":"SLED11-SP2-Updates for sle-11-i586","name":"SLED11-SP2-Updates","installer_updates":false},{"enabled":false,"id":890,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLED11-SP3-Updates/sle-11-i586/","name":"SLED11-SP3-Updates","installer_updates":false,"description":"SLED11-SP3-Updates for sle-11-i586"},{"description":"SLED11-SP3-Pool for sle-11-i586","installer_updates":false,"name":"SLED11-SP3-Pool","distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLED11-SP3-Pool/sle-11-i586/","enabled":false,"id":891},{"description":"SLE11-SP4-Debuginfo-Pool for sle-11-i586","installer_updates":false,"name":"SLE11-SP4-Debuginfo-Pool","url":"https://updates.suse.com/repo/$RCE/SLE11-SP4-Debuginfo-Pool/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true,"id":1800,"enabled":false},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SP4-Debuginfo-Updates/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true,"id":1801,"enabled":false,"description":"SLE11-SP4-Debuginfo-Updates for sle-11-i586","installer_updates":false,"name":"SLE11-SP4-Debuginfo-Updates"},{"description":"SLED11-SP4-Updates for sle-11-i586","installer_updates":false,"name":"SLED11-SP4-Updates","distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLED11-SP4-Updates/sle-11-i586/","enabled":true,"id":1807},{"id":1808,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLED11-SP4-Pool/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","name":"SLED11-SP4-Pool","installer_updates":false,"description":"SLED11-SP4-Pool for sle-11-i586"},{"name":"nVidia-Driver-SLE11-SP4","installer_updates":false,"description":"nVidia-Driver-SLE11-SP4","enabled":true,"id":1869,"autorefresh":true,"distro_target":null,"url":"http://download.nvidia.com/novell/sle11sp4/"}],"product_class":"7260","predecessor_ids":[]},{"recommended":false,"version":"11.3","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Desktop","former_identifier":"SUSE_SLED-SP4-migration","release_type":null,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Desktop 11 SP3 x86_64 (Migration)","friendly_version":"11 SP3","extensions":[],"id":1316,"release_stage":"released","identifier":"SUSE_SLED-SP4-migration","free":false,"description":null,"shortname":null,"eula_url":"","arch":"x86_64","predecessor_ids":[],"online_predecessor_ids":[],"repositories":[{"enabled":false,"id":707,"distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Pool/sle-11-x86_64/","installer_updates":false,"name":"SLE11-SP1-Debuginfo-Pool","description":"SLE11-SP1-Debuginfo-Pool for sle-11-x86_64"},{"description":"SLE11-SP2-Debuginfo-Updates for sle-11-x86_64","name":"SLE11-SP2-Debuginfo-Updates","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-Debuginfo-Updates/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64","id":712,"enabled":false},{"enabled":false,"id":715,"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Updates/sle-11-x86_64/","name":"SLE11-SP1-Debuginfo-Updates","installer_updates":false,"description":"SLE11-SP1-Debuginfo-Updates for sle-11-x86_64"},{"distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-Debuginfo-Core/sle-11-x86_64/","enabled":false,"id":716,"description":"SLE11-SP2-Debuginfo-Core for sle-11-x86_64","installer_updates":false,"name":"SLE11-SP2-Debuginfo-Core"},{"description":"SLE11-SP3-Debuginfo-Updates for sle-11-x86_64","name":"SLE11-SP3-Debuginfo-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE11-SP3-Debuginfo-Updates/sle-11-x86_64/","enabled":false,"id":735},{"installer_updates":false,"name":"SLE11-SP3-Debuginfo-Pool","description":"SLE11-SP3-Debuginfo-Pool for sle-11-x86_64","enabled":false,"id":736,"distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP3-Debuginfo-Pool/sle-11-x86_64/"},{"id":886,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLED11-SP2-Updates/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64","name":"SLED11-SP2-Updates","installer_updates":false,"description":"SLED11-SP2-Updates for sle-11-x86_64"},{"enabled":false,"id":887,"distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLED11-SP2-Core/sle-11-x86_64/","installer_updates":false,"name":"SLED11-SP2-Core","description":"SLED11-SP2-Core for sle-11-x86_64"},{"url":"https://updates.suse.com/repo/$RCE/SLED11-SP3-Pool/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true,"id":901,"enabled":false,"description":"SLED11-SP3-Pool for sle-11-x86_64","installer_updates":false,"name":"SLED11-SP3-Pool"},{"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLED11-SP1-Updates/sle-11-x86_64/","enabled":false,"id":902,"description":"SLED11-SP1-Updates for sle-11-x86_64","name":"SLED11-SP1-Updates","installer_updates":false},{"description":"SLED11-Extras for sle-11-x86_64","name":"SLED11-Extras","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLED11-Extras/sle-11-x86_64/","enabled":false,"id":903},{"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLED11-SP3-Updates/sle-11-x86_64/","enabled":false,"id":904,"description":"SLED11-SP3-Updates for sle-11-x86_64","name":"SLED11-SP3-Updates","installer_updates":false},{"name":"SLED11-SP1-Pool","installer_updates":false,"description":"SLED11-SP1-Pool for sle-11-x86_64","enabled":false,"id":905,"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLED11-SP1-Pool/sle-11-x86_64/"},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SP4-Debuginfo-Pool/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64","id":1804,"enabled":false,"description":"SLE11-SP4-Debuginfo-Pool for sle-11-x86_64","name":"SLE11-SP4-Debuginfo-Pool","installer_updates":false},{"name":"SLE11-SP4-Debuginfo-Updates","installer_updates":false,"description":"SLE11-SP4-Debuginfo-Updates for sle-11-x86_64","id":1806,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP4-Debuginfo-Updates/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64"},{"distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLED11-SP4-Pool/sle-11-x86_64/","enabled":true,"id":1809,"description":"SLED11-SP4-Pool for sle-11-x86_64","installer_updates":false,"name":"SLED11-SP4-Pool"},{"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLED11-SP4-Updates/sle-11-x86_64/","enabled":true,"id":1810,"description":"SLED11-SP4-Updates for sle-11-x86_64","name":"SLED11-SP4-Updates","installer_updates":false},{"installer_updates":false,"name":"nVidia-Driver-SLE11-SP4","description":"nVidia-Driver-SLE11-SP4","id":1869,"enabled":true,"url":"http://download.nvidia.com/novell/sle11sp4/","distro_target":null,"autorefresh":true}],"product_class":"7260","product_type":"base","cpe":null},{"recommended":false,"version":"5","name":"SUSE Cloud for SLE 12 Compute Nodes","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"SUSE Cloud for SLE 12 Compute Nodes 5 x86_64","former_identifier":"suse-sle12-cloud-compute","release_type":null,"friendly_version":"5","extensions":[],"id":1317,"release_stage":"released","identifier":"suse-sle12-cloud-compute","description":"SUSE Cloud for SLE 12 Compute Nodes","shortname":"SUSE Cloud for SLE 12 Compute Nodes","free":false,"eula_url":"https://updates.suse.com/SUSE/Products/12-Cloud-Compute/5/x86_64/product.license/","arch":"x86_64","predecessor_ids":[],"product_class":"SUSE_CLOUD","online_predecessor_ids":[],"repositories":[{"enabled":true,"id":1813,"distro_target":"sle-12-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/12-Cloud-Compute/5/x86_64/update/","installer_updates":false,"name":"SLE-12-Cloud-Compute5-Updates","description":"SLE-12-Cloud-Compute5-Updates for sle-12-x86_64"},{"name":"SLE-12-Cloud-Compute5-Debuginfo-Updates","installer_updates":false,"description":"SLE-12-Cloud-Compute5-Debuginfo-Updates for sle-12-x86_64","id":1814,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/12-Cloud-Compute/5/x86_64/update_debug/","autorefresh":true,"distro_target":"sle-12-x86_64"},{"description":"SLE-12-Cloud-Compute5-Pool for sle-12-x86_64","installer_updates":false,"name":"SLE-12-Cloud-Compute5-Pool","url":"https://updates.suse.com/SUSE/Products/12-Cloud-Compute/5/x86_64/product/","distro_target":"sle-12-x86_64","autorefresh":false,"id":1815,"enabled":true},{"description":"SLE-12-Cloud-Compute5-Debuginfo-Pool for sle-12-x86_64","installer_updates":false,"name":"SLE-12-Cloud-Compute5-Debuginfo-Pool","url":"https://updates.suse.com/SUSE/Products/12-Cloud-Compute/5/x86_64/product_debug/","distro_target":"sle-12-x86_64","autorefresh":false,"id":1816,"enabled":false},{"enabled":false,"id":1999,"autorefresh":false,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Products/12-Cloud-Compute/5/x86_64/product_source/","name":"SLE-12-Cloud-Compute5-Source-Pool","installer_updates":false,"description":"SLE-12-Cloud-Compute5-Source-Pool for sle-12-x86_64"}],"cpe":"cpe:/o:suse:suse-sle12-cloud-compute:5","product_type":"extension"},{"online_predecessor_ids":[],"product_class":"SLE-SDK","repositories":[{"installer_updates":false,"name":"SLE11-SDK-SP1-Updates","description":"SLE11-SDK-SP1-Updates for sle-11-ia64","id":1257,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Updates/sle-11-ia64/","distro_target":"sle-11-ia64","autorefresh":true},{"id":1258,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-ia64/","distro_target":"sle-11-ia64","autorefresh":true,"installer_updates":false,"name":"SLE11-SDK-SP1-Pool","description":"SLE11-SDK-SP1-Pool for sle-11-ia64"},{"autorefresh":true,"distro_target":"sle-11-s390x","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-s390x/","enabled":false,"id":1259,"description":"SLE11-SDK-SP1-Pool for sle-11-s390x","name":"SLE11-SDK-SP1-Pool","installer_updates":false},{"id":1260,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Updates/sle-11-ppc64/","distro_target":"sle-11-ppc64","autorefresh":true,"installer_updates":false,"name":"SLE11-SDK-SP1-Updates","description":"SLE11-SDK-SP1-Updates for sle-11-ppc64"},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-ppc64/","autorefresh":true,"distro_target":"sle-11-ppc64","id":1261,"enabled":false,"description":"SLE11-SDK-SP1-Pool for sle-11-ppc64","name":"SLE11-SDK-SP1-Pool","installer_updates":false},{"id":1262,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Updates/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true,"installer_updates":false,"name":"SLE11-SDK-SP1-Updates","description":"SLE11-SDK-SP1-Updates for sle-11-i586"},{"name":"SLE11-SDK-SP1-Pool","installer_updates":false,"description":"SLE11-SDK-SP1-Pool for sle-11-i586","id":1263,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586"},{"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-x86_64/","enabled":false,"id":1264,"description":"SLE11-SDK-SP1-Pool for sle-11-x86_64","name":"SLE11-SDK-SP1-Pool","installer_updates":false},{"enabled":false,"id":1265,"distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Updates/sle-11-x86_64/","installer_updates":false,"name":"SLE11-SDK-SP1-Updates","description":"SLE11-SDK-SP1-Updates for sle-11-x86_64"},{"name":"SLE11-SDK-SP1-Updates","installer_updates":false,"description":"SLE11-SDK-SP1-Updates for sle-11-s390x","enabled":false,"id":1266,"autorefresh":true,"distro_target":"sle-11-s390x","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Updates/sle-11-s390x/"},{"autorefresh":true,"distro_target":"sle-11-ia64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-ia64/","enabled":false,"id":1267,"description":"SLE11-SDK-SP2-Core for sle-11-ia64","name":"SLE11-SDK-SP2-Core","installer_updates":false},{"installer_updates":false,"name":"SLE11-SDK-SP2-Core","description":"SLE11-SDK-SP2-Core for sle-11-s390x","enabled":false,"id":1268,"distro_target":"sle-11-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-s390x/"},{"installer_updates":false,"name":"SLE11-SDK-SP2-Updates","description":"SLE11-SDK-SP2-Updates for sle-11-s390x","id":1269,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-s390x/","distro_target":"sle-11-s390x","autorefresh":true},{"name":"SLE11-SDK-SP2-Updates","installer_updates":false,"description":"SLE11-SDK-SP2-Updates for sle-11-ppc64","enabled":false,"id":1270,"autorefresh":true,"distro_target":"sle-11-ppc64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-ppc64/"},{"id":1271,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true,"installer_updates":false,"name":"SLE11-SDK-SP2-Updates","description":"SLE11-SDK-SP2-Updates for sle-11-i586"},{"description":"SLE11-SDK-SP2-Updates for sle-11-ia64","name":"SLE11-SDK-SP2-Updates","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-ia64/","autorefresh":true,"distro_target":"sle-11-ia64","id":1272,"enabled":false},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-ppc64/","autorefresh":true,"distro_target":"sle-11-ppc64","id":1273,"enabled":false,"description":"SLE11-SDK-SP2-Core for sle-11-ppc64","name":"SLE11-SDK-SP2-Core","installer_updates":false},{"enabled":false,"id":1274,"distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-i586/","installer_updates":false,"name":"SLE11-SDK-SP2-Core","description":"SLE11-SDK-SP2-Core for sle-11-i586"},{"distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-x86_64/","enabled":false,"id":1275,"description":"SLE11-SDK-SP2-Core for sle-11-x86_64","installer_updates":false,"name":"SLE11-SDK-SP2-Core"},{"description":"SLE11-SDK-SP2-Updates for sle-11-x86_64","name":"SLE11-SDK-SP2-Updates","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64","id":1276,"enabled":false},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Pool/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","id":1277,"enabled":false,"description":"SLE11-SDK-SP3-Pool for sle-11-i586","name":"SLE11-SDK-SP3-Pool","installer_updates":false},{"autorefresh":true,"distro_target":"sle-11-ia64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Pool/sle-11-ia64/","enabled":false,"id":1278,"description":"SLE11-SDK-SP3-Pool for sle-11-ia64","name":"SLE11-SDK-SP3-Pool","installer_updates":false},{"description":"SLE11-SDK-SP3-Updates for sle-11-ppc64","installer_updates":false,"name":"SLE11-SDK-SP3-Updates","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Updates/sle-11-ppc64/","distro_target":"sle-11-ppc64","autorefresh":true,"id":1279,"enabled":false},{"name":"SLE11-SDK-SP3-Updates","installer_updates":false,"description":"SLE11-SDK-SP3-Updates for sle-11-ia64","enabled":false,"id":1280,"autorefresh":true,"distro_target":"sle-11-ia64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Updates/sle-11-ia64/"},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Pool/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true,"id":1281,"enabled":false,"description":"SLE11-SDK-SP3-Pool for sle-11-x86_64","installer_updates":false,"name":"SLE11-SDK-SP3-Pool"},{"id":1282,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Updates/sle-11-s390x/","autorefresh":true,"distro_target":"sle-11-s390x","name":"SLE11-SDK-SP3-Updates","installer_updates":false,"description":"SLE11-SDK-SP3-Updates for sle-11-s390x"},{"description":"SLE11-SDK-SP3-Pool for sle-11-ppc64","name":"SLE11-SDK-SP3-Pool","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-ppc64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Pool/sle-11-ppc64/","enabled":false,"id":1283},{"description":"SLE11-SDK-SP3-Updates for sle-11-x86_64","name":"SLE11-SDK-SP3-Updates","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Updates/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64","id":1284,"enabled":false},{"description":"SLE11-SDK-SP3-Updates for sle-11-i586","installer_updates":false,"name":"SLE11-SDK-SP3-Updates","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Updates/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true,"id":1285,"enabled":false},{"name":"SLE11-SDK-SP3-Pool","installer_updates":false,"description":"SLE11-SDK-SP3-Pool for sle-11-s390x","enabled":false,"id":1286,"autorefresh":true,"distro_target":"sle-11-s390x","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Pool/sle-11-s390x/"},{"name":"SLE11-SDK-SP4-Pool","installer_updates":false,"description":"SLE11-SDK-SP4-Pool for sle-11-i586","id":1817,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP4-Pool/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586"},{"autorefresh":true,"distro_target":"sle-11-ia64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP4-Pool/sle-11-ia64/","enabled":true,"id":1818,"description":"SLE11-SDK-SP4-Pool for sle-11-ia64","name":"SLE11-SDK-SP4-Pool","installer_updates":false},{"description":"SLE11-SDK-SP4-Pool for sle-11-ppc64","installer_updates":false,"name":"SLE11-SDK-SP4-Pool","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP4-Pool/sle-11-ppc64/","distro_target":"sle-11-ppc64","autorefresh":true,"id":1819,"enabled":true},{"autorefresh":true,"distro_target":"sle-11-s390x","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP4-Pool/sle-11-s390x/","enabled":true,"id":1820,"description":"SLE11-SDK-SP4-Pool for sle-11-s390x","name":"SLE11-SDK-SP4-Pool","installer_updates":false},{"description":"SLE11-SDK-SP4-Pool for sle-11-x86_64","name":"SLE11-SDK-SP4-Pool","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP4-Pool/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64","id":1821,"enabled":true},{"name":"SLE11-SDK-SP4-Updates","installer_updates":false,"description":"SLE11-SDK-SP4-Updates for sle-11-i586","enabled":true,"id":1822,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP4-Updates/sle-11-i586/"},{"enabled":true,"id":1823,"distro_target":"sle-11-ia64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP4-Updates/sle-11-ia64/","installer_updates":false,"name":"SLE11-SDK-SP4-Updates","description":"SLE11-SDK-SP4-Updates for sle-11-ia64"},{"autorefresh":true,"distro_target":"sle-11-ppc64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP4-Updates/sle-11-ppc64/","enabled":true,"id":1824,"description":"SLE11-SDK-SP4-Updates for sle-11-ppc64","name":"SLE11-SDK-SP4-Updates","installer_updates":false},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP4-Updates/sle-11-s390x/","distro_target":"sle-11-s390x","autorefresh":true,"id":1825,"enabled":true,"description":"SLE11-SDK-SP4-Updates for sle-11-s390x","installer_updates":false,"name":"SLE11-SDK-SP4-Updates"},{"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP4-Updates/sle-11-x86_64/","enabled":true,"id":1826,"description":"SLE11-SDK-SP4-Updates for sle-11-x86_64","name":"SLE11-SDK-SP4-Updates","installer_updates":false}],"predecessor_ids":[],"product_type":"extension","cpe":null,"free":true,"shortname":null,"description":null,"arch":null,"eula_url":"","friendly_version":"11 SP3","release_stage":"released","id":1318,"identifier":"sle-sdk-SP4-migration","extensions":[],"version":"11.3","recommended":false,"release_type":null,"former_identifier":"sle-sdk-SP4-migration","migration_extra":false,"friendly_name":"SUSE Linux Enterprise Software Development Kit 11 SP3 (Migration)","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Software Development Kit"},{"free":false,"shortname":"SLE-12-SAP","description":"SUSE LINUX Enterprise Server 12 for SAP Applications","eula_url":"https://updates.suse.com/SUSE/Products/SLE-SAP/12/x86_64/product.license/","arch":"x86_64","predecessor_ids":[],"product_class":"AiO","online_predecessor_ids":[],"repositories":[{"description":"SLES12-Updates for sle-12-x86_64","installer_updates":false,"name":"SLES12-Updates","distro_target":"sle-12-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-SERVER/12/x86_64/update/","enabled":true,"id":1632},{"id":1633,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-SERVER/12/x86_64/update_debug/","distro_target":"sle-12-x86_64","autorefresh":true,"installer_updates":false,"name":"SLES12-Debuginfo-Updates","description":"SLES12-Debuginfo-Updates for sle-12-x86_64"},{"autorefresh":false,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-SERVER/12/x86_64/product/","enabled":true,"id":1634,"description":"SLES12-Pool for sle-12-x86_64","name":"SLES12-Pool","installer_updates":false},{"description":"SLES12-Debuginfo-Pool for sle-12-x86_64","name":"SLES12-Debuginfo-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-SERVER/12/x86_64/product_debug/","autorefresh":false,"distro_target":"sle-12-x86_64","id":1635,"enabled":false},{"enabled":true,"id":1712,"autorefresh":true,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-HA/12/x86_64/update/","name":"SLE-HA12-Updates","installer_updates":false,"description":"SLE-HA12-Updates for sle-12-x86_64"},{"description":"SLE-HA12-Debuginfo-Updates for sle-12-x86_64","installer_updates":false,"name":"SLE-HA12-Debuginfo-Updates","url":"https://updates.suse.com/SUSE/Updates/SLE-HA/12/x86_64/update_debug/","distro_target":"sle-12-x86_64","autorefresh":true,"id":1713,"enabled":false},{"url":"https://updates.suse.com/SUSE/Products/SLE-HA/12/x86_64/product/","distro_target":"sle-12-x86_64","autorefresh":false,"id":1714,"enabled":true,"description":"SLE-HA12-Pool for sle-12-x86_64","installer_updates":false,"name":"SLE-HA12-Pool"},{"id":1715,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-HA/12/x86_64/product_debug/","autorefresh":false,"distro_target":"sle-12-x86_64","name":"SLE-HA12-Debuginfo-Pool","installer_updates":false,"description":"SLE-HA12-Debuginfo-Pool for sle-12-x86_64"},{"description":"SLE-12-SAP-Updates for sle-12-x86_64","installer_updates":false,"name":"SLE-12-SAP-Updates","url":"https://updates.suse.com/SUSE/Updates/SLE-SAP/12/x86_64/update/","distro_target":"sle-12-x86_64","autorefresh":true,"id":1836,"enabled":true},{"description":"SLE-12-SAP-Debuginfo-Updates for sle-12-x86_64","name":"SLE-12-SAP-Debuginfo-Updates","installer_updates":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-SAP/12/x86_64/update_debug/","autorefresh":true,"distro_target":"sle-12-x86_64","id":1837,"enabled":false},{"url":"https://updates.suse.com/SUSE/Products/SLE-SAP/12/x86_64/product/","autorefresh":false,"distro_target":"sle-12-x86_64","id":1838,"enabled":true,"description":"SLE12-SAP-Pool for sle-12-x86_64","name":"SLE12-SAP-Pool","installer_updates":false},{"description":"SLE12-SAP-Debuginfo-Pool for sle-12-x86_64","name":"SLE12-SAP-Debuginfo-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-SAP/12/x86_64/product_debug/","enabled":false,"id":1839}],"product_type":"base","cpe":"cpe:/o:suse:sles_sap:12","recommended":false,"version":"12","offline_predecessor_ids":[1329],"name":"SUSE Linux Enterprise Server for SAP Applications","former_identifier":"SUSE_SLES_SAP","release_type":null,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Server for SAP Applications 12 x86_64","friendly_version":"12","extensions":[{"cpe":"cpe:/o:suse:sle-module-legacy:12","product_type":"module","repositories":[{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/12/x86_64/update/","distro_target":"sle-12-x86_64","autorefresh":true,"id":1676,"enabled":true,"description":"SLE-Module-Legacy12-Updates for sle-12-x86_64","installer_updates":false,"name":"SLE-Module-Legacy12-Updates"},{"description":"SLE-Module-Legacy12-Debuginfo-Updates for sle-12-x86_64","name":"SLE-Module-Legacy12-Debuginfo-Updates","installer_updates":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/12/x86_64/update_debug/","autorefresh":true,"distro_target":"sle-12-x86_64","id":1677,"enabled":false},{"id":1678,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/12/x86_64/product/","autorefresh":false,"distro_target":"sle-12-x86_64","name":"SLE-Module-Legacy12-Pool","installer_updates":false,"description":"SLE-Module-Legacy12-Pool for sle-12-x86_64"},{"description":"SLE-Module-Legacy12-Debuginfo-Pool for sle-12-x86_64","installer_updates":false,"name":"SLE-Module-Legacy12-Debuginfo-Pool","distro_target":"sle-12-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/12/x86_64/product_debug/","enabled":false,"id":1679},{"name":"SLE-Module-Legacy12-Source-Pool","installer_updates":false,"description":"SLE-Module-Legacy12-Source-Pool for sle-12-x86_64","enabled":false,"id":1989,"autorefresh":false,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/12/x86_64/product_source/"}],"online_predecessor_ids":[],"product_class":"MODULE","predecessor_ids":[],"arch":"x86_64","eula_url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/12/x86_64/product.license/","shortname":"Legacy-Module","description":"

The Legacy Module helps you migrating applications from SUSE Linux Enterprise 10 and 11 and other systems to SUSE Linux Enterprise 12, by providing packages which are discontinued on SUSE Linux Enterprise Server, such as: sendmail, syslog-ng, IBM Java6, and a number of libraries (for example openssl-0.9.8).

Access to the Legacy Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself. Packages in the this module are usually supported for at most three years. Support for Sendmail and IBM Java 6 will end in September 2017 the latest.

","free":true,"identifier":"sle-module-legacy","release_stage":"released","id":1150,"extensions":[],"friendly_version":"12","friendly_name":"Legacy Module 12 x86_64","migration_extra":false,"former_identifier":"sle-module-legacy","release_type":null,"name":"Legacy Module","offline_predecessor_ids":[],"version":"12","recommended":false},{"release_stage":"released","identifier":"sle-module-web-scripting","id":1153,"extensions":[],"friendly_version":"12","former_identifier":"sle-module-web-scripting","release_type":null,"migration_extra":false,"friendly_name":"Web and Scripting Module 12 x86_64","offline_predecessor_ids":[],"name":"Web and Scripting Module","version":"12","recommended":false,"product_type":"module","cpe":"cpe:/o:suse:sle-module-web-scripting:12","online_predecessor_ids":[],"product_class":"MODULE","repositories":[{"description":"SLE-Module-Web-Scripting12-Updates for sle-12-x86_64","installer_updates":false,"name":"SLE-Module-Web-Scripting12-Updates","distro_target":"sle-12-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/12/x86_64/update/","enabled":true,"id":1688},{"id":1689,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/12/x86_64/update_debug/","distro_target":"sle-12-x86_64","autorefresh":true,"installer_updates":false,"name":"SLE-Module-Web-Scripting12-Debuginfo-Updates","description":"SLE-Module-Web-Scripting12-Debuginfo-Updates for sle-12-x86_64"},{"distro_target":"sle-12-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/12/x86_64/product/","enabled":true,"id":1690,"description":"SLE-Module-Web-Scripting12-Pool for sle-12-x86_64","installer_updates":false,"name":"SLE-Module-Web-Scripting12-Pool"},{"autorefresh":false,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/12/x86_64/product_debug/","enabled":false,"id":1691,"description":"SLE-Module-Web-Scripting12-Debuginfo-Pool for sle-12-x86_64","name":"SLE-Module-Web-Scripting12-Debuginfo-Pool","installer_updates":false},{"autorefresh":false,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/12/x86_64/product_source/","enabled":false,"id":1992,"description":"SLE-Module-Web-Scripting12-Source-Pool for sle-12-x86_64","name":"SLE-Module-Web-Scripting12-Source-Pool","installer_updates":false}],"predecessor_ids":[],"arch":"x86_64","eula_url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/12/x86_64/product.license/","free":true,"shortname":"Web-and-Scripting-Module","description":"

The SUSE Linux Enterprise Web and Scripting Module delivers a comprehensive suite of scripting languages, frameworks, and related tools helping developers and systems administrators accelerate the creation of stable, modern web applications, using dynamic languages, such as PHP, Ruby on Rails, and Python.

Access to the Web and Scripting Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself: Package versions in the this module are usually supported for at most three years. We are planning to release more recent versions on a schedule of approximately 18 month; the exact dates may differ per package.

"},{"extensions":[],"id":1157,"release_stage":"released","identifier":"sle-ha-geo","friendly_version":"12","offline_predecessor_ids":[1101,1107,1286],"name":"SUSE Linux Enterprise High Availability GEO Extension","release_type":null,"former_identifier":"sle-haegeo","migration_extra":false,"friendly_name":"SUSE Linux Enterprise High Availability GEO Extension 12 x86_64","recommended":false,"version":"12","product_type":"extension","cpe":"cpe:/o:suse:sle-ha-geo:12","predecessor_ids":[],"product_class":"SLE-HAE-GEO","online_predecessor_ids":[],"repositories":[{"enabled":true,"id":1720,"autorefresh":true,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-HA-GEO/12/x86_64/update/","name":"SLE-HA-GEO12-Updates","installer_updates":false,"description":"SLE-HA-GEO12-Updates for sle-12-x86_64"},{"description":"SLE-HA-GEO12-Debuginfo-Updates for sle-12-x86_64","installer_updates":false,"name":"SLE-HA-GEO12-Debuginfo-Updates","distro_target":"sle-12-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-HA-GEO/12/x86_64/update_debug/","enabled":false,"id":1721},{"name":"SLE-HA-GEO12-Pool","installer_updates":false,"description":"SLE-HA-GEO12-Pool for sle-12-x86_64","enabled":true,"id":1722,"autorefresh":false,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-HA-GEO/12/x86_64/product/"},{"enabled":false,"id":1723,"distro_target":"sle-12-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-HA-GEO/12/x86_64/product_debug/","installer_updates":false,"name":"SLE-HA-GEO12-Debuginfo-Pool","description":"SLE-HA-GEO12-Debuginfo-Pool for sle-12-x86_64"}],"eula_url":"https://updates.suse.com/SUSE/Products/SLE-HA-GEO/12/x86_64/product.license/","arch":"x86_64","free":false,"shortname":"SLEHA-12-GEO","description":"SUSE Linux Enterprise High Availability Geographical Cluster Extension"},{"repositories":[{"installer_updates":false,"name":"SLE-Module-Adv-Systems-Management12-Updates","description":"SLE-Module-Adv-Systems-Management12-Updates for sle-12-x86_64","enabled":true,"id":1704,"distro_target":"sle-12-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Adv-Systems-Management/12/x86_64/update/"},{"id":1705,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Adv-Systems-Management/12/x86_64/update_debug/","distro_target":"sle-12-x86_64","autorefresh":true,"installer_updates":false,"name":"SLE-Module-Adv-Systems-Management12-Debuginfo-Updates","description":"SLE-Module-Adv-Systems-Management12-Debuginfo-Updates for sle-12-x86_64"},{"id":1706,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Adv-Systems-Management/12/x86_64/product/","distro_target":"sle-12-x86_64","autorefresh":false,"installer_updates":false,"name":"SLE-Module-Adv-Systems-Management12-Pool","description":"SLE-Module-Adv-Systems-Management12-Pool for sle-12-x86_64"},{"name":"SLE-Module-Adv-Systems-Management12-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-Adv-Systems-Management12-Debuginfo-Pool for sle-12-x86_64","id":1707,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Adv-Systems-Management/12/x86_64/product_debug/","autorefresh":false,"distro_target":"sle-12-x86_64"},{"name":"SLE-Module-Adv-Systems-Management12-Source-Pool","installer_updates":false,"description":"SLE-Module-Adv-Systems-Management12-Source-Pool for sle-12-x86_64","id":1998,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Adv-Systems-Management/12/x86_64/product_source/","autorefresh":false,"distro_target":"sle-12-x86_64"}],"online_predecessor_ids":[],"product_class":"MODULE","predecessor_ids":[],"cpe":"cpe:/o:suse:sle-module-adv-systems-management:12","product_type":"module","description":"

This Module contains current versions of the popular configuration management frameworks Puppet and CFEngine as well as the new systems management toolbox called machinery.

The machinery tool will be frequently updated and is SUSE's upcoming systems management toolbox for inspecting and validating systems remotely, storing their system description and creating new systems to deploy them in datacenters and clouds.

","shortname":"Adv-Sys-Mgmt-Module","free":true,"arch":"x86_64","eula_url":"","friendly_version":"12","release_stage":"released","identifier":"sle-module-adv-systems-management","id":1212,"extensions":[],"version":"12","recommended":false,"migration_extra":false,"friendly_name":"Advanced Systems Management Module 12 x86_64","release_type":null,"former_identifier":"sle-module-adv-systems-management","name":"Advanced Systems Management Module","offline_predecessor_ids":[]},{"cpe":"cpe:/o:suse:sle-module-public-cloud:12","product_type":"module","product_class":"MODULE","online_predecessor_ids":[],"repositories":[{"description":"SLE-Module-Public-Cloud12-Updates for sle-12-x86_64","installer_updates":false,"name":"SLE-Module-Public-Cloud12-Updates","distro_target":"sle-12-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/12/x86_64/update/","enabled":true,"id":1700},{"autorefresh":true,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/12/x86_64/update_debug/","enabled":false,"id":1701,"description":"SLE-Module-Public-Cloud12-Debuginfo-Updates for sle-12-x86_64","name":"SLE-Module-Public-Cloud12-Debuginfo-Updates","installer_updates":false},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/12/x86_64/product/","distro_target":"sle-12-x86_64","autorefresh":false,"id":1702,"enabled":true,"description":"SLE-Module-Public-Cloud12-Pool for sle-12-x86_64","installer_updates":false,"name":"SLE-Module-Public-Cloud12-Pool"},{"installer_updates":false,"name":"SLE-Module-Public-Cloud12-Debuginfo-Pool","description":"SLE-Module-Public-Cloud12-Debuginfo-Pool for sle-12-x86_64","enabled":false,"id":1703,"distro_target":"sle-12-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/12/x86_64/product_debug/"},{"installer_updates":false,"name":"SLE-Module-Public-Cloud12-Source-Pool","description":"SLE-Module-Public-Cloud12-Source-Pool for sle-12-x86_64","id":1995,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/12/x86_64/product_source/","distro_target":"sle-12-x86_64","autorefresh":false}],"predecessor_ids":[],"arch":"x86_64","eula_url":"","shortname":"Public-Cloud-Module","description":"

The Public Cloud Module is a collection of tools that enables you to create and manage cloud images from the commandline on SUSE Linux Enterprise Server. When building your own images with KIWI or SUSE Studio, initialization code specific to the target cloud is included in that image.

Access to the Public Cloud Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself; please check the Release Notes for further details.

","free":true,"release_stage":"released","id":1220,"identifier":"sle-module-public-cloud","extensions":[],"friendly_version":"12","migration_extra":false,"friendly_name":"Public Cloud Module 12 x86_64","former_identifier":"sle-module-public-cloud","release_type":null,"name":"Public Cloud Module","offline_predecessor_ids":[],"version":"12","recommended":false},{"friendly_name":"SUSE Linux Enterprise Workstation Extension 12 x86_64","migration_extra":false,"former_identifier":"sle-we","release_type":null,"name":"SUSE Linux Enterprise Workstation Extension","offline_predecessor_ids":[],"version":"12","recommended":false,"release_stage":"released","id":1222,"identifier":"sle-we","extensions":[],"friendly_version":"12","arch":"x86_64","eula_url":"https://updates.suse.com/SUSE/Products/SLE-WE/12/x86_64/product.license/","description":"SUSE Linux Enterprise Workstation Extension extends the functionality of SUSE Linux Enterprise Server with packages of SUSE Linux Enterprise Desktop, like additional desktop applications (office suite, email client, graphical editor ...) and libraries. It allows to combine both products to create a full featured Workstation.","shortname":"SLEWE12","free":false,"cpe":"cpe:/o:suse:sle-we:12","product_type":"extension","online_predecessor_ids":[],"product_class":"SLE-WE","repositories":[{"enabled":true,"id":1503,"distro_target":null,"autorefresh":true,"url":"http://download.nvidia.com/novell/sle12/","installer_updates":false,"name":"SLE-12-GA-Desktop-NVIDIA-Driver","description":"SLE-12-GA-Desktop-NVIDIA-Driver"},{"name":"SLE-WE12-Updates","installer_updates":false,"description":"SLE-WE12-Updates for sle-12-x86_64","id":1652,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-WE/12/x86_64/update/","autorefresh":true,"distro_target":"sle-12-x86_64"},{"distro_target":"sle-12-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-WE/12/x86_64/update_debug/","enabled":false,"id":1653,"description":"SLE-WE12-Debuginfo-Updates for sle-12-x86_64","installer_updates":false,"name":"SLE-WE12-Debuginfo-Updates"},{"description":"SLE-WE12-Pool for sle-12-x86_64","name":"SLE-WE12-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-WE/12/x86_64/product/","autorefresh":false,"distro_target":"sle-12-x86_64","id":1654,"enabled":true},{"enabled":false,"id":1655,"autorefresh":false,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-WE/12/x86_64/product_debug/","name":"SLE-WE12-Debuginfo-Pool","installer_updates":false,"description":"SLE-WE12-Debuginfo-Pool for sle-12-x86_64"}],"predecessor_ids":[]},{"friendly_version":"12","extensions":[],"identifier":"sle-sdk","release_stage":"released","id":1223,"recommended":false,"version":"12","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Software Development Kit","former_identifier":"sle-sdk","release_type":null,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Software Development Kit 12 x86_64","predecessor_ids":[],"online_predecessor_ids":[],"repositories":[{"installer_updates":false,"name":"SLE-SDK12-Updates","description":"SLE-SDK12-Updates for sle-12-x86_64","id":1664,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-SDK/12/x86_64/update/","distro_target":"sle-12-x86_64","autorefresh":true},{"installer_updates":false,"name":"SLE-SDK12-Debuginfo-Updates","description":"SLE-SDK12-Debuginfo-Updates for sle-12-x86_64","id":1665,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-SDK/12/x86_64/update_debug/","distro_target":"sle-12-x86_64","autorefresh":true},{"id":1666,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-SDK/12/x86_64/product/","autorefresh":false,"distro_target":"sle-12-x86_64","name":"SLE-SDK12-Pool","installer_updates":false,"description":"SLE-SDK12-Pool for sle-12-x86_64"},{"description":"SLE-SDK12-Debuginfo-Pool for sle-12-x86_64","installer_updates":false,"name":"SLE-SDK12-Debuginfo-Pool","distro_target":"sle-12-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-SDK/12/x86_64/product_debug/","enabled":false,"id":1667}],"product_class":"SLE-SDK","product_type":"extension","cpe":"cpe:/o:suse:sle-sdk:12","free":true,"description":"

SUSE Linux Enterprise Software Development Kit 12 is the Software Development Kit for the family of SUSE Linux Enterprise products. It is a free of charge extension for partners and customers working with SUSE Linux Enterprise Server and Desktop and derived products.

Packages on the SDK are delivered without L3 support; maintenance updates will be done for critical security and critical non-security issues, and where needed to remain in sync with packages delivered in the SUSE Linux Enterprise Server and Desktop products.

Packages to rebuild SUSE Linux Enterprise Server are not part of the SUSE Linux Enterprise Software Development Kit.

","shortname":"SDK12","eula_url":"https://updates.suse.com/SUSE/Products/SLE-SDK/12/x86_64/product.license/","arch":"x86_64"},{"friendly_name":"SUSE Linux Enterprise Live Patching 12 x86_64","migration_extra":false,"release_type":null,"former_identifier":"sle-live-patching","name":"SUSE Linux Enterprise Live Patching","offline_predecessor_ids":[],"version":"12","recommended":false,"id":1253,"release_stage":"released","identifier":"sle-live-patching","extensions":[],"friendly_version":"12","arch":"x86_64","eula_url":"https://updates.suse.com/SUSE/Products/SLE-Live-Patching/12/x86_64/product.license/","shortname":"Live-Patching","description":"

SUSE Linux Enterprise Live Patching provides packages to update critical kernel modules live in SUSE Linux Enterprise. With SUSE Linux Enterprise Live Patching, you can perform critical kernel patching without shutting down your system, reducing the need for planned downtime and increasing service availability.

","free":false,"cpe":"cpe:/o:suse:sle-live-patching:12","product_type":"extension","online_predecessor_ids":[],"repositories":[{"url":"https://updates.suse.com/SUSE/Updates/SLE-Live-Patching/12/x86_64/update/","distro_target":"sle-12-x86_64","autorefresh":true,"id":1741,"enabled":true,"description":"SLE-Live-Patching12-Updates for sle-12-x86_64","installer_updates":false,"name":"SLE-Live-Patching12-Updates"},{"installer_updates":false,"name":"SLE-Live-Patching12-Debuginfo-Updates","description":"SLE-Live-Patching12-Debuginfo-Updates for sle-12-x86_64","enabled":false,"id":1742,"distro_target":"sle-12-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Live-Patching/12/x86_64/update_debug/"},{"installer_updates":false,"name":"SLE-Live-Patching12-Pool","description":"SLE-Live-Patching12-Pool for sle-12-x86_64","enabled":true,"id":1743,"distro_target":"sle-12-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Live-Patching/12/x86_64/product/"},{"distro_target":"sle-12-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Live-Patching/12/x86_64/product_debug/","enabled":false,"id":1744,"description":"SLE-Live-Patching12-Debuginfo-Pool for sle-12-x86_64","installer_updates":false,"name":"SLE-Live-Patching12-Debuginfo-Pool"},{"description":"SLE-Live-Patching12-Source-Pool for sle-12-x86_64","installer_updates":false,"name":"SLE-Live-Patching12-Source-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Live-Patching/12/x86_64/product_source/","distro_target":"sle-12-x86_64","autorefresh":false,"id":1986,"enabled":false}],"product_class":"SLE-LP","predecessor_ids":[]},{"free":false,"description":"SUSE Cloud for SLE 12 Compute Nodes","shortname":"SUSE Cloud for SLE 12 Compute Nodes","arch":"x86_64","eula_url":"https://updates.suse.com/SUSE/Products/12-Cloud-Compute/5/x86_64/product.license/","product_class":"SUSE_CLOUD","online_predecessor_ids":[],"repositories":[{"autorefresh":true,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Updates/12-Cloud-Compute/5/x86_64/update/","enabled":true,"id":1813,"description":"SLE-12-Cloud-Compute5-Updates for sle-12-x86_64","name":"SLE-12-Cloud-Compute5-Updates","installer_updates":false},{"url":"https://updates.suse.com/SUSE/Updates/12-Cloud-Compute/5/x86_64/update_debug/","distro_target":"sle-12-x86_64","autorefresh":true,"id":1814,"enabled":false,"description":"SLE-12-Cloud-Compute5-Debuginfo-Updates for sle-12-x86_64","installer_updates":false,"name":"SLE-12-Cloud-Compute5-Debuginfo-Updates"},{"id":1815,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/12-Cloud-Compute/5/x86_64/product/","autorefresh":false,"distro_target":"sle-12-x86_64","name":"SLE-12-Cloud-Compute5-Pool","installer_updates":false,"description":"SLE-12-Cloud-Compute5-Pool for sle-12-x86_64"},{"description":"SLE-12-Cloud-Compute5-Debuginfo-Pool for sle-12-x86_64","name":"SLE-12-Cloud-Compute5-Debuginfo-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Products/12-Cloud-Compute/5/x86_64/product_debug/","enabled":false,"id":1816},{"description":"SLE-12-Cloud-Compute5-Source-Pool for sle-12-x86_64","name":"SLE-12-Cloud-Compute5-Source-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Products/12-Cloud-Compute/5/x86_64/product_source/","enabled":false,"id":1999}],"predecessor_ids":[],"product_type":"extension","cpe":"cpe:/o:suse:suse-sle12-cloud-compute:5","version":"5","recommended":false,"former_identifier":"suse-sle12-cloud-compute","release_type":null,"migration_extra":false,"friendly_name":"SUSE Cloud for SLE 12 Compute Nodes 5 x86_64","offline_predecessor_ids":[],"name":"SUSE Cloud for SLE 12 Compute Nodes","friendly_version":"5","id":1317,"release_stage":"released","identifier":"suse-sle12-cloud-compute","extensions":[]},{"eula_url":"","arch":"x86_64","free":true,"description":"

This Module contains several packages revolving around containers and related tools.

","shortname":"Containers-Module","product_type":"module","cpe":"cpe:/o:suse:sle-module-containers:12","predecessor_ids":[],"online_predecessor_ids":[],"repositories":[{"id":1864,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/12/x86_64/update/","distro_target":"sle-12-x86_64","autorefresh":true,"installer_updates":false,"name":"SLE-Module-Containers12-Updates","description":"SLE-Module-Containers12-Updates for sle-12-x86_64"},{"autorefresh":true,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/12/x86_64/update_debug/","enabled":false,"id":1865,"description":"SLE-Module-Containers12-Debuginfo-Updates for sle-12-x86_64","name":"SLE-Module-Containers12-Debuginfo-Updates","installer_updates":false},{"installer_updates":false,"name":"SLE-Module-Containers12-Pool","description":"SLE-Module-Containers12-Pool for sle-12-x86_64","enabled":true,"id":1866,"distro_target":"sle-12-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/12/x86_64/product/"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/12/x86_64/product_debug/","autorefresh":false,"distro_target":"sle-12-x86_64","id":1867,"enabled":false,"description":"SLE-Module-Containers12-Debuginfo-Pool for sle-12-x86_64","name":"SLE-Module-Containers12-Debuginfo-Pool","installer_updates":false},{"description":"SLE-Module-Containers12-Source-Pool for sle-12-x86_64","name":"SLE-Module-Containers12-Source-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/12/x86_64/product_source/","autorefresh":false,"distro_target":"sle-12-x86_64","id":1957,"enabled":false}],"product_class":"MODULE","offline_predecessor_ids":[],"name":"Containers Module","release_type":null,"former_identifier":"sle-module-containers","migration_extra":false,"friendly_name":"Containers Module 12 x86_64","recommended":false,"version":"12","extensions":[],"id":1332,"release_stage":"released","identifier":"sle-module-containers","friendly_version":"12"},{"product_class":"MODULE","online_predecessor_ids":[],"repositories":[{"description":"SLE-Module-Toolchain12-Updates for sle-12-x86_64","installer_updates":false,"name":"SLE-Module-Toolchain12-Updates","distro_target":"sle-12-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Toolchain/12/x86_64/update/","enabled":true,"id":1903},{"description":"SLE-Module-Toolchain12-Debuginfo-Updates for sle-12-x86_64","installer_updates":false,"name":"SLE-Module-Toolchain12-Debuginfo-Updates","distro_target":"sle-12-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Toolchain/12/x86_64/update_debug/","enabled":false,"id":1904},{"autorefresh":false,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Toolchain/12/x86_64/product/","enabled":true,"id":1905,"description":"SLE-Module-Toolchain12-Pool for sle-12-x86_64","name":"SLE-Module-Toolchain12-Pool","installer_updates":false},{"id":1906,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Toolchain/12/x86_64/product_debug/","autorefresh":false,"distro_target":"sle-12-x86_64","name":"SLE-Module-Toolchain12-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-Toolchain12-Debuginfo-Pool for sle-12-x86_64"}],"predecessor_ids":[],"cpe":"cpe:/o:suse:sle-module-toolchain:12","product_type":"module","description":"Via this Module you will have access to a more recent GCC and Toolchain in addition to the default compiler of SUSE Linux Enterprise. Access to the Toolchain Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself. Please check the Release Notes for further details.","shortname":"Toolchain-Module","free":true,"arch":"x86_64","eula_url":"","friendly_version":"12","release_stage":"released","identifier":"sle-module-toolchain","id":1341,"extensions":[],"version":"12","recommended":false,"friendly_name":"Toolchain Module 12 x86_64","migration_extra":false,"release_type":null,"former_identifier":"sle-module-toolchain","name":"Toolchain Module","offline_predecessor_ids":[]},{"cpe":"cpe:/o:suse:ses:2","product_type":"extension","predecessor_ids":[],"online_predecessor_ids":[],"repositories":[{"url":"https://updates.suse.com/SUSE/Updates/Storage/2/x86_64/update/","distro_target":"sle-12-x86_64","autorefresh":true,"id":1917,"enabled":true,"description":"SUSE-Enterprise-Storage-2-Updates for sle-12-x86_64","installer_updates":false,"name":"SUSE-Enterprise-Storage-2-Updates"},{"description":"SUSE-Enterprise-Storage-2-Debuginfo-Updates for sle-12-x86_64","installer_updates":false,"name":"SUSE-Enterprise-Storage-2-Debuginfo-Updates","distro_target":"sle-12-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/Storage/2/x86_64/update_debug/","enabled":false,"id":1918},{"url":"https://updates.suse.com/SUSE/Products/Storage/2/x86_64/product/","autorefresh":false,"distro_target":"sle-12-x86_64","id":1919,"enabled":true,"description":"SUSE-Enterprise-Storage-2-Pool for sle-12-x86_64","name":"SUSE-Enterprise-Storage-2-Pool","installer_updates":false},{"description":"SUSE-Enterprise-Storage-2-Debuginfo-Pool for sle-12-x86_64","name":"SUSE-Enterprise-Storage-2-Debuginfo-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/Storage/2/x86_64/product_debug/","autorefresh":false,"distro_target":"sle-12-x86_64","id":1920,"enabled":false},{"autorefresh":false,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Products/Storage/2/x86_64/product_source/","enabled":false,"id":1921,"description":"SUSE-Enterprise-Storage-2-Source-Pool for sle-12-x86_64","name":"SUSE-Enterprise-Storage-2-Source-Pool","installer_updates":false}],"product_class":"SES","eula_url":"https://updates.suse.com/SUSE/Products/Storage/2/x86_64/product.license/","arch":"x86_64","description":"SUSE Enterprise Storage 2 for SUSE Linux Enterprise Server 12, powered by Ceph.","shortname":"SES2","free":false,"extensions":[],"release_stage":"released","identifier":"ses","id":1342,"friendly_version":"2","name":"SUSE Enterprise Storage","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"SUSE Enterprise Storage 2 x86_64","release_type":null,"former_identifier":"ses","recommended":false,"version":"2"},{"cpe":"cpe:/o:suse:sle-module-certifications:12","product_type":"module","predecessor_ids":[],"online_predecessor_ids":[],"repositories":[{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Certifications/12/x86_64/update/","distro_target":"sle-12-x86_64","autorefresh":true,"id":2068,"enabled":true,"description":"SLE-Module-Certifications12-Updates for sle-12-x86_64","installer_updates":false,"name":"SLE-Module-Certifications12-Updates"},{"installer_updates":false,"name":"SLE-Module-Certifications12-Debuginfo-Updates","description":"SLE-Module-Certifications12-Debuginfo-Updates for sle-12-x86_64","enabled":false,"id":2069,"distro_target":"sle-12-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Certifications/12/x86_64/update_debug/"},{"id":2070,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Certifications/12/x86_64/product/","autorefresh":false,"distro_target":"sle-12-x86_64","name":"SLE-Module-Certifications12-Pool","installer_updates":false,"description":"SLE-Module-Certifications12-Pool for sle-12-x86_64"},{"name":"SLE-Module-Certifications12-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-Certifications12-Debuginfo-Pool for sle-12-x86_64","id":2071,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Certifications/12/x86_64/product_debug/","autorefresh":false,"distro_target":"sle-12-x86_64"}],"product_class":"MODULE","eula_url":"","arch":"x86_64","description":"

This module contains packages specific to certifications.

It contains:

Packages used for the Evaluated Configuration of the Common Criteria Certification of SUSE Linux Enterprise Server 12 GA.

Packages used for the FIPS 140-2 certification of various cryptographics modules.

Please refer to our certification pages referenced from https://www.suse.com/security/

","shortname":"Certifications","free":true,"extensions":[],"release_stage":"released","identifier":"sle-module-certifications","id":1368,"friendly_version":"12","name":"Certifications Module","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"Certifications Module 12 x86_64","release_type":null,"former_identifier":"sle-module-certifications","recommended":false,"version":"12"},{"cpe":"cpe:/o:suse:sles-ltss:12","product_type":"extension","online_predecessor_ids":[],"repositories":[{"description":"SLES12-LTSS-Updates for sle-12-x86_64","name":"SLES12-LTSS-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-LTSS/x86_64/update/","enabled":true,"id":2105},{"distro_target":"sle-12-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-LTSS/x86_64/update_debug/","enabled":false,"id":2106,"description":"SLES12-LTSS-Debuginfo-Updates for sle-12-x86_64","installer_updates":false,"name":"SLES12-LTSS-Debuginfo-Updates"}],"product_class":"SLES12-GA-LTSS-X86","predecessor_ids":[],"arch":"x86_64","eula_url":"","shortname":"SLES12 LTSS","description":"SUSE Linux Enterprise offers a comprehensive suite of products built on a single code base. The platform addresses business needs from the smallest thin-client devices to the world's most powerful high-performance computing and mainframe servers. SUSE Linux Enterprise offers common management tools and technology certifications across the platform, and each product is enterprise-class.","free":false,"release_stage":"released","identifier":"SLES-LTSS","id":1379,"extensions":[],"friendly_version":"12","migration_extra":false,"friendly_name":"SUSE Linux Enterprise Server LTSS 12 x86_64","former_identifier":"SUSE_SLES","release_type":null,"name":"SUSE Linux Enterprise Server LTSS","offline_predecessor_ids":[],"version":"12","recommended":false},{"former_identifier":"PackageHub","release_type":null,"friendly_name":"SUSE Package Hub 12 x86_64","migration_extra":false,"offline_predecessor_ids":[],"name":"SUSE Package Hub","version":"12","recommended":false,"release_stage":"released","identifier":"PackageHub","id":1473,"extensions":[],"friendly_version":"12","arch":"x86_64","eula_url":"","free":true,"description":"SUSE Package Hub is a free of charge extension providing access to community maintained packages built to run on SUSE Linux Enterprise Server. Built from the same sources used in the openSUSE distributions, these quality packages provide additional software to what is found in the SUSE Linux Enterprise Server product. Packages from the Package Hub are delivered without L3 support from SUSE. General updates and fixes to the packages in SUSE Package Hub are provided by the openSUSE community based on their discretion though SUSE will monitor and ensure that any known critical security issues will be addressed. Packages in the Package Hub are approved by SUSE for use with SUSE Linux Enterprise Server 12 and to not interfere with the supportability of SUSE Linux Enterprise Server it's modules and extensions. For more information about SUSE Package Hub please visit https://packagehub.suse.com.","shortname":"SUSE-PackageHub-12","product_type":"extension","cpe":"cpe:/o:suse:packagehub:12","repositories":[{"url":"https://updates.suse.com/SUSE/Backports/SLE-12_x86_64/standard/","autorefresh":false,"distro_target":"sle-12-x86_64","id":2327,"enabled":true,"description":"SUSE-PackageHub-12-Standard-Pool for sle-12-x86_64","name":"SUSE-PackageHub-12-Standard-Pool","installer_updates":false},{"description":"SUSE-PackageHub-12-Debuginfo for sle-12-x86_64","name":"SUSE-PackageHub-12-Debuginfo","installer_updates":false,"url":"https://updates.suse.com/SUSE/Backports/SLE-12_x86_64/standard_debug/","autorefresh":true,"distro_target":"sle-12-x86_64","id":2328,"enabled":false},{"id":2329,"enabled":true,"url":"https://updates.suse.com/SUSE/Backports/SLE-12_x86_64/product/","autorefresh":false,"distro_target":"sle-12-x86_64","name":"SUSE-PackageHub-12-Pool","installer_updates":false,"description":"SUSE-PackageHub-12-Pool for sle-12-x86_64"}],"online_predecessor_ids":[],"product_class":"7261","predecessor_ids":[]}],"release_stage":"released","identifier":"SLES_SAP","id":1319},{"arch":null,"eula_url":"","free":true,"description":null,"shortname":null,"product_type":"extension","cpe":null,"online_predecessor_ids":[],"repositories":[{"id":1817,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP4-Pool/sle-11-i586/","distro_target":"sle-11-i586","autorefresh":true,"installer_updates":false,"name":"SLE11-SDK-SP4-Pool","description":"SLE11-SDK-SP4-Pool for sle-11-i586"},{"name":"SLE11-SDK-SP4-Pool","installer_updates":false,"description":"SLE11-SDK-SP4-Pool for sle-11-ia64","id":1818,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP4-Pool/sle-11-ia64/","autorefresh":true,"distro_target":"sle-11-ia64"},{"distro_target":"sle-11-ppc64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP4-Pool/sle-11-ppc64/","enabled":true,"id":1819,"description":"SLE11-SDK-SP4-Pool for sle-11-ppc64","installer_updates":false,"name":"SLE11-SDK-SP4-Pool"},{"installer_updates":false,"name":"SLE11-SDK-SP4-Pool","description":"SLE11-SDK-SP4-Pool for sle-11-s390x","enabled":true,"id":1820,"distro_target":"sle-11-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP4-Pool/sle-11-s390x/"},{"description":"SLE11-SDK-SP4-Pool for sle-11-x86_64","name":"SLE11-SDK-SP4-Pool","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP4-Pool/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64","id":1821,"enabled":true},{"installer_updates":false,"name":"SLE11-SDK-SP4-Updates","description":"SLE11-SDK-SP4-Updates for sle-11-i586","enabled":true,"id":1822,"distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP4-Updates/sle-11-i586/"},{"enabled":true,"id":1823,"autorefresh":true,"distro_target":"sle-11-ia64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP4-Updates/sle-11-ia64/","name":"SLE11-SDK-SP4-Updates","installer_updates":false,"description":"SLE11-SDK-SP4-Updates for sle-11-ia64"},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP4-Updates/sle-11-ppc64/","distro_target":"sle-11-ppc64","autorefresh":true,"id":1824,"enabled":true,"description":"SLE11-SDK-SP4-Updates for sle-11-ppc64","installer_updates":false,"name":"SLE11-SDK-SP4-Updates"},{"description":"SLE11-SDK-SP4-Updates for sle-11-s390x","name":"SLE11-SDK-SP4-Updates","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP4-Updates/sle-11-s390x/","autorefresh":true,"distro_target":"sle-11-s390x","id":1825,"enabled":true},{"description":"SLE11-SDK-SP4-Updates for sle-11-x86_64","name":"SLE11-SDK-SP4-Updates","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP4-Updates/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64","id":1826,"enabled":true}],"product_class":"SLE-SDK","predecessor_ids":[],"former_identifier":"sle-sdk","release_type":null,"friendly_name":"SUSE Linux Enterprise Software Development Kit 11 SP4","migration_extra":false,"offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Software Development Kit","version":"11.4","recommended":false,"identifier":"sle-sdk","release_stage":"released","id":1320,"extensions":[],"friendly_version":"11 SP4"},{"version":"1.0","recommended":false,"migration_extra":false,"friendly_name":"SUSE Enterprise Storage Tools 1.0 x86_64","release_type":null,"former_identifier":"suse-enterprise-storage","name":"SUSE Enterprise Storage Tools","offline_predecessor_ids":[],"friendly_version":"1.0","release_stage":"released","id":1321,"identifier":"suse-enterprise-storage","extensions":[],"description":null,"shortname":null,"free":false,"arch":"x86_64","eula_url":"","product_class":"SES","online_predecessor_ids":[],"repositories":[{"description":"SES-Tools-1.0-Updates for sle-11-x86_64","name":"SES-Tools-1.0-Updates","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SES-Tools-1.0-Updates/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64","id":1840,"enabled":true}],"predecessor_ids":[],"cpe":null,"product_type":"extension"},{"name":"SUSE Linux Enterprise Server","offline_predecessor_ids":[690,769,814,824,1300],"friendly_name":"SUSE Linux Enterprise Server 12 SP1 x86_64","migration_extra":false,"release_type":null,"former_identifier":"SLES","recommended":false,"version":"12.1","extensions":[{"name":"Legacy Module","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"Legacy Module 12 x86_64","former_identifier":"sle-module-legacy","release_type":null,"recommended":false,"version":"12","extensions":[],"release_stage":"released","id":1150,"identifier":"sle-module-legacy","friendly_version":"12","eula_url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/12/x86_64/product.license/","arch":"x86_64","shortname":"Legacy-Module","description":"

The Legacy Module helps you migrating applications from SUSE Linux Enterprise 10 and 11 and other systems to SUSE Linux Enterprise 12, by providing packages which are discontinued on SUSE Linux Enterprise Server, such as: sendmail, syslog-ng, IBM Java6, and a number of libraries (for example openssl-0.9.8).

Access to the Legacy Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself. Packages in the this module are usually supported for at most three years. Support for Sendmail and IBM Java 6 will end in September 2017 the latest.

","free":true,"cpe":"cpe:/o:suse:sle-module-legacy:12","product_type":"module","predecessor_ids":[],"online_predecessor_ids":[],"repositories":[{"installer_updates":false,"name":"SLE-Module-Legacy12-Updates","description":"SLE-Module-Legacy12-Updates for sle-12-x86_64","enabled":true,"id":1676,"distro_target":"sle-12-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/12/x86_64/update/"},{"enabled":false,"id":1677,"distro_target":"sle-12-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/12/x86_64/update_debug/","installer_updates":false,"name":"SLE-Module-Legacy12-Debuginfo-Updates","description":"SLE-Module-Legacy12-Debuginfo-Updates for sle-12-x86_64"},{"installer_updates":false,"name":"SLE-Module-Legacy12-Pool","description":"SLE-Module-Legacy12-Pool for sle-12-x86_64","enabled":true,"id":1678,"distro_target":"sle-12-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/12/x86_64/product/"},{"id":1679,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/12/x86_64/product_debug/","distro_target":"sle-12-x86_64","autorefresh":false,"installer_updates":false,"name":"SLE-Module-Legacy12-Debuginfo-Pool","description":"SLE-Module-Legacy12-Debuginfo-Pool for sle-12-x86_64"},{"name":"SLE-Module-Legacy12-Source-Pool","installer_updates":false,"description":"SLE-Module-Legacy12-Source-Pool for sle-12-x86_64","id":1989,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/12/x86_64/product_source/","autorefresh":false,"distro_target":"sle-12-x86_64"}],"product_class":"MODULE"},{"free":true,"shortname":"Web-and-Scripting-Module","description":"

The SUSE Linux Enterprise Web and Scripting Module delivers a comprehensive suite of scripting languages, frameworks, and related tools helping developers and systems administrators accelerate the creation of stable, modern web applications, using dynamic languages, such as PHP, Ruby on Rails, and Python.

Access to the Web and Scripting Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself: Package versions in the this module are usually supported for at most three years. We are planning to release more recent versions on a schedule of approximately 18 month; the exact dates may differ per package.

","arch":"x86_64","eula_url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/12/x86_64/product.license/","online_predecessor_ids":[],"product_class":"MODULE","repositories":[{"autorefresh":true,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/12/x86_64/update/","enabled":true,"id":1688,"description":"SLE-Module-Web-Scripting12-Updates for sle-12-x86_64","name":"SLE-Module-Web-Scripting12-Updates","installer_updates":false},{"description":"SLE-Module-Web-Scripting12-Debuginfo-Updates for sle-12-x86_64","name":"SLE-Module-Web-Scripting12-Debuginfo-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/12/x86_64/update_debug/","enabled":false,"id":1689},{"autorefresh":false,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/12/x86_64/product/","enabled":true,"id":1690,"description":"SLE-Module-Web-Scripting12-Pool for sle-12-x86_64","name":"SLE-Module-Web-Scripting12-Pool","installer_updates":false},{"autorefresh":false,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/12/x86_64/product_debug/","enabled":false,"id":1691,"description":"SLE-Module-Web-Scripting12-Debuginfo-Pool for sle-12-x86_64","name":"SLE-Module-Web-Scripting12-Debuginfo-Pool","installer_updates":false},{"id":1992,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/12/x86_64/product_source/","distro_target":"sle-12-x86_64","autorefresh":false,"installer_updates":false,"name":"SLE-Module-Web-Scripting12-Source-Pool","description":"SLE-Module-Web-Scripting12-Source-Pool for sle-12-x86_64"}],"predecessor_ids":[],"product_type":"module","cpe":"cpe:/o:suse:sle-module-web-scripting:12","version":"12","recommended":false,"former_identifier":"sle-module-web-scripting","release_type":null,"migration_extra":false,"friendly_name":"Web and Scripting Module 12 x86_64","offline_predecessor_ids":[],"name":"Web and Scripting Module","friendly_version":"12","id":1153,"release_stage":"released","identifier":"sle-module-web-scripting","extensions":[]},{"version":"12","recommended":false,"migration_extra":false,"friendly_name":"Advanced Systems Management Module 12 x86_64","former_identifier":"sle-module-adv-systems-management","release_type":null,"name":"Advanced Systems Management Module","offline_predecessor_ids":[],"friendly_version":"12","release_stage":"released","id":1212,"identifier":"sle-module-adv-systems-management","extensions":[],"description":"

This Module contains current versions of the popular configuration management frameworks Puppet and CFEngine as well as the new systems management toolbox called machinery.

The machinery tool will be frequently updated and is SUSE's upcoming systems management toolbox for inspecting and validating systems remotely, storing their system description and creating new systems to deploy them in datacenters and clouds.

","shortname":"Adv-Sys-Mgmt-Module","free":true,"arch":"x86_64","eula_url":"","online_predecessor_ids":[],"repositories":[{"enabled":true,"id":1704,"autorefresh":true,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Adv-Systems-Management/12/x86_64/update/","name":"SLE-Module-Adv-Systems-Management12-Updates","installer_updates":false,"description":"SLE-Module-Adv-Systems-Management12-Updates for sle-12-x86_64"},{"name":"SLE-Module-Adv-Systems-Management12-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-Adv-Systems-Management12-Debuginfo-Updates for sle-12-x86_64","id":1705,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Adv-Systems-Management/12/x86_64/update_debug/","autorefresh":true,"distro_target":"sle-12-x86_64"},{"distro_target":"sle-12-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Adv-Systems-Management/12/x86_64/product/","enabled":true,"id":1706,"description":"SLE-Module-Adv-Systems-Management12-Pool for sle-12-x86_64","installer_updates":false,"name":"SLE-Module-Adv-Systems-Management12-Pool"},{"name":"SLE-Module-Adv-Systems-Management12-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-Adv-Systems-Management12-Debuginfo-Pool for sle-12-x86_64","id":1707,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Adv-Systems-Management/12/x86_64/product_debug/","autorefresh":false,"distro_target":"sle-12-x86_64"},{"id":1998,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Adv-Systems-Management/12/x86_64/product_source/","distro_target":"sle-12-x86_64","autorefresh":false,"installer_updates":false,"name":"SLE-Module-Adv-Systems-Management12-Source-Pool","description":"SLE-Module-Adv-Systems-Management12-Source-Pool for sle-12-x86_64"}],"product_class":"MODULE","predecessor_ids":[],"cpe":"cpe:/o:suse:sle-module-adv-systems-management:12","product_type":"module"},{"predecessor_ids":[],"online_predecessor_ids":[],"product_class":"MODULE","repositories":[{"installer_updates":false,"name":"SLE-Module-Public-Cloud12-Updates","description":"SLE-Module-Public-Cloud12-Updates for sle-12-x86_64","id":1700,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/12/x86_64/update/","distro_target":"sle-12-x86_64","autorefresh":true},{"id":1701,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/12/x86_64/update_debug/","autorefresh":true,"distro_target":"sle-12-x86_64","name":"SLE-Module-Public-Cloud12-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-Public-Cloud12-Debuginfo-Updates for sle-12-x86_64"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/12/x86_64/product/","autorefresh":false,"distro_target":"sle-12-x86_64","id":1702,"enabled":true,"description":"SLE-Module-Public-Cloud12-Pool for sle-12-x86_64","name":"SLE-Module-Public-Cloud12-Pool","installer_updates":false},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/12/x86_64/product_debug/","distro_target":"sle-12-x86_64","autorefresh":false,"id":1703,"enabled":false,"description":"SLE-Module-Public-Cloud12-Debuginfo-Pool for sle-12-x86_64","installer_updates":false,"name":"SLE-Module-Public-Cloud12-Debuginfo-Pool"},{"description":"SLE-Module-Public-Cloud12-Source-Pool for sle-12-x86_64","name":"SLE-Module-Public-Cloud12-Source-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/12/x86_64/product_source/","autorefresh":false,"distro_target":"sle-12-x86_64","id":1995,"enabled":false}],"product_type":"module","cpe":"cpe:/o:suse:sle-module-public-cloud:12","free":true,"description":"

The Public Cloud Module is a collection of tools that enables you to create and manage cloud images from the commandline on SUSE Linux Enterprise Server. When building your own images with KIWI or SUSE Studio, initialization code specific to the target cloud is included in that image.

Access to the Public Cloud Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself; please check the Release Notes for further details.

","shortname":"Public-Cloud-Module","eula_url":"","arch":"x86_64","friendly_version":"12","extensions":[],"release_stage":"released","id":1220,"identifier":"sle-module-public-cloud","recommended":false,"version":"12","offline_predecessor_ids":[],"name":"Public Cloud Module","release_type":null,"former_identifier":"sle-module-public-cloud","migration_extra":false,"friendly_name":"Public Cloud Module 12 x86_64"},{"cpe":"cpe:/o:suse:sle-live-patching:12","product_type":"extension","predecessor_ids":[],"online_predecessor_ids":[],"repositories":[{"description":"SLE-Live-Patching12-Updates for sle-12-x86_64","installer_updates":false,"name":"SLE-Live-Patching12-Updates","distro_target":"sle-12-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Live-Patching/12/x86_64/update/","enabled":true,"id":1741},{"enabled":false,"id":1742,"distro_target":"sle-12-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Live-Patching/12/x86_64/update_debug/","installer_updates":false,"name":"SLE-Live-Patching12-Debuginfo-Updates","description":"SLE-Live-Patching12-Debuginfo-Updates for sle-12-x86_64"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Live-Patching/12/x86_64/product/","distro_target":"sle-12-x86_64","autorefresh":false,"id":1743,"enabled":true,"description":"SLE-Live-Patching12-Pool for sle-12-x86_64","installer_updates":false,"name":"SLE-Live-Patching12-Pool"},{"description":"SLE-Live-Patching12-Debuginfo-Pool for sle-12-x86_64","installer_updates":false,"name":"SLE-Live-Patching12-Debuginfo-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Live-Patching/12/x86_64/product_debug/","distro_target":"sle-12-x86_64","autorefresh":false,"id":1744,"enabled":false},{"url":"https://updates.suse.com/SUSE/Products/SLE-Live-Patching/12/x86_64/product_source/","autorefresh":false,"distro_target":"sle-12-x86_64","id":1986,"enabled":false,"description":"SLE-Live-Patching12-Source-Pool for sle-12-x86_64","name":"SLE-Live-Patching12-Source-Pool","installer_updates":false}],"product_class":"SLE-LP","eula_url":"https://updates.suse.com/SUSE/Products/SLE-Live-Patching/12/x86_64/product.license/","arch":"x86_64","shortname":"Live-Patching","description":"

SUSE Linux Enterprise Live Patching provides packages to update critical kernel modules live in SUSE Linux Enterprise. With SUSE Linux Enterprise Live Patching, you can perform critical kernel patching without shutting down your system, reducing the need for planned downtime and increasing service availability.

","free":false,"extensions":[],"release_stage":"released","identifier":"sle-live-patching","id":1253,"friendly_version":"12","name":"SUSE Linux Enterprise Live Patching","offline_predecessor_ids":[],"friendly_name":"SUSE Linux Enterprise Live Patching 12 x86_64","migration_extra":false,"release_type":null,"former_identifier":"sle-live-patching","recommended":false,"version":"12"},{"online_predecessor_ids":[1223],"product_class":"SLE-SDK","repositories":[{"url":"https://updates.suse.com/SUSE/Updates/SLE-SDK/12-SP1/x86_64/update/","autorefresh":true,"distro_target":"sle-12-x86_64","id":1850,"enabled":true,"description":"SLE-SDK12-SP1-Updates for sle-12-x86_64","name":"SLE-SDK12-SP1-Updates","installer_updates":false},{"distro_target":"sle-12-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-SDK/12-SP1/x86_64/update_debug/","enabled":false,"id":1851,"description":"SLE-SDK12-SP1-Debuginfo-Updates for sle-12-x86_64","installer_updates":false,"name":"SLE-SDK12-SP1-Debuginfo-Updates"},{"autorefresh":false,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-SDK/12-SP1/x86_64/product/","enabled":true,"id":1852,"description":"SLE-SDK12-SP1-Pool for sle-12-x86_64","name":"SLE-SDK12-SP1-Pool","installer_updates":false},{"installer_updates":false,"name":"SLE-SDK12-SP1-Debuginfo-Pool","description":"SLE-SDK12-SP1-Debuginfo-Pool for sle-12-x86_64","enabled":false,"id":1853,"distro_target":"sle-12-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-SDK/12-SP1/x86_64/product_debug/"},{"description":"SLE-SDK12-SP1-Source-Pool for sle-12-x86_64","installer_updates":false,"name":"SLE-SDK12-SP1-Source-Pool","distro_target":"sle-12-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-SDK/12-SP1/x86_64/product_source/","enabled":false,"id":1907}],"predecessor_ids":[1223],"cpe":"cpe:/o:suse:sle-sdk:12:sp1","product_type":"extension","shortname":"SDK12-SP1","description":"

SUSE Linux Enterprise Software Development Kit is the Software Development Kit for the family of SUSE Linux Enterprise products. It is a free of charge extension for partners and customers working with SUSE Linux Enterprise Server and Desktop and derived products.

Packages on the SDK are delivered without L3 support; maintenance updates will be done for critical security and critical non-security issues, and where needed to remain in sync with packages delivered in the SUSE Linux Enterprise Server and Desktop products.

Packages to rebuild SUSE Linux Enterprise Server are not part of the SUSE Linux Enterprise Software Development Kit.

","free":true,"arch":"x86_64","eula_url":"https://updates.suse.com/SUSE/Products/SLE-SDK/12-SP1/x86_64/product.license/","friendly_version":"12 SP1","identifier":"sle-sdk","release_stage":"released","id":1323,"extensions":[],"version":"12.1","recommended":false,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Software Development Kit 12 SP1 x86_64","release_type":null,"former_identifier":"sle-sdk","name":"SUSE Linux Enterprise Software Development Kit","offline_predecessor_ids":[]},{"arch":"x86_64","eula_url":"https://updates.suse.com/SUSE/Products/SLE-HA/12-SP1/x86_64/product.license/","description":"SUSE Linux Enterprise High Availability Extension.","shortname":"SLEHA12-SP1","free":false,"cpe":"cpe:/o:suse:sle-ha:12:sp1","product_type":"extension","online_predecessor_ids":[1245],"product_class":"SLE-HAE-X86","repositories":[{"name":"SLE-HA12-SP1-Updates","installer_updates":false,"description":"SLE-HA12-SP1-Updates for sle-12-x86_64","enabled":true,"id":1854,"autorefresh":true,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-HA/12-SP1/x86_64/update/"},{"installer_updates":false,"name":"SLE-HA12-SP1-Debuginfo-Updates","description":"SLE-HA12-SP1-Debuginfo-Updates for sle-12-x86_64","id":1855,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-HA/12-SP1/x86_64/update_debug/","distro_target":"sle-12-x86_64","autorefresh":true},{"url":"https://updates.suse.com/SUSE/Products/SLE-HA/12-SP1/x86_64/product/","autorefresh":false,"distro_target":"sle-12-x86_64","id":1856,"enabled":true,"description":"SLE-HA12-SP1-Pool for sle-12-x86_64","name":"SLE-HA12-SP1-Pool","installer_updates":false},{"installer_updates":false,"name":"SLE-HA12-SP1-Debuginfo-Pool","description":"SLE-HA12-SP1-Debuginfo-Pool for sle-12-x86_64","enabled":false,"id":1857,"distro_target":"sle-12-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-HA/12-SP1/x86_64/product_debug/"},{"id":1914,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-HA/12-SP1/x86_64/product_source/","autorefresh":false,"distro_target":"sle-12-x86_64","name":"SLE-HA12-SP1-Source-Pool","installer_updates":false,"description":"SLE-HA12-SP1-Source-Pool for sle-12-x86_64"}],"predecessor_ids":[1245],"migration_extra":false,"friendly_name":"SUSE Linux Enterprise High Availability Extension 12 SP1 x86_64","former_identifier":"sle-hae","release_type":null,"name":"SUSE Linux Enterprise High Availability Extension","offline_predecessor_ids":[958,961,967,971,1256],"version":"12.1","recommended":false,"release_stage":"released","id":1324,"identifier":"sle-ha","extensions":[{"shortname":"SLEHAGEO12-SP1","description":"SUSE Linux Enterprise High Availability Geographical Cluster Extension","free":false,"arch":"x86_64","eula_url":"https://updates.suse.com/SUSE/Products/SLE-HA-GEO/12-SP1/x86_64/product.license/","online_predecessor_ids":[1157],"product_class":"SLE-HAE-GEO","repositories":[{"description":"SLE-HA-GEO12-SP1-Updates for sle-12-x86_64","installer_updates":false,"name":"SLE-HA-GEO12-SP1-Updates","url":"https://updates.suse.com/SUSE/Updates/SLE-HA-GEO/12-SP1/x86_64/update/","distro_target":"sle-12-x86_64","autorefresh":true,"id":1887,"enabled":true},{"description":"SLE-HA-GEO12-SP1-Debuginfo-Updates for sle-12-x86_64","installer_updates":false,"name":"SLE-HA-GEO12-SP1-Debuginfo-Updates","url":"https://updates.suse.com/SUSE/Updates/SLE-HA-GEO/12-SP1/x86_64/update_debug/","distro_target":"sle-12-x86_64","autorefresh":true,"id":1888,"enabled":false},{"url":"https://updates.suse.com/SUSE/Products/SLE-HA-GEO/12-SP1/x86_64/product/","autorefresh":false,"distro_target":"sle-12-x86_64","id":1889,"enabled":true,"description":"SLE-HA-GEO12-SP1-Pool for sle-12-x86_64","name":"SLE-HA-GEO12-SP1-Pool","installer_updates":false},{"autorefresh":false,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-HA-GEO/12-SP1/x86_64/product_debug/","enabled":false,"id":1890,"description":"SLE-HA-GEO12-SP1-Debuginfo-Pool for sle-12-x86_64","name":"SLE-HA-GEO12-SP1-Debuginfo-Pool","installer_updates":false},{"distro_target":"sle-12-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-HA-GEO/12-SP1/x86_64/product_source/","enabled":false,"id":1915,"description":"SLE-HA-GEO12-SP1-Source-Pool for sle-12-x86_64","installer_updates":false,"name":"SLE-HA-GEO12-SP1-Source-Pool"}],"predecessor_ids":[1157],"cpe":"cpe:/o:suse:sle-ha-geo:12:sp1","product_type":"extension","version":"12.1","recommended":false,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise High Availability GEO Extension 12 SP1 x86_64","release_type":null,"former_identifier":"sle-hae-geo","name":"SUSE Linux Enterprise High Availability GEO Extension","offline_predecessor_ids":[1101,1107,1286],"friendly_version":"12 SP1","release_stage":"released","id":1337,"identifier":"sle-ha-geo","extensions":[]}],"friendly_version":"12 SP1"},{"eula_url":"","arch":"x86_64","free":true,"shortname":"Containers-Module","description":"

This Module contains several packages revolving around containers and related tools.

","product_type":"module","cpe":"cpe:/o:suse:sle-module-containers:12","predecessor_ids":[],"product_class":"MODULE","online_predecessor_ids":[],"repositories":[{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/12/x86_64/update/","distro_target":"sle-12-x86_64","autorefresh":true,"id":1864,"enabled":true,"description":"SLE-Module-Containers12-Updates for sle-12-x86_64","installer_updates":false,"name":"SLE-Module-Containers12-Updates"},{"name":"SLE-Module-Containers12-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-Containers12-Debuginfo-Updates for sle-12-x86_64","enabled":false,"id":1865,"autorefresh":true,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/12/x86_64/update_debug/"},{"description":"SLE-Module-Containers12-Pool for sle-12-x86_64","installer_updates":false,"name":"SLE-Module-Containers12-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/12/x86_64/product/","distro_target":"sle-12-x86_64","autorefresh":false,"id":1866,"enabled":true},{"autorefresh":false,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/12/x86_64/product_debug/","enabled":false,"id":1867,"description":"SLE-Module-Containers12-Debuginfo-Pool for sle-12-x86_64","name":"SLE-Module-Containers12-Debuginfo-Pool","installer_updates":false},{"id":1957,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/12/x86_64/product_source/","autorefresh":false,"distro_target":"sle-12-x86_64","name":"SLE-Module-Containers12-Source-Pool","installer_updates":false,"description":"SLE-Module-Containers12-Source-Pool for sle-12-x86_64"}],"offline_predecessor_ids":[],"name":"Containers Module","release_type":null,"former_identifier":"sle-module-containers","friendly_name":"Containers Module 12 x86_64","migration_extra":false,"recommended":false,"version":"12","extensions":[],"release_stage":"released","id":1332,"identifier":"sle-module-containers","friendly_version":"12"},{"product_class":"SLE-WE","online_predecessor_ids":[1222],"repositories":[{"installer_updates":false,"name":"SLE-WE12-SP1-Updates","description":"SLE-WE12-SP1-Updates for sle-12-x86_64","id":1891,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-WE/12-SP1/x86_64/update/","distro_target":"sle-12-x86_64","autorefresh":true},{"url":"https://updates.suse.com/SUSE/Updates/SLE-WE/12-SP1/x86_64/update_debug/","distro_target":"sle-12-x86_64","autorefresh":true,"id":1892,"enabled":false,"description":"SLE-WE12-SP1-Debuginfo-Updates for sle-12-x86_64","installer_updates":false,"name":"SLE-WE12-SP1-Debuginfo-Updates"},{"installer_updates":false,"name":"SLE-WE12-SP1-Pool","description":"SLE-WE12-SP1-Pool for sle-12-x86_64","enabled":true,"id":1893,"distro_target":"sle-12-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-WE/12-SP1/x86_64/product/"},{"description":"SLE-WE12-SP1-Debuginfo-Pool for sle-12-x86_64","name":"SLE-WE12-SP1-Debuginfo-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-WE/12-SP1/x86_64/product_debug/","enabled":false,"id":1894},{"id":1911,"enabled":true,"url":"http://download.nvidia.com/novell/sle12sp1/","distro_target":null,"autorefresh":true,"installer_updates":false,"name":"SLE-12-SP1-GA-Desktop-nVidia-Driver","description":"SLE-12-SP1-GA-Desktop-nVidia-Driver"},{"description":"SLE-WE12-SP1-Source-Pool for sle-12-x86_64","installer_updates":false,"name":"SLE-WE12-SP1-Source-Pool","distro_target":"sle-12-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-WE/12-SP1/x86_64/product_source/","enabled":false,"id":1916}],"predecessor_ids":[1222],"cpe":"cpe:/o:suse:sle-we:12:sp1","product_type":"extension","description":"SUSE Linux Enterprise Workstation Extension extends the functionality of SUSE Linux Enterprise Server with packages of SUSE Linux Enterprise Desktop, like additional desktop applications (office suite, email client, graphical editor ...) and libraries. It allows to combine both products to create a full featured Workstation.","shortname":"SLEWE12-SP1","free":false,"arch":"x86_64","eula_url":"https://updates.suse.com/SUSE/Products/SLE-WE/12-SP1/x86_64/product.license/","friendly_version":"12 SP1","release_stage":"released","id":1338,"identifier":"sle-we","extensions":[],"version":"12.1","recommended":false,"friendly_name":"SUSE Linux Enterprise Workstation Extension 12 SP1 x86_64","migration_extra":false,"former_identifier":"sle-we","release_type":null,"name":"SUSE Linux Enterprise Workstation Extension","offline_predecessor_ids":[]},{"arch":"x86_64","eula_url":"","shortname":"Toolchain-Module","description":"Via this Module you will have access to a more recent GCC and Toolchain in addition to the default compiler of SUSE Linux Enterprise. Access to the Toolchain Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself. Please check the Release Notes for further details.","free":true,"cpe":"cpe:/o:suse:sle-module-toolchain:12","product_type":"module","repositories":[{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Toolchain/12/x86_64/update/","autorefresh":true,"distro_target":"sle-12-x86_64","id":1903,"enabled":true,"description":"SLE-Module-Toolchain12-Updates for sle-12-x86_64","name":"SLE-Module-Toolchain12-Updates","installer_updates":false},{"name":"SLE-Module-Toolchain12-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-Toolchain12-Debuginfo-Updates for sle-12-x86_64","id":1904,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Toolchain/12/x86_64/update_debug/","autorefresh":true,"distro_target":"sle-12-x86_64"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Toolchain/12/x86_64/product/","autorefresh":false,"distro_target":"sle-12-x86_64","id":1905,"enabled":true,"description":"SLE-Module-Toolchain12-Pool for sle-12-x86_64","name":"SLE-Module-Toolchain12-Pool","installer_updates":false},{"name":"SLE-Module-Toolchain12-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-Toolchain12-Debuginfo-Pool for sle-12-x86_64","id":1906,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Toolchain/12/x86_64/product_debug/","autorefresh":false,"distro_target":"sle-12-x86_64"}],"online_predecessor_ids":[],"product_class":"MODULE","predecessor_ids":[],"migration_extra":false,"friendly_name":"Toolchain Module 12 x86_64","former_identifier":"sle-module-toolchain","release_type":null,"name":"Toolchain Module","offline_predecessor_ids":[],"version":"12","recommended":false,"identifier":"sle-module-toolchain","release_stage":"released","id":1341,"extensions":[],"friendly_version":"12"},{"shortname":"SOC6","description":"SUSE OpenStack Cloud 6","free":false,"arch":"x86_64","eula_url":"https://updates.suse.com/SUSE/Products/OpenStack-Cloud/6/x86_64/product.license/","repositories":[{"id":1941,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/OpenStack-Cloud/6/x86_64/update/","distro_target":"sle-12-x86_64","autorefresh":true,"installer_updates":false,"name":"SUSE-OpenStack-Cloud-6-Updates","description":"SUSE-OpenStack-Cloud-6-Updates for sle-12-x86_64"},{"description":"SUSE-OpenStack-Cloud-6-Debuginfo-Updates for sle-12-x86_64","installer_updates":false,"name":"SUSE-OpenStack-Cloud-6-Debuginfo-Updates","distro_target":"sle-12-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/OpenStack-Cloud/6/x86_64/update_debug/","enabled":false,"id":1942},{"installer_updates":false,"name":"SUSE-OpenStack-Cloud-6-Pool","description":"SUSE-OpenStack-Cloud-6-Pool for sle-12-x86_64","enabled":true,"id":1943,"distro_target":"sle-12-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/OpenStack-Cloud/6/x86_64/product/"},{"installer_updates":false,"name":"SUSE-OpenStack-Cloud-6-Debuginfo-Pool","description":"SUSE-OpenStack-Cloud-6-Debuginfo-Pool for sle-12-x86_64","id":1944,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/OpenStack-Cloud/6/x86_64/product_debug/","distro_target":"sle-12-x86_64","autorefresh":false},{"enabled":false,"id":1982,"autorefresh":false,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Products/OpenStack-Cloud/6/x86_64/product_source/","name":"SUSE-OpenStack-Cloud-6-Source-Pool","installer_updates":false,"description":"SUSE-OpenStack-Cloud-6-Source-Pool for sle-12-x86_64"}],"online_predecessor_ids":[],"product_class":"SUSE_CLOUD","predecessor_ids":[],"cpe":"cpe:/o:suse:suse-openstack-cloud:6","product_type":"extension","version":"6","recommended":false,"friendly_name":"SUSE OpenStack Cloud 6 x86_64","migration_extra":false,"release_type":null,"former_identifier":"suse-openstack-cloud","name":"SUSE OpenStack Cloud","offline_predecessor_ids":[1090,1091,1114,1221,1288],"friendly_version":"6","id":1347,"release_stage":"released","identifier":"suse-openstack-cloud","extensions":[{"friendly_version":"6","extensions":[],"identifier":"suse-openstack-cloud-continuous-delivery","release_stage":"released","id":1538,"recommended":false,"version":"6","name":"SUSE OpenStack Cloud Continuous Delivery","offline_predecessor_ids":[],"friendly_name":"SUSE OpenStack Cloud Continuous Delivery 6 x86_64","migration_extra":false,"former_identifier":"suse-openstack-cloud-continuous-delivery","release_type":null,"predecessor_ids":[],"online_predecessor_ids":[],"product_class":"SUSE_CLOUD_CD","repositories":[{"id":2471,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/OpenStack-Cloud/6-Continuous/x86_64/update/","autorefresh":true,"distro_target":"sle-12-x86_64","name":"SUSE-OpenStack-Cloud-Continuous-Delivery-6-Updates","installer_updates":false,"description":"SUSE-OpenStack-Cloud-Continuous-Delivery-6-Updates for sle-12-x86_64"},{"url":"https://updates.suse.com/SUSE/Updates/OpenStack-Cloud/6-Continuous/x86_64/update_debug/","distro_target":"sle-12-x86_64","autorefresh":true,"id":2472,"enabled":false,"description":"SUSE-OpenStack-Cloud-Continuous-Delivery-6-Debuginfo-Updates for sle-12-x86_64","installer_updates":false,"name":"SUSE-OpenStack-Cloud-Continuous-Delivery-6-Debuginfo-Updates"},{"name":"SUSE-OpenStack-Cloud-Continuous-Delivery-6-Pool","installer_updates":false,"description":"SUSE-OpenStack-Cloud-Continuous-Delivery-6-Pool for sle-12-x86_64","id":2473,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/OpenStack-Cloud/6-Continuous/x86_64/product/","autorefresh":false,"distro_target":"sle-12-x86_64"},{"url":"https://updates.suse.com/SUSE/Products/OpenStack-Cloud/6-Continuous/x86_64/product_debug/","autorefresh":false,"distro_target":"sle-12-x86_64","id":2474,"enabled":false,"description":"SUSE-OpenStack-Cloud-Continuous-Delivery-6-Debuginfo-Pool for sle-12-x86_64","name":"SUSE-OpenStack-Cloud-Continuous-Delivery-6-Debuginfo-Pool","installer_updates":false},{"name":"SUSE-OpenStack-Cloud-Continuous-Delivery-6-Source-Pool","installer_updates":false,"description":"SUSE-OpenStack-Cloud-Continuous-Delivery-6-Source-Pool for sle-12-x86_64","enabled":false,"id":2475,"autorefresh":false,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Products/OpenStack-Cloud/6-Continuous/x86_64/product_source/"}],"cpe":"cpe:/o:suse:suse-openstack-cloud-continuous-delivery:6","product_type":"extension","description":"SUSE OpenStack Cloud Continuous Delivery 6","shortname":"SOCCD6","free":false,"eula_url":"https://updates.suse.com/SUSE/Products/OpenStack-Cloud/6-Continuous/x86_64/product.license/","arch":"x86_64"},{"arch":"x86_64","eula_url":"","free":false,"shortname":"SOC6 LTSS","description":"SUSE OpenStack Cloud 6 LTSS","product_type":"extension","cpe":"cpe:/o:suse:suse-openstack-cloud-ltss:6","online_predecessor_ids":[],"repositories":[{"installer_updates":false,"name":"SUSE-OpenStack-Cloud-6-LTSS-Updates","description":"SUSE-OpenStack-Cloud-6-LTSS-Updates for sle-12-x86_64","id":3137,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/OpenStack-Cloud/6-LTSS/x86_64/update/","distro_target":"sle-12-x86_64","autorefresh":true},{"distro_target":"sle-12-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/OpenStack-Cloud/6-LTSS/x86_64/update_debug/","enabled":false,"id":3138,"description":"SUSE-OpenStack-Cloud-6-LTSS-Debuginfo-Updates for sle-12-x86_64","installer_updates":false,"name":"SUSE-OpenStack-Cloud-6-LTSS-Debuginfo-Updates"}],"product_class":"SUSE-OPENSTACK-CLOUD-LTSS-X86","predecessor_ids":[],"release_type":null,"former_identifier":"suse-openstack-cloud-ltss","migration_extra":false,"friendly_name":"SUSE OpenStack Cloud LTSS 6 x86_64","offline_predecessor_ids":[],"name":"SUSE OpenStack Cloud LTSS","version":"6","recommended":false,"release_stage":"released","identifier":"suse-openstack-cloud-ltss","id":1753,"extensions":[],"friendly_version":"6"}]},{"predecessor_ids":[],"product_class":"SMS-X86","online_predecessor_ids":[],"repositories":[{"description":"SUSE-Manager-Server-3.0-Updates for sle-12-x86_64","name":"SUSE-Manager-Server-3.0-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Updates/SUSE-Manager-Server/3.0/x86_64/update/","enabled":true,"id":1949},{"description":"SUSE-Manager-Server-3.0-Debuginfo-Updates for sle-12-x86_64","installer_updates":false,"name":"SUSE-Manager-Server-3.0-Debuginfo-Updates","distro_target":"sle-12-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SUSE-Manager-Server/3.0/x86_64/update_debug/","enabled":false,"id":1950},{"name":"SUSE-Manager-Server-3.0-Pool","installer_updates":false,"description":"SUSE-Manager-Server-3.0-Pool for sle-12-x86_64","enabled":true,"id":1951,"autorefresh":false,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Products/SUSE-Manager-Server/3.0/x86_64/product/"},{"installer_updates":false,"name":"SUSE-Manager-Server-3.0-Debuginfo-Pool","description":"SUSE-Manager-Server-3.0-Debuginfo-Pool for sle-12-x86_64","enabled":false,"id":1952,"distro_target":"sle-12-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SUSE-Manager-Server/3.0/x86_64/product_debug/"},{"enabled":false,"id":2001,"distro_target":"sle-12-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SUSE-Manager-Server/3.0/x86_64/product_source/","installer_updates":false,"name":"SUSE-Manager-Server-3.0-Source-Pool","description":"SUSE-Manager-Server-3.0-Source-Pool for sle-12-x86_64"}],"product_type":"extension","cpe":"cpe:/o:suse:suse-manager-server:3.0","free":false,"shortname":"SUSE Manager Server","description":"SUSE Manager lets you efficiently manage physical, virtual, and cloud-based Linux systems. It provides automated and cost-effective configuration and software management, asset management, and system provisioning.","eula_url":"https://updates.suse.com/SUSE/Products/SUSE-Manager-Server/3.0/x86_64/product.license/","arch":"x86_64","friendly_version":"3.0","extensions":[],"id":1349,"release_stage":"released","identifier":"SUSE-Manager-Server","recommended":false,"version":"3.0","offline_predecessor_ids":[],"name":"SUSE Manager Server","release_type":null,"former_identifier":"SUSE-Manager-Server","friendly_name":"SUSE Manager Server 3.0 x86_64","migration_extra":false},{"cpe":"cpe:/o:suse:suse-linux-enterprise-rt:12:sp1","product_type":"extension","predecessor_ids":[],"online_predecessor_ids":[],"repositories":[{"description":"SLE-RT12-SP1-Updates for sle-12-x86_64","installer_updates":false,"name":"SLE-RT12-SP1-Updates","url":"https://updates.suse.com/SUSE/Updates/SLE-RT/12-SP1/x86_64/update/","distro_target":"sle-12-x86_64","autorefresh":true,"id":1953,"enabled":true},{"name":"SLE-RT12-SP1-Debuginfo-Updates","installer_updates":false,"description":"SLE-RT12-SP1-Debuginfo-Updates for sle-12-x86_64","id":1954,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-RT/12-SP1/x86_64/update_debug/","autorefresh":true,"distro_target":"sle-12-x86_64"},{"url":"https://updates.suse.com/SUSE/Products/SLE-RT/12-SP1/x86_64/product/","autorefresh":false,"distro_target":"sle-12-x86_64","id":1955,"enabled":true,"description":"SLE-RT12-SP1-Pool for sle-12-x86_64","name":"SLE-RT12-SP1-Pool","installer_updates":false},{"id":1956,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-RT/12-SP1/x86_64/product_debug/","distro_target":"sle-12-x86_64","autorefresh":false,"installer_updates":false,"name":"SLE-RT12-SP1-Debuginfo-Pool","description":"SLE-RT12-SP1-Debuginfo-Pool for sle-12-x86_64"}],"product_class":"13319","eula_url":"https://updates.suse.com/SUSE/Products/SLE-RT/12-SP1/x86_64/product.license/","arch":"x86_64","shortname":"SLERT12 SP1","description":"SUSE Linux Enterprise Real Time Extension 12 SP1.","free":false,"extensions":[],"release_stage":"released","identifier":"SUSE-Linux-Enterprise-RT","id":1350,"friendly_version":"12 SP1","name":"SUSE Linux Enterprise Real Time Extension","offline_predecessor_ids":[1296],"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Real Time Extension 12 SP1 x86_64","former_identifier":"SUSE-Linux-Enterprise-RT","release_type":null,"recommended":false,"version":"12.1"},{"version":"2.1","recommended":false,"friendly_name":"SUSE Enterprise Storage 2.1 x86_64","migration_extra":false,"former_identifier":"ses","release_type":null,"name":"SUSE Enterprise Storage","offline_predecessor_ids":[],"friendly_version":"2.1","release_stage":"released","id":1351,"identifier":"ses","extensions":[],"shortname":"SES2.1","description":"SUSE Enterprise Storage 2.1 for SUSE Linux Enterprise Server 12-SP1, powered by Ceph.","free":false,"arch":"x86_64","eula_url":"https://updates.suse.com/SUSE/Products/Storage/2.1/x86_64/product.license/","repositories":[{"id":1958,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/Storage/2.1/x86_64/update/","autorefresh":true,"distro_target":"sle-12-x86_64","name":"SUSE-Enterprise-Storage-2.1-Updates","installer_updates":false,"description":"SUSE-Enterprise-Storage-2.1-Updates for sle-12-x86_64"},{"description":"SUSE-Enterprise-Storage-2.1-Debuginfo-Updates for sle-12-x86_64","installer_updates":false,"name":"SUSE-Enterprise-Storage-2.1-Debuginfo-Updates","url":"https://updates.suse.com/SUSE/Updates/Storage/2.1/x86_64/update_debug/","distro_target":"sle-12-x86_64","autorefresh":true,"id":1959,"enabled":false},{"description":"SUSE-Enterprise-Storage-2.1-Pool for sle-12-x86_64","installer_updates":false,"name":"SUSE-Enterprise-Storage-2.1-Pool","distro_target":"sle-12-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/Storage/2.1/x86_64/product/","enabled":true,"id":1960},{"installer_updates":false,"name":"SUSE-Enterprise-Storage-2.1-Debuginfo-Pool","description":"SUSE-Enterprise-Storage-2.1-Debuginfo-Pool for sle-12-x86_64","enabled":false,"id":1961,"distro_target":"sle-12-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/Storage/2.1/x86_64/product_debug/"},{"description":"SUSE-Enterprise-Storage-2.1-Source-Pool for sle-12-x86_64","name":"SUSE-Enterprise-Storage-2.1-Source-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/Storage/2.1/x86_64/product_source/","autorefresh":false,"distro_target":"sle-12-x86_64","id":1962,"enabled":false}],"online_predecessor_ids":[1342],"product_class":"SES","predecessor_ids":[1342],"cpe":"cpe:/o:suse:ses:2.1","product_type":"extension"},{"version":"3.0","recommended":false,"release_type":null,"former_identifier":"SUSE-Manager-Proxy","friendly_name":"SUSE Manager Proxy 3.0 x86_64","migration_extra":false,"offline_predecessor_ids":[],"name":"SUSE Manager Proxy","friendly_version":"3.0","identifier":"SUSE-Manager-Proxy","release_stage":"released","id":1352,"extensions":[],"free":false,"shortname":"SUSE Manager Proxy","description":"SUSE Manager Proxies extend large and/or geographically dispersed SUSE Manager environments to reduce load on the SUSE Manager Server, lower bandwidth needs, and provide faster local updates.","arch":"x86_64","eula_url":"https://updates.suse.com/SUSE/Products/SUSE-Manager-Proxy/3.0/x86_64/product.license/","online_predecessor_ids":[],"product_class":"SMP","repositories":[{"name":"SUSE-Manager-Proxy-3.0-Updates","installer_updates":false,"description":"SUSE-Manager-Proxy-3.0-Updates for sle-12-x86_64","id":1968,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SUSE-Manager-Proxy/3.0/x86_64/update/","autorefresh":true,"distro_target":"sle-12-x86_64"},{"description":"SUSE-Manager-Proxy-3.0-Debuginfo-Updates for sle-12-x86_64","name":"SUSE-Manager-Proxy-3.0-Debuginfo-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Updates/SUSE-Manager-Proxy/3.0/x86_64/update_debug/","enabled":false,"id":1969},{"description":"SUSE-Manager-Proxy-3.0-Pool for sle-12-x86_64","installer_updates":false,"name":"SUSE-Manager-Proxy-3.0-Pool","distro_target":"sle-12-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SUSE-Manager-Proxy/3.0/x86_64/product/","enabled":true,"id":1970},{"description":"SUSE-Manager-Proxy-3.0-Debuginfo-Pool for sle-12-x86_64","installer_updates":false,"name":"SUSE-Manager-Proxy-3.0-Debuginfo-Pool","url":"https://updates.suse.com/SUSE/Products/SUSE-Manager-Proxy/3.0/x86_64/product_debug/","distro_target":"sle-12-x86_64","autorefresh":false,"id":1971,"enabled":false},{"description":"SUSE-Manager-Proxy-3.0-Source-Pool for sle-12-x86_64","installer_updates":false,"name":"SUSE-Manager-Proxy-3.0-Source-Pool","url":"https://updates.suse.com/SUSE/Products/SUSE-Manager-Proxy/3.0/x86_64/product_source/","distro_target":"sle-12-x86_64","autorefresh":false,"id":2002,"enabled":false}],"predecessor_ids":[],"product_type":"extension","cpe":"cpe:/o:suse:suse-manager-proxy:3.0"},{"extensions":[],"identifier":"sle-module-certifications","release_stage":"released","id":1368,"friendly_version":"12","offline_predecessor_ids":[],"name":"Certifications Module","former_identifier":"sle-module-certifications","release_type":null,"friendly_name":"Certifications Module 12 x86_64","migration_extra":false,"recommended":false,"version":"12","product_type":"module","cpe":"cpe:/o:suse:sle-module-certifications:12","predecessor_ids":[],"product_class":"MODULE","online_predecessor_ids":[],"repositories":[{"distro_target":"sle-12-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Certifications/12/x86_64/update/","enabled":true,"id":2068,"description":"SLE-Module-Certifications12-Updates for sle-12-x86_64","installer_updates":false,"name":"SLE-Module-Certifications12-Updates"},{"description":"SLE-Module-Certifications12-Debuginfo-Updates for sle-12-x86_64","name":"SLE-Module-Certifications12-Debuginfo-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Certifications/12/x86_64/update_debug/","enabled":false,"id":2069},{"name":"SLE-Module-Certifications12-Pool","installer_updates":false,"description":"SLE-Module-Certifications12-Pool for sle-12-x86_64","enabled":true,"id":2070,"autorefresh":false,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Certifications/12/x86_64/product/"},{"description":"SLE-Module-Certifications12-Debuginfo-Pool for sle-12-x86_64","name":"SLE-Module-Certifications12-Debuginfo-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Certifications/12/x86_64/product_debug/","autorefresh":false,"distro_target":"sle-12-x86_64","id":2071,"enabled":false}],"eula_url":"","arch":"x86_64","free":true,"shortname":"Certifications","description":"

This module contains packages specific to certifications.

It contains:

Packages used for the Evaluated Configuration of the Common Criteria Certification of SUSE Linux Enterprise Server 12 GA.

Packages used for the FIPS 140-2 certification of various cryptographics modules.

Please refer to our certification pages referenced from https://www.suse.com/security/

"},{"version":"3","recommended":false,"release_type":null,"former_identifier":"ses","friendly_name":"SUSE Enterprise Storage 3 x86_64","migration_extra":false,"offline_predecessor_ids":[],"name":"SUSE Enterprise Storage","friendly_version":"3","release_stage":"released","identifier":"ses","id":1369,"extensions":[],"free":false,"shortname":"SES3","description":"SUSE Enterprise Storage 3 for SUSE Linux Enterprise Server 12-SP1, powered by Ceph.","arch":"x86_64","eula_url":"https://updates.suse.com/SUSE/Products/Storage/3/x86_64/product.license/","online_predecessor_ids":[1351],"repositories":[{"installer_updates":false,"name":"SUSE-Enterprise-Storage-3-Updates","description":"SUSE-Enterprise-Storage-3-Updates for sle-12-x86_64","enabled":true,"id":2072,"distro_target":"sle-12-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/Storage/3/x86_64/update/"},{"enabled":false,"id":2073,"distro_target":"sle-12-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/Storage/3/x86_64/update_debug/","installer_updates":false,"name":"SUSE-Enterprise-Storage-3-Debuginfo-Updates","description":"SUSE-Enterprise-Storage-3-Debuginfo-Updates for sle-12-x86_64"},{"url":"https://updates.suse.com/SUSE/Products/Storage/3/x86_64/product/","distro_target":"sle-12-x86_64","autorefresh":false,"id":2074,"enabled":true,"description":"SUSE-Enterprise-Storage-3-Pool for sle-12-x86_64","installer_updates":false,"name":"SUSE-Enterprise-Storage-3-Pool"},{"url":"https://updates.suse.com/SUSE/Products/Storage/3/x86_64/product_debug/","distro_target":"sle-12-x86_64","autorefresh":false,"id":2075,"enabled":false,"description":"SUSE-Enterprise-Storage-3-Debuginfo-Pool for sle-12-x86_64","installer_updates":false,"name":"SUSE-Enterprise-Storage-3-Debuginfo-Pool"},{"autorefresh":false,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Products/Storage/3/x86_64/product_source/","enabled":false,"id":2076,"description":"SUSE-Enterprise-Storage-3-Source-Pool for sle-12-x86_64","name":"SUSE-Enterprise-Storage-3-Source-Pool","installer_updates":false}],"product_class":"SES","predecessor_ids":[1351],"product_type":"extension","cpe":"cpe:/o:suse:ses:3"},{"friendly_version":"12 SP1","id":1476,"release_stage":"released","identifier":"PackageHub","extensions":[],"version":"12.1","recommended":false,"migration_extra":false,"friendly_name":"SUSE Package Hub 12 SP1 x86_64","release_type":null,"former_identifier":"PackageHub","name":"SUSE Package Hub","offline_predecessor_ids":[],"online_predecessor_ids":[1473],"product_class":"7261","repositories":[{"description":"SUSE-PackageHub-12-SP1-Standard-Pool for sle-12-x86_64","name":"SUSE-PackageHub-12-SP1-Standard-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Backports/SLE-12-SP1_x86_64/standard/","autorefresh":false,"distro_target":"sle-12-x86_64","id":2336,"enabled":true},{"installer_updates":false,"name":"SUSE-PackageHub-12-SP1-Debuginfo","description":"SUSE-PackageHub-12-SP1-Debuginfo for sle-12-x86_64","enabled":false,"id":2337,"distro_target":"sle-12-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Backports/SLE-12-SP1_x86_64/standard_debug/"},{"name":"SUSE-PackageHub-12-SP1-Pool","installer_updates":false,"description":"SUSE-PackageHub-12-SP1-Pool for sle-12-x86_64","id":2338,"enabled":true,"url":"https://updates.suse.com/SUSE/Backports/SLE-12-SP1_x86_64/product/","autorefresh":false,"distro_target":"sle-12-x86_64"}],"predecessor_ids":[1473],"cpe":"cpe:/o:suse:packagehub:12:sp1","product_type":"extension","description":"SUSE Package Hub is a free of charge extension providing access to community maintained packages built to run on SUSE Linux Enterprise Server. Built from the same sources used in the openSUSE distributions, these quality packages provide additional software to what is found in the SUSE Linux Enterprise Server product. Packages from the Package Hub are delivered without L3 support from SUSE. General updates and fixes to the packages in SUSE Package Hub are provided by the openSUSE community based on their discretion though SUSE will monitor and ensure that any known critical security issues will be addressed. Packages in the Package Hub are approved by SUSE for use with SUSE Linux Enterprise Server 12 and to not interfere with the supportability of SUSE Linux Enterprise Server it's modules and extensions. For more information about SUSE Package Hub please visit https://packagehub.suse.com.","shortname":"SUSE-PackageHub-12-SP1","free":true,"arch":"x86_64","eula_url":""},{"extensions":[],"release_stage":"released","id":1533,"identifier":"SLES-LTSS","friendly_version":"12 SP1","name":"SUSE Linux Enterprise Server LTSS","offline_predecessor_ids":[],"friendly_name":"SUSE Linux Enterprise Server LTSS 12 SP1 x86_64","migration_extra":false,"former_identifier":"SLES-LTSS","release_type":null,"recommended":false,"version":"12.1","cpe":"cpe:/o:suse:sles-ltss:12:sp1","product_type":"extension","predecessor_ids":[],"online_predecessor_ids":[],"product_class":"SLES12-SP1-LTSS-X86","repositories":[{"description":"SLES12-SP1-LTSS-Updates for sle-12-x86_64","name":"SLES12-SP1-LTSS-Updates","installer_updates":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-SP1-LTSS/x86_64/update/","autorefresh":true,"distro_target":"sle-12-x86_64","id":2457,"enabled":true},{"url":"https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-SP1-LTSS/x86_64/update_debug/","distro_target":"sle-12-x86_64","autorefresh":true,"id":2458,"enabled":false,"description":"SLES12-SP1-LTSS-Debuginfo-Updates for sle-12-x86_64","installer_updates":false,"name":"SLES12-SP1-LTSS-Debuginfo-Updates"}],"eula_url":"","arch":"x86_64","shortname":"SLES12-SP1 LTSS","description":"SUSE Linux Enterprise offers a comprehensive suite of products built on a single code base. The platform addresses business needs from the smallest thin-client devices to the world's most powerful high-performance computing and mainframe servers. SUSE Linux Enterprise offers common management tools and technology certifications across the platform, and each product is enterprise-class.","free":false},{"version":"12","recommended":false,"migration_extra":false,"friendly_name":"SUSE Cloud Application Platform Tools Module 12 x86_64","former_identifier":"sle-module-cap-tools","release_type":null,"name":"SUSE Cloud Application Platform Tools Module","offline_predecessor_ids":[],"friendly_version":"12","release_stage":"released","id":1678,"identifier":"sle-module-cap-tools","extensions":[],"shortname":"SUSE-CAP-Tools-Module","description":"

The SUSE Cloud Application Platform Tools Module is a collection of tools that enables you to interact with the SUSE Cloud Application Platform product itself, providing the commandline client for instance.

Access to the SUSE Cloud Application Platform Tools Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself; please check the Release Notes for further details.

","free":true,"arch":"x86_64","eula_url":"","online_predecessor_ids":[],"repositories":[{"name":"SLE-Module-CAP-Tools-12-Updates","installer_updates":false,"description":"SLE-Module-CAP-Tools-12-Updates for sle-12-x86_64","id":2912,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-CAP-Tools/12/x86_64/update/","autorefresh":true,"distro_target":"sle-12-x86_64"},{"installer_updates":false,"name":"SLE-Module-CAP-Tools-12-Debuginfo-Updates","description":"SLE-Module-CAP-Tools-12-Debuginfo-Updates for sle-12-x86_64","enabled":false,"id":2913,"distro_target":"sle-12-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-CAP-Tools/12/x86_64/update_debug/"},{"autorefresh":false,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-CAP-Tools/12/x86_64/product/","enabled":true,"id":2914,"description":"SLE-Module-CAP-Tools-12-Pool for sle-12-x86_64","name":"SLE-Module-CAP-Tools-12-Pool","installer_updates":false},{"name":"SLE-Module-CAP-Tools-12-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-CAP-Tools-12-Debuginfo-Pool for sle-12-x86_64","enabled":false,"id":2915,"autorefresh":false,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-CAP-Tools/12/x86_64/product_debug/"},{"enabled":false,"id":2916,"autorefresh":false,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-CAP-Tools/12/x86_64/product_source/","name":"SLE-Module-CAP-Tools-12-Source-Pool","installer_updates":false,"description":"SLE-Module-CAP-Tools-12-Source-Pool for sle-12-x86_64"}],"product_class":"MODULE","predecessor_ids":[],"cpe":"cpe:/o:suse:sle-module-cap-tools:12","product_type":"module"}],"identifier":"SLES","release_stage":"released","id":1322,"friendly_version":"12 SP1","eula_url":"https://updates.suse.com/SUSE/Products/SLE-SERVER/12-SP1/x86_64/product.license/","arch":"x86_64","description":"SUSE Linux Enterprise offers a comprehensive suite of products built on a single code base. The platform addresses business needs from the smallest thin-client devices to the world's most powerful high-performance computing and mainframe servers. SUSE Linux Enterprise offers common management tools and technology certifications across the platform, and each product is enterprise-class.","shortname":"SLES12-SP1","free":false,"cpe":"cpe:/o:suse:sles:12:sp1","product_type":"base","predecessor_ids":[1117],"online_predecessor_ids":[1117],"repositories":[{"installer_updates":false,"name":"SLES12-SP1-Updates","description":"SLES12-SP1-Updates for sle-12-x86_64","enabled":true,"id":1846,"distro_target":"sle-12-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-SP1/x86_64/update/"},{"installer_updates":false,"name":"SLES12-SP1-Debuginfo-Updates","description":"SLES12-SP1-Debuginfo-Updates for sle-12-x86_64","id":1847,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-SP1/x86_64/update_debug/","distro_target":"sle-12-x86_64","autorefresh":true},{"enabled":true,"id":1848,"autorefresh":false,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-SERVER/12-SP1/x86_64/product/","name":"SLES12-SP1-Pool","installer_updates":false,"description":"SLES12-SP1-Pool for sle-12-x86_64"},{"installer_updates":false,"name":"SLES12-SP1-Debuginfo-Pool","description":"SLES12-SP1-Debuginfo-Pool for sle-12-x86_64","id":1849,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-SERVER/12-SP1/x86_64/product_debug/","distro_target":"sle-12-x86_64","autorefresh":false},{"name":"SLES12-SP1-Source-Pool","installer_updates":false,"description":"SLES12-SP1-Source-Pool for sle-12-x86_64","enabled":false,"id":1910,"autorefresh":false,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-SERVER/12-SP1/x86_64/product_source/"}],"product_class":"7261"},{"description":"

SUSE Linux Enterprise Software Development Kit is the Software Development Kit for the family of SUSE Linux Enterprise products. It is a free of charge extension for partners and customers working with SUSE Linux Enterprise Server and Desktop and derived products.

Packages on the SDK are delivered without L3 support; maintenance updates will be done for critical security and critical non-security issues, and where needed to remain in sync with packages delivered in the SUSE Linux Enterprise Server and Desktop products.

Packages to rebuild SUSE Linux Enterprise Server are not part of the SUSE Linux Enterprise Software Development Kit.

","shortname":"SDK12-SP1","free":true,"eula_url":"https://updates.suse.com/SUSE/Products/SLE-SDK/12-SP1/x86_64/product.license/","arch":"x86_64","predecessor_ids":[1223],"online_predecessor_ids":[1223],"repositories":[{"description":"SLE-SDK12-SP1-Updates for sle-12-x86_64","name":"SLE-SDK12-SP1-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-SDK/12-SP1/x86_64/update/","enabled":true,"id":1850},{"id":1851,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-SDK/12-SP1/x86_64/update_debug/","autorefresh":true,"distro_target":"sle-12-x86_64","name":"SLE-SDK12-SP1-Debuginfo-Updates","installer_updates":false,"description":"SLE-SDK12-SP1-Debuginfo-Updates for sle-12-x86_64"},{"enabled":true,"id":1852,"autorefresh":false,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-SDK/12-SP1/x86_64/product/","name":"SLE-SDK12-SP1-Pool","installer_updates":false,"description":"SLE-SDK12-SP1-Pool for sle-12-x86_64"},{"description":"SLE-SDK12-SP1-Debuginfo-Pool for sle-12-x86_64","installer_updates":false,"name":"SLE-SDK12-SP1-Debuginfo-Pool","distro_target":"sle-12-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-SDK/12-SP1/x86_64/product_debug/","enabled":false,"id":1853},{"name":"SLE-SDK12-SP1-Source-Pool","installer_updates":false,"description":"SLE-SDK12-SP1-Source-Pool for sle-12-x86_64","id":1907,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-SDK/12-SP1/x86_64/product_source/","autorefresh":false,"distro_target":"sle-12-x86_64"}],"product_class":"SLE-SDK","cpe":"cpe:/o:suse:sle-sdk:12:sp1","product_type":"extension","recommended":false,"version":"12.1","name":"SUSE Linux Enterprise Software Development Kit","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Software Development Kit 12 SP1 x86_64","release_type":null,"former_identifier":"sle-sdk","friendly_version":"12 SP1","extensions":[],"release_stage":"released","id":1323,"identifier":"sle-sdk"},{"release_stage":"released","identifier":"sle-ha","id":1324,"extensions":[],"friendly_version":"12 SP1","former_identifier":"sle-hae","release_type":null,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise High Availability Extension 12 SP1 x86_64","offline_predecessor_ids":[958,961,967,971,1256],"name":"SUSE Linux Enterprise High Availability Extension","version":"12.1","recommended":false,"product_type":"extension","cpe":"cpe:/o:suse:sle-ha:12:sp1","online_predecessor_ids":[1245],"repositories":[{"description":"SLE-HA12-SP1-Updates for sle-12-x86_64","name":"SLE-HA12-SP1-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-HA/12-SP1/x86_64/update/","enabled":true,"id":1854},{"installer_updates":false,"name":"SLE-HA12-SP1-Debuginfo-Updates","description":"SLE-HA12-SP1-Debuginfo-Updates for sle-12-x86_64","enabled":false,"id":1855,"distro_target":"sle-12-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-HA/12-SP1/x86_64/update_debug/"},{"installer_updates":false,"name":"SLE-HA12-SP1-Pool","description":"SLE-HA12-SP1-Pool for sle-12-x86_64","enabled":true,"id":1856,"distro_target":"sle-12-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-HA/12-SP1/x86_64/product/"},{"description":"SLE-HA12-SP1-Debuginfo-Pool for sle-12-x86_64","installer_updates":false,"name":"SLE-HA12-SP1-Debuginfo-Pool","distro_target":"sle-12-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-HA/12-SP1/x86_64/product_debug/","enabled":false,"id":1857},{"url":"https://updates.suse.com/SUSE/Products/SLE-HA/12-SP1/x86_64/product_source/","autorefresh":false,"distro_target":"sle-12-x86_64","id":1914,"enabled":false,"description":"SLE-HA12-SP1-Source-Pool for sle-12-x86_64","name":"SLE-HA12-SP1-Source-Pool","installer_updates":false}],"product_class":"SLE-HAE-X86","predecessor_ids":[1245],"arch":"x86_64","eula_url":"https://updates.suse.com/SUSE/Products/SLE-HA/12-SP1/x86_64/product.license/","free":false,"shortname":"SLEHA12-SP1","description":"SUSE Linux Enterprise High Availability Extension."},{"eula_url":"","arch":"i686","description":null,"shortname":null,"free":false,"cpe":null,"product_type":"extension","predecessor_ids":[],"online_predecessor_ids":[],"product_class":"SLE-HAE-GEO","repositories":[{"id":1760,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-GEO-SP4-Updates/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true,"installer_updates":false,"name":"SLE11-HAE-GEO-SP4-Updates","description":"SLE11-HAE-GEO-SP4-Updates for sle-11-x86_64"},{"description":"SLE11-HAE-GEO-SP4-Pool for sle-11-x86_64","installer_updates":false,"name":"SLE11-HAE-GEO-SP4-Pool","distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-GEO-SP4-Pool/sle-11-x86_64/","enabled":true,"id":1858}],"name":"Geo Clustering for SUSE Linux Enterprise High Availability Extension","offline_predecessor_ids":[],"friendly_name":"Geo Clustering for SUSE Linux Enterprise High Availability Extension 11 SP3 i686 (Migration)","migration_extra":false,"release_type":null,"former_identifier":"sle-haegeo-SP4-migration","recommended":false,"version":"11.3","extensions":[],"release_stage":"released","identifier":"sle-haegeo-SP4-migration","id":1325,"friendly_version":"11 SP3"},{"arch":"i586","eula_url":"","shortname":null,"description":null,"free":false,"cpe":null,"product_type":"extension","product_class":"SLE-HAE-GEO","online_predecessor_ids":[],"repositories":[{"enabled":true,"id":1760,"distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-GEO-SP4-Updates/sle-11-x86_64/","installer_updates":false,"name":"SLE11-HAE-GEO-SP4-Updates","description":"SLE11-HAE-GEO-SP4-Updates for sle-11-x86_64"},{"url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-GEO-SP4-Pool/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true,"id":1858,"enabled":true,"description":"SLE11-HAE-GEO-SP4-Pool for sle-11-x86_64","installer_updates":false,"name":"SLE11-HAE-GEO-SP4-Pool"}],"predecessor_ids":[],"friendly_name":"Geo Clustering for SUSE Linux Enterprise High Availability Extension 11 SP3 i586 (Migration)","migration_extra":false,"release_type":null,"former_identifier":"sle-haegeo-SP4-migration","name":"Geo Clustering for SUSE Linux Enterprise High Availability Extension","offline_predecessor_ids":[],"version":"11.3","recommended":false,"identifier":"sle-haegeo-SP4-migration","release_stage":"released","id":1326,"extensions":[],"friendly_version":"11 SP3"},{"predecessor_ids":[],"online_predecessor_ids":[],"repositories":[{"id":1760,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-GEO-SP4-Updates/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true,"installer_updates":false,"name":"SLE11-HAE-GEO-SP4-Updates","description":"SLE11-HAE-GEO-SP4-Updates for sle-11-x86_64"},{"id":1858,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-GEO-SP4-Pool/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64","name":"SLE11-HAE-GEO-SP4-Pool","installer_updates":false,"description":"SLE11-HAE-GEO-SP4-Pool for sle-11-x86_64"}],"product_class":"SLE-HAE-GEO","product_type":"extension","cpe":null,"free":false,"description":null,"shortname":null,"eula_url":"","arch":"x86_64","friendly_version":"11 SP3","extensions":[],"release_stage":"released","identifier":"sle-haegeo-SP4-migration","id":1327,"recommended":false,"version":"11.3","offline_predecessor_ids":[],"name":"Geo Clustering for SUSE Linux Enterprise High Availability Extension","former_identifier":"sle-haegeo-SP4-migration","release_type":null,"migration_extra":false,"friendly_name":"Geo Clustering for SUSE Linux Enterprise High Availability Extension 11 SP3 x86_64 (Migration)"},{"version":"11.3","recommended":false,"friendly_name":"Geo Clustering for SUSE Linux Enterprise High Availability Extension 11 SP3 s390x (Migration)","migration_extra":false,"former_identifier":"sle-haegeo-SP4-migration","release_type":null,"name":"Geo Clustering for SUSE Linux Enterprise High Availability Extension","offline_predecessor_ids":[],"friendly_version":"11 SP3","release_stage":"released","identifier":"sle-haegeo-SP4-migration","id":1328,"extensions":[],"shortname":null,"description":null,"free":false,"arch":"s390x","eula_url":"","repositories":[{"id":1761,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-GEO-SP4-Updates/sle-11-s390x/","distro_target":"sle-11-s390x","autorefresh":true,"installer_updates":false,"name":"SLE11-HAE-GEO-SP4-Updates","description":"SLE11-HAE-GEO-SP4-Updates for sle-11-s390x"},{"enabled":true,"id":1859,"distro_target":"sle-11-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-GEO-SP4-Pool/sle-11-s390x/","installer_updates":false,"name":"SLE11-HAE-GEO-SP4-Pool","description":"SLE11-HAE-GEO-SP4-Pool for sle-11-s390x"}],"online_predecessor_ids":[],"product_class":"SLE-HAE-GEO","predecessor_ids":[],"cpe":null,"product_type":"extension"},{"recommended":false,"version":"11.4","name":"SUSE Linux Enterprise Server for SAP All-in-One","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Server for SAP All-in-One 11 SP4 x86_64","release_type":null,"former_identifier":"SUSE_SLES_SAP","friendly_version":"11 SP4","extensions":[{"arch":null,"eula_url":"","shortname":null,"description":null,"free":true,"cpe":null,"product_type":"extension","product_class":"SLESMT","online_predecessor_ids":[],"repositories":[{"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP3-Updates/sle-11-x86_64/","enabled":true,"id":1405,"description":"SLE11-SMT-SP3-Updates for sle-11-x86_64","name":"SLE11-SMT-SP3-Updates","installer_updates":false},{"distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP3-Updates/sle-11-i586/","enabled":true,"id":1406,"description":"SLE11-SMT-SP3-Updates for sle-11-i586","installer_updates":false,"name":"SLE11-SMT-SP3-Updates"},{"name":"SLE11-SMT-SP3-Updates","installer_updates":false,"description":"SLE11-SMT-SP3-Updates for sle-11-s390x","id":1407,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP3-Updates/sle-11-s390x/","autorefresh":true,"distro_target":"sle-11-s390x"},{"description":"SLE11-SMT-SP3-Pool for sle-11-s390x","name":"SLE11-SMT-SP3-Pool","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-s390x","url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP3-Pool/sle-11-s390x/","enabled":true,"id":1408},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP3-Pool/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true,"id":1409,"enabled":true,"description":"SLE11-SMT-SP3-Pool for sle-11-x86_64","installer_updates":false,"name":"SLE11-SMT-SP3-Pool"},{"id":1410,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SMT-SP3-Pool/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","name":"SLE11-SMT-SP3-Pool","installer_updates":false,"description":"SLE11-SMT-SP3-Pool for sle-11-i586"}],"predecessor_ids":[],"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Subscription Management Tool 11 SP3","former_identifier":"sle-smt","release_type":null,"name":"SUSE Linux Enterprise Subscription Management Tool","offline_predecessor_ids":[],"version":"11.3","recommended":false,"release_stage":"released","id":1198,"identifier":"sle-smt","extensions":[],"friendly_version":"11 SP3"},{"eula_url":"","arch":null,"free":true,"description":null,"shortname":null,"product_type":"extension","cpe":null,"predecessor_ids":[],"repositories":[{"distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP4-Pool/sle-11-i586/","enabled":true,"id":1817,"description":"SLE11-SDK-SP4-Pool for sle-11-i586","installer_updates":false,"name":"SLE11-SDK-SP4-Pool"},{"description":"SLE11-SDK-SP4-Pool for sle-11-ia64","installer_updates":false,"name":"SLE11-SDK-SP4-Pool","distro_target":"sle-11-ia64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP4-Pool/sle-11-ia64/","enabled":true,"id":1818},{"installer_updates":false,"name":"SLE11-SDK-SP4-Pool","description":"SLE11-SDK-SP4-Pool for sle-11-ppc64","id":1819,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP4-Pool/sle-11-ppc64/","distro_target":"sle-11-ppc64","autorefresh":true},{"id":1820,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP4-Pool/sle-11-s390x/","autorefresh":true,"distro_target":"sle-11-s390x","name":"SLE11-SDK-SP4-Pool","installer_updates":false,"description":"SLE11-SDK-SP4-Pool for sle-11-s390x"},{"distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP4-Pool/sle-11-x86_64/","enabled":true,"id":1821,"description":"SLE11-SDK-SP4-Pool for sle-11-x86_64","installer_updates":false,"name":"SLE11-SDK-SP4-Pool"},{"name":"SLE11-SDK-SP4-Updates","installer_updates":false,"description":"SLE11-SDK-SP4-Updates for sle-11-i586","enabled":true,"id":1822,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP4-Updates/sle-11-i586/"},{"description":"SLE11-SDK-SP4-Updates for sle-11-ia64","name":"SLE11-SDK-SP4-Updates","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP4-Updates/sle-11-ia64/","autorefresh":true,"distro_target":"sle-11-ia64","id":1823,"enabled":true},{"installer_updates":false,"name":"SLE11-SDK-SP4-Updates","description":"SLE11-SDK-SP4-Updates for sle-11-ppc64","enabled":true,"id":1824,"distro_target":"sle-11-ppc64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP4-Updates/sle-11-ppc64/"},{"description":"SLE11-SDK-SP4-Updates for sle-11-s390x","installer_updates":false,"name":"SLE11-SDK-SP4-Updates","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP4-Updates/sle-11-s390x/","distro_target":"sle-11-s390x","autorefresh":true,"id":1825,"enabled":true},{"enabled":true,"id":1826,"distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP4-Updates/sle-11-x86_64/","installer_updates":false,"name":"SLE11-SDK-SP4-Updates","description":"SLE11-SDK-SP4-Updates for sle-11-x86_64"}],"online_predecessor_ids":[],"product_class":"SLE-SDK","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Software Development Kit","former_identifier":"sle-sdk","release_type":null,"friendly_name":"SUSE Linux Enterprise Software Development Kit 11 SP4","migration_extra":false,"recommended":false,"version":"11.4","extensions":[],"id":1320,"release_stage":"released","identifier":"sle-sdk","friendly_version":"11 SP4"}],"identifier":"SUSE_SLES_SAP","release_stage":"released","id":1329,"description":null,"shortname":null,"free":false,"eula_url":"","arch":"x86_64","predecessor_ids":[],"repositories":[{"description":"SLES11-Extras for sle-11-x86_64","name":"SLES11-Extras","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLES11-Extras/sle-11-x86_64/","enabled":false,"id":710},{"name":"SLE11-SP2-WebYaST-1.3-Pool","installer_updates":false,"description":"SLE11-SP2-WebYaST-1.3-Pool for sle-11-x86_64","id":1185,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-WebYaST-1.3-Pool/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64"},{"description":"SLE11-SP2-WebYaST-1.3-Updates for sle-11-x86_64","name":"SLE11-SP2-WebYaST-1.3-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-WebYaST-1.3-Updates/sle-11-x86_64/","enabled":true,"id":1188},{"name":"SLE11-Security-Module","installer_updates":false,"description":"SLE11-Security-Module for sle-11-x86_64","enabled":false,"id":1447,"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE11-Security-Module/sle-11-x86_64/"},{"installer_updates":false,"name":"SLE11-HAE-SP4-Pool","description":"SLE11-HAE-SP4-Pool for sle-11-x86_64","enabled":true,"id":1750,"distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP4-Pool/sle-11-x86_64/"},{"name":"SLE11-HAE-SP4-Updates","installer_updates":false,"description":"SLE11-HAE-SP4-Updates for sle-11-x86_64","id":1753,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP4-Updates/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64"},{"description":"SLE11-HAE-GEO-SP4-Updates for sle-11-x86_64","name":"SLE11-HAE-GEO-SP4-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-GEO-SP4-Updates/sle-11-x86_64/","enabled":true,"id":1760},{"description":"SLE11-Public-Cloud-Module for sle-11-x86_64","name":"SLE11-Public-Cloud-Module","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-Public-Cloud-Module/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64","id":1777,"enabled":false},{"description":"SLES11-SP4-Pool for sle-11-x86_64","installer_updates":false,"name":"SLES11-SP4-Pool","distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP4-Pool/sle-11-x86_64/","enabled":true,"id":1802},{"distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP4-Updates/sle-11-x86_64/","enabled":true,"id":1803,"description":"SLES11-SP4-Updates for sle-11-x86_64","installer_updates":false,"name":"SLES11-SP4-Updates"},{"installer_updates":false,"name":"SLE11-SP4-Debuginfo-Pool","description":"SLE11-SP4-Debuginfo-Pool for sle-11-x86_64","id":1804,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP4-Debuginfo-Pool/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true},{"id":1806,"enabled":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP4-Debuginfo-Updates/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64","name":"SLE11-SP4-Debuginfo-Updates","installer_updates":false,"description":"SLE11-SP4-Debuginfo-Updates for sle-11-x86_64"},{"description":"SLE11-HAE-GEO-SP4-Pool for sle-11-x86_64","name":"SLE11-HAE-GEO-SP4-Pool","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-GEO-SP4-Pool/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64","id":1858,"enabled":true},{"id":1860,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP4-SAP-Pool/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true,"installer_updates":false,"name":"SLE11-SP4-SAP-Pool","description":"SLE11-SP4-SAP-Pool for sle-11-x86_64"},{"name":"SLE11-SP4-SAP-Updates","installer_updates":false,"description":"SLE11-SP4-SAP-Updates for sle-11-x86_64","id":1861,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP4-SAP-Updates/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64"},{"enabled":true,"id":3760,"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLES11-SP4-LTSS-Updates/sle-11-x86_64/","name":"SLES11-SP4-LTSS-Updates","installer_updates":false,"description":"SLES11-SP4-LTSS-Updates for sle-11-x86_64"}],"online_predecessor_ids":[],"product_class":"AiO","cpe":"cpe:/o:suse:suse_sles_sap:11:sp4","product_type":"base"},{"former_identifier":"SUSE_SLES_SAP-SP4-migration","release_type":null,"friendly_name":"SUSE Linux Enterprise Server for SAP All-in-One 11 SP3 (Migration)","migration_extra":false,"offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Server for SAP All-in-One","version":"11.3","recommended":false,"identifier":"SUSE_SLES_SAP-SP4-migration","release_stage":"released","id":1330,"extensions":[],"friendly_version":"11 SP3","arch":null,"eula_url":"","free":false,"description":null,"shortname":null,"product_type":"base","cpe":null,"repositories":[{"enabled":false,"id":710,"distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-Extras/sle-11-x86_64/","installer_updates":false,"name":"SLES11-Extras","description":"SLES11-Extras for sle-11-x86_64"},{"name":"SLE11-SP2-WebYaST-1.3-Pool","installer_updates":false,"description":"SLE11-SP2-WebYaST-1.3-Pool for sle-11-x86_64","enabled":true,"id":1185,"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-WebYaST-1.3-Pool/sle-11-x86_64/"},{"description":"SLE11-SP2-WebYaST-1.3-Updates for sle-11-x86_64","name":"SLE11-SP2-WebYaST-1.3-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-WebYaST-1.3-Updates/sle-11-x86_64/","enabled":true,"id":1188},{"installer_updates":false,"name":"SLE11-Security-Module","description":"SLE11-Security-Module for sle-11-x86_64","enabled":false,"id":1447,"distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-Security-Module/sle-11-x86_64/"},{"enabled":true,"id":1750,"distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP4-Pool/sle-11-x86_64/","installer_updates":false,"name":"SLE11-HAE-SP4-Pool","description":"SLE11-HAE-SP4-Pool for sle-11-x86_64"},{"description":"SLE11-HAE-SP4-Updates for sle-11-x86_64","name":"SLE11-HAE-SP4-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP4-Updates/sle-11-x86_64/","enabled":true,"id":1753},{"enabled":true,"id":1802,"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLES11-SP4-Pool/sle-11-x86_64/","name":"SLES11-SP4-Pool","installer_updates":false,"description":"SLES11-SP4-Pool for sle-11-x86_64"},{"url":"https://updates.suse.com/repo/$RCE/SLES11-SP4-Updates/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true,"id":1803,"enabled":true,"description":"SLES11-SP4-Updates for sle-11-x86_64","installer_updates":false,"name":"SLES11-SP4-Updates"},{"description":"SLE11-SP4-SAP-Pool for sle-11-x86_64","name":"SLE11-SP4-SAP-Pool","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP4-SAP-Pool/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64","id":1860,"enabled":true},{"description":"SLE11-SP4-SAP-Updates for sle-11-x86_64","installer_updates":false,"name":"SLE11-SP4-SAP-Updates","url":"https://updates.suse.com/repo/$RCE/SLE11-SP4-SAP-Updates/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true,"id":1861,"enabled":true}],"online_predecessor_ids":[],"product_class":"AiO","predecessor_ids":[]},{"cpe":"cpe:/o:suse:suse_sles_sap:11:sp4","product_type":"base","predecessor_ids":[],"product_class":"AiO-PPC","online_predecessor_ids":[],"repositories":[{"url":"https://updates.suse.com/repo/$RCE/SLES11-Extras/sle-11-ppc64/","autorefresh":true,"distro_target":"sle-11-ppc64","id":920,"enabled":false,"description":"SLES11-Extras for sle-11-ppc64","name":"SLES11-Extras","installer_updates":false},{"description":"SLE11-Security-Module for sle-11-ppc64","installer_updates":false,"name":"SLE11-Security-Module","distro_target":"sle-11-ppc64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-Security-Module/sle-11-ppc64/","enabled":false,"id":1380},{"installer_updates":false,"name":"SLE11-SP2-WebYaST-1.3-Pool","description":"SLE11-SP2-WebYaST-1.3-Pool for sle-11-ppc64","enabled":true,"id":1414,"distro_target":"sle-11-ppc64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-WebYaST-1.3-Pool/sle-11-ppc64/"},{"enabled":true,"id":1418,"distro_target":"sle-11-ppc64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP2-WebYaST-1.3-Updates/sle-11-ppc64/","installer_updates":false,"name":"SLE11-SP2-WebYaST-1.3-Updates","description":"SLE11-SP2-WebYaST-1.3-Updates for sle-11-ppc64"},{"installer_updates":false,"name":"SLE11-HAE-SP4-Pool","description":"SLE11-HAE-SP4-Pool for sle-11-ppc64","enabled":true,"id":1756,"distro_target":"sle-11-ppc64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP4-Pool/sle-11-ppc64/"},{"enabled":true,"id":1757,"distro_target":"sle-11-ppc64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-HAE-SP4-Updates/sle-11-ppc64/","installer_updates":false,"name":"SLE11-HAE-SP4-Updates","description":"SLE11-HAE-SP4-Updates for sle-11-ppc64"},{"enabled":false,"id":1780,"distro_target":"sle-11-ppc64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-Public-Cloud-Module/sle-11-ppc64/","installer_updates":false,"name":"SLE11-Public-Cloud-Module","description":"SLE11-Public-Cloud-Module for sle-11-ppc64"},{"enabled":true,"id":1785,"distro_target":"sle-11-ppc64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP4-Pool/sle-11-ppc64/","installer_updates":false,"name":"SLES11-SP4-Pool","description":"SLES11-SP4-Pool for sle-11-ppc64"},{"description":"SLES11-SP4-Updates for sle-11-ppc64","installer_updates":false,"name":"SLES11-SP4-Updates","url":"https://updates.suse.com/repo/$RCE/SLES11-SP4-Updates/sle-11-ppc64/","distro_target":"sle-11-ppc64","autorefresh":true,"id":1786,"enabled":true},{"description":"SLE11-SP4-Debuginfo-Pool for sle-11-ppc64","installer_updates":false,"name":"SLE11-SP4-Debuginfo-Pool","distro_target":"sle-11-ppc64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP4-Debuginfo-Pool/sle-11-ppc64/","enabled":false,"id":1787},{"description":"SLE11-SP4-Debuginfo-Updates for sle-11-ppc64","installer_updates":false,"name":"SLE11-SP4-Debuginfo-Updates","distro_target":"sle-11-ppc64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP4-Debuginfo-Updates/sle-11-ppc64/","enabled":false,"id":1788},{"installer_updates":false,"name":"SLE11-SP4-SAP-Updates","description":"SLE11-SP4-SAP-Updates for sle-11-ppc64","enabled":true,"id":1862,"distro_target":"sle-11-ppc64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SP4-SAP-Updates/sle-11-ppc64/"},{"enabled":true,"id":1863,"autorefresh":true,"distro_target":"sle-11-ppc64","url":"https://updates.suse.com/repo/$RCE/SLE11-SP4-SAP-Pool/sle-11-ppc64/","name":"SLE11-SP4-SAP-Pool","installer_updates":false,"description":"SLE11-SP4-SAP-Pool for sle-11-ppc64"},{"description":"SLES11-SP4-LTSS-Updates for sle-11-ppc64","name":"SLES11-SP4-LTSS-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-ppc64","url":"https://updates.suse.com/repo/$RCE/SLES11-SP4-LTSS-Updates/sle-11-ppc64/","enabled":true,"id":3880}],"eula_url":"","arch":"ppc64","shortname":null,"description":null,"free":false,"extensions":[{"offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Software Development Kit","former_identifier":"sle-sdk","release_type":null,"friendly_name":"SUSE Linux Enterprise Software Development Kit 11 SP4","migration_extra":false,"recommended":false,"version":"11.4","extensions":[],"identifier":"sle-sdk","release_stage":"released","id":1320,"friendly_version":"11 SP4","eula_url":"","arch":null,"free":true,"shortname":null,"description":null,"product_type":"extension","cpe":null,"predecessor_ids":[],"product_class":"SLE-SDK","online_predecessor_ids":[],"repositories":[{"description":"SLE11-SDK-SP4-Pool for sle-11-i586","installer_updates":false,"name":"SLE11-SDK-SP4-Pool","distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP4-Pool/sle-11-i586/","enabled":true,"id":1817},{"name":"SLE11-SDK-SP4-Pool","installer_updates":false,"description":"SLE11-SDK-SP4-Pool for sle-11-ia64","id":1818,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP4-Pool/sle-11-ia64/","autorefresh":true,"distro_target":"sle-11-ia64"},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP4-Pool/sle-11-ppc64/","distro_target":"sle-11-ppc64","autorefresh":true,"id":1819,"enabled":true,"description":"SLE11-SDK-SP4-Pool for sle-11-ppc64","installer_updates":false,"name":"SLE11-SDK-SP4-Pool"},{"enabled":true,"id":1820,"distro_target":"sle-11-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP4-Pool/sle-11-s390x/","installer_updates":false,"name":"SLE11-SDK-SP4-Pool","description":"SLE11-SDK-SP4-Pool for sle-11-s390x"},{"installer_updates":false,"name":"SLE11-SDK-SP4-Pool","description":"SLE11-SDK-SP4-Pool for sle-11-x86_64","id":1821,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP4-Pool/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true},{"name":"SLE11-SDK-SP4-Updates","installer_updates":false,"description":"SLE11-SDK-SP4-Updates for sle-11-i586","enabled":true,"id":1822,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP4-Updates/sle-11-i586/"},{"name":"SLE11-SDK-SP4-Updates","installer_updates":false,"description":"SLE11-SDK-SP4-Updates for sle-11-ia64","enabled":true,"id":1823,"autorefresh":true,"distro_target":"sle-11-ia64","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP4-Updates/sle-11-ia64/"},{"distro_target":"sle-11-ppc64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP4-Updates/sle-11-ppc64/","enabled":true,"id":1824,"description":"SLE11-SDK-SP4-Updates for sle-11-ppc64","installer_updates":false,"name":"SLE11-SDK-SP4-Updates"},{"autorefresh":true,"distro_target":"sle-11-s390x","url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP4-Updates/sle-11-s390x/","enabled":true,"id":1825,"description":"SLE11-SDK-SP4-Updates for sle-11-s390x","name":"SLE11-SDK-SP4-Updates","installer_updates":false},{"url":"https://updates.suse.com/repo/$RCE/SLE11-SDK-SP4-Updates/sle-11-x86_64/","autorefresh":true,"distro_target":"sle-11-x86_64","id":1826,"enabled":true,"description":"SLE11-SDK-SP4-Updates for sle-11-x86_64","name":"SLE11-SDK-SP4-Updates","installer_updates":false}]}],"release_stage":"released","id":1331,"identifier":"SUSE_SLES_SAP","friendly_version":"11 SP4","name":"SUSE Linux Enterprise Server for SAP (PPC64)","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Server for SAP (PPC64) 11 SP4 ppc64","former_identifier":"SUSE_SLES_SAP","release_type":null,"recommended":false,"version":"11.4"},{"version":"12","recommended":false,"friendly_name":"Containers Module 12 x86_64","migration_extra":false,"release_type":null,"former_identifier":"sle-module-containers","name":"Containers Module","offline_predecessor_ids":[],"friendly_version":"12","id":1332,"release_stage":"released","identifier":"sle-module-containers","extensions":[],"description":"

This Module contains several packages revolving around containers and related tools.

","shortname":"Containers-Module","free":true,"arch":"x86_64","eula_url":"","online_predecessor_ids":[],"product_class":"MODULE","repositories":[{"enabled":true,"id":1864,"autorefresh":true,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/12/x86_64/update/","name":"SLE-Module-Containers12-Updates","installer_updates":false,"description":"SLE-Module-Containers12-Updates for sle-12-x86_64"},{"installer_updates":false,"name":"SLE-Module-Containers12-Debuginfo-Updates","description":"SLE-Module-Containers12-Debuginfo-Updates for sle-12-x86_64","id":1865,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/12/x86_64/update_debug/","distro_target":"sle-12-x86_64","autorefresh":true},{"autorefresh":false,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/12/x86_64/product/","enabled":true,"id":1866,"description":"SLE-Module-Containers12-Pool for sle-12-x86_64","name":"SLE-Module-Containers12-Pool","installer_updates":false},{"id":1867,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/12/x86_64/product_debug/","autorefresh":false,"distro_target":"sle-12-x86_64","name":"SLE-Module-Containers12-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-Containers12-Debuginfo-Pool for sle-12-x86_64"},{"autorefresh":false,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/12/x86_64/product_source/","enabled":false,"id":1957,"description":"SLE-Module-Containers12-Source-Pool for sle-12-x86_64","name":"SLE-Module-Containers12-Source-Pool","installer_updates":false}],"predecessor_ids":[],"cpe":"cpe:/o:suse:sle-module-containers:12","product_type":"module"},{"repositories":[{"installer_updates":false,"name":"SLED12-SP1-Updates","description":"SLED12-SP1-Updates for sle-12-x86_64","id":1870,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-DESKTOP/12-SP1/x86_64/update/","distro_target":"sle-12-x86_64","autorefresh":true},{"name":"SLED12-SP1-Debuginfo-Updates","installer_updates":false,"description":"SLED12-SP1-Debuginfo-Updates for sle-12-x86_64","enabled":false,"id":1871,"autorefresh":true,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-DESKTOP/12-SP1/x86_64/update_debug/"},{"name":"SLED12-SP1-Pool","installer_updates":false,"description":"SLED12-SP1-Pool for sle-12-x86_64","enabled":true,"id":1872,"autorefresh":false,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-DESKTOP/12-SP1/x86_64/product/"},{"description":"SLED12-SP1-Debuginfo-Pool for sle-12-x86_64","installer_updates":false,"name":"SLED12-SP1-Debuginfo-Pool","distro_target":"sle-12-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-DESKTOP/12-SP1/x86_64/product_debug/","enabled":false,"id":1874},{"description":"SLE-12-SP1-GA-Desktop-nVidia-Driver","installer_updates":false,"name":"SLE-12-SP1-GA-Desktop-nVidia-Driver","url":"http://download.nvidia.com/novell/sle12sp1/","distro_target":null,"autorefresh":true,"id":1911,"enabled":true},{"enabled":false,"id":1912,"autorefresh":false,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-DESKTOP/12-SP1/x86_64/product_source/","name":"SLED12-SP1-Source-Pool","installer_updates":false,"description":"SLED12-SP1-Source-Pool for sle-12-x86_64"}],"online_predecessor_ids":[1118],"product_class":"7260","predecessor_ids":[1118],"product_type":"base","cpe":"cpe:/o:suse:sled:12:sp1","free":false,"shortname":"SLED12-SP1","description":"SUSE Linux Enterprise offers a comprehensive suite of products built on a single code base. The platform addresses business needs from the smallest thin-client devices to the world's most powerful high-performance computing and mainframe servers. SUSE Linux Enterprise offers common management tools and technology certifications across the platform, and each product is enterprise-class. SUSE Linux Enterprise provides more than a cute desktop product or a basic server offering. It is the only Linux platform for enterprise computing, and it is now replacing UNIX* and Windows* as well.","arch":"x86_64","eula_url":"https://updates.suse.com/SUSE/Products/SLE-DESKTOP/12-SP1/x86_64/product.license/","friendly_version":"12 SP1","release_stage":"released","identifier":"SLED","id":1333,"extensions":[{"friendly_version":"12 SP1","release_stage":"released","id":1323,"identifier":"sle-sdk","extensions":[],"version":"12.1","recommended":false,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Software Development Kit 12 SP1 x86_64","release_type":null,"former_identifier":"sle-sdk","name":"SUSE Linux Enterprise Software Development Kit","offline_predecessor_ids":[],"repositories":[{"description":"SLE-SDK12-SP1-Updates for sle-12-x86_64","installer_updates":false,"name":"SLE-SDK12-SP1-Updates","url":"https://updates.suse.com/SUSE/Updates/SLE-SDK/12-SP1/x86_64/update/","distro_target":"sle-12-x86_64","autorefresh":true,"id":1850,"enabled":true},{"autorefresh":true,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-SDK/12-SP1/x86_64/update_debug/","enabled":false,"id":1851,"description":"SLE-SDK12-SP1-Debuginfo-Updates for sle-12-x86_64","name":"SLE-SDK12-SP1-Debuginfo-Updates","installer_updates":false},{"installer_updates":false,"name":"SLE-SDK12-SP1-Pool","description":"SLE-SDK12-SP1-Pool for sle-12-x86_64","enabled":true,"id":1852,"distro_target":"sle-12-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-SDK/12-SP1/x86_64/product/"},{"enabled":false,"id":1853,"autorefresh":false,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-SDK/12-SP1/x86_64/product_debug/","name":"SLE-SDK12-SP1-Debuginfo-Pool","installer_updates":false,"description":"SLE-SDK12-SP1-Debuginfo-Pool for sle-12-x86_64"},{"url":"https://updates.suse.com/SUSE/Products/SLE-SDK/12-SP1/x86_64/product_source/","autorefresh":false,"distro_target":"sle-12-x86_64","id":1907,"enabled":false,"description":"SLE-SDK12-SP1-Source-Pool for sle-12-x86_64","name":"SLE-SDK12-SP1-Source-Pool","installer_updates":false}],"online_predecessor_ids":[1223],"product_class":"SLE-SDK","predecessor_ids":[1223],"cpe":"cpe:/o:suse:sle-sdk:12:sp1","product_type":"extension","shortname":"SDK12-SP1","description":"

SUSE Linux Enterprise Software Development Kit is the Software Development Kit for the family of SUSE Linux Enterprise products. It is a free of charge extension for partners and customers working with SUSE Linux Enterprise Server and Desktop and derived products.

Packages on the SDK are delivered without L3 support; maintenance updates will be done for critical security and critical non-security issues, and where needed to remain in sync with packages delivered in the SUSE Linux Enterprise Server and Desktop products.

Packages to rebuild SUSE Linux Enterprise Server are not part of the SUSE Linux Enterprise Software Development Kit.

","free":true,"arch":"x86_64","eula_url":"https://updates.suse.com/SUSE/Products/SLE-SDK/12-SP1/x86_64/product.license/"},{"friendly_version":"12 SP1","identifier":"PackageHub","release_stage":"released","id":1476,"extensions":[],"version":"12.1","recommended":false,"release_type":null,"former_identifier":"PackageHub","friendly_name":"SUSE Package Hub 12 SP1 x86_64","migration_extra":false,"offline_predecessor_ids":[],"name":"SUSE Package Hub","repositories":[{"url":"https://updates.suse.com/SUSE/Backports/SLE-12-SP1_x86_64/standard/","distro_target":"sle-12-x86_64","autorefresh":false,"id":2336,"enabled":true,"description":"SUSE-PackageHub-12-SP1-Standard-Pool for sle-12-x86_64","installer_updates":false,"name":"SUSE-PackageHub-12-SP1-Standard-Pool"},{"autorefresh":true,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Backports/SLE-12-SP1_x86_64/standard_debug/","enabled":false,"id":2337,"description":"SUSE-PackageHub-12-SP1-Debuginfo for sle-12-x86_64","name":"SUSE-PackageHub-12-SP1-Debuginfo","installer_updates":false},{"installer_updates":false,"name":"SUSE-PackageHub-12-SP1-Pool","description":"SUSE-PackageHub-12-SP1-Pool for sle-12-x86_64","id":2338,"enabled":true,"url":"https://updates.suse.com/SUSE/Backports/SLE-12-SP1_x86_64/product/","distro_target":"sle-12-x86_64","autorefresh":false}],"online_predecessor_ids":[1473],"product_class":"7261","predecessor_ids":[1473],"product_type":"extension","cpe":"cpe:/o:suse:packagehub:12:sp1","free":true,"description":"SUSE Package Hub is a free of charge extension providing access to community maintained packages built to run on SUSE Linux Enterprise Server. Built from the same sources used in the openSUSE distributions, these quality packages provide additional software to what is found in the SUSE Linux Enterprise Server product. Packages from the Package Hub are delivered without L3 support from SUSE. General updates and fixes to the packages in SUSE Package Hub are provided by the openSUSE community based on their discretion though SUSE will monitor and ensure that any known critical security issues will be addressed. Packages in the Package Hub are approved by SUSE for use with SUSE Linux Enterprise Server 12 and to not interfere with the supportability of SUSE Linux Enterprise Server it's modules and extensions. For more information about SUSE Package Hub please visit https://packagehub.suse.com.","shortname":"SUSE-PackageHub-12-SP1","arch":"x86_64","eula_url":""},{"predecessor_ids":[],"product_class":"MODULE","online_predecessor_ids":[],"repositories":[{"description":"SLE-Module-CAP-Tools-12-Updates for sle-12-x86_64","name":"SLE-Module-CAP-Tools-12-Updates","installer_updates":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-CAP-Tools/12/x86_64/update/","autorefresh":true,"distro_target":"sle-12-x86_64","id":2912,"enabled":true},{"description":"SLE-Module-CAP-Tools-12-Debuginfo-Updates for sle-12-x86_64","installer_updates":false,"name":"SLE-Module-CAP-Tools-12-Debuginfo-Updates","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-CAP-Tools/12/x86_64/update_debug/","distro_target":"sle-12-x86_64","autorefresh":true,"id":2913,"enabled":false},{"enabled":true,"id":2914,"autorefresh":false,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-CAP-Tools/12/x86_64/product/","name":"SLE-Module-CAP-Tools-12-Pool","installer_updates":false,"description":"SLE-Module-CAP-Tools-12-Pool for sle-12-x86_64"},{"name":"SLE-Module-CAP-Tools-12-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-CAP-Tools-12-Debuginfo-Pool for sle-12-x86_64","id":2915,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-CAP-Tools/12/x86_64/product_debug/","autorefresh":false,"distro_target":"sle-12-x86_64"},{"id":2916,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-CAP-Tools/12/x86_64/product_source/","autorefresh":false,"distro_target":"sle-12-x86_64","name":"SLE-Module-CAP-Tools-12-Source-Pool","installer_updates":false,"description":"SLE-Module-CAP-Tools-12-Source-Pool for sle-12-x86_64"}],"cpe":"cpe:/o:suse:sle-module-cap-tools:12","product_type":"module","shortname":"SUSE-CAP-Tools-Module","description":"

The SUSE Cloud Application Platform Tools Module is a collection of tools that enables you to interact with the SUSE Cloud Application Platform product itself, providing the commandline client for instance.

Access to the SUSE Cloud Application Platform Tools Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself; please check the Release Notes for further details.

","free":true,"eula_url":"","arch":"x86_64","friendly_version":"12","extensions":[],"identifier":"sle-module-cap-tools","release_stage":"released","id":1678,"recommended":false,"version":"12","name":"SUSE Cloud Application Platform Tools Module","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"SUSE Cloud Application Platform Tools Module 12 x86_64","release_type":null,"former_identifier":"sle-module-cap-tools"}],"version":"12.1","recommended":false,"former_identifier":"SLED","release_type":null,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Desktop 12 SP1 x86_64","offline_predecessor_ids":[887,901,902,924,1313],"name":"SUSE Linux Enterprise Desktop"},{"former_identifier":"SLES","release_type":null,"friendly_name":"SUSE Linux Enterprise Server 12 SP1 ppc64le","migration_extra":false,"offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Server","version":"12.1","recommended":false,"release_stage":"released","identifier":"SLES","id":1334,"extensions":[{"extensions":[],"release_stage":"released","identifier":"sle-module-legacy","id":1148,"friendly_version":"12","name":"Legacy Module","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"Legacy Module 12 ppc64le","release_type":null,"former_identifier":"sle-module-legacy","recommended":false,"version":"12","cpe":"cpe:/o:suse:sle-module-legacy:12","product_type":"module","predecessor_ids":[],"online_predecessor_ids":[],"repositories":[{"description":"SLE-Module-Legacy12-Updates for sle-12-ppc64le","name":"SLE-Module-Legacy12-Updates","installer_updates":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/12/ppc64le/update/","autorefresh":true,"distro_target":"sle-12-ppc64le","id":1668,"enabled":true},{"description":"SLE-Module-Legacy12-Debuginfo-Updates for sle-12-ppc64le","name":"SLE-Module-Legacy12-Debuginfo-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-12-ppc64le","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/12/ppc64le/update_debug/","enabled":false,"id":1669},{"installer_updates":false,"name":"SLE-Module-Legacy12-Pool","description":"SLE-Module-Legacy12-Pool for sle-12-ppc64le","enabled":true,"id":1670,"distro_target":"sle-12-ppc64le","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/12/ppc64le/product/"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/12/ppc64le/product_debug/","autorefresh":false,"distro_target":"sle-12-ppc64le","id":1671,"enabled":false,"description":"SLE-Module-Legacy12-Debuginfo-Pool for sle-12-ppc64le","name":"SLE-Module-Legacy12-Debuginfo-Pool","installer_updates":false},{"enabled":false,"id":1987,"autorefresh":false,"distro_target":"sle-12-ppc64le","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/12/ppc64le/product_source/","name":"SLE-Module-Legacy12-Source-Pool","installer_updates":false,"description":"SLE-Module-Legacy12-Source-Pool for sle-12-ppc64le"}],"product_class":"MODULE","eula_url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/12/ppc64le/product.license/","arch":"ppc64le","shortname":"Legacy-Module","description":"

The Legacy Module helps you migrating applications from SUSE Linux Enterprise 10 and 11 and other systems to SUSE Linux Enterprise 12, by providing packages which are discontinued on SUSE Linux Enterprise Server, such as: sendmail, syslog-ng, IBM Java6, and a number of libraries (for example openssl-0.9.8).

Access to the Legacy Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself. Packages in the this module are usually supported for at most three years. Support for Sendmail and IBM Java 6 will end in September 2017 the latest.

","free":true},{"extensions":[],"id":1151,"release_stage":"released","identifier":"sle-module-web-scripting","friendly_version":"12","name":"Web and Scripting Module","offline_predecessor_ids":[],"friendly_name":"Web and Scripting Module 12 ppc64le","migration_extra":false,"release_type":null,"former_identifier":"sle-module-web-scripting","recommended":false,"version":"12","cpe":"cpe:/o:suse:sle-module-web-scripting:12","product_type":"module","predecessor_ids":[],"product_class":"MODULE","online_predecessor_ids":[],"repositories":[{"distro_target":"sle-12-ppc64le","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/12/ppc64le/update/","enabled":true,"id":1680,"description":"SLE-Module-Web-Scripting12-Updates for sle-12-ppc64le","installer_updates":false,"name":"SLE-Module-Web-Scripting12-Updates"},{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/12/ppc64le/update_debug/","distro_target":"sle-12-ppc64le","autorefresh":true,"id":1681,"enabled":false,"description":"SLE-Module-Web-Scripting12-Debuginfo-Updates for sle-12-ppc64le","installer_updates":false,"name":"SLE-Module-Web-Scripting12-Debuginfo-Updates"},{"installer_updates":false,"name":"SLE-Module-Web-Scripting12-Pool","description":"SLE-Module-Web-Scripting12-Pool for sle-12-ppc64le","id":1682,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/12/ppc64le/product/","distro_target":"sle-12-ppc64le","autorefresh":false},{"distro_target":"sle-12-ppc64le","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/12/ppc64le/product_debug/","enabled":false,"id":1683,"description":"SLE-Module-Web-Scripting12-Debuginfo-Pool for sle-12-ppc64le","installer_updates":false,"name":"SLE-Module-Web-Scripting12-Debuginfo-Pool"},{"autorefresh":false,"distro_target":"sle-12-ppc64le","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/12/ppc64le/product_source/","enabled":false,"id":1990,"description":"SLE-Module-Web-Scripting12-Source-Pool for sle-12-ppc64le","name":"SLE-Module-Web-Scripting12-Source-Pool","installer_updates":false}],"eula_url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/12/ppc64le/product.license/","arch":"ppc64le","shortname":"Web-and-Scripting-Module","description":"

The SUSE Linux Enterprise Web and Scripting Module delivers a comprehensive suite of scripting languages, frameworks, and related tools helping developers and systems administrators accelerate the creation of stable, modern web applications, using dynamic languages, such as PHP, Ruby on Rails, and Python.

Access to the Web and Scripting Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself: Package versions in the this module are usually supported for at most three years. We are planning to release more recent versions on a schedule of approximately 18 month; the exact dates may differ per package.

","free":true},{"shortname":"Public-Cloud-Module","description":"

The Public Cloud Module is a collection of tools that enables you to create and manage cloud images from the commandline on SUSE Linux Enterprise Server. When building your own images with KIWI or SUSE Studio, initialization code specific to the target cloud is included in that image.

Access to the Public Cloud Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself; please check the Release Notes for further details.

","free":true,"arch":"ppc64le","eula_url":"","repositories":[{"enabled":true,"id":1692,"autorefresh":true,"distro_target":"sle-12-ppc64le","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/12/ppc64le/update/","name":"SLE-Module-Public-Cloud12-Updates","installer_updates":false,"description":"SLE-Module-Public-Cloud12-Updates for sle-12-ppc64le"},{"enabled":false,"id":1693,"distro_target":"sle-12-ppc64le","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/12/ppc64le/update_debug/","installer_updates":false,"name":"SLE-Module-Public-Cloud12-Debuginfo-Updates","description":"SLE-Module-Public-Cloud12-Debuginfo-Updates for sle-12-ppc64le"},{"enabled":true,"id":1694,"distro_target":"sle-12-ppc64le","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/12/ppc64le/product/","installer_updates":false,"name":"SLE-Module-Public-Cloud12-Pool","description":"SLE-Module-Public-Cloud12-Pool for sle-12-ppc64le"},{"autorefresh":false,"distro_target":"sle-12-ppc64le","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/12/ppc64le/product_debug/","enabled":false,"id":1695,"description":"SLE-Module-Public-Cloud12-Debuginfo-Pool for sle-12-ppc64le","name":"SLE-Module-Public-Cloud12-Debuginfo-Pool","installer_updates":false},{"id":1993,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/12/ppc64le/product_source/","distro_target":"sle-12-ppc64le","autorefresh":false,"installer_updates":false,"name":"SLE-Module-Public-Cloud12-Source-Pool","description":"SLE-Module-Public-Cloud12-Source-Pool for sle-12-ppc64le"}],"online_predecessor_ids":[],"product_class":"MODULE","predecessor_ids":[],"cpe":"cpe:/o:suse:sle-module-public-cloud:12","product_type":"module","version":"12","recommended":false,"migration_extra":false,"friendly_name":"Public Cloud Module 12 ppc64le","release_type":null,"former_identifier":"sle-module-public-cloud","name":"Public Cloud Module","offline_predecessor_ids":[],"friendly_version":"12","identifier":"sle-module-public-cloud","release_stage":"released","id":1218,"extensions":[]},{"eula_url":"","arch":"ppc64le","description":"IBM DLPAR SDK for SLE 12","shortname":"IBMDLPS12","free":true,"cpe":"cpe:/o:suse:ibm-dlpar-sdk:12","product_type":"extension","predecessor_ids":[],"repositories":[{"id":4429,"enabled":true,"url":"https://public.dhe.ibm.com/software/server/POWER/Linux/toolchain/at/suse/SLES_12/","distro_target":null,"autorefresh":true,"installer_updates":false,"name":"IBM-DLPAR-SDK","description":"IBM-DLPAR-SDK"}],"online_predecessor_ids":[],"product_class":"SLES-PPC","name":"IBM DLPAR SDK for SLE","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"IBM DLPAR SDK for SLE 12 ppc64le","release_type":null,"former_identifier":"ibm-dlpar-sdk","recommended":false,"version":"12","extensions":[],"id":1249,"release_stage":"released","identifier":"ibm-dlpar-sdk","friendly_version":"12"},{"product_class":"SLES-PPC","online_predecessor_ids":[],"repositories":[{"id":6216,"enabled":true,"url":"https://public.dhe.ibm.com/software/server/POWER/Linux/yum/OSS/SLES/12/ppc64le/","autorefresh":true,"distro_target":null,"name":"IBM-DLPAR-utils","installer_updates":false,"description":"IBM-DLPAR-utils"}],"predecessor_ids":[],"cpe":"cpe:/o:suse:ibm-dlpar-utils:12","product_type":"extension","shortname":"IBMDLPU12","description":"IBM DLPAR Utils for SLE 12","free":true,"arch":"ppc64le","eula_url":"https://public.dhe.ibm.com/software/server/POWER/Linux/yum/OSS/SLES/12/ppc64le.license/","friendly_version":"12","release_stage":"released","id":1250,"identifier":"ibm-dlpar-utils","extensions":[],"version":"12","recommended":false,"migration_extra":false,"friendly_name":"IBM DLPAR Utils for SLE 12 ppc64le","release_type":null,"former_identifier":"ibm-dlpar-utils","name":"IBM DLPAR Utils for SLE","offline_predecessor_ids":[]},{"version":"12","recommended":false,"migration_extra":false,"friendly_name":"Advanced Systems Management Module 12 ppc64le","former_identifier":"sle-module-adv-systems-management","release_type":null,"name":"Advanced Systems Management Module","offline_predecessor_ids":[],"friendly_version":"12","identifier":"sle-module-adv-systems-management","release_stage":"released","id":1294,"extensions":[],"description":"

This Module contains current versions of the popular configuration management frameworks Puppet and CFEngine as well as the new systems management toolbox called machinery.

The machinery tool will be frequently updated and is SUSE's upcoming systems management toolbox for inspecting and validating systems remotely, storing their system description and creating new systems to deploy them in datacenters and clouds.

","shortname":"Adv-Sys-Mgmt-Module","free":true,"arch":"ppc64le","eula_url":"","repositories":[{"description":"SLE-Module-Adv-Systems-Management12-Updates for sle-12-ppc64le","installer_updates":false,"name":"SLE-Module-Adv-Systems-Management12-Updates","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Adv-Systems-Management/12/ppc64le/update/","distro_target":"sle-12-ppc64le","autorefresh":true,"id":1762,"enabled":true},{"installer_updates":false,"name":"SLE-Module-Adv-Systems-Management12-Debuginfo-Updates","description":"SLE-Module-Adv-Systems-Management12-Debuginfo-Updates for sle-12-ppc64le","id":1763,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Adv-Systems-Management/12/ppc64le/update_debug/","distro_target":"sle-12-ppc64le","autorefresh":true},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Adv-Systems-Management/12/ppc64le/product/","autorefresh":false,"distro_target":"sle-12-ppc64le","id":1764,"enabled":true,"description":"SLE-Module-Adv-Systems-Management12-Pool for sle-12-ppc64le","name":"SLE-Module-Adv-Systems-Management12-Pool","installer_updates":false},{"installer_updates":false,"name":"SLE-Module-Adv-Systems-Management12-Debuginfo-Pool","description":"SLE-Module-Adv-Systems-Management12-Debuginfo-Pool for sle-12-ppc64le","enabled":false,"id":1765,"distro_target":"sle-12-ppc64le","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Adv-Systems-Management/12/ppc64le/product_debug/"},{"description":"SLE-Module-Adv-Systems-Management12-Source-Pool for sle-12-ppc64le","installer_updates":false,"name":"SLE-Module-Adv-Systems-Management12-Source-Pool","distro_target":"sle-12-ppc64le","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Adv-Systems-Management/12/ppc64le/product_source/","enabled":false,"id":1996}],"online_predecessor_ids":[],"product_class":"MODULE","predecessor_ids":[],"cpe":"cpe:/o:suse:sle-module-adv-systems-management:12","product_type":"module"},{"product_type":"module","cpe":"cpe:/o:suse:sle-module-toolchain:12","predecessor_ids":[],"product_class":"MODULE","online_predecessor_ids":[],"repositories":[{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Toolchain/12/ppc64le/update/","distro_target":"sle-12-ppc64le","autorefresh":true,"id":1895,"enabled":true,"description":"SLE-Module-Toolchain12-Updates for sle-12-ppc64le","installer_updates":false,"name":"SLE-Module-Toolchain12-Updates"},{"enabled":false,"id":1896,"distro_target":"sle-12-ppc64le","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Toolchain/12/ppc64le/update_debug/","installer_updates":false,"name":"SLE-Module-Toolchain12-Debuginfo-Updates","description":"SLE-Module-Toolchain12-Debuginfo-Updates for sle-12-ppc64le"},{"name":"SLE-Module-Toolchain12-Pool","installer_updates":false,"description":"SLE-Module-Toolchain12-Pool for sle-12-ppc64le","id":1897,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Toolchain/12/ppc64le/product/","autorefresh":false,"distro_target":"sle-12-ppc64le"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Toolchain/12/ppc64le/product_debug/","autorefresh":false,"distro_target":"sle-12-ppc64le","id":1898,"enabled":false,"description":"SLE-Module-Toolchain12-Debuginfo-Pool for sle-12-ppc64le","name":"SLE-Module-Toolchain12-Debuginfo-Pool","installer_updates":false}],"eula_url":"","arch":"ppc64le","free":true,"description":"Via this Module you will have access to a more recent GCC and Toolchain in addition to the default compiler of SUSE Linux Enterprise. Access to the Toolchain Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself. Please check the Release Notes for further details.","shortname":"Toolchain-Module","extensions":[],"id":1339,"release_stage":"released","identifier":"sle-module-toolchain","friendly_version":"12","offline_predecessor_ids":[],"name":"Toolchain Module","release_type":null,"former_identifier":"sle-module-toolchain","friendly_name":"Toolchain Module 12 ppc64le","migration_extra":false,"recommended":false,"version":"12"},{"cpe":"cpe:/o:suse:sle-sdk:12:sp1","product_type":"extension","online_predecessor_ids":[1145],"repositories":[{"id":1922,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-SDK/12-SP1/ppc64le/update/","autorefresh":true,"distro_target":"sle-12-ppc64le","name":"SLE-SDK12-SP1-Updates","installer_updates":false,"description":"SLE-SDK12-SP1-Updates for sle-12-ppc64le"},{"autorefresh":true,"distro_target":"sle-12-ppc64le","url":"https://updates.suse.com/SUSE/Updates/SLE-SDK/12-SP1/ppc64le/update_debug/","enabled":false,"id":1923,"description":"SLE-SDK12-SP1-Debuginfo-Updates for sle-12-ppc64le","name":"SLE-SDK12-SP1-Debuginfo-Updates","installer_updates":false},{"description":"SLE-SDK12-SP1-Pool for sle-12-ppc64le","name":"SLE-SDK12-SP1-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-12-ppc64le","url":"https://updates.suse.com/SUSE/Products/SLE-SDK/12-SP1/ppc64le/product/","enabled":true,"id":1924},{"url":"https://updates.suse.com/SUSE/Products/SLE-SDK/12-SP1/ppc64le/product_debug/","distro_target":"sle-12-ppc64le","autorefresh":false,"id":1925,"enabled":false,"description":"SLE-SDK12-SP1-Debuginfo-Pool for sle-12-ppc64le","installer_updates":false,"name":"SLE-SDK12-SP1-Debuginfo-Pool"},{"autorefresh":false,"distro_target":"sle-12-ppc64le","url":"https://updates.suse.com/SUSE/Products/SLE-SDK/12-SP1/ppc64le/product_source/","enabled":false,"id":1926,"description":"SLE-SDK12-SP1-Source-Pool for sle-12-ppc64le","name":"SLE-SDK12-SP1-Source-Pool","installer_updates":false}],"product_class":"SLE-SDK","predecessor_ids":[1145],"arch":"ppc64le","eula_url":"https://updates.suse.com/SUSE/Products/SLE-SDK/12-SP1/ppc64le/product.license/","description":"

SUSE Linux Enterprise Software Development Kit is the Software Development Kit for the family of SUSE Linux Enterprise products. It is a free of charge extension for partners and customers working with SUSE Linux Enterprise Server and Desktop and derived products.

Packages on the SDK are delivered without L3 support; maintenance updates will be done for critical security and critical non-security issues, and where needed to remain in sync with packages delivered in the SUSE Linux Enterprise Server and Desktop products.

Packages to rebuild SUSE Linux Enterprise Server are not part of the SUSE Linux Enterprise Software Development Kit.

","shortname":"SDK12-SP1","free":true,"release_stage":"released","id":1343,"identifier":"sle-sdk","extensions":[],"friendly_version":"12 SP1","migration_extra":false,"friendly_name":"SUSE Linux Enterprise Software Development Kit 12 SP1 ppc64le","former_identifier":"sle-sdk","release_type":null,"name":"SUSE Linux Enterprise Software Development Kit","offline_predecessor_ids":[],"version":"12.1","recommended":false},{"friendly_version":"12","release_stage":"released","identifier":"sle-module-containers","id":1353,"extensions":[],"version":"12","recommended":false,"friendly_name":"Containers Module 12 ppc64le","migration_extra":false,"release_type":null,"former_identifier":"sle-module-containers","name":"Containers Module","offline_predecessor_ids":[],"product_class":"MODULE","online_predecessor_ids":[],"repositories":[{"name":"SLE-Module-Containers12-Updates","installer_updates":false,"description":"SLE-Module-Containers12-Updates for sle-12-ppc64le","enabled":true,"id":1972,"autorefresh":true,"distro_target":"sle-12-ppc64le","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/12/ppc64le/update/"},{"description":"SLE-Module-Containers12-Debuginfo-Updates for sle-12-ppc64le","installer_updates":false,"name":"SLE-Module-Containers12-Debuginfo-Updates","distro_target":"sle-12-ppc64le","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/12/ppc64le/update_debug/","enabled":false,"id":1973},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/12/ppc64le/product/","distro_target":"sle-12-ppc64le","autorefresh":false,"id":1974,"enabled":true,"description":"SLE-Module-Containers12-Pool for sle-12-ppc64le","installer_updates":false,"name":"SLE-Module-Containers12-Pool"},{"description":"SLE-Module-Containers12-Debuginfo-Pool for sle-12-ppc64le","installer_updates":false,"name":"SLE-Module-Containers12-Debuginfo-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/12/ppc64le/product_debug/","distro_target":"sle-12-ppc64le","autorefresh":false,"id":1975,"enabled":false},{"installer_updates":false,"name":"SLE-Module-Containers12-Source-Pool","description":"SLE-Module-Containers12-Source-Pool for sle-12-ppc64le","enabled":false,"id":1976,"distro_target":"sle-12-ppc64le","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/12/ppc64le/product_source/"}],"predecessor_ids":[],"cpe":"cpe:/o:suse:sle-module-containers:12","product_type":"module","shortname":"Containers-Module","description":"

This Module contains several packages revolving around containers and related tools.

","free":true,"arch":"ppc64le","eula_url":""},{"offline_predecessor_ids":[],"name":"SUSE Package Hub","former_identifier":"PackageHub","release_type":null,"friendly_name":"SUSE Package Hub 12 SP1 ppc64le","migration_extra":false,"recommended":false,"version":"12.1","extensions":[],"release_stage":"released","identifier":"PackageHub","id":1478,"friendly_version":"12 SP1","eula_url":"","arch":"ppc64le","free":true,"shortname":"SUSE-PackageHub-12-SP1","description":"SUSE Package Hub is a free of charge extension providing access to community maintained packages built to run on SUSE Linux Enterprise Server. Built from the same sources used in the openSUSE distributions, these quality packages provide additional software to what is found in the SUSE Linux Enterprise Server product. Packages from the Package Hub are delivered without L3 support from SUSE. General updates and fixes to the packages in SUSE Package Hub are provided by the openSUSE community based on their discretion though SUSE will monitor and ensure that any known critical security issues will be addressed. Packages in the Package Hub are approved by SUSE for use with SUSE Linux Enterprise Server 12 and to not interfere with the supportability of SUSE Linux Enterprise Server it's modules and extensions. For more information about SUSE Package Hub please visit https://packagehub.suse.com.","product_type":"extension","cpe":"cpe:/o:suse:packagehub:12:sp1","predecessor_ids":[1475],"repositories":[{"description":"SUSE-PackageHub-12-SP1-Standard-Pool for sle-12-ppc64le","installer_updates":false,"name":"SUSE-PackageHub-12-SP1-Standard-Pool","distro_target":"sle-12-ppc64le","autorefresh":false,"url":"https://updates.suse.com/SUSE/Backports/SLE-12-SP1_ppc64le/standard/","enabled":true,"id":2342},{"description":"SUSE-PackageHub-12-SP1-Debuginfo for sle-12-ppc64le","name":"SUSE-PackageHub-12-SP1-Debuginfo","installer_updates":false,"url":"https://updates.suse.com/SUSE/Backports/SLE-12-SP1_ppc64le/standard_debug/","autorefresh":true,"distro_target":"sle-12-ppc64le","id":2343,"enabled":false},{"autorefresh":false,"distro_target":"sle-12-ppc64le","url":"https://updates.suse.com/SUSE/Backports/SLE-12-SP1_ppc64le/product/","enabled":true,"id":2344,"description":"SUSE-PackageHub-12-SP1-Pool for sle-12-ppc64le","name":"SUSE-PackageHub-12-SP1-Pool","installer_updates":false}],"online_predecessor_ids":[1475],"product_class":"SLES-PPC"}],"friendly_version":"12 SP1","arch":"ppc64le","eula_url":"https://updates.suse.com/SUSE/Products/SLE-SERVER/12-SP1/ppc64le/product.license/","free":false,"shortname":"SLES12-SP1","description":"SUSE Linux Enterprise offers a comprehensive suite of products built on a single code base. The platform addresses business needs from the smallest thin-client devices to the world's most powerful high-performance computing and mainframe servers. SUSE Linux Enterprise offers common management tools and technology certifications across the platform, and each product is enterprise-class.","product_type":"base","cpe":"cpe:/o:suse:sles:12:sp1","repositories":[{"description":"SLES12-SP1-Updates for sle-12-ppc64le","installer_updates":false,"name":"SLES12-SP1-Updates","distro_target":"sle-12-ppc64le","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-SP1/ppc64le/update/","enabled":true,"id":1875},{"url":"https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-SP1/ppc64le/update_debug/","distro_target":"sle-12-ppc64le","autorefresh":true,"id":1876,"enabled":false,"description":"SLES12-SP1-Debuginfo-Updates for sle-12-ppc64le","installer_updates":false,"name":"SLES12-SP1-Debuginfo-Updates"},{"id":1877,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-SERVER/12-SP1/ppc64le/product/","distro_target":"sle-12-ppc64le","autorefresh":false,"installer_updates":false,"name":"SLES12-SP1-Pool","description":"SLES12-SP1-Pool for sle-12-ppc64le"},{"id":1878,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-SERVER/12-SP1/ppc64le/product_debug/","autorefresh":false,"distro_target":"sle-12-ppc64le","name":"SLES12-SP1-Debuginfo-Pool","installer_updates":false,"description":"SLES12-SP1-Debuginfo-Pool for sle-12-ppc64le"},{"url":"https://updates.suse.com/SUSE/Products/SLE-SERVER/12-SP1/ppc64le/product_source/","autorefresh":false,"distro_target":"sle-12-ppc64le","id":1908,"enabled":false,"description":"SLES12-SP1-Source-Pool for sle-12-ppc64le","name":"SLES12-SP1-Source-Pool","installer_updates":false}],"online_predecessor_ids":[1116],"product_class":"SLES-PPC","predecessor_ids":[1116]},{"description":"SUSE Linux Enterprise offers a comprehensive suite of products built on a single code base. The platform addresses business needs from the smallest thin-client devices to the world's most powerful high-performance computing and mainframe servers. SUSE Linux Enterprise offers common management tools and technology certifications across the platform, and each product is enterprise-class.","shortname":"SLES12-SP1","free":false,"eula_url":"https://updates.suse.com/SUSE/Products/SLE-SERVER/12-SP1/s390x/product.license/","arch":"s390x","predecessor_ids":[1115],"repositories":[{"autorefresh":true,"distro_target":"sle-12-s390x","url":"https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-SP1/s390x/update/","enabled":true,"id":1879,"description":"SLES12-SP1-Updates for sle-12-s390x","name":"SLES12-SP1-Updates","installer_updates":false},{"description":"SLES12-SP1-Debuginfo-Updates for sle-12-s390x","installer_updates":false,"name":"SLES12-SP1-Debuginfo-Updates","url":"https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-SP1/s390x/update_debug/","distro_target":"sle-12-s390x","autorefresh":true,"id":1880,"enabled":false},{"distro_target":"sle-12-s390x","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-SERVER/12-SP1/s390x/product/","enabled":true,"id":1881,"description":"SLES12-SP1-Pool for sle-12-s390x","installer_updates":false,"name":"SLES12-SP1-Pool"},{"id":1882,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-SERVER/12-SP1/s390x/product_debug/","distro_target":"sle-12-s390x","autorefresh":false,"installer_updates":false,"name":"SLES12-SP1-Debuginfo-Pool","description":"SLES12-SP1-Debuginfo-Pool for sle-12-s390x"},{"url":"https://updates.suse.com/SUSE/Products/SLE-SERVER/12-SP1/s390x/product_source/","autorefresh":false,"distro_target":"sle-12-s390x","id":1909,"enabled":false,"description":"SLES12-SP1-Source-Pool for sle-12-s390x","name":"SLES12-SP1-Source-Pool","installer_updates":false}],"online_predecessor_ids":[1115],"product_class":"SLES-Z","cpe":"cpe:/o:suse:sles:12:sp1","product_type":"base","recommended":false,"version":"12.1","name":"SUSE Linux Enterprise Server","offline_predecessor_ids":[693,745,755,805,1303],"friendly_name":"SUSE Linux Enterprise Server 12 SP1 s390x","migration_extra":false,"former_identifier":"SLES","release_type":null,"friendly_version":"12 SP1","extensions":[{"eula_url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/12/s390x/product.license/","arch":"s390x","shortname":"Legacy-Module","description":"

The Legacy Module helps you migrating applications from SUSE Linux Enterprise 10 and 11 and other systems to SUSE Linux Enterprise 12, by providing packages which are discontinued on SUSE Linux Enterprise Server, such as: sendmail, syslog-ng, IBM Java6, and a number of libraries (for example openssl-0.9.8).

Access to the Legacy Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself. Packages in the this module are usually supported for at most three years. Support for Sendmail and IBM Java 6 will end in September 2017 the latest.

","free":true,"cpe":"cpe:/o:suse:sle-module-legacy:12","product_type":"module","predecessor_ids":[],"repositories":[{"installer_updates":false,"name":"SLE-Module-Legacy12-Updates","description":"SLE-Module-Legacy12-Updates for sle-12-s390x","enabled":true,"id":1672,"distro_target":"sle-12-s390x","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/12/s390x/update/"},{"description":"SLE-Module-Legacy12-Debuginfo-Updates for sle-12-s390x","installer_updates":false,"name":"SLE-Module-Legacy12-Debuginfo-Updates","distro_target":"sle-12-s390x","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/12/s390x/update_debug/","enabled":false,"id":1673},{"description":"SLE-Module-Legacy12-Pool for sle-12-s390x","installer_updates":false,"name":"SLE-Module-Legacy12-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/12/s390x/product/","distro_target":"sle-12-s390x","autorefresh":false,"id":1674,"enabled":true},{"name":"SLE-Module-Legacy12-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-Legacy12-Debuginfo-Pool for sle-12-s390x","id":1675,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/12/s390x/product_debug/","autorefresh":false,"distro_target":"sle-12-s390x"},{"distro_target":"sle-12-s390x","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/12/s390x/product_source/","enabled":false,"id":1988,"description":"SLE-Module-Legacy12-Source-Pool for sle-12-s390x","installer_updates":false,"name":"SLE-Module-Legacy12-Source-Pool"}],"online_predecessor_ids":[],"product_class":"MODULE","name":"Legacy Module","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"Legacy Module 12 s390x","former_identifier":"sle-module-legacy","release_type":null,"recommended":false,"version":"12","extensions":[],"release_stage":"released","identifier":"sle-module-legacy","id":1149,"friendly_version":"12"},{"friendly_version":"12","extensions":[],"identifier":"sle-module-web-scripting","release_stage":"released","id":1152,"recommended":false,"version":"12","offline_predecessor_ids":[],"name":"Web and Scripting Module","former_identifier":"sle-module-web-scripting","release_type":null,"friendly_name":"Web and Scripting Module 12 s390x","migration_extra":false,"predecessor_ids":[],"online_predecessor_ids":[],"repositories":[{"name":"SLE-Module-Web-Scripting12-Updates","installer_updates":false,"description":"SLE-Module-Web-Scripting12-Updates for sle-12-s390x","enabled":true,"id":1684,"autorefresh":true,"distro_target":"sle-12-s390x","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/12/s390x/update/"},{"description":"SLE-Module-Web-Scripting12-Debuginfo-Updates for sle-12-s390x","name":"SLE-Module-Web-Scripting12-Debuginfo-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-12-s390x","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/12/s390x/update_debug/","enabled":false,"id":1685},{"installer_updates":false,"name":"SLE-Module-Web-Scripting12-Pool","description":"SLE-Module-Web-Scripting12-Pool for sle-12-s390x","id":1686,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/12/s390x/product/","distro_target":"sle-12-s390x","autorefresh":false},{"id":1687,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/12/s390x/product_debug/","autorefresh":false,"distro_target":"sle-12-s390x","name":"SLE-Module-Web-Scripting12-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-Web-Scripting12-Debuginfo-Pool for sle-12-s390x"},{"name":"SLE-Module-Web-Scripting12-Source-Pool","installer_updates":false,"description":"SLE-Module-Web-Scripting12-Source-Pool for sle-12-s390x","enabled":false,"id":1991,"autorefresh":false,"distro_target":"sle-12-s390x","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/12/s390x/product_source/"}],"product_class":"MODULE","product_type":"module","cpe":"cpe:/o:suse:sle-module-web-scripting:12","free":true,"description":"

The SUSE Linux Enterprise Web and Scripting Module delivers a comprehensive suite of scripting languages, frameworks, and related tools helping developers and systems administrators accelerate the creation of stable, modern web applications, using dynamic languages, such as PHP, Ruby on Rails, and Python.

Access to the Web and Scripting Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself: Package versions in the this module are usually supported for at most three years. We are planning to release more recent versions on a schedule of approximately 18 month; the exact dates may differ per package.

","shortname":"Web-and-Scripting-Module","eula_url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/12/s390x/product.license/","arch":"s390x"},{"cpe":"cpe:/o:suse:sle-module-public-cloud:12","product_type":"module","predecessor_ids":[],"online_predecessor_ids":[],"product_class":"MODULE","repositories":[{"autorefresh":true,"distro_target":"sle-12-s390x","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/12/s390x/update/","enabled":true,"id":1696,"description":"SLE-Module-Public-Cloud12-Updates for sle-12-s390x","name":"SLE-Module-Public-Cloud12-Updates","installer_updates":false},{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/12/s390x/update_debug/","autorefresh":true,"distro_target":"sle-12-s390x","id":1697,"enabled":false,"description":"SLE-Module-Public-Cloud12-Debuginfo-Updates for sle-12-s390x","name":"SLE-Module-Public-Cloud12-Debuginfo-Updates","installer_updates":false},{"description":"SLE-Module-Public-Cloud12-Pool for sle-12-s390x","name":"SLE-Module-Public-Cloud12-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-12-s390x","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/12/s390x/product/","enabled":true,"id":1698},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/12/s390x/product_debug/","autorefresh":false,"distro_target":"sle-12-s390x","id":1699,"enabled":false,"description":"SLE-Module-Public-Cloud12-Debuginfo-Pool for sle-12-s390x","name":"SLE-Module-Public-Cloud12-Debuginfo-Pool","installer_updates":false},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/12/s390x/product_source/","autorefresh":false,"distro_target":"sle-12-s390x","id":1994,"enabled":false,"description":"SLE-Module-Public-Cloud12-Source-Pool for sle-12-s390x","name":"SLE-Module-Public-Cloud12-Source-Pool","installer_updates":false}],"eula_url":"","arch":"s390x","description":"

The Public Cloud Module is a collection of tools that enables you to create and manage cloud images from the commandline on SUSE Linux Enterprise Server. When building your own images with KIWI or SUSE Studio, initialization code specific to the target cloud is included in that image.

Access to the Public Cloud Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself; please check the Release Notes for further details.

","shortname":"Public-Cloud-Module","free":true,"extensions":[],"id":1219,"release_stage":"released","identifier":"sle-module-public-cloud","friendly_version":"12","name":"Public Cloud Module","offline_predecessor_ids":[],"friendly_name":"Public Cloud Module 12 s390x","migration_extra":false,"release_type":null,"former_identifier":"sle-module-public-cloud","recommended":false,"version":"12"},{"predecessor_ids":[],"online_predecessor_ids":[],"repositories":[{"distro_target":"sle-12-s390x","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Adv-Systems-Management/12/s390x/update/","enabled":true,"id":1766,"description":"SLE-Module-Adv-Systems-Management12-Updates for sle-12-s390x","installer_updates":false,"name":"SLE-Module-Adv-Systems-Management12-Updates"},{"enabled":false,"id":1767,"autorefresh":true,"distro_target":"sle-12-s390x","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Adv-Systems-Management/12/s390x/update_debug/","name":"SLE-Module-Adv-Systems-Management12-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-Adv-Systems-Management12-Debuginfo-Updates for sle-12-s390x"},{"distro_target":"sle-12-s390x","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Adv-Systems-Management/12/s390x/product/","enabled":true,"id":1768,"description":"SLE-Module-Adv-Systems-Management12-Pool for sle-12-s390x","installer_updates":false,"name":"SLE-Module-Adv-Systems-Management12-Pool"},{"name":"SLE-Module-Adv-Systems-Management12-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-Adv-Systems-Management12-Debuginfo-Pool for sle-12-s390x","id":1769,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Adv-Systems-Management/12/s390x/product_debug/","autorefresh":false,"distro_target":"sle-12-s390x"},{"installer_updates":false,"name":"SLE-Module-Adv-Systems-Management12-Source-Pool","description":"SLE-Module-Adv-Systems-Management12-Source-Pool for sle-12-s390x","id":1997,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Adv-Systems-Management/12/s390x/product_source/","distro_target":"sle-12-s390x","autorefresh":false}],"product_class":"MODULE","product_type":"module","cpe":"cpe:/o:suse:sle-module-adv-systems-management:12","free":true,"description":"

This Module contains current versions of the popular configuration management frameworks Puppet and CFEngine as well as the new systems management toolbox called machinery.

The machinery tool will be frequently updated and is SUSE's upcoming systems management toolbox for inspecting and validating systems remotely, storing their system description and creating new systems to deploy them in datacenters and clouds.

","shortname":"Adv-Sys-Mgmt-Module","eula_url":"","arch":"s390x","friendly_version":"12","extensions":[],"id":1295,"release_stage":"released","identifier":"sle-module-adv-systems-management","recommended":false,"version":"12","offline_predecessor_ids":[],"name":"Advanced Systems Management Module","former_identifier":"sle-module-adv-systems-management","release_type":null,"migration_extra":false,"friendly_name":"Advanced Systems Management Module 12 s390x"},{"product_type":"extension","cpe":"cpe:/o:suse:sle-ha:12:sp1","predecessor_ids":[1244],"online_predecessor_ids":[1244],"repositories":[{"installer_updates":false,"name":"SLE-HA12-SP1-Updates","description":"SLE-HA12-SP1-Updates for sle-12-s390x","id":1883,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-HA/12-SP1/s390x/update/","distro_target":"sle-12-s390x","autorefresh":true},{"autorefresh":true,"distro_target":"sle-12-s390x","url":"https://updates.suse.com/SUSE/Updates/SLE-HA/12-SP1/s390x/update_debug/","enabled":false,"id":1884,"description":"SLE-HA12-SP1-Debuginfo-Updates for sle-12-s390x","name":"SLE-HA12-SP1-Debuginfo-Updates","installer_updates":false},{"description":"SLE-HA12-SP1-Pool for sle-12-s390x","name":"SLE-HA12-SP1-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-12-s390x","url":"https://updates.suse.com/SUSE/Products/SLE-HA/12-SP1/s390x/product/","enabled":true,"id":1885},{"url":"https://updates.suse.com/SUSE/Products/SLE-HA/12-SP1/s390x/product_debug/","distro_target":"sle-12-s390x","autorefresh":false,"id":1886,"enabled":false,"description":"SLE-HA12-SP1-Debuginfo-Pool for sle-12-s390x","installer_updates":false,"name":"SLE-HA12-SP1-Debuginfo-Pool"},{"enabled":false,"id":1913,"autorefresh":false,"distro_target":"sle-12-s390x","url":"https://updates.suse.com/SUSE/Products/SLE-HA/12-SP1/s390x/product_source/","name":"SLE-HA12-SP1-Source-Pool","installer_updates":false,"description":"SLE-HA12-SP1-Source-Pool for sle-12-s390x"}],"product_class":"SLE-HAE-Z","eula_url":"https://updates.suse.com/SUSE/Products/SLE-HA/12-SP1/s390x/product.license/","arch":"s390x","free":false,"shortname":"SLEHA12-SP1","description":"SUSE Linux Enterprise High Availability Extension.","extensions":[{"cpe":"cpe:/o:suse:sle-ha-geo:12:sp1","product_type":"extension","online_predecessor_ids":[1156],"product_class":"SLE-HAE-GEO","repositories":[{"name":"SLE-HA-GEO12-SP1-Updates","installer_updates":false,"description":"SLE-HA-GEO12-SP1-Updates for sle-12-s390x","id":1932,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-HA-GEO/12-SP1/s390x/update/","autorefresh":true,"distro_target":"sle-12-s390x"},{"description":"SLE-HA-GEO12-SP1-Debuginfo-Updates for sle-12-s390x","name":"SLE-HA-GEO12-SP1-Debuginfo-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-12-s390x","url":"https://updates.suse.com/SUSE/Updates/SLE-HA-GEO/12-SP1/s390x/update_debug/","enabled":false,"id":1933},{"installer_updates":false,"name":"SLE-HA-GEO12-SP1-Pool","description":"SLE-HA-GEO12-SP1-Pool for sle-12-s390x","id":1934,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-HA-GEO/12-SP1/s390x/product/","distro_target":"sle-12-s390x","autorefresh":false},{"url":"https://updates.suse.com/SUSE/Products/SLE-HA-GEO/12-SP1/s390x/product_debug/","autorefresh":false,"distro_target":"sle-12-s390x","id":1935,"enabled":false,"description":"SLE-HA-GEO12-SP1-Debuginfo-Pool for sle-12-s390x","name":"SLE-HA-GEO12-SP1-Debuginfo-Pool","installer_updates":false},{"description":"SLE-HA-GEO12-SP1-Source-Pool for sle-12-s390x","installer_updates":false,"name":"SLE-HA-GEO12-SP1-Source-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-HA-GEO/12-SP1/s390x/product_source/","distro_target":"sle-12-s390x","autorefresh":false,"id":1936,"enabled":false}],"predecessor_ids":[1156],"arch":"s390x","eula_url":"https://updates.suse.com/SUSE/Products/SLE-HA-GEO/12-SP1/s390x/product.license/","shortname":"SLEHAGEO12-SP1","description":"SUSE Linux Enterprise High Availability Geographical Cluster Extension","free":false,"id":1345,"release_stage":"released","identifier":"sle-ha-geo","extensions":[],"friendly_version":"12 SP1","migration_extra":false,"friendly_name":"SUSE Linux Enterprise High Availability GEO Extension 12 SP1 s390x","former_identifier":"sle-hae-geo","release_type":null,"name":"SUSE Linux Enterprise High Availability GEO Extension","offline_predecessor_ids":[1109,1110,1287],"version":"12.1","recommended":false}],"identifier":"sle-ha","release_stage":"released","id":1336,"friendly_version":"12 SP1","offline_predecessor_ids":[1080,1082,1084,1086,1257],"name":"SUSE Linux Enterprise High Availability Extension","release_type":null,"former_identifier":"sle-hae","friendly_name":"SUSE Linux Enterprise High Availability Extension 12 SP1 s390x","migration_extra":false,"recommended":false,"version":"12.1"},{"eula_url":"","arch":"s390x","description":"Via this Module you will have access to a more recent GCC and Toolchain in addition to the default compiler of SUSE Linux Enterprise. Access to the Toolchain Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself. Please check the Release Notes for further details.","shortname":"Toolchain-Module","free":true,"cpe":"cpe:/o:suse:sle-module-toolchain:12","product_type":"module","predecessor_ids":[],"online_predecessor_ids":[],"product_class":"MODULE","repositories":[{"name":"SLE-Module-Toolchain12-Updates","installer_updates":false,"description":"SLE-Module-Toolchain12-Updates for sle-12-s390x","enabled":true,"id":1899,"autorefresh":true,"distro_target":"sle-12-s390x","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Toolchain/12/s390x/update/"},{"description":"SLE-Module-Toolchain12-Debuginfo-Updates for sle-12-s390x","installer_updates":false,"name":"SLE-Module-Toolchain12-Debuginfo-Updates","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Toolchain/12/s390x/update_debug/","distro_target":"sle-12-s390x","autorefresh":true,"id":1900,"enabled":false},{"name":"SLE-Module-Toolchain12-Pool","installer_updates":false,"description":"SLE-Module-Toolchain12-Pool for sle-12-s390x","enabled":true,"id":1901,"autorefresh":false,"distro_target":"sle-12-s390x","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Toolchain/12/s390x/product/"},{"enabled":false,"id":1902,"distro_target":"sle-12-s390x","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Toolchain/12/s390x/product_debug/","installer_updates":false,"name":"SLE-Module-Toolchain12-Debuginfo-Pool","description":"SLE-Module-Toolchain12-Debuginfo-Pool for sle-12-s390x"}],"name":"Toolchain Module","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"Toolchain Module 12 s390x","former_identifier":"sle-module-toolchain","release_type":null,"recommended":false,"version":"12","extensions":[],"release_stage":"released","identifier":"sle-module-toolchain","id":1340,"friendly_version":"12"},{"version":"12.1","recommended":false,"friendly_name":"SUSE Linux Enterprise Software Development Kit 12 SP1 s390x","migration_extra":false,"release_type":null,"former_identifier":"sle-sdk","name":"SUSE Linux Enterprise Software Development Kit","offline_predecessor_ids":[],"friendly_version":"12 SP1","id":1344,"release_stage":"released","identifier":"sle-sdk","extensions":[],"shortname":"SDK12-SP1","description":"

SUSE Linux Enterprise Software Development Kit is the Software Development Kit for the family of SUSE Linux Enterprise products. It is a free of charge extension for partners and customers working with SUSE Linux Enterprise Server and Desktop and derived products.

Packages on the SDK are delivered without L3 support; maintenance updates will be done for critical security and critical non-security issues, and where needed to remain in sync with packages delivered in the SUSE Linux Enterprise Server and Desktop products.

Packages to rebuild SUSE Linux Enterprise Server are not part of the SUSE Linux Enterprise Software Development Kit.

","free":true,"arch":"s390x","eula_url":"https://updates.suse.com/SUSE/Products/SLE-SDK/12-SP1/s390x/product.license/","product_class":"SLE-SDK","online_predecessor_ids":[1146],"repositories":[{"description":"SLE-SDK12-SP1-Updates for sle-12-s390x","name":"SLE-SDK12-SP1-Updates","installer_updates":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-SDK/12-SP1/s390x/update/","autorefresh":true,"distro_target":"sle-12-s390x","id":1927,"enabled":true},{"url":"https://updates.suse.com/SUSE/Updates/SLE-SDK/12-SP1/s390x/update_debug/","distro_target":"sle-12-s390x","autorefresh":true,"id":1928,"enabled":false,"description":"SLE-SDK12-SP1-Debuginfo-Updates for sle-12-s390x","installer_updates":false,"name":"SLE-SDK12-SP1-Debuginfo-Updates"},{"id":1929,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-SDK/12-SP1/s390x/product/","distro_target":"sle-12-s390x","autorefresh":false,"installer_updates":false,"name":"SLE-SDK12-SP1-Pool","description":"SLE-SDK12-SP1-Pool for sle-12-s390x"},{"installer_updates":false,"name":"SLE-SDK12-SP1-Debuginfo-Pool","description":"SLE-SDK12-SP1-Debuginfo-Pool for sle-12-s390x","id":1930,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-SDK/12-SP1/s390x/product_debug/","distro_target":"sle-12-s390x","autorefresh":false},{"installer_updates":false,"name":"SLE-SDK12-SP1-Source-Pool","description":"SLE-SDK12-SP1-Source-Pool for sle-12-s390x","id":1931,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-SDK/12-SP1/s390x/product_source/","distro_target":"sle-12-s390x","autorefresh":false}],"predecessor_ids":[1146],"cpe":"cpe:/o:suse:sle-sdk:12:sp1","product_type":"extension"},{"name":"SUSE Manager Server","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"SUSE Manager Server 3.0 s390x","release_type":null,"former_identifier":"SUSE-Manager-Server","recommended":false,"version":"3.0","extensions":[],"release_stage":"released","identifier":"SUSE-Manager-Server","id":1348,"friendly_version":"3.0","eula_url":"https://updates.suse.com/SUSE/Products/SUSE-Manager-Server/3.0/s390x/product.license/","arch":"s390x","description":"SUSE Manager lets you efficiently manage physical, virtual, and cloud-based Linux systems. It provides automated and cost-effective configuration and software management, asset management, and system provisioning.","shortname":"SUSE Manager Server","free":false,"cpe":"cpe:/o:suse:suse-manager-server:3.0","product_type":"extension","predecessor_ids":[],"online_predecessor_ids":[],"product_class":"SMS-Z","repositories":[{"description":"SUSE-Manager-Server-3.0-Updates for sle-12-s390x","name":"SUSE-Manager-Server-3.0-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-12-s390x","url":"https://updates.suse.com/SUSE/Updates/SUSE-Manager-Server/3.0/s390x/update/","enabled":true,"id":1945},{"enabled":false,"id":1946,"autorefresh":true,"distro_target":"sle-12-s390x","url":"https://updates.suse.com/SUSE/Updates/SUSE-Manager-Server/3.0/s390x/update_debug/","name":"SUSE-Manager-Server-3.0-Debuginfo-Updates","installer_updates":false,"description":"SUSE-Manager-Server-3.0-Debuginfo-Updates for sle-12-s390x"},{"url":"https://updates.suse.com/SUSE/Products/SUSE-Manager-Server/3.0/s390x/product/","distro_target":"sle-12-s390x","autorefresh":false,"id":1947,"enabled":true,"description":"SUSE-Manager-Server-3.0-Pool for sle-12-s390x","installer_updates":false,"name":"SUSE-Manager-Server-3.0-Pool"},{"enabled":false,"id":1948,"autorefresh":false,"distro_target":"sle-12-s390x","url":"https://updates.suse.com/SUSE/Products/SUSE-Manager-Server/3.0/s390x/product_debug/","name":"SUSE-Manager-Server-3.0-Debuginfo-Pool","installer_updates":false,"description":"SUSE-Manager-Server-3.0-Debuginfo-Pool for sle-12-s390x"},{"installer_updates":false,"name":"SUSE-Manager-Server-3.0-Source-Pool","description":"SUSE-Manager-Server-3.0-Source-Pool for sle-12-s390x","id":2000,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SUSE-Manager-Server/3.0/s390x/product_source/","distro_target":"sle-12-s390x","autorefresh":false}]},{"friendly_name":"Containers Module 12 s390x","migration_extra":false,"former_identifier":"sle-module-containers","release_type":null,"name":"Containers Module","offline_predecessor_ids":[],"version":"12","recommended":false,"identifier":"sle-module-containers","release_stage":"released","id":1354,"extensions":[],"friendly_version":"12","arch":"s390x","eula_url":"","description":"

This Module contains several packages revolving around containers and related tools.

","shortname":"Containers-Module","free":true,"cpe":"cpe:/o:suse:sle-module-containers:12","product_type":"module","online_predecessor_ids":[],"product_class":"MODULE","repositories":[{"description":"SLE-Module-Containers12-Updates for sle-12-s390x","installer_updates":false,"name":"SLE-Module-Containers12-Updates","distro_target":"sle-12-s390x","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/12/s390x/update/","enabled":true,"id":1977},{"installer_updates":false,"name":"SLE-Module-Containers12-Debuginfo-Updates","description":"SLE-Module-Containers12-Debuginfo-Updates for sle-12-s390x","enabled":false,"id":1978,"distro_target":"sle-12-s390x","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/12/s390x/update_debug/"},{"distro_target":"sle-12-s390x","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/12/s390x/product/","enabled":true,"id":1979,"description":"SLE-Module-Containers12-Pool for sle-12-s390x","installer_updates":false,"name":"SLE-Module-Containers12-Pool"},{"name":"SLE-Module-Containers12-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-Containers12-Debuginfo-Pool for sle-12-s390x","id":1980,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/12/s390x/product_debug/","autorefresh":false,"distro_target":"sle-12-s390x"},{"id":1981,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/12/s390x/product_source/","distro_target":"sle-12-s390x","autorefresh":false,"installer_updates":false,"name":"SLE-Module-Containers12-Source-Pool","description":"SLE-Module-Containers12-Source-Pool for sle-12-s390x"}],"predecessor_ids":[]},{"extensions":[],"release_stage":"released","identifier":"sle-module-certifications","id":1367,"friendly_version":"12","offline_predecessor_ids":[],"name":"Certifications Module","release_type":null,"former_identifier":"sle-module-certifications","friendly_name":"Certifications Module 12 s390x","migration_extra":false,"recommended":false,"version":"12","product_type":"module","cpe":"cpe:/o:suse:sle-module-certifications:12","predecessor_ids":[],"repositories":[{"installer_updates":false,"name":"SLE-Module-Certifications12-Updates","description":"SLE-Module-Certifications12-Updates for sle-12-s390x","id":2064,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Certifications/12/s390x/update/","distro_target":"sle-12-s390x","autorefresh":true},{"id":2065,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Certifications/12/s390x/update_debug/","autorefresh":true,"distro_target":"sle-12-s390x","name":"SLE-Module-Certifications12-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-Certifications12-Debuginfo-Updates for sle-12-s390x"},{"description":"SLE-Module-Certifications12-Pool for sle-12-s390x","installer_updates":false,"name":"SLE-Module-Certifications12-Pool","distro_target":"sle-12-s390x","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Certifications/12/s390x/product/","enabled":true,"id":2066},{"name":"SLE-Module-Certifications12-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-Certifications12-Debuginfo-Pool for sle-12-s390x","enabled":false,"id":2067,"autorefresh":false,"distro_target":"sle-12-s390x","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Certifications/12/s390x/product_debug/"}],"online_predecessor_ids":[],"product_class":"MODULE","eula_url":"","arch":"s390x","free":true,"description":"

This module contains packages specific to certifications.

It contains:

Packages used for the Evaluated Configuration of the Common Criteria Certification of SUSE Linux Enterprise Server 12 GA.

Packages used for the FIPS 140-2 certification of various cryptographics modules.

Please refer to our certification pages referenced from https://www.suse.com/security/

","shortname":"Certifications"},{"former_identifier":"PackageHub","release_type":null,"migration_extra":false,"friendly_name":"SUSE Package Hub 12 SP1 s390x","offline_predecessor_ids":[],"name":"SUSE Package Hub","version":"12.1","recommended":false,"identifier":"PackageHub","release_stage":"released","id":1477,"extensions":[],"friendly_version":"12 SP1","arch":"s390x","eula_url":"","free":true,"description":"SUSE Package Hub is a free of charge extension providing access to community maintained packages built to run on SUSE Linux Enterprise Server. Built from the same sources used in the openSUSE distributions, these quality packages provide additional software to what is found in the SUSE Linux Enterprise Server product. Packages from the Package Hub are delivered without L3 support from SUSE. General updates and fixes to the packages in SUSE Package Hub are provided by the openSUSE community based on their discretion though SUSE will monitor and ensure that any known critical security issues will be addressed. Packages in the Package Hub are approved by SUSE for use with SUSE Linux Enterprise Server 12 and to not interfere with the supportability of SUSE Linux Enterprise Server it's modules and extensions. For more information about SUSE Package Hub please visit https://packagehub.suse.com.","shortname":"SUSE-PackageHub-12-SP1","product_type":"extension","cpe":"cpe:/o:suse:packagehub:12:sp1","repositories":[{"id":2339,"enabled":true,"url":"https://updates.suse.com/SUSE/Backports/SLE-12-SP1_s390x/standard/","distro_target":"sle-12-s390x","autorefresh":false,"installer_updates":false,"name":"SUSE-PackageHub-12-SP1-Standard-Pool","description":"SUSE-PackageHub-12-SP1-Standard-Pool for sle-12-s390x"},{"autorefresh":true,"distro_target":"sle-12-s390x","url":"https://updates.suse.com/SUSE/Backports/SLE-12-SP1_s390x/standard_debug/","enabled":false,"id":2340,"description":"SUSE-PackageHub-12-SP1-Debuginfo for sle-12-s390x","name":"SUSE-PackageHub-12-SP1-Debuginfo","installer_updates":false},{"url":"https://updates.suse.com/SUSE/Backports/SLE-12-SP1_s390x/product/","distro_target":"sle-12-s390x","autorefresh":false,"id":2341,"enabled":true,"description":"SUSE-PackageHub-12-SP1-Pool for sle-12-s390x","installer_updates":false,"name":"SUSE-PackageHub-12-SP1-Pool"}],"online_predecessor_ids":[1474],"product_class":"SLES-Z","predecessor_ids":[1474]},{"version":"12.1","recommended":false,"former_identifier":"SLES-LTSS","release_type":null,"friendly_name":"SUSE Linux Enterprise Server LTSS 12 SP1 s390x","migration_extra":false,"offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Server LTSS","friendly_version":"12 SP1","id":1535,"release_stage":"released","identifier":"SLES-LTSS","extensions":[],"free":false,"description":"SUSE Linux Enterprise offers a comprehensive suite of products built on a single code base. The platform addresses business needs from the smallest thin-client devices to the world's most powerful high-performance computing and mainframe servers. SUSE Linux Enterprise offers common management tools and technology certifications across the platform, and each product is enterprise-class.","shortname":"SLES12-SP1 LTSS","arch":"s390x","eula_url":"","online_predecessor_ids":[],"repositories":[{"distro_target":"sle-12-s390x","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-SP1-LTSS/s390x/update/","enabled":true,"id":2461,"description":"SLES12-SP1-LTSS-Updates for sle-12-s390x","installer_updates":false,"name":"SLES12-SP1-LTSS-Updates"},{"description":"SLES12-SP1-LTSS-Debuginfo-Updates for sle-12-s390x","installer_updates":false,"name":"SLES12-SP1-LTSS-Debuginfo-Updates","distro_target":"sle-12-s390x","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-SP1-LTSS/s390x/update_debug/","enabled":false,"id":2462}],"product_class":"SLES12-SP1-LTSS-Z","predecessor_ids":[],"product_type":"extension","cpe":"cpe:/o:suse:sles-ltss:12:sp1"}],"release_stage":"released","id":1335,"identifier":"SLES"},{"eula_url":"https://updates.suse.com/SUSE/Products/SLE-HA/12-SP1/s390x/product.license/","arch":"s390x","shortname":"SLEHA12-SP1","description":"SUSE Linux Enterprise High Availability Extension.","free":false,"cpe":"cpe:/o:suse:sle-ha:12:sp1","product_type":"extension","predecessor_ids":[1244],"online_predecessor_ids":[1244],"repositories":[{"description":"SLE-HA12-SP1-Updates for sle-12-s390x","installer_updates":false,"name":"SLE-HA12-SP1-Updates","distro_target":"sle-12-s390x","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-HA/12-SP1/s390x/update/","enabled":true,"id":1883},{"description":"SLE-HA12-SP1-Debuginfo-Updates for sle-12-s390x","installer_updates":false,"name":"SLE-HA12-SP1-Debuginfo-Updates","distro_target":"sle-12-s390x","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-HA/12-SP1/s390x/update_debug/","enabled":false,"id":1884},{"autorefresh":false,"distro_target":"sle-12-s390x","url":"https://updates.suse.com/SUSE/Products/SLE-HA/12-SP1/s390x/product/","enabled":true,"id":1885,"description":"SLE-HA12-SP1-Pool for sle-12-s390x","name":"SLE-HA12-SP1-Pool","installer_updates":false},{"name":"SLE-HA12-SP1-Debuginfo-Pool","installer_updates":false,"description":"SLE-HA12-SP1-Debuginfo-Pool for sle-12-s390x","enabled":false,"id":1886,"autorefresh":false,"distro_target":"sle-12-s390x","url":"https://updates.suse.com/SUSE/Products/SLE-HA/12-SP1/s390x/product_debug/"},{"description":"SLE-HA12-SP1-Source-Pool for sle-12-s390x","name":"SLE-HA12-SP1-Source-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-HA/12-SP1/s390x/product_source/","autorefresh":false,"distro_target":"sle-12-s390x","id":1913,"enabled":false}],"product_class":"SLE-HAE-Z","name":"SUSE Linux Enterprise High Availability Extension","offline_predecessor_ids":[1080,1082,1084,1086,1257],"friendly_name":"SUSE Linux Enterprise High Availability Extension 12 SP1 s390x","migration_extra":false,"former_identifier":"sle-hae","release_type":null,"recommended":false,"version":"12.1","extensions":[],"release_stage":"released","identifier":"sle-ha","id":1336,"friendly_version":"12 SP1"},{"friendly_version":"12 SP1","identifier":"sle-ha-geo","release_stage":"released","id":1337,"extensions":[],"version":"12.1","recommended":false,"former_identifier":"sle-hae-geo","release_type":null,"friendly_name":"SUSE Linux Enterprise High Availability GEO Extension 12 SP1 x86_64","migration_extra":false,"offline_predecessor_ids":[1101,1107,1286],"name":"SUSE Linux Enterprise High Availability GEO Extension","online_predecessor_ids":[1157],"repositories":[{"distro_target":"sle-12-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-HA-GEO/12-SP1/x86_64/update/","enabled":true,"id":1887,"description":"SLE-HA-GEO12-SP1-Updates for sle-12-x86_64","installer_updates":false,"name":"SLE-HA-GEO12-SP1-Updates"},{"name":"SLE-HA-GEO12-SP1-Debuginfo-Updates","installer_updates":false,"description":"SLE-HA-GEO12-SP1-Debuginfo-Updates for sle-12-x86_64","enabled":false,"id":1888,"autorefresh":true,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-HA-GEO/12-SP1/x86_64/update_debug/"},{"description":"SLE-HA-GEO12-SP1-Pool for sle-12-x86_64","name":"SLE-HA-GEO12-SP1-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-HA-GEO/12-SP1/x86_64/product/","enabled":true,"id":1889},{"enabled":false,"id":1890,"distro_target":"sle-12-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-HA-GEO/12-SP1/x86_64/product_debug/","installer_updates":false,"name":"SLE-HA-GEO12-SP1-Debuginfo-Pool","description":"SLE-HA-GEO12-SP1-Debuginfo-Pool for sle-12-x86_64"},{"id":1915,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-HA-GEO/12-SP1/x86_64/product_source/","distro_target":"sle-12-x86_64","autorefresh":false,"installer_updates":false,"name":"SLE-HA-GEO12-SP1-Source-Pool","description":"SLE-HA-GEO12-SP1-Source-Pool for sle-12-x86_64"}],"product_class":"SLE-HAE-GEO","predecessor_ids":[1157],"product_type":"extension","cpe":"cpe:/o:suse:sle-ha-geo:12:sp1","free":false,"description":"SUSE Linux Enterprise High Availability Geographical Cluster Extension","shortname":"SLEHAGEO12-SP1","arch":"x86_64","eula_url":"https://updates.suse.com/SUSE/Products/SLE-HA-GEO/12-SP1/x86_64/product.license/"},{"friendly_version":"12 SP1","release_stage":"released","id":1338,"identifier":"sle-we","extensions":[],"version":"12.1","recommended":false,"release_type":null,"former_identifier":"sle-we","migration_extra":false,"friendly_name":"SUSE Linux Enterprise Workstation Extension 12 SP1 x86_64","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Workstation Extension","product_class":"SLE-WE","online_predecessor_ids":[1222],"repositories":[{"installer_updates":false,"name":"SLE-WE12-SP1-Updates","description":"SLE-WE12-SP1-Updates for sle-12-x86_64","id":1891,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-WE/12-SP1/x86_64/update/","distro_target":"sle-12-x86_64","autorefresh":true},{"name":"SLE-WE12-SP1-Debuginfo-Updates","installer_updates":false,"description":"SLE-WE12-SP1-Debuginfo-Updates for sle-12-x86_64","enabled":false,"id":1892,"autorefresh":true,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-WE/12-SP1/x86_64/update_debug/"},{"installer_updates":false,"name":"SLE-WE12-SP1-Pool","description":"SLE-WE12-SP1-Pool for sle-12-x86_64","enabled":true,"id":1893,"distro_target":"sle-12-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-WE/12-SP1/x86_64/product/"},{"url":"https://updates.suse.com/SUSE/Products/SLE-WE/12-SP1/x86_64/product_debug/","autorefresh":false,"distro_target":"sle-12-x86_64","id":1894,"enabled":false,"description":"SLE-WE12-SP1-Debuginfo-Pool for sle-12-x86_64","name":"SLE-WE12-SP1-Debuginfo-Pool","installer_updates":false},{"id":1911,"enabled":true,"url":"http://download.nvidia.com/novell/sle12sp1/","distro_target":null,"autorefresh":true,"installer_updates":false,"name":"SLE-12-SP1-GA-Desktop-nVidia-Driver","description":"SLE-12-SP1-GA-Desktop-nVidia-Driver"},{"url":"https://updates.suse.com/SUSE/Products/SLE-WE/12-SP1/x86_64/product_source/","distro_target":"sle-12-x86_64","autorefresh":false,"id":1916,"enabled":false,"description":"SLE-WE12-SP1-Source-Pool for sle-12-x86_64","installer_updates":false,"name":"SLE-WE12-SP1-Source-Pool"}],"predecessor_ids":[1222],"product_type":"extension","cpe":"cpe:/o:suse:sle-we:12:sp1","free":false,"shortname":"SLEWE12-SP1","description":"SUSE Linux Enterprise Workstation Extension extends the functionality of SUSE Linux Enterprise Server with packages of SUSE Linux Enterprise Desktop, like additional desktop applications (office suite, email client, graphical editor ...) and libraries. It allows to combine both products to create a full featured Workstation.","arch":"x86_64","eula_url":"https://updates.suse.com/SUSE/Products/SLE-WE/12-SP1/x86_64/product.license/"},{"former_identifier":"sle-module-toolchain","release_type":null,"friendly_name":"Toolchain Module 12 ppc64le","migration_extra":false,"offline_predecessor_ids":[],"name":"Toolchain Module","version":"12","recommended":false,"release_stage":"released","identifier":"sle-module-toolchain","id":1339,"extensions":[],"friendly_version":"12","arch":"ppc64le","eula_url":"","free":true,"description":"Via this Module you will have access to a more recent GCC and Toolchain in addition to the default compiler of SUSE Linux Enterprise. Access to the Toolchain Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself. Please check the Release Notes for further details.","shortname":"Toolchain-Module","product_type":"module","cpe":"cpe:/o:suse:sle-module-toolchain:12","online_predecessor_ids":[],"product_class":"MODULE","repositories":[{"installer_updates":false,"name":"SLE-Module-Toolchain12-Updates","description":"SLE-Module-Toolchain12-Updates for sle-12-ppc64le","enabled":true,"id":1895,"distro_target":"sle-12-ppc64le","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Toolchain/12/ppc64le/update/"},{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Toolchain/12/ppc64le/update_debug/","distro_target":"sle-12-ppc64le","autorefresh":true,"id":1896,"enabled":false,"description":"SLE-Module-Toolchain12-Debuginfo-Updates for sle-12-ppc64le","installer_updates":false,"name":"SLE-Module-Toolchain12-Debuginfo-Updates"},{"description":"SLE-Module-Toolchain12-Pool for sle-12-ppc64le","installer_updates":false,"name":"SLE-Module-Toolchain12-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Toolchain/12/ppc64le/product/","distro_target":"sle-12-ppc64le","autorefresh":false,"id":1897,"enabled":true},{"autorefresh":false,"distro_target":"sle-12-ppc64le","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Toolchain/12/ppc64le/product_debug/","enabled":false,"id":1898,"description":"SLE-Module-Toolchain12-Debuginfo-Pool for sle-12-ppc64le","name":"SLE-Module-Toolchain12-Debuginfo-Pool","installer_updates":false}],"predecessor_ids":[]},{"version":"12","recommended":false,"release_type":null,"former_identifier":"sle-module-toolchain","friendly_name":"Toolchain Module 12 s390x","migration_extra":false,"offline_predecessor_ids":[],"name":"Toolchain Module","friendly_version":"12","release_stage":"released","identifier":"sle-module-toolchain","id":1340,"extensions":[],"free":true,"shortname":"Toolchain-Module","description":"Via this Module you will have access to a more recent GCC and Toolchain in addition to the default compiler of SUSE Linux Enterprise. Access to the Toolchain Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself. Please check the Release Notes for further details.","arch":"s390x","eula_url":"","product_class":"MODULE","online_predecessor_ids":[],"repositories":[{"enabled":true,"id":1899,"distro_target":"sle-12-s390x","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Toolchain/12/s390x/update/","installer_updates":false,"name":"SLE-Module-Toolchain12-Updates","description":"SLE-Module-Toolchain12-Updates for sle-12-s390x"},{"autorefresh":true,"distro_target":"sle-12-s390x","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Toolchain/12/s390x/update_debug/","enabled":false,"id":1900,"description":"SLE-Module-Toolchain12-Debuginfo-Updates for sle-12-s390x","name":"SLE-Module-Toolchain12-Debuginfo-Updates","installer_updates":false},{"installer_updates":false,"name":"SLE-Module-Toolchain12-Pool","description":"SLE-Module-Toolchain12-Pool for sle-12-s390x","enabled":true,"id":1901,"distro_target":"sle-12-s390x","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Toolchain/12/s390x/product/"},{"description":"SLE-Module-Toolchain12-Debuginfo-Pool for sle-12-s390x","installer_updates":false,"name":"SLE-Module-Toolchain12-Debuginfo-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Toolchain/12/s390x/product_debug/","distro_target":"sle-12-s390x","autorefresh":false,"id":1902,"enabled":false}],"predecessor_ids":[],"product_type":"module","cpe":"cpe:/o:suse:sle-module-toolchain:12"},{"shortname":"Toolchain-Module","description":"Via this Module you will have access to a more recent GCC and Toolchain in addition to the default compiler of SUSE Linux Enterprise. Access to the Toolchain Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself. Please check the Release Notes for further details.","free":true,"eula_url":"","arch":"x86_64","predecessor_ids":[],"product_class":"MODULE","online_predecessor_ids":[],"repositories":[{"name":"SLE-Module-Toolchain12-Updates","installer_updates":false,"description":"SLE-Module-Toolchain12-Updates for sle-12-x86_64","id":1903,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Toolchain/12/x86_64/update/","autorefresh":true,"distro_target":"sle-12-x86_64"},{"id":1904,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Toolchain/12/x86_64/update_debug/","autorefresh":true,"distro_target":"sle-12-x86_64","name":"SLE-Module-Toolchain12-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-Toolchain12-Debuginfo-Updates for sle-12-x86_64"},{"id":1905,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Toolchain/12/x86_64/product/","distro_target":"sle-12-x86_64","autorefresh":false,"installer_updates":false,"name":"SLE-Module-Toolchain12-Pool","description":"SLE-Module-Toolchain12-Pool for sle-12-x86_64"},{"installer_updates":false,"name":"SLE-Module-Toolchain12-Debuginfo-Pool","description":"SLE-Module-Toolchain12-Debuginfo-Pool for sle-12-x86_64","id":1906,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Toolchain/12/x86_64/product_debug/","distro_target":"sle-12-x86_64","autorefresh":false}],"cpe":"cpe:/o:suse:sle-module-toolchain:12","product_type":"module","recommended":false,"version":"12","name":"Toolchain Module","offline_predecessor_ids":[],"friendly_name":"Toolchain Module 12 x86_64","migration_extra":false,"former_identifier":"sle-module-toolchain","release_type":null,"friendly_version":"12","extensions":[],"release_stage":"released","id":1341,"identifier":"sle-module-toolchain"},{"release_stage":"released","id":1342,"identifier":"ses","extensions":[],"friendly_version":"2","former_identifier":"ses","release_type":null,"friendly_name":"SUSE Enterprise Storage 2 x86_64","migration_extra":false,"offline_predecessor_ids":[],"name":"SUSE Enterprise Storage","version":"2","recommended":false,"product_type":"extension","cpe":"cpe:/o:suse:ses:2","online_predecessor_ids":[],"product_class":"SES","repositories":[{"description":"SUSE-Enterprise-Storage-2-Updates for sle-12-x86_64","name":"SUSE-Enterprise-Storage-2-Updates","installer_updates":false,"url":"https://updates.suse.com/SUSE/Updates/Storage/2/x86_64/update/","autorefresh":true,"distro_target":"sle-12-x86_64","id":1917,"enabled":true},{"description":"SUSE-Enterprise-Storage-2-Debuginfo-Updates for sle-12-x86_64","installer_updates":false,"name":"SUSE-Enterprise-Storage-2-Debuginfo-Updates","url":"https://updates.suse.com/SUSE/Updates/Storage/2/x86_64/update_debug/","distro_target":"sle-12-x86_64","autorefresh":true,"id":1918,"enabled":false},{"enabled":true,"id":1919,"distro_target":"sle-12-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/Storage/2/x86_64/product/","installer_updates":false,"name":"SUSE-Enterprise-Storage-2-Pool","description":"SUSE-Enterprise-Storage-2-Pool for sle-12-x86_64"},{"id":1920,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/Storage/2/x86_64/product_debug/","distro_target":"sle-12-x86_64","autorefresh":false,"installer_updates":false,"name":"SUSE-Enterprise-Storage-2-Debuginfo-Pool","description":"SUSE-Enterprise-Storage-2-Debuginfo-Pool for sle-12-x86_64"},{"description":"SUSE-Enterprise-Storage-2-Source-Pool for sle-12-x86_64","installer_updates":false,"name":"SUSE-Enterprise-Storage-2-Source-Pool","url":"https://updates.suse.com/SUSE/Products/Storage/2/x86_64/product_source/","distro_target":"sle-12-x86_64","autorefresh":false,"id":1921,"enabled":false}],"predecessor_ids":[],"arch":"x86_64","eula_url":"https://updates.suse.com/SUSE/Products/Storage/2/x86_64/product.license/","free":false,"shortname":"SES2","description":"SUSE Enterprise Storage 2 for SUSE Linux Enterprise Server 12, powered by Ceph."},{"product_type":"extension","cpe":"cpe:/o:suse:sle-sdk:12:sp1","repositories":[{"name":"SLE-SDK12-SP1-Updates","installer_updates":false,"description":"SLE-SDK12-SP1-Updates for sle-12-ppc64le","enabled":true,"id":1922,"autorefresh":true,"distro_target":"sle-12-ppc64le","url":"https://updates.suse.com/SUSE/Updates/SLE-SDK/12-SP1/ppc64le/update/"},{"name":"SLE-SDK12-SP1-Debuginfo-Updates","installer_updates":false,"description":"SLE-SDK12-SP1-Debuginfo-Updates for sle-12-ppc64le","enabled":false,"id":1923,"autorefresh":true,"distro_target":"sle-12-ppc64le","url":"https://updates.suse.com/SUSE/Updates/SLE-SDK/12-SP1/ppc64le/update_debug/"},{"description":"SLE-SDK12-SP1-Pool for sle-12-ppc64le","installer_updates":false,"name":"SLE-SDK12-SP1-Pool","distro_target":"sle-12-ppc64le","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-SDK/12-SP1/ppc64le/product/","enabled":true,"id":1924},{"distro_target":"sle-12-ppc64le","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-SDK/12-SP1/ppc64le/product_debug/","enabled":false,"id":1925,"description":"SLE-SDK12-SP1-Debuginfo-Pool for sle-12-ppc64le","installer_updates":false,"name":"SLE-SDK12-SP1-Debuginfo-Pool"},{"installer_updates":false,"name":"SLE-SDK12-SP1-Source-Pool","description":"SLE-SDK12-SP1-Source-Pool for sle-12-ppc64le","enabled":false,"id":1926,"distro_target":"sle-12-ppc64le","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-SDK/12-SP1/ppc64le/product_source/"}],"online_predecessor_ids":[1145],"product_class":"SLE-SDK","predecessor_ids":[1145],"arch":"ppc64le","eula_url":"https://updates.suse.com/SUSE/Products/SLE-SDK/12-SP1/ppc64le/product.license/","free":true,"description":"

SUSE Linux Enterprise Software Development Kit is the Software Development Kit for the family of SUSE Linux Enterprise products. It is a free of charge extension for partners and customers working with SUSE Linux Enterprise Server and Desktop and derived products.

Packages on the SDK are delivered without L3 support; maintenance updates will be done for critical security and critical non-security issues, and where needed to remain in sync with packages delivered in the SUSE Linux Enterprise Server and Desktop products.

Packages to rebuild SUSE Linux Enterprise Server are not part of the SUSE Linux Enterprise Software Development Kit.

","shortname":"SDK12-SP1","identifier":"sle-sdk","release_stage":"released","id":1343,"extensions":[],"friendly_version":"12 SP1","release_type":null,"former_identifier":"sle-sdk","friendly_name":"SUSE Linux Enterprise Software Development Kit 12 SP1 ppc64le","migration_extra":false,"offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Software Development Kit","version":"12.1","recommended":false},{"version":"12.1","recommended":false,"former_identifier":"sle-sdk","release_type":null,"friendly_name":"SUSE Linux Enterprise Software Development Kit 12 SP1 s390x","migration_extra":false,"offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Software Development Kit","friendly_version":"12 SP1","id":1344,"release_stage":"released","identifier":"sle-sdk","extensions":[],"free":true,"description":"

SUSE Linux Enterprise Software Development Kit is the Software Development Kit for the family of SUSE Linux Enterprise products. It is a free of charge extension for partners and customers working with SUSE Linux Enterprise Server and Desktop and derived products.

Packages on the SDK are delivered without L3 support; maintenance updates will be done for critical security and critical non-security issues, and where needed to remain in sync with packages delivered in the SUSE Linux Enterprise Server and Desktop products.

Packages to rebuild SUSE Linux Enterprise Server are not part of the SUSE Linux Enterprise Software Development Kit.

","shortname":"SDK12-SP1","arch":"s390x","eula_url":"https://updates.suse.com/SUSE/Products/SLE-SDK/12-SP1/s390x/product.license/","repositories":[{"url":"https://updates.suse.com/SUSE/Updates/SLE-SDK/12-SP1/s390x/update/","distro_target":"sle-12-s390x","autorefresh":true,"id":1927,"enabled":true,"description":"SLE-SDK12-SP1-Updates for sle-12-s390x","installer_updates":false,"name":"SLE-SDK12-SP1-Updates"},{"id":1928,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-SDK/12-SP1/s390x/update_debug/","distro_target":"sle-12-s390x","autorefresh":true,"installer_updates":false,"name":"SLE-SDK12-SP1-Debuginfo-Updates","description":"SLE-SDK12-SP1-Debuginfo-Updates for sle-12-s390x"},{"id":1929,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-SDK/12-SP1/s390x/product/","autorefresh":false,"distro_target":"sle-12-s390x","name":"SLE-SDK12-SP1-Pool","installer_updates":false,"description":"SLE-SDK12-SP1-Pool for sle-12-s390x"},{"enabled":false,"id":1930,"distro_target":"sle-12-s390x","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-SDK/12-SP1/s390x/product_debug/","installer_updates":false,"name":"SLE-SDK12-SP1-Debuginfo-Pool","description":"SLE-SDK12-SP1-Debuginfo-Pool for sle-12-s390x"},{"installer_updates":false,"name":"SLE-SDK12-SP1-Source-Pool","description":"SLE-SDK12-SP1-Source-Pool for sle-12-s390x","id":1931,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-SDK/12-SP1/s390x/product_source/","distro_target":"sle-12-s390x","autorefresh":false}],"online_predecessor_ids":[1146],"product_class":"SLE-SDK","predecessor_ids":[1146],"product_type":"extension","cpe":"cpe:/o:suse:sle-sdk:12:sp1"},{"name":"SUSE Linux Enterprise High Availability GEO Extension","offline_predecessor_ids":[1109,1110,1287],"friendly_name":"SUSE Linux Enterprise High Availability GEO Extension 12 SP1 s390x","migration_extra":false,"former_identifier":"sle-hae-geo","release_type":null,"recommended":false,"version":"12.1","extensions":[],"id":1345,"release_stage":"released","identifier":"sle-ha-geo","friendly_version":"12 SP1","eula_url":"https://updates.suse.com/SUSE/Products/SLE-HA-GEO/12-SP1/s390x/product.license/","arch":"s390x","shortname":"SLEHAGEO12-SP1","description":"SUSE Linux Enterprise High Availability Geographical Cluster Extension","free":false,"cpe":"cpe:/o:suse:sle-ha-geo:12:sp1","product_type":"extension","predecessor_ids":[1156],"online_predecessor_ids":[1156],"product_class":"SLE-HAE-GEO","repositories":[{"url":"https://updates.suse.com/SUSE/Updates/SLE-HA-GEO/12-SP1/s390x/update/","autorefresh":true,"distro_target":"sle-12-s390x","id":1932,"enabled":true,"description":"SLE-HA-GEO12-SP1-Updates for sle-12-s390x","name":"SLE-HA-GEO12-SP1-Updates","installer_updates":false},{"description":"SLE-HA-GEO12-SP1-Debuginfo-Updates for sle-12-s390x","installer_updates":false,"name":"SLE-HA-GEO12-SP1-Debuginfo-Updates","distro_target":"sle-12-s390x","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-HA-GEO/12-SP1/s390x/update_debug/","enabled":false,"id":1933},{"id":1934,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-HA-GEO/12-SP1/s390x/product/","distro_target":"sle-12-s390x","autorefresh":false,"installer_updates":false,"name":"SLE-HA-GEO12-SP1-Pool","description":"SLE-HA-GEO12-SP1-Pool for sle-12-s390x"},{"url":"https://updates.suse.com/SUSE/Products/SLE-HA-GEO/12-SP1/s390x/product_debug/","autorefresh":false,"distro_target":"sle-12-s390x","id":1935,"enabled":false,"description":"SLE-HA-GEO12-SP1-Debuginfo-Pool for sle-12-s390x","name":"SLE-HA-GEO12-SP1-Debuginfo-Pool","installer_updates":false},{"installer_updates":false,"name":"SLE-HA-GEO12-SP1-Source-Pool","description":"SLE-HA-GEO12-SP1-Source-Pool for sle-12-s390x","id":1936,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-HA-GEO/12-SP1/s390x/product_source/","distro_target":"sle-12-s390x","autorefresh":false}]},{"offline_predecessor_ids":[1329],"name":"SUSE Linux Enterprise Server for SAP Applications","release_type":null,"former_identifier":"SUSE_SLES_SAP","migration_extra":false,"friendly_name":"SUSE Linux Enterprise Server for SAP Applications 12 SP1 x86_64","recommended":false,"version":"12.1","extensions":[{"shortname":"Legacy-Module","description":"

The Legacy Module helps you migrating applications from SUSE Linux Enterprise 10 and 11 and other systems to SUSE Linux Enterprise 12, by providing packages which are discontinued on SUSE Linux Enterprise Server, such as: sendmail, syslog-ng, IBM Java6, and a number of libraries (for example openssl-0.9.8).

Access to the Legacy Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself. Packages in the this module are usually supported for at most three years. Support for Sendmail and IBM Java 6 will end in September 2017 the latest.

","free":true,"eula_url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/12/x86_64/product.license/","arch":"x86_64","predecessor_ids":[],"online_predecessor_ids":[],"product_class":"MODULE","repositories":[{"description":"SLE-Module-Legacy12-Updates for sle-12-x86_64","installer_updates":false,"name":"SLE-Module-Legacy12-Updates","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/12/x86_64/update/","distro_target":"sle-12-x86_64","autorefresh":true,"id":1676,"enabled":true},{"description":"SLE-Module-Legacy12-Debuginfo-Updates for sle-12-x86_64","name":"SLE-Module-Legacy12-Debuginfo-Updates","installer_updates":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/12/x86_64/update_debug/","autorefresh":true,"distro_target":"sle-12-x86_64","id":1677,"enabled":false},{"description":"SLE-Module-Legacy12-Pool for sle-12-x86_64","installer_updates":false,"name":"SLE-Module-Legacy12-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/12/x86_64/product/","distro_target":"sle-12-x86_64","autorefresh":false,"id":1678,"enabled":true},{"id":1679,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/12/x86_64/product_debug/","autorefresh":false,"distro_target":"sle-12-x86_64","name":"SLE-Module-Legacy12-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-Legacy12-Debuginfo-Pool for sle-12-x86_64"},{"autorefresh":false,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/12/x86_64/product_source/","enabled":false,"id":1989,"description":"SLE-Module-Legacy12-Source-Pool for sle-12-x86_64","name":"SLE-Module-Legacy12-Source-Pool","installer_updates":false}],"cpe":"cpe:/o:suse:sle-module-legacy:12","product_type":"module","recommended":false,"version":"12","name":"Legacy Module","offline_predecessor_ids":[],"friendly_name":"Legacy Module 12 x86_64","migration_extra":false,"former_identifier":"sle-module-legacy","release_type":null,"friendly_version":"12","extensions":[],"identifier":"sle-module-legacy","release_stage":"released","id":1150},{"description":"

The SUSE Linux Enterprise Web and Scripting Module delivers a comprehensive suite of scripting languages, frameworks, and related tools helping developers and systems administrators accelerate the creation of stable, modern web applications, using dynamic languages, such as PHP, Ruby on Rails, and Python.

Access to the Web and Scripting Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself: Package versions in the this module are usually supported for at most three years. We are planning to release more recent versions on a schedule of approximately 18 month; the exact dates may differ per package.

","shortname":"Web-and-Scripting-Module","free":true,"eula_url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/12/x86_64/product.license/","arch":"x86_64","predecessor_ids":[],"repositories":[{"description":"SLE-Module-Web-Scripting12-Updates for sle-12-x86_64","installer_updates":false,"name":"SLE-Module-Web-Scripting12-Updates","distro_target":"sle-12-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/12/x86_64/update/","enabled":true,"id":1688},{"enabled":false,"id":1689,"distro_target":"sle-12-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/12/x86_64/update_debug/","installer_updates":false,"name":"SLE-Module-Web-Scripting12-Debuginfo-Updates","description":"SLE-Module-Web-Scripting12-Debuginfo-Updates for sle-12-x86_64"},{"description":"SLE-Module-Web-Scripting12-Pool for sle-12-x86_64","name":"SLE-Module-Web-Scripting12-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/12/x86_64/product/","enabled":true,"id":1690},{"id":1691,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/12/x86_64/product_debug/","autorefresh":false,"distro_target":"sle-12-x86_64","name":"SLE-Module-Web-Scripting12-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-Web-Scripting12-Debuginfo-Pool for sle-12-x86_64"},{"description":"SLE-Module-Web-Scripting12-Source-Pool for sle-12-x86_64","installer_updates":false,"name":"SLE-Module-Web-Scripting12-Source-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/12/x86_64/product_source/","distro_target":"sle-12-x86_64","autorefresh":false,"id":1992,"enabled":false}],"online_predecessor_ids":[],"product_class":"MODULE","cpe":"cpe:/o:suse:sle-module-web-scripting:12","product_type":"module","recommended":false,"version":"12","name":"Web and Scripting Module","offline_predecessor_ids":[],"friendly_name":"Web and Scripting Module 12 x86_64","migration_extra":false,"former_identifier":"sle-module-web-scripting","release_type":null,"friendly_version":"12","extensions":[],"identifier":"sle-module-web-scripting","release_stage":"released","id":1153},{"friendly_name":"Advanced Systems Management Module 12 x86_64","migration_extra":false,"release_type":null,"former_identifier":"sle-module-adv-systems-management","name":"Advanced Systems Management Module","offline_predecessor_ids":[],"version":"12","recommended":false,"id":1212,"release_stage":"released","identifier":"sle-module-adv-systems-management","extensions":[],"friendly_version":"12","arch":"x86_64","eula_url":"","shortname":"Adv-Sys-Mgmt-Module","description":"

This Module contains current versions of the popular configuration management frameworks Puppet and CFEngine as well as the new systems management toolbox called machinery.

The machinery tool will be frequently updated and is SUSE's upcoming systems management toolbox for inspecting and validating systems remotely, storing their system description and creating new systems to deploy them in datacenters and clouds.

","free":true,"cpe":"cpe:/o:suse:sle-module-adv-systems-management:12","product_type":"module","product_class":"MODULE","online_predecessor_ids":[],"repositories":[{"installer_updates":false,"name":"SLE-Module-Adv-Systems-Management12-Updates","description":"SLE-Module-Adv-Systems-Management12-Updates for sle-12-x86_64","enabled":true,"id":1704,"distro_target":"sle-12-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Adv-Systems-Management/12/x86_64/update/"},{"installer_updates":false,"name":"SLE-Module-Adv-Systems-Management12-Debuginfo-Updates","description":"SLE-Module-Adv-Systems-Management12-Debuginfo-Updates for sle-12-x86_64","enabled":false,"id":1705,"distro_target":"sle-12-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Adv-Systems-Management/12/x86_64/update_debug/"},{"description":"SLE-Module-Adv-Systems-Management12-Pool for sle-12-x86_64","installer_updates":false,"name":"SLE-Module-Adv-Systems-Management12-Pool","distro_target":"sle-12-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Adv-Systems-Management/12/x86_64/product/","enabled":true,"id":1706},{"enabled":false,"id":1707,"autorefresh":false,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Adv-Systems-Management/12/x86_64/product_debug/","name":"SLE-Module-Adv-Systems-Management12-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-Adv-Systems-Management12-Debuginfo-Pool for sle-12-x86_64"},{"description":"SLE-Module-Adv-Systems-Management12-Source-Pool for sle-12-x86_64","installer_updates":false,"name":"SLE-Module-Adv-Systems-Management12-Source-Pool","distro_target":"sle-12-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Adv-Systems-Management/12/x86_64/product_source/","enabled":false,"id":1998}],"predecessor_ids":[]},{"eula_url":"","arch":"x86_64","free":true,"description":"

The Public Cloud Module is a collection of tools that enables you to create and manage cloud images from the commandline on SUSE Linux Enterprise Server. When building your own images with KIWI or SUSE Studio, initialization code specific to the target cloud is included in that image.

Access to the Public Cloud Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself; please check the Release Notes for further details.

","shortname":"Public-Cloud-Module","product_type":"module","cpe":"cpe:/o:suse:sle-module-public-cloud:12","predecessor_ids":[],"online_predecessor_ids":[],"repositories":[{"description":"SLE-Module-Public-Cloud12-Updates for sle-12-x86_64","installer_updates":false,"name":"SLE-Module-Public-Cloud12-Updates","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/12/x86_64/update/","distro_target":"sle-12-x86_64","autorefresh":true,"id":1700,"enabled":true},{"description":"SLE-Module-Public-Cloud12-Debuginfo-Updates for sle-12-x86_64","installer_updates":false,"name":"SLE-Module-Public-Cloud12-Debuginfo-Updates","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/12/x86_64/update_debug/","distro_target":"sle-12-x86_64","autorefresh":true,"id":1701,"enabled":false},{"autorefresh":false,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/12/x86_64/product/","enabled":true,"id":1702,"description":"SLE-Module-Public-Cloud12-Pool for sle-12-x86_64","name":"SLE-Module-Public-Cloud12-Pool","installer_updates":false},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/12/x86_64/product_debug/","distro_target":"sle-12-x86_64","autorefresh":false,"id":1703,"enabled":false,"description":"SLE-Module-Public-Cloud12-Debuginfo-Pool for sle-12-x86_64","installer_updates":false,"name":"SLE-Module-Public-Cloud12-Debuginfo-Pool"},{"installer_updates":false,"name":"SLE-Module-Public-Cloud12-Source-Pool","description":"SLE-Module-Public-Cloud12-Source-Pool for sle-12-x86_64","enabled":false,"id":1995,"distro_target":"sle-12-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/12/x86_64/product_source/"}],"product_class":"MODULE","offline_predecessor_ids":[],"name":"Public Cloud Module","release_type":null,"former_identifier":"sle-module-public-cloud","migration_extra":false,"friendly_name":"Public Cloud Module 12 x86_64","recommended":false,"version":"12","extensions":[],"identifier":"sle-module-public-cloud","release_stage":"released","id":1220,"friendly_version":"12"},{"release_type":null,"former_identifier":"sle-live-patching","migration_extra":false,"friendly_name":"SUSE Linux Enterprise Live Patching 12 x86_64","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Live Patching","version":"12","recommended":false,"id":1253,"release_stage":"released","identifier":"sle-live-patching","extensions":[],"friendly_version":"12","arch":"x86_64","eula_url":"https://updates.suse.com/SUSE/Products/SLE-Live-Patching/12/x86_64/product.license/","free":false,"shortname":"Live-Patching","description":"

SUSE Linux Enterprise Live Patching provides packages to update critical kernel modules live in SUSE Linux Enterprise. With SUSE Linux Enterprise Live Patching, you can perform critical kernel patching without shutting down your system, reducing the need for planned downtime and increasing service availability.

","product_type":"extension","cpe":"cpe:/o:suse:sle-live-patching:12","product_class":"SLE-LP","online_predecessor_ids":[],"repositories":[{"enabled":true,"id":1741,"autorefresh":true,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Live-Patching/12/x86_64/update/","name":"SLE-Live-Patching12-Updates","installer_updates":false,"description":"SLE-Live-Patching12-Updates for sle-12-x86_64"},{"url":"https://updates.suse.com/SUSE/Updates/SLE-Live-Patching/12/x86_64/update_debug/","autorefresh":true,"distro_target":"sle-12-x86_64","id":1742,"enabled":false,"description":"SLE-Live-Patching12-Debuginfo-Updates for sle-12-x86_64","name":"SLE-Live-Patching12-Debuginfo-Updates","installer_updates":false},{"installer_updates":false,"name":"SLE-Live-Patching12-Pool","description":"SLE-Live-Patching12-Pool for sle-12-x86_64","id":1743,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Live-Patching/12/x86_64/product/","distro_target":"sle-12-x86_64","autorefresh":false},{"installer_updates":false,"name":"SLE-Live-Patching12-Debuginfo-Pool","description":"SLE-Live-Patching12-Debuginfo-Pool for sle-12-x86_64","id":1744,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Live-Patching/12/x86_64/product_debug/","distro_target":"sle-12-x86_64","autorefresh":false},{"distro_target":"sle-12-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Live-Patching/12/x86_64/product_source/","enabled":false,"id":1986,"description":"SLE-Live-Patching12-Source-Pool for sle-12-x86_64","installer_updates":false,"name":"SLE-Live-Patching12-Source-Pool"}],"predecessor_ids":[]},{"name":"SUSE Linux Enterprise Software Development Kit","offline_predecessor_ids":[],"friendly_name":"SUSE Linux Enterprise Software Development Kit 12 SP1 x86_64","migration_extra":false,"release_type":null,"former_identifier":"sle-sdk","recommended":false,"version":"12.1","extensions":[],"identifier":"sle-sdk","release_stage":"released","id":1323,"friendly_version":"12 SP1","eula_url":"https://updates.suse.com/SUSE/Products/SLE-SDK/12-SP1/x86_64/product.license/","arch":"x86_64","description":"

SUSE Linux Enterprise Software Development Kit is the Software Development Kit for the family of SUSE Linux Enterprise products. It is a free of charge extension for partners and customers working with SUSE Linux Enterprise Server and Desktop and derived products.

Packages on the SDK are delivered without L3 support; maintenance updates will be done for critical security and critical non-security issues, and where needed to remain in sync with packages delivered in the SUSE Linux Enterprise Server and Desktop products.

Packages to rebuild SUSE Linux Enterprise Server are not part of the SUSE Linux Enterprise Software Development Kit.

","shortname":"SDK12-SP1","free":true,"cpe":"cpe:/o:suse:sle-sdk:12:sp1","product_type":"extension","predecessor_ids":[1223],"repositories":[{"id":1850,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-SDK/12-SP1/x86_64/update/","distro_target":"sle-12-x86_64","autorefresh":true,"installer_updates":false,"name":"SLE-SDK12-SP1-Updates","description":"SLE-SDK12-SP1-Updates for sle-12-x86_64"},{"id":1851,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-SDK/12-SP1/x86_64/update_debug/","autorefresh":true,"distro_target":"sle-12-x86_64","name":"SLE-SDK12-SP1-Debuginfo-Updates","installer_updates":false,"description":"SLE-SDK12-SP1-Debuginfo-Updates for sle-12-x86_64"},{"id":1852,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-SDK/12-SP1/x86_64/product/","autorefresh":false,"distro_target":"sle-12-x86_64","name":"SLE-SDK12-SP1-Pool","installer_updates":false,"description":"SLE-SDK12-SP1-Pool for sle-12-x86_64"},{"url":"https://updates.suse.com/SUSE/Products/SLE-SDK/12-SP1/x86_64/product_debug/","distro_target":"sle-12-x86_64","autorefresh":false,"id":1853,"enabled":false,"description":"SLE-SDK12-SP1-Debuginfo-Pool for sle-12-x86_64","installer_updates":false,"name":"SLE-SDK12-SP1-Debuginfo-Pool"},{"description":"SLE-SDK12-SP1-Source-Pool for sle-12-x86_64","name":"SLE-SDK12-SP1-Source-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-SDK/12-SP1/x86_64/product_source/","enabled":false,"id":1907}],"online_predecessor_ids":[1223],"product_class":"SLE-SDK"},{"recommended":false,"version":"12","name":"Containers Module","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"Containers Module 12 x86_64","release_type":null,"former_identifier":"sle-module-containers","friendly_version":"12","extensions":[],"release_stage":"released","identifier":"sle-module-containers","id":1332,"description":"

This Module contains several packages revolving around containers and related tools.

","shortname":"Containers-Module","free":true,"eula_url":"","arch":"x86_64","predecessor_ids":[],"repositories":[{"description":"SLE-Module-Containers12-Updates for sle-12-x86_64","name":"SLE-Module-Containers12-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/12/x86_64/update/","enabled":true,"id":1864},{"installer_updates":false,"name":"SLE-Module-Containers12-Debuginfo-Updates","description":"SLE-Module-Containers12-Debuginfo-Updates for sle-12-x86_64","id":1865,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/12/x86_64/update_debug/","distro_target":"sle-12-x86_64","autorefresh":true},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/12/x86_64/product/","autorefresh":false,"distro_target":"sle-12-x86_64","id":1866,"enabled":true,"description":"SLE-Module-Containers12-Pool for sle-12-x86_64","name":"SLE-Module-Containers12-Pool","installer_updates":false},{"installer_updates":false,"name":"SLE-Module-Containers12-Debuginfo-Pool","description":"SLE-Module-Containers12-Debuginfo-Pool for sle-12-x86_64","id":1867,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/12/x86_64/product_debug/","distro_target":"sle-12-x86_64","autorefresh":false},{"installer_updates":false,"name":"SLE-Module-Containers12-Source-Pool","description":"SLE-Module-Containers12-Source-Pool for sle-12-x86_64","enabled":false,"id":1957,"distro_target":"sle-12-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/12/x86_64/product_source/"}],"online_predecessor_ids":[],"product_class":"MODULE","cpe":"cpe:/o:suse:sle-module-containers:12","product_type":"module"},{"version":"12.1","recommended":false,"former_identifier":"sle-hae-geo","release_type":null,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise High Availability GEO Extension 12 SP1 x86_64","offline_predecessor_ids":[1101,1107,1286],"name":"SUSE Linux Enterprise High Availability GEO Extension","friendly_version":"12 SP1","identifier":"sle-ha-geo","release_stage":"released","id":1337,"extensions":[],"free":false,"shortname":"SLEHAGEO12-SP1","description":"SUSE Linux Enterprise High Availability Geographical Cluster Extension","arch":"x86_64","eula_url":"https://updates.suse.com/SUSE/Products/SLE-HA-GEO/12-SP1/x86_64/product.license/","online_predecessor_ids":[1157],"repositories":[{"url":"https://updates.suse.com/SUSE/Updates/SLE-HA-GEO/12-SP1/x86_64/update/","autorefresh":true,"distro_target":"sle-12-x86_64","id":1887,"enabled":true,"description":"SLE-HA-GEO12-SP1-Updates for sle-12-x86_64","name":"SLE-HA-GEO12-SP1-Updates","installer_updates":false},{"description":"SLE-HA-GEO12-SP1-Debuginfo-Updates for sle-12-x86_64","installer_updates":false,"name":"SLE-HA-GEO12-SP1-Debuginfo-Updates","url":"https://updates.suse.com/SUSE/Updates/SLE-HA-GEO/12-SP1/x86_64/update_debug/","distro_target":"sle-12-x86_64","autorefresh":true,"id":1888,"enabled":false},{"description":"SLE-HA-GEO12-SP1-Pool for sle-12-x86_64","installer_updates":false,"name":"SLE-HA-GEO12-SP1-Pool","distro_target":"sle-12-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-HA-GEO/12-SP1/x86_64/product/","enabled":true,"id":1889},{"name":"SLE-HA-GEO12-SP1-Debuginfo-Pool","installer_updates":false,"description":"SLE-HA-GEO12-SP1-Debuginfo-Pool for sle-12-x86_64","enabled":false,"id":1890,"autorefresh":false,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-HA-GEO/12-SP1/x86_64/product_debug/"},{"description":"SLE-HA-GEO12-SP1-Source-Pool for sle-12-x86_64","installer_updates":false,"name":"SLE-HA-GEO12-SP1-Source-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-HA-GEO/12-SP1/x86_64/product_source/","distro_target":"sle-12-x86_64","autorefresh":false,"id":1915,"enabled":false}],"product_class":"SLE-HAE-GEO","predecessor_ids":[1157],"product_type":"extension","cpe":"cpe:/o:suse:sle-ha-geo:12:sp1"},{"friendly_version":"12 SP1","extensions":[],"id":1338,"release_stage":"released","identifier":"sle-we","recommended":false,"version":"12.1","name":"SUSE Linux Enterprise Workstation Extension","offline_predecessor_ids":[],"friendly_name":"SUSE Linux Enterprise Workstation Extension 12 SP1 x86_64","migration_extra":false,"former_identifier":"sle-we","release_type":null,"predecessor_ids":[1222],"product_class":"SLE-WE","online_predecessor_ids":[1222],"repositories":[{"description":"SLE-WE12-SP1-Updates for sle-12-x86_64","name":"SLE-WE12-SP1-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-WE/12-SP1/x86_64/update/","enabled":true,"id":1891},{"name":"SLE-WE12-SP1-Debuginfo-Updates","installer_updates":false,"description":"SLE-WE12-SP1-Debuginfo-Updates for sle-12-x86_64","enabled":false,"id":1892,"autorefresh":true,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-WE/12-SP1/x86_64/update_debug/"},{"name":"SLE-WE12-SP1-Pool","installer_updates":false,"description":"SLE-WE12-SP1-Pool for sle-12-x86_64","enabled":true,"id":1893,"autorefresh":false,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-WE/12-SP1/x86_64/product/"},{"installer_updates":false,"name":"SLE-WE12-SP1-Debuginfo-Pool","description":"SLE-WE12-SP1-Debuginfo-Pool for sle-12-x86_64","id":1894,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-WE/12-SP1/x86_64/product_debug/","distro_target":"sle-12-x86_64","autorefresh":false},{"description":"SLE-12-SP1-GA-Desktop-nVidia-Driver","installer_updates":false,"name":"SLE-12-SP1-GA-Desktop-nVidia-Driver","url":"http://download.nvidia.com/novell/sle12sp1/","distro_target":null,"autorefresh":true,"id":1911,"enabled":true},{"installer_updates":false,"name":"SLE-WE12-SP1-Source-Pool","description":"SLE-WE12-SP1-Source-Pool for sle-12-x86_64","id":1916,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-WE/12-SP1/x86_64/product_source/","distro_target":"sle-12-x86_64","autorefresh":false}],"cpe":"cpe:/o:suse:sle-we:12:sp1","product_type":"extension","shortname":"SLEWE12-SP1","description":"SUSE Linux Enterprise Workstation Extension extends the functionality of SUSE Linux Enterprise Server with packages of SUSE Linux Enterprise Desktop, like additional desktop applications (office suite, email client, graphical editor ...) and libraries. It allows to combine both products to create a full featured Workstation.","free":false,"eula_url":"https://updates.suse.com/SUSE/Products/SLE-WE/12-SP1/x86_64/product.license/","arch":"x86_64"},{"shortname":"Toolchain-Module","description":"Via this Module you will have access to a more recent GCC and Toolchain in addition to the default compiler of SUSE Linux Enterprise. Access to the Toolchain Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself. Please check the Release Notes for further details.","free":true,"eula_url":"","arch":"x86_64","predecessor_ids":[],"online_predecessor_ids":[],"repositories":[{"description":"SLE-Module-Toolchain12-Updates for sle-12-x86_64","name":"SLE-Module-Toolchain12-Updates","installer_updates":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Toolchain/12/x86_64/update/","autorefresh":true,"distro_target":"sle-12-x86_64","id":1903,"enabled":true},{"id":1904,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Toolchain/12/x86_64/update_debug/","distro_target":"sle-12-x86_64","autorefresh":true,"installer_updates":false,"name":"SLE-Module-Toolchain12-Debuginfo-Updates","description":"SLE-Module-Toolchain12-Debuginfo-Updates for sle-12-x86_64"},{"id":1905,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Toolchain/12/x86_64/product/","distro_target":"sle-12-x86_64","autorefresh":false,"installer_updates":false,"name":"SLE-Module-Toolchain12-Pool","description":"SLE-Module-Toolchain12-Pool for sle-12-x86_64"},{"description":"SLE-Module-Toolchain12-Debuginfo-Pool for sle-12-x86_64","installer_updates":false,"name":"SLE-Module-Toolchain12-Debuginfo-Pool","distro_target":"sle-12-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Toolchain/12/x86_64/product_debug/","enabled":false,"id":1906}],"product_class":"MODULE","cpe":"cpe:/o:suse:sle-module-toolchain:12","product_type":"module","recommended":false,"version":"12","name":"Toolchain Module","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"Toolchain Module 12 x86_64","former_identifier":"sle-module-toolchain","release_type":null,"friendly_version":"12","extensions":[],"identifier":"sle-module-toolchain","release_stage":"released","id":1341},{"extensions":[],"id":1351,"release_stage":"released","identifier":"ses","friendly_version":"2.1","offline_predecessor_ids":[],"name":"SUSE Enterprise Storage","release_type":null,"former_identifier":"ses","migration_extra":false,"friendly_name":"SUSE Enterprise Storage 2.1 x86_64","recommended":false,"version":"2.1","product_type":"extension","cpe":"cpe:/o:suse:ses:2.1","predecessor_ids":[1342],"online_predecessor_ids":[1342],"repositories":[{"installer_updates":false,"name":"SUSE-Enterprise-Storage-2.1-Updates","description":"SUSE-Enterprise-Storage-2.1-Updates for sle-12-x86_64","enabled":true,"id":1958,"distro_target":"sle-12-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/Storage/2.1/x86_64/update/"},{"url":"https://updates.suse.com/SUSE/Updates/Storage/2.1/x86_64/update_debug/","autorefresh":true,"distro_target":"sle-12-x86_64","id":1959,"enabled":false,"description":"SUSE-Enterprise-Storage-2.1-Debuginfo-Updates for sle-12-x86_64","name":"SUSE-Enterprise-Storage-2.1-Debuginfo-Updates","installer_updates":false},{"installer_updates":false,"name":"SUSE-Enterprise-Storage-2.1-Pool","description":"SUSE-Enterprise-Storage-2.1-Pool for sle-12-x86_64","enabled":true,"id":1960,"distro_target":"sle-12-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/Storage/2.1/x86_64/product/"},{"autorefresh":false,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Products/Storage/2.1/x86_64/product_debug/","enabled":false,"id":1961,"description":"SUSE-Enterprise-Storage-2.1-Debuginfo-Pool for sle-12-x86_64","name":"SUSE-Enterprise-Storage-2.1-Debuginfo-Pool","installer_updates":false},{"description":"SUSE-Enterprise-Storage-2.1-Source-Pool for sle-12-x86_64","name":"SUSE-Enterprise-Storage-2.1-Source-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Products/Storage/2.1/x86_64/product_source/","enabled":false,"id":1962}],"product_class":"SES","eula_url":"https://updates.suse.com/SUSE/Products/Storage/2.1/x86_64/product.license/","arch":"x86_64","free":false,"description":"SUSE Enterprise Storage 2.1 for SUSE Linux Enterprise Server 12-SP1, powered by Ceph.","shortname":"SES2.1"},{"product_type":"module","cpe":"cpe:/o:suse:sle-module-certifications:12","predecessor_ids":[],"repositories":[{"autorefresh":true,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Certifications/12/x86_64/update/","enabled":true,"id":2068,"description":"SLE-Module-Certifications12-Updates for sle-12-x86_64","name":"SLE-Module-Certifications12-Updates","installer_updates":false},{"enabled":false,"id":2069,"autorefresh":true,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Certifications/12/x86_64/update_debug/","name":"SLE-Module-Certifications12-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-Certifications12-Debuginfo-Updates for sle-12-x86_64"},{"description":"SLE-Module-Certifications12-Pool for sle-12-x86_64","installer_updates":false,"name":"SLE-Module-Certifications12-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Certifications/12/x86_64/product/","distro_target":"sle-12-x86_64","autorefresh":false,"id":2070,"enabled":true},{"enabled":false,"id":2071,"autorefresh":false,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Certifications/12/x86_64/product_debug/","name":"SLE-Module-Certifications12-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-Certifications12-Debuginfo-Pool for sle-12-x86_64"}],"online_predecessor_ids":[],"product_class":"MODULE","eula_url":"","arch":"x86_64","free":true,"description":"

This module contains packages specific to certifications.

It contains:

Packages used for the Evaluated Configuration of the Common Criteria Certification of SUSE Linux Enterprise Server 12 GA.

Packages used for the FIPS 140-2 certification of various cryptographics modules.

Please refer to our certification pages referenced from https://www.suse.com/security/

","shortname":"Certifications","extensions":[],"id":1368,"release_stage":"released","identifier":"sle-module-certifications","friendly_version":"12","offline_predecessor_ids":[],"name":"Certifications Module","release_type":null,"former_identifier":"sle-module-certifications","migration_extra":false,"friendly_name":"Certifications Module 12 x86_64","recommended":false,"version":"12"},{"free":false,"shortname":"SES3","description":"SUSE Enterprise Storage 3 for SUSE Linux Enterprise Server 12-SP1, powered by Ceph.","eula_url":"https://updates.suse.com/SUSE/Products/Storage/3/x86_64/product.license/","arch":"x86_64","predecessor_ids":[1351],"repositories":[{"description":"SUSE-Enterprise-Storage-3-Updates for sle-12-x86_64","name":"SUSE-Enterprise-Storage-3-Updates","installer_updates":false,"url":"https://updates.suse.com/SUSE/Updates/Storage/3/x86_64/update/","autorefresh":true,"distro_target":"sle-12-x86_64","id":2072,"enabled":true},{"enabled":false,"id":2073,"autorefresh":true,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Updates/Storage/3/x86_64/update_debug/","name":"SUSE-Enterprise-Storage-3-Debuginfo-Updates","installer_updates":false,"description":"SUSE-Enterprise-Storage-3-Debuginfo-Updates for sle-12-x86_64"},{"id":2074,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/Storage/3/x86_64/product/","autorefresh":false,"distro_target":"sle-12-x86_64","name":"SUSE-Enterprise-Storage-3-Pool","installer_updates":false,"description":"SUSE-Enterprise-Storage-3-Pool for sle-12-x86_64"},{"enabled":false,"id":2075,"autorefresh":false,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Products/Storage/3/x86_64/product_debug/","name":"SUSE-Enterprise-Storage-3-Debuginfo-Pool","installer_updates":false,"description":"SUSE-Enterprise-Storage-3-Debuginfo-Pool for sle-12-x86_64"},{"name":"SUSE-Enterprise-Storage-3-Source-Pool","installer_updates":false,"description":"SUSE-Enterprise-Storage-3-Source-Pool for sle-12-x86_64","enabled":false,"id":2076,"autorefresh":false,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Products/Storage/3/x86_64/product_source/"}],"online_predecessor_ids":[1351],"product_class":"SES","product_type":"extension","cpe":"cpe:/o:suse:ses:3","recommended":false,"version":"3","offline_predecessor_ids":[],"name":"SUSE Enterprise Storage","former_identifier":"ses","release_type":null,"friendly_name":"SUSE Enterprise Storage 3 x86_64","migration_extra":false,"friendly_version":"3","extensions":[],"identifier":"ses","release_stage":"released","id":1369},{"online_predecessor_ids":[1473],"repositories":[{"url":"https://updates.suse.com/SUSE/Backports/SLE-12-SP1_x86_64/standard/","distro_target":"sle-12-x86_64","autorefresh":false,"id":2336,"enabled":true,"description":"SUSE-PackageHub-12-SP1-Standard-Pool for sle-12-x86_64","installer_updates":false,"name":"SUSE-PackageHub-12-SP1-Standard-Pool"},{"url":"https://updates.suse.com/SUSE/Backports/SLE-12-SP1_x86_64/standard_debug/","autorefresh":true,"distro_target":"sle-12-x86_64","id":2337,"enabled":false,"description":"SUSE-PackageHub-12-SP1-Debuginfo for sle-12-x86_64","name":"SUSE-PackageHub-12-SP1-Debuginfo","installer_updates":false},{"installer_updates":false,"name":"SUSE-PackageHub-12-SP1-Pool","description":"SUSE-PackageHub-12-SP1-Pool for sle-12-x86_64","id":2338,"enabled":true,"url":"https://updates.suse.com/SUSE/Backports/SLE-12-SP1_x86_64/product/","distro_target":"sle-12-x86_64","autorefresh":false}],"product_class":"7261","predecessor_ids":[1473],"product_type":"extension","cpe":"cpe:/o:suse:packagehub:12:sp1","free":true,"description":"SUSE Package Hub is a free of charge extension providing access to community maintained packages built to run on SUSE Linux Enterprise Server. Built from the same sources used in the openSUSE distributions, these quality packages provide additional software to what is found in the SUSE Linux Enterprise Server product. Packages from the Package Hub are delivered without L3 support from SUSE. General updates and fixes to the packages in SUSE Package Hub are provided by the openSUSE community based on their discretion though SUSE will monitor and ensure that any known critical security issues will be addressed. Packages in the Package Hub are approved by SUSE for use with SUSE Linux Enterprise Server 12 and to not interfere with the supportability of SUSE Linux Enterprise Server it's modules and extensions. For more information about SUSE Package Hub please visit https://packagehub.suse.com.","shortname":"SUSE-PackageHub-12-SP1","arch":"x86_64","eula_url":"","friendly_version":"12 SP1","release_stage":"released","identifier":"PackageHub","id":1476,"extensions":[],"version":"12.1","recommended":false,"release_type":null,"former_identifier":"PackageHub","friendly_name":"SUSE Package Hub 12 SP1 x86_64","migration_extra":false,"offline_predecessor_ids":[],"name":"SUSE Package Hub"},{"friendly_version":"12 SP1","extensions":[],"release_stage":"released","id":1533,"identifier":"SLES-LTSS","recommended":false,"version":"12.1","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Server LTSS","former_identifier":"SLES-LTSS","release_type":null,"friendly_name":"SUSE Linux Enterprise Server LTSS 12 SP1 x86_64","migration_extra":false,"predecessor_ids":[],"repositories":[{"installer_updates":false,"name":"SLES12-SP1-LTSS-Updates","description":"SLES12-SP1-LTSS-Updates for sle-12-x86_64","id":2457,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-SP1-LTSS/x86_64/update/","distro_target":"sle-12-x86_64","autorefresh":true},{"url":"https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-SP1-LTSS/x86_64/update_debug/","distro_target":"sle-12-x86_64","autorefresh":true,"id":2458,"enabled":false,"description":"SLES12-SP1-LTSS-Debuginfo-Updates for sle-12-x86_64","installer_updates":false,"name":"SLES12-SP1-LTSS-Debuginfo-Updates"}],"online_predecessor_ids":[],"product_class":"SLES12-SP1-LTSS-X86","product_type":"extension","cpe":"cpe:/o:suse:sles-ltss:12:sp1","free":false,"description":"SUSE Linux Enterprise offers a comprehensive suite of products built on a single code base. The platform addresses business needs from the smallest thin-client devices to the world's most powerful high-performance computing and mainframe servers. SUSE Linux Enterprise offers common management tools and technology certifications across the platform, and each product is enterprise-class.","shortname":"SLES12-SP1 LTSS","eula_url":"","arch":"x86_64"}],"release_stage":"released","id":1346,"identifier":"SLES_SAP","friendly_version":"12 SP1","eula_url":"https://updates.suse.com/SUSE/Products/SLE-SAP/12-SP1/x86_64/product.license/","arch":"x86_64","free":false,"description":"SUSE LINUX Enterprise Server 12 SP1 for SAP Applications","shortname":"SLE-12-SP1-SAP","product_type":"base","cpe":"cpe:/o:suse:sles_sap:12:sp1","predecessor_ids":[1319],"product_class":"AiO","online_predecessor_ids":[1319],"repositories":[{"id":1846,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-SP1/x86_64/update/","distro_target":"sle-12-x86_64","autorefresh":true,"installer_updates":false,"name":"SLES12-SP1-Updates","description":"SLES12-SP1-Updates for sle-12-x86_64"},{"description":"SLES12-SP1-Debuginfo-Updates for sle-12-x86_64","name":"SLES12-SP1-Debuginfo-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-SP1/x86_64/update_debug/","enabled":false,"id":1847},{"name":"SLES12-SP1-Pool","installer_updates":false,"description":"SLES12-SP1-Pool for sle-12-x86_64","id":1848,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-SERVER/12-SP1/x86_64/product/","autorefresh":false,"distro_target":"sle-12-x86_64"},{"description":"SLES12-SP1-Debuginfo-Pool for sle-12-x86_64","name":"SLES12-SP1-Debuginfo-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-SERVER/12-SP1/x86_64/product_debug/","enabled":false,"id":1849},{"url":"https://updates.suse.com/SUSE/Updates/SLE-HA/12-SP1/x86_64/update/","distro_target":"sle-12-x86_64","autorefresh":true,"id":1854,"enabled":true,"description":"SLE-HA12-SP1-Updates for sle-12-x86_64","installer_updates":false,"name":"SLE-HA12-SP1-Updates"},{"enabled":false,"id":1855,"autorefresh":true,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-HA/12-SP1/x86_64/update_debug/","name":"SLE-HA12-SP1-Debuginfo-Updates","installer_updates":false,"description":"SLE-HA12-SP1-Debuginfo-Updates for sle-12-x86_64"},{"installer_updates":false,"name":"SLE-HA12-SP1-Pool","description":"SLE-HA12-SP1-Pool for sle-12-x86_64","id":1856,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-HA/12-SP1/x86_64/product/","distro_target":"sle-12-x86_64","autorefresh":false},{"name":"SLE-HA12-SP1-Debuginfo-Pool","installer_updates":false,"description":"SLE-HA12-SP1-Debuginfo-Pool for sle-12-x86_64","enabled":false,"id":1857,"autorefresh":false,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-HA/12-SP1/x86_64/product_debug/"},{"description":"SLES12-SP1-Source-Pool for sle-12-x86_64","installer_updates":false,"name":"SLES12-SP1-Source-Pool","distro_target":"sle-12-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-SERVER/12-SP1/x86_64/product_source/","enabled":false,"id":1910},{"name":"SLE-HA12-SP1-Source-Pool","installer_updates":false,"description":"SLE-HA12-SP1-Source-Pool for sle-12-x86_64","enabled":false,"id":1914,"autorefresh":false,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-HA/12-SP1/x86_64/product_source/"},{"installer_updates":false,"name":"SLE-12-SP1-SAP-Updates","description":"SLE-12-SP1-SAP-Updates for sle-12-x86_64","enabled":true,"id":1937,"distro_target":"sle-12-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-SAP/12-SP1/x86_64/update/"},{"installer_updates":false,"name":"SLE-12-SP1-SAP-Debuginfo-Updates","description":"SLE-12-SP1-SAP-Debuginfo-Updates for sle-12-x86_64","id":1938,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-SAP/12-SP1/x86_64/update_debug/","distro_target":"sle-12-x86_64","autorefresh":true},{"id":1939,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-SAP/12-SP1/x86_64/product/","distro_target":"sle-12-x86_64","autorefresh":false,"installer_updates":false,"name":"SLE12-SP1-SAP-Pool","description":"SLE12-SP1-SAP-Pool for sle-12-x86_64"},{"id":1940,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-SAP/12-SP1/x86_64/product_debug/","distro_target":"sle-12-x86_64","autorefresh":false,"installer_updates":false,"name":"SLE12-SP1-SAP-Debuginfo-Pool","description":"SLE12-SP1-SAP-Debuginfo-Pool for sle-12-x86_64"},{"id":1984,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-SAP/12-SP1/x86_64/product_source/","distro_target":"sle-12-x86_64","autorefresh":false,"installer_updates":false,"name":"SLE12-SP1-SAP-Source-Pool","description":"SLE12-SP1-SAP-Source-Pool for sle-12-x86_64"}]},{"cpe":"cpe:/o:suse:suse-openstack-cloud:6","product_type":"extension","online_predecessor_ids":[],"product_class":"SUSE_CLOUD","repositories":[{"description":"SUSE-OpenStack-Cloud-6-Updates for sle-12-x86_64","name":"SUSE-OpenStack-Cloud-6-Updates","installer_updates":false,"url":"https://updates.suse.com/SUSE/Updates/OpenStack-Cloud/6/x86_64/update/","autorefresh":true,"distro_target":"sle-12-x86_64","id":1941,"enabled":true},{"name":"SUSE-OpenStack-Cloud-6-Debuginfo-Updates","installer_updates":false,"description":"SUSE-OpenStack-Cloud-6-Debuginfo-Updates for sle-12-x86_64","id":1942,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/OpenStack-Cloud/6/x86_64/update_debug/","autorefresh":true,"distro_target":"sle-12-x86_64"},{"autorefresh":false,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Products/OpenStack-Cloud/6/x86_64/product/","enabled":true,"id":1943,"description":"SUSE-OpenStack-Cloud-6-Pool for sle-12-x86_64","name":"SUSE-OpenStack-Cloud-6-Pool","installer_updates":false},{"name":"SUSE-OpenStack-Cloud-6-Debuginfo-Pool","installer_updates":false,"description":"SUSE-OpenStack-Cloud-6-Debuginfo-Pool for sle-12-x86_64","id":1944,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/OpenStack-Cloud/6/x86_64/product_debug/","autorefresh":false,"distro_target":"sle-12-x86_64"},{"distro_target":"sle-12-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/OpenStack-Cloud/6/x86_64/product_source/","enabled":false,"id":1982,"description":"SUSE-OpenStack-Cloud-6-Source-Pool for sle-12-x86_64","installer_updates":false,"name":"SUSE-OpenStack-Cloud-6-Source-Pool"}],"predecessor_ids":[],"arch":"x86_64","eula_url":"https://updates.suse.com/SUSE/Products/OpenStack-Cloud/6/x86_64/product.license/","shortname":"SOC6","description":"SUSE OpenStack Cloud 6","free":false,"identifier":"suse-openstack-cloud","release_stage":"released","id":1347,"extensions":[],"friendly_version":"6","friendly_name":"SUSE OpenStack Cloud 6 x86_64","migration_extra":false,"former_identifier":"suse-openstack-cloud","release_type":null,"name":"SUSE OpenStack Cloud","offline_predecessor_ids":[1090,1091,1114,1221,1288],"version":"6","recommended":false},{"cpe":"cpe:/o:suse:suse-manager-server:3.0","product_type":"extension","predecessor_ids":[],"repositories":[{"id":1945,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SUSE-Manager-Server/3.0/s390x/update/","autorefresh":true,"distro_target":"sle-12-s390x","name":"SUSE-Manager-Server-3.0-Updates","installer_updates":false,"description":"SUSE-Manager-Server-3.0-Updates for sle-12-s390x"},{"id":1946,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SUSE-Manager-Server/3.0/s390x/update_debug/","distro_target":"sle-12-s390x","autorefresh":true,"installer_updates":false,"name":"SUSE-Manager-Server-3.0-Debuginfo-Updates","description":"SUSE-Manager-Server-3.0-Debuginfo-Updates for sle-12-s390x"},{"installer_updates":false,"name":"SUSE-Manager-Server-3.0-Pool","description":"SUSE-Manager-Server-3.0-Pool for sle-12-s390x","id":1947,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SUSE-Manager-Server/3.0/s390x/product/","distro_target":"sle-12-s390x","autorefresh":false},{"description":"SUSE-Manager-Server-3.0-Debuginfo-Pool for sle-12-s390x","installer_updates":false,"name":"SUSE-Manager-Server-3.0-Debuginfo-Pool","url":"https://updates.suse.com/SUSE/Products/SUSE-Manager-Server/3.0/s390x/product_debug/","distro_target":"sle-12-s390x","autorefresh":false,"id":1948,"enabled":false},{"name":"SUSE-Manager-Server-3.0-Source-Pool","installer_updates":false,"description":"SUSE-Manager-Server-3.0-Source-Pool for sle-12-s390x","id":2000,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SUSE-Manager-Server/3.0/s390x/product_source/","autorefresh":false,"distro_target":"sle-12-s390x"}],"online_predecessor_ids":[],"product_class":"SMS-Z","eula_url":"https://updates.suse.com/SUSE/Products/SUSE-Manager-Server/3.0/s390x/product.license/","arch":"s390x","description":"SUSE Manager lets you efficiently manage physical, virtual, and cloud-based Linux systems. It provides automated and cost-effective configuration and software management, asset management, and system provisioning.","shortname":"SUSE Manager Server","free":false,"extensions":[],"id":1348,"release_stage":"released","identifier":"SUSE-Manager-Server","friendly_version":"3.0","name":"SUSE Manager Server","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"SUSE Manager Server 3.0 s390x","former_identifier":"SUSE-Manager-Server","release_type":null,"recommended":false,"version":"3.0"},{"offline_predecessor_ids":[],"name":"SUSE Manager Server","release_type":null,"former_identifier":"SUSE-Manager-Server","friendly_name":"SUSE Manager Server 3.0 x86_64","migration_extra":false,"recommended":false,"version":"3.0","extensions":[],"release_stage":"released","id":1349,"identifier":"SUSE-Manager-Server","friendly_version":"3.0","eula_url":"https://updates.suse.com/SUSE/Products/SUSE-Manager-Server/3.0/x86_64/product.license/","arch":"x86_64","free":false,"shortname":"SUSE Manager Server","description":"SUSE Manager lets you efficiently manage physical, virtual, and cloud-based Linux systems. It provides automated and cost-effective configuration and software management, asset management, and system provisioning.","product_type":"extension","cpe":"cpe:/o:suse:suse-manager-server:3.0","predecessor_ids":[],"online_predecessor_ids":[],"repositories":[{"name":"SUSE-Manager-Server-3.0-Updates","installer_updates":false,"description":"SUSE-Manager-Server-3.0-Updates for sle-12-x86_64","id":1949,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SUSE-Manager-Server/3.0/x86_64/update/","autorefresh":true,"distro_target":"sle-12-x86_64"},{"autorefresh":true,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Updates/SUSE-Manager-Server/3.0/x86_64/update_debug/","enabled":false,"id":1950,"description":"SUSE-Manager-Server-3.0-Debuginfo-Updates for sle-12-x86_64","name":"SUSE-Manager-Server-3.0-Debuginfo-Updates","installer_updates":false},{"installer_updates":false,"name":"SUSE-Manager-Server-3.0-Pool","description":"SUSE-Manager-Server-3.0-Pool for sle-12-x86_64","id":1951,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SUSE-Manager-Server/3.0/x86_64/product/","distro_target":"sle-12-x86_64","autorefresh":false},{"url":"https://updates.suse.com/SUSE/Products/SUSE-Manager-Server/3.0/x86_64/product_debug/","autorefresh":false,"distro_target":"sle-12-x86_64","id":1952,"enabled":false,"description":"SUSE-Manager-Server-3.0-Debuginfo-Pool for sle-12-x86_64","name":"SUSE-Manager-Server-3.0-Debuginfo-Pool","installer_updates":false},{"autorefresh":false,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Products/SUSE-Manager-Server/3.0/x86_64/product_source/","enabled":false,"id":2001,"description":"SUSE-Manager-Server-3.0-Source-Pool for sle-12-x86_64","name":"SUSE-Manager-Server-3.0-Source-Pool","installer_updates":false}],"product_class":"SMS-X86"},{"release_stage":"released","identifier":"SUSE-Linux-Enterprise-RT","id":1350,"extensions":[],"friendly_version":"12 SP1","friendly_name":"SUSE Linux Enterprise Real Time Extension 12 SP1 x86_64","migration_extra":false,"release_type":null,"former_identifier":"SUSE-Linux-Enterprise-RT","name":"SUSE Linux Enterprise Real Time Extension","offline_predecessor_ids":[1296],"version":"12.1","recommended":false,"cpe":"cpe:/o:suse:suse-linux-enterprise-rt:12:sp1","product_type":"extension","online_predecessor_ids":[],"product_class":"13319","repositories":[{"description":"SLE-RT12-SP1-Updates for sle-12-x86_64","name":"SLE-RT12-SP1-Updates","installer_updates":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-RT/12-SP1/x86_64/update/","autorefresh":true,"distro_target":"sle-12-x86_64","id":1953,"enabled":true},{"enabled":false,"id":1954,"autorefresh":true,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-RT/12-SP1/x86_64/update_debug/","name":"SLE-RT12-SP1-Debuginfo-Updates","installer_updates":false,"description":"SLE-RT12-SP1-Debuginfo-Updates for sle-12-x86_64"},{"id":1955,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-RT/12-SP1/x86_64/product/","distro_target":"sle-12-x86_64","autorefresh":false,"installer_updates":false,"name":"SLE-RT12-SP1-Pool","description":"SLE-RT12-SP1-Pool for sle-12-x86_64"},{"description":"SLE-RT12-SP1-Debuginfo-Pool for sle-12-x86_64","installer_updates":false,"name":"SLE-RT12-SP1-Debuginfo-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-RT/12-SP1/x86_64/product_debug/","distro_target":"sle-12-x86_64","autorefresh":false,"id":1956,"enabled":false}],"predecessor_ids":[],"arch":"x86_64","eula_url":"https://updates.suse.com/SUSE/Products/SLE-RT/12-SP1/x86_64/product.license/","description":"SUSE Linux Enterprise Real Time Extension 12 SP1.","shortname":"SLERT12 SP1","free":false},{"shortname":"SES2.1","description":"SUSE Enterprise Storage 2.1 for SUSE Linux Enterprise Server 12-SP1, powered by Ceph.","free":false,"arch":"x86_64","eula_url":"https://updates.suse.com/SUSE/Products/Storage/2.1/x86_64/product.license/","product_class":"SES","online_predecessor_ids":[1342],"repositories":[{"id":1958,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/Storage/2.1/x86_64/update/","autorefresh":true,"distro_target":"sle-12-x86_64","name":"SUSE-Enterprise-Storage-2.1-Updates","installer_updates":false,"description":"SUSE-Enterprise-Storage-2.1-Updates for sle-12-x86_64"},{"id":1959,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/Storage/2.1/x86_64/update_debug/","autorefresh":true,"distro_target":"sle-12-x86_64","name":"SUSE-Enterprise-Storage-2.1-Debuginfo-Updates","installer_updates":false,"description":"SUSE-Enterprise-Storage-2.1-Debuginfo-Updates for sle-12-x86_64"},{"description":"SUSE-Enterprise-Storage-2.1-Pool for sle-12-x86_64","installer_updates":false,"name":"SUSE-Enterprise-Storage-2.1-Pool","url":"https://updates.suse.com/SUSE/Products/Storage/2.1/x86_64/product/","distro_target":"sle-12-x86_64","autorefresh":false,"id":1960,"enabled":true},{"name":"SUSE-Enterprise-Storage-2.1-Debuginfo-Pool","installer_updates":false,"description":"SUSE-Enterprise-Storage-2.1-Debuginfo-Pool for sle-12-x86_64","id":1961,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/Storage/2.1/x86_64/product_debug/","autorefresh":false,"distro_target":"sle-12-x86_64"},{"url":"https://updates.suse.com/SUSE/Products/Storage/2.1/x86_64/product_source/","autorefresh":false,"distro_target":"sle-12-x86_64","id":1962,"enabled":false,"description":"SUSE-Enterprise-Storage-2.1-Source-Pool for sle-12-x86_64","name":"SUSE-Enterprise-Storage-2.1-Source-Pool","installer_updates":false}],"predecessor_ids":[1342],"cpe":"cpe:/o:suse:ses:2.1","product_type":"extension","version":"2.1","recommended":false,"migration_extra":false,"friendly_name":"SUSE Enterprise Storage 2.1 x86_64","former_identifier":"ses","release_type":null,"name":"SUSE Enterprise Storage","offline_predecessor_ids":[],"friendly_version":"2.1","id":1351,"release_stage":"released","identifier":"ses","extensions":[]},{"friendly_version":"3.0","release_stage":"released","id":1352,"identifier":"SUSE-Manager-Proxy","extensions":[],"version":"3.0","recommended":false,"migration_extra":false,"friendly_name":"SUSE Manager Proxy 3.0 x86_64","release_type":null,"former_identifier":"SUSE-Manager-Proxy","name":"SUSE Manager Proxy","offline_predecessor_ids":[],"product_class":"SMP","online_predecessor_ids":[],"repositories":[{"name":"SUSE-Manager-Proxy-3.0-Updates","installer_updates":false,"description":"SUSE-Manager-Proxy-3.0-Updates for sle-12-x86_64","id":1968,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SUSE-Manager-Proxy/3.0/x86_64/update/","autorefresh":true,"distro_target":"sle-12-x86_64"},{"id":1969,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SUSE-Manager-Proxy/3.0/x86_64/update_debug/","autorefresh":true,"distro_target":"sle-12-x86_64","name":"SUSE-Manager-Proxy-3.0-Debuginfo-Updates","installer_updates":false,"description":"SUSE-Manager-Proxy-3.0-Debuginfo-Updates for sle-12-x86_64"},{"description":"SUSE-Manager-Proxy-3.0-Pool for sle-12-x86_64","name":"SUSE-Manager-Proxy-3.0-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SUSE-Manager-Proxy/3.0/x86_64/product/","autorefresh":false,"distro_target":"sle-12-x86_64","id":1970,"enabled":true},{"installer_updates":false,"name":"SUSE-Manager-Proxy-3.0-Debuginfo-Pool","description":"SUSE-Manager-Proxy-3.0-Debuginfo-Pool for sle-12-x86_64","enabled":false,"id":1971,"distro_target":"sle-12-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SUSE-Manager-Proxy/3.0/x86_64/product_debug/"},{"id":2002,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SUSE-Manager-Proxy/3.0/x86_64/product_source/","distro_target":"sle-12-x86_64","autorefresh":false,"installer_updates":false,"name":"SUSE-Manager-Proxy-3.0-Source-Pool","description":"SUSE-Manager-Proxy-3.0-Source-Pool for sle-12-x86_64"}],"predecessor_ids":[],"cpe":"cpe:/o:suse:suse-manager-proxy:3.0","product_type":"extension","shortname":"SUSE Manager Proxy","description":"SUSE Manager Proxies extend large and/or geographically dispersed SUSE Manager environments to reduce load on the SUSE Manager Server, lower bandwidth needs, and provide faster local updates.","free":false,"arch":"x86_64","eula_url":"https://updates.suse.com/SUSE/Products/SUSE-Manager-Proxy/3.0/x86_64/product.license/"},{"release_stage":"released","id":1353,"identifier":"sle-module-containers","extensions":[],"friendly_version":"12","migration_extra":false,"friendly_name":"Containers Module 12 ppc64le","release_type":null,"former_identifier":"sle-module-containers","name":"Containers Module","offline_predecessor_ids":[],"version":"12","recommended":false,"cpe":"cpe:/o:suse:sle-module-containers:12","product_type":"module","repositories":[{"name":"SLE-Module-Containers12-Updates","installer_updates":false,"description":"SLE-Module-Containers12-Updates for sle-12-ppc64le","enabled":true,"id":1972,"autorefresh":true,"distro_target":"sle-12-ppc64le","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/12/ppc64le/update/"},{"name":"SLE-Module-Containers12-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-Containers12-Debuginfo-Updates for sle-12-ppc64le","id":1973,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/12/ppc64le/update_debug/","autorefresh":true,"distro_target":"sle-12-ppc64le"},{"description":"SLE-Module-Containers12-Pool for sle-12-ppc64le","installer_updates":false,"name":"SLE-Module-Containers12-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/12/ppc64le/product/","distro_target":"sle-12-ppc64le","autorefresh":false,"id":1974,"enabled":true},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/12/ppc64le/product_debug/","distro_target":"sle-12-ppc64le","autorefresh":false,"id":1975,"enabled":false,"description":"SLE-Module-Containers12-Debuginfo-Pool for sle-12-ppc64le","installer_updates":false,"name":"SLE-Module-Containers12-Debuginfo-Pool"},{"installer_updates":false,"name":"SLE-Module-Containers12-Source-Pool","description":"SLE-Module-Containers12-Source-Pool for sle-12-ppc64le","enabled":false,"id":1976,"distro_target":"sle-12-ppc64le","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/12/ppc64le/product_source/"}],"online_predecessor_ids":[],"product_class":"MODULE","predecessor_ids":[],"arch":"ppc64le","eula_url":"","shortname":"Containers-Module","description":"

This Module contains several packages revolving around containers and related tools.

","free":true},{"arch":"s390x","eula_url":"","free":true,"shortname":"Containers-Module","description":"

This Module contains several packages revolving around containers and related tools.

","product_type":"module","cpe":"cpe:/o:suse:sle-module-containers:12","online_predecessor_ids":[],"repositories":[{"distro_target":"sle-12-s390x","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/12/s390x/update/","enabled":true,"id":1977,"description":"SLE-Module-Containers12-Updates for sle-12-s390x","installer_updates":false,"name":"SLE-Module-Containers12-Updates"},{"id":1978,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/12/s390x/update_debug/","autorefresh":true,"distro_target":"sle-12-s390x","name":"SLE-Module-Containers12-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-Containers12-Debuginfo-Updates for sle-12-s390x"},{"distro_target":"sle-12-s390x","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/12/s390x/product/","enabled":true,"id":1979,"description":"SLE-Module-Containers12-Pool for sle-12-s390x","installer_updates":false,"name":"SLE-Module-Containers12-Pool"},{"enabled":false,"id":1980,"autorefresh":false,"distro_target":"sle-12-s390x","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/12/s390x/product_debug/","name":"SLE-Module-Containers12-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-Containers12-Debuginfo-Pool for sle-12-s390x"},{"distro_target":"sle-12-s390x","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/12/s390x/product_source/","enabled":false,"id":1981,"description":"SLE-Module-Containers12-Source-Pool for sle-12-s390x","installer_updates":false,"name":"SLE-Module-Containers12-Source-Pool"}],"product_class":"MODULE","predecessor_ids":[],"release_type":null,"former_identifier":"sle-module-containers","friendly_name":"Containers Module 12 s390x","migration_extra":false,"offline_predecessor_ids":[],"name":"Containers Module","version":"12","recommended":false,"identifier":"sle-module-containers","release_stage":"released","id":1354,"extensions":[],"friendly_version":"12"},{"free":false,"description":"SUSE Linux Enterprise offers a comprehensive suite of products built on a single code base. The platform addresses business needs from the smallest thin-client devices to the world's most powerful high-performance computing and mainframe servers. SUSE Linux Enterprise offers common management tools and technology certifications across the platform, and each product is enterprise-class.","shortname":"SLES12-SP2","eula_url":"https://updates.suse.com/SUSE/Products/SLE-SERVER/12-SP2/ppc64le/product.license/","arch":"ppc64le","predecessor_ids":[1116,1334],"repositories":[{"autorefresh":true,"distro_target":"sle-12-ppc64le","url":"https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-SP2/ppc64le/update/","enabled":true,"id":2003,"description":"SLES12-SP2-Updates for sle-12-ppc64le","name":"SLES12-SP2-Updates","installer_updates":false},{"description":"SLES12-SP2-Debuginfo-Updates for sle-12-ppc64le","installer_updates":false,"name":"SLES12-SP2-Debuginfo-Updates","url":"https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-SP2/ppc64le/update_debug/","distro_target":"sle-12-ppc64le","autorefresh":true,"id":2004,"enabled":false},{"description":"SLES12-SP2-Pool for sle-12-ppc64le","name":"SLES12-SP2-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-12-ppc64le","url":"https://updates.suse.com/SUSE/Products/SLE-SERVER/12-SP2/ppc64le/product/","enabled":true,"id":2005},{"description":"SLES12-SP2-Debuginfo-Pool for sle-12-ppc64le","name":"SLES12-SP2-Debuginfo-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-12-ppc64le","url":"https://updates.suse.com/SUSE/Products/SLE-SERVER/12-SP2/ppc64le/product_debug/","enabled":false,"id":2006},{"url":"https://updates.suse.com/SUSE/Products/SLE-SERVER/12-SP2/ppc64le/product_source/","autorefresh":false,"distro_target":"sle-12-ppc64le","id":2007,"enabled":false,"description":"SLES12-SP2-Source-Pool for sle-12-ppc64le","name":"SLES12-SP2-Source-Pool","installer_updates":false},{"url":"https://updates.suse.com/SUSE/Updates/SLE-SERVER-INSTALLER/12-SP2/ppc64le/update/","autorefresh":true,"distro_target":"sle-12-ppc64le","id":2102,"enabled":false,"description":"SLES12-SP2-Installer-Updates for sle-12-ppc64le","name":"SLES12-SP2-Installer-Updates","installer_updates":true}],"online_predecessor_ids":[1116,1334],"product_class":"SLES-PPC","product_type":"base","cpe":"cpe:/o:suse:sles:12:sp2","recommended":false,"version":"12.2","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Server","release_type":null,"former_identifier":"SLES","friendly_name":"SUSE Linux Enterprise Server 12 SP2 ppc64le","migration_extra":false,"friendly_version":"12 SP2","extensions":[{"recommended":false,"version":"12","name":"Legacy Module","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"Legacy Module 12 ppc64le","former_identifier":"sle-module-legacy","release_type":null,"friendly_version":"12","extensions":[],"release_stage":"released","identifier":"sle-module-legacy","id":1148,"shortname":"Legacy-Module","description":"

The Legacy Module helps you migrating applications from SUSE Linux Enterprise 10 and 11 and other systems to SUSE Linux Enterprise 12, by providing packages which are discontinued on SUSE Linux Enterprise Server, such as: sendmail, syslog-ng, IBM Java6, and a number of libraries (for example openssl-0.9.8).

Access to the Legacy Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself. Packages in the this module are usually supported for at most three years. Support for Sendmail and IBM Java 6 will end in September 2017 the latest.

","free":true,"eula_url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/12/ppc64le/product.license/","arch":"ppc64le","predecessor_ids":[],"online_predecessor_ids":[],"repositories":[{"description":"SLE-Module-Legacy12-Updates for sle-12-ppc64le","installer_updates":false,"name":"SLE-Module-Legacy12-Updates","distro_target":"sle-12-ppc64le","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/12/ppc64le/update/","enabled":true,"id":1668},{"description":"SLE-Module-Legacy12-Debuginfo-Updates for sle-12-ppc64le","name":"SLE-Module-Legacy12-Debuginfo-Updates","installer_updates":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/12/ppc64le/update_debug/","autorefresh":true,"distro_target":"sle-12-ppc64le","id":1669,"enabled":false},{"description":"SLE-Module-Legacy12-Pool for sle-12-ppc64le","installer_updates":false,"name":"SLE-Module-Legacy12-Pool","distro_target":"sle-12-ppc64le","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/12/ppc64le/product/","enabled":true,"id":1670},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/12/ppc64le/product_debug/","distro_target":"sle-12-ppc64le","autorefresh":false,"id":1671,"enabled":false,"description":"SLE-Module-Legacy12-Debuginfo-Pool for sle-12-ppc64le","installer_updates":false,"name":"SLE-Module-Legacy12-Debuginfo-Pool"},{"description":"SLE-Module-Legacy12-Source-Pool for sle-12-ppc64le","name":"SLE-Module-Legacy12-Source-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-12-ppc64le","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/12/ppc64le/product_source/","enabled":false,"id":1987}],"product_class":"MODULE","cpe":"cpe:/o:suse:sle-module-legacy:12","product_type":"module"},{"version":"12","recommended":false,"former_identifier":"sle-module-web-scripting","release_type":null,"friendly_name":"Web and Scripting Module 12 ppc64le","migration_extra":false,"offline_predecessor_ids":[],"name":"Web and Scripting Module","friendly_version":"12","identifier":"sle-module-web-scripting","release_stage":"released","id":1151,"extensions":[],"free":true,"description":"

The SUSE Linux Enterprise Web and Scripting Module delivers a comprehensive suite of scripting languages, frameworks, and related tools helping developers and systems administrators accelerate the creation of stable, modern web applications, using dynamic languages, such as PHP, Ruby on Rails, and Python.

Access to the Web and Scripting Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself: Package versions in the this module are usually supported for at most three years. We are planning to release more recent versions on a schedule of approximately 18 month; the exact dates may differ per package.

","shortname":"Web-and-Scripting-Module","arch":"ppc64le","eula_url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/12/ppc64le/product.license/","repositories":[{"enabled":true,"id":1680,"autorefresh":true,"distro_target":"sle-12-ppc64le","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/12/ppc64le/update/","name":"SLE-Module-Web-Scripting12-Updates","installer_updates":false,"description":"SLE-Module-Web-Scripting12-Updates for sle-12-ppc64le"},{"description":"SLE-Module-Web-Scripting12-Debuginfo-Updates for sle-12-ppc64le","name":"SLE-Module-Web-Scripting12-Debuginfo-Updates","installer_updates":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/12/ppc64le/update_debug/","autorefresh":true,"distro_target":"sle-12-ppc64le","id":1681,"enabled":false},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/12/ppc64le/product/","distro_target":"sle-12-ppc64le","autorefresh":false,"id":1682,"enabled":true,"description":"SLE-Module-Web-Scripting12-Pool for sle-12-ppc64le","installer_updates":false,"name":"SLE-Module-Web-Scripting12-Pool"},{"distro_target":"sle-12-ppc64le","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/12/ppc64le/product_debug/","enabled":false,"id":1683,"description":"SLE-Module-Web-Scripting12-Debuginfo-Pool for sle-12-ppc64le","installer_updates":false,"name":"SLE-Module-Web-Scripting12-Debuginfo-Pool"},{"id":1990,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/12/ppc64le/product_source/","autorefresh":false,"distro_target":"sle-12-ppc64le","name":"SLE-Module-Web-Scripting12-Source-Pool","installer_updates":false,"description":"SLE-Module-Web-Scripting12-Source-Pool for sle-12-ppc64le"}],"online_predecessor_ids":[],"product_class":"MODULE","predecessor_ids":[],"product_type":"module","cpe":"cpe:/o:suse:sle-module-web-scripting:12"},{"friendly_name":"Public Cloud Module 12 ppc64le","migration_extra":false,"release_type":null,"former_identifier":"sle-module-public-cloud","name":"Public Cloud Module","offline_predecessor_ids":[],"version":"12","recommended":false,"id":1218,"release_stage":"released","identifier":"sle-module-public-cloud","extensions":[],"friendly_version":"12","arch":"ppc64le","eula_url":"","shortname":"Public-Cloud-Module","description":"

The Public Cloud Module is a collection of tools that enables you to create and manage cloud images from the commandline on SUSE Linux Enterprise Server. When building your own images with KIWI or SUSE Studio, initialization code specific to the target cloud is included in that image.

Access to the Public Cloud Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself; please check the Release Notes for further details.

","free":true,"cpe":"cpe:/o:suse:sle-module-public-cloud:12","product_type":"module","product_class":"MODULE","online_predecessor_ids":[],"repositories":[{"id":1692,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/12/ppc64le/update/","distro_target":"sle-12-ppc64le","autorefresh":true,"installer_updates":false,"name":"SLE-Module-Public-Cloud12-Updates","description":"SLE-Module-Public-Cloud12-Updates for sle-12-ppc64le"},{"installer_updates":false,"name":"SLE-Module-Public-Cloud12-Debuginfo-Updates","description":"SLE-Module-Public-Cloud12-Debuginfo-Updates for sle-12-ppc64le","enabled":false,"id":1693,"distro_target":"sle-12-ppc64le","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/12/ppc64le/update_debug/"},{"installer_updates":false,"name":"SLE-Module-Public-Cloud12-Pool","description":"SLE-Module-Public-Cloud12-Pool for sle-12-ppc64le","enabled":true,"id":1694,"distro_target":"sle-12-ppc64le","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/12/ppc64le/product/"},{"description":"SLE-Module-Public-Cloud12-Debuginfo-Pool for sle-12-ppc64le","name":"SLE-Module-Public-Cloud12-Debuginfo-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-12-ppc64le","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/12/ppc64le/product_debug/","enabled":false,"id":1695},{"description":"SLE-Module-Public-Cloud12-Source-Pool for sle-12-ppc64le","name":"SLE-Module-Public-Cloud12-Source-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-12-ppc64le","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/12/ppc64le/product_source/","enabled":false,"id":1993}],"predecessor_ids":[]},{"predecessor_ids":[],"online_predecessor_ids":[],"product_class":"SLES-PPC","repositories":[{"installer_updates":false,"name":"IBM-DLPAR-SDK","description":"IBM-DLPAR-SDK","enabled":true,"id":4429,"distro_target":null,"autorefresh":true,"url":"https://public.dhe.ibm.com/software/server/POWER/Linux/toolchain/at/suse/SLES_12/"}],"product_type":"extension","cpe":"cpe:/o:suse:ibm-dlpar-sdk:12","free":true,"description":"IBM DLPAR SDK for SLE 12","shortname":"IBMDLPS12","eula_url":"","arch":"ppc64le","friendly_version":"12","extensions":[],"identifier":"ibm-dlpar-sdk","release_stage":"released","id":1249,"recommended":false,"version":"12","offline_predecessor_ids":[],"name":"IBM DLPAR SDK for SLE","former_identifier":"ibm-dlpar-sdk","release_type":null,"friendly_name":"IBM DLPAR SDK for SLE 12 ppc64le","migration_extra":false},{"id":1250,"release_stage":"released","identifier":"ibm-dlpar-utils","extensions":[],"friendly_version":"12","release_type":null,"former_identifier":"ibm-dlpar-utils","friendly_name":"IBM DLPAR Utils for SLE 12 ppc64le","migration_extra":false,"offline_predecessor_ids":[],"name":"IBM DLPAR Utils for SLE","version":"12","recommended":false,"product_type":"extension","cpe":"cpe:/o:suse:ibm-dlpar-utils:12","online_predecessor_ids":[],"product_class":"SLES-PPC","repositories":[{"enabled":true,"id":6216,"distro_target":null,"autorefresh":true,"url":"https://public.dhe.ibm.com/software/server/POWER/Linux/yum/OSS/SLES/12/ppc64le/","installer_updates":false,"name":"IBM-DLPAR-utils","description":"IBM-DLPAR-utils"}],"predecessor_ids":[],"arch":"ppc64le","eula_url":"https://public.dhe.ibm.com/software/server/POWER/Linux/yum/OSS/SLES/12/ppc64le.license/","free":true,"shortname":"IBMDLPU12","description":"IBM DLPAR Utils for SLE 12"},{"former_identifier":"sle-module-adv-systems-management","release_type":null,"migration_extra":false,"friendly_name":"Advanced Systems Management Module 12 ppc64le","offline_predecessor_ids":[],"name":"Advanced Systems Management Module","version":"12","recommended":false,"release_stage":"released","identifier":"sle-module-adv-systems-management","id":1294,"extensions":[],"friendly_version":"12","arch":"ppc64le","eula_url":"","free":true,"shortname":"Adv-Sys-Mgmt-Module","description":"

This Module contains current versions of the popular configuration management frameworks Puppet and CFEngine as well as the new systems management toolbox called machinery.

The machinery tool will be frequently updated and is SUSE's upcoming systems management toolbox for inspecting and validating systems remotely, storing their system description and creating new systems to deploy them in datacenters and clouds.

","product_type":"module","cpe":"cpe:/o:suse:sle-module-adv-systems-management:12","online_predecessor_ids":[],"repositories":[{"distro_target":"sle-12-ppc64le","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Adv-Systems-Management/12/ppc64le/update/","enabled":true,"id":1762,"description":"SLE-Module-Adv-Systems-Management12-Updates for sle-12-ppc64le","installer_updates":false,"name":"SLE-Module-Adv-Systems-Management12-Updates"},{"name":"SLE-Module-Adv-Systems-Management12-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-Adv-Systems-Management12-Debuginfo-Updates for sle-12-ppc64le","enabled":false,"id":1763,"autorefresh":true,"distro_target":"sle-12-ppc64le","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Adv-Systems-Management/12/ppc64le/update_debug/"},{"installer_updates":false,"name":"SLE-Module-Adv-Systems-Management12-Pool","description":"SLE-Module-Adv-Systems-Management12-Pool for sle-12-ppc64le","id":1764,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Adv-Systems-Management/12/ppc64le/product/","distro_target":"sle-12-ppc64le","autorefresh":false},{"description":"SLE-Module-Adv-Systems-Management12-Debuginfo-Pool for sle-12-ppc64le","name":"SLE-Module-Adv-Systems-Management12-Debuginfo-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Adv-Systems-Management/12/ppc64le/product_debug/","autorefresh":false,"distro_target":"sle-12-ppc64le","id":1765,"enabled":false},{"name":"SLE-Module-Adv-Systems-Management12-Source-Pool","installer_updates":false,"description":"SLE-Module-Adv-Systems-Management12-Source-Pool for sle-12-ppc64le","id":1996,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Adv-Systems-Management/12/ppc64le/product_source/","autorefresh":false,"distro_target":"sle-12-ppc64le"}],"product_class":"MODULE","predecessor_ids":[]},{"version":"12","recommended":false,"migration_extra":false,"friendly_name":"Toolchain Module 12 ppc64le","release_type":null,"former_identifier":"sle-module-toolchain","name":"Toolchain Module","offline_predecessor_ids":[],"friendly_version":"12","identifier":"sle-module-toolchain","release_stage":"released","id":1339,"extensions":[],"description":"Via this Module you will have access to a more recent GCC and Toolchain in addition to the default compiler of SUSE Linux Enterprise. Access to the Toolchain Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself. Please check the Release Notes for further details.","shortname":"Toolchain-Module","free":true,"arch":"ppc64le","eula_url":"","repositories":[{"installer_updates":false,"name":"SLE-Module-Toolchain12-Updates","description":"SLE-Module-Toolchain12-Updates for sle-12-ppc64le","id":1895,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Toolchain/12/ppc64le/update/","distro_target":"sle-12-ppc64le","autorefresh":true},{"id":1896,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Toolchain/12/ppc64le/update_debug/","distro_target":"sle-12-ppc64le","autorefresh":true,"installer_updates":false,"name":"SLE-Module-Toolchain12-Debuginfo-Updates","description":"SLE-Module-Toolchain12-Debuginfo-Updates for sle-12-ppc64le"},{"id":1897,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Toolchain/12/ppc64le/product/","autorefresh":false,"distro_target":"sle-12-ppc64le","name":"SLE-Module-Toolchain12-Pool","installer_updates":false,"description":"SLE-Module-Toolchain12-Pool for sle-12-ppc64le"},{"description":"SLE-Module-Toolchain12-Debuginfo-Pool for sle-12-ppc64le","installer_updates":false,"name":"SLE-Module-Toolchain12-Debuginfo-Pool","distro_target":"sle-12-ppc64le","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Toolchain/12/ppc64le/product_debug/","enabled":false,"id":1898}],"online_predecessor_ids":[],"product_class":"MODULE","predecessor_ids":[],"cpe":"cpe:/o:suse:sle-module-toolchain:12","product_type":"module"},{"friendly_version":"12","identifier":"sle-module-containers","release_stage":"released","id":1353,"extensions":[],"version":"12","recommended":false,"friendly_name":"Containers Module 12 ppc64le","migration_extra":false,"former_identifier":"sle-module-containers","release_type":null,"name":"Containers Module","offline_predecessor_ids":[],"product_class":"MODULE","online_predecessor_ids":[],"repositories":[{"id":1972,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/12/ppc64le/update/","distro_target":"sle-12-ppc64le","autorefresh":true,"installer_updates":false,"name":"SLE-Module-Containers12-Updates","description":"SLE-Module-Containers12-Updates for sle-12-ppc64le"},{"enabled":false,"id":1973,"distro_target":"sle-12-ppc64le","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/12/ppc64le/update_debug/","installer_updates":false,"name":"SLE-Module-Containers12-Debuginfo-Updates","description":"SLE-Module-Containers12-Debuginfo-Updates for sle-12-ppc64le"},{"autorefresh":false,"distro_target":"sle-12-ppc64le","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/12/ppc64le/product/","enabled":true,"id":1974,"description":"SLE-Module-Containers12-Pool for sle-12-ppc64le","name":"SLE-Module-Containers12-Pool","installer_updates":false},{"id":1975,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/12/ppc64le/product_debug/","autorefresh":false,"distro_target":"sle-12-ppc64le","name":"SLE-Module-Containers12-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-Containers12-Debuginfo-Pool for sle-12-ppc64le"},{"installer_updates":false,"name":"SLE-Module-Containers12-Source-Pool","description":"SLE-Module-Containers12-Source-Pool for sle-12-ppc64le","id":1976,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/12/ppc64le/product_source/","distro_target":"sle-12-ppc64le","autorefresh":false}],"predecessor_ids":[],"cpe":"cpe:/o:suse:sle-module-containers:12","product_type":"module","shortname":"Containers-Module","description":"

This Module contains several packages revolving around containers and related tools.

","free":true,"arch":"ppc64le","eula_url":""},{"description":"

SUSE Linux Enterprise Software Development Kit 12 is the Software Development Kit for the family of SUSE Linux Enterprise products. It is a free of charge extension for partners and customers working with SUSE Linux Enterprise Server and Desktop and derived products.

Packages on the SDK are delivered without L3 support; maintenance updates will be done for critical security and critical non-security issues, and where needed to remain in sync with packages delivered in the SUSE Linux Enterprise Server and Desktop products.

Packages to rebuild SUSE Linux Enterprise Server are not part of the SUSE Linux Enterprise Software Development Kit.

","shortname":"SDK12-SP2","free":true,"arch":"ppc64le","eula_url":"https://updates.suse.com/SUSE/Products/SLE-SDK/12-SP2/ppc64le/product.license/","online_predecessor_ids":[1145,1343],"product_class":"SLE-SDK","repositories":[{"autorefresh":true,"distro_target":"sle-12-ppc64le","url":"https://updates.suse.com/SUSE/Updates/SLE-SDK/12-SP2/ppc64le/update/","enabled":true,"id":2049,"description":"SLE-SDK12-SP2-Updates for sle-12-ppc64le","name":"SLE-SDK12-SP2-Updates","installer_updates":false},{"url":"https://updates.suse.com/SUSE/Updates/SLE-SDK/12-SP2/ppc64le/update_debug/","distro_target":"sle-12-ppc64le","autorefresh":true,"id":2050,"enabled":false,"description":"SLE-SDK12-SP2-Debuginfo-Updates for sle-12-ppc64le","installer_updates":false,"name":"SLE-SDK12-SP2-Debuginfo-Updates"},{"name":"SLE-SDK12-SP2-Pool","installer_updates":false,"description":"SLE-SDK12-SP2-Pool for sle-12-ppc64le","id":2051,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-SDK/12-SP2/ppc64le/product/","autorefresh":false,"distro_target":"sle-12-ppc64le"},{"distro_target":"sle-12-ppc64le","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-SDK/12-SP2/ppc64le/product_debug/","enabled":false,"id":2052,"description":"SLE-SDK12-SP2-Debuginfo-Pool for sle-12-ppc64le","installer_updates":false,"name":"SLE-SDK12-SP2-Debuginfo-Pool"},{"autorefresh":false,"distro_target":"sle-12-ppc64le","url":"https://updates.suse.com/SUSE/Products/SLE-SDK/12-SP2/ppc64le/product_source/","enabled":false,"id":2053,"description":"SLE-SDK12-SP2-Source-Pool for sle-12-ppc64le","name":"SLE-SDK12-SP2-Source-Pool","installer_updates":false}],"predecessor_ids":[1145,1343],"cpe":"cpe:/o:suse:sle-sdk:12:sp2","product_type":"extension","version":"12.2","recommended":false,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Software Development Kit 12 SP2 ppc64le","former_identifier":"sle-sdk","release_type":null,"name":"SUSE Linux Enterprise Software Development Kit","offline_predecessor_ids":[],"friendly_version":"12 SP2","release_stage":"released","id":1364,"identifier":"sle-sdk","extensions":[]},{"version":"12.2","recommended":false,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise High Availability Extension 12 SP2 ppc64le","release_type":null,"former_identifier":"sle-hae","name":"SUSE Linux Enterprise High Availability Extension","offline_predecessor_ids":[],"friendly_version":"12 SP2","id":1420,"release_stage":"released","identifier":"sle-ha","extensions":[],"description":"SUSE Linux Enterprise High Availability Extension.","shortname":"SLEHA12-SP2","free":false,"arch":"ppc64le","eula_url":"https://updates.suse.com/SUSE/Products/SLE-HA/12-SP2/ppc64le/product.license/","online_predecessor_ids":[],"product_class":"SLE-HAE-PPC","repositories":[{"installer_updates":false,"name":"SLE-HA12-SP2-Updates","description":"SLE-HA12-SP2-Updates for sle-12-ppc64le","id":2183,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-HA/12-SP2/ppc64le/update/","distro_target":"sle-12-ppc64le","autorefresh":true},{"name":"SLE-HA12-SP2-Debuginfo-Updates","installer_updates":false,"description":"SLE-HA12-SP2-Debuginfo-Updates for sle-12-ppc64le","enabled":false,"id":2184,"autorefresh":true,"distro_target":"sle-12-ppc64le","url":"https://updates.suse.com/SUSE/Updates/SLE-HA/12-SP2/ppc64le/update_debug/"},{"installer_updates":false,"name":"SLE-HA12-SP2-Pool","description":"SLE-HA12-SP2-Pool for sle-12-ppc64le","id":2185,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-HA/12-SP2/ppc64le/product/","distro_target":"sle-12-ppc64le","autorefresh":false},{"name":"SLE-HA12-SP2-Debuginfo-Pool","installer_updates":false,"description":"SLE-HA12-SP2-Debuginfo-Pool for sle-12-ppc64le","id":2186,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-HA/12-SP2/ppc64le/product_debug/","autorefresh":false,"distro_target":"sle-12-ppc64le"},{"description":"SLE-HA12-SP2-Source-Pool for sle-12-ppc64le","name":"SLE-HA12-SP2-Source-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-12-ppc64le","url":"https://updates.suse.com/SUSE/Products/SLE-HA/12-SP2/ppc64le/product_source/","enabled":false,"id":2187}],"predecessor_ids":[],"cpe":"cpe:/o:suse:sle-ha:12:sp2","product_type":"extension"},{"recommended":false,"version":"12.2","name":"SUSE Package Hub","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"SUSE Package Hub 12 SP2 ppc64le","former_identifier":"PackageHub","release_type":null,"friendly_version":"12 SP2","extensions":[],"release_stage":"released","id":1481,"identifier":"PackageHub","shortname":"SUSE-PackageHub-12-SP2","description":"SUSE Package Hub is a free of charge extension providing access to community maintained packages built to run on SUSE Linux Enterprise Server. Built from the same sources used in the openSUSE distributions, these quality packages provide additional software to what is found in the SUSE Linux Enterprise Server product. Packages from the Package Hub are delivered without L3 support from SUSE. General updates and fixes to the packages in SUSE Package Hub are provided by the openSUSE community based on their discretion though SUSE will monitor and ensure that any known critical security issues will be addressed. Packages in the Package Hub are approved by SUSE for use with SUSE Linux Enterprise Server 12 and to not interfere with the supportability of SUSE Linux Enterprise Server it's modules and extensions. For more information about SUSE Package Hub please visit https://packagehub.suse.com.","free":true,"eula_url":"","arch":"ppc64le","predecessor_ids":[1475,1478],"product_class":"SLES-PPC","online_predecessor_ids":[1475,1478],"repositories":[{"url":"https://updates.suse.com/SUSE/Backports/SLE-12-SP2_ppc64le/standard/","distro_target":"sle-12-ppc64le","autorefresh":false,"id":2351,"enabled":true,"description":"SUSE-PackageHub-12-SP2-Standard-Pool for sle-12-ppc64le","installer_updates":false,"name":"SUSE-PackageHub-12-SP2-Standard-Pool"},{"description":"SUSE-PackageHub-12-SP2-Debuginfo for sle-12-ppc64le","name":"SUSE-PackageHub-12-SP2-Debuginfo","installer_updates":false,"url":"https://updates.suse.com/SUSE/Backports/SLE-12-SP2_ppc64le/standard_debug/","autorefresh":true,"distro_target":"sle-12-ppc64le","id":2352,"enabled":false},{"installer_updates":false,"name":"SUSE-PackageHub-12-SP2-Pool","description":"SUSE-PackageHub-12-SP2-Pool for sle-12-ppc64le","id":2353,"enabled":true,"url":"https://updates.suse.com/SUSE/Backports/SLE-12-SP2_ppc64le/product/","distro_target":"sle-12-ppc64le","autorefresh":false}],"cpe":"cpe:/o:suse:packagehub:12:sp2","product_type":"extension"},{"eula_url":"","arch":"ppc64le","shortname":"SLES12-SP2 LTSS","description":"SUSE Linux Enterprise offers a comprehensive suite of products built on a single code base. The platform addresses business needs from the smallest thin-client devices to the world's most powerful high-performance computing and mainframe servers. SUSE Linux Enterprise offers common management tools and technology certifications across the platform, and each product is enterprise-class.","free":false,"cpe":"cpe:/o:suse:sles-ltss:12:sp2","product_type":"extension","predecessor_ids":[],"online_predecessor_ids":[],"repositories":[{"description":"SLES12-SP2-LTSS-Updates for sle-12-ppc64le","installer_updates":false,"name":"SLES12-SP2-LTSS-Updates","distro_target":"sle-12-ppc64le","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-SP2-LTSS/ppc64le/update/","enabled":true,"id":3044},{"installer_updates":false,"name":"SLES12-SP2-LTSS-Debuginfo-Updates","description":"SLES12-SP2-LTSS-Debuginfo-Updates for sle-12-ppc64le","id":3045,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-SP2-LTSS/ppc64le/update_debug/","distro_target":"sle-12-ppc64le","autorefresh":true}],"product_class":"SLES12-SP2-LTSS-PPC","name":"SUSE Linux Enterprise Server LTSS","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Server LTSS 12 SP2 ppc64le","former_identifier":"SLES-LTSS","release_type":null,"recommended":false,"version":"12.2","extensions":[],"release_stage":"released","identifier":"SLES-LTSS","id":1737,"friendly_version":"12 SP2"},{"cpe":"cpe:/o:suse:sle-live-patching:12","product_type":"extension","predecessor_ids":[],"product_class":"SLE-LP-PPC","online_predecessor_ids":[],"repositories":[{"description":"SLE-Live-Patching12-Updates for sle-12-ppc64le","installer_updates":false,"name":"SLE-Live-Patching12-Updates","distro_target":"sle-12-ppc64le","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Live-Patching/12/ppc64le/update/","enabled":true,"id":3563},{"enabled":false,"id":3564,"distro_target":"sle-12-ppc64le","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Live-Patching/12/ppc64le/update_debug/","installer_updates":false,"name":"SLE-Live-Patching12-Debuginfo-Updates","description":"SLE-Live-Patching12-Debuginfo-Updates for sle-12-ppc64le"},{"installer_updates":false,"name":"SLE-Live-Patching12-Pool","description":"SLE-Live-Patching12-Pool for sle-12-ppc64le","id":3565,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Live-Patching/12/ppc64le/product/","distro_target":"sle-12-ppc64le","autorefresh":false},{"enabled":false,"id":3566,"distro_target":"sle-12-ppc64le","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Live-Patching/12/ppc64le/product_debug/","installer_updates":false,"name":"SLE-Live-Patching12-Debuginfo-Pool","description":"SLE-Live-Patching12-Debuginfo-Pool for sle-12-ppc64le"},{"id":3567,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Live-Patching/12/ppc64le/product_source/","autorefresh":false,"distro_target":"sle-12-ppc64le","name":"SLE-Live-Patching12-Source-Pool","installer_updates":false,"description":"SLE-Live-Patching12-Source-Pool for sle-12-ppc64le"}],"eula_url":"https://updates.suse.com/SUSE/Products/SLE-Live-Patching/12/ppc64le/product.license/","arch":"ppc64le","description":"

SUSE Linux Enterprise Live Patching provides packages to update critical kernel modules live in SUSE Linux Enterprise. With SUSE Linux Enterprise Live Patching, you can perform critical kernel patching without shutting down your system, reducing the need for planned downtime and increasing service availability.

","shortname":"Live-Patching","free":false,"extensions":[],"identifier":"sle-live-patching","release_stage":"released","id":1860,"friendly_version":"12","name":"SUSE Linux Enterprise Live Patching","offline_predecessor_ids":[],"friendly_name":"SUSE Linux Enterprise Live Patching 12 ppc64le","migration_extra":false,"former_identifier":"sle-live-patching","release_type":null,"recommended":false,"version":"12"}],"release_stage":"released","id":1355,"identifier":"SLES"},{"extensions":[{"repositories":[{"enabled":true,"id":1672,"autorefresh":true,"distro_target":"sle-12-s390x","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/12/s390x/update/","name":"SLE-Module-Legacy12-Updates","installer_updates":false,"description":"SLE-Module-Legacy12-Updates for sle-12-s390x"},{"id":1673,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/12/s390x/update_debug/","distro_target":"sle-12-s390x","autorefresh":true,"installer_updates":false,"name":"SLE-Module-Legacy12-Debuginfo-Updates","description":"SLE-Module-Legacy12-Debuginfo-Updates for sle-12-s390x"},{"description":"SLE-Module-Legacy12-Pool for sle-12-s390x","installer_updates":false,"name":"SLE-Module-Legacy12-Pool","distro_target":"sle-12-s390x","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/12/s390x/product/","enabled":true,"id":1674},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/12/s390x/product_debug/","distro_target":"sle-12-s390x","autorefresh":false,"id":1675,"enabled":false,"description":"SLE-Module-Legacy12-Debuginfo-Pool for sle-12-s390x","installer_updates":false,"name":"SLE-Module-Legacy12-Debuginfo-Pool"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/12/s390x/product_source/","distro_target":"sle-12-s390x","autorefresh":false,"id":1988,"enabled":false,"description":"SLE-Module-Legacy12-Source-Pool for sle-12-s390x","installer_updates":false,"name":"SLE-Module-Legacy12-Source-Pool"}],"online_predecessor_ids":[],"product_class":"MODULE","predecessor_ids":[],"product_type":"module","cpe":"cpe:/o:suse:sle-module-legacy:12","free":true,"shortname":"Legacy-Module","description":"

The Legacy Module helps you migrating applications from SUSE Linux Enterprise 10 and 11 and other systems to SUSE Linux Enterprise 12, by providing packages which are discontinued on SUSE Linux Enterprise Server, such as: sendmail, syslog-ng, IBM Java6, and a number of libraries (for example openssl-0.9.8).

Access to the Legacy Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself. Packages in the this module are usually supported for at most three years. Support for Sendmail and IBM Java 6 will end in September 2017 the latest.

","arch":"s390x","eula_url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/12/s390x/product.license/","friendly_version":"12","id":1149,"release_stage":"released","identifier":"sle-module-legacy","extensions":[],"version":"12","recommended":false,"former_identifier":"sle-module-legacy","release_type":null,"friendly_name":"Legacy Module 12 s390x","migration_extra":false,"offline_predecessor_ids":[],"name":"Legacy Module"},{"repositories":[{"distro_target":"sle-12-s390x","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/12/s390x/update/","enabled":true,"id":1684,"description":"SLE-Module-Web-Scripting12-Updates for sle-12-s390x","installer_updates":false,"name":"SLE-Module-Web-Scripting12-Updates"},{"description":"SLE-Module-Web-Scripting12-Debuginfo-Updates for sle-12-s390x","name":"SLE-Module-Web-Scripting12-Debuginfo-Updates","installer_updates":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/12/s390x/update_debug/","autorefresh":true,"distro_target":"sle-12-s390x","id":1685,"enabled":false},{"name":"SLE-Module-Web-Scripting12-Pool","installer_updates":false,"description":"SLE-Module-Web-Scripting12-Pool for sle-12-s390x","id":1686,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/12/s390x/product/","autorefresh":false,"distro_target":"sle-12-s390x"},{"installer_updates":false,"name":"SLE-Module-Web-Scripting12-Debuginfo-Pool","description":"SLE-Module-Web-Scripting12-Debuginfo-Pool for sle-12-s390x","enabled":false,"id":1687,"distro_target":"sle-12-s390x","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/12/s390x/product_debug/"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/12/s390x/product_source/","distro_target":"sle-12-s390x","autorefresh":false,"id":1991,"enabled":false,"description":"SLE-Module-Web-Scripting12-Source-Pool for sle-12-s390x","installer_updates":false,"name":"SLE-Module-Web-Scripting12-Source-Pool"}],"online_predecessor_ids":[],"product_class":"MODULE","predecessor_ids":[],"cpe":"cpe:/o:suse:sle-module-web-scripting:12","product_type":"module","shortname":"Web-and-Scripting-Module","description":"

The SUSE Linux Enterprise Web and Scripting Module delivers a comprehensive suite of scripting languages, frameworks, and related tools helping developers and systems administrators accelerate the creation of stable, modern web applications, using dynamic languages, such as PHP, Ruby on Rails, and Python.

Access to the Web and Scripting Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself: Package versions in the this module are usually supported for at most three years. We are planning to release more recent versions on a schedule of approximately 18 month; the exact dates may differ per package.

","free":true,"arch":"s390x","eula_url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/12/s390x/product.license/","friendly_version":"12","release_stage":"released","identifier":"sle-module-web-scripting","id":1152,"extensions":[],"version":"12","recommended":false,"migration_extra":false,"friendly_name":"Web and Scripting Module 12 s390x","former_identifier":"sle-module-web-scripting","release_type":null,"name":"Web and Scripting Module","offline_predecessor_ids":[]},{"description":"

The Public Cloud Module is a collection of tools that enables you to create and manage cloud images from the commandline on SUSE Linux Enterprise Server. When building your own images with KIWI or SUSE Studio, initialization code specific to the target cloud is included in that image.

Access to the Public Cloud Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself; please check the Release Notes for further details.

","shortname":"Public-Cloud-Module","free":true,"arch":"s390x","eula_url":"","product_class":"MODULE","online_predecessor_ids":[],"repositories":[{"enabled":true,"id":1696,"distro_target":"sle-12-s390x","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/12/s390x/update/","installer_updates":false,"name":"SLE-Module-Public-Cloud12-Updates","description":"SLE-Module-Public-Cloud12-Updates for sle-12-s390x"},{"name":"SLE-Module-Public-Cloud12-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-Public-Cloud12-Debuginfo-Updates for sle-12-s390x","id":1697,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/12/s390x/update_debug/","autorefresh":true,"distro_target":"sle-12-s390x"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/12/s390x/product/","autorefresh":false,"distro_target":"sle-12-s390x","id":1698,"enabled":true,"description":"SLE-Module-Public-Cloud12-Pool for sle-12-s390x","name":"SLE-Module-Public-Cloud12-Pool","installer_updates":false},{"description":"SLE-Module-Public-Cloud12-Debuginfo-Pool for sle-12-s390x","installer_updates":false,"name":"SLE-Module-Public-Cloud12-Debuginfo-Pool","distro_target":"sle-12-s390x","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/12/s390x/product_debug/","enabled":false,"id":1699},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/12/s390x/product_source/","distro_target":"sle-12-s390x","autorefresh":false,"id":1994,"enabled":false,"description":"SLE-Module-Public-Cloud12-Source-Pool for sle-12-s390x","installer_updates":false,"name":"SLE-Module-Public-Cloud12-Source-Pool"}],"predecessor_ids":[],"cpe":"cpe:/o:suse:sle-module-public-cloud:12","product_type":"module","version":"12","recommended":false,"friendly_name":"Public Cloud Module 12 s390x","migration_extra":false,"former_identifier":"sle-module-public-cloud","release_type":null,"name":"Public Cloud Module","offline_predecessor_ids":[],"friendly_version":"12","identifier":"sle-module-public-cloud","release_stage":"released","id":1219,"extensions":[]},{"offline_predecessor_ids":[],"name":"Advanced Systems Management Module","release_type":null,"former_identifier":"sle-module-adv-systems-management","migration_extra":false,"friendly_name":"Advanced Systems Management Module 12 s390x","recommended":false,"version":"12","extensions":[],"identifier":"sle-module-adv-systems-management","release_stage":"released","id":1295,"friendly_version":"12","eula_url":"","arch":"s390x","free":true,"shortname":"Adv-Sys-Mgmt-Module","description":"

This Module contains current versions of the popular configuration management frameworks Puppet and CFEngine as well as the new systems management toolbox called machinery.

The machinery tool will be frequently updated and is SUSE's upcoming systems management toolbox for inspecting and validating systems remotely, storing their system description and creating new systems to deploy them in datacenters and clouds.

","product_type":"module","cpe":"cpe:/o:suse:sle-module-adv-systems-management:12","predecessor_ids":[],"repositories":[{"description":"SLE-Module-Adv-Systems-Management12-Updates for sle-12-s390x","installer_updates":false,"name":"SLE-Module-Adv-Systems-Management12-Updates","distro_target":"sle-12-s390x","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Adv-Systems-Management/12/s390x/update/","enabled":true,"id":1766},{"description":"SLE-Module-Adv-Systems-Management12-Debuginfo-Updates for sle-12-s390x","name":"SLE-Module-Adv-Systems-Management12-Debuginfo-Updates","installer_updates":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Adv-Systems-Management/12/s390x/update_debug/","autorefresh":true,"distro_target":"sle-12-s390x","id":1767,"enabled":false},{"installer_updates":false,"name":"SLE-Module-Adv-Systems-Management12-Pool","description":"SLE-Module-Adv-Systems-Management12-Pool for sle-12-s390x","id":1768,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Adv-Systems-Management/12/s390x/product/","distro_target":"sle-12-s390x","autorefresh":false},{"id":1769,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Adv-Systems-Management/12/s390x/product_debug/","distro_target":"sle-12-s390x","autorefresh":false,"installer_updates":false,"name":"SLE-Module-Adv-Systems-Management12-Debuginfo-Pool","description":"SLE-Module-Adv-Systems-Management12-Debuginfo-Pool for sle-12-s390x"},{"id":1997,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Adv-Systems-Management/12/s390x/product_source/","autorefresh":false,"distro_target":"sle-12-s390x","name":"SLE-Module-Adv-Systems-Management12-Source-Pool","installer_updates":false,"description":"SLE-Module-Adv-Systems-Management12-Source-Pool for sle-12-s390x"}],"online_predecessor_ids":[],"product_class":"MODULE"},{"friendly_version":"12","extensions":[],"id":1340,"release_stage":"released","identifier":"sle-module-toolchain","recommended":false,"version":"12","name":"Toolchain Module","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"Toolchain Module 12 s390x","release_type":null,"former_identifier":"sle-module-toolchain","predecessor_ids":[],"online_predecessor_ids":[],"product_class":"MODULE","repositories":[{"name":"SLE-Module-Toolchain12-Updates","installer_updates":false,"description":"SLE-Module-Toolchain12-Updates for sle-12-s390x","enabled":true,"id":1899,"autorefresh":true,"distro_target":"sle-12-s390x","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Toolchain/12/s390x/update/"},{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Toolchain/12/s390x/update_debug/","distro_target":"sle-12-s390x","autorefresh":true,"id":1900,"enabled":false,"description":"SLE-Module-Toolchain12-Debuginfo-Updates for sle-12-s390x","installer_updates":false,"name":"SLE-Module-Toolchain12-Debuginfo-Updates"},{"id":1901,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Toolchain/12/s390x/product/","autorefresh":false,"distro_target":"sle-12-s390x","name":"SLE-Module-Toolchain12-Pool","installer_updates":false,"description":"SLE-Module-Toolchain12-Pool for sle-12-s390x"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Toolchain/12/s390x/product_debug/","distro_target":"sle-12-s390x","autorefresh":false,"id":1902,"enabled":false,"description":"SLE-Module-Toolchain12-Debuginfo-Pool for sle-12-s390x","installer_updates":false,"name":"SLE-Module-Toolchain12-Debuginfo-Pool"}],"cpe":"cpe:/o:suse:sle-module-toolchain:12","product_type":"module","description":"Via this Module you will have access to a more recent GCC and Toolchain in addition to the default compiler of SUSE Linux Enterprise. Access to the Toolchain Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself. Please check the Release Notes for further details.","shortname":"Toolchain-Module","free":true,"eula_url":"","arch":"s390x"},{"release_stage":"released","identifier":"SUSE-Manager-Server","id":1348,"extensions":[],"friendly_version":"3.0","release_type":null,"former_identifier":"SUSE-Manager-Server","migration_extra":false,"friendly_name":"SUSE Manager Server 3.0 s390x","offline_predecessor_ids":[],"name":"SUSE Manager Server","version":"3.0","recommended":false,"product_type":"extension","cpe":"cpe:/o:suse:suse-manager-server:3.0","online_predecessor_ids":[],"repositories":[{"installer_updates":false,"name":"SUSE-Manager-Server-3.0-Updates","description":"SUSE-Manager-Server-3.0-Updates for sle-12-s390x","id":1945,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SUSE-Manager-Server/3.0/s390x/update/","distro_target":"sle-12-s390x","autorefresh":true},{"description":"SUSE-Manager-Server-3.0-Debuginfo-Updates for sle-12-s390x","installer_updates":false,"name":"SUSE-Manager-Server-3.0-Debuginfo-Updates","url":"https://updates.suse.com/SUSE/Updates/SUSE-Manager-Server/3.0/s390x/update_debug/","distro_target":"sle-12-s390x","autorefresh":true,"id":1946,"enabled":false},{"description":"SUSE-Manager-Server-3.0-Pool for sle-12-s390x","installer_updates":false,"name":"SUSE-Manager-Server-3.0-Pool","distro_target":"sle-12-s390x","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SUSE-Manager-Server/3.0/s390x/product/","enabled":true,"id":1947},{"name":"SUSE-Manager-Server-3.0-Debuginfo-Pool","installer_updates":false,"description":"SUSE-Manager-Server-3.0-Debuginfo-Pool for sle-12-s390x","enabled":false,"id":1948,"autorefresh":false,"distro_target":"sle-12-s390x","url":"https://updates.suse.com/SUSE/Products/SUSE-Manager-Server/3.0/s390x/product_debug/"},{"enabled":false,"id":2000,"autorefresh":false,"distro_target":"sle-12-s390x","url":"https://updates.suse.com/SUSE/Products/SUSE-Manager-Server/3.0/s390x/product_source/","name":"SUSE-Manager-Server-3.0-Source-Pool","installer_updates":false,"description":"SUSE-Manager-Server-3.0-Source-Pool for sle-12-s390x"}],"product_class":"SMS-Z","predecessor_ids":[],"arch":"s390x","eula_url":"https://updates.suse.com/SUSE/Products/SUSE-Manager-Server/3.0/s390x/product.license/","free":false,"shortname":"SUSE Manager Server","description":"SUSE Manager lets you efficiently manage physical, virtual, and cloud-based Linux systems. It provides automated and cost-effective configuration and software management, asset management, and system provisioning."},{"free":true,"description":"

This Module contains several packages revolving around containers and related tools.

","shortname":"Containers-Module","eula_url":"","arch":"s390x","predecessor_ids":[],"product_class":"MODULE","online_predecessor_ids":[],"repositories":[{"description":"SLE-Module-Containers12-Updates for sle-12-s390x","name":"SLE-Module-Containers12-Updates","installer_updates":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/12/s390x/update/","autorefresh":true,"distro_target":"sle-12-s390x","id":1977,"enabled":true},{"installer_updates":false,"name":"SLE-Module-Containers12-Debuginfo-Updates","description":"SLE-Module-Containers12-Debuginfo-Updates for sle-12-s390x","enabled":false,"id":1978,"distro_target":"sle-12-s390x","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/12/s390x/update_debug/"},{"description":"SLE-Module-Containers12-Pool for sle-12-s390x","name":"SLE-Module-Containers12-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-12-s390x","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/12/s390x/product/","enabled":true,"id":1979},{"description":"SLE-Module-Containers12-Debuginfo-Pool for sle-12-s390x","name":"SLE-Module-Containers12-Debuginfo-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/12/s390x/product_debug/","autorefresh":false,"distro_target":"sle-12-s390x","id":1980,"enabled":false},{"description":"SLE-Module-Containers12-Source-Pool for sle-12-s390x","name":"SLE-Module-Containers12-Source-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/12/s390x/product_source/","autorefresh":false,"distro_target":"sle-12-s390x","id":1981,"enabled":false}],"product_type":"module","cpe":"cpe:/o:suse:sle-module-containers:12","recommended":false,"version":"12","offline_predecessor_ids":[],"name":"Containers Module","former_identifier":"sle-module-containers","release_type":null,"friendly_name":"Containers Module 12 s390x","migration_extra":false,"friendly_version":"12","extensions":[],"identifier":"sle-module-containers","release_stage":"released","id":1354},{"predecessor_ids":[1244,1336],"online_predecessor_ids":[1244,1336],"repositories":[{"enabled":true,"id":2029,"distro_target":"sle-12-s390x","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-HA/12-SP2/s390x/update/","installer_updates":false,"name":"SLE-HA12-SP2-Updates","description":"SLE-HA12-SP2-Updates for sle-12-s390x"},{"id":2030,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-HA/12-SP2/s390x/update_debug/","autorefresh":true,"distro_target":"sle-12-s390x","name":"SLE-HA12-SP2-Debuginfo-Updates","installer_updates":false,"description":"SLE-HA12-SP2-Debuginfo-Updates for sle-12-s390x"},{"url":"https://updates.suse.com/SUSE/Products/SLE-HA/12-SP2/s390x/product/","distro_target":"sle-12-s390x","autorefresh":false,"id":2031,"enabled":true,"description":"SLE-HA12-SP2-Pool for sle-12-s390x","installer_updates":false,"name":"SLE-HA12-SP2-Pool"},{"installer_updates":false,"name":"SLE-HA12-SP2-Debuginfo-Pool","description":"SLE-HA12-SP2-Debuginfo-Pool for sle-12-s390x","enabled":false,"id":2032,"distro_target":"sle-12-s390x","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-HA/12-SP2/s390x/product_debug/"},{"url":"https://updates.suse.com/SUSE/Products/SLE-HA/12-SP2/s390x/product_source/","autorefresh":false,"distro_target":"sle-12-s390x","id":2033,"enabled":false,"description":"SLE-HA12-SP2-Source-Pool for sle-12-s390x","name":"SLE-HA12-SP2-Source-Pool","installer_updates":false}],"product_class":"SLE-HAE-Z","cpe":"cpe:/o:suse:sle-ha:12:sp2","product_type":"extension","shortname":"SLEHA12-SP2","description":"SUSE Linux Enterprise High Availability Extension.","free":false,"eula_url":"https://updates.suse.com/SUSE/Products/SLE-HA/12-SP2/s390x/product.license/","arch":"s390x","friendly_version":"12 SP2","extensions":[{"cpe":"cpe:/o:suse:sle-ha-geo:12:sp2","product_type":"extension","product_class":"SLE-HAE-GEO","online_predecessor_ids":[1156,1345],"repositories":[{"url":"https://updates.suse.com/SUSE/Updates/SLE-HA-GEO/12-SP2/s390x/update/","autorefresh":true,"distro_target":"sle-12-s390x","id":2039,"enabled":true,"description":"SLE-HA-GEO12-SP2-Updates for sle-12-s390x","name":"SLE-HA-GEO12-SP2-Updates","installer_updates":false},{"description":"SLE-HA-GEO12-SP2-Debuginfo-Updates for sle-12-s390x","installer_updates":false,"name":"SLE-HA-GEO12-SP2-Debuginfo-Updates","distro_target":"sle-12-s390x","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-HA-GEO/12-SP2/s390x/update_debug/","enabled":false,"id":2040},{"description":"SLE-HA-GEO12-SP2-Pool for sle-12-s390x","name":"SLE-HA-GEO12-SP2-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-HA-GEO/12-SP2/s390x/product/","autorefresh":false,"distro_target":"sle-12-s390x","id":2041,"enabled":true},{"id":2042,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-HA-GEO/12-SP2/s390x/product_debug/","autorefresh":false,"distro_target":"sle-12-s390x","name":"SLE-HA-GEO12-SP2-Debuginfo-Pool","installer_updates":false,"description":"SLE-HA-GEO12-SP2-Debuginfo-Pool for sle-12-s390x"},{"id":2043,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-HA-GEO/12-SP2/s390x/product_source/","autorefresh":false,"distro_target":"sle-12-s390x","name":"SLE-HA-GEO12-SP2-Source-Pool","installer_updates":false,"description":"SLE-HA-GEO12-SP2-Source-Pool for sle-12-s390x"}],"predecessor_ids":[1156,1345],"arch":"s390x","eula_url":"https://updates.suse.com/SUSE/Products/SLE-HA-GEO/12-SP2/s390x/product.license/","description":"SUSE Linux Enterprise High Availability Geographical Cluster Extension","shortname":"SLEHAGEO12-SP2","free":false,"id":1362,"release_stage":"released","identifier":"sle-ha-geo","extensions":[],"friendly_version":"12 SP2","migration_extra":false,"friendly_name":"SUSE Linux Enterprise High Availability GEO Extension 12 SP2 s390x","former_identifier":"sle-hae-geo","release_type":null,"name":"SUSE Linux Enterprise High Availability GEO Extension","offline_predecessor_ids":[1109,1110,1287],"version":"12.2","recommended":false}],"release_stage":"released","identifier":"sle-ha","id":1360,"recommended":false,"version":"12.2","name":"SUSE Linux Enterprise High Availability Extension","offline_predecessor_ids":[1080,1082,1084,1086,1257],"migration_extra":false,"friendly_name":"SUSE Linux Enterprise High Availability Extension 12 SP2 s390x","former_identifier":"sle-hae","release_type":null},{"product_type":"extension","cpe":"cpe:/o:suse:sle-sdk:12:sp2","online_predecessor_ids":[1146,1344],"product_class":"SLE-SDK","repositories":[{"name":"SLE-SDK12-SP2-Updates","installer_updates":false,"description":"SLE-SDK12-SP2-Updates for sle-12-s390x","enabled":true,"id":2054,"autorefresh":true,"distro_target":"sle-12-s390x","url":"https://updates.suse.com/SUSE/Updates/SLE-SDK/12-SP2/s390x/update/"},{"description":"SLE-SDK12-SP2-Debuginfo-Updates for sle-12-s390x","installer_updates":false,"name":"SLE-SDK12-SP2-Debuginfo-Updates","url":"https://updates.suse.com/SUSE/Updates/SLE-SDK/12-SP2/s390x/update_debug/","distro_target":"sle-12-s390x","autorefresh":true,"id":2055,"enabled":false},{"name":"SLE-SDK12-SP2-Pool","installer_updates":false,"description":"SLE-SDK12-SP2-Pool for sle-12-s390x","id":2056,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-SDK/12-SP2/s390x/product/","autorefresh":false,"distro_target":"sle-12-s390x"},{"description":"SLE-SDK12-SP2-Debuginfo-Pool for sle-12-s390x","name":"SLE-SDK12-SP2-Debuginfo-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-12-s390x","url":"https://updates.suse.com/SUSE/Products/SLE-SDK/12-SP2/s390x/product_debug/","enabled":false,"id":2057},{"name":"SLE-SDK12-SP2-Source-Pool","installer_updates":false,"description":"SLE-SDK12-SP2-Source-Pool for sle-12-s390x","id":2058,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-SDK/12-SP2/s390x/product_source/","autorefresh":false,"distro_target":"sle-12-s390x"}],"predecessor_ids":[1146,1344],"arch":"s390x","eula_url":"https://updates.suse.com/SUSE/Products/SLE-SDK/12-SP2/s390x/product.license/","free":true,"description":"

SUSE Linux Enterprise Software Development Kit 12 is the Software Development Kit for the family of SUSE Linux Enterprise products. It is a free of charge extension for partners and customers working with SUSE Linux Enterprise Server and Desktop and derived products.

Packages on the SDK are delivered without L3 support; maintenance updates will be done for critical security and critical non-security issues, and where needed to remain in sync with packages delivered in the SUSE Linux Enterprise Server and Desktop products.

Packages to rebuild SUSE Linux Enterprise Server are not part of the SUSE Linux Enterprise Software Development Kit.

","shortname":"SDK12-SP2","identifier":"sle-sdk","release_stage":"released","id":1365,"extensions":[],"friendly_version":"12 SP2","release_type":null,"former_identifier":"sle-sdk","friendly_name":"SUSE Linux Enterprise Software Development Kit 12 SP2 s390x","migration_extra":false,"offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Software Development Kit","version":"12.2","recommended":false},{"release_stage":"released","identifier":"PackageHub","id":1480,"extensions":[],"friendly_version":"12 SP2","former_identifier":"PackageHub","release_type":null,"friendly_name":"SUSE Package Hub 12 SP2 s390x","migration_extra":false,"offline_predecessor_ids":[],"name":"SUSE Package Hub","version":"12.2","recommended":false,"product_type":"extension","cpe":"cpe:/o:suse:packagehub:12:sp2","repositories":[{"description":"SUSE-PackageHub-12-SP2-Standard-Pool for sle-12-s390x","name":"SUSE-PackageHub-12-SP2-Standard-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Backports/SLE-12-SP2_s390x/standard/","autorefresh":false,"distro_target":"sle-12-s390x","id":2348,"enabled":true},{"description":"SUSE-PackageHub-12-SP2-Debuginfo for sle-12-s390x","name":"SUSE-PackageHub-12-SP2-Debuginfo","installer_updates":false,"url":"https://updates.suse.com/SUSE/Backports/SLE-12-SP2_s390x/standard_debug/","autorefresh":true,"distro_target":"sle-12-s390x","id":2349,"enabled":false},{"description":"SUSE-PackageHub-12-SP2-Pool for sle-12-s390x","name":"SUSE-PackageHub-12-SP2-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Backports/SLE-12-SP2_s390x/product/","autorefresh":false,"distro_target":"sle-12-s390x","id":2350,"enabled":true}],"online_predecessor_ids":[1474,1477],"product_class":"SLES-Z","predecessor_ids":[1474,1477],"arch":"s390x","eula_url":"","free":true,"description":"SUSE Package Hub is a free of charge extension providing access to community maintained packages built to run on SUSE Linux Enterprise Server. Built from the same sources used in the openSUSE distributions, these quality packages provide additional software to what is found in the SUSE Linux Enterprise Server product. Packages from the Package Hub are delivered without L3 support from SUSE. General updates and fixes to the packages in SUSE Package Hub are provided by the openSUSE community based on their discretion though SUSE will monitor and ensure that any known critical security issues will be addressed. Packages in the Package Hub are approved by SUSE for use with SUSE Linux Enterprise Server 12 and to not interfere with the supportability of SUSE Linux Enterprise Server it's modules and extensions. For more information about SUSE Package Hub please visit https://packagehub.suse.com.","shortname":"SUSE-PackageHub-12-SP2"},{"name":"SUSE Manager Server","offline_predecessor_ids":[],"friendly_name":"SUSE Manager Server 3.1 s390x","migration_extra":false,"former_identifier":"SUSE-Manager-Server","release_type":null,"recommended":false,"version":"3.1","extensions":[],"release_stage":"released","identifier":"SUSE-Manager-Server","id":1519,"friendly_version":"3.1","eula_url":"https://updates.suse.com/SUSE/Products/SUSE-Manager-Server/3.1/s390x/product.license/","arch":"s390x","shortname":"SUSE Manager Server","description":"SUSE Manager lets you efficiently manage physical, virtual, and cloud-based Linux systems. It provides automated and cost-effective configuration and software management, asset management, and system provisioning.","free":false,"cpe":"cpe:/o:suse:suse-manager-server:3.1","product_type":"extension","predecessor_ids":[1348],"online_predecessor_ids":[1348],"repositories":[{"url":"https://updates.suse.com/SUSE/Updates/SUSE-Manager-Server/3.1/s390x/update/","autorefresh":true,"distro_target":"sle-12-s390x","id":2405,"enabled":true,"description":"SUSE-Manager-Server-3.1-Updates for sle-12-s390x","name":"SUSE-Manager-Server-3.1-Updates","installer_updates":false},{"name":"SUSE-Manager-Server-3.1-Debuginfo-Updates","installer_updates":false,"description":"SUSE-Manager-Server-3.1-Debuginfo-Updates for sle-12-s390x","id":2406,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SUSE-Manager-Server/3.1/s390x/update_debug/","autorefresh":true,"distro_target":"sle-12-s390x"},{"description":"SUSE-Manager-Server-3.1-Pool for sle-12-s390x","name":"SUSE-Manager-Server-3.1-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SUSE-Manager-Server/3.1/s390x/product/","autorefresh":false,"distro_target":"sle-12-s390x","id":2407,"enabled":true},{"distro_target":"sle-12-s390x","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SUSE-Manager-Server/3.1/s390x/product_debug/","enabled":false,"id":2408,"description":"SUSE-Manager-Server-3.1-Debuginfo-Pool for sle-12-s390x","installer_updates":false,"name":"SUSE-Manager-Server-3.1-Debuginfo-Pool"},{"installer_updates":false,"name":"SUSE-Manager-Server-3.1-Source-Pool","description":"SUSE-Manager-Server-3.1-Source-Pool for sle-12-s390x","id":2409,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SUSE-Manager-Server/3.1/s390x/product_source/","distro_target":"sle-12-s390x","autorefresh":false}],"product_class":"SMS-Z"},{"extensions":[],"id":1738,"release_stage":"released","identifier":"SLES-LTSS","friendly_version":"12 SP2","name":"SUSE Linux Enterprise Server LTSS","offline_predecessor_ids":[],"friendly_name":"SUSE Linux Enterprise Server LTSS 12 SP2 s390x","migration_extra":false,"release_type":null,"former_identifier":"SLES-LTSS","recommended":false,"version":"12.2","cpe":"cpe:/o:suse:sles-ltss:12:sp2","product_type":"extension","predecessor_ids":[],"online_predecessor_ids":[],"product_class":"SLES12-SP2-LTSS-Z","repositories":[{"name":"SLES12-SP2-LTSS-Updates","installer_updates":false,"description":"SLES12-SP2-LTSS-Updates for sle-12-s390x","id":3046,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-SP2-LTSS/s390x/update/","autorefresh":true,"distro_target":"sle-12-s390x"},{"name":"SLES12-SP2-LTSS-Debuginfo-Updates","installer_updates":false,"description":"SLES12-SP2-LTSS-Debuginfo-Updates for sle-12-s390x","enabled":false,"id":3047,"autorefresh":true,"distro_target":"sle-12-s390x","url":"https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-SP2-LTSS/s390x/update_debug/"}],"eula_url":"","arch":"s390x","shortname":"SLES12-SP2 LTSS","description":"SUSE Linux Enterprise offers a comprehensive suite of products built on a single code base. The platform addresses business needs from the smallest thin-client devices to the world's most powerful high-performance computing and mainframe servers. SUSE Linux Enterprise offers common management tools and technology certifications across the platform, and each product is enterprise-class.","free":false}],"identifier":"SLES","release_stage":"released","id":1356,"friendly_version":"12 SP2","name":"SUSE Linux Enterprise Server","offline_predecessor_ids":[693,745,755,805,1303],"friendly_name":"SUSE Linux Enterprise Server 12 SP2 s390x","migration_extra":false,"former_identifier":"SLES","release_type":null,"recommended":false,"version":"12.2","cpe":"cpe:/o:suse:sles:12:sp2","product_type":"base","predecessor_ids":[1115,1335],"repositories":[{"enabled":true,"id":2008,"distro_target":"sle-12-s390x","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-SP2/s390x/update/","installer_updates":false,"name":"SLES12-SP2-Updates","description":"SLES12-SP2-Updates for sle-12-s390x"},{"name":"SLES12-SP2-Debuginfo-Updates","installer_updates":false,"description":"SLES12-SP2-Debuginfo-Updates for sle-12-s390x","enabled":false,"id":2009,"autorefresh":true,"distro_target":"sle-12-s390x","url":"https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-SP2/s390x/update_debug/"},{"distro_target":"sle-12-s390x","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-SERVER/12-SP2/s390x/product/","enabled":true,"id":2010,"description":"SLES12-SP2-Pool for sle-12-s390x","installer_updates":false,"name":"SLES12-SP2-Pool"},{"url":"https://updates.suse.com/SUSE/Products/SLE-SERVER/12-SP2/s390x/product_debug/","distro_target":"sle-12-s390x","autorefresh":false,"id":2011,"enabled":false,"description":"SLES12-SP2-Debuginfo-Pool for sle-12-s390x","installer_updates":false,"name":"SLES12-SP2-Debuginfo-Pool"},{"description":"SLES12-SP2-Source-Pool for sle-12-s390x","installer_updates":false,"name":"SLES12-SP2-Source-Pool","distro_target":"sle-12-s390x","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-SERVER/12-SP2/s390x/product_source/","enabled":false,"id":2012},{"description":"SLES12-SP2-Installer-Updates for sle-12-s390x","installer_updates":true,"name":"SLES12-SP2-Installer-Updates","url":"https://updates.suse.com/SUSE/Updates/SLE-SERVER-INSTALLER/12-SP2/s390x/update/","distro_target":"sle-12-s390x","autorefresh":true,"id":2103,"enabled":false}],"online_predecessor_ids":[1115,1335],"product_class":"SLES-Z","eula_url":"https://updates.suse.com/SUSE/Products/SLE-SERVER/12-SP2/s390x/product.license/","arch":"s390x","shortname":"SLES12-SP2","description":"SUSE Linux Enterprise offers a comprehensive suite of products built on a single code base. The platform addresses business needs from the smallest thin-client devices to the world's most powerful high-performance computing and mainframe servers. SUSE Linux Enterprise offers common management tools and technology certifications across the platform, and each product is enterprise-class.","free":false},{"eula_url":"https://updates.suse.com/SUSE/Products/SLE-SERVER/12-SP2/x86_64/product.license/","arch":"x86_64","shortname":"SLES12-SP2","description":"SUSE Linux Enterprise offers a comprehensive suite of products built on a single code base. The platform addresses business needs from the smallest thin-client devices to the world's most powerful high-performance computing and mainframe servers. SUSE Linux Enterprise offers common management tools and technology certifications across the platform, and each product is enterprise-class.","free":false,"cpe":"cpe:/o:suse:sles:12:sp2","product_type":"base","predecessor_ids":[1117,1322],"online_predecessor_ids":[1117,1322],"repositories":[{"enabled":true,"id":2013,"autorefresh":true,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-SP2/x86_64/update/","name":"SLES12-SP2-Updates","installer_updates":false,"description":"SLES12-SP2-Updates for sle-12-x86_64"},{"name":"SLES12-SP2-Debuginfo-Updates","installer_updates":false,"description":"SLES12-SP2-Debuginfo-Updates for sle-12-x86_64","enabled":false,"id":2014,"autorefresh":true,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-SP2/x86_64/update_debug/"},{"name":"SLES12-SP2-Pool","installer_updates":false,"description":"SLES12-SP2-Pool for sle-12-x86_64","id":2015,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-SERVER/12-SP2/x86_64/product/","autorefresh":false,"distro_target":"sle-12-x86_64"},{"id":2016,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-SERVER/12-SP2/x86_64/product_debug/","distro_target":"sle-12-x86_64","autorefresh":false,"installer_updates":false,"name":"SLES12-SP2-Debuginfo-Pool","description":"SLES12-SP2-Debuginfo-Pool for sle-12-x86_64"},{"url":"https://updates.suse.com/SUSE/Products/SLE-SERVER/12-SP2/x86_64/product_source/","autorefresh":false,"distro_target":"sle-12-x86_64","id":2017,"enabled":false,"description":"SLES12-SP2-Source-Pool for sle-12-x86_64","name":"SLES12-SP2-Source-Pool","installer_updates":false},{"distro_target":"sle-12-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-SERVER-INSTALLER/12-SP2/x86_64/update/","enabled":false,"id":2101,"description":"SLES12-SP2-Installer-Updates for sle-12-x86_64","installer_updates":true,"name":"SLES12-SP2-Installer-Updates"}],"product_class":"7261","name":"SUSE Linux Enterprise Server","offline_predecessor_ids":[690,769,814,824,1300],"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Server 12 SP2 x86_64","release_type":null,"former_identifier":"SLES","recommended":false,"version":"12.2","extensions":[{"description":"

The Legacy Module helps you migrating applications from SUSE Linux Enterprise 10 and 11 and other systems to SUSE Linux Enterprise 12, by providing packages which are discontinued on SUSE Linux Enterprise Server, such as: sendmail, syslog-ng, IBM Java6, and a number of libraries (for example openssl-0.9.8).

Access to the Legacy Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself. Packages in the this module are usually supported for at most three years. Support for Sendmail and IBM Java 6 will end in September 2017 the latest.

","shortname":"Legacy-Module","free":true,"eula_url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/12/x86_64/product.license/","arch":"x86_64","predecessor_ids":[],"repositories":[{"description":"SLE-Module-Legacy12-Updates for sle-12-x86_64","name":"SLE-Module-Legacy12-Updates","installer_updates":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/12/x86_64/update/","autorefresh":true,"distro_target":"sle-12-x86_64","id":1676,"enabled":true},{"description":"SLE-Module-Legacy12-Debuginfo-Updates for sle-12-x86_64","installer_updates":false,"name":"SLE-Module-Legacy12-Debuginfo-Updates","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/12/x86_64/update_debug/","distro_target":"sle-12-x86_64","autorefresh":true,"id":1677,"enabled":false},{"name":"SLE-Module-Legacy12-Pool","installer_updates":false,"description":"SLE-Module-Legacy12-Pool for sle-12-x86_64","id":1678,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/12/x86_64/product/","autorefresh":false,"distro_target":"sle-12-x86_64"},{"description":"SLE-Module-Legacy12-Debuginfo-Pool for sle-12-x86_64","name":"SLE-Module-Legacy12-Debuginfo-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/12/x86_64/product_debug/","enabled":false,"id":1679},{"installer_updates":false,"name":"SLE-Module-Legacy12-Source-Pool","description":"SLE-Module-Legacy12-Source-Pool for sle-12-x86_64","id":1989,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/12/x86_64/product_source/","distro_target":"sle-12-x86_64","autorefresh":false}],"online_predecessor_ids":[],"product_class":"MODULE","cpe":"cpe:/o:suse:sle-module-legacy:12","product_type":"module","recommended":false,"version":"12","name":"Legacy Module","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"Legacy Module 12 x86_64","release_type":null,"former_identifier":"sle-module-legacy","friendly_version":"12","extensions":[],"id":1150,"release_stage":"released","identifier":"sle-module-legacy"},{"arch":"x86_64","eula_url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/12/x86_64/product.license/","shortname":"Web-and-Scripting-Module","description":"

The SUSE Linux Enterprise Web and Scripting Module delivers a comprehensive suite of scripting languages, frameworks, and related tools helping developers and systems administrators accelerate the creation of stable, modern web applications, using dynamic languages, such as PHP, Ruby on Rails, and Python.

Access to the Web and Scripting Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself: Package versions in the this module are usually supported for at most three years. We are planning to release more recent versions on a schedule of approximately 18 month; the exact dates may differ per package.

","free":true,"cpe":"cpe:/o:suse:sle-module-web-scripting:12","product_type":"module","online_predecessor_ids":[],"product_class":"MODULE","repositories":[{"distro_target":"sle-12-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/12/x86_64/update/","enabled":true,"id":1688,"description":"SLE-Module-Web-Scripting12-Updates for sle-12-x86_64","installer_updates":false,"name":"SLE-Module-Web-Scripting12-Updates"},{"description":"SLE-Module-Web-Scripting12-Debuginfo-Updates for sle-12-x86_64","name":"SLE-Module-Web-Scripting12-Debuginfo-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/12/x86_64/update_debug/","enabled":false,"id":1689},{"description":"SLE-Module-Web-Scripting12-Pool for sle-12-x86_64","installer_updates":false,"name":"SLE-Module-Web-Scripting12-Pool","distro_target":"sle-12-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/12/x86_64/product/","enabled":true,"id":1690},{"description":"SLE-Module-Web-Scripting12-Debuginfo-Pool for sle-12-x86_64","installer_updates":false,"name":"SLE-Module-Web-Scripting12-Debuginfo-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/12/x86_64/product_debug/","distro_target":"sle-12-x86_64","autorefresh":false,"id":1691,"enabled":false},{"enabled":false,"id":1992,"autorefresh":false,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/12/x86_64/product_source/","name":"SLE-Module-Web-Scripting12-Source-Pool","installer_updates":false,"description":"SLE-Module-Web-Scripting12-Source-Pool for sle-12-x86_64"}],"predecessor_ids":[],"migration_extra":false,"friendly_name":"Web and Scripting Module 12 x86_64","release_type":null,"former_identifier":"sle-module-web-scripting","name":"Web and Scripting Module","offline_predecessor_ids":[],"version":"12","recommended":false,"identifier":"sle-module-web-scripting","release_stage":"released","id":1153,"extensions":[],"friendly_version":"12"},{"friendly_version":"12","extensions":[],"identifier":"sle-module-adv-systems-management","release_stage":"released","id":1212,"recommended":false,"version":"12","offline_predecessor_ids":[],"name":"Advanced Systems Management Module","release_type":null,"former_identifier":"sle-module-adv-systems-management","migration_extra":false,"friendly_name":"Advanced Systems Management Module 12 x86_64","predecessor_ids":[],"online_predecessor_ids":[],"product_class":"MODULE","repositories":[{"description":"SLE-Module-Adv-Systems-Management12-Updates for sle-12-x86_64","installer_updates":false,"name":"SLE-Module-Adv-Systems-Management12-Updates","distro_target":"sle-12-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Adv-Systems-Management/12/x86_64/update/","enabled":true,"id":1704},{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Adv-Systems-Management/12/x86_64/update_debug/","distro_target":"sle-12-x86_64","autorefresh":true,"id":1705,"enabled":false,"description":"SLE-Module-Adv-Systems-Management12-Debuginfo-Updates for sle-12-x86_64","installer_updates":false,"name":"SLE-Module-Adv-Systems-Management12-Debuginfo-Updates"},{"description":"SLE-Module-Adv-Systems-Management12-Pool for sle-12-x86_64","installer_updates":false,"name":"SLE-Module-Adv-Systems-Management12-Pool","distro_target":"sle-12-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Adv-Systems-Management/12/x86_64/product/","enabled":true,"id":1706},{"installer_updates":false,"name":"SLE-Module-Adv-Systems-Management12-Debuginfo-Pool","description":"SLE-Module-Adv-Systems-Management12-Debuginfo-Pool for sle-12-x86_64","enabled":false,"id":1707,"distro_target":"sle-12-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Adv-Systems-Management/12/x86_64/product_debug/"},{"id":1998,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Adv-Systems-Management/12/x86_64/product_source/","distro_target":"sle-12-x86_64","autorefresh":false,"installer_updates":false,"name":"SLE-Module-Adv-Systems-Management12-Source-Pool","description":"SLE-Module-Adv-Systems-Management12-Source-Pool for sle-12-x86_64"}],"product_type":"module","cpe":"cpe:/o:suse:sle-module-adv-systems-management:12","free":true,"description":"

This Module contains current versions of the popular configuration management frameworks Puppet and CFEngine as well as the new systems management toolbox called machinery.

The machinery tool will be frequently updated and is SUSE's upcoming systems management toolbox for inspecting and validating systems remotely, storing their system description and creating new systems to deploy them in datacenters and clouds.

","shortname":"Adv-Sys-Mgmt-Module","eula_url":"","arch":"x86_64"},{"cpe":"cpe:/o:suse:sle-module-public-cloud:12","product_type":"module","online_predecessor_ids":[],"product_class":"MODULE","repositories":[{"description":"SLE-Module-Public-Cloud12-Updates for sle-12-x86_64","installer_updates":false,"name":"SLE-Module-Public-Cloud12-Updates","distro_target":"sle-12-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/12/x86_64/update/","enabled":true,"id":1700},{"description":"SLE-Module-Public-Cloud12-Debuginfo-Updates for sle-12-x86_64","installer_updates":false,"name":"SLE-Module-Public-Cloud12-Debuginfo-Updates","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/12/x86_64/update_debug/","distro_target":"sle-12-x86_64","autorefresh":true,"id":1701,"enabled":false},{"id":1702,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/12/x86_64/product/","autorefresh":false,"distro_target":"sle-12-x86_64","name":"SLE-Module-Public-Cloud12-Pool","installer_updates":false,"description":"SLE-Module-Public-Cloud12-Pool for sle-12-x86_64"},{"distro_target":"sle-12-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/12/x86_64/product_debug/","enabled":false,"id":1703,"description":"SLE-Module-Public-Cloud12-Debuginfo-Pool for sle-12-x86_64","installer_updates":false,"name":"SLE-Module-Public-Cloud12-Debuginfo-Pool"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/12/x86_64/product_source/","distro_target":"sle-12-x86_64","autorefresh":false,"id":1995,"enabled":false,"description":"SLE-Module-Public-Cloud12-Source-Pool for sle-12-x86_64","installer_updates":false,"name":"SLE-Module-Public-Cloud12-Source-Pool"}],"predecessor_ids":[],"arch":"x86_64","eula_url":"","shortname":"Public-Cloud-Module","description":"

The Public Cloud Module is a collection of tools that enables you to create and manage cloud images from the commandline on SUSE Linux Enterprise Server. When building your own images with KIWI or SUSE Studio, initialization code specific to the target cloud is included in that image.

Access to the Public Cloud Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself; please check the Release Notes for further details.

","free":true,"release_stage":"released","id":1220,"identifier":"sle-module-public-cloud","extensions":[],"friendly_version":"12","migration_extra":false,"friendly_name":"Public Cloud Module 12 x86_64","release_type":null,"former_identifier":"sle-module-public-cloud","name":"Public Cloud Module","offline_predecessor_ids":[],"version":"12","recommended":false},{"friendly_version":"12","release_stage":"released","identifier":"sle-live-patching","id":1253,"extensions":[],"version":"12","recommended":false,"friendly_name":"SUSE Linux Enterprise Live Patching 12 x86_64","migration_extra":false,"former_identifier":"sle-live-patching","release_type":null,"name":"SUSE Linux Enterprise Live Patching","offline_predecessor_ids":[],"online_predecessor_ids":[],"repositories":[{"enabled":true,"id":1741,"autorefresh":true,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Live-Patching/12/x86_64/update/","name":"SLE-Live-Patching12-Updates","installer_updates":false,"description":"SLE-Live-Patching12-Updates for sle-12-x86_64"},{"url":"https://updates.suse.com/SUSE/Updates/SLE-Live-Patching/12/x86_64/update_debug/","autorefresh":true,"distro_target":"sle-12-x86_64","id":1742,"enabled":false,"description":"SLE-Live-Patching12-Debuginfo-Updates for sle-12-x86_64","name":"SLE-Live-Patching12-Debuginfo-Updates","installer_updates":false},{"name":"SLE-Live-Patching12-Pool","installer_updates":false,"description":"SLE-Live-Patching12-Pool for sle-12-x86_64","id":1743,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Live-Patching/12/x86_64/product/","autorefresh":false,"distro_target":"sle-12-x86_64"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Live-Patching/12/x86_64/product_debug/","autorefresh":false,"distro_target":"sle-12-x86_64","id":1744,"enabled":false,"description":"SLE-Live-Patching12-Debuginfo-Pool for sle-12-x86_64","name":"SLE-Live-Patching12-Debuginfo-Pool","installer_updates":false},{"id":1986,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Live-Patching/12/x86_64/product_source/","distro_target":"sle-12-x86_64","autorefresh":false,"installer_updates":false,"name":"SLE-Live-Patching12-Source-Pool","description":"SLE-Live-Patching12-Source-Pool for sle-12-x86_64"}],"product_class":"SLE-LP","predecessor_ids":[],"cpe":"cpe:/o:suse:sle-live-patching:12","product_type":"extension","description":"

SUSE Linux Enterprise Live Patching provides packages to update critical kernel modules live in SUSE Linux Enterprise. With SUSE Linux Enterprise Live Patching, you can perform critical kernel patching without shutting down your system, reducing the need for planned downtime and increasing service availability.

","shortname":"Live-Patching","free":false,"arch":"x86_64","eula_url":"https://updates.suse.com/SUSE/Products/SLE-Live-Patching/12/x86_64/product.license/"},{"friendly_version":"12","extensions":[],"release_stage":"released","id":1332,"identifier":"sle-module-containers","recommended":false,"version":"12","name":"Containers Module","offline_predecessor_ids":[],"friendly_name":"Containers Module 12 x86_64","migration_extra":false,"release_type":null,"former_identifier":"sle-module-containers","predecessor_ids":[],"online_predecessor_ids":[],"repositories":[{"name":"SLE-Module-Containers12-Updates","installer_updates":false,"description":"SLE-Module-Containers12-Updates for sle-12-x86_64","id":1864,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/12/x86_64/update/","autorefresh":true,"distro_target":"sle-12-x86_64"},{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/12/x86_64/update_debug/","distro_target":"sle-12-x86_64","autorefresh":true,"id":1865,"enabled":false,"description":"SLE-Module-Containers12-Debuginfo-Updates for sle-12-x86_64","installer_updates":false,"name":"SLE-Module-Containers12-Debuginfo-Updates"},{"id":1866,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/12/x86_64/product/","autorefresh":false,"distro_target":"sle-12-x86_64","name":"SLE-Module-Containers12-Pool","installer_updates":false,"description":"SLE-Module-Containers12-Pool for sle-12-x86_64"},{"installer_updates":false,"name":"SLE-Module-Containers12-Debuginfo-Pool","description":"SLE-Module-Containers12-Debuginfo-Pool for sle-12-x86_64","enabled":false,"id":1867,"distro_target":"sle-12-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/12/x86_64/product_debug/"},{"enabled":false,"id":1957,"autorefresh":false,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/12/x86_64/product_source/","name":"SLE-Module-Containers12-Source-Pool","installer_updates":false,"description":"SLE-Module-Containers12-Source-Pool for sle-12-x86_64"}],"product_class":"MODULE","cpe":"cpe:/o:suse:sle-module-containers:12","product_type":"module","shortname":"Containers-Module","description":"

This Module contains several packages revolving around containers and related tools.

","free":true,"eula_url":"","arch":"x86_64"},{"arch":"x86_64","eula_url":"","shortname":"Toolchain-Module","description":"Via this Module you will have access to a more recent GCC and Toolchain in addition to the default compiler of SUSE Linux Enterprise. Access to the Toolchain Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself. Please check the Release Notes for further details.","free":true,"cpe":"cpe:/o:suse:sle-module-toolchain:12","product_type":"module","product_class":"MODULE","online_predecessor_ids":[],"repositories":[{"distro_target":"sle-12-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Toolchain/12/x86_64/update/","enabled":true,"id":1903,"description":"SLE-Module-Toolchain12-Updates for sle-12-x86_64","installer_updates":false,"name":"SLE-Module-Toolchain12-Updates"},{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Toolchain/12/x86_64/update_debug/","distro_target":"sle-12-x86_64","autorefresh":true,"id":1904,"enabled":false,"description":"SLE-Module-Toolchain12-Debuginfo-Updates for sle-12-x86_64","installer_updates":false,"name":"SLE-Module-Toolchain12-Debuginfo-Updates"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Toolchain/12/x86_64/product/","distro_target":"sle-12-x86_64","autorefresh":false,"id":1905,"enabled":true,"description":"SLE-Module-Toolchain12-Pool for sle-12-x86_64","installer_updates":false,"name":"SLE-Module-Toolchain12-Pool"},{"description":"SLE-Module-Toolchain12-Debuginfo-Pool for sle-12-x86_64","installer_updates":false,"name":"SLE-Module-Toolchain12-Debuginfo-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Toolchain/12/x86_64/product_debug/","distro_target":"sle-12-x86_64","autorefresh":false,"id":1906,"enabled":false}],"predecessor_ids":[],"migration_extra":false,"friendly_name":"Toolchain Module 12 x86_64","former_identifier":"sle-module-toolchain","release_type":null,"name":"Toolchain Module","offline_predecessor_ids":[],"version":"12","recommended":false,"release_stage":"released","identifier":"sle-module-toolchain","id":1341,"extensions":[],"friendly_version":"12"},{"release_type":null,"former_identifier":"SUSE-Manager-Server","migration_extra":false,"friendly_name":"SUSE Manager Server 3.0 x86_64","offline_predecessor_ids":[],"name":"SUSE Manager Server","version":"3.0","recommended":false,"release_stage":"released","id":1349,"identifier":"SUSE-Manager-Server","extensions":[],"friendly_version":"3.0","arch":"x86_64","eula_url":"https://updates.suse.com/SUSE/Products/SUSE-Manager-Server/3.0/x86_64/product.license/","free":false,"shortname":"SUSE Manager Server","description":"SUSE Manager lets you efficiently manage physical, virtual, and cloud-based Linux systems. It provides automated and cost-effective configuration and software management, asset management, and system provisioning.","product_type":"extension","cpe":"cpe:/o:suse:suse-manager-server:3.0","online_predecessor_ids":[],"product_class":"SMS-X86","repositories":[{"autorefresh":true,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Updates/SUSE-Manager-Server/3.0/x86_64/update/","enabled":true,"id":1949,"description":"SUSE-Manager-Server-3.0-Updates for sle-12-x86_64","name":"SUSE-Manager-Server-3.0-Updates","installer_updates":false},{"autorefresh":true,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Updates/SUSE-Manager-Server/3.0/x86_64/update_debug/","enabled":false,"id":1950,"description":"SUSE-Manager-Server-3.0-Debuginfo-Updates for sle-12-x86_64","name":"SUSE-Manager-Server-3.0-Debuginfo-Updates","installer_updates":false},{"enabled":true,"id":1951,"autorefresh":false,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Products/SUSE-Manager-Server/3.0/x86_64/product/","name":"SUSE-Manager-Server-3.0-Pool","installer_updates":false,"description":"SUSE-Manager-Server-3.0-Pool for sle-12-x86_64"},{"description":"SUSE-Manager-Server-3.0-Debuginfo-Pool for sle-12-x86_64","name":"SUSE-Manager-Server-3.0-Debuginfo-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SUSE-Manager-Server/3.0/x86_64/product_debug/","autorefresh":false,"distro_target":"sle-12-x86_64","id":1952,"enabled":false},{"url":"https://updates.suse.com/SUSE/Products/SUSE-Manager-Server/3.0/x86_64/product_source/","autorefresh":false,"distro_target":"sle-12-x86_64","id":2001,"enabled":false,"description":"SUSE-Manager-Server-3.0-Source-Pool for sle-12-x86_64","name":"SUSE-Manager-Server-3.0-Source-Pool","installer_updates":false}],"predecessor_ids":[]},{"friendly_name":"SUSE Manager Proxy 3.0 x86_64","migration_extra":false,"former_identifier":"SUSE-Manager-Proxy","release_type":null,"name":"SUSE Manager Proxy","offline_predecessor_ids":[],"version":"3.0","recommended":false,"release_stage":"released","id":1352,"identifier":"SUSE-Manager-Proxy","extensions":[],"friendly_version":"3.0","arch":"x86_64","eula_url":"https://updates.suse.com/SUSE/Products/SUSE-Manager-Proxy/3.0/x86_64/product.license/","description":"SUSE Manager Proxies extend large and/or geographically dispersed SUSE Manager environments to reduce load on the SUSE Manager Server, lower bandwidth needs, and provide faster local updates.","shortname":"SUSE Manager Proxy","free":false,"cpe":"cpe:/o:suse:suse-manager-proxy:3.0","product_type":"extension","online_predecessor_ids":[],"repositories":[{"distro_target":"sle-12-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SUSE-Manager-Proxy/3.0/x86_64/update/","enabled":true,"id":1968,"description":"SUSE-Manager-Proxy-3.0-Updates for sle-12-x86_64","installer_updates":false,"name":"SUSE-Manager-Proxy-3.0-Updates"},{"autorefresh":true,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Updates/SUSE-Manager-Proxy/3.0/x86_64/update_debug/","enabled":false,"id":1969,"description":"SUSE-Manager-Proxy-3.0-Debuginfo-Updates for sle-12-x86_64","name":"SUSE-Manager-Proxy-3.0-Debuginfo-Updates","installer_updates":false},{"enabled":true,"id":1970,"distro_target":"sle-12-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SUSE-Manager-Proxy/3.0/x86_64/product/","installer_updates":false,"name":"SUSE-Manager-Proxy-3.0-Pool","description":"SUSE-Manager-Proxy-3.0-Pool for sle-12-x86_64"},{"description":"SUSE-Manager-Proxy-3.0-Debuginfo-Pool for sle-12-x86_64","installer_updates":false,"name":"SUSE-Manager-Proxy-3.0-Debuginfo-Pool","url":"https://updates.suse.com/SUSE/Products/SUSE-Manager-Proxy/3.0/x86_64/product_debug/","distro_target":"sle-12-x86_64","autorefresh":false,"id":1971,"enabled":false},{"name":"SUSE-Manager-Proxy-3.0-Source-Pool","installer_updates":false,"description":"SUSE-Manager-Proxy-3.0-Source-Pool for sle-12-x86_64","id":2002,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SUSE-Manager-Proxy/3.0/x86_64/product_source/","autorefresh":false,"distro_target":"sle-12-x86_64"}],"product_class":"SMP","predecessor_ids":[]},{"cpe":"cpe:/o:suse:sle-we:12:sp2","product_type":"extension","predecessor_ids":[1222,1338],"online_predecessor_ids":[1222,1338],"product_class":"SLE-WE","repositories":[{"autorefresh":true,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-WE/12-SP2/x86_64/update/","enabled":true,"id":2024,"description":"SLE-WE12-SP2-Updates for sle-12-x86_64","name":"SLE-WE12-SP2-Updates","installer_updates":false},{"description":"SLE-WE12-SP2-Debuginfo-Updates for sle-12-x86_64","name":"SLE-WE12-SP2-Debuginfo-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-WE/12-SP2/x86_64/update_debug/","enabled":false,"id":2025},{"description":"SLE-WE12-SP2-Pool for sle-12-x86_64","name":"SLE-WE12-SP2-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-WE/12-SP2/x86_64/product/","autorefresh":false,"distro_target":"sle-12-x86_64","id":2026,"enabled":true},{"description":"SLE-WE12-SP2-Debuginfo-Pool for sle-12-x86_64","name":"SLE-WE12-SP2-Debuginfo-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-WE/12-SP2/x86_64/product_debug/","autorefresh":false,"distro_target":"sle-12-x86_64","id":2027,"enabled":false},{"description":"SLE-WE12-SP2-Source-Pool for sle-12-x86_64","installer_updates":false,"name":"SLE-WE12-SP2-Source-Pool","distro_target":"sle-12-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-WE/12-SP2/x86_64/product_source/","enabled":false,"id":2028},{"description":"SLE-12-SP2-GA-Desktop-nVidia-Driver","installer_updates":false,"name":"SLE-12-SP2-GA-Desktop-nVidia-Driver","url":"http://download.nvidia.com/suse/sle12sp2/","distro_target":null,"autorefresh":true,"id":2149,"enabled":true}],"eula_url":"https://updates.suse.com/SUSE/Products/SLE-WE/12-SP2/x86_64/product.license/","arch":"x86_64","shortname":"SLEWE12-SP2","description":"SUSE Linux Enterprise Workstation Extension extends the functionality of SUSE Linux Enterprise Server with packages of SUSE Linux Enterprise Desktop, like additional desktop applications (office suite, email client, graphical editor ...) and libraries. It allows to combine both products to create a full featured Workstation.","free":false,"extensions":[],"release_stage":"released","identifier":"sle-we","id":1359,"friendly_version":"12 SP2","name":"SUSE Linux Enterprise Workstation Extension","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Workstation Extension 12 SP2 x86_64","release_type":null,"former_identifier":"sle-we","recommended":false,"version":"12.2"},{"release_stage":"released","id":1361,"identifier":"sle-ha","extensions":[{"cpe":"cpe:/o:suse:sle-ha-geo:12:sp2","product_type":"extension","product_class":"SLE-HAE-GEO","online_predecessor_ids":[1157,1337],"repositories":[{"distro_target":"sle-12-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-HA-GEO/12-SP2/x86_64/update/","enabled":true,"id":2044,"description":"SLE-HA-GEO12-SP2-Updates for sle-12-x86_64","installer_updates":false,"name":"SLE-HA-GEO12-SP2-Updates"},{"description":"SLE-HA-GEO12-SP2-Debuginfo-Updates for sle-12-x86_64","name":"SLE-HA-GEO12-SP2-Debuginfo-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-HA-GEO/12-SP2/x86_64/update_debug/","enabled":false,"id":2045},{"enabled":true,"id":2046,"distro_target":"sle-12-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-HA-GEO/12-SP2/x86_64/product/","installer_updates":false,"name":"SLE-HA-GEO12-SP2-Pool","description":"SLE-HA-GEO12-SP2-Pool for sle-12-x86_64"},{"distro_target":"sle-12-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-HA-GEO/12-SP2/x86_64/product_debug/","enabled":false,"id":2047,"description":"SLE-HA-GEO12-SP2-Debuginfo-Pool for sle-12-x86_64","installer_updates":false,"name":"SLE-HA-GEO12-SP2-Debuginfo-Pool"},{"description":"SLE-HA-GEO12-SP2-Source-Pool for sle-12-x86_64","installer_updates":false,"name":"SLE-HA-GEO12-SP2-Source-Pool","distro_target":"sle-12-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-HA-GEO/12-SP2/x86_64/product_source/","enabled":false,"id":2048}],"predecessor_ids":[1157,1337],"arch":"x86_64","eula_url":"https://updates.suse.com/SUSE/Products/SLE-HA-GEO/12-SP2/x86_64/product.license/","description":"SUSE Linux Enterprise High Availability Geographical Cluster Extension","shortname":"SLEHAGEO12-SP2","free":false,"identifier":"sle-ha-geo","release_stage":"released","id":1363,"extensions":[],"friendly_version":"12 SP2","migration_extra":false,"friendly_name":"SUSE Linux Enterprise High Availability GEO Extension 12 SP2 x86_64","former_identifier":"sle-hae-geo","release_type":null,"name":"SUSE Linux Enterprise High Availability GEO Extension","offline_predecessor_ids":[1101,1107,1286],"version":"12.2","recommended":false}],"friendly_version":"12 SP2","former_identifier":"sle-hae","release_type":null,"friendly_name":"SUSE Linux Enterprise High Availability Extension 12 SP2 x86_64","migration_extra":false,"offline_predecessor_ids":[958,961,967,971,1256],"name":"SUSE Linux Enterprise High Availability Extension","version":"12.2","recommended":false,"product_type":"extension","cpe":"cpe:/o:suse:sle-ha:12:sp2","product_class":"SLE-HAE-X86","online_predecessor_ids":[1245,1324],"repositories":[{"description":"SLE-HA12-SP2-Updates for sle-12-x86_64","name":"SLE-HA12-SP2-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-HA/12-SP2/x86_64/update/","enabled":true,"id":2034},{"autorefresh":true,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-HA/12-SP2/x86_64/update_debug/","enabled":false,"id":2035,"description":"SLE-HA12-SP2-Debuginfo-Updates for sle-12-x86_64","name":"SLE-HA12-SP2-Debuginfo-Updates","installer_updates":false},{"name":"SLE-HA12-SP2-Pool","installer_updates":false,"description":"SLE-HA12-SP2-Pool for sle-12-x86_64","id":2036,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-HA/12-SP2/x86_64/product/","autorefresh":false,"distro_target":"sle-12-x86_64"},{"id":2037,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-HA/12-SP2/x86_64/product_debug/","distro_target":"sle-12-x86_64","autorefresh":false,"installer_updates":false,"name":"SLE-HA12-SP2-Debuginfo-Pool","description":"SLE-HA12-SP2-Debuginfo-Pool for sle-12-x86_64"},{"description":"SLE-HA12-SP2-Source-Pool for sle-12-x86_64","name":"SLE-HA12-SP2-Source-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-HA/12-SP2/x86_64/product_source/","autorefresh":false,"distro_target":"sle-12-x86_64","id":2038,"enabled":false}],"predecessor_ids":[1245,1324],"arch":"x86_64","eula_url":"https://updates.suse.com/SUSE/Products/SLE-HA/12-SP2/x86_64/product.license/","free":false,"description":"SUSE Linux Enterprise High Availability Extension.","shortname":"SLEHA12-SP2"},{"eula_url":"https://updates.suse.com/SUSE/Products/SLE-SDK/12-SP2/x86_64/product.license/","arch":"x86_64","shortname":"SDK12-SP2","description":"

SUSE Linux Enterprise Software Development Kit 12 is the Software Development Kit for the family of SUSE Linux Enterprise products. It is a free of charge extension for partners and customers working with SUSE Linux Enterprise Server and Desktop and derived products.

Packages on the SDK are delivered without L3 support; maintenance updates will be done for critical security and critical non-security issues, and where needed to remain in sync with packages delivered in the SUSE Linux Enterprise Server and Desktop products.

Packages to rebuild SUSE Linux Enterprise Server are not part of the SUSE Linux Enterprise Software Development Kit.

","free":true,"cpe":"cpe:/o:suse:sle-sdk:12:sp2","product_type":"extension","predecessor_ids":[1223,1323],"online_predecessor_ids":[1223,1323],"repositories":[{"description":"SLE-SDK12-SP2-Updates for sle-12-x86_64","installer_updates":false,"name":"SLE-SDK12-SP2-Updates","url":"https://updates.suse.com/SUSE/Updates/SLE-SDK/12-SP2/x86_64/update/","distro_target":"sle-12-x86_64","autorefresh":true,"id":2059,"enabled":true},{"name":"SLE-SDK12-SP2-Debuginfo-Updates","installer_updates":false,"description":"SLE-SDK12-SP2-Debuginfo-Updates for sle-12-x86_64","enabled":false,"id":2060,"autorefresh":true,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-SDK/12-SP2/x86_64/update_debug/"},{"description":"SLE-SDK12-SP2-Pool for sle-12-x86_64","name":"SLE-SDK12-SP2-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-SDK/12-SP2/x86_64/product/","autorefresh":false,"distro_target":"sle-12-x86_64","id":2061,"enabled":true},{"name":"SLE-SDK12-SP2-Debuginfo-Pool","installer_updates":false,"description":"SLE-SDK12-SP2-Debuginfo-Pool for sle-12-x86_64","id":2062,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-SDK/12-SP2/x86_64/product_debug/","autorefresh":false,"distro_target":"sle-12-x86_64"},{"name":"SLE-SDK12-SP2-Source-Pool","installer_updates":false,"description":"SLE-SDK12-SP2-Source-Pool for sle-12-x86_64","enabled":false,"id":2063,"autorefresh":false,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-SDK/12-SP2/x86_64/product_source/"}],"product_class":"SLE-SDK","name":"SUSE Linux Enterprise Software Development Kit","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Software Development Kit 12 SP2 x86_64","former_identifier":"sle-sdk","release_type":null,"recommended":false,"version":"12.2","extensions":[],"release_stage":"released","identifier":"sle-sdk","id":1366,"friendly_version":"12 SP2"},{"id":1381,"release_stage":"released","identifier":"suse-openstack-cloud","extensions":[{"offline_predecessor_ids":[],"name":"Magnum Orchestration","release_type":null,"former_identifier":"openstack-cloud-magnum-orchestration","migration_extra":false,"friendly_name":"Magnum Orchestration 7 x86_64","recommended":false,"version":"7","extensions":[],"id":1485,"release_stage":"released","identifier":"openstack-cloud-magnum-orchestration","friendly_version":"7","eula_url":"","arch":"x86_64","free":false,"description":"

This Module contains the maintenance packages for the kubernetes nodes created by Magnum.

","shortname":"magnum-orchestration","product_type":"module","cpe":"cpe:/o:suse:openstack-cloud-magnum-orchestration:7","predecessor_ids":[],"online_predecessor_ids":[],"repositories":[{"distro_target":"sle-12-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/OpenStack-Cloud-Magnum-Orchestration/7/x86_64/update/","enabled":true,"id":2367,"description":"OpenStack-Cloud-Magnum-Orchestration-Updates for sle-12-x86_64","installer_updates":false,"name":"OpenStack-Cloud-Magnum-Orchestration-Updates"},{"id":2368,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/OpenStack-Cloud-Magnum-Orchestration/7/x86_64/update_debug/","distro_target":"sle-12-x86_64","autorefresh":true,"installer_updates":false,"name":"OpenStack-Cloud-Magnum-Orchestration-Debuginfo-Updates","description":"OpenStack-Cloud-Magnum-Orchestration-Debuginfo-Updates for sle-12-x86_64"},{"description":"OpenStack-Cloud-Magnum-Orchestration-Pool for sle-12-x86_64","name":"OpenStack-Cloud-Magnum-Orchestration-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/OpenStack-Cloud-Magnum-Orchestration/7/x86_64/product/","autorefresh":false,"distro_target":"sle-12-x86_64","id":2369,"enabled":true},{"url":"https://updates.suse.com/SUSE/Products/OpenStack-Cloud-Magnum-Orchestration/7/x86_64/product_debug/","distro_target":"sle-12-x86_64","autorefresh":false,"id":2370,"enabled":false,"description":"OpenStack-Cloud-Magnum-Orchestration-Debuginfo-Pool for sle-12-x86_64","installer_updates":false,"name":"OpenStack-Cloud-Magnum-Orchestration-Debuginfo-Pool"}],"product_class":"SUSE_CLOUD"}],"friendly_version":"7","migration_extra":false,"friendly_name":"SUSE OpenStack Cloud 7 x86_64","former_identifier":"suse-openstack-cloud","release_type":null,"name":"SUSE OpenStack Cloud","offline_predecessor_ids":[],"version":"7","recommended":false,"cpe":"cpe:/o:suse:suse-openstack-cloud:7","product_type":"extension","online_predecessor_ids":[1347],"product_class":"SUSE_CLOUD","repositories":[{"installer_updates":false,"name":"SUSE-OpenStack-Cloud-7-Updates","description":"SUSE-OpenStack-Cloud-7-Updates for sle-12-x86_64","id":2109,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/OpenStack-Cloud/7/x86_64/update/","distro_target":"sle-12-x86_64","autorefresh":true},{"url":"https://updates.suse.com/SUSE/Updates/OpenStack-Cloud/7/x86_64/update_debug/","distro_target":"sle-12-x86_64","autorefresh":true,"id":2110,"enabled":false,"description":"SUSE-OpenStack-Cloud-7-Debuginfo-Updates for sle-12-x86_64","installer_updates":false,"name":"SUSE-OpenStack-Cloud-7-Debuginfo-Updates"},{"url":"https://updates.suse.com/SUSE/Products/OpenStack-Cloud/7/x86_64/product/","autorefresh":false,"distro_target":"sle-12-x86_64","id":2111,"enabled":true,"description":"SUSE-OpenStack-Cloud-7-Pool for sle-12-x86_64","name":"SUSE-OpenStack-Cloud-7-Pool","installer_updates":false},{"description":"SUSE-OpenStack-Cloud-7-Debuginfo-Pool for sle-12-x86_64","name":"SUSE-OpenStack-Cloud-7-Debuginfo-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/OpenStack-Cloud/7/x86_64/product_debug/","autorefresh":false,"distro_target":"sle-12-x86_64","id":2112,"enabled":false}],"predecessor_ids":[1347],"arch":"x86_64","eula_url":"https://updates.suse.com/SUSE/Products/OpenStack-Cloud/7/x86_64/product.license/","description":"SUSE OpenStack Cloud 7","shortname":"SOC7","free":false},{"version":"4","recommended":false,"migration_extra":false,"friendly_name":"SUSE Enterprise Storage 4 x86_64","former_identifier":"ses","release_type":null,"name":"SUSE Enterprise Storage","offline_predecessor_ids":[],"friendly_version":"4","release_stage":"released","identifier":"ses","id":1416,"extensions":[],"description":"SUSE Enterprise Storage 4 for SUSE Linux Enterprise Server 12-SP2, powered by Ceph.","shortname":"SES4","free":false,"arch":"x86_64","eula_url":"https://updates.suse.com/SUSE/Products/Storage/4/x86_64/product.license/","product_class":"SES","online_predecessor_ids":[1369],"repositories":[{"description":"SUSE-Enterprise-Storage-4-Updates for sle-12-x86_64","installer_updates":false,"name":"SUSE-Enterprise-Storage-4-Updates","url":"https://updates.suse.com/SUSE/Updates/Storage/4/x86_64/update/","distro_target":"sle-12-x86_64","autorefresh":true,"id":2163,"enabled":true},{"url":"https://updates.suse.com/SUSE/Updates/Storage/4/x86_64/update_debug/","autorefresh":true,"distro_target":"sle-12-x86_64","id":2164,"enabled":false,"description":"SUSE-Enterprise-Storage-4-Debuginfo-Updates for sle-12-x86_64","name":"SUSE-Enterprise-Storage-4-Debuginfo-Updates","installer_updates":false},{"name":"SUSE-Enterprise-Storage-4-Pool","installer_updates":false,"description":"SUSE-Enterprise-Storage-4-Pool for sle-12-x86_64","id":2165,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/Storage/4/x86_64/product/","autorefresh":false,"distro_target":"sle-12-x86_64"},{"id":2166,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/Storage/4/x86_64/product_debug/","autorefresh":false,"distro_target":"sle-12-x86_64","name":"SUSE-Enterprise-Storage-4-Debuginfo-Pool","installer_updates":false,"description":"SUSE-Enterprise-Storage-4-Debuginfo-Pool for sle-12-x86_64"},{"url":"https://updates.suse.com/SUSE/Products/Storage/4/x86_64/product_source/","autorefresh":false,"distro_target":"sle-12-x86_64","id":2167,"enabled":false,"description":"SUSE-Enterprise-Storage-4-Source-Pool for sle-12-x86_64","name":"SUSE-Enterprise-Storage-4-Source-Pool","installer_updates":false}],"predecessor_ids":[1369],"cpe":"cpe:/o:suse:ses:4","product_type":"extension"},{"friendly_version":"12 SP2","extensions":[],"release_stage":"released","identifier":"SUSE-Linux-Enterprise-RT","id":1438,"recommended":false,"version":"12.2","name":"SUSE Linux Enterprise Real Time","offline_predecessor_ids":[],"friendly_name":"SUSE Linux Enterprise Real Time 12 SP2 x86_64","migration_extra":false,"release_type":null,"former_identifier":"SUSE-Linux-Enterprise-RT","predecessor_ids":[1350],"repositories":[{"url":"https://updates.suse.com/SUSE/Updates/SLE-RT/12-SP2/x86_64/update/","autorefresh":true,"distro_target":"sle-12-x86_64","id":2285,"enabled":true,"description":"SLE-RT12-SP2-Updates for sle-12-x86_64","name":"SLE-RT12-SP2-Updates","installer_updates":false},{"name":"SLE-RT12-SP2-Debuginfo-Updates","installer_updates":false,"description":"SLE-RT12-SP2-Debuginfo-Updates for sle-12-x86_64","enabled":false,"id":2286,"autorefresh":true,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-RT/12-SP2/x86_64/update_debug/"},{"enabled":true,"id":2287,"autorefresh":false,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-RT/12-SP2/x86_64/product/","name":"SLE-RT12-SP2-Pool","installer_updates":false,"description":"SLE-RT12-SP2-Pool for sle-12-x86_64"},{"installer_updates":false,"name":"SLE-RT12-SP2-Debuginfo-Pool","description":"SLE-RT12-SP2-Debuginfo-Pool for sle-12-x86_64","enabled":false,"id":2288,"distro_target":"sle-12-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-RT/12-SP2/x86_64/product_debug/"}],"online_predecessor_ids":[1350],"product_class":"SUSE_RT","cpe":"cpe:/o:suse:suse-linux-enterprise-rt:12:sp2","product_type":"extension","shortname":"SLERT12 SP2","description":"SUSE Linux Enterprise Real Time 12 SP2 is a fully supported, real time operating system, specifically engineered to increase the predictability and reliability of your time sensitive mission critical applications, and lower costs.","free":false,"eula_url":"https://updates.suse.com/SUSE/Products/SLE-RT/12-SP2/x86_64/product.license/","arch":"x86_64"},{"friendly_version":"12 SP2","extensions":[],"release_stage":"released","identifier":"sle-pos","id":1439,"recommended":false,"version":"12.2","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Point of Service Image Server","release_type":null,"former_identifier":"sle-pos","friendly_name":"SUSE Linux Enterprise Point of Service Image Server 12 SP2 x86_64","migration_extra":false,"predecessor_ids":[],"online_predecessor_ids":[],"product_class":"10040","repositories":[{"name":"SLE-POS12-SP2-Updates","installer_updates":false,"description":"SLE-POS12-SP2-Updates for sle-12-x86_64","id":2289,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-POS/12-SP2/x86_64/update/","autorefresh":true,"distro_target":"sle-12-x86_64"},{"name":"SLE-POS12-SP2-Debuginfo-Updates","installer_updates":false,"description":"SLE-POS12-SP2-Debuginfo-Updates for sle-12-x86_64","id":2290,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-POS/12-SP2/x86_64/update_debug/","autorefresh":true,"distro_target":"sle-12-x86_64"},{"enabled":true,"id":2291,"autorefresh":false,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-POS/12-SP2/x86_64/product/","name":"SLE-POS12-SP2-Pool","installer_updates":false,"description":"SLE-POS12-SP2-Pool for sle-12-x86_64"},{"enabled":false,"id":2292,"distro_target":"sle-12-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-POS/12-SP2/x86_64/product_debug/","installer_updates":false,"name":"SLE-POS12-SP2-Debuginfo-Pool","description":"SLE-POS12-SP2-Debuginfo-Pool for sle-12-x86_64"},{"installer_updates":false,"name":"SLE-POS12-SP2-Source-Pool","description":"SLE-POS12-SP2-Source-Pool for sle-12-x86_64","enabled":false,"id":2293,"distro_target":"sle-12-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-POS/12-SP2/x86_64/product_source/"},{"id":3130,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-POS/12-SP2-CLIENT/x86_64/update/","distro_target":"sle-12-x86_64","autorefresh":true,"installer_updates":false,"name":"SLE-POS12-SP2-CLIENT-Updates","description":"SLE-POS12-SP2-CLIENT-Updates for sle-12-x86_64"},{"id":3131,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-POS/12-SP2-CLIENT/x86_64/update_debug/","autorefresh":true,"distro_target":"sle-12-x86_64","name":"SLE-POS12-SP2-CLIENT-Debuginfo-Updates","installer_updates":false,"description":"SLE-POS12-SP2-CLIENT-Debuginfo-Updates for sle-12-x86_64"}],"product_type":"extension","cpe":"cpe:/o:suse:sle-pos:12:sp2","free":false,"shortname":"SLEPOS12","description":"SUSE Linux Enterprise Point of Service Image Server","eula_url":"https://updates.suse.com/SUSE/Products/SLE-POS/12-SP2/x86_64/product.license/","arch":"x86_64"},{"eula_url":"https://updates.suse.com/SUSE/Products/SLE-Module-HPC/12/x86_64/product.license/","arch":"x86_64","description":"The SUSE Linux Enterprise Server High Performance Computing (HPC) module delivers specific tools commonly used for high performance, numerically intensive workloads. SUSE packages these tools in the SLES HPC Module to provide greater flexibility to deliver new versions or new tools more rapidly than the standard SUSE Linux Enterprise lifecycle would permit. Packages in this module are general supported till a newer version of the package is released or the package is dropped from the module.","shortname":"HPC-Module","free":true,"cpe":"cpe:/o:suse:sle-module-hpc:12","product_type":"module","predecessor_ids":[],"product_class":"MODULE","online_predecessor_ids":[],"repositories":[{"installer_updates":false,"name":"SLE-Module-HPC12-Updates","description":"SLE-Module-HPC12-Updates for sle-12-x86_64","id":2294,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-HPC/12/x86_64/update/","distro_target":"sle-12-x86_64","autorefresh":true},{"name":"SLE-Module-HPC12-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-HPC12-Debuginfo-Updates for sle-12-x86_64","id":2295,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-HPC/12/x86_64/update_debug/","autorefresh":true,"distro_target":"sle-12-x86_64"},{"installer_updates":false,"name":"SLE-Module-HPC12-Pool","description":"SLE-Module-HPC12-Pool for sle-12-x86_64","id":2296,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-HPC/12/x86_64/product/","distro_target":"sle-12-x86_64","autorefresh":false},{"description":"SLE-Module-HPC12-Debuginfo-Pool for sle-12-x86_64","installer_updates":false,"name":"SLE-Module-HPC12-Debuginfo-Pool","distro_target":"sle-12-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-HPC/12/x86_64/product_debug/","enabled":false,"id":2297},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-HPC/12/x86_64/product_source/","distro_target":"sle-12-x86_64","autorefresh":false,"id":2298,"enabled":false,"description":"SLE-Module-HPC12-Source-Pool for sle-12-x86_64","installer_updates":false,"name":"SLE-Module-HPC12-Source-Pool"}],"name":"HPC Module","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"HPC Module 12 x86_64","former_identifier":"sle-module-hpc","release_type":null,"recommended":false,"version":"12","extensions":[],"release_stage":"released","identifier":"sle-module-hpc","id":1440,"friendly_version":"12"},{"online_predecessor_ids":[1473,1476],"repositories":[{"description":"SUSE-PackageHub-12-SP2-Standard-Pool for sle-12-x86_64","installer_updates":false,"name":"SUSE-PackageHub-12-SP2-Standard-Pool","distro_target":"sle-12-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Backports/SLE-12-SP2_x86_64/standard/","enabled":true,"id":2345},{"description":"SUSE-PackageHub-12-SP2-Debuginfo for sle-12-x86_64","name":"SUSE-PackageHub-12-SP2-Debuginfo","installer_updates":false,"url":"https://updates.suse.com/SUSE/Backports/SLE-12-SP2_x86_64/standard_debug/","autorefresh":true,"distro_target":"sle-12-x86_64","id":2346,"enabled":false},{"enabled":true,"id":2347,"distro_target":"sle-12-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Backports/SLE-12-SP2_x86_64/product/","installer_updates":false,"name":"SUSE-PackageHub-12-SP2-Pool","description":"SUSE-PackageHub-12-SP2-Pool for sle-12-x86_64"}],"product_class":"7261","predecessor_ids":[1473,1476],"product_type":"extension","cpe":"cpe:/o:suse:packagehub:12:sp2","free":true,"shortname":"SUSE-PackageHub-12-SP2","description":"SUSE Package Hub is a free of charge extension providing access to community maintained packages built to run on SUSE Linux Enterprise Server. Built from the same sources used in the openSUSE distributions, these quality packages provide additional software to what is found in the SUSE Linux Enterprise Server product. Packages from the Package Hub are delivered without L3 support from SUSE. General updates and fixes to the packages in SUSE Package Hub are provided by the openSUSE community based on their discretion though SUSE will monitor and ensure that any known critical security issues will be addressed. Packages in the Package Hub are approved by SUSE for use with SUSE Linux Enterprise Server 12 and to not interfere with the supportability of SUSE Linux Enterprise Server it's modules and extensions. For more information about SUSE Package Hub please visit https://packagehub.suse.com.","arch":"x86_64","eula_url":"","friendly_version":"12 SP2","identifier":"PackageHub","release_stage":"released","id":1479,"extensions":[],"version":"12.2","recommended":false,"release_type":null,"former_identifier":"PackageHub","migration_extra":false,"friendly_name":"SUSE Package Hub 12 SP2 x86_64","offline_predecessor_ids":[],"name":"SUSE Package Hub"},{"eula_url":"https://updates.suse.com/SUSE/Products/SUSE-Manager-Server/3.1/x86_64/product.license/","arch":"x86_64","description":"SUSE Manager lets you efficiently manage physical, virtual, and cloud-based Linux systems. It provides automated and cost-effective configuration and software management, asset management, and system provisioning.","shortname":"SUSE Manager Server","free":false,"cpe":"cpe:/o:suse:suse-manager-server:3.1","product_type":"extension","predecessor_ids":[1349],"repositories":[{"description":"SUSE-Manager-Server-3.1-Updates for sle-12-x86_64","installer_updates":false,"name":"SUSE-Manager-Server-3.1-Updates","distro_target":"sle-12-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SUSE-Manager-Server/3.1/x86_64/update/","enabled":true,"id":2400},{"distro_target":"sle-12-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SUSE-Manager-Server/3.1/x86_64/update_debug/","enabled":false,"id":2401,"description":"SUSE-Manager-Server-3.1-Debuginfo-Updates for sle-12-x86_64","installer_updates":false,"name":"SUSE-Manager-Server-3.1-Debuginfo-Updates"},{"installer_updates":false,"name":"SUSE-Manager-Server-3.1-Pool","description":"SUSE-Manager-Server-3.1-Pool for sle-12-x86_64","enabled":true,"id":2402,"distro_target":"sle-12-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SUSE-Manager-Server/3.1/x86_64/product/"},{"url":"https://updates.suse.com/SUSE/Products/SUSE-Manager-Server/3.1/x86_64/product_debug/","distro_target":"sle-12-x86_64","autorefresh":false,"id":2403,"enabled":false,"description":"SUSE-Manager-Server-3.1-Debuginfo-Pool for sle-12-x86_64","installer_updates":false,"name":"SUSE-Manager-Server-3.1-Debuginfo-Pool"},{"url":"https://updates.suse.com/SUSE/Products/SUSE-Manager-Server/3.1/x86_64/product_source/","autorefresh":false,"distro_target":"sle-12-x86_64","id":2404,"enabled":false,"description":"SUSE-Manager-Server-3.1-Source-Pool for sle-12-x86_64","name":"SUSE-Manager-Server-3.1-Source-Pool","installer_updates":false}],"online_predecessor_ids":[1349],"product_class":"SMS-X86","name":"SUSE Manager Server","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"SUSE Manager Server 3.1 x86_64","former_identifier":"SUSE-Manager-Server","release_type":null,"recommended":false,"version":"3.1","extensions":[],"release_stage":"released","identifier":"SUSE-Manager-Server","id":1518,"friendly_version":"3.1"},{"cpe":"cpe:/o:suse:suse-manager-proxy:3.1","product_type":"extension","online_predecessor_ids":[1352],"product_class":"SMP","repositories":[{"name":"SUSE-Manager-Proxy-3.1-Updates","installer_updates":false,"description":"SUSE-Manager-Proxy-3.1-Updates for sle-12-x86_64","enabled":true,"id":2410,"autorefresh":true,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Updates/SUSE-Manager-Proxy/3.1/x86_64/update/"},{"description":"SUSE-Manager-Proxy-3.1-Debuginfo-Updates for sle-12-x86_64","installer_updates":false,"name":"SUSE-Manager-Proxy-3.1-Debuginfo-Updates","url":"https://updates.suse.com/SUSE/Updates/SUSE-Manager-Proxy/3.1/x86_64/update_debug/","distro_target":"sle-12-x86_64","autorefresh":true,"id":2411,"enabled":false},{"installer_updates":false,"name":"SUSE-Manager-Proxy-3.1-Pool","description":"SUSE-Manager-Proxy-3.1-Pool for sle-12-x86_64","id":2412,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SUSE-Manager-Proxy/3.1/x86_64/product/","distro_target":"sle-12-x86_64","autorefresh":false},{"url":"https://updates.suse.com/SUSE/Products/SUSE-Manager-Proxy/3.1/x86_64/product_debug/","distro_target":"sle-12-x86_64","autorefresh":false,"id":2413,"enabled":false,"description":"SUSE-Manager-Proxy-3.1-Debuginfo-Pool for sle-12-x86_64","installer_updates":false,"name":"SUSE-Manager-Proxy-3.1-Debuginfo-Pool"},{"url":"https://updates.suse.com/SUSE/Products/SUSE-Manager-Proxy/3.1/x86_64/product_source/","autorefresh":false,"distro_target":"sle-12-x86_64","id":2414,"enabled":false,"description":"SUSE-Manager-Proxy-3.1-Source-Pool for sle-12-x86_64","name":"SUSE-Manager-Proxy-3.1-Source-Pool","installer_updates":false}],"predecessor_ids":[1352],"arch":"x86_64","eula_url":"https://updates.suse.com/SUSE/Products/SUSE-Manager-Proxy/3.1/x86_64/product.license/","shortname":"SUSE Manager Proxy","description":"SUSE Manager Proxies extend large and/or geographically dispersed SUSE Manager environments to reduce load on the SUSE Manager Server, lower bandwidth needs, and provide faster local updates.","free":false,"identifier":"SUSE-Manager-Proxy","release_stage":"released","id":1520,"extensions":[],"friendly_version":"3.1","migration_extra":false,"friendly_name":"SUSE Manager Proxy 3.1 x86_64","release_type":null,"former_identifier":"SUSE-Manager-Proxy","name":"SUSE Manager Proxy","offline_predecessor_ids":[],"version":"3.1","recommended":false},{"product_class":"BCL-X86","online_predecessor_ids":[],"repositories":[{"name":"SLES12-SP2-BCL-Updates","installer_updates":false,"description":"SLES12-SP2-BCL-Updates for sle-12-x86_64","id":2426,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-SP2-BCL/x86_64/update/","autorefresh":true,"distro_target":"sle-12-x86_64"},{"url":"https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-SP2-BCL/x86_64/update_debug/","distro_target":"sle-12-x86_64","autorefresh":true,"id":2427,"enabled":false,"description":"SLES12-SP2-BCL-Debuginfo-Updates for sle-12-x86_64","installer_updates":false,"name":"SLES12-SP2-BCL-Debuginfo-Updates"},{"id":2442,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-SERVER/12-SP2-BCL/x86_64/product/","distro_target":"sle-12-x86_64","autorefresh":false,"installer_updates":false,"name":"SLES12-SP2-BCL-Pool","description":"SLES12-SP2-BCL-Pool for sle-12-x86_64"},{"enabled":false,"id":2443,"distro_target":"sle-12-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-SERVER/12-SP2-BCL/x86_64/product_debug/","installer_updates":false,"name":"SLES12-SP2-BCL-Debuginfo-Pool","description":"SLES12-SP2-BCL-Debuginfo-Pool for sle-12-x86_64"},{"name":"SLES12-SP2-BCL-Source-Pool","installer_updates":false,"description":"SLES12-SP2-BCL-Source-Pool for sle-12-x86_64","enabled":false,"id":2444,"autorefresh":false,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-SERVER/12-SP2-BCL/x86_64/product_source/"}],"predecessor_ids":[],"product_type":"extension","cpe":"cpe:/o:suse:sles-bcl:12:sp2","free":false,"description":"SUSE Linux Enterprise offers a comprehensive suite of products built on a single code base. The platform addresses business needs from the smallest thin-client devices to the world's most powerful high-performance computing and mainframe servers. SUSE Linux Enterprise offers common management tools and technology certifications across the platform, and each product is enterprise-class.","shortname":"SLES12-SP2 BCL","arch":"x86_64","eula_url":"","friendly_version":"12 SP2","release_stage":"released","id":1523,"identifier":"SLES-BCL","extensions":[],"version":"12.2","recommended":false,"release_type":null,"former_identifier":"SLES-BCL","friendly_name":"SUSE Linux Enterprise Server BCL 12 SP2 x86_64","migration_extra":false,"offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Server BCL"},{"predecessor_ids":[],"online_predecessor_ids":[],"repositories":[{"url":"https://updates.suse.com/SUSE/Updates/SUSE-Manager-Retail/3.1/x86_64/update/","distro_target":"sle-12-x86_64","autorefresh":true,"id":2519,"enabled":true,"description":"SUSE-Manager-Retail-3.1-Updates for sle-12-x86_64","installer_updates":false,"name":"SUSE-Manager-Retail-3.1-Updates"},{"url":"https://updates.suse.com/SUSE/Updates/SUSE-Manager-Retail/3.1/x86_64/update_debug/","autorefresh":true,"distro_target":"sle-12-x86_64","id":2520,"enabled":false,"description":"SUSE-Manager-Retail-3.1-Debuginfo-Updates for sle-12-x86_64","name":"SUSE-Manager-Retail-3.1-Debuginfo-Updates","installer_updates":false},{"description":"SUSE-Manager-Retail-3.1-Pool for sle-12-x86_64","name":"SUSE-Manager-Retail-3.1-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SUSE-Manager-Retail/3.1/x86_64/product/","autorefresh":false,"distro_target":"sle-12-x86_64","id":2521,"enabled":true},{"name":"SUSE-Manager-Retail-3.1-Debuginfo-Pool","installer_updates":false,"description":"SUSE-Manager-Retail-3.1-Debuginfo-Pool for sle-12-x86_64","enabled":false,"id":2522,"autorefresh":false,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Products/SUSE-Manager-Retail/3.1/x86_64/product_debug/"},{"enabled":false,"id":2523,"distro_target":"sle-12-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SUSE-Manager-Retail/3.1/x86_64/product_source/","installer_updates":false,"name":"SUSE-Manager-Retail-3.1-Source-Pool","description":"SUSE-Manager-Retail-3.1-Source-Pool for sle-12-x86_64"}],"product_class":"SLE-POS-AS-SMRBS-X86","cpe":"cpe:/o:suse:suse-manager-retail:3.1","product_type":"extension","description":"SUSE Manager for Retail","shortname":"SUSE Manager for Retail","free":false,"eula_url":"https://updates.suse.com/SUSE/Products/SUSE-Manager-Retail/3.1/x86_64/product.license/","arch":"x86_64","friendly_version":"3.1","extensions":[],"identifier":"suse-manager-retail","release_stage":"released","id":1574,"recommended":false,"version":"3.1","name":"SUSE Manager for Retail","offline_predecessor_ids":[],"friendly_name":"SUSE Manager for Retail 3.1 x86_64","migration_extra":false,"former_identifier":"suse-manager-retail","release_type":null},{"eula_url":"","arch":"x86_64","free":true,"description":"

The SUSE Cloud Application Platform Tools Module is a collection of tools that enables you to interact with the SUSE Cloud Application Platform product itself, providing the commandline client for instance.

Access to the SUSE Cloud Application Platform Tools Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself; please check the Release Notes for further details.

","shortname":"SUSE-CAP-Tools-Module","product_type":"module","cpe":"cpe:/o:suse:sle-module-cap-tools:12","predecessor_ids":[],"repositories":[{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-CAP-Tools/12/x86_64/update/","autorefresh":true,"distro_target":"sle-12-x86_64","id":2912,"enabled":true,"description":"SLE-Module-CAP-Tools-12-Updates for sle-12-x86_64","name":"SLE-Module-CAP-Tools-12-Updates","installer_updates":false},{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-CAP-Tools/12/x86_64/update_debug/","distro_target":"sle-12-x86_64","autorefresh":true,"id":2913,"enabled":false,"description":"SLE-Module-CAP-Tools-12-Debuginfo-Updates for sle-12-x86_64","installer_updates":false,"name":"SLE-Module-CAP-Tools-12-Debuginfo-Updates"},{"name":"SLE-Module-CAP-Tools-12-Pool","installer_updates":false,"description":"SLE-Module-CAP-Tools-12-Pool for sle-12-x86_64","enabled":true,"id":2914,"autorefresh":false,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-CAP-Tools/12/x86_64/product/"},{"description":"SLE-Module-CAP-Tools-12-Debuginfo-Pool for sle-12-x86_64","installer_updates":false,"name":"SLE-Module-CAP-Tools-12-Debuginfo-Pool","distro_target":"sle-12-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-CAP-Tools/12/x86_64/product_debug/","enabled":false,"id":2915},{"enabled":false,"id":2916,"distro_target":"sle-12-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-CAP-Tools/12/x86_64/product_source/","installer_updates":false,"name":"SLE-Module-CAP-Tools-12-Source-Pool","description":"SLE-Module-CAP-Tools-12-Source-Pool for sle-12-x86_64"}],"online_predecessor_ids":[],"product_class":"MODULE","offline_predecessor_ids":[],"name":"SUSE Cloud Application Platform Tools Module","release_type":null,"former_identifier":"sle-module-cap-tools","migration_extra":false,"friendly_name":"SUSE Cloud Application Platform Tools Module 12 x86_64","recommended":false,"version":"12","extensions":[],"release_stage":"released","identifier":"sle-module-cap-tools","id":1678,"friendly_version":"12"},{"friendly_version":"12 SP2","extensions":[],"id":1739,"release_stage":"released","identifier":"SLES-LTSS","recommended":false,"version":"12.2","name":"SUSE Linux Enterprise Server LTSS","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Server LTSS 12 SP2 x86_64","release_type":null,"former_identifier":"SLES-LTSS","predecessor_ids":[],"product_class":"SLES12-SP2-LTSS-X86","online_predecessor_ids":[],"repositories":[{"name":"SLES12-SP2-LTSS-Updates","installer_updates":false,"description":"SLES12-SP2-LTSS-Updates for sle-12-x86_64","id":3048,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-SP2-LTSS/x86_64/update/","autorefresh":true,"distro_target":"sle-12-x86_64"},{"id":3049,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-SP2-LTSS/x86_64/update_debug/","autorefresh":true,"distro_target":"sle-12-x86_64","name":"SLES12-SP2-LTSS-Debuginfo-Updates","installer_updates":false,"description":"SLES12-SP2-LTSS-Debuginfo-Updates for sle-12-x86_64"}],"cpe":"cpe:/o:suse:sles-ltss:12:sp2","product_type":"extension","shortname":"SLES12-SP2 LTSS","description":"SUSE Linux Enterprise offers a comprehensive suite of products built on a single code base. The platform addresses business needs from the smallest thin-client devices to the world's most powerful high-performance computing and mainframe servers. SUSE Linux Enterprise offers common management tools and technology certifications across the platform, and each product is enterprise-class.","free":false,"eula_url":"","arch":"x86_64"}],"release_stage":"released","identifier":"SLES","id":1357,"friendly_version":"12 SP2"},{"offline_predecessor_ids":[887,901,902,924,1313],"name":"SUSE Linux Enterprise Desktop","former_identifier":"SLED","release_type":null,"friendly_name":"SUSE Linux Enterprise Desktop 12 SP2 x86_64","migration_extra":false,"recommended":false,"version":"12.2","extensions":[{"recommended":false,"version":"12.2","name":"SUSE Linux Enterprise Software Development Kit","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Software Development Kit 12 SP2 x86_64","release_type":null,"former_identifier":"sle-sdk","friendly_version":"12 SP2","extensions":[],"id":1366,"release_stage":"released","identifier":"sle-sdk","description":"

SUSE Linux Enterprise Software Development Kit 12 is the Software Development Kit for the family of SUSE Linux Enterprise products. It is a free of charge extension for partners and customers working with SUSE Linux Enterprise Server and Desktop and derived products.

Packages on the SDK are delivered without L3 support; maintenance updates will be done for critical security and critical non-security issues, and where needed to remain in sync with packages delivered in the SUSE Linux Enterprise Server and Desktop products.

Packages to rebuild SUSE Linux Enterprise Server are not part of the SUSE Linux Enterprise Software Development Kit.

","shortname":"SDK12-SP2","free":true,"eula_url":"https://updates.suse.com/SUSE/Products/SLE-SDK/12-SP2/x86_64/product.license/","arch":"x86_64","predecessor_ids":[1223,1323],"online_predecessor_ids":[1223,1323],"product_class":"SLE-SDK","repositories":[{"description":"SLE-SDK12-SP2-Updates for sle-12-x86_64","name":"SLE-SDK12-SP2-Updates","installer_updates":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-SDK/12-SP2/x86_64/update/","autorefresh":true,"distro_target":"sle-12-x86_64","id":2059,"enabled":true},{"installer_updates":false,"name":"SLE-SDK12-SP2-Debuginfo-Updates","description":"SLE-SDK12-SP2-Debuginfo-Updates for sle-12-x86_64","id":2060,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-SDK/12-SP2/x86_64/update_debug/","distro_target":"sle-12-x86_64","autorefresh":true},{"description":"SLE-SDK12-SP2-Pool for sle-12-x86_64","installer_updates":false,"name":"SLE-SDK12-SP2-Pool","distro_target":"sle-12-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-SDK/12-SP2/x86_64/product/","enabled":true,"id":2061},{"distro_target":"sle-12-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-SDK/12-SP2/x86_64/product_debug/","enabled":false,"id":2062,"description":"SLE-SDK12-SP2-Debuginfo-Pool for sle-12-x86_64","installer_updates":false,"name":"SLE-SDK12-SP2-Debuginfo-Pool"},{"name":"SLE-SDK12-SP2-Source-Pool","installer_updates":false,"description":"SLE-SDK12-SP2-Source-Pool for sle-12-x86_64","id":2063,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-SDK/12-SP2/x86_64/product_source/","autorefresh":false,"distro_target":"sle-12-x86_64"}],"cpe":"cpe:/o:suse:sle-sdk:12:sp2","product_type":"extension"},{"friendly_version":"12 SP2","extensions":[],"release_stage":"released","id":1479,"identifier":"PackageHub","recommended":false,"version":"12.2","offline_predecessor_ids":[],"name":"SUSE Package Hub","former_identifier":"PackageHub","release_type":null,"friendly_name":"SUSE Package Hub 12 SP2 x86_64","migration_extra":false,"predecessor_ids":[1473,1476],"online_predecessor_ids":[1473,1476],"product_class":"7261","repositories":[{"installer_updates":false,"name":"SUSE-PackageHub-12-SP2-Standard-Pool","description":"SUSE-PackageHub-12-SP2-Standard-Pool for sle-12-x86_64","id":2345,"enabled":true,"url":"https://updates.suse.com/SUSE/Backports/SLE-12-SP2_x86_64/standard/","distro_target":"sle-12-x86_64","autorefresh":false},{"url":"https://updates.suse.com/SUSE/Backports/SLE-12-SP2_x86_64/standard_debug/","distro_target":"sle-12-x86_64","autorefresh":true,"id":2346,"enabled":false,"description":"SUSE-PackageHub-12-SP2-Debuginfo for sle-12-x86_64","installer_updates":false,"name":"SUSE-PackageHub-12-SP2-Debuginfo"},{"url":"https://updates.suse.com/SUSE/Backports/SLE-12-SP2_x86_64/product/","distro_target":"sle-12-x86_64","autorefresh":false,"id":2347,"enabled":true,"description":"SUSE-PackageHub-12-SP2-Pool for sle-12-x86_64","installer_updates":false,"name":"SUSE-PackageHub-12-SP2-Pool"}],"product_type":"extension","cpe":"cpe:/o:suse:packagehub:12:sp2","free":true,"shortname":"SUSE-PackageHub-12-SP2","description":"SUSE Package Hub is a free of charge extension providing access to community maintained packages built to run on SUSE Linux Enterprise Server. Built from the same sources used in the openSUSE distributions, these quality packages provide additional software to what is found in the SUSE Linux Enterprise Server product. Packages from the Package Hub are delivered without L3 support from SUSE. General updates and fixes to the packages in SUSE Package Hub are provided by the openSUSE community based on their discretion though SUSE will monitor and ensure that any known critical security issues will be addressed. Packages in the Package Hub are approved by SUSE for use with SUSE Linux Enterprise Server 12 and to not interfere with the supportability of SUSE Linux Enterprise Server it's modules and extensions. For more information about SUSE Package Hub please visit https://packagehub.suse.com.","eula_url":"","arch":"x86_64"},{"cpe":"cpe:/o:suse:sle-module-cap-tools:12","product_type":"module","predecessor_ids":[],"product_class":"MODULE","online_predecessor_ids":[],"repositories":[{"name":"SLE-Module-CAP-Tools-12-Updates","installer_updates":false,"description":"SLE-Module-CAP-Tools-12-Updates for sle-12-x86_64","id":2912,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-CAP-Tools/12/x86_64/update/","autorefresh":true,"distro_target":"sle-12-x86_64"},{"description":"SLE-Module-CAP-Tools-12-Debuginfo-Updates for sle-12-x86_64","name":"SLE-Module-CAP-Tools-12-Debuginfo-Updates","installer_updates":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-CAP-Tools/12/x86_64/update_debug/","autorefresh":true,"distro_target":"sle-12-x86_64","id":2913,"enabled":false},{"id":2914,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-CAP-Tools/12/x86_64/product/","autorefresh":false,"distro_target":"sle-12-x86_64","name":"SLE-Module-CAP-Tools-12-Pool","installer_updates":false,"description":"SLE-Module-CAP-Tools-12-Pool for sle-12-x86_64"},{"name":"SLE-Module-CAP-Tools-12-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-CAP-Tools-12-Debuginfo-Pool for sle-12-x86_64","id":2915,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-CAP-Tools/12/x86_64/product_debug/","autorefresh":false,"distro_target":"sle-12-x86_64"},{"name":"SLE-Module-CAP-Tools-12-Source-Pool","installer_updates":false,"description":"SLE-Module-CAP-Tools-12-Source-Pool for sle-12-x86_64","id":2916,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-CAP-Tools/12/x86_64/product_source/","autorefresh":false,"distro_target":"sle-12-x86_64"}],"eula_url":"","arch":"x86_64","description":"

The SUSE Cloud Application Platform Tools Module is a collection of tools that enables you to interact with the SUSE Cloud Application Platform product itself, providing the commandline client for instance.

Access to the SUSE Cloud Application Platform Tools Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself; please check the Release Notes for further details.

","shortname":"SUSE-CAP-Tools-Module","free":true,"extensions":[],"release_stage":"released","id":1678,"identifier":"sle-module-cap-tools","friendly_version":"12","name":"SUSE Cloud Application Platform Tools Module","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"SUSE Cloud Application Platform Tools Module 12 x86_64","release_type":null,"former_identifier":"sle-module-cap-tools","recommended":false,"version":"12"}],"identifier":"SLED","release_stage":"released","id":1358,"friendly_version":"12 SP2","eula_url":"https://updates.suse.com/SUSE/Products/SLE-DESKTOP/12-SP2/x86_64/product.license/","arch":"x86_64","free":false,"shortname":"SLED12-SP2","description":"SUSE Linux Enterprise offers a comprehensive suite of products built on a single code base. The platform addresses business needs from the smallest thin-client devices to the world's most powerful high-performance computing and mainframe servers. SUSE Linux Enterprise offers common management tools and technology certifications across the platform, and each product is enterprise-class. SUSE Linux Enterprise provides more than a cute desktop product or a basic server offering. It is the only Linux platform for enterprise computing, and it is now replacing UNIX* and Windows* as well.","product_type":"base","cpe":"cpe:/o:suse:sled:12:sp2","predecessor_ids":[1118,1333],"product_class":"7260","online_predecessor_ids":[1118,1333],"repositories":[{"description":"SLED12-SP2-Updates for sle-12-x86_64","installer_updates":false,"name":"SLED12-SP2-Updates","url":"https://updates.suse.com/SUSE/Updates/SLE-DESKTOP/12-SP2/x86_64/update/","distro_target":"sle-12-x86_64","autorefresh":true,"id":2018,"enabled":true},{"id":2019,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-DESKTOP/12-SP2/x86_64/update_debug/","distro_target":"sle-12-x86_64","autorefresh":true,"installer_updates":false,"name":"SLED12-SP2-Debuginfo-Updates","description":"SLED12-SP2-Debuginfo-Updates for sle-12-x86_64"},{"id":2020,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-DESKTOP/12-SP2/x86_64/product/","distro_target":"sle-12-x86_64","autorefresh":false,"installer_updates":false,"name":"SLED12-SP2-Pool","description":"SLED12-SP2-Pool for sle-12-x86_64"},{"enabled":false,"id":2022,"autorefresh":false,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-DESKTOP/12-SP2/x86_64/product_debug/","name":"SLED12-SP2-Debuginfo-Pool","installer_updates":false,"description":"SLED12-SP2-Debuginfo-Pool for sle-12-x86_64"},{"name":"SLED12-SP2-Source-Pool","installer_updates":false,"description":"SLED12-SP2-Source-Pool for sle-12-x86_64","id":2023,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-DESKTOP/12-SP2/x86_64/product_source/","autorefresh":false,"distro_target":"sle-12-x86_64"},{"description":"SLED12-SP2-Installer-Updates for sle-12-x86_64","installer_updates":true,"name":"SLED12-SP2-Installer-Updates","url":"https://updates.suse.com/SUSE/Updates/SLE-DESKTOP-INSTALLER/12-SP2/x86_64/update/","distro_target":"sle-12-x86_64","autorefresh":true,"id":2148,"enabled":false},{"url":"http://download.nvidia.com/suse/sle12sp2/","distro_target":null,"autorefresh":true,"id":2149,"enabled":true,"description":"SLE-12-SP2-GA-Desktop-nVidia-Driver","installer_updates":false,"name":"SLE-12-SP2-GA-Desktop-nVidia-Driver"}]},{"release_stage":"released","id":1359,"identifier":"sle-we","extensions":[],"friendly_version":"12 SP2","friendly_name":"SUSE Linux Enterprise Workstation Extension 12 SP2 x86_64","migration_extra":false,"former_identifier":"sle-we","release_type":null,"name":"SUSE Linux Enterprise Workstation Extension","offline_predecessor_ids":[],"version":"12.2","recommended":false,"cpe":"cpe:/o:suse:sle-we:12:sp2","product_type":"extension","product_class":"SLE-WE","online_predecessor_ids":[1222,1338],"repositories":[{"description":"SLE-WE12-SP2-Updates for sle-12-x86_64","installer_updates":false,"name":"SLE-WE12-SP2-Updates","url":"https://updates.suse.com/SUSE/Updates/SLE-WE/12-SP2/x86_64/update/","distro_target":"sle-12-x86_64","autorefresh":true,"id":2024,"enabled":true},{"description":"SLE-WE12-SP2-Debuginfo-Updates for sle-12-x86_64","installer_updates":false,"name":"SLE-WE12-SP2-Debuginfo-Updates","url":"https://updates.suse.com/SUSE/Updates/SLE-WE/12-SP2/x86_64/update_debug/","distro_target":"sle-12-x86_64","autorefresh":true,"id":2025,"enabled":false},{"name":"SLE-WE12-SP2-Pool","installer_updates":false,"description":"SLE-WE12-SP2-Pool for sle-12-x86_64","id":2026,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-WE/12-SP2/x86_64/product/","autorefresh":false,"distro_target":"sle-12-x86_64"},{"autorefresh":false,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-WE/12-SP2/x86_64/product_debug/","enabled":false,"id":2027,"description":"SLE-WE12-SP2-Debuginfo-Pool for sle-12-x86_64","name":"SLE-WE12-SP2-Debuginfo-Pool","installer_updates":false},{"url":"https://updates.suse.com/SUSE/Products/SLE-WE/12-SP2/x86_64/product_source/","autorefresh":false,"distro_target":"sle-12-x86_64","id":2028,"enabled":false,"description":"SLE-WE12-SP2-Source-Pool for sle-12-x86_64","name":"SLE-WE12-SP2-Source-Pool","installer_updates":false},{"description":"SLE-12-SP2-GA-Desktop-nVidia-Driver","name":"SLE-12-SP2-GA-Desktop-nVidia-Driver","installer_updates":false,"autorefresh":true,"distro_target":null,"url":"http://download.nvidia.com/suse/sle12sp2/","enabled":true,"id":2149}],"predecessor_ids":[1222,1338],"arch":"x86_64","eula_url":"https://updates.suse.com/SUSE/Products/SLE-WE/12-SP2/x86_64/product.license/","shortname":"SLEWE12-SP2","description":"SUSE Linux Enterprise Workstation Extension extends the functionality of SUSE Linux Enterprise Server with packages of SUSE Linux Enterprise Desktop, like additional desktop applications (office suite, email client, graphical editor ...) and libraries. It allows to combine both products to create a full featured Workstation.","free":false},{"eula_url":"https://updates.suse.com/SUSE/Products/SLE-HA/12-SP2/s390x/product.license/","arch":"s390x","free":false,"description":"SUSE Linux Enterprise High Availability Extension.","shortname":"SLEHA12-SP2","product_type":"extension","cpe":"cpe:/o:suse:sle-ha:12:sp2","predecessor_ids":[1244,1336],"repositories":[{"distro_target":"sle-12-s390x","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-HA/12-SP2/s390x/update/","enabled":true,"id":2029,"description":"SLE-HA12-SP2-Updates for sle-12-s390x","installer_updates":false,"name":"SLE-HA12-SP2-Updates"},{"distro_target":"sle-12-s390x","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-HA/12-SP2/s390x/update_debug/","enabled":false,"id":2030,"description":"SLE-HA12-SP2-Debuginfo-Updates for sle-12-s390x","installer_updates":false,"name":"SLE-HA12-SP2-Debuginfo-Updates"},{"description":"SLE-HA12-SP2-Pool for sle-12-s390x","name":"SLE-HA12-SP2-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-12-s390x","url":"https://updates.suse.com/SUSE/Products/SLE-HA/12-SP2/s390x/product/","enabled":true,"id":2031},{"enabled":false,"id":2032,"autorefresh":false,"distro_target":"sle-12-s390x","url":"https://updates.suse.com/SUSE/Products/SLE-HA/12-SP2/s390x/product_debug/","name":"SLE-HA12-SP2-Debuginfo-Pool","installer_updates":false,"description":"SLE-HA12-SP2-Debuginfo-Pool for sle-12-s390x"},{"id":2033,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-HA/12-SP2/s390x/product_source/","autorefresh":false,"distro_target":"sle-12-s390x","name":"SLE-HA12-SP2-Source-Pool","installer_updates":false,"description":"SLE-HA12-SP2-Source-Pool for sle-12-s390x"}],"online_predecessor_ids":[1244,1336],"product_class":"SLE-HAE-Z","offline_predecessor_ids":[1080,1082,1084,1086,1257],"name":"SUSE Linux Enterprise High Availability Extension","former_identifier":"sle-hae","release_type":null,"friendly_name":"SUSE Linux Enterprise High Availability Extension 12 SP2 s390x","migration_extra":false,"recommended":false,"version":"12.2","extensions":[],"identifier":"sle-ha","release_stage":"released","id":1360,"friendly_version":"12 SP2"},{"friendly_version":"12 SP2","identifier":"sle-ha","release_stage":"released","id":1361,"extensions":[],"version":"12.2","recommended":false,"friendly_name":"SUSE Linux Enterprise High Availability Extension 12 SP2 x86_64","migration_extra":false,"former_identifier":"sle-hae","release_type":null,"name":"SUSE Linux Enterprise High Availability Extension","offline_predecessor_ids":[958,961,967,971,1256],"online_predecessor_ids":[1245,1324],"product_class":"SLE-HAE-X86","repositories":[{"id":2034,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-HA/12-SP2/x86_64/update/","autorefresh":true,"distro_target":"sle-12-x86_64","name":"SLE-HA12-SP2-Updates","installer_updates":false,"description":"SLE-HA12-SP2-Updates for sle-12-x86_64"},{"url":"https://updates.suse.com/SUSE/Updates/SLE-HA/12-SP2/x86_64/update_debug/","distro_target":"sle-12-x86_64","autorefresh":true,"id":2035,"enabled":false,"description":"SLE-HA12-SP2-Debuginfo-Updates for sle-12-x86_64","installer_updates":false,"name":"SLE-HA12-SP2-Debuginfo-Updates"},{"description":"SLE-HA12-SP2-Pool for sle-12-x86_64","name":"SLE-HA12-SP2-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-HA/12-SP2/x86_64/product/","enabled":true,"id":2036},{"installer_updates":false,"name":"SLE-HA12-SP2-Debuginfo-Pool","description":"SLE-HA12-SP2-Debuginfo-Pool for sle-12-x86_64","id":2037,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-HA/12-SP2/x86_64/product_debug/","distro_target":"sle-12-x86_64","autorefresh":false},{"enabled":false,"id":2038,"autorefresh":false,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-HA/12-SP2/x86_64/product_source/","name":"SLE-HA12-SP2-Source-Pool","installer_updates":false,"description":"SLE-HA12-SP2-Source-Pool for sle-12-x86_64"}],"predecessor_ids":[1245,1324],"cpe":"cpe:/o:suse:sle-ha:12:sp2","product_type":"extension","shortname":"SLEHA12-SP2","description":"SUSE Linux Enterprise High Availability Extension.","free":false,"arch":"x86_64","eula_url":"https://updates.suse.com/SUSE/Products/SLE-HA/12-SP2/x86_64/product.license/"},{"cpe":"cpe:/o:suse:sle-ha-geo:12:sp2","product_type":"extension","online_predecessor_ids":[1156,1345],"product_class":"SLE-HAE-GEO","repositories":[{"installer_updates":false,"name":"SLE-HA-GEO12-SP2-Updates","description":"SLE-HA-GEO12-SP2-Updates for sle-12-s390x","enabled":true,"id":2039,"distro_target":"sle-12-s390x","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-HA-GEO/12-SP2/s390x/update/"},{"name":"SLE-HA-GEO12-SP2-Debuginfo-Updates","installer_updates":false,"description":"SLE-HA-GEO12-SP2-Debuginfo-Updates for sle-12-s390x","id":2040,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-HA-GEO/12-SP2/s390x/update_debug/","autorefresh":true,"distro_target":"sle-12-s390x"},{"description":"SLE-HA-GEO12-SP2-Pool for sle-12-s390x","installer_updates":false,"name":"SLE-HA-GEO12-SP2-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-HA-GEO/12-SP2/s390x/product/","distro_target":"sle-12-s390x","autorefresh":false,"id":2041,"enabled":true},{"name":"SLE-HA-GEO12-SP2-Debuginfo-Pool","installer_updates":false,"description":"SLE-HA-GEO12-SP2-Debuginfo-Pool for sle-12-s390x","enabled":false,"id":2042,"autorefresh":false,"distro_target":"sle-12-s390x","url":"https://updates.suse.com/SUSE/Products/SLE-HA-GEO/12-SP2/s390x/product_debug/"},{"description":"SLE-HA-GEO12-SP2-Source-Pool for sle-12-s390x","installer_updates":false,"name":"SLE-HA-GEO12-SP2-Source-Pool","distro_target":"sle-12-s390x","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-HA-GEO/12-SP2/s390x/product_source/","enabled":false,"id":2043}],"predecessor_ids":[1156,1345],"arch":"s390x","eula_url":"https://updates.suse.com/SUSE/Products/SLE-HA-GEO/12-SP2/s390x/product.license/","shortname":"SLEHAGEO12-SP2","description":"SUSE Linux Enterprise High Availability Geographical Cluster Extension","free":false,"release_stage":"released","id":1362,"identifier":"sle-ha-geo","extensions":[],"friendly_version":"12 SP2","friendly_name":"SUSE Linux Enterprise High Availability GEO Extension 12 SP2 s390x","migration_extra":false,"release_type":null,"former_identifier":"sle-hae-geo","name":"SUSE Linux Enterprise High Availability GEO Extension","offline_predecessor_ids":[1109,1110,1287],"version":"12.2","recommended":false},{"free":false,"shortname":"SLEHAGEO12-SP2","description":"SUSE Linux Enterprise High Availability Geographical Cluster Extension","arch":"x86_64","eula_url":"https://updates.suse.com/SUSE/Products/SLE-HA-GEO/12-SP2/x86_64/product.license/","repositories":[{"id":2044,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-HA-GEO/12-SP2/x86_64/update/","autorefresh":true,"distro_target":"sle-12-x86_64","name":"SLE-HA-GEO12-SP2-Updates","installer_updates":false,"description":"SLE-HA-GEO12-SP2-Updates for sle-12-x86_64"},{"autorefresh":true,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-HA-GEO/12-SP2/x86_64/update_debug/","enabled":false,"id":2045,"description":"SLE-HA-GEO12-SP2-Debuginfo-Updates for sle-12-x86_64","name":"SLE-HA-GEO12-SP2-Debuginfo-Updates","installer_updates":false},{"description":"SLE-HA-GEO12-SP2-Pool for sle-12-x86_64","installer_updates":false,"name":"SLE-HA-GEO12-SP2-Pool","distro_target":"sle-12-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-HA-GEO/12-SP2/x86_64/product/","enabled":true,"id":2046},{"url":"https://updates.suse.com/SUSE/Products/SLE-HA-GEO/12-SP2/x86_64/product_debug/","autorefresh":false,"distro_target":"sle-12-x86_64","id":2047,"enabled":false,"description":"SLE-HA-GEO12-SP2-Debuginfo-Pool for sle-12-x86_64","name":"SLE-HA-GEO12-SP2-Debuginfo-Pool","installer_updates":false},{"description":"SLE-HA-GEO12-SP2-Source-Pool for sle-12-x86_64","name":"SLE-HA-GEO12-SP2-Source-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-HA-GEO/12-SP2/x86_64/product_source/","enabled":false,"id":2048}],"online_predecessor_ids":[1157,1337],"product_class":"SLE-HAE-GEO","predecessor_ids":[1157,1337],"product_type":"extension","cpe":"cpe:/o:suse:sle-ha-geo:12:sp2","version":"12.2","recommended":false,"former_identifier":"sle-hae-geo","release_type":null,"friendly_name":"SUSE Linux Enterprise High Availability GEO Extension 12 SP2 x86_64","migration_extra":false,"offline_predecessor_ids":[1101,1107,1286],"name":"SUSE Linux Enterprise High Availability GEO Extension","friendly_version":"12 SP2","identifier":"sle-ha-geo","release_stage":"released","id":1363,"extensions":[]},{"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Software Development Kit 12 SP2 ppc64le","release_type":null,"former_identifier":"sle-sdk","name":"SUSE Linux Enterprise Software Development Kit","offline_predecessor_ids":[],"version":"12.2","recommended":false,"identifier":"sle-sdk","release_stage":"released","id":1364,"extensions":[],"friendly_version":"12 SP2","arch":"ppc64le","eula_url":"https://updates.suse.com/SUSE/Products/SLE-SDK/12-SP2/ppc64le/product.license/","shortname":"SDK12-SP2","description":"

SUSE Linux Enterprise Software Development Kit 12 is the Software Development Kit for the family of SUSE Linux Enterprise products. It is a free of charge extension for partners and customers working with SUSE Linux Enterprise Server and Desktop and derived products.

Packages on the SDK are delivered without L3 support; maintenance updates will be done for critical security and critical non-security issues, and where needed to remain in sync with packages delivered in the SUSE Linux Enterprise Server and Desktop products.

Packages to rebuild SUSE Linux Enterprise Server are not part of the SUSE Linux Enterprise Software Development Kit.

","free":true,"cpe":"cpe:/o:suse:sle-sdk:12:sp2","product_type":"extension","product_class":"SLE-SDK","online_predecessor_ids":[1145,1343],"repositories":[{"description":"SLE-SDK12-SP2-Updates for sle-12-ppc64le","name":"SLE-SDK12-SP2-Updates","installer_updates":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-SDK/12-SP2/ppc64le/update/","autorefresh":true,"distro_target":"sle-12-ppc64le","id":2049,"enabled":true},{"description":"SLE-SDK12-SP2-Debuginfo-Updates for sle-12-ppc64le","installer_updates":false,"name":"SLE-SDK12-SP2-Debuginfo-Updates","url":"https://updates.suse.com/SUSE/Updates/SLE-SDK/12-SP2/ppc64le/update_debug/","distro_target":"sle-12-ppc64le","autorefresh":true,"id":2050,"enabled":false},{"description":"SLE-SDK12-SP2-Pool for sle-12-ppc64le","name":"SLE-SDK12-SP2-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-12-ppc64le","url":"https://updates.suse.com/SUSE/Products/SLE-SDK/12-SP2/ppc64le/product/","enabled":true,"id":2051},{"id":2052,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-SDK/12-SP2/ppc64le/product_debug/","distro_target":"sle-12-ppc64le","autorefresh":false,"installer_updates":false,"name":"SLE-SDK12-SP2-Debuginfo-Pool","description":"SLE-SDK12-SP2-Debuginfo-Pool for sle-12-ppc64le"},{"id":2053,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-SDK/12-SP2/ppc64le/product_source/","autorefresh":false,"distro_target":"sle-12-ppc64le","name":"SLE-SDK12-SP2-Source-Pool","installer_updates":false,"description":"SLE-SDK12-SP2-Source-Pool for sle-12-ppc64le"}],"predecessor_ids":[1145,1343]},{"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Software Development Kit 12 SP2 s390x","release_type":null,"former_identifier":"sle-sdk","name":"SUSE Linux Enterprise Software Development Kit","offline_predecessor_ids":[],"version":"12.2","recommended":false,"release_stage":"released","id":1365,"identifier":"sle-sdk","extensions":[],"friendly_version":"12 SP2","arch":"s390x","eula_url":"https://updates.suse.com/SUSE/Products/SLE-SDK/12-SP2/s390x/product.license/","shortname":"SDK12-SP2","description":"

SUSE Linux Enterprise Software Development Kit 12 is the Software Development Kit for the family of SUSE Linux Enterprise products. It is a free of charge extension for partners and customers working with SUSE Linux Enterprise Server and Desktop and derived products.

Packages on the SDK are delivered without L3 support; maintenance updates will be done for critical security and critical non-security issues, and where needed to remain in sync with packages delivered in the SUSE Linux Enterprise Server and Desktop products.

Packages to rebuild SUSE Linux Enterprise Server are not part of the SUSE Linux Enterprise Software Development Kit.

","free":true,"cpe":"cpe:/o:suse:sle-sdk:12:sp2","product_type":"extension","repositories":[{"id":2054,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-SDK/12-SP2/s390x/update/","distro_target":"sle-12-s390x","autorefresh":true,"installer_updates":false,"name":"SLE-SDK12-SP2-Updates","description":"SLE-SDK12-SP2-Updates for sle-12-s390x"},{"name":"SLE-SDK12-SP2-Debuginfo-Updates","installer_updates":false,"description":"SLE-SDK12-SP2-Debuginfo-Updates for sle-12-s390x","enabled":false,"id":2055,"autorefresh":true,"distro_target":"sle-12-s390x","url":"https://updates.suse.com/SUSE/Updates/SLE-SDK/12-SP2/s390x/update_debug/"},{"enabled":true,"id":2056,"distro_target":"sle-12-s390x","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-SDK/12-SP2/s390x/product/","installer_updates":false,"name":"SLE-SDK12-SP2-Pool","description":"SLE-SDK12-SP2-Pool for sle-12-s390x"},{"description":"SLE-SDK12-SP2-Debuginfo-Pool for sle-12-s390x","name":"SLE-SDK12-SP2-Debuginfo-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-12-s390x","url":"https://updates.suse.com/SUSE/Products/SLE-SDK/12-SP2/s390x/product_debug/","enabled":false,"id":2057},{"installer_updates":false,"name":"SLE-SDK12-SP2-Source-Pool","description":"SLE-SDK12-SP2-Source-Pool for sle-12-s390x","id":2058,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-SDK/12-SP2/s390x/product_source/","distro_target":"sle-12-s390x","autorefresh":false}],"online_predecessor_ids":[1146,1344],"product_class":"SLE-SDK","predecessor_ids":[1146,1344]},{"version":"12.2","recommended":false,"friendly_name":"SUSE Linux Enterprise Software Development Kit 12 SP2 x86_64","migration_extra":false,"former_identifier":"sle-sdk","release_type":null,"name":"SUSE Linux Enterprise Software Development Kit","offline_predecessor_ids":[],"friendly_version":"12 SP2","identifier":"sle-sdk","release_stage":"released","id":1366,"extensions":[],"description":"

SUSE Linux Enterprise Software Development Kit 12 is the Software Development Kit for the family of SUSE Linux Enterprise products. It is a free of charge extension for partners and customers working with SUSE Linux Enterprise Server and Desktop and derived products.

Packages on the SDK are delivered without L3 support; maintenance updates will be done for critical security and critical non-security issues, and where needed to remain in sync with packages delivered in the SUSE Linux Enterprise Server and Desktop products.

Packages to rebuild SUSE Linux Enterprise Server are not part of the SUSE Linux Enterprise Software Development Kit.

","shortname":"SDK12-SP2","free":true,"arch":"x86_64","eula_url":"https://updates.suse.com/SUSE/Products/SLE-SDK/12-SP2/x86_64/product.license/","repositories":[{"installer_updates":false,"name":"SLE-SDK12-SP2-Updates","description":"SLE-SDK12-SP2-Updates for sle-12-x86_64","id":2059,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-SDK/12-SP2/x86_64/update/","distro_target":"sle-12-x86_64","autorefresh":true},{"name":"SLE-SDK12-SP2-Debuginfo-Updates","installer_updates":false,"description":"SLE-SDK12-SP2-Debuginfo-Updates for sle-12-x86_64","id":2060,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-SDK/12-SP2/x86_64/update_debug/","autorefresh":true,"distro_target":"sle-12-x86_64"},{"name":"SLE-SDK12-SP2-Pool","installer_updates":false,"description":"SLE-SDK12-SP2-Pool for sle-12-x86_64","id":2061,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-SDK/12-SP2/x86_64/product/","autorefresh":false,"distro_target":"sle-12-x86_64"},{"id":2062,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-SDK/12-SP2/x86_64/product_debug/","distro_target":"sle-12-x86_64","autorefresh":false,"installer_updates":false,"name":"SLE-SDK12-SP2-Debuginfo-Pool","description":"SLE-SDK12-SP2-Debuginfo-Pool for sle-12-x86_64"},{"autorefresh":false,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-SDK/12-SP2/x86_64/product_source/","enabled":false,"id":2063,"description":"SLE-SDK12-SP2-Source-Pool for sle-12-x86_64","name":"SLE-SDK12-SP2-Source-Pool","installer_updates":false}],"online_predecessor_ids":[1223,1323],"product_class":"SLE-SDK","predecessor_ids":[1223,1323],"cpe":"cpe:/o:suse:sle-sdk:12:sp2","product_type":"extension"},{"extensions":[],"release_stage":"released","identifier":"sle-module-certifications","id":1367,"friendly_version":"12","offline_predecessor_ids":[],"name":"Certifications Module","former_identifier":"sle-module-certifications","release_type":null,"friendly_name":"Certifications Module 12 s390x","migration_extra":false,"recommended":false,"version":"12","product_type":"module","cpe":"cpe:/o:suse:sle-module-certifications:12","predecessor_ids":[],"product_class":"MODULE","online_predecessor_ids":[],"repositories":[{"installer_updates":false,"name":"SLE-Module-Certifications12-Updates","description":"SLE-Module-Certifications12-Updates for sle-12-s390x","id":2064,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Certifications/12/s390x/update/","distro_target":"sle-12-s390x","autorefresh":true},{"distro_target":"sle-12-s390x","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Certifications/12/s390x/update_debug/","enabled":false,"id":2065,"description":"SLE-Module-Certifications12-Debuginfo-Updates for sle-12-s390x","installer_updates":false,"name":"SLE-Module-Certifications12-Debuginfo-Updates"},{"enabled":true,"id":2066,"autorefresh":false,"distro_target":"sle-12-s390x","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Certifications/12/s390x/product/","name":"SLE-Module-Certifications12-Pool","installer_updates":false,"description":"SLE-Module-Certifications12-Pool for sle-12-s390x"},{"distro_target":"sle-12-s390x","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Certifications/12/s390x/product_debug/","enabled":false,"id":2067,"description":"SLE-Module-Certifications12-Debuginfo-Pool for sle-12-s390x","installer_updates":false,"name":"SLE-Module-Certifications12-Debuginfo-Pool"}],"eula_url":"","arch":"s390x","free":true,"shortname":"Certifications","description":"

This module contains packages specific to certifications.

It contains:

Packages used for the Evaluated Configuration of the Common Criteria Certification of SUSE Linux Enterprise Server 12 GA.

Packages used for the FIPS 140-2 certification of various cryptographics modules.

Please refer to our certification pages referenced from https://www.suse.com/security/

"},{"friendly_version":"12","extensions":[],"release_stage":"released","identifier":"sle-module-certifications","id":1368,"recommended":false,"version":"12","offline_predecessor_ids":[],"name":"Certifications Module","release_type":null,"former_identifier":"sle-module-certifications","friendly_name":"Certifications Module 12 x86_64","migration_extra":false,"predecessor_ids":[],"online_predecessor_ids":[],"product_class":"MODULE","repositories":[{"id":2068,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Certifications/12/x86_64/update/","autorefresh":true,"distro_target":"sle-12-x86_64","name":"SLE-Module-Certifications12-Updates","installer_updates":false,"description":"SLE-Module-Certifications12-Updates for sle-12-x86_64"},{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Certifications/12/x86_64/update_debug/","autorefresh":true,"distro_target":"sle-12-x86_64","id":2069,"enabled":false,"description":"SLE-Module-Certifications12-Debuginfo-Updates for sle-12-x86_64","name":"SLE-Module-Certifications12-Debuginfo-Updates","installer_updates":false},{"description":"SLE-Module-Certifications12-Pool for sle-12-x86_64","name":"SLE-Module-Certifications12-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Certifications/12/x86_64/product/","autorefresh":false,"distro_target":"sle-12-x86_64","id":2070,"enabled":true},{"description":"SLE-Module-Certifications12-Debuginfo-Pool for sle-12-x86_64","name":"SLE-Module-Certifications12-Debuginfo-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Certifications/12/x86_64/product_debug/","autorefresh":false,"distro_target":"sle-12-x86_64","id":2071,"enabled":false}],"product_type":"module","cpe":"cpe:/o:suse:sle-module-certifications:12","free":true,"description":"

This module contains packages specific to certifications.

It contains:

Packages used for the Evaluated Configuration of the Common Criteria Certification of SUSE Linux Enterprise Server 12 GA.

Packages used for the FIPS 140-2 certification of various cryptographics modules.

Please refer to our certification pages referenced from https://www.suse.com/security/

","shortname":"Certifications","eula_url":"","arch":"x86_64"},{"version":"3","recommended":false,"friendly_name":"SUSE Enterprise Storage 3 x86_64","migration_extra":false,"former_identifier":"ses","release_type":null,"name":"SUSE Enterprise Storage","offline_predecessor_ids":[],"friendly_version":"3","id":1369,"release_stage":"released","identifier":"ses","extensions":[],"description":"SUSE Enterprise Storage 3 for SUSE Linux Enterprise Server 12-SP1, powered by Ceph.","shortname":"SES3","free":false,"arch":"x86_64","eula_url":"https://updates.suse.com/SUSE/Products/Storage/3/x86_64/product.license/","repositories":[{"name":"SUSE-Enterprise-Storage-3-Updates","installer_updates":false,"description":"SUSE-Enterprise-Storage-3-Updates for sle-12-x86_64","id":2072,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/Storage/3/x86_64/update/","autorefresh":true,"distro_target":"sle-12-x86_64"},{"description":"SUSE-Enterprise-Storage-3-Debuginfo-Updates for sle-12-x86_64","installer_updates":false,"name":"SUSE-Enterprise-Storage-3-Debuginfo-Updates","url":"https://updates.suse.com/SUSE/Updates/Storage/3/x86_64/update_debug/","distro_target":"sle-12-x86_64","autorefresh":true,"id":2073,"enabled":false},{"description":"SUSE-Enterprise-Storage-3-Pool for sle-12-x86_64","installer_updates":false,"name":"SUSE-Enterprise-Storage-3-Pool","distro_target":"sle-12-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/Storage/3/x86_64/product/","enabled":true,"id":2074},{"description":"SUSE-Enterprise-Storage-3-Debuginfo-Pool for sle-12-x86_64","name":"SUSE-Enterprise-Storage-3-Debuginfo-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Products/Storage/3/x86_64/product_debug/","enabled":false,"id":2075},{"description":"SUSE-Enterprise-Storage-3-Source-Pool for sle-12-x86_64","installer_updates":false,"name":"SUSE-Enterprise-Storage-3-Source-Pool","url":"https://updates.suse.com/SUSE/Products/Storage/3/x86_64/product_source/","distro_target":"sle-12-x86_64","autorefresh":false,"id":2076,"enabled":false}],"online_predecessor_ids":[1351],"product_class":"SES","predecessor_ids":[1351],"cpe":"cpe:/o:suse:ses:3","product_type":"extension"},{"arch":"aarch64","eula_url":"https://updates.suse.com/SUSE/Products/SLE-SERVER/12-SP2/aarch64/product.license/","free":false,"shortname":"SLES12-SP2","description":"SUSE Linux Enterprise offers a comprehensive suite of products built on a single code base. The platform addresses business needs from the smallest thin-client devices to the world's most powerful high-performance computing and mainframe servers. SUSE Linux Enterprise offers common management tools and technology certifications across the platform, and each product is enterprise-class.","product_type":"base","cpe":"cpe:/o:suse:sles:12:sp2","online_predecessor_ids":[],"repositories":[{"enabled":true,"id":2081,"distro_target":"sle-12-aarch64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-SP2/aarch64/update/","installer_updates":false,"name":"SLES12-SP2-Updates","description":"SLES12-SP2-Updates for sle-12-aarch64"},{"url":"https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-SP2/aarch64/update_debug/","distro_target":"sle-12-aarch64","autorefresh":true,"id":2082,"enabled":false,"description":"SLES12-SP2-Debuginfo-Updates for sle-12-aarch64","installer_updates":false,"name":"SLES12-SP2-Debuginfo-Updates"},{"enabled":true,"id":2083,"distro_target":"sle-12-aarch64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-SERVER/12-SP2/aarch64/product/","installer_updates":false,"name":"SLES12-SP2-Pool","description":"SLES12-SP2-Pool for sle-12-aarch64"},{"autorefresh":false,"distro_target":"sle-12-aarch64","url":"https://updates.suse.com/SUSE/Products/SLE-SERVER/12-SP2/aarch64/product_debug/","enabled":false,"id":2084,"description":"SLES12-SP2-Debuginfo-Pool for sle-12-aarch64","name":"SLES12-SP2-Debuginfo-Pool","installer_updates":false},{"installer_updates":false,"name":"SLES12-SP2-Source-Pool","description":"SLES12-SP2-Source-Pool for sle-12-aarch64","enabled":false,"id":2085,"distro_target":"sle-12-aarch64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-SERVER/12-SP2/aarch64/product_source/"},{"description":"SLES12-SP2-Installer-Updates for sle-12-aarch64","name":"SLES12-SP2-Installer-Updates","installer_updates":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-SERVER-INSTALLER/12-SP2/aarch64/update/","autorefresh":true,"distro_target":"sle-12-aarch64","id":2104,"enabled":false}],"product_class":"SLES-ARM64","predecessor_ids":[],"former_identifier":"SLES","release_type":null,"friendly_name":"SUSE Linux Enterprise Server 12 SP2 aarch64","migration_extra":false,"offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Server","version":"12.2","recommended":false,"identifier":"SLES","release_stage":"released","id":1375,"extensions":[{"friendly_version":"12","release_stage":"released","identifier":"sle-module-toolchain","id":1376,"extensions":[],"version":"12","recommended":false,"migration_extra":false,"friendly_name":"Toolchain Module 12 aarch64","former_identifier":"sle-module-toolchain","release_type":null,"name":"Toolchain Module","offline_predecessor_ids":[],"online_predecessor_ids":[],"repositories":[{"description":"SLE-Module-Toolchain12-Updates for sle-12-aarch64","installer_updates":false,"name":"SLE-Module-Toolchain12-Updates","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Toolchain/12/aarch64/update/","distro_target":"sle-12-aarch64","autorefresh":true,"id":2086,"enabled":true},{"id":2087,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Toolchain/12/aarch64/update_debug/","distro_target":"sle-12-aarch64","autorefresh":true,"installer_updates":false,"name":"SLE-Module-Toolchain12-Debuginfo-Updates","description":"SLE-Module-Toolchain12-Debuginfo-Updates for sle-12-aarch64"},{"autorefresh":false,"distro_target":"sle-12-aarch64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Toolchain/12/aarch64/product/","enabled":true,"id":2088,"description":"SLE-Module-Toolchain12-Pool for sle-12-aarch64","name":"SLE-Module-Toolchain12-Pool","installer_updates":false},{"description":"SLE-Module-Toolchain12-Debuginfo-Pool for sle-12-aarch64","name":"SLE-Module-Toolchain12-Debuginfo-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-12-aarch64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Toolchain/12/aarch64/product_debug/","enabled":false,"id":2089}],"product_class":"MODULE","predecessor_ids":[],"cpe":"cpe:/o:suse:sle-module-toolchain:12","product_type":"module","shortname":"Toolchain-Module","description":"Via this Module you will have access to a more recent GCC and Toolchain in addition to the default compiler of SUSE Linux Enterprise. Access to the Toolchain Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself. Please check the Release Notes for further details.","free":true,"arch":"aarch64","eula_url":""},{"description":"

SUSE Linux Enterprise Software Development Kit 12 is the Software Development Kit for the family of SUSE Linux Enterprise products. It is a free of charge extension for partners and customers working with SUSE Linux Enterprise Server and Desktop and derived products.

Packages on the SDK are delivered without L3 support; maintenance updates will be done for critical security and critical non-security issues, and where needed to remain in sync with packages delivered in the SUSE Linux Enterprise Server and Desktop products.

Packages to rebuild SUSE Linux Enterprise Server are not part of the SUSE Linux Enterprise Software Development Kit.

","shortname":"SDK12-SP2","free":true,"eula_url":"https://updates.suse.com/SUSE/Products/SLE-SDK/12-SP2/aarch64/product.license/","arch":"aarch64","predecessor_ids":[],"online_predecessor_ids":[],"repositories":[{"id":2095,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-SDK/12-SP2/aarch64/update/","distro_target":"sle-12-aarch64","autorefresh":true,"installer_updates":false,"name":"SLE-SDK12-SP2-Updates","description":"SLE-SDK12-SP2-Updates for sle-12-aarch64"},{"url":"https://updates.suse.com/SUSE/Updates/SLE-SDK/12-SP2/aarch64/update_debug/","autorefresh":true,"distro_target":"sle-12-aarch64","id":2096,"enabled":false,"description":"SLE-SDK12-SP2-Debuginfo-Updates for sle-12-aarch64","name":"SLE-SDK12-SP2-Debuginfo-Updates","installer_updates":false},{"url":"https://updates.suse.com/SUSE/Products/SLE-SDK/12-SP2/aarch64/product/","distro_target":"sle-12-aarch64","autorefresh":false,"id":2097,"enabled":true,"description":"SLE-SDK12-SP2-Pool for sle-12-aarch64","installer_updates":false,"name":"SLE-SDK12-SP2-Pool"},{"url":"https://updates.suse.com/SUSE/Products/SLE-SDK/12-SP2/aarch64/product_debug/","autorefresh":false,"distro_target":"sle-12-aarch64","id":2098,"enabled":false,"description":"SLE-SDK12-SP2-Debuginfo-Pool for sle-12-aarch64","name":"SLE-SDK12-SP2-Debuginfo-Pool","installer_updates":false},{"id":2099,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-SDK/12-SP2/aarch64/product_source/","autorefresh":false,"distro_target":"sle-12-aarch64","name":"SLE-SDK12-SP2-Source-Pool","installer_updates":false,"description":"SLE-SDK12-SP2-Source-Pool for sle-12-aarch64"}],"product_class":"SLE-SDK","cpe":"cpe:/o:suse:sle-sdk:12:sp2","product_type":"extension","recommended":false,"version":"12.2","name":"SUSE Linux Enterprise Software Development Kit","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Software Development Kit 12 SP2 aarch64","former_identifier":"sle-sdk","release_type":null,"friendly_version":"12 SP2","extensions":[],"release_stage":"released","identifier":"sle-sdk","id":1378},{"recommended":false,"version":"4","name":"SUSE Enterprise Storage","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"SUSE Enterprise Storage 4 aarch64","release_type":null,"former_identifier":"ses","friendly_version":"4","extensions":[],"id":1417,"release_stage":"released","identifier":"ses","description":"SUSE Enterprise Storage 4 for SUSE Linux Enterprise Server 12-SP2, powered by Ceph.","shortname":"SES4","free":false,"eula_url":"https://updates.suse.com/SUSE/Products/Storage/4/aarch64/product.license/","arch":"aarch64","predecessor_ids":[],"online_predecessor_ids":[],"repositories":[{"enabled":true,"id":2168,"distro_target":"sle-12-aarch64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/Storage/4/aarch64/update/","installer_updates":false,"name":"SUSE-Enterprise-Storage-4-Updates","description":"SUSE-Enterprise-Storage-4-Updates for sle-12-aarch64"},{"id":2169,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/Storage/4/aarch64/update_debug/","distro_target":"sle-12-aarch64","autorefresh":true,"installer_updates":false,"name":"SUSE-Enterprise-Storage-4-Debuginfo-Updates","description":"SUSE-Enterprise-Storage-4-Debuginfo-Updates for sle-12-aarch64"},{"enabled":true,"id":2170,"autorefresh":false,"distro_target":"sle-12-aarch64","url":"https://updates.suse.com/SUSE/Products/Storage/4/aarch64/product/","name":"SUSE-Enterprise-Storage-4-Pool","installer_updates":false,"description":"SUSE-Enterprise-Storage-4-Pool for sle-12-aarch64"},{"enabled":false,"id":2171,"distro_target":"sle-12-aarch64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/Storage/4/aarch64/product_debug/","installer_updates":false,"name":"SUSE-Enterprise-Storage-4-Debuginfo-Pool","description":"SUSE-Enterprise-Storage-4-Debuginfo-Pool for sle-12-aarch64"},{"distro_target":"sle-12-aarch64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/Storage/4/aarch64/product_source/","enabled":false,"id":2172,"description":"SUSE-Enterprise-Storage-4-Source-Pool for sle-12-aarch64","installer_updates":false,"name":"SUSE-Enterprise-Storage-4-Source-Pool"}],"product_class":"SES-ARM64","cpe":"cpe:/o:suse:ses:4","product_type":"extension"},{"product_type":"extension","cpe":"cpe:/o:suse:packagehub:12:sp2","online_predecessor_ids":[],"product_class":"SLES-ARM64","repositories":[{"description":"SUSE-PackageHub-12-SP2-Standard-Pool for sle-12-aarch64","name":"SUSE-PackageHub-12-SP2-Standard-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Backports/SLE-12-SP2_aarch64/standard/","autorefresh":false,"distro_target":"sle-12-aarch64","id":2354,"enabled":true},{"url":"https://updates.suse.com/SUSE/Backports/SLE-12-SP2_aarch64/standard_debug/","distro_target":"sle-12-aarch64","autorefresh":true,"id":2355,"enabled":false,"description":"SUSE-PackageHub-12-SP2-Debuginfo for sle-12-aarch64","installer_updates":false,"name":"SUSE-PackageHub-12-SP2-Debuginfo"},{"description":"SUSE-PackageHub-12-SP2-Pool for sle-12-aarch64","name":"SUSE-PackageHub-12-SP2-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Backports/SLE-12-SP2_aarch64/product/","autorefresh":false,"distro_target":"sle-12-aarch64","id":2356,"enabled":true}],"predecessor_ids":[],"arch":"aarch64","eula_url":"","free":true,"description":"SUSE Package Hub is a free of charge extension providing access to community maintained packages built to run on SUSE Linux Enterprise Server. Built from the same sources used in the openSUSE distributions, these quality packages provide additional software to what is found in the SUSE Linux Enterprise Server product. Packages from the Package Hub are delivered without L3 support from SUSE. General updates and fixes to the packages in SUSE Package Hub are provided by the openSUSE community based on their discretion though SUSE will monitor and ensure that any known critical security issues will be addressed. Packages in the Package Hub are approved by SUSE for use with SUSE Linux Enterprise Server 12 and to not interfere with the supportability of SUSE Linux Enterprise Server it's modules and extensions. For more information about SUSE Package Hub please visit https://packagehub.suse.com.","shortname":"SUSE-PackageHub-12-SP2","id":1482,"release_stage":"released","identifier":"PackageHub","extensions":[],"friendly_version":"12 SP2","release_type":null,"former_identifier":"PackageHub","friendly_name":"SUSE Package Hub 12 SP2 aarch64","migration_extra":false,"offline_predecessor_ids":[],"name":"SUSE Package Hub","version":"12.2","recommended":false},{"cpe":"cpe:/o:suse:sle-module-hpc:12","product_type":"module","product_class":"MODULE","online_predecessor_ids":[],"repositories":[{"installer_updates":false,"name":"SLE-Module-HPC12-Updates","description":"SLE-Module-HPC12-Updates for sle-12-aarch64","enabled":true,"id":2421,"distro_target":"sle-12-aarch64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-HPC/12/aarch64/update/"},{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-HPC/12/aarch64/update_debug/","distro_target":"sle-12-aarch64","autorefresh":true,"id":2422,"enabled":false,"description":"SLE-Module-HPC12-Debuginfo-Updates for sle-12-aarch64","installer_updates":false,"name":"SLE-Module-HPC12-Debuginfo-Updates"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-HPC/12/aarch64/product/","autorefresh":false,"distro_target":"sle-12-aarch64","id":2423,"enabled":true,"description":"SLE-Module-HPC12-Pool for sle-12-aarch64","name":"SLE-Module-HPC12-Pool","installer_updates":false},{"description":"SLE-Module-HPC12-Debuginfo-Pool for sle-12-aarch64","name":"SLE-Module-HPC12-Debuginfo-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-12-aarch64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-HPC/12/aarch64/product_debug/","enabled":false,"id":2424},{"name":"SLE-Module-HPC12-Source-Pool","installer_updates":false,"description":"SLE-Module-HPC12-Source-Pool for sle-12-aarch64","enabled":false,"id":2425,"autorefresh":false,"distro_target":"sle-12-aarch64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-HPC/12/aarch64/product_source/"}],"predecessor_ids":[],"arch":"aarch64","eula_url":"https://updates.suse.com/SUSE/Products/SLE-Module-HPC/12/aarch64/product.license/","shortname":"HPC-Module","description":"The SUSE Linux Enterprise Server High Performance Computing (HPC) module delivers specific tools commonly used for high performance, numerically intensive workloads. SUSE packages these tools in the SLES HPC Module to provide greater flexibility to deliver new versions or new tools more rapidly than the standard SUSE Linux Enterprise lifecycle would permit. Packages in this module are general supported till a newer version of the package is released or the package is dropped from the module.","free":true,"release_stage":"released","id":1522,"identifier":"sle-module-hpc","extensions":[],"friendly_version":"12","friendly_name":"HPC Module 12 aarch64","migration_extra":false,"former_identifier":"sle-module-hpc","release_type":null,"name":"HPC Module","offline_predecessor_ids":[],"version":"12","recommended":false},{"extensions":[],"identifier":"sle-module-public-cloud","release_stage":"released","id":1528,"friendly_version":"12","name":"Public Cloud Module","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"Public Cloud Module 12 aarch64","release_type":null,"former_identifier":"sle-module-public-cloud","recommended":false,"version":"12","cpe":"cpe:/o:suse:sle-module-public-cloud:12","product_type":"module","predecessor_ids":[],"product_class":"MODULE","online_predecessor_ids":[],"repositories":[{"enabled":true,"id":2157,"distro_target":"sle-12-aarch64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/12/aarch64/update/","installer_updates":false,"name":"SLE-Module-Public-Cloud12-Updates","description":"SLE-Module-Public-Cloud12-Updates for sle-12-aarch64"},{"id":2158,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/12/aarch64/update_debug/","distro_target":"sle-12-aarch64","autorefresh":true,"installer_updates":false,"name":"SLE-Module-Public-Cloud12-Debuginfo-Updates","description":"SLE-Module-Public-Cloud12-Debuginfo-Updates for sle-12-aarch64"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/12/aarch64/product/","distro_target":"sle-12-aarch64","autorefresh":false,"id":2159,"enabled":true,"description":"SLE-Module-Public-Cloud12-Pool for sle-12-aarch64","installer_updates":false,"name":"SLE-Module-Public-Cloud12-Pool"},{"installer_updates":false,"name":"SLE-Module-Public-Cloud12-Debuginfo-Pool","description":"SLE-Module-Public-Cloud12-Debuginfo-Pool for sle-12-aarch64","enabled":false,"id":2160,"distro_target":"sle-12-aarch64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/12/aarch64/product_debug/"},{"description":"SLE-Module-Public-Cloud12-Source-Pool for sle-12-aarch64","name":"SLE-Module-Public-Cloud12-Source-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-12-aarch64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/12/aarch64/product_source/","enabled":false,"id":2161}],"eula_url":"","arch":"aarch64","shortname":"Public-Cloud-Module","description":"

The Public Cloud Module is a collection of tools that enables you to create and manage cloud images from the commandline on SUSE Linux Enterprise Server. When building your own images with KIWI or SUSE Studio, initialization code specific to the target cloud is included in that image.

Access to the Public Cloud Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself; please check the Release Notes for further details.

","free":true},{"predecessor_ids":[],"product_class":"MODULE","online_predecessor_ids":[],"repositories":[{"autorefresh":true,"distro_target":"sle-12-aarch64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/12/aarch64/update/","enabled":true,"id":2476,"description":"SLE-Module-Web-Scripting12-Updates for sle-12-aarch64","name":"SLE-Module-Web-Scripting12-Updates","installer_updates":false},{"name":"SLE-Module-Web-Scripting12-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-Web-Scripting12-Debuginfo-Updates for sle-12-aarch64","enabled":false,"id":2477,"autorefresh":true,"distro_target":"sle-12-aarch64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/12/aarch64/update_debug/"},{"distro_target":"sle-12-aarch64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/12/aarch64/product/","enabled":true,"id":2478,"description":"SLE-Module-Web-Scripting12-Pool for sle-12-aarch64","installer_updates":false,"name":"SLE-Module-Web-Scripting12-Pool"},{"name":"SLE-Module-Web-Scripting12-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-Web-Scripting12-Debuginfo-Pool for sle-12-aarch64","enabled":false,"id":2479,"autorefresh":false,"distro_target":"sle-12-aarch64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/12/aarch64/product_debug/"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/12/aarch64/product_source/","autorefresh":false,"distro_target":"sle-12-aarch64","id":2480,"enabled":false,"description":"SLE-Module-Web-Scripting12-Source-Pool for sle-12-aarch64","name":"SLE-Module-Web-Scripting12-Source-Pool","installer_updates":false}],"product_type":"module","cpe":"cpe:/o:suse:sle-module-web-scripting:12","free":true,"description":"

The SUSE Linux Enterprise Web and Scripting Module delivers a comprehensive suite of scripting languages, frameworks, and related tools helping developers and systems administrators accelerate the creation of stable, modern web applications, using dynamic languages, such as PHP, Ruby on Rails, and Python.

Access to the Web and Scripting Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself: Package versions in the this module are usually supported for at most three years. We are planning to release more recent versions on a schedule of approximately 18 month; the exact dates may differ per package.

","shortname":"Web-and-Scripting-Module","eula_url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/12/aarch64/product.license/","arch":"aarch64","friendly_version":"12","extensions":[],"release_stage":"released","identifier":"sle-module-web-scripting","id":1539,"recommended":false,"version":"12","offline_predecessor_ids":[],"name":"Web and Scripting Module","former_identifier":"sle-module-web-scripting","release_type":null,"friendly_name":"Web and Scripting Module 12 aarch64","migration_extra":false}],"friendly_version":"12 SP2"},{"friendly_version":"12","id":1376,"release_stage":"released","identifier":"sle-module-toolchain","extensions":[],"version":"12","recommended":false,"migration_extra":false,"friendly_name":"Toolchain Module 12 aarch64","former_identifier":"sle-module-toolchain","release_type":null,"name":"Toolchain Module","offline_predecessor_ids":[],"product_class":"MODULE","online_predecessor_ids":[],"repositories":[{"id":2086,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Toolchain/12/aarch64/update/","distro_target":"sle-12-aarch64","autorefresh":true,"installer_updates":false,"name":"SLE-Module-Toolchain12-Updates","description":"SLE-Module-Toolchain12-Updates for sle-12-aarch64"},{"distro_target":"sle-12-aarch64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Toolchain/12/aarch64/update_debug/","enabled":false,"id":2087,"description":"SLE-Module-Toolchain12-Debuginfo-Updates for sle-12-aarch64","installer_updates":false,"name":"SLE-Module-Toolchain12-Debuginfo-Updates"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Toolchain/12/aarch64/product/","distro_target":"sle-12-aarch64","autorefresh":false,"id":2088,"enabled":true,"description":"SLE-Module-Toolchain12-Pool for sle-12-aarch64","installer_updates":false,"name":"SLE-Module-Toolchain12-Pool"},{"installer_updates":false,"name":"SLE-Module-Toolchain12-Debuginfo-Pool","description":"SLE-Module-Toolchain12-Debuginfo-Pool for sle-12-aarch64","enabled":false,"id":2089,"distro_target":"sle-12-aarch64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Toolchain/12/aarch64/product_debug/"}],"predecessor_ids":[],"cpe":"cpe:/o:suse:sle-module-toolchain:12","product_type":"module","description":"Via this Module you will have access to a more recent GCC and Toolchain in addition to the default compiler of SUSE Linux Enterprise. Access to the Toolchain Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself. Please check the Release Notes for further details.","shortname":"Toolchain-Module","free":true,"arch":"aarch64","eula_url":""},{"free":true,"shortname":"SDK12-SP2","description":"

SUSE Linux Enterprise Software Development Kit 12 is the Software Development Kit for the family of SUSE Linux Enterprise products. It is a free of charge extension for partners and customers working with SUSE Linux Enterprise Server and Desktop and derived products.

Packages on the SDK are delivered without L3 support; maintenance updates will be done for critical security and critical non-security issues, and where needed to remain in sync with packages delivered in the SUSE Linux Enterprise Server and Desktop products.

Packages to rebuild SUSE Linux Enterprise Server are not part of the SUSE Linux Enterprise Software Development Kit.

","arch":"aarch64","eula_url":"https://updates.suse.com/SUSE/Products/SLE-SDK/12-SP2/aarch64/product.license/","online_predecessor_ids":[],"product_class":"SLE-SDK","repositories":[{"name":"SLE-SDK12-SP2-Updates","installer_updates":false,"description":"SLE-SDK12-SP2-Updates for sle-12-aarch64","enabled":true,"id":2095,"autorefresh":true,"distro_target":"sle-12-aarch64","url":"https://updates.suse.com/SUSE/Updates/SLE-SDK/12-SP2/aarch64/update/"},{"description":"SLE-SDK12-SP2-Debuginfo-Updates for sle-12-aarch64","name":"SLE-SDK12-SP2-Debuginfo-Updates","installer_updates":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-SDK/12-SP2/aarch64/update_debug/","autorefresh":true,"distro_target":"sle-12-aarch64","id":2096,"enabled":false},{"enabled":true,"id":2097,"autorefresh":false,"distro_target":"sle-12-aarch64","url":"https://updates.suse.com/SUSE/Products/SLE-SDK/12-SP2/aarch64/product/","name":"SLE-SDK12-SP2-Pool","installer_updates":false,"description":"SLE-SDK12-SP2-Pool for sle-12-aarch64"},{"description":"SLE-SDK12-SP2-Debuginfo-Pool for sle-12-aarch64","name":"SLE-SDK12-SP2-Debuginfo-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-12-aarch64","url":"https://updates.suse.com/SUSE/Products/SLE-SDK/12-SP2/aarch64/product_debug/","enabled":false,"id":2098},{"distro_target":"sle-12-aarch64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-SDK/12-SP2/aarch64/product_source/","enabled":false,"id":2099,"description":"SLE-SDK12-SP2-Source-Pool for sle-12-aarch64","installer_updates":false,"name":"SLE-SDK12-SP2-Source-Pool"}],"predecessor_ids":[],"product_type":"extension","cpe":"cpe:/o:suse:sle-sdk:12:sp2","version":"12.2","recommended":false,"former_identifier":"sle-sdk","release_type":null,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Software Development Kit 12 SP2 aarch64","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Software Development Kit","friendly_version":"12 SP2","id":1378,"release_stage":"released","identifier":"sle-sdk","extensions":[]},{"recommended":false,"version":"12","name":"SUSE Linux Enterprise Server LTSS","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Server LTSS 12 x86_64","former_identifier":"SUSE_SLES","release_type":null,"friendly_version":"12","extensions":[],"id":1379,"release_stage":"released","identifier":"SLES-LTSS","shortname":"SLES12 LTSS","description":"SUSE Linux Enterprise offers a comprehensive suite of products built on a single code base. The platform addresses business needs from the smallest thin-client devices to the world's most powerful high-performance computing and mainframe servers. SUSE Linux Enterprise offers common management tools and technology certifications across the platform, and each product is enterprise-class.","free":false,"eula_url":"","arch":"x86_64","predecessor_ids":[],"online_predecessor_ids":[],"product_class":"SLES12-GA-LTSS-X86","repositories":[{"url":"https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-LTSS/x86_64/update/","distro_target":"sle-12-x86_64","autorefresh":true,"id":2105,"enabled":true,"description":"SLES12-LTSS-Updates for sle-12-x86_64","installer_updates":false,"name":"SLES12-LTSS-Updates"},{"url":"https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-LTSS/x86_64/update_debug/","distro_target":"sle-12-x86_64","autorefresh":true,"id":2106,"enabled":false,"description":"SLES12-LTSS-Debuginfo-Updates for sle-12-x86_64","installer_updates":false,"name":"SLES12-LTSS-Debuginfo-Updates"}],"cpe":"cpe:/o:suse:sles-ltss:12","product_type":"extension"},{"cpe":"cpe:/o:suse:sles-ltss:12","product_type":"extension","predecessor_ids":[],"online_predecessor_ids":[],"product_class":"SLES12-GA-LTSS-Z","repositories":[{"distro_target":"sle-12-s390x","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-LTSS/s390x/update/","enabled":true,"id":2107,"description":"SLES12-LTSS-Updates for sle-12-s390x","installer_updates":false,"name":"SLES12-LTSS-Updates"},{"description":"SLES12-LTSS-Debuginfo-Updates for sle-12-s390x","name":"SLES12-LTSS-Debuginfo-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-12-s390x","url":"https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-LTSS/s390x/update_debug/","enabled":false,"id":2108}],"eula_url":"","arch":"s390x","shortname":"SLES12 LTSS","description":"SUSE Linux Enterprise offers a comprehensive suite of products built on a single code base. The platform addresses business needs from the smallest thin-client devices to the world's most powerful high-performance computing and mainframe servers. SUSE Linux Enterprise offers common management tools and technology certifications across the platform, and each product is enterprise-class.","free":false,"extensions":[],"release_stage":"released","identifier":"SLES-LTSS","id":1380,"friendly_version":"12","name":"SUSE Linux Enterprise Server LTSS","offline_predecessor_ids":[],"friendly_name":"SUSE Linux Enterprise Server LTSS 12 s390x","migration_extra":false,"release_type":null,"former_identifier":"SUSE_SLES","recommended":false,"version":"12"},{"description":"SUSE OpenStack Cloud 7","shortname":"SOC7","free":false,"arch":"x86_64","eula_url":"https://updates.suse.com/SUSE/Products/OpenStack-Cloud/7/x86_64/product.license/","repositories":[{"description":"SUSE-OpenStack-Cloud-7-Updates for sle-12-x86_64","installer_updates":false,"name":"SUSE-OpenStack-Cloud-7-Updates","url":"https://updates.suse.com/SUSE/Updates/OpenStack-Cloud/7/x86_64/update/","distro_target":"sle-12-x86_64","autorefresh":true,"id":2109,"enabled":true},{"installer_updates":false,"name":"SUSE-OpenStack-Cloud-7-Debuginfo-Updates","description":"SUSE-OpenStack-Cloud-7-Debuginfo-Updates for sle-12-x86_64","enabled":false,"id":2110,"distro_target":"sle-12-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/OpenStack-Cloud/7/x86_64/update_debug/"},{"url":"https://updates.suse.com/SUSE/Products/OpenStack-Cloud/7/x86_64/product/","distro_target":"sle-12-x86_64","autorefresh":false,"id":2111,"enabled":true,"description":"SUSE-OpenStack-Cloud-7-Pool for sle-12-x86_64","installer_updates":false,"name":"SUSE-OpenStack-Cloud-7-Pool"},{"description":"SUSE-OpenStack-Cloud-7-Debuginfo-Pool for sle-12-x86_64","installer_updates":false,"name":"SUSE-OpenStack-Cloud-7-Debuginfo-Pool","distro_target":"sle-12-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/OpenStack-Cloud/7/x86_64/product_debug/","enabled":false,"id":2112}],"online_predecessor_ids":[1347],"product_class":"SUSE_CLOUD","predecessor_ids":[1347],"cpe":"cpe:/o:suse:suse-openstack-cloud:7","product_type":"extension","version":"7","recommended":false,"migration_extra":false,"friendly_name":"SUSE OpenStack Cloud 7 x86_64","former_identifier":"suse-openstack-cloud","release_type":null,"name":"SUSE OpenStack Cloud","offline_predecessor_ids":[],"friendly_version":"7","release_stage":"released","identifier":"suse-openstack-cloud","id":1381,"extensions":[]},{"recommended":false,"version":"12.2","name":"SUSE Linux Enterprise Server for SAP Applications","offline_predecessor_ids":[1329],"friendly_name":"SUSE Linux Enterprise Server for SAP Applications 12 SP2 x86_64","migration_extra":false,"release_type":null,"former_identifier":"SUSE_SLES_SAP","friendly_version":"12 SP2","extensions":[{"id":1150,"release_stage":"released","identifier":"sle-module-legacy","extensions":[],"friendly_version":"12","friendly_name":"Legacy Module 12 x86_64","migration_extra":false,"former_identifier":"sle-module-legacy","release_type":null,"name":"Legacy Module","offline_predecessor_ids":[],"version":"12","recommended":false,"cpe":"cpe:/o:suse:sle-module-legacy:12","product_type":"module","repositories":[{"enabled":true,"id":1676,"distro_target":"sle-12-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/12/x86_64/update/","installer_updates":false,"name":"SLE-Module-Legacy12-Updates","description":"SLE-Module-Legacy12-Updates for sle-12-x86_64"},{"name":"SLE-Module-Legacy12-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-Legacy12-Debuginfo-Updates for sle-12-x86_64","id":1677,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/12/x86_64/update_debug/","autorefresh":true,"distro_target":"sle-12-x86_64"},{"description":"SLE-Module-Legacy12-Pool for sle-12-x86_64","installer_updates":false,"name":"SLE-Module-Legacy12-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/12/x86_64/product/","distro_target":"sle-12-x86_64","autorefresh":false,"id":1678,"enabled":true},{"installer_updates":false,"name":"SLE-Module-Legacy12-Debuginfo-Pool","description":"SLE-Module-Legacy12-Debuginfo-Pool for sle-12-x86_64","id":1679,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/12/x86_64/product_debug/","distro_target":"sle-12-x86_64","autorefresh":false},{"enabled":false,"id":1989,"distro_target":"sle-12-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/12/x86_64/product_source/","installer_updates":false,"name":"SLE-Module-Legacy12-Source-Pool","description":"SLE-Module-Legacy12-Source-Pool for sle-12-x86_64"}],"online_predecessor_ids":[],"product_class":"MODULE","predecessor_ids":[],"arch":"x86_64","eula_url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/12/x86_64/product.license/","shortname":"Legacy-Module","description":"

The Legacy Module helps you migrating applications from SUSE Linux Enterprise 10 and 11 and other systems to SUSE Linux Enterprise 12, by providing packages which are discontinued on SUSE Linux Enterprise Server, such as: sendmail, syslog-ng, IBM Java6, and a number of libraries (for example openssl-0.9.8).

Access to the Legacy Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself. Packages in the this module are usually supported for at most three years. Support for Sendmail and IBM Java 6 will end in September 2017 the latest.

","free":true},{"eula_url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/12/x86_64/product.license/","arch":"x86_64","free":true,"shortname":"Web-and-Scripting-Module","description":"

The SUSE Linux Enterprise Web and Scripting Module delivers a comprehensive suite of scripting languages, frameworks, and related tools helping developers and systems administrators accelerate the creation of stable, modern web applications, using dynamic languages, such as PHP, Ruby on Rails, and Python.

Access to the Web and Scripting Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself: Package versions in the this module are usually supported for at most three years. We are planning to release more recent versions on a schedule of approximately 18 month; the exact dates may differ per package.

","product_type":"module","cpe":"cpe:/o:suse:sle-module-web-scripting:12","predecessor_ids":[],"product_class":"MODULE","online_predecessor_ids":[],"repositories":[{"description":"SLE-Module-Web-Scripting12-Updates for sle-12-x86_64","name":"SLE-Module-Web-Scripting12-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/12/x86_64/update/","enabled":true,"id":1688},{"id":1689,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/12/x86_64/update_debug/","autorefresh":true,"distro_target":"sle-12-x86_64","name":"SLE-Module-Web-Scripting12-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-Web-Scripting12-Debuginfo-Updates for sle-12-x86_64"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/12/x86_64/product/","autorefresh":false,"distro_target":"sle-12-x86_64","id":1690,"enabled":true,"description":"SLE-Module-Web-Scripting12-Pool for sle-12-x86_64","name":"SLE-Module-Web-Scripting12-Pool","installer_updates":false},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/12/x86_64/product_debug/","autorefresh":false,"distro_target":"sle-12-x86_64","id":1691,"enabled":false,"description":"SLE-Module-Web-Scripting12-Debuginfo-Pool for sle-12-x86_64","name":"SLE-Module-Web-Scripting12-Debuginfo-Pool","installer_updates":false},{"id":1992,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/12/x86_64/product_source/","autorefresh":false,"distro_target":"sle-12-x86_64","name":"SLE-Module-Web-Scripting12-Source-Pool","installer_updates":false,"description":"SLE-Module-Web-Scripting12-Source-Pool for sle-12-x86_64"}],"offline_predecessor_ids":[],"name":"Web and Scripting Module","former_identifier":"sle-module-web-scripting","release_type":null,"friendly_name":"Web and Scripting Module 12 x86_64","migration_extra":false,"recommended":false,"version":"12","extensions":[],"release_stage":"released","id":1153,"identifier":"sle-module-web-scripting","friendly_version":"12"},{"free":true,"description":"

This Module contains current versions of the popular configuration management frameworks Puppet and CFEngine as well as the new systems management toolbox called machinery.

The machinery tool will be frequently updated and is SUSE's upcoming systems management toolbox for inspecting and validating systems remotely, storing their system description and creating new systems to deploy them in datacenters and clouds.

","shortname":"Adv-Sys-Mgmt-Module","eula_url":"","arch":"x86_64","predecessor_ids":[],"online_predecessor_ids":[],"repositories":[{"description":"SLE-Module-Adv-Systems-Management12-Updates for sle-12-x86_64","name":"SLE-Module-Adv-Systems-Management12-Updates","installer_updates":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Adv-Systems-Management/12/x86_64/update/","autorefresh":true,"distro_target":"sle-12-x86_64","id":1704,"enabled":true},{"description":"SLE-Module-Adv-Systems-Management12-Debuginfo-Updates for sle-12-x86_64","name":"SLE-Module-Adv-Systems-Management12-Debuginfo-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Adv-Systems-Management/12/x86_64/update_debug/","enabled":false,"id":1705},{"description":"SLE-Module-Adv-Systems-Management12-Pool for sle-12-x86_64","installer_updates":false,"name":"SLE-Module-Adv-Systems-Management12-Pool","distro_target":"sle-12-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Adv-Systems-Management/12/x86_64/product/","enabled":true,"id":1706},{"id":1707,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Adv-Systems-Management/12/x86_64/product_debug/","distro_target":"sle-12-x86_64","autorefresh":false,"installer_updates":false,"name":"SLE-Module-Adv-Systems-Management12-Debuginfo-Pool","description":"SLE-Module-Adv-Systems-Management12-Debuginfo-Pool for sle-12-x86_64"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Adv-Systems-Management/12/x86_64/product_source/","autorefresh":false,"distro_target":"sle-12-x86_64","id":1998,"enabled":false,"description":"SLE-Module-Adv-Systems-Management12-Source-Pool for sle-12-x86_64","name":"SLE-Module-Adv-Systems-Management12-Source-Pool","installer_updates":false}],"product_class":"MODULE","product_type":"module","cpe":"cpe:/o:suse:sle-module-adv-systems-management:12","recommended":false,"version":"12","offline_predecessor_ids":[],"name":"Advanced Systems Management Module","release_type":null,"former_identifier":"sle-module-adv-systems-management","migration_extra":false,"friendly_name":"Advanced Systems Management Module 12 x86_64","friendly_version":"12","extensions":[],"release_stage":"released","identifier":"sle-module-adv-systems-management","id":1212},{"version":"12","recommended":false,"friendly_name":"Public Cloud Module 12 x86_64","migration_extra":false,"release_type":null,"former_identifier":"sle-module-public-cloud","name":"Public Cloud Module","offline_predecessor_ids":[],"friendly_version":"12","release_stage":"released","identifier":"sle-module-public-cloud","id":1220,"extensions":[],"shortname":"Public-Cloud-Module","description":"

The Public Cloud Module is a collection of tools that enables you to create and manage cloud images from the commandline on SUSE Linux Enterprise Server. When building your own images with KIWI or SUSE Studio, initialization code specific to the target cloud is included in that image.

Access to the Public Cloud Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself; please check the Release Notes for further details.

","free":true,"arch":"x86_64","eula_url":"","repositories":[{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/12/x86_64/update/","autorefresh":true,"distro_target":"sle-12-x86_64","id":1700,"enabled":true,"description":"SLE-Module-Public-Cloud12-Updates for sle-12-x86_64","name":"SLE-Module-Public-Cloud12-Updates","installer_updates":false},{"autorefresh":true,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/12/x86_64/update_debug/","enabled":false,"id":1701,"description":"SLE-Module-Public-Cloud12-Debuginfo-Updates for sle-12-x86_64","name":"SLE-Module-Public-Cloud12-Debuginfo-Updates","installer_updates":false},{"description":"SLE-Module-Public-Cloud12-Pool for sle-12-x86_64","installer_updates":false,"name":"SLE-Module-Public-Cloud12-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/12/x86_64/product/","distro_target":"sle-12-x86_64","autorefresh":false,"id":1702,"enabled":true},{"description":"SLE-Module-Public-Cloud12-Debuginfo-Pool for sle-12-x86_64","name":"SLE-Module-Public-Cloud12-Debuginfo-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/12/x86_64/product_debug/","enabled":false,"id":1703},{"name":"SLE-Module-Public-Cloud12-Source-Pool","installer_updates":false,"description":"SLE-Module-Public-Cloud12-Source-Pool for sle-12-x86_64","enabled":false,"id":1995,"autorefresh":false,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/12/x86_64/product_source/"}],"online_predecessor_ids":[],"product_class":"MODULE","predecessor_ids":[],"cpe":"cpe:/o:suse:sle-module-public-cloud:12","product_type":"module"},{"version":"12","recommended":false,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Live Patching 12 x86_64","release_type":null,"former_identifier":"sle-live-patching","name":"SUSE Linux Enterprise Live Patching","offline_predecessor_ids":[],"friendly_version":"12","identifier":"sle-live-patching","release_stage":"released","id":1253,"extensions":[],"description":"

SUSE Linux Enterprise Live Patching provides packages to update critical kernel modules live in SUSE Linux Enterprise. With SUSE Linux Enterprise Live Patching, you can perform critical kernel patching without shutting down your system, reducing the need for planned downtime and increasing service availability.

","shortname":"Live-Patching","free":false,"arch":"x86_64","eula_url":"https://updates.suse.com/SUSE/Products/SLE-Live-Patching/12/x86_64/product.license/","online_predecessor_ids":[],"product_class":"SLE-LP","repositories":[{"name":"SLE-Live-Patching12-Updates","installer_updates":false,"description":"SLE-Live-Patching12-Updates for sle-12-x86_64","enabled":true,"id":1741,"autorefresh":true,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Live-Patching/12/x86_64/update/"},{"name":"SLE-Live-Patching12-Debuginfo-Updates","installer_updates":false,"description":"SLE-Live-Patching12-Debuginfo-Updates for sle-12-x86_64","id":1742,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Live-Patching/12/x86_64/update_debug/","autorefresh":true,"distro_target":"sle-12-x86_64"},{"description":"SLE-Live-Patching12-Pool for sle-12-x86_64","name":"SLE-Live-Patching12-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Live-Patching/12/x86_64/product/","enabled":true,"id":1743},{"id":1744,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Live-Patching/12/x86_64/product_debug/","autorefresh":false,"distro_target":"sle-12-x86_64","name":"SLE-Live-Patching12-Debuginfo-Pool","installer_updates":false,"description":"SLE-Live-Patching12-Debuginfo-Pool for sle-12-x86_64"},{"distro_target":"sle-12-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Live-Patching/12/x86_64/product_source/","enabled":false,"id":1986,"description":"SLE-Live-Patching12-Source-Pool for sle-12-x86_64","installer_updates":false,"name":"SLE-Live-Patching12-Source-Pool"}],"predecessor_ids":[],"cpe":"cpe:/o:suse:sle-live-patching:12","product_type":"extension"},{"offline_predecessor_ids":[],"name":"Containers Module","former_identifier":"sle-module-containers","release_type":null,"friendly_name":"Containers Module 12 x86_64","migration_extra":false,"recommended":false,"version":"12","extensions":[],"release_stage":"released","id":1332,"identifier":"sle-module-containers","friendly_version":"12","eula_url":"","arch":"x86_64","free":true,"shortname":"Containers-Module","description":"

This Module contains several packages revolving around containers and related tools.

","product_type":"module","cpe":"cpe:/o:suse:sle-module-containers:12","predecessor_ids":[],"online_predecessor_ids":[],"repositories":[{"installer_updates":false,"name":"SLE-Module-Containers12-Updates","description":"SLE-Module-Containers12-Updates for sle-12-x86_64","id":1864,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/12/x86_64/update/","distro_target":"sle-12-x86_64","autorefresh":true},{"id":1865,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/12/x86_64/update_debug/","distro_target":"sle-12-x86_64","autorefresh":true,"installer_updates":false,"name":"SLE-Module-Containers12-Debuginfo-Updates","description":"SLE-Module-Containers12-Debuginfo-Updates for sle-12-x86_64"},{"description":"SLE-Module-Containers12-Pool for sle-12-x86_64","name":"SLE-Module-Containers12-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/12/x86_64/product/","autorefresh":false,"distro_target":"sle-12-x86_64","id":1866,"enabled":true},{"description":"SLE-Module-Containers12-Debuginfo-Pool for sle-12-x86_64","name":"SLE-Module-Containers12-Debuginfo-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/12/x86_64/product_debug/","autorefresh":false,"distro_target":"sle-12-x86_64","id":1867,"enabled":false},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/12/x86_64/product_source/","autorefresh":false,"distro_target":"sle-12-x86_64","id":1957,"enabled":false,"description":"SLE-Module-Containers12-Source-Pool for sle-12-x86_64","name":"SLE-Module-Containers12-Source-Pool","installer_updates":false}],"product_class":"MODULE"},{"shortname":"Toolchain-Module","description":"Via this Module you will have access to a more recent GCC and Toolchain in addition to the default compiler of SUSE Linux Enterprise. Access to the Toolchain Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself. Please check the Release Notes for further details.","free":true,"eula_url":"","arch":"x86_64","predecessor_ids":[],"online_predecessor_ids":[],"repositories":[{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Toolchain/12/x86_64/update/","distro_target":"sle-12-x86_64","autorefresh":true,"id":1903,"enabled":true,"description":"SLE-Module-Toolchain12-Updates for sle-12-x86_64","installer_updates":false,"name":"SLE-Module-Toolchain12-Updates"},{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Toolchain/12/x86_64/update_debug/","autorefresh":true,"distro_target":"sle-12-x86_64","id":1904,"enabled":false,"description":"SLE-Module-Toolchain12-Debuginfo-Updates for sle-12-x86_64","name":"SLE-Module-Toolchain12-Debuginfo-Updates","installer_updates":false},{"name":"SLE-Module-Toolchain12-Pool","installer_updates":false,"description":"SLE-Module-Toolchain12-Pool for sle-12-x86_64","id":1905,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Toolchain/12/x86_64/product/","autorefresh":false,"distro_target":"sle-12-x86_64"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Toolchain/12/x86_64/product_debug/","distro_target":"sle-12-x86_64","autorefresh":false,"id":1906,"enabled":false,"description":"SLE-Module-Toolchain12-Debuginfo-Pool for sle-12-x86_64","installer_updates":false,"name":"SLE-Module-Toolchain12-Debuginfo-Pool"}],"product_class":"MODULE","cpe":"cpe:/o:suse:sle-module-toolchain:12","product_type":"module","recommended":false,"version":"12","name":"Toolchain Module","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"Toolchain Module 12 x86_64","release_type":null,"former_identifier":"sle-module-toolchain","friendly_version":"12","extensions":[],"release_stage":"released","id":1341,"identifier":"sle-module-toolchain"},{"recommended":false,"version":"12.2","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Workstation Extension","release_type":null,"former_identifier":"sle-we","friendly_name":"SUSE Linux Enterprise Workstation Extension 12 SP2 x86_64","migration_extra":false,"friendly_version":"12 SP2","extensions":[],"id":1359,"release_stage":"released","identifier":"sle-we","free":false,"shortname":"SLEWE12-SP2","description":"SUSE Linux Enterprise Workstation Extension extends the functionality of SUSE Linux Enterprise Server with packages of SUSE Linux Enterprise Desktop, like additional desktop applications (office suite, email client, graphical editor ...) and libraries. It allows to combine both products to create a full featured Workstation.","eula_url":"https://updates.suse.com/SUSE/Products/SLE-WE/12-SP2/x86_64/product.license/","arch":"x86_64","predecessor_ids":[1222,1338],"online_predecessor_ids":[1222,1338],"repositories":[{"description":"SLE-WE12-SP2-Updates for sle-12-x86_64","installer_updates":false,"name":"SLE-WE12-SP2-Updates","distro_target":"sle-12-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-WE/12-SP2/x86_64/update/","enabled":true,"id":2024},{"url":"https://updates.suse.com/SUSE/Updates/SLE-WE/12-SP2/x86_64/update_debug/","autorefresh":true,"distro_target":"sle-12-x86_64","id":2025,"enabled":false,"description":"SLE-WE12-SP2-Debuginfo-Updates for sle-12-x86_64","name":"SLE-WE12-SP2-Debuginfo-Updates","installer_updates":false},{"id":2026,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-WE/12-SP2/x86_64/product/","distro_target":"sle-12-x86_64","autorefresh":false,"installer_updates":false,"name":"SLE-WE12-SP2-Pool","description":"SLE-WE12-SP2-Pool for sle-12-x86_64"},{"installer_updates":false,"name":"SLE-WE12-SP2-Debuginfo-Pool","description":"SLE-WE12-SP2-Debuginfo-Pool for sle-12-x86_64","id":2027,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-WE/12-SP2/x86_64/product_debug/","distro_target":"sle-12-x86_64","autorefresh":false},{"id":2028,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-WE/12-SP2/x86_64/product_source/","distro_target":"sle-12-x86_64","autorefresh":false,"installer_updates":false,"name":"SLE-WE12-SP2-Source-Pool","description":"SLE-WE12-SP2-Source-Pool for sle-12-x86_64"},{"enabled":true,"id":2149,"distro_target":null,"autorefresh":true,"url":"http://download.nvidia.com/suse/sle12sp2/","installer_updates":false,"name":"SLE-12-SP2-GA-Desktop-nVidia-Driver","description":"SLE-12-SP2-GA-Desktop-nVidia-Driver"}],"product_class":"SLE-WE","product_type":"extension","cpe":"cpe:/o:suse:sle-we:12:sp2"},{"predecessor_ids":[1157,1337],"product_class":"SLE-HAE-GEO","online_predecessor_ids":[1157,1337],"repositories":[{"id":2044,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-HA-GEO/12-SP2/x86_64/update/","autorefresh":true,"distro_target":"sle-12-x86_64","name":"SLE-HA-GEO12-SP2-Updates","installer_updates":false,"description":"SLE-HA-GEO12-SP2-Updates for sle-12-x86_64"},{"installer_updates":false,"name":"SLE-HA-GEO12-SP2-Debuginfo-Updates","description":"SLE-HA-GEO12-SP2-Debuginfo-Updates for sle-12-x86_64","id":2045,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-HA-GEO/12-SP2/x86_64/update_debug/","distro_target":"sle-12-x86_64","autorefresh":true},{"name":"SLE-HA-GEO12-SP2-Pool","installer_updates":false,"description":"SLE-HA-GEO12-SP2-Pool for sle-12-x86_64","id":2046,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-HA-GEO/12-SP2/x86_64/product/","autorefresh":false,"distro_target":"sle-12-x86_64"},{"enabled":false,"id":2047,"distro_target":"sle-12-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-HA-GEO/12-SP2/x86_64/product_debug/","installer_updates":false,"name":"SLE-HA-GEO12-SP2-Debuginfo-Pool","description":"SLE-HA-GEO12-SP2-Debuginfo-Pool for sle-12-x86_64"},{"description":"SLE-HA-GEO12-SP2-Source-Pool for sle-12-x86_64","name":"SLE-HA-GEO12-SP2-Source-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-HA-GEO/12-SP2/x86_64/product_source/","enabled":false,"id":2048}],"cpe":"cpe:/o:suse:sle-ha-geo:12:sp2","product_type":"extension","shortname":"SLEHAGEO12-SP2","description":"SUSE Linux Enterprise High Availability Geographical Cluster Extension","free":false,"eula_url":"https://updates.suse.com/SUSE/Products/SLE-HA-GEO/12-SP2/x86_64/product.license/","arch":"x86_64","friendly_version":"12 SP2","extensions":[],"identifier":"sle-ha-geo","release_stage":"released","id":1363,"recommended":false,"version":"12.2","name":"SUSE Linux Enterprise High Availability GEO Extension","offline_predecessor_ids":[1101,1107,1286],"migration_extra":false,"friendly_name":"SUSE Linux Enterprise High Availability GEO Extension 12 SP2 x86_64","former_identifier":"sle-hae-geo","release_type":null},{"extensions":[],"identifier":"sle-sdk","release_stage":"released","id":1366,"friendly_version":"12 SP2","name":"SUSE Linux Enterprise Software Development Kit","offline_predecessor_ids":[],"friendly_name":"SUSE Linux Enterprise Software Development Kit 12 SP2 x86_64","migration_extra":false,"former_identifier":"sle-sdk","release_type":null,"recommended":false,"version":"12.2","cpe":"cpe:/o:suse:sle-sdk:12:sp2","product_type":"extension","predecessor_ids":[1223,1323],"online_predecessor_ids":[1223,1323],"product_class":"SLE-SDK","repositories":[{"description":"SLE-SDK12-SP2-Updates for sle-12-x86_64","installer_updates":false,"name":"SLE-SDK12-SP2-Updates","distro_target":"sle-12-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-SDK/12-SP2/x86_64/update/","enabled":true,"id":2059},{"name":"SLE-SDK12-SP2-Debuginfo-Updates","installer_updates":false,"description":"SLE-SDK12-SP2-Debuginfo-Updates for sle-12-x86_64","enabled":false,"id":2060,"autorefresh":true,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-SDK/12-SP2/x86_64/update_debug/"},{"description":"SLE-SDK12-SP2-Pool for sle-12-x86_64","name":"SLE-SDK12-SP2-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-SDK/12-SP2/x86_64/product/","enabled":true,"id":2061},{"id":2062,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-SDK/12-SP2/x86_64/product_debug/","autorefresh":false,"distro_target":"sle-12-x86_64","name":"SLE-SDK12-SP2-Debuginfo-Pool","installer_updates":false,"description":"SLE-SDK12-SP2-Debuginfo-Pool for sle-12-x86_64"},{"url":"https://updates.suse.com/SUSE/Products/SLE-SDK/12-SP2/x86_64/product_source/","distro_target":"sle-12-x86_64","autorefresh":false,"id":2063,"enabled":false,"description":"SLE-SDK12-SP2-Source-Pool for sle-12-x86_64","installer_updates":false,"name":"SLE-SDK12-SP2-Source-Pool"}],"eula_url":"https://updates.suse.com/SUSE/Products/SLE-SDK/12-SP2/x86_64/product.license/","arch":"x86_64","description":"

SUSE Linux Enterprise Software Development Kit 12 is the Software Development Kit for the family of SUSE Linux Enterprise products. It is a free of charge extension for partners and customers working with SUSE Linux Enterprise Server and Desktop and derived products.

Packages on the SDK are delivered without L3 support; maintenance updates will be done for critical security and critical non-security issues, and where needed to remain in sync with packages delivered in the SUSE Linux Enterprise Server and Desktop products.

Packages to rebuild SUSE Linux Enterprise Server are not part of the SUSE Linux Enterprise Software Development Kit.

","shortname":"SDK12-SP2","free":true},{"recommended":false,"version":"4","name":"SUSE Enterprise Storage","offline_predecessor_ids":[],"friendly_name":"SUSE Enterprise Storage 4 x86_64","migration_extra":false,"release_type":null,"former_identifier":"ses","friendly_version":"4","extensions":[],"id":1416,"release_stage":"released","identifier":"ses","description":"SUSE Enterprise Storage 4 for SUSE Linux Enterprise Server 12-SP2, powered by Ceph.","shortname":"SES4","free":false,"eula_url":"https://updates.suse.com/SUSE/Products/Storage/4/x86_64/product.license/","arch":"x86_64","predecessor_ids":[1369],"product_class":"SES","online_predecessor_ids":[1369],"repositories":[{"description":"SUSE-Enterprise-Storage-4-Updates for sle-12-x86_64","name":"SUSE-Enterprise-Storage-4-Updates","installer_updates":false,"url":"https://updates.suse.com/SUSE/Updates/Storage/4/x86_64/update/","autorefresh":true,"distro_target":"sle-12-x86_64","id":2163,"enabled":true},{"url":"https://updates.suse.com/SUSE/Updates/Storage/4/x86_64/update_debug/","autorefresh":true,"distro_target":"sle-12-x86_64","id":2164,"enabled":false,"description":"SUSE-Enterprise-Storage-4-Debuginfo-Updates for sle-12-x86_64","name":"SUSE-Enterprise-Storage-4-Debuginfo-Updates","installer_updates":false},{"url":"https://updates.suse.com/SUSE/Products/Storage/4/x86_64/product/","autorefresh":false,"distro_target":"sle-12-x86_64","id":2165,"enabled":true,"description":"SUSE-Enterprise-Storage-4-Pool for sle-12-x86_64","name":"SUSE-Enterprise-Storage-4-Pool","installer_updates":false},{"name":"SUSE-Enterprise-Storage-4-Debuginfo-Pool","installer_updates":false,"description":"SUSE-Enterprise-Storage-4-Debuginfo-Pool for sle-12-x86_64","enabled":false,"id":2166,"autorefresh":false,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Products/Storage/4/x86_64/product_debug/"},{"url":"https://updates.suse.com/SUSE/Products/Storage/4/x86_64/product_source/","autorefresh":false,"distro_target":"sle-12-x86_64","id":2167,"enabled":false,"description":"SUSE-Enterprise-Storage-4-Source-Pool for sle-12-x86_64","name":"SUSE-Enterprise-Storage-4-Source-Pool","installer_updates":false}],"cpe":"cpe:/o:suse:ses:4","product_type":"extension"},{"extensions":[],"id":1439,"release_stage":"released","identifier":"sle-pos","friendly_version":"12 SP2","name":"SUSE Linux Enterprise Point of Service Image Server","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Point of Service Image Server 12 SP2 x86_64","former_identifier":"sle-pos","release_type":null,"recommended":false,"version":"12.2","cpe":"cpe:/o:suse:sle-pos:12:sp2","product_type":"extension","predecessor_ids":[],"online_predecessor_ids":[],"repositories":[{"url":"https://updates.suse.com/SUSE/Updates/SLE-POS/12-SP2/x86_64/update/","autorefresh":true,"distro_target":"sle-12-x86_64","id":2289,"enabled":true,"description":"SLE-POS12-SP2-Updates for sle-12-x86_64","name":"SLE-POS12-SP2-Updates","installer_updates":false},{"description":"SLE-POS12-SP2-Debuginfo-Updates for sle-12-x86_64","installer_updates":false,"name":"SLE-POS12-SP2-Debuginfo-Updates","distro_target":"sle-12-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-POS/12-SP2/x86_64/update_debug/","enabled":false,"id":2290},{"description":"SLE-POS12-SP2-Pool for sle-12-x86_64","installer_updates":false,"name":"SLE-POS12-SP2-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-POS/12-SP2/x86_64/product/","distro_target":"sle-12-x86_64","autorefresh":false,"id":2291,"enabled":true},{"description":"SLE-POS12-SP2-Debuginfo-Pool for sle-12-x86_64","name":"SLE-POS12-SP2-Debuginfo-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-POS/12-SP2/x86_64/product_debug/","enabled":false,"id":2292},{"description":"SLE-POS12-SP2-Source-Pool for sle-12-x86_64","installer_updates":false,"name":"SLE-POS12-SP2-Source-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-POS/12-SP2/x86_64/product_source/","distro_target":"sle-12-x86_64","autorefresh":false,"id":2293,"enabled":false},{"id":3130,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-POS/12-SP2-CLIENT/x86_64/update/","distro_target":"sle-12-x86_64","autorefresh":true,"installer_updates":false,"name":"SLE-POS12-SP2-CLIENT-Updates","description":"SLE-POS12-SP2-CLIENT-Updates for sle-12-x86_64"},{"description":"SLE-POS12-SP2-CLIENT-Debuginfo-Updates for sle-12-x86_64","name":"SLE-POS12-SP2-CLIENT-Debuginfo-Updates","installer_updates":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-POS/12-SP2-CLIENT/x86_64/update_debug/","autorefresh":true,"distro_target":"sle-12-x86_64","id":3131,"enabled":false}],"product_class":"10040","eula_url":"https://updates.suse.com/SUSE/Products/SLE-POS/12-SP2/x86_64/product.license/","arch":"x86_64","description":"SUSE Linux Enterprise Point of Service Image Server","shortname":"SLEPOS12","free":false},{"product_type":"module","cpe":"cpe:/o:suse:sle-module-hpc:12","online_predecessor_ids":[],"product_class":"MODULE","repositories":[{"description":"SLE-Module-HPC12-Updates for sle-12-x86_64","name":"SLE-Module-HPC12-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-HPC/12/x86_64/update/","enabled":true,"id":2294},{"enabled":false,"id":2295,"autorefresh":true,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-HPC/12/x86_64/update_debug/","name":"SLE-Module-HPC12-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-HPC12-Debuginfo-Updates for sle-12-x86_64"},{"description":"SLE-Module-HPC12-Pool for sle-12-x86_64","installer_updates":false,"name":"SLE-Module-HPC12-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-HPC/12/x86_64/product/","distro_target":"sle-12-x86_64","autorefresh":false,"id":2296,"enabled":true},{"description":"SLE-Module-HPC12-Debuginfo-Pool for sle-12-x86_64","name":"SLE-Module-HPC12-Debuginfo-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-HPC/12/x86_64/product_debug/","autorefresh":false,"distro_target":"sle-12-x86_64","id":2297,"enabled":false},{"description":"SLE-Module-HPC12-Source-Pool for sle-12-x86_64","name":"SLE-Module-HPC12-Source-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-HPC/12/x86_64/product_source/","autorefresh":false,"distro_target":"sle-12-x86_64","id":2298,"enabled":false}],"predecessor_ids":[],"arch":"x86_64","eula_url":"https://updates.suse.com/SUSE/Products/SLE-Module-HPC/12/x86_64/product.license/","free":true,"description":"The SUSE Linux Enterprise Server High Performance Computing (HPC) module delivers specific tools commonly used for high performance, numerically intensive workloads. SUSE packages these tools in the SLES HPC Module to provide greater flexibility to deliver new versions or new tools more rapidly than the standard SUSE Linux Enterprise lifecycle would permit. Packages in this module are general supported till a newer version of the package is released or the package is dropped from the module.","shortname":"HPC-Module","identifier":"sle-module-hpc","release_stage":"released","id":1440,"extensions":[],"friendly_version":"12","former_identifier":"sle-module-hpc","release_type":null,"friendly_name":"HPC Module 12 x86_64","migration_extra":false,"offline_predecessor_ids":[],"name":"HPC Module","version":"12","recommended":false},{"free":true,"shortname":"SUSE-PackageHub-12-SP2","description":"SUSE Package Hub is a free of charge extension providing access to community maintained packages built to run on SUSE Linux Enterprise Server. Built from the same sources used in the openSUSE distributions, these quality packages provide additional software to what is found in the SUSE Linux Enterprise Server product. Packages from the Package Hub are delivered without L3 support from SUSE. General updates and fixes to the packages in SUSE Package Hub are provided by the openSUSE community based on their discretion though SUSE will monitor and ensure that any known critical security issues will be addressed. Packages in the Package Hub are approved by SUSE for use with SUSE Linux Enterprise Server 12 and to not interfere with the supportability of SUSE Linux Enterprise Server it's modules and extensions. For more information about SUSE Package Hub please visit https://packagehub.suse.com.","eula_url":"","arch":"x86_64","predecessor_ids":[1473,1476],"online_predecessor_ids":[1473,1476],"repositories":[{"id":2345,"enabled":true,"url":"https://updates.suse.com/SUSE/Backports/SLE-12-SP2_x86_64/standard/","autorefresh":false,"distro_target":"sle-12-x86_64","name":"SUSE-PackageHub-12-SP2-Standard-Pool","installer_updates":false,"description":"SUSE-PackageHub-12-SP2-Standard-Pool for sle-12-x86_64"},{"enabled":false,"id":2346,"autorefresh":true,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Backports/SLE-12-SP2_x86_64/standard_debug/","name":"SUSE-PackageHub-12-SP2-Debuginfo","installer_updates":false,"description":"SUSE-PackageHub-12-SP2-Debuginfo for sle-12-x86_64"},{"enabled":true,"id":2347,"distro_target":"sle-12-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Backports/SLE-12-SP2_x86_64/product/","installer_updates":false,"name":"SUSE-PackageHub-12-SP2-Pool","description":"SUSE-PackageHub-12-SP2-Pool for sle-12-x86_64"}],"product_class":"7261","product_type":"extension","cpe":"cpe:/o:suse:packagehub:12:sp2","recommended":false,"version":"12.2","offline_predecessor_ids":[],"name":"SUSE Package Hub","former_identifier":"PackageHub","release_type":null,"migration_extra":false,"friendly_name":"SUSE Package Hub 12 SP2 x86_64","friendly_version":"12 SP2","extensions":[],"id":1479,"release_stage":"released","identifier":"PackageHub"},{"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Server LTSS 12 SP2 x86_64","release_type":null,"former_identifier":"SLES-LTSS","name":"SUSE Linux Enterprise Server LTSS","offline_predecessor_ids":[],"version":"12.2","recommended":false,"release_stage":"released","id":1739,"identifier":"SLES-LTSS","extensions":[],"friendly_version":"12 SP2","arch":"x86_64","eula_url":"","shortname":"SLES12-SP2 LTSS","description":"SUSE Linux Enterprise offers a comprehensive suite of products built on a single code base. The platform addresses business needs from the smallest thin-client devices to the world's most powerful high-performance computing and mainframe servers. SUSE Linux Enterprise offers common management tools and technology certifications across the platform, and each product is enterprise-class.","free":false,"cpe":"cpe:/o:suse:sles-ltss:12:sp2","product_type":"extension","repositories":[{"description":"SLES12-SP2-LTSS-Updates for sle-12-x86_64","name":"SLES12-SP2-LTSS-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-SP2-LTSS/x86_64/update/","enabled":true,"id":3048},{"installer_updates":false,"name":"SLES12-SP2-LTSS-Debuginfo-Updates","description":"SLES12-SP2-LTSS-Debuginfo-Updates for sle-12-x86_64","enabled":false,"id":3049,"distro_target":"sle-12-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-SP2-LTSS/x86_64/update_debug/"}],"online_predecessor_ids":[],"product_class":"SLES12-SP2-LTSS-X86","predecessor_ids":[]}],"id":1414,"release_stage":"released","identifier":"SLES_SAP","shortname":"SLE-12-SP2-SAP","description":"SUSE LINUX Enterprise Server 12 SP2 for SAP Applications","free":false,"eula_url":"https://updates.suse.com/SUSE/Products/SLE-SAP/12-SP2/x86_64/product.license/","arch":"x86_64","predecessor_ids":[1319,1346],"online_predecessor_ids":[1319,1346],"repositories":[{"name":"SLES12-SP2-Updates","installer_updates":false,"description":"SLES12-SP2-Updates for sle-12-x86_64","enabled":true,"id":2013,"autorefresh":true,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-SP2/x86_64/update/"},{"description":"SLES12-SP2-Debuginfo-Updates for sle-12-x86_64","name":"SLES12-SP2-Debuginfo-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-SP2/x86_64/update_debug/","enabled":false,"id":2014},{"id":2015,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-SERVER/12-SP2/x86_64/product/","distro_target":"sle-12-x86_64","autorefresh":false,"installer_updates":false,"name":"SLES12-SP2-Pool","description":"SLES12-SP2-Pool for sle-12-x86_64"},{"url":"https://updates.suse.com/SUSE/Products/SLE-SERVER/12-SP2/x86_64/product_debug/","distro_target":"sle-12-x86_64","autorefresh":false,"id":2016,"enabled":false,"description":"SLES12-SP2-Debuginfo-Pool for sle-12-x86_64","installer_updates":false,"name":"SLES12-SP2-Debuginfo-Pool"},{"enabled":false,"id":2017,"distro_target":"sle-12-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-SERVER/12-SP2/x86_64/product_source/","installer_updates":false,"name":"SLES12-SP2-Source-Pool","description":"SLES12-SP2-Source-Pool for sle-12-x86_64"},{"url":"https://updates.suse.com/SUSE/Updates/SLE-HA/12-SP2/x86_64/update/","autorefresh":true,"distro_target":"sle-12-x86_64","id":2034,"enabled":true,"description":"SLE-HA12-SP2-Updates for sle-12-x86_64","name":"SLE-HA12-SP2-Updates","installer_updates":false},{"installer_updates":false,"name":"SLE-HA12-SP2-Debuginfo-Updates","description":"SLE-HA12-SP2-Debuginfo-Updates for sle-12-x86_64","enabled":false,"id":2035,"distro_target":"sle-12-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-HA/12-SP2/x86_64/update_debug/"},{"name":"SLE-HA12-SP2-Pool","installer_updates":false,"description":"SLE-HA12-SP2-Pool for sle-12-x86_64","id":2036,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-HA/12-SP2/x86_64/product/","autorefresh":false,"distro_target":"sle-12-x86_64"},{"id":2037,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-HA/12-SP2/x86_64/product_debug/","autorefresh":false,"distro_target":"sle-12-x86_64","name":"SLE-HA12-SP2-Debuginfo-Pool","installer_updates":false,"description":"SLE-HA12-SP2-Debuginfo-Pool for sle-12-x86_64"},{"description":"SLE-HA12-SP2-Source-Pool for sle-12-x86_64","name":"SLE-HA12-SP2-Source-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-HA/12-SP2/x86_64/product_source/","enabled":false,"id":2038},{"description":"SLE-12-SP2-SAP-Updates for sle-12-x86_64","installer_updates":false,"name":"SLE-12-SP2-SAP-Updates","url":"https://updates.suse.com/SUSE/Updates/SLE-SAP/12-SP2/x86_64/update/","distro_target":"sle-12-x86_64","autorefresh":true,"id":2150,"enabled":true},{"id":2151,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-SAP/12-SP2/x86_64/update_debug/","autorefresh":true,"distro_target":"sle-12-x86_64","name":"SLE-12-SP2-SAP-Debuginfo-Updates","installer_updates":false,"description":"SLE-12-SP2-SAP-Debuginfo-Updates for sle-12-x86_64"},{"description":"SLE12-SP2-SAP-Pool for sle-12-x86_64","name":"SLE12-SP2-SAP-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-SAP/12-SP2/x86_64/product/","autorefresh":false,"distro_target":"sle-12-x86_64","id":2152,"enabled":true},{"id":2153,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-SAP/12-SP2/x86_64/product_debug/","distro_target":"sle-12-x86_64","autorefresh":false,"installer_updates":false,"name":"SLE12-SP2-SAP-Debuginfo-Pool","description":"SLE12-SP2-SAP-Debuginfo-Pool for sle-12-x86_64"},{"enabled":false,"id":2154,"autorefresh":false,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-SAP/12-SP2/x86_64/product_source/","name":"SLE12-SP2-SAP-Source-Pool","installer_updates":false,"description":"SLE12-SP2-SAP-Source-Pool for sle-12-x86_64"},{"enabled":false,"id":2162,"autorefresh":true,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-SAP-INSTALLER/12-SP2/x86_64/update/","name":"SLE12-SP2-SAP-Installer-Updates","installer_updates":true,"description":"SLE12-SP2-SAP-Installer-Updates for sle-12-x86_64"}],"product_class":"AiO","cpe":"cpe:/o:suse:sles_sap:12:sp2","product_type":"base"},{"migration_extra":false,"friendly_name":"SUSE Enterprise Storage 4 x86_64","release_type":null,"former_identifier":"ses","name":"SUSE Enterprise Storage","offline_predecessor_ids":[],"version":"4","recommended":false,"release_stage":"released","id":1416,"identifier":"ses","extensions":[],"friendly_version":"4","arch":"x86_64","eula_url":"https://updates.suse.com/SUSE/Products/Storage/4/x86_64/product.license/","description":"SUSE Enterprise Storage 4 for SUSE Linux Enterprise Server 12-SP2, powered by Ceph.","shortname":"SES4","free":false,"cpe":"cpe:/o:suse:ses:4","product_type":"extension","product_class":"SES","online_predecessor_ids":[1369],"repositories":[{"installer_updates":false,"name":"SUSE-Enterprise-Storage-4-Updates","description":"SUSE-Enterprise-Storage-4-Updates for sle-12-x86_64","enabled":true,"id":2163,"distro_target":"sle-12-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/Storage/4/x86_64/update/"},{"distro_target":"sle-12-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/Storage/4/x86_64/update_debug/","enabled":false,"id":2164,"description":"SUSE-Enterprise-Storage-4-Debuginfo-Updates for sle-12-x86_64","installer_updates":false,"name":"SUSE-Enterprise-Storage-4-Debuginfo-Updates"},{"installer_updates":false,"name":"SUSE-Enterprise-Storage-4-Pool","description":"SUSE-Enterprise-Storage-4-Pool for sle-12-x86_64","enabled":true,"id":2165,"distro_target":"sle-12-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/Storage/4/x86_64/product/"},{"name":"SUSE-Enterprise-Storage-4-Debuginfo-Pool","installer_updates":false,"description":"SUSE-Enterprise-Storage-4-Debuginfo-Pool for sle-12-x86_64","enabled":false,"id":2166,"autorefresh":false,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Products/Storage/4/x86_64/product_debug/"},{"description":"SUSE-Enterprise-Storage-4-Source-Pool for sle-12-x86_64","name":"SUSE-Enterprise-Storage-4-Source-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/Storage/4/x86_64/product_source/","autorefresh":false,"distro_target":"sle-12-x86_64","id":2167,"enabled":false}],"predecessor_ids":[1369]},{"friendly_version":"4","release_stage":"released","identifier":"ses","id":1417,"extensions":[],"version":"4","recommended":false,"former_identifier":"ses","release_type":null,"friendly_name":"SUSE Enterprise Storage 4 aarch64","migration_extra":false,"offline_predecessor_ids":[],"name":"SUSE Enterprise Storage","product_class":"SES-ARM64","online_predecessor_ids":[],"repositories":[{"distro_target":"sle-12-aarch64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/Storage/4/aarch64/update/","enabled":true,"id":2168,"description":"SUSE-Enterprise-Storage-4-Updates for sle-12-aarch64","installer_updates":false,"name":"SUSE-Enterprise-Storage-4-Updates"},{"description":"SUSE-Enterprise-Storage-4-Debuginfo-Updates for sle-12-aarch64","installer_updates":false,"name":"SUSE-Enterprise-Storage-4-Debuginfo-Updates","url":"https://updates.suse.com/SUSE/Updates/Storage/4/aarch64/update_debug/","distro_target":"sle-12-aarch64","autorefresh":true,"id":2169,"enabled":false},{"installer_updates":false,"name":"SUSE-Enterprise-Storage-4-Pool","description":"SUSE-Enterprise-Storage-4-Pool for sle-12-aarch64","id":2170,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/Storage/4/aarch64/product/","distro_target":"sle-12-aarch64","autorefresh":false},{"enabled":false,"id":2171,"autorefresh":false,"distro_target":"sle-12-aarch64","url":"https://updates.suse.com/SUSE/Products/Storage/4/aarch64/product_debug/","name":"SUSE-Enterprise-Storage-4-Debuginfo-Pool","installer_updates":false,"description":"SUSE-Enterprise-Storage-4-Debuginfo-Pool for sle-12-aarch64"},{"autorefresh":false,"distro_target":"sle-12-aarch64","url":"https://updates.suse.com/SUSE/Products/Storage/4/aarch64/product_source/","enabled":false,"id":2172,"description":"SUSE-Enterprise-Storage-4-Source-Pool for sle-12-aarch64","name":"SUSE-Enterprise-Storage-4-Source-Pool","installer_updates":false}],"predecessor_ids":[],"product_type":"extension","cpe":"cpe:/o:suse:ses:4","free":false,"shortname":"SES4","description":"SUSE Enterprise Storage 4 for SUSE Linux Enterprise Server 12-SP2, powered by Ceph.","arch":"aarch64","eula_url":"https://updates.suse.com/SUSE/Products/Storage/4/aarch64/product.license/"},{"cpe":"cpe:/o:suse:sles_rpi:12:sp2","product_type":"base","online_predecessor_ids":[],"repositories":[{"name":"SLES12-SP2-RPI-Updates","installer_updates":false,"description":"SLES12-SP2-RPI-Updates for sle-12-aarch64","enabled":true,"id":2173,"autorefresh":true,"distro_target":"sle-12-aarch64","url":"https://updates.suse.com/SUSE/Updates/SLE-RPI/12-SP2/aarch64/update/"},{"name":"SLES12-SP2-RPI-Debuginfo-Updates","installer_updates":false,"description":"SLES12-SP2-RPI-Debuginfo-Updates for sle-12-aarch64","enabled":false,"id":2174,"autorefresh":true,"distro_target":"sle-12-aarch64","url":"https://updates.suse.com/SUSE/Updates/SLE-RPI/12-SP2/aarch64/update_debug/"},{"distro_target":"sle-12-aarch64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-RPI/12-SP2/aarch64/product/","enabled":true,"id":2175,"description":"SLES12-SP2-RPI-Pool for sle-12-aarch64","installer_updates":false,"name":"SLES12-SP2-RPI-Pool"},{"name":"SLES12-SP2-RPI-Debuginfo-Pool","installer_updates":false,"description":"SLES12-SP2-RPI-Debuginfo-Pool for sle-12-aarch64","enabled":false,"id":2176,"autorefresh":false,"distro_target":"sle-12-aarch64","url":"https://updates.suse.com/SUSE/Products/SLE-RPI/12-SP2/aarch64/product_debug/"},{"description":"SLES12-SP2-RPI-Source-Pool for sle-12-aarch64","name":"SLES12-SP2-RPI-Source-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-RPI/12-SP2/aarch64/product_source/","autorefresh":false,"distro_target":"sle-12-aarch64","id":2177,"enabled":false},{"name":"SLES12-SP2-RPI-Installer-Updates","installer_updates":true,"description":"SLES12-SP2-RPI-Installer-Updates for sle-12-aarch64","enabled":false,"id":2178,"autorefresh":true,"distro_target":"sle-12-aarch64","url":"https://updates.suse.com/SUSE/Updates/SLE-RPI-INSTALLER/12-SP2/aarch64/update/"}],"product_class":"SLES-RPI-ARM64","predecessor_ids":[],"arch":"aarch64","eula_url":"https://updates.suse.com/SUSE/Products/SLE-RPI/12-SP2/aarch64/product.license/","shortname":"SLES12-SP2-RPI","description":"SUSE Linux Enterprise offers a comprehensive suite of products built on a single code base. The platform addresses business needs from the smallest thin-client devices to the world's most powerful high-performance computing and mainframe servers. SUSE Linux Enterprise offers common management tools and technology certifications across the platform, and each product is enterprise-class.","free":false,"release_stage":"released","id":1418,"identifier":"SLES_RPI","extensions":[],"friendly_version":"12 SP2","migration_extra":false,"friendly_name":"SUSE Linux Enterprise Server for the Raspberry Pi 12 SP2 aarch64","former_identifier":"SLES_RPI","release_type":null,"name":"SUSE Linux Enterprise Server for the Raspberry Pi","offline_predecessor_ids":[],"version":"12.2","recommended":false},{"offline_predecessor_ids":[],"name":"SUSE Manager Client Tools for SLE","former_identifier":"sle-manager-tools","release_type":null,"migration_extra":false,"friendly_name":"SUSE Manager Client Tools for SLE 12 aarch64","recommended":false,"version":"12","extensions":[],"release_stage":"released","identifier":"sle-manager-tools","id":1419,"friendly_version":"12","eula_url":"","arch":"aarch64","free":false,"description":"SUSE Manager Tools provide packages required to connect to a SUSE Manager Server.","shortname":"Manager-Tools","product_type":"extension","cpe":"cpe:/o:suse:sle-manager-tools:12","predecessor_ids":[],"repositories":[{"name":"SLE-Manager-Tools12-Updates","installer_updates":false,"description":"SLE-Manager-Tools12-Updates for sle-12-aarch64","id":2179,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/12/aarch64/update/","autorefresh":true,"distro_target":"sle-12-aarch64"},{"id":2180,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/12/aarch64/update_debug/","autorefresh":true,"distro_target":"sle-12-aarch64","name":"SLE-Manager-Tools12-Debuginfo-Updates","installer_updates":false,"description":"SLE-Manager-Tools12-Debuginfo-Updates for sle-12-aarch64"},{"enabled":true,"id":2181,"distro_target":"sle-12-aarch64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/12/aarch64/product/","installer_updates":false,"name":"SLE-Manager-Tools12-Pool","description":"SLE-Manager-Tools12-Pool for sle-12-aarch64"},{"name":"SLE-Manager-Tools12-Debuginfo-Pool","installer_updates":false,"description":"SLE-Manager-Tools12-Debuginfo-Pool for sle-12-aarch64","enabled":false,"id":2182,"autorefresh":false,"distro_target":"sle-12-aarch64","url":"https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/12/aarch64/product_debug/"}],"online_predecessor_ids":[],"product_class":"SLE-M-T"},{"friendly_version":"12 SP2","identifier":"sle-ha","release_stage":"released","id":1420,"extensions":[],"version":"12.2","recommended":false,"friendly_name":"SUSE Linux Enterprise High Availability Extension 12 SP2 ppc64le","migration_extra":false,"former_identifier":"sle-hae","release_type":null,"name":"SUSE Linux Enterprise High Availability Extension","offline_predecessor_ids":[],"repositories":[{"autorefresh":true,"distro_target":"sle-12-ppc64le","url":"https://updates.suse.com/SUSE/Updates/SLE-HA/12-SP2/ppc64le/update/","enabled":true,"id":2183,"description":"SLE-HA12-SP2-Updates for sle-12-ppc64le","name":"SLE-HA12-SP2-Updates","installer_updates":false},{"autorefresh":true,"distro_target":"sle-12-ppc64le","url":"https://updates.suse.com/SUSE/Updates/SLE-HA/12-SP2/ppc64le/update_debug/","enabled":false,"id":2184,"description":"SLE-HA12-SP2-Debuginfo-Updates for sle-12-ppc64le","name":"SLE-HA12-SP2-Debuginfo-Updates","installer_updates":false},{"name":"SLE-HA12-SP2-Pool","installer_updates":false,"description":"SLE-HA12-SP2-Pool for sle-12-ppc64le","id":2185,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-HA/12-SP2/ppc64le/product/","autorefresh":false,"distro_target":"sle-12-ppc64le"},{"id":2186,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-HA/12-SP2/ppc64le/product_debug/","autorefresh":false,"distro_target":"sle-12-ppc64le","name":"SLE-HA12-SP2-Debuginfo-Pool","installer_updates":false,"description":"SLE-HA12-SP2-Debuginfo-Pool for sle-12-ppc64le"},{"id":2187,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-HA/12-SP2/ppc64le/product_source/","distro_target":"sle-12-ppc64le","autorefresh":false,"installer_updates":false,"name":"SLE-HA12-SP2-Source-Pool","description":"SLE-HA12-SP2-Source-Pool for sle-12-ppc64le"}],"online_predecessor_ids":[],"product_class":"SLE-HAE-PPC","predecessor_ids":[],"cpe":"cpe:/o:suse:sle-ha:12:sp2","product_type":"extension","shortname":"SLEHA12-SP2","description":"SUSE Linux Enterprise High Availability Extension.","free":false,"arch":"ppc64le","eula_url":"https://updates.suse.com/SUSE/Products/SLE-HA/12-SP2/ppc64le/product.license/"},{"release_stage":"released","identifier":"SLES","id":1421,"extensions":[{"product_type":"module","cpe":"cpe:/o:suse:sle-module-legacy:12","predecessor_ids":[],"online_predecessor_ids":[],"repositories":[{"enabled":true,"id":1676,"distro_target":"sle-12-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/12/x86_64/update/","installer_updates":false,"name":"SLE-Module-Legacy12-Updates","description":"SLE-Module-Legacy12-Updates for sle-12-x86_64"},{"enabled":false,"id":1677,"autorefresh":true,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/12/x86_64/update_debug/","name":"SLE-Module-Legacy12-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-Legacy12-Debuginfo-Updates for sle-12-x86_64"},{"description":"SLE-Module-Legacy12-Pool for sle-12-x86_64","installer_updates":false,"name":"SLE-Module-Legacy12-Pool","distro_target":"sle-12-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/12/x86_64/product/","enabled":true,"id":1678},{"id":1679,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/12/x86_64/product_debug/","distro_target":"sle-12-x86_64","autorefresh":false,"installer_updates":false,"name":"SLE-Module-Legacy12-Debuginfo-Pool","description":"SLE-Module-Legacy12-Debuginfo-Pool for sle-12-x86_64"},{"name":"SLE-Module-Legacy12-Source-Pool","installer_updates":false,"description":"SLE-Module-Legacy12-Source-Pool for sle-12-x86_64","id":1989,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/12/x86_64/product_source/","autorefresh":false,"distro_target":"sle-12-x86_64"}],"product_class":"MODULE","eula_url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/12/x86_64/product.license/","arch":"x86_64","free":true,"shortname":"Legacy-Module","description":"

The Legacy Module helps you migrating applications from SUSE Linux Enterprise 10 and 11 and other systems to SUSE Linux Enterprise 12, by providing packages which are discontinued on SUSE Linux Enterprise Server, such as: sendmail, syslog-ng, IBM Java6, and a number of libraries (for example openssl-0.9.8).

Access to the Legacy Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself. Packages in the this module are usually supported for at most three years. Support for Sendmail and IBM Java 6 will end in September 2017 the latest.

","extensions":[],"id":1150,"release_stage":"released","identifier":"sle-module-legacy","friendly_version":"12","offline_predecessor_ids":[],"name":"Legacy Module","release_type":null,"former_identifier":"sle-module-legacy","friendly_name":"Legacy Module 12 x86_64","migration_extra":false,"recommended":false,"version":"12"},{"friendly_version":"12","extensions":[],"identifier":"sle-module-web-scripting","release_stage":"released","id":1153,"recommended":false,"version":"12","offline_predecessor_ids":[],"name":"Web and Scripting Module","former_identifier":"sle-module-web-scripting","release_type":null,"friendly_name":"Web and Scripting Module 12 x86_64","migration_extra":false,"predecessor_ids":[],"repositories":[{"installer_updates":false,"name":"SLE-Module-Web-Scripting12-Updates","description":"SLE-Module-Web-Scripting12-Updates for sle-12-x86_64","enabled":true,"id":1688,"distro_target":"sle-12-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/12/x86_64/update/"},{"name":"SLE-Module-Web-Scripting12-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-Web-Scripting12-Debuginfo-Updates for sle-12-x86_64","enabled":false,"id":1689,"autorefresh":true,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/12/x86_64/update_debug/"},{"autorefresh":false,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/12/x86_64/product/","enabled":true,"id":1690,"description":"SLE-Module-Web-Scripting12-Pool for sle-12-x86_64","name":"SLE-Module-Web-Scripting12-Pool","installer_updates":false},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/12/x86_64/product_debug/","autorefresh":false,"distro_target":"sle-12-x86_64","id":1691,"enabled":false,"description":"SLE-Module-Web-Scripting12-Debuginfo-Pool for sle-12-x86_64","name":"SLE-Module-Web-Scripting12-Debuginfo-Pool","installer_updates":false},{"description":"SLE-Module-Web-Scripting12-Source-Pool for sle-12-x86_64","name":"SLE-Module-Web-Scripting12-Source-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/12/x86_64/product_source/","enabled":false,"id":1992}],"online_predecessor_ids":[],"product_class":"MODULE","product_type":"module","cpe":"cpe:/o:suse:sle-module-web-scripting:12","free":true,"shortname":"Web-and-Scripting-Module","description":"

The SUSE Linux Enterprise Web and Scripting Module delivers a comprehensive suite of scripting languages, frameworks, and related tools helping developers and systems administrators accelerate the creation of stable, modern web applications, using dynamic languages, such as PHP, Ruby on Rails, and Python.

Access to the Web and Scripting Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself: Package versions in the this module are usually supported for at most three years. We are planning to release more recent versions on a schedule of approximately 18 month; the exact dates may differ per package.

","eula_url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/12/x86_64/product.license/","arch":"x86_64"},{"arch":"x86_64","eula_url":"","free":true,"description":"

This Module contains current versions of the popular configuration management frameworks Puppet and CFEngine as well as the new systems management toolbox called machinery.

The machinery tool will be frequently updated and is SUSE's upcoming systems management toolbox for inspecting and validating systems remotely, storing their system description and creating new systems to deploy them in datacenters and clouds.

","shortname":"Adv-Sys-Mgmt-Module","product_type":"module","cpe":"cpe:/o:suse:sle-module-adv-systems-management:12","online_predecessor_ids":[],"repositories":[{"enabled":true,"id":1704,"distro_target":"sle-12-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Adv-Systems-Management/12/x86_64/update/","installer_updates":false,"name":"SLE-Module-Adv-Systems-Management12-Updates","description":"SLE-Module-Adv-Systems-Management12-Updates for sle-12-x86_64"},{"distro_target":"sle-12-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Adv-Systems-Management/12/x86_64/update_debug/","enabled":false,"id":1705,"description":"SLE-Module-Adv-Systems-Management12-Debuginfo-Updates for sle-12-x86_64","installer_updates":false,"name":"SLE-Module-Adv-Systems-Management12-Debuginfo-Updates"},{"enabled":true,"id":1706,"distro_target":"sle-12-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Adv-Systems-Management/12/x86_64/product/","installer_updates":false,"name":"SLE-Module-Adv-Systems-Management12-Pool","description":"SLE-Module-Adv-Systems-Management12-Pool for sle-12-x86_64"},{"distro_target":"sle-12-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Adv-Systems-Management/12/x86_64/product_debug/","enabled":false,"id":1707,"description":"SLE-Module-Adv-Systems-Management12-Debuginfo-Pool for sle-12-x86_64","installer_updates":false,"name":"SLE-Module-Adv-Systems-Management12-Debuginfo-Pool"},{"id":1998,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Adv-Systems-Management/12/x86_64/product_source/","distro_target":"sle-12-x86_64","autorefresh":false,"installer_updates":false,"name":"SLE-Module-Adv-Systems-Management12-Source-Pool","description":"SLE-Module-Adv-Systems-Management12-Source-Pool for sle-12-x86_64"}],"product_class":"MODULE","predecessor_ids":[],"release_type":null,"former_identifier":"sle-module-adv-systems-management","friendly_name":"Advanced Systems Management Module 12 x86_64","migration_extra":false,"offline_predecessor_ids":[],"name":"Advanced Systems Management Module","version":"12","recommended":false,"release_stage":"released","identifier":"sle-module-adv-systems-management","id":1212,"extensions":[],"friendly_version":"12"},{"version":"12","recommended":false,"migration_extra":false,"friendly_name":"Public Cloud Module 12 x86_64","former_identifier":"sle-module-public-cloud","release_type":null,"name":"Public Cloud Module","offline_predecessor_ids":[],"friendly_version":"12","release_stage":"released","id":1220,"identifier":"sle-module-public-cloud","extensions":[],"description":"

The Public Cloud Module is a collection of tools that enables you to create and manage cloud images from the commandline on SUSE Linux Enterprise Server. When building your own images with KIWI or SUSE Studio, initialization code specific to the target cloud is included in that image.

Access to the Public Cloud Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself; please check the Release Notes for further details.

","shortname":"Public-Cloud-Module","free":true,"arch":"x86_64","eula_url":"","product_class":"MODULE","online_predecessor_ids":[],"repositories":[{"distro_target":"sle-12-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/12/x86_64/update/","enabled":true,"id":1700,"description":"SLE-Module-Public-Cloud12-Updates for sle-12-x86_64","installer_updates":false,"name":"SLE-Module-Public-Cloud12-Updates"},{"enabled":false,"id":1701,"distro_target":"sle-12-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/12/x86_64/update_debug/","installer_updates":false,"name":"SLE-Module-Public-Cloud12-Debuginfo-Updates","description":"SLE-Module-Public-Cloud12-Debuginfo-Updates for sle-12-x86_64"},{"id":1702,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/12/x86_64/product/","autorefresh":false,"distro_target":"sle-12-x86_64","name":"SLE-Module-Public-Cloud12-Pool","installer_updates":false,"description":"SLE-Module-Public-Cloud12-Pool for sle-12-x86_64"},{"distro_target":"sle-12-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/12/x86_64/product_debug/","enabled":false,"id":1703,"description":"SLE-Module-Public-Cloud12-Debuginfo-Pool for sle-12-x86_64","installer_updates":false,"name":"SLE-Module-Public-Cloud12-Debuginfo-Pool"},{"enabled":false,"id":1995,"distro_target":"sle-12-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/12/x86_64/product_source/","installer_updates":false,"name":"SLE-Module-Public-Cloud12-Source-Pool","description":"SLE-Module-Public-Cloud12-Source-Pool for sle-12-x86_64"}],"predecessor_ids":[],"cpe":"cpe:/o:suse:sle-module-public-cloud:12","product_type":"module"},{"version":"12","recommended":false,"friendly_name":"Containers Module 12 x86_64","migration_extra":false,"former_identifier":"sle-module-containers","release_type":null,"name":"Containers Module","offline_predecessor_ids":[],"friendly_version":"12","identifier":"sle-module-containers","release_stage":"released","id":1332,"extensions":[],"shortname":"Containers-Module","description":"

This Module contains several packages revolving around containers and related tools.

","free":true,"arch":"x86_64","eula_url":"","repositories":[{"installer_updates":false,"name":"SLE-Module-Containers12-Updates","description":"SLE-Module-Containers12-Updates for sle-12-x86_64","enabled":true,"id":1864,"distro_target":"sle-12-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/12/x86_64/update/"},{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/12/x86_64/update_debug/","autorefresh":true,"distro_target":"sle-12-x86_64","id":1865,"enabled":false,"description":"SLE-Module-Containers12-Debuginfo-Updates for sle-12-x86_64","name":"SLE-Module-Containers12-Debuginfo-Updates","installer_updates":false},{"installer_updates":false,"name":"SLE-Module-Containers12-Pool","description":"SLE-Module-Containers12-Pool for sle-12-x86_64","enabled":true,"id":1866,"distro_target":"sle-12-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/12/x86_64/product/"},{"name":"SLE-Module-Containers12-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-Containers12-Debuginfo-Pool for sle-12-x86_64","id":1867,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/12/x86_64/product_debug/","autorefresh":false,"distro_target":"sle-12-x86_64"},{"description":"SLE-Module-Containers12-Source-Pool for sle-12-x86_64","installer_updates":false,"name":"SLE-Module-Containers12-Source-Pool","distro_target":"sle-12-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/12/x86_64/product_source/","enabled":false,"id":1957}],"online_predecessor_ids":[],"product_class":"MODULE","predecessor_ids":[],"cpe":"cpe:/o:suse:sle-module-containers:12","product_type":"module"},{"former_identifier":"sle-module-toolchain","release_type":null,"friendly_name":"Toolchain Module 12 x86_64","migration_extra":false,"offline_predecessor_ids":[],"name":"Toolchain Module","version":"12","recommended":false,"identifier":"sle-module-toolchain","release_stage":"released","id":1341,"extensions":[],"friendly_version":"12","arch":"x86_64","eula_url":"","free":true,"shortname":"Toolchain-Module","description":"Via this Module you will have access to a more recent GCC and Toolchain in addition to the default compiler of SUSE Linux Enterprise. Access to the Toolchain Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself. Please check the Release Notes for further details.","product_type":"module","cpe":"cpe:/o:suse:sle-module-toolchain:12","product_class":"MODULE","online_predecessor_ids":[],"repositories":[{"installer_updates":false,"name":"SLE-Module-Toolchain12-Updates","description":"SLE-Module-Toolchain12-Updates for sle-12-x86_64","enabled":true,"id":1903,"distro_target":"sle-12-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Toolchain/12/x86_64/update/"},{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Toolchain/12/x86_64/update_debug/","distro_target":"sle-12-x86_64","autorefresh":true,"id":1904,"enabled":false,"description":"SLE-Module-Toolchain12-Debuginfo-Updates for sle-12-x86_64","installer_updates":false,"name":"SLE-Module-Toolchain12-Debuginfo-Updates"},{"description":"SLE-Module-Toolchain12-Pool for sle-12-x86_64","installer_updates":false,"name":"SLE-Module-Toolchain12-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Toolchain/12/x86_64/product/","distro_target":"sle-12-x86_64","autorefresh":false,"id":1905,"enabled":true},{"description":"SLE-Module-Toolchain12-Debuginfo-Pool for sle-12-x86_64","installer_updates":false,"name":"SLE-Module-Toolchain12-Debuginfo-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Toolchain/12/x86_64/product_debug/","distro_target":"sle-12-x86_64","autorefresh":false,"id":1906,"enabled":false}],"predecessor_ids":[]},{"free":false,"description":"SUSE Manager lets you efficiently manage physical, virtual, and cloud-based Linux systems. It provides automated and cost-effective configuration and software management, asset management, and system provisioning.","shortname":"SUSE Manager Server","eula_url":"https://updates.suse.com/SUSE/Products/SUSE-Manager-Server/3.0/x86_64/product.license/","arch":"x86_64","predecessor_ids":[],"product_class":"SMS-X86","online_predecessor_ids":[],"repositories":[{"description":"SUSE-Manager-Server-3.0-Updates for sle-12-x86_64","installer_updates":false,"name":"SUSE-Manager-Server-3.0-Updates","distro_target":"sle-12-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SUSE-Manager-Server/3.0/x86_64/update/","enabled":true,"id":1949},{"description":"SUSE-Manager-Server-3.0-Debuginfo-Updates for sle-12-x86_64","installer_updates":false,"name":"SUSE-Manager-Server-3.0-Debuginfo-Updates","url":"https://updates.suse.com/SUSE/Updates/SUSE-Manager-Server/3.0/x86_64/update_debug/","distro_target":"sle-12-x86_64","autorefresh":true,"id":1950,"enabled":false},{"enabled":true,"id":1951,"autorefresh":false,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Products/SUSE-Manager-Server/3.0/x86_64/product/","name":"SUSE-Manager-Server-3.0-Pool","installer_updates":false,"description":"SUSE-Manager-Server-3.0-Pool for sle-12-x86_64"},{"name":"SUSE-Manager-Server-3.0-Debuginfo-Pool","installer_updates":false,"description":"SUSE-Manager-Server-3.0-Debuginfo-Pool for sle-12-x86_64","id":1952,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SUSE-Manager-Server/3.0/x86_64/product_debug/","autorefresh":false,"distro_target":"sle-12-x86_64"},{"distro_target":"sle-12-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SUSE-Manager-Server/3.0/x86_64/product_source/","enabled":false,"id":2001,"description":"SUSE-Manager-Server-3.0-Source-Pool for sle-12-x86_64","installer_updates":false,"name":"SUSE-Manager-Server-3.0-Source-Pool"}],"product_type":"extension","cpe":"cpe:/o:suse:suse-manager-server:3.0","recommended":false,"version":"3.0","offline_predecessor_ids":[],"name":"SUSE Manager Server","release_type":null,"former_identifier":"SUSE-Manager-Server","friendly_name":"SUSE Manager Server 3.0 x86_64","migration_extra":false,"friendly_version":"3.0","extensions":[],"release_stage":"released","id":1349,"identifier":"SUSE-Manager-Server"},{"arch":"x86_64","eula_url":"https://updates.suse.com/SUSE/Products/SUSE-Manager-Proxy/3.0/x86_64/product.license/","shortname":"SUSE Manager Proxy","description":"SUSE Manager Proxies extend large and/or geographically dispersed SUSE Manager environments to reduce load on the SUSE Manager Server, lower bandwidth needs, and provide faster local updates.","free":false,"cpe":"cpe:/o:suse:suse-manager-proxy:3.0","product_type":"extension","product_class":"SMP","online_predecessor_ids":[],"repositories":[{"name":"SUSE-Manager-Proxy-3.0-Updates","installer_updates":false,"description":"SUSE-Manager-Proxy-3.0-Updates for sle-12-x86_64","enabled":true,"id":1968,"autorefresh":true,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Updates/SUSE-Manager-Proxy/3.0/x86_64/update/"},{"id":1969,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SUSE-Manager-Proxy/3.0/x86_64/update_debug/","autorefresh":true,"distro_target":"sle-12-x86_64","name":"SUSE-Manager-Proxy-3.0-Debuginfo-Updates","installer_updates":false,"description":"SUSE-Manager-Proxy-3.0-Debuginfo-Updates for sle-12-x86_64"},{"installer_updates":false,"name":"SUSE-Manager-Proxy-3.0-Pool","description":"SUSE-Manager-Proxy-3.0-Pool for sle-12-x86_64","enabled":true,"id":1970,"distro_target":"sle-12-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SUSE-Manager-Proxy/3.0/x86_64/product/"},{"installer_updates":false,"name":"SUSE-Manager-Proxy-3.0-Debuginfo-Pool","description":"SUSE-Manager-Proxy-3.0-Debuginfo-Pool for sle-12-x86_64","enabled":false,"id":1971,"distro_target":"sle-12-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SUSE-Manager-Proxy/3.0/x86_64/product_debug/"},{"description":"SUSE-Manager-Proxy-3.0-Source-Pool for sle-12-x86_64","name":"SUSE-Manager-Proxy-3.0-Source-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SUSE-Manager-Proxy/3.0/x86_64/product_source/","autorefresh":false,"distro_target":"sle-12-x86_64","id":2002,"enabled":false}],"predecessor_ids":[],"friendly_name":"SUSE Manager Proxy 3.0 x86_64","migration_extra":false,"release_type":null,"former_identifier":"SUSE-Manager-Proxy","name":"SUSE Manager Proxy","offline_predecessor_ids":[],"version":"3.0","recommended":false,"release_stage":"released","identifier":"SUSE-Manager-Proxy","id":1352,"extensions":[],"friendly_version":"3.0"},{"cpe":"cpe:/o:suse:sle-sdk:12:sp3","product_type":"extension","predecessor_ids":[1223,1323,1366],"repositories":[{"description":"SLE-SDK12-SP3-Updates for sle-12-x86_64","installer_updates":false,"name":"SLE-SDK12-SP3-Updates","distro_target":"sle-12-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-SDK/12-SP3/x86_64/update/","enabled":true,"id":2230},{"installer_updates":false,"name":"SLE-SDK12-SP3-Debuginfo-Updates","description":"SLE-SDK12-SP3-Debuginfo-Updates for sle-12-x86_64","enabled":false,"id":2231,"distro_target":"sle-12-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-SDK/12-SP3/x86_64/update_debug/"},{"distro_target":"sle-12-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-SDK/12-SP3/x86_64/product/","enabled":true,"id":2232,"description":"SLE-SDK12-SP3-Pool for sle-12-x86_64","installer_updates":false,"name":"SLE-SDK12-SP3-Pool"},{"description":"SLE-SDK12-SP3-Debuginfo-Pool for sle-12-x86_64","installer_updates":false,"name":"SLE-SDK12-SP3-Debuginfo-Pool","distro_target":"sle-12-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-SDK/12-SP3/x86_64/product_debug/","enabled":false,"id":2233},{"installer_updates":false,"name":"SLE-SDK12-SP3-Source-Pool","description":"SLE-SDK12-SP3-Source-Pool for sle-12-x86_64","enabled":false,"id":2234,"distro_target":"sle-12-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-SDK/12-SP3/x86_64/product_source/"}],"online_predecessor_ids":[1223,1323,1366],"product_class":"SLE-SDK","eula_url":"https://updates.suse.com/SUSE/Products/SLE-SDK/12-SP3/x86_64/product.license/","arch":"x86_64","shortname":"SDK12-SP3","description":"

SUSE Linux Enterprise Software Development Kit is the Software Development Kit for the family of SUSE Linux Enterprise products. It is a free of charge extension for partners and customers working with SUSE Linux Enterprise Server and Desktop and derived products.

Packages on the SDK are delivered without L3 support; maintenance updates will be done for critical security and critical non-security issues, and where needed to remain in sync with packages delivered in the SUSE Linux Enterprise Server and Desktop products.

Packages to rebuild SUSE Linux Enterprise Server are not part of the SUSE Linux Enterprise Software Development Kit.

","free":true,"extensions":[],"identifier":"sle-sdk","release_stage":"released","id":1427,"friendly_version":"12 SP3","name":"SUSE Linux Enterprise Software Development Kit","offline_predecessor_ids":[],"friendly_name":"SUSE Linux Enterprise Software Development Kit 12 SP3 x86_64","migration_extra":false,"release_type":null,"former_identifier":"sle-sdk","recommended":false,"version":"12.3"},{"cpe":"cpe:/o:suse:sle-we:12:sp3","product_type":"extension","predecessor_ids":[1222,1338,1359],"online_predecessor_ids":[1222,1338,1359],"product_class":"SLE-WE","repositories":[{"distro_target":null,"autorefresh":true,"url":"http://download.nvidia.com/suse/sle12sp3/","enabled":true,"id":2217,"description":"SLE-12-SP3-GA-Desktop-nVidia-Driver","installer_updates":false,"name":"SLE-12-SP3-GA-Desktop-nVidia-Driver"},{"enabled":true,"id":2250,"distro_target":"sle-12-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-WE/12-SP3/x86_64/update/","installer_updates":false,"name":"SLE-WE12-SP3-Updates","description":"SLE-WE12-SP3-Updates for sle-12-x86_64"},{"enabled":false,"id":2251,"autorefresh":true,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-WE/12-SP3/x86_64/update_debug/","name":"SLE-WE12-SP3-Debuginfo-Updates","installer_updates":false,"description":"SLE-WE12-SP3-Debuginfo-Updates for sle-12-x86_64"},{"id":2252,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-WE/12-SP3/x86_64/product/","distro_target":"sle-12-x86_64","autorefresh":false,"installer_updates":false,"name":"SLE-WE12-SP3-Pool","description":"SLE-WE12-SP3-Pool for sle-12-x86_64"},{"url":"https://updates.suse.com/SUSE/Products/SLE-WE/12-SP3/x86_64/product_debug/","autorefresh":false,"distro_target":"sle-12-x86_64","id":2253,"enabled":false,"description":"SLE-WE12-SP3-Debuginfo-Pool for sle-12-x86_64","name":"SLE-WE12-SP3-Debuginfo-Pool","installer_updates":false},{"autorefresh":false,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-WE/12-SP3/x86_64/product_source/","enabled":false,"id":2254,"description":"SLE-WE12-SP3-Source-Pool for sle-12-x86_64","name":"SLE-WE12-SP3-Source-Pool","installer_updates":false}],"eula_url":"https://updates.suse.com/SUSE/Products/SLE-WE/12-SP3/x86_64/product.license/","arch":"x86_64","shortname":"SLEWE12-SP3","description":"SUSE Linux Enterprise Workstation Extension extends the functionality of SUSE Linux Enterprise Server with packages of SUSE Linux Enterprise Desktop, like additional desktop applications (office suite, email client, graphical editor ...) and libraries. It allows to combine both products to create a full featured Workstation.","free":false,"extensions":[],"release_stage":"released","identifier":"sle-we","id":1431,"friendly_version":"12 SP3","name":"SUSE Linux Enterprise Workstation Extension","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Workstation Extension 12 SP3 x86_64","release_type":null,"former_identifier":"sle-we","recommended":false,"version":"12.3"},{"recommended":false,"version":"12.3","offline_predecessor_ids":[958,961,967,971,1256],"name":"SUSE Linux Enterprise High Availability Extension","release_type":null,"former_identifier":"sle-hae","friendly_name":"SUSE Linux Enterprise High Availability Extension 12 SP3 x86_64","migration_extra":false,"friendly_version":"12 SP3","extensions":[{"identifier":"sle-ha-geo","release_stage":"released","id":1435,"extensions":[],"friendly_version":"12 SP3","migration_extra":false,"friendly_name":"SUSE Linux Enterprise High Availability GEO Extension 12 SP3 x86_64","release_type":null,"former_identifier":"sle-hae-geo","name":"SUSE Linux Enterprise High Availability GEO Extension","offline_predecessor_ids":[1101,1107,1286],"version":"12.3","recommended":false,"cpe":"cpe:/o:suse:sle-ha-geo:12:sp3","product_type":"extension","online_predecessor_ids":[1157,1337,1363],"repositories":[{"url":"https://updates.suse.com/SUSE/Updates/SLE-HA-GEO/12-SP3/x86_64/update/","autorefresh":true,"distro_target":"sle-12-x86_64","id":2265,"enabled":true,"description":"SLE-HA-GEO12-SP3-Updates for sle-12-x86_64","name":"SLE-HA-GEO12-SP3-Updates","installer_updates":false},{"autorefresh":true,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-HA-GEO/12-SP3/x86_64/update_debug/","enabled":false,"id":2266,"description":"SLE-HA-GEO12-SP3-Debuginfo-Updates for sle-12-x86_64","name":"SLE-HA-GEO12-SP3-Debuginfo-Updates","installer_updates":false},{"id":2267,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-HA-GEO/12-SP3/x86_64/product/","distro_target":"sle-12-x86_64","autorefresh":false,"installer_updates":false,"name":"SLE-HA-GEO12-SP3-Pool","description":"SLE-HA-GEO12-SP3-Pool for sle-12-x86_64"},{"url":"https://updates.suse.com/SUSE/Products/SLE-HA-GEO/12-SP3/x86_64/product_debug/","autorefresh":false,"distro_target":"sle-12-x86_64","id":2268,"enabled":false,"description":"SLE-HA-GEO12-SP3-Debuginfo-Pool for sle-12-x86_64","name":"SLE-HA-GEO12-SP3-Debuginfo-Pool","installer_updates":false},{"name":"SLE-HA-GEO12-SP3-Source-Pool","installer_updates":false,"description":"SLE-HA-GEO12-SP3-Source-Pool for sle-12-x86_64","enabled":false,"id":2269,"autorefresh":false,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-HA-GEO/12-SP3/x86_64/product_source/"}],"product_class":"SLE-HAE-GEO","predecessor_ids":[1157,1337,1363],"arch":"x86_64","eula_url":"https://updates.suse.com/SUSE/Products/SLE-HA-GEO/12-SP3/x86_64/product.license/","description":"SUSE Linux Enterprise High Availability Geographical Cluster Extension","shortname":"SLEHAGEO12-SP3","free":false}],"id":1432,"release_stage":"released","identifier":"sle-ha","free":false,"shortname":"SLEHA12-SP3","description":"SUSE Linux Enterprise High Availability Extension.","eula_url":"https://updates.suse.com/SUSE/Products/SLE-HA/12-SP3/x86_64/product.license/","arch":"x86_64","predecessor_ids":[1245,1324,1361],"online_predecessor_ids":[1245,1324,1361],"repositories":[{"enabled":true,"id":2221,"autorefresh":true,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-HA/12-SP3/x86_64/update/","name":"SLE-HA12-SP3-Updates","installer_updates":false,"description":"SLE-HA12-SP3-Updates for sle-12-x86_64"},{"autorefresh":true,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-HA/12-SP3/x86_64/update_debug/","enabled":false,"id":2223,"description":"SLE-HA12-SP3-Debuginfo-Updates for sle-12-x86_64","name":"SLE-HA12-SP3-Debuginfo-Updates","installer_updates":false},{"id":2225,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-HA/12-SP3/x86_64/product/","autorefresh":false,"distro_target":"sle-12-x86_64","name":"SLE-HA12-SP3-Pool","installer_updates":false,"description":"SLE-HA12-SP3-Pool for sle-12-x86_64"},{"url":"https://updates.suse.com/SUSE/Products/SLE-HA/12-SP3/x86_64/product_debug/","distro_target":"sle-12-x86_64","autorefresh":false,"id":2227,"enabled":false,"description":"SLE-HA12-SP3-Debuginfo-Pool for sle-12-x86_64","installer_updates":false,"name":"SLE-HA12-SP3-Debuginfo-Pool"},{"enabled":false,"id":2229,"distro_target":"sle-12-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-HA/12-SP3/x86_64/product_source/","installer_updates":false,"name":"SLE-HA12-SP3-Source-Pool","description":"SLE-HA12-SP3-Source-Pool for sle-12-x86_64"}],"product_class":"SLE-HAE-X86","product_type":"extension","cpe":"cpe:/o:suse:sle-ha:12:sp3"},{"friendly_name":"SUSE Linux Enterprise Point of Service Image Server 12 SP2 x86_64","migration_extra":false,"release_type":null,"former_identifier":"sle-pos","name":"SUSE Linux Enterprise Point of Service Image Server","offline_predecessor_ids":[],"version":"12.2","recommended":false,"release_stage":"released","identifier":"sle-pos","id":1439,"extensions":[],"friendly_version":"12 SP2","arch":"x86_64","eula_url":"https://updates.suse.com/SUSE/Products/SLE-POS/12-SP2/x86_64/product.license/","description":"SUSE Linux Enterprise Point of Service Image Server","shortname":"SLEPOS12","free":false,"cpe":"cpe:/o:suse:sle-pos:12:sp2","product_type":"extension","online_predecessor_ids":[],"product_class":"10040","repositories":[{"description":"SLE-POS12-SP2-Updates for sle-12-x86_64","name":"SLE-POS12-SP2-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-POS/12-SP2/x86_64/update/","enabled":true,"id":2289},{"description":"SLE-POS12-SP2-Debuginfo-Updates for sle-12-x86_64","installer_updates":false,"name":"SLE-POS12-SP2-Debuginfo-Updates","url":"https://updates.suse.com/SUSE/Updates/SLE-POS/12-SP2/x86_64/update_debug/","distro_target":"sle-12-x86_64","autorefresh":true,"id":2290,"enabled":false},{"description":"SLE-POS12-SP2-Pool for sle-12-x86_64","name":"SLE-POS12-SP2-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-POS/12-SP2/x86_64/product/","enabled":true,"id":2291},{"description":"SLE-POS12-SP2-Debuginfo-Pool for sle-12-x86_64","installer_updates":false,"name":"SLE-POS12-SP2-Debuginfo-Pool","distro_target":"sle-12-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-POS/12-SP2/x86_64/product_debug/","enabled":false,"id":2292},{"name":"SLE-POS12-SP2-Source-Pool","installer_updates":false,"description":"SLE-POS12-SP2-Source-Pool for sle-12-x86_64","enabled":false,"id":2293,"autorefresh":false,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-POS/12-SP2/x86_64/product_source/"},{"id":3130,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-POS/12-SP2-CLIENT/x86_64/update/","distro_target":"sle-12-x86_64","autorefresh":true,"installer_updates":false,"name":"SLE-POS12-SP2-CLIENT-Updates","description":"SLE-POS12-SP2-CLIENT-Updates for sle-12-x86_64"},{"installer_updates":false,"name":"SLE-POS12-SP2-CLIENT-Debuginfo-Updates","description":"SLE-POS12-SP2-CLIENT-Debuginfo-Updates for sle-12-x86_64","enabled":false,"id":3131,"distro_target":"sle-12-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-POS/12-SP2-CLIENT/x86_64/update_debug/"}],"predecessor_ids":[]},{"former_identifier":"sle-module-hpc","release_type":null,"migration_extra":false,"friendly_name":"HPC Module 12 x86_64","offline_predecessor_ids":[],"name":"HPC Module","version":"12","recommended":false,"identifier":"sle-module-hpc","release_stage":"released","id":1440,"extensions":[],"friendly_version":"12","arch":"x86_64","eula_url":"https://updates.suse.com/SUSE/Products/SLE-Module-HPC/12/x86_64/product.license/","free":true,"description":"The SUSE Linux Enterprise Server High Performance Computing (HPC) module delivers specific tools commonly used for high performance, numerically intensive workloads. SUSE packages these tools in the SLES HPC Module to provide greater flexibility to deliver new versions or new tools more rapidly than the standard SUSE Linux Enterprise lifecycle would permit. Packages in this module are general supported till a newer version of the package is released or the package is dropped from the module.","shortname":"HPC-Module","product_type":"module","cpe":"cpe:/o:suse:sle-module-hpc:12","repositories":[{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-HPC/12/x86_64/update/","distro_target":"sle-12-x86_64","autorefresh":true,"id":2294,"enabled":true,"description":"SLE-Module-HPC12-Updates for sle-12-x86_64","installer_updates":false,"name":"SLE-Module-HPC12-Updates"},{"name":"SLE-Module-HPC12-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-HPC12-Debuginfo-Updates for sle-12-x86_64","id":2295,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-HPC/12/x86_64/update_debug/","autorefresh":true,"distro_target":"sle-12-x86_64"},{"installer_updates":false,"name":"SLE-Module-HPC12-Pool","description":"SLE-Module-HPC12-Pool for sle-12-x86_64","enabled":true,"id":2296,"distro_target":"sle-12-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-HPC/12/x86_64/product/"},{"installer_updates":false,"name":"SLE-Module-HPC12-Debuginfo-Pool","description":"SLE-Module-HPC12-Debuginfo-Pool for sle-12-x86_64","id":2297,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-HPC/12/x86_64/product_debug/","distro_target":"sle-12-x86_64","autorefresh":false},{"installer_updates":false,"name":"SLE-Module-HPC12-Source-Pool","description":"SLE-Module-HPC12-Source-Pool for sle-12-x86_64","id":2298,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-HPC/12/x86_64/product_source/","distro_target":"sle-12-x86_64","autorefresh":false}],"online_predecessor_ids":[],"product_class":"MODULE","predecessor_ids":[]},{"offline_predecessor_ids":[],"name":"SUSE Manager Server","former_identifier":"SUSE-Manager-Server","release_type":null,"migration_extra":false,"friendly_name":"SUSE Manager Server 3.1 x86_64","recommended":false,"version":"3.1","extensions":[],"release_stage":"released","id":1518,"identifier":"SUSE-Manager-Server","friendly_version":"3.1","eula_url":"https://updates.suse.com/SUSE/Products/SUSE-Manager-Server/3.1/x86_64/product.license/","arch":"x86_64","free":false,"shortname":"SUSE Manager Server","description":"SUSE Manager lets you efficiently manage physical, virtual, and cloud-based Linux systems. It provides automated and cost-effective configuration and software management, asset management, and system provisioning.","product_type":"extension","cpe":"cpe:/o:suse:suse-manager-server:3.1","predecessor_ids":[1349],"product_class":"SMS-X86","online_predecessor_ids":[1349],"repositories":[{"autorefresh":true,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Updates/SUSE-Manager-Server/3.1/x86_64/update/","enabled":true,"id":2400,"description":"SUSE-Manager-Server-3.1-Updates for sle-12-x86_64","name":"SUSE-Manager-Server-3.1-Updates","installer_updates":false},{"url":"https://updates.suse.com/SUSE/Updates/SUSE-Manager-Server/3.1/x86_64/update_debug/","autorefresh":true,"distro_target":"sle-12-x86_64","id":2401,"enabled":false,"description":"SUSE-Manager-Server-3.1-Debuginfo-Updates for sle-12-x86_64","name":"SUSE-Manager-Server-3.1-Debuginfo-Updates","installer_updates":false},{"enabled":true,"id":2402,"autorefresh":false,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Products/SUSE-Manager-Server/3.1/x86_64/product/","name":"SUSE-Manager-Server-3.1-Pool","installer_updates":false,"description":"SUSE-Manager-Server-3.1-Pool for sle-12-x86_64"},{"name":"SUSE-Manager-Server-3.1-Debuginfo-Pool","installer_updates":false,"description":"SUSE-Manager-Server-3.1-Debuginfo-Pool for sle-12-x86_64","id":2403,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SUSE-Manager-Server/3.1/x86_64/product_debug/","autorefresh":false,"distro_target":"sle-12-x86_64"},{"description":"SUSE-Manager-Server-3.1-Source-Pool for sle-12-x86_64","name":"SUSE-Manager-Server-3.1-Source-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Products/SUSE-Manager-Server/3.1/x86_64/product_source/","enabled":false,"id":2404}]},{"identifier":"SUSE-Manager-Proxy","release_stage":"released","id":1520,"extensions":[],"friendly_version":"3.1","release_type":null,"former_identifier":"SUSE-Manager-Proxy","migration_extra":false,"friendly_name":"SUSE Manager Proxy 3.1 x86_64","offline_predecessor_ids":[],"name":"SUSE Manager Proxy","version":"3.1","recommended":false,"product_type":"extension","cpe":"cpe:/o:suse:suse-manager-proxy:3.1","repositories":[{"distro_target":"sle-12-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SUSE-Manager-Proxy/3.1/x86_64/update/","enabled":true,"id":2410,"description":"SUSE-Manager-Proxy-3.1-Updates for sle-12-x86_64","installer_updates":false,"name":"SUSE-Manager-Proxy-3.1-Updates"},{"autorefresh":true,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Updates/SUSE-Manager-Proxy/3.1/x86_64/update_debug/","enabled":false,"id":2411,"description":"SUSE-Manager-Proxy-3.1-Debuginfo-Updates for sle-12-x86_64","name":"SUSE-Manager-Proxy-3.1-Debuginfo-Updates","installer_updates":false},{"id":2412,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SUSE-Manager-Proxy/3.1/x86_64/product/","autorefresh":false,"distro_target":"sle-12-x86_64","name":"SUSE-Manager-Proxy-3.1-Pool","installer_updates":false,"description":"SUSE-Manager-Proxy-3.1-Pool for sle-12-x86_64"},{"description":"SUSE-Manager-Proxy-3.1-Debuginfo-Pool for sle-12-x86_64","installer_updates":false,"name":"SUSE-Manager-Proxy-3.1-Debuginfo-Pool","url":"https://updates.suse.com/SUSE/Products/SUSE-Manager-Proxy/3.1/x86_64/product_debug/","distro_target":"sle-12-x86_64","autorefresh":false,"id":2413,"enabled":false},{"description":"SUSE-Manager-Proxy-3.1-Source-Pool for sle-12-x86_64","installer_updates":false,"name":"SUSE-Manager-Proxy-3.1-Source-Pool","url":"https://updates.suse.com/SUSE/Products/SUSE-Manager-Proxy/3.1/x86_64/product_source/","distro_target":"sle-12-x86_64","autorefresh":false,"id":2414,"enabled":false}],"online_predecessor_ids":[1352],"product_class":"SMP","predecessor_ids":[1352],"arch":"x86_64","eula_url":"https://updates.suse.com/SUSE/Products/SUSE-Manager-Proxy/3.1/x86_64/product.license/","free":false,"shortname":"SUSE Manager Proxy","description":"SUSE Manager Proxies extend large and/or geographically dispersed SUSE Manager environments to reduce load on the SUSE Manager Server, lower bandwidth needs, and provide faster local updates."},{"product_class":"SES","online_predecessor_ids":[1416],"repositories":[{"autorefresh":true,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Updates/Storage/5/x86_64/update/","enabled":true,"id":2432,"description":"SUSE-Enterprise-Storage-5-Updates for sle-12-x86_64","name":"SUSE-Enterprise-Storage-5-Updates","installer_updates":false},{"distro_target":"sle-12-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/Storage/5/x86_64/update_debug/","enabled":false,"id":2433,"description":"SUSE-Enterprise-Storage-5-Debuginfo-Updates for sle-12-x86_64","installer_updates":false,"name":"SUSE-Enterprise-Storage-5-Debuginfo-Updates"},{"id":2434,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/Storage/5/x86_64/product/","autorefresh":false,"distro_target":"sle-12-x86_64","name":"SUSE-Enterprise-Storage-5-Pool","installer_updates":false,"description":"SUSE-Enterprise-Storage-5-Pool for sle-12-x86_64"},{"installer_updates":false,"name":"SUSE-Enterprise-Storage-5-Debuginfo-Pool","description":"SUSE-Enterprise-Storage-5-Debuginfo-Pool for sle-12-x86_64","id":2435,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/Storage/5/x86_64/product_debug/","distro_target":"sle-12-x86_64","autorefresh":false},{"name":"SUSE-Enterprise-Storage-5-Source-Pool","installer_updates":false,"description":"SUSE-Enterprise-Storage-5-Source-Pool for sle-12-x86_64","id":2436,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/Storage/5/x86_64/product_source/","autorefresh":false,"distro_target":"sle-12-x86_64"}],"predecessor_ids":[1416],"product_type":"extension","cpe":"cpe:/o:suse:ses:5","free":false,"shortname":"SES5","description":"SUSE Enterprise Storage 5 for SUSE Linux Enterprise Server 12-SP3, powered by Ceph.","arch":"x86_64","eula_url":"https://updates.suse.com/SUSE/Products/Storage/5/x86_64/product.license/","friendly_version":"5","release_stage":"released","identifier":"ses","id":1526,"extensions":[],"version":"5","recommended":false,"former_identifier":"ses","release_type":null,"friendly_name":"SUSE Enterprise Storage 5 x86_64","migration_extra":false,"offline_predecessor_ids":[],"name":"SUSE Enterprise Storage"},{"version":"12.3","recommended":false,"friendly_name":"SUSE Package Hub 12 SP3 x86_64","migration_extra":false,"former_identifier":"PackageHub","release_type":null,"name":"SUSE Package Hub","offline_predecessor_ids":[],"friendly_version":"12 SP3","identifier":"PackageHub","release_stage":"released","id":1529,"extensions":[],"description":"SUSE Package Hub is a free of charge extension providing access to community maintained packages built to run on SUSE Linux Enterprise Server. Built from the same sources used in the openSUSE distributions, these quality packages provide additional software to what is found in the SUSE Linux Enterprise Server product. Packages from the Package Hub are delivered without L3 support from SUSE. General updates and fixes to the packages in SUSE Package Hub are provided by the openSUSE community based on their discretion though SUSE will monitor and ensure that any known critical security issues will be addressed. Packages in the Package Hub are approved by SUSE for use with SUSE Linux Enterprise Server 12 and to not interfere with the supportability of SUSE Linux Enterprise Server it's modules and extensions. For more information about SUSE Package Hub please visit https://packagehub.suse.com.","shortname":"SUSE-PackageHub-12-SP3","free":true,"arch":"x86_64","eula_url":"","repositories":[{"installer_updates":false,"name":"SUSE-PackageHub-12-SP3-Standard-Pool","description":"SUSE-PackageHub-12-SP3-Standard-Pool for sle-12-x86_64","enabled":true,"id":2445,"distro_target":"sle-12-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Backports/SLE-12-SP3_x86_64/standard/"},{"enabled":false,"id":2446,"autorefresh":true,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Backports/SLE-12-SP3_x86_64/standard_debug/","name":"SUSE-PackageHub-12-SP3-Debuginfo","installer_updates":false,"description":"SUSE-PackageHub-12-SP3-Debuginfo for sle-12-x86_64"},{"id":2447,"enabled":true,"url":"https://updates.suse.com/SUSE/Backports/SLE-12-SP3_x86_64/product/","distro_target":"sle-12-x86_64","autorefresh":false,"installer_updates":false,"name":"SUSE-PackageHub-12-SP3-Pool","description":"SUSE-PackageHub-12-SP3-Pool for sle-12-x86_64"}],"online_predecessor_ids":[1473,1476,1479],"product_class":"MODULE","predecessor_ids":[1473,1476,1479],"cpe":"cpe:/o:suse:packagehub:12:sp3","product_type":"extension"},{"friendly_version":"12 SP3","id":1536,"release_stage":"released","identifier":"sle-live-patching","extensions":[],"version":"12.3","recommended":false,"release_type":null,"former_identifier":"sle-live-patching","friendly_name":"SUSE Linux Enterprise Live Patching 12 SP3 x86_64","migration_extra":false,"offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Live Patching","online_predecessor_ids":[1253],"repositories":[{"description":"SLE-Live-Patching12-SP3-Updates for sle-12-x86_64","installer_updates":false,"name":"SLE-Live-Patching12-SP3-Updates","url":"https://updates.suse.com/SUSE/Updates/SLE-Live-Patching/12-SP3/x86_64/update/","distro_target":"sle-12-x86_64","autorefresh":true,"id":2463,"enabled":true},{"name":"SLE-Live-Patching12-SP3-Debuginfo-Updates","installer_updates":false,"description":"SLE-Live-Patching12-SP3-Debuginfo-Updates for sle-12-x86_64","enabled":false,"id":2464,"autorefresh":true,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Live-Patching/12-SP3/x86_64/update_debug/"},{"enabled":true,"id":2465,"autorefresh":false,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Live-Patching/12-SP3/x86_64/product/","name":"SLE-Live-Patching12-SP3-Pool","installer_updates":false,"description":"SLE-Live-Patching12-SP3-Pool for sle-12-x86_64"},{"description":"SLE-Live-Patching12-SP3-Debuginfo-Pool for sle-12-x86_64","installer_updates":false,"name":"SLE-Live-Patching12-SP3-Debuginfo-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Live-Patching/12-SP3/x86_64/product_debug/","distro_target":"sle-12-x86_64","autorefresh":false,"id":2466,"enabled":false}],"product_class":"SLE-LP","predecessor_ids":[1253],"product_type":"extension","cpe":"cpe:/o:suse:sle-live-patching:12:sp3","free":false,"shortname":"Live-Patching","description":"

SUSE Linux Enterprise Live Patching provides packages to update critical kernel modules live in SUSE Linux Enterprise. With SUSE Linux Enterprise Live Patching, you can perform critical kernel patching without shutting down your system, reducing the need for planned downtime and increasing service availability.

","arch":"x86_64","eula_url":"https://updates.suse.com/SUSE/Products/SLE-Live-Patching/12-SP3/x86_64/product.license/"},{"extensions":[],"id":1574,"release_stage":"released","identifier":"suse-manager-retail","friendly_version":"3.1","name":"SUSE Manager for Retail","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"SUSE Manager for Retail 3.1 x86_64","release_type":null,"former_identifier":"suse-manager-retail","recommended":false,"version":"3.1","cpe":"cpe:/o:suse:suse-manager-retail:3.1","product_type":"extension","predecessor_ids":[],"online_predecessor_ids":[],"product_class":"SLE-POS-AS-SMRBS-X86","repositories":[{"installer_updates":false,"name":"SUSE-Manager-Retail-3.1-Updates","description":"SUSE-Manager-Retail-3.1-Updates for sle-12-x86_64","enabled":true,"id":2519,"distro_target":"sle-12-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SUSE-Manager-Retail/3.1/x86_64/update/"},{"installer_updates":false,"name":"SUSE-Manager-Retail-3.1-Debuginfo-Updates","description":"SUSE-Manager-Retail-3.1-Debuginfo-Updates for sle-12-x86_64","enabled":false,"id":2520,"distro_target":"sle-12-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SUSE-Manager-Retail/3.1/x86_64/update_debug/"},{"autorefresh":false,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Products/SUSE-Manager-Retail/3.1/x86_64/product/","enabled":true,"id":2521,"description":"SUSE-Manager-Retail-3.1-Pool for sle-12-x86_64","name":"SUSE-Manager-Retail-3.1-Pool","installer_updates":false},{"url":"https://updates.suse.com/SUSE/Products/SUSE-Manager-Retail/3.1/x86_64/product_debug/","autorefresh":false,"distro_target":"sle-12-x86_64","id":2522,"enabled":false,"description":"SUSE-Manager-Retail-3.1-Debuginfo-Pool for sle-12-x86_64","name":"SUSE-Manager-Retail-3.1-Debuginfo-Pool","installer_updates":false},{"description":"SUSE-Manager-Retail-3.1-Source-Pool for sle-12-x86_64","name":"SUSE-Manager-Retail-3.1-Source-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SUSE-Manager-Retail/3.1/x86_64/product_source/","autorefresh":false,"distro_target":"sle-12-x86_64","id":2523,"enabled":false}],"eula_url":"https://updates.suse.com/SUSE/Products/SUSE-Manager-Retail/3.1/x86_64/product.license/","arch":"x86_64","shortname":"SUSE Manager for Retail","description":"SUSE Manager for Retail","free":false},{"description":"SUSE OpenStack Cloud 8","shortname":"SOC8","free":false,"arch":"x86_64","eula_url":"https://updates.suse.com/SUSE/Products/OpenStack-Cloud/8/x86_64/product.license/","online_predecessor_ids":[],"product_class":"SUSE_CLOUD","repositories":[{"autorefresh":true,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Updates/OpenStack-Cloud/8/x86_64/update/","enabled":true,"id":2691,"description":"SUSE-OpenStack-Cloud-8-Updates for sle-12-x86_64","name":"SUSE-OpenStack-Cloud-8-Updates","installer_updates":false},{"url":"https://updates.suse.com/SUSE/Updates/OpenStack-Cloud/8/x86_64/update_debug/","distro_target":"sle-12-x86_64","autorefresh":true,"id":2692,"enabled":false,"description":"SUSE-OpenStack-Cloud-8-Debuginfo-Updates for sle-12-x86_64","installer_updates":false,"name":"SUSE-OpenStack-Cloud-8-Debuginfo-Updates"},{"id":2693,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/OpenStack-Cloud/8/x86_64/product/","distro_target":"sle-12-x86_64","autorefresh":false,"installer_updates":false,"name":"SUSE-OpenStack-Cloud-8-Pool","description":"SUSE-OpenStack-Cloud-8-Pool for sle-12-x86_64"},{"id":2694,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/OpenStack-Cloud/8/x86_64/product_debug/","distro_target":"sle-12-x86_64","autorefresh":false,"installer_updates":false,"name":"SUSE-OpenStack-Cloud-8-Debuginfo-Pool","description":"SUSE-OpenStack-Cloud-8-Debuginfo-Pool for sle-12-x86_64"},{"id":2695,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/OpenStack-Cloud/8/x86_64/product_source/","distro_target":"sle-12-x86_64","autorefresh":false,"installer_updates":false,"name":"SUSE-OpenStack-Cloud-8-Source-Pool","description":"SUSE-OpenStack-Cloud-8-Source-Pool for sle-12-x86_64"}],"predecessor_ids":[],"cpe":"cpe:/o:suse:suse-openstack-cloud:8","product_type":"extension","version":"8","recommended":false,"migration_extra":false,"friendly_name":"SUSE OpenStack Cloud 8 x86_64","release_type":null,"former_identifier":"suse-openstack-cloud","name":"SUSE OpenStack Cloud","offline_predecessor_ids":[],"friendly_version":"8","id":1617,"release_stage":"released","identifier":"suse-openstack-cloud","extensions":[]},{"free":false,"description":"SUSE Linux Enterprise offers a comprehensive suite of products built on a single code base. The platform addresses business needs from the smallest thin-client devices to the world's most powerful high-performance computing and mainframe servers. SUSE Linux Enterprise offers common management tools and technology certifications across the platform, and each product is enterprise-class.","shortname":"SLES12-SP3 BCL","eula_url":"","arch":"x86_64","predecessor_ids":[],"online_predecessor_ids":[],"repositories":[{"distro_target":"sle-12-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-SP3-BCL/x86_64/update/","enabled":true,"id":2696,"description":"SLES12-SP3-BCL-Updates for sle-12-x86_64","installer_updates":false,"name":"SLES12-SP3-BCL-Updates"},{"description":"SLES12-SP3-BCL-Debuginfo-Updates for sle-12-x86_64","name":"SLES12-SP3-BCL-Debuginfo-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-SP3-BCL/x86_64/update_debug/","enabled":false,"id":2697},{"id":2698,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-SERVER/12-SP3-BCL/x86_64/product/","distro_target":"sle-12-x86_64","autorefresh":false,"installer_updates":false,"name":"SLES12-SP3-BCL-Pool","description":"SLES12-SP3-BCL-Pool for sle-12-x86_64"},{"url":"https://updates.suse.com/SUSE/Products/SLE-SERVER/12-SP3-BCL/x86_64/product_debug/","distro_target":"sle-12-x86_64","autorefresh":false,"id":2699,"enabled":false,"description":"SLES12-SP3-BCL-Debuginfo-Pool for sle-12-x86_64","installer_updates":false,"name":"SLES12-SP3-BCL-Debuginfo-Pool"},{"enabled":false,"id":2700,"distro_target":"sle-12-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-SERVER/12-SP3-BCL/x86_64/product_source/","installer_updates":false,"name":"SLES12-SP3-BCL-Source-Pool","description":"SLES12-SP3-BCL-Source-Pool for sle-12-x86_64"}],"product_class":"BCL-X86","product_type":"extension","cpe":"cpe:/o:suse:sles-bcl:12:sp3","recommended":false,"version":"12.3","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Server BCL","release_type":null,"former_identifier":"SLES-BCL","friendly_name":"SUSE Linux Enterprise Server BCL 12 SP3 x86_64","migration_extra":false,"friendly_version":"12 SP3","extensions":[],"release_stage":"released","id":1618,"identifier":"SLES-BCL"},{"description":"SUSE Linux Enterprise Real Time 12 SP3.","shortname":"SLERT12 SP3","free":false,"eula_url":"https://updates.suse.com/SUSE/Products/SLE-RT/12-SP3/x86_64/product.license/","arch":"x86_64","predecessor_ids":[1438],"repositories":[{"enabled":true,"id":2701,"distro_target":"sle-12-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-RT/12-SP3/x86_64/update/","installer_updates":false,"name":"SLE-RT12-SP3-Updates","description":"SLE-RT12-SP3-Updates for sle-12-x86_64"},{"description":"SLE-RT12-SP3-Debuginfo-Updates for sle-12-x86_64","name":"SLE-RT12-SP3-Debuginfo-Updates","installer_updates":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-RT/12-SP3/x86_64/update_debug/","autorefresh":true,"distro_target":"sle-12-x86_64","id":2702,"enabled":false},{"url":"https://updates.suse.com/SUSE/Products/SLE-RT/12-SP3/x86_64/product/","distro_target":"sle-12-x86_64","autorefresh":false,"id":2703,"enabled":true,"description":"SLE-RT12-SP3-Pool for sle-12-x86_64","installer_updates":false,"name":"SLE-RT12-SP3-Pool"},{"id":2704,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-RT/12-SP3/x86_64/product_debug/","autorefresh":false,"distro_target":"sle-12-x86_64","name":"SLE-RT12-SP3-Debuginfo-Pool","installer_updates":false,"description":"SLE-RT12-SP3-Debuginfo-Pool for sle-12-x86_64"}],"online_predecessor_ids":[1438],"product_class":"SUSE_RT","cpe":"cpe:/o:suse:suse-linux-enterprise-rt:12:sp3","product_type":"extension","recommended":false,"version":"12.3","name":"SUSE Linux Enterprise Real Time","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Real Time 12 SP3 x86_64","release_type":null,"former_identifier":"SUSE-Linux-Enterprise-RT","friendly_version":"12 SP3","extensions":[],"release_stage":"released","id":1619,"identifier":"SUSE-Linux-Enterprise-RT"},{"cpe":"cpe:/o:suse:sle-module-cap-tools:12","product_type":"module","predecessor_ids":[],"online_predecessor_ids":[],"product_class":"MODULE","repositories":[{"id":2912,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-CAP-Tools/12/x86_64/update/","autorefresh":true,"distro_target":"sle-12-x86_64","name":"SLE-Module-CAP-Tools-12-Updates","installer_updates":false,"description":"SLE-Module-CAP-Tools-12-Updates for sle-12-x86_64"},{"description":"SLE-Module-CAP-Tools-12-Debuginfo-Updates for sle-12-x86_64","installer_updates":false,"name":"SLE-Module-CAP-Tools-12-Debuginfo-Updates","distro_target":"sle-12-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-CAP-Tools/12/x86_64/update_debug/","enabled":false,"id":2913},{"enabled":true,"id":2914,"autorefresh":false,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-CAP-Tools/12/x86_64/product/","name":"SLE-Module-CAP-Tools-12-Pool","installer_updates":false,"description":"SLE-Module-CAP-Tools-12-Pool for sle-12-x86_64"},{"name":"SLE-Module-CAP-Tools-12-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-CAP-Tools-12-Debuginfo-Pool for sle-12-x86_64","enabled":false,"id":2915,"autorefresh":false,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-CAP-Tools/12/x86_64/product_debug/"},{"description":"SLE-Module-CAP-Tools-12-Source-Pool for sle-12-x86_64","installer_updates":false,"name":"SLE-Module-CAP-Tools-12-Source-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-CAP-Tools/12/x86_64/product_source/","distro_target":"sle-12-x86_64","autorefresh":false,"id":2916,"enabled":false}],"eula_url":"","arch":"x86_64","description":"

The SUSE Cloud Application Platform Tools Module is a collection of tools that enables you to interact with the SUSE Cloud Application Platform product itself, providing the commandline client for instance.

Access to the SUSE Cloud Application Platform Tools Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself; please check the Release Notes for further details.

","shortname":"SUSE-CAP-Tools-Module","free":true,"extensions":[],"identifier":"sle-module-cap-tools","release_stage":"released","id":1678,"friendly_version":"12","name":"SUSE Cloud Application Platform Tools Module","offline_predecessor_ids":[],"friendly_name":"SUSE Cloud Application Platform Tools Module 12 x86_64","migration_extra":false,"former_identifier":"sle-module-cap-tools","release_type":null,"recommended":false,"version":"12"},{"predecessor_ids":[1518],"online_predecessor_ids":[1518],"repositories":[{"id":2987,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SUSE-Manager-Server/3.2/x86_64/update/","distro_target":"sle-12-x86_64","autorefresh":true,"installer_updates":false,"name":"SUSE-Manager-Server-3.2-Updates","description":"SUSE-Manager-Server-3.2-Updates for sle-12-x86_64"},{"description":"SUSE-Manager-Server-3.2-Debuginfo-Updates for sle-12-x86_64","name":"SUSE-Manager-Server-3.2-Debuginfo-Updates","installer_updates":false,"url":"https://updates.suse.com/SUSE/Updates/SUSE-Manager-Server/3.2/x86_64/update_debug/","autorefresh":true,"distro_target":"sle-12-x86_64","id":2988,"enabled":false},{"name":"SUSE-Manager-Server-3.2-Pool","installer_updates":false,"description":"SUSE-Manager-Server-3.2-Pool for sle-12-x86_64","id":2989,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SUSE-Manager-Server/3.2/x86_64/product/","autorefresh":false,"distro_target":"sle-12-x86_64"},{"url":"https://updates.suse.com/SUSE/Products/SUSE-Manager-Server/3.2/x86_64/product_debug/","autorefresh":false,"distro_target":"sle-12-x86_64","id":2990,"enabled":false,"description":"SUSE-Manager-Server-3.2-Debuginfo-Pool for sle-12-x86_64","name":"SUSE-Manager-Server-3.2-Debuginfo-Pool","installer_updates":false},{"description":"SUSE-Manager-Server-3.2-Source-Pool for sle-12-x86_64","name":"SUSE-Manager-Server-3.2-Source-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Products/SUSE-Manager-Server/3.2/x86_64/product_source/","enabled":false,"id":2991}],"product_class":"SMS-X86","cpe":"cpe:/o:suse:suse-manager-server:3.2","product_type":"extension","shortname":"SUSE Manager Server 3.2","description":"SUSE Manager lets you efficiently manage physical, virtual, and cloud-based Linux systems. It provides automated and cost-effective configuration and software management, asset management, and system provisioning.","free":false,"eula_url":"https://updates.suse.com/SUSE/Products/SUSE-Manager-Server/3.2/x86_64/product.license/","arch":"x86_64","friendly_version":"3.2","extensions":[],"release_stage":"released","id":1724,"identifier":"SUSE-Manager-Server","recommended":false,"version":"3.2","name":"SUSE Manager Server","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"SUSE Manager Server 3.2 x86_64","former_identifier":"SUSE-Manager-Server","release_type":null},{"release_stage":"released","id":1725,"identifier":"SUSE-Manager-Proxy","extensions":[{"eula_url":"https://updates.suse.com/SUSE/Products/SUSE-Manager-Retail-Branch-Server/3.2/x86_64/product.license/","arch":"x86_64","free":false,"shortname":"SUSE Manager Retail Branch Server 3.2","description":"The SUSE Manager for Retail Branch Server supports large and/or geographically dispersed SUSE Manager for Retail environments by reducing the load on the SUSE Manager Server, lowering bandwidth needs, and providing faster local updates.","product_type":"extension","cpe":"cpe:/o:suse:suse-manager-retail-branch-server:3.2","predecessor_ids":[],"repositories":[{"name":"SUSE-Manager-Retail-Branch-Server-3.2-Updates","installer_updates":false,"description":"SUSE-Manager-Retail-Branch-Server-3.2-Updates for sle-12-x86_64","id":3517,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SUSE-Manager-Retail-Branch-Server/3.2/x86_64/update/","autorefresh":true,"distro_target":"sle-12-x86_64"},{"enabled":false,"id":3518,"autorefresh":true,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Updates/SUSE-Manager-Retail-Branch-Server/3.2/x86_64/update_debug/","name":"SUSE-Manager-Retail-Branch-Server-3.2-Debuginfo-Updates","installer_updates":false,"description":"SUSE-Manager-Retail-Branch-Server-3.2-Debuginfo-Updates for sle-12-x86_64"},{"name":"SUSE-Manager-Retail-Branch-Server-3.2-Pool","installer_updates":false,"description":"SUSE-Manager-Retail-Branch-Server-3.2-Pool for sle-12-x86_64","enabled":true,"id":3519,"autorefresh":false,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Products/SUSE-Manager-Retail-Branch-Server/3.2/x86_64/product/"},{"url":"https://updates.suse.com/SUSE/Products/SUSE-Manager-Retail-Branch-Server/3.2/x86_64/product_debug/","distro_target":"sle-12-x86_64","autorefresh":false,"id":3520,"enabled":false,"description":"SUSE-Manager-Retail-Branch-Server-3.2-Debuginfo-Pool for sle-12-x86_64","installer_updates":false,"name":"SUSE-Manager-Retail-Branch-Server-3.2-Debuginfo-Pool"},{"installer_updates":false,"name":"SUSE-Manager-Retail-Branch-Server-3.2-Source-Pool","description":"SUSE-Manager-Retail-Branch-Server-3.2-Source-Pool for sle-12-x86_64","enabled":false,"id":3521,"distro_target":"sle-12-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SUSE-Manager-Retail-Branch-Server/3.2/x86_64/product_source/"}],"online_predecessor_ids":[],"product_class":"SMRBS","offline_predecessor_ids":[],"name":"SUSE Manager Retail Branch Server","release_type":null,"former_identifier":"SUSE-Manager-Retail-Branch-Server","migration_extra":false,"friendly_name":"SUSE Manager Retail Branch Server 3.2 x86_64","recommended":false,"version":"3.2","extensions":[],"release_stage":"released","identifier":"SUSE-Manager-Retail-Branch-Server","id":1826,"friendly_version":"3.2"}],"friendly_version":"3.2","migration_extra":false,"friendly_name":"SUSE Manager Proxy 3.2 x86_64","release_type":null,"former_identifier":"SUSE-Manager-Proxy","name":"SUSE Manager Proxy","offline_predecessor_ids":[],"version":"3.2","recommended":false,"cpe":"cpe:/o:suse:suse-manager-proxy:3.2","product_type":"extension","repositories":[{"name":"SUSE-Manager-Proxy-3.2-Updates","installer_updates":false,"description":"SUSE-Manager-Proxy-3.2-Updates for sle-12-x86_64","enabled":true,"id":2992,"autorefresh":true,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Updates/SUSE-Manager-Proxy/3.2/x86_64/update/"},{"description":"SUSE-Manager-Proxy-3.2-Debuginfo-Updates for sle-12-x86_64","installer_updates":false,"name":"SUSE-Manager-Proxy-3.2-Debuginfo-Updates","distro_target":"sle-12-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SUSE-Manager-Proxy/3.2/x86_64/update_debug/","enabled":false,"id":2993},{"description":"SUSE-Manager-Proxy-3.2-Pool for sle-12-x86_64","name":"SUSE-Manager-Proxy-3.2-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SUSE-Manager-Proxy/3.2/x86_64/product/","autorefresh":false,"distro_target":"sle-12-x86_64","id":2994,"enabled":true},{"installer_updates":false,"name":"SUSE-Manager-Proxy-3.2-Debuginfo-Pool","description":"SUSE-Manager-Proxy-3.2-Debuginfo-Pool for sle-12-x86_64","id":2995,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SUSE-Manager-Proxy/3.2/x86_64/product_debug/","distro_target":"sle-12-x86_64","autorefresh":false},{"installer_updates":false,"name":"SUSE-Manager-Proxy-3.2-Source-Pool","description":"SUSE-Manager-Proxy-3.2-Source-Pool for sle-12-x86_64","enabled":false,"id":2996,"distro_target":"sle-12-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SUSE-Manager-Proxy/3.2/x86_64/product_source/"}],"online_predecessor_ids":[1520],"product_class":"SMP","predecessor_ids":[1520],"arch":"x86_64","eula_url":"https://updates.suse.com/SUSE/Products/SUSE-Manager-Proxy/3.2/x86_64/product.license/","shortname":"SUSE Manager Proxy 3.2","description":"SUSE Manager Proxies extend large and/or geographically dispersed SUSE Manager environments to reduce load on the SUSE Manager Server, lower bandwidth needs, and provide faster local updates.","free":false},{"extensions":[],"release_stage":"released","identifier":"suse-openstack-cloud-crowbar","id":1729,"friendly_version":"8","offline_predecessor_ids":[],"name":"SUSE OpenStack Cloud Crowbar","release_type":null,"former_identifier":"suse-openstack-cloud-crowbar","migration_extra":false,"friendly_name":"SUSE OpenStack Cloud Crowbar 8 x86_64","recommended":false,"version":"8","product_type":"extension","cpe":"cpe:/o:suse:suse-openstack-cloud-crowbar:8","predecessor_ids":[1381],"online_predecessor_ids":[1381],"product_class":"SUSE_CLOUD","repositories":[{"url":"https://updates.suse.com/SUSE/Updates/OpenStack-Cloud-Crowbar/8/x86_64/update/","autorefresh":true,"distro_target":"sle-12-x86_64","id":3004,"enabled":true,"description":"SUSE-OpenStack-Cloud-Crowbar-8-Updates for sle-12-x86_64","name":"SUSE-OpenStack-Cloud-Crowbar-8-Updates","installer_updates":false},{"name":"SUSE-OpenStack-Cloud-Crowbar-8-Debuginfo-Updates","installer_updates":false,"description":"SUSE-OpenStack-Cloud-Crowbar-8-Debuginfo-Updates for sle-12-x86_64","id":3005,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/OpenStack-Cloud-Crowbar/8/x86_64/update_debug/","autorefresh":true,"distro_target":"sle-12-x86_64"},{"installer_updates":false,"name":"SUSE-OpenStack-Cloud-Crowbar-8-Pool","description":"SUSE-OpenStack-Cloud-Crowbar-8-Pool for sle-12-x86_64","enabled":true,"id":3006,"distro_target":"sle-12-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/OpenStack-Cloud-Crowbar/8/x86_64/product/"},{"description":"SUSE-OpenStack-Cloud-Crowbar-8-Debuginfo-Pool for sle-12-x86_64","installer_updates":false,"name":"SUSE-OpenStack-Cloud-Crowbar-8-Debuginfo-Pool","url":"https://updates.suse.com/SUSE/Products/OpenStack-Cloud-Crowbar/8/x86_64/product_debug/","distro_target":"sle-12-x86_64","autorefresh":false,"id":3007,"enabled":false},{"name":"SUSE-OpenStack-Cloud-Crowbar-8-Source-Pool","installer_updates":false,"description":"SUSE-OpenStack-Cloud-Crowbar-8-Source-Pool for sle-12-x86_64","enabled":false,"id":3008,"autorefresh":false,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Products/OpenStack-Cloud-Crowbar/8/x86_64/product_source/"}],"eula_url":"https://updates.suse.com/SUSE/Products/OpenStack-Cloud-Crowbar/8/x86_64/product.license/","arch":"x86_64","free":false,"description":"SUSE OpenStack Cloud Crowbar 8","shortname":"SOCC8"},{"product_type":"extension","cpe":"cpe:/o:suse:hpe-helion-openstack:8","repositories":[{"id":3139,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/HPE-Helion-OpenStack/8/x86_64/update/","distro_target":"sle-12-x86_64","autorefresh":true,"installer_updates":false,"name":"HPE-Helion-OpenStack-8-Updates","description":"HPE-Helion-OpenStack-8-Updates for sle-12-x86_64"},{"installer_updates":false,"name":"HPE-Helion-OpenStack-8-Debuginfo-Updates","description":"HPE-Helion-OpenStack-8-Debuginfo-Updates for sle-12-x86_64","id":3140,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/HPE-Helion-OpenStack/8/x86_64/update_debug/","distro_target":"sle-12-x86_64","autorefresh":true},{"url":"https://updates.suse.com/SUSE/Products/HPE-Helion-OpenStack/8/x86_64/product/","distro_target":"sle-12-x86_64","autorefresh":false,"id":3141,"enabled":true,"description":"HPE-Helion-OpenStack-8-Pool for sle-12-x86_64","installer_updates":false,"name":"HPE-Helion-OpenStack-8-Pool"},{"autorefresh":false,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Products/HPE-Helion-OpenStack/8/x86_64/product_debug/","enabled":false,"id":3142,"description":"HPE-Helion-OpenStack-8-Debuginfo-Pool for sle-12-x86_64","name":"HPE-Helion-OpenStack-8-Debuginfo-Pool","installer_updates":false},{"url":"https://updates.suse.com/SUSE/Products/HPE-Helion-OpenStack/8/x86_64/product_source/","autorefresh":false,"distro_target":"sle-12-x86_64","id":3143,"enabled":false,"description":"HPE-Helion-OpenStack-8-Source-Pool for sle-12-x86_64","name":"HPE-Helion-OpenStack-8-Source-Pool","installer_updates":false}],"online_predecessor_ids":[],"product_class":"HPE-HELION-OPENSTACK-X86","predecessor_ids":[],"arch":"x86_64","eula_url":"https://updates.suse.com/SUSE/Products/HPE-Helion-OpenStack/8/x86_64/product.license/","free":false,"description":"HPE Helion OpenStack 8","shortname":"HOS8","identifier":"hpe-helion-openstack","release_stage":"released","id":1730,"extensions":[],"friendly_version":"8","former_identifier":"hpe-helion-openstack","release_type":null,"friendly_name":"HPE Helion OpenStack 8 x86_64","migration_extra":false,"offline_predecessor_ids":[],"name":"HPE Helion OpenStack","version":"8","recommended":false},{"online_predecessor_ids":[],"product_class":"SLES12-SP3-LTSS-X86","repositories":[{"autorefresh":true,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-SP3-LTSS/x86_64/update/","enabled":true,"id":3919,"description":"SLES12-SP3-LTSS-Updates for sle-12-x86_64","name":"SLES12-SP3-LTSS-Updates","installer_updates":false},{"url":"https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-SP3-LTSS/x86_64/update_debug/","distro_target":"sle-12-x86_64","autorefresh":true,"id":3920,"enabled":false,"description":"SLES12-SP3-LTSS-Debuginfo-Updates for sle-12-x86_64","installer_updates":false,"name":"SLES12-SP3-LTSS-Debuginfo-Updates"}],"predecessor_ids":[],"product_type":"extension","cpe":"cpe:/o:suse:sles-ltss:12:sp3","free":false,"shortname":"SLES12-SP3 LTSS","description":"SUSE Linux Enterprise offers a comprehensive suite of products built on a single code base. The platform addresses business needs from the smallest thin-client devices to the world's most powerful high-performance computing and mainframe servers. SUSE Linux Enterprise offers common management tools and technology certifications across the platform, and each product is enterprise-class.","arch":"x86_64","eula_url":"","friendly_version":"12 SP3","release_stage":"released","identifier":"SLES-LTSS","id":1932,"extensions":[],"version":"12.3","recommended":false,"former_identifier":"SLES-LTSS","release_type":null,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Server LTSS 12 SP3 x86_64","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Server LTSS"}],"friendly_version":"12 SP3","friendly_name":"SUSE Linux Enterprise Server 12 SP3 x86_64","migration_extra":false,"release_type":null,"former_identifier":"SLES","name":"SUSE Linux Enterprise Server","offline_predecessor_ids":[690,769,814,824,1300],"version":"12.3","recommended":false,"cpe":"cpe:/o:suse:sles:12:sp3","product_type":"base","online_predecessor_ids":[1117,1322,1357],"repositories":[{"name":"SLES12-SP3-Updates","installer_updates":false,"description":"SLES12-SP3-Updates for sle-12-x86_64","enabled":true,"id":2189,"autorefresh":true,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-SP3/x86_64/update/"},{"id":2190,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-SP3/x86_64/update_debug/","distro_target":"sle-12-x86_64","autorefresh":true,"installer_updates":false,"name":"SLES12-SP3-Debuginfo-Updates","description":"SLES12-SP3-Debuginfo-Updates for sle-12-x86_64"},{"installer_updates":true,"name":"SLES12-SP3-Installer-Updates","description":"SLES12-SP3-Installer-Updates for sle-12-x86_64","enabled":false,"id":2191,"distro_target":"sle-12-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-SERVER-INSTALLER/12-SP3/x86_64/update/"},{"id":2192,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-SERVER/12-SP3/x86_64/product/","distro_target":"sle-12-x86_64","autorefresh":false,"installer_updates":false,"name":"SLES12-SP3-Pool","description":"SLES12-SP3-Pool for sle-12-x86_64"},{"description":"SLES12-SP3-Debuginfo-Pool for sle-12-x86_64","installer_updates":false,"name":"SLES12-SP3-Debuginfo-Pool","distro_target":"sle-12-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-SERVER/12-SP3/x86_64/product_debug/","enabled":false,"id":2193},{"description":"SLES12-SP3-Source-Pool for sle-12-x86_64","installer_updates":false,"name":"SLES12-SP3-Source-Pool","distro_target":"sle-12-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-SERVER/12-SP3/x86_64/product_source/","enabled":false,"id":2194}],"product_class":"7261","predecessor_ids":[1117,1322,1357],"arch":"x86_64","eula_url":"https://updates.suse.com/SUSE/Products/SLE-SERVER/12-SP3/x86_64/product.license/","shortname":"SLES12-SP3","description":"SUSE Linux Enterprise offers a comprehensive suite of products built on a single code base. The platform addresses business needs from the smallest thin-client devices to the world's most powerful high-performance computing and mainframe servers. SUSE Linux Enterprise offers common management tools and technology certifications across the platform, and each product is enterprise-class.","free":false},{"extensions":[{"product_type":"module","cpe":"cpe:/o:suse:sle-module-legacy:12","online_predecessor_ids":[],"repositories":[{"description":"SLE-Module-Legacy12-Updates for sle-12-ppc64le","installer_updates":false,"name":"SLE-Module-Legacy12-Updates","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/12/ppc64le/update/","distro_target":"sle-12-ppc64le","autorefresh":true,"id":1668,"enabled":true},{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/12/ppc64le/update_debug/","autorefresh":true,"distro_target":"sle-12-ppc64le","id":1669,"enabled":false,"description":"SLE-Module-Legacy12-Debuginfo-Updates for sle-12-ppc64le","name":"SLE-Module-Legacy12-Debuginfo-Updates","installer_updates":false},{"distro_target":"sle-12-ppc64le","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/12/ppc64le/product/","enabled":true,"id":1670,"description":"SLE-Module-Legacy12-Pool for sle-12-ppc64le","installer_updates":false,"name":"SLE-Module-Legacy12-Pool"},{"installer_updates":false,"name":"SLE-Module-Legacy12-Debuginfo-Pool","description":"SLE-Module-Legacy12-Debuginfo-Pool for sle-12-ppc64le","id":1671,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/12/ppc64le/product_debug/","distro_target":"sle-12-ppc64le","autorefresh":false},{"installer_updates":false,"name":"SLE-Module-Legacy12-Source-Pool","description":"SLE-Module-Legacy12-Source-Pool for sle-12-ppc64le","enabled":false,"id":1987,"distro_target":"sle-12-ppc64le","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/12/ppc64le/product_source/"}],"product_class":"MODULE","predecessor_ids":[],"arch":"ppc64le","eula_url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/12/ppc64le/product.license/","free":true,"shortname":"Legacy-Module","description":"

The Legacy Module helps you migrating applications from SUSE Linux Enterprise 10 and 11 and other systems to SUSE Linux Enterprise 12, by providing packages which are discontinued on SUSE Linux Enterprise Server, such as: sendmail, syslog-ng, IBM Java6, and a number of libraries (for example openssl-0.9.8).

Access to the Legacy Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself. Packages in the this module are usually supported for at most three years. Support for Sendmail and IBM Java 6 will end in September 2017 the latest.

","id":1148,"release_stage":"released","identifier":"sle-module-legacy","extensions":[],"friendly_version":"12","former_identifier":"sle-module-legacy","release_type":null,"friendly_name":"Legacy Module 12 ppc64le","migration_extra":false,"offline_predecessor_ids":[],"name":"Legacy Module","version":"12","recommended":false},{"eula_url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/12/ppc64le/product.license/","arch":"ppc64le","description":"

The SUSE Linux Enterprise Web and Scripting Module delivers a comprehensive suite of scripting languages, frameworks, and related tools helping developers and systems administrators accelerate the creation of stable, modern web applications, using dynamic languages, such as PHP, Ruby on Rails, and Python.

Access to the Web and Scripting Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself: Package versions in the this module are usually supported for at most three years. We are planning to release more recent versions on a schedule of approximately 18 month; the exact dates may differ per package.

","shortname":"Web-and-Scripting-Module","free":true,"cpe":"cpe:/o:suse:sle-module-web-scripting:12","product_type":"module","predecessor_ids":[],"product_class":"MODULE","online_predecessor_ids":[],"repositories":[{"distro_target":"sle-12-ppc64le","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/12/ppc64le/update/","enabled":true,"id":1680,"description":"SLE-Module-Web-Scripting12-Updates for sle-12-ppc64le","installer_updates":false,"name":"SLE-Module-Web-Scripting12-Updates"},{"autorefresh":true,"distro_target":"sle-12-ppc64le","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/12/ppc64le/update_debug/","enabled":false,"id":1681,"description":"SLE-Module-Web-Scripting12-Debuginfo-Updates for sle-12-ppc64le","name":"SLE-Module-Web-Scripting12-Debuginfo-Updates","installer_updates":false},{"name":"SLE-Module-Web-Scripting12-Pool","installer_updates":false,"description":"SLE-Module-Web-Scripting12-Pool for sle-12-ppc64le","enabled":true,"id":1682,"autorefresh":false,"distro_target":"sle-12-ppc64le","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/12/ppc64le/product/"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/12/ppc64le/product_debug/","distro_target":"sle-12-ppc64le","autorefresh":false,"id":1683,"enabled":false,"description":"SLE-Module-Web-Scripting12-Debuginfo-Pool for sle-12-ppc64le","installer_updates":false,"name":"SLE-Module-Web-Scripting12-Debuginfo-Pool"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/12/ppc64le/product_source/","autorefresh":false,"distro_target":"sle-12-ppc64le","id":1990,"enabled":false,"description":"SLE-Module-Web-Scripting12-Source-Pool for sle-12-ppc64le","name":"SLE-Module-Web-Scripting12-Source-Pool","installer_updates":false}],"name":"Web and Scripting Module","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"Web and Scripting Module 12 ppc64le","former_identifier":"sle-module-web-scripting","release_type":null,"recommended":false,"version":"12","extensions":[],"release_stage":"released","identifier":"sle-module-web-scripting","id":1151,"friendly_version":"12"},{"description":"

The Public Cloud Module is a collection of tools that enables you to create and manage cloud images from the commandline on SUSE Linux Enterprise Server. When building your own images with KIWI or SUSE Studio, initialization code specific to the target cloud is included in that image.

Access to the Public Cloud Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself; please check the Release Notes for further details.

","shortname":"Public-Cloud-Module","free":true,"arch":"ppc64le","eula_url":"","repositories":[{"id":1692,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/12/ppc64le/update/","distro_target":"sle-12-ppc64le","autorefresh":true,"installer_updates":false,"name":"SLE-Module-Public-Cloud12-Updates","description":"SLE-Module-Public-Cloud12-Updates for sle-12-ppc64le"},{"description":"SLE-Module-Public-Cloud12-Debuginfo-Updates for sle-12-ppc64le","installer_updates":false,"name":"SLE-Module-Public-Cloud12-Debuginfo-Updates","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/12/ppc64le/update_debug/","distro_target":"sle-12-ppc64le","autorefresh":true,"id":1693,"enabled":false},{"id":1694,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/12/ppc64le/product/","autorefresh":false,"distro_target":"sle-12-ppc64le","name":"SLE-Module-Public-Cloud12-Pool","installer_updates":false,"description":"SLE-Module-Public-Cloud12-Pool for sle-12-ppc64le"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/12/ppc64le/product_debug/","distro_target":"sle-12-ppc64le","autorefresh":false,"id":1695,"enabled":false,"description":"SLE-Module-Public-Cloud12-Debuginfo-Pool for sle-12-ppc64le","installer_updates":false,"name":"SLE-Module-Public-Cloud12-Debuginfo-Pool"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/12/ppc64le/product_source/","distro_target":"sle-12-ppc64le","autorefresh":false,"id":1993,"enabled":false,"description":"SLE-Module-Public-Cloud12-Source-Pool for sle-12-ppc64le","installer_updates":false,"name":"SLE-Module-Public-Cloud12-Source-Pool"}],"online_predecessor_ids":[],"product_class":"MODULE","predecessor_ids":[],"cpe":"cpe:/o:suse:sle-module-public-cloud:12","product_type":"module","version":"12","recommended":false,"migration_extra":false,"friendly_name":"Public Cloud Module 12 ppc64le","former_identifier":"sle-module-public-cloud","release_type":null,"name":"Public Cloud Module","offline_predecessor_ids":[],"friendly_version":"12","release_stage":"released","id":1218,"identifier":"sle-module-public-cloud","extensions":[]},{"offline_predecessor_ids":[],"name":"IBM DLPAR SDK for SLE","release_type":null,"former_identifier":"ibm-dlpar-sdk","migration_extra":false,"friendly_name":"IBM DLPAR SDK for SLE 12 ppc64le","recommended":false,"version":"12","extensions":[],"release_stage":"released","identifier":"ibm-dlpar-sdk","id":1249,"friendly_version":"12","eula_url":"","arch":"ppc64le","free":true,"description":"IBM DLPAR SDK for SLE 12","shortname":"IBMDLPS12","product_type":"extension","cpe":"cpe:/o:suse:ibm-dlpar-sdk:12","predecessor_ids":[],"online_predecessor_ids":[],"product_class":"SLES-PPC","repositories":[{"description":"IBM-DLPAR-SDK","installer_updates":false,"name":"IBM-DLPAR-SDK","distro_target":null,"autorefresh":true,"url":"https://public.dhe.ibm.com/software/server/POWER/Linux/toolchain/at/suse/SLES_12/","enabled":true,"id":4429}]},{"cpe":"cpe:/o:suse:ibm-dlpar-utils:12","product_type":"extension","online_predecessor_ids":[],"product_class":"SLES-PPC","repositories":[{"enabled":true,"id":6216,"autorefresh":true,"distro_target":null,"url":"https://public.dhe.ibm.com/software/server/POWER/Linux/yum/OSS/SLES/12/ppc64le/","name":"IBM-DLPAR-utils","installer_updates":false,"description":"IBM-DLPAR-utils"}],"predecessor_ids":[],"arch":"ppc64le","eula_url":"https://public.dhe.ibm.com/software/server/POWER/Linux/yum/OSS/SLES/12/ppc64le.license/","shortname":"IBMDLPU12","description":"IBM DLPAR Utils for SLE 12","free":true,"id":1250,"release_stage":"released","identifier":"ibm-dlpar-utils","extensions":[],"friendly_version":"12","friendly_name":"IBM DLPAR Utils for SLE 12 ppc64le","migration_extra":false,"release_type":null,"former_identifier":"ibm-dlpar-utils","name":"IBM DLPAR Utils for SLE","offline_predecessor_ids":[],"version":"12","recommended":false},{"repositories":[{"distro_target":"sle-12-ppc64le","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Adv-Systems-Management/12/ppc64le/update/","enabled":true,"id":1762,"description":"SLE-Module-Adv-Systems-Management12-Updates for sle-12-ppc64le","installer_updates":false,"name":"SLE-Module-Adv-Systems-Management12-Updates"},{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Adv-Systems-Management/12/ppc64le/update_debug/","distro_target":"sle-12-ppc64le","autorefresh":true,"id":1763,"enabled":false,"description":"SLE-Module-Adv-Systems-Management12-Debuginfo-Updates for sle-12-ppc64le","installer_updates":false,"name":"SLE-Module-Adv-Systems-Management12-Debuginfo-Updates"},{"description":"SLE-Module-Adv-Systems-Management12-Pool for sle-12-ppc64le","installer_updates":false,"name":"SLE-Module-Adv-Systems-Management12-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Adv-Systems-Management/12/ppc64le/product/","distro_target":"sle-12-ppc64le","autorefresh":false,"id":1764,"enabled":true},{"description":"SLE-Module-Adv-Systems-Management12-Debuginfo-Pool for sle-12-ppc64le","installer_updates":false,"name":"SLE-Module-Adv-Systems-Management12-Debuginfo-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Adv-Systems-Management/12/ppc64le/product_debug/","distro_target":"sle-12-ppc64le","autorefresh":false,"id":1765,"enabled":false},{"description":"SLE-Module-Adv-Systems-Management12-Source-Pool for sle-12-ppc64le","name":"SLE-Module-Adv-Systems-Management12-Source-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-12-ppc64le","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Adv-Systems-Management/12/ppc64le/product_source/","enabled":false,"id":1996}],"online_predecessor_ids":[],"product_class":"MODULE","predecessor_ids":[],"cpe":"cpe:/o:suse:sle-module-adv-systems-management:12","product_type":"module","description":"

This Module contains current versions of the popular configuration management frameworks Puppet and CFEngine as well as the new systems management toolbox called machinery.

The machinery tool will be frequently updated and is SUSE's upcoming systems management toolbox for inspecting and validating systems remotely, storing their system description and creating new systems to deploy them in datacenters and clouds.

","shortname":"Adv-Sys-Mgmt-Module","free":true,"arch":"ppc64le","eula_url":"","friendly_version":"12","identifier":"sle-module-adv-systems-management","release_stage":"released","id":1294,"extensions":[],"version":"12","recommended":false,"friendly_name":"Advanced Systems Management Module 12 ppc64le","migration_extra":false,"former_identifier":"sle-module-adv-systems-management","release_type":null,"name":"Advanced Systems Management Module","offline_predecessor_ids":[]},{"predecessor_ids":[],"online_predecessor_ids":[],"product_class":"MODULE","repositories":[{"description":"SLE-Module-Toolchain12-Updates for sle-12-ppc64le","name":"SLE-Module-Toolchain12-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-12-ppc64le","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Toolchain/12/ppc64le/update/","enabled":true,"id":1895},{"autorefresh":true,"distro_target":"sle-12-ppc64le","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Toolchain/12/ppc64le/update_debug/","enabled":false,"id":1896,"description":"SLE-Module-Toolchain12-Debuginfo-Updates for sle-12-ppc64le","name":"SLE-Module-Toolchain12-Debuginfo-Updates","installer_updates":false},{"enabled":true,"id":1897,"distro_target":"sle-12-ppc64le","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Toolchain/12/ppc64le/product/","installer_updates":false,"name":"SLE-Module-Toolchain12-Pool","description":"SLE-Module-Toolchain12-Pool for sle-12-ppc64le"},{"autorefresh":false,"distro_target":"sle-12-ppc64le","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Toolchain/12/ppc64le/product_debug/","enabled":false,"id":1898,"description":"SLE-Module-Toolchain12-Debuginfo-Pool for sle-12-ppc64le","name":"SLE-Module-Toolchain12-Debuginfo-Pool","installer_updates":false}],"cpe":"cpe:/o:suse:sle-module-toolchain:12","product_type":"module","shortname":"Toolchain-Module","description":"Via this Module you will have access to a more recent GCC and Toolchain in addition to the default compiler of SUSE Linux Enterprise. Access to the Toolchain Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself. Please check the Release Notes for further details.","free":true,"eula_url":"","arch":"ppc64le","friendly_version":"12","extensions":[],"identifier":"sle-module-toolchain","release_stage":"released","id":1339,"recommended":false,"version":"12","name":"Toolchain Module","offline_predecessor_ids":[],"friendly_name":"Toolchain Module 12 ppc64le","migration_extra":false,"release_type":null,"former_identifier":"sle-module-toolchain"},{"free":true,"shortname":"Containers-Module","description":"

This Module contains several packages revolving around containers and related tools.

","eula_url":"","arch":"ppc64le","predecessor_ids":[],"product_class":"MODULE","online_predecessor_ids":[],"repositories":[{"description":"SLE-Module-Containers12-Updates for sle-12-ppc64le","name":"SLE-Module-Containers12-Updates","installer_updates":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/12/ppc64le/update/","autorefresh":true,"distro_target":"sle-12-ppc64le","id":1972,"enabled":true},{"description":"SLE-Module-Containers12-Debuginfo-Updates for sle-12-ppc64le","name":"SLE-Module-Containers12-Debuginfo-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-12-ppc64le","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/12/ppc64le/update_debug/","enabled":false,"id":1973},{"enabled":true,"id":1974,"autorefresh":false,"distro_target":"sle-12-ppc64le","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/12/ppc64le/product/","name":"SLE-Module-Containers12-Pool","installer_updates":false,"description":"SLE-Module-Containers12-Pool for sle-12-ppc64le"},{"description":"SLE-Module-Containers12-Debuginfo-Pool for sle-12-ppc64le","name":"SLE-Module-Containers12-Debuginfo-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-12-ppc64le","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/12/ppc64le/product_debug/","enabled":false,"id":1975},{"autorefresh":false,"distro_target":"sle-12-ppc64le","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/12/ppc64le/product_source/","enabled":false,"id":1976,"description":"SLE-Module-Containers12-Source-Pool for sle-12-ppc64le","name":"SLE-Module-Containers12-Source-Pool","installer_updates":false}],"product_type":"module","cpe":"cpe:/o:suse:sle-module-containers:12","recommended":false,"version":"12","offline_predecessor_ids":[],"name":"Containers Module","release_type":null,"former_identifier":"sle-module-containers","friendly_name":"Containers Module 12 ppc64le","migration_extra":false,"friendly_version":"12","extensions":[],"id":1353,"release_stage":"released","identifier":"sle-module-containers"},{"free":true,"description":"

SUSE Linux Enterprise Software Development Kit is the Software Development Kit for the family of SUSE Linux Enterprise products. It is a free of charge extension for partners and customers working with SUSE Linux Enterprise Server and Desktop and derived products.

Packages on the SDK are delivered without L3 support; maintenance updates will be done for critical security and critical non-security issues, and where needed to remain in sync with packages delivered in the SUSE Linux Enterprise Server and Desktop products.

Packages to rebuild SUSE Linux Enterprise Server are not part of the SUSE Linux Enterprise Software Development Kit.

","shortname":"SDK12-SP3","arch":"ppc64le","eula_url":"https://updates.suse.com/SUSE/Products/SLE-SDK/12-SP3/ppc64le/product.license/","repositories":[{"description":"SLE-SDK12-SP3-Updates for sle-12-ppc64le","installer_updates":false,"name":"SLE-SDK12-SP3-Updates","url":"https://updates.suse.com/SUSE/Updates/SLE-SDK/12-SP3/ppc64le/update/","distro_target":"sle-12-ppc64le","autorefresh":true,"id":2235,"enabled":true},{"id":2236,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-SDK/12-SP3/ppc64le/update_debug/","autorefresh":true,"distro_target":"sle-12-ppc64le","name":"SLE-SDK12-SP3-Debuginfo-Updates","installer_updates":false,"description":"SLE-SDK12-SP3-Debuginfo-Updates for sle-12-ppc64le"},{"url":"https://updates.suse.com/SUSE/Products/SLE-SDK/12-SP3/ppc64le/product/","autorefresh":false,"distro_target":"sle-12-ppc64le","id":2237,"enabled":true,"description":"SLE-SDK12-SP3-Pool for sle-12-ppc64le","name":"SLE-SDK12-SP3-Pool","installer_updates":false},{"installer_updates":false,"name":"SLE-SDK12-SP3-Debuginfo-Pool","description":"SLE-SDK12-SP3-Debuginfo-Pool for sle-12-ppc64le","enabled":false,"id":2238,"distro_target":"sle-12-ppc64le","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-SDK/12-SP3/ppc64le/product_debug/"},{"id":2239,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-SDK/12-SP3/ppc64le/product_source/","distro_target":"sle-12-ppc64le","autorefresh":false,"installer_updates":false,"name":"SLE-SDK12-SP3-Source-Pool","description":"SLE-SDK12-SP3-Source-Pool for sle-12-ppc64le"}],"online_predecessor_ids":[1145,1343,1364],"product_class":"SLE-SDK","predecessor_ids":[1145,1343,1364],"product_type":"extension","cpe":"cpe:/o:suse:sle-sdk:12:sp3","version":"12.3","recommended":false,"former_identifier":"sle-sdk","release_type":null,"friendly_name":"SUSE Linux Enterprise Software Development Kit 12 SP3 ppc64le","migration_extra":false,"offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Software Development Kit","friendly_version":"12 SP3","id":1428,"release_stage":"released","identifier":"sle-sdk","extensions":[]},{"cpe":"cpe:/o:suse:sle-ha:12:sp3","product_type":"extension","product_class":"SLE-HAE-PPC","online_predecessor_ids":[1420],"repositories":[{"description":"SLE-HA12-SP3-Updates for sle-12-ppc64le","installer_updates":false,"name":"SLE-HA12-SP3-Updates","url":"https://updates.suse.com/SUSE/Updates/SLE-HA/12-SP3/ppc64le/update/","distro_target":"sle-12-ppc64le","autorefresh":true,"id":2255,"enabled":true},{"description":"SLE-HA12-SP3-Debuginfo-Updates for sle-12-ppc64le","installer_updates":false,"name":"SLE-HA12-SP3-Debuginfo-Updates","distro_target":"sle-12-ppc64le","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-HA/12-SP3/ppc64le/update_debug/","enabled":false,"id":2256},{"name":"SLE-HA12-SP3-Pool","installer_updates":false,"description":"SLE-HA12-SP3-Pool for sle-12-ppc64le","id":2257,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-HA/12-SP3/ppc64le/product/","autorefresh":false,"distro_target":"sle-12-ppc64le"},{"enabled":false,"id":2258,"distro_target":"sle-12-ppc64le","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-HA/12-SP3/ppc64le/product_debug/","installer_updates":false,"name":"SLE-HA12-SP3-Debuginfo-Pool","description":"SLE-HA12-SP3-Debuginfo-Pool for sle-12-ppc64le"},{"id":2259,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-HA/12-SP3/ppc64le/product_source/","distro_target":"sle-12-ppc64le","autorefresh":false,"installer_updates":false,"name":"SLE-HA12-SP3-Source-Pool","description":"SLE-HA12-SP3-Source-Pool for sle-12-ppc64le"}],"predecessor_ids":[1420],"arch":"ppc64le","eula_url":"https://updates.suse.com/SUSE/Products/SLE-HA/12-SP3/ppc64le/product.license/","description":"SUSE Linux Enterprise High Availability Extension.","shortname":"SLEHA12-SP3","free":false,"release_stage":"released","id":1433,"identifier":"sle-ha","extensions":[],"friendly_version":"12 SP3","friendly_name":"SUSE Linux Enterprise High Availability Extension 12 SP3 ppc64le","migration_extra":false,"release_type":null,"former_identifier":"sle-hae","name":"SUSE Linux Enterprise High Availability Extension","offline_predecessor_ids":[],"version":"12.3","recommended":false},{"recommended":false,"version":"12.3","offline_predecessor_ids":[],"name":"SUSE Package Hub","release_type":null,"former_identifier":"PackageHub","migration_extra":false,"friendly_name":"SUSE Package Hub 12 SP3 ppc64le","friendly_version":"12 SP3","extensions":[],"release_stage":"released","identifier":"PackageHub","id":1531,"free":true,"description":"SUSE Package Hub is a free of charge extension providing access to community maintained packages built to run on SUSE Linux Enterprise Server. Built from the same sources used in the openSUSE distributions, these quality packages provide additional software to what is found in the SUSE Linux Enterprise Server product. Packages from the Package Hub are delivered without L3 support from SUSE. General updates and fixes to the packages in SUSE Package Hub are provided by the openSUSE community based on their discretion though SUSE will monitor and ensure that any known critical security issues will be addressed. Packages in the Package Hub are approved by SUSE for use with SUSE Linux Enterprise Server 12 and to not interfere with the supportability of SUSE Linux Enterprise Server it's modules and extensions. For more information about SUSE Package Hub please visit https://packagehub.suse.com.","shortname":"SUSE-PackageHub-12-SP3","eula_url":"","arch":"ppc64le","predecessor_ids":[1475,1478,1481],"online_predecessor_ids":[1475,1478,1481],"repositories":[{"description":"SUSE-PackageHub-12-SP3-Standard-Pool for sle-12-ppc64le","installer_updates":false,"name":"SUSE-PackageHub-12-SP3-Standard-Pool","distro_target":"sle-12-ppc64le","autorefresh":false,"url":"https://updates.suse.com/SUSE/Backports/SLE-12-SP3_ppc64le/standard/","enabled":true,"id":2451},{"url":"https://updates.suse.com/SUSE/Backports/SLE-12-SP3_ppc64le/standard_debug/","distro_target":"sle-12-ppc64le","autorefresh":true,"id":2452,"enabled":false,"description":"SUSE-PackageHub-12-SP3-Debuginfo for sle-12-ppc64le","installer_updates":false,"name":"SUSE-PackageHub-12-SP3-Debuginfo"},{"description":"SUSE-PackageHub-12-SP3-Pool for sle-12-ppc64le","name":"SUSE-PackageHub-12-SP3-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Backports/SLE-12-SP3_ppc64le/product/","autorefresh":false,"distro_target":"sle-12-ppc64le","id":2453,"enabled":true}],"product_class":"MODULE","product_type":"extension","cpe":"cpe:/o:suse:packagehub:12:sp3"},{"eula_url":"https://updates.suse.com/SUSE/Products/SLE-Live-Patching/12-SP3/ppc64le/product.license/","arch":"ppc64le","description":"

SUSE Linux Enterprise Live Patching provides packages to update critical kernel modules live in SUSE Linux Enterprise. With SUSE Linux Enterprise Live Patching, you can perform critical kernel patching without shutting down your system, reducing the need for planned downtime and increasing service availability.

","shortname":"Live-Patching","free":false,"cpe":"cpe:/o:suse:sle-live-patching:12:sp3","product_type":"extension","predecessor_ids":[1860],"product_class":"SLE-LP-PPC","online_predecessor_ids":[1860],"repositories":[{"enabled":true,"id":2467,"distro_target":"sle-12-ppc64le","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Live-Patching/12-SP3/ppc64le/update/","installer_updates":false,"name":"SLE-Live-Patching12-SP3-Updates","description":"SLE-Live-Patching12-SP3-Updates for sle-12-ppc64le"},{"name":"SLE-Live-Patching12-SP3-Debuginfo-Updates","installer_updates":false,"description":"SLE-Live-Patching12-SP3-Debuginfo-Updates for sle-12-ppc64le","id":2468,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Live-Patching/12-SP3/ppc64le/update_debug/","autorefresh":true,"distro_target":"sle-12-ppc64le"},{"installer_updates":false,"name":"SLE-Live-Patching12-SP3-Pool","description":"SLE-Live-Patching12-SP3-Pool for sle-12-ppc64le","id":2469,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Live-Patching/12-SP3/ppc64le/product/","distro_target":"sle-12-ppc64le","autorefresh":false},{"description":"SLE-Live-Patching12-SP3-Debuginfo-Pool for sle-12-ppc64le","installer_updates":false,"name":"SLE-Live-Patching12-SP3-Debuginfo-Pool","distro_target":"sle-12-ppc64le","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Live-Patching/12-SP3/ppc64le/product_debug/","enabled":false,"id":2470}],"name":"SUSE Linux Enterprise Live Patching","offline_predecessor_ids":[],"friendly_name":"SUSE Linux Enterprise Live Patching 12 SP3 ppc64le","migration_extra":false,"former_identifier":"sle-live-patching","release_type":null,"recommended":false,"version":"12.3","extensions":[],"release_stage":"released","id":1537,"identifier":"sle-live-patching","friendly_version":"12 SP3"},{"migration_extra":false,"friendly_name":"SUSE Manager Server 3.1 ppc64le","release_type":null,"former_identifier":"SUSE-Manager-Server","name":"SUSE Manager Server","offline_predecessor_ids":[],"version":"3.1","recommended":false,"release_stage":"released","identifier":"SUSE-Manager-Server","id":1622,"extensions":[],"friendly_version":"3.1","arch":"ppc64le","eula_url":"https://updates.suse.com/SUSE/Products/SUSE-Manager-Server/3.1/ppc64le/product.license/","description":"SUSE Manager lets you efficiently manage physical, virtual, and cloud-based Linux systems. It provides automated and cost-effective configuration and software management, asset management, and system provisioning.","shortname":"SUSE Manager Server","free":false,"cpe":"cpe:/o:suse:suse-manager-server:3.1","product_type":"extension","online_predecessor_ids":[],"repositories":[{"enabled":true,"id":2727,"distro_target":"sle-12-ppc64le","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SUSE-Manager-Server/3.1/ppc64le/update/","installer_updates":false,"name":"SUSE-Manager-Server-3.1-Updates","description":"SUSE-Manager-Server-3.1-Updates for sle-12-ppc64le"},{"url":"https://updates.suse.com/SUSE/Updates/SUSE-Manager-Server/3.1/ppc64le/update_debug/","autorefresh":true,"distro_target":"sle-12-ppc64le","id":2728,"enabled":false,"description":"SUSE-Manager-Server-3.1-Debuginfo-Updates for sle-12-ppc64le","name":"SUSE-Manager-Server-3.1-Debuginfo-Updates","installer_updates":false},{"url":"https://updates.suse.com/SUSE/Products/SUSE-Manager-Server/3.1/ppc64le/product/","distro_target":"sle-12-ppc64le","autorefresh":false,"id":2729,"enabled":true,"description":"SUSE-Manager-Server-3.1-Pool for sle-12-ppc64le","installer_updates":false,"name":"SUSE-Manager-Server-3.1-Pool"},{"description":"SUSE-Manager-Server-3.1-Debuginfo-Pool for sle-12-ppc64le","name":"SUSE-Manager-Server-3.1-Debuginfo-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SUSE-Manager-Server/3.1/ppc64le/product_debug/","autorefresh":false,"distro_target":"sle-12-ppc64le","id":2730,"enabled":false},{"description":"SUSE-Manager-Server-3.1-Source-Pool for sle-12-ppc64le","name":"SUSE-Manager-Server-3.1-Source-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SUSE-Manager-Server/3.1/ppc64le/product_source/","autorefresh":false,"distro_target":"sle-12-ppc64le","id":2731,"enabled":false}],"product_class":"SMS-PPC","predecessor_ids":[]},{"description":"SUSE Manager lets you efficiently manage physical, virtual, and cloud-based Linux systems. It provides automated and cost-effective configuration and software management, asset management, and system provisioning.","shortname":"SUSE Manager Server 3.2","free":false,"arch":"ppc64le","eula_url":"https://updates.suse.com/SUSE/Products/SUSE-Manager-Server/3.2/ppc64le/product.license/","repositories":[{"id":2977,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SUSE-Manager-Server/3.2/ppc64le/update/","autorefresh":true,"distro_target":"sle-12-ppc64le","name":"SUSE-Manager-Server-3.2-Updates","installer_updates":false,"description":"SUSE-Manager-Server-3.2-Updates for sle-12-ppc64le"},{"id":2978,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SUSE-Manager-Server/3.2/ppc64le/update_debug/","distro_target":"sle-12-ppc64le","autorefresh":true,"installer_updates":false,"name":"SUSE-Manager-Server-3.2-Debuginfo-Updates","description":"SUSE-Manager-Server-3.2-Debuginfo-Updates for sle-12-ppc64le"},{"id":2979,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SUSE-Manager-Server/3.2/ppc64le/product/","distro_target":"sle-12-ppc64le","autorefresh":false,"installer_updates":false,"name":"SUSE-Manager-Server-3.2-Pool","description":"SUSE-Manager-Server-3.2-Pool for sle-12-ppc64le"},{"url":"https://updates.suse.com/SUSE/Products/SUSE-Manager-Server/3.2/ppc64le/product_debug/","autorefresh":false,"distro_target":"sle-12-ppc64le","id":2980,"enabled":false,"description":"SUSE-Manager-Server-3.2-Debuginfo-Pool for sle-12-ppc64le","name":"SUSE-Manager-Server-3.2-Debuginfo-Pool","installer_updates":false},{"autorefresh":false,"distro_target":"sle-12-ppc64le","url":"https://updates.suse.com/SUSE/Products/SUSE-Manager-Server/3.2/ppc64le/product_source/","enabled":false,"id":2981,"description":"SUSE-Manager-Server-3.2-Source-Pool for sle-12-ppc64le","name":"SUSE-Manager-Server-3.2-Source-Pool","installer_updates":false}],"online_predecessor_ids":[1622],"product_class":"SMS-PPC","predecessor_ids":[1622],"cpe":"cpe:/o:suse:suse-manager-server:3.2","product_type":"extension","version":"3.2","recommended":false,"friendly_name":"SUSE Manager Server 3.2 ppc64le","migration_extra":false,"release_type":null,"former_identifier":"SUSE-Manager-Server","name":"SUSE Manager Server","offline_predecessor_ids":[],"friendly_version":"3.2","release_stage":"released","identifier":"SUSE-Manager-Server","id":1722,"extensions":[]},{"free":false,"shortname":"SLES12-SP3 LTSS","description":"SUSE Linux Enterprise offers a comprehensive suite of products built on a single code base. The platform addresses business needs from the smallest thin-client devices to the world's most powerful high-performance computing and mainframe servers. SUSE Linux Enterprise offers common management tools and technology certifications across the platform, and each product is enterprise-class.","arch":"ppc64le","eula_url":"","product_class":"SLES12-SP3-LTSS-PPC","online_predecessor_ids":[],"repositories":[{"url":"https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-SP3-LTSS/ppc64le/update/","distro_target":"sle-12-ppc64le","autorefresh":true,"id":3915,"enabled":true,"description":"SLES12-SP3-LTSS-Updates for sle-12-ppc64le","installer_updates":false,"name":"SLES12-SP3-LTSS-Updates"},{"autorefresh":true,"distro_target":"sle-12-ppc64le","url":"https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-SP3-LTSS/ppc64le/update_debug/","enabled":false,"id":3916,"description":"SLES12-SP3-LTSS-Debuginfo-Updates for sle-12-ppc64le","name":"SLES12-SP3-LTSS-Debuginfo-Updates","installer_updates":false}],"predecessor_ids":[],"product_type":"extension","cpe":"cpe:/o:suse:sles-ltss:12:sp3","version":"12.3","recommended":false,"former_identifier":"SLES-LTSS","release_type":null,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Server LTSS 12 SP3 ppc64le","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Server LTSS","friendly_version":"12 SP3","release_stage":"released","id":1930,"identifier":"SLES-LTSS","extensions":[]}],"identifier":"SLES","release_stage":"released","id":1422,"friendly_version":"12 SP3","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Server","release_type":null,"former_identifier":"SLES","migration_extra":false,"friendly_name":"SUSE Linux Enterprise Server 12 SP3 ppc64le","recommended":false,"version":"12.3","product_type":"base","cpe":"cpe:/o:suse:sles:12:sp3","predecessor_ids":[1116,1334,1355],"online_predecessor_ids":[1116,1334,1355],"repositories":[{"enabled":true,"id":2195,"distro_target":"sle-12-ppc64le","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-SP3/ppc64le/update/","installer_updates":false,"name":"SLES12-SP3-Updates","description":"SLES12-SP3-Updates for sle-12-ppc64le"},{"url":"https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-SP3/ppc64le/update_debug/","distro_target":"sle-12-ppc64le","autorefresh":true,"id":2196,"enabled":false,"description":"SLES12-SP3-Debuginfo-Updates for sle-12-ppc64le","installer_updates":false,"name":"SLES12-SP3-Debuginfo-Updates"},{"id":2197,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-SERVER-INSTALLER/12-SP3/ppc64le/update/","distro_target":"sle-12-ppc64le","autorefresh":true,"installer_updates":true,"name":"SLES12-SP3-Installer-Updates","description":"SLES12-SP3-Installer-Updates for sle-12-ppc64le"},{"enabled":true,"id":2198,"distro_target":"sle-12-ppc64le","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-SERVER/12-SP3/ppc64le/product/","installer_updates":false,"name":"SLES12-SP3-Pool","description":"SLES12-SP3-Pool for sle-12-ppc64le"},{"description":"SLES12-SP3-Debuginfo-Pool for sle-12-ppc64le","name":"SLES12-SP3-Debuginfo-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-12-ppc64le","url":"https://updates.suse.com/SUSE/Products/SLE-SERVER/12-SP3/ppc64le/product_debug/","enabled":false,"id":2199},{"installer_updates":false,"name":"SLES12-SP3-Source-Pool","description":"SLES12-SP3-Source-Pool for sle-12-ppc64le","id":2200,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-SERVER/12-SP3/ppc64le/product_source/","distro_target":"sle-12-ppc64le","autorefresh":false}],"product_class":"SLES-PPC","eula_url":"https://updates.suse.com/SUSE/Products/SLE-SERVER/12-SP3/ppc64le/product.license/","arch":"ppc64le","free":false,"shortname":"SLES12-SP3","description":"SUSE Linux Enterprise offers a comprehensive suite of products built on a single code base. The platform addresses business needs from the smallest thin-client devices to the world's most powerful high-performance computing and mainframe servers. SUSE Linux Enterprise offers common management tools and technology certifications across the platform, and each product is enterprise-class."},{"friendly_version":"12 SP3","identifier":"SLES","release_stage":"released","id":1423,"extensions":[{"shortname":"Legacy-Module","description":"

The Legacy Module helps you migrating applications from SUSE Linux Enterprise 10 and 11 and other systems to SUSE Linux Enterprise 12, by providing packages which are discontinued on SUSE Linux Enterprise Server, such as: sendmail, syslog-ng, IBM Java6, and a number of libraries (for example openssl-0.9.8).

Access to the Legacy Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself. Packages in the this module are usually supported for at most three years. Support for Sendmail and IBM Java 6 will end in September 2017 the latest.

","free":true,"eula_url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/12/s390x/product.license/","arch":"s390x","predecessor_ids":[],"product_class":"MODULE","online_predecessor_ids":[],"repositories":[{"name":"SLE-Module-Legacy12-Updates","installer_updates":false,"description":"SLE-Module-Legacy12-Updates for sle-12-s390x","id":1672,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/12/s390x/update/","autorefresh":true,"distro_target":"sle-12-s390x"},{"installer_updates":false,"name":"SLE-Module-Legacy12-Debuginfo-Updates","description":"SLE-Module-Legacy12-Debuginfo-Updates for sle-12-s390x","id":1673,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/12/s390x/update_debug/","distro_target":"sle-12-s390x","autorefresh":true},{"enabled":true,"id":1674,"distro_target":"sle-12-s390x","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/12/s390x/product/","installer_updates":false,"name":"SLE-Module-Legacy12-Pool","description":"SLE-Module-Legacy12-Pool for sle-12-s390x"},{"distro_target":"sle-12-s390x","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/12/s390x/product_debug/","enabled":false,"id":1675,"description":"SLE-Module-Legacy12-Debuginfo-Pool for sle-12-s390x","installer_updates":false,"name":"SLE-Module-Legacy12-Debuginfo-Pool"},{"name":"SLE-Module-Legacy12-Source-Pool","installer_updates":false,"description":"SLE-Module-Legacy12-Source-Pool for sle-12-s390x","enabled":false,"id":1988,"autorefresh":false,"distro_target":"sle-12-s390x","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/12/s390x/product_source/"}],"cpe":"cpe:/o:suse:sle-module-legacy:12","product_type":"module","recommended":false,"version":"12","name":"Legacy Module","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"Legacy Module 12 s390x","release_type":null,"former_identifier":"sle-module-legacy","friendly_version":"12","extensions":[],"identifier":"sle-module-legacy","release_stage":"released","id":1149},{"friendly_version":"12","release_stage":"released","identifier":"sle-module-web-scripting","id":1152,"extensions":[],"version":"12","recommended":false,"migration_extra":false,"friendly_name":"Web and Scripting Module 12 s390x","release_type":null,"former_identifier":"sle-module-web-scripting","name":"Web and Scripting Module","offline_predecessor_ids":[],"product_class":"MODULE","online_predecessor_ids":[],"repositories":[{"name":"SLE-Module-Web-Scripting12-Updates","installer_updates":false,"description":"SLE-Module-Web-Scripting12-Updates for sle-12-s390x","enabled":true,"id":1684,"autorefresh":true,"distro_target":"sle-12-s390x","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/12/s390x/update/"},{"distro_target":"sle-12-s390x","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/12/s390x/update_debug/","enabled":false,"id":1685,"description":"SLE-Module-Web-Scripting12-Debuginfo-Updates for sle-12-s390x","installer_updates":false,"name":"SLE-Module-Web-Scripting12-Debuginfo-Updates"},{"enabled":true,"id":1686,"autorefresh":false,"distro_target":"sle-12-s390x","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/12/s390x/product/","name":"SLE-Module-Web-Scripting12-Pool","installer_updates":false,"description":"SLE-Module-Web-Scripting12-Pool for sle-12-s390x"},{"description":"SLE-Module-Web-Scripting12-Debuginfo-Pool for sle-12-s390x","name":"SLE-Module-Web-Scripting12-Debuginfo-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/12/s390x/product_debug/","autorefresh":false,"distro_target":"sle-12-s390x","id":1687,"enabled":false},{"autorefresh":false,"distro_target":"sle-12-s390x","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/12/s390x/product_source/","enabled":false,"id":1991,"description":"SLE-Module-Web-Scripting12-Source-Pool for sle-12-s390x","name":"SLE-Module-Web-Scripting12-Source-Pool","installer_updates":false}],"predecessor_ids":[],"cpe":"cpe:/o:suse:sle-module-web-scripting:12","product_type":"module","shortname":"Web-and-Scripting-Module","description":"

The SUSE Linux Enterprise Web and Scripting Module delivers a comprehensive suite of scripting languages, frameworks, and related tools helping developers and systems administrators accelerate the creation of stable, modern web applications, using dynamic languages, such as PHP, Ruby on Rails, and Python.

Access to the Web and Scripting Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself: Package versions in the this module are usually supported for at most three years. We are planning to release more recent versions on a schedule of approximately 18 month; the exact dates may differ per package.

","free":true,"arch":"s390x","eula_url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/12/s390x/product.license/"},{"extensions":[],"release_stage":"released","identifier":"sle-module-public-cloud","id":1219,"friendly_version":"12","name":"Public Cloud Module","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"Public Cloud Module 12 s390x","former_identifier":"sle-module-public-cloud","release_type":null,"recommended":false,"version":"12","cpe":"cpe:/o:suse:sle-module-public-cloud:12","product_type":"module","predecessor_ids":[],"repositories":[{"name":"SLE-Module-Public-Cloud12-Updates","installer_updates":false,"description":"SLE-Module-Public-Cloud12-Updates for sle-12-s390x","id":1696,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/12/s390x/update/","autorefresh":true,"distro_target":"sle-12-s390x"},{"enabled":false,"id":1697,"distro_target":"sle-12-s390x","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/12/s390x/update_debug/","installer_updates":false,"name":"SLE-Module-Public-Cloud12-Debuginfo-Updates","description":"SLE-Module-Public-Cloud12-Debuginfo-Updates for sle-12-s390x"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/12/s390x/product/","autorefresh":false,"distro_target":"sle-12-s390x","id":1698,"enabled":true,"description":"SLE-Module-Public-Cloud12-Pool for sle-12-s390x","name":"SLE-Module-Public-Cloud12-Pool","installer_updates":false},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/12/s390x/product_debug/","distro_target":"sle-12-s390x","autorefresh":false,"id":1699,"enabled":false,"description":"SLE-Module-Public-Cloud12-Debuginfo-Pool for sle-12-s390x","installer_updates":false,"name":"SLE-Module-Public-Cloud12-Debuginfo-Pool"},{"enabled":false,"id":1994,"autorefresh":false,"distro_target":"sle-12-s390x","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/12/s390x/product_source/","name":"SLE-Module-Public-Cloud12-Source-Pool","installer_updates":false,"description":"SLE-Module-Public-Cloud12-Source-Pool for sle-12-s390x"}],"online_predecessor_ids":[],"product_class":"MODULE","eula_url":"","arch":"s390x","description":"

The Public Cloud Module is a collection of tools that enables you to create and manage cloud images from the commandline on SUSE Linux Enterprise Server. When building your own images with KIWI or SUSE Studio, initialization code specific to the target cloud is included in that image.

Access to the Public Cloud Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself; please check the Release Notes for further details.

","shortname":"Public-Cloud-Module","free":true},{"friendly_version":"12","extensions":[],"release_stage":"released","identifier":"sle-module-adv-systems-management","id":1295,"recommended":false,"version":"12","offline_predecessor_ids":[],"name":"Advanced Systems Management Module","release_type":null,"former_identifier":"sle-module-adv-systems-management","friendly_name":"Advanced Systems Management Module 12 s390x","migration_extra":false,"predecessor_ids":[],"online_predecessor_ids":[],"product_class":"MODULE","repositories":[{"description":"SLE-Module-Adv-Systems-Management12-Updates for sle-12-s390x","installer_updates":false,"name":"SLE-Module-Adv-Systems-Management12-Updates","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Adv-Systems-Management/12/s390x/update/","distro_target":"sle-12-s390x","autorefresh":true,"id":1766,"enabled":true},{"name":"SLE-Module-Adv-Systems-Management12-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-Adv-Systems-Management12-Debuginfo-Updates for sle-12-s390x","enabled":false,"id":1767,"autorefresh":true,"distro_target":"sle-12-s390x","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Adv-Systems-Management/12/s390x/update_debug/"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Adv-Systems-Management/12/s390x/product/","autorefresh":false,"distro_target":"sle-12-s390x","id":1768,"enabled":true,"description":"SLE-Module-Adv-Systems-Management12-Pool for sle-12-s390x","name":"SLE-Module-Adv-Systems-Management12-Pool","installer_updates":false},{"id":1769,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Adv-Systems-Management/12/s390x/product_debug/","autorefresh":false,"distro_target":"sle-12-s390x","name":"SLE-Module-Adv-Systems-Management12-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-Adv-Systems-Management12-Debuginfo-Pool for sle-12-s390x"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Adv-Systems-Management/12/s390x/product_source/","autorefresh":false,"distro_target":"sle-12-s390x","id":1997,"enabled":false,"description":"SLE-Module-Adv-Systems-Management12-Source-Pool for sle-12-s390x","name":"SLE-Module-Adv-Systems-Management12-Source-Pool","installer_updates":false}],"product_type":"module","cpe":"cpe:/o:suse:sle-module-adv-systems-management:12","free":true,"description":"

This Module contains current versions of the popular configuration management frameworks Puppet and CFEngine as well as the new systems management toolbox called machinery.

The machinery tool will be frequently updated and is SUSE's upcoming systems management toolbox for inspecting and validating systems remotely, storing their system description and creating new systems to deploy them in datacenters and clouds.

","shortname":"Adv-Sys-Mgmt-Module","eula_url":"","arch":"s390x"},{"extensions":[],"release_stage":"released","id":1340,"identifier":"sle-module-toolchain","friendly_version":"12","offline_predecessor_ids":[],"name":"Toolchain Module","release_type":null,"former_identifier":"sle-module-toolchain","friendly_name":"Toolchain Module 12 s390x","migration_extra":false,"recommended":false,"version":"12","product_type":"module","cpe":"cpe:/o:suse:sle-module-toolchain:12","predecessor_ids":[],"product_class":"MODULE","online_predecessor_ids":[],"repositories":[{"enabled":true,"id":1899,"autorefresh":true,"distro_target":"sle-12-s390x","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Toolchain/12/s390x/update/","name":"SLE-Module-Toolchain12-Updates","installer_updates":false,"description":"SLE-Module-Toolchain12-Updates for sle-12-s390x"},{"installer_updates":false,"name":"SLE-Module-Toolchain12-Debuginfo-Updates","description":"SLE-Module-Toolchain12-Debuginfo-Updates for sle-12-s390x","id":1900,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Toolchain/12/s390x/update_debug/","distro_target":"sle-12-s390x","autorefresh":true},{"installer_updates":false,"name":"SLE-Module-Toolchain12-Pool","description":"SLE-Module-Toolchain12-Pool for sle-12-s390x","enabled":true,"id":1901,"distro_target":"sle-12-s390x","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Toolchain/12/s390x/product/"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Toolchain/12/s390x/product_debug/","autorefresh":false,"distro_target":"sle-12-s390x","id":1902,"enabled":false,"description":"SLE-Module-Toolchain12-Debuginfo-Pool for sle-12-s390x","name":"SLE-Module-Toolchain12-Debuginfo-Pool","installer_updates":false}],"eula_url":"","arch":"s390x","free":true,"shortname":"Toolchain-Module","description":"Via this Module you will have access to a more recent GCC and Toolchain in addition to the default compiler of SUSE Linux Enterprise. Access to the Toolchain Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself. Please check the Release Notes for further details."},{"identifier":"SUSE-Manager-Server","release_stage":"released","id":1348,"extensions":[],"friendly_version":"3.0","migration_extra":false,"friendly_name":"SUSE Manager Server 3.0 s390x","release_type":null,"former_identifier":"SUSE-Manager-Server","name":"SUSE Manager Server","offline_predecessor_ids":[],"version":"3.0","recommended":false,"cpe":"cpe:/o:suse:suse-manager-server:3.0","product_type":"extension","product_class":"SMS-Z","online_predecessor_ids":[],"repositories":[{"url":"https://updates.suse.com/SUSE/Updates/SUSE-Manager-Server/3.0/s390x/update/","autorefresh":true,"distro_target":"sle-12-s390x","id":1945,"enabled":true,"description":"SUSE-Manager-Server-3.0-Updates for sle-12-s390x","name":"SUSE-Manager-Server-3.0-Updates","installer_updates":false},{"description":"SUSE-Manager-Server-3.0-Debuginfo-Updates for sle-12-s390x","installer_updates":false,"name":"SUSE-Manager-Server-3.0-Debuginfo-Updates","distro_target":"sle-12-s390x","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SUSE-Manager-Server/3.0/s390x/update_debug/","enabled":false,"id":1946},{"installer_updates":false,"name":"SUSE-Manager-Server-3.0-Pool","description":"SUSE-Manager-Server-3.0-Pool for sle-12-s390x","enabled":true,"id":1947,"distro_target":"sle-12-s390x","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SUSE-Manager-Server/3.0/s390x/product/"},{"description":"SUSE-Manager-Server-3.0-Debuginfo-Pool for sle-12-s390x","installer_updates":false,"name":"SUSE-Manager-Server-3.0-Debuginfo-Pool","distro_target":"sle-12-s390x","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SUSE-Manager-Server/3.0/s390x/product_debug/","enabled":false,"id":1948},{"url":"https://updates.suse.com/SUSE/Products/SUSE-Manager-Server/3.0/s390x/product_source/","distro_target":"sle-12-s390x","autorefresh":false,"id":2000,"enabled":false,"description":"SUSE-Manager-Server-3.0-Source-Pool for sle-12-s390x","installer_updates":false,"name":"SUSE-Manager-Server-3.0-Source-Pool"}],"predecessor_ids":[],"arch":"s390x","eula_url":"https://updates.suse.com/SUSE/Products/SUSE-Manager-Server/3.0/s390x/product.license/","description":"SUSE Manager lets you efficiently manage physical, virtual, and cloud-based Linux systems. It provides automated and cost-effective configuration and software management, asset management, and system provisioning.","shortname":"SUSE Manager Server","free":false},{"product_type":"module","cpe":"cpe:/o:suse:sle-module-containers:12","repositories":[{"name":"SLE-Module-Containers12-Updates","installer_updates":false,"description":"SLE-Module-Containers12-Updates for sle-12-s390x","id":1977,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/12/s390x/update/","autorefresh":true,"distro_target":"sle-12-s390x"},{"name":"SLE-Module-Containers12-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-Containers12-Debuginfo-Updates for sle-12-s390x","enabled":false,"id":1978,"autorefresh":true,"distro_target":"sle-12-s390x","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/12/s390x/update_debug/"},{"enabled":true,"id":1979,"distro_target":"sle-12-s390x","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/12/s390x/product/","installer_updates":false,"name":"SLE-Module-Containers12-Pool","description":"SLE-Module-Containers12-Pool for sle-12-s390x"},{"description":"SLE-Module-Containers12-Debuginfo-Pool for sle-12-s390x","installer_updates":false,"name":"SLE-Module-Containers12-Debuginfo-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/12/s390x/product_debug/","distro_target":"sle-12-s390x","autorefresh":false,"id":1980,"enabled":false},{"id":1981,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/12/s390x/product_source/","distro_target":"sle-12-s390x","autorefresh":false,"installer_updates":false,"name":"SLE-Module-Containers12-Source-Pool","description":"SLE-Module-Containers12-Source-Pool for sle-12-s390x"}],"online_predecessor_ids":[],"product_class":"MODULE","predecessor_ids":[],"arch":"s390x","eula_url":"","free":true,"description":"

This Module contains several packages revolving around containers and related tools.

","shortname":"Containers-Module","identifier":"sle-module-containers","release_stage":"released","id":1354,"extensions":[],"friendly_version":"12","former_identifier":"sle-module-containers","release_type":null,"friendly_name":"Containers Module 12 s390x","migration_extra":false,"offline_predecessor_ids":[],"name":"Containers Module","version":"12","recommended":false},{"version":"12.3","recommended":false,"former_identifier":"sle-sdk","release_type":null,"friendly_name":"SUSE Linux Enterprise Software Development Kit 12 SP3 s390x","migration_extra":false,"offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Software Development Kit","friendly_version":"12 SP3","identifier":"sle-sdk","release_stage":"released","id":1429,"extensions":[],"free":true,"shortname":"SDK12-SP3","description":"

SUSE Linux Enterprise Software Development Kit is the Software Development Kit for the family of SUSE Linux Enterprise products. It is a free of charge extension for partners and customers working with SUSE Linux Enterprise Server and Desktop and derived products.

Packages on the SDK are delivered without L3 support; maintenance updates will be done for critical security and critical non-security issues, and where needed to remain in sync with packages delivered in the SUSE Linux Enterprise Server and Desktop products.

Packages to rebuild SUSE Linux Enterprise Server are not part of the SUSE Linux Enterprise Software Development Kit.

","arch":"s390x","eula_url":"https://updates.suse.com/SUSE/Products/SLE-SDK/12-SP3/s390x/product.license/","product_class":"SLE-SDK","online_predecessor_ids":[1146,1344,1365],"repositories":[{"distro_target":"sle-12-s390x","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-SDK/12-SP3/s390x/update/","enabled":true,"id":2240,"description":"SLE-SDK12-SP3-Updates for sle-12-s390x","installer_updates":false,"name":"SLE-SDK12-SP3-Updates"},{"description":"SLE-SDK12-SP3-Debuginfo-Updates for sle-12-s390x","name":"SLE-SDK12-SP3-Debuginfo-Updates","installer_updates":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-SDK/12-SP3/s390x/update_debug/","autorefresh":true,"distro_target":"sle-12-s390x","id":2241,"enabled":false},{"enabled":true,"id":2242,"autorefresh":false,"distro_target":"sle-12-s390x","url":"https://updates.suse.com/SUSE/Products/SLE-SDK/12-SP3/s390x/product/","name":"SLE-SDK12-SP3-Pool","installer_updates":false,"description":"SLE-SDK12-SP3-Pool for sle-12-s390x"},{"description":"SLE-SDK12-SP3-Debuginfo-Pool for sle-12-s390x","name":"SLE-SDK12-SP3-Debuginfo-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-12-s390x","url":"https://updates.suse.com/SUSE/Products/SLE-SDK/12-SP3/s390x/product_debug/","enabled":false,"id":2243},{"autorefresh":false,"distro_target":"sle-12-s390x","url":"https://updates.suse.com/SUSE/Products/SLE-SDK/12-SP3/s390x/product_source/","enabled":false,"id":2244,"description":"SLE-SDK12-SP3-Source-Pool for sle-12-s390x","name":"SLE-SDK12-SP3-Source-Pool","installer_updates":false}],"predecessor_ids":[1146,1344,1365],"product_type":"extension","cpe":"cpe:/o:suse:sle-sdk:12:sp3"},{"eula_url":"https://updates.suse.com/SUSE/Products/SLE-HA/12-SP3/s390x/product.license/","arch":"s390x","description":"SUSE Linux Enterprise High Availability Extension.","shortname":"SLEHA12-SP3","free":false,"cpe":"cpe:/o:suse:sle-ha:12:sp3","product_type":"extension","predecessor_ids":[1244,1336,1360],"online_predecessor_ids":[1244,1336,1360],"repositories":[{"id":2260,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-HA/12-SP3/s390x/update/","distro_target":"sle-12-s390x","autorefresh":true,"installer_updates":false,"name":"SLE-HA12-SP3-Updates","description":"SLE-HA12-SP3-Updates for sle-12-s390x"},{"description":"SLE-HA12-SP3-Debuginfo-Updates for sle-12-s390x","name":"SLE-HA12-SP3-Debuginfo-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-12-s390x","url":"https://updates.suse.com/SUSE/Updates/SLE-HA/12-SP3/s390x/update_debug/","enabled":false,"id":2261},{"description":"SLE-HA12-SP3-Pool for sle-12-s390x","name":"SLE-HA12-SP3-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-HA/12-SP3/s390x/product/","autorefresh":false,"distro_target":"sle-12-s390x","id":2262,"enabled":true},{"url":"https://updates.suse.com/SUSE/Products/SLE-HA/12-SP3/s390x/product_debug/","autorefresh":false,"distro_target":"sle-12-s390x","id":2263,"enabled":false,"description":"SLE-HA12-SP3-Debuginfo-Pool for sle-12-s390x","name":"SLE-HA12-SP3-Debuginfo-Pool","installer_updates":false},{"id":2264,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-HA/12-SP3/s390x/product_source/","distro_target":"sle-12-s390x","autorefresh":false,"installer_updates":false,"name":"SLE-HA12-SP3-Source-Pool","description":"SLE-HA12-SP3-Source-Pool for sle-12-s390x"}],"product_class":"SLE-HAE-Z","name":"SUSE Linux Enterprise High Availability Extension","offline_predecessor_ids":[1080,1082,1084,1086,1257],"friendly_name":"SUSE Linux Enterprise High Availability Extension 12 SP3 s390x","migration_extra":false,"release_type":null,"former_identifier":"sle-hae","recommended":false,"version":"12.3","extensions":[{"recommended":false,"version":"12.3","offline_predecessor_ids":[1109,1110,1287],"name":"SUSE Linux Enterprise High Availability GEO Extension","former_identifier":"sle-hae-geo","release_type":null,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise High Availability GEO Extension 12 SP3 s390x","friendly_version":"12 SP3","extensions":[],"id":1436,"release_stage":"released","identifier":"sle-ha-geo","free":false,"shortname":"SLEHAGEO12-SP3","description":"SUSE Linux Enterprise High Availability Geographical Cluster Extension","eula_url":"https://updates.suse.com/SUSE/Products/SLE-HA-GEO/12-SP3/s390x/product.license/","arch":"s390x","predecessor_ids":[1156,1345,1362],"online_predecessor_ids":[1156,1345,1362],"repositories":[{"name":"SLE-HA-GEO12-SP3-Updates","installer_updates":false,"description":"SLE-HA-GEO12-SP3-Updates for sle-12-s390x","enabled":true,"id":2270,"autorefresh":true,"distro_target":"sle-12-s390x","url":"https://updates.suse.com/SUSE/Updates/SLE-HA-GEO/12-SP3/s390x/update/"},{"enabled":false,"id":2271,"distro_target":"sle-12-s390x","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-HA-GEO/12-SP3/s390x/update_debug/","installer_updates":false,"name":"SLE-HA-GEO12-SP3-Debuginfo-Updates","description":"SLE-HA-GEO12-SP3-Debuginfo-Updates for sle-12-s390x"},{"enabled":true,"id":2272,"autorefresh":false,"distro_target":"sle-12-s390x","url":"https://updates.suse.com/SUSE/Products/SLE-HA-GEO/12-SP3/s390x/product/","name":"SLE-HA-GEO12-SP3-Pool","installer_updates":false,"description":"SLE-HA-GEO12-SP3-Pool for sle-12-s390x"},{"description":"SLE-HA-GEO12-SP3-Debuginfo-Pool for sle-12-s390x","installer_updates":false,"name":"SLE-HA-GEO12-SP3-Debuginfo-Pool","distro_target":"sle-12-s390x","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-HA-GEO/12-SP3/s390x/product_debug/","enabled":false,"id":2273},{"description":"SLE-HA-GEO12-SP3-Source-Pool for sle-12-s390x","installer_updates":false,"name":"SLE-HA-GEO12-SP3-Source-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-HA-GEO/12-SP3/s390x/product_source/","distro_target":"sle-12-s390x","autorefresh":false,"id":2274,"enabled":false}],"product_class":"SLE-HAE-GEO","product_type":"extension","cpe":"cpe:/o:suse:sle-ha-geo:12:sp3"}],"id":1434,"release_stage":"released","identifier":"sle-ha","friendly_version":"12 SP3"},{"friendly_version":"3.1","extensions":[],"release_stage":"released","identifier":"SUSE-Manager-Server","id":1519,"recommended":false,"version":"3.1","name":"SUSE Manager Server","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"SUSE Manager Server 3.1 s390x","former_identifier":"SUSE-Manager-Server","release_type":null,"predecessor_ids":[1348],"product_class":"SMS-Z","online_predecessor_ids":[1348],"repositories":[{"description":"SUSE-Manager-Server-3.1-Updates for sle-12-s390x","name":"SUSE-Manager-Server-3.1-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-12-s390x","url":"https://updates.suse.com/SUSE/Updates/SUSE-Manager-Server/3.1/s390x/update/","enabled":true,"id":2405},{"installer_updates":false,"name":"SUSE-Manager-Server-3.1-Debuginfo-Updates","description":"SUSE-Manager-Server-3.1-Debuginfo-Updates for sle-12-s390x","enabled":false,"id":2406,"distro_target":"sle-12-s390x","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SUSE-Manager-Server/3.1/s390x/update_debug/"},{"enabled":true,"id":2407,"autorefresh":false,"distro_target":"sle-12-s390x","url":"https://updates.suse.com/SUSE/Products/SUSE-Manager-Server/3.1/s390x/product/","name":"SUSE-Manager-Server-3.1-Pool","installer_updates":false,"description":"SUSE-Manager-Server-3.1-Pool for sle-12-s390x"},{"distro_target":"sle-12-s390x","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SUSE-Manager-Server/3.1/s390x/product_debug/","enabled":false,"id":2408,"description":"SUSE-Manager-Server-3.1-Debuginfo-Pool for sle-12-s390x","installer_updates":false,"name":"SUSE-Manager-Server-3.1-Debuginfo-Pool"},{"id":2409,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SUSE-Manager-Server/3.1/s390x/product_source/","distro_target":"sle-12-s390x","autorefresh":false,"installer_updates":false,"name":"SUSE-Manager-Server-3.1-Source-Pool","description":"SUSE-Manager-Server-3.1-Source-Pool for sle-12-s390x"}],"cpe":"cpe:/o:suse:suse-manager-server:3.1","product_type":"extension","description":"SUSE Manager lets you efficiently manage physical, virtual, and cloud-based Linux systems. It provides automated and cost-effective configuration and software management, asset management, and system provisioning.","shortname":"SUSE Manager Server","free":false,"eula_url":"https://updates.suse.com/SUSE/Products/SUSE-Manager-Server/3.1/s390x/product.license/","arch":"s390x"},{"description":"SUSE Package Hub is a free of charge extension providing access to community maintained packages built to run on SUSE Linux Enterprise Server. Built from the same sources used in the openSUSE distributions, these quality packages provide additional software to what is found in the SUSE Linux Enterprise Server product. Packages from the Package Hub are delivered without L3 support from SUSE. General updates and fixes to the packages in SUSE Package Hub are provided by the openSUSE community based on their discretion though SUSE will monitor and ensure that any known critical security issues will be addressed. Packages in the Package Hub are approved by SUSE for use with SUSE Linux Enterprise Server 12 and to not interfere with the supportability of SUSE Linux Enterprise Server it's modules and extensions. For more information about SUSE Package Hub please visit https://packagehub.suse.com.","shortname":"SUSE-PackageHub-12-SP3","free":true,"arch":"s390x","eula_url":"","product_class":"MODULE","online_predecessor_ids":[1474,1477,1480],"repositories":[{"autorefresh":false,"distro_target":"sle-12-s390x","url":"https://updates.suse.com/SUSE/Backports/SLE-12-SP3_s390x/standard/","enabled":true,"id":2448,"description":"SUSE-PackageHub-12-SP3-Standard-Pool for sle-12-s390x","name":"SUSE-PackageHub-12-SP3-Standard-Pool","installer_updates":false},{"enabled":false,"id":2449,"distro_target":"sle-12-s390x","autorefresh":true,"url":"https://updates.suse.com/SUSE/Backports/SLE-12-SP3_s390x/standard_debug/","installer_updates":false,"name":"SUSE-PackageHub-12-SP3-Debuginfo","description":"SUSE-PackageHub-12-SP3-Debuginfo for sle-12-s390x"},{"distro_target":"sle-12-s390x","autorefresh":false,"url":"https://updates.suse.com/SUSE/Backports/SLE-12-SP3_s390x/product/","enabled":true,"id":2450,"description":"SUSE-PackageHub-12-SP3-Pool for sle-12-s390x","installer_updates":false,"name":"SUSE-PackageHub-12-SP3-Pool"}],"predecessor_ids":[1474,1477,1480],"cpe":"cpe:/o:suse:packagehub:12:sp3","product_type":"extension","version":"12.3","recommended":false,"migration_extra":false,"friendly_name":"SUSE Package Hub 12 SP3 s390x","former_identifier":"PackageHub","release_type":null,"name":"SUSE Package Hub","offline_predecessor_ids":[],"friendly_version":"12 SP3","id":1530,"release_stage":"released","identifier":"PackageHub","extensions":[]},{"friendly_version":"3.2","extensions":[],"release_stage":"released","identifier":"SUSE-Manager-Server","id":1723,"recommended":false,"version":"3.2","name":"SUSE Manager Server","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"SUSE Manager Server 3.2 s390x","former_identifier":"SUSE-Manager-Server","release_type":null,"predecessor_ids":[1519],"online_predecessor_ids":[1519],"repositories":[{"description":"SUSE-Manager-Server-3.2-Updates for sle-12-s390x","installer_updates":false,"name":"SUSE-Manager-Server-3.2-Updates","url":"https://updates.suse.com/SUSE/Updates/SUSE-Manager-Server/3.2/s390x/update/","distro_target":"sle-12-s390x","autorefresh":true,"id":2982,"enabled":true},{"distro_target":"sle-12-s390x","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SUSE-Manager-Server/3.2/s390x/update_debug/","enabled":false,"id":2983,"description":"SUSE-Manager-Server-3.2-Debuginfo-Updates for sle-12-s390x","installer_updates":false,"name":"SUSE-Manager-Server-3.2-Debuginfo-Updates"},{"url":"https://updates.suse.com/SUSE/Products/SUSE-Manager-Server/3.2/s390x/product/","autorefresh":false,"distro_target":"sle-12-s390x","id":2984,"enabled":true,"description":"SUSE-Manager-Server-3.2-Pool for sle-12-s390x","name":"SUSE-Manager-Server-3.2-Pool","installer_updates":false},{"id":2985,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SUSE-Manager-Server/3.2/s390x/product_debug/","autorefresh":false,"distro_target":"sle-12-s390x","name":"SUSE-Manager-Server-3.2-Debuginfo-Pool","installer_updates":false,"description":"SUSE-Manager-Server-3.2-Debuginfo-Pool for sle-12-s390x"},{"description":"SUSE-Manager-Server-3.2-Source-Pool for sle-12-s390x","name":"SUSE-Manager-Server-3.2-Source-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SUSE-Manager-Server/3.2/s390x/product_source/","autorefresh":false,"distro_target":"sle-12-s390x","id":2986,"enabled":false}],"product_class":"SMS-Z","cpe":"cpe:/o:suse:suse-manager-server:3.2","product_type":"extension","shortname":"SUSE Manager Server 3.2","description":"SUSE Manager lets you efficiently manage physical, virtual, and cloud-based Linux systems. It provides automated and cost-effective configuration and software management, asset management, and system provisioning.","free":false,"eula_url":"https://updates.suse.com/SUSE/Products/SUSE-Manager-Server/3.2/s390x/product.license/","arch":"s390x"},{"friendly_version":"12 SP3","extensions":[],"id":1931,"release_stage":"released","identifier":"SLES-LTSS","recommended":false,"version":"12.3","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Server LTSS","former_identifier":"SLES-LTSS","release_type":null,"friendly_name":"SUSE Linux Enterprise Server LTSS 12 SP3 s390x","migration_extra":false,"predecessor_ids":[],"online_predecessor_ids":[],"product_class":"SLES12-SP3-LTSS-Z","repositories":[{"distro_target":"sle-12-s390x","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-SP3-LTSS/s390x/update/","enabled":true,"id":3917,"description":"SLES12-SP3-LTSS-Updates for sle-12-s390x","installer_updates":false,"name":"SLES12-SP3-LTSS-Updates"},{"autorefresh":true,"distro_target":"sle-12-s390x","url":"https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-SP3-LTSS/s390x/update_debug/","enabled":false,"id":3918,"description":"SLES12-SP3-LTSS-Debuginfo-Updates for sle-12-s390x","name":"SLES12-SP3-LTSS-Debuginfo-Updates","installer_updates":false}],"product_type":"extension","cpe":"cpe:/o:suse:sles-ltss:12:sp3","free":false,"shortname":"SLES12-SP3 LTSS","description":"SUSE Linux Enterprise offers a comprehensive suite of products built on a single code base. The platform addresses business needs from the smallest thin-client devices to the world's most powerful high-performance computing and mainframe servers. SUSE Linux Enterprise offers common management tools and technology certifications across the platform, and each product is enterprise-class.","eula_url":"","arch":"s390x"}],"version":"12.3","recommended":false,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Server 12 SP3 s390x","release_type":null,"former_identifier":"SLES","name":"SUSE Linux Enterprise Server","offline_predecessor_ids":[693,745,755,805,1303],"product_class":"SLES-Z","online_predecessor_ids":[1115,1335,1356],"repositories":[{"distro_target":"sle-12-s390x","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-SP3/s390x/update/","enabled":true,"id":2201,"description":"SLES12-SP3-Updates for sle-12-s390x","installer_updates":false,"name":"SLES12-SP3-Updates"},{"description":"SLES12-SP3-Debuginfo-Updates for sle-12-s390x","name":"SLES12-SP3-Debuginfo-Updates","installer_updates":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-SP3/s390x/update_debug/","autorefresh":true,"distro_target":"sle-12-s390x","id":2202,"enabled":false},{"description":"SLES12-SP3-Installer-Updates for sle-12-s390x","name":"SLES12-SP3-Installer-Updates","installer_updates":true,"autorefresh":true,"distro_target":"sle-12-s390x","url":"https://updates.suse.com/SUSE/Updates/SLE-SERVER-INSTALLER/12-SP3/s390x/update/","enabled":false,"id":2203},{"autorefresh":false,"distro_target":"sle-12-s390x","url":"https://updates.suse.com/SUSE/Products/SLE-SERVER/12-SP3/s390x/product/","enabled":true,"id":2204,"description":"SLES12-SP3-Pool for sle-12-s390x","name":"SLES12-SP3-Pool","installer_updates":false},{"description":"SLES12-SP3-Debuginfo-Pool for sle-12-s390x","name":"SLES12-SP3-Debuginfo-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-12-s390x","url":"https://updates.suse.com/SUSE/Products/SLE-SERVER/12-SP3/s390x/product_debug/","enabled":false,"id":2205},{"autorefresh":false,"distro_target":"sle-12-s390x","url":"https://updates.suse.com/SUSE/Products/SLE-SERVER/12-SP3/s390x/product_source/","enabled":false,"id":2206,"description":"SLES12-SP3-Source-Pool for sle-12-s390x","name":"SLES12-SP3-Source-Pool","installer_updates":false}],"predecessor_ids":[1115,1335,1356],"cpe":"cpe:/o:suse:sles:12:sp3","product_type":"base","shortname":"SLES12-SP3","description":"SUSE Linux Enterprise offers a comprehensive suite of products built on a single code base. The platform addresses business needs from the smallest thin-client devices to the world's most powerful high-performance computing and mainframe servers. SUSE Linux Enterprise offers common management tools and technology certifications across the platform, and each product is enterprise-class.","free":false,"arch":"s390x","eula_url":"https://updates.suse.com/SUSE/Products/SLE-SERVER/12-SP3/s390x/product.license/"},{"product_type":"base","cpe":"cpe:/o:suse:sles:12:sp3","predecessor_ids":[1375],"online_predecessor_ids":[1375],"product_class":"SLES-ARM64","repositories":[{"description":"SLES12-SP3-Updates for sle-12-aarch64","installer_updates":false,"name":"SLES12-SP3-Updates","distro_target":"sle-12-aarch64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-SP3/aarch64/update/","enabled":true,"id":2207},{"installer_updates":false,"name":"SLES12-SP3-Debuginfo-Updates","description":"SLES12-SP3-Debuginfo-Updates for sle-12-aarch64","enabled":false,"id":2208,"distro_target":"sle-12-aarch64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-SP3/aarch64/update_debug/"},{"installer_updates":true,"name":"SLES12-SP3-Installer-Updates","description":"SLES12-SP3-Installer-Updates for sle-12-aarch64","id":2209,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-SERVER-INSTALLER/12-SP3/aarch64/update/","distro_target":"sle-12-aarch64","autorefresh":true},{"name":"SLES12-SP3-Pool","installer_updates":false,"description":"SLES12-SP3-Pool for sle-12-aarch64","enabled":true,"id":2210,"autorefresh":false,"distro_target":"sle-12-aarch64","url":"https://updates.suse.com/SUSE/Products/SLE-SERVER/12-SP3/aarch64/product/"},{"description":"SLES12-SP3-Debuginfo-Pool for sle-12-aarch64","installer_updates":false,"name":"SLES12-SP3-Debuginfo-Pool","distro_target":"sle-12-aarch64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-SERVER/12-SP3/aarch64/product_debug/","enabled":false,"id":2211},{"name":"SLES12-SP3-Source-Pool","installer_updates":false,"description":"SLES12-SP3-Source-Pool for sle-12-aarch64","id":2212,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-SERVER/12-SP3/aarch64/product_source/","autorefresh":false,"distro_target":"sle-12-aarch64"}],"eula_url":"https://updates.suse.com/SUSE/Products/SLE-SERVER/12-SP3/aarch64/product.license/","arch":"aarch64","free":false,"shortname":"SLES12-SP3","description":"SUSE Linux Enterprise offers a comprehensive suite of products built on a single code base. The platform addresses business needs from the smallest thin-client devices to the world's most powerful high-performance computing and mainframe servers. SUSE Linux Enterprise offers common management tools and technology certifications across the platform, and each product is enterprise-class.","extensions":[{"friendly_version":"12","release_stage":"released","identifier":"sle-module-toolchain","id":1376,"extensions":[],"version":"12","recommended":false,"former_identifier":"sle-module-toolchain","release_type":null,"migration_extra":false,"friendly_name":"Toolchain Module 12 aarch64","offline_predecessor_ids":[],"name":"Toolchain Module","product_class":"MODULE","online_predecessor_ids":[],"repositories":[{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Toolchain/12/aarch64/update/","distro_target":"sle-12-aarch64","autorefresh":true,"id":2086,"enabled":true,"description":"SLE-Module-Toolchain12-Updates for sle-12-aarch64","installer_updates":false,"name":"SLE-Module-Toolchain12-Updates"},{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Toolchain/12/aarch64/update_debug/","distro_target":"sle-12-aarch64","autorefresh":true,"id":2087,"enabled":false,"description":"SLE-Module-Toolchain12-Debuginfo-Updates for sle-12-aarch64","installer_updates":false,"name":"SLE-Module-Toolchain12-Debuginfo-Updates"},{"description":"SLE-Module-Toolchain12-Pool for sle-12-aarch64","installer_updates":false,"name":"SLE-Module-Toolchain12-Pool","distro_target":"sle-12-aarch64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Toolchain/12/aarch64/product/","enabled":true,"id":2088},{"description":"SLE-Module-Toolchain12-Debuginfo-Pool for sle-12-aarch64","name":"SLE-Module-Toolchain12-Debuginfo-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Toolchain/12/aarch64/product_debug/","autorefresh":false,"distro_target":"sle-12-aarch64","id":2089,"enabled":false}],"predecessor_ids":[],"product_type":"module","cpe":"cpe:/o:suse:sle-module-toolchain:12","free":true,"description":"Via this Module you will have access to a more recent GCC and Toolchain in addition to the default compiler of SUSE Linux Enterprise. Access to the Toolchain Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself. Please check the Release Notes for further details.","shortname":"Toolchain-Module","arch":"aarch64","eula_url":""},{"recommended":false,"version":"12.3","name":"SUSE Linux Enterprise Software Development Kit","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Software Development Kit 12 SP3 aarch64","release_type":null,"former_identifier":"sle-sdk","friendly_version":"12 SP3","extensions":[],"identifier":"sle-sdk","release_stage":"released","id":1430,"shortname":"SDK12-SP3","description":"

SUSE Linux Enterprise Software Development Kit is the Software Development Kit for the family of SUSE Linux Enterprise products. It is a free of charge extension for partners and customers working with SUSE Linux Enterprise Server and Desktop and derived products.

Packages on the SDK are delivered without L3 support; maintenance updates will be done for critical security and critical non-security issues, and where needed to remain in sync with packages delivered in the SUSE Linux Enterprise Server and Desktop products.

Packages to rebuild SUSE Linux Enterprise Server are not part of the SUSE Linux Enterprise Software Development Kit.

","free":true,"eula_url":"https://updates.suse.com/SUSE/Products/SLE-SDK/12-SP3/aarch64/product.license/","arch":"aarch64","predecessor_ids":[1378],"online_predecessor_ids":[1378],"repositories":[{"enabled":true,"id":2245,"autorefresh":true,"distro_target":"sle-12-aarch64","url":"https://updates.suse.com/SUSE/Updates/SLE-SDK/12-SP3/aarch64/update/","name":"SLE-SDK12-SP3-Updates","installer_updates":false,"description":"SLE-SDK12-SP3-Updates for sle-12-aarch64"},{"name":"SLE-SDK12-SP3-Debuginfo-Updates","installer_updates":false,"description":"SLE-SDK12-SP3-Debuginfo-Updates for sle-12-aarch64","enabled":false,"id":2246,"autorefresh":true,"distro_target":"sle-12-aarch64","url":"https://updates.suse.com/SUSE/Updates/SLE-SDK/12-SP3/aarch64/update_debug/"},{"installer_updates":false,"name":"SLE-SDK12-SP3-Pool","description":"SLE-SDK12-SP3-Pool for sle-12-aarch64","enabled":true,"id":2247,"distro_target":"sle-12-aarch64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-SDK/12-SP3/aarch64/product/"},{"id":2248,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-SDK/12-SP3/aarch64/product_debug/","autorefresh":false,"distro_target":"sle-12-aarch64","name":"SLE-SDK12-SP3-Debuginfo-Pool","installer_updates":false,"description":"SLE-SDK12-SP3-Debuginfo-Pool for sle-12-aarch64"},{"distro_target":"sle-12-aarch64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-SDK/12-SP3/aarch64/product_source/","enabled":false,"id":2249,"description":"SLE-SDK12-SP3-Source-Pool for sle-12-aarch64","installer_updates":false,"name":"SLE-SDK12-SP3-Source-Pool"}],"product_class":"SLE-SDK","cpe":"cpe:/o:suse:sle-sdk:12:sp3","product_type":"extension"},{"recommended":false,"version":"12","name":"HPC Module","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"HPC Module 12 aarch64","former_identifier":"sle-module-hpc","release_type":null,"friendly_version":"12","extensions":[],"release_stage":"released","identifier":"sle-module-hpc","id":1522,"description":"The SUSE Linux Enterprise Server High Performance Computing (HPC) module delivers specific tools commonly used for high performance, numerically intensive workloads. SUSE packages these tools in the SLES HPC Module to provide greater flexibility to deliver new versions or new tools more rapidly than the standard SUSE Linux Enterprise lifecycle would permit. Packages in this module are general supported till a newer version of the package is released or the package is dropped from the module.","shortname":"HPC-Module","free":true,"eula_url":"https://updates.suse.com/SUSE/Products/SLE-Module-HPC/12/aarch64/product.license/","arch":"aarch64","predecessor_ids":[],"product_class":"MODULE","online_predecessor_ids":[],"repositories":[{"enabled":true,"id":2421,"distro_target":"sle-12-aarch64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-HPC/12/aarch64/update/","installer_updates":false,"name":"SLE-Module-HPC12-Updates","description":"SLE-Module-HPC12-Updates for sle-12-aarch64"},{"description":"SLE-Module-HPC12-Debuginfo-Updates for sle-12-aarch64","name":"SLE-Module-HPC12-Debuginfo-Updates","installer_updates":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-HPC/12/aarch64/update_debug/","autorefresh":true,"distro_target":"sle-12-aarch64","id":2422,"enabled":false},{"installer_updates":false,"name":"SLE-Module-HPC12-Pool","description":"SLE-Module-HPC12-Pool for sle-12-aarch64","enabled":true,"id":2423,"distro_target":"sle-12-aarch64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-HPC/12/aarch64/product/"},{"enabled":false,"id":2424,"distro_target":"sle-12-aarch64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-HPC/12/aarch64/product_debug/","installer_updates":false,"name":"SLE-Module-HPC12-Debuginfo-Pool","description":"SLE-Module-HPC12-Debuginfo-Pool for sle-12-aarch64"},{"id":2425,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-HPC/12/aarch64/product_source/","autorefresh":false,"distro_target":"sle-12-aarch64","name":"SLE-Module-HPC12-Source-Pool","installer_updates":false,"description":"SLE-Module-HPC12-Source-Pool for sle-12-aarch64"}],"cpe":"cpe:/o:suse:sle-module-hpc:12","product_type":"module"},{"offline_predecessor_ids":[],"name":"SUSE Enterprise Storage","release_type":null,"former_identifier":"ses","migration_extra":false,"friendly_name":"SUSE Enterprise Storage 5 aarch64","recommended":false,"version":"5","extensions":[],"identifier":"ses","release_stage":"released","id":1527,"friendly_version":"5","eula_url":"https://updates.suse.com/SUSE/Products/Storage/5/aarch64/product.license/","arch":"aarch64","free":false,"description":"SUSE Enterprise Storage 5 for SUSE Linux Enterprise Server 12-SP3, powered by Ceph.","shortname":"SES5","product_type":"extension","cpe":"cpe:/o:suse:ses:5","predecessor_ids":[1417],"online_predecessor_ids":[1417],"product_class":"SES-ARM64","repositories":[{"description":"SUSE-Enterprise-Storage-5-Updates for sle-12-aarch64","installer_updates":false,"name":"SUSE-Enterprise-Storage-5-Updates","distro_target":"sle-12-aarch64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/Storage/5/aarch64/update/","enabled":true,"id":2437},{"description":"SUSE-Enterprise-Storage-5-Debuginfo-Updates for sle-12-aarch64","installer_updates":false,"name":"SUSE-Enterprise-Storage-5-Debuginfo-Updates","url":"https://updates.suse.com/SUSE/Updates/Storage/5/aarch64/update_debug/","distro_target":"sle-12-aarch64","autorefresh":true,"id":2438,"enabled":false},{"description":"SUSE-Enterprise-Storage-5-Pool for sle-12-aarch64","installer_updates":false,"name":"SUSE-Enterprise-Storage-5-Pool","url":"https://updates.suse.com/SUSE/Products/Storage/5/aarch64/product/","distro_target":"sle-12-aarch64","autorefresh":false,"id":2439,"enabled":true},{"distro_target":"sle-12-aarch64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/Storage/5/aarch64/product_debug/","enabled":false,"id":2440,"description":"SUSE-Enterprise-Storage-5-Debuginfo-Pool for sle-12-aarch64","installer_updates":false,"name":"SUSE-Enterprise-Storage-5-Debuginfo-Pool"},{"description":"SUSE-Enterprise-Storage-5-Source-Pool for sle-12-aarch64","name":"SUSE-Enterprise-Storage-5-Source-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/Storage/5/aarch64/product_source/","autorefresh":false,"distro_target":"sle-12-aarch64","id":2441,"enabled":false}]},{"friendly_version":"12","release_stage":"released","id":1528,"identifier":"sle-module-public-cloud","extensions":[],"version":"12","recommended":false,"friendly_name":"Public Cloud Module 12 aarch64","migration_extra":false,"former_identifier":"sle-module-public-cloud","release_type":null,"name":"Public Cloud Module","offline_predecessor_ids":[],"online_predecessor_ids":[],"product_class":"MODULE","repositories":[{"name":"SLE-Module-Public-Cloud12-Updates","installer_updates":false,"description":"SLE-Module-Public-Cloud12-Updates for sle-12-aarch64","id":2157,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/12/aarch64/update/","autorefresh":true,"distro_target":"sle-12-aarch64"},{"description":"SLE-Module-Public-Cloud12-Debuginfo-Updates for sle-12-aarch64","installer_updates":false,"name":"SLE-Module-Public-Cloud12-Debuginfo-Updates","distro_target":"sle-12-aarch64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/12/aarch64/update_debug/","enabled":false,"id":2158},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/12/aarch64/product/","autorefresh":false,"distro_target":"sle-12-aarch64","id":2159,"enabled":true,"description":"SLE-Module-Public-Cloud12-Pool for sle-12-aarch64","name":"SLE-Module-Public-Cloud12-Pool","installer_updates":false},{"id":2160,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/12/aarch64/product_debug/","autorefresh":false,"distro_target":"sle-12-aarch64","name":"SLE-Module-Public-Cloud12-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-Public-Cloud12-Debuginfo-Pool for sle-12-aarch64"},{"installer_updates":false,"name":"SLE-Module-Public-Cloud12-Source-Pool","description":"SLE-Module-Public-Cloud12-Source-Pool for sle-12-aarch64","enabled":false,"id":2161,"distro_target":"sle-12-aarch64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/12/aarch64/product_source/"}],"predecessor_ids":[],"cpe":"cpe:/o:suse:sle-module-public-cloud:12","product_type":"module","shortname":"Public-Cloud-Module","description":"

The Public Cloud Module is a collection of tools that enables you to create and manage cloud images from the commandline on SUSE Linux Enterprise Server. When building your own images with KIWI or SUSE Studio, initialization code specific to the target cloud is included in that image.

Access to the Public Cloud Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself; please check the Release Notes for further details.

","free":true,"arch":"aarch64","eula_url":""},{"friendly_version":"12 SP3","extensions":[],"release_stage":"released","identifier":"PackageHub","id":1532,"recommended":false,"version":"12.3","offline_predecessor_ids":[],"name":"SUSE Package Hub","former_identifier":"PackageHub","release_type":null,"friendly_name":"SUSE Package Hub 12 SP3 aarch64","migration_extra":false,"predecessor_ids":[1482],"repositories":[{"installer_updates":false,"name":"SUSE-PackageHub-12-SP3-Standard-Pool","description":"SUSE-PackageHub-12-SP3-Standard-Pool for sle-12-aarch64","enabled":true,"id":2454,"distro_target":"sle-12-aarch64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Backports/SLE-12-SP3_aarch64/standard/"},{"description":"SUSE-PackageHub-12-SP3-Debuginfo for sle-12-aarch64","name":"SUSE-PackageHub-12-SP3-Debuginfo","installer_updates":false,"url":"https://updates.suse.com/SUSE/Backports/SLE-12-SP3_aarch64/standard_debug/","autorefresh":true,"distro_target":"sle-12-aarch64","id":2455,"enabled":false},{"name":"SUSE-PackageHub-12-SP3-Pool","installer_updates":false,"description":"SUSE-PackageHub-12-SP3-Pool for sle-12-aarch64","id":2456,"enabled":true,"url":"https://updates.suse.com/SUSE/Backports/SLE-12-SP3_aarch64/product/","autorefresh":false,"distro_target":"sle-12-aarch64"}],"online_predecessor_ids":[1482],"product_class":"MODULE","product_type":"extension","cpe":"cpe:/o:suse:packagehub:12:sp3","free":true,"shortname":"SUSE-PackageHub-12-SP3","description":"SUSE Package Hub is a free of charge extension providing access to community maintained packages built to run on SUSE Linux Enterprise Server. Built from the same sources used in the openSUSE distributions, these quality packages provide additional software to what is found in the SUSE Linux Enterprise Server product. Packages from the Package Hub are delivered without L3 support from SUSE. General updates and fixes to the packages in SUSE Package Hub are provided by the openSUSE community based on their discretion though SUSE will monitor and ensure that any known critical security issues will be addressed. Packages in the Package Hub are approved by SUSE for use with SUSE Linux Enterprise Server 12 and to not interfere with the supportability of SUSE Linux Enterprise Server it's modules and extensions. For more information about SUSE Package Hub please visit https://packagehub.suse.com.","eula_url":"","arch":"aarch64"},{"eula_url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/12/aarch64/product.license/","arch":"aarch64","shortname":"Web-and-Scripting-Module","description":"

The SUSE Linux Enterprise Web and Scripting Module delivers a comprehensive suite of scripting languages, frameworks, and related tools helping developers and systems administrators accelerate the creation of stable, modern web applications, using dynamic languages, such as PHP, Ruby on Rails, and Python.

Access to the Web and Scripting Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself: Package versions in the this module are usually supported for at most three years. We are planning to release more recent versions on a schedule of approximately 18 month; the exact dates may differ per package.

","free":true,"cpe":"cpe:/o:suse:sle-module-web-scripting:12","product_type":"module","predecessor_ids":[],"online_predecessor_ids":[],"repositories":[{"description":"SLE-Module-Web-Scripting12-Updates for sle-12-aarch64","installer_updates":false,"name":"SLE-Module-Web-Scripting12-Updates","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/12/aarch64/update/","distro_target":"sle-12-aarch64","autorefresh":true,"id":2476,"enabled":true},{"description":"SLE-Module-Web-Scripting12-Debuginfo-Updates for sle-12-aarch64","installer_updates":false,"name":"SLE-Module-Web-Scripting12-Debuginfo-Updates","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/12/aarch64/update_debug/","distro_target":"sle-12-aarch64","autorefresh":true,"id":2477,"enabled":false},{"autorefresh":false,"distro_target":"sle-12-aarch64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/12/aarch64/product/","enabled":true,"id":2478,"description":"SLE-Module-Web-Scripting12-Pool for sle-12-aarch64","name":"SLE-Module-Web-Scripting12-Pool","installer_updates":false},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/12/aarch64/product_debug/","autorefresh":false,"distro_target":"sle-12-aarch64","id":2479,"enabled":false,"description":"SLE-Module-Web-Scripting12-Debuginfo-Pool for sle-12-aarch64","name":"SLE-Module-Web-Scripting12-Debuginfo-Pool","installer_updates":false},{"distro_target":"sle-12-aarch64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/12/aarch64/product_source/","enabled":false,"id":2480,"description":"SLE-Module-Web-Scripting12-Source-Pool for sle-12-aarch64","installer_updates":false,"name":"SLE-Module-Web-Scripting12-Source-Pool"}],"product_class":"MODULE","name":"Web and Scripting Module","offline_predecessor_ids":[],"friendly_name":"Web and Scripting Module 12 aarch64","migration_extra":false,"release_type":null,"former_identifier":"sle-module-web-scripting","recommended":false,"version":"12","extensions":[],"release_stage":"released","identifier":"sle-module-web-scripting","id":1539,"friendly_version":"12"},{"predecessor_ids":[],"online_predecessor_ids":[],"repositories":[{"enabled":true,"id":4290,"autorefresh":true,"distro_target":"sle-12-aarch64","url":"https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-SP3-LTSS/aarch64/update/","name":"SLES12-SP3-LTSS-Updates","installer_updates":false,"description":"SLES12-SP3-LTSS-Updates for sle-12-aarch64"},{"id":4291,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-SP3-LTSS/aarch64/update_debug/","autorefresh":true,"distro_target":"sle-12-aarch64","name":"SLES12-SP3-LTSS-Debuginfo-Updates","installer_updates":false,"description":"SLES12-SP3-LTSS-Debuginfo-Updates for sle-12-aarch64"}],"product_class":"SLES12-SP3-LTSS-ARM64","cpe":"cpe:/o:suse:sles-ltss:12:sp3","product_type":"extension","shortname":"SLES12-SP3 LTSS","description":"SUSE Linux Enterprise offers a comprehensive suite of products built on a single code base. The platform addresses business needs from the smallest thin-client devices to the world's most powerful high-performance computing and mainframe servers. SUSE Linux Enterprise offers common management tools and technology certifications across the platform, and each product is enterprise-class.","free":false,"eula_url":"","arch":"aarch64","friendly_version":"12 SP3","extensions":[],"identifier":"SLES-LTSS","release_stage":"released","id":2002,"recommended":false,"version":"12.3","name":"SUSE Linux Enterprise Server LTSS","offline_predecessor_ids":[],"friendly_name":"SUSE Linux Enterprise Server LTSS 12 SP3 aarch64","migration_extra":false,"release_type":null,"former_identifier":"SLES-LTSS"}],"identifier":"SLES","release_stage":"released","id":1424,"friendly_version":"12 SP3","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Server","release_type":null,"former_identifier":"SLES","friendly_name":"SUSE Linux Enterprise Server 12 SP3 aarch64","migration_extra":false,"recommended":false,"version":"12.3"},{"shortname":"SLED12-SP3","description":"SUSE Linux Enterprise offers a comprehensive suite of products built on a single code base. The platform addresses business needs from the smallest thin-client devices to the world's most powerful high-performance computing and mainframe servers. SUSE Linux Enterprise offers common management tools and technology certifications across the platform, and each product is enterprise-class. SUSE Linux Enterprise provides more than a cute desktop product or a basic server offering. It is the only Linux platform for enterprise computing, and it is now replacing UNIX* and Windows* as well.","free":false,"eula_url":"https://updates.suse.com/SUSE/Products/SLE-DESKTOP/12-SP3/x86_64/product.license/","arch":"x86_64","predecessor_ids":[1118,1333,1358],"online_predecessor_ids":[1118,1333,1358],"repositories":[{"installer_updates":false,"name":"SLED12-SP3-Updates","description":"SLED12-SP3-Updates for sle-12-x86_64","id":2213,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-DESKTOP/12-SP3/x86_64/update/","distro_target":"sle-12-x86_64","autorefresh":true},{"description":"SLED12-SP3-Debuginfo-Updates for sle-12-x86_64","installer_updates":false,"name":"SLED12-SP3-Debuginfo-Updates","url":"https://updates.suse.com/SUSE/Updates/SLE-DESKTOP/12-SP3/x86_64/update_debug/","distro_target":"sle-12-x86_64","autorefresh":true,"id":2214,"enabled":false},{"installer_updates":true,"name":"SLED12-SP3-Installer-Updates","description":"SLED12-SP3-Installer-Updates for sle-12-x86_64","enabled":false,"id":2215,"distro_target":"sle-12-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-DESKTOP-INSTALLER/12-SP3/x86_64/update/"},{"enabled":true,"id":2216,"autorefresh":false,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-DESKTOP/12-SP3/x86_64/product/","name":"SLED12-SP3-Pool","installer_updates":false,"description":"SLED12-SP3-Pool for sle-12-x86_64"},{"url":"http://download.nvidia.com/suse/sle12sp3/","distro_target":null,"autorefresh":true,"id":2217,"enabled":true,"description":"SLE-12-SP3-GA-Desktop-nVidia-Driver","installer_updates":false,"name":"SLE-12-SP3-GA-Desktop-nVidia-Driver"},{"enabled":false,"id":2218,"autorefresh":false,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-DESKTOP/12-SP3/x86_64/product_debug/","name":"SLED12-SP3-Debuginfo-Pool","installer_updates":false,"description":"SLED12-SP3-Debuginfo-Pool for sle-12-x86_64"},{"enabled":false,"id":2219,"distro_target":"sle-12-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-DESKTOP/12-SP3/x86_64/product_source/","installer_updates":false,"name":"SLED12-SP3-Source-Pool","description":"SLED12-SP3-Source-Pool for sle-12-x86_64"}],"product_class":"7260","cpe":"cpe:/o:suse:sled:12:sp3","product_type":"base","recommended":false,"version":"12.3","name":"SUSE Linux Enterprise Desktop","offline_predecessor_ids":[887,901,902,924,1313],"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Desktop 12 SP3 x86_64","release_type":null,"former_identifier":"SLED","friendly_version":"12 SP3","extensions":[{"free":true,"shortname":"SDK12-SP3","description":"

SUSE Linux Enterprise Software Development Kit is the Software Development Kit for the family of SUSE Linux Enterprise products. It is a free of charge extension for partners and customers working with SUSE Linux Enterprise Server and Desktop and derived products.

Packages on the SDK are delivered without L3 support; maintenance updates will be done for critical security and critical non-security issues, and where needed to remain in sync with packages delivered in the SUSE Linux Enterprise Server and Desktop products.

Packages to rebuild SUSE Linux Enterprise Server are not part of the SUSE Linux Enterprise Software Development Kit.

","eula_url":"https://updates.suse.com/SUSE/Products/SLE-SDK/12-SP3/x86_64/product.license/","arch":"x86_64","predecessor_ids":[1223,1323,1366],"online_predecessor_ids":[1223,1323,1366],"product_class":"SLE-SDK","repositories":[{"id":2230,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-SDK/12-SP3/x86_64/update/","distro_target":"sle-12-x86_64","autorefresh":true,"installer_updates":false,"name":"SLE-SDK12-SP3-Updates","description":"SLE-SDK12-SP3-Updates for sle-12-x86_64"},{"installer_updates":false,"name":"SLE-SDK12-SP3-Debuginfo-Updates","description":"SLE-SDK12-SP3-Debuginfo-Updates for sle-12-x86_64","enabled":false,"id":2231,"distro_target":"sle-12-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-SDK/12-SP3/x86_64/update_debug/"},{"autorefresh":false,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-SDK/12-SP3/x86_64/product/","enabled":true,"id":2232,"description":"SLE-SDK12-SP3-Pool for sle-12-x86_64","name":"SLE-SDK12-SP3-Pool","installer_updates":false},{"enabled":false,"id":2233,"autorefresh":false,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-SDK/12-SP3/x86_64/product_debug/","name":"SLE-SDK12-SP3-Debuginfo-Pool","installer_updates":false,"description":"SLE-SDK12-SP3-Debuginfo-Pool for sle-12-x86_64"},{"autorefresh":false,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-SDK/12-SP3/x86_64/product_source/","enabled":false,"id":2234,"description":"SLE-SDK12-SP3-Source-Pool for sle-12-x86_64","name":"SLE-SDK12-SP3-Source-Pool","installer_updates":false}],"product_type":"extension","cpe":"cpe:/o:suse:sle-sdk:12:sp3","recommended":false,"version":"12.3","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Software Development Kit","release_type":null,"former_identifier":"sle-sdk","migration_extra":false,"friendly_name":"SUSE Linux Enterprise Software Development Kit 12 SP3 x86_64","friendly_version":"12 SP3","extensions":[],"release_stage":"released","identifier":"sle-sdk","id":1427},{"predecessor_ids":[1473,1476,1479],"online_predecessor_ids":[1473,1476,1479],"product_class":"MODULE","repositories":[{"name":"SUSE-PackageHub-12-SP3-Standard-Pool","installer_updates":false,"description":"SUSE-PackageHub-12-SP3-Standard-Pool for sle-12-x86_64","enabled":true,"id":2445,"autorefresh":false,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Backports/SLE-12-SP3_x86_64/standard/"},{"autorefresh":true,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Backports/SLE-12-SP3_x86_64/standard_debug/","enabled":false,"id":2446,"description":"SUSE-PackageHub-12-SP3-Debuginfo for sle-12-x86_64","name":"SUSE-PackageHub-12-SP3-Debuginfo","installer_updates":false},{"url":"https://updates.suse.com/SUSE/Backports/SLE-12-SP3_x86_64/product/","autorefresh":false,"distro_target":"sle-12-x86_64","id":2447,"enabled":true,"description":"SUSE-PackageHub-12-SP3-Pool for sle-12-x86_64","name":"SUSE-PackageHub-12-SP3-Pool","installer_updates":false}],"product_type":"extension","cpe":"cpe:/o:suse:packagehub:12:sp3","free":true,"shortname":"SUSE-PackageHub-12-SP3","description":"SUSE Package Hub is a free of charge extension providing access to community maintained packages built to run on SUSE Linux Enterprise Server. Built from the same sources used in the openSUSE distributions, these quality packages provide additional software to what is found in the SUSE Linux Enterprise Server product. Packages from the Package Hub are delivered without L3 support from SUSE. General updates and fixes to the packages in SUSE Package Hub are provided by the openSUSE community based on their discretion though SUSE will monitor and ensure that any known critical security issues will be addressed. Packages in the Package Hub are approved by SUSE for use with SUSE Linux Enterprise Server 12 and to not interfere with the supportability of SUSE Linux Enterprise Server it's modules and extensions. For more information about SUSE Package Hub please visit https://packagehub.suse.com.","eula_url":"","arch":"x86_64","friendly_version":"12 SP3","extensions":[],"identifier":"PackageHub","release_stage":"released","id":1529,"recommended":false,"version":"12.3","offline_predecessor_ids":[],"name":"SUSE Package Hub","release_type":null,"former_identifier":"PackageHub","friendly_name":"SUSE Package Hub 12 SP3 x86_64","migration_extra":false},{"free":true,"shortname":"SUSE-CAP-Tools-Module","description":"

The SUSE Cloud Application Platform Tools Module is a collection of tools that enables you to interact with the SUSE Cloud Application Platform product itself, providing the commandline client for instance.

Access to the SUSE Cloud Application Platform Tools Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself; please check the Release Notes for further details.

","arch":"x86_64","eula_url":"","online_predecessor_ids":[],"product_class":"MODULE","repositories":[{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-CAP-Tools/12/x86_64/update/","distro_target":"sle-12-x86_64","autorefresh":true,"id":2912,"enabled":true,"description":"SLE-Module-CAP-Tools-12-Updates for sle-12-x86_64","installer_updates":false,"name":"SLE-Module-CAP-Tools-12-Updates"},{"name":"SLE-Module-CAP-Tools-12-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-CAP-Tools-12-Debuginfo-Updates for sle-12-x86_64","id":2913,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-CAP-Tools/12/x86_64/update_debug/","autorefresh":true,"distro_target":"sle-12-x86_64"},{"description":"SLE-Module-CAP-Tools-12-Pool for sle-12-x86_64","installer_updates":false,"name":"SLE-Module-CAP-Tools-12-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-CAP-Tools/12/x86_64/product/","distro_target":"sle-12-x86_64","autorefresh":false,"id":2914,"enabled":true},{"description":"SLE-Module-CAP-Tools-12-Debuginfo-Pool for sle-12-x86_64","installer_updates":false,"name":"SLE-Module-CAP-Tools-12-Debuginfo-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-CAP-Tools/12/x86_64/product_debug/","distro_target":"sle-12-x86_64","autorefresh":false,"id":2915,"enabled":false},{"distro_target":"sle-12-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-CAP-Tools/12/x86_64/product_source/","enabled":false,"id":2916,"description":"SLE-Module-CAP-Tools-12-Source-Pool for sle-12-x86_64","installer_updates":false,"name":"SLE-Module-CAP-Tools-12-Source-Pool"}],"predecessor_ids":[],"product_type":"module","cpe":"cpe:/o:suse:sle-module-cap-tools:12","version":"12","recommended":false,"release_type":null,"former_identifier":"sle-module-cap-tools","friendly_name":"SUSE Cloud Application Platform Tools Module 12 x86_64","migration_extra":false,"offline_predecessor_ids":[],"name":"SUSE Cloud Application Platform Tools Module","friendly_version":"12","release_stage":"released","id":1678,"identifier":"sle-module-cap-tools","extensions":[]}],"id":1425,"release_stage":"released","identifier":"SLED"},{"product_type":"base","cpe":"cpe:/o:suse:sles_sap:12:sp3","predecessor_ids":[1319,1346,1414],"repositories":[{"description":"SLES12-SP3-Updates for sle-12-x86_64","name":"SLES12-SP3-Updates","installer_updates":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-SP3/x86_64/update/","autorefresh":true,"distro_target":"sle-12-x86_64","id":2189,"enabled":true},{"description":"SLES12-SP3-Debuginfo-Updates for sle-12-x86_64","installer_updates":false,"name":"SLES12-SP3-Debuginfo-Updates","url":"https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-SP3/x86_64/update_debug/","distro_target":"sle-12-x86_64","autorefresh":true,"id":2190,"enabled":false},{"id":2192,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-SERVER/12-SP3/x86_64/product/","distro_target":"sle-12-x86_64","autorefresh":false,"installer_updates":false,"name":"SLES12-SP3-Pool","description":"SLES12-SP3-Pool for sle-12-x86_64"},{"id":2193,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-SERVER/12-SP3/x86_64/product_debug/","distro_target":"sle-12-x86_64","autorefresh":false,"installer_updates":false,"name":"SLES12-SP3-Debuginfo-Pool","description":"SLES12-SP3-Debuginfo-Pool for sle-12-x86_64"},{"description":"SLES12-SP3-Source-Pool for sle-12-x86_64","name":"SLES12-SP3-Source-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-SERVER/12-SP3/x86_64/product_source/","autorefresh":false,"distro_target":"sle-12-x86_64","id":2194,"enabled":false},{"installer_updates":false,"name":"SLE-12-SP3-SAP-Updates","description":"SLE-12-SP3-SAP-Updates for sle-12-x86_64","enabled":true,"id":2220,"distro_target":"sle-12-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-SAP/12-SP3/x86_64/update/"},{"installer_updates":false,"name":"SLE-HA12-SP3-Updates","description":"SLE-HA12-SP3-Updates for sle-12-x86_64","id":2221,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-HA/12-SP3/x86_64/update/","distro_target":"sle-12-x86_64","autorefresh":true},{"url":"https://updates.suse.com/SUSE/Updates/SLE-SAP/12-SP3/x86_64/update_debug/","autorefresh":true,"distro_target":"sle-12-x86_64","id":2222,"enabled":false,"description":"SLE-12-SP3-SAP-Debuginfo-Updates for sle-12-x86_64","name":"SLE-12-SP3-SAP-Debuginfo-Updates","installer_updates":false},{"name":"SLE-HA12-SP3-Debuginfo-Updates","installer_updates":false,"description":"SLE-HA12-SP3-Debuginfo-Updates for sle-12-x86_64","id":2223,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-HA/12-SP3/x86_64/update_debug/","autorefresh":true,"distro_target":"sle-12-x86_64"},{"description":"SLE12-SP3-SAP-Pool for sle-12-x86_64","installer_updates":false,"name":"SLE12-SP3-SAP-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-SAP/12-SP3/x86_64/product/","distro_target":"sle-12-x86_64","autorefresh":false,"id":2224,"enabled":true},{"url":"https://updates.suse.com/SUSE/Products/SLE-HA/12-SP3/x86_64/product/","distro_target":"sle-12-x86_64","autorefresh":false,"id":2225,"enabled":true,"description":"SLE-HA12-SP3-Pool for sle-12-x86_64","installer_updates":false,"name":"SLE-HA12-SP3-Pool"},{"description":"SLE12-SP3-SAP-Debuginfo-Pool for sle-12-x86_64","installer_updates":false,"name":"SLE12-SP3-SAP-Debuginfo-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-SAP/12-SP3/x86_64/product_debug/","distro_target":"sle-12-x86_64","autorefresh":false,"id":2226,"enabled":false},{"url":"https://updates.suse.com/SUSE/Products/SLE-HA/12-SP3/x86_64/product_debug/","autorefresh":false,"distro_target":"sle-12-x86_64","id":2227,"enabled":false,"description":"SLE-HA12-SP3-Debuginfo-Pool for sle-12-x86_64","name":"SLE-HA12-SP3-Debuginfo-Pool","installer_updates":false},{"description":"SLE12-SP3-SAP-Source-Pool for sle-12-x86_64","name":"SLE12-SP3-SAP-Source-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-SAP/12-SP3/x86_64/product_source/","autorefresh":false,"distro_target":"sle-12-x86_64","id":2228,"enabled":false},{"description":"SLE-HA12-SP3-Source-Pool for sle-12-x86_64","name":"SLE-HA12-SP3-Source-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-HA/12-SP3/x86_64/product_source/","autorefresh":false,"distro_target":"sle-12-x86_64","id":2229,"enabled":false}],"online_predecessor_ids":[1319,1346,1414],"product_class":"AiO","eula_url":"https://updates.suse.com/SUSE/Products/SLE-SAP/12-SP3/x86_64/product.license/","arch":"x86_64","free":false,"description":"SUSE LINUX Enterprise Server 12 SP3 for SAP Applications","shortname":"SLE-12-SP3-SAP","extensions":[{"identifier":"sle-module-legacy","release_stage":"released","id":1150,"extensions":[],"friendly_version":"12","former_identifier":"sle-module-legacy","release_type":null,"migration_extra":false,"friendly_name":"Legacy Module 12 x86_64","offline_predecessor_ids":[],"name":"Legacy Module","version":"12","recommended":false,"product_type":"module","cpe":"cpe:/o:suse:sle-module-legacy:12","online_predecessor_ids":[],"product_class":"MODULE","repositories":[{"name":"SLE-Module-Legacy12-Updates","installer_updates":false,"description":"SLE-Module-Legacy12-Updates for sle-12-x86_64","id":1676,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/12/x86_64/update/","autorefresh":true,"distro_target":"sle-12-x86_64"},{"description":"SLE-Module-Legacy12-Debuginfo-Updates for sle-12-x86_64","name":"SLE-Module-Legacy12-Debuginfo-Updates","installer_updates":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/12/x86_64/update_debug/","autorefresh":true,"distro_target":"sle-12-x86_64","id":1677,"enabled":false},{"id":1678,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/12/x86_64/product/","autorefresh":false,"distro_target":"sle-12-x86_64","name":"SLE-Module-Legacy12-Pool","installer_updates":false,"description":"SLE-Module-Legacy12-Pool for sle-12-x86_64"},{"installer_updates":false,"name":"SLE-Module-Legacy12-Debuginfo-Pool","description":"SLE-Module-Legacy12-Debuginfo-Pool for sle-12-x86_64","enabled":false,"id":1679,"distro_target":"sle-12-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/12/x86_64/product_debug/"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/12/x86_64/product_source/","distro_target":"sle-12-x86_64","autorefresh":false,"id":1989,"enabled":false,"description":"SLE-Module-Legacy12-Source-Pool for sle-12-x86_64","installer_updates":false,"name":"SLE-Module-Legacy12-Source-Pool"}],"predecessor_ids":[],"arch":"x86_64","eula_url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/12/x86_64/product.license/","free":true,"shortname":"Legacy-Module","description":"

The Legacy Module helps you migrating applications from SUSE Linux Enterprise 10 and 11 and other systems to SUSE Linux Enterprise 12, by providing packages which are discontinued on SUSE Linux Enterprise Server, such as: sendmail, syslog-ng, IBM Java6, and a number of libraries (for example openssl-0.9.8).

Access to the Legacy Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself. Packages in the this module are usually supported for at most three years. Support for Sendmail and IBM Java 6 will end in September 2017 the latest.

"},{"release_type":null,"former_identifier":"sle-module-web-scripting","migration_extra":false,"friendly_name":"Web and Scripting Module 12 x86_64","offline_predecessor_ids":[],"name":"Web and Scripting Module","version":"12","recommended":false,"identifier":"sle-module-web-scripting","release_stage":"released","id":1153,"extensions":[],"friendly_version":"12","arch":"x86_64","eula_url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/12/x86_64/product.license/","free":true,"description":"

The SUSE Linux Enterprise Web and Scripting Module delivers a comprehensive suite of scripting languages, frameworks, and related tools helping developers and systems administrators accelerate the creation of stable, modern web applications, using dynamic languages, such as PHP, Ruby on Rails, and Python.

Access to the Web and Scripting Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself: Package versions in the this module are usually supported for at most three years. We are planning to release more recent versions on a schedule of approximately 18 month; the exact dates may differ per package.

","shortname":"Web-and-Scripting-Module","product_type":"module","cpe":"cpe:/o:suse:sle-module-web-scripting:12","repositories":[{"id":1688,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/12/x86_64/update/","distro_target":"sle-12-x86_64","autorefresh":true,"installer_updates":false,"name":"SLE-Module-Web-Scripting12-Updates","description":"SLE-Module-Web-Scripting12-Updates for sle-12-x86_64"},{"description":"SLE-Module-Web-Scripting12-Debuginfo-Updates for sle-12-x86_64","installer_updates":false,"name":"SLE-Module-Web-Scripting12-Debuginfo-Updates","distro_target":"sle-12-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/12/x86_64/update_debug/","enabled":false,"id":1689},{"installer_updates":false,"name":"SLE-Module-Web-Scripting12-Pool","description":"SLE-Module-Web-Scripting12-Pool for sle-12-x86_64","id":1690,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/12/x86_64/product/","distro_target":"sle-12-x86_64","autorefresh":false},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/12/x86_64/product_debug/","autorefresh":false,"distro_target":"sle-12-x86_64","id":1691,"enabled":false,"description":"SLE-Module-Web-Scripting12-Debuginfo-Pool for sle-12-x86_64","name":"SLE-Module-Web-Scripting12-Debuginfo-Pool","installer_updates":false},{"description":"SLE-Module-Web-Scripting12-Source-Pool for sle-12-x86_64","name":"SLE-Module-Web-Scripting12-Source-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/12/x86_64/product_source/","autorefresh":false,"distro_target":"sle-12-x86_64","id":1992,"enabled":false}],"online_predecessor_ids":[],"product_class":"MODULE","predecessor_ids":[]},{"online_predecessor_ids":[],"repositories":[{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Adv-Systems-Management/12/x86_64/update/","autorefresh":true,"distro_target":"sle-12-x86_64","id":1704,"enabled":true,"description":"SLE-Module-Adv-Systems-Management12-Updates for sle-12-x86_64","name":"SLE-Module-Adv-Systems-Management12-Updates","installer_updates":false},{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Adv-Systems-Management/12/x86_64/update_debug/","autorefresh":true,"distro_target":"sle-12-x86_64","id":1705,"enabled":false,"description":"SLE-Module-Adv-Systems-Management12-Debuginfo-Updates for sle-12-x86_64","name":"SLE-Module-Adv-Systems-Management12-Debuginfo-Updates","installer_updates":false},{"installer_updates":false,"name":"SLE-Module-Adv-Systems-Management12-Pool","description":"SLE-Module-Adv-Systems-Management12-Pool for sle-12-x86_64","enabled":true,"id":1706,"distro_target":"sle-12-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Adv-Systems-Management/12/x86_64/product/"},{"enabled":false,"id":1707,"autorefresh":false,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Adv-Systems-Management/12/x86_64/product_debug/","name":"SLE-Module-Adv-Systems-Management12-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-Adv-Systems-Management12-Debuginfo-Pool for sle-12-x86_64"},{"installer_updates":false,"name":"SLE-Module-Adv-Systems-Management12-Source-Pool","description":"SLE-Module-Adv-Systems-Management12-Source-Pool for sle-12-x86_64","id":1998,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Adv-Systems-Management/12/x86_64/product_source/","distro_target":"sle-12-x86_64","autorefresh":false}],"product_class":"MODULE","predecessor_ids":[],"cpe":"cpe:/o:suse:sle-module-adv-systems-management:12","product_type":"module","shortname":"Adv-Sys-Mgmt-Module","description":"

This Module contains current versions of the popular configuration management frameworks Puppet and CFEngine as well as the new systems management toolbox called machinery.

The machinery tool will be frequently updated and is SUSE's upcoming systems management toolbox for inspecting and validating systems remotely, storing their system description and creating new systems to deploy them in datacenters and clouds.

","free":true,"arch":"x86_64","eula_url":"","friendly_version":"12","release_stage":"released","id":1212,"identifier":"sle-module-adv-systems-management","extensions":[],"version":"12","recommended":false,"friendly_name":"Advanced Systems Management Module 12 x86_64","migration_extra":false,"former_identifier":"sle-module-adv-systems-management","release_type":null,"name":"Advanced Systems Management Module","offline_predecessor_ids":[]},{"friendly_version":"12","release_stage":"released","identifier":"sle-module-public-cloud","id":1220,"extensions":[],"version":"12","recommended":false,"migration_extra":false,"friendly_name":"Public Cloud Module 12 x86_64","release_type":null,"former_identifier":"sle-module-public-cloud","name":"Public Cloud Module","offline_predecessor_ids":[],"repositories":[{"installer_updates":false,"name":"SLE-Module-Public-Cloud12-Updates","description":"SLE-Module-Public-Cloud12-Updates for sle-12-x86_64","id":1700,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/12/x86_64/update/","distro_target":"sle-12-x86_64","autorefresh":true},{"description":"SLE-Module-Public-Cloud12-Debuginfo-Updates for sle-12-x86_64","installer_updates":false,"name":"SLE-Module-Public-Cloud12-Debuginfo-Updates","distro_target":"sle-12-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/12/x86_64/update_debug/","enabled":false,"id":1701},{"description":"SLE-Module-Public-Cloud12-Pool for sle-12-x86_64","name":"SLE-Module-Public-Cloud12-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/12/x86_64/product/","enabled":true,"id":1702},{"description":"SLE-Module-Public-Cloud12-Debuginfo-Pool for sle-12-x86_64","name":"SLE-Module-Public-Cloud12-Debuginfo-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/12/x86_64/product_debug/","enabled":false,"id":1703},{"description":"SLE-Module-Public-Cloud12-Source-Pool for sle-12-x86_64","name":"SLE-Module-Public-Cloud12-Source-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/12/x86_64/product_source/","enabled":false,"id":1995}],"online_predecessor_ids":[],"product_class":"MODULE","predecessor_ids":[],"cpe":"cpe:/o:suse:sle-module-public-cloud:12","product_type":"module","shortname":"Public-Cloud-Module","description":"

The Public Cloud Module is a collection of tools that enables you to create and manage cloud images from the commandline on SUSE Linux Enterprise Server. When building your own images with KIWI or SUSE Studio, initialization code specific to the target cloud is included in that image.

Access to the Public Cloud Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself; please check the Release Notes for further details.

","free":true,"arch":"x86_64","eula_url":""},{"arch":"x86_64","eula_url":"","free":true,"shortname":"Containers-Module","description":"

This Module contains several packages revolving around containers and related tools.

","product_type":"module","cpe":"cpe:/o:suse:sle-module-containers:12","online_predecessor_ids":[],"product_class":"MODULE","repositories":[{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/12/x86_64/update/","distro_target":"sle-12-x86_64","autorefresh":true,"id":1864,"enabled":true,"description":"SLE-Module-Containers12-Updates for sle-12-x86_64","installer_updates":false,"name":"SLE-Module-Containers12-Updates"},{"description":"SLE-Module-Containers12-Debuginfo-Updates for sle-12-x86_64","installer_updates":false,"name":"SLE-Module-Containers12-Debuginfo-Updates","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/12/x86_64/update_debug/","distro_target":"sle-12-x86_64","autorefresh":true,"id":1865,"enabled":false},{"name":"SLE-Module-Containers12-Pool","installer_updates":false,"description":"SLE-Module-Containers12-Pool for sle-12-x86_64","enabled":true,"id":1866,"autorefresh":false,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/12/x86_64/product/"},{"autorefresh":false,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/12/x86_64/product_debug/","enabled":false,"id":1867,"description":"SLE-Module-Containers12-Debuginfo-Pool for sle-12-x86_64","name":"SLE-Module-Containers12-Debuginfo-Pool","installer_updates":false},{"description":"SLE-Module-Containers12-Source-Pool for sle-12-x86_64","installer_updates":false,"name":"SLE-Module-Containers12-Source-Pool","distro_target":"sle-12-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/12/x86_64/product_source/","enabled":false,"id":1957}],"predecessor_ids":[],"former_identifier":"sle-module-containers","release_type":null,"migration_extra":false,"friendly_name":"Containers Module 12 x86_64","offline_predecessor_ids":[],"name":"Containers Module","version":"12","recommended":false,"identifier":"sle-module-containers","release_stage":"released","id":1332,"extensions":[],"friendly_version":"12"},{"release_type":null,"former_identifier":"sle-module-toolchain","migration_extra":false,"friendly_name":"Toolchain Module 12 x86_64","offline_predecessor_ids":[],"name":"Toolchain Module","version":"12","recommended":false,"release_stage":"released","identifier":"sle-module-toolchain","id":1341,"extensions":[],"friendly_version":"12","arch":"x86_64","eula_url":"","free":true,"description":"Via this Module you will have access to a more recent GCC and Toolchain in addition to the default compiler of SUSE Linux Enterprise. Access to the Toolchain Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself. Please check the Release Notes for further details.","shortname":"Toolchain-Module","product_type":"module","cpe":"cpe:/o:suse:sle-module-toolchain:12","online_predecessor_ids":[],"repositories":[{"description":"SLE-Module-Toolchain12-Updates for sle-12-x86_64","name":"SLE-Module-Toolchain12-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Toolchain/12/x86_64/update/","enabled":true,"id":1903},{"description":"SLE-Module-Toolchain12-Debuginfo-Updates for sle-12-x86_64","name":"SLE-Module-Toolchain12-Debuginfo-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Toolchain/12/x86_64/update_debug/","enabled":false,"id":1904},{"name":"SLE-Module-Toolchain12-Pool","installer_updates":false,"description":"SLE-Module-Toolchain12-Pool for sle-12-x86_64","enabled":true,"id":1905,"autorefresh":false,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Toolchain/12/x86_64/product/"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Toolchain/12/x86_64/product_debug/","distro_target":"sle-12-x86_64","autorefresh":false,"id":1906,"enabled":false,"description":"SLE-Module-Toolchain12-Debuginfo-Pool for sle-12-x86_64","installer_updates":false,"name":"SLE-Module-Toolchain12-Debuginfo-Pool"}],"product_class":"MODULE","predecessor_ids":[]},{"version":"12.3","recommended":false,"former_identifier":"sle-sdk","release_type":null,"friendly_name":"SUSE Linux Enterprise Software Development Kit 12 SP3 x86_64","migration_extra":false,"offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Software Development Kit","friendly_version":"12 SP3","id":1427,"release_stage":"released","identifier":"sle-sdk","extensions":[],"free":true,"description":"

SUSE Linux Enterprise Software Development Kit is the Software Development Kit for the family of SUSE Linux Enterprise products. It is a free of charge extension for partners and customers working with SUSE Linux Enterprise Server and Desktop and derived products.

Packages on the SDK are delivered without L3 support; maintenance updates will be done for critical security and critical non-security issues, and where needed to remain in sync with packages delivered in the SUSE Linux Enterprise Server and Desktop products.

Packages to rebuild SUSE Linux Enterprise Server are not part of the SUSE Linux Enterprise Software Development Kit.

","shortname":"SDK12-SP3","arch":"x86_64","eula_url":"https://updates.suse.com/SUSE/Products/SLE-SDK/12-SP3/x86_64/product.license/","online_predecessor_ids":[1223,1323,1366],"repositories":[{"installer_updates":false,"name":"SLE-SDK12-SP3-Updates","description":"SLE-SDK12-SP3-Updates for sle-12-x86_64","enabled":true,"id":2230,"distro_target":"sle-12-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-SDK/12-SP3/x86_64/update/"},{"installer_updates":false,"name":"SLE-SDK12-SP3-Debuginfo-Updates","description":"SLE-SDK12-SP3-Debuginfo-Updates for sle-12-x86_64","id":2231,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-SDK/12-SP3/x86_64/update_debug/","distro_target":"sle-12-x86_64","autorefresh":true},{"distro_target":"sle-12-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-SDK/12-SP3/x86_64/product/","enabled":true,"id":2232,"description":"SLE-SDK12-SP3-Pool for sle-12-x86_64","installer_updates":false,"name":"SLE-SDK12-SP3-Pool"},{"id":2233,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-SDK/12-SP3/x86_64/product_debug/","autorefresh":false,"distro_target":"sle-12-x86_64","name":"SLE-SDK12-SP3-Debuginfo-Pool","installer_updates":false,"description":"SLE-SDK12-SP3-Debuginfo-Pool for sle-12-x86_64"},{"description":"SLE-SDK12-SP3-Source-Pool for sle-12-x86_64","name":"SLE-SDK12-SP3-Source-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-SDK/12-SP3/x86_64/product_source/","autorefresh":false,"distro_target":"sle-12-x86_64","id":2234,"enabled":false}],"product_class":"SLE-SDK","predecessor_ids":[1223,1323,1366],"product_type":"extension","cpe":"cpe:/o:suse:sle-sdk:12:sp3"},{"version":"12.3","recommended":false,"release_type":null,"former_identifier":"sle-we","friendly_name":"SUSE Linux Enterprise Workstation Extension 12 SP3 x86_64","migration_extra":false,"offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Workstation Extension","friendly_version":"12 SP3","release_stage":"released","id":1431,"identifier":"sle-we","extensions":[],"free":false,"description":"SUSE Linux Enterprise Workstation Extension extends the functionality of SUSE Linux Enterprise Server with packages of SUSE Linux Enterprise Desktop, like additional desktop applications (office suite, email client, graphical editor ...) and libraries. It allows to combine both products to create a full featured Workstation.","shortname":"SLEWE12-SP3","arch":"x86_64","eula_url":"https://updates.suse.com/SUSE/Products/SLE-WE/12-SP3/x86_64/product.license/","online_predecessor_ids":[1222,1338,1359],"product_class":"SLE-WE","repositories":[{"description":"SLE-12-SP3-GA-Desktop-nVidia-Driver","installer_updates":false,"name":"SLE-12-SP3-GA-Desktop-nVidia-Driver","url":"http://download.nvidia.com/suse/sle12sp3/","distro_target":null,"autorefresh":true,"id":2217,"enabled":true},{"id":2250,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-WE/12-SP3/x86_64/update/","autorefresh":true,"distro_target":"sle-12-x86_64","name":"SLE-WE12-SP3-Updates","installer_updates":false,"description":"SLE-WE12-SP3-Updates for sle-12-x86_64"},{"enabled":false,"id":2251,"distro_target":"sle-12-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-WE/12-SP3/x86_64/update_debug/","installer_updates":false,"name":"SLE-WE12-SP3-Debuginfo-Updates","description":"SLE-WE12-SP3-Debuginfo-Updates for sle-12-x86_64"},{"description":"SLE-WE12-SP3-Pool for sle-12-x86_64","installer_updates":false,"name":"SLE-WE12-SP3-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-WE/12-SP3/x86_64/product/","distro_target":"sle-12-x86_64","autorefresh":false,"id":2252,"enabled":true},{"id":2253,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-WE/12-SP3/x86_64/product_debug/","autorefresh":false,"distro_target":"sle-12-x86_64","name":"SLE-WE12-SP3-Debuginfo-Pool","installer_updates":false,"description":"SLE-WE12-SP3-Debuginfo-Pool for sle-12-x86_64"},{"installer_updates":false,"name":"SLE-WE12-SP3-Source-Pool","description":"SLE-WE12-SP3-Source-Pool for sle-12-x86_64","id":2254,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-WE/12-SP3/x86_64/product_source/","distro_target":"sle-12-x86_64","autorefresh":false}],"predecessor_ids":[1222,1338,1359],"product_type":"extension","cpe":"cpe:/o:suse:sle-we:12:sp3"},{"name":"SUSE Linux Enterprise High Availability GEO Extension","offline_predecessor_ids":[1101,1107,1286],"friendly_name":"SUSE Linux Enterprise High Availability GEO Extension 12 SP3 x86_64","migration_extra":false,"former_identifier":"sle-hae-geo","release_type":null,"recommended":false,"version":"12.3","extensions":[],"identifier":"sle-ha-geo","release_stage":"released","id":1435,"friendly_version":"12 SP3","eula_url":"https://updates.suse.com/SUSE/Products/SLE-HA-GEO/12-SP3/x86_64/product.license/","arch":"x86_64","description":"SUSE Linux Enterprise High Availability Geographical Cluster Extension","shortname":"SLEHAGEO12-SP3","free":false,"cpe":"cpe:/o:suse:sle-ha-geo:12:sp3","product_type":"extension","predecessor_ids":[1157,1337,1363],"online_predecessor_ids":[1157,1337,1363],"repositories":[{"enabled":true,"id":2265,"autorefresh":true,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-HA-GEO/12-SP3/x86_64/update/","name":"SLE-HA-GEO12-SP3-Updates","installer_updates":false,"description":"SLE-HA-GEO12-SP3-Updates for sle-12-x86_64"},{"enabled":false,"id":2266,"autorefresh":true,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-HA-GEO/12-SP3/x86_64/update_debug/","name":"SLE-HA-GEO12-SP3-Debuginfo-Updates","installer_updates":false,"description":"SLE-HA-GEO12-SP3-Debuginfo-Updates for sle-12-x86_64"},{"id":2267,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-HA-GEO/12-SP3/x86_64/product/","autorefresh":false,"distro_target":"sle-12-x86_64","name":"SLE-HA-GEO12-SP3-Pool","installer_updates":false,"description":"SLE-HA-GEO12-SP3-Pool for sle-12-x86_64"},{"url":"https://updates.suse.com/SUSE/Products/SLE-HA-GEO/12-SP3/x86_64/product_debug/","autorefresh":false,"distro_target":"sle-12-x86_64","id":2268,"enabled":false,"description":"SLE-HA-GEO12-SP3-Debuginfo-Pool for sle-12-x86_64","name":"SLE-HA-GEO12-SP3-Debuginfo-Pool","installer_updates":false},{"url":"https://updates.suse.com/SUSE/Products/SLE-HA-GEO/12-SP3/x86_64/product_source/","distro_target":"sle-12-x86_64","autorefresh":false,"id":2269,"enabled":false,"description":"SLE-HA-GEO12-SP3-Source-Pool for sle-12-x86_64","installer_updates":false,"name":"SLE-HA-GEO12-SP3-Source-Pool"}],"product_class":"SLE-HAE-GEO"},{"version":"12.2","recommended":false,"friendly_name":"SUSE Linux Enterprise Point of Service Image Server 12 SP2 x86_64","migration_extra":false,"release_type":null,"former_identifier":"sle-pos","name":"SUSE Linux Enterprise Point of Service Image Server","offline_predecessor_ids":[],"friendly_version":"12 SP2","identifier":"sle-pos","release_stage":"released","id":1439,"extensions":[],"description":"SUSE Linux Enterprise Point of Service Image Server","shortname":"SLEPOS12","free":false,"arch":"x86_64","eula_url":"https://updates.suse.com/SUSE/Products/SLE-POS/12-SP2/x86_64/product.license/","product_class":"10040","online_predecessor_ids":[],"repositories":[{"id":2289,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-POS/12-SP2/x86_64/update/","distro_target":"sle-12-x86_64","autorefresh":true,"installer_updates":false,"name":"SLE-POS12-SP2-Updates","description":"SLE-POS12-SP2-Updates for sle-12-x86_64"},{"description":"SLE-POS12-SP2-Debuginfo-Updates for sle-12-x86_64","installer_updates":false,"name":"SLE-POS12-SP2-Debuginfo-Updates","distro_target":"sle-12-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-POS/12-SP2/x86_64/update_debug/","enabled":false,"id":2290},{"installer_updates":false,"name":"SLE-POS12-SP2-Pool","description":"SLE-POS12-SP2-Pool for sle-12-x86_64","enabled":true,"id":2291,"distro_target":"sle-12-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-POS/12-SP2/x86_64/product/"},{"name":"SLE-POS12-SP2-Debuginfo-Pool","installer_updates":false,"description":"SLE-POS12-SP2-Debuginfo-Pool for sle-12-x86_64","id":2292,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-POS/12-SP2/x86_64/product_debug/","autorefresh":false,"distro_target":"sle-12-x86_64"},{"distro_target":"sle-12-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-POS/12-SP2/x86_64/product_source/","enabled":false,"id":2293,"description":"SLE-POS12-SP2-Source-Pool for sle-12-x86_64","installer_updates":false,"name":"SLE-POS12-SP2-Source-Pool"},{"autorefresh":true,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-POS/12-SP2-CLIENT/x86_64/update/","enabled":true,"id":3130,"description":"SLE-POS12-SP2-CLIENT-Updates for sle-12-x86_64","name":"SLE-POS12-SP2-CLIENT-Updates","installer_updates":false},{"description":"SLE-POS12-SP2-CLIENT-Debuginfo-Updates for sle-12-x86_64","name":"SLE-POS12-SP2-CLIENT-Debuginfo-Updates","installer_updates":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-POS/12-SP2-CLIENT/x86_64/update_debug/","autorefresh":true,"distro_target":"sle-12-x86_64","id":3131,"enabled":false}],"predecessor_ids":[],"cpe":"cpe:/o:suse:sle-pos:12:sp2","product_type":"extension"},{"shortname":"HPC-Module","description":"The SUSE Linux Enterprise Server High Performance Computing (HPC) module delivers specific tools commonly used for high performance, numerically intensive workloads. SUSE packages these tools in the SLES HPC Module to provide greater flexibility to deliver new versions or new tools more rapidly than the standard SUSE Linux Enterprise lifecycle would permit. Packages in this module are general supported till a newer version of the package is released or the package is dropped from the module.","free":true,"arch":"x86_64","eula_url":"https://updates.suse.com/SUSE/Products/SLE-Module-HPC/12/x86_64/product.license/","online_predecessor_ids":[],"repositories":[{"description":"SLE-Module-HPC12-Updates for sle-12-x86_64","installer_updates":false,"name":"SLE-Module-HPC12-Updates","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-HPC/12/x86_64/update/","distro_target":"sle-12-x86_64","autorefresh":true,"id":2294,"enabled":true},{"description":"SLE-Module-HPC12-Debuginfo-Updates for sle-12-x86_64","installer_updates":false,"name":"SLE-Module-HPC12-Debuginfo-Updates","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-HPC/12/x86_64/update_debug/","distro_target":"sle-12-x86_64","autorefresh":true,"id":2295,"enabled":false},{"description":"SLE-Module-HPC12-Pool for sle-12-x86_64","installer_updates":false,"name":"SLE-Module-HPC12-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-HPC/12/x86_64/product/","distro_target":"sle-12-x86_64","autorefresh":false,"id":2296,"enabled":true},{"id":2297,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-HPC/12/x86_64/product_debug/","autorefresh":false,"distro_target":"sle-12-x86_64","name":"SLE-Module-HPC12-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-HPC12-Debuginfo-Pool for sle-12-x86_64"},{"description":"SLE-Module-HPC12-Source-Pool for sle-12-x86_64","name":"SLE-Module-HPC12-Source-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-HPC/12/x86_64/product_source/","autorefresh":false,"distro_target":"sle-12-x86_64","id":2298,"enabled":false}],"product_class":"MODULE","predecessor_ids":[],"cpe":"cpe:/o:suse:sle-module-hpc:12","product_type":"module","version":"12","recommended":false,"friendly_name":"HPC Module 12 x86_64","migration_extra":false,"release_type":null,"former_identifier":"sle-module-hpc","name":"HPC Module","offline_predecessor_ids":[],"friendly_version":"12","release_stage":"released","identifier":"sle-module-hpc","id":1440,"extensions":[]},{"name":"SUSE Enterprise Storage","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"SUSE Enterprise Storage 5 x86_64","former_identifier":"ses","release_type":null,"recommended":false,"version":"5","extensions":[],"release_stage":"released","id":1526,"identifier":"ses","friendly_version":"5","eula_url":"https://updates.suse.com/SUSE/Products/Storage/5/x86_64/product.license/","arch":"x86_64","shortname":"SES5","description":"SUSE Enterprise Storage 5 for SUSE Linux Enterprise Server 12-SP3, powered by Ceph.","free":false,"cpe":"cpe:/o:suse:ses:5","product_type":"extension","predecessor_ids":[1416],"online_predecessor_ids":[1416],"repositories":[{"enabled":true,"id":2432,"distro_target":"sle-12-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/Storage/5/x86_64/update/","installer_updates":false,"name":"SUSE-Enterprise-Storage-5-Updates","description":"SUSE-Enterprise-Storage-5-Updates for sle-12-x86_64"},{"installer_updates":false,"name":"SUSE-Enterprise-Storage-5-Debuginfo-Updates","description":"SUSE-Enterprise-Storage-5-Debuginfo-Updates for sle-12-x86_64","id":2433,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/Storage/5/x86_64/update_debug/","distro_target":"sle-12-x86_64","autorefresh":true},{"enabled":true,"id":2434,"distro_target":"sle-12-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/Storage/5/x86_64/product/","installer_updates":false,"name":"SUSE-Enterprise-Storage-5-Pool","description":"SUSE-Enterprise-Storage-5-Pool for sle-12-x86_64"},{"description":"SUSE-Enterprise-Storage-5-Debuginfo-Pool for sle-12-x86_64","name":"SUSE-Enterprise-Storage-5-Debuginfo-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/Storage/5/x86_64/product_debug/","autorefresh":false,"distro_target":"sle-12-x86_64","id":2435,"enabled":false},{"distro_target":"sle-12-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/Storage/5/x86_64/product_source/","enabled":false,"id":2436,"description":"SUSE-Enterprise-Storage-5-Source-Pool for sle-12-x86_64","installer_updates":false,"name":"SUSE-Enterprise-Storage-5-Source-Pool"}],"product_class":"SES"},{"free":true,"description":"SUSE Package Hub is a free of charge extension providing access to community maintained packages built to run on SUSE Linux Enterprise Server. Built from the same sources used in the openSUSE distributions, these quality packages provide additional software to what is found in the SUSE Linux Enterprise Server product. Packages from the Package Hub are delivered without L3 support from SUSE. General updates and fixes to the packages in SUSE Package Hub are provided by the openSUSE community based on their discretion though SUSE will monitor and ensure that any known critical security issues will be addressed. Packages in the Package Hub are approved by SUSE for use with SUSE Linux Enterprise Server 12 and to not interfere with the supportability of SUSE Linux Enterprise Server it's modules and extensions. For more information about SUSE Package Hub please visit https://packagehub.suse.com.","shortname":"SUSE-PackageHub-12-SP3","arch":"x86_64","eula_url":"","online_predecessor_ids":[1473,1476,1479],"product_class":"MODULE","repositories":[{"enabled":true,"id":2445,"distro_target":"sle-12-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Backports/SLE-12-SP3_x86_64/standard/","installer_updates":false,"name":"SUSE-PackageHub-12-SP3-Standard-Pool","description":"SUSE-PackageHub-12-SP3-Standard-Pool for sle-12-x86_64"},{"installer_updates":false,"name":"SUSE-PackageHub-12-SP3-Debuginfo","description":"SUSE-PackageHub-12-SP3-Debuginfo for sle-12-x86_64","id":2446,"enabled":false,"url":"https://updates.suse.com/SUSE/Backports/SLE-12-SP3_x86_64/standard_debug/","distro_target":"sle-12-x86_64","autorefresh":true},{"description":"SUSE-PackageHub-12-SP3-Pool for sle-12-x86_64","name":"SUSE-PackageHub-12-SP3-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Backports/SLE-12-SP3_x86_64/product/","enabled":true,"id":2447}],"predecessor_ids":[1473,1476,1479],"product_type":"extension","cpe":"cpe:/o:suse:packagehub:12:sp3","version":"12.3","recommended":false,"release_type":null,"former_identifier":"PackageHub","friendly_name":"SUSE Package Hub 12 SP3 x86_64","migration_extra":false,"offline_predecessor_ids":[],"name":"SUSE Package Hub","friendly_version":"12 SP3","id":1529,"release_stage":"released","identifier":"PackageHub","extensions":[]},{"eula_url":"https://updates.suse.com/SUSE/Products/SLE-Live-Patching/12-SP3/x86_64/product.license/","arch":"x86_64","description":"

SUSE Linux Enterprise Live Patching provides packages to update critical kernel modules live in SUSE Linux Enterprise. With SUSE Linux Enterprise Live Patching, you can perform critical kernel patching without shutting down your system, reducing the need for planned downtime and increasing service availability.

","shortname":"Live-Patching","free":false,"cpe":"cpe:/o:suse:sle-live-patching:12:sp3","product_type":"extension","predecessor_ids":[1253],"product_class":"SLE-LP","online_predecessor_ids":[1253],"repositories":[{"distro_target":"sle-12-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Live-Patching/12-SP3/x86_64/update/","enabled":true,"id":2463,"description":"SLE-Live-Patching12-SP3-Updates for sle-12-x86_64","installer_updates":false,"name":"SLE-Live-Patching12-SP3-Updates"},{"description":"SLE-Live-Patching12-SP3-Debuginfo-Updates for sle-12-x86_64","name":"SLE-Live-Patching12-SP3-Debuginfo-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Live-Patching/12-SP3/x86_64/update_debug/","enabled":false,"id":2464},{"url":"https://updates.suse.com/SUSE/Products/SLE-Live-Patching/12-SP3/x86_64/product/","distro_target":"sle-12-x86_64","autorefresh":false,"id":2465,"enabled":true,"description":"SLE-Live-Patching12-SP3-Pool for sle-12-x86_64","installer_updates":false,"name":"SLE-Live-Patching12-SP3-Pool"},{"id":2466,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Live-Patching/12-SP3/x86_64/product_debug/","autorefresh":false,"distro_target":"sle-12-x86_64","name":"SLE-Live-Patching12-SP3-Debuginfo-Pool","installer_updates":false,"description":"SLE-Live-Patching12-SP3-Debuginfo-Pool for sle-12-x86_64"}],"name":"SUSE Linux Enterprise Live Patching","offline_predecessor_ids":[],"friendly_name":"SUSE Linux Enterprise Live Patching 12 SP3 x86_64","migration_extra":false,"former_identifier":"sle-live-patching","release_type":null,"recommended":false,"version":"12.3","extensions":[],"release_stage":"released","id":1536,"identifier":"sle-live-patching","friendly_version":"12 SP3"},{"arch":"x86_64","eula_url":"","shortname":"SLES12-SP3 LTSS","description":"SUSE Linux Enterprise offers a comprehensive suite of products built on a single code base. The platform addresses business needs from the smallest thin-client devices to the world's most powerful high-performance computing and mainframe servers. SUSE Linux Enterprise offers common management tools and technology certifications across the platform, and each product is enterprise-class.","free":false,"cpe":"cpe:/o:suse:sles-ltss:12:sp3","product_type":"extension","product_class":"SLES12-SP3-LTSS-X86","online_predecessor_ids":[],"repositories":[{"enabled":true,"id":3919,"distro_target":"sle-12-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-SP3-LTSS/x86_64/update/","installer_updates":false,"name":"SLES12-SP3-LTSS-Updates","description":"SLES12-SP3-LTSS-Updates for sle-12-x86_64"},{"name":"SLES12-SP3-LTSS-Debuginfo-Updates","installer_updates":false,"description":"SLES12-SP3-LTSS-Debuginfo-Updates for sle-12-x86_64","enabled":false,"id":3920,"autorefresh":true,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-SP3-LTSS/x86_64/update_debug/"}],"predecessor_ids":[],"friendly_name":"SUSE Linux Enterprise Server LTSS 12 SP3 x86_64","migration_extra":false,"release_type":null,"former_identifier":"SLES-LTSS","name":"SUSE Linux Enterprise Server LTSS","offline_predecessor_ids":[],"version":"12.3","recommended":false,"release_stage":"released","id":1932,"identifier":"SLES-LTSS","extensions":[],"friendly_version":"12 SP3"}],"release_stage":"released","identifier":"SLES_SAP","id":1426,"friendly_version":"12 SP3","offline_predecessor_ids":[1329],"name":"SUSE Linux Enterprise Server for SAP Applications","release_type":null,"former_identifier":"SUSE_SLES_SAP","friendly_name":"SUSE Linux Enterprise Server for SAP Applications 12 SP3 x86_64","migration_extra":false,"recommended":false,"version":"12.3"},{"friendly_version":"12 SP3","extensions":[],"release_stage":"released","identifier":"sle-sdk","id":1427,"recommended":false,"version":"12.3","name":"SUSE Linux Enterprise Software Development Kit","offline_predecessor_ids":[],"friendly_name":"SUSE Linux Enterprise Software Development Kit 12 SP3 x86_64","migration_extra":false,"release_type":null,"former_identifier":"sle-sdk","predecessor_ids":[1223,1323,1366],"online_predecessor_ids":[1223,1323,1366],"repositories":[{"id":2230,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-SDK/12-SP3/x86_64/update/","distro_target":"sle-12-x86_64","autorefresh":true,"installer_updates":false,"name":"SLE-SDK12-SP3-Updates","description":"SLE-SDK12-SP3-Updates for sle-12-x86_64"},{"enabled":false,"id":2231,"distro_target":"sle-12-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-SDK/12-SP3/x86_64/update_debug/","installer_updates":false,"name":"SLE-SDK12-SP3-Debuginfo-Updates","description":"SLE-SDK12-SP3-Debuginfo-Updates for sle-12-x86_64"},{"installer_updates":false,"name":"SLE-SDK12-SP3-Pool","description":"SLE-SDK12-SP3-Pool for sle-12-x86_64","id":2232,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-SDK/12-SP3/x86_64/product/","distro_target":"sle-12-x86_64","autorefresh":false},{"id":2233,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-SDK/12-SP3/x86_64/product_debug/","distro_target":"sle-12-x86_64","autorefresh":false,"installer_updates":false,"name":"SLE-SDK12-SP3-Debuginfo-Pool","description":"SLE-SDK12-SP3-Debuginfo-Pool for sle-12-x86_64"},{"description":"SLE-SDK12-SP3-Source-Pool for sle-12-x86_64","installer_updates":false,"name":"SLE-SDK12-SP3-Source-Pool","distro_target":"sle-12-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-SDK/12-SP3/x86_64/product_source/","enabled":false,"id":2234}],"product_class":"SLE-SDK","cpe":"cpe:/o:suse:sle-sdk:12:sp3","product_type":"extension","description":"

SUSE Linux Enterprise Software Development Kit is the Software Development Kit for the family of SUSE Linux Enterprise products. It is a free of charge extension for partners and customers working with SUSE Linux Enterprise Server and Desktop and derived products.

Packages on the SDK are delivered without L3 support; maintenance updates will be done for critical security and critical non-security issues, and where needed to remain in sync with packages delivered in the SUSE Linux Enterprise Server and Desktop products.

Packages to rebuild SUSE Linux Enterprise Server are not part of the SUSE Linux Enterprise Software Development Kit.

","shortname":"SDK12-SP3","free":true,"eula_url":"https://updates.suse.com/SUSE/Products/SLE-SDK/12-SP3/x86_64/product.license/","arch":"x86_64"},{"product_type":"extension","cpe":"cpe:/o:suse:sle-sdk:12:sp3","predecessor_ids":[1145,1343,1364],"online_predecessor_ids":[1145,1343,1364],"product_class":"SLE-SDK","repositories":[{"enabled":true,"id":2235,"distro_target":"sle-12-ppc64le","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-SDK/12-SP3/ppc64le/update/","installer_updates":false,"name":"SLE-SDK12-SP3-Updates","description":"SLE-SDK12-SP3-Updates for sle-12-ppc64le"},{"description":"SLE-SDK12-SP3-Debuginfo-Updates for sle-12-ppc64le","name":"SLE-SDK12-SP3-Debuginfo-Updates","installer_updates":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-SDK/12-SP3/ppc64le/update_debug/","autorefresh":true,"distro_target":"sle-12-ppc64le","id":2236,"enabled":false},{"description":"SLE-SDK12-SP3-Pool for sle-12-ppc64le","name":"SLE-SDK12-SP3-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-12-ppc64le","url":"https://updates.suse.com/SUSE/Products/SLE-SDK/12-SP3/ppc64le/product/","enabled":true,"id":2237},{"name":"SLE-SDK12-SP3-Debuginfo-Pool","installer_updates":false,"description":"SLE-SDK12-SP3-Debuginfo-Pool for sle-12-ppc64le","enabled":false,"id":2238,"autorefresh":false,"distro_target":"sle-12-ppc64le","url":"https://updates.suse.com/SUSE/Products/SLE-SDK/12-SP3/ppc64le/product_debug/"},{"installer_updates":false,"name":"SLE-SDK12-SP3-Source-Pool","description":"SLE-SDK12-SP3-Source-Pool for sle-12-ppc64le","id":2239,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-SDK/12-SP3/ppc64le/product_source/","distro_target":"sle-12-ppc64le","autorefresh":false}],"eula_url":"https://updates.suse.com/SUSE/Products/SLE-SDK/12-SP3/ppc64le/product.license/","arch":"ppc64le","free":true,"shortname":"SDK12-SP3","description":"

SUSE Linux Enterprise Software Development Kit is the Software Development Kit for the family of SUSE Linux Enterprise products. It is a free of charge extension for partners and customers working with SUSE Linux Enterprise Server and Desktop and derived products.

Packages on the SDK are delivered without L3 support; maintenance updates will be done for critical security and critical non-security issues, and where needed to remain in sync with packages delivered in the SUSE Linux Enterprise Server and Desktop products.

Packages to rebuild SUSE Linux Enterprise Server are not part of the SUSE Linux Enterprise Software Development Kit.

","extensions":[],"id":1428,"release_stage":"released","identifier":"sle-sdk","friendly_version":"12 SP3","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Software Development Kit","release_type":null,"former_identifier":"sle-sdk","migration_extra":false,"friendly_name":"SUSE Linux Enterprise Software Development Kit 12 SP3 ppc64le","recommended":false,"version":"12.3"},{"product_type":"extension","cpe":"cpe:/o:suse:sle-sdk:12:sp3","predecessor_ids":[1146,1344,1365],"online_predecessor_ids":[1146,1344,1365],"product_class":"SLE-SDK","repositories":[{"description":"SLE-SDK12-SP3-Updates for sle-12-s390x","installer_updates":false,"name":"SLE-SDK12-SP3-Updates","distro_target":"sle-12-s390x","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-SDK/12-SP3/s390x/update/","enabled":true,"id":2240},{"description":"SLE-SDK12-SP3-Debuginfo-Updates for sle-12-s390x","name":"SLE-SDK12-SP3-Debuginfo-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-12-s390x","url":"https://updates.suse.com/SUSE/Updates/SLE-SDK/12-SP3/s390x/update_debug/","enabled":false,"id":2241},{"description":"SLE-SDK12-SP3-Pool for sle-12-s390x","installer_updates":false,"name":"SLE-SDK12-SP3-Pool","distro_target":"sle-12-s390x","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-SDK/12-SP3/s390x/product/","enabled":true,"id":2242},{"autorefresh":false,"distro_target":"sle-12-s390x","url":"https://updates.suse.com/SUSE/Products/SLE-SDK/12-SP3/s390x/product_debug/","enabled":false,"id":2243,"description":"SLE-SDK12-SP3-Debuginfo-Pool for sle-12-s390x","name":"SLE-SDK12-SP3-Debuginfo-Pool","installer_updates":false},{"installer_updates":false,"name":"SLE-SDK12-SP3-Source-Pool","description":"SLE-SDK12-SP3-Source-Pool for sle-12-s390x","enabled":false,"id":2244,"distro_target":"sle-12-s390x","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-SDK/12-SP3/s390x/product_source/"}],"eula_url":"https://updates.suse.com/SUSE/Products/SLE-SDK/12-SP3/s390x/product.license/","arch":"s390x","free":true,"shortname":"SDK12-SP3","description":"

SUSE Linux Enterprise Software Development Kit is the Software Development Kit for the family of SUSE Linux Enterprise products. It is a free of charge extension for partners and customers working with SUSE Linux Enterprise Server and Desktop and derived products.

Packages on the SDK are delivered without L3 support; maintenance updates will be done for critical security and critical non-security issues, and where needed to remain in sync with packages delivered in the SUSE Linux Enterprise Server and Desktop products.

Packages to rebuild SUSE Linux Enterprise Server are not part of the SUSE Linux Enterprise Software Development Kit.

","extensions":[],"identifier":"sle-sdk","release_stage":"released","id":1429,"friendly_version":"12 SP3","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Software Development Kit","former_identifier":"sle-sdk","release_type":null,"friendly_name":"SUSE Linux Enterprise Software Development Kit 12 SP3 s390x","migration_extra":false,"recommended":false,"version":"12.3"},{"free":true,"description":"

SUSE Linux Enterprise Software Development Kit is the Software Development Kit for the family of SUSE Linux Enterprise products. It is a free of charge extension for partners and customers working with SUSE Linux Enterprise Server and Desktop and derived products.

Packages on the SDK are delivered without L3 support; maintenance updates will be done for critical security and critical non-security issues, and where needed to remain in sync with packages delivered in the SUSE Linux Enterprise Server and Desktop products.

Packages to rebuild SUSE Linux Enterprise Server are not part of the SUSE Linux Enterprise Software Development Kit.

","shortname":"SDK12-SP3","eula_url":"https://updates.suse.com/SUSE/Products/SLE-SDK/12-SP3/aarch64/product.license/","arch":"aarch64","predecessor_ids":[1378],"repositories":[{"description":"SLE-SDK12-SP3-Updates for sle-12-aarch64","installer_updates":false,"name":"SLE-SDK12-SP3-Updates","distro_target":"sle-12-aarch64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-SDK/12-SP3/aarch64/update/","enabled":true,"id":2245},{"description":"SLE-SDK12-SP3-Debuginfo-Updates for sle-12-aarch64","installer_updates":false,"name":"SLE-SDK12-SP3-Debuginfo-Updates","distro_target":"sle-12-aarch64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-SDK/12-SP3/aarch64/update_debug/","enabled":false,"id":2246},{"id":2247,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-SDK/12-SP3/aarch64/product/","distro_target":"sle-12-aarch64","autorefresh":false,"installer_updates":false,"name":"SLE-SDK12-SP3-Pool","description":"SLE-SDK12-SP3-Pool for sle-12-aarch64"},{"distro_target":"sle-12-aarch64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-SDK/12-SP3/aarch64/product_debug/","enabled":false,"id":2248,"description":"SLE-SDK12-SP3-Debuginfo-Pool for sle-12-aarch64","installer_updates":false,"name":"SLE-SDK12-SP3-Debuginfo-Pool"},{"distro_target":"sle-12-aarch64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-SDK/12-SP3/aarch64/product_source/","enabled":false,"id":2249,"description":"SLE-SDK12-SP3-Source-Pool for sle-12-aarch64","installer_updates":false,"name":"SLE-SDK12-SP3-Source-Pool"}],"online_predecessor_ids":[1378],"product_class":"SLE-SDK","product_type":"extension","cpe":"cpe:/o:suse:sle-sdk:12:sp3","recommended":false,"version":"12.3","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Software Development Kit","former_identifier":"sle-sdk","release_type":null,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Software Development Kit 12 SP3 aarch64","friendly_version":"12 SP3","extensions":[],"release_stage":"released","id":1430,"identifier":"sle-sdk"},{"product_type":"extension","cpe":"cpe:/o:suse:sle-we:12:sp3","predecessor_ids":[1222,1338,1359],"online_predecessor_ids":[1222,1338,1359],"product_class":"SLE-WE","repositories":[{"autorefresh":true,"distro_target":null,"url":"http://download.nvidia.com/suse/sle12sp3/","enabled":true,"id":2217,"description":"SLE-12-SP3-GA-Desktop-nVidia-Driver","name":"SLE-12-SP3-GA-Desktop-nVidia-Driver","installer_updates":false},{"autorefresh":true,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-WE/12-SP3/x86_64/update/","enabled":true,"id":2250,"description":"SLE-WE12-SP3-Updates for sle-12-x86_64","name":"SLE-WE12-SP3-Updates","installer_updates":false},{"enabled":false,"id":2251,"autorefresh":true,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-WE/12-SP3/x86_64/update_debug/","name":"SLE-WE12-SP3-Debuginfo-Updates","installer_updates":false,"description":"SLE-WE12-SP3-Debuginfo-Updates for sle-12-x86_64"},{"url":"https://updates.suse.com/SUSE/Products/SLE-WE/12-SP3/x86_64/product/","distro_target":"sle-12-x86_64","autorefresh":false,"id":2252,"enabled":true,"description":"SLE-WE12-SP3-Pool for sle-12-x86_64","installer_updates":false,"name":"SLE-WE12-SP3-Pool"},{"id":2253,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-WE/12-SP3/x86_64/product_debug/","distro_target":"sle-12-x86_64","autorefresh":false,"installer_updates":false,"name":"SLE-WE12-SP3-Debuginfo-Pool","description":"SLE-WE12-SP3-Debuginfo-Pool for sle-12-x86_64"},{"description":"SLE-WE12-SP3-Source-Pool for sle-12-x86_64","installer_updates":false,"name":"SLE-WE12-SP3-Source-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-WE/12-SP3/x86_64/product_source/","distro_target":"sle-12-x86_64","autorefresh":false,"id":2254,"enabled":false}],"eula_url":"https://updates.suse.com/SUSE/Products/SLE-WE/12-SP3/x86_64/product.license/","arch":"x86_64","free":false,"description":"SUSE Linux Enterprise Workstation Extension extends the functionality of SUSE Linux Enterprise Server with packages of SUSE Linux Enterprise Desktop, like additional desktop applications (office suite, email client, graphical editor ...) and libraries. It allows to combine both products to create a full featured Workstation.","shortname":"SLEWE12-SP3","extensions":[],"identifier":"sle-we","release_stage":"released","id":1431,"friendly_version":"12 SP3","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Workstation Extension","release_type":null,"former_identifier":"sle-we","migration_extra":false,"friendly_name":"SUSE Linux Enterprise Workstation Extension 12 SP3 x86_64","recommended":false,"version":"12.3"},{"arch":"x86_64","eula_url":"https://updates.suse.com/SUSE/Products/SLE-HA/12-SP3/x86_64/product.license/","shortname":"SLEHA12-SP3","description":"SUSE Linux Enterprise High Availability Extension.","free":false,"cpe":"cpe:/o:suse:sle-ha:12:sp3","product_type":"extension","product_class":"SLE-HAE-X86","online_predecessor_ids":[1245,1324,1361],"repositories":[{"name":"SLE-HA12-SP3-Updates","installer_updates":false,"description":"SLE-HA12-SP3-Updates for sle-12-x86_64","enabled":true,"id":2221,"autorefresh":true,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-HA/12-SP3/x86_64/update/"},{"description":"SLE-HA12-SP3-Debuginfo-Updates for sle-12-x86_64","installer_updates":false,"name":"SLE-HA12-SP3-Debuginfo-Updates","distro_target":"sle-12-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-HA/12-SP3/x86_64/update_debug/","enabled":false,"id":2223},{"url":"https://updates.suse.com/SUSE/Products/SLE-HA/12-SP3/x86_64/product/","distro_target":"sle-12-x86_64","autorefresh":false,"id":2225,"enabled":true,"description":"SLE-HA12-SP3-Pool for sle-12-x86_64","installer_updates":false,"name":"SLE-HA12-SP3-Pool"},{"enabled":false,"id":2227,"autorefresh":false,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-HA/12-SP3/x86_64/product_debug/","name":"SLE-HA12-SP3-Debuginfo-Pool","installer_updates":false,"description":"SLE-HA12-SP3-Debuginfo-Pool for sle-12-x86_64"},{"description":"SLE-HA12-SP3-Source-Pool for sle-12-x86_64","name":"SLE-HA12-SP3-Source-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-HA/12-SP3/x86_64/product_source/","autorefresh":false,"distro_target":"sle-12-x86_64","id":2229,"enabled":false}],"predecessor_ids":[1245,1324,1361],"migration_extra":false,"friendly_name":"SUSE Linux Enterprise High Availability Extension 12 SP3 x86_64","release_type":null,"former_identifier":"sle-hae","name":"SUSE Linux Enterprise High Availability Extension","offline_predecessor_ids":[958,961,967,971,1256],"version":"12.3","recommended":false,"id":1432,"release_stage":"released","identifier":"sle-ha","extensions":[],"friendly_version":"12 SP3"},{"migration_extra":false,"friendly_name":"SUSE Linux Enterprise High Availability Extension 12 SP3 ppc64le","former_identifier":"sle-hae","release_type":null,"name":"SUSE Linux Enterprise High Availability Extension","offline_predecessor_ids":[],"version":"12.3","recommended":false,"identifier":"sle-ha","release_stage":"released","id":1433,"extensions":[],"friendly_version":"12 SP3","arch":"ppc64le","eula_url":"https://updates.suse.com/SUSE/Products/SLE-HA/12-SP3/ppc64le/product.license/","shortname":"SLEHA12-SP3","description":"SUSE Linux Enterprise High Availability Extension.","free":false,"cpe":"cpe:/o:suse:sle-ha:12:sp3","product_type":"extension","repositories":[{"id":2255,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-HA/12-SP3/ppc64le/update/","distro_target":"sle-12-ppc64le","autorefresh":true,"installer_updates":false,"name":"SLE-HA12-SP3-Updates","description":"SLE-HA12-SP3-Updates for sle-12-ppc64le"},{"installer_updates":false,"name":"SLE-HA12-SP3-Debuginfo-Updates","description":"SLE-HA12-SP3-Debuginfo-Updates for sle-12-ppc64le","id":2256,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-HA/12-SP3/ppc64le/update_debug/","distro_target":"sle-12-ppc64le","autorefresh":true},{"url":"https://updates.suse.com/SUSE/Products/SLE-HA/12-SP3/ppc64le/product/","autorefresh":false,"distro_target":"sle-12-ppc64le","id":2257,"enabled":true,"description":"SLE-HA12-SP3-Pool for sle-12-ppc64le","name":"SLE-HA12-SP3-Pool","installer_updates":false},{"name":"SLE-HA12-SP3-Debuginfo-Pool","installer_updates":false,"description":"SLE-HA12-SP3-Debuginfo-Pool for sle-12-ppc64le","id":2258,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-HA/12-SP3/ppc64le/product_debug/","autorefresh":false,"distro_target":"sle-12-ppc64le"},{"installer_updates":false,"name":"SLE-HA12-SP3-Source-Pool","description":"SLE-HA12-SP3-Source-Pool for sle-12-ppc64le","enabled":false,"id":2259,"distro_target":"sle-12-ppc64le","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-HA/12-SP3/ppc64le/product_source/"}],"online_predecessor_ids":[1420],"product_class":"SLE-HAE-PPC","predecessor_ids":[1420]},{"predecessor_ids":[1244,1336,1360],"repositories":[{"enabled":true,"id":2260,"autorefresh":true,"distro_target":"sle-12-s390x","url":"https://updates.suse.com/SUSE/Updates/SLE-HA/12-SP3/s390x/update/","name":"SLE-HA12-SP3-Updates","installer_updates":false,"description":"SLE-HA12-SP3-Updates for sle-12-s390x"},{"url":"https://updates.suse.com/SUSE/Updates/SLE-HA/12-SP3/s390x/update_debug/","distro_target":"sle-12-s390x","autorefresh":true,"id":2261,"enabled":false,"description":"SLE-HA12-SP3-Debuginfo-Updates for sle-12-s390x","installer_updates":false,"name":"SLE-HA12-SP3-Debuginfo-Updates"},{"description":"SLE-HA12-SP3-Pool for sle-12-s390x","name":"SLE-HA12-SP3-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-HA/12-SP3/s390x/product/","autorefresh":false,"distro_target":"sle-12-s390x","id":2262,"enabled":true},{"description":"SLE-HA12-SP3-Debuginfo-Pool for sle-12-s390x","installer_updates":false,"name":"SLE-HA12-SP3-Debuginfo-Pool","distro_target":"sle-12-s390x","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-HA/12-SP3/s390x/product_debug/","enabled":false,"id":2263},{"url":"https://updates.suse.com/SUSE/Products/SLE-HA/12-SP3/s390x/product_source/","autorefresh":false,"distro_target":"sle-12-s390x","id":2264,"enabled":false,"description":"SLE-HA12-SP3-Source-Pool for sle-12-s390x","name":"SLE-HA12-SP3-Source-Pool","installer_updates":false}],"online_predecessor_ids":[1244,1336,1360],"product_class":"SLE-HAE-Z","cpe":"cpe:/o:suse:sle-ha:12:sp3","product_type":"extension","description":"SUSE Linux Enterprise High Availability Extension.","shortname":"SLEHA12-SP3","free":false,"eula_url":"https://updates.suse.com/SUSE/Products/SLE-HA/12-SP3/s390x/product.license/","arch":"s390x","friendly_version":"12 SP3","extensions":[],"release_stage":"released","id":1434,"identifier":"sle-ha","recommended":false,"version":"12.3","name":"SUSE Linux Enterprise High Availability Extension","offline_predecessor_ids":[1080,1082,1084,1086,1257],"friendly_name":"SUSE Linux Enterprise High Availability Extension 12 SP3 s390x","migration_extra":false,"release_type":null,"former_identifier":"sle-hae"},{"extensions":[],"id":1435,"release_stage":"released","identifier":"sle-ha-geo","friendly_version":"12 SP3","offline_predecessor_ids":[1101,1107,1286],"name":"SUSE Linux Enterprise High Availability GEO Extension","release_type":null,"former_identifier":"sle-hae-geo","friendly_name":"SUSE Linux Enterprise High Availability GEO Extension 12 SP3 x86_64","migration_extra":false,"recommended":false,"version":"12.3","product_type":"extension","cpe":"cpe:/o:suse:sle-ha-geo:12:sp3","predecessor_ids":[1157,1337,1363],"online_predecessor_ids":[1157,1337,1363],"repositories":[{"autorefresh":true,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-HA-GEO/12-SP3/x86_64/update/","enabled":true,"id":2265,"description":"SLE-HA-GEO12-SP3-Updates for sle-12-x86_64","name":"SLE-HA-GEO12-SP3-Updates","installer_updates":false},{"description":"SLE-HA-GEO12-SP3-Debuginfo-Updates for sle-12-x86_64","name":"SLE-HA-GEO12-SP3-Debuginfo-Updates","installer_updates":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-HA-GEO/12-SP3/x86_64/update_debug/","autorefresh":true,"distro_target":"sle-12-x86_64","id":2266,"enabled":false},{"description":"SLE-HA-GEO12-SP3-Pool for sle-12-x86_64","installer_updates":false,"name":"SLE-HA-GEO12-SP3-Pool","distro_target":"sle-12-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-HA-GEO/12-SP3/x86_64/product/","enabled":true,"id":2267},{"enabled":false,"id":2268,"distro_target":"sle-12-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-HA-GEO/12-SP3/x86_64/product_debug/","installer_updates":false,"name":"SLE-HA-GEO12-SP3-Debuginfo-Pool","description":"SLE-HA-GEO12-SP3-Debuginfo-Pool for sle-12-x86_64"},{"enabled":false,"id":2269,"distro_target":"sle-12-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-HA-GEO/12-SP3/x86_64/product_source/","installer_updates":false,"name":"SLE-HA-GEO12-SP3-Source-Pool","description":"SLE-HA-GEO12-SP3-Source-Pool for sle-12-x86_64"}],"product_class":"SLE-HAE-GEO","eula_url":"https://updates.suse.com/SUSE/Products/SLE-HA-GEO/12-SP3/x86_64/product.license/","arch":"x86_64","free":false,"description":"SUSE Linux Enterprise High Availability Geographical Cluster Extension","shortname":"SLEHAGEO12-SP3"},{"description":"SUSE Linux Enterprise High Availability Geographical Cluster Extension","shortname":"SLEHAGEO12-SP3","free":false,"arch":"s390x","eula_url":"https://updates.suse.com/SUSE/Products/SLE-HA-GEO/12-SP3/s390x/product.license/","online_predecessor_ids":[1156,1345,1362],"repositories":[{"enabled":true,"id":2270,"distro_target":"sle-12-s390x","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-HA-GEO/12-SP3/s390x/update/","installer_updates":false,"name":"SLE-HA-GEO12-SP3-Updates","description":"SLE-HA-GEO12-SP3-Updates for sle-12-s390x"},{"url":"https://updates.suse.com/SUSE/Updates/SLE-HA-GEO/12-SP3/s390x/update_debug/","distro_target":"sle-12-s390x","autorefresh":true,"id":2271,"enabled":false,"description":"SLE-HA-GEO12-SP3-Debuginfo-Updates for sle-12-s390x","installer_updates":false,"name":"SLE-HA-GEO12-SP3-Debuginfo-Updates"},{"url":"https://updates.suse.com/SUSE/Products/SLE-HA-GEO/12-SP3/s390x/product/","autorefresh":false,"distro_target":"sle-12-s390x","id":2272,"enabled":true,"description":"SLE-HA-GEO12-SP3-Pool for sle-12-s390x","name":"SLE-HA-GEO12-SP3-Pool","installer_updates":false},{"name":"SLE-HA-GEO12-SP3-Debuginfo-Pool","installer_updates":false,"description":"SLE-HA-GEO12-SP3-Debuginfo-Pool for sle-12-s390x","id":2273,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-HA-GEO/12-SP3/s390x/product_debug/","autorefresh":false,"distro_target":"sle-12-s390x"},{"enabled":false,"id":2274,"autorefresh":false,"distro_target":"sle-12-s390x","url":"https://updates.suse.com/SUSE/Products/SLE-HA-GEO/12-SP3/s390x/product_source/","name":"SLE-HA-GEO12-SP3-Source-Pool","installer_updates":false,"description":"SLE-HA-GEO12-SP3-Source-Pool for sle-12-s390x"}],"product_class":"SLE-HAE-GEO","predecessor_ids":[1156,1345,1362],"cpe":"cpe:/o:suse:sle-ha-geo:12:sp3","product_type":"extension","version":"12.3","recommended":false,"friendly_name":"SUSE Linux Enterprise High Availability GEO Extension 12 SP3 s390x","migration_extra":false,"release_type":null,"former_identifier":"sle-hae-geo","name":"SUSE Linux Enterprise High Availability GEO Extension","offline_predecessor_ids":[1109,1110,1287],"friendly_version":"12 SP3","release_stage":"released","id":1436,"identifier":"sle-ha-geo","extensions":[]},{"friendly_version":"12 SP1","identifier":"SLES_SAP","release_stage":"released","id":1437,"extensions":[{"cpe":"cpe:/o:suse:sle-module-legacy:12","product_type":"module","predecessor_ids":[],"online_predecessor_ids":[],"product_class":"MODULE","repositories":[{"name":"SLE-Module-Legacy12-Updates","installer_updates":false,"description":"SLE-Module-Legacy12-Updates for sle-12-ppc64le","id":1668,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/12/ppc64le/update/","autorefresh":true,"distro_target":"sle-12-ppc64le"},{"id":1669,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/12/ppc64le/update_debug/","autorefresh":true,"distro_target":"sle-12-ppc64le","name":"SLE-Module-Legacy12-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-Legacy12-Debuginfo-Updates for sle-12-ppc64le"},{"description":"SLE-Module-Legacy12-Pool for sle-12-ppc64le","installer_updates":false,"name":"SLE-Module-Legacy12-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/12/ppc64le/product/","distro_target":"sle-12-ppc64le","autorefresh":false,"id":1670,"enabled":true},{"description":"SLE-Module-Legacy12-Debuginfo-Pool for sle-12-ppc64le","installer_updates":false,"name":"SLE-Module-Legacy12-Debuginfo-Pool","distro_target":"sle-12-ppc64le","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/12/ppc64le/product_debug/","enabled":false,"id":1671},{"installer_updates":false,"name":"SLE-Module-Legacy12-Source-Pool","description":"SLE-Module-Legacy12-Source-Pool for sle-12-ppc64le","id":1987,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/12/ppc64le/product_source/","distro_target":"sle-12-ppc64le","autorefresh":false}],"eula_url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/12/ppc64le/product.license/","arch":"ppc64le","description":"

The Legacy Module helps you migrating applications from SUSE Linux Enterprise 10 and 11 and other systems to SUSE Linux Enterprise 12, by providing packages which are discontinued on SUSE Linux Enterprise Server, such as: sendmail, syslog-ng, IBM Java6, and a number of libraries (for example openssl-0.9.8).

Access to the Legacy Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself. Packages in the this module are usually supported for at most three years. Support for Sendmail and IBM Java 6 will end in September 2017 the latest.

","shortname":"Legacy-Module","free":true,"extensions":[],"id":1148,"release_stage":"released","identifier":"sle-module-legacy","friendly_version":"12","name":"Legacy Module","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"Legacy Module 12 ppc64le","former_identifier":"sle-module-legacy","release_type":null,"recommended":false,"version":"12"},{"description":"

The SUSE Linux Enterprise Web and Scripting Module delivers a comprehensive suite of scripting languages, frameworks, and related tools helping developers and systems administrators accelerate the creation of stable, modern web applications, using dynamic languages, such as PHP, Ruby on Rails, and Python.

Access to the Web and Scripting Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself: Package versions in the this module are usually supported for at most three years. We are planning to release more recent versions on a schedule of approximately 18 month; the exact dates may differ per package.

","shortname":"Web-and-Scripting-Module","free":true,"arch":"ppc64le","eula_url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/12/ppc64le/product.license/","online_predecessor_ids":[],"product_class":"MODULE","repositories":[{"enabled":true,"id":1680,"distro_target":"sle-12-ppc64le","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/12/ppc64le/update/","installer_updates":false,"name":"SLE-Module-Web-Scripting12-Updates","description":"SLE-Module-Web-Scripting12-Updates for sle-12-ppc64le"},{"distro_target":"sle-12-ppc64le","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/12/ppc64le/update_debug/","enabled":false,"id":1681,"description":"SLE-Module-Web-Scripting12-Debuginfo-Updates for sle-12-ppc64le","installer_updates":false,"name":"SLE-Module-Web-Scripting12-Debuginfo-Updates"},{"description":"SLE-Module-Web-Scripting12-Pool for sle-12-ppc64le","name":"SLE-Module-Web-Scripting12-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-12-ppc64le","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/12/ppc64le/product/","enabled":true,"id":1682},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/12/ppc64le/product_debug/","distro_target":"sle-12-ppc64le","autorefresh":false,"id":1683,"enabled":false,"description":"SLE-Module-Web-Scripting12-Debuginfo-Pool for sle-12-ppc64le","installer_updates":false,"name":"SLE-Module-Web-Scripting12-Debuginfo-Pool"},{"description":"SLE-Module-Web-Scripting12-Source-Pool for sle-12-ppc64le","installer_updates":false,"name":"SLE-Module-Web-Scripting12-Source-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/12/ppc64le/product_source/","distro_target":"sle-12-ppc64le","autorefresh":false,"id":1990,"enabled":false}],"predecessor_ids":[],"cpe":"cpe:/o:suse:sle-module-web-scripting:12","product_type":"module","version":"12","recommended":false,"friendly_name":"Web and Scripting Module 12 ppc64le","migration_extra":false,"release_type":null,"former_identifier":"sle-module-web-scripting","name":"Web and Scripting Module","offline_predecessor_ids":[],"friendly_version":"12","release_stage":"released","id":1151,"identifier":"sle-module-web-scripting","extensions":[]},{"extensions":[],"release_stage":"released","identifier":"sle-module-public-cloud","id":1218,"friendly_version":"12","name":"Public Cloud Module","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"Public Cloud Module 12 ppc64le","release_type":null,"former_identifier":"sle-module-public-cloud","recommended":false,"version":"12","cpe":"cpe:/o:suse:sle-module-public-cloud:12","product_type":"module","predecessor_ids":[],"repositories":[{"installer_updates":false,"name":"SLE-Module-Public-Cloud12-Updates","description":"SLE-Module-Public-Cloud12-Updates for sle-12-ppc64le","id":1692,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/12/ppc64le/update/","distro_target":"sle-12-ppc64le","autorefresh":true},{"autorefresh":true,"distro_target":"sle-12-ppc64le","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/12/ppc64le/update_debug/","enabled":false,"id":1693,"description":"SLE-Module-Public-Cloud12-Debuginfo-Updates for sle-12-ppc64le","name":"SLE-Module-Public-Cloud12-Debuginfo-Updates","installer_updates":false},{"id":1694,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/12/ppc64le/product/","distro_target":"sle-12-ppc64le","autorefresh":false,"installer_updates":false,"name":"SLE-Module-Public-Cloud12-Pool","description":"SLE-Module-Public-Cloud12-Pool for sle-12-ppc64le"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/12/ppc64le/product_debug/","autorefresh":false,"distro_target":"sle-12-ppc64le","id":1695,"enabled":false,"description":"SLE-Module-Public-Cloud12-Debuginfo-Pool for sle-12-ppc64le","name":"SLE-Module-Public-Cloud12-Debuginfo-Pool","installer_updates":false},{"description":"SLE-Module-Public-Cloud12-Source-Pool for sle-12-ppc64le","installer_updates":false,"name":"SLE-Module-Public-Cloud12-Source-Pool","distro_target":"sle-12-ppc64le","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/12/ppc64le/product_source/","enabled":false,"id":1993}],"online_predecessor_ids":[],"product_class":"MODULE","eula_url":"","arch":"ppc64le","shortname":"Public-Cloud-Module","description":"

The Public Cloud Module is a collection of tools that enables you to create and manage cloud images from the commandline on SUSE Linux Enterprise Server. When building your own images with KIWI or SUSE Studio, initialization code specific to the target cloud is included in that image.

Access to the Public Cloud Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself; please check the Release Notes for further details.

","free":true},{"name":"IBM DLPAR SDK for SLE","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"IBM DLPAR SDK for SLE 12 ppc64le","release_type":null,"former_identifier":"ibm-dlpar-sdk","recommended":false,"version":"12","extensions":[],"id":1249,"release_stage":"released","identifier":"ibm-dlpar-sdk","friendly_version":"12","eula_url":"","arch":"ppc64le","shortname":"IBMDLPS12","description":"IBM DLPAR SDK for SLE 12","free":true,"cpe":"cpe:/o:suse:ibm-dlpar-sdk:12","product_type":"extension","predecessor_ids":[],"online_predecessor_ids":[],"repositories":[{"description":"IBM-DLPAR-SDK","installer_updates":false,"name":"IBM-DLPAR-SDK","distro_target":null,"autorefresh":true,"url":"https://public.dhe.ibm.com/software/server/POWER/Linux/toolchain/at/suse/SLES_12/","enabled":true,"id":4429}],"product_class":"SLES-PPC"},{"recommended":false,"version":"12","name":"IBM DLPAR Utils for SLE","offline_predecessor_ids":[],"friendly_name":"IBM DLPAR Utils for SLE 12 ppc64le","migration_extra":false,"release_type":null,"former_identifier":"ibm-dlpar-utils","friendly_version":"12","extensions":[],"id":1250,"release_stage":"released","identifier":"ibm-dlpar-utils","shortname":"IBMDLPU12","description":"IBM DLPAR Utils for SLE 12","free":true,"eula_url":"https://public.dhe.ibm.com/software/server/POWER/Linux/yum/OSS/SLES/12/ppc64le.license/","arch":"ppc64le","predecessor_ids":[],"online_predecessor_ids":[],"product_class":"SLES-PPC","repositories":[{"description":"IBM-DLPAR-utils","name":"IBM-DLPAR-utils","installer_updates":false,"autorefresh":true,"distro_target":null,"url":"https://public.dhe.ibm.com/software/server/POWER/Linux/yum/OSS/SLES/12/ppc64le/","enabled":true,"id":6216}],"cpe":"cpe:/o:suse:ibm-dlpar-utils:12","product_type":"extension"},{"product_type":"module","cpe":"cpe:/o:suse:sle-module-adv-systems-management:12","repositories":[{"id":1762,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Adv-Systems-Management/12/ppc64le/update/","autorefresh":true,"distro_target":"sle-12-ppc64le","name":"SLE-Module-Adv-Systems-Management12-Updates","installer_updates":false,"description":"SLE-Module-Adv-Systems-Management12-Updates for sle-12-ppc64le"},{"distro_target":"sle-12-ppc64le","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Adv-Systems-Management/12/ppc64le/update_debug/","enabled":false,"id":1763,"description":"SLE-Module-Adv-Systems-Management12-Debuginfo-Updates for sle-12-ppc64le","installer_updates":false,"name":"SLE-Module-Adv-Systems-Management12-Debuginfo-Updates"},{"description":"SLE-Module-Adv-Systems-Management12-Pool for sle-12-ppc64le","name":"SLE-Module-Adv-Systems-Management12-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-12-ppc64le","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Adv-Systems-Management/12/ppc64le/product/","enabled":true,"id":1764},{"enabled":false,"id":1765,"autorefresh":false,"distro_target":"sle-12-ppc64le","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Adv-Systems-Management/12/ppc64le/product_debug/","name":"SLE-Module-Adv-Systems-Management12-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-Adv-Systems-Management12-Debuginfo-Pool for sle-12-ppc64le"},{"enabled":false,"id":1996,"autorefresh":false,"distro_target":"sle-12-ppc64le","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Adv-Systems-Management/12/ppc64le/product_source/","name":"SLE-Module-Adv-Systems-Management12-Source-Pool","installer_updates":false,"description":"SLE-Module-Adv-Systems-Management12-Source-Pool for sle-12-ppc64le"}],"online_predecessor_ids":[],"product_class":"MODULE","predecessor_ids":[],"arch":"ppc64le","eula_url":"","free":true,"description":"

This Module contains current versions of the popular configuration management frameworks Puppet and CFEngine as well as the new systems management toolbox called machinery.

The machinery tool will be frequently updated and is SUSE's upcoming systems management toolbox for inspecting and validating systems remotely, storing their system description and creating new systems to deploy them in datacenters and clouds.

","shortname":"Adv-Sys-Mgmt-Module","release_stage":"released","identifier":"sle-module-adv-systems-management","id":1294,"extensions":[],"friendly_version":"12","release_type":null,"former_identifier":"sle-module-adv-systems-management","friendly_name":"Advanced Systems Management Module 12 ppc64le","migration_extra":false,"offline_predecessor_ids":[],"name":"Advanced Systems Management Module","version":"12","recommended":false},{"eula_url":"","arch":"ppc64le","shortname":"Toolchain-Module","description":"Via this Module you will have access to a more recent GCC and Toolchain in addition to the default compiler of SUSE Linux Enterprise. Access to the Toolchain Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself. Please check the Release Notes for further details.","free":true,"cpe":"cpe:/o:suse:sle-module-toolchain:12","product_type":"module","predecessor_ids":[],"online_predecessor_ids":[],"repositories":[{"installer_updates":false,"name":"SLE-Module-Toolchain12-Updates","description":"SLE-Module-Toolchain12-Updates for sle-12-ppc64le","id":1895,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Toolchain/12/ppc64le/update/","distro_target":"sle-12-ppc64le","autorefresh":true},{"name":"SLE-Module-Toolchain12-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-Toolchain12-Debuginfo-Updates for sle-12-ppc64le","id":1896,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Toolchain/12/ppc64le/update_debug/","autorefresh":true,"distro_target":"sle-12-ppc64le"},{"name":"SLE-Module-Toolchain12-Pool","installer_updates":false,"description":"SLE-Module-Toolchain12-Pool for sle-12-ppc64le","enabled":true,"id":1897,"autorefresh":false,"distro_target":"sle-12-ppc64le","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Toolchain/12/ppc64le/product/"},{"description":"SLE-Module-Toolchain12-Debuginfo-Pool for sle-12-ppc64le","name":"SLE-Module-Toolchain12-Debuginfo-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-12-ppc64le","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Toolchain/12/ppc64le/product_debug/","enabled":false,"id":1898}],"product_class":"MODULE","name":"Toolchain Module","offline_predecessor_ids":[],"friendly_name":"Toolchain Module 12 ppc64le","migration_extra":false,"release_type":null,"former_identifier":"sle-module-toolchain","recommended":false,"version":"12","extensions":[],"id":1339,"release_stage":"released","identifier":"sle-module-toolchain","friendly_version":"12"},{"friendly_version":"12 SP1","extensions":[],"identifier":"sle-sdk","release_stage":"released","id":1343,"recommended":false,"version":"12.1","name":"SUSE Linux Enterprise Software Development Kit","offline_predecessor_ids":[],"friendly_name":"SUSE Linux Enterprise Software Development Kit 12 SP1 ppc64le","migration_extra":false,"release_type":null,"former_identifier":"sle-sdk","predecessor_ids":[1145],"product_class":"SLE-SDK","online_predecessor_ids":[1145],"repositories":[{"id":1922,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-SDK/12-SP1/ppc64le/update/","autorefresh":true,"distro_target":"sle-12-ppc64le","name":"SLE-SDK12-SP1-Updates","installer_updates":false,"description":"SLE-SDK12-SP1-Updates for sle-12-ppc64le"},{"description":"SLE-SDK12-SP1-Debuginfo-Updates for sle-12-ppc64le","installer_updates":false,"name":"SLE-SDK12-SP1-Debuginfo-Updates","url":"https://updates.suse.com/SUSE/Updates/SLE-SDK/12-SP1/ppc64le/update_debug/","distro_target":"sle-12-ppc64le","autorefresh":true,"id":1923,"enabled":false},{"url":"https://updates.suse.com/SUSE/Products/SLE-SDK/12-SP1/ppc64le/product/","distro_target":"sle-12-ppc64le","autorefresh":false,"id":1924,"enabled":true,"description":"SLE-SDK12-SP1-Pool for sle-12-ppc64le","installer_updates":false,"name":"SLE-SDK12-SP1-Pool"},{"enabled":false,"id":1925,"autorefresh":false,"distro_target":"sle-12-ppc64le","url":"https://updates.suse.com/SUSE/Products/SLE-SDK/12-SP1/ppc64le/product_debug/","name":"SLE-SDK12-SP1-Debuginfo-Pool","installer_updates":false,"description":"SLE-SDK12-SP1-Debuginfo-Pool for sle-12-ppc64le"},{"enabled":false,"id":1926,"autorefresh":false,"distro_target":"sle-12-ppc64le","url":"https://updates.suse.com/SUSE/Products/SLE-SDK/12-SP1/ppc64le/product_source/","name":"SLE-SDK12-SP1-Source-Pool","installer_updates":false,"description":"SLE-SDK12-SP1-Source-Pool for sle-12-ppc64le"}],"cpe":"cpe:/o:suse:sle-sdk:12:sp1","product_type":"extension","shortname":"SDK12-SP1","description":"

SUSE Linux Enterprise Software Development Kit is the Software Development Kit for the family of SUSE Linux Enterprise products. It is a free of charge extension for partners and customers working with SUSE Linux Enterprise Server and Desktop and derived products.

Packages on the SDK are delivered without L3 support; maintenance updates will be done for critical security and critical non-security issues, and where needed to remain in sync with packages delivered in the SUSE Linux Enterprise Server and Desktop products.

Packages to rebuild SUSE Linux Enterprise Server are not part of the SUSE Linux Enterprise Software Development Kit.

","free":true,"eula_url":"https://updates.suse.com/SUSE/Products/SLE-SDK/12-SP1/ppc64le/product.license/","arch":"ppc64le"},{"id":1353,"release_stage":"released","identifier":"sle-module-containers","extensions":[],"friendly_version":"12","release_type":null,"former_identifier":"sle-module-containers","migration_extra":false,"friendly_name":"Containers Module 12 ppc64le","offline_predecessor_ids":[],"name":"Containers Module","version":"12","recommended":false,"product_type":"module","cpe":"cpe:/o:suse:sle-module-containers:12","product_class":"MODULE","online_predecessor_ids":[],"repositories":[{"description":"SLE-Module-Containers12-Updates for sle-12-ppc64le","name":"SLE-Module-Containers12-Updates","installer_updates":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/12/ppc64le/update/","autorefresh":true,"distro_target":"sle-12-ppc64le","id":1972,"enabled":true},{"enabled":false,"id":1973,"distro_target":"sle-12-ppc64le","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/12/ppc64le/update_debug/","installer_updates":false,"name":"SLE-Module-Containers12-Debuginfo-Updates","description":"SLE-Module-Containers12-Debuginfo-Updates for sle-12-ppc64le"},{"enabled":true,"id":1974,"distro_target":"sle-12-ppc64le","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/12/ppc64le/product/","installer_updates":false,"name":"SLE-Module-Containers12-Pool","description":"SLE-Module-Containers12-Pool for sle-12-ppc64le"},{"installer_updates":false,"name":"SLE-Module-Containers12-Debuginfo-Pool","description":"SLE-Module-Containers12-Debuginfo-Pool for sle-12-ppc64le","id":1975,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/12/ppc64le/product_debug/","distro_target":"sle-12-ppc64le","autorefresh":false},{"description":"SLE-Module-Containers12-Source-Pool for sle-12-ppc64le","installer_updates":false,"name":"SLE-Module-Containers12-Source-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/12/ppc64le/product_source/","distro_target":"sle-12-ppc64le","autorefresh":false,"id":1976,"enabled":false}],"predecessor_ids":[],"arch":"ppc64le","eula_url":"","free":true,"shortname":"Containers-Module","description":"

This Module contains several packages revolving around containers and related tools.

"},{"extensions":[],"release_stage":"released","identifier":"PackageHub","id":1478,"friendly_version":"12 SP1","offline_predecessor_ids":[],"name":"SUSE Package Hub","release_type":null,"former_identifier":"PackageHub","migration_extra":false,"friendly_name":"SUSE Package Hub 12 SP1 ppc64le","recommended":false,"version":"12.1","product_type":"extension","cpe":"cpe:/o:suse:packagehub:12:sp1","predecessor_ids":[1475],"online_predecessor_ids":[1475],"product_class":"SLES-PPC","repositories":[{"description":"SUSE-PackageHub-12-SP1-Standard-Pool for sle-12-ppc64le","name":"SUSE-PackageHub-12-SP1-Standard-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-12-ppc64le","url":"https://updates.suse.com/SUSE/Backports/SLE-12-SP1_ppc64le/standard/","enabled":true,"id":2342},{"description":"SUSE-PackageHub-12-SP1-Debuginfo for sle-12-ppc64le","installer_updates":false,"name":"SUSE-PackageHub-12-SP1-Debuginfo","url":"https://updates.suse.com/SUSE/Backports/SLE-12-SP1_ppc64le/standard_debug/","distro_target":"sle-12-ppc64le","autorefresh":true,"id":2343,"enabled":false},{"distro_target":"sle-12-ppc64le","autorefresh":false,"url":"https://updates.suse.com/SUSE/Backports/SLE-12-SP1_ppc64le/product/","enabled":true,"id":2344,"description":"SUSE-PackageHub-12-SP1-Pool for sle-12-ppc64le","installer_updates":false,"name":"SUSE-PackageHub-12-SP1-Pool"}],"eula_url":"","arch":"ppc64le","free":true,"shortname":"SUSE-PackageHub-12-SP1","description":"SUSE Package Hub is a free of charge extension providing access to community maintained packages built to run on SUSE Linux Enterprise Server. Built from the same sources used in the openSUSE distributions, these quality packages provide additional software to what is found in the SUSE Linux Enterprise Server product. Packages from the Package Hub are delivered without L3 support from SUSE. General updates and fixes to the packages in SUSE Package Hub are provided by the openSUSE community based on their discretion though SUSE will monitor and ensure that any known critical security issues will be addressed. Packages in the Package Hub are approved by SUSE for use with SUSE Linux Enterprise Server 12 and to not interfere with the supportability of SUSE Linux Enterprise Server it's modules and extensions. For more information about SUSE Package Hub please visit https://packagehub.suse.com."}],"version":"12.1","recommended":false,"friendly_name":"SUSE Linux Enterprise Server for SAP Applications 12 SP1 ppc64le","migration_extra":false,"former_identifier":"SUSE_SLES_SAP","release_type":null,"name":"SUSE Linux Enterprise Server for SAP Applications","offline_predecessor_ids":[],"product_class":"AiO-PPC","online_predecessor_ids":[],"repositories":[{"name":"SLES12-SP1-Updates","installer_updates":false,"description":"SLES12-SP1-Updates for sle-12-ppc64le","id":1875,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-SP1/ppc64le/update/","autorefresh":true,"distro_target":"sle-12-ppc64le"},{"name":"SLES12-SP1-Debuginfo-Updates","installer_updates":false,"description":"SLES12-SP1-Debuginfo-Updates for sle-12-ppc64le","enabled":false,"id":1876,"autorefresh":true,"distro_target":"sle-12-ppc64le","url":"https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-SP1/ppc64le/update_debug/"},{"id":1877,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-SERVER/12-SP1/ppc64le/product/","autorefresh":false,"distro_target":"sle-12-ppc64le","name":"SLES12-SP1-Pool","installer_updates":false,"description":"SLES12-SP1-Pool for sle-12-ppc64le"},{"enabled":false,"id":1878,"autorefresh":false,"distro_target":"sle-12-ppc64le","url":"https://updates.suse.com/SUSE/Products/SLE-SERVER/12-SP1/ppc64le/product_debug/","name":"SLES12-SP1-Debuginfo-Pool","installer_updates":false,"description":"SLES12-SP1-Debuginfo-Pool for sle-12-ppc64le"},{"id":1908,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-SERVER/12-SP1/ppc64le/product_source/","distro_target":"sle-12-ppc64le","autorefresh":false,"installer_updates":false,"name":"SLES12-SP1-Source-Pool","description":"SLES12-SP1-Source-Pool for sle-12-ppc64le"},{"autorefresh":true,"distro_target":"sle-12-ppc64le","url":"https://updates.suse.com/SUSE/Updates/SLE-SAP/12-SP1/ppc64le/update/","enabled":true,"id":2275,"description":"SLE-12-SP1-SAP-Updates for sle-12-ppc64le","name":"SLE-12-SP1-SAP-Updates","installer_updates":false},{"description":"SLE-HA12-SP1-Updates for sle-12-ppc64le","name":"SLE-HA12-SP1-Updates","installer_updates":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-HA/12-SP1/ppc64le/update/","autorefresh":true,"distro_target":"sle-12-ppc64le","id":2276,"enabled":true},{"installer_updates":false,"name":"SLE-12-SP1-SAP-Debuginfo-Updates","description":"SLE-12-SP1-SAP-Debuginfo-Updates for sle-12-ppc64le","id":2277,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-SAP/12-SP1/ppc64le/update_debug/","distro_target":"sle-12-ppc64le","autorefresh":true},{"url":"https://updates.suse.com/SUSE/Updates/SLE-HA/12-SP1/ppc64le/update_debug/","autorefresh":true,"distro_target":"sle-12-ppc64le","id":2278,"enabled":false,"description":"SLE-HA12-SP1-Debuginfo-Updates for sle-12-ppc64le","name":"SLE-HA12-SP1-Debuginfo-Updates","installer_updates":false},{"enabled":true,"id":2279,"distro_target":"sle-12-ppc64le","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-SAP/12-SP1/ppc64le/product/","installer_updates":false,"name":"SLE12-SP1-SAP-Pool","description":"SLE12-SP1-SAP-Pool for sle-12-ppc64le"},{"description":"SLE-HA12-SP1-Pool for sle-12-ppc64le","installer_updates":false,"name":"SLE-HA12-SP1-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-HA/12-SP1/ppc64le/product/","distro_target":"sle-12-ppc64le","autorefresh":false,"id":2280,"enabled":true},{"enabled":false,"id":2281,"autorefresh":false,"distro_target":"sle-12-ppc64le","url":"https://updates.suse.com/SUSE/Products/SLE-SAP/12-SP1/ppc64le/product_debug/","name":"SLE12-SP1-SAP-Debuginfo-Pool","installer_updates":false,"description":"SLE12-SP1-SAP-Debuginfo-Pool for sle-12-ppc64le"},{"name":"SLE-HA12-SP1-Debuginfo-Pool","installer_updates":false,"description":"SLE-HA12-SP1-Debuginfo-Pool for sle-12-ppc64le","id":2282,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-HA/12-SP1/ppc64le/product_debug/","autorefresh":false,"distro_target":"sle-12-ppc64le"},{"id":2283,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-SAP/12-SP1/ppc64le/product_source/","autorefresh":false,"distro_target":"sle-12-ppc64le","name":"SLE12-SP1-SAP-Source-Pool","installer_updates":false,"description":"SLE12-SP1-SAP-Source-Pool for sle-12-ppc64le"},{"distro_target":"sle-12-ppc64le","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-HA/12-SP1/ppc64le/product_source/","enabled":false,"id":2284,"description":"SLE-HA12-SP1-Source-Pool for sle-12-ppc64le","installer_updates":false,"name":"SLE-HA12-SP1-Source-Pool"}],"predecessor_ids":[],"cpe":"cpe:/o:suse:sles_sap:12:sp1","product_type":"base","description":"SUSE LINUX Enterprise Server 12 SP1 for SAP Applications","shortname":"SLE-12-SP1-SAP","free":false,"arch":"ppc64le","eula_url":"https://updates.suse.com/SUSE/Products/SLE-SERVER/12-SP1/ppc64le/product.license/"},{"product_type":"extension","cpe":"cpe:/o:suse:suse-linux-enterprise-rt:12:sp2","predecessor_ids":[1350],"online_predecessor_ids":[1350],"repositories":[{"name":"SLE-RT12-SP2-Updates","installer_updates":false,"description":"SLE-RT12-SP2-Updates for sle-12-x86_64","enabled":true,"id":2285,"autorefresh":true,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-RT/12-SP2/x86_64/update/"},{"name":"SLE-RT12-SP2-Debuginfo-Updates","installer_updates":false,"description":"SLE-RT12-SP2-Debuginfo-Updates for sle-12-x86_64","enabled":false,"id":2286,"autorefresh":true,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-RT/12-SP2/x86_64/update_debug/"},{"name":"SLE-RT12-SP2-Pool","installer_updates":false,"description":"SLE-RT12-SP2-Pool for sle-12-x86_64","id":2287,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-RT/12-SP2/x86_64/product/","autorefresh":false,"distro_target":"sle-12-x86_64"},{"distro_target":"sle-12-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-RT/12-SP2/x86_64/product_debug/","enabled":false,"id":2288,"description":"SLE-RT12-SP2-Debuginfo-Pool for sle-12-x86_64","installer_updates":false,"name":"SLE-RT12-SP2-Debuginfo-Pool"}],"product_class":"SUSE_RT","eula_url":"https://updates.suse.com/SUSE/Products/SLE-RT/12-SP2/x86_64/product.license/","arch":"x86_64","free":false,"shortname":"SLERT12 SP2","description":"SUSE Linux Enterprise Real Time 12 SP2 is a fully supported, real time operating system, specifically engineered to increase the predictability and reliability of your time sensitive mission critical applications, and lower costs.","extensions":[],"identifier":"SUSE-Linux-Enterprise-RT","release_stage":"released","id":1438,"friendly_version":"12 SP2","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Real Time","release_type":null,"former_identifier":"SUSE-Linux-Enterprise-RT","friendly_name":"SUSE Linux Enterprise Real Time 12 SP2 x86_64","migration_extra":false,"recommended":false,"version":"12.2"},{"online_predecessor_ids":[],"repositories":[{"autorefresh":true,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-POS/12-SP2/x86_64/update/","enabled":true,"id":2289,"description":"SLE-POS12-SP2-Updates for sle-12-x86_64","name":"SLE-POS12-SP2-Updates","installer_updates":false},{"name":"SLE-POS12-SP2-Debuginfo-Updates","installer_updates":false,"description":"SLE-POS12-SP2-Debuginfo-Updates for sle-12-x86_64","id":2290,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-POS/12-SP2/x86_64/update_debug/","autorefresh":true,"distro_target":"sle-12-x86_64"},{"description":"SLE-POS12-SP2-Pool for sle-12-x86_64","name":"SLE-POS12-SP2-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-POS/12-SP2/x86_64/product/","autorefresh":false,"distro_target":"sle-12-x86_64","id":2291,"enabled":true},{"enabled":false,"id":2292,"distro_target":"sle-12-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-POS/12-SP2/x86_64/product_debug/","installer_updates":false,"name":"SLE-POS12-SP2-Debuginfo-Pool","description":"SLE-POS12-SP2-Debuginfo-Pool for sle-12-x86_64"},{"enabled":false,"id":2293,"autorefresh":false,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-POS/12-SP2/x86_64/product_source/","name":"SLE-POS12-SP2-Source-Pool","installer_updates":false,"description":"SLE-POS12-SP2-Source-Pool for sle-12-x86_64"},{"id":3130,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-POS/12-SP2-CLIENT/x86_64/update/","distro_target":"sle-12-x86_64","autorefresh":true,"installer_updates":false,"name":"SLE-POS12-SP2-CLIENT-Updates","description":"SLE-POS12-SP2-CLIENT-Updates for sle-12-x86_64"},{"enabled":false,"id":3131,"distro_target":"sle-12-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-POS/12-SP2-CLIENT/x86_64/update_debug/","installer_updates":false,"name":"SLE-POS12-SP2-CLIENT-Debuginfo-Updates","description":"SLE-POS12-SP2-CLIENT-Debuginfo-Updates for sle-12-x86_64"}],"product_class":"10040","predecessor_ids":[],"product_type":"extension","cpe":"cpe:/o:suse:sle-pos:12:sp2","free":false,"description":"SUSE Linux Enterprise Point of Service Image Server","shortname":"SLEPOS12","arch":"x86_64","eula_url":"https://updates.suse.com/SUSE/Products/SLE-POS/12-SP2/x86_64/product.license/","friendly_version":"12 SP2","identifier":"sle-pos","release_stage":"released","id":1439,"extensions":[],"version":"12.2","recommended":false,"release_type":null,"former_identifier":"sle-pos","friendly_name":"SUSE Linux Enterprise Point of Service Image Server 12 SP2 x86_64","migration_extra":false,"offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Point of Service Image Server"},{"eula_url":"https://updates.suse.com/SUSE/Products/SLE-Module-HPC/12/x86_64/product.license/","arch":"x86_64","free":true,"shortname":"HPC-Module","description":"The SUSE Linux Enterprise Server High Performance Computing (HPC) module delivers specific tools commonly used for high performance, numerically intensive workloads. SUSE packages these tools in the SLES HPC Module to provide greater flexibility to deliver new versions or new tools more rapidly than the standard SUSE Linux Enterprise lifecycle would permit. Packages in this module are general supported till a newer version of the package is released or the package is dropped from the module.","product_type":"module","cpe":"cpe:/o:suse:sle-module-hpc:12","predecessor_ids":[],"online_predecessor_ids":[],"repositories":[{"enabled":true,"id":2294,"distro_target":"sle-12-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-HPC/12/x86_64/update/","installer_updates":false,"name":"SLE-Module-HPC12-Updates","description":"SLE-Module-HPC12-Updates for sle-12-x86_64"},{"enabled":false,"id":2295,"distro_target":"sle-12-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-HPC/12/x86_64/update_debug/","installer_updates":false,"name":"SLE-Module-HPC12-Debuginfo-Updates","description":"SLE-Module-HPC12-Debuginfo-Updates for sle-12-x86_64"},{"installer_updates":false,"name":"SLE-Module-HPC12-Pool","description":"SLE-Module-HPC12-Pool for sle-12-x86_64","id":2296,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-HPC/12/x86_64/product/","distro_target":"sle-12-x86_64","autorefresh":false},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-HPC/12/x86_64/product_debug/","distro_target":"sle-12-x86_64","autorefresh":false,"id":2297,"enabled":false,"description":"SLE-Module-HPC12-Debuginfo-Pool for sle-12-x86_64","installer_updates":false,"name":"SLE-Module-HPC12-Debuginfo-Pool"},{"description":"SLE-Module-HPC12-Source-Pool for sle-12-x86_64","installer_updates":false,"name":"SLE-Module-HPC12-Source-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-HPC/12/x86_64/product_source/","distro_target":"sle-12-x86_64","autorefresh":false,"id":2298,"enabled":false}],"product_class":"MODULE","offline_predecessor_ids":[],"name":"HPC Module","release_type":null,"former_identifier":"sle-module-hpc","friendly_name":"HPC Module 12 x86_64","migration_extra":false,"recommended":false,"version":"12","extensions":[],"release_stage":"released","id":1440,"identifier":"sle-module-hpc","friendly_version":"12"},{"id":1473,"release_stage":"released","identifier":"PackageHub","extensions":[],"friendly_version":"12","friendly_name":"SUSE Package Hub 12 x86_64","migration_extra":false,"former_identifier":"PackageHub","release_type":null,"name":"SUSE Package Hub","offline_predecessor_ids":[],"version":"12","recommended":false,"cpe":"cpe:/o:suse:packagehub:12","product_type":"extension","product_class":"7261","online_predecessor_ids":[],"repositories":[{"url":"https://updates.suse.com/SUSE/Backports/SLE-12_x86_64/standard/","autorefresh":false,"distro_target":"sle-12-x86_64","id":2327,"enabled":true,"description":"SUSE-PackageHub-12-Standard-Pool for sle-12-x86_64","name":"SUSE-PackageHub-12-Standard-Pool","installer_updates":false},{"description":"SUSE-PackageHub-12-Debuginfo for sle-12-x86_64","installer_updates":false,"name":"SUSE-PackageHub-12-Debuginfo","distro_target":"sle-12-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Backports/SLE-12_x86_64/standard_debug/","enabled":false,"id":2328},{"id":2329,"enabled":true,"url":"https://updates.suse.com/SUSE/Backports/SLE-12_x86_64/product/","distro_target":"sle-12-x86_64","autorefresh":false,"installer_updates":false,"name":"SUSE-PackageHub-12-Pool","description":"SUSE-PackageHub-12-Pool for sle-12-x86_64"}],"predecessor_ids":[],"arch":"x86_64","eula_url":"","description":"SUSE Package Hub is a free of charge extension providing access to community maintained packages built to run on SUSE Linux Enterprise Server. Built from the same sources used in the openSUSE distributions, these quality packages provide additional software to what is found in the SUSE Linux Enterprise Server product. Packages from the Package Hub are delivered without L3 support from SUSE. General updates and fixes to the packages in SUSE Package Hub are provided by the openSUSE community based on their discretion though SUSE will monitor and ensure that any known critical security issues will be addressed. Packages in the Package Hub are approved by SUSE for use with SUSE Linux Enterprise Server 12 and to not interfere with the supportability of SUSE Linux Enterprise Server it's modules and extensions. For more information about SUSE Package Hub please visit https://packagehub.suse.com.","shortname":"SUSE-PackageHub-12","free":true},{"cpe":"cpe:/o:suse:packagehub:12","product_type":"extension","online_predecessor_ids":[],"product_class":"SLES-Z","repositories":[{"installer_updates":false,"name":"SUSE-PackageHub-12-Standard-Pool","description":"SUSE-PackageHub-12-Standard-Pool for sle-12-s390x","enabled":true,"id":2330,"distro_target":"sle-12-s390x","autorefresh":false,"url":"https://updates.suse.com/SUSE/Backports/SLE-12_s390x/standard/"},{"name":"SUSE-PackageHub-12-Debuginfo","installer_updates":false,"description":"SUSE-PackageHub-12-Debuginfo for sle-12-s390x","id":2331,"enabled":false,"url":"https://updates.suse.com/SUSE/Backports/SLE-12_s390x/standard_debug/","autorefresh":true,"distro_target":"sle-12-s390x"},{"description":"SUSE-PackageHub-12-Pool for sle-12-s390x","name":"SUSE-PackageHub-12-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Backports/SLE-12_s390x/product/","autorefresh":false,"distro_target":"sle-12-s390x","id":2332,"enabled":true}],"predecessor_ids":[],"arch":"s390x","eula_url":"","shortname":"SUSE-PackageHub-12","description":"SUSE Package Hub is a free of charge extension providing access to community maintained packages built to run on SUSE Linux Enterprise Server. Built from the same sources used in the openSUSE distributions, these quality packages provide additional software to what is found in the SUSE Linux Enterprise Server product. Packages from the Package Hub are delivered without L3 support from SUSE. General updates and fixes to the packages in SUSE Package Hub are provided by the openSUSE community based on their discretion though SUSE will monitor and ensure that any known critical security issues will be addressed. Packages in the Package Hub are approved by SUSE for use with SUSE Linux Enterprise Server 12 and to not interfere with the supportability of SUSE Linux Enterprise Server it's modules and extensions. For more information about SUSE Package Hub please visit https://packagehub.suse.com.","free":true,"release_stage":"released","id":1474,"identifier":"PackageHub","extensions":[],"friendly_version":"12","friendly_name":"SUSE Package Hub 12 s390x","migration_extra":false,"former_identifier":"PackageHub","release_type":null,"name":"SUSE Package Hub","offline_predecessor_ids":[],"version":"12","recommended":false},{"release_stage":"released","identifier":"PackageHub","id":1475,"extensions":[],"friendly_version":"12","release_type":null,"former_identifier":"PackageHub","friendly_name":"SUSE Package Hub 12 ppc64le","migration_extra":false,"offline_predecessor_ids":[],"name":"SUSE Package Hub","version":"12","recommended":false,"product_type":"extension","cpe":"cpe:/o:suse:packagehub:12","online_predecessor_ids":[],"product_class":"SLES-PPC","repositories":[{"name":"SUSE-PackageHub-12-Standard-Pool","installer_updates":false,"description":"SUSE-PackageHub-12-Standard-Pool for sle-12-ppc64le","id":2333,"enabled":true,"url":"https://updates.suse.com/SUSE/Backports/SLE-12_ppc64le/standard/","autorefresh":false,"distro_target":"sle-12-ppc64le"},{"description":"SUSE-PackageHub-12-Debuginfo for sle-12-ppc64le","name":"SUSE-PackageHub-12-Debuginfo","installer_updates":false,"url":"https://updates.suse.com/SUSE/Backports/SLE-12_ppc64le/standard_debug/","autorefresh":true,"distro_target":"sle-12-ppc64le","id":2334,"enabled":false},{"name":"SUSE-PackageHub-12-Pool","installer_updates":false,"description":"SUSE-PackageHub-12-Pool for sle-12-ppc64le","id":2335,"enabled":true,"url":"https://updates.suse.com/SUSE/Backports/SLE-12_ppc64le/product/","autorefresh":false,"distro_target":"sle-12-ppc64le"}],"predecessor_ids":[],"arch":"ppc64le","eula_url":"","free":true,"shortname":"SUSE-PackageHub-12","description":"SUSE Package Hub is a free of charge extension providing access to community maintained packages built to run on SUSE Linux Enterprise Server. Built from the same sources used in the openSUSE distributions, these quality packages provide additional software to what is found in the SUSE Linux Enterprise Server product. Packages from the Package Hub are delivered without L3 support from SUSE. General updates and fixes to the packages in SUSE Package Hub are provided by the openSUSE community based on their discretion though SUSE will monitor and ensure that any known critical security issues will be addressed. Packages in the Package Hub are approved by SUSE for use with SUSE Linux Enterprise Server 12 and to not interfere with the supportability of SUSE Linux Enterprise Server it's modules and extensions. For more information about SUSE Package Hub please visit https://packagehub.suse.com."},{"recommended":false,"version":"12.1","offline_predecessor_ids":[],"name":"SUSE Package Hub","former_identifier":"PackageHub","release_type":null,"migration_extra":false,"friendly_name":"SUSE Package Hub 12 SP1 x86_64","friendly_version":"12 SP1","extensions":[],"identifier":"PackageHub","release_stage":"released","id":1476,"free":true,"description":"SUSE Package Hub is a free of charge extension providing access to community maintained packages built to run on SUSE Linux Enterprise Server. Built from the same sources used in the openSUSE distributions, these quality packages provide additional software to what is found in the SUSE Linux Enterprise Server product. Packages from the Package Hub are delivered without L3 support from SUSE. General updates and fixes to the packages in SUSE Package Hub are provided by the openSUSE community based on their discretion though SUSE will monitor and ensure that any known critical security issues will be addressed. Packages in the Package Hub are approved by SUSE for use with SUSE Linux Enterprise Server 12 and to not interfere with the supportability of SUSE Linux Enterprise Server it's modules and extensions. For more information about SUSE Package Hub please visit https://packagehub.suse.com.","shortname":"SUSE-PackageHub-12-SP1","eula_url":"","arch":"x86_64","predecessor_ids":[1473],"repositories":[{"url":"https://updates.suse.com/SUSE/Backports/SLE-12-SP1_x86_64/standard/","autorefresh":false,"distro_target":"sle-12-x86_64","id":2336,"enabled":true,"description":"SUSE-PackageHub-12-SP1-Standard-Pool for sle-12-x86_64","name":"SUSE-PackageHub-12-SP1-Standard-Pool","installer_updates":false},{"description":"SUSE-PackageHub-12-SP1-Debuginfo for sle-12-x86_64","installer_updates":false,"name":"SUSE-PackageHub-12-SP1-Debuginfo","distro_target":"sle-12-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Backports/SLE-12-SP1_x86_64/standard_debug/","enabled":false,"id":2337},{"description":"SUSE-PackageHub-12-SP1-Pool for sle-12-x86_64","installer_updates":false,"name":"SUSE-PackageHub-12-SP1-Pool","url":"https://updates.suse.com/SUSE/Backports/SLE-12-SP1_x86_64/product/","distro_target":"sle-12-x86_64","autorefresh":false,"id":2338,"enabled":true}],"online_predecessor_ids":[1473],"product_class":"7261","product_type":"extension","cpe":"cpe:/o:suse:packagehub:12:sp1"},{"identifier":"PackageHub","release_stage":"released","id":1477,"extensions":[],"friendly_version":"12 SP1","former_identifier":"PackageHub","release_type":null,"friendly_name":"SUSE Package Hub 12 SP1 s390x","migration_extra":false,"offline_predecessor_ids":[],"name":"SUSE Package Hub","version":"12.1","recommended":false,"product_type":"extension","cpe":"cpe:/o:suse:packagehub:12:sp1","online_predecessor_ids":[1474],"repositories":[{"enabled":true,"id":2339,"distro_target":"sle-12-s390x","autorefresh":false,"url":"https://updates.suse.com/SUSE/Backports/SLE-12-SP1_s390x/standard/","installer_updates":false,"name":"SUSE-PackageHub-12-SP1-Standard-Pool","description":"SUSE-PackageHub-12-SP1-Standard-Pool for sle-12-s390x"},{"url":"https://updates.suse.com/SUSE/Backports/SLE-12-SP1_s390x/standard_debug/","autorefresh":true,"distro_target":"sle-12-s390x","id":2340,"enabled":false,"description":"SUSE-PackageHub-12-SP1-Debuginfo for sle-12-s390x","name":"SUSE-PackageHub-12-SP1-Debuginfo","installer_updates":false},{"distro_target":"sle-12-s390x","autorefresh":false,"url":"https://updates.suse.com/SUSE/Backports/SLE-12-SP1_s390x/product/","enabled":true,"id":2341,"description":"SUSE-PackageHub-12-SP1-Pool for sle-12-s390x","installer_updates":false,"name":"SUSE-PackageHub-12-SP1-Pool"}],"product_class":"SLES-Z","predecessor_ids":[1474],"arch":"s390x","eula_url":"","free":true,"description":"SUSE Package Hub is a free of charge extension providing access to community maintained packages built to run on SUSE Linux Enterprise Server. Built from the same sources used in the openSUSE distributions, these quality packages provide additional software to what is found in the SUSE Linux Enterprise Server product. Packages from the Package Hub are delivered without L3 support from SUSE. General updates and fixes to the packages in SUSE Package Hub are provided by the openSUSE community based on their discretion though SUSE will monitor and ensure that any known critical security issues will be addressed. Packages in the Package Hub are approved by SUSE for use with SUSE Linux Enterprise Server 12 and to not interfere with the supportability of SUSE Linux Enterprise Server it's modules and extensions. For more information about SUSE Package Hub please visit https://packagehub.suse.com.","shortname":"SUSE-PackageHub-12-SP1"},{"online_predecessor_ids":[1475],"repositories":[{"description":"SUSE-PackageHub-12-SP1-Standard-Pool for sle-12-ppc64le","installer_updates":false,"name":"SUSE-PackageHub-12-SP1-Standard-Pool","url":"https://updates.suse.com/SUSE/Backports/SLE-12-SP1_ppc64le/standard/","distro_target":"sle-12-ppc64le","autorefresh":false,"id":2342,"enabled":true},{"name":"SUSE-PackageHub-12-SP1-Debuginfo","installer_updates":false,"description":"SUSE-PackageHub-12-SP1-Debuginfo for sle-12-ppc64le","enabled":false,"id":2343,"autorefresh":true,"distro_target":"sle-12-ppc64le","url":"https://updates.suse.com/SUSE/Backports/SLE-12-SP1_ppc64le/standard_debug/"},{"installer_updates":false,"name":"SUSE-PackageHub-12-SP1-Pool","description":"SUSE-PackageHub-12-SP1-Pool for sle-12-ppc64le","id":2344,"enabled":true,"url":"https://updates.suse.com/SUSE/Backports/SLE-12-SP1_ppc64le/product/","distro_target":"sle-12-ppc64le","autorefresh":false}],"product_class":"SLES-PPC","predecessor_ids":[1475],"product_type":"extension","cpe":"cpe:/o:suse:packagehub:12:sp1","free":true,"description":"SUSE Package Hub is a free of charge extension providing access to community maintained packages built to run on SUSE Linux Enterprise Server. Built from the same sources used in the openSUSE distributions, these quality packages provide additional software to what is found in the SUSE Linux Enterprise Server product. Packages from the Package Hub are delivered without L3 support from SUSE. General updates and fixes to the packages in SUSE Package Hub are provided by the openSUSE community based on their discretion though SUSE will monitor and ensure that any known critical security issues will be addressed. Packages in the Package Hub are approved by SUSE for use with SUSE Linux Enterprise Server 12 and to not interfere with the supportability of SUSE Linux Enterprise Server it's modules and extensions. For more information about SUSE Package Hub please visit https://packagehub.suse.com.","shortname":"SUSE-PackageHub-12-SP1","arch":"ppc64le","eula_url":"","friendly_version":"12 SP1","release_stage":"released","id":1478,"identifier":"PackageHub","extensions":[],"version":"12.1","recommended":false,"former_identifier":"PackageHub","release_type":null,"friendly_name":"SUSE Package Hub 12 SP1 ppc64le","migration_extra":false,"offline_predecessor_ids":[],"name":"SUSE Package Hub"},{"product_type":"extension","cpe":"cpe:/o:suse:packagehub:12:sp2","online_predecessor_ids":[1473,1476],"product_class":"7261","repositories":[{"enabled":true,"id":2345,"distro_target":"sle-12-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Backports/SLE-12-SP2_x86_64/standard/","installer_updates":false,"name":"SUSE-PackageHub-12-SP2-Standard-Pool","description":"SUSE-PackageHub-12-SP2-Standard-Pool for sle-12-x86_64"},{"url":"https://updates.suse.com/SUSE/Backports/SLE-12-SP2_x86_64/standard_debug/","autorefresh":true,"distro_target":"sle-12-x86_64","id":2346,"enabled":false,"description":"SUSE-PackageHub-12-SP2-Debuginfo for sle-12-x86_64","name":"SUSE-PackageHub-12-SP2-Debuginfo","installer_updates":false},{"description":"SUSE-PackageHub-12-SP2-Pool for sle-12-x86_64","name":"SUSE-PackageHub-12-SP2-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Backports/SLE-12-SP2_x86_64/product/","autorefresh":false,"distro_target":"sle-12-x86_64","id":2347,"enabled":true}],"predecessor_ids":[1473,1476],"arch":"x86_64","eula_url":"","free":true,"description":"SUSE Package Hub is a free of charge extension providing access to community maintained packages built to run on SUSE Linux Enterprise Server. Built from the same sources used in the openSUSE distributions, these quality packages provide additional software to what is found in the SUSE Linux Enterprise Server product. Packages from the Package Hub are delivered without L3 support from SUSE. General updates and fixes to the packages in SUSE Package Hub are provided by the openSUSE community based on their discretion though SUSE will monitor and ensure that any known critical security issues will be addressed. Packages in the Package Hub are approved by SUSE for use with SUSE Linux Enterprise Server 12 and to not interfere with the supportability of SUSE Linux Enterprise Server it's modules and extensions. For more information about SUSE Package Hub please visit https://packagehub.suse.com.","shortname":"SUSE-PackageHub-12-SP2","identifier":"PackageHub","release_stage":"released","id":1479,"extensions":[],"friendly_version":"12 SP2","release_type":null,"former_identifier":"PackageHub","migration_extra":false,"friendly_name":"SUSE Package Hub 12 SP2 x86_64","offline_predecessor_ids":[],"name":"SUSE Package Hub","version":"12.2","recommended":false},{"shortname":"SUSE-PackageHub-12-SP2","description":"SUSE Package Hub is a free of charge extension providing access to community maintained packages built to run on SUSE Linux Enterprise Server. Built from the same sources used in the openSUSE distributions, these quality packages provide additional software to what is found in the SUSE Linux Enterprise Server product. Packages from the Package Hub are delivered without L3 support from SUSE. General updates and fixes to the packages in SUSE Package Hub are provided by the openSUSE community based on their discretion though SUSE will monitor and ensure that any known critical security issues will be addressed. Packages in the Package Hub are approved by SUSE for use with SUSE Linux Enterprise Server 12 and to not interfere with the supportability of SUSE Linux Enterprise Server it's modules and extensions. For more information about SUSE Package Hub please visit https://packagehub.suse.com.","free":true,"eula_url":"","arch":"s390x","predecessor_ids":[1474,1477],"online_predecessor_ids":[1474,1477],"repositories":[{"id":2348,"enabled":true,"url":"https://updates.suse.com/SUSE/Backports/SLE-12-SP2_s390x/standard/","distro_target":"sle-12-s390x","autorefresh":false,"installer_updates":false,"name":"SUSE-PackageHub-12-SP2-Standard-Pool","description":"SUSE-PackageHub-12-SP2-Standard-Pool for sle-12-s390x"},{"installer_updates":false,"name":"SUSE-PackageHub-12-SP2-Debuginfo","description":"SUSE-PackageHub-12-SP2-Debuginfo for sle-12-s390x","enabled":false,"id":2349,"distro_target":"sle-12-s390x","autorefresh":true,"url":"https://updates.suse.com/SUSE/Backports/SLE-12-SP2_s390x/standard_debug/"},{"url":"https://updates.suse.com/SUSE/Backports/SLE-12-SP2_s390x/product/","distro_target":"sle-12-s390x","autorefresh":false,"id":2350,"enabled":true,"description":"SUSE-PackageHub-12-SP2-Pool for sle-12-s390x","installer_updates":false,"name":"SUSE-PackageHub-12-SP2-Pool"}],"product_class":"SLES-Z","cpe":"cpe:/o:suse:packagehub:12:sp2","product_type":"extension","recommended":false,"version":"12.2","name":"SUSE Package Hub","offline_predecessor_ids":[],"friendly_name":"SUSE Package Hub 12 SP2 s390x","migration_extra":false,"former_identifier":"PackageHub","release_type":null,"friendly_version":"12 SP2","extensions":[],"identifier":"PackageHub","release_stage":"released","id":1480},{"extensions":[],"release_stage":"released","id":1481,"identifier":"PackageHub","friendly_version":"12 SP2","name":"SUSE Package Hub","offline_predecessor_ids":[],"friendly_name":"SUSE Package Hub 12 SP2 ppc64le","migration_extra":false,"former_identifier":"PackageHub","release_type":null,"recommended":false,"version":"12.2","cpe":"cpe:/o:suse:packagehub:12:sp2","product_type":"extension","predecessor_ids":[1475,1478],"online_predecessor_ids":[1475,1478],"repositories":[{"autorefresh":false,"distro_target":"sle-12-ppc64le","url":"https://updates.suse.com/SUSE/Backports/SLE-12-SP2_ppc64le/standard/","enabled":true,"id":2351,"description":"SUSE-PackageHub-12-SP2-Standard-Pool for sle-12-ppc64le","name":"SUSE-PackageHub-12-SP2-Standard-Pool","installer_updates":false},{"installer_updates":false,"name":"SUSE-PackageHub-12-SP2-Debuginfo","description":"SUSE-PackageHub-12-SP2-Debuginfo for sle-12-ppc64le","id":2352,"enabled":false,"url":"https://updates.suse.com/SUSE/Backports/SLE-12-SP2_ppc64le/standard_debug/","distro_target":"sle-12-ppc64le","autorefresh":true},{"autorefresh":false,"distro_target":"sle-12-ppc64le","url":"https://updates.suse.com/SUSE/Backports/SLE-12-SP2_ppc64le/product/","enabled":true,"id":2353,"description":"SUSE-PackageHub-12-SP2-Pool for sle-12-ppc64le","name":"SUSE-PackageHub-12-SP2-Pool","installer_updates":false}],"product_class":"SLES-PPC","eula_url":"","arch":"ppc64le","description":"SUSE Package Hub is a free of charge extension providing access to community maintained packages built to run on SUSE Linux Enterprise Server. Built from the same sources used in the openSUSE distributions, these quality packages provide additional software to what is found in the SUSE Linux Enterprise Server product. Packages from the Package Hub are delivered without L3 support from SUSE. General updates and fixes to the packages in SUSE Package Hub are provided by the openSUSE community based on their discretion though SUSE will monitor and ensure that any known critical security issues will be addressed. Packages in the Package Hub are approved by SUSE for use with SUSE Linux Enterprise Server 12 and to not interfere with the supportability of SUSE Linux Enterprise Server it's modules and extensions. For more information about SUSE Package Hub please visit https://packagehub.suse.com.","shortname":"SUSE-PackageHub-12-SP2","free":true},{"eula_url":"","arch":"aarch64","description":"SUSE Package Hub is a free of charge extension providing access to community maintained packages built to run on SUSE Linux Enterprise Server. Built from the same sources used in the openSUSE distributions, these quality packages provide additional software to what is found in the SUSE Linux Enterprise Server product. Packages from the Package Hub are delivered without L3 support from SUSE. General updates and fixes to the packages in SUSE Package Hub are provided by the openSUSE community based on their discretion though SUSE will monitor and ensure that any known critical security issues will be addressed. Packages in the Package Hub are approved by SUSE for use with SUSE Linux Enterprise Server 12 and to not interfere with the supportability of SUSE Linux Enterprise Server it's modules and extensions. For more information about SUSE Package Hub please visit https://packagehub.suse.com.","shortname":"SUSE-PackageHub-12-SP2","free":true,"cpe":"cpe:/o:suse:packagehub:12:sp2","product_type":"extension","predecessor_ids":[],"online_predecessor_ids":[],"product_class":"SLES-ARM64","repositories":[{"description":"SUSE-PackageHub-12-SP2-Standard-Pool for sle-12-aarch64","installer_updates":false,"name":"SUSE-PackageHub-12-SP2-Standard-Pool","url":"https://updates.suse.com/SUSE/Backports/SLE-12-SP2_aarch64/standard/","distro_target":"sle-12-aarch64","autorefresh":false,"id":2354,"enabled":true},{"installer_updates":false,"name":"SUSE-PackageHub-12-SP2-Debuginfo","description":"SUSE-PackageHub-12-SP2-Debuginfo for sle-12-aarch64","enabled":false,"id":2355,"distro_target":"sle-12-aarch64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Backports/SLE-12-SP2_aarch64/standard_debug/"},{"id":2356,"enabled":true,"url":"https://updates.suse.com/SUSE/Backports/SLE-12-SP2_aarch64/product/","distro_target":"sle-12-aarch64","autorefresh":false,"installer_updates":false,"name":"SUSE-PackageHub-12-SP2-Pool","description":"SUSE-PackageHub-12-SP2-Pool for sle-12-aarch64"}],"name":"SUSE Package Hub","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"SUSE Package Hub 12 SP2 aarch64","former_identifier":"PackageHub","release_type":null,"recommended":false,"version":"12.2","extensions":[],"release_stage":"released","id":1482,"identifier":"PackageHub","friendly_version":"12 SP2"},{"friendly_version":"1.0","identifier":"CAASP","release_stage":"released","id":1484,"extensions":[],"version":"1.0","recommended":false,"friendly_name":"SUSE Container as a Service Platform 1.0 x86_64","migration_extra":false,"release_type":null,"former_identifier":"CAASP","name":"SUSE Container as a Service Platform","offline_predecessor_ids":[],"online_predecessor_ids":[],"product_class":"CAASP_X86","repositories":[{"description":"SUSE-CAASP-ALL-Updates for sle-12-x86_64","name":"SUSE-CAASP-ALL-Updates","installer_updates":false,"url":"https://updates.suse.com/SUSE/Updates/SUSE-CAASP/ALL/x86_64/update/","autorefresh":true,"distro_target":"sle-12-x86_64","id":2514,"enabled":true},{"description":"SUSE-CAASP-ALL-Debuginfo-Updates for sle-12-x86_64","installer_updates":false,"name":"SUSE-CAASP-ALL-Debuginfo-Updates","url":"https://updates.suse.com/SUSE/Updates/SUSE-CAASP/ALL/x86_64/update_debug/","distro_target":"sle-12-x86_64","autorefresh":true,"id":2515,"enabled":false},{"description":"SUSE-CAASP-ALL-Pool for sle-12-x86_64","name":"SUSE-CAASP-ALL-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SUSE-CAASP/ALL/x86_64/product/","autorefresh":false,"distro_target":"sle-12-x86_64","id":2516,"enabled":true},{"description":"SUSE-CAASP-ALL-Debuginfo-Pool for sle-12-x86_64","name":"SUSE-CAASP-ALL-Debuginfo-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SUSE-CAASP/ALL/x86_64/product_debug/","autorefresh":false,"distro_target":"sle-12-x86_64","id":2517,"enabled":false},{"description":"SUSE-CAASP-ALL-Source-Pool for sle-12-x86_64","installer_updates":false,"name":"SUSE-CAASP-ALL-Source-Pool","distro_target":"sle-12-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SUSE-CAASP/ALL/x86_64/product_source/","enabled":false,"id":2518}],"predecessor_ids":[],"cpe":"cpe:/o:suse:caasp:1.0","product_type":"base","shortname":"SUSE CaaS Platform 1.0","description":"SUSE Container as a Service Platform combines the benefits of an enterprise ready OS with the agility of a fast development containers orchestration platform. It is a modern Linux Operating System, designed for containers and optimized for large, clustered deployments. It inherits the benefits of SUSE Linux Enterprise Server while redefining the operating system into a small, efficient and reliable distribution.","free":false,"arch":"x86_64","eula_url":"https://updates.suse.com/SUSE/Products/SUSE-CAASP/ALL/x86_64/product.license/"},{"extensions":[],"release_stage":"released","identifier":"openstack-cloud-magnum-orchestration","id":1485,"friendly_version":"7","name":"Magnum Orchestration","offline_predecessor_ids":[],"friendly_name":"Magnum Orchestration 7 x86_64","migration_extra":false,"former_identifier":"openstack-cloud-magnum-orchestration","release_type":null,"recommended":false,"version":"7","cpe":"cpe:/o:suse:openstack-cloud-magnum-orchestration:7","product_type":"module","predecessor_ids":[],"product_class":"SUSE_CLOUD","online_predecessor_ids":[],"repositories":[{"installer_updates":false,"name":"OpenStack-Cloud-Magnum-Orchestration-Updates","description":"OpenStack-Cloud-Magnum-Orchestration-Updates for sle-12-x86_64","enabled":true,"id":2367,"distro_target":"sle-12-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/OpenStack-Cloud-Magnum-Orchestration/7/x86_64/update/"},{"id":2368,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/OpenStack-Cloud-Magnum-Orchestration/7/x86_64/update_debug/","autorefresh":true,"distro_target":"sle-12-x86_64","name":"OpenStack-Cloud-Magnum-Orchestration-Debuginfo-Updates","installer_updates":false,"description":"OpenStack-Cloud-Magnum-Orchestration-Debuginfo-Updates for sle-12-x86_64"},{"description":"OpenStack-Cloud-Magnum-Orchestration-Pool for sle-12-x86_64","installer_updates":false,"name":"OpenStack-Cloud-Magnum-Orchestration-Pool","distro_target":"sle-12-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/OpenStack-Cloud-Magnum-Orchestration/7/x86_64/product/","enabled":true,"id":2369},{"id":2370,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/OpenStack-Cloud-Magnum-Orchestration/7/x86_64/product_debug/","distro_target":"sle-12-x86_64","autorefresh":false,"installer_updates":false,"name":"OpenStack-Cloud-Magnum-Orchestration-Debuginfo-Pool","description":"OpenStack-Cloud-Magnum-Orchestration-Debuginfo-Pool for sle-12-x86_64"}],"eula_url":"","arch":"x86_64","description":"

This Module contains the maintenance packages for the kubernetes nodes created by Magnum.

","shortname":"magnum-orchestration","free":false},{"friendly_version":"3.1","release_stage":"released","identifier":"SUSE-Manager-Server","id":1518,"extensions":[],"version":"3.1","recommended":false,"former_identifier":"SUSE-Manager-Server","release_type":null,"migration_extra":false,"friendly_name":"SUSE Manager Server 3.1 x86_64","offline_predecessor_ids":[],"name":"SUSE Manager Server","repositories":[{"name":"SUSE-Manager-Server-3.1-Updates","installer_updates":false,"description":"SUSE-Manager-Server-3.1-Updates for sle-12-x86_64","enabled":true,"id":2400,"autorefresh":true,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Updates/SUSE-Manager-Server/3.1/x86_64/update/"},{"url":"https://updates.suse.com/SUSE/Updates/SUSE-Manager-Server/3.1/x86_64/update_debug/","distro_target":"sle-12-x86_64","autorefresh":true,"id":2401,"enabled":false,"description":"SUSE-Manager-Server-3.1-Debuginfo-Updates for sle-12-x86_64","installer_updates":false,"name":"SUSE-Manager-Server-3.1-Debuginfo-Updates"},{"enabled":true,"id":2402,"distro_target":"sle-12-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SUSE-Manager-Server/3.1/x86_64/product/","installer_updates":false,"name":"SUSE-Manager-Server-3.1-Pool","description":"SUSE-Manager-Server-3.1-Pool for sle-12-x86_64"},{"distro_target":"sle-12-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SUSE-Manager-Server/3.1/x86_64/product_debug/","enabled":false,"id":2403,"description":"SUSE-Manager-Server-3.1-Debuginfo-Pool for sle-12-x86_64","installer_updates":false,"name":"SUSE-Manager-Server-3.1-Debuginfo-Pool"},{"url":"https://updates.suse.com/SUSE/Products/SUSE-Manager-Server/3.1/x86_64/product_source/","distro_target":"sle-12-x86_64","autorefresh":false,"id":2404,"enabled":false,"description":"SUSE-Manager-Server-3.1-Source-Pool for sle-12-x86_64","installer_updates":false,"name":"SUSE-Manager-Server-3.1-Source-Pool"}],"online_predecessor_ids":[1349],"product_class":"SMS-X86","predecessor_ids":[1349],"product_type":"extension","cpe":"cpe:/o:suse:suse-manager-server:3.1","free":false,"shortname":"SUSE Manager Server","description":"SUSE Manager lets you efficiently manage physical, virtual, and cloud-based Linux systems. It provides automated and cost-effective configuration and software management, asset management, and system provisioning.","arch":"x86_64","eula_url":"https://updates.suse.com/SUSE/Products/SUSE-Manager-Server/3.1/x86_64/product.license/"},{"identifier":"SUSE-Manager-Server","release_stage":"released","id":1519,"extensions":[],"friendly_version":"3.1","friendly_name":"SUSE Manager Server 3.1 s390x","migration_extra":false,"former_identifier":"SUSE-Manager-Server","release_type":null,"name":"SUSE Manager Server","offline_predecessor_ids":[],"version":"3.1","recommended":false,"cpe":"cpe:/o:suse:suse-manager-server:3.1","product_type":"extension","online_predecessor_ids":[1348],"repositories":[{"name":"SUSE-Manager-Server-3.1-Updates","installer_updates":false,"description":"SUSE-Manager-Server-3.1-Updates for sle-12-s390x","enabled":true,"id":2405,"autorefresh":true,"distro_target":"sle-12-s390x","url":"https://updates.suse.com/SUSE/Updates/SUSE-Manager-Server/3.1/s390x/update/"},{"installer_updates":false,"name":"SUSE-Manager-Server-3.1-Debuginfo-Updates","description":"SUSE-Manager-Server-3.1-Debuginfo-Updates for sle-12-s390x","enabled":false,"id":2406,"distro_target":"sle-12-s390x","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SUSE-Manager-Server/3.1/s390x/update_debug/"},{"name":"SUSE-Manager-Server-3.1-Pool","installer_updates":false,"description":"SUSE-Manager-Server-3.1-Pool for sle-12-s390x","id":2407,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SUSE-Manager-Server/3.1/s390x/product/","autorefresh":false,"distro_target":"sle-12-s390x"},{"url":"https://updates.suse.com/SUSE/Products/SUSE-Manager-Server/3.1/s390x/product_debug/","autorefresh":false,"distro_target":"sle-12-s390x","id":2408,"enabled":false,"description":"SUSE-Manager-Server-3.1-Debuginfo-Pool for sle-12-s390x","name":"SUSE-Manager-Server-3.1-Debuginfo-Pool","installer_updates":false},{"id":2409,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SUSE-Manager-Server/3.1/s390x/product_source/","distro_target":"sle-12-s390x","autorefresh":false,"installer_updates":false,"name":"SUSE-Manager-Server-3.1-Source-Pool","description":"SUSE-Manager-Server-3.1-Source-Pool for sle-12-s390x"}],"product_class":"SMS-Z","predecessor_ids":[1348],"arch":"s390x","eula_url":"https://updates.suse.com/SUSE/Products/SUSE-Manager-Server/3.1/s390x/product.license/","description":"SUSE Manager lets you efficiently manage physical, virtual, and cloud-based Linux systems. It provides automated and cost-effective configuration and software management, asset management, and system provisioning.","shortname":"SUSE Manager Server","free":false},{"friendly_version":"3.1","extensions":[],"id":1520,"release_stage":"released","identifier":"SUSE-Manager-Proxy","recommended":false,"version":"3.1","offline_predecessor_ids":[],"name":"SUSE Manager Proxy","former_identifier":"SUSE-Manager-Proxy","release_type":null,"migration_extra":false,"friendly_name":"SUSE Manager Proxy 3.1 x86_64","predecessor_ids":[1352],"online_predecessor_ids":[1352],"repositories":[{"description":"SUSE-Manager-Proxy-3.1-Updates for sle-12-x86_64","name":"SUSE-Manager-Proxy-3.1-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Updates/SUSE-Manager-Proxy/3.1/x86_64/update/","enabled":true,"id":2410},{"description":"SUSE-Manager-Proxy-3.1-Debuginfo-Updates for sle-12-x86_64","name":"SUSE-Manager-Proxy-3.1-Debuginfo-Updates","installer_updates":false,"url":"https://updates.suse.com/SUSE/Updates/SUSE-Manager-Proxy/3.1/x86_64/update_debug/","autorefresh":true,"distro_target":"sle-12-x86_64","id":2411,"enabled":false},{"installer_updates":false,"name":"SUSE-Manager-Proxy-3.1-Pool","description":"SUSE-Manager-Proxy-3.1-Pool for sle-12-x86_64","enabled":true,"id":2412,"distro_target":"sle-12-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SUSE-Manager-Proxy/3.1/x86_64/product/"},{"description":"SUSE-Manager-Proxy-3.1-Debuginfo-Pool for sle-12-x86_64","installer_updates":false,"name":"SUSE-Manager-Proxy-3.1-Debuginfo-Pool","distro_target":"sle-12-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SUSE-Manager-Proxy/3.1/x86_64/product_debug/","enabled":false,"id":2413},{"name":"SUSE-Manager-Proxy-3.1-Source-Pool","installer_updates":false,"description":"SUSE-Manager-Proxy-3.1-Source-Pool for sle-12-x86_64","enabled":false,"id":2414,"autorefresh":false,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Products/SUSE-Manager-Proxy/3.1/x86_64/product_source/"}],"product_class":"SMP","product_type":"extension","cpe":"cpe:/o:suse:suse-manager-proxy:3.1","free":false,"description":"SUSE Manager Proxies extend large and/or geographically dispersed SUSE Manager environments to reduce load on the SUSE Manager Server, lower bandwidth needs, and provide faster local updates.","shortname":"SUSE Manager Proxy","eula_url":"https://updates.suse.com/SUSE/Products/SUSE-Manager-Proxy/3.1/x86_64/product.license/","arch":"x86_64"},{"recommended":false,"version":"12.2","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Server for SAP Applications","release_type":null,"former_identifier":"SUSE_SLES_SAP","friendly_name":"SUSE Linux Enterprise Server for SAP Applications 12 SP2 ppc64le","migration_extra":false,"friendly_version":"12 SP2","extensions":[{"release_stage":"released","id":1148,"identifier":"sle-module-legacy","extensions":[],"friendly_version":"12","release_type":null,"former_identifier":"sle-module-legacy","migration_extra":false,"friendly_name":"Legacy Module 12 ppc64le","offline_predecessor_ids":[],"name":"Legacy Module","version":"12","recommended":false,"product_type":"module","cpe":"cpe:/o:suse:sle-module-legacy:12","online_predecessor_ids":[],"product_class":"MODULE","repositories":[{"id":1668,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/12/ppc64le/update/","autorefresh":true,"distro_target":"sle-12-ppc64le","name":"SLE-Module-Legacy12-Updates","installer_updates":false,"description":"SLE-Module-Legacy12-Updates for sle-12-ppc64le"},{"description":"SLE-Module-Legacy12-Debuginfo-Updates for sle-12-ppc64le","installer_updates":false,"name":"SLE-Module-Legacy12-Debuginfo-Updates","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/12/ppc64le/update_debug/","distro_target":"sle-12-ppc64le","autorefresh":true,"id":1669,"enabled":false},{"id":1670,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/12/ppc64le/product/","autorefresh":false,"distro_target":"sle-12-ppc64le","name":"SLE-Module-Legacy12-Pool","installer_updates":false,"description":"SLE-Module-Legacy12-Pool for sle-12-ppc64le"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/12/ppc64le/product_debug/","autorefresh":false,"distro_target":"sle-12-ppc64le","id":1671,"enabled":false,"description":"SLE-Module-Legacy12-Debuginfo-Pool for sle-12-ppc64le","name":"SLE-Module-Legacy12-Debuginfo-Pool","installer_updates":false},{"name":"SLE-Module-Legacy12-Source-Pool","installer_updates":false,"description":"SLE-Module-Legacy12-Source-Pool for sle-12-ppc64le","id":1987,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/12/ppc64le/product_source/","autorefresh":false,"distro_target":"sle-12-ppc64le"}],"predecessor_ids":[],"arch":"ppc64le","eula_url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/12/ppc64le/product.license/","free":true,"description":"

The Legacy Module helps you migrating applications from SUSE Linux Enterprise 10 and 11 and other systems to SUSE Linux Enterprise 12, by providing packages which are discontinued on SUSE Linux Enterprise Server, such as: sendmail, syslog-ng, IBM Java6, and a number of libraries (for example openssl-0.9.8).

Access to the Legacy Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself. Packages in the this module are usually supported for at most three years. Support for Sendmail and IBM Java 6 will end in September 2017 the latest.

","shortname":"Legacy-Module"},{"online_predecessor_ids":[],"product_class":"MODULE","repositories":[{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/12/ppc64le/update/","distro_target":"sle-12-ppc64le","autorefresh":true,"id":1680,"enabled":true,"description":"SLE-Module-Web-Scripting12-Updates for sle-12-ppc64le","installer_updates":false,"name":"SLE-Module-Web-Scripting12-Updates"},{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/12/ppc64le/update_debug/","autorefresh":true,"distro_target":"sle-12-ppc64le","id":1681,"enabled":false,"description":"SLE-Module-Web-Scripting12-Debuginfo-Updates for sle-12-ppc64le","name":"SLE-Module-Web-Scripting12-Debuginfo-Updates","installer_updates":false},{"installer_updates":false,"name":"SLE-Module-Web-Scripting12-Pool","description":"SLE-Module-Web-Scripting12-Pool for sle-12-ppc64le","enabled":true,"id":1682,"distro_target":"sle-12-ppc64le","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/12/ppc64le/product/"},{"description":"SLE-Module-Web-Scripting12-Debuginfo-Pool for sle-12-ppc64le","installer_updates":false,"name":"SLE-Module-Web-Scripting12-Debuginfo-Pool","distro_target":"sle-12-ppc64le","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/12/ppc64le/product_debug/","enabled":false,"id":1683},{"enabled":false,"id":1990,"autorefresh":false,"distro_target":"sle-12-ppc64le","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/12/ppc64le/product_source/","name":"SLE-Module-Web-Scripting12-Source-Pool","installer_updates":false,"description":"SLE-Module-Web-Scripting12-Source-Pool for sle-12-ppc64le"}],"predecessor_ids":[],"product_type":"module","cpe":"cpe:/o:suse:sle-module-web-scripting:12","free":true,"shortname":"Web-and-Scripting-Module","description":"

The SUSE Linux Enterprise Web and Scripting Module delivers a comprehensive suite of scripting languages, frameworks, and related tools helping developers and systems administrators accelerate the creation of stable, modern web applications, using dynamic languages, such as PHP, Ruby on Rails, and Python.

Access to the Web and Scripting Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself: Package versions in the this module are usually supported for at most three years. We are planning to release more recent versions on a schedule of approximately 18 month; the exact dates may differ per package.

","arch":"ppc64le","eula_url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/12/ppc64le/product.license/","friendly_version":"12","release_stage":"released","id":1151,"identifier":"sle-module-web-scripting","extensions":[],"version":"12","recommended":false,"release_type":null,"former_identifier":"sle-module-web-scripting","friendly_name":"Web and Scripting Module 12 ppc64le","migration_extra":false,"offline_predecessor_ids":[],"name":"Web and Scripting Module"},{"recommended":false,"version":"12","name":"Public Cloud Module","offline_predecessor_ids":[],"friendly_name":"Public Cloud Module 12 ppc64le","migration_extra":false,"release_type":null,"former_identifier":"sle-module-public-cloud","friendly_version":"12","extensions":[],"release_stage":"released","identifier":"sle-module-public-cloud","id":1218,"shortname":"Public-Cloud-Module","description":"

The Public Cloud Module is a collection of tools that enables you to create and manage cloud images from the commandline on SUSE Linux Enterprise Server. When building your own images with KIWI or SUSE Studio, initialization code specific to the target cloud is included in that image.

Access to the Public Cloud Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself; please check the Release Notes for further details.

","free":true,"eula_url":"","arch":"ppc64le","predecessor_ids":[],"product_class":"MODULE","online_predecessor_ids":[],"repositories":[{"description":"SLE-Module-Public-Cloud12-Updates for sle-12-ppc64le","installer_updates":false,"name":"SLE-Module-Public-Cloud12-Updates","distro_target":"sle-12-ppc64le","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/12/ppc64le/update/","enabled":true,"id":1692},{"distro_target":"sle-12-ppc64le","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/12/ppc64le/update_debug/","enabled":false,"id":1693,"description":"SLE-Module-Public-Cloud12-Debuginfo-Updates for sle-12-ppc64le","installer_updates":false,"name":"SLE-Module-Public-Cloud12-Debuginfo-Updates"},{"description":"SLE-Module-Public-Cloud12-Pool for sle-12-ppc64le","installer_updates":false,"name":"SLE-Module-Public-Cloud12-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/12/ppc64le/product/","distro_target":"sle-12-ppc64le","autorefresh":false,"id":1694,"enabled":true},{"enabled":false,"id":1695,"distro_target":"sle-12-ppc64le","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/12/ppc64le/product_debug/","installer_updates":false,"name":"SLE-Module-Public-Cloud12-Debuginfo-Pool","description":"SLE-Module-Public-Cloud12-Debuginfo-Pool for sle-12-ppc64le"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/12/ppc64le/product_source/","autorefresh":false,"distro_target":"sle-12-ppc64le","id":1993,"enabled":false,"description":"SLE-Module-Public-Cloud12-Source-Pool for sle-12-ppc64le","name":"SLE-Module-Public-Cloud12-Source-Pool","installer_updates":false}],"cpe":"cpe:/o:suse:sle-module-public-cloud:12","product_type":"module"},{"version":"12","recommended":false,"migration_extra":false,"friendly_name":"IBM DLPAR SDK for SLE 12 ppc64le","release_type":null,"former_identifier":"ibm-dlpar-sdk","name":"IBM DLPAR SDK for SLE","offline_predecessor_ids":[],"friendly_version":"12","release_stage":"released","identifier":"ibm-dlpar-sdk","id":1249,"extensions":[],"shortname":"IBMDLPS12","description":"IBM DLPAR SDK for SLE 12","free":true,"arch":"ppc64le","eula_url":"","product_class":"SLES-PPC","online_predecessor_ids":[],"repositories":[{"description":"IBM-DLPAR-SDK","installer_updates":false,"name":"IBM-DLPAR-SDK","url":"https://public.dhe.ibm.com/software/server/POWER/Linux/toolchain/at/suse/SLES_12/","distro_target":null,"autorefresh":true,"id":4429,"enabled":true}],"predecessor_ids":[],"cpe":"cpe:/o:suse:ibm-dlpar-sdk:12","product_type":"extension"},{"shortname":"IBMDLPU12","description":"IBM DLPAR Utils for SLE 12","free":true,"arch":"ppc64le","eula_url":"https://public.dhe.ibm.com/software/server/POWER/Linux/yum/OSS/SLES/12/ppc64le.license/","online_predecessor_ids":[],"product_class":"SLES-PPC","repositories":[{"name":"IBM-DLPAR-utils","installer_updates":false,"description":"IBM-DLPAR-utils","enabled":true,"id":6216,"autorefresh":true,"distro_target":null,"url":"https://public.dhe.ibm.com/software/server/POWER/Linux/yum/OSS/SLES/12/ppc64le/"}],"predecessor_ids":[],"cpe":"cpe:/o:suse:ibm-dlpar-utils:12","product_type":"extension","version":"12","recommended":false,"migration_extra":false,"friendly_name":"IBM DLPAR Utils for SLE 12 ppc64le","release_type":null,"former_identifier":"ibm-dlpar-utils","name":"IBM DLPAR Utils for SLE","offline_predecessor_ids":[],"friendly_version":"12","release_stage":"released","identifier":"ibm-dlpar-utils","id":1250,"extensions":[]},{"friendly_version":"12","id":1294,"release_stage":"released","identifier":"sle-module-adv-systems-management","extensions":[],"version":"12","recommended":false,"friendly_name":"Advanced Systems Management Module 12 ppc64le","migration_extra":false,"release_type":null,"former_identifier":"sle-module-adv-systems-management","name":"Advanced Systems Management Module","offline_predecessor_ids":[],"online_predecessor_ids":[],"repositories":[{"installer_updates":false,"name":"SLE-Module-Adv-Systems-Management12-Updates","description":"SLE-Module-Adv-Systems-Management12-Updates for sle-12-ppc64le","enabled":true,"id":1762,"distro_target":"sle-12-ppc64le","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Adv-Systems-Management/12/ppc64le/update/"},{"description":"SLE-Module-Adv-Systems-Management12-Debuginfo-Updates for sle-12-ppc64le","installer_updates":false,"name":"SLE-Module-Adv-Systems-Management12-Debuginfo-Updates","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Adv-Systems-Management/12/ppc64le/update_debug/","distro_target":"sle-12-ppc64le","autorefresh":true,"id":1763,"enabled":false},{"description":"SLE-Module-Adv-Systems-Management12-Pool for sle-12-ppc64le","name":"SLE-Module-Adv-Systems-Management12-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-12-ppc64le","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Adv-Systems-Management/12/ppc64le/product/","enabled":true,"id":1764},{"description":"SLE-Module-Adv-Systems-Management12-Debuginfo-Pool for sle-12-ppc64le","installer_updates":false,"name":"SLE-Module-Adv-Systems-Management12-Debuginfo-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Adv-Systems-Management/12/ppc64le/product_debug/","distro_target":"sle-12-ppc64le","autorefresh":false,"id":1765,"enabled":false},{"distro_target":"sle-12-ppc64le","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Adv-Systems-Management/12/ppc64le/product_source/","enabled":false,"id":1996,"description":"SLE-Module-Adv-Systems-Management12-Source-Pool for sle-12-ppc64le","installer_updates":false,"name":"SLE-Module-Adv-Systems-Management12-Source-Pool"}],"product_class":"MODULE","predecessor_ids":[],"cpe":"cpe:/o:suse:sle-module-adv-systems-management:12","product_type":"module","description":"

This Module contains current versions of the popular configuration management frameworks Puppet and CFEngine as well as the new systems management toolbox called machinery.

The machinery tool will be frequently updated and is SUSE's upcoming systems management toolbox for inspecting and validating systems remotely, storing their system description and creating new systems to deploy them in datacenters and clouds.

","shortname":"Adv-Sys-Mgmt-Module","free":true,"arch":"ppc64le","eula_url":""},{"predecessor_ids":[],"product_class":"MODULE","online_predecessor_ids":[],"repositories":[{"description":"SLE-Module-Toolchain12-Updates for sle-12-ppc64le","name":"SLE-Module-Toolchain12-Updates","installer_updates":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Toolchain/12/ppc64le/update/","autorefresh":true,"distro_target":"sle-12-ppc64le","id":1895,"enabled":true},{"enabled":false,"id":1896,"distro_target":"sle-12-ppc64le","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Toolchain/12/ppc64le/update_debug/","installer_updates":false,"name":"SLE-Module-Toolchain12-Debuginfo-Updates","description":"SLE-Module-Toolchain12-Debuginfo-Updates for sle-12-ppc64le"},{"description":"SLE-Module-Toolchain12-Pool for sle-12-ppc64le","name":"SLE-Module-Toolchain12-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Toolchain/12/ppc64le/product/","autorefresh":false,"distro_target":"sle-12-ppc64le","id":1897,"enabled":true},{"description":"SLE-Module-Toolchain12-Debuginfo-Pool for sle-12-ppc64le","installer_updates":false,"name":"SLE-Module-Toolchain12-Debuginfo-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Toolchain/12/ppc64le/product_debug/","distro_target":"sle-12-ppc64le","autorefresh":false,"id":1898,"enabled":false}],"cpe":"cpe:/o:suse:sle-module-toolchain:12","product_type":"module","description":"Via this Module you will have access to a more recent GCC and Toolchain in addition to the default compiler of SUSE Linux Enterprise. Access to the Toolchain Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself. Please check the Release Notes for further details.","shortname":"Toolchain-Module","free":true,"eula_url":"","arch":"ppc64le","friendly_version":"12","extensions":[],"id":1339,"release_stage":"released","identifier":"sle-module-toolchain","recommended":false,"version":"12","name":"Toolchain Module","offline_predecessor_ids":[],"friendly_name":"Toolchain Module 12 ppc64le","migration_extra":false,"release_type":null,"former_identifier":"sle-module-toolchain"},{"extensions":[],"release_stage":"released","identifier":"sle-module-containers","id":1353,"friendly_version":"12","offline_predecessor_ids":[],"name":"Containers Module","release_type":null,"former_identifier":"sle-module-containers","friendly_name":"Containers Module 12 ppc64le","migration_extra":false,"recommended":false,"version":"12","product_type":"module","cpe":"cpe:/o:suse:sle-module-containers:12","predecessor_ids":[],"online_predecessor_ids":[],"product_class":"MODULE","repositories":[{"description":"SLE-Module-Containers12-Updates for sle-12-ppc64le","installer_updates":false,"name":"SLE-Module-Containers12-Updates","distro_target":"sle-12-ppc64le","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/12/ppc64le/update/","enabled":true,"id":1972},{"installer_updates":false,"name":"SLE-Module-Containers12-Debuginfo-Updates","description":"SLE-Module-Containers12-Debuginfo-Updates for sle-12-ppc64le","id":1973,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/12/ppc64le/update_debug/","distro_target":"sle-12-ppc64le","autorefresh":true},{"installer_updates":false,"name":"SLE-Module-Containers12-Pool","description":"SLE-Module-Containers12-Pool for sle-12-ppc64le","enabled":true,"id":1974,"distro_target":"sle-12-ppc64le","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/12/ppc64le/product/"},{"name":"SLE-Module-Containers12-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-Containers12-Debuginfo-Pool for sle-12-ppc64le","id":1975,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/12/ppc64le/product_debug/","autorefresh":false,"distro_target":"sle-12-ppc64le"},{"description":"SLE-Module-Containers12-Source-Pool for sle-12-ppc64le","installer_updates":false,"name":"SLE-Module-Containers12-Source-Pool","distro_target":"sle-12-ppc64le","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/12/ppc64le/product_source/","enabled":false,"id":1976}],"eula_url":"","arch":"ppc64le","free":true,"description":"

This Module contains several packages revolving around containers and related tools.

","shortname":"Containers-Module"},{"shortname":"SDK12-SP2","description":"

SUSE Linux Enterprise Software Development Kit 12 is the Software Development Kit for the family of SUSE Linux Enterprise products. It is a free of charge extension for partners and customers working with SUSE Linux Enterprise Server and Desktop and derived products.

Packages on the SDK are delivered without L3 support; maintenance updates will be done for critical security and critical non-security issues, and where needed to remain in sync with packages delivered in the SUSE Linux Enterprise Server and Desktop products.

Packages to rebuild SUSE Linux Enterprise Server are not part of the SUSE Linux Enterprise Software Development Kit.

","free":true,"eula_url":"https://updates.suse.com/SUSE/Products/SLE-SDK/12-SP2/ppc64le/product.license/","arch":"ppc64le","predecessor_ids":[1145,1343],"online_predecessor_ids":[1145,1343],"repositories":[{"url":"https://updates.suse.com/SUSE/Updates/SLE-SDK/12-SP2/ppc64le/update/","autorefresh":true,"distro_target":"sle-12-ppc64le","id":2049,"enabled":true,"description":"SLE-SDK12-SP2-Updates for sle-12-ppc64le","name":"SLE-SDK12-SP2-Updates","installer_updates":false},{"enabled":false,"id":2050,"autorefresh":true,"distro_target":"sle-12-ppc64le","url":"https://updates.suse.com/SUSE/Updates/SLE-SDK/12-SP2/ppc64le/update_debug/","name":"SLE-SDK12-SP2-Debuginfo-Updates","installer_updates":false,"description":"SLE-SDK12-SP2-Debuginfo-Updates for sle-12-ppc64le"},{"autorefresh":false,"distro_target":"sle-12-ppc64le","url":"https://updates.suse.com/SUSE/Products/SLE-SDK/12-SP2/ppc64le/product/","enabled":true,"id":2051,"description":"SLE-SDK12-SP2-Pool for sle-12-ppc64le","name":"SLE-SDK12-SP2-Pool","installer_updates":false},{"description":"SLE-SDK12-SP2-Debuginfo-Pool for sle-12-ppc64le","name":"SLE-SDK12-SP2-Debuginfo-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-12-ppc64le","url":"https://updates.suse.com/SUSE/Products/SLE-SDK/12-SP2/ppc64le/product_debug/","enabled":false,"id":2052},{"description":"SLE-SDK12-SP2-Source-Pool for sle-12-ppc64le","installer_updates":false,"name":"SLE-SDK12-SP2-Source-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-SDK/12-SP2/ppc64le/product_source/","distro_target":"sle-12-ppc64le","autorefresh":false,"id":2053,"enabled":false}],"product_class":"SLE-SDK","cpe":"cpe:/o:suse:sle-sdk:12:sp2","product_type":"extension","recommended":false,"version":"12.2","name":"SUSE Linux Enterprise Software Development Kit","offline_predecessor_ids":[],"friendly_name":"SUSE Linux Enterprise Software Development Kit 12 SP2 ppc64le","migration_extra":false,"former_identifier":"sle-sdk","release_type":null,"friendly_version":"12 SP2","extensions":[],"identifier":"sle-sdk","release_stage":"released","id":1364},{"friendly_version":"12 SP2","extensions":[],"id":1481,"release_stage":"released","identifier":"PackageHub","recommended":false,"version":"12.2","offline_predecessor_ids":[],"name":"SUSE Package Hub","former_identifier":"PackageHub","release_type":null,"friendly_name":"SUSE Package Hub 12 SP2 ppc64le","migration_extra":false,"predecessor_ids":[1475,1478],"online_predecessor_ids":[1475,1478],"repositories":[{"description":"SUSE-PackageHub-12-SP2-Standard-Pool for sle-12-ppc64le","name":"SUSE-PackageHub-12-SP2-Standard-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Backports/SLE-12-SP2_ppc64le/standard/","autorefresh":false,"distro_target":"sle-12-ppc64le","id":2351,"enabled":true},{"enabled":false,"id":2352,"distro_target":"sle-12-ppc64le","autorefresh":true,"url":"https://updates.suse.com/SUSE/Backports/SLE-12-SP2_ppc64le/standard_debug/","installer_updates":false,"name":"SUSE-PackageHub-12-SP2-Debuginfo","description":"SUSE-PackageHub-12-SP2-Debuginfo for sle-12-ppc64le"},{"installer_updates":false,"name":"SUSE-PackageHub-12-SP2-Pool","description":"SUSE-PackageHub-12-SP2-Pool for sle-12-ppc64le","enabled":true,"id":2353,"distro_target":"sle-12-ppc64le","autorefresh":false,"url":"https://updates.suse.com/SUSE/Backports/SLE-12-SP2_ppc64le/product/"}],"product_class":"SLES-PPC","product_type":"extension","cpe":"cpe:/o:suse:packagehub:12:sp2","free":true,"description":"SUSE Package Hub is a free of charge extension providing access to community maintained packages built to run on SUSE Linux Enterprise Server. Built from the same sources used in the openSUSE distributions, these quality packages provide additional software to what is found in the SUSE Linux Enterprise Server product. Packages from the Package Hub are delivered without L3 support from SUSE. General updates and fixes to the packages in SUSE Package Hub are provided by the openSUSE community based on their discretion though SUSE will monitor and ensure that any known critical security issues will be addressed. Packages in the Package Hub are approved by SUSE for use with SUSE Linux Enterprise Server 12 and to not interfere with the supportability of SUSE Linux Enterprise Server it's modules and extensions. For more information about SUSE Package Hub please visit https://packagehub.suse.com.","shortname":"SUSE-PackageHub-12-SP2","eula_url":"","arch":"ppc64le"},{"friendly_version":"12 SP2","release_stage":"released","identifier":"SLES-LTSS","id":1737,"extensions":[],"version":"12.2","recommended":false,"friendly_name":"SUSE Linux Enterprise Server LTSS 12 SP2 ppc64le","migration_extra":false,"release_type":null,"former_identifier":"SLES-LTSS","name":"SUSE Linux Enterprise Server LTSS","offline_predecessor_ids":[],"product_class":"SLES12-SP2-LTSS-PPC","online_predecessor_ids":[],"repositories":[{"url":"https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-SP2-LTSS/ppc64le/update/","autorefresh":true,"distro_target":"sle-12-ppc64le","id":3044,"enabled":true,"description":"SLES12-SP2-LTSS-Updates for sle-12-ppc64le","name":"SLES12-SP2-LTSS-Updates","installer_updates":false},{"description":"SLES12-SP2-LTSS-Debuginfo-Updates for sle-12-ppc64le","installer_updates":false,"name":"SLES12-SP2-LTSS-Debuginfo-Updates","distro_target":"sle-12-ppc64le","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-SP2-LTSS/ppc64le/update_debug/","enabled":false,"id":3045}],"predecessor_ids":[],"cpe":"cpe:/o:suse:sles-ltss:12:sp2","product_type":"extension","shortname":"SLES12-SP2 LTSS","description":"SUSE Linux Enterprise offers a comprehensive suite of products built on a single code base. The platform addresses business needs from the smallest thin-client devices to the world's most powerful high-performance computing and mainframe servers. SUSE Linux Enterprise offers common management tools and technology certifications across the platform, and each product is enterprise-class.","free":false,"arch":"ppc64le","eula_url":""},{"eula_url":"https://updates.suse.com/SUSE/Products/SLE-Live-Patching/12/ppc64le/product.license/","arch":"ppc64le","free":false,"shortname":"Live-Patching","description":"

SUSE Linux Enterprise Live Patching provides packages to update critical kernel modules live in SUSE Linux Enterprise. With SUSE Linux Enterprise Live Patching, you can perform critical kernel patching without shutting down your system, reducing the need for planned downtime and increasing service availability.

","product_type":"extension","cpe":"cpe:/o:suse:sle-live-patching:12","predecessor_ids":[],"online_predecessor_ids":[],"repositories":[{"autorefresh":true,"distro_target":"sle-12-ppc64le","url":"https://updates.suse.com/SUSE/Updates/SLE-Live-Patching/12/ppc64le/update/","enabled":true,"id":3563,"description":"SLE-Live-Patching12-Updates for sle-12-ppc64le","name":"SLE-Live-Patching12-Updates","installer_updates":false},{"description":"SLE-Live-Patching12-Debuginfo-Updates for sle-12-ppc64le","installer_updates":false,"name":"SLE-Live-Patching12-Debuginfo-Updates","distro_target":"sle-12-ppc64le","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Live-Patching/12/ppc64le/update_debug/","enabled":false,"id":3564},{"installer_updates":false,"name":"SLE-Live-Patching12-Pool","description":"SLE-Live-Patching12-Pool for sle-12-ppc64le","id":3565,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Live-Patching/12/ppc64le/product/","distro_target":"sle-12-ppc64le","autorefresh":false},{"id":3566,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Live-Patching/12/ppc64le/product_debug/","distro_target":"sle-12-ppc64le","autorefresh":false,"installer_updates":false,"name":"SLE-Live-Patching12-Debuginfo-Pool","description":"SLE-Live-Patching12-Debuginfo-Pool for sle-12-ppc64le"},{"description":"SLE-Live-Patching12-Source-Pool for sle-12-ppc64le","installer_updates":false,"name":"SLE-Live-Patching12-Source-Pool","distro_target":"sle-12-ppc64le","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Live-Patching/12/ppc64le/product_source/","enabled":false,"id":3567}],"product_class":"SLE-LP-PPC","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Live Patching","release_type":null,"former_identifier":"sle-live-patching","migration_extra":false,"friendly_name":"SUSE Linux Enterprise Live Patching 12 ppc64le","recommended":false,"version":"12","extensions":[],"id":1860,"release_stage":"released","identifier":"sle-live-patching","friendly_version":"12"}],"release_stage":"released","identifier":"SLES_SAP","id":1521,"free":false,"description":"SUSE LINUX Enterprise Server 12 SP2 for SAP Applications","shortname":"SLE-12-SP2-SAP","eula_url":"https://updates.suse.com/SUSE/Products/SLE-SAP/12-SP2/ppc64le/product.license/","arch":"ppc64le","predecessor_ids":[1437],"online_predecessor_ids":[1437],"product_class":"AiO-PPC","repositories":[{"name":"SLES12-SP2-Updates","installer_updates":false,"description":"SLES12-SP2-Updates for sle-12-ppc64le","enabled":true,"id":2003,"autorefresh":true,"distro_target":"sle-12-ppc64le","url":"https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-SP2/ppc64le/update/"},{"url":"https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-SP2/ppc64le/update_debug/","autorefresh":true,"distro_target":"sle-12-ppc64le","id":2004,"enabled":false,"description":"SLES12-SP2-Debuginfo-Updates for sle-12-ppc64le","name":"SLES12-SP2-Debuginfo-Updates","installer_updates":false},{"name":"SLES12-SP2-Pool","installer_updates":false,"description":"SLES12-SP2-Pool for sle-12-ppc64le","enabled":true,"id":2005,"autorefresh":false,"distro_target":"sle-12-ppc64le","url":"https://updates.suse.com/SUSE/Products/SLE-SERVER/12-SP2/ppc64le/product/"},{"id":2006,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-SERVER/12-SP2/ppc64le/product_debug/","autorefresh":false,"distro_target":"sle-12-ppc64le","name":"SLES12-SP2-Debuginfo-Pool","installer_updates":false,"description":"SLES12-SP2-Debuginfo-Pool for sle-12-ppc64le"},{"installer_updates":false,"name":"SLES12-SP2-Source-Pool","description":"SLES12-SP2-Source-Pool for sle-12-ppc64le","id":2007,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-SERVER/12-SP2/ppc64le/product_source/","distro_target":"sle-12-ppc64le","autorefresh":false},{"description":"SLE-HA12-SP2-Updates for sle-12-ppc64le","installer_updates":false,"name":"SLE-HA12-SP2-Updates","distro_target":"sle-12-ppc64le","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-HA/12-SP2/ppc64le/update/","enabled":true,"id":2183},{"description":"SLE-HA12-SP2-Debuginfo-Updates for sle-12-ppc64le","installer_updates":false,"name":"SLE-HA12-SP2-Debuginfo-Updates","url":"https://updates.suse.com/SUSE/Updates/SLE-HA/12-SP2/ppc64le/update_debug/","distro_target":"sle-12-ppc64le","autorefresh":true,"id":2184,"enabled":false},{"name":"SLE-HA12-SP2-Pool","installer_updates":false,"description":"SLE-HA12-SP2-Pool for sle-12-ppc64le","id":2185,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-HA/12-SP2/ppc64le/product/","autorefresh":false,"distro_target":"sle-12-ppc64le"},{"description":"SLE-HA12-SP2-Debuginfo-Pool for sle-12-ppc64le","name":"SLE-HA12-SP2-Debuginfo-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-12-ppc64le","url":"https://updates.suse.com/SUSE/Products/SLE-HA/12-SP2/ppc64le/product_debug/","enabled":false,"id":2186},{"name":"SLE-HA12-SP2-Source-Pool","installer_updates":false,"description":"SLE-HA12-SP2-Source-Pool for sle-12-ppc64le","id":2187,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-HA/12-SP2/ppc64le/product_source/","autorefresh":false,"distro_target":"sle-12-ppc64le"},{"description":"SLE-12-SP2-SAP-Updates for sle-12-ppc64le","name":"SLE-12-SP2-SAP-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-12-ppc64le","url":"https://updates.suse.com/SUSE/Updates/SLE-SAP/12-SP2/ppc64le/update/","enabled":true,"id":2415},{"installer_updates":false,"name":"SLE-12-SP2-SAP-Debuginfo-Updates","description":"SLE-12-SP2-SAP-Debuginfo-Updates for sle-12-ppc64le","enabled":false,"id":2416,"distro_target":"sle-12-ppc64le","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-SAP/12-SP2/ppc64le/update_debug/"},{"url":"https://updates.suse.com/SUSE/Updates/SLE-SAP-INSTALLER/12-SP2/ppc64le/update/","distro_target":"sle-12-ppc64le","autorefresh":true,"id":2417,"enabled":false,"description":"SLE12-SP2-SAP-Installer-Updates for sle-12-ppc64le","installer_updates":true,"name":"SLE12-SP2-SAP-Installer-Updates"},{"autorefresh":false,"distro_target":"sle-12-ppc64le","url":"https://updates.suse.com/SUSE/Products/SLE-SAP/12-SP2/ppc64le/product/","enabled":true,"id":2418,"description":"SLE12-SP2-SAP-Pool for sle-12-ppc64le","name":"SLE12-SP2-SAP-Pool","installer_updates":false},{"url":"https://updates.suse.com/SUSE/Products/SLE-SAP/12-SP2/ppc64le/product_debug/","distro_target":"sle-12-ppc64le","autorefresh":false,"id":2419,"enabled":false,"description":"SLE12-SP2-SAP-Debuginfo-Pool for sle-12-ppc64le","installer_updates":false,"name":"SLE12-SP2-SAP-Debuginfo-Pool"},{"autorefresh":false,"distro_target":"sle-12-ppc64le","url":"https://updates.suse.com/SUSE/Products/SLE-SAP/12-SP2/ppc64le/product_source/","enabled":false,"id":2420,"description":"SLE12-SP2-SAP-Source-Pool for sle-12-ppc64le","name":"SLE12-SP2-SAP-Source-Pool","installer_updates":false}],"product_type":"base","cpe":"cpe:/o:suse:sles_sap:12:sp2"},{"eula_url":"https://updates.suse.com/SUSE/Products/SLE-Module-HPC/12/aarch64/product.license/","arch":"aarch64","free":true,"description":"The SUSE Linux Enterprise Server High Performance Computing (HPC) module delivers specific tools commonly used for high performance, numerically intensive workloads. SUSE packages these tools in the SLES HPC Module to provide greater flexibility to deliver new versions or new tools more rapidly than the standard SUSE Linux Enterprise lifecycle would permit. Packages in this module are general supported till a newer version of the package is released or the package is dropped from the module.","shortname":"HPC-Module","product_type":"module","cpe":"cpe:/o:suse:sle-module-hpc:12","predecessor_ids":[],"online_predecessor_ids":[],"repositories":[{"id":2421,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-HPC/12/aarch64/update/","distro_target":"sle-12-aarch64","autorefresh":true,"installer_updates":false,"name":"SLE-Module-HPC12-Updates","description":"SLE-Module-HPC12-Updates for sle-12-aarch64"},{"distro_target":"sle-12-aarch64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-HPC/12/aarch64/update_debug/","enabled":false,"id":2422,"description":"SLE-Module-HPC12-Debuginfo-Updates for sle-12-aarch64","installer_updates":false,"name":"SLE-Module-HPC12-Debuginfo-Updates"},{"description":"SLE-Module-HPC12-Pool for sle-12-aarch64","installer_updates":false,"name":"SLE-Module-HPC12-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-HPC/12/aarch64/product/","distro_target":"sle-12-aarch64","autorefresh":false,"id":2423,"enabled":true},{"name":"SLE-Module-HPC12-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-HPC12-Debuginfo-Pool for sle-12-aarch64","enabled":false,"id":2424,"autorefresh":false,"distro_target":"sle-12-aarch64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-HPC/12/aarch64/product_debug/"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-HPC/12/aarch64/product_source/","autorefresh":false,"distro_target":"sle-12-aarch64","id":2425,"enabled":false,"description":"SLE-Module-HPC12-Source-Pool for sle-12-aarch64","name":"SLE-Module-HPC12-Source-Pool","installer_updates":false}],"product_class":"MODULE","offline_predecessor_ids":[],"name":"HPC Module","release_type":null,"former_identifier":"sle-module-hpc","migration_extra":false,"friendly_name":"HPC Module 12 aarch64","recommended":false,"version":"12","extensions":[],"release_stage":"released","identifier":"sle-module-hpc","id":1522,"friendly_version":"12"},{"extensions":[],"release_stage":"released","identifier":"SLES-BCL","id":1523,"friendly_version":"12 SP2","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Server BCL","release_type":null,"former_identifier":"SLES-BCL","migration_extra":false,"friendly_name":"SUSE Linux Enterprise Server BCL 12 SP2 x86_64","recommended":false,"version":"12.2","product_type":"extension","cpe":"cpe:/o:suse:sles-bcl:12:sp2","predecessor_ids":[],"product_class":"BCL-X86","online_predecessor_ids":[],"repositories":[{"id":2426,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-SP2-BCL/x86_64/update/","autorefresh":true,"distro_target":"sle-12-x86_64","name":"SLES12-SP2-BCL-Updates","installer_updates":false,"description":"SLES12-SP2-BCL-Updates for sle-12-x86_64"},{"name":"SLES12-SP2-BCL-Debuginfo-Updates","installer_updates":false,"description":"SLES12-SP2-BCL-Debuginfo-Updates for sle-12-x86_64","enabled":false,"id":2427,"autorefresh":true,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-SP2-BCL/x86_64/update_debug/"},{"id":2442,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-SERVER/12-SP2-BCL/x86_64/product/","autorefresh":false,"distro_target":"sle-12-x86_64","name":"SLES12-SP2-BCL-Pool","installer_updates":false,"description":"SLES12-SP2-BCL-Pool for sle-12-x86_64"},{"installer_updates":false,"name":"SLES12-SP2-BCL-Debuginfo-Pool","description":"SLES12-SP2-BCL-Debuginfo-Pool for sle-12-x86_64","enabled":false,"id":2443,"distro_target":"sle-12-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-SERVER/12-SP2-BCL/x86_64/product_debug/"},{"url":"https://updates.suse.com/SUSE/Products/SLE-SERVER/12-SP2-BCL/x86_64/product_source/","autorefresh":false,"distro_target":"sle-12-x86_64","id":2444,"enabled":false,"description":"SLES12-SP2-BCL-Source-Pool for sle-12-x86_64","name":"SLES12-SP2-BCL-Source-Pool","installer_updates":false}],"eula_url":"","arch":"x86_64","free":false,"shortname":"SLES12-SP2 BCL","description":"SUSE Linux Enterprise offers a comprehensive suite of products built on a single code base. The platform addresses business needs from the smallest thin-client devices to the world's most powerful high-performance computing and mainframe servers. SUSE Linux Enterprise offers common management tools and technology certifications across the platform, and each product is enterprise-class."},{"id":1526,"release_stage":"released","identifier":"ses","extensions":[],"friendly_version":"5","release_type":null,"former_identifier":"ses","migration_extra":false,"friendly_name":"SUSE Enterprise Storage 5 x86_64","offline_predecessor_ids":[],"name":"SUSE Enterprise Storage","version":"5","recommended":false,"product_type":"extension","cpe":"cpe:/o:suse:ses:5","repositories":[{"name":"SUSE-Enterprise-Storage-5-Updates","installer_updates":false,"description":"SUSE-Enterprise-Storage-5-Updates for sle-12-x86_64","enabled":true,"id":2432,"autorefresh":true,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Updates/Storage/5/x86_64/update/"},{"installer_updates":false,"name":"SUSE-Enterprise-Storage-5-Debuginfo-Updates","description":"SUSE-Enterprise-Storage-5-Debuginfo-Updates for sle-12-x86_64","id":2433,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/Storage/5/x86_64/update_debug/","distro_target":"sle-12-x86_64","autorefresh":true},{"installer_updates":false,"name":"SUSE-Enterprise-Storage-5-Pool","description":"SUSE-Enterprise-Storage-5-Pool for sle-12-x86_64","id":2434,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/Storage/5/x86_64/product/","distro_target":"sle-12-x86_64","autorefresh":false},{"id":2435,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/Storage/5/x86_64/product_debug/","autorefresh":false,"distro_target":"sle-12-x86_64","name":"SUSE-Enterprise-Storage-5-Debuginfo-Pool","installer_updates":false,"description":"SUSE-Enterprise-Storage-5-Debuginfo-Pool for sle-12-x86_64"},{"installer_updates":false,"name":"SUSE-Enterprise-Storage-5-Source-Pool","description":"SUSE-Enterprise-Storage-5-Source-Pool for sle-12-x86_64","id":2436,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/Storage/5/x86_64/product_source/","distro_target":"sle-12-x86_64","autorefresh":false}],"online_predecessor_ids":[1416],"product_class":"SES","predecessor_ids":[1416],"arch":"x86_64","eula_url":"https://updates.suse.com/SUSE/Products/Storage/5/x86_64/product.license/","free":false,"description":"SUSE Enterprise Storage 5 for SUSE Linux Enterprise Server 12-SP3, powered by Ceph.","shortname":"SES5"},{"extensions":[],"release_stage":"released","id":1527,"identifier":"ses","friendly_version":"5","offline_predecessor_ids":[],"name":"SUSE Enterprise Storage","former_identifier":"ses","release_type":null,"migration_extra":false,"friendly_name":"SUSE Enterprise Storage 5 aarch64","recommended":false,"version":"5","product_type":"extension","cpe":"cpe:/o:suse:ses:5","predecessor_ids":[1417],"online_predecessor_ids":[1417],"repositories":[{"url":"https://updates.suse.com/SUSE/Updates/Storage/5/aarch64/update/","autorefresh":true,"distro_target":"sle-12-aarch64","id":2437,"enabled":true,"description":"SUSE-Enterprise-Storage-5-Updates for sle-12-aarch64","name":"SUSE-Enterprise-Storage-5-Updates","installer_updates":false},{"enabled":false,"id":2438,"distro_target":"sle-12-aarch64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/Storage/5/aarch64/update_debug/","installer_updates":false,"name":"SUSE-Enterprise-Storage-5-Debuginfo-Updates","description":"SUSE-Enterprise-Storage-5-Debuginfo-Updates for sle-12-aarch64"},{"url":"https://updates.suse.com/SUSE/Products/Storage/5/aarch64/product/","distro_target":"sle-12-aarch64","autorefresh":false,"id":2439,"enabled":true,"description":"SUSE-Enterprise-Storage-5-Pool for sle-12-aarch64","installer_updates":false,"name":"SUSE-Enterprise-Storage-5-Pool"},{"description":"SUSE-Enterprise-Storage-5-Debuginfo-Pool for sle-12-aarch64","name":"SUSE-Enterprise-Storage-5-Debuginfo-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/Storage/5/aarch64/product_debug/","autorefresh":false,"distro_target":"sle-12-aarch64","id":2440,"enabled":false},{"installer_updates":false,"name":"SUSE-Enterprise-Storage-5-Source-Pool","description":"SUSE-Enterprise-Storage-5-Source-Pool for sle-12-aarch64","id":2441,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/Storage/5/aarch64/product_source/","distro_target":"sle-12-aarch64","autorefresh":false}],"product_class":"SES-ARM64","eula_url":"https://updates.suse.com/SUSE/Products/Storage/5/aarch64/product.license/","arch":"aarch64","free":false,"shortname":"SES5","description":"SUSE Enterprise Storage 5 for SUSE Linux Enterprise Server 12-SP3, powered by Ceph."},{"migration_extra":false,"friendly_name":"Public Cloud Module 12 aarch64","former_identifier":"sle-module-public-cloud","release_type":null,"name":"Public Cloud Module","offline_predecessor_ids":[],"version":"12","recommended":false,"release_stage":"released","identifier":"sle-module-public-cloud","id":1528,"extensions":[],"friendly_version":"12","arch":"aarch64","eula_url":"","description":"

The Public Cloud Module is a collection of tools that enables you to create and manage cloud images from the commandline on SUSE Linux Enterprise Server. When building your own images with KIWI or SUSE Studio, initialization code specific to the target cloud is included in that image.

Access to the Public Cloud Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself; please check the Release Notes for further details.

","shortname":"Public-Cloud-Module","free":true,"cpe":"cpe:/o:suse:sle-module-public-cloud:12","product_type":"module","online_predecessor_ids":[],"product_class":"MODULE","repositories":[{"autorefresh":true,"distro_target":"sle-12-aarch64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/12/aarch64/update/","enabled":true,"id":2157,"description":"SLE-Module-Public-Cloud12-Updates for sle-12-aarch64","name":"SLE-Module-Public-Cloud12-Updates","installer_updates":false},{"name":"SLE-Module-Public-Cloud12-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-Public-Cloud12-Debuginfo-Updates for sle-12-aarch64","id":2158,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/12/aarch64/update_debug/","autorefresh":true,"distro_target":"sle-12-aarch64"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/12/aarch64/product/","distro_target":"sle-12-aarch64","autorefresh":false,"id":2159,"enabled":true,"description":"SLE-Module-Public-Cloud12-Pool for sle-12-aarch64","installer_updates":false,"name":"SLE-Module-Public-Cloud12-Pool"},{"description":"SLE-Module-Public-Cloud12-Debuginfo-Pool for sle-12-aarch64","name":"SLE-Module-Public-Cloud12-Debuginfo-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/12/aarch64/product_debug/","autorefresh":false,"distro_target":"sle-12-aarch64","id":2160,"enabled":false},{"installer_updates":false,"name":"SLE-Module-Public-Cloud12-Source-Pool","description":"SLE-Module-Public-Cloud12-Source-Pool for sle-12-aarch64","id":2161,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/12/aarch64/product_source/","distro_target":"sle-12-aarch64","autorefresh":false}],"predecessor_ids":[]},{"extensions":[],"release_stage":"released","identifier":"PackageHub","id":1529,"friendly_version":"12 SP3","offline_predecessor_ids":[],"name":"SUSE Package Hub","release_type":null,"former_identifier":"PackageHub","friendly_name":"SUSE Package Hub 12 SP3 x86_64","migration_extra":false,"recommended":false,"version":"12.3","product_type":"extension","cpe":"cpe:/o:suse:packagehub:12:sp3","predecessor_ids":[1473,1476,1479],"product_class":"MODULE","online_predecessor_ids":[1473,1476,1479],"repositories":[{"id":2445,"enabled":true,"url":"https://updates.suse.com/SUSE/Backports/SLE-12-SP3_x86_64/standard/","distro_target":"sle-12-x86_64","autorefresh":false,"installer_updates":false,"name":"SUSE-PackageHub-12-SP3-Standard-Pool","description":"SUSE-PackageHub-12-SP3-Standard-Pool for sle-12-x86_64"},{"url":"https://updates.suse.com/SUSE/Backports/SLE-12-SP3_x86_64/standard_debug/","autorefresh":true,"distro_target":"sle-12-x86_64","id":2446,"enabled":false,"description":"SUSE-PackageHub-12-SP3-Debuginfo for sle-12-x86_64","name":"SUSE-PackageHub-12-SP3-Debuginfo","installer_updates":false},{"name":"SUSE-PackageHub-12-SP3-Pool","installer_updates":false,"description":"SUSE-PackageHub-12-SP3-Pool for sle-12-x86_64","id":2447,"enabled":true,"url":"https://updates.suse.com/SUSE/Backports/SLE-12-SP3_x86_64/product/","autorefresh":false,"distro_target":"sle-12-x86_64"}],"eula_url":"","arch":"x86_64","free":true,"description":"SUSE Package Hub is a free of charge extension providing access to community maintained packages built to run on SUSE Linux Enterprise Server. Built from the same sources used in the openSUSE distributions, these quality packages provide additional software to what is found in the SUSE Linux Enterprise Server product. Packages from the Package Hub are delivered without L3 support from SUSE. General updates and fixes to the packages in SUSE Package Hub are provided by the openSUSE community based on their discretion though SUSE will monitor and ensure that any known critical security issues will be addressed. Packages in the Package Hub are approved by SUSE for use with SUSE Linux Enterprise Server 12 and to not interfere with the supportability of SUSE Linux Enterprise Server it's modules and extensions. For more information about SUSE Package Hub please visit https://packagehub.suse.com.","shortname":"SUSE-PackageHub-12-SP3"},{"online_predecessor_ids":[1474,1477,1480],"repositories":[{"url":"https://updates.suse.com/SUSE/Backports/SLE-12-SP3_s390x/standard/","distro_target":"sle-12-s390x","autorefresh":false,"id":2448,"enabled":true,"description":"SUSE-PackageHub-12-SP3-Standard-Pool for sle-12-s390x","installer_updates":false,"name":"SUSE-PackageHub-12-SP3-Standard-Pool"},{"url":"https://updates.suse.com/SUSE/Backports/SLE-12-SP3_s390x/standard_debug/","autorefresh":true,"distro_target":"sle-12-s390x","id":2449,"enabled":false,"description":"SUSE-PackageHub-12-SP3-Debuginfo for sle-12-s390x","name":"SUSE-PackageHub-12-SP3-Debuginfo","installer_updates":false},{"enabled":true,"id":2450,"autorefresh":false,"distro_target":"sle-12-s390x","url":"https://updates.suse.com/SUSE/Backports/SLE-12-SP3_s390x/product/","name":"SUSE-PackageHub-12-SP3-Pool","installer_updates":false,"description":"SUSE-PackageHub-12-SP3-Pool for sle-12-s390x"}],"product_class":"MODULE","predecessor_ids":[1474,1477,1480],"cpe":"cpe:/o:suse:packagehub:12:sp3","product_type":"extension","shortname":"SUSE-PackageHub-12-SP3","description":"SUSE Package Hub is a free of charge extension providing access to community maintained packages built to run on SUSE Linux Enterprise Server. Built from the same sources used in the openSUSE distributions, these quality packages provide additional software to what is found in the SUSE Linux Enterprise Server product. Packages from the Package Hub are delivered without L3 support from SUSE. General updates and fixes to the packages in SUSE Package Hub are provided by the openSUSE community based on their discretion though SUSE will monitor and ensure that any known critical security issues will be addressed. Packages in the Package Hub are approved by SUSE for use with SUSE Linux Enterprise Server 12 and to not interfere with the supportability of SUSE Linux Enterprise Server it's modules and extensions. For more information about SUSE Package Hub please visit https://packagehub.suse.com.","free":true,"arch":"s390x","eula_url":"","friendly_version":"12 SP3","identifier":"PackageHub","release_stage":"released","id":1530,"extensions":[],"version":"12.3","recommended":false,"migration_extra":false,"friendly_name":"SUSE Package Hub 12 SP3 s390x","former_identifier":"PackageHub","release_type":null,"name":"SUSE Package Hub","offline_predecessor_ids":[]},{"version":"12.3","recommended":false,"former_identifier":"PackageHub","release_type":null,"friendly_name":"SUSE Package Hub 12 SP3 ppc64le","migration_extra":false,"offline_predecessor_ids":[],"name":"SUSE Package Hub","friendly_version":"12 SP3","release_stage":"released","id":1531,"identifier":"PackageHub","extensions":[],"free":true,"shortname":"SUSE-PackageHub-12-SP3","description":"SUSE Package Hub is a free of charge extension providing access to community maintained packages built to run on SUSE Linux Enterprise Server. Built from the same sources used in the openSUSE distributions, these quality packages provide additional software to what is found in the SUSE Linux Enterprise Server product. Packages from the Package Hub are delivered without L3 support from SUSE. General updates and fixes to the packages in SUSE Package Hub are provided by the openSUSE community based on their discretion though SUSE will monitor and ensure that any known critical security issues will be addressed. Packages in the Package Hub are approved by SUSE for use with SUSE Linux Enterprise Server 12 and to not interfere with the supportability of SUSE Linux Enterprise Server it's modules and extensions. For more information about SUSE Package Hub please visit https://packagehub.suse.com.","arch":"ppc64le","eula_url":"","product_class":"MODULE","online_predecessor_ids":[1475,1478,1481],"repositories":[{"url":"https://updates.suse.com/SUSE/Backports/SLE-12-SP3_ppc64le/standard/","autorefresh":false,"distro_target":"sle-12-ppc64le","id":2451,"enabled":true,"description":"SUSE-PackageHub-12-SP3-Standard-Pool for sle-12-ppc64le","name":"SUSE-PackageHub-12-SP3-Standard-Pool","installer_updates":false},{"enabled":false,"id":2452,"autorefresh":true,"distro_target":"sle-12-ppc64le","url":"https://updates.suse.com/SUSE/Backports/SLE-12-SP3_ppc64le/standard_debug/","name":"SUSE-PackageHub-12-SP3-Debuginfo","installer_updates":false,"description":"SUSE-PackageHub-12-SP3-Debuginfo for sle-12-ppc64le"},{"installer_updates":false,"name":"SUSE-PackageHub-12-SP3-Pool","description":"SUSE-PackageHub-12-SP3-Pool for sle-12-ppc64le","id":2453,"enabled":true,"url":"https://updates.suse.com/SUSE/Backports/SLE-12-SP3_ppc64le/product/","distro_target":"sle-12-ppc64le","autorefresh":false}],"predecessor_ids":[1475,1478,1481],"product_type":"extension","cpe":"cpe:/o:suse:packagehub:12:sp3"},{"id":1532,"release_stage":"released","identifier":"PackageHub","extensions":[],"friendly_version":"12 SP3","former_identifier":"PackageHub","release_type":null,"friendly_name":"SUSE Package Hub 12 SP3 aarch64","migration_extra":false,"offline_predecessor_ids":[],"name":"SUSE Package Hub","version":"12.3","recommended":false,"product_type":"extension","cpe":"cpe:/o:suse:packagehub:12:sp3","product_class":"MODULE","online_predecessor_ids":[1482],"repositories":[{"installer_updates":false,"name":"SUSE-PackageHub-12-SP3-Standard-Pool","description":"SUSE-PackageHub-12-SP3-Standard-Pool for sle-12-aarch64","enabled":true,"id":2454,"distro_target":"sle-12-aarch64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Backports/SLE-12-SP3_aarch64/standard/"},{"id":2455,"enabled":false,"url":"https://updates.suse.com/SUSE/Backports/SLE-12-SP3_aarch64/standard_debug/","autorefresh":true,"distro_target":"sle-12-aarch64","name":"SUSE-PackageHub-12-SP3-Debuginfo","installer_updates":false,"description":"SUSE-PackageHub-12-SP3-Debuginfo for sle-12-aarch64"},{"url":"https://updates.suse.com/SUSE/Backports/SLE-12-SP3_aarch64/product/","autorefresh":false,"distro_target":"sle-12-aarch64","id":2456,"enabled":true,"description":"SUSE-PackageHub-12-SP3-Pool for sle-12-aarch64","name":"SUSE-PackageHub-12-SP3-Pool","installer_updates":false}],"predecessor_ids":[1482],"arch":"aarch64","eula_url":"","free":true,"shortname":"SUSE-PackageHub-12-SP3","description":"SUSE Package Hub is a free of charge extension providing access to community maintained packages built to run on SUSE Linux Enterprise Server. Built from the same sources used in the openSUSE distributions, these quality packages provide additional software to what is found in the SUSE Linux Enterprise Server product. Packages from the Package Hub are delivered without L3 support from SUSE. General updates and fixes to the packages in SUSE Package Hub are provided by the openSUSE community based on their discretion though SUSE will monitor and ensure that any known critical security issues will be addressed. Packages in the Package Hub are approved by SUSE for use with SUSE Linux Enterprise Server 12 and to not interfere with the supportability of SUSE Linux Enterprise Server it's modules and extensions. For more information about SUSE Package Hub please visit https://packagehub.suse.com."},{"predecessor_ids":[],"product_class":"SLES12-SP1-LTSS-X86","online_predecessor_ids":[],"repositories":[{"autorefresh":true,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-SP1-LTSS/x86_64/update/","enabled":true,"id":2457,"description":"SLES12-SP1-LTSS-Updates for sle-12-x86_64","name":"SLES12-SP1-LTSS-Updates","installer_updates":false},{"url":"https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-SP1-LTSS/x86_64/update_debug/","autorefresh":true,"distro_target":"sle-12-x86_64","id":2458,"enabled":false,"description":"SLES12-SP1-LTSS-Debuginfo-Updates for sle-12-x86_64","name":"SLES12-SP1-LTSS-Debuginfo-Updates","installer_updates":false}],"cpe":"cpe:/o:suse:sles-ltss:12:sp1","product_type":"extension","description":"SUSE Linux Enterprise offers a comprehensive suite of products built on a single code base. The platform addresses business needs from the smallest thin-client devices to the world's most powerful high-performance computing and mainframe servers. SUSE Linux Enterprise offers common management tools and technology certifications across the platform, and each product is enterprise-class.","shortname":"SLES12-SP1 LTSS","free":false,"eula_url":"","arch":"x86_64","friendly_version":"12 SP1","extensions":[],"release_stage":"released","id":1533,"identifier":"SLES-LTSS","recommended":false,"version":"12.1","name":"SUSE Linux Enterprise Server LTSS","offline_predecessor_ids":[],"friendly_name":"SUSE Linux Enterprise Server LTSS 12 SP1 x86_64","migration_extra":false,"former_identifier":"SLES-LTSS","release_type":null},{"cpe":"cpe:/o:suse:sles-ltss:12:sp1","product_type":"extension","predecessor_ids":[],"online_predecessor_ids":[],"repositories":[{"enabled":true,"id":2461,"distro_target":"sle-12-s390x","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-SP1-LTSS/s390x/update/","installer_updates":false,"name":"SLES12-SP1-LTSS-Updates","description":"SLES12-SP1-LTSS-Updates for sle-12-s390x"},{"autorefresh":true,"distro_target":"sle-12-s390x","url":"https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-SP1-LTSS/s390x/update_debug/","enabled":false,"id":2462,"description":"SLES12-SP1-LTSS-Debuginfo-Updates for sle-12-s390x","name":"SLES12-SP1-LTSS-Debuginfo-Updates","installer_updates":false}],"product_class":"SLES12-SP1-LTSS-Z","eula_url":"","arch":"s390x","description":"SUSE Linux Enterprise offers a comprehensive suite of products built on a single code base. The platform addresses business needs from the smallest thin-client devices to the world's most powerful high-performance computing and mainframe servers. SUSE Linux Enterprise offers common management tools and technology certifications across the platform, and each product is enterprise-class.","shortname":"SLES12-SP1 LTSS","free":false,"extensions":[],"identifier":"SLES-LTSS","release_stage":"released","id":1535,"friendly_version":"12 SP1","name":"SUSE Linux Enterprise Server LTSS","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Server LTSS 12 SP1 s390x","release_type":null,"former_identifier":"SLES-LTSS","recommended":false,"version":"12.1"},{"eula_url":"https://updates.suse.com/SUSE/Products/SLE-Live-Patching/12-SP3/x86_64/product.license/","arch":"x86_64","description":"

SUSE Linux Enterprise Live Patching provides packages to update critical kernel modules live in SUSE Linux Enterprise. With SUSE Linux Enterprise Live Patching, you can perform critical kernel patching without shutting down your system, reducing the need for planned downtime and increasing service availability.

","shortname":"Live-Patching","free":false,"cpe":"cpe:/o:suse:sle-live-patching:12:sp3","product_type":"extension","predecessor_ids":[1253],"online_predecessor_ids":[1253],"product_class":"SLE-LP","repositories":[{"installer_updates":false,"name":"SLE-Live-Patching12-SP3-Updates","description":"SLE-Live-Patching12-SP3-Updates for sle-12-x86_64","enabled":true,"id":2463,"distro_target":"sle-12-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Live-Patching/12-SP3/x86_64/update/"},{"description":"SLE-Live-Patching12-SP3-Debuginfo-Updates for sle-12-x86_64","name":"SLE-Live-Patching12-SP3-Debuginfo-Updates","installer_updates":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Live-Patching/12-SP3/x86_64/update_debug/","autorefresh":true,"distro_target":"sle-12-x86_64","id":2464,"enabled":false},{"id":2465,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Live-Patching/12-SP3/x86_64/product/","autorefresh":false,"distro_target":"sle-12-x86_64","name":"SLE-Live-Patching12-SP3-Pool","installer_updates":false,"description":"SLE-Live-Patching12-SP3-Pool for sle-12-x86_64"},{"distro_target":"sle-12-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Live-Patching/12-SP3/x86_64/product_debug/","enabled":false,"id":2466,"description":"SLE-Live-Patching12-SP3-Debuginfo-Pool for sle-12-x86_64","installer_updates":false,"name":"SLE-Live-Patching12-SP3-Debuginfo-Pool"}],"name":"SUSE Linux Enterprise Live Patching","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Live Patching 12 SP3 x86_64","release_type":null,"former_identifier":"sle-live-patching","recommended":false,"version":"12.3","extensions":[],"release_stage":"released","identifier":"sle-live-patching","id":1536,"friendly_version":"12 SP3"},{"free":false,"description":"

SUSE Linux Enterprise Live Patching provides packages to update critical kernel modules live in SUSE Linux Enterprise. With SUSE Linux Enterprise Live Patching, you can perform critical kernel patching without shutting down your system, reducing the need for planned downtime and increasing service availability.

","shortname":"Live-Patching","eula_url":"https://updates.suse.com/SUSE/Products/SLE-Live-Patching/12-SP3/ppc64le/product.license/","arch":"ppc64le","predecessor_ids":[1860],"online_predecessor_ids":[1860],"product_class":"SLE-LP-PPC","repositories":[{"name":"SLE-Live-Patching12-SP3-Updates","installer_updates":false,"description":"SLE-Live-Patching12-SP3-Updates for sle-12-ppc64le","enabled":true,"id":2467,"autorefresh":true,"distro_target":"sle-12-ppc64le","url":"https://updates.suse.com/SUSE/Updates/SLE-Live-Patching/12-SP3/ppc64le/update/"},{"id":2468,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Live-Patching/12-SP3/ppc64le/update_debug/","distro_target":"sle-12-ppc64le","autorefresh":true,"installer_updates":false,"name":"SLE-Live-Patching12-SP3-Debuginfo-Updates","description":"SLE-Live-Patching12-SP3-Debuginfo-Updates for sle-12-ppc64le"},{"description":"SLE-Live-Patching12-SP3-Pool for sle-12-ppc64le","name":"SLE-Live-Patching12-SP3-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-12-ppc64le","url":"https://updates.suse.com/SUSE/Products/SLE-Live-Patching/12-SP3/ppc64le/product/","enabled":true,"id":2469},{"id":2470,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Live-Patching/12-SP3/ppc64le/product_debug/","autorefresh":false,"distro_target":"sle-12-ppc64le","name":"SLE-Live-Patching12-SP3-Debuginfo-Pool","installer_updates":false,"description":"SLE-Live-Patching12-SP3-Debuginfo-Pool for sle-12-ppc64le"}],"product_type":"extension","cpe":"cpe:/o:suse:sle-live-patching:12:sp3","recommended":false,"version":"12.3","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Live Patching","former_identifier":"sle-live-patching","release_type":null,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Live Patching 12 SP3 ppc64le","friendly_version":"12 SP3","extensions":[],"id":1537,"release_stage":"released","identifier":"sle-live-patching"},{"recommended":false,"version":"6","offline_predecessor_ids":[],"name":"SUSE OpenStack Cloud Continuous Delivery","former_identifier":"suse-openstack-cloud-continuous-delivery","release_type":null,"migration_extra":false,"friendly_name":"SUSE OpenStack Cloud Continuous Delivery 6 x86_64","friendly_version":"6","extensions":[],"release_stage":"released","id":1538,"identifier":"suse-openstack-cloud-continuous-delivery","free":false,"description":"SUSE OpenStack Cloud Continuous Delivery 6","shortname":"SOCCD6","eula_url":"https://updates.suse.com/SUSE/Products/OpenStack-Cloud/6-Continuous/x86_64/product.license/","arch":"x86_64","predecessor_ids":[],"online_predecessor_ids":[],"repositories":[{"installer_updates":false,"name":"SUSE-OpenStack-Cloud-Continuous-Delivery-6-Updates","description":"SUSE-OpenStack-Cloud-Continuous-Delivery-6-Updates for sle-12-x86_64","enabled":true,"id":2471,"distro_target":"sle-12-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/OpenStack-Cloud/6-Continuous/x86_64/update/"},{"name":"SUSE-OpenStack-Cloud-Continuous-Delivery-6-Debuginfo-Updates","installer_updates":false,"description":"SUSE-OpenStack-Cloud-Continuous-Delivery-6-Debuginfo-Updates for sle-12-x86_64","id":2472,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/OpenStack-Cloud/6-Continuous/x86_64/update_debug/","autorefresh":true,"distro_target":"sle-12-x86_64"},{"description":"SUSE-OpenStack-Cloud-Continuous-Delivery-6-Pool for sle-12-x86_64","name":"SUSE-OpenStack-Cloud-Continuous-Delivery-6-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Products/OpenStack-Cloud/6-Continuous/x86_64/product/","enabled":true,"id":2473},{"installer_updates":false,"name":"SUSE-OpenStack-Cloud-Continuous-Delivery-6-Debuginfo-Pool","description":"SUSE-OpenStack-Cloud-Continuous-Delivery-6-Debuginfo-Pool for sle-12-x86_64","id":2474,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/OpenStack-Cloud/6-Continuous/x86_64/product_debug/","distro_target":"sle-12-x86_64","autorefresh":false},{"installer_updates":false,"name":"SUSE-OpenStack-Cloud-Continuous-Delivery-6-Source-Pool","description":"SUSE-OpenStack-Cloud-Continuous-Delivery-6-Source-Pool for sle-12-x86_64","id":2475,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/OpenStack-Cloud/6-Continuous/x86_64/product_source/","distro_target":"sle-12-x86_64","autorefresh":false}],"product_class":"SUSE_CLOUD_CD","product_type":"extension","cpe":"cpe:/o:suse:suse-openstack-cloud-continuous-delivery:6"},{"cpe":"cpe:/o:suse:sle-module-web-scripting:12","product_type":"module","online_predecessor_ids":[],"product_class":"MODULE","repositories":[{"description":"SLE-Module-Web-Scripting12-Updates for sle-12-aarch64","name":"SLE-Module-Web-Scripting12-Updates","installer_updates":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/12/aarch64/update/","autorefresh":true,"distro_target":"sle-12-aarch64","id":2476,"enabled":true},{"distro_target":"sle-12-aarch64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/12/aarch64/update_debug/","enabled":false,"id":2477,"description":"SLE-Module-Web-Scripting12-Debuginfo-Updates for sle-12-aarch64","installer_updates":false,"name":"SLE-Module-Web-Scripting12-Debuginfo-Updates"},{"description":"SLE-Module-Web-Scripting12-Pool for sle-12-aarch64","name":"SLE-Module-Web-Scripting12-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-12-aarch64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/12/aarch64/product/","enabled":true,"id":2478},{"installer_updates":false,"name":"SLE-Module-Web-Scripting12-Debuginfo-Pool","description":"SLE-Module-Web-Scripting12-Debuginfo-Pool for sle-12-aarch64","id":2479,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/12/aarch64/product_debug/","distro_target":"sle-12-aarch64","autorefresh":false},{"description":"SLE-Module-Web-Scripting12-Source-Pool for sle-12-aarch64","installer_updates":false,"name":"SLE-Module-Web-Scripting12-Source-Pool","distro_target":"sle-12-aarch64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/12/aarch64/product_source/","enabled":false,"id":2480}],"predecessor_ids":[],"arch":"aarch64","eula_url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/12/aarch64/product.license/","description":"

The SUSE Linux Enterprise Web and Scripting Module delivers a comprehensive suite of scripting languages, frameworks, and related tools helping developers and systems administrators accelerate the creation of stable, modern web applications, using dynamic languages, such as PHP, Ruby on Rails, and Python.

Access to the Web and Scripting Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself: Package versions in the this module are usually supported for at most three years. We are planning to release more recent versions on a schedule of approximately 18 month; the exact dates may differ per package.

","shortname":"Web-and-Scripting-Module","free":true,"release_stage":"released","identifier":"sle-module-web-scripting","id":1539,"extensions":[],"friendly_version":"12","friendly_name":"Web and Scripting Module 12 aarch64","migration_extra":false,"former_identifier":"sle-module-web-scripting","release_type":null,"name":"Web and Scripting Module","offline_predecessor_ids":[],"version":"12","recommended":false},{"shortname":"SLE-12-SP3-SAP","description":"SUSE LINUX Enterprise Server 12 SP3 for SAP Applications","free":false,"eula_url":"https://updates.suse.com/SUSE/Products/SLE-SAP/12-SP3/ppc64le/product.license/","arch":"ppc64le","predecessor_ids":[1437,1521],"online_predecessor_ids":[1437,1521],"product_class":"AiO-PPC","repositories":[{"url":"https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-SP3/ppc64le/update/","distro_target":"sle-12-ppc64le","autorefresh":true,"id":2195,"enabled":true,"description":"SLES12-SP3-Updates for sle-12-ppc64le","installer_updates":false,"name":"SLES12-SP3-Updates"},{"id":2196,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-SP3/ppc64le/update_debug/","distro_target":"sle-12-ppc64le","autorefresh":true,"installer_updates":false,"name":"SLES12-SP3-Debuginfo-Updates","description":"SLES12-SP3-Debuginfo-Updates for sle-12-ppc64le"},{"url":"https://updates.suse.com/SUSE/Products/SLE-SERVER/12-SP3/ppc64le/product/","distro_target":"sle-12-ppc64le","autorefresh":false,"id":2198,"enabled":true,"description":"SLES12-SP3-Pool for sle-12-ppc64le","installer_updates":false,"name":"SLES12-SP3-Pool"},{"description":"SLES12-SP3-Debuginfo-Pool for sle-12-ppc64le","name":"SLES12-SP3-Debuginfo-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-SERVER/12-SP3/ppc64le/product_debug/","autorefresh":false,"distro_target":"sle-12-ppc64le","id":2199,"enabled":false},{"id":2200,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-SERVER/12-SP3/ppc64le/product_source/","autorefresh":false,"distro_target":"sle-12-ppc64le","name":"SLES12-SP3-Source-Pool","installer_updates":false,"description":"SLES12-SP3-Source-Pool for sle-12-ppc64le"},{"enabled":true,"id":2255,"distro_target":"sle-12-ppc64le","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-HA/12-SP3/ppc64le/update/","installer_updates":false,"name":"SLE-HA12-SP3-Updates","description":"SLE-HA12-SP3-Updates for sle-12-ppc64le"},{"id":2256,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-HA/12-SP3/ppc64le/update_debug/","autorefresh":true,"distro_target":"sle-12-ppc64le","name":"SLE-HA12-SP3-Debuginfo-Updates","installer_updates":false,"description":"SLE-HA12-SP3-Debuginfo-Updates for sle-12-ppc64le"},{"id":2257,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-HA/12-SP3/ppc64le/product/","autorefresh":false,"distro_target":"sle-12-ppc64le","name":"SLE-HA12-SP3-Pool","installer_updates":false,"description":"SLE-HA12-SP3-Pool for sle-12-ppc64le"},{"description":"SLE-HA12-SP3-Debuginfo-Pool for sle-12-ppc64le","installer_updates":false,"name":"SLE-HA12-SP3-Debuginfo-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-HA/12-SP3/ppc64le/product_debug/","distro_target":"sle-12-ppc64le","autorefresh":false,"id":2258,"enabled":false},{"enabled":false,"id":2259,"autorefresh":false,"distro_target":"sle-12-ppc64le","url":"https://updates.suse.com/SUSE/Products/SLE-HA/12-SP3/ppc64le/product_source/","name":"SLE-HA12-SP3-Source-Pool","installer_updates":false,"description":"SLE-HA12-SP3-Source-Pool for sle-12-ppc64le"},{"id":2509,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-SAP/12-SP3/ppc64le/update/","distro_target":"sle-12-ppc64le","autorefresh":true,"installer_updates":false,"name":"SLE-12-SP3-SAP-Updates","description":"SLE-12-SP3-SAP-Updates for sle-12-ppc64le"},{"name":"SLE-12-SP3-SAP-Debuginfo-Updates","installer_updates":false,"description":"SLE-12-SP3-SAP-Debuginfo-Updates for sle-12-ppc64le","id":2510,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-SAP/12-SP3/ppc64le/update_debug/","autorefresh":true,"distro_target":"sle-12-ppc64le"},{"installer_updates":false,"name":"SLE12-SP3-SAP-Pool","description":"SLE12-SP3-SAP-Pool for sle-12-ppc64le","enabled":true,"id":2511,"distro_target":"sle-12-ppc64le","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-SAP/12-SP3/ppc64le/product/"},{"id":2512,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-SAP/12-SP3/ppc64le/product_debug/","autorefresh":false,"distro_target":"sle-12-ppc64le","name":"SLE12-SP3-SAP-Debuginfo-Pool","installer_updates":false,"description":"SLE12-SP3-SAP-Debuginfo-Pool for sle-12-ppc64le"},{"enabled":false,"id":2513,"autorefresh":false,"distro_target":"sle-12-ppc64le","url":"https://updates.suse.com/SUSE/Products/SLE-SAP/12-SP3/ppc64le/product_source/","name":"SLE12-SP3-SAP-Source-Pool","installer_updates":false,"description":"SLE12-SP3-SAP-Source-Pool for sle-12-ppc64le"}],"cpe":"cpe:/o:suse:sles_sap:12:sp3","product_type":"base","recommended":false,"version":"12.3","name":"SUSE Linux Enterprise Server for SAP Applications","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Server for SAP Applications 12 SP3 ppc64le","former_identifier":"SUSE_SLES_SAP","release_type":null,"friendly_version":"12 SP3","extensions":[{"arch":"ppc64le","eula_url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/12/ppc64le/product.license/","shortname":"Legacy-Module","description":"

The Legacy Module helps you migrating applications from SUSE Linux Enterprise 10 and 11 and other systems to SUSE Linux Enterprise 12, by providing packages which are discontinued on SUSE Linux Enterprise Server, such as: sendmail, syslog-ng, IBM Java6, and a number of libraries (for example openssl-0.9.8).

Access to the Legacy Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself. Packages in the this module are usually supported for at most three years. Support for Sendmail and IBM Java 6 will end in September 2017 the latest.

","free":true,"cpe":"cpe:/o:suse:sle-module-legacy:12","product_type":"module","repositories":[{"description":"SLE-Module-Legacy12-Updates for sle-12-ppc64le","installer_updates":false,"name":"SLE-Module-Legacy12-Updates","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/12/ppc64le/update/","distro_target":"sle-12-ppc64le","autorefresh":true,"id":1668,"enabled":true},{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/12/ppc64le/update_debug/","autorefresh":true,"distro_target":"sle-12-ppc64le","id":1669,"enabled":false,"description":"SLE-Module-Legacy12-Debuginfo-Updates for sle-12-ppc64le","name":"SLE-Module-Legacy12-Debuginfo-Updates","installer_updates":false},{"description":"SLE-Module-Legacy12-Pool for sle-12-ppc64le","name":"SLE-Module-Legacy12-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-12-ppc64le","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/12/ppc64le/product/","enabled":true,"id":1670},{"description":"SLE-Module-Legacy12-Debuginfo-Pool for sle-12-ppc64le","installer_updates":false,"name":"SLE-Module-Legacy12-Debuginfo-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/12/ppc64le/product_debug/","distro_target":"sle-12-ppc64le","autorefresh":false,"id":1671,"enabled":false},{"enabled":false,"id":1987,"autorefresh":false,"distro_target":"sle-12-ppc64le","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/12/ppc64le/product_source/","name":"SLE-Module-Legacy12-Source-Pool","installer_updates":false,"description":"SLE-Module-Legacy12-Source-Pool for sle-12-ppc64le"}],"online_predecessor_ids":[],"product_class":"MODULE","predecessor_ids":[],"migration_extra":false,"friendly_name":"Legacy Module 12 ppc64le","release_type":null,"former_identifier":"sle-module-legacy","name":"Legacy Module","offline_predecessor_ids":[],"version":"12","recommended":false,"id":1148,"release_stage":"released","identifier":"sle-module-legacy","extensions":[],"friendly_version":"12"},{"release_type":null,"former_identifier":"sle-module-web-scripting","friendly_name":"Web and Scripting Module 12 ppc64le","migration_extra":false,"offline_predecessor_ids":[],"name":"Web and Scripting Module","version":"12","recommended":false,"release_stage":"released","identifier":"sle-module-web-scripting","id":1151,"extensions":[],"friendly_version":"12","arch":"ppc64le","eula_url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/12/ppc64le/product.license/","free":true,"description":"

The SUSE Linux Enterprise Web and Scripting Module delivers a comprehensive suite of scripting languages, frameworks, and related tools helping developers and systems administrators accelerate the creation of stable, modern web applications, using dynamic languages, such as PHP, Ruby on Rails, and Python.

Access to the Web and Scripting Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself: Package versions in the this module are usually supported for at most three years. We are planning to release more recent versions on a schedule of approximately 18 month; the exact dates may differ per package.

","shortname":"Web-and-Scripting-Module","product_type":"module","cpe":"cpe:/o:suse:sle-module-web-scripting:12","online_predecessor_ids":[],"product_class":"MODULE","repositories":[{"description":"SLE-Module-Web-Scripting12-Updates for sle-12-ppc64le","name":"SLE-Module-Web-Scripting12-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-12-ppc64le","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/12/ppc64le/update/","enabled":true,"id":1680},{"description":"SLE-Module-Web-Scripting12-Debuginfo-Updates for sle-12-ppc64le","installer_updates":false,"name":"SLE-Module-Web-Scripting12-Debuginfo-Updates","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/12/ppc64le/update_debug/","distro_target":"sle-12-ppc64le","autorefresh":true,"id":1681,"enabled":false},{"autorefresh":false,"distro_target":"sle-12-ppc64le","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/12/ppc64le/product/","enabled":true,"id":1682,"description":"SLE-Module-Web-Scripting12-Pool for sle-12-ppc64le","name":"SLE-Module-Web-Scripting12-Pool","installer_updates":false},{"name":"SLE-Module-Web-Scripting12-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-Web-Scripting12-Debuginfo-Pool for sle-12-ppc64le","enabled":false,"id":1683,"autorefresh":false,"distro_target":"sle-12-ppc64le","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/12/ppc64le/product_debug/"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/12/ppc64le/product_source/","distro_target":"sle-12-ppc64le","autorefresh":false,"id":1990,"enabled":false,"description":"SLE-Module-Web-Scripting12-Source-Pool for sle-12-ppc64le","installer_updates":false,"name":"SLE-Module-Web-Scripting12-Source-Pool"}],"predecessor_ids":[]},{"extensions":[],"identifier":"sle-module-public-cloud","release_stage":"released","id":1218,"friendly_version":"12","offline_predecessor_ids":[],"name":"Public Cloud Module","release_type":null,"former_identifier":"sle-module-public-cloud","migration_extra":false,"friendly_name":"Public Cloud Module 12 ppc64le","recommended":false,"version":"12","product_type":"module","cpe":"cpe:/o:suse:sle-module-public-cloud:12","predecessor_ids":[],"repositories":[{"id":1692,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/12/ppc64le/update/","autorefresh":true,"distro_target":"sle-12-ppc64le","name":"SLE-Module-Public-Cloud12-Updates","installer_updates":false,"description":"SLE-Module-Public-Cloud12-Updates for sle-12-ppc64le"},{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/12/ppc64le/update_debug/","autorefresh":true,"distro_target":"sle-12-ppc64le","id":1693,"enabled":false,"description":"SLE-Module-Public-Cloud12-Debuginfo-Updates for sle-12-ppc64le","name":"SLE-Module-Public-Cloud12-Debuginfo-Updates","installer_updates":false},{"id":1694,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/12/ppc64le/product/","distro_target":"sle-12-ppc64le","autorefresh":false,"installer_updates":false,"name":"SLE-Module-Public-Cloud12-Pool","description":"SLE-Module-Public-Cloud12-Pool for sle-12-ppc64le"},{"distro_target":"sle-12-ppc64le","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/12/ppc64le/product_debug/","enabled":false,"id":1695,"description":"SLE-Module-Public-Cloud12-Debuginfo-Pool for sle-12-ppc64le","installer_updates":false,"name":"SLE-Module-Public-Cloud12-Debuginfo-Pool"},{"description":"SLE-Module-Public-Cloud12-Source-Pool for sle-12-ppc64le","name":"SLE-Module-Public-Cloud12-Source-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/12/ppc64le/product_source/","autorefresh":false,"distro_target":"sle-12-ppc64le","id":1993,"enabled":false}],"online_predecessor_ids":[],"product_class":"MODULE","eula_url":"","arch":"ppc64le","free":true,"shortname":"Public-Cloud-Module","description":"

The Public Cloud Module is a collection of tools that enables you to create and manage cloud images from the commandline on SUSE Linux Enterprise Server. When building your own images with KIWI or SUSE Studio, initialization code specific to the target cloud is included in that image.

Access to the Public Cloud Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself; please check the Release Notes for further details.

"},{"predecessor_ids":[],"online_predecessor_ids":[],"repositories":[{"installer_updates":false,"name":"IBM-DLPAR-SDK","description":"IBM-DLPAR-SDK","enabled":true,"id":4429,"distro_target":null,"autorefresh":true,"url":"https://public.dhe.ibm.com/software/server/POWER/Linux/toolchain/at/suse/SLES_12/"}],"product_class":"SLES-PPC","cpe":"cpe:/o:suse:ibm-dlpar-sdk:12","product_type":"extension","description":"IBM DLPAR SDK for SLE 12","shortname":"IBMDLPS12","free":true,"eula_url":"","arch":"ppc64le","friendly_version":"12","extensions":[],"release_stage":"released","identifier":"ibm-dlpar-sdk","id":1249,"recommended":false,"version":"12","name":"IBM DLPAR SDK for SLE","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"IBM DLPAR SDK for SLE 12 ppc64le","release_type":null,"former_identifier":"ibm-dlpar-sdk"},{"identifier":"ibm-dlpar-utils","release_stage":"released","id":1250,"extensions":[],"friendly_version":"12","former_identifier":"ibm-dlpar-utils","release_type":null,"migration_extra":false,"friendly_name":"IBM DLPAR Utils for SLE 12 ppc64le","offline_predecessor_ids":[],"name":"IBM DLPAR Utils for SLE","version":"12","recommended":false,"product_type":"extension","cpe":"cpe:/o:suse:ibm-dlpar-utils:12","online_predecessor_ids":[],"product_class":"SLES-PPC","repositories":[{"enabled":true,"id":6216,"autorefresh":true,"distro_target":null,"url":"https://public.dhe.ibm.com/software/server/POWER/Linux/yum/OSS/SLES/12/ppc64le/","name":"IBM-DLPAR-utils","installer_updates":false,"description":"IBM-DLPAR-utils"}],"predecessor_ids":[],"arch":"ppc64le","eula_url":"https://public.dhe.ibm.com/software/server/POWER/Linux/yum/OSS/SLES/12/ppc64le.license/","free":true,"shortname":"IBMDLPU12","description":"IBM DLPAR Utils for SLE 12"},{"version":"12","recommended":false,"former_identifier":"sle-module-adv-systems-management","release_type":null,"friendly_name":"Advanced Systems Management Module 12 ppc64le","migration_extra":false,"offline_predecessor_ids":[],"name":"Advanced Systems Management Module","friendly_version":"12","release_stage":"released","identifier":"sle-module-adv-systems-management","id":1294,"extensions":[],"free":true,"shortname":"Adv-Sys-Mgmt-Module","description":"

This Module contains current versions of the popular configuration management frameworks Puppet and CFEngine as well as the new systems management toolbox called machinery.

The machinery tool will be frequently updated and is SUSE's upcoming systems management toolbox for inspecting and validating systems remotely, storing their system description and creating new systems to deploy them in datacenters and clouds.

","arch":"ppc64le","eula_url":"","product_class":"MODULE","online_predecessor_ids":[],"repositories":[{"description":"SLE-Module-Adv-Systems-Management12-Updates for sle-12-ppc64le","name":"SLE-Module-Adv-Systems-Management12-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-12-ppc64le","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Adv-Systems-Management/12/ppc64le/update/","enabled":true,"id":1762},{"installer_updates":false,"name":"SLE-Module-Adv-Systems-Management12-Debuginfo-Updates","description":"SLE-Module-Adv-Systems-Management12-Debuginfo-Updates for sle-12-ppc64le","enabled":false,"id":1763,"distro_target":"sle-12-ppc64le","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Adv-Systems-Management/12/ppc64le/update_debug/"},{"autorefresh":false,"distro_target":"sle-12-ppc64le","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Adv-Systems-Management/12/ppc64le/product/","enabled":true,"id":1764,"description":"SLE-Module-Adv-Systems-Management12-Pool for sle-12-ppc64le","name":"SLE-Module-Adv-Systems-Management12-Pool","installer_updates":false},{"enabled":false,"id":1765,"distro_target":"sle-12-ppc64le","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Adv-Systems-Management/12/ppc64le/product_debug/","installer_updates":false,"name":"SLE-Module-Adv-Systems-Management12-Debuginfo-Pool","description":"SLE-Module-Adv-Systems-Management12-Debuginfo-Pool for sle-12-ppc64le"},{"description":"SLE-Module-Adv-Systems-Management12-Source-Pool for sle-12-ppc64le","installer_updates":false,"name":"SLE-Module-Adv-Systems-Management12-Source-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Adv-Systems-Management/12/ppc64le/product_source/","distro_target":"sle-12-ppc64le","autorefresh":false,"id":1996,"enabled":false}],"predecessor_ids":[],"product_type":"module","cpe":"cpe:/o:suse:sle-module-adv-systems-management:12"},{"release_stage":"released","identifier":"sle-module-toolchain","id":1339,"extensions":[],"friendly_version":"12","release_type":null,"former_identifier":"sle-module-toolchain","migration_extra":false,"friendly_name":"Toolchain Module 12 ppc64le","offline_predecessor_ids":[],"name":"Toolchain Module","version":"12","recommended":false,"product_type":"module","cpe":"cpe:/o:suse:sle-module-toolchain:12","repositories":[{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Toolchain/12/ppc64le/update/","distro_target":"sle-12-ppc64le","autorefresh":true,"id":1895,"enabled":true,"description":"SLE-Module-Toolchain12-Updates for sle-12-ppc64le","installer_updates":false,"name":"SLE-Module-Toolchain12-Updates"},{"description":"SLE-Module-Toolchain12-Debuginfo-Updates for sle-12-ppc64le","installer_updates":false,"name":"SLE-Module-Toolchain12-Debuginfo-Updates","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Toolchain/12/ppc64le/update_debug/","distro_target":"sle-12-ppc64le","autorefresh":true,"id":1896,"enabled":false},{"enabled":true,"id":1897,"autorefresh":false,"distro_target":"sle-12-ppc64le","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Toolchain/12/ppc64le/product/","name":"SLE-Module-Toolchain12-Pool","installer_updates":false,"description":"SLE-Module-Toolchain12-Pool for sle-12-ppc64le"},{"id":1898,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Toolchain/12/ppc64le/product_debug/","autorefresh":false,"distro_target":"sle-12-ppc64le","name":"SLE-Module-Toolchain12-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-Toolchain12-Debuginfo-Pool for sle-12-ppc64le"}],"online_predecessor_ids":[],"product_class":"MODULE","predecessor_ids":[],"arch":"ppc64le","eula_url":"","free":true,"description":"Via this Module you will have access to a more recent GCC and Toolchain in addition to the default compiler of SUSE Linux Enterprise. Access to the Toolchain Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself. Please check the Release Notes for further details.","shortname":"Toolchain-Module"},{"cpe":"cpe:/o:suse:sle-module-containers:12","product_type":"module","product_class":"MODULE","online_predecessor_ids":[],"repositories":[{"autorefresh":true,"distro_target":"sle-12-ppc64le","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/12/ppc64le/update/","enabled":true,"id":1972,"description":"SLE-Module-Containers12-Updates for sle-12-ppc64le","name":"SLE-Module-Containers12-Updates","installer_updates":false},{"installer_updates":false,"name":"SLE-Module-Containers12-Debuginfo-Updates","description":"SLE-Module-Containers12-Debuginfo-Updates for sle-12-ppc64le","enabled":false,"id":1973,"distro_target":"sle-12-ppc64le","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/12/ppc64le/update_debug/"},{"description":"SLE-Module-Containers12-Pool for sle-12-ppc64le","installer_updates":false,"name":"SLE-Module-Containers12-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/12/ppc64le/product/","distro_target":"sle-12-ppc64le","autorefresh":false,"id":1974,"enabled":true},{"enabled":false,"id":1975,"autorefresh":false,"distro_target":"sle-12-ppc64le","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/12/ppc64le/product_debug/","name":"SLE-Module-Containers12-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-Containers12-Debuginfo-Pool for sle-12-ppc64le"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/12/ppc64le/product_source/","autorefresh":false,"distro_target":"sle-12-ppc64le","id":1976,"enabled":false,"description":"SLE-Module-Containers12-Source-Pool for sle-12-ppc64le","name":"SLE-Module-Containers12-Source-Pool","installer_updates":false}],"predecessor_ids":[],"arch":"ppc64le","eula_url":"","shortname":"Containers-Module","description":"

This Module contains several packages revolving around containers and related tools.

","free":true,"identifier":"sle-module-containers","release_stage":"released","id":1353,"extensions":[],"friendly_version":"12","friendly_name":"Containers Module 12 ppc64le","migration_extra":false,"former_identifier":"sle-module-containers","release_type":null,"name":"Containers Module","offline_predecessor_ids":[],"version":"12","recommended":false},{"cpe":"cpe:/o:suse:sle-sdk:12:sp3","product_type":"extension","predecessor_ids":[1145,1343,1364],"online_predecessor_ids":[1145,1343,1364],"product_class":"SLE-SDK","repositories":[{"description":"SLE-SDK12-SP3-Updates for sle-12-ppc64le","installer_updates":false,"name":"SLE-SDK12-SP3-Updates","url":"https://updates.suse.com/SUSE/Updates/SLE-SDK/12-SP3/ppc64le/update/","distro_target":"sle-12-ppc64le","autorefresh":true,"id":2235,"enabled":true},{"installer_updates":false,"name":"SLE-SDK12-SP3-Debuginfo-Updates","description":"SLE-SDK12-SP3-Debuginfo-Updates for sle-12-ppc64le","enabled":false,"id":2236,"distro_target":"sle-12-ppc64le","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-SDK/12-SP3/ppc64le/update_debug/"},{"description":"SLE-SDK12-SP3-Pool for sle-12-ppc64le","name":"SLE-SDK12-SP3-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-12-ppc64le","url":"https://updates.suse.com/SUSE/Products/SLE-SDK/12-SP3/ppc64le/product/","enabled":true,"id":2237},{"autorefresh":false,"distro_target":"sle-12-ppc64le","url":"https://updates.suse.com/SUSE/Products/SLE-SDK/12-SP3/ppc64le/product_debug/","enabled":false,"id":2238,"description":"SLE-SDK12-SP3-Debuginfo-Pool for sle-12-ppc64le","name":"SLE-SDK12-SP3-Debuginfo-Pool","installer_updates":false},{"installer_updates":false,"name":"SLE-SDK12-SP3-Source-Pool","description":"SLE-SDK12-SP3-Source-Pool for sle-12-ppc64le","id":2239,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-SDK/12-SP3/ppc64le/product_source/","distro_target":"sle-12-ppc64le","autorefresh":false}],"eula_url":"https://updates.suse.com/SUSE/Products/SLE-SDK/12-SP3/ppc64le/product.license/","arch":"ppc64le","description":"

SUSE Linux Enterprise Software Development Kit is the Software Development Kit for the family of SUSE Linux Enterprise products. It is a free of charge extension for partners and customers working with SUSE Linux Enterprise Server and Desktop and derived products.

Packages on the SDK are delivered without L3 support; maintenance updates will be done for critical security and critical non-security issues, and where needed to remain in sync with packages delivered in the SUSE Linux Enterprise Server and Desktop products.

Packages to rebuild SUSE Linux Enterprise Server are not part of the SUSE Linux Enterprise Software Development Kit.

","shortname":"SDK12-SP3","free":true,"extensions":[],"release_stage":"released","identifier":"sle-sdk","id":1428,"friendly_version":"12 SP3","name":"SUSE Linux Enterprise Software Development Kit","offline_predecessor_ids":[],"friendly_name":"SUSE Linux Enterprise Software Development Kit 12 SP3 ppc64le","migration_extra":false,"release_type":null,"former_identifier":"sle-sdk","recommended":false,"version":"12.3"},{"eula_url":"","arch":"ppc64le","description":"SUSE Package Hub is a free of charge extension providing access to community maintained packages built to run on SUSE Linux Enterprise Server. Built from the same sources used in the openSUSE distributions, these quality packages provide additional software to what is found in the SUSE Linux Enterprise Server product. Packages from the Package Hub are delivered without L3 support from SUSE. General updates and fixes to the packages in SUSE Package Hub are provided by the openSUSE community based on their discretion though SUSE will monitor and ensure that any known critical security issues will be addressed. Packages in the Package Hub are approved by SUSE for use with SUSE Linux Enterprise Server 12 and to not interfere with the supportability of SUSE Linux Enterprise Server it's modules and extensions. For more information about SUSE Package Hub please visit https://packagehub.suse.com.","shortname":"SUSE-PackageHub-12-SP3","free":true,"cpe":"cpe:/o:suse:packagehub:12:sp3","product_type":"extension","predecessor_ids":[1475,1478,1481],"product_class":"MODULE","online_predecessor_ids":[1475,1478,1481],"repositories":[{"name":"SUSE-PackageHub-12-SP3-Standard-Pool","installer_updates":false,"description":"SUSE-PackageHub-12-SP3-Standard-Pool for sle-12-ppc64le","id":2451,"enabled":true,"url":"https://updates.suse.com/SUSE/Backports/SLE-12-SP3_ppc64le/standard/","autorefresh":false,"distro_target":"sle-12-ppc64le"},{"name":"SUSE-PackageHub-12-SP3-Debuginfo","installer_updates":false,"description":"SUSE-PackageHub-12-SP3-Debuginfo for sle-12-ppc64le","id":2452,"enabled":false,"url":"https://updates.suse.com/SUSE/Backports/SLE-12-SP3_ppc64le/standard_debug/","autorefresh":true,"distro_target":"sle-12-ppc64le"},{"url":"https://updates.suse.com/SUSE/Backports/SLE-12-SP3_ppc64le/product/","autorefresh":false,"distro_target":"sle-12-ppc64le","id":2453,"enabled":true,"description":"SUSE-PackageHub-12-SP3-Pool for sle-12-ppc64le","name":"SUSE-PackageHub-12-SP3-Pool","installer_updates":false}],"name":"SUSE Package Hub","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"SUSE Package Hub 12 SP3 ppc64le","release_type":null,"former_identifier":"PackageHub","recommended":false,"version":"12.3","extensions":[],"id":1531,"release_stage":"released","identifier":"PackageHub","friendly_version":"12 SP3"},{"free":false,"description":"

SUSE Linux Enterprise Live Patching provides packages to update critical kernel modules live in SUSE Linux Enterprise. With SUSE Linux Enterprise Live Patching, you can perform critical kernel patching without shutting down your system, reducing the need for planned downtime and increasing service availability.

","shortname":"Live-Patching","arch":"ppc64le","eula_url":"https://updates.suse.com/SUSE/Products/SLE-Live-Patching/12-SP3/ppc64le/product.license/","online_predecessor_ids":[1860],"product_class":"SLE-LP-PPC","repositories":[{"installer_updates":false,"name":"SLE-Live-Patching12-SP3-Updates","description":"SLE-Live-Patching12-SP3-Updates for sle-12-ppc64le","id":2467,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Live-Patching/12-SP3/ppc64le/update/","distro_target":"sle-12-ppc64le","autorefresh":true},{"description":"SLE-Live-Patching12-SP3-Debuginfo-Updates for sle-12-ppc64le","installer_updates":false,"name":"SLE-Live-Patching12-SP3-Debuginfo-Updates","url":"https://updates.suse.com/SUSE/Updates/SLE-Live-Patching/12-SP3/ppc64le/update_debug/","distro_target":"sle-12-ppc64le","autorefresh":true,"id":2468,"enabled":false},{"autorefresh":false,"distro_target":"sle-12-ppc64le","url":"https://updates.suse.com/SUSE/Products/SLE-Live-Patching/12-SP3/ppc64le/product/","enabled":true,"id":2469,"description":"SLE-Live-Patching12-SP3-Pool for sle-12-ppc64le","name":"SLE-Live-Patching12-SP3-Pool","installer_updates":false},{"name":"SLE-Live-Patching12-SP3-Debuginfo-Pool","installer_updates":false,"description":"SLE-Live-Patching12-SP3-Debuginfo-Pool for sle-12-ppc64le","enabled":false,"id":2470,"autorefresh":false,"distro_target":"sle-12-ppc64le","url":"https://updates.suse.com/SUSE/Products/SLE-Live-Patching/12-SP3/ppc64le/product_debug/"}],"predecessor_ids":[1860],"product_type":"extension","cpe":"cpe:/o:suse:sle-live-patching:12:sp3","version":"12.3","recommended":false,"former_identifier":"sle-live-patching","release_type":null,"friendly_name":"SUSE Linux Enterprise Live Patching 12 SP3 ppc64le","migration_extra":false,"offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Live Patching","friendly_version":"12 SP3","id":1537,"release_stage":"released","identifier":"sle-live-patching","extensions":[]},{"arch":"ppc64le","eula_url":"","description":"SUSE Linux Enterprise offers a comprehensive suite of products built on a single code base. The platform addresses business needs from the smallest thin-client devices to the world's most powerful high-performance computing and mainframe servers. SUSE Linux Enterprise offers common management tools and technology certifications across the platform, and each product is enterprise-class.","shortname":"SLES12-SP3 LTSS","free":false,"cpe":"cpe:/o:suse:sles-ltss:12:sp3","product_type":"extension","product_class":"SLES12-SP3-LTSS-PPC","online_predecessor_ids":[],"repositories":[{"autorefresh":true,"distro_target":"sle-12-ppc64le","url":"https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-SP3-LTSS/ppc64le/update/","enabled":true,"id":3915,"description":"SLES12-SP3-LTSS-Updates for sle-12-ppc64le","name":"SLES12-SP3-LTSS-Updates","installer_updates":false},{"installer_updates":false,"name":"SLES12-SP3-LTSS-Debuginfo-Updates","description":"SLES12-SP3-LTSS-Debuginfo-Updates for sle-12-ppc64le","id":3916,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-SP3-LTSS/ppc64le/update_debug/","distro_target":"sle-12-ppc64le","autorefresh":true}],"predecessor_ids":[],"friendly_name":"SUSE Linux Enterprise Server LTSS 12 SP3 ppc64le","migration_extra":false,"former_identifier":"SLES-LTSS","release_type":null,"name":"SUSE Linux Enterprise Server LTSS","offline_predecessor_ids":[],"version":"12.3","recommended":false,"id":1930,"release_stage":"released","identifier":"SLES-LTSS","extensions":[],"friendly_version":"12 SP3"}],"release_stage":"released","identifier":"SLES_SAP","id":1572},{"eula_url":"https://updates.suse.com/SUSE/Products/SUSE-Manager-Retail/3.1/x86_64/product.license/","arch":"x86_64","free":false,"description":"SUSE Manager for Retail","shortname":"SUSE Manager for Retail","product_type":"extension","cpe":"cpe:/o:suse:suse-manager-retail:3.1","predecessor_ids":[],"online_predecessor_ids":[],"product_class":"SLE-POS-AS-SMRBS-X86","repositories":[{"description":"SUSE-Manager-Retail-3.1-Updates for sle-12-x86_64","name":"SUSE-Manager-Retail-3.1-Updates","installer_updates":false,"url":"https://updates.suse.com/SUSE/Updates/SUSE-Manager-Retail/3.1/x86_64/update/","autorefresh":true,"distro_target":"sle-12-x86_64","id":2519,"enabled":true},{"installer_updates":false,"name":"SUSE-Manager-Retail-3.1-Debuginfo-Updates","description":"SUSE-Manager-Retail-3.1-Debuginfo-Updates for sle-12-x86_64","id":2520,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SUSE-Manager-Retail/3.1/x86_64/update_debug/","distro_target":"sle-12-x86_64","autorefresh":true},{"name":"SUSE-Manager-Retail-3.1-Pool","installer_updates":false,"description":"SUSE-Manager-Retail-3.1-Pool for sle-12-x86_64","enabled":true,"id":2521,"autorefresh":false,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Products/SUSE-Manager-Retail/3.1/x86_64/product/"},{"description":"SUSE-Manager-Retail-3.1-Debuginfo-Pool for sle-12-x86_64","installer_updates":false,"name":"SUSE-Manager-Retail-3.1-Debuginfo-Pool","url":"https://updates.suse.com/SUSE/Products/SUSE-Manager-Retail/3.1/x86_64/product_debug/","distro_target":"sle-12-x86_64","autorefresh":false,"id":2522,"enabled":false},{"enabled":false,"id":2523,"distro_target":"sle-12-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SUSE-Manager-Retail/3.1/x86_64/product_source/","installer_updates":false,"name":"SUSE-Manager-Retail-3.1-Source-Pool","description":"SUSE-Manager-Retail-3.1-Source-Pool for sle-12-x86_64"}],"offline_predecessor_ids":[],"name":"SUSE Manager for Retail","release_type":null,"former_identifier":"suse-manager-retail","friendly_name":"SUSE Manager for Retail 3.1 x86_64","migration_extra":false,"recommended":false,"version":"3.1","extensions":[],"identifier":"suse-manager-retail","release_stage":"released","id":1574,"friendly_version":"3.1"},{"arch":"x86_64","eula_url":"https://updates.suse.com/SUSE/Products/SLE-Product-SLES/15/x86_64/product.license/","shortname":"SLES15","description":"SUSE Linux Enterprise offers a comprehensive suite of products built on a single code base. The platform addresses business needs from the smallest thin-client devices to the world's most powerful high-performance computing and mainframe servers. SUSE Linux Enterprise offers common management tools and technology certifications across the platform, and each product is enterprise-class.","free":false,"cpe":"cpe:/o:suse:sles:15","product_type":"base","repositories":[{"id":2705,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-SLES/15/x86_64/update/","distro_target":"sle-15-x86_64","autorefresh":true,"installer_updates":false,"name":"SLE-Product-SLES15-Updates","description":"SLE-Product-SLES15-Updates for sle-15-x86_64"},{"description":"SLE15-Installer-Updates for sle-15-x86_64","name":"SLE15-Installer-Updates","installer_updates":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-INSTALLER/15/x86_64/update/","autorefresh":true,"distro_target":"sle-15-x86_64","id":2706,"enabled":false},{"description":"SLE-Product-SLES15-Pool for sle-15-x86_64","name":"SLE-Product-SLES15-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Product-SLES/15/x86_64/product/","enabled":true,"id":2707},{"description":"SLE-Product-SLES15-Debuginfo-Updates for sle-15-x86_64","name":"SLE-Product-SLES15-Debuginfo-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Product-SLES/15/x86_64/update_debug/","enabled":false,"id":3114},{"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Product-SLES/15/x86_64/product_debug/","enabled":false,"id":3115,"description":"SLE-Product-SLES15-Debuginfo-Pool for sle-15-x86_64","name":"SLE-Product-SLES15-Debuginfo-Pool","installer_updates":false},{"name":"SLE-Product-SLES15-Source-Pool","installer_updates":false,"description":"SLE-Product-SLES15-Source-Pool for sle-15-x86_64","enabled":false,"id":3116,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Product-SLES/15/x86_64/product_source/"}],"online_predecessor_ids":[],"product_class":"7261","predecessor_ids":[],"friendly_name":"SUSE Linux Enterprise Server 15 x86_64","migration_extra":false,"release_type":null,"former_identifier":"SLES","name":"SUSE Linux Enterprise Server","offline_predecessor_ids":[690,769,814,824,1300,1421,1625,1878],"version":"15","recommended":false,"release_stage":"released","identifier":"SLES","id":1575,"extensions":[{"product_type":"module","cpe":"cpe:/o:suse:sle-module-basesystem:15","predecessor_ids":[],"repositories":[{"name":"SLE-Module-Basesystem15-Updates","installer_updates":false,"description":"SLE-Module-Basesystem15-Updates for sle-15-x86_64","id":2524,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15/x86_64/update/","autorefresh":true,"distro_target":"sle-15-x86_64"},{"distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15/x86_64/update_debug/","enabled":false,"id":2525,"description":"SLE-Module-Basesystem15-Debuginfo-Updates for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Basesystem15-Debuginfo-Updates"},{"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15/x86_64/product/","enabled":true,"id":2526,"description":"SLE-Module-Basesystem15-Pool for sle-15-x86_64","name":"SLE-Module-Basesystem15-Pool","installer_updates":false},{"description":"SLE-Module-Basesystem15-Debuginfo-Pool for sle-15-x86_64","name":"SLE-Module-Basesystem15-Debuginfo-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15/x86_64/product_debug/","autorefresh":false,"distro_target":"sle-15-x86_64","id":2527,"enabled":false},{"id":2528,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15/x86_64/product_source/","distro_target":"sle-15-x86_64","autorefresh":false,"installer_updates":false,"name":"SLE-Module-Basesystem15-Source-Pool","description":"SLE-Module-Basesystem15-Source-Pool for sle-15-x86_64"}],"online_predecessor_ids":[],"product_class":"MODULE","eula_url":"","arch":"x86_64","free":true,"shortname":"Basesystem-Module","description":"

The SUSE Linux Enterprise Basesystem Module delivers the base system of the product.

","extensions":[{"shortname":"Desktop-Applications-Module","description":"

The SUSE Linux Enterprise Desktop Applications Module delivers a basic set of Desktop functionality.

Access to the Desktop Applications Module is included in your SUSE Linux Enterprise product subscription.

","free":true,"arch":"x86_64","eula_url":"","online_predecessor_ids":[],"product_class":"MODULE","repositories":[{"id":2534,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15/x86_64/update/","autorefresh":true,"distro_target":"sle-15-x86_64","name":"SLE-Module-Desktop-Applications15-Updates","installer_updates":false,"description":"SLE-Module-Desktop-Applications15-Updates for sle-15-x86_64"},{"description":"SLE-Module-Desktop-Applications15-Debuginfo-Updates for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Desktop-Applications15-Debuginfo-Updates","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15/x86_64/update_debug/","distro_target":"sle-15-x86_64","autorefresh":true,"id":2535,"enabled":false},{"enabled":true,"id":2536,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15/x86_64/product/","name":"SLE-Module-Desktop-Applications15-Pool","installer_updates":false,"description":"SLE-Module-Desktop-Applications15-Pool for sle-15-x86_64"},{"name":"SLE-Module-Desktop-Applications15-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-Desktop-Applications15-Debuginfo-Pool for sle-15-x86_64","enabled":false,"id":2537,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15/x86_64/product_debug/"},{"description":"SLE-Module-Desktop-Applications15-Source-Pool for sle-15-x86_64","name":"SLE-Module-Desktop-Applications15-Source-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15/x86_64/product_source/","enabled":false,"id":2538}],"predecessor_ids":[],"cpe":"cpe:/o:suse:sle-module-desktop-applications:15","product_type":"module","version":"15","recommended":false,"migration_extra":true,"friendly_name":"Desktop Applications Module 15 x86_64","former_identifier":"sle-module-desktop-applications","release_type":null,"name":"Desktop Applications Module","offline_predecessor_ids":[],"friendly_version":"15","id":1578,"release_stage":"released","identifier":"sle-module-desktop-applications","extensions":[{"friendly_version":"15","extensions":[],"identifier":"sle-module-development-tools","release_stage":"released","id":1579,"recommended":false,"version":"15","offline_predecessor_ids":[1223,1323,1341,1366,1427,1630,1892],"name":"Development Tools Module","release_type":null,"former_identifier":"sle-sdk","friendly_name":"Development Tools Module 15 x86_64","migration_extra":true,"predecessor_ids":[],"online_predecessor_ids":[],"repositories":[{"id":2539,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15/x86_64/update/","autorefresh":true,"distro_target":"sle-15-x86_64","name":"SLE-Module-DevTools15-Updates","installer_updates":false,"description":"SLE-Module-DevTools15-Updates for sle-15-x86_64"},{"id":2540,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15/x86_64/update_debug/","autorefresh":true,"distro_target":"sle-15-x86_64","name":"SLE-Module-DevTools15-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-DevTools15-Debuginfo-Updates for sle-15-x86_64"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15/x86_64/product/","distro_target":"sle-15-x86_64","autorefresh":false,"id":2541,"enabled":true,"description":"SLE-Module-DevTools15-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-DevTools15-Pool"},{"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15/x86_64/product_debug/","enabled":false,"id":2542,"description":"SLE-Module-DevTools15-Debuginfo-Pool for sle-15-x86_64","name":"SLE-Module-DevTools15-Debuginfo-Pool","installer_updates":false},{"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15/x86_64/product_source/","enabled":false,"id":2543,"description":"SLE-Module-DevTools15-Source-Pool for sle-15-x86_64","name":"SLE-Module-DevTools15-Source-Pool","installer_updates":false}],"product_class":"MODULE","product_type":"module","cpe":"cpe:/o:suse:sle-module-development-tools:15","free":true,"description":"

The Development Tools Module helps you developing applications for SUSE Linux Enterprise 15.

Access to the Development Tools Module is included in your SUSE Linux Enterprise product subscription. The module has a different lifecycle than SUSE Linux Enterprise itself.

","shortname":"Development-Tools-Module","eula_url":"","arch":"x86_64"},{"repositories":[{"description":"SLE-Product-WE15-Updates for sle-15-x86_64","name":"SLE-Product-WE15-Updates","installer_updates":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-WE/15/x86_64/update/","autorefresh":true,"distro_target":"sle-15-x86_64","id":2742,"enabled":true},{"description":"SLE-Product-WE15-Debuginfo-Updates for sle-15-x86_64","name":"SLE-Product-WE15-Debuginfo-Updates","installer_updates":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-WE/15/x86_64/update_debug/","autorefresh":true,"distro_target":"sle-15-x86_64","id":2743,"enabled":false},{"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Product-WE/15/x86_64/product/","enabled":true,"id":2744,"description":"SLE-Product-WE15-Pool for sle-15-x86_64","name":"SLE-Product-WE15-Pool","installer_updates":false},{"id":2745,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-WE/15/x86_64/product_debug/","distro_target":"sle-15-x86_64","autorefresh":false,"installer_updates":false,"name":"SLE-Product-WE15-Debuginfo-Pool","description":"SLE-Product-WE15-Debuginfo-Pool for sle-15-x86_64"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Product-WE/15/x86_64/product_source/","autorefresh":false,"distro_target":"sle-15-x86_64","id":2746,"enabled":false,"description":"SLE-Product-WE15-Source-Pool for sle-15-x86_64","name":"SLE-Product-WE15-Source-Pool","installer_updates":false},{"enabled":true,"id":2747,"autorefresh":true,"distro_target":null,"url":"https://download.nvidia.com/suse/sle15/","name":"SLE-15-GA-Desktop-NVIDIA-Driver","installer_updates":false,"description":"SLE-15-GA-Desktop-NVIDIA-Driver"}],"online_predecessor_ids":[],"product_class":"SLE-WE","predecessor_ids":[],"product_type":"extension","cpe":"cpe:/o:suse:sle-we:15","free":false,"shortname":"SLEWE15","description":"SUSE Linux Enterprise Workstation Extension adds additional functionality to a base SUSE Linux Enterprise installation. The Workstation Extension offers additional desktop applications (office suite, email client, graphical editor, multimedia tools) and libraries. Workstation Extension is enabled and installed by default on SUSE Linux Enterprise Desktop installation. Adding the Workstation Extension to a SUSE Linux Enterprise Server installation allows to seamlessly combine both products to create a full featured server workstation.","arch":"x86_64","eula_url":"https://updates.suse.com/SUSE/Products/SLE-Product-WE/15/x86_64/product.license/","friendly_version":"15","id":1583,"release_stage":"released","identifier":"sle-we","extensions":[],"version":"15","recommended":false,"release_type":null,"former_identifier":"sle-we","migration_extra":false,"friendly_name":"SUSE Linux Enterprise Workstation Extension 15 x86_64","offline_predecessor_ids":[1222,1338,1359,1431,1639,1893],"name":"SUSE Linux Enterprise Workstation Extension"}]},{"friendly_version":"15","id":1580,"release_stage":"released","identifier":"sle-module-server-applications","extensions":[{"extensions":[],"identifier":"sle-module-legacy","release_stage":"released","id":1581,"friendly_version":"15","name":"Legacy Module","offline_predecessor_ids":[1150],"migration_extra":true,"friendly_name":"Legacy Module 15 x86_64","release_type":null,"former_identifier":"sle-module-legacy","recommended":false,"version":"15","cpe":"cpe:/o:suse:sle-module-legacy:15","product_type":"module","predecessor_ids":[],"repositories":[{"id":2549,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/15/x86_64/update/","distro_target":"sle-15-x86_64","autorefresh":true,"installer_updates":false,"name":"SLE-Module-Legacy15-Updates","description":"SLE-Module-Legacy15-Updates for sle-15-x86_64"},{"enabled":false,"id":2550,"distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/15/x86_64/update_debug/","installer_updates":false,"name":"SLE-Module-Legacy15-Debuginfo-Updates","description":"SLE-Module-Legacy15-Debuginfo-Updates for sle-15-x86_64"},{"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15/x86_64/product/","enabled":true,"id":2551,"description":"SLE-Module-Legacy15-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Legacy15-Pool"},{"description":"SLE-Module-Legacy15-Debuginfo-Pool for sle-15-x86_64","name":"SLE-Module-Legacy15-Debuginfo-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15/x86_64/product_debug/","autorefresh":false,"distro_target":"sle-15-x86_64","id":2552,"enabled":false},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15/x86_64/product_source/","distro_target":"sle-15-x86_64","autorefresh":false,"id":2553,"enabled":false,"description":"SLE-Module-Legacy15-Source-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Legacy15-Source-Pool"}],"online_predecessor_ids":[],"product_class":"MODULE","eula_url":"","arch":"x86_64","shortname":"Legacy-Module","description":"

The Legacy Module helps you migrating applications from SUSE Linux Enterprise 12 and other systems to SUSE Linux Enterprise 15, by providing packages which are discontinued on SUSE Linux Enterprise Server, such as: ntp, IBM Java 8, and a number of libraries.

Access to the Legacy Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself. Packages in the this module are usually supported for at most three years.

","free":true},{"release_stage":"released","id":1582,"identifier":"sle-ha","extensions":[],"friendly_version":"15","former_identifier":"sle-ha","release_type":null,"friendly_name":"SUSE Linux Enterprise High Availability Extension 15 x86_64","migration_extra":false,"offline_predecessor_ids":[958,961,967,971,1101,1107,1157,1245,1256,1286,1324,1337,1361,1363,1432,1435,1634,1637,1884,1886],"name":"SUSE Linux Enterprise High Availability Extension","version":"15","recommended":false,"product_type":"extension","cpe":"cpe:/o:suse:sle-ha:15","online_predecessor_ids":[],"repositories":[{"id":2754,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-HA/15/x86_64/update/","autorefresh":true,"distro_target":"sle-15-x86_64","name":"SLE-Product-HA15-Updates","installer_updates":false,"description":"SLE-Product-HA15-Updates for sle-15-x86_64"},{"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Product-HA/15/x86_64/update_debug/","enabled":false,"id":2755,"description":"SLE-Product-HA15-Debuginfo-Updates for sle-15-x86_64","name":"SLE-Product-HA15-Debuginfo-Updates","installer_updates":false},{"name":"SLE-Product-HA15-Pool","installer_updates":false,"description":"SLE-Product-HA15-Pool for sle-15-x86_64","id":2756,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15/x86_64/product/","autorefresh":false,"distro_target":"sle-15-x86_64"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15/x86_64/product_debug/","autorefresh":false,"distro_target":"sle-15-x86_64","id":2757,"enabled":false,"description":"SLE-Product-HA15-Debuginfo-Pool for sle-15-x86_64","name":"SLE-Product-HA15-Debuginfo-Pool","installer_updates":false},{"enabled":false,"id":2758,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15/x86_64/product_source/","name":"SLE-Product-HA15-Source-Pool","installer_updates":false,"description":"SLE-Product-HA15-Source-Pool for sle-15-x86_64"}],"product_class":"SLE-HAE-X86","predecessor_ids":[],"arch":"x86_64","eula_url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15/x86_64/product.license/","free":false,"shortname":"SLEHA15","description":"SUSE Linux High Availability Extension provides mature, industry-leading open-source high-availability clustering technologies that are easy to set up and use. It can be deployed in physical and/or virtual environments, and can cluster physical servers, virtual servers, or any combination of the two to suit your business’ needs."},{"product_type":"module","cpe":"cpe:/o:suse:sle-module-public-cloud:15","predecessor_ids":[],"repositories":[{"name":"SLE-Module-Public-Cloud15-Updates","installer_updates":false,"description":"SLE-Module-Public-Cloud15-Updates for sle-15-x86_64","enabled":true,"id":2673,"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/15/x86_64/update/"},{"installer_updates":false,"name":"SLE-Module-Public-Cloud15-Debuginfo-Updates","description":"SLE-Module-Public-Cloud15-Debuginfo-Updates for sle-15-x86_64","id":2674,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/15/x86_64/update_debug/","distro_target":"sle-15-x86_64","autorefresh":true},{"description":"SLE-Module-Public-Cloud15-Pool for sle-15-x86_64","name":"SLE-Module-Public-Cloud15-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15/x86_64/product/","autorefresh":false,"distro_target":"sle-15-x86_64","id":2675,"enabled":true},{"enabled":false,"id":2676,"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15/x86_64/product_debug/","installer_updates":false,"name":"SLE-Module-Public-Cloud15-Debuginfo-Pool","description":"SLE-Module-Public-Cloud15-Debuginfo-Pool for sle-15-x86_64"},{"enabled":false,"id":3129,"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15/x86_64/product_source/","installer_updates":false,"name":"SLE-Module-Public-Cloud15-Source-Pool","description":"SLE-Module-Public-Cloud15-Source-Pool for sle-15-x86_64"}],"online_predecessor_ids":[],"product_class":"MODULE","eula_url":"","arch":"x86_64","free":true,"shortname":"Public-Cloud-Module","description":"

The Public Cloud Module is a collection of tools that enables you to create and manage cloud images from the commandline on SUSE Linux Enterprise Server. When building your own images with KIWI or SUSE Studio, initialization code specific to the target cloud is included in that image.

Access to the Public Cloud Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself; please check the Release Notes for further details.

","extensions":[],"release_stage":"released","id":1611,"identifier":"sle-module-public-cloud","friendly_version":"15","offline_predecessor_ids":[1220],"name":"Public Cloud Module","former_identifier":"sle-module-public-cloud","release_type":null,"migration_extra":true,"friendly_name":"Public Cloud Module 15 x86_64","recommended":false,"version":"15"},{"recommended":false,"version":"15","name":"Web and Scripting Module","offline_predecessor_ids":[1153],"friendly_name":"Web and Scripting Module 15 x86_64","migration_extra":true,"former_identifier":"sle-module-web-scripting","release_type":null,"friendly_version":"15","extensions":[],"identifier":"sle-module-web-scripting","release_stage":"released","id":1721,"shortname":"Web-Scripting-Module","description":"

The SUSE Linux Enterprise Web and Scripting Module should contains additional packages that are helpful when running a webserver.

Access to the Web and Scripting Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself: Package versions in this module are usually supported for at most three years. We are planning to release more recent versions on a schedule of approximately 18 month; the exact dates may differ per package.

","free":true,"eula_url":"","arch":"x86_64","predecessor_ids":[],"online_predecessor_ids":[],"product_class":"MODULE","repositories":[{"installer_updates":false,"name":"SLE-Module-Web-Scripting15-Updates","description":"SLE-Module-Web-Scripting15-Updates for sle-15-x86_64","id":2972,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/15/x86_64/update/","distro_target":"sle-15-x86_64","autorefresh":true},{"enabled":false,"id":2973,"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/15/x86_64/update_debug/","name":"SLE-Module-Web-Scripting15-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-Web-Scripting15-Debuginfo-Updates for sle-15-x86_64"},{"installer_updates":false,"name":"SLE-Module-Web-Scripting15-Pool","description":"SLE-Module-Web-Scripting15-Pool for sle-15-x86_64","enabled":true,"id":2974,"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15/x86_64/product/"},{"installer_updates":false,"name":"SLE-Module-Web-Scripting15-Debuginfo-Pool","description":"SLE-Module-Web-Scripting15-Debuginfo-Pool for sle-15-x86_64","enabled":false,"id":2975,"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15/x86_64/product_debug/"},{"installer_updates":false,"name":"SLE-Module-Web-Scripting15-Source-Pool","description":"SLE-Module-Web-Scripting15-Source-Pool for sle-15-x86_64","id":2976,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15/x86_64/product_source/","distro_target":"sle-15-x86_64","autorefresh":false}],"cpe":"cpe:/o:suse:sle-module-web-scripting:15","product_type":"module"}],"version":"15","recommended":true,"migration_extra":false,"friendly_name":"Server Applications Module 15 x86_64","former_identifier":"sle-module-server-applications","release_type":null,"name":"Server Applications Module","offline_predecessor_ids":[],"online_predecessor_ids":[],"repositories":[{"installer_updates":false,"name":"SLE-Module-Server-Applications15-Updates","description":"SLE-Module-Server-Applications15-Updates for sle-15-x86_64","enabled":true,"id":2544,"distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15/x86_64/update/"},{"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15/x86_64/update_debug/","enabled":false,"id":2545,"description":"SLE-Module-Server-Applications15-Debuginfo-Updates for sle-15-x86_64","name":"SLE-Module-Server-Applications15-Debuginfo-Updates","installer_updates":false},{"name":"SLE-Module-Server-Applications15-Pool","installer_updates":false,"description":"SLE-Module-Server-Applications15-Pool for sle-15-x86_64","enabled":true,"id":2546,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15/x86_64/product/"},{"enabled":false,"id":2547,"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15/x86_64/product_debug/","installer_updates":false,"name":"SLE-Module-Server-Applications15-Debuginfo-Pool","description":"SLE-Module-Server-Applications15-Debuginfo-Pool for sle-15-x86_64"},{"description":"SLE-Module-Server-Applications15-Source-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Server-Applications15-Source-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15/x86_64/product_source/","distro_target":"sle-15-x86_64","autorefresh":false,"id":2548,"enabled":false}],"product_class":"MODULE","predecessor_ids":[],"cpe":"cpe:/o:suse:sle-module-server-applications:15","product_type":"module","description":"

The SUSE Linux Enterprise Server Applications Module delivers a basic set of Server functionality.

Access to the Server Applications Module is included in your SUSE Linux Enterprise Server subscription.

","shortname":"Server-Applications-Module","free":true,"arch":"x86_64","eula_url":""},{"offline_predecessor_ids":[1332],"name":"Containers Module","release_type":null,"former_identifier":"sle-module-containers","migration_extra":true,"friendly_name":"Containers Module 15 x86_64","recommended":false,"version":"15","extensions":[],"release_stage":"released","identifier":"sle-module-containers","id":1642,"friendly_version":"15","eula_url":"","arch":"x86_64","free":true,"description":"

This Module contains several packages revolving around containers and related tools.

","shortname":"Containers-Module","product_type":"module","cpe":"cpe:/o:suse:sle-module-containers:15","predecessor_ids":[],"online_predecessor_ids":[],"product_class":"MODULE","repositories":[{"description":"SLE-Module-Containers15-Updates for sle-15-x86_64","name":"SLE-Module-Containers15-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/15/x86_64/update/","enabled":true,"id":2864},{"name":"SLE-Module-Containers15-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-Containers15-Debuginfo-Updates for sle-15-x86_64","id":2865,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/15/x86_64/update_debug/","autorefresh":true,"distro_target":"sle-15-x86_64"},{"id":2866,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15/x86_64/product/","autorefresh":false,"distro_target":"sle-15-x86_64","name":"SLE-Module-Containers15-Pool","installer_updates":false,"description":"SLE-Module-Containers15-Pool for sle-15-x86_64"},{"id":2867,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15/x86_64/product_debug/","distro_target":"sle-15-x86_64","autorefresh":false,"installer_updates":false,"name":"SLE-Module-Containers15-Debuginfo-Pool","description":"SLE-Module-Containers15-Debuginfo-Pool for sle-15-x86_64"},{"installer_updates":false,"name":"SLE-Module-Containers15-Source-Pool","description":"SLE-Module-Containers15-Source-Pool for sle-15-x86_64","enabled":false,"id":2868,"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15/x86_64/product_source/"}]},{"release_stage":"released","identifier":"sle-module-cap-tools","id":1728,"extensions":[],"friendly_version":"15","release_type":null,"former_identifier":"sle-module-cap-tools","migration_extra":true,"friendly_name":"SUSE Cloud Application Platform Tools Module 15 x86_64","offline_predecessor_ids":[1678],"name":"SUSE Cloud Application Platform Tools Module","version":"15","recommended":false,"product_type":"module","cpe":"cpe:/o:suse:sle-module-cap-tools:15","product_class":"MODULE","online_predecessor_ids":[],"repositories":[{"name":"SLE-Module-CAP-Tools15-Updates","installer_updates":false,"description":"SLE-Module-CAP-Tools15-Updates for sle-15-x86_64","id":3000,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-CAP-Tools/15/x86_64/update/","autorefresh":true,"distro_target":"sle-15-x86_64"},{"installer_updates":false,"name":"SLE-Module-CAP-Tools15-Debuginfo-Updates","description":"SLE-Module-CAP-Tools15-Debuginfo-Updates for sle-15-x86_64","enabled":false,"id":3001,"distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-CAP-Tools/15/x86_64/update_debug/"},{"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-CAP-Tools/15/x86_64/product/","enabled":true,"id":3002,"description":"SLE-Module-CAP-Tools15-Pool for sle-15-x86_64","name":"SLE-Module-CAP-Tools15-Pool","installer_updates":false},{"installer_updates":false,"name":"SLE-Module-CAP-Tools15-Debuginfo-Pool","description":"SLE-Module-CAP-Tools15-Debuginfo-Pool for sle-15-x86_64","enabled":false,"id":3003,"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-CAP-Tools/15/x86_64/product_debug/"},{"name":"SLE-Module-CAP-Tools15-Source-Pool","installer_updates":false,"description":"SLE-Module-CAP-Tools15-Source-Pool for sle-15-x86_64","id":3123,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-CAP-Tools/15/x86_64/product_source/","autorefresh":false,"distro_target":"sle-15-x86_64"}],"predecessor_ids":[],"arch":"x86_64","eula_url":"","free":true,"shortname":"SUSE-CAP-Tools-Module","description":"

The SUSE Cloud Application Platform Tools Module is a collection of tools that enables you to interact with the SUSE Cloud Application Platform product itself, providing the commandline client for instance.

Access to the SUSE Cloud Application Platform Tools Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself; please check the Release Notes for further details.

"},{"cpe":"cpe:/o:suse:sle-module-live-patching:15","product_type":"module","online_predecessor_ids":[],"product_class":"SLE-LP","repositories":[{"enabled":true,"id":3033,"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Live-Patching/15/x86_64/update/","name":"SLE-Module-Live-Patching15-Updates","installer_updates":false,"description":"SLE-Module-Live-Patching15-Updates for sle-15-x86_64"},{"id":3034,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Live-Patching/15/x86_64/update_debug/","autorefresh":true,"distro_target":"sle-15-x86_64","name":"SLE-Module-Live-Patching15-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-Live-Patching15-Debuginfo-Updates for sle-15-x86_64"},{"installer_updates":false,"name":"SLE-Module-Live-Patching15-Pool","description":"SLE-Module-Live-Patching15-Pool for sle-15-x86_64","enabled":true,"id":3035,"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Live-Patching/15/x86_64/product/"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Live-Patching/15/x86_64/product_debug/","autorefresh":false,"distro_target":"sle-15-x86_64","id":3036,"enabled":false,"description":"SLE-Module-Live-Patching15-Debuginfo-Pool for sle-15-x86_64","name":"SLE-Module-Live-Patching15-Debuginfo-Pool","installer_updates":false},{"description":"SLE-Module-Live-Patching15-Source-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Live-Patching15-Source-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Live-Patching/15/x86_64/product_source/","distro_target":"sle-15-x86_64","autorefresh":false,"id":3125,"enabled":false}],"predecessor_ids":[],"arch":"x86_64","eula_url":"","shortname":"Live-Patching","description":"

SUSE Linux Enterprise Live Patching provides packages to update critical components in SUSE Linux Enterprise. With SUSE Linux Enterprise Live Patching, you can perform critical patching without shutting down your system, reducing the need for planned downtime and increasing service availability.

","free":false,"id":1736,"release_stage":"released","identifier":"sle-module-live-patching","extensions":[],"friendly_version":"15","migration_extra":false,"friendly_name":"SUSE Linux Enterprise Live Patching 15 x86_64","release_type":null,"former_identifier":"sle-module-live-patching","name":"SUSE Linux Enterprise Live Patching","offline_predecessor_ids":[1536,1757,1888],"version":"15","recommended":false},{"cpe":"cpe:/o:suse:packagehub:15","product_type":"extension","predecessor_ids":[],"repositories":[{"enabled":true,"id":3059,"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Backports/SLE-15_x86_64/standard/","installer_updates":false,"name":"SUSE-PackageHub-15-Standard-Pool","description":"SUSE-PackageHub-15-Standard-Pool for sle-15-x86_64"},{"description":"SUSE-PackageHub-15-Debuginfo for sle-15-x86_64","name":"SUSE-PackageHub-15-Debuginfo","installer_updates":false,"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Backports/SLE-15_x86_64/standard_debug/","enabled":false,"id":3060},{"description":"SUSE-PackageHub-15-Pool for sle-15-x86_64","name":"SUSE-PackageHub-15-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Backports/SLE-15_x86_64/product/","autorefresh":false,"distro_target":"sle-15-x86_64","id":3061,"enabled":true},{"name":"SLE-Module-Packagehub-Subpackages15-Updates","installer_updates":false,"description":"SLE-Module-Packagehub-Subpackages15-Updates for sle-15-x86_64","id":3182,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15/x86_64/update/","autorefresh":true,"distro_target":"sle-15-x86_64"},{"installer_updates":false,"name":"SLE-Module-Packagehub-Subpackages15-Debuginfo-Updates","description":"SLE-Module-Packagehub-Subpackages15-Debuginfo-Updates for sle-15-x86_64","enabled":false,"id":3183,"distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15/x86_64/update_debug/"},{"description":"SLE-Module-Packagehub-Subpackages15-Pool for sle-15-x86_64","name":"SLE-Module-Packagehub-Subpackages15-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15/x86_64/product/","autorefresh":false,"distro_target":"sle-15-x86_64","id":3184,"enabled":true},{"enabled":false,"id":3185,"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15/x86_64/product_debug/","installer_updates":false,"name":"SLE-Module-Packagehub-Subpackages15-Debuginfo-Pool","description":"SLE-Module-Packagehub-Subpackages15-Debuginfo-Pool for sle-15-x86_64"},{"name":"SLE-Module-Packagehub-Subpackages15-Source-Pool","installer_updates":false,"description":"SLE-Module-Packagehub-Subpackages15-Source-Pool for sle-15-x86_64","id":3186,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15/x86_64/product_source/","autorefresh":false,"distro_target":"sle-15-x86_64"}],"online_predecessor_ids":[],"product_class":"MODULE","eula_url":"","arch":"x86_64","description":"SUSE Package Hub is a free of charge extension providing access to community maintained packages built to run on SUSE Linux Enterprise Server. Built from the same sources used in the openSUSE distributions, these quality packages provide additional software to what is found in the SUSE Linux Enterprise Server product. Packages from the Package Hub are delivered without L3 support from SUSE. General updates and fixes to the packages in SUSE Package Hub are provided by the openSUSE community based on their discretion though SUSE will monitor and ensure that any known critical security issues will be addressed. Packages in the Package Hub are approved by SUSE for use with SUSE Linux Enterprise Server 15 and to not interfere with the supportability of SUSE Linux Enterprise Server it's modules and extensions. For more information about SUSE Package Hub please visit https://packagehub.suse.com.","shortname":"SUSE-PackageHub-15","free":true,"extensions":[],"id":1743,"release_stage":"released","identifier":"PackageHub","friendly_version":"15","name":"SUSE Package Hub","offline_predecessor_ids":[1529,1813,1915],"friendly_name":"SUSE Package Hub 15 x86_64","migration_extra":false,"former_identifier":"PackageHub","release_type":null,"recommended":false,"version":"15"}],"release_stage":"released","id":1576,"identifier":"sle-module-basesystem","friendly_version":"15","offline_predecessor_ids":[1212,1368,1440,1618],"name":"Basesystem Module","release_type":null,"former_identifier":"sle-module-basesystem","friendly_name":"Basesystem Module 15 x86_64","migration_extra":false,"recommended":true,"version":"15"},{"extensions":[],"id":2056,"release_stage":"released","identifier":"SLES-LTSS","friendly_version":"15","name":"SUSE Linux Enterprise Server LTSS","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Server LTSS 15 x86_64","release_type":null,"former_identifier":"SLES-LTSS","recommended":false,"version":"15","cpe":"cpe:/o:suse:sles-ltss:15","product_type":"extension","predecessor_ids":[],"online_predecessor_ids":[],"product_class":"SLES15-GA-LTSS-X86","repositories":[{"name":"SLE-Product-SLES15-LTSS-Updates","installer_updates":false,"description":"SLE-Product-SLES15-LTSS-Updates for sle-15-x86_64","enabled":true,"id":4390,"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Product-SLES/15-LTSS/x86_64/update/"},{"enabled":false,"id":4391,"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Product-SLES/15-LTSS/x86_64/update_debug/","name":"SLE-Product-SLES15-Debuginfo-LTSS-Updates","installer_updates":false,"description":"SLE-Product-SLES15-Debuginfo-LTSS-Updates for sle-15-x86_64"}],"eula_url":"","arch":"x86_64","shortname":"SLES15-LTSS","description":"SUSE Linux Enterprise offers a comprehensive suite of products built on a single code base. The platform addresses business needs from the smallest thin-client devices to the world's most powerful high-performance computing and mainframe servers. SUSE Linux Enterprise offers common management tools and technology certifications across the platform, and each product is enterprise-class.","free":false}],"friendly_version":"15"},{"identifier":"sle-module-basesystem","release_stage":"released","id":1576,"extensions":[],"friendly_version":"15","release_type":null,"former_identifier":"sle-module-basesystem","friendly_name":"Basesystem Module 15 x86_64","migration_extra":false,"offline_predecessor_ids":[1212,1368,1440,1618],"name":"Basesystem Module","version":"15","recommended":false,"product_type":"module","cpe":"cpe:/o:suse:sle-module-basesystem:15","product_class":"MODULE","online_predecessor_ids":[],"repositories":[{"description":"SLE-Module-Basesystem15-Updates for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Basesystem15-Updates","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15/x86_64/update/","distro_target":"sle-15-x86_64","autorefresh":true,"id":2524,"enabled":true},{"description":"SLE-Module-Basesystem15-Debuginfo-Updates for sle-15-x86_64","name":"SLE-Module-Basesystem15-Debuginfo-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15/x86_64/update_debug/","enabled":false,"id":2525},{"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15/x86_64/product/","enabled":true,"id":2526,"description":"SLE-Module-Basesystem15-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Basesystem15-Pool"},{"description":"SLE-Module-Basesystem15-Debuginfo-Pool for sle-15-x86_64","name":"SLE-Module-Basesystem15-Debuginfo-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15/x86_64/product_debug/","autorefresh":false,"distro_target":"sle-15-x86_64","id":2527,"enabled":false},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15/x86_64/product_source/","distro_target":"sle-15-x86_64","autorefresh":false,"id":2528,"enabled":false,"description":"SLE-Module-Basesystem15-Source-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Basesystem15-Source-Pool"}],"predecessor_ids":[],"arch":"x86_64","eula_url":"","free":true,"description":"

The SUSE Linux Enterprise Basesystem Module delivers the base system of the product.

","shortname":"Basesystem-Module"},{"product_type":"module","cpe":"cpe:/o:suse:sle-module-desktop-applications:15","predecessor_ids":[],"repositories":[{"enabled":true,"id":2534,"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15/x86_64/update/","name":"SLE-Module-Desktop-Applications15-Updates","installer_updates":false,"description":"SLE-Module-Desktop-Applications15-Updates for sle-15-x86_64"},{"id":2535,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15/x86_64/update_debug/","distro_target":"sle-15-x86_64","autorefresh":true,"installer_updates":false,"name":"SLE-Module-Desktop-Applications15-Debuginfo-Updates","description":"SLE-Module-Desktop-Applications15-Debuginfo-Updates for sle-15-x86_64"},{"name":"SLE-Module-Desktop-Applications15-Pool","installer_updates":false,"description":"SLE-Module-Desktop-Applications15-Pool for sle-15-x86_64","enabled":true,"id":2536,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15/x86_64/product/"},{"description":"SLE-Module-Desktop-Applications15-Debuginfo-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Desktop-Applications15-Debuginfo-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15/x86_64/product_debug/","distro_target":"sle-15-x86_64","autorefresh":false,"id":2537,"enabled":false},{"enabled":false,"id":2538,"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15/x86_64/product_source/","installer_updates":false,"name":"SLE-Module-Desktop-Applications15-Source-Pool","description":"SLE-Module-Desktop-Applications15-Source-Pool for sle-15-x86_64"}],"online_predecessor_ids":[],"product_class":"MODULE","eula_url":"","arch":"x86_64","free":true,"description":"

The SUSE Linux Enterprise Desktop Applications Module delivers a basic set of Desktop functionality.

Access to the Desktop Applications Module is included in your SUSE Linux Enterprise product subscription.

","shortname":"Desktop-Applications-Module","extensions":[],"id":1578,"release_stage":"released","identifier":"sle-module-desktop-applications","friendly_version":"15","offline_predecessor_ids":[],"name":"Desktop Applications Module","former_identifier":"sle-module-desktop-applications","release_type":null,"friendly_name":"Desktop Applications Module 15 x86_64","migration_extra":false,"recommended":false,"version":"15"},{"recommended":false,"version":"15","name":"Development Tools Module","offline_predecessor_ids":[1223,1323,1341,1366,1427,1630,1892],"friendly_name":"Development Tools Module 15 x86_64","migration_extra":false,"release_type":null,"former_identifier":"sle-sdk","friendly_version":"15","extensions":[],"id":1579,"release_stage":"released","identifier":"sle-module-development-tools","description":"

The Development Tools Module helps you developing applications for SUSE Linux Enterprise 15.

Access to the Development Tools Module is included in your SUSE Linux Enterprise product subscription. The module has a different lifecycle than SUSE Linux Enterprise itself.

","shortname":"Development-Tools-Module","free":true,"eula_url":"","arch":"x86_64","predecessor_ids":[],"repositories":[{"installer_updates":false,"name":"SLE-Module-DevTools15-Updates","description":"SLE-Module-DevTools15-Updates for sle-15-x86_64","enabled":true,"id":2539,"distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15/x86_64/update/"},{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15/x86_64/update_debug/","autorefresh":true,"distro_target":"sle-15-x86_64","id":2540,"enabled":false,"description":"SLE-Module-DevTools15-Debuginfo-Updates for sle-15-x86_64","name":"SLE-Module-DevTools15-Debuginfo-Updates","installer_updates":false},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15/x86_64/product/","autorefresh":false,"distro_target":"sle-15-x86_64","id":2541,"enabled":true,"description":"SLE-Module-DevTools15-Pool for sle-15-x86_64","name":"SLE-Module-DevTools15-Pool","installer_updates":false},{"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15/x86_64/product_debug/","enabled":false,"id":2542,"description":"SLE-Module-DevTools15-Debuginfo-Pool for sle-15-x86_64","name":"SLE-Module-DevTools15-Debuginfo-Pool","installer_updates":false},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15/x86_64/product_source/","distro_target":"sle-15-x86_64","autorefresh":false,"id":2543,"enabled":false,"description":"SLE-Module-DevTools15-Source-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-DevTools15-Source-Pool"}],"online_predecessor_ids":[],"product_class":"MODULE","cpe":"cpe:/o:suse:sle-module-development-tools:15","product_type":"module"},{"eula_url":"","arch":"x86_64","description":"

The SUSE Linux Enterprise Server Applications Module delivers a basic set of Server functionality.

Access to the Server Applications Module is included in your SUSE Linux Enterprise Server subscription.

","shortname":"Server-Applications-Module","free":true,"cpe":"cpe:/o:suse:sle-module-server-applications:15","product_type":"module","predecessor_ids":[],"repositories":[{"enabled":true,"id":2544,"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15/x86_64/update/","name":"SLE-Module-Server-Applications15-Updates","installer_updates":false,"description":"SLE-Module-Server-Applications15-Updates for sle-15-x86_64"},{"installer_updates":false,"name":"SLE-Module-Server-Applications15-Debuginfo-Updates","description":"SLE-Module-Server-Applications15-Debuginfo-Updates for sle-15-x86_64","enabled":false,"id":2545,"distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15/x86_64/update_debug/"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15/x86_64/product/","distro_target":"sle-15-x86_64","autorefresh":false,"id":2546,"enabled":true,"description":"SLE-Module-Server-Applications15-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Server-Applications15-Pool"},{"enabled":false,"id":2547,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15/x86_64/product_debug/","name":"SLE-Module-Server-Applications15-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-Server-Applications15-Debuginfo-Pool for sle-15-x86_64"},{"description":"SLE-Module-Server-Applications15-Source-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Server-Applications15-Source-Pool","distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15/x86_64/product_source/","enabled":false,"id":2548}],"online_predecessor_ids":[],"product_class":"MODULE","name":"Server Applications Module","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"Server Applications Module 15 x86_64","former_identifier":"sle-module-server-applications","release_type":null,"recommended":false,"version":"15","extensions":[],"id":1580,"release_stage":"released","identifier":"sle-module-server-applications","friendly_version":"15"},{"free":true,"shortname":"Legacy-Module","description":"

The Legacy Module helps you migrating applications from SUSE Linux Enterprise 12 and other systems to SUSE Linux Enterprise 15, by providing packages which are discontinued on SUSE Linux Enterprise Server, such as: ntp, IBM Java 8, and a number of libraries.

Access to the Legacy Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself. Packages in the this module are usually supported for at most three years.

","eula_url":"","arch":"x86_64","predecessor_ids":[],"online_predecessor_ids":[],"repositories":[{"id":2549,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/15/x86_64/update/","distro_target":"sle-15-x86_64","autorefresh":true,"installer_updates":false,"name":"SLE-Module-Legacy15-Updates","description":"SLE-Module-Legacy15-Updates for sle-15-x86_64"},{"enabled":false,"id":2550,"distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/15/x86_64/update_debug/","installer_updates":false,"name":"SLE-Module-Legacy15-Debuginfo-Updates","description":"SLE-Module-Legacy15-Debuginfo-Updates for sle-15-x86_64"},{"description":"SLE-Module-Legacy15-Pool for sle-15-x86_64","name":"SLE-Module-Legacy15-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15/x86_64/product/","autorefresh":false,"distro_target":"sle-15-x86_64","id":2551,"enabled":true},{"installer_updates":false,"name":"SLE-Module-Legacy15-Debuginfo-Pool","description":"SLE-Module-Legacy15-Debuginfo-Pool for sle-15-x86_64","enabled":false,"id":2552,"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15/x86_64/product_debug/"},{"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15/x86_64/product_source/","enabled":false,"id":2553,"description":"SLE-Module-Legacy15-Source-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Legacy15-Source-Pool"}],"product_class":"MODULE","product_type":"module","cpe":"cpe:/o:suse:sle-module-legacy:15","recommended":false,"version":"15","offline_predecessor_ids":[1150],"name":"Legacy Module","release_type":null,"former_identifier":"sle-module-legacy","migration_extra":false,"friendly_name":"Legacy Module 15 x86_64","friendly_version":"15","extensions":[],"id":1581,"release_stage":"released","identifier":"sle-module-legacy"},{"friendly_version":"15","id":1582,"release_stage":"released","identifier":"sle-ha","extensions":[],"version":"15","recommended":false,"former_identifier":"sle-ha","release_type":null,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise High Availability Extension 15 x86_64","offline_predecessor_ids":[958,961,967,971,1101,1107,1157,1245,1256,1286,1324,1337,1361,1363,1432,1435,1634,1637,1884,1886],"name":"SUSE Linux Enterprise High Availability Extension","product_class":"SLE-HAE-X86","online_predecessor_ids":[],"repositories":[{"description":"SLE-Product-HA15-Updates for sle-15-x86_64","installer_updates":false,"name":"SLE-Product-HA15-Updates","distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-HA/15/x86_64/update/","enabled":true,"id":2754},{"installer_updates":false,"name":"SLE-Product-HA15-Debuginfo-Updates","description":"SLE-Product-HA15-Debuginfo-Updates for sle-15-x86_64","id":2755,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-HA/15/x86_64/update_debug/","distro_target":"sle-15-x86_64","autorefresh":true},{"id":2756,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15/x86_64/product/","autorefresh":false,"distro_target":"sle-15-x86_64","name":"SLE-Product-HA15-Pool","installer_updates":false,"description":"SLE-Product-HA15-Pool for sle-15-x86_64"},{"enabled":false,"id":2757,"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15/x86_64/product_debug/","installer_updates":false,"name":"SLE-Product-HA15-Debuginfo-Pool","description":"SLE-Product-HA15-Debuginfo-Pool for sle-15-x86_64"},{"description":"SLE-Product-HA15-Source-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Product-HA15-Source-Pool","distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15/x86_64/product_source/","enabled":false,"id":2758}],"predecessor_ids":[],"product_type":"extension","cpe":"cpe:/o:suse:sle-ha:15","free":false,"shortname":"SLEHA15","description":"SUSE Linux High Availability Extension provides mature, industry-leading open-source high-availability clustering technologies that are easy to set up and use. It can be deployed in physical and/or virtual environments, and can cluster physical servers, virtual servers, or any combination of the two to suit your business’ needs.","arch":"x86_64","eula_url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15/x86_64/product.license/"},{"friendly_version":"15","id":1583,"release_stage":"released","identifier":"sle-we","extensions":[],"version":"15","recommended":false,"former_identifier":"sle-we","release_type":null,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Workstation Extension 15 x86_64","offline_predecessor_ids":[1222,1338,1359,1431,1639,1893],"name":"SUSE Linux Enterprise Workstation Extension","repositories":[{"distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-WE/15/x86_64/update/","enabled":true,"id":2742,"description":"SLE-Product-WE15-Updates for sle-15-x86_64","installer_updates":false,"name":"SLE-Product-WE15-Updates"},{"enabled":false,"id":2743,"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Product-WE/15/x86_64/update_debug/","name":"SLE-Product-WE15-Debuginfo-Updates","installer_updates":false,"description":"SLE-Product-WE15-Debuginfo-Updates for sle-15-x86_64"},{"installer_updates":false,"name":"SLE-Product-WE15-Pool","description":"SLE-Product-WE15-Pool for sle-15-x86_64","id":2744,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-WE/15/x86_64/product/","distro_target":"sle-15-x86_64","autorefresh":false},{"description":"SLE-Product-WE15-Debuginfo-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Product-WE15-Debuginfo-Pool","distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-WE/15/x86_64/product_debug/","enabled":false,"id":2745},{"installer_updates":false,"name":"SLE-Product-WE15-Source-Pool","description":"SLE-Product-WE15-Source-Pool for sle-15-x86_64","enabled":false,"id":2746,"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-WE/15/x86_64/product_source/"},{"url":"https://download.nvidia.com/suse/sle15/","distro_target":null,"autorefresh":true,"id":2747,"enabled":true,"description":"SLE-15-GA-Desktop-NVIDIA-Driver","installer_updates":false,"name":"SLE-15-GA-Desktop-NVIDIA-Driver"}],"online_predecessor_ids":[],"product_class":"SLE-WE","predecessor_ids":[],"product_type":"extension","cpe":"cpe:/o:suse:sle-we:15","free":false,"shortname":"SLEWE15","description":"SUSE Linux Enterprise Workstation Extension adds additional functionality to a base SUSE Linux Enterprise installation. The Workstation Extension offers additional desktop applications (office suite, email client, graphical editor, multimedia tools) and libraries. Workstation Extension is enabled and installed by default on SUSE Linux Enterprise Desktop installation. Adding the Workstation Extension to a SUSE Linux Enterprise Server installation allows to seamlessly combine both products to create a full featured server workstation.","arch":"x86_64","eula_url":"https://updates.suse.com/SUSE/Products/SLE-Product-WE/15/x86_64/product.license/"},{"cpe":"cpe:/o:suse:sles:15","product_type":"base","predecessor_ids":[],"repositories":[{"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-SLES/15/s390x/update/","autorefresh":true,"distro_target":"sle-15-s390x","id":2708,"enabled":true,"description":"SLE-Product-SLES15-Updates for sle-15-s390x","name":"SLE-Product-SLES15-Updates","installer_updates":false},{"url":"https://updates.suse.com/SUSE/Updates/SLE-INSTALLER/15/s390x/update/","autorefresh":true,"distro_target":"sle-15-s390x","id":2709,"enabled":false,"description":"SLE15-Installer-Updates for sle-15-s390x","name":"SLE15-Installer-Updates","installer_updates":true},{"enabled":true,"id":2710,"autorefresh":false,"distro_target":"sle-15-s390x","url":"https://updates.suse.com/SUSE/Products/SLE-Product-SLES/15/s390x/product/","name":"SLE-Product-SLES15-Pool","installer_updates":false,"description":"SLE-Product-SLES15-Pool for sle-15-s390x"},{"id":3111,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-SLES/15/s390x/update_debug/","autorefresh":true,"distro_target":"sle-15-s390x","name":"SLE-Product-SLES15-Debuginfo-Updates","installer_updates":false,"description":"SLE-Product-SLES15-Debuginfo-Updates for sle-15-s390x"},{"enabled":false,"id":3112,"autorefresh":false,"distro_target":"sle-15-s390x","url":"https://updates.suse.com/SUSE/Products/SLE-Product-SLES/15/s390x/product_debug/","name":"SLE-Product-SLES15-Debuginfo-Pool","installer_updates":false,"description":"SLE-Product-SLES15-Debuginfo-Pool for sle-15-s390x"},{"enabled":false,"id":3113,"distro_target":"sle-15-s390x","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-SLES/15/s390x/product_source/","installer_updates":false,"name":"SLE-Product-SLES15-Source-Pool","description":"SLE-Product-SLES15-Source-Pool for sle-15-s390x"}],"online_predecessor_ids":[],"product_class":"SLES-Z","eula_url":"https://updates.suse.com/SUSE/Products/SLE-Product-SLES/15/s390x/product.license/","arch":"s390x","description":"SUSE Linux Enterprise offers a comprehensive suite of products built on a single code base. The platform addresses business needs from the smallest thin-client devices to the world's most powerful high-performance computing and mainframe servers. SUSE Linux Enterprise offers common management tools and technology certifications across the platform, and each product is enterprise-class.","shortname":"SLES15","free":false,"extensions":[{"free":true,"shortname":"Basesystem-Module","description":"

The SUSE Linux Enterprise Basesystem Module delivers the base system of the product.

","arch":"s390x","eula_url":"","repositories":[{"enabled":true,"id":2564,"autorefresh":true,"distro_target":"sle-15-s390x","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15/s390x/update/","name":"SLE-Module-Basesystem15-Updates","installer_updates":false,"description":"SLE-Module-Basesystem15-Updates for sle-15-s390x"},{"enabled":false,"id":2565,"autorefresh":true,"distro_target":"sle-15-s390x","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15/s390x/update_debug/","name":"SLE-Module-Basesystem15-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-Basesystem15-Debuginfo-Updates for sle-15-s390x"},{"autorefresh":false,"distro_target":"sle-15-s390x","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15/s390x/product/","enabled":true,"id":2566,"description":"SLE-Module-Basesystem15-Pool for sle-15-s390x","name":"SLE-Module-Basesystem15-Pool","installer_updates":false},{"name":"SLE-Module-Basesystem15-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-Basesystem15-Debuginfo-Pool for sle-15-s390x","id":2567,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15/s390x/product_debug/","autorefresh":false,"distro_target":"sle-15-s390x"},{"description":"SLE-Module-Basesystem15-Source-Pool for sle-15-s390x","name":"SLE-Module-Basesystem15-Source-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-15-s390x","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15/s390x/product_source/","enabled":false,"id":2568}],"online_predecessor_ids":[],"product_class":"MODULE","predecessor_ids":[],"product_type":"module","cpe":"cpe:/o:suse:sle-module-basesystem:15","version":"15","recommended":true,"former_identifier":"sle-module-basesystem","release_type":null,"migration_extra":false,"friendly_name":"Basesystem Module 15 s390x","offline_predecessor_ids":[1295,1367],"name":"Basesystem Module","friendly_version":"15","release_stage":"released","identifier":"sle-module-basesystem","id":1587,"extensions":[{"friendly_version":"15","release_stage":"released","identifier":"sle-module-desktop-applications","id":1593,"extensions":[{"friendly_name":"Development Tools Module 15 s390x","migration_extra":true,"former_identifier":"sle-sdk","release_type":null,"name":"Development Tools Module","offline_predecessor_ids":[1146,1340,1344,1365,1429,1632,1891],"version":"15","recommended":false,"identifier":"sle-module-development-tools","release_stage":"released","id":1596,"extensions":[],"friendly_version":"15","arch":"s390x","eula_url":"","description":"

The Development Tools Module helps you developing applications for SUSE Linux Enterprise 15.

Access to the Development Tools Module is included in your SUSE Linux Enterprise product subscription. The module has a different lifecycle than SUSE Linux Enterprise itself.

","shortname":"Development-Tools-Module","free":true,"cpe":"cpe:/o:suse:sle-module-development-tools:15","product_type":"module","repositories":[{"name":"SLE-Module-DevTools15-Updates","installer_updates":false,"description":"SLE-Module-DevTools15-Updates for sle-15-s390x","id":2608,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15/s390x/update/","autorefresh":true,"distro_target":"sle-15-s390x"},{"autorefresh":true,"distro_target":"sle-15-s390x","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15/s390x/update_debug/","enabled":false,"id":2609,"description":"SLE-Module-DevTools15-Debuginfo-Updates for sle-15-s390x","name":"SLE-Module-DevTools15-Debuginfo-Updates","installer_updates":false},{"name":"SLE-Module-DevTools15-Pool","installer_updates":false,"description":"SLE-Module-DevTools15-Pool for sle-15-s390x","enabled":true,"id":2610,"autorefresh":false,"distro_target":"sle-15-s390x","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15/s390x/product/"},{"distro_target":"sle-15-s390x","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15/s390x/product_debug/","enabled":false,"id":2611,"description":"SLE-Module-DevTools15-Debuginfo-Pool for sle-15-s390x","installer_updates":false,"name":"SLE-Module-DevTools15-Debuginfo-Pool"},{"installer_updates":false,"name":"SLE-Module-DevTools15-Source-Pool","description":"SLE-Module-DevTools15-Source-Pool for sle-15-s390x","enabled":false,"id":2612,"distro_target":"sle-15-s390x","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15/s390x/product_source/"}],"online_predecessor_ids":[],"product_class":"MODULE","predecessor_ids":[]}],"version":"15","recommended":false,"migration_extra":true,"friendly_name":"Desktop Applications Module 15 s390x","former_identifier":"sle-module-desktop-applications","release_type":null,"name":"Desktop Applications Module","offline_predecessor_ids":[],"online_predecessor_ids":[],"product_class":"MODULE","repositories":[{"description":"SLE-Module-Desktop-Applications15-Updates for sle-15-s390x","name":"SLE-Module-Desktop-Applications15-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-15-s390x","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15/s390x/update/","enabled":true,"id":2593},{"installer_updates":false,"name":"SLE-Module-Desktop-Applications15-Debuginfo-Updates","description":"SLE-Module-Desktop-Applications15-Debuginfo-Updates for sle-15-s390x","id":2594,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15/s390x/update_debug/","distro_target":"sle-15-s390x","autorefresh":true},{"description":"SLE-Module-Desktop-Applications15-Pool for sle-15-s390x","installer_updates":false,"name":"SLE-Module-Desktop-Applications15-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15/s390x/product/","distro_target":"sle-15-s390x","autorefresh":false,"id":2595,"enabled":true},{"distro_target":"sle-15-s390x","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15/s390x/product_debug/","enabled":false,"id":2596,"description":"SLE-Module-Desktop-Applications15-Debuginfo-Pool for sle-15-s390x","installer_updates":false,"name":"SLE-Module-Desktop-Applications15-Debuginfo-Pool"},{"enabled":false,"id":2597,"autorefresh":false,"distro_target":"sle-15-s390x","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15/s390x/product_source/","name":"SLE-Module-Desktop-Applications15-Source-Pool","installer_updates":false,"description":"SLE-Module-Desktop-Applications15-Source-Pool for sle-15-s390x"}],"predecessor_ids":[],"cpe":"cpe:/o:suse:sle-module-desktop-applications:15","product_type":"module","shortname":"Desktop-Applications-Module","description":"

The SUSE Linux Enterprise Desktop Applications Module delivers a basic set of Desktop functionality.

Access to the Desktop Applications Module is included in your SUSE Linux Enterprise product subscription.

","free":true,"arch":"s390x","eula_url":""},{"free":true,"shortname":"Server-Applications-Module","description":"

The SUSE Linux Enterprise Server Applications Module delivers a basic set of Server functionality.

Access to the Server Applications Module is included in your SUSE Linux Enterprise Server subscription.

","eula_url":"","arch":"s390x","predecessor_ids":[],"online_predecessor_ids":[],"repositories":[{"description":"SLE-Module-Server-Applications15-Updates for sle-15-s390x","installer_updates":false,"name":"SLE-Module-Server-Applications15-Updates","distro_target":"sle-15-s390x","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15/s390x/update/","enabled":true,"id":2623},{"enabled":false,"id":2624,"distro_target":"sle-15-s390x","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15/s390x/update_debug/","installer_updates":false,"name":"SLE-Module-Server-Applications15-Debuginfo-Updates","description":"SLE-Module-Server-Applications15-Debuginfo-Updates for sle-15-s390x"},{"description":"SLE-Module-Server-Applications15-Pool for sle-15-s390x","installer_updates":false,"name":"SLE-Module-Server-Applications15-Pool","distro_target":"sle-15-s390x","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15/s390x/product/","enabled":true,"id":2625},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15/s390x/product_debug/","autorefresh":false,"distro_target":"sle-15-s390x","id":2626,"enabled":false,"description":"SLE-Module-Server-Applications15-Debuginfo-Pool for sle-15-s390x","name":"SLE-Module-Server-Applications15-Debuginfo-Pool","installer_updates":false},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15/s390x/product_source/","autorefresh":false,"distro_target":"sle-15-s390x","id":2627,"enabled":false,"description":"SLE-Module-Server-Applications15-Source-Pool for sle-15-s390x","name":"SLE-Module-Server-Applications15-Source-Pool","installer_updates":false}],"product_class":"MODULE","product_type":"module","cpe":"cpe:/o:suse:sle-module-server-applications:15","recommended":true,"version":"15","offline_predecessor_ids":[],"name":"Server Applications Module","release_type":null,"former_identifier":"sle-module-server-applications","friendly_name":"Server Applications Module 15 s390x","migration_extra":false,"friendly_version":"15","extensions":[{"friendly_version":"15","extensions":[],"release_stage":"released","id":1602,"identifier":"sle-module-legacy","recommended":false,"version":"15","offline_predecessor_ids":[1149],"name":"Legacy Module","former_identifier":"sle-module-legacy","release_type":null,"friendly_name":"Legacy Module 15 s390x","migration_extra":true,"predecessor_ids":[],"repositories":[{"distro_target":"sle-15-s390x","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/15/s390x/update/","enabled":true,"id":2638,"description":"SLE-Module-Legacy15-Updates for sle-15-s390x","installer_updates":false,"name":"SLE-Module-Legacy15-Updates"},{"installer_updates":false,"name":"SLE-Module-Legacy15-Debuginfo-Updates","description":"SLE-Module-Legacy15-Debuginfo-Updates for sle-15-s390x","enabled":false,"id":2639,"distro_target":"sle-15-s390x","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/15/s390x/update_debug/"},{"id":2640,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15/s390x/product/","autorefresh":false,"distro_target":"sle-15-s390x","name":"SLE-Module-Legacy15-Pool","installer_updates":false,"description":"SLE-Module-Legacy15-Pool for sle-15-s390x"},{"description":"SLE-Module-Legacy15-Debuginfo-Pool for sle-15-s390x","name":"SLE-Module-Legacy15-Debuginfo-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-15-s390x","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15/s390x/product_debug/","enabled":false,"id":2641},{"distro_target":"sle-15-s390x","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15/s390x/product_source/","enabled":false,"id":2642,"description":"SLE-Module-Legacy15-Source-Pool for sle-15-s390x","installer_updates":false,"name":"SLE-Module-Legacy15-Source-Pool"}],"online_predecessor_ids":[],"product_class":"MODULE","product_type":"module","cpe":"cpe:/o:suse:sle-module-legacy:15","free":true,"description":"

The Legacy Module helps you migrating applications from SUSE Linux Enterprise 12 and other systems to SUSE Linux Enterprise 15, by providing packages which are discontinued on SUSE Linux Enterprise Server, such as: ntp, IBM Java 8, and a number of libraries.

Access to the Legacy Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself. Packages in the this module are usually supported for at most three years.

","shortname":"Legacy-Module","eula_url":"","arch":"s390x"},{"extensions":[],"release_stage":"released","id":1605,"identifier":"sle-ha","friendly_version":"15","offline_predecessor_ids":[1080,1082,1084,1086,1109,1110,1156,1244,1257,1287,1336,1345,1360,1362,1434,1436,1636,1638,1883,1885],"name":"SUSE Linux Enterprise High Availability Extension","release_type":null,"former_identifier":"sle-ha","migration_extra":false,"friendly_name":"SUSE Linux Enterprise High Availability Extension 15 s390x","recommended":false,"version":"15","product_type":"extension","cpe":"cpe:/o:suse:sle-ha:15","predecessor_ids":[],"product_class":"SLE-HAE-Z","online_predecessor_ids":[],"repositories":[{"autorefresh":true,"distro_target":"sle-15-s390x","url":"https://updates.suse.com/SUSE/Updates/SLE-Product-HA/15/s390x/update/","enabled":true,"id":2759,"description":"SLE-Product-HA15-Updates for sle-15-s390x","name":"SLE-Product-HA15-Updates","installer_updates":false},{"id":2760,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-HA/15/s390x/update_debug/","distro_target":"sle-15-s390x","autorefresh":true,"installer_updates":false,"name":"SLE-Product-HA15-Debuginfo-Updates","description":"SLE-Product-HA15-Debuginfo-Updates for sle-15-s390x"},{"description":"SLE-Product-HA15-Pool for sle-15-s390x","installer_updates":false,"name":"SLE-Product-HA15-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15/s390x/product/","distro_target":"sle-15-s390x","autorefresh":false,"id":2761,"enabled":true},{"name":"SLE-Product-HA15-Debuginfo-Pool","installer_updates":false,"description":"SLE-Product-HA15-Debuginfo-Pool for sle-15-s390x","id":2762,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15/s390x/product_debug/","autorefresh":false,"distro_target":"sle-15-s390x"},{"distro_target":"sle-15-s390x","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15/s390x/product_source/","enabled":false,"id":2763,"description":"SLE-Product-HA15-Source-Pool for sle-15-s390x","installer_updates":false,"name":"SLE-Product-HA15-Source-Pool"}],"eula_url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15/s390x/product.license/","arch":"s390x","free":false,"description":"SUSE Linux High Availability Extension provides mature, industry-leading open-source high-availability clustering technologies that are easy to set up and use. It can be deployed in physical and/or virtual environments, and can cluster physical servers, virtual servers, or any combination of the two to suit your business’ needs.","shortname":"SLEHA15"},{"friendly_version":"15","extensions":[],"release_stage":"released","identifier":"sle-module-public-cloud","id":1646,"recommended":false,"version":"15","name":"Public Cloud Module","offline_predecessor_ids":[1219],"migration_extra":true,"friendly_name":"Public Cloud Module 15 s390x","former_identifier":"sle-module-public-cloud","release_type":null,"predecessor_ids":[],"online_predecessor_ids":[],"product_class":"MODULE","repositories":[{"autorefresh":true,"distro_target":"sle-15-s390x","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/15/s390x/update/","enabled":true,"id":2883,"description":"SLE-Module-Public-Cloud15-Updates for sle-15-s390x","name":"SLE-Module-Public-Cloud15-Updates","installer_updates":false},{"name":"SLE-Module-Public-Cloud15-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-Public-Cloud15-Debuginfo-Updates for sle-15-s390x","enabled":false,"id":2884,"autorefresh":true,"distro_target":"sle-15-s390x","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/15/s390x/update_debug/"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15/s390x/product/","autorefresh":false,"distro_target":"sle-15-s390x","id":2885,"enabled":true,"description":"SLE-Module-Public-Cloud15-Pool for sle-15-s390x","name":"SLE-Module-Public-Cloud15-Pool","installer_updates":false},{"autorefresh":false,"distro_target":"sle-15-s390x","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15/s390x/product_debug/","enabled":false,"id":2886,"description":"SLE-Module-Public-Cloud15-Debuginfo-Pool for sle-15-s390x","name":"SLE-Module-Public-Cloud15-Debuginfo-Pool","installer_updates":false},{"description":"SLE-Module-Public-Cloud15-Source-Pool for sle-15-s390x","name":"SLE-Module-Public-Cloud15-Source-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-15-s390x","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15/s390x/product_source/","enabled":false,"id":3128}],"cpe":"cpe:/o:suse:sle-module-public-cloud:15","product_type":"module","shortname":"Public-Cloud-Module","description":"

The Public Cloud Module is a collection of tools that enables you to create and manage cloud images from the commandline on SUSE Linux Enterprise Server. When building your own images with KIWI or SUSE Studio, initialization code specific to the target cloud is included in that image.

Access to the Public Cloud Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself; please check the Release Notes for further details.

","free":true,"eula_url":"","arch":"s390x"},{"version":"15","recommended":false,"former_identifier":"sle-module-web-scripting","release_type":null,"migration_extra":true,"friendly_name":"Web and Scripting Module 15 s390x","offline_predecessor_ids":[1152],"name":"Web and Scripting Module","friendly_version":"15","release_stage":"released","id":1720,"identifier":"sle-module-web-scripting","extensions":[],"free":true,"description":"

The SUSE Linux Enterprise Web and Scripting Module should contains additional packages that are helpful when running a webserver.

Access to the Web and Scripting Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself: Package versions in this module are usually supported for at most three years. We are planning to release more recent versions on a schedule of approximately 18 month; the exact dates may differ per package.

","shortname":"Web-Scripting-Module","arch":"s390x","eula_url":"","online_predecessor_ids":[],"product_class":"MODULE","repositories":[{"name":"SLE-Module-Web-Scripting15-Updates","installer_updates":false,"description":"SLE-Module-Web-Scripting15-Updates for sle-15-s390x","enabled":true,"id":2967,"autorefresh":true,"distro_target":"sle-15-s390x","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/15/s390x/update/"},{"installer_updates":false,"name":"SLE-Module-Web-Scripting15-Debuginfo-Updates","description":"SLE-Module-Web-Scripting15-Debuginfo-Updates for sle-15-s390x","enabled":false,"id":2968,"distro_target":"sle-15-s390x","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/15/s390x/update_debug/"},{"autorefresh":false,"distro_target":"sle-15-s390x","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15/s390x/product/","enabled":true,"id":2969,"description":"SLE-Module-Web-Scripting15-Pool for sle-15-s390x","name":"SLE-Module-Web-Scripting15-Pool","installer_updates":false},{"distro_target":"sle-15-s390x","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15/s390x/product_debug/","enabled":false,"id":2970,"description":"SLE-Module-Web-Scripting15-Debuginfo-Pool for sle-15-s390x","installer_updates":false,"name":"SLE-Module-Web-Scripting15-Debuginfo-Pool"},{"description":"SLE-Module-Web-Scripting15-Source-Pool for sle-15-s390x","name":"SLE-Module-Web-Scripting15-Source-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15/s390x/product_source/","autorefresh":false,"distro_target":"sle-15-s390x","id":2971,"enabled":false}],"predecessor_ids":[],"product_type":"module","cpe":"cpe:/o:suse:sle-module-web-scripting:15"}],"identifier":"sle-module-server-applications","release_stage":"released","id":1599},{"repositories":[{"id":2859,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/15/s390x/update/","distro_target":"sle-15-s390x","autorefresh":true,"installer_updates":false,"name":"SLE-Module-Containers15-Updates","description":"SLE-Module-Containers15-Updates for sle-15-s390x"},{"name":"SLE-Module-Containers15-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-Containers15-Debuginfo-Updates for sle-15-s390x","id":2860,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/15/s390x/update_debug/","autorefresh":true,"distro_target":"sle-15-s390x"},{"installer_updates":false,"name":"SLE-Module-Containers15-Pool","description":"SLE-Module-Containers15-Pool for sle-15-s390x","id":2861,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15/s390x/product/","distro_target":"sle-15-s390x","autorefresh":false},{"distro_target":"sle-15-s390x","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15/s390x/product_debug/","enabled":false,"id":2862,"description":"SLE-Module-Containers15-Debuginfo-Pool for sle-15-s390x","installer_updates":false,"name":"SLE-Module-Containers15-Debuginfo-Pool"},{"enabled":false,"id":2863,"autorefresh":false,"distro_target":"sle-15-s390x","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15/s390x/product_source/","name":"SLE-Module-Containers15-Source-Pool","installer_updates":false,"description":"SLE-Module-Containers15-Source-Pool for sle-15-s390x"}],"online_predecessor_ids":[],"product_class":"MODULE","predecessor_ids":[],"product_type":"module","cpe":"cpe:/o:suse:sle-module-containers:15","free":true,"shortname":"Containers-Module","description":"

This Module contains several packages revolving around containers and related tools.

","arch":"s390x","eula_url":"","friendly_version":"15","id":1641,"release_stage":"released","identifier":"sle-module-containers","extensions":[],"version":"15","recommended":false,"former_identifier":"sle-module-containers","release_type":null,"friendly_name":"Containers Module 15 s390x","migration_extra":true,"offline_predecessor_ids":[1354],"name":"Containers Module"},{"version":"15","recommended":false,"migration_extra":false,"friendly_name":"SUSE Package Hub 15 s390x","former_identifier":"PackageHub","release_type":null,"name":"SUSE Package Hub","offline_predecessor_ids":[1530,1812,1914],"friendly_version":"15","identifier":"PackageHub","release_stage":"released","id":1742,"extensions":[],"description":"SUSE Package Hub is a free of charge extension providing access to community maintained packages built to run on SUSE Linux Enterprise Server. Built from the same sources used in the openSUSE distributions, these quality packages provide additional software to what is found in the SUSE Linux Enterprise Server product. Packages from the Package Hub are delivered without L3 support from SUSE. General updates and fixes to the packages in SUSE Package Hub are provided by the openSUSE community based on their discretion though SUSE will monitor and ensure that any known critical security issues will be addressed. Packages in the Package Hub are approved by SUSE for use with SUSE Linux Enterprise Server 15 and to not interfere with the supportability of SUSE Linux Enterprise Server it's modules and extensions. For more information about SUSE Package Hub please visit https://packagehub.suse.com.","shortname":"SUSE-PackageHub-15","free":true,"arch":"s390x","eula_url":"","repositories":[{"url":"https://updates.suse.com/SUSE/Backports/SLE-15_s390x/standard/","distro_target":"sle-15-s390x","autorefresh":false,"id":3056,"enabled":true,"description":"SUSE-PackageHub-15-Standard-Pool for sle-15-s390x","installer_updates":false,"name":"SUSE-PackageHub-15-Standard-Pool"},{"url":"https://updates.suse.com/SUSE/Backports/SLE-15_s390x/standard_debug/","distro_target":"sle-15-s390x","autorefresh":true,"id":3057,"enabled":false,"description":"SUSE-PackageHub-15-Debuginfo for sle-15-s390x","installer_updates":false,"name":"SUSE-PackageHub-15-Debuginfo"},{"distro_target":"sle-15-s390x","autorefresh":false,"url":"https://updates.suse.com/SUSE/Backports/SLE-15_s390x/product/","enabled":true,"id":3058,"description":"SUSE-PackageHub-15-Pool for sle-15-s390x","installer_updates":false,"name":"SUSE-PackageHub-15-Pool"},{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15/s390x/update/","distro_target":"sle-15-s390x","autorefresh":true,"id":3177,"enabled":true,"description":"SLE-Module-Packagehub-Subpackages15-Updates for sle-15-s390x","installer_updates":false,"name":"SLE-Module-Packagehub-Subpackages15-Updates"},{"description":"SLE-Module-Packagehub-Subpackages15-Debuginfo-Updates for sle-15-s390x","installer_updates":false,"name":"SLE-Module-Packagehub-Subpackages15-Debuginfo-Updates","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15/s390x/update_debug/","distro_target":"sle-15-s390x","autorefresh":true,"id":3178,"enabled":false},{"enabled":true,"id":3179,"distro_target":"sle-15-s390x","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15/s390x/product/","installer_updates":false,"name":"SLE-Module-Packagehub-Subpackages15-Pool","description":"SLE-Module-Packagehub-Subpackages15-Pool for sle-15-s390x"},{"id":3180,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15/s390x/product_debug/","autorefresh":false,"distro_target":"sle-15-s390x","name":"SLE-Module-Packagehub-Subpackages15-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-Packagehub-Subpackages15-Debuginfo-Pool for sle-15-s390x"},{"description":"SLE-Module-Packagehub-Subpackages15-Source-Pool for sle-15-s390x","installer_updates":false,"name":"SLE-Module-Packagehub-Subpackages15-Source-Pool","distro_target":"sle-15-s390x","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15/s390x/product_source/","enabled":false,"id":3181}],"online_predecessor_ids":[],"product_class":"MODULE","predecessor_ids":[],"cpe":"cpe:/o:suse:packagehub:15","product_type":"extension"}]},{"offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Server LTSS","former_identifier":"SLES-LTSS","release_type":null,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Server LTSS 15 s390x","recommended":false,"version":"15","extensions":[],"release_stage":"released","identifier":"SLES-LTSS","id":2055,"friendly_version":"15","eula_url":"","arch":"s390x","free":false,"description":"SUSE Linux Enterprise offers a comprehensive suite of products built on a single code base. The platform addresses business needs from the smallest thin-client devices to the world's most powerful high-performance computing and mainframe servers. SUSE Linux Enterprise offers common management tools and technology certifications across the platform, and each product is enterprise-class.","shortname":"SLES15-LTSS","product_type":"extension","cpe":"cpe:/o:suse:sles-ltss:15","predecessor_ids":[],"online_predecessor_ids":[],"repositories":[{"description":"SLE-Product-SLES15-LTSS-Updates for sle-15-s390x","name":"SLE-Product-SLES15-LTSS-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-15-s390x","url":"https://updates.suse.com/SUSE/Updates/SLE-Product-SLES/15-LTSS/s390x/update/","enabled":true,"id":4388},{"description":"SLE-Product-SLES15-Debuginfo-LTSS-Updates for sle-15-s390x","installer_updates":false,"name":"SLE-Product-SLES15-Debuginfo-LTSS-Updates","url":"https://updates.suse.com/SUSE/Updates/SLE-Product-SLES/15-LTSS/s390x/update_debug/","distro_target":"sle-15-s390x","autorefresh":true,"id":4389,"enabled":false}],"product_class":"SLES15-GA-LTSS-Z"}],"release_stage":"released","identifier":"SLES","id":1584,"friendly_version":"15","name":"SUSE Linux Enterprise Server","offline_predecessor_ids":[693,745,755,805,1303,1423,1627,1877],"friendly_name":"SUSE Linux Enterprise Server 15 s390x","migration_extra":false,"former_identifier":"SLES","release_type":null,"recommended":false,"version":"15"},{"repositories":[{"enabled":true,"id":2711,"autorefresh":true,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Updates/SLE-Product-SLES/15/ppc64le/update/","name":"SLE-Product-SLES15-Updates","installer_updates":false,"description":"SLE-Product-SLES15-Updates for sle-15-ppc64le"},{"autorefresh":true,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Updates/SLE-INSTALLER/15/ppc64le/update/","enabled":false,"id":2712,"description":"SLE15-Installer-Updates for sle-15-ppc64le","name":"SLE15-Installer-Updates","installer_updates":true},{"enabled":true,"id":2713,"autorefresh":false,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Products/SLE-Product-SLES/15/ppc64le/product/","name":"SLE-Product-SLES15-Pool","installer_updates":false,"description":"SLE-Product-SLES15-Pool for sle-15-ppc64le"},{"description":"SLE-Product-SLES15-Debuginfo-Updates for sle-15-ppc64le","installer_updates":false,"name":"SLE-Product-SLES15-Debuginfo-Updates","url":"https://updates.suse.com/SUSE/Updates/SLE-Product-SLES/15/ppc64le/update_debug/","distro_target":"sle-15-ppc64le","autorefresh":true,"id":3108,"enabled":false},{"enabled":false,"id":3109,"distro_target":"sle-15-ppc64le","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-SLES/15/ppc64le/product_debug/","installer_updates":false,"name":"SLE-Product-SLES15-Debuginfo-Pool","description":"SLE-Product-SLES15-Debuginfo-Pool for sle-15-ppc64le"},{"id":3110,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-SLES/15/ppc64le/product_source/","autorefresh":false,"distro_target":"sle-15-ppc64le","name":"SLE-Product-SLES15-Source-Pool","installer_updates":false,"description":"SLE-Product-SLES15-Source-Pool for sle-15-ppc64le"}],"online_predecessor_ids":[],"product_class":"SLES-PPC","predecessor_ids":[],"cpe":"cpe:/o:suse:sles:15","product_type":"base","shortname":"SLES15","description":"SUSE Linux Enterprise offers a comprehensive suite of products built on a single code base. The platform addresses business needs from the smallest thin-client devices to the world's most powerful high-performance computing and mainframe servers. SUSE Linux Enterprise offers common management tools and technology certifications across the platform, and each product is enterprise-class.","free":false,"arch":"ppc64le","eula_url":"https://updates.suse.com/SUSE/Products/SLE-Product-SLES/15/ppc64le/product.license/","friendly_version":"15","identifier":"SLES","release_stage":"released","id":1585,"extensions":[{"recommended":true,"version":"15","name":"Basesystem Module","offline_predecessor_ids":[1294],"migration_extra":false,"friendly_name":"Basesystem Module 15 ppc64le","former_identifier":"sle-module-basesystem","release_type":null,"friendly_version":"15","extensions":[{"description":"

The SUSE Linux Enterprise Desktop Applications Module delivers a basic set of Desktop functionality.

Access to the Desktop Applications Module is included in your SUSE Linux Enterprise product subscription.

","shortname":"Desktop-Applications-Module","free":true,"eula_url":"","arch":"ppc64le","predecessor_ids":[],"online_predecessor_ids":[],"product_class":"MODULE","repositories":[{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15/ppc64le/update/","autorefresh":true,"distro_target":"sle-15-ppc64le","id":2598,"enabled":true,"description":"SLE-Module-Desktop-Applications15-Updates for sle-15-ppc64le","name":"SLE-Module-Desktop-Applications15-Updates","installer_updates":false},{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15/ppc64le/update_debug/","autorefresh":true,"distro_target":"sle-15-ppc64le","id":2599,"enabled":false,"description":"SLE-Module-Desktop-Applications15-Debuginfo-Updates for sle-15-ppc64le","name":"SLE-Module-Desktop-Applications15-Debuginfo-Updates","installer_updates":false},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15/ppc64le/product/","autorefresh":false,"distro_target":"sle-15-ppc64le","id":2600,"enabled":true,"description":"SLE-Module-Desktop-Applications15-Pool for sle-15-ppc64le","name":"SLE-Module-Desktop-Applications15-Pool","installer_updates":false},{"distro_target":"sle-15-ppc64le","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15/ppc64le/product_debug/","enabled":false,"id":2601,"description":"SLE-Module-Desktop-Applications15-Debuginfo-Pool for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-Desktop-Applications15-Debuginfo-Pool"},{"enabled":false,"id":2602,"distro_target":"sle-15-ppc64le","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15/ppc64le/product_source/","installer_updates":false,"name":"SLE-Module-Desktop-Applications15-Source-Pool","description":"SLE-Module-Desktop-Applications15-Source-Pool for sle-15-ppc64le"}],"cpe":"cpe:/o:suse:sle-module-desktop-applications:15","product_type":"module","recommended":false,"version":"15","name":"Desktop Applications Module","offline_predecessor_ids":[],"migration_extra":true,"friendly_name":"Desktop Applications Module 15 ppc64le","release_type":null,"former_identifier":"sle-module-desktop-applications","friendly_version":"15","extensions":[{"eula_url":"","arch":"ppc64le","description":"

The Development Tools Module helps you developing applications for SUSE Linux Enterprise 15.

Access to the Development Tools Module is included in your SUSE Linux Enterprise product subscription. The module has a different lifecycle than SUSE Linux Enterprise itself.

","shortname":"Development-Tools-Module","free":true,"cpe":"cpe:/o:suse:sle-module-development-tools:15","product_type":"module","predecessor_ids":[],"repositories":[{"name":"SLE-Module-DevTools15-Updates","installer_updates":false,"description":"SLE-Module-DevTools15-Updates for sle-15-ppc64le","id":2613,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15/ppc64le/update/","autorefresh":true,"distro_target":"sle-15-ppc64le"},{"description":"SLE-Module-DevTools15-Debuginfo-Updates for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-DevTools15-Debuginfo-Updates","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15/ppc64le/update_debug/","distro_target":"sle-15-ppc64le","autorefresh":true,"id":2614,"enabled":false},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15/ppc64le/product/","autorefresh":false,"distro_target":"sle-15-ppc64le","id":2615,"enabled":true,"description":"SLE-Module-DevTools15-Pool for sle-15-ppc64le","name":"SLE-Module-DevTools15-Pool","installer_updates":false},{"id":2616,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15/ppc64le/product_debug/","autorefresh":false,"distro_target":"sle-15-ppc64le","name":"SLE-Module-DevTools15-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-DevTools15-Debuginfo-Pool for sle-15-ppc64le"},{"enabled":false,"id":2617,"autorefresh":false,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15/ppc64le/product_source/","name":"SLE-Module-DevTools15-Source-Pool","installer_updates":false,"description":"SLE-Module-DevTools15-Source-Pool for sle-15-ppc64le"}],"online_predecessor_ids":[],"product_class":"MODULE","name":"Development Tools Module","offline_predecessor_ids":[1145,1339,1343,1364,1428,1631,1890],"friendly_name":"Development Tools Module 15 ppc64le","migration_extra":true,"release_type":null,"former_identifier":"sle-sdk","recommended":false,"version":"15","extensions":[],"release_stage":"released","id":1597,"identifier":"sle-module-development-tools","friendly_version":"15"}],"identifier":"sle-module-desktop-applications","release_stage":"released","id":1594},{"id":1600,"release_stage":"released","identifier":"sle-module-server-applications","extensions":[{"shortname":"Legacy-Module","description":"

The Legacy Module helps you migrating applications from SUSE Linux Enterprise 12 and other systems to SUSE Linux Enterprise 15, by providing packages which are discontinued on SUSE Linux Enterprise Server, such as: ntp, IBM Java 8, and a number of libraries.

Access to the Legacy Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself. Packages in the this module are usually supported for at most three years.

","free":true,"eula_url":"","arch":"ppc64le","predecessor_ids":[],"online_predecessor_ids":[],"repositories":[{"enabled":true,"id":2643,"distro_target":"sle-15-ppc64le","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/15/ppc64le/update/","installer_updates":false,"name":"SLE-Module-Legacy15-Updates","description":"SLE-Module-Legacy15-Updates for sle-15-ppc64le"},{"installer_updates":false,"name":"SLE-Module-Legacy15-Debuginfo-Updates","description":"SLE-Module-Legacy15-Debuginfo-Updates for sle-15-ppc64le","enabled":false,"id":2644,"distro_target":"sle-15-ppc64le","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/15/ppc64le/update_debug/"},{"id":2645,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15/ppc64le/product/","distro_target":"sle-15-ppc64le","autorefresh":false,"installer_updates":false,"name":"SLE-Module-Legacy15-Pool","description":"SLE-Module-Legacy15-Pool for sle-15-ppc64le"},{"enabled":false,"id":2646,"autorefresh":false,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15/ppc64le/product_debug/","name":"SLE-Module-Legacy15-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-Legacy15-Debuginfo-Pool for sle-15-ppc64le"},{"description":"SLE-Module-Legacy15-Source-Pool for sle-15-ppc64le","name":"SLE-Module-Legacy15-Source-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15/ppc64le/product_source/","enabled":false,"id":2647}],"product_class":"MODULE","cpe":"cpe:/o:suse:sle-module-legacy:15","product_type":"module","recommended":false,"version":"15","name":"Legacy Module","offline_predecessor_ids":[1148],"migration_extra":true,"friendly_name":"Legacy Module 15 ppc64le","former_identifier":"sle-module-legacy","release_type":null,"friendly_version":"15","extensions":[],"release_stage":"released","id":1603,"identifier":"sle-module-legacy"},{"shortname":"SLEHA15","description":"SUSE Linux High Availability Extension provides mature, industry-leading open-source high-availability clustering technologies that are easy to set up and use. It can be deployed in physical and/or virtual environments, and can cluster physical servers, virtual servers, or any combination of the two to suit your business’ needs.","free":false,"eula_url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15/ppc64le/product.license/","arch":"ppc64le","predecessor_ids":[],"online_predecessor_ids":[],"product_class":"SLE-HAE-PPC","repositories":[{"description":"SLE-Product-HA15-Updates for sle-15-ppc64le","name":"SLE-Product-HA15-Updates","installer_updates":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-HA/15/ppc64le/update/","autorefresh":true,"distro_target":"sle-15-ppc64le","id":2764,"enabled":true},{"id":2765,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-HA/15/ppc64le/update_debug/","distro_target":"sle-15-ppc64le","autorefresh":true,"installer_updates":false,"name":"SLE-Product-HA15-Debuginfo-Updates","description":"SLE-Product-HA15-Debuginfo-Updates for sle-15-ppc64le"},{"description":"SLE-Product-HA15-Pool for sle-15-ppc64le","installer_updates":false,"name":"SLE-Product-HA15-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15/ppc64le/product/","distro_target":"sle-15-ppc64le","autorefresh":false,"id":2766,"enabled":true},{"enabled":false,"id":2767,"autorefresh":false,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15/ppc64le/product_debug/","name":"SLE-Product-HA15-Debuginfo-Pool","installer_updates":false,"description":"SLE-Product-HA15-Debuginfo-Pool for sle-15-ppc64le"},{"description":"SLE-Product-HA15-Source-Pool for sle-15-ppc64le","name":"SLE-Product-HA15-Source-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15/ppc64le/product_source/","autorefresh":false,"distro_target":"sle-15-ppc64le","id":2768,"enabled":false}],"cpe":"cpe:/o:suse:sle-ha:15","product_type":"extension","recommended":false,"version":"15","name":"SUSE Linux Enterprise High Availability Extension","offline_predecessor_ids":[1420,1433,1635,1882],"friendly_name":"SUSE Linux Enterprise High Availability Extension 15 ppc64le","migration_extra":false,"release_type":null,"former_identifier":"sle-ha","friendly_version":"15","extensions":[],"release_stage":"released","id":1606,"identifier":"sle-ha"},{"shortname":"Public-Cloud-Module","description":"

The Public Cloud Module is a collection of tools that enables you to create and manage cloud images from the commandline on SUSE Linux Enterprise Server. When building your own images with KIWI or SUSE Studio, initialization code specific to the target cloud is included in that image.

Access to the Public Cloud Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself; please check the Release Notes for further details.

","free":true,"arch":"ppc64le","eula_url":"","online_predecessor_ids":[],"product_class":"MODULE","repositories":[{"id":2687,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/15/ppc64le/update/","distro_target":"sle-15-ppc64le","autorefresh":true,"installer_updates":false,"name":"SLE-Module-Public-Cloud15-Updates","description":"SLE-Module-Public-Cloud15-Updates for sle-15-ppc64le"},{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/15/ppc64le/update_debug/","distro_target":"sle-15-ppc64le","autorefresh":true,"id":2688,"enabled":false,"description":"SLE-Module-Public-Cloud15-Debuginfo-Updates for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-Public-Cloud15-Debuginfo-Updates"},{"name":"SLE-Module-Public-Cloud15-Pool","installer_updates":false,"description":"SLE-Module-Public-Cloud15-Pool for sle-15-ppc64le","id":2689,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15/ppc64le/product/","autorefresh":false,"distro_target":"sle-15-ppc64le"},{"name":"SLE-Module-Public-Cloud15-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-Public-Cloud15-Debuginfo-Pool for sle-15-ppc64le","id":2690,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15/ppc64le/product_debug/","autorefresh":false,"distro_target":"sle-15-ppc64le"},{"enabled":false,"id":3127,"autorefresh":false,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15/ppc64le/product_source/","name":"SLE-Module-Public-Cloud15-Source-Pool","installer_updates":false,"description":"SLE-Module-Public-Cloud15-Source-Pool for sle-15-ppc64le"}],"predecessor_ids":[],"cpe":"cpe:/o:suse:sle-module-public-cloud:15","product_type":"module","version":"15","recommended":false,"friendly_name":"Public Cloud Module 15 ppc64le","migration_extra":true,"release_type":null,"former_identifier":"sle-module-public-cloud","name":"Public Cloud Module","offline_predecessor_ids":[1218],"friendly_version":"15","identifier":"sle-module-public-cloud","release_stage":"released","id":1616,"extensions":[]},{"cpe":"cpe:/o:suse:sle-module-web-scripting:15","product_type":"module","product_class":"MODULE","online_predecessor_ids":[],"repositories":[{"installer_updates":false,"name":"SLE-Module-Web-Scripting15-Updates","description":"SLE-Module-Web-Scripting15-Updates for sle-15-ppc64le","id":2962,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/15/ppc64le/update/","distro_target":"sle-15-ppc64le","autorefresh":true},{"description":"SLE-Module-Web-Scripting15-Debuginfo-Updates for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-Web-Scripting15-Debuginfo-Updates","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/15/ppc64le/update_debug/","distro_target":"sle-15-ppc64le","autorefresh":true,"id":2963,"enabled":false},{"installer_updates":false,"name":"SLE-Module-Web-Scripting15-Pool","description":"SLE-Module-Web-Scripting15-Pool for sle-15-ppc64le","id":2964,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15/ppc64le/product/","distro_target":"sle-15-ppc64le","autorefresh":false},{"enabled":false,"id":2965,"distro_target":"sle-15-ppc64le","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15/ppc64le/product_debug/","installer_updates":false,"name":"SLE-Module-Web-Scripting15-Debuginfo-Pool","description":"SLE-Module-Web-Scripting15-Debuginfo-Pool for sle-15-ppc64le"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15/ppc64le/product_source/","autorefresh":false,"distro_target":"sle-15-ppc64le","id":2966,"enabled":false,"description":"SLE-Module-Web-Scripting15-Source-Pool for sle-15-ppc64le","name":"SLE-Module-Web-Scripting15-Source-Pool","installer_updates":false}],"predecessor_ids":[],"arch":"ppc64le","eula_url":"","description":"

The SUSE Linux Enterprise Web and Scripting Module should contains additional packages that are helpful when running a webserver.

Access to the Web and Scripting Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself: Package versions in this module are usually supported for at most three years. We are planning to release more recent versions on a schedule of approximately 18 month; the exact dates may differ per package.

","shortname":"Web-Scripting-Module","free":true,"release_stage":"released","identifier":"sle-module-web-scripting","id":1719,"extensions":[],"friendly_version":"15","friendly_name":"Web and Scripting Module 15 ppc64le","migration_extra":true,"former_identifier":"sle-module-web-scripting","release_type":null,"name":"Web and Scripting Module","offline_predecessor_ids":[1151],"version":"15","recommended":false},{"predecessor_ids":[],"online_predecessor_ids":[],"repositories":[{"description":"IBM-POWER-Adv-Toolchain","installer_updates":false,"name":"IBM-POWER-Adv-Toolchain","url":"https://public.dhe.ibm.com/software/server/POWER/Linux/toolchain/at/suse/SLES_15/","distro_target":null,"autorefresh":true,"id":4430,"enabled":true}],"product_class":"MODULE","cpe":"cpe:/o:suse:ibm-power-advance-toolchain:15","product_type":"extension","description":"IBM POWER Advance Toolchain for SLE 15","shortname":"IBMPWAT15","free":true,"eula_url":"","arch":"ppc64le","friendly_version":"15","extensions":[],"release_stage":"released","identifier":"ibm-power-advance-toolchain","id":2076,"recommended":false,"version":"15","name":"IBM POWER Advance Toolchain for SLE","offline_predecessor_ids":[1249],"friendly_name":"IBM POWER Advance Toolchain for SLE 15 ppc64le","migration_extra":false,"release_type":null,"former_identifier":"ibm-power-advance-toolchain"},{"product_type":"extension","cpe":"cpe:/o:suse:ibm-power-tools:15","predecessor_ids":[],"online_predecessor_ids":[],"product_class":"MODULE","repositories":[{"description":"IBM-POWER-Tools","name":"IBM-POWER-Tools","installer_updates":false,"autorefresh":true,"distro_target":null,"url":"https://public.dhe.ibm.com/software/server/POWER/Linux/yum/OSS/SLES/15/ppc64le/","enabled":true,"id":4431}],"eula_url":"https://public.dhe.ibm.com/software/server/POWER/Linux/yum/OSS/SLES/15/ppc64le.license/","arch":"ppc64le","free":true,"shortname":"IBMPWUT15","description":"IBM POWER Tools for SLE 15","extensions":[],"identifier":"ibm-power-tools","release_stage":"released","id":2077,"friendly_version":"15","offline_predecessor_ids":[1250],"name":"IBM POWER Tools for SLE","release_type":null,"former_identifier":"ibm-power-tools","friendly_name":"IBM POWER Tools for SLE 15 ppc64le","migration_extra":false,"recommended":false,"version":"15"}],"friendly_version":"15","migration_extra":false,"friendly_name":"Server Applications Module 15 ppc64le","former_identifier":"sle-module-server-applications","release_type":null,"name":"Server Applications Module","offline_predecessor_ids":[],"version":"15","recommended":true,"cpe":"cpe:/o:suse:sle-module-server-applications:15","product_type":"module","online_predecessor_ids":[],"repositories":[{"installer_updates":false,"name":"SLE-Module-Server-Applications15-Updates","description":"SLE-Module-Server-Applications15-Updates for sle-15-ppc64le","enabled":true,"id":2628,"distro_target":"sle-15-ppc64le","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15/ppc64le/update/"},{"description":"SLE-Module-Server-Applications15-Debuginfo-Updates for sle-15-ppc64le","name":"SLE-Module-Server-Applications15-Debuginfo-Updates","installer_updates":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15/ppc64le/update_debug/","autorefresh":true,"distro_target":"sle-15-ppc64le","id":2629,"enabled":false},{"description":"SLE-Module-Server-Applications15-Pool for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-Server-Applications15-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15/ppc64le/product/","distro_target":"sle-15-ppc64le","autorefresh":false,"id":2630,"enabled":true},{"description":"SLE-Module-Server-Applications15-Debuginfo-Pool for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-Server-Applications15-Debuginfo-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15/ppc64le/product_debug/","distro_target":"sle-15-ppc64le","autorefresh":false,"id":2631,"enabled":false},{"description":"SLE-Module-Server-Applications15-Source-Pool for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-Server-Applications15-Source-Pool","distro_target":"sle-15-ppc64le","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15/ppc64le/product_source/","enabled":false,"id":2632}],"product_class":"MODULE","predecessor_ids":[],"arch":"ppc64le","eula_url":"","description":"

The SUSE Linux Enterprise Server Applications Module delivers a basic set of Server functionality.

Access to the Server Applications Module is included in your SUSE Linux Enterprise Server subscription.

","shortname":"Server-Applications-Module","free":true},{"friendly_version":"15","extensions":[],"id":1640,"release_stage":"released","identifier":"sle-module-containers","recommended":false,"version":"15","offline_predecessor_ids":[1353],"name":"Containers Module","release_type":null,"former_identifier":"sle-module-containers","migration_extra":true,"friendly_name":"Containers Module 15 ppc64le","predecessor_ids":[],"online_predecessor_ids":[],"product_class":"MODULE","repositories":[{"name":"SLE-Module-Containers15-Updates","installer_updates":false,"description":"SLE-Module-Containers15-Updates for sle-15-ppc64le","enabled":true,"id":2854,"autorefresh":true,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/15/ppc64le/update/"},{"description":"SLE-Module-Containers15-Debuginfo-Updates for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-Containers15-Debuginfo-Updates","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/15/ppc64le/update_debug/","distro_target":"sle-15-ppc64le","autorefresh":true,"id":2855,"enabled":false},{"id":2856,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15/ppc64le/product/","autorefresh":false,"distro_target":"sle-15-ppc64le","name":"SLE-Module-Containers15-Pool","installer_updates":false,"description":"SLE-Module-Containers15-Pool for sle-15-ppc64le"},{"description":"SLE-Module-Containers15-Debuginfo-Pool for sle-15-ppc64le","name":"SLE-Module-Containers15-Debuginfo-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15/ppc64le/product_debug/","autorefresh":false,"distro_target":"sle-15-ppc64le","id":2857,"enabled":false},{"id":2858,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15/ppc64le/product_source/","autorefresh":false,"distro_target":"sle-15-ppc64le","name":"SLE-Module-Containers15-Source-Pool","installer_updates":false,"description":"SLE-Module-Containers15-Source-Pool for sle-15-ppc64le"}],"product_type":"module","cpe":"cpe:/o:suse:sle-module-containers:15","free":true,"description":"

This Module contains several packages revolving around containers and related tools.

","shortname":"Containers-Module","eula_url":"","arch":"ppc64le"},{"free":false,"shortname":"Live-Patching","description":"

SUSE Linux Enterprise Live Patching provides packages to update critical components in SUSE Linux Enterprise. With SUSE Linux Enterprise Live Patching, you can perform critical patching without shutting down your system, reducing the need for planned downtime and increasing service availability.

","arch":"ppc64le","eula_url":"","online_predecessor_ids":[],"repositories":[{"name":"SLE-Module-Live-Patching15-Updates","installer_updates":false,"description":"SLE-Module-Live-Patching15-Updates for sle-15-ppc64le","enabled":true,"id":3029,"autorefresh":true,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Live-Patching/15/ppc64le/update/"},{"description":"SLE-Module-Live-Patching15-Debuginfo-Updates for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-Live-Patching15-Debuginfo-Updates","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Live-Patching/15/ppc64le/update_debug/","distro_target":"sle-15-ppc64le","autorefresh":true,"id":3030,"enabled":false},{"id":3031,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Live-Patching/15/ppc64le/product/","distro_target":"sle-15-ppc64le","autorefresh":false,"installer_updates":false,"name":"SLE-Module-Live-Patching15-Pool","description":"SLE-Module-Live-Patching15-Pool for sle-15-ppc64le"},{"name":"SLE-Module-Live-Patching15-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-Live-Patching15-Debuginfo-Pool for sle-15-ppc64le","id":3032,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Live-Patching/15/ppc64le/product_debug/","autorefresh":false,"distro_target":"sle-15-ppc64le"},{"description":"SLE-Module-Live-Patching15-Source-Pool for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-Live-Patching15-Source-Pool","distro_target":"sle-15-ppc64le","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Live-Patching/15/ppc64le/product_source/","enabled":false,"id":3124}],"product_class":"SLE-LP-PPC","predecessor_ids":[],"product_type":"module","cpe":"cpe:/o:suse:sle-module-live-patching:15","version":"15","recommended":false,"former_identifier":"sle-module-live-patching","release_type":null,"friendly_name":"SUSE Linux Enterprise Live Patching 15 ppc64le","migration_extra":false,"offline_predecessor_ids":[1537,1756,1887],"name":"SUSE Linux Enterprise Live Patching","friendly_version":"15","id":1735,"release_stage":"released","identifier":"sle-module-live-patching","extensions":[]},{"name":"SUSE Package Hub","offline_predecessor_ids":[1531,1811,1913],"migration_extra":false,"friendly_name":"SUSE Package Hub 15 ppc64le","former_identifier":"PackageHub","release_type":null,"recommended":false,"version":"15","extensions":[],"release_stage":"released","id":1741,"identifier":"PackageHub","friendly_version":"15","eula_url":"","arch":"ppc64le","description":"SUSE Package Hub is a free of charge extension providing access to community maintained packages built to run on SUSE Linux Enterprise Server. Built from the same sources used in the openSUSE distributions, these quality packages provide additional software to what is found in the SUSE Linux Enterprise Server product. Packages from the Package Hub are delivered without L3 support from SUSE. General updates and fixes to the packages in SUSE Package Hub are provided by the openSUSE community based on their discretion though SUSE will monitor and ensure that any known critical security issues will be addressed. Packages in the Package Hub are approved by SUSE for use with SUSE Linux Enterprise Server 15 and to not interfere with the supportability of SUSE Linux Enterprise Server it's modules and extensions. For more information about SUSE Package Hub please visit https://packagehub.suse.com.","shortname":"SUSE-PackageHub-15","free":true,"cpe":"cpe:/o:suse:packagehub:15","product_type":"extension","predecessor_ids":[],"online_predecessor_ids":[],"product_class":"MODULE","repositories":[{"name":"SUSE-PackageHub-15-Standard-Pool","installer_updates":false,"description":"SUSE-PackageHub-15-Standard-Pool for sle-15-ppc64le","enabled":true,"id":3053,"autorefresh":false,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Backports/SLE-15_ppc64le/standard/"},{"id":3054,"enabled":false,"url":"https://updates.suse.com/SUSE/Backports/SLE-15_ppc64le/standard_debug/","autorefresh":true,"distro_target":"sle-15-ppc64le","name":"SUSE-PackageHub-15-Debuginfo","installer_updates":false,"description":"SUSE-PackageHub-15-Debuginfo for sle-15-ppc64le"},{"installer_updates":false,"name":"SUSE-PackageHub-15-Pool","description":"SUSE-PackageHub-15-Pool for sle-15-ppc64le","id":3055,"enabled":true,"url":"https://updates.suse.com/SUSE/Backports/SLE-15_ppc64le/product/","distro_target":"sle-15-ppc64le","autorefresh":false},{"installer_updates":false,"name":"SLE-Module-Packagehub-Subpackages15-Updates","description":"SLE-Module-Packagehub-Subpackages15-Updates for sle-15-ppc64le","enabled":true,"id":3172,"distro_target":"sle-15-ppc64le","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15/ppc64le/update/"},{"installer_updates":false,"name":"SLE-Module-Packagehub-Subpackages15-Debuginfo-Updates","description":"SLE-Module-Packagehub-Subpackages15-Debuginfo-Updates for sle-15-ppc64le","enabled":false,"id":3173,"distro_target":"sle-15-ppc64le","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15/ppc64le/update_debug/"},{"enabled":true,"id":3174,"autorefresh":false,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15/ppc64le/product/","name":"SLE-Module-Packagehub-Subpackages15-Pool","installer_updates":false,"description":"SLE-Module-Packagehub-Subpackages15-Pool for sle-15-ppc64le"},{"id":3175,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15/ppc64le/product_debug/","distro_target":"sle-15-ppc64le","autorefresh":false,"installer_updates":false,"name":"SLE-Module-Packagehub-Subpackages15-Debuginfo-Pool","description":"SLE-Module-Packagehub-Subpackages15-Debuginfo-Pool for sle-15-ppc64le"},{"description":"SLE-Module-Packagehub-Subpackages15-Source-Pool for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-Packagehub-Subpackages15-Source-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15/ppc64le/product_source/","distro_target":"sle-15-ppc64le","autorefresh":false,"id":3176,"enabled":false}]}],"identifier":"sle-module-basesystem","release_stage":"released","id":1588,"shortname":"Basesystem-Module","description":"

The SUSE Linux Enterprise Basesystem Module delivers the base system of the product.

","free":true,"eula_url":"","arch":"ppc64le","predecessor_ids":[],"online_predecessor_ids":[],"repositories":[{"name":"SLE-Module-Basesystem15-Updates","installer_updates":false,"description":"SLE-Module-Basesystem15-Updates for sle-15-ppc64le","id":2569,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15/ppc64le/update/","autorefresh":true,"distro_target":"sle-15-ppc64le"},{"description":"SLE-Module-Basesystem15-Debuginfo-Updates for sle-15-ppc64le","name":"SLE-Module-Basesystem15-Debuginfo-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15/ppc64le/update_debug/","enabled":false,"id":2570},{"description":"SLE-Module-Basesystem15-Pool for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-Basesystem15-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15/ppc64le/product/","distro_target":"sle-15-ppc64le","autorefresh":false,"id":2571,"enabled":true},{"id":2572,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15/ppc64le/product_debug/","autorefresh":false,"distro_target":"sle-15-ppc64le","name":"SLE-Module-Basesystem15-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-Basesystem15-Debuginfo-Pool for sle-15-ppc64le"},{"name":"SLE-Module-Basesystem15-Source-Pool","installer_updates":false,"description":"SLE-Module-Basesystem15-Source-Pool for sle-15-ppc64le","id":2573,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15/ppc64le/product_source/","autorefresh":false,"distro_target":"sle-15-ppc64le"}],"product_class":"MODULE","cpe":"cpe:/o:suse:sle-module-basesystem:15","product_type":"module"},{"recommended":false,"version":"15","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Server LTSS","former_identifier":"SLES-LTSS","release_type":null,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Server LTSS 15 ppc64le","friendly_version":"15","extensions":[],"identifier":"SLES-LTSS","release_stage":"released","id":2054,"free":false,"shortname":"SLES15-LTSS","description":"SUSE Linux Enterprise offers a comprehensive suite of products built on a single code base. The platform addresses business needs from the smallest thin-client devices to the world's most powerful high-performance computing and mainframe servers. SUSE Linux Enterprise offers common management tools and technology certifications across the platform, and each product is enterprise-class.","eula_url":"","arch":"ppc64le","predecessor_ids":[],"online_predecessor_ids":[],"repositories":[{"installer_updates":false,"name":"SLE-Product-SLES15-LTSS-Updates","description":"SLE-Product-SLES15-LTSS-Updates for sle-15-ppc64le","id":4386,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-SLES/15-LTSS/ppc64le/update/","distro_target":"sle-15-ppc64le","autorefresh":true},{"distro_target":"sle-15-ppc64le","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-SLES/15-LTSS/ppc64le/update_debug/","enabled":false,"id":4387,"description":"SLE-Product-SLES15-Debuginfo-LTSS-Updates for sle-15-ppc64le","installer_updates":false,"name":"SLE-Product-SLES15-Debuginfo-LTSS-Updates"}],"product_class":"SLES15-GA-LTSS-PPC","product_type":"extension","cpe":"cpe:/o:suse:sles-ltss:15"}],"version":"15","recommended":false,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Server 15 ppc64le","former_identifier":"SLES","release_type":null,"name":"SUSE Linux Enterprise Server","offline_predecessor_ids":[1422,1626,1876]},{"former_identifier":"SLES","release_type":null,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Server 15 aarch64","offline_predecessor_ids":[1424,1628,1875],"name":"SUSE Linux Enterprise Server","version":"15","recommended":false,"release_stage":"released","id":1586,"identifier":"SLES","extensions":[{"former_identifier":"sle-module-basesystem","release_type":null,"migration_extra":false,"friendly_name":"Basesystem Module 15 aarch64","offline_predecessor_ids":[1522],"name":"Basesystem Module","version":"15","recommended":true,"id":1589,"release_stage":"released","identifier":"sle-module-basesystem","extensions":[{"friendly_version":"15","release_stage":"released","identifier":"sle-module-desktop-applications","id":1595,"extensions":[{"product_type":"module","cpe":"cpe:/o:suse:sle-module-development-tools:15","online_predecessor_ids":[],"product_class":"MODULE","repositories":[{"description":"SLE-Module-DevTools15-Updates for sle-15-aarch64","installer_updates":false,"name":"SLE-Module-DevTools15-Updates","distro_target":"sle-15-aarch64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15/aarch64/update/","enabled":true,"id":2618},{"id":2619,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15/aarch64/update_debug/","autorefresh":true,"distro_target":"sle-15-aarch64","name":"SLE-Module-DevTools15-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-DevTools15-Debuginfo-Updates for sle-15-aarch64"},{"description":"SLE-Module-DevTools15-Pool for sle-15-aarch64","name":"SLE-Module-DevTools15-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15/aarch64/product/","autorefresh":false,"distro_target":"sle-15-aarch64","id":2620,"enabled":true},{"id":2621,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15/aarch64/product_debug/","autorefresh":false,"distro_target":"sle-15-aarch64","name":"SLE-Module-DevTools15-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-DevTools15-Debuginfo-Pool for sle-15-aarch64"},{"name":"SLE-Module-DevTools15-Source-Pool","installer_updates":false,"description":"SLE-Module-DevTools15-Source-Pool for sle-15-aarch64","id":2622,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15/aarch64/product_source/","autorefresh":false,"distro_target":"sle-15-aarch64"}],"predecessor_ids":[],"arch":"aarch64","eula_url":"","free":true,"shortname":"Development-Tools-Module","description":"

The Development Tools Module helps you developing applications for SUSE Linux Enterprise 15.

Access to the Development Tools Module is included in your SUSE Linux Enterprise product subscription. The module has a different lifecycle than SUSE Linux Enterprise itself.

","release_stage":"released","identifier":"sle-module-development-tools","id":1598,"extensions":[],"friendly_version":"15","former_identifier":"sle-sdk","release_type":null,"friendly_name":"Development Tools Module 15 aarch64","migration_extra":true,"offline_predecessor_ids":[1376,1378,1430,1633,1889],"name":"Development Tools Module","version":"15","recommended":false}],"version":"15","recommended":false,"friendly_name":"Desktop Applications Module 15 aarch64","migration_extra":true,"former_identifier":"sle-module-desktop-applications","release_type":null,"name":"Desktop Applications Module","offline_predecessor_ids":[],"online_predecessor_ids":[],"repositories":[{"installer_updates":false,"name":"SLE-Module-Desktop-Applications15-Updates","description":"SLE-Module-Desktop-Applications15-Updates for sle-15-aarch64","id":2603,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15/aarch64/update/","distro_target":"sle-15-aarch64","autorefresh":true},{"enabled":false,"id":2604,"autorefresh":true,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15/aarch64/update_debug/","name":"SLE-Module-Desktop-Applications15-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-Desktop-Applications15-Debuginfo-Updates for sle-15-aarch64"},{"description":"SLE-Module-Desktop-Applications15-Pool for sle-15-aarch64","name":"SLE-Module-Desktop-Applications15-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15/aarch64/product/","enabled":true,"id":2605},{"description":"SLE-Module-Desktop-Applications15-Debuginfo-Pool for sle-15-aarch64","name":"SLE-Module-Desktop-Applications15-Debuginfo-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15/aarch64/product_debug/","enabled":false,"id":2606},{"installer_updates":false,"name":"SLE-Module-Desktop-Applications15-Source-Pool","description":"SLE-Module-Desktop-Applications15-Source-Pool for sle-15-aarch64","id":2607,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15/aarch64/product_source/","distro_target":"sle-15-aarch64","autorefresh":false}],"product_class":"MODULE","predecessor_ids":[],"cpe":"cpe:/o:suse:sle-module-desktop-applications:15","product_type":"module","shortname":"Desktop-Applications-Module","description":"

The SUSE Linux Enterprise Desktop Applications Module delivers a basic set of Desktop functionality.

Access to the Desktop Applications Module is included in your SUSE Linux Enterprise product subscription.

","free":true,"arch":"aarch64","eula_url":""},{"recommended":true,"version":"15","offline_predecessor_ids":[],"name":"Server Applications Module","release_type":null,"former_identifier":"sle-module-server-applications","migration_extra":false,"friendly_name":"Server Applications Module 15 aarch64","friendly_version":"15","extensions":[{"release_type":null,"former_identifier":"sle-module-legacy","friendly_name":"Legacy Module 15 aarch64","migration_extra":true,"offline_predecessor_ids":[],"name":"Legacy Module","version":"15","recommended":false,"identifier":"sle-module-legacy","release_stage":"released","id":1604,"extensions":[],"friendly_version":"15","arch":"aarch64","eula_url":"","free":true,"shortname":"Legacy-Module","description":"

The Legacy Module helps you migrating applications from SUSE Linux Enterprise 12 and other systems to SUSE Linux Enterprise 15, by providing packages which are discontinued on SUSE Linux Enterprise Server, such as: ntp, IBM Java 8, and a number of libraries.

Access to the Legacy Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself. Packages in the this module are usually supported for at most three years.

","product_type":"module","cpe":"cpe:/o:suse:sle-module-legacy:15","online_predecessor_ids":[],"repositories":[{"installer_updates":false,"name":"SLE-Module-Legacy15-Updates","description":"SLE-Module-Legacy15-Updates for sle-15-aarch64","enabled":true,"id":2648,"distro_target":"sle-15-aarch64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/15/aarch64/update/"},{"id":2649,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/15/aarch64/update_debug/","autorefresh":true,"distro_target":"sle-15-aarch64","name":"SLE-Module-Legacy15-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-Legacy15-Debuginfo-Updates for sle-15-aarch64"},{"autorefresh":false,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15/aarch64/product/","enabled":true,"id":2650,"description":"SLE-Module-Legacy15-Pool for sle-15-aarch64","name":"SLE-Module-Legacy15-Pool","installer_updates":false},{"description":"SLE-Module-Legacy15-Debuginfo-Pool for sle-15-aarch64","installer_updates":false,"name":"SLE-Module-Legacy15-Debuginfo-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15/aarch64/product_debug/","distro_target":"sle-15-aarch64","autorefresh":false,"id":2651,"enabled":false},{"enabled":false,"id":2652,"distro_target":"sle-15-aarch64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15/aarch64/product_source/","installer_updates":false,"name":"SLE-Module-Legacy15-Source-Pool","description":"SLE-Module-Legacy15-Source-Pool for sle-15-aarch64"}],"product_class":"MODULE","predecessor_ids":[]},{"free":false,"description":"SUSE Linux High Availability Extension provides mature, industry-leading open-source high-availability clustering technologies that are easy to set up and use. It can be deployed in physical and/or virtual environments, and can cluster physical servers, virtual servers, or any combination of the two to suit your business’ needs.","shortname":"SLEHA15","arch":"aarch64","eula_url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15/aarch64/product.license/","online_predecessor_ids":[],"product_class":"SLE-HAE-ARM64","repositories":[{"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-HA/15/aarch64/update/","autorefresh":true,"distro_target":"sle-15-aarch64","id":2849,"enabled":true,"description":"SLE-Product-HA15-Updates for sle-15-aarch64","name":"SLE-Product-HA15-Updates","installer_updates":false},{"name":"SLE-Product-HA15-Debuginfo-Updates","installer_updates":false,"description":"SLE-Product-HA15-Debuginfo-Updates for sle-15-aarch64","id":2850,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-HA/15/aarch64/update_debug/","autorefresh":true,"distro_target":"sle-15-aarch64"},{"installer_updates":false,"name":"SLE-Product-HA15-Pool","description":"SLE-Product-HA15-Pool for sle-15-aarch64","enabled":true,"id":2851,"distro_target":"sle-15-aarch64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15/aarch64/product/"},{"enabled":false,"id":2852,"distro_target":"sle-15-aarch64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15/aarch64/product_debug/","installer_updates":false,"name":"SLE-Product-HA15-Debuginfo-Pool","description":"SLE-Product-HA15-Debuginfo-Pool for sle-15-aarch64"},{"enabled":false,"id":2853,"autorefresh":false,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15/aarch64/product_source/","name":"SLE-Product-HA15-Source-Pool","installer_updates":false,"description":"SLE-Product-HA15-Source-Pool for sle-15-aarch64"}],"predecessor_ids":[],"product_type":"extension","cpe":"cpe:/o:suse:sle-ha:15","version":"15","recommended":false,"former_identifier":"sle-ha","release_type":null,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise High Availability Extension 15 aarch64","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise High Availability Extension","friendly_version":"15","release_stage":"released","id":1608,"identifier":"sle-ha","extensions":[]},{"product_type":"module","cpe":"cpe:/o:suse:sle-module-public-cloud:15","online_predecessor_ids":[],"product_class":"MODULE","repositories":[{"enabled":true,"id":2879,"distro_target":"sle-15-aarch64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/15/aarch64/update/","installer_updates":false,"name":"SLE-Module-Public-Cloud15-Updates","description":"SLE-Module-Public-Cloud15-Updates for sle-15-aarch64"},{"distro_target":"sle-15-aarch64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/15/aarch64/update_debug/","enabled":false,"id":2880,"description":"SLE-Module-Public-Cloud15-Debuginfo-Updates for sle-15-aarch64","installer_updates":false,"name":"SLE-Module-Public-Cloud15-Debuginfo-Updates"},{"name":"SLE-Module-Public-Cloud15-Pool","installer_updates":false,"description":"SLE-Module-Public-Cloud15-Pool for sle-15-aarch64","enabled":true,"id":2881,"autorefresh":false,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15/aarch64/product/"},{"autorefresh":false,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15/aarch64/product_debug/","enabled":false,"id":2882,"description":"SLE-Module-Public-Cloud15-Debuginfo-Pool for sle-15-aarch64","name":"SLE-Module-Public-Cloud15-Debuginfo-Pool","installer_updates":false},{"name":"SLE-Module-Public-Cloud15-Source-Pool","installer_updates":false,"description":"SLE-Module-Public-Cloud15-Source-Pool for sle-15-aarch64","id":3126,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15/aarch64/product_source/","autorefresh":false,"distro_target":"sle-15-aarch64"}],"predecessor_ids":[],"arch":"aarch64","eula_url":"","free":true,"shortname":"Public-Cloud-Module","description":"

The Public Cloud Module is a collection of tools that enables you to create and manage cloud images from the commandline on SUSE Linux Enterprise Server. When building your own images with KIWI or SUSE Studio, initialization code specific to the target cloud is included in that image.

Access to the Public Cloud Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself; please check the Release Notes for further details.

","id":1645,"release_stage":"released","identifier":"sle-module-public-cloud","extensions":[],"friendly_version":"15","release_type":null,"former_identifier":"sle-module-public-cloud","friendly_name":"Public Cloud Module 15 aarch64","migration_extra":true,"offline_predecessor_ids":[1528],"name":"Public Cloud Module","version":"15","recommended":false},{"arch":"aarch64","eula_url":"","free":true,"shortname":"Web-Scripting-Module","description":"

The SUSE Linux Enterprise Web and Scripting Module should contains additional packages that are helpful when running a webserver.

Access to the Web and Scripting Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself: Package versions in this module are usually supported for at most three years. We are planning to release more recent versions on a schedule of approximately 18 month; the exact dates may differ per package.

","product_type":"module","cpe":"cpe:/o:suse:sle-module-web-scripting:15","repositories":[{"id":2957,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/15/aarch64/update/","autorefresh":true,"distro_target":"sle-15-aarch64","name":"SLE-Module-Web-Scripting15-Updates","installer_updates":false,"description":"SLE-Module-Web-Scripting15-Updates for sle-15-aarch64"},{"name":"SLE-Module-Web-Scripting15-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-Web-Scripting15-Debuginfo-Updates for sle-15-aarch64","enabled":false,"id":2958,"autorefresh":true,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/15/aarch64/update_debug/"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15/aarch64/product/","distro_target":"sle-15-aarch64","autorefresh":false,"id":2959,"enabled":true,"description":"SLE-Module-Web-Scripting15-Pool for sle-15-aarch64","installer_updates":false,"name":"SLE-Module-Web-Scripting15-Pool"},{"id":2960,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15/aarch64/product_debug/","distro_target":"sle-15-aarch64","autorefresh":false,"installer_updates":false,"name":"SLE-Module-Web-Scripting15-Debuginfo-Pool","description":"SLE-Module-Web-Scripting15-Debuginfo-Pool for sle-15-aarch64"},{"name":"SLE-Module-Web-Scripting15-Source-Pool","installer_updates":false,"description":"SLE-Module-Web-Scripting15-Source-Pool for sle-15-aarch64","id":2961,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15/aarch64/product_source/","autorefresh":false,"distro_target":"sle-15-aarch64"}],"online_predecessor_ids":[],"product_class":"MODULE","predecessor_ids":[],"release_type":null,"former_identifier":"sle-module-web-scripting","migration_extra":true,"friendly_name":"Web and Scripting Module 15 aarch64","offline_predecessor_ids":[1539],"name":"Web and Scripting Module","version":"15","recommended":false,"release_stage":"released","id":1718,"identifier":"sle-module-web-scripting","extensions":[],"friendly_version":"15"}],"id":1601,"release_stage":"released","identifier":"sle-module-server-applications","free":true,"shortname":"Server-Applications-Module","description":"

The SUSE Linux Enterprise Server Applications Module delivers a basic set of Server functionality.

Access to the Server Applications Module is included in your SUSE Linux Enterprise Server subscription.

","eula_url":"","arch":"aarch64","predecessor_ids":[],"product_class":"MODULE","online_predecessor_ids":[],"repositories":[{"autorefresh":true,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15/aarch64/update/","enabled":true,"id":2633,"description":"SLE-Module-Server-Applications15-Updates for sle-15-aarch64","name":"SLE-Module-Server-Applications15-Updates","installer_updates":false},{"description":"SLE-Module-Server-Applications15-Debuginfo-Updates for sle-15-aarch64","name":"SLE-Module-Server-Applications15-Debuginfo-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15/aarch64/update_debug/","enabled":false,"id":2634},{"installer_updates":false,"name":"SLE-Module-Server-Applications15-Pool","description":"SLE-Module-Server-Applications15-Pool for sle-15-aarch64","id":2635,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15/aarch64/product/","distro_target":"sle-15-aarch64","autorefresh":false},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15/aarch64/product_debug/","distro_target":"sle-15-aarch64","autorefresh":false,"id":2636,"enabled":false,"description":"SLE-Module-Server-Applications15-Debuginfo-Pool for sle-15-aarch64","installer_updates":false,"name":"SLE-Module-Server-Applications15-Debuginfo-Pool"},{"installer_updates":false,"name":"SLE-Module-Server-Applications15-Source-Pool","description":"SLE-Module-Server-Applications15-Source-Pool for sle-15-aarch64","id":2637,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15/aarch64/product_source/","distro_target":"sle-15-aarch64","autorefresh":false}],"product_type":"module","cpe":"cpe:/o:suse:sle-module-server-applications:15"},{"eula_url":"","arch":"aarch64","free":true,"description":"SUSE Package Hub is a free of charge extension providing access to community maintained packages built to run on SUSE Linux Enterprise Server. Built from the same sources used in the openSUSE distributions, these quality packages provide additional software to what is found in the SUSE Linux Enterprise Server product. Packages from the Package Hub are delivered without L3 support from SUSE. General updates and fixes to the packages in SUSE Package Hub are provided by the openSUSE community based on their discretion though SUSE will monitor and ensure that any known critical security issues will be addressed. Packages in the Package Hub are approved by SUSE for use with SUSE Linux Enterprise Server 15 and to not interfere with the supportability of SUSE Linux Enterprise Server it's modules and extensions. For more information about SUSE Package Hub please visit https://packagehub.suse.com.","shortname":"SUSE-PackageHub-15","product_type":"extension","cpe":"cpe:/o:suse:packagehub:15","predecessor_ids":[],"online_predecessor_ids":[],"repositories":[{"name":"SUSE-PackageHub-15-Standard-Pool","installer_updates":false,"description":"SUSE-PackageHub-15-Standard-Pool for sle-15-aarch64","id":3050,"enabled":true,"url":"https://updates.suse.com/SUSE/Backports/SLE-15_aarch64/standard/","autorefresh":false,"distro_target":"sle-15-aarch64"},{"description":"SUSE-PackageHub-15-Debuginfo for sle-15-aarch64","installer_updates":false,"name":"SUSE-PackageHub-15-Debuginfo","url":"https://updates.suse.com/SUSE/Backports/SLE-15_aarch64/standard_debug/","distro_target":"sle-15-aarch64","autorefresh":true,"id":3051,"enabled":false},{"url":"https://updates.suse.com/SUSE/Backports/SLE-15_aarch64/product/","autorefresh":false,"distro_target":"sle-15-aarch64","id":3052,"enabled":true,"description":"SUSE-PackageHub-15-Pool for sle-15-aarch64","name":"SUSE-PackageHub-15-Pool","installer_updates":false},{"id":3167,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15/aarch64/update/","autorefresh":true,"distro_target":"sle-15-aarch64","name":"SLE-Module-Packagehub-Subpackages15-Updates","installer_updates":false,"description":"SLE-Module-Packagehub-Subpackages15-Updates for sle-15-aarch64"},{"description":"SLE-Module-Packagehub-Subpackages15-Debuginfo-Updates for sle-15-aarch64","installer_updates":false,"name":"SLE-Module-Packagehub-Subpackages15-Debuginfo-Updates","distro_target":"sle-15-aarch64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15/aarch64/update_debug/","enabled":false,"id":3168},{"autorefresh":false,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15/aarch64/product/","enabled":true,"id":3169,"description":"SLE-Module-Packagehub-Subpackages15-Pool for sle-15-aarch64","name":"SLE-Module-Packagehub-Subpackages15-Pool","installer_updates":false},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15/aarch64/product_debug/","autorefresh":false,"distro_target":"sle-15-aarch64","id":3170,"enabled":false,"description":"SLE-Module-Packagehub-Subpackages15-Debuginfo-Pool for sle-15-aarch64","name":"SLE-Module-Packagehub-Subpackages15-Debuginfo-Pool","installer_updates":false},{"description":"SLE-Module-Packagehub-Subpackages15-Source-Pool for sle-15-aarch64","installer_updates":false,"name":"SLE-Module-Packagehub-Subpackages15-Source-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15/aarch64/product_source/","distro_target":"sle-15-aarch64","autorefresh":false,"id":3171,"enabled":false}],"product_class":"MODULE","offline_predecessor_ids":[1532,1810,1912],"name":"SUSE Package Hub","release_type":null,"former_identifier":"PackageHub","migration_extra":false,"friendly_name":"SUSE Package Hub 15 aarch64","recommended":false,"version":"15","extensions":[],"identifier":"PackageHub","release_stage":"released","id":1740,"friendly_version":"15"}],"friendly_version":"15","arch":"aarch64","eula_url":"","free":true,"shortname":"Basesystem-Module","description":"

The SUSE Linux Enterprise Basesystem Module delivers the base system of the product.

","product_type":"module","cpe":"cpe:/o:suse:sle-module-basesystem:15","online_predecessor_ids":[],"repositories":[{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15/aarch64/update/","distro_target":"sle-15-aarch64","autorefresh":true,"id":2574,"enabled":true,"description":"SLE-Module-Basesystem15-Updates for sle-15-aarch64","installer_updates":false,"name":"SLE-Module-Basesystem15-Updates"},{"name":"SLE-Module-Basesystem15-Pool","installer_updates":false,"description":"SLE-Module-Basesystem15-Pool for sle-15-aarch64","enabled":true,"id":2575,"autorefresh":false,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15/aarch64/product/"},{"description":"SLE-Module-Basesystem15-Debuginfo-Pool for sle-15-aarch64","name":"SLE-Module-Basesystem15-Debuginfo-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15/aarch64/product_debug/","enabled":false,"id":2576},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15/aarch64/product_source/","distro_target":"sle-15-aarch64","autorefresh":false,"id":2577,"enabled":false,"description":"SLE-Module-Basesystem15-Source-Pool for sle-15-aarch64","installer_updates":false,"name":"SLE-Module-Basesystem15-Source-Pool"},{"description":"SLE-Module-Basesystem15-Debuginfo-Updates for sle-15-aarch64","installer_updates":false,"name":"SLE-Module-Basesystem15-Debuginfo-Updates","distro_target":"sle-15-aarch64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15/aarch64/update_debug/","enabled":false,"id":3014}],"product_class":"MODULE","predecessor_ids":[]},{"eula_url":"","arch":"aarch64","shortname":"SLES15-LTSS","description":"SUSE Linux Enterprise offers a comprehensive suite of products built on a single code base. The platform addresses business needs from the smallest thin-client devices to the world's most powerful high-performance computing and mainframe servers. SUSE Linux Enterprise offers common management tools and technology certifications across the platform, and each product is enterprise-class.","free":false,"cpe":"cpe:/o:suse:sles-ltss:15","product_type":"extension","predecessor_ids":[],"product_class":"SLES15-LTSS-ARM64","online_predecessor_ids":[],"repositories":[{"description":"SLE-Product-SLES15-LTSS-Updates for sle-15-aarch64","name":"SLE-Product-SLES15-LTSS-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Updates/SLE-Product-SLES/15-LTSS/aarch64/update/","enabled":true,"id":4384},{"description":"SLE-Product-SLES15-Debuginfo-LTSS-Updates for sle-15-aarch64","name":"SLE-Product-SLES15-Debuginfo-LTSS-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Updates/SLE-Product-SLES/15-LTSS/aarch64/update_debug/","enabled":false,"id":4385}],"name":"SUSE Linux Enterprise Server LTSS","offline_predecessor_ids":[],"friendly_name":"SUSE Linux Enterprise Server LTSS 15 aarch64","migration_extra":false,"former_identifier":"SLES-LTSS","release_type":null,"recommended":false,"version":"15","extensions":[],"identifier":"SLES-LTSS","release_stage":"released","id":2053,"friendly_version":"15"}],"friendly_version":"15","arch":"aarch64","eula_url":"https://updates.suse.com/SUSE/Products/SLE-Product-SLES/15/aarch64/product.license/","free":false,"description":"SUSE Linux Enterprise offers a comprehensive suite of products built on a single code base. The platform addresses business needs from the smallest thin-client devices to the world's most powerful high-performance computing and mainframe servers. SUSE Linux Enterprise offers common management tools and technology certifications across the platform, and each product is enterprise-class.","shortname":"SLES15","product_type":"base","cpe":"cpe:/o:suse:sles:15","online_predecessor_ids":[],"product_class":"SLES-ARM64","repositories":[{"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-SLES/15/aarch64/update/","distro_target":"sle-15-aarch64","autorefresh":true,"id":2714,"enabled":true,"description":"SLE-Product-SLES15-Updates for sle-15-aarch64","installer_updates":false,"name":"SLE-Product-SLES15-Updates"},{"url":"https://updates.suse.com/SUSE/Updates/SLE-INSTALLER/15/aarch64/update/","distro_target":"sle-15-aarch64","autorefresh":true,"id":2715,"enabled":false,"description":"SLE15-Installer-Updates for sle-15-aarch64","installer_updates":true,"name":"SLE15-Installer-Updates"},{"description":"SLE-Product-SLES15-Pool for sle-15-aarch64","name":"SLE-Product-SLES15-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Products/SLE-Product-SLES/15/aarch64/product/","enabled":true,"id":2716},{"name":"SLE-Product-SLES15-Debuginfo-Updates","installer_updates":false,"description":"SLE-Product-SLES15-Debuginfo-Updates for sle-15-aarch64","id":3105,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-SLES/15/aarch64/update_debug/","autorefresh":true,"distro_target":"sle-15-aarch64"},{"description":"SLE-Product-SLES15-Debuginfo-Pool for sle-15-aarch64","installer_updates":false,"name":"SLE-Product-SLES15-Debuginfo-Pool","distro_target":"sle-15-aarch64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-SLES/15/aarch64/product_debug/","enabled":false,"id":3106},{"distro_target":"sle-15-aarch64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-SLES/15/aarch64/product_source/","enabled":false,"id":3107,"description":"SLE-Product-SLES15-Source-Pool for sle-15-aarch64","installer_updates":false,"name":"SLE-Product-SLES15-Source-Pool"}],"predecessor_ids":[]},{"cpe":"cpe:/o:suse:sle-module-basesystem:15","product_type":"module","predecessor_ids":[],"online_predecessor_ids":[],"repositories":[{"enabled":true,"id":2564,"distro_target":"sle-15-s390x","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15/s390x/update/","installer_updates":false,"name":"SLE-Module-Basesystem15-Updates","description":"SLE-Module-Basesystem15-Updates for sle-15-s390x"},{"id":2565,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15/s390x/update_debug/","distro_target":"sle-15-s390x","autorefresh":true,"installer_updates":false,"name":"SLE-Module-Basesystem15-Debuginfo-Updates","description":"SLE-Module-Basesystem15-Debuginfo-Updates for sle-15-s390x"},{"autorefresh":false,"distro_target":"sle-15-s390x","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15/s390x/product/","enabled":true,"id":2566,"description":"SLE-Module-Basesystem15-Pool for sle-15-s390x","name":"SLE-Module-Basesystem15-Pool","installer_updates":false},{"enabled":false,"id":2567,"autorefresh":false,"distro_target":"sle-15-s390x","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15/s390x/product_debug/","name":"SLE-Module-Basesystem15-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-Basesystem15-Debuginfo-Pool for sle-15-s390x"},{"id":2568,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15/s390x/product_source/","autorefresh":false,"distro_target":"sle-15-s390x","name":"SLE-Module-Basesystem15-Source-Pool","installer_updates":false,"description":"SLE-Module-Basesystem15-Source-Pool for sle-15-s390x"}],"product_class":"MODULE","eula_url":"","arch":"s390x","shortname":"Basesystem-Module","description":"

The SUSE Linux Enterprise Basesystem Module delivers the base system of the product.

","free":true,"extensions":[],"release_stage":"released","identifier":"sle-module-basesystem","id":1587,"friendly_version":"15","name":"Basesystem Module","offline_predecessor_ids":[1295,1367],"migration_extra":false,"friendly_name":"Basesystem Module 15 s390x","release_type":null,"former_identifier":"sle-module-basesystem","recommended":false,"version":"15"},{"eula_url":"","arch":"ppc64le","free":true,"description":"

The SUSE Linux Enterprise Basesystem Module delivers the base system of the product.

","shortname":"Basesystem-Module","product_type":"module","cpe":"cpe:/o:suse:sle-module-basesystem:15","predecessor_ids":[],"product_class":"MODULE","online_predecessor_ids":[],"repositories":[{"installer_updates":false,"name":"SLE-Module-Basesystem15-Updates","description":"SLE-Module-Basesystem15-Updates for sle-15-ppc64le","id":2569,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15/ppc64le/update/","distro_target":"sle-15-ppc64le","autorefresh":true},{"description":"SLE-Module-Basesystem15-Debuginfo-Updates for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-Basesystem15-Debuginfo-Updates","distro_target":"sle-15-ppc64le","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15/ppc64le/update_debug/","enabled":false,"id":2570},{"id":2571,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15/ppc64le/product/","distro_target":"sle-15-ppc64le","autorefresh":false,"installer_updates":false,"name":"SLE-Module-Basesystem15-Pool","description":"SLE-Module-Basesystem15-Pool for sle-15-ppc64le"},{"name":"SLE-Module-Basesystem15-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-Basesystem15-Debuginfo-Pool for sle-15-ppc64le","enabled":false,"id":2572,"autorefresh":false,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15/ppc64le/product_debug/"},{"id":2573,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15/ppc64le/product_source/","distro_target":"sle-15-ppc64le","autorefresh":false,"installer_updates":false,"name":"SLE-Module-Basesystem15-Source-Pool","description":"SLE-Module-Basesystem15-Source-Pool for sle-15-ppc64le"}],"offline_predecessor_ids":[1294],"name":"Basesystem Module","former_identifier":"sle-module-basesystem","release_type":null,"migration_extra":false,"friendly_name":"Basesystem Module 15 ppc64le","recommended":false,"version":"15","extensions":[],"release_stage":"released","id":1588,"identifier":"sle-module-basesystem","friendly_version":"15"},{"offline_predecessor_ids":[1522],"name":"Basesystem Module","release_type":null,"former_identifier":"sle-module-basesystem","friendly_name":"Basesystem Module 15 aarch64","migration_extra":false,"recommended":false,"version":"15","extensions":[],"release_stage":"released","id":1589,"identifier":"sle-module-basesystem","friendly_version":"15","eula_url":"","arch":"aarch64","free":true,"shortname":"Basesystem-Module","description":"

The SUSE Linux Enterprise Basesystem Module delivers the base system of the product.

","product_type":"module","cpe":"cpe:/o:suse:sle-module-basesystem:15","predecessor_ids":[],"product_class":"MODULE","online_predecessor_ids":[],"repositories":[{"name":"SLE-Module-Basesystem15-Updates","installer_updates":false,"description":"SLE-Module-Basesystem15-Updates for sle-15-aarch64","id":2574,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15/aarch64/update/","autorefresh":true,"distro_target":"sle-15-aarch64"},{"description":"SLE-Module-Basesystem15-Pool for sle-15-aarch64","name":"SLE-Module-Basesystem15-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15/aarch64/product/","autorefresh":false,"distro_target":"sle-15-aarch64","id":2575,"enabled":true},{"name":"SLE-Module-Basesystem15-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-Basesystem15-Debuginfo-Pool for sle-15-aarch64","id":2576,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15/aarch64/product_debug/","autorefresh":false,"distro_target":"sle-15-aarch64"},{"description":"SLE-Module-Basesystem15-Source-Pool for sle-15-aarch64","name":"SLE-Module-Basesystem15-Source-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15/aarch64/product_source/","autorefresh":false,"distro_target":"sle-15-aarch64","id":2577,"enabled":false},{"enabled":false,"id":3014,"distro_target":"sle-15-aarch64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15/aarch64/update_debug/","installer_updates":false,"name":"SLE-Module-Basesystem15-Debuginfo-Updates","description":"SLE-Module-Basesystem15-Debuginfo-Updates for sle-15-aarch64"}]},{"free":true,"shortname":"Desktop-Applications-Module","description":"

The SUSE Linux Enterprise Desktop Applications Module delivers a basic set of Desktop functionality.

Access to the Desktop Applications Module is included in your SUSE Linux Enterprise product subscription.

","arch":"s390x","eula_url":"","online_predecessor_ids":[],"product_class":"MODULE","repositories":[{"autorefresh":true,"distro_target":"sle-15-s390x","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15/s390x/update/","enabled":true,"id":2593,"description":"SLE-Module-Desktop-Applications15-Updates for sle-15-s390x","name":"SLE-Module-Desktop-Applications15-Updates","installer_updates":false},{"installer_updates":false,"name":"SLE-Module-Desktop-Applications15-Debuginfo-Updates","description":"SLE-Module-Desktop-Applications15-Debuginfo-Updates for sle-15-s390x","id":2594,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15/s390x/update_debug/","distro_target":"sle-15-s390x","autorefresh":true},{"enabled":true,"id":2595,"distro_target":"sle-15-s390x","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15/s390x/product/","installer_updates":false,"name":"SLE-Module-Desktop-Applications15-Pool","description":"SLE-Module-Desktop-Applications15-Pool for sle-15-s390x"},{"name":"SLE-Module-Desktop-Applications15-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-Desktop-Applications15-Debuginfo-Pool for sle-15-s390x","id":2596,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15/s390x/product_debug/","autorefresh":false,"distro_target":"sle-15-s390x"},{"id":2597,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15/s390x/product_source/","distro_target":"sle-15-s390x","autorefresh":false,"installer_updates":false,"name":"SLE-Module-Desktop-Applications15-Source-Pool","description":"SLE-Module-Desktop-Applications15-Source-Pool for sle-15-s390x"}],"predecessor_ids":[],"product_type":"module","cpe":"cpe:/o:suse:sle-module-desktop-applications:15","version":"15","recommended":false,"former_identifier":"sle-module-desktop-applications","release_type":null,"friendly_name":"Desktop Applications Module 15 s390x","migration_extra":false,"offline_predecessor_ids":[],"name":"Desktop Applications Module","friendly_version":"15","identifier":"sle-module-desktop-applications","release_stage":"released","id":1593,"extensions":[]},{"eula_url":"","arch":"ppc64le","free":true,"description":"

The SUSE Linux Enterprise Desktop Applications Module delivers a basic set of Desktop functionality.

Access to the Desktop Applications Module is included in your SUSE Linux Enterprise product subscription.

","shortname":"Desktop-Applications-Module","product_type":"module","cpe":"cpe:/o:suse:sle-module-desktop-applications:15","predecessor_ids":[],"repositories":[{"description":"SLE-Module-Desktop-Applications15-Updates for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-Desktop-Applications15-Updates","distro_target":"sle-15-ppc64le","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15/ppc64le/update/","enabled":true,"id":2598},{"installer_updates":false,"name":"SLE-Module-Desktop-Applications15-Debuginfo-Updates","description":"SLE-Module-Desktop-Applications15-Debuginfo-Updates for sle-15-ppc64le","enabled":false,"id":2599,"distro_target":"sle-15-ppc64le","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15/ppc64le/update_debug/"},{"id":2600,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15/ppc64le/product/","autorefresh":false,"distro_target":"sle-15-ppc64le","name":"SLE-Module-Desktop-Applications15-Pool","installer_updates":false,"description":"SLE-Module-Desktop-Applications15-Pool for sle-15-ppc64le"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15/ppc64le/product_debug/","autorefresh":false,"distro_target":"sle-15-ppc64le","id":2601,"enabled":false,"description":"SLE-Module-Desktop-Applications15-Debuginfo-Pool for sle-15-ppc64le","name":"SLE-Module-Desktop-Applications15-Debuginfo-Pool","installer_updates":false},{"autorefresh":false,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15/ppc64le/product_source/","enabled":false,"id":2602,"description":"SLE-Module-Desktop-Applications15-Source-Pool for sle-15-ppc64le","name":"SLE-Module-Desktop-Applications15-Source-Pool","installer_updates":false}],"online_predecessor_ids":[],"product_class":"MODULE","offline_predecessor_ids":[],"name":"Desktop Applications Module","release_type":null,"former_identifier":"sle-module-desktop-applications","migration_extra":false,"friendly_name":"Desktop Applications Module 15 ppc64le","recommended":false,"version":"15","extensions":[],"id":1594,"release_stage":"released","identifier":"sle-module-desktop-applications","friendly_version":"15"},{"recommended":false,"version":"15","name":"Desktop Applications Module","offline_predecessor_ids":[],"friendly_name":"Desktop Applications Module 15 aarch64","migration_extra":false,"release_type":null,"former_identifier":"sle-module-desktop-applications","friendly_version":"15","extensions":[],"id":1595,"release_stage":"released","identifier":"sle-module-desktop-applications","description":"

The SUSE Linux Enterprise Desktop Applications Module delivers a basic set of Desktop functionality.

Access to the Desktop Applications Module is included in your SUSE Linux Enterprise product subscription.

","shortname":"Desktop-Applications-Module","free":true,"eula_url":"","arch":"aarch64","predecessor_ids":[],"repositories":[{"description":"SLE-Module-Desktop-Applications15-Updates for sle-15-aarch64","name":"SLE-Module-Desktop-Applications15-Updates","installer_updates":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15/aarch64/update/","autorefresh":true,"distro_target":"sle-15-aarch64","id":2603,"enabled":true},{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15/aarch64/update_debug/","distro_target":"sle-15-aarch64","autorefresh":true,"id":2604,"enabled":false,"description":"SLE-Module-Desktop-Applications15-Debuginfo-Updates for sle-15-aarch64","installer_updates":false,"name":"SLE-Module-Desktop-Applications15-Debuginfo-Updates"},{"enabled":true,"id":2605,"distro_target":"sle-15-aarch64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15/aarch64/product/","installer_updates":false,"name":"SLE-Module-Desktop-Applications15-Pool","description":"SLE-Module-Desktop-Applications15-Pool for sle-15-aarch64"},{"id":2606,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15/aarch64/product_debug/","autorefresh":false,"distro_target":"sle-15-aarch64","name":"SLE-Module-Desktop-Applications15-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-Desktop-Applications15-Debuginfo-Pool for sle-15-aarch64"},{"description":"SLE-Module-Desktop-Applications15-Source-Pool for sle-15-aarch64","installer_updates":false,"name":"SLE-Module-Desktop-Applications15-Source-Pool","distro_target":"sle-15-aarch64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15/aarch64/product_source/","enabled":false,"id":2607}],"online_predecessor_ids":[],"product_class":"MODULE","cpe":"cpe:/o:suse:sle-module-desktop-applications:15","product_type":"module"},{"arch":"s390x","eula_url":"","description":"

The Development Tools Module helps you developing applications for SUSE Linux Enterprise 15.

Access to the Development Tools Module is included in your SUSE Linux Enterprise product subscription. The module has a different lifecycle than SUSE Linux Enterprise itself.

","shortname":"Development-Tools-Module","free":true,"cpe":"cpe:/o:suse:sle-module-development-tools:15","product_type":"module","repositories":[{"id":2608,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15/s390x/update/","autorefresh":true,"distro_target":"sle-15-s390x","name":"SLE-Module-DevTools15-Updates","installer_updates":false,"description":"SLE-Module-DevTools15-Updates for sle-15-s390x"},{"enabled":false,"id":2609,"distro_target":"sle-15-s390x","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15/s390x/update_debug/","installer_updates":false,"name":"SLE-Module-DevTools15-Debuginfo-Updates","description":"SLE-Module-DevTools15-Debuginfo-Updates for sle-15-s390x"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15/s390x/product/","distro_target":"sle-15-s390x","autorefresh":false,"id":2610,"enabled":true,"description":"SLE-Module-DevTools15-Pool for sle-15-s390x","installer_updates":false,"name":"SLE-Module-DevTools15-Pool"},{"name":"SLE-Module-DevTools15-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-DevTools15-Debuginfo-Pool for sle-15-s390x","id":2611,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15/s390x/product_debug/","autorefresh":false,"distro_target":"sle-15-s390x"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15/s390x/product_source/","distro_target":"sle-15-s390x","autorefresh":false,"id":2612,"enabled":false,"description":"SLE-Module-DevTools15-Source-Pool for sle-15-s390x","installer_updates":false,"name":"SLE-Module-DevTools15-Source-Pool"}],"online_predecessor_ids":[],"product_class":"MODULE","predecessor_ids":[],"migration_extra":false,"friendly_name":"Development Tools Module 15 s390x","release_type":null,"former_identifier":"sle-sdk","name":"Development Tools Module","offline_predecessor_ids":[1146,1340,1344,1365,1429,1632,1891],"version":"15","recommended":false,"release_stage":"released","identifier":"sle-module-development-tools","id":1596,"extensions":[],"friendly_version":"15"},{"arch":"ppc64le","eula_url":"","free":true,"description":"

The Development Tools Module helps you developing applications for SUSE Linux Enterprise 15.

Access to the Development Tools Module is included in your SUSE Linux Enterprise product subscription. The module has a different lifecycle than SUSE Linux Enterprise itself.

","shortname":"Development-Tools-Module","product_type":"module","cpe":"cpe:/o:suse:sle-module-development-tools:15","online_predecessor_ids":[],"repositories":[{"description":"SLE-Module-DevTools15-Updates for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-DevTools15-Updates","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15/ppc64le/update/","distro_target":"sle-15-ppc64le","autorefresh":true,"id":2613,"enabled":true},{"description":"SLE-Module-DevTools15-Debuginfo-Updates for sle-15-ppc64le","name":"SLE-Module-DevTools15-Debuginfo-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15/ppc64le/update_debug/","enabled":false,"id":2614},{"id":2615,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15/ppc64le/product/","autorefresh":false,"distro_target":"sle-15-ppc64le","name":"SLE-Module-DevTools15-Pool","installer_updates":false,"description":"SLE-Module-DevTools15-Pool for sle-15-ppc64le"},{"distro_target":"sle-15-ppc64le","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15/ppc64le/product_debug/","enabled":false,"id":2616,"description":"SLE-Module-DevTools15-Debuginfo-Pool for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-DevTools15-Debuginfo-Pool"},{"description":"SLE-Module-DevTools15-Source-Pool for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-DevTools15-Source-Pool","distro_target":"sle-15-ppc64le","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15/ppc64le/product_source/","enabled":false,"id":2617}],"product_class":"MODULE","predecessor_ids":[],"release_type":null,"former_identifier":"sle-sdk","friendly_name":"Development Tools Module 15 ppc64le","migration_extra":false,"offline_predecessor_ids":[1145,1339,1343,1364,1428,1631,1890],"name":"Development Tools Module","version":"15","recommended":false,"id":1597,"release_stage":"released","identifier":"sle-module-development-tools","extensions":[],"friendly_version":"15"},{"former_identifier":"sle-sdk","release_type":null,"migration_extra":false,"friendly_name":"Development Tools Module 15 aarch64","offline_predecessor_ids":[1376,1378,1430,1633,1889],"name":"Development Tools Module","version":"15","recommended":false,"id":1598,"release_stage":"released","identifier":"sle-module-development-tools","extensions":[],"friendly_version":"15","arch":"aarch64","eula_url":"","free":true,"description":"

The Development Tools Module helps you developing applications for SUSE Linux Enterprise 15.

Access to the Development Tools Module is included in your SUSE Linux Enterprise product subscription. The module has a different lifecycle than SUSE Linux Enterprise itself.

","shortname":"Development-Tools-Module","product_type":"module","cpe":"cpe:/o:suse:sle-module-development-tools:15","online_predecessor_ids":[],"repositories":[{"distro_target":"sle-15-aarch64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15/aarch64/update/","enabled":true,"id":2618,"description":"SLE-Module-DevTools15-Updates for sle-15-aarch64","installer_updates":false,"name":"SLE-Module-DevTools15-Updates"},{"installer_updates":false,"name":"SLE-Module-DevTools15-Debuginfo-Updates","description":"SLE-Module-DevTools15-Debuginfo-Updates for sle-15-aarch64","enabled":false,"id":2619,"distro_target":"sle-15-aarch64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15/aarch64/update_debug/"},{"description":"SLE-Module-DevTools15-Pool for sle-15-aarch64","name":"SLE-Module-DevTools15-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15/aarch64/product/","enabled":true,"id":2620},{"enabled":false,"id":2621,"autorefresh":false,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15/aarch64/product_debug/","name":"SLE-Module-DevTools15-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-DevTools15-Debuginfo-Pool for sle-15-aarch64"},{"description":"SLE-Module-DevTools15-Source-Pool for sle-15-aarch64","installer_updates":false,"name":"SLE-Module-DevTools15-Source-Pool","distro_target":"sle-15-aarch64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15/aarch64/product_source/","enabled":false,"id":2622}],"product_class":"MODULE","predecessor_ids":[]},{"cpe":"cpe:/o:suse:sle-module-server-applications:15","product_type":"module","online_predecessor_ids":[],"repositories":[{"description":"SLE-Module-Server-Applications15-Updates for sle-15-s390x","installer_updates":false,"name":"SLE-Module-Server-Applications15-Updates","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15/s390x/update/","distro_target":"sle-15-s390x","autorefresh":true,"id":2623,"enabled":true},{"id":2624,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15/s390x/update_debug/","autorefresh":true,"distro_target":"sle-15-s390x","name":"SLE-Module-Server-Applications15-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-Server-Applications15-Debuginfo-Updates for sle-15-s390x"},{"description":"SLE-Module-Server-Applications15-Pool for sle-15-s390x","name":"SLE-Module-Server-Applications15-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15/s390x/product/","autorefresh":false,"distro_target":"sle-15-s390x","id":2625,"enabled":true},{"id":2626,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15/s390x/product_debug/","autorefresh":false,"distro_target":"sle-15-s390x","name":"SLE-Module-Server-Applications15-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-Server-Applications15-Debuginfo-Pool for sle-15-s390x"},{"installer_updates":false,"name":"SLE-Module-Server-Applications15-Source-Pool","description":"SLE-Module-Server-Applications15-Source-Pool for sle-15-s390x","id":2627,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15/s390x/product_source/","distro_target":"sle-15-s390x","autorefresh":false}],"product_class":"MODULE","predecessor_ids":[],"arch":"s390x","eula_url":"","description":"

The SUSE Linux Enterprise Server Applications Module delivers a basic set of Server functionality.

Access to the Server Applications Module is included in your SUSE Linux Enterprise Server subscription.

","shortname":"Server-Applications-Module","free":true,"id":1599,"release_stage":"released","identifier":"sle-module-server-applications","extensions":[],"friendly_version":"15","friendly_name":"Server Applications Module 15 s390x","migration_extra":false,"release_type":null,"former_identifier":"sle-module-server-applications","name":"Server Applications Module","offline_predecessor_ids":[],"version":"15","recommended":false},{"extensions":[],"release_stage":"released","identifier":"sle-module-server-applications","id":1600,"friendly_version":"15","name":"Server Applications Module","offline_predecessor_ids":[],"friendly_name":"Server Applications Module 15 ppc64le","migration_extra":false,"release_type":null,"former_identifier":"sle-module-server-applications","recommended":false,"version":"15","cpe":"cpe:/o:suse:sle-module-server-applications:15","product_type":"module","predecessor_ids":[],"online_predecessor_ids":[],"repositories":[{"description":"SLE-Module-Server-Applications15-Updates for sle-15-ppc64le","name":"SLE-Module-Server-Applications15-Updates","installer_updates":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15/ppc64le/update/","autorefresh":true,"distro_target":"sle-15-ppc64le","id":2628,"enabled":true},{"enabled":false,"id":2629,"autorefresh":true,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15/ppc64le/update_debug/","name":"SLE-Module-Server-Applications15-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-Server-Applications15-Debuginfo-Updates for sle-15-ppc64le"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15/ppc64le/product/","distro_target":"sle-15-ppc64le","autorefresh":false,"id":2630,"enabled":true,"description":"SLE-Module-Server-Applications15-Pool for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-Server-Applications15-Pool"},{"enabled":false,"id":2631,"autorefresh":false,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15/ppc64le/product_debug/","name":"SLE-Module-Server-Applications15-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-Server-Applications15-Debuginfo-Pool for sle-15-ppc64le"},{"description":"SLE-Module-Server-Applications15-Source-Pool for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-Server-Applications15-Source-Pool","distro_target":"sle-15-ppc64le","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15/ppc64le/product_source/","enabled":false,"id":2632}],"product_class":"MODULE","eula_url":"","arch":"ppc64le","description":"

The SUSE Linux Enterprise Server Applications Module delivers a basic set of Server functionality.

Access to the Server Applications Module is included in your SUSE Linux Enterprise Server subscription.

","shortname":"Server-Applications-Module","free":true},{"offline_predecessor_ids":[],"name":"Server Applications Module","former_identifier":"sle-module-server-applications","release_type":null,"friendly_name":"Server Applications Module 15 aarch64","migration_extra":false,"recommended":false,"version":"15","extensions":[],"id":1601,"release_stage":"released","identifier":"sle-module-server-applications","friendly_version":"15","eula_url":"","arch":"aarch64","free":true,"shortname":"Server-Applications-Module","description":"

The SUSE Linux Enterprise Server Applications Module delivers a basic set of Server functionality.

Access to the Server Applications Module is included in your SUSE Linux Enterprise Server subscription.

","product_type":"module","cpe":"cpe:/o:suse:sle-module-server-applications:15","predecessor_ids":[],"online_predecessor_ids":[],"repositories":[{"description":"SLE-Module-Server-Applications15-Updates for sle-15-aarch64","name":"SLE-Module-Server-Applications15-Updates","installer_updates":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15/aarch64/update/","autorefresh":true,"distro_target":"sle-15-aarch64","id":2633,"enabled":true},{"description":"SLE-Module-Server-Applications15-Debuginfo-Updates for sle-15-aarch64","installer_updates":false,"name":"SLE-Module-Server-Applications15-Debuginfo-Updates","distro_target":"sle-15-aarch64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15/aarch64/update_debug/","enabled":false,"id":2634},{"description":"SLE-Module-Server-Applications15-Pool for sle-15-aarch64","installer_updates":false,"name":"SLE-Module-Server-Applications15-Pool","distro_target":"sle-15-aarch64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15/aarch64/product/","enabled":true,"id":2635},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15/aarch64/product_debug/","distro_target":"sle-15-aarch64","autorefresh":false,"id":2636,"enabled":false,"description":"SLE-Module-Server-Applications15-Debuginfo-Pool for sle-15-aarch64","installer_updates":false,"name":"SLE-Module-Server-Applications15-Debuginfo-Pool"},{"installer_updates":false,"name":"SLE-Module-Server-Applications15-Source-Pool","description":"SLE-Module-Server-Applications15-Source-Pool for sle-15-aarch64","id":2637,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15/aarch64/product_source/","distro_target":"sle-15-aarch64","autorefresh":false}],"product_class":"MODULE"},{"arch":"s390x","eula_url":"","description":"

The Legacy Module helps you migrating applications from SUSE Linux Enterprise 12 and other systems to SUSE Linux Enterprise 15, by providing packages which are discontinued on SUSE Linux Enterprise Server, such as: ntp, IBM Java 8, and a number of libraries.

Access to the Legacy Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself. Packages in the this module are usually supported for at most three years.

","shortname":"Legacy-Module","free":true,"cpe":"cpe:/o:suse:sle-module-legacy:15","product_type":"module","product_class":"MODULE","online_predecessor_ids":[],"repositories":[{"id":2638,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/15/s390x/update/","distro_target":"sle-15-s390x","autorefresh":true,"installer_updates":false,"name":"SLE-Module-Legacy15-Updates","description":"SLE-Module-Legacy15-Updates for sle-15-s390x"},{"autorefresh":true,"distro_target":"sle-15-s390x","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/15/s390x/update_debug/","enabled":false,"id":2639,"description":"SLE-Module-Legacy15-Debuginfo-Updates for sle-15-s390x","name":"SLE-Module-Legacy15-Debuginfo-Updates","installer_updates":false},{"description":"SLE-Module-Legacy15-Pool for sle-15-s390x","name":"SLE-Module-Legacy15-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15/s390x/product/","autorefresh":false,"distro_target":"sle-15-s390x","id":2640,"enabled":true},{"id":2641,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15/s390x/product_debug/","autorefresh":false,"distro_target":"sle-15-s390x","name":"SLE-Module-Legacy15-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-Legacy15-Debuginfo-Pool for sle-15-s390x"},{"enabled":false,"id":2642,"autorefresh":false,"distro_target":"sle-15-s390x","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15/s390x/product_source/","name":"SLE-Module-Legacy15-Source-Pool","installer_updates":false,"description":"SLE-Module-Legacy15-Source-Pool for sle-15-s390x"}],"predecessor_ids":[],"migration_extra":false,"friendly_name":"Legacy Module 15 s390x","release_type":null,"former_identifier":"sle-module-legacy","name":"Legacy Module","offline_predecessor_ids":[1149],"version":"15","recommended":false,"identifier":"sle-module-legacy","release_stage":"released","id":1602,"extensions":[],"friendly_version":"15"},{"friendly_version":"15","identifier":"sle-module-legacy","release_stage":"released","id":1603,"extensions":[],"version":"15","recommended":false,"former_identifier":"sle-module-legacy","release_type":null,"friendly_name":"Legacy Module 15 ppc64le","migration_extra":false,"offline_predecessor_ids":[1148],"name":"Legacy Module","product_class":"MODULE","online_predecessor_ids":[],"repositories":[{"autorefresh":true,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/15/ppc64le/update/","enabled":true,"id":2643,"description":"SLE-Module-Legacy15-Updates for sle-15-ppc64le","name":"SLE-Module-Legacy15-Updates","installer_updates":false},{"installer_updates":false,"name":"SLE-Module-Legacy15-Debuginfo-Updates","description":"SLE-Module-Legacy15-Debuginfo-Updates for sle-15-ppc64le","id":2644,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/15/ppc64le/update_debug/","distro_target":"sle-15-ppc64le","autorefresh":true},{"name":"SLE-Module-Legacy15-Pool","installer_updates":false,"description":"SLE-Module-Legacy15-Pool for sle-15-ppc64le","enabled":true,"id":2645,"autorefresh":false,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15/ppc64le/product/"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15/ppc64le/product_debug/","autorefresh":false,"distro_target":"sle-15-ppc64le","id":2646,"enabled":false,"description":"SLE-Module-Legacy15-Debuginfo-Pool for sle-15-ppc64le","name":"SLE-Module-Legacy15-Debuginfo-Pool","installer_updates":false},{"autorefresh":false,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15/ppc64le/product_source/","enabled":false,"id":2647,"description":"SLE-Module-Legacy15-Source-Pool for sle-15-ppc64le","name":"SLE-Module-Legacy15-Source-Pool","installer_updates":false}],"predecessor_ids":[],"product_type":"module","cpe":"cpe:/o:suse:sle-module-legacy:15","free":true,"shortname":"Legacy-Module","description":"

The Legacy Module helps you migrating applications from SUSE Linux Enterprise 12 and other systems to SUSE Linux Enterprise 15, by providing packages which are discontinued on SUSE Linux Enterprise Server, such as: ntp, IBM Java 8, and a number of libraries.

Access to the Legacy Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself. Packages in the this module are usually supported for at most three years.

","arch":"ppc64le","eula_url":""},{"release_stage":"released","id":1604,"identifier":"sle-module-legacy","extensions":[],"friendly_version":"15","release_type":null,"former_identifier":"sle-module-legacy","migration_extra":false,"friendly_name":"Legacy Module 15 aarch64","offline_predecessor_ids":[],"name":"Legacy Module","version":"15","recommended":false,"product_type":"module","cpe":"cpe:/o:suse:sle-module-legacy:15","online_predecessor_ids":[],"repositories":[{"description":"SLE-Module-Legacy15-Updates for sle-15-aarch64","name":"SLE-Module-Legacy15-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/15/aarch64/update/","enabled":true,"id":2648},{"id":2649,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/15/aarch64/update_debug/","distro_target":"sle-15-aarch64","autorefresh":true,"installer_updates":false,"name":"SLE-Module-Legacy15-Debuginfo-Updates","description":"SLE-Module-Legacy15-Debuginfo-Updates for sle-15-aarch64"},{"id":2650,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15/aarch64/product/","autorefresh":false,"distro_target":"sle-15-aarch64","name":"SLE-Module-Legacy15-Pool","installer_updates":false,"description":"SLE-Module-Legacy15-Pool for sle-15-aarch64"},{"distro_target":"sle-15-aarch64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15/aarch64/product_debug/","enabled":false,"id":2651,"description":"SLE-Module-Legacy15-Debuginfo-Pool for sle-15-aarch64","installer_updates":false,"name":"SLE-Module-Legacy15-Debuginfo-Pool"},{"id":2652,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15/aarch64/product_source/","distro_target":"sle-15-aarch64","autorefresh":false,"installer_updates":false,"name":"SLE-Module-Legacy15-Source-Pool","description":"SLE-Module-Legacy15-Source-Pool for sle-15-aarch64"}],"product_class":"MODULE","predecessor_ids":[],"arch":"aarch64","eula_url":"","free":true,"description":"

The Legacy Module helps you migrating applications from SUSE Linux Enterprise 12 and other systems to SUSE Linux Enterprise 15, by providing packages which are discontinued on SUSE Linux Enterprise Server, such as: ntp, IBM Java 8, and a number of libraries.

Access to the Legacy Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself. Packages in the this module are usually supported for at most three years.

","shortname":"Legacy-Module"},{"recommended":false,"version":"15","offline_predecessor_ids":[1080,1082,1084,1086,1109,1110,1156,1244,1257,1287,1336,1345,1360,1362,1434,1436,1636,1638,1883,1885],"name":"SUSE Linux Enterprise High Availability Extension","former_identifier":"sle-ha","release_type":null,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise High Availability Extension 15 s390x","friendly_version":"15","extensions":[],"release_stage":"released","identifier":"sle-ha","id":1605,"free":false,"shortname":"SLEHA15","description":"SUSE Linux High Availability Extension provides mature, industry-leading open-source high-availability clustering technologies that are easy to set up and use. It can be deployed in physical and/or virtual environments, and can cluster physical servers, virtual servers, or any combination of the two to suit your business’ needs.","eula_url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15/s390x/product.license/","arch":"s390x","predecessor_ids":[],"product_class":"SLE-HAE-Z","online_predecessor_ids":[],"repositories":[{"id":2759,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-HA/15/s390x/update/","autorefresh":true,"distro_target":"sle-15-s390x","name":"SLE-Product-HA15-Updates","installer_updates":false,"description":"SLE-Product-HA15-Updates for sle-15-s390x"},{"enabled":false,"id":2760,"autorefresh":true,"distro_target":"sle-15-s390x","url":"https://updates.suse.com/SUSE/Updates/SLE-Product-HA/15/s390x/update_debug/","name":"SLE-Product-HA15-Debuginfo-Updates","installer_updates":false,"description":"SLE-Product-HA15-Debuginfo-Updates for sle-15-s390x"},{"distro_target":"sle-15-s390x","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15/s390x/product/","enabled":true,"id":2761,"description":"SLE-Product-HA15-Pool for sle-15-s390x","installer_updates":false,"name":"SLE-Product-HA15-Pool"},{"autorefresh":false,"distro_target":"sle-15-s390x","url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15/s390x/product_debug/","enabled":false,"id":2762,"description":"SLE-Product-HA15-Debuginfo-Pool for sle-15-s390x","name":"SLE-Product-HA15-Debuginfo-Pool","installer_updates":false},{"description":"SLE-Product-HA15-Source-Pool for sle-15-s390x","name":"SLE-Product-HA15-Source-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-15-s390x","url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15/s390x/product_source/","enabled":false,"id":2763}],"product_type":"extension","cpe":"cpe:/o:suse:sle-ha:15"},{"extensions":[],"release_stage":"released","identifier":"sle-ha","id":1606,"friendly_version":"15","name":"SUSE Linux Enterprise High Availability Extension","offline_predecessor_ids":[1420,1433,1635,1882],"migration_extra":false,"friendly_name":"SUSE Linux Enterprise High Availability Extension 15 ppc64le","former_identifier":"sle-ha","release_type":null,"recommended":false,"version":"15","cpe":"cpe:/o:suse:sle-ha:15","product_type":"extension","predecessor_ids":[],"repositories":[{"installer_updates":false,"name":"SLE-Product-HA15-Updates","description":"SLE-Product-HA15-Updates for sle-15-ppc64le","enabled":true,"id":2764,"distro_target":"sle-15-ppc64le","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-HA/15/ppc64le/update/"},{"description":"SLE-Product-HA15-Debuginfo-Updates for sle-15-ppc64le","name":"SLE-Product-HA15-Debuginfo-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Updates/SLE-Product-HA/15/ppc64le/update_debug/","enabled":false,"id":2765},{"url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15/ppc64le/product/","distro_target":"sle-15-ppc64le","autorefresh":false,"id":2766,"enabled":true,"description":"SLE-Product-HA15-Pool for sle-15-ppc64le","installer_updates":false,"name":"SLE-Product-HA15-Pool"},{"enabled":false,"id":2767,"autorefresh":false,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15/ppc64le/product_debug/","name":"SLE-Product-HA15-Debuginfo-Pool","installer_updates":false,"description":"SLE-Product-HA15-Debuginfo-Pool for sle-15-ppc64le"},{"description":"SLE-Product-HA15-Source-Pool for sle-15-ppc64le","installer_updates":false,"name":"SLE-Product-HA15-Source-Pool","distro_target":"sle-15-ppc64le","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15/ppc64le/product_source/","enabled":false,"id":2768}],"online_predecessor_ids":[],"product_class":"SLE-HAE-PPC","eula_url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15/ppc64le/product.license/","arch":"ppc64le","description":"SUSE Linux High Availability Extension provides mature, industry-leading open-source high-availability clustering technologies that are easy to set up and use. It can be deployed in physical and/or virtual environments, and can cluster physical servers, virtual servers, or any combination of the two to suit your business’ needs.","shortname":"SLEHA15","free":false},{"extensions":[],"release_stage":"released","id":1607,"identifier":"CAASP","friendly_version":"2.0","name":"SUSE Container as a Service Platform","offline_predecessor_ids":[],"friendly_name":"SUSE Container as a Service Platform 2.0 x86_64","migration_extra":false,"release_type":null,"former_identifier":"CAASP","recommended":false,"version":"2.0","cpe":"cpe:/o:suse:caasp:2.0","product_type":"base","predecessor_ids":[1484],"repositories":[{"name":"SUSE-CAASP-ALL-Updates","installer_updates":false,"description":"SUSE-CAASP-ALL-Updates for sle-12-x86_64","id":2514,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SUSE-CAASP/ALL/x86_64/update/","autorefresh":true,"distro_target":"sle-12-x86_64"},{"autorefresh":true,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Updates/SUSE-CAASP/ALL/x86_64/update_debug/","enabled":false,"id":2515,"description":"SUSE-CAASP-ALL-Debuginfo-Updates for sle-12-x86_64","name":"SUSE-CAASP-ALL-Debuginfo-Updates","installer_updates":false},{"distro_target":"sle-12-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SUSE-CAASP/ALL/x86_64/product/","enabled":true,"id":2516,"description":"SUSE-CAASP-ALL-Pool for sle-12-x86_64","installer_updates":false,"name":"SUSE-CAASP-ALL-Pool"},{"description":"SUSE-CAASP-ALL-Debuginfo-Pool for sle-12-x86_64","name":"SUSE-CAASP-ALL-Debuginfo-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Products/SUSE-CAASP/ALL/x86_64/product_debug/","enabled":false,"id":2517},{"autorefresh":false,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Products/SUSE-CAASP/ALL/x86_64/product_source/","enabled":false,"id":2518,"description":"SUSE-CAASP-ALL-Source-Pool for sle-12-x86_64","name":"SUSE-CAASP-ALL-Source-Pool","installer_updates":false}],"online_predecessor_ids":[1484],"product_class":"CAASP_X86","eula_url":"https://updates.suse.com/SUSE/Products/SUSE-CAASP/ALL/x86_64/product.license/","arch":"x86_64","description":"SUSE Container as a Service Platform combines the benefits of an enterprise ready OS with the agility of a fast development containers orchestration platform. It is a modern Linux Operating System, designed for containers and optimized for large, clustered deployments. It inherits the benefits of SUSE Linux Enterprise Server while redefining the operating system into a small, efficient and reliable distribution.","shortname":"SUSE CaaS Platform 2.0","free":false},{"shortname":"SLEHA15","description":"SUSE Linux High Availability Extension provides mature, industry-leading open-source high-availability clustering technologies that are easy to set up and use. It can be deployed in physical and/or virtual environments, and can cluster physical servers, virtual servers, or any combination of the two to suit your business’ needs.","free":false,"eula_url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15/aarch64/product.license/","arch":"aarch64","predecessor_ids":[],"online_predecessor_ids":[],"product_class":"SLE-HAE-ARM64","repositories":[{"description":"SLE-Product-HA15-Updates for sle-15-aarch64","installer_updates":false,"name":"SLE-Product-HA15-Updates","distro_target":"sle-15-aarch64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-HA/15/aarch64/update/","enabled":true,"id":2849},{"id":2850,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-HA/15/aarch64/update_debug/","autorefresh":true,"distro_target":"sle-15-aarch64","name":"SLE-Product-HA15-Debuginfo-Updates","installer_updates":false,"description":"SLE-Product-HA15-Debuginfo-Updates for sle-15-aarch64"},{"enabled":true,"id":2851,"autorefresh":false,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15/aarch64/product/","name":"SLE-Product-HA15-Pool","installer_updates":false,"description":"SLE-Product-HA15-Pool for sle-15-aarch64"},{"description":"SLE-Product-HA15-Debuginfo-Pool for sle-15-aarch64","installer_updates":false,"name":"SLE-Product-HA15-Debuginfo-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15/aarch64/product_debug/","distro_target":"sle-15-aarch64","autorefresh":false,"id":2852,"enabled":false},{"name":"SLE-Product-HA15-Source-Pool","installer_updates":false,"description":"SLE-Product-HA15-Source-Pool for sle-15-aarch64","id":2853,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15/aarch64/product_source/","autorefresh":false,"distro_target":"sle-15-aarch64"}],"cpe":"cpe:/o:suse:sle-ha:15","product_type":"extension","recommended":false,"version":"15","name":"SUSE Linux Enterprise High Availability Extension","offline_predecessor_ids":[],"friendly_name":"SUSE Linux Enterprise High Availability Extension 15 aarch64","migration_extra":false,"former_identifier":"sle-ha","release_type":null,"friendly_version":"15","extensions":[],"release_stage":"released","id":1608,"identifier":"sle-ha"},{"online_predecessor_ids":[],"repositories":[{"description":"SLE-15-GA-Desktop-NVIDIA-Driver","name":"SLE-15-GA-Desktop-NVIDIA-Driver","installer_updates":false,"autorefresh":true,"distro_target":null,"url":"https://download.nvidia.com/suse/sle15/","enabled":true,"id":2747},{"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-SLED/15/x86_64/update/","distro_target":"sle-15-x86_64","autorefresh":true,"id":2748,"enabled":true,"description":"SLE-Product-SLED15-Updates for sle-15-x86_64","installer_updates":false,"name":"SLE-Product-SLED15-Updates"},{"id":2749,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-SLED/15/x86_64/product/","autorefresh":false,"distro_target":"sle-15-x86_64","name":"SLE-Product-SLED15-Pool","installer_updates":false,"description":"SLE-Product-SLED15-Pool for sle-15-x86_64"},{"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-SLED/15/x86_64/update_debug/","distro_target":"sle-15-x86_64","autorefresh":true,"id":3102,"enabled":false,"description":"SLE-Product-SLED15-Debuginfo-Updates for sle-15-x86_64","installer_updates":false,"name":"SLE-Product-SLED15-Debuginfo-Updates"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Product-SLED/15/x86_64/product_debug/","distro_target":"sle-15-x86_64","autorefresh":false,"id":3103,"enabled":false,"description":"SLE-Product-SLED15-Debuginfo-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Product-SLED15-Debuginfo-Pool"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Product-SLED/15/x86_64/product_source/","autorefresh":false,"distro_target":"sle-15-x86_64","id":3104,"enabled":false,"description":"SLE-Product-SLED15-Source-Pool for sle-15-x86_64","name":"SLE-Product-SLED15-Source-Pool","installer_updates":false}],"product_class":"7260","predecessor_ids":[],"cpe":"cpe:/o:suse:sled:15","product_type":"base","description":"SUSE Linux Enterprise offers a comprehensive suite of products built on a single code base. The platform addresses business needs from the smallest thin-client devices to the world's most powerful high-performance computing and mainframe servers. SUSE Linux Enterprise offers common management tools and technology certifications across the platform, and each product is enterprise-class. SUSE Linux Enterprise provides more than a cute desktop product or a basic server offering. It is the only Linux platform for enterprise computing, and it is now replacing UNIX* and Windows* as well.","shortname":"SLED15","free":false,"arch":"x86_64","eula_url":"https://updates.suse.com/SUSE/Products/SLE-Product-SLED/15/x86_64/product.license/","friendly_version":"15","identifier":"SLED","release_stage":"released","id":1609,"extensions":[{"cpe":"cpe:/o:suse:sle-module-basesystem:15","product_type":"module","repositories":[{"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15/x86_64/update/","enabled":true,"id":2524,"description":"SLE-Module-Basesystem15-Updates for sle-15-x86_64","name":"SLE-Module-Basesystem15-Updates","installer_updates":false},{"id":2525,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15/x86_64/update_debug/","distro_target":"sle-15-x86_64","autorefresh":true,"installer_updates":false,"name":"SLE-Module-Basesystem15-Debuginfo-Updates","description":"SLE-Module-Basesystem15-Debuginfo-Updates for sle-15-x86_64"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15/x86_64/product/","distro_target":"sle-15-x86_64","autorefresh":false,"id":2526,"enabled":true,"description":"SLE-Module-Basesystem15-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Basesystem15-Pool"},{"installer_updates":false,"name":"SLE-Module-Basesystem15-Debuginfo-Pool","description":"SLE-Module-Basesystem15-Debuginfo-Pool for sle-15-x86_64","id":2527,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15/x86_64/product_debug/","distro_target":"sle-15-x86_64","autorefresh":false},{"installer_updates":false,"name":"SLE-Module-Basesystem15-Source-Pool","description":"SLE-Module-Basesystem15-Source-Pool for sle-15-x86_64","enabled":false,"id":2528,"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15/x86_64/product_source/"}],"online_predecessor_ids":[],"product_class":"MODULE","predecessor_ids":[],"arch":"x86_64","eula_url":"","description":"

The SUSE Linux Enterprise Basesystem Module delivers the base system of the product.

","shortname":"Basesystem-Module","free":true,"release_stage":"released","identifier":"sle-module-basesystem","id":1576,"extensions":[{"extensions":[{"free":true,"description":"

The Development Tools Module helps you developing applications for SUSE Linux Enterprise 15.

Access to the Development Tools Module is included in your SUSE Linux Enterprise product subscription. The module has a different lifecycle than SUSE Linux Enterprise itself.

","shortname":"Development-Tools-Module","eula_url":"","arch":"x86_64","predecessor_ids":[],"online_predecessor_ids":[],"repositories":[{"installer_updates":false,"name":"SLE-Module-DevTools15-Updates","description":"SLE-Module-DevTools15-Updates for sle-15-x86_64","enabled":true,"id":2539,"distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15/x86_64/update/"},{"name":"SLE-Module-DevTools15-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-DevTools15-Debuginfo-Updates for sle-15-x86_64","enabled":false,"id":2540,"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15/x86_64/update_debug/"},{"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15/x86_64/product/","enabled":true,"id":2541,"description":"SLE-Module-DevTools15-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-DevTools15-Pool"},{"description":"SLE-Module-DevTools15-Debuginfo-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-DevTools15-Debuginfo-Pool","distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15/x86_64/product_debug/","enabled":false,"id":2542},{"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15/x86_64/product_source/","enabled":false,"id":2543,"description":"SLE-Module-DevTools15-Source-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-DevTools15-Source-Pool"}],"product_class":"MODULE","product_type":"module","cpe":"cpe:/o:suse:sle-module-development-tools:15","recommended":false,"version":"15","offline_predecessor_ids":[1223,1323,1341,1366,1427,1630,1892],"name":"Development Tools Module","former_identifier":"sle-sdk","release_type":null,"friendly_name":"Development Tools Module 15 x86_64","migration_extra":true,"friendly_version":"15","extensions":[],"release_stage":"released","id":1579,"identifier":"sle-module-development-tools"},{"name":"SUSE Linux Enterprise Workstation Extension","offline_predecessor_ids":[1222,1338,1359,1431,1639,1893],"friendly_name":"SUSE Linux Enterprise Workstation Extension 15 x86_64","migration_extra":false,"release_type":null,"former_identifier":"sle-we","recommended":true,"version":"15","extensions":[],"release_stage":"released","identifier":"sle-we","id":1583,"friendly_version":"15","eula_url":"https://updates.suse.com/SUSE/Products/SLE-Product-WE/15/x86_64/product.license/","arch":"x86_64","shortname":"SLEWE15","description":"SUSE Linux Enterprise Workstation Extension adds additional functionality to a base SUSE Linux Enterprise installation. The Workstation Extension offers additional desktop applications (office suite, email client, graphical editor, multimedia tools) and libraries. Workstation Extension is enabled and installed by default on SUSE Linux Enterprise Desktop installation. Adding the Workstation Extension to a SUSE Linux Enterprise Server installation allows to seamlessly combine both products to create a full featured server workstation.","free":false,"cpe":"cpe:/o:suse:sle-we:15","product_type":"extension","predecessor_ids":[],"online_predecessor_ids":[],"product_class":"SLE-WE","repositories":[{"description":"SLE-Product-WE15-Updates for sle-15-x86_64","name":"SLE-Product-WE15-Updates","installer_updates":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-WE/15/x86_64/update/","autorefresh":true,"distro_target":"sle-15-x86_64","id":2742,"enabled":true},{"installer_updates":false,"name":"SLE-Product-WE15-Debuginfo-Updates","description":"SLE-Product-WE15-Debuginfo-Updates for sle-15-x86_64","id":2743,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-WE/15/x86_64/update_debug/","distro_target":"sle-15-x86_64","autorefresh":true},{"name":"SLE-Product-WE15-Pool","installer_updates":false,"description":"SLE-Product-WE15-Pool for sle-15-x86_64","enabled":true,"id":2744,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Product-WE/15/x86_64/product/"},{"id":2745,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-WE/15/x86_64/product_debug/","autorefresh":false,"distro_target":"sle-15-x86_64","name":"SLE-Product-WE15-Debuginfo-Pool","installer_updates":false,"description":"SLE-Product-WE15-Debuginfo-Pool for sle-15-x86_64"},{"enabled":false,"id":2746,"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-WE/15/x86_64/product_source/","installer_updates":false,"name":"SLE-Product-WE15-Source-Pool","description":"SLE-Product-WE15-Source-Pool for sle-15-x86_64"},{"autorefresh":true,"distro_target":null,"url":"https://download.nvidia.com/suse/sle15/","enabled":true,"id":2747,"description":"SLE-15-GA-Desktop-NVIDIA-Driver","name":"SLE-15-GA-Desktop-NVIDIA-Driver","installer_updates":false}]}],"id":1578,"release_stage":"released","identifier":"sle-module-desktop-applications","friendly_version":"15","offline_predecessor_ids":[],"name":"Desktop Applications Module","release_type":null,"former_identifier":"sle-module-desktop-applications","migration_extra":false,"friendly_name":"Desktop Applications Module 15 x86_64","recommended":true,"version":"15","product_type":"module","cpe":"cpe:/o:suse:sle-module-desktop-applications:15","predecessor_ids":[],"product_class":"MODULE","online_predecessor_ids":[],"repositories":[{"name":"SLE-Module-Desktop-Applications15-Updates","installer_updates":false,"description":"SLE-Module-Desktop-Applications15-Updates for sle-15-x86_64","id":2534,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15/x86_64/update/","autorefresh":true,"distro_target":"sle-15-x86_64"},{"enabled":false,"id":2535,"distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15/x86_64/update_debug/","installer_updates":false,"name":"SLE-Module-Desktop-Applications15-Debuginfo-Updates","description":"SLE-Module-Desktop-Applications15-Debuginfo-Updates for sle-15-x86_64"},{"id":2536,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15/x86_64/product/","distro_target":"sle-15-x86_64","autorefresh":false,"installer_updates":false,"name":"SLE-Module-Desktop-Applications15-Pool","description":"SLE-Module-Desktop-Applications15-Pool for sle-15-x86_64"},{"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15/x86_64/product_debug/","enabled":false,"id":2537,"description":"SLE-Module-Desktop-Applications15-Debuginfo-Pool for sle-15-x86_64","name":"SLE-Module-Desktop-Applications15-Debuginfo-Pool","installer_updates":false},{"id":2538,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15/x86_64/product_source/","distro_target":"sle-15-x86_64","autorefresh":false,"installer_updates":false,"name":"SLE-Module-Desktop-Applications15-Source-Pool","description":"SLE-Module-Desktop-Applications15-Source-Pool for sle-15-x86_64"}],"eula_url":"","arch":"x86_64","free":true,"shortname":"Desktop-Applications-Module","description":"

The SUSE Linux Enterprise Desktop Applications Module delivers a basic set of Desktop functionality.

Access to the Desktop Applications Module is included in your SUSE Linux Enterprise product subscription.

"},{"description":"

The SUSE Cloud Application Platform Tools Module is a collection of tools that enables you to interact with the SUSE Cloud Application Platform product itself, providing the commandline client for instance.

Access to the SUSE Cloud Application Platform Tools Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself; please check the Release Notes for further details.

","shortname":"SUSE-CAP-Tools-Module","free":true,"eula_url":"","arch":"x86_64","predecessor_ids":[],"online_predecessor_ids":[],"product_class":"MODULE","repositories":[{"name":"SLE-Module-CAP-Tools15-Updates","installer_updates":false,"description":"SLE-Module-CAP-Tools15-Updates for sle-15-x86_64","id":3000,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-CAP-Tools/15/x86_64/update/","autorefresh":true,"distro_target":"sle-15-x86_64"},{"description":"SLE-Module-CAP-Tools15-Debuginfo-Updates for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-CAP-Tools15-Debuginfo-Updates","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-CAP-Tools/15/x86_64/update_debug/","distro_target":"sle-15-x86_64","autorefresh":true,"id":3001,"enabled":false},{"id":3002,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-CAP-Tools/15/x86_64/product/","autorefresh":false,"distro_target":"sle-15-x86_64","name":"SLE-Module-CAP-Tools15-Pool","installer_updates":false,"description":"SLE-Module-CAP-Tools15-Pool for sle-15-x86_64"},{"installer_updates":false,"name":"SLE-Module-CAP-Tools15-Debuginfo-Pool","description":"SLE-Module-CAP-Tools15-Debuginfo-Pool for sle-15-x86_64","id":3003,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-CAP-Tools/15/x86_64/product_debug/","distro_target":"sle-15-x86_64","autorefresh":false},{"installer_updates":false,"name":"SLE-Module-CAP-Tools15-Source-Pool","description":"SLE-Module-CAP-Tools15-Source-Pool for sle-15-x86_64","enabled":false,"id":3123,"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-CAP-Tools/15/x86_64/product_source/"}],"cpe":"cpe:/o:suse:sle-module-cap-tools:15","product_type":"module","recommended":false,"version":"15","name":"SUSE Cloud Application Platform Tools Module","offline_predecessor_ids":[1678],"migration_extra":true,"friendly_name":"SUSE Cloud Application Platform Tools Module 15 x86_64","former_identifier":"sle-module-cap-tools","release_type":null,"friendly_version":"15","extensions":[],"id":1728,"release_stage":"released","identifier":"sle-module-cap-tools"},{"predecessor_ids":[],"product_class":"MODULE","online_predecessor_ids":[],"repositories":[{"description":"SUSE-PackageHub-15-Standard-Pool for sle-15-x86_64","installer_updates":false,"name":"SUSE-PackageHub-15-Standard-Pool","url":"https://updates.suse.com/SUSE/Backports/SLE-15_x86_64/standard/","distro_target":"sle-15-x86_64","autorefresh":false,"id":3059,"enabled":true},{"installer_updates":false,"name":"SUSE-PackageHub-15-Debuginfo","description":"SUSE-PackageHub-15-Debuginfo for sle-15-x86_64","id":3060,"enabled":false,"url":"https://updates.suse.com/SUSE/Backports/SLE-15_x86_64/standard_debug/","distro_target":"sle-15-x86_64","autorefresh":true},{"installer_updates":false,"name":"SUSE-PackageHub-15-Pool","description":"SUSE-PackageHub-15-Pool for sle-15-x86_64","id":3061,"enabled":true,"url":"https://updates.suse.com/SUSE/Backports/SLE-15_x86_64/product/","distro_target":"sle-15-x86_64","autorefresh":false},{"description":"SLE-Module-Packagehub-Subpackages15-Updates for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Packagehub-Subpackages15-Updates","distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15/x86_64/update/","enabled":true,"id":3182},{"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15/x86_64/update_debug/","enabled":false,"id":3183,"description":"SLE-Module-Packagehub-Subpackages15-Debuginfo-Updates for sle-15-x86_64","name":"SLE-Module-Packagehub-Subpackages15-Debuginfo-Updates","installer_updates":false},{"description":"SLE-Module-Packagehub-Subpackages15-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Packagehub-Subpackages15-Pool","distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15/x86_64/product/","enabled":true,"id":3184},{"enabled":false,"id":3185,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15/x86_64/product_debug/","name":"SLE-Module-Packagehub-Subpackages15-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-Packagehub-Subpackages15-Debuginfo-Pool for sle-15-x86_64"},{"enabled":false,"id":3186,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15/x86_64/product_source/","name":"SLE-Module-Packagehub-Subpackages15-Source-Pool","installer_updates":false,"description":"SLE-Module-Packagehub-Subpackages15-Source-Pool for sle-15-x86_64"}],"cpe":"cpe:/o:suse:packagehub:15","product_type":"extension","description":"SUSE Package Hub is a free of charge extension providing access to community maintained packages built to run on SUSE Linux Enterprise Server. Built from the same sources used in the openSUSE distributions, these quality packages provide additional software to what is found in the SUSE Linux Enterprise Server product. Packages from the Package Hub are delivered without L3 support from SUSE. General updates and fixes to the packages in SUSE Package Hub are provided by the openSUSE community based on their discretion though SUSE will monitor and ensure that any known critical security issues will be addressed. Packages in the Package Hub are approved by SUSE for use with SUSE Linux Enterprise Server 15 and to not interfere with the supportability of SUSE Linux Enterprise Server it's modules and extensions. For more information about SUSE Package Hub please visit https://packagehub.suse.com.","shortname":"SUSE-PackageHub-15","free":true,"eula_url":"","arch":"x86_64","friendly_version":"15","extensions":[],"identifier":"PackageHub","release_stage":"released","id":1743,"recommended":false,"version":"15","name":"SUSE Package Hub","offline_predecessor_ids":[1529,1813,1915],"migration_extra":false,"friendly_name":"SUSE Package Hub 15 x86_64","release_type":null,"former_identifier":"PackageHub"}],"friendly_version":"15","migration_extra":false,"friendly_name":"Basesystem Module 15 x86_64","release_type":null,"former_identifier":"sle-module-basesystem","name":"Basesystem Module","offline_predecessor_ids":[1212,1368,1440,1618],"version":"15","recommended":true}],"version":"15","recommended":false,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Desktop 15 x86_64","release_type":null,"former_identifier":"SLED","name":"SUSE Linux Enterprise Desktop","offline_predecessor_ids":[887,901,902,924,1313,1425,1629]},{"recommended":false,"version":"15","name":"Public Cloud Module","offline_predecessor_ids":[1220],"friendly_name":"Public Cloud Module 15 x86_64","migration_extra":false,"release_type":null,"former_identifier":"sle-module-public-cloud","friendly_version":"15","extensions":[],"id":1611,"release_stage":"released","identifier":"sle-module-public-cloud","shortname":"Public-Cloud-Module","description":"

The Public Cloud Module is a collection of tools that enables you to create and manage cloud images from the commandline on SUSE Linux Enterprise Server. When building your own images with KIWI or SUSE Studio, initialization code specific to the target cloud is included in that image.

Access to the Public Cloud Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself; please check the Release Notes for further details.

","free":true,"eula_url":"","arch":"x86_64","predecessor_ids":[],"product_class":"MODULE","online_predecessor_ids":[],"repositories":[{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/15/x86_64/update/","autorefresh":true,"distro_target":"sle-15-x86_64","id":2673,"enabled":true,"description":"SLE-Module-Public-Cloud15-Updates for sle-15-x86_64","name":"SLE-Module-Public-Cloud15-Updates","installer_updates":false},{"enabled":false,"id":2674,"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/15/x86_64/update_debug/","name":"SLE-Module-Public-Cloud15-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-Public-Cloud15-Debuginfo-Updates for sle-15-x86_64"},{"name":"SLE-Module-Public-Cloud15-Pool","installer_updates":false,"description":"SLE-Module-Public-Cloud15-Pool for sle-15-x86_64","id":2675,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15/x86_64/product/","autorefresh":false,"distro_target":"sle-15-x86_64"},{"enabled":false,"id":2676,"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15/x86_64/product_debug/","installer_updates":false,"name":"SLE-Module-Public-Cloud15-Debuginfo-Pool","description":"SLE-Module-Public-Cloud15-Debuginfo-Pool for sle-15-x86_64"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15/x86_64/product_source/","autorefresh":false,"distro_target":"sle-15-x86_64","id":3129,"enabled":false,"description":"SLE-Module-Public-Cloud15-Source-Pool for sle-15-x86_64","name":"SLE-Module-Public-Cloud15-Source-Pool","installer_updates":false}],"cpe":"cpe:/o:suse:sle-module-public-cloud:15","product_type":"module"},{"friendly_version":"15","id":1612,"release_stage":"released","identifier":"SLES_SAP","extensions":[{"name":"Basesystem Module","offline_predecessor_ids":[1212,1368,1440,1618],"friendly_name":"Basesystem Module 15 x86_64","migration_extra":false,"release_type":null,"former_identifier":"sle-module-basesystem","recommended":true,"version":"15","extensions":[{"release_stage":"released","identifier":"sle-module-desktop-applications","id":1578,"extensions":[{"identifier":"sle-module-development-tools","release_stage":"released","id":1579,"extensions":[],"friendly_version":"15","migration_extra":true,"friendly_name":"Development Tools Module 15 x86_64","release_type":null,"former_identifier":"sle-sdk","name":"Development Tools Module","offline_predecessor_ids":[1223,1323,1341,1366,1427,1630,1892],"version":"15","recommended":false,"cpe":"cpe:/o:suse:sle-module-development-tools:15","product_type":"module","repositories":[{"name":"SLE-Module-DevTools15-Updates","installer_updates":false,"description":"SLE-Module-DevTools15-Updates for sle-15-x86_64","enabled":true,"id":2539,"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15/x86_64/update/"},{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15/x86_64/update_debug/","distro_target":"sle-15-x86_64","autorefresh":true,"id":2540,"enabled":false,"description":"SLE-Module-DevTools15-Debuginfo-Updates for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-DevTools15-Debuginfo-Updates"},{"installer_updates":false,"name":"SLE-Module-DevTools15-Pool","description":"SLE-Module-DevTools15-Pool for sle-15-x86_64","enabled":true,"id":2541,"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15/x86_64/product/"},{"description":"SLE-Module-DevTools15-Debuginfo-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-DevTools15-Debuginfo-Pool","distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15/x86_64/product_debug/","enabled":false,"id":2542},{"description":"SLE-Module-DevTools15-Source-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-DevTools15-Source-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15/x86_64/product_source/","distro_target":"sle-15-x86_64","autorefresh":false,"id":2543,"enabled":false}],"online_predecessor_ids":[],"product_class":"MODULE","predecessor_ids":[],"arch":"x86_64","eula_url":"","description":"

The Development Tools Module helps you developing applications for SUSE Linux Enterprise 15.

Access to the Development Tools Module is included in your SUSE Linux Enterprise product subscription. The module has a different lifecycle than SUSE Linux Enterprise itself.

","shortname":"Development-Tools-Module","free":true},{"extensions":[],"identifier":"sle-we","release_stage":"released","id":1583,"friendly_version":"15","offline_predecessor_ids":[1222,1338,1359,1431,1639,1893],"name":"SUSE Linux Enterprise Workstation Extension","former_identifier":"sle-we","release_type":null,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Workstation Extension 15 x86_64","recommended":false,"version":"15","product_type":"extension","cpe":"cpe:/o:suse:sle-we:15","predecessor_ids":[],"repositories":[{"installer_updates":false,"name":"SLE-Product-WE15-Updates","description":"SLE-Product-WE15-Updates for sle-15-x86_64","id":2742,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-WE/15/x86_64/update/","distro_target":"sle-15-x86_64","autorefresh":true},{"name":"SLE-Product-WE15-Debuginfo-Updates","installer_updates":false,"description":"SLE-Product-WE15-Debuginfo-Updates for sle-15-x86_64","id":2743,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-WE/15/x86_64/update_debug/","autorefresh":true,"distro_target":"sle-15-x86_64"},{"id":2744,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-WE/15/x86_64/product/","distro_target":"sle-15-x86_64","autorefresh":false,"installer_updates":false,"name":"SLE-Product-WE15-Pool","description":"SLE-Product-WE15-Pool for sle-15-x86_64"},{"installer_updates":false,"name":"SLE-Product-WE15-Debuginfo-Pool","description":"SLE-Product-WE15-Debuginfo-Pool for sle-15-x86_64","enabled":false,"id":2745,"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-WE/15/x86_64/product_debug/"},{"description":"SLE-Product-WE15-Source-Pool for sle-15-x86_64","name":"SLE-Product-WE15-Source-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Product-WE/15/x86_64/product_source/","enabled":false,"id":2746},{"id":2747,"enabled":true,"url":"https://download.nvidia.com/suse/sle15/","distro_target":null,"autorefresh":true,"installer_updates":false,"name":"SLE-15-GA-Desktop-NVIDIA-Driver","description":"SLE-15-GA-Desktop-NVIDIA-Driver"}],"online_predecessor_ids":[],"product_class":"SLE-WE","eula_url":"https://updates.suse.com/SUSE/Products/SLE-Product-WE/15/x86_64/product.license/","arch":"x86_64","free":false,"shortname":"SLEWE15","description":"SUSE Linux Enterprise Workstation Extension adds additional functionality to a base SUSE Linux Enterprise installation. The Workstation Extension offers additional desktop applications (office suite, email client, graphical editor, multimedia tools) and libraries. Workstation Extension is enabled and installed by default on SUSE Linux Enterprise Desktop installation. Adding the Workstation Extension to a SUSE Linux Enterprise Server installation allows to seamlessly combine both products to create a full featured server workstation."}],"friendly_version":"15","migration_extra":false,"friendly_name":"Desktop Applications Module 15 x86_64","release_type":null,"former_identifier":"sle-module-desktop-applications","name":"Desktop Applications Module","offline_predecessor_ids":[],"version":"15","recommended":true,"cpe":"cpe:/o:suse:sle-module-desktop-applications:15","product_type":"module","product_class":"MODULE","online_predecessor_ids":[],"repositories":[{"id":2534,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15/x86_64/update/","autorefresh":true,"distro_target":"sle-15-x86_64","name":"SLE-Module-Desktop-Applications15-Updates","installer_updates":false,"description":"SLE-Module-Desktop-Applications15-Updates for sle-15-x86_64"},{"installer_updates":false,"name":"SLE-Module-Desktop-Applications15-Debuginfo-Updates","description":"SLE-Module-Desktop-Applications15-Debuginfo-Updates for sle-15-x86_64","id":2535,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15/x86_64/update_debug/","distro_target":"sle-15-x86_64","autorefresh":true},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15/x86_64/product/","autorefresh":false,"distro_target":"sle-15-x86_64","id":2536,"enabled":true,"description":"SLE-Module-Desktop-Applications15-Pool for sle-15-x86_64","name":"SLE-Module-Desktop-Applications15-Pool","installer_updates":false},{"description":"SLE-Module-Desktop-Applications15-Debuginfo-Pool for sle-15-x86_64","name":"SLE-Module-Desktop-Applications15-Debuginfo-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15/x86_64/product_debug/","autorefresh":false,"distro_target":"sle-15-x86_64","id":2537,"enabled":false},{"installer_updates":false,"name":"SLE-Module-Desktop-Applications15-Source-Pool","description":"SLE-Module-Desktop-Applications15-Source-Pool for sle-15-x86_64","enabled":false,"id":2538,"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15/x86_64/product_source/"}],"predecessor_ids":[],"arch":"x86_64","eula_url":"","description":"

The SUSE Linux Enterprise Desktop Applications Module delivers a basic set of Desktop functionality.

Access to the Desktop Applications Module is included in your SUSE Linux Enterprise product subscription.

","shortname":"Desktop-Applications-Module","free":true},{"arch":"x86_64","eula_url":"","free":true,"description":"

The SUSE Linux Enterprise Server Applications Module delivers a basic set of Server functionality.

Access to the Server Applications Module is included in your SUSE Linux Enterprise Server subscription.

","shortname":"Server-Applications-Module","product_type":"module","cpe":"cpe:/o:suse:sle-module-server-applications:15","online_predecessor_ids":[],"product_class":"MODULE","repositories":[{"id":2544,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15/x86_64/update/","autorefresh":true,"distro_target":"sle-15-x86_64","name":"SLE-Module-Server-Applications15-Updates","installer_updates":false,"description":"SLE-Module-Server-Applications15-Updates for sle-15-x86_64"},{"installer_updates":false,"name":"SLE-Module-Server-Applications15-Debuginfo-Updates","description":"SLE-Module-Server-Applications15-Debuginfo-Updates for sle-15-x86_64","enabled":false,"id":2545,"distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15/x86_64/update_debug/"},{"installer_updates":false,"name":"SLE-Module-Server-Applications15-Pool","description":"SLE-Module-Server-Applications15-Pool for sle-15-x86_64","enabled":true,"id":2546,"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15/x86_64/product/"},{"id":2547,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15/x86_64/product_debug/","autorefresh":false,"distro_target":"sle-15-x86_64","name":"SLE-Module-Server-Applications15-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-Server-Applications15-Debuginfo-Pool for sle-15-x86_64"},{"installer_updates":false,"name":"SLE-Module-Server-Applications15-Source-Pool","description":"SLE-Module-Server-Applications15-Source-Pool for sle-15-x86_64","id":2548,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15/x86_64/product_source/","distro_target":"sle-15-x86_64","autorefresh":false}],"predecessor_ids":[],"former_identifier":"sle-module-server-applications","release_type":null,"migration_extra":false,"friendly_name":"Server Applications Module 15 x86_64","offline_predecessor_ids":[],"name":"Server Applications Module","version":"15","recommended":true,"release_stage":"released","id":1580,"identifier":"sle-module-server-applications","extensions":[{"repositories":[{"name":"SLE-Module-Legacy15-Updates","installer_updates":false,"description":"SLE-Module-Legacy15-Updates for sle-15-x86_64","enabled":true,"id":2549,"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/15/x86_64/update/"},{"description":"SLE-Module-Legacy15-Debuginfo-Updates for sle-15-x86_64","name":"SLE-Module-Legacy15-Debuginfo-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/15/x86_64/update_debug/","enabled":false,"id":2550},{"name":"SLE-Module-Legacy15-Pool","installer_updates":false,"description":"SLE-Module-Legacy15-Pool for sle-15-x86_64","id":2551,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15/x86_64/product/","autorefresh":false,"distro_target":"sle-15-x86_64"},{"enabled":false,"id":2552,"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15/x86_64/product_debug/","installer_updates":false,"name":"SLE-Module-Legacy15-Debuginfo-Pool","description":"SLE-Module-Legacy15-Debuginfo-Pool for sle-15-x86_64"},{"name":"SLE-Module-Legacy15-Source-Pool","installer_updates":false,"description":"SLE-Module-Legacy15-Source-Pool for sle-15-x86_64","enabled":false,"id":2553,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15/x86_64/product_source/"}],"online_predecessor_ids":[],"product_class":"MODULE","predecessor_ids":[],"cpe":"cpe:/o:suse:sle-module-legacy:15","product_type":"module","description":"

The Legacy Module helps you migrating applications from SUSE Linux Enterprise 12 and other systems to SUSE Linux Enterprise 15, by providing packages which are discontinued on SUSE Linux Enterprise Server, such as: ntp, IBM Java 8, and a number of libraries.

Access to the Legacy Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself. Packages in the this module are usually supported for at most three years.

","shortname":"Legacy-Module","free":true,"arch":"x86_64","eula_url":"","friendly_version":"15","id":1581,"release_stage":"released","identifier":"sle-module-legacy","extensions":[],"version":"15","recommended":false,"migration_extra":true,"friendly_name":"Legacy Module 15 x86_64","former_identifier":"sle-module-legacy","release_type":null,"name":"Legacy Module","offline_predecessor_ids":[1150]},{"id":1582,"release_stage":"released","identifier":"sle-ha","extensions":[{"description":"

The SAP Applications module contains the specialized tools for SAP Applications administration.

The module is maintained and supported by the SUSE Linux Enterprise Server for SAP Applications product subscription.

","shortname":"SAP-Applications-Module","free":true,"arch":"x86_64","eula_url":"","online_predecessor_ids":[],"product_class":"MODULE","repositories":[{"enabled":true,"id":2677,"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-SAP-Applications/15/x86_64/update/","name":"SLE-Module-SAP-Applications15-Updates","installer_updates":false,"description":"SLE-Module-SAP-Applications15-Updates for sle-15-x86_64"},{"description":"SLE-Module-SAP-Applications15-Debuginfo-Updates for sle-15-x86_64","name":"SLE-Module-SAP-Applications15-Debuginfo-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-SAP-Applications/15/x86_64/update_debug/","enabled":false,"id":2678},{"name":"SLE-Module-SAP-Applications15-Pool","installer_updates":false,"description":"SLE-Module-SAP-Applications15-Pool for sle-15-x86_64","id":2679,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-SAP-Applications/15/x86_64/product/","autorefresh":false,"distro_target":"sle-15-x86_64"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-SAP-Applications/15/x86_64/product_debug/","distro_target":"sle-15-x86_64","autorefresh":false,"id":2680,"enabled":false,"description":"SLE-Module-SAP-Applications15-Debuginfo-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-SAP-Applications15-Debuginfo-Pool"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-SAP-Applications/15/x86_64/product_source/","autorefresh":false,"distro_target":"sle-15-x86_64","id":2681,"enabled":false,"description":"SLE-Module-SAP-Applications15-Source-Pool for sle-15-x86_64","name":"SLE-Module-SAP-Applications15-Source-Pool","installer_updates":false}],"predecessor_ids":[],"cpe":"cpe:/o:suse:sle-module-sap-applications:15","product_type":"module","version":"15","recommended":true,"migration_extra":false,"friendly_name":"SAP Applications Module 15 x86_64","former_identifier":"sle-module-sap-applications","release_type":null,"name":"SAP Applications Module","offline_predecessor_ids":[],"friendly_version":"15","release_stage":"released","identifier":"sle-module-sap-applications","id":1727,"extensions":[]}],"friendly_version":"15","migration_extra":false,"friendly_name":"SUSE Linux Enterprise High Availability Extension 15 x86_64","former_identifier":"sle-ha","release_type":null,"name":"SUSE Linux Enterprise High Availability Extension","offline_predecessor_ids":[958,961,967,971,1101,1107,1157,1245,1256,1286,1324,1337,1361,1363,1432,1435,1634,1637,1884,1886],"version":"15","recommended":true,"cpe":"cpe:/o:suse:sle-ha:15","product_type":"extension","product_class":"SLE-HAE-X86","online_predecessor_ids":[],"repositories":[{"id":2754,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-HA/15/x86_64/update/","autorefresh":true,"distro_target":"sle-15-x86_64","name":"SLE-Product-HA15-Updates","installer_updates":false,"description":"SLE-Product-HA15-Updates for sle-15-x86_64"},{"description":"SLE-Product-HA15-Debuginfo-Updates for sle-15-x86_64","name":"SLE-Product-HA15-Debuginfo-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Product-HA/15/x86_64/update_debug/","enabled":false,"id":2755},{"description":"SLE-Product-HA15-Pool for sle-15-x86_64","name":"SLE-Product-HA15-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15/x86_64/product/","enabled":true,"id":2756},{"enabled":false,"id":2757,"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15/x86_64/product_debug/","installer_updates":false,"name":"SLE-Product-HA15-Debuginfo-Pool","description":"SLE-Product-HA15-Debuginfo-Pool for sle-15-x86_64"},{"name":"SLE-Product-HA15-Source-Pool","installer_updates":false,"description":"SLE-Product-HA15-Source-Pool for sle-15-x86_64","id":2758,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15/x86_64/product_source/","autorefresh":false,"distro_target":"sle-15-x86_64"}],"predecessor_ids":[],"arch":"x86_64","eula_url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15/x86_64/product.license/","shortname":"SLEHA15","description":"SUSE Linux High Availability Extension provides mature, industry-leading open-source high-availability clustering technologies that are easy to set up and use. It can be deployed in physical and/or virtual environments, and can cluster physical servers, virtual servers, or any combination of the two to suit your business’ needs.","free":false},{"version":"15","recommended":false,"former_identifier":"sle-module-public-cloud","release_type":null,"migration_extra":true,"friendly_name":"Public Cloud Module 15 x86_64","offline_predecessor_ids":[1220],"name":"Public Cloud Module","friendly_version":"15","id":1611,"release_stage":"released","identifier":"sle-module-public-cloud","extensions":[],"free":true,"shortname":"Public-Cloud-Module","description":"

The Public Cloud Module is a collection of tools that enables you to create and manage cloud images from the commandline on SUSE Linux Enterprise Server. When building your own images with KIWI or SUSE Studio, initialization code specific to the target cloud is included in that image.

Access to the Public Cloud Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself; please check the Release Notes for further details.

","arch":"x86_64","eula_url":"","repositories":[{"id":2673,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/15/x86_64/update/","autorefresh":true,"distro_target":"sle-15-x86_64","name":"SLE-Module-Public-Cloud15-Updates","installer_updates":false,"description":"SLE-Module-Public-Cloud15-Updates for sle-15-x86_64"},{"name":"SLE-Module-Public-Cloud15-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-Public-Cloud15-Debuginfo-Updates for sle-15-x86_64","id":2674,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/15/x86_64/update_debug/","autorefresh":true,"distro_target":"sle-15-x86_64"},{"description":"SLE-Module-Public-Cloud15-Pool for sle-15-x86_64","name":"SLE-Module-Public-Cloud15-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15/x86_64/product/","enabled":true,"id":2675},{"description":"SLE-Module-Public-Cloud15-Debuginfo-Pool for sle-15-x86_64","name":"SLE-Module-Public-Cloud15-Debuginfo-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15/x86_64/product_debug/","enabled":false,"id":2676},{"id":3129,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15/x86_64/product_source/","distro_target":"sle-15-x86_64","autorefresh":false,"installer_updates":false,"name":"SLE-Module-Public-Cloud15-Source-Pool","description":"SLE-Module-Public-Cloud15-Source-Pool for sle-15-x86_64"}],"online_predecessor_ids":[],"product_class":"MODULE","predecessor_ids":[],"product_type":"module","cpe":"cpe:/o:suse:sle-module-public-cloud:15"},{"recommended":false,"version":"15","name":"Web and Scripting Module","offline_predecessor_ids":[1153],"friendly_name":"Web and Scripting Module 15 x86_64","migration_extra":true,"release_type":null,"former_identifier":"sle-module-web-scripting","friendly_version":"15","extensions":[],"identifier":"sle-module-web-scripting","release_stage":"released","id":1721,"description":"

The SUSE Linux Enterprise Web and Scripting Module should contains additional packages that are helpful when running a webserver.

Access to the Web and Scripting Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself: Package versions in this module are usually supported for at most three years. We are planning to release more recent versions on a schedule of approximately 18 month; the exact dates may differ per package.

","shortname":"Web-Scripting-Module","free":true,"eula_url":"","arch":"x86_64","predecessor_ids":[],"product_class":"MODULE","online_predecessor_ids":[],"repositories":[{"description":"SLE-Module-Web-Scripting15-Updates for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Web-Scripting15-Updates","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/15/x86_64/update/","distro_target":"sle-15-x86_64","autorefresh":true,"id":2972,"enabled":true},{"description":"SLE-Module-Web-Scripting15-Debuginfo-Updates for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Web-Scripting15-Debuginfo-Updates","distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/15/x86_64/update_debug/","enabled":false,"id":2973},{"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15/x86_64/product/","enabled":true,"id":2974,"description":"SLE-Module-Web-Scripting15-Pool for sle-15-x86_64","name":"SLE-Module-Web-Scripting15-Pool","installer_updates":false},{"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15/x86_64/product_debug/","enabled":false,"id":2975,"description":"SLE-Module-Web-Scripting15-Debuginfo-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Web-Scripting15-Debuginfo-Pool"},{"id":2976,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15/x86_64/product_source/","distro_target":"sle-15-x86_64","autorefresh":false,"installer_updates":false,"name":"SLE-Module-Web-Scripting15-Source-Pool","description":"SLE-Module-Web-Scripting15-Source-Pool for sle-15-x86_64"}],"cpe":"cpe:/o:suse:sle-module-web-scripting:15","product_type":"module"}],"friendly_version":"15"},{"former_identifier":"sle-module-containers","release_type":null,"friendly_name":"Containers Module 15 x86_64","migration_extra":true,"offline_predecessor_ids":[1332],"name":"Containers Module","version":"15","recommended":false,"release_stage":"released","identifier":"sle-module-containers","id":1642,"extensions":[],"friendly_version":"15","arch":"x86_64","eula_url":"","free":true,"shortname":"Containers-Module","description":"

This Module contains several packages revolving around containers and related tools.

","product_type":"module","cpe":"cpe:/o:suse:sle-module-containers:15","product_class":"MODULE","online_predecessor_ids":[],"repositories":[{"name":"SLE-Module-Containers15-Updates","installer_updates":false,"description":"SLE-Module-Containers15-Updates for sle-15-x86_64","id":2864,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/15/x86_64/update/","autorefresh":true,"distro_target":"sle-15-x86_64"},{"id":2865,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/15/x86_64/update_debug/","distro_target":"sle-15-x86_64","autorefresh":true,"installer_updates":false,"name":"SLE-Module-Containers15-Debuginfo-Updates","description":"SLE-Module-Containers15-Debuginfo-Updates for sle-15-x86_64"},{"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15/x86_64/product/","enabled":true,"id":2866,"description":"SLE-Module-Containers15-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Containers15-Pool"},{"description":"SLE-Module-Containers15-Debuginfo-Pool for sle-15-x86_64","name":"SLE-Module-Containers15-Debuginfo-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15/x86_64/product_debug/","autorefresh":false,"distro_target":"sle-15-x86_64","id":2867,"enabled":false},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15/x86_64/product_source/","distro_target":"sle-15-x86_64","autorefresh":false,"id":2868,"enabled":false,"description":"SLE-Module-Containers15-Source-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Containers15-Source-Pool"}],"predecessor_ids":[]},{"predecessor_ids":[],"online_predecessor_ids":[],"repositories":[{"description":"SLE-Module-CAP-Tools15-Updates for sle-15-x86_64","name":"SLE-Module-CAP-Tools15-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-CAP-Tools/15/x86_64/update/","enabled":true,"id":3000},{"enabled":false,"id":3001,"distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-CAP-Tools/15/x86_64/update_debug/","installer_updates":false,"name":"SLE-Module-CAP-Tools15-Debuginfo-Updates","description":"SLE-Module-CAP-Tools15-Debuginfo-Updates for sle-15-x86_64"},{"description":"SLE-Module-CAP-Tools15-Pool for sle-15-x86_64","name":"SLE-Module-CAP-Tools15-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-CAP-Tools/15/x86_64/product/","enabled":true,"id":3002},{"installer_updates":false,"name":"SLE-Module-CAP-Tools15-Debuginfo-Pool","description":"SLE-Module-CAP-Tools15-Debuginfo-Pool for sle-15-x86_64","enabled":false,"id":3003,"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-CAP-Tools/15/x86_64/product_debug/"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-CAP-Tools/15/x86_64/product_source/","distro_target":"sle-15-x86_64","autorefresh":false,"id":3123,"enabled":false,"description":"SLE-Module-CAP-Tools15-Source-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-CAP-Tools15-Source-Pool"}],"product_class":"MODULE","product_type":"module","cpe":"cpe:/o:suse:sle-module-cap-tools:15","free":true,"description":"

The SUSE Cloud Application Platform Tools Module is a collection of tools that enables you to interact with the SUSE Cloud Application Platform product itself, providing the commandline client for instance.

Access to the SUSE Cloud Application Platform Tools Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself; please check the Release Notes for further details.

","shortname":"SUSE-CAP-Tools-Module","eula_url":"","arch":"x86_64","friendly_version":"15","extensions":[],"release_stage":"released","identifier":"sle-module-cap-tools","id":1728,"recommended":false,"version":"15","offline_predecessor_ids":[1678],"name":"SUSE Cloud Application Platform Tools Module","former_identifier":"sle-module-cap-tools","release_type":null,"friendly_name":"SUSE Cloud Application Platform Tools Module 15 x86_64","migration_extra":true},{"recommended":false,"version":"15","offline_predecessor_ids":[1536,1757,1888],"name":"SUSE Linux Enterprise Live Patching","former_identifier":"sle-module-live-patching","release_type":null,"friendly_name":"SUSE Linux Enterprise Live Patching 15 x86_64","migration_extra":false,"friendly_version":"15","extensions":[],"release_stage":"released","id":1736,"identifier":"sle-module-live-patching","free":false,"shortname":"Live-Patching","description":"

SUSE Linux Enterprise Live Patching provides packages to update critical components in SUSE Linux Enterprise. With SUSE Linux Enterprise Live Patching, you can perform critical patching without shutting down your system, reducing the need for planned downtime and increasing service availability.

","eula_url":"","arch":"x86_64","predecessor_ids":[],"product_class":"SLE-LP","online_predecessor_ids":[],"repositories":[{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Live-Patching/15/x86_64/update/","distro_target":"sle-15-x86_64","autorefresh":true,"id":3033,"enabled":true,"description":"SLE-Module-Live-Patching15-Updates for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Live-Patching15-Updates"},{"description":"SLE-Module-Live-Patching15-Debuginfo-Updates for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Live-Patching15-Debuginfo-Updates","distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Live-Patching/15/x86_64/update_debug/","enabled":false,"id":3034},{"id":3035,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Live-Patching/15/x86_64/product/","distro_target":"sle-15-x86_64","autorefresh":false,"installer_updates":false,"name":"SLE-Module-Live-Patching15-Pool","description":"SLE-Module-Live-Patching15-Pool for sle-15-x86_64"},{"description":"SLE-Module-Live-Patching15-Debuginfo-Pool for sle-15-x86_64","name":"SLE-Module-Live-Patching15-Debuginfo-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Live-Patching/15/x86_64/product_debug/","autorefresh":false,"distro_target":"sle-15-x86_64","id":3036,"enabled":false},{"installer_updates":false,"name":"SLE-Module-Live-Patching15-Source-Pool","description":"SLE-Module-Live-Patching15-Source-Pool for sle-15-x86_64","id":3125,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Live-Patching/15/x86_64/product_source/","distro_target":"sle-15-x86_64","autorefresh":false}],"product_type":"module","cpe":"cpe:/o:suse:sle-module-live-patching:15"},{"extensions":[],"identifier":"PackageHub","release_stage":"released","id":1743,"friendly_version":"15","offline_predecessor_ids":[1529,1813,1915],"name":"SUSE Package Hub","release_type":null,"former_identifier":"PackageHub","friendly_name":"SUSE Package Hub 15 x86_64","migration_extra":false,"recommended":false,"version":"15","product_type":"extension","cpe":"cpe:/o:suse:packagehub:15","predecessor_ids":[],"product_class":"MODULE","online_predecessor_ids":[],"repositories":[{"description":"SUSE-PackageHub-15-Standard-Pool for sle-15-x86_64","name":"SUSE-PackageHub-15-Standard-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Backports/SLE-15_x86_64/standard/","autorefresh":false,"distro_target":"sle-15-x86_64","id":3059,"enabled":true},{"enabled":false,"id":3060,"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Backports/SLE-15_x86_64/standard_debug/","name":"SUSE-PackageHub-15-Debuginfo","installer_updates":false,"description":"SUSE-PackageHub-15-Debuginfo for sle-15-x86_64"},{"installer_updates":false,"name":"SUSE-PackageHub-15-Pool","description":"SUSE-PackageHub-15-Pool for sle-15-x86_64","id":3061,"enabled":true,"url":"https://updates.suse.com/SUSE/Backports/SLE-15_x86_64/product/","distro_target":"sle-15-x86_64","autorefresh":false},{"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15/x86_64/update/","enabled":true,"id":3182,"description":"SLE-Module-Packagehub-Subpackages15-Updates for sle-15-x86_64","name":"SLE-Module-Packagehub-Subpackages15-Updates","installer_updates":false},{"id":3183,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15/x86_64/update_debug/","distro_target":"sle-15-x86_64","autorefresh":true,"installer_updates":false,"name":"SLE-Module-Packagehub-Subpackages15-Debuginfo-Updates","description":"SLE-Module-Packagehub-Subpackages15-Debuginfo-Updates for sle-15-x86_64"},{"id":3184,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15/x86_64/product/","autorefresh":false,"distro_target":"sle-15-x86_64","name":"SLE-Module-Packagehub-Subpackages15-Pool","installer_updates":false,"description":"SLE-Module-Packagehub-Subpackages15-Pool for sle-15-x86_64"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15/x86_64/product_debug/","distro_target":"sle-15-x86_64","autorefresh":false,"id":3185,"enabled":false,"description":"SLE-Module-Packagehub-Subpackages15-Debuginfo-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Packagehub-Subpackages15-Debuginfo-Pool"},{"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15/x86_64/product_source/","enabled":false,"id":3186,"description":"SLE-Module-Packagehub-Subpackages15-Source-Pool for sle-15-x86_64","name":"SLE-Module-Packagehub-Subpackages15-Source-Pool","installer_updates":false}],"eula_url":"","arch":"x86_64","free":true,"description":"SUSE Package Hub is a free of charge extension providing access to community maintained packages built to run on SUSE Linux Enterprise Server. Built from the same sources used in the openSUSE distributions, these quality packages provide additional software to what is found in the SUSE Linux Enterprise Server product. Packages from the Package Hub are delivered without L3 support from SUSE. General updates and fixes to the packages in SUSE Package Hub are provided by the openSUSE community based on their discretion though SUSE will monitor and ensure that any known critical security issues will be addressed. Packages in the Package Hub are approved by SUSE for use with SUSE Linux Enterprise Server 15 and to not interfere with the supportability of SUSE Linux Enterprise Server it's modules and extensions. For more information about SUSE Package Hub please visit https://packagehub.suse.com.","shortname":"SUSE-PackageHub-15"}],"release_stage":"released","identifier":"sle-module-basesystem","id":1576,"friendly_version":"15","eula_url":"","arch":"x86_64","description":"

The SUSE Linux Enterprise Basesystem Module delivers the base system of the product.

","shortname":"Basesystem-Module","free":true,"cpe":"cpe:/o:suse:sle-module-basesystem:15","product_type":"module","predecessor_ids":[],"online_predecessor_ids":[],"repositories":[{"description":"SLE-Module-Basesystem15-Updates for sle-15-x86_64","name":"SLE-Module-Basesystem15-Updates","installer_updates":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15/x86_64/update/","autorefresh":true,"distro_target":"sle-15-x86_64","id":2524,"enabled":true},{"name":"SLE-Module-Basesystem15-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-Basesystem15-Debuginfo-Updates for sle-15-x86_64","enabled":false,"id":2525,"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15/x86_64/update_debug/"},{"name":"SLE-Module-Basesystem15-Pool","installer_updates":false,"description":"SLE-Module-Basesystem15-Pool for sle-15-x86_64","id":2526,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15/x86_64/product/","autorefresh":false,"distro_target":"sle-15-x86_64"},{"description":"SLE-Module-Basesystem15-Debuginfo-Pool for sle-15-x86_64","name":"SLE-Module-Basesystem15-Debuginfo-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15/x86_64/product_debug/","enabled":false,"id":2527},{"description":"SLE-Module-Basesystem15-Source-Pool for sle-15-x86_64","name":"SLE-Module-Basesystem15-Source-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15/x86_64/product_source/","autorefresh":false,"distro_target":"sle-15-x86_64","id":2528,"enabled":false}],"product_class":"MODULE"}],"version":"15","recommended":false,"friendly_name":"SUSE Linux Enterprise Server for SAP Applications 15 x86_64","migration_extra":false,"former_identifier":"SUSE_SLES_SAP","release_type":null,"name":"SUSE Linux Enterprise Server for SAP Applications","offline_predecessor_ids":[1329,1426,1755,1880],"repositories":[{"id":2750,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-SLES_SAP/15/x86_64/update/","autorefresh":true,"distro_target":"sle-15-x86_64","name":"SLE-Product-SLES_SAP15-Updates","installer_updates":false,"description":"SLE-Product-SLES_SAP15-Updates for sle-15-x86_64"},{"enabled":true,"id":2751,"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-SLES_SAP/15/x86_64/product/","installer_updates":false,"name":"SLE-Product-SLES_SAP15-Pool","description":"SLE-Product-SLES_SAP15-Pool for sle-15-x86_64"},{"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Product-SLES_SAP/15/x86_64/update_debug/","enabled":false,"id":3120,"description":"SLE-Product-SLES_SAP15-Debuginfo-Updates for sle-15-x86_64","name":"SLE-Product-SLES_SAP15-Debuginfo-Updates","installer_updates":false},{"installer_updates":false,"name":"SLE-Product-SLES_SAP15-Debuginfo-Pool","description":"SLE-Product-SLES_SAP15-Debuginfo-Pool for sle-15-x86_64","enabled":false,"id":3121,"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-SLES_SAP/15/x86_64/product_debug/"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Product-SLES_SAP/15/x86_64/product_source/","distro_target":"sle-15-x86_64","autorefresh":false,"id":3122,"enabled":false,"description":"SLE-Product-SLES_SAP15-Source-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Product-SLES_SAP15-Source-Pool"}],"online_predecessor_ids":[],"product_class":"AiO","predecessor_ids":[],"cpe":"cpe:/o:suse:sles_sap:15","product_type":"base","description":"SUSE Linux Enterprise offers a comprehensive suite of products built on a single code base. The platform addresses business needs from the smallest thin-client devices to the world's most powerful high-performance computing and mainframe servers. SUSE Linux Enterprise offers common management tools and technology certifications across the platform, and each product is enterprise-class.","shortname":"SLE-15-SAP","free":false,"arch":"x86_64","eula_url":"https://updates.suse.com/SUSE/Products/SLE-Product-SLES_SAP/15/x86_64/product.license/"},{"release_type":null,"former_identifier":"SUSE_SLES_SAP","migration_extra":false,"friendly_name":"SUSE Linux Enterprise Server for SAP Applications 15 ppc64le","offline_predecessor_ids":[1572,1754,1879],"name":"SUSE Linux Enterprise Server for SAP Applications","version":"15","recommended":false,"release_stage":"released","id":1613,"identifier":"SLES_SAP","extensions":[{"predecessor_ids":[],"repositories":[{"description":"SLE-Module-Basesystem15-Updates for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-Basesystem15-Updates","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15/ppc64le/update/","distro_target":"sle-15-ppc64le","autorefresh":true,"id":2569,"enabled":true},{"distro_target":"sle-15-ppc64le","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15/ppc64le/update_debug/","enabled":false,"id":2570,"description":"SLE-Module-Basesystem15-Debuginfo-Updates for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-Basesystem15-Debuginfo-Updates"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15/ppc64le/product/","autorefresh":false,"distro_target":"sle-15-ppc64le","id":2571,"enabled":true,"description":"SLE-Module-Basesystem15-Pool for sle-15-ppc64le","name":"SLE-Module-Basesystem15-Pool","installer_updates":false},{"name":"SLE-Module-Basesystem15-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-Basesystem15-Debuginfo-Pool for sle-15-ppc64le","id":2572,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15/ppc64le/product_debug/","autorefresh":false,"distro_target":"sle-15-ppc64le"},{"description":"SLE-Module-Basesystem15-Source-Pool for sle-15-ppc64le","name":"SLE-Module-Basesystem15-Source-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15/ppc64le/product_source/","enabled":false,"id":2573}],"online_predecessor_ids":[],"product_class":"MODULE","product_type":"module","cpe":"cpe:/o:suse:sle-module-basesystem:15","free":true,"description":"

The SUSE Linux Enterprise Basesystem Module delivers the base system of the product.

","shortname":"Basesystem-Module","eula_url":"","arch":"ppc64le","friendly_version":"15","extensions":[{"offline_predecessor_ids":[],"name":"Desktop Applications Module","release_type":null,"former_identifier":"sle-module-desktop-applications","friendly_name":"Desktop Applications Module 15 ppc64le","migration_extra":false,"recommended":true,"version":"15","extensions":[{"predecessor_ids":[],"online_predecessor_ids":[],"repositories":[{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15/ppc64le/update/","autorefresh":true,"distro_target":"sle-15-ppc64le","id":2613,"enabled":true,"description":"SLE-Module-DevTools15-Updates for sle-15-ppc64le","name":"SLE-Module-DevTools15-Updates","installer_updates":false},{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15/ppc64le/update_debug/","distro_target":"sle-15-ppc64le","autorefresh":true,"id":2614,"enabled":false,"description":"SLE-Module-DevTools15-Debuginfo-Updates for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-DevTools15-Debuginfo-Updates"},{"enabled":true,"id":2615,"distro_target":"sle-15-ppc64le","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15/ppc64le/product/","installer_updates":false,"name":"SLE-Module-DevTools15-Pool","description":"SLE-Module-DevTools15-Pool for sle-15-ppc64le"},{"autorefresh":false,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15/ppc64le/product_debug/","enabled":false,"id":2616,"description":"SLE-Module-DevTools15-Debuginfo-Pool for sle-15-ppc64le","name":"SLE-Module-DevTools15-Debuginfo-Pool","installer_updates":false},{"autorefresh":false,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15/ppc64le/product_source/","enabled":false,"id":2617,"description":"SLE-Module-DevTools15-Source-Pool for sle-15-ppc64le","name":"SLE-Module-DevTools15-Source-Pool","installer_updates":false}],"product_class":"MODULE","product_type":"module","cpe":"cpe:/o:suse:sle-module-development-tools:15","free":true,"description":"

The Development Tools Module helps you developing applications for SUSE Linux Enterprise 15.

Access to the Development Tools Module is included in your SUSE Linux Enterprise product subscription. The module has a different lifecycle than SUSE Linux Enterprise itself.

","shortname":"Development-Tools-Module","eula_url":"","arch":"ppc64le","friendly_version":"15","extensions":[],"identifier":"sle-module-development-tools","release_stage":"released","id":1597,"recommended":false,"version":"15","offline_predecessor_ids":[1145,1339,1343,1364,1428,1631,1890],"name":"Development Tools Module","release_type":null,"former_identifier":"sle-sdk","migration_extra":true,"friendly_name":"Development Tools Module 15 ppc64le"}],"id":1594,"release_stage":"released","identifier":"sle-module-desktop-applications","friendly_version":"15","eula_url":"","arch":"ppc64le","free":true,"shortname":"Desktop-Applications-Module","description":"

The SUSE Linux Enterprise Desktop Applications Module delivers a basic set of Desktop functionality.

Access to the Desktop Applications Module is included in your SUSE Linux Enterprise product subscription.

","product_type":"module","cpe":"cpe:/o:suse:sle-module-desktop-applications:15","predecessor_ids":[],"online_predecessor_ids":[],"repositories":[{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15/ppc64le/update/","distro_target":"sle-15-ppc64le","autorefresh":true,"id":2598,"enabled":true,"description":"SLE-Module-Desktop-Applications15-Updates for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-Desktop-Applications15-Updates"},{"installer_updates":false,"name":"SLE-Module-Desktop-Applications15-Debuginfo-Updates","description":"SLE-Module-Desktop-Applications15-Debuginfo-Updates for sle-15-ppc64le","enabled":false,"id":2599,"distro_target":"sle-15-ppc64le","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15/ppc64le/update_debug/"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15/ppc64le/product/","autorefresh":false,"distro_target":"sle-15-ppc64le","id":2600,"enabled":true,"description":"SLE-Module-Desktop-Applications15-Pool for sle-15-ppc64le","name":"SLE-Module-Desktop-Applications15-Pool","installer_updates":false},{"installer_updates":false,"name":"SLE-Module-Desktop-Applications15-Debuginfo-Pool","description":"SLE-Module-Desktop-Applications15-Debuginfo-Pool for sle-15-ppc64le","id":2601,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15/ppc64le/product_debug/","distro_target":"sle-15-ppc64le","autorefresh":false},{"installer_updates":false,"name":"SLE-Module-Desktop-Applications15-Source-Pool","description":"SLE-Module-Desktop-Applications15-Source-Pool for sle-15-ppc64le","id":2602,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15/ppc64le/product_source/","distro_target":"sle-15-ppc64le","autorefresh":false}],"product_class":"MODULE"},{"version":"15","recommended":true,"migration_extra":false,"friendly_name":"Server Applications Module 15 ppc64le","former_identifier":"sle-module-server-applications","release_type":null,"name":"Server Applications Module","offline_predecessor_ids":[],"friendly_version":"15","id":1600,"release_stage":"released","identifier":"sle-module-server-applications","extensions":[{"free":true,"shortname":"Legacy-Module","description":"

The Legacy Module helps you migrating applications from SUSE Linux Enterprise 12 and other systems to SUSE Linux Enterprise 15, by providing packages which are discontinued on SUSE Linux Enterprise Server, such as: ntp, IBM Java 8, and a number of libraries.

Access to the Legacy Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself. Packages in the this module are usually supported for at most three years.

","eula_url":"","arch":"ppc64le","predecessor_ids":[],"online_predecessor_ids":[],"product_class":"MODULE","repositories":[{"autorefresh":true,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/15/ppc64le/update/","enabled":true,"id":2643,"description":"SLE-Module-Legacy15-Updates for sle-15-ppc64le","name":"SLE-Module-Legacy15-Updates","installer_updates":false},{"description":"SLE-Module-Legacy15-Debuginfo-Updates for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-Legacy15-Debuginfo-Updates","distro_target":"sle-15-ppc64le","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/15/ppc64le/update_debug/","enabled":false,"id":2644},{"description":"SLE-Module-Legacy15-Pool for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-Legacy15-Pool","distro_target":"sle-15-ppc64le","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15/ppc64le/product/","enabled":true,"id":2645},{"enabled":false,"id":2646,"distro_target":"sle-15-ppc64le","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15/ppc64le/product_debug/","installer_updates":false,"name":"SLE-Module-Legacy15-Debuginfo-Pool","description":"SLE-Module-Legacy15-Debuginfo-Pool for sle-15-ppc64le"},{"description":"SLE-Module-Legacy15-Source-Pool for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-Legacy15-Source-Pool","distro_target":"sle-15-ppc64le","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15/ppc64le/product_source/","enabled":false,"id":2647}],"product_type":"module","cpe":"cpe:/o:suse:sle-module-legacy:15","recommended":false,"version":"15","offline_predecessor_ids":[1148],"name":"Legacy Module","former_identifier":"sle-module-legacy","release_type":null,"migration_extra":true,"friendly_name":"Legacy Module 15 ppc64le","friendly_version":"15","extensions":[],"identifier":"sle-module-legacy","release_stage":"released","id":1603},{"friendly_name":"SUSE Linux Enterprise High Availability Extension 15 ppc64le","migration_extra":false,"release_type":null,"former_identifier":"sle-ha","name":"SUSE Linux Enterprise High Availability Extension","offline_predecessor_ids":[1420,1433,1635,1882],"version":"15","recommended":true,"release_stage":"released","id":1606,"identifier":"sle-ha","extensions":[{"predecessor_ids":[],"online_predecessor_ids":[],"product_class":"MODULE","repositories":[{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-SAP-Applications/15/ppc64le/update/","distro_target":"sle-15-ppc64le","autorefresh":true,"id":2682,"enabled":true,"description":"SLE-Module-SAP-Applications15-Updates for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-SAP-Applications15-Updates"},{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-SAP-Applications/15/ppc64le/update_debug/","autorefresh":true,"distro_target":"sle-15-ppc64le","id":2683,"enabled":false,"description":"SLE-Module-SAP-Applications15-Debuginfo-Updates for sle-15-ppc64le","name":"SLE-Module-SAP-Applications15-Debuginfo-Updates","installer_updates":false},{"installer_updates":false,"name":"SLE-Module-SAP-Applications15-Pool","description":"SLE-Module-SAP-Applications15-Pool for sle-15-ppc64le","enabled":true,"id":2684,"distro_target":"sle-15-ppc64le","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-SAP-Applications/15/ppc64le/product/"},{"name":"SLE-Module-SAP-Applications15-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-SAP-Applications15-Debuginfo-Pool for sle-15-ppc64le","enabled":false,"id":2685,"autorefresh":false,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Products/SLE-Module-SAP-Applications/15/ppc64le/product_debug/"},{"name":"SLE-Module-SAP-Applications15-Source-Pool","installer_updates":false,"description":"SLE-Module-SAP-Applications15-Source-Pool for sle-15-ppc64le","id":2686,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-SAP-Applications/15/ppc64le/product_source/","autorefresh":false,"distro_target":"sle-15-ppc64le"}],"product_type":"module","cpe":"cpe:/o:suse:sle-module-sap-applications:15","free":true,"shortname":"SAP-Applications-Module","description":"

The SAP Applications module contains the specialized tools for SAP Applications administration.

The module is maintained and supported by the SUSE Linux Enterprise Server for SAP Applications product subscription.

","eula_url":"","arch":"ppc64le","friendly_version":"15","extensions":[],"id":1726,"release_stage":"released","identifier":"sle-module-sap-applications","recommended":true,"version":"15","offline_predecessor_ids":[],"name":"SAP Applications Module","release_type":null,"former_identifier":"sle-module-sap-applications","migration_extra":false,"friendly_name":"SAP Applications Module 15 ppc64le"}],"friendly_version":"15","arch":"ppc64le","eula_url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15/ppc64le/product.license/","shortname":"SLEHA15","description":"SUSE Linux High Availability Extension provides mature, industry-leading open-source high-availability clustering technologies that are easy to set up and use. It can be deployed in physical and/or virtual environments, and can cluster physical servers, virtual servers, or any combination of the two to suit your business’ needs.","free":false,"cpe":"cpe:/o:suse:sle-ha:15","product_type":"extension","product_class":"SLE-HAE-PPC","online_predecessor_ids":[],"repositories":[{"installer_updates":false,"name":"SLE-Product-HA15-Updates","description":"SLE-Product-HA15-Updates for sle-15-ppc64le","id":2764,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-HA/15/ppc64le/update/","distro_target":"sle-15-ppc64le","autorefresh":true},{"id":2765,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-HA/15/ppc64le/update_debug/","autorefresh":true,"distro_target":"sle-15-ppc64le","name":"SLE-Product-HA15-Debuginfo-Updates","installer_updates":false,"description":"SLE-Product-HA15-Debuginfo-Updates for sle-15-ppc64le"},{"description":"SLE-Product-HA15-Pool for sle-15-ppc64le","installer_updates":false,"name":"SLE-Product-HA15-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15/ppc64le/product/","distro_target":"sle-15-ppc64le","autorefresh":false,"id":2766,"enabled":true},{"installer_updates":false,"name":"SLE-Product-HA15-Debuginfo-Pool","description":"SLE-Product-HA15-Debuginfo-Pool for sle-15-ppc64le","enabled":false,"id":2767,"distro_target":"sle-15-ppc64le","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15/ppc64le/product_debug/"},{"description":"SLE-Product-HA15-Source-Pool for sle-15-ppc64le","installer_updates":false,"name":"SLE-Product-HA15-Source-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15/ppc64le/product_source/","distro_target":"sle-15-ppc64le","autorefresh":false,"id":2768,"enabled":false}],"predecessor_ids":[]},{"shortname":"Public-Cloud-Module","description":"

The Public Cloud Module is a collection of tools that enables you to create and manage cloud images from the commandline on SUSE Linux Enterprise Server. When building your own images with KIWI or SUSE Studio, initialization code specific to the target cloud is included in that image.

Access to the Public Cloud Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself; please check the Release Notes for further details.

","free":true,"arch":"ppc64le","eula_url":"","online_predecessor_ids":[],"repositories":[{"name":"SLE-Module-Public-Cloud15-Updates","installer_updates":false,"description":"SLE-Module-Public-Cloud15-Updates for sle-15-ppc64le","id":2687,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/15/ppc64le/update/","autorefresh":true,"distro_target":"sle-15-ppc64le"},{"name":"SLE-Module-Public-Cloud15-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-Public-Cloud15-Debuginfo-Updates for sle-15-ppc64le","id":2688,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/15/ppc64le/update_debug/","autorefresh":true,"distro_target":"sle-15-ppc64le"},{"installer_updates":false,"name":"SLE-Module-Public-Cloud15-Pool","description":"SLE-Module-Public-Cloud15-Pool for sle-15-ppc64le","enabled":true,"id":2689,"distro_target":"sle-15-ppc64le","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15/ppc64le/product/"},{"description":"SLE-Module-Public-Cloud15-Debuginfo-Pool for sle-15-ppc64le","name":"SLE-Module-Public-Cloud15-Debuginfo-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15/ppc64le/product_debug/","enabled":false,"id":2690},{"name":"SLE-Module-Public-Cloud15-Source-Pool","installer_updates":false,"description":"SLE-Module-Public-Cloud15-Source-Pool for sle-15-ppc64le","enabled":false,"id":3127,"autorefresh":false,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15/ppc64le/product_source/"}],"product_class":"MODULE","predecessor_ids":[],"cpe":"cpe:/o:suse:sle-module-public-cloud:15","product_type":"module","version":"15","recommended":false,"migration_extra":true,"friendly_name":"Public Cloud Module 15 ppc64le","release_type":null,"former_identifier":"sle-module-public-cloud","name":"Public Cloud Module","offline_predecessor_ids":[1218],"friendly_version":"15","release_stage":"released","id":1616,"identifier":"sle-module-public-cloud","extensions":[]},{"eula_url":"","arch":"ppc64le","free":true,"description":"

The SUSE Linux Enterprise Web and Scripting Module should contains additional packages that are helpful when running a webserver.

Access to the Web and Scripting Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself: Package versions in this module are usually supported for at most three years. We are planning to release more recent versions on a schedule of approximately 18 month; the exact dates may differ per package.

","shortname":"Web-Scripting-Module","product_type":"module","cpe":"cpe:/o:suse:sle-module-web-scripting:15","predecessor_ids":[],"online_predecessor_ids":[],"product_class":"MODULE","repositories":[{"distro_target":"sle-15-ppc64le","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/15/ppc64le/update/","enabled":true,"id":2962,"description":"SLE-Module-Web-Scripting15-Updates for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-Web-Scripting15-Updates"},{"name":"SLE-Module-Web-Scripting15-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-Web-Scripting15-Debuginfo-Updates for sle-15-ppc64le","id":2963,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/15/ppc64le/update_debug/","autorefresh":true,"distro_target":"sle-15-ppc64le"},{"installer_updates":false,"name":"SLE-Module-Web-Scripting15-Pool","description":"SLE-Module-Web-Scripting15-Pool for sle-15-ppc64le","id":2964,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15/ppc64le/product/","distro_target":"sle-15-ppc64le","autorefresh":false},{"installer_updates":false,"name":"SLE-Module-Web-Scripting15-Debuginfo-Pool","description":"SLE-Module-Web-Scripting15-Debuginfo-Pool for sle-15-ppc64le","id":2965,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15/ppc64le/product_debug/","distro_target":"sle-15-ppc64le","autorefresh":false},{"enabled":false,"id":2966,"distro_target":"sle-15-ppc64le","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15/ppc64le/product_source/","installer_updates":false,"name":"SLE-Module-Web-Scripting15-Source-Pool","description":"SLE-Module-Web-Scripting15-Source-Pool for sle-15-ppc64le"}],"offline_predecessor_ids":[1151],"name":"Web and Scripting Module","former_identifier":"sle-module-web-scripting","release_type":null,"migration_extra":true,"friendly_name":"Web and Scripting Module 15 ppc64le","recommended":false,"version":"15","extensions":[],"release_stage":"released","identifier":"sle-module-web-scripting","id":1719,"friendly_version":"15"},{"friendly_version":"15","release_stage":"released","identifier":"ibm-power-advance-toolchain","id":2076,"extensions":[],"version":"15","recommended":false,"migration_extra":false,"friendly_name":"IBM POWER Advance Toolchain for SLE 15 ppc64le","former_identifier":"ibm-power-advance-toolchain","release_type":null,"name":"IBM POWER Advance Toolchain for SLE","offline_predecessor_ids":[1249],"online_predecessor_ids":[],"repositories":[{"id":4430,"enabled":true,"url":"https://public.dhe.ibm.com/software/server/POWER/Linux/toolchain/at/suse/SLES_15/","autorefresh":true,"distro_target":null,"name":"IBM-POWER-Adv-Toolchain","installer_updates":false,"description":"IBM-POWER-Adv-Toolchain"}],"product_class":"MODULE","predecessor_ids":[],"cpe":"cpe:/o:suse:ibm-power-advance-toolchain:15","product_type":"extension","description":"IBM POWER Advance Toolchain for SLE 15","shortname":"IBMPWAT15","free":true,"arch":"ppc64le","eula_url":""},{"description":"IBM POWER Tools for SLE 15","shortname":"IBMPWUT15","free":true,"arch":"ppc64le","eula_url":"https://public.dhe.ibm.com/software/server/POWER/Linux/yum/OSS/SLES/15/ppc64le.license/","product_class":"MODULE","online_predecessor_ids":[],"repositories":[{"id":4431,"enabled":true,"url":"https://public.dhe.ibm.com/software/server/POWER/Linux/yum/OSS/SLES/15/ppc64le/","distro_target":null,"autorefresh":true,"installer_updates":false,"name":"IBM-POWER-Tools","description":"IBM-POWER-Tools"}],"predecessor_ids":[],"cpe":"cpe:/o:suse:ibm-power-tools:15","product_type":"extension","version":"15","recommended":false,"migration_extra":false,"friendly_name":"IBM POWER Tools for SLE 15 ppc64le","release_type":null,"former_identifier":"ibm-power-tools","name":"IBM POWER Tools for SLE","offline_predecessor_ids":[1250],"friendly_version":"15","release_stage":"released","identifier":"ibm-power-tools","id":2077,"extensions":[]}],"description":"

The SUSE Linux Enterprise Server Applications Module delivers a basic set of Server functionality.

Access to the Server Applications Module is included in your SUSE Linux Enterprise Server subscription.

","shortname":"Server-Applications-Module","free":true,"arch":"ppc64le","eula_url":"","product_class":"MODULE","online_predecessor_ids":[],"repositories":[{"description":"SLE-Module-Server-Applications15-Updates for sle-15-ppc64le","name":"SLE-Module-Server-Applications15-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15/ppc64le/update/","enabled":true,"id":2628},{"id":2629,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15/ppc64le/update_debug/","autorefresh":true,"distro_target":"sle-15-ppc64le","name":"SLE-Module-Server-Applications15-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-Server-Applications15-Debuginfo-Updates for sle-15-ppc64le"},{"installer_updates":false,"name":"SLE-Module-Server-Applications15-Pool","description":"SLE-Module-Server-Applications15-Pool for sle-15-ppc64le","id":2630,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15/ppc64le/product/","distro_target":"sle-15-ppc64le","autorefresh":false},{"id":2631,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15/ppc64le/product_debug/","distro_target":"sle-15-ppc64le","autorefresh":false,"installer_updates":false,"name":"SLE-Module-Server-Applications15-Debuginfo-Pool","description":"SLE-Module-Server-Applications15-Debuginfo-Pool for sle-15-ppc64le"},{"id":2632,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15/ppc64le/product_source/","distro_target":"sle-15-ppc64le","autorefresh":false,"installer_updates":false,"name":"SLE-Module-Server-Applications15-Source-Pool","description":"SLE-Module-Server-Applications15-Source-Pool for sle-15-ppc64le"}],"predecessor_ids":[],"cpe":"cpe:/o:suse:sle-module-server-applications:15","product_type":"module"},{"migration_extra":true,"friendly_name":"Containers Module 15 ppc64le","former_identifier":"sle-module-containers","release_type":null,"name":"Containers Module","offline_predecessor_ids":[1353],"version":"15","recommended":false,"release_stage":"released","id":1640,"identifier":"sle-module-containers","extensions":[],"friendly_version":"15","arch":"ppc64le","eula_url":"","description":"

This Module contains several packages revolving around containers and related tools.

","shortname":"Containers-Module","free":true,"cpe":"cpe:/o:suse:sle-module-containers:15","product_type":"module","online_predecessor_ids":[],"repositories":[{"description":"SLE-Module-Containers15-Updates for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-Containers15-Updates","distro_target":"sle-15-ppc64le","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/15/ppc64le/update/","enabled":true,"id":2854},{"enabled":false,"id":2855,"autorefresh":true,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/15/ppc64le/update_debug/","name":"SLE-Module-Containers15-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-Containers15-Debuginfo-Updates for sle-15-ppc64le"},{"description":"SLE-Module-Containers15-Pool for sle-15-ppc64le","name":"SLE-Module-Containers15-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15/ppc64le/product/","enabled":true,"id":2856},{"distro_target":"sle-15-ppc64le","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15/ppc64le/product_debug/","enabled":false,"id":2857,"description":"SLE-Module-Containers15-Debuginfo-Pool for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-Containers15-Debuginfo-Pool"},{"description":"SLE-Module-Containers15-Source-Pool for sle-15-ppc64le","name":"SLE-Module-Containers15-Source-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15/ppc64le/product_source/","enabled":false,"id":2858}],"product_class":"MODULE","predecessor_ids":[]},{"product_type":"module","cpe":"cpe:/o:suse:sle-module-live-patching:15","predecessor_ids":[],"repositories":[{"id":3029,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Live-Patching/15/ppc64le/update/","distro_target":"sle-15-ppc64le","autorefresh":true,"installer_updates":false,"name":"SLE-Module-Live-Patching15-Updates","description":"SLE-Module-Live-Patching15-Updates for sle-15-ppc64le"},{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Live-Patching/15/ppc64le/update_debug/","autorefresh":true,"distro_target":"sle-15-ppc64le","id":3030,"enabled":false,"description":"SLE-Module-Live-Patching15-Debuginfo-Updates for sle-15-ppc64le","name":"SLE-Module-Live-Patching15-Debuginfo-Updates","installer_updates":false},{"description":"SLE-Module-Live-Patching15-Pool for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-Live-Patching15-Pool","distro_target":"sle-15-ppc64le","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Live-Patching/15/ppc64le/product/","enabled":true,"id":3031},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Live-Patching/15/ppc64le/product_debug/","autorefresh":false,"distro_target":"sle-15-ppc64le","id":3032,"enabled":false,"description":"SLE-Module-Live-Patching15-Debuginfo-Pool for sle-15-ppc64le","name":"SLE-Module-Live-Patching15-Debuginfo-Pool","installer_updates":false},{"description":"SLE-Module-Live-Patching15-Source-Pool for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-Live-Patching15-Source-Pool","distro_target":"sle-15-ppc64le","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Live-Patching/15/ppc64le/product_source/","enabled":false,"id":3124}],"online_predecessor_ids":[],"product_class":"SLE-LP-PPC","eula_url":"","arch":"ppc64le","free":false,"description":"

SUSE Linux Enterprise Live Patching provides packages to update critical components in SUSE Linux Enterprise. With SUSE Linux Enterprise Live Patching, you can perform critical patching without shutting down your system, reducing the need for planned downtime and increasing service availability.

","shortname":"Live-Patching","extensions":[],"id":1735,"release_stage":"released","identifier":"sle-module-live-patching","friendly_version":"15","offline_predecessor_ids":[1537,1756,1887],"name":"SUSE Linux Enterprise Live Patching","former_identifier":"sle-module-live-patching","release_type":null,"friendly_name":"SUSE Linux Enterprise Live Patching 15 ppc64le","migration_extra":false,"recommended":false,"version":"15"},{"recommended":false,"version":"15","offline_predecessor_ids":[1531,1811,1913],"name":"SUSE Package Hub","release_type":null,"former_identifier":"PackageHub","friendly_name":"SUSE Package Hub 15 ppc64le","migration_extra":false,"friendly_version":"15","extensions":[],"release_stage":"released","id":1741,"identifier":"PackageHub","free":true,"description":"SUSE Package Hub is a free of charge extension providing access to community maintained packages built to run on SUSE Linux Enterprise Server. Built from the same sources used in the openSUSE distributions, these quality packages provide additional software to what is found in the SUSE Linux Enterprise Server product. Packages from the Package Hub are delivered without L3 support from SUSE. General updates and fixes to the packages in SUSE Package Hub are provided by the openSUSE community based on their discretion though SUSE will monitor and ensure that any known critical security issues will be addressed. Packages in the Package Hub are approved by SUSE for use with SUSE Linux Enterprise Server 15 and to not interfere with the supportability of SUSE Linux Enterprise Server it's modules and extensions. For more information about SUSE Package Hub please visit https://packagehub.suse.com.","shortname":"SUSE-PackageHub-15","eula_url":"","arch":"ppc64le","predecessor_ids":[],"online_predecessor_ids":[],"repositories":[{"enabled":true,"id":3053,"autorefresh":false,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Backports/SLE-15_ppc64le/standard/","name":"SUSE-PackageHub-15-Standard-Pool","installer_updates":false,"description":"SUSE-PackageHub-15-Standard-Pool for sle-15-ppc64le"},{"description":"SUSE-PackageHub-15-Debuginfo for sle-15-ppc64le","installer_updates":false,"name":"SUSE-PackageHub-15-Debuginfo","distro_target":"sle-15-ppc64le","autorefresh":true,"url":"https://updates.suse.com/SUSE/Backports/SLE-15_ppc64le/standard_debug/","enabled":false,"id":3054},{"description":"SUSE-PackageHub-15-Pool for sle-15-ppc64le","installer_updates":false,"name":"SUSE-PackageHub-15-Pool","distro_target":"sle-15-ppc64le","autorefresh":false,"url":"https://updates.suse.com/SUSE/Backports/SLE-15_ppc64le/product/","enabled":true,"id":3055},{"distro_target":"sle-15-ppc64le","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15/ppc64le/update/","enabled":true,"id":3172,"description":"SLE-Module-Packagehub-Subpackages15-Updates for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-Packagehub-Subpackages15-Updates"},{"installer_updates":false,"name":"SLE-Module-Packagehub-Subpackages15-Debuginfo-Updates","description":"SLE-Module-Packagehub-Subpackages15-Debuginfo-Updates for sle-15-ppc64le","enabled":false,"id":3173,"distro_target":"sle-15-ppc64le","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15/ppc64le/update_debug/"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15/ppc64le/product/","distro_target":"sle-15-ppc64le","autorefresh":false,"id":3174,"enabled":true,"description":"SLE-Module-Packagehub-Subpackages15-Pool for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-Packagehub-Subpackages15-Pool"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15/ppc64le/product_debug/","autorefresh":false,"distro_target":"sle-15-ppc64le","id":3175,"enabled":false,"description":"SLE-Module-Packagehub-Subpackages15-Debuginfo-Pool for sle-15-ppc64le","name":"SLE-Module-Packagehub-Subpackages15-Debuginfo-Pool","installer_updates":false},{"description":"SLE-Module-Packagehub-Subpackages15-Source-Pool for sle-15-ppc64le","name":"SLE-Module-Packagehub-Subpackages15-Source-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15/ppc64le/product_source/","enabled":false,"id":3176}],"product_class":"MODULE","product_type":"extension","cpe":"cpe:/o:suse:packagehub:15"}],"identifier":"sle-module-basesystem","release_stage":"released","id":1588,"recommended":true,"version":"15","offline_predecessor_ids":[1294],"name":"Basesystem Module","release_type":null,"former_identifier":"sle-module-basesystem","migration_extra":false,"friendly_name":"Basesystem Module 15 ppc64le"}],"friendly_version":"15","arch":"ppc64le","eula_url":"https://updates.suse.com/SUSE/Products/SLE-Product-SLES_SAP/15/ppc64le/product.license/","free":false,"shortname":"SLE-15-SAP","description":"SUSE Linux Enterprise offers a comprehensive suite of products built on a single code base. The platform addresses business needs from the smallest thin-client devices to the world's most powerful high-performance computing and mainframe servers. SUSE Linux Enterprise offers common management tools and technology certifications across the platform, and each product is enterprise-class.","product_type":"base","cpe":"cpe:/o:suse:sles_sap:15","online_predecessor_ids":[],"product_class":"AiO-PPC","repositories":[{"name":"SLE-Product-SLES_SAP15-Updates","installer_updates":false,"description":"SLE-Product-SLES_SAP15-Updates for sle-15-ppc64le","id":2752,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-SLES_SAP/15/ppc64le/update/","autorefresh":true,"distro_target":"sle-15-ppc64le"},{"enabled":true,"id":2753,"autorefresh":false,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Products/SLE-Product-SLES_SAP/15/ppc64le/product/","name":"SLE-Product-SLES_SAP15-Pool","installer_updates":false,"description":"SLE-Product-SLES_SAP15-Pool for sle-15-ppc64le"},{"installer_updates":false,"name":"SLE-Product-SLES_SAP15-Debuginfo-Updates","description":"SLE-Product-SLES_SAP15-Debuginfo-Updates for sle-15-ppc64le","id":3117,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-SLES_SAP/15/ppc64le/update_debug/","distro_target":"sle-15-ppc64le","autorefresh":true},{"description":"SLE-Product-SLES_SAP15-Debuginfo-Pool for sle-15-ppc64le","name":"SLE-Product-SLES_SAP15-Debuginfo-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-SLES_SAP/15/ppc64le/product_debug/","autorefresh":false,"distro_target":"sle-15-ppc64le","id":3118,"enabled":false},{"enabled":false,"id":3119,"distro_target":"sle-15-ppc64le","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-SLES_SAP/15/ppc64le/product_source/","installer_updates":false,"name":"SLE-Product-SLES_SAP15-Source-Pool","description":"SLE-Product-SLES_SAP15-Source-Pool for sle-15-ppc64le"}],"predecessor_ids":[]},{"friendly_version":"15","extensions":[],"id":1616,"release_stage":"released","identifier":"sle-module-public-cloud","recommended":false,"version":"15","offline_predecessor_ids":[1218],"name":"Public Cloud Module","former_identifier":"sle-module-public-cloud","release_type":null,"migration_extra":false,"friendly_name":"Public Cloud Module 15 ppc64le","predecessor_ids":[],"online_predecessor_ids":[],"product_class":"MODULE","repositories":[{"autorefresh":true,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/15/ppc64le/update/","enabled":true,"id":2687,"description":"SLE-Module-Public-Cloud15-Updates for sle-15-ppc64le","name":"SLE-Module-Public-Cloud15-Updates","installer_updates":false},{"installer_updates":false,"name":"SLE-Module-Public-Cloud15-Debuginfo-Updates","description":"SLE-Module-Public-Cloud15-Debuginfo-Updates for sle-15-ppc64le","enabled":false,"id":2688,"distro_target":"sle-15-ppc64le","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/15/ppc64le/update_debug/"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15/ppc64le/product/","distro_target":"sle-15-ppc64le","autorefresh":false,"id":2689,"enabled":true,"description":"SLE-Module-Public-Cloud15-Pool for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-Public-Cloud15-Pool"},{"installer_updates":false,"name":"SLE-Module-Public-Cloud15-Debuginfo-Pool","description":"SLE-Module-Public-Cloud15-Debuginfo-Pool for sle-15-ppc64le","enabled":false,"id":2690,"distro_target":"sle-15-ppc64le","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15/ppc64le/product_debug/"},{"distro_target":"sle-15-ppc64le","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15/ppc64le/product_source/","enabled":false,"id":3127,"description":"SLE-Module-Public-Cloud15-Source-Pool for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-Public-Cloud15-Source-Pool"}],"product_type":"module","cpe":"cpe:/o:suse:sle-module-public-cloud:15","free":true,"description":"

The Public Cloud Module is a collection of tools that enables you to create and manage cloud images from the commandline on SUSE Linux Enterprise Server. When building your own images with KIWI or SUSE Studio, initialization code specific to the target cloud is included in that image.

Access to the Public Cloud Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself; please check the Release Notes for further details.

","shortname":"Public-Cloud-Module","eula_url":"","arch":"ppc64le"},{"free":false,"shortname":"SOC8","description":"SUSE OpenStack Cloud 8","eula_url":"https://updates.suse.com/SUSE/Products/OpenStack-Cloud/8/x86_64/product.license/","arch":"x86_64","predecessor_ids":[],"repositories":[{"description":"SUSE-OpenStack-Cloud-8-Updates for sle-12-x86_64","installer_updates":false,"name":"SUSE-OpenStack-Cloud-8-Updates","url":"https://updates.suse.com/SUSE/Updates/OpenStack-Cloud/8/x86_64/update/","distro_target":"sle-12-x86_64","autorefresh":true,"id":2691,"enabled":true},{"url":"https://updates.suse.com/SUSE/Updates/OpenStack-Cloud/8/x86_64/update_debug/","distro_target":"sle-12-x86_64","autorefresh":true,"id":2692,"enabled":false,"description":"SUSE-OpenStack-Cloud-8-Debuginfo-Updates for sle-12-x86_64","installer_updates":false,"name":"SUSE-OpenStack-Cloud-8-Debuginfo-Updates"},{"enabled":true,"id":2693,"autorefresh":false,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Products/OpenStack-Cloud/8/x86_64/product/","name":"SUSE-OpenStack-Cloud-8-Pool","installer_updates":false,"description":"SUSE-OpenStack-Cloud-8-Pool for sle-12-x86_64"},{"installer_updates":false,"name":"SUSE-OpenStack-Cloud-8-Debuginfo-Pool","description":"SUSE-OpenStack-Cloud-8-Debuginfo-Pool for sle-12-x86_64","enabled":false,"id":2694,"distro_target":"sle-12-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/OpenStack-Cloud/8/x86_64/product_debug/"},{"url":"https://updates.suse.com/SUSE/Products/OpenStack-Cloud/8/x86_64/product_source/","autorefresh":false,"distro_target":"sle-12-x86_64","id":2695,"enabled":false,"description":"SUSE-OpenStack-Cloud-8-Source-Pool for sle-12-x86_64","name":"SUSE-OpenStack-Cloud-8-Source-Pool","installer_updates":false}],"online_predecessor_ids":[],"product_class":"SUSE_CLOUD","product_type":"extension","cpe":"cpe:/o:suse:suse-openstack-cloud:8","recommended":false,"version":"8","offline_predecessor_ids":[],"name":"SUSE OpenStack Cloud","former_identifier":"suse-openstack-cloud","release_type":null,"friendly_name":"SUSE OpenStack Cloud 8 x86_64","migration_extra":false,"friendly_version":"8","extensions":[],"release_stage":"released","identifier":"suse-openstack-cloud","id":1617},{"eula_url":"","arch":"x86_64","free":false,"description":"SUSE Linux Enterprise offers a comprehensive suite of products built on a single code base. The platform addresses business needs from the smallest thin-client devices to the world's most powerful high-performance computing and mainframe servers. SUSE Linux Enterprise offers common management tools and technology certifications across the platform, and each product is enterprise-class.","shortname":"SLES12-SP3 BCL","product_type":"extension","cpe":"cpe:/o:suse:sles-bcl:12:sp3","predecessor_ids":[],"product_class":"BCL-X86","online_predecessor_ids":[],"repositories":[{"description":"SLES12-SP3-BCL-Updates for sle-12-x86_64","installer_updates":false,"name":"SLES12-SP3-BCL-Updates","distro_target":"sle-12-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-SP3-BCL/x86_64/update/","enabled":true,"id":2696},{"name":"SLES12-SP3-BCL-Debuginfo-Updates","installer_updates":false,"description":"SLES12-SP3-BCL-Debuginfo-Updates for sle-12-x86_64","enabled":false,"id":2697,"autorefresh":true,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-SP3-BCL/x86_64/update_debug/"},{"description":"SLES12-SP3-BCL-Pool for sle-12-x86_64","installer_updates":false,"name":"SLES12-SP3-BCL-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-SERVER/12-SP3-BCL/x86_64/product/","distro_target":"sle-12-x86_64","autorefresh":false,"id":2698,"enabled":true},{"name":"SLES12-SP3-BCL-Debuginfo-Pool","installer_updates":false,"description":"SLES12-SP3-BCL-Debuginfo-Pool for sle-12-x86_64","enabled":false,"id":2699,"autorefresh":false,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-SERVER/12-SP3-BCL/x86_64/product_debug/"},{"installer_updates":false,"name":"SLES12-SP3-BCL-Source-Pool","description":"SLES12-SP3-BCL-Source-Pool for sle-12-x86_64","id":2700,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-SERVER/12-SP3-BCL/x86_64/product_source/","distro_target":"sle-12-x86_64","autorefresh":false}],"offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Server BCL","former_identifier":"SLES-BCL","release_type":null,"friendly_name":"SUSE Linux Enterprise Server BCL 12 SP3 x86_64","migration_extra":false,"recommended":false,"version":"12.3","extensions":[],"release_stage":"released","identifier":"SLES-BCL","id":1618,"friendly_version":"12 SP3"},{"version":"12.3","recommended":false,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Real Time 12 SP3 x86_64","former_identifier":"SUSE-Linux-Enterprise-RT","release_type":null,"name":"SUSE Linux Enterprise Real Time","offline_predecessor_ids":[],"friendly_version":"12 SP3","identifier":"SUSE-Linux-Enterprise-RT","release_stage":"released","id":1619,"extensions":[],"shortname":"SLERT12 SP3","description":"SUSE Linux Enterprise Real Time 12 SP3.","free":false,"arch":"x86_64","eula_url":"https://updates.suse.com/SUSE/Products/SLE-RT/12-SP3/x86_64/product.license/","online_predecessor_ids":[1438],"repositories":[{"enabled":true,"id":2701,"distro_target":"sle-12-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-RT/12-SP3/x86_64/update/","installer_updates":false,"name":"SLE-RT12-SP3-Updates","description":"SLE-RT12-SP3-Updates for sle-12-x86_64"},{"name":"SLE-RT12-SP3-Debuginfo-Updates","installer_updates":false,"description":"SLE-RT12-SP3-Debuginfo-Updates for sle-12-x86_64","enabled":false,"id":2702,"autorefresh":true,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-RT/12-SP3/x86_64/update_debug/"},{"installer_updates":false,"name":"SLE-RT12-SP3-Pool","description":"SLE-RT12-SP3-Pool for sle-12-x86_64","id":2703,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-RT/12-SP3/x86_64/product/","distro_target":"sle-12-x86_64","autorefresh":false},{"autorefresh":false,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-RT/12-SP3/x86_64/product_debug/","enabled":false,"id":2704,"description":"SLE-RT12-SP3-Debuginfo-Pool for sle-12-x86_64","name":"SLE-RT12-SP3-Debuginfo-Pool","installer_updates":false}],"product_class":"SUSE_RT","predecessor_ids":[1438],"cpe":"cpe:/o:suse:suse-linux-enterprise-rt:12:sp3","product_type":"extension"},{"predecessor_ids":[],"online_predecessor_ids":[],"repositories":[{"id":2727,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SUSE-Manager-Server/3.1/ppc64le/update/","autorefresh":true,"distro_target":"sle-12-ppc64le","name":"SUSE-Manager-Server-3.1-Updates","installer_updates":false,"description":"SUSE-Manager-Server-3.1-Updates for sle-12-ppc64le"},{"installer_updates":false,"name":"SUSE-Manager-Server-3.1-Debuginfo-Updates","description":"SUSE-Manager-Server-3.1-Debuginfo-Updates for sle-12-ppc64le","id":2728,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SUSE-Manager-Server/3.1/ppc64le/update_debug/","distro_target":"sle-12-ppc64le","autorefresh":true},{"id":2729,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SUSE-Manager-Server/3.1/ppc64le/product/","autorefresh":false,"distro_target":"sle-12-ppc64le","name":"SUSE-Manager-Server-3.1-Pool","installer_updates":false,"description":"SUSE-Manager-Server-3.1-Pool for sle-12-ppc64le"},{"description":"SUSE-Manager-Server-3.1-Debuginfo-Pool for sle-12-ppc64le","installer_updates":false,"name":"SUSE-Manager-Server-3.1-Debuginfo-Pool","distro_target":"sle-12-ppc64le","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SUSE-Manager-Server/3.1/ppc64le/product_debug/","enabled":false,"id":2730},{"description":"SUSE-Manager-Server-3.1-Source-Pool for sle-12-ppc64le","name":"SUSE-Manager-Server-3.1-Source-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SUSE-Manager-Server/3.1/ppc64le/product_source/","autorefresh":false,"distro_target":"sle-12-ppc64le","id":2731,"enabled":false}],"product_class":"SMS-PPC","product_type":"extension","cpe":"cpe:/o:suse:suse-manager-server:3.1","free":false,"description":"SUSE Manager lets you efficiently manage physical, virtual, and cloud-based Linux systems. It provides automated and cost-effective configuration and software management, asset management, and system provisioning.","shortname":"SUSE Manager Server","eula_url":"https://updates.suse.com/SUSE/Products/SUSE-Manager-Server/3.1/ppc64le/product.license/","arch":"ppc64le","friendly_version":"3.1","extensions":[],"release_stage":"released","identifier":"SUSE-Manager-Server","id":1622,"recommended":false,"version":"3.1","offline_predecessor_ids":[],"name":"SUSE Manager Server","release_type":null,"former_identifier":"SUSE-Manager-Server","friendly_name":"SUSE Manager Server 3.1 ppc64le","migration_extra":false},{"eula_url":"https://updates.suse.com/SUSE/Products/SLE-SERVER/12-SP3-TERADATA/x86_64/product.license/","arch":"x86_64","shortname":"SLES12-SP3 Teradata","description":"SUSE Linux Enterprise offers a comprehensive suite of products built on a single code base. The platform addresses business needs from the smallest thin-client devices to the world's most powerful high-performance computing and mainframe servers. SUSE Linux Enterprise offers common management tools and technology certifications across the platform, and each product is enterprise-class.","free":false,"cpe":"cpe:/o:suse:sles_teradata:12:sp3","product_type":"base","predecessor_ids":[],"product_class":"Teradata","online_predecessor_ids":[],"repositories":[{"description":"SLES12-SP3-Teradata-Updates for sle-12-x86_64","installer_updates":false,"name":"SLES12-SP3-Teradata-Updates","url":"https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-SP3-TERADATA/x86_64/update/","distro_target":"sle-12-x86_64","autorefresh":true,"id":2732,"enabled":true},{"url":"https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-SP3-TERADATA/x86_64/update_debug/","distro_target":"sle-12-x86_64","autorefresh":true,"id":2733,"enabled":false,"description":"SLES12-SP3-Teradata-Debuginfo-Updates for sle-12-x86_64","installer_updates":false,"name":"SLES12-SP3-Teradata-Debuginfo-Updates"},{"installer_updates":false,"name":"SLES12-SP3-Teradata-Pool","description":"SLES12-SP3-Teradata-Pool for sle-12-x86_64","id":2734,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-SERVER/12-SP3-TERADATA/x86_64/product/","distro_target":"sle-12-x86_64","autorefresh":false},{"name":"SLES12-SP3-Teradata-Debuginfo-Pool","installer_updates":false,"description":"SLES12-SP3-Teradata-Debuginfo-Pool for sle-12-x86_64","enabled":false,"id":2735,"autorefresh":false,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-SERVER/12-SP3-TERADATA/x86_64/product_debug/"},{"description":"SLES12-SP3-Teradata-Source-Pool for sle-12-x86_64","installer_updates":false,"name":"SLES12-SP3-Teradata-Source-Pool","distro_target":"sle-12-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-SERVER/12-SP3-TERADATA/x86_64/product_source/","enabled":false,"id":2736}],"name":"SUSE Linux Enterprise Server Teradata","offline_predecessor_ids":[],"friendly_name":"SUSE Linux Enterprise Server Teradata 12 SP3 x86_64","migration_extra":false,"former_identifier":"SLES_TERADATA","release_type":null,"recommended":false,"version":"12.3","extensions":[{"id":1624,"release_stage":"released","identifier":"sle-module-teradata","extensions":[],"friendly_version":"12","former_identifier":"sle-module-teradata","release_type":null,"migration_extra":false,"friendly_name":"Teradata Module 12 x86_64","offline_predecessor_ids":[],"name":"Teradata Module","version":"12","recommended":false,"product_type":"module","cpe":"cpe:/o:suse:sle-module-teradata:12","repositories":[{"description":"SLE-Module-Teradata12-Updates for sle-12-x86_64","name":"SLE-Module-Teradata12-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Teradata/12/x86_64/update/","enabled":true,"id":2737},{"description":"SLE-Module-Teradata12-Debuginfo-Updates for sle-12-x86_64","installer_updates":false,"name":"SLE-Module-Teradata12-Debuginfo-Updates","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Teradata/12/x86_64/update_debug/","distro_target":"sle-12-x86_64","autorefresh":true,"id":2738,"enabled":false},{"name":"SLE-Module-Teradata12-Pool","installer_updates":false,"description":"SLE-Module-Teradata12-Pool for sle-12-x86_64","enabled":true,"id":2739,"autorefresh":false,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Teradata/12/x86_64/product/"},{"autorefresh":false,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Teradata/12/x86_64/product_debug/","enabled":false,"id":2740,"description":"SLE-Module-Teradata12-Debuginfo-Pool for sle-12-x86_64","name":"SLE-Module-Teradata12-Debuginfo-Pool","installer_updates":false},{"distro_target":"sle-12-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Teradata/12/x86_64/product_source/","enabled":false,"id":2741,"description":"SLE-Module-Teradata12-Source-Pool for sle-12-x86_64","installer_updates":false,"name":"SLE-Module-Teradata12-Source-Pool"}],"online_predecessor_ids":[],"product_class":"Teradata","predecessor_ids":[],"arch":"x86_64","eula_url":"","free":false,"shortname":"Teradata-Module","description":"

The SUSE Linux Enterprise Teradata Module delivers a ...

Access to the Teradata Module is included in your SUSE Linux Enterprise Server Teradata subscription.

"}],"release_stage":"released","id":1623,"identifier":"SLES_TERADATA","friendly_version":"12 SP3"},{"extensions":[],"identifier":"sle-module-teradata","release_stage":"released","id":1624,"friendly_version":"12","name":"Teradata Module","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"Teradata Module 12 x86_64","release_type":null,"former_identifier":"sle-module-teradata","recommended":false,"version":"12","cpe":"cpe:/o:suse:sle-module-teradata:12","product_type":"module","predecessor_ids":[],"online_predecessor_ids":[],"repositories":[{"enabled":true,"id":2737,"distro_target":"sle-12-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Teradata/12/x86_64/update/","installer_updates":false,"name":"SLE-Module-Teradata12-Updates","description":"SLE-Module-Teradata12-Updates for sle-12-x86_64"},{"autorefresh":true,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Teradata/12/x86_64/update_debug/","enabled":false,"id":2738,"description":"SLE-Module-Teradata12-Debuginfo-Updates for sle-12-x86_64","name":"SLE-Module-Teradata12-Debuginfo-Updates","installer_updates":false},{"enabled":true,"id":2739,"distro_target":"sle-12-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Teradata/12/x86_64/product/","installer_updates":false,"name":"SLE-Module-Teradata12-Pool","description":"SLE-Module-Teradata12-Pool for sle-12-x86_64"},{"distro_target":"sle-12-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Teradata/12/x86_64/product_debug/","enabled":false,"id":2740,"description":"SLE-Module-Teradata12-Debuginfo-Pool for sle-12-x86_64","installer_updates":false,"name":"SLE-Module-Teradata12-Debuginfo-Pool"},{"name":"SLE-Module-Teradata12-Source-Pool","installer_updates":false,"description":"SLE-Module-Teradata12-Source-Pool for sle-12-x86_64","id":2741,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Teradata/12/x86_64/product_source/","autorefresh":false,"distro_target":"sle-12-x86_64"}],"product_class":"Teradata","eula_url":"","arch":"x86_64","shortname":"Teradata-Module","description":"

The SUSE Linux Enterprise Teradata Module delivers a ...

Access to the Teradata Module is included in your SUSE Linux Enterprise Server Teradata subscription.

","free":false},{"free":false,"description":"SUSE Linux Enterprise offers a comprehensive suite of products built on a single code base. The platform addresses business needs from the smallest thin-client devices to the world's most powerful high-performance computing and mainframe servers. SUSE Linux Enterprise offers common management tools and technology certifications across the platform, and each product is enterprise-class.","shortname":"SLES12-SP4","arch":"x86_64","eula_url":"https://updates.suse.com/SUSE/Products/SLE-SERVER/12-SP4/x86_64/product.license/","repositories":[{"id":2769,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-SP4/x86_64/update/","autorefresh":true,"distro_target":"sle-12-x86_64","name":"SLES12-SP4-Updates","installer_updates":false,"description":"SLES12-SP4-Updates for sle-12-x86_64"},{"id":2770,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-SP4/x86_64/update_debug/","autorefresh":true,"distro_target":"sle-12-x86_64","name":"SLES12-SP4-Debuginfo-Updates","installer_updates":false,"description":"SLES12-SP4-Debuginfo-Updates for sle-12-x86_64"},{"description":"SLES12-SP4-Installer-Updates for sle-12-x86_64","installer_updates":true,"name":"SLES12-SP4-Installer-Updates","url":"https://updates.suse.com/SUSE/Updates/SLE-SERVER-INSTALLER/12-SP4/x86_64/update/","distro_target":"sle-12-x86_64","autorefresh":true,"id":2771,"enabled":false},{"description":"SLES12-SP4-Pool for sle-12-x86_64","installer_updates":false,"name":"SLES12-SP4-Pool","distro_target":"sle-12-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-SERVER/12-SP4/x86_64/product/","enabled":true,"id":2772},{"description":"SLES12-SP4-Debuginfo-Pool for sle-12-x86_64","name":"SLES12-SP4-Debuginfo-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-SERVER/12-SP4/x86_64/product_debug/","autorefresh":false,"distro_target":"sle-12-x86_64","id":2773,"enabled":false},{"url":"https://updates.suse.com/SUSE/Products/SLE-SERVER/12-SP4/x86_64/product_source/","autorefresh":false,"distro_target":"sle-12-x86_64","id":2774,"enabled":false,"description":"SLES12-SP4-Source-Pool for sle-12-x86_64","name":"SLES12-SP4-Source-Pool","installer_updates":false}],"online_predecessor_ids":[1117,1322,1357,1421],"product_class":"7261","predecessor_ids":[1117,1322,1357,1421],"product_type":"base","cpe":"cpe:/o:suse:sles:12:sp4","version":"12.4","recommended":false,"release_type":null,"former_identifier":"SLES","friendly_name":"SUSE Linux Enterprise Server 12 SP4 x86_64","migration_extra":false,"offline_predecessor_ids":[690,769,814,824,1300],"name":"SUSE Linux Enterprise Server","friendly_version":"12 SP4","id":1625,"release_stage":"released","identifier":"SLES","extensions":[{"recommended":false,"version":"12","offline_predecessor_ids":[],"name":"Legacy Module","release_type":null,"former_identifier":"sle-module-legacy","migration_extra":false,"friendly_name":"Legacy Module 12 x86_64","friendly_version":"12","extensions":[],"identifier":"sle-module-legacy","release_stage":"released","id":1150,"free":true,"shortname":"Legacy-Module","description":"

The Legacy Module helps you migrating applications from SUSE Linux Enterprise 10 and 11 and other systems to SUSE Linux Enterprise 12, by providing packages which are discontinued on SUSE Linux Enterprise Server, such as: sendmail, syslog-ng, IBM Java6, and a number of libraries (for example openssl-0.9.8).

Access to the Legacy Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself. Packages in the this module are usually supported for at most three years. Support for Sendmail and IBM Java 6 will end in September 2017 the latest.

","eula_url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/12/x86_64/product.license/","arch":"x86_64","predecessor_ids":[],"online_predecessor_ids":[],"product_class":"MODULE","repositories":[{"name":"SLE-Module-Legacy12-Updates","installer_updates":false,"description":"SLE-Module-Legacy12-Updates for sle-12-x86_64","enabled":true,"id":1676,"autorefresh":true,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/12/x86_64/update/"},{"distro_target":"sle-12-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/12/x86_64/update_debug/","enabled":false,"id":1677,"description":"SLE-Module-Legacy12-Debuginfo-Updates for sle-12-x86_64","installer_updates":false,"name":"SLE-Module-Legacy12-Debuginfo-Updates"},{"description":"SLE-Module-Legacy12-Pool for sle-12-x86_64","installer_updates":false,"name":"SLE-Module-Legacy12-Pool","distro_target":"sle-12-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/12/x86_64/product/","enabled":true,"id":1678},{"installer_updates":false,"name":"SLE-Module-Legacy12-Debuginfo-Pool","description":"SLE-Module-Legacy12-Debuginfo-Pool for sle-12-x86_64","id":1679,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/12/x86_64/product_debug/","distro_target":"sle-12-x86_64","autorefresh":false},{"enabled":false,"id":1989,"autorefresh":false,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/12/x86_64/product_source/","name":"SLE-Module-Legacy12-Source-Pool","installer_updates":false,"description":"SLE-Module-Legacy12-Source-Pool for sle-12-x86_64"}],"product_type":"module","cpe":"cpe:/o:suse:sle-module-legacy:12"},{"eula_url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/12/x86_64/product.license/","arch":"x86_64","free":true,"description":"

The SUSE Linux Enterprise Web and Scripting Module delivers a comprehensive suite of scripting languages, frameworks, and related tools helping developers and systems administrators accelerate the creation of stable, modern web applications, using dynamic languages, such as PHP, Ruby on Rails, and Python.

Access to the Web and Scripting Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself: Package versions in the this module are usually supported for at most three years. We are planning to release more recent versions on a schedule of approximately 18 month; the exact dates may differ per package.

","shortname":"Web-and-Scripting-Module","product_type":"module","cpe":"cpe:/o:suse:sle-module-web-scripting:12","predecessor_ids":[],"online_predecessor_ids":[],"product_class":"MODULE","repositories":[{"id":1688,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/12/x86_64/update/","distro_target":"sle-12-x86_64","autorefresh":true,"installer_updates":false,"name":"SLE-Module-Web-Scripting12-Updates","description":"SLE-Module-Web-Scripting12-Updates for sle-12-x86_64"},{"name":"SLE-Module-Web-Scripting12-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-Web-Scripting12-Debuginfo-Updates for sle-12-x86_64","enabled":false,"id":1689,"autorefresh":true,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/12/x86_64/update_debug/"},{"autorefresh":false,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/12/x86_64/product/","enabled":true,"id":1690,"description":"SLE-Module-Web-Scripting12-Pool for sle-12-x86_64","name":"SLE-Module-Web-Scripting12-Pool","installer_updates":false},{"description":"SLE-Module-Web-Scripting12-Debuginfo-Pool for sle-12-x86_64","name":"SLE-Module-Web-Scripting12-Debuginfo-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/12/x86_64/product_debug/","enabled":false,"id":1691},{"name":"SLE-Module-Web-Scripting12-Source-Pool","installer_updates":false,"description":"SLE-Module-Web-Scripting12-Source-Pool for sle-12-x86_64","id":1992,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/12/x86_64/product_source/","autorefresh":false,"distro_target":"sle-12-x86_64"}],"offline_predecessor_ids":[],"name":"Web and Scripting Module","release_type":null,"former_identifier":"sle-module-web-scripting","friendly_name":"Web and Scripting Module 12 x86_64","migration_extra":false,"recommended":false,"version":"12","extensions":[],"identifier":"sle-module-web-scripting","release_stage":"released","id":1153,"friendly_version":"12"},{"name":"Advanced Systems Management Module","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"Advanced Systems Management Module 12 x86_64","former_identifier":"sle-module-adv-systems-management","release_type":null,"recommended":false,"version":"12","extensions":[],"release_stage":"released","id":1212,"identifier":"sle-module-adv-systems-management","friendly_version":"12","eula_url":"","arch":"x86_64","description":"

This Module contains current versions of the popular configuration management frameworks Puppet and CFEngine as well as the new systems management toolbox called machinery.

The machinery tool will be frequently updated and is SUSE's upcoming systems management toolbox for inspecting and validating systems remotely, storing their system description and creating new systems to deploy them in datacenters and clouds.

","shortname":"Adv-Sys-Mgmt-Module","free":true,"cpe":"cpe:/o:suse:sle-module-adv-systems-management:12","product_type":"module","predecessor_ids":[],"online_predecessor_ids":[],"product_class":"MODULE","repositories":[{"description":"SLE-Module-Adv-Systems-Management12-Updates for sle-12-x86_64","installer_updates":false,"name":"SLE-Module-Adv-Systems-Management12-Updates","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Adv-Systems-Management/12/x86_64/update/","distro_target":"sle-12-x86_64","autorefresh":true,"id":1704,"enabled":true},{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Adv-Systems-Management/12/x86_64/update_debug/","distro_target":"sle-12-x86_64","autorefresh":true,"id":1705,"enabled":false,"description":"SLE-Module-Adv-Systems-Management12-Debuginfo-Updates for sle-12-x86_64","installer_updates":false,"name":"SLE-Module-Adv-Systems-Management12-Debuginfo-Updates"},{"installer_updates":false,"name":"SLE-Module-Adv-Systems-Management12-Pool","description":"SLE-Module-Adv-Systems-Management12-Pool for sle-12-x86_64","enabled":true,"id":1706,"distro_target":"sle-12-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Adv-Systems-Management/12/x86_64/product/"},{"id":1707,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Adv-Systems-Management/12/x86_64/product_debug/","autorefresh":false,"distro_target":"sle-12-x86_64","name":"SLE-Module-Adv-Systems-Management12-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-Adv-Systems-Management12-Debuginfo-Pool for sle-12-x86_64"},{"description":"SLE-Module-Adv-Systems-Management12-Source-Pool for sle-12-x86_64","installer_updates":false,"name":"SLE-Module-Adv-Systems-Management12-Source-Pool","distro_target":"sle-12-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Adv-Systems-Management/12/x86_64/product_source/","enabled":false,"id":1998}]},{"cpe":"cpe:/o:suse:sle-module-public-cloud:12","product_type":"module","online_predecessor_ids":[],"product_class":"MODULE","repositories":[{"id":1700,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/12/x86_64/update/","distro_target":"sle-12-x86_64","autorefresh":true,"installer_updates":false,"name":"SLE-Module-Public-Cloud12-Updates","description":"SLE-Module-Public-Cloud12-Updates for sle-12-x86_64"},{"id":1701,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/12/x86_64/update_debug/","autorefresh":true,"distro_target":"sle-12-x86_64","name":"SLE-Module-Public-Cloud12-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-Public-Cloud12-Debuginfo-Updates for sle-12-x86_64"},{"description":"SLE-Module-Public-Cloud12-Pool for sle-12-x86_64","name":"SLE-Module-Public-Cloud12-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/12/x86_64/product/","autorefresh":false,"distro_target":"sle-12-x86_64","id":1702,"enabled":true},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/12/x86_64/product_debug/","distro_target":"sle-12-x86_64","autorefresh":false,"id":1703,"enabled":false,"description":"SLE-Module-Public-Cloud12-Debuginfo-Pool for sle-12-x86_64","installer_updates":false,"name":"SLE-Module-Public-Cloud12-Debuginfo-Pool"},{"id":1995,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/12/x86_64/product_source/","distro_target":"sle-12-x86_64","autorefresh":false,"installer_updates":false,"name":"SLE-Module-Public-Cloud12-Source-Pool","description":"SLE-Module-Public-Cloud12-Source-Pool for sle-12-x86_64"}],"predecessor_ids":[],"arch":"x86_64","eula_url":"","shortname":"Public-Cloud-Module","description":"

The Public Cloud Module is a collection of tools that enables you to create and manage cloud images from the commandline on SUSE Linux Enterprise Server. When building your own images with KIWI or SUSE Studio, initialization code specific to the target cloud is included in that image.

Access to the Public Cloud Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself; please check the Release Notes for further details.

","free":true,"release_stage":"released","identifier":"sle-module-public-cloud","id":1220,"extensions":[],"friendly_version":"12","friendly_name":"Public Cloud Module 12 x86_64","migration_extra":false,"former_identifier":"sle-module-public-cloud","release_type":null,"name":"Public Cloud Module","offline_predecessor_ids":[],"version":"12","recommended":false},{"version":"12","recommended":false,"migration_extra":false,"friendly_name":"Containers Module 12 x86_64","release_type":null,"former_identifier":"sle-module-containers","name":"Containers Module","offline_predecessor_ids":[],"friendly_version":"12","id":1332,"release_stage":"released","identifier":"sle-module-containers","extensions":[],"description":"

This Module contains several packages revolving around containers and related tools.

","shortname":"Containers-Module","free":true,"arch":"x86_64","eula_url":"","product_class":"MODULE","online_predecessor_ids":[],"repositories":[{"id":1864,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/12/x86_64/update/","distro_target":"sle-12-x86_64","autorefresh":true,"installer_updates":false,"name":"SLE-Module-Containers12-Updates","description":"SLE-Module-Containers12-Updates for sle-12-x86_64"},{"autorefresh":true,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/12/x86_64/update_debug/","enabled":false,"id":1865,"description":"SLE-Module-Containers12-Debuginfo-Updates for sle-12-x86_64","name":"SLE-Module-Containers12-Debuginfo-Updates","installer_updates":false},{"description":"SLE-Module-Containers12-Pool for sle-12-x86_64","installer_updates":false,"name":"SLE-Module-Containers12-Pool","distro_target":"sle-12-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/12/x86_64/product/","enabled":true,"id":1866},{"id":1867,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/12/x86_64/product_debug/","distro_target":"sle-12-x86_64","autorefresh":false,"installer_updates":false,"name":"SLE-Module-Containers12-Debuginfo-Pool","description":"SLE-Module-Containers12-Debuginfo-Pool for sle-12-x86_64"},{"description":"SLE-Module-Containers12-Source-Pool for sle-12-x86_64","name":"SLE-Module-Containers12-Source-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/12/x86_64/product_source/","autorefresh":false,"distro_target":"sle-12-x86_64","id":1957,"enabled":false}],"predecessor_ids":[],"cpe":"cpe:/o:suse:sle-module-containers:12","product_type":"module"},{"friendly_version":"12","release_stage":"released","id":1341,"identifier":"sle-module-toolchain","extensions":[],"version":"12","recommended":false,"release_type":null,"former_identifier":"sle-module-toolchain","friendly_name":"Toolchain Module 12 x86_64","migration_extra":false,"offline_predecessor_ids":[],"name":"Toolchain Module","repositories":[{"description":"SLE-Module-Toolchain12-Updates for sle-12-x86_64","installer_updates":false,"name":"SLE-Module-Toolchain12-Updates","distro_target":"sle-12-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Toolchain/12/x86_64/update/","enabled":true,"id":1903},{"installer_updates":false,"name":"SLE-Module-Toolchain12-Debuginfo-Updates","description":"SLE-Module-Toolchain12-Debuginfo-Updates for sle-12-x86_64","id":1904,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Toolchain/12/x86_64/update_debug/","distro_target":"sle-12-x86_64","autorefresh":true},{"distro_target":"sle-12-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Toolchain/12/x86_64/product/","enabled":true,"id":1905,"description":"SLE-Module-Toolchain12-Pool for sle-12-x86_64","installer_updates":false,"name":"SLE-Module-Toolchain12-Pool"},{"enabled":false,"id":1906,"autorefresh":false,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Toolchain/12/x86_64/product_debug/","name":"SLE-Module-Toolchain12-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-Toolchain12-Debuginfo-Pool for sle-12-x86_64"}],"online_predecessor_ids":[],"product_class":"MODULE","predecessor_ids":[],"product_type":"module","cpe":"cpe:/o:suse:sle-module-toolchain:12","free":true,"shortname":"Toolchain-Module","description":"Via this Module you will have access to a more recent GCC and Toolchain in addition to the default compiler of SUSE Linux Enterprise. Access to the Toolchain Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself. Please check the Release Notes for further details.","arch":"x86_64","eula_url":""},{"version":"12.2","recommended":false,"friendly_name":"SUSE Linux Enterprise Point of Service Image Server 12 SP2 x86_64","migration_extra":false,"former_identifier":"sle-pos","release_type":null,"name":"SUSE Linux Enterprise Point of Service Image Server","offline_predecessor_ids":[],"friendly_version":"12 SP2","release_stage":"released","id":1439,"identifier":"sle-pos","extensions":[],"description":"SUSE Linux Enterprise Point of Service Image Server","shortname":"SLEPOS12","free":false,"arch":"x86_64","eula_url":"https://updates.suse.com/SUSE/Products/SLE-POS/12-SP2/x86_64/product.license/","product_class":"10040","online_predecessor_ids":[],"repositories":[{"url":"https://updates.suse.com/SUSE/Updates/SLE-POS/12-SP2/x86_64/update/","distro_target":"sle-12-x86_64","autorefresh":true,"id":2289,"enabled":true,"description":"SLE-POS12-SP2-Updates for sle-12-x86_64","installer_updates":false,"name":"SLE-POS12-SP2-Updates"},{"installer_updates":false,"name":"SLE-POS12-SP2-Debuginfo-Updates","description":"SLE-POS12-SP2-Debuginfo-Updates for sle-12-x86_64","enabled":false,"id":2290,"distro_target":"sle-12-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-POS/12-SP2/x86_64/update_debug/"},{"id":2291,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-POS/12-SP2/x86_64/product/","autorefresh":false,"distro_target":"sle-12-x86_64","name":"SLE-POS12-SP2-Pool","installer_updates":false,"description":"SLE-POS12-SP2-Pool for sle-12-x86_64"},{"id":2292,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-POS/12-SP2/x86_64/product_debug/","distro_target":"sle-12-x86_64","autorefresh":false,"installer_updates":false,"name":"SLE-POS12-SP2-Debuginfo-Pool","description":"SLE-POS12-SP2-Debuginfo-Pool for sle-12-x86_64"},{"description":"SLE-POS12-SP2-Source-Pool for sle-12-x86_64","installer_updates":false,"name":"SLE-POS12-SP2-Source-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-POS/12-SP2/x86_64/product_source/","distro_target":"sle-12-x86_64","autorefresh":false,"id":2293,"enabled":false},{"autorefresh":true,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-POS/12-SP2-CLIENT/x86_64/update/","enabled":true,"id":3130,"description":"SLE-POS12-SP2-CLIENT-Updates for sle-12-x86_64","name":"SLE-POS12-SP2-CLIENT-Updates","installer_updates":false},{"description":"SLE-POS12-SP2-CLIENT-Debuginfo-Updates for sle-12-x86_64","name":"SLE-POS12-SP2-CLIENT-Debuginfo-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-POS/12-SP2-CLIENT/x86_64/update_debug/","enabled":false,"id":3131}],"predecessor_ids":[],"cpe":"cpe:/o:suse:sle-pos:12:sp2","product_type":"extension"},{"cpe":"cpe:/o:suse:sle-module-hpc:12","product_type":"module","online_predecessor_ids":[],"product_class":"MODULE","repositories":[{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-HPC/12/x86_64/update/","autorefresh":true,"distro_target":"sle-12-x86_64","id":2294,"enabled":true,"description":"SLE-Module-HPC12-Updates for sle-12-x86_64","name":"SLE-Module-HPC12-Updates","installer_updates":false},{"installer_updates":false,"name":"SLE-Module-HPC12-Debuginfo-Updates","description":"SLE-Module-HPC12-Debuginfo-Updates for sle-12-x86_64","id":2295,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-HPC/12/x86_64/update_debug/","distro_target":"sle-12-x86_64","autorefresh":true},{"id":2296,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-HPC/12/x86_64/product/","distro_target":"sle-12-x86_64","autorefresh":false,"installer_updates":false,"name":"SLE-Module-HPC12-Pool","description":"SLE-Module-HPC12-Pool for sle-12-x86_64"},{"name":"SLE-Module-HPC12-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-HPC12-Debuginfo-Pool for sle-12-x86_64","id":2297,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-HPC/12/x86_64/product_debug/","autorefresh":false,"distro_target":"sle-12-x86_64"},{"description":"SLE-Module-HPC12-Source-Pool for sle-12-x86_64","name":"SLE-Module-HPC12-Source-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-HPC/12/x86_64/product_source/","autorefresh":false,"distro_target":"sle-12-x86_64","id":2298,"enabled":false}],"predecessor_ids":[],"arch":"x86_64","eula_url":"https://updates.suse.com/SUSE/Products/SLE-Module-HPC/12/x86_64/product.license/","shortname":"HPC-Module","description":"The SUSE Linux Enterprise Server High Performance Computing (HPC) module delivers specific tools commonly used for high performance, numerically intensive workloads. SUSE packages these tools in the SLES HPC Module to provide greater flexibility to deliver new versions or new tools more rapidly than the standard SUSE Linux Enterprise lifecycle would permit. Packages in this module are general supported till a newer version of the package is released or the package is dropped from the module.","free":true,"identifier":"sle-module-hpc","release_stage":"released","id":1440,"extensions":[],"friendly_version":"12","friendly_name":"HPC Module 12 x86_64","migration_extra":false,"release_type":null,"former_identifier":"sle-module-hpc","name":"HPC Module","offline_predecessor_ids":[],"version":"12","recommended":false},{"product_type":"extension","cpe":"cpe:/o:suse:suse-manager-server:3.1","predecessor_ids":[1349],"online_predecessor_ids":[1349],"repositories":[{"id":2400,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SUSE-Manager-Server/3.1/x86_64/update/","distro_target":"sle-12-x86_64","autorefresh":true,"installer_updates":false,"name":"SUSE-Manager-Server-3.1-Updates","description":"SUSE-Manager-Server-3.1-Updates for sle-12-x86_64"},{"distro_target":"sle-12-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SUSE-Manager-Server/3.1/x86_64/update_debug/","enabled":false,"id":2401,"description":"SUSE-Manager-Server-3.1-Debuginfo-Updates for sle-12-x86_64","installer_updates":false,"name":"SUSE-Manager-Server-3.1-Debuginfo-Updates"},{"description":"SUSE-Manager-Server-3.1-Pool for sle-12-x86_64","name":"SUSE-Manager-Server-3.1-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SUSE-Manager-Server/3.1/x86_64/product/","autorefresh":false,"distro_target":"sle-12-x86_64","id":2402,"enabled":true},{"installer_updates":false,"name":"SUSE-Manager-Server-3.1-Debuginfo-Pool","description":"SUSE-Manager-Server-3.1-Debuginfo-Pool for sle-12-x86_64","id":2403,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SUSE-Manager-Server/3.1/x86_64/product_debug/","distro_target":"sle-12-x86_64","autorefresh":false},{"installer_updates":false,"name":"SUSE-Manager-Server-3.1-Source-Pool","description":"SUSE-Manager-Server-3.1-Source-Pool for sle-12-x86_64","id":2404,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SUSE-Manager-Server/3.1/x86_64/product_source/","distro_target":"sle-12-x86_64","autorefresh":false}],"product_class":"SMS-X86","eula_url":"https://updates.suse.com/SUSE/Products/SUSE-Manager-Server/3.1/x86_64/product.license/","arch":"x86_64","free":false,"description":"SUSE Manager lets you efficiently manage physical, virtual, and cloud-based Linux systems. It provides automated and cost-effective configuration and software management, asset management, and system provisioning.","shortname":"SUSE Manager Server","extensions":[],"release_stage":"released","id":1518,"identifier":"SUSE-Manager-Server","friendly_version":"3.1","offline_predecessor_ids":[],"name":"SUSE Manager Server","release_type":null,"former_identifier":"SUSE-Manager-Server","friendly_name":"SUSE Manager Server 3.1 x86_64","migration_extra":false,"recommended":false,"version":"3.1"},{"repositories":[{"description":"SUSE-Manager-Proxy-3.1-Updates for sle-12-x86_64","name":"SUSE-Manager-Proxy-3.1-Updates","installer_updates":false,"url":"https://updates.suse.com/SUSE/Updates/SUSE-Manager-Proxy/3.1/x86_64/update/","autorefresh":true,"distro_target":"sle-12-x86_64","id":2410,"enabled":true},{"autorefresh":true,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Updates/SUSE-Manager-Proxy/3.1/x86_64/update_debug/","enabled":false,"id":2411,"description":"SUSE-Manager-Proxy-3.1-Debuginfo-Updates for sle-12-x86_64","name":"SUSE-Manager-Proxy-3.1-Debuginfo-Updates","installer_updates":false},{"id":2412,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SUSE-Manager-Proxy/3.1/x86_64/product/","autorefresh":false,"distro_target":"sle-12-x86_64","name":"SUSE-Manager-Proxy-3.1-Pool","installer_updates":false,"description":"SUSE-Manager-Proxy-3.1-Pool for sle-12-x86_64"},{"description":"SUSE-Manager-Proxy-3.1-Debuginfo-Pool for sle-12-x86_64","name":"SUSE-Manager-Proxy-3.1-Debuginfo-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Products/SUSE-Manager-Proxy/3.1/x86_64/product_debug/","enabled":false,"id":2413},{"description":"SUSE-Manager-Proxy-3.1-Source-Pool for sle-12-x86_64","name":"SUSE-Manager-Proxy-3.1-Source-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SUSE-Manager-Proxy/3.1/x86_64/product_source/","autorefresh":false,"distro_target":"sle-12-x86_64","id":2414,"enabled":false}],"online_predecessor_ids":[1352],"product_class":"SMP","predecessor_ids":[1352],"product_type":"extension","cpe":"cpe:/o:suse:suse-manager-proxy:3.1","free":false,"description":"SUSE Manager Proxies extend large and/or geographically dispersed SUSE Manager environments to reduce load on the SUSE Manager Server, lower bandwidth needs, and provide faster local updates.","shortname":"SUSE Manager Proxy","arch":"x86_64","eula_url":"https://updates.suse.com/SUSE/Products/SUSE-Manager-Proxy/3.1/x86_64/product.license/","friendly_version":"3.1","release_stage":"released","id":1520,"identifier":"SUSE-Manager-Proxy","extensions":[],"version":"3.1","recommended":false,"release_type":null,"former_identifier":"SUSE-Manager-Proxy","friendly_name":"SUSE Manager Proxy 3.1 x86_64","migration_extra":false,"offline_predecessor_ids":[],"name":"SUSE Manager Proxy"},{"friendly_version":"12 SP4","extensions":[],"release_stage":"released","identifier":"sle-sdk","id":1630,"recommended":false,"version":"12.4","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Software Development Kit","former_identifier":"sle-sdk","release_type":null,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Software Development Kit 12 SP4 x86_64","predecessor_ids":[1223,1323,1366,1427],"online_predecessor_ids":[1223,1323,1366,1427],"product_class":"MODULE","repositories":[{"enabled":true,"id":2799,"autorefresh":true,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-SDK/12-SP4/x86_64/update/","name":"SLE-SDK12-SP4-Updates","installer_updates":false,"description":"SLE-SDK12-SP4-Updates for sle-12-x86_64"},{"url":"https://updates.suse.com/SUSE/Updates/SLE-SDK/12-SP4/x86_64/update_debug/","autorefresh":true,"distro_target":"sle-12-x86_64","id":2800,"enabled":false,"description":"SLE-SDK12-SP4-Debuginfo-Updates for sle-12-x86_64","name":"SLE-SDK12-SP4-Debuginfo-Updates","installer_updates":false},{"installer_updates":false,"name":"SLE-SDK12-SP4-Pool","description":"SLE-SDK12-SP4-Pool for sle-12-x86_64","enabled":true,"id":2801,"distro_target":"sle-12-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-SDK/12-SP4/x86_64/product/"},{"installer_updates":false,"name":"SLE-SDK12-SP4-Debuginfo-Pool","description":"SLE-SDK12-SP4-Debuginfo-Pool for sle-12-x86_64","enabled":false,"id":2802,"distro_target":"sle-12-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-SDK/12-SP4/x86_64/product_debug/"},{"description":"SLE-SDK12-SP4-Source-Pool for sle-12-x86_64","installer_updates":false,"name":"SLE-SDK12-SP4-Source-Pool","distro_target":"sle-12-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-SDK/12-SP4/x86_64/product_source/","enabled":false,"id":2803}],"product_type":"extension","cpe":"cpe:/o:suse:sle-sdk:12:sp4","free":true,"description":"

SUSE Linux Enterprise Software Development Kit is the Software Development Kit for the family of SUSE Linux Enterprise products. It is a free of charge extension for partners and customers working with SUSE Linux Enterprise Server and Desktop and derived products.

Packages on the SDK are delivered without L3 support; maintenance updates will be done for critical security and critical non-security issues, and where needed to remain in sync with packages delivered in the SUSE Linux Enterprise Server and Desktop products.

Packages to rebuild SUSE Linux Enterprise Server are not part of the SUSE Linux Enterprise Software Development Kit.

","shortname":"SDK12-SP4","eula_url":"https://updates.suse.com/SUSE/Products/SLE-SDK/12-SP4/x86_64/product.license/","arch":"x86_64"},{"arch":"x86_64","eula_url":"https://updates.suse.com/SUSE/Products/SLE-HA/12-SP4/x86_64/product.license/","shortname":"SLEHA12-SP4","description":"SUSE Linux Enterprise High Availability Extension.","free":false,"cpe":"cpe:/o:suse:sle-ha:12:sp4","product_type":"extension","online_predecessor_ids":[1245,1324,1361,1432],"product_class":"SLE-HAE-X86","repositories":[{"description":"SLE-HA12-SP4-Updates for sle-12-x86_64","name":"SLE-HA12-SP4-Updates","installer_updates":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-HA/12-SP4/x86_64/update/","autorefresh":true,"distro_target":"sle-12-x86_64","id":2819,"enabled":true},{"installer_updates":false,"name":"SLE-HA12-SP4-Debuginfo-Updates","description":"SLE-HA12-SP4-Debuginfo-Updates for sle-12-x86_64","id":2820,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-HA/12-SP4/x86_64/update_debug/","distro_target":"sle-12-x86_64","autorefresh":true},{"description":"SLE-HA12-SP4-Pool for sle-12-x86_64","name":"SLE-HA12-SP4-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-HA/12-SP4/x86_64/product/","autorefresh":false,"distro_target":"sle-12-x86_64","id":2821,"enabled":true},{"description":"SLE-HA12-SP4-Debuginfo-Pool for sle-12-x86_64","name":"SLE-HA12-SP4-Debuginfo-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-HA/12-SP4/x86_64/product_debug/","enabled":false,"id":2822},{"id":2823,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-HA/12-SP4/x86_64/product_source/","autorefresh":false,"distro_target":"sle-12-x86_64","name":"SLE-HA12-SP4-Source-Pool","installer_updates":false,"description":"SLE-HA12-SP4-Source-Pool for sle-12-x86_64"}],"predecessor_ids":[1245,1324,1361,1432],"friendly_name":"SUSE Linux Enterprise High Availability Extension 12 SP4 x86_64","migration_extra":false,"release_type":null,"former_identifier":"sle-hae","name":"SUSE Linux Enterprise High Availability Extension","offline_predecessor_ids":[958,961,967,971,1256],"version":"12.4","recommended":false,"id":1634,"release_stage":"released","identifier":"sle-ha","extensions":[{"version":"12.4","recommended":false,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise High Availability GEO Extension 12 SP4 x86_64","release_type":null,"former_identifier":"sle-hae-geo","name":"SUSE Linux Enterprise High Availability GEO Extension","offline_predecessor_ids":[1101,1107,1286],"friendly_version":"12 SP4","id":1637,"release_stage":"released","identifier":"sle-ha-geo","extensions":[],"description":"SUSE Linux Enterprise High Availability Geographical Cluster Extension","shortname":"SLEHAGEO12-SP4","free":false,"arch":"x86_64","eula_url":"https://updates.suse.com/SUSE/Products/SLE-HA-GEO/12-SP4/x86_64/product.license/","product_class":"SLE-HAE-GEO","online_predecessor_ids":[1157,1337,1363,1435],"repositories":[{"distro_target":"sle-12-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-HA-GEO/12-SP4/x86_64/update/","enabled":true,"id":2834,"description":"SLE-HA-GEO12-SP4-Updates for sle-12-x86_64","installer_updates":false,"name":"SLE-HA-GEO12-SP4-Updates"},{"id":2835,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-HA-GEO/12-SP4/x86_64/update_debug/","autorefresh":true,"distro_target":"sle-12-x86_64","name":"SLE-HA-GEO12-SP4-Debuginfo-Updates","installer_updates":false,"description":"SLE-HA-GEO12-SP4-Debuginfo-Updates for sle-12-x86_64"},{"name":"SLE-HA-GEO12-SP4-Pool","installer_updates":false,"description":"SLE-HA-GEO12-SP4-Pool for sle-12-x86_64","enabled":true,"id":2836,"autorefresh":false,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-HA-GEO/12-SP4/x86_64/product/"},{"distro_target":"sle-12-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-HA-GEO/12-SP4/x86_64/product_debug/","enabled":false,"id":2837,"description":"SLE-HA-GEO12-SP4-Debuginfo-Pool for sle-12-x86_64","installer_updates":false,"name":"SLE-HA-GEO12-SP4-Debuginfo-Pool"},{"id":2838,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-HA-GEO/12-SP4/x86_64/product_source/","autorefresh":false,"distro_target":"sle-12-x86_64","name":"SLE-HA-GEO12-SP4-Source-Pool","installer_updates":false,"description":"SLE-HA-GEO12-SP4-Source-Pool for sle-12-x86_64"}],"predecessor_ids":[1157,1337,1363,1435],"cpe":"cpe:/o:suse:sle-ha-geo:12:sp4","product_type":"extension"}],"friendly_version":"12 SP4"},{"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Workstation Extension 12 SP4 x86_64","release_type":null,"former_identifier":"sle-we","name":"SUSE Linux Enterprise Workstation Extension","offline_predecessor_ids":[],"version":"12.4","recommended":false,"release_stage":"released","identifier":"sle-we","id":1639,"extensions":[],"friendly_version":"12 SP4","arch":"x86_64","eula_url":"https://updates.suse.com/SUSE/Products/SLE-WE/12-SP4/x86_64/product.license/","description":"SUSE Linux Enterprise Workstation Extension extends the functionality of SUSE Linux Enterprise Server with packages of SUSE Linux Enterprise Desktop, like additional desktop applications (office suite, email client, graphical editor ...) and libraries. It allows to combine both products to create a full featured Workstation.","shortname":"SLEWE12-SP4","free":false,"cpe":"cpe:/o:suse:sle-we:12:sp4","product_type":"extension","online_predecessor_ids":[1222,1338,1359,1431],"product_class":"SLE-WE","repositories":[{"description":"SLE-WE12-SP4-Updates for sle-12-x86_64","installer_updates":false,"name":"SLE-WE12-SP4-Updates","url":"https://updates.suse.com/SUSE/Updates/SLE-WE/12-SP4/x86_64/update/","distro_target":"sle-12-x86_64","autorefresh":true,"id":2844,"enabled":true},{"distro_target":"sle-12-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-WE/12-SP4/x86_64/update_debug/","enabled":false,"id":2845,"description":"SLE-WE12-SP4-Debuginfo-Updates for sle-12-x86_64","installer_updates":false,"name":"SLE-WE12-SP4-Debuginfo-Updates"},{"installer_updates":false,"name":"SLE-WE12-SP4-Pool","description":"SLE-WE12-SP4-Pool for sle-12-x86_64","enabled":true,"id":2846,"distro_target":"sle-12-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-WE/12-SP4/x86_64/product/"},{"distro_target":"sle-12-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-WE/12-SP4/x86_64/product_debug/","enabled":false,"id":2847,"description":"SLE-WE12-SP4-Debuginfo-Pool for sle-12-x86_64","installer_updates":false,"name":"SLE-WE12-SP4-Debuginfo-Pool"},{"distro_target":"sle-12-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-WE/12-SP4/x86_64/product_source/","enabled":false,"id":2848,"description":"SLE-WE12-SP4-Source-Pool for sle-12-x86_64","installer_updates":false,"name":"SLE-WE12-SP4-Source-Pool"},{"id":3529,"enabled":true,"url":"https://download.nvidia.com/suse/sle12sp4/","distro_target":null,"autorefresh":true,"installer_updates":false,"name":"SLE-12-SP4-GA-Desktop-nVidia-Driver","description":"SLE-12-SP4-GA-Desktop-nVidia-Driver"}],"predecessor_ids":[1222,1338,1359,1431]},{"friendly_name":"SUSE Cloud Application Platform Tools Module 12 x86_64","migration_extra":false,"release_type":null,"former_identifier":"sle-module-cap-tools","name":"SUSE Cloud Application Platform Tools Module","offline_predecessor_ids":[],"version":"12","recommended":false,"release_stage":"released","identifier":"sle-module-cap-tools","id":1678,"extensions":[],"friendly_version":"12","arch":"x86_64","eula_url":"","shortname":"SUSE-CAP-Tools-Module","description":"

The SUSE Cloud Application Platform Tools Module is a collection of tools that enables you to interact with the SUSE Cloud Application Platform product itself, providing the commandline client for instance.

Access to the SUSE Cloud Application Platform Tools Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself; please check the Release Notes for further details.

","free":true,"cpe":"cpe:/o:suse:sle-module-cap-tools:12","product_type":"module","online_predecessor_ids":[],"product_class":"MODULE","repositories":[{"description":"SLE-Module-CAP-Tools-12-Updates for sle-12-x86_64","installer_updates":false,"name":"SLE-Module-CAP-Tools-12-Updates","distro_target":"sle-12-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-CAP-Tools/12/x86_64/update/","enabled":true,"id":2912},{"name":"SLE-Module-CAP-Tools-12-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-CAP-Tools-12-Debuginfo-Updates for sle-12-x86_64","id":2913,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-CAP-Tools/12/x86_64/update_debug/","autorefresh":true,"distro_target":"sle-12-x86_64"},{"installer_updates":false,"name":"SLE-Module-CAP-Tools-12-Pool","description":"SLE-Module-CAP-Tools-12-Pool for sle-12-x86_64","id":2914,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-CAP-Tools/12/x86_64/product/","distro_target":"sle-12-x86_64","autorefresh":false},{"name":"SLE-Module-CAP-Tools-12-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-CAP-Tools-12-Debuginfo-Pool for sle-12-x86_64","id":2915,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-CAP-Tools/12/x86_64/product_debug/","autorefresh":false,"distro_target":"sle-12-x86_64"},{"description":"SLE-Module-CAP-Tools-12-Source-Pool for sle-12-x86_64","name":"SLE-Module-CAP-Tools-12-Source-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-CAP-Tools/12/x86_64/product_source/","autorefresh":false,"distro_target":"sle-12-x86_64","id":2916,"enabled":false}],"predecessor_ids":[]},{"recommended":false,"version":"3.2","name":"SUSE Manager Server","offline_predecessor_ids":[],"friendly_name":"SUSE Manager Server 3.2 x86_64","migration_extra":false,"former_identifier":"SUSE-Manager-Server","release_type":null,"friendly_version":"3.2","extensions":[],"release_stage":"released","identifier":"SUSE-Manager-Server","id":1724,"description":"SUSE Manager lets you efficiently manage physical, virtual, and cloud-based Linux systems. It provides automated and cost-effective configuration and software management, asset management, and system provisioning.","shortname":"SUSE Manager Server 3.2","free":false,"eula_url":"https://updates.suse.com/SUSE/Products/SUSE-Manager-Server/3.2/x86_64/product.license/","arch":"x86_64","predecessor_ids":[1518],"online_predecessor_ids":[1518],"product_class":"SMS-X86","repositories":[{"enabled":true,"id":2987,"distro_target":"sle-12-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SUSE-Manager-Server/3.2/x86_64/update/","installer_updates":false,"name":"SUSE-Manager-Server-3.2-Updates","description":"SUSE-Manager-Server-3.2-Updates for sle-12-x86_64"},{"id":2988,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SUSE-Manager-Server/3.2/x86_64/update_debug/","autorefresh":true,"distro_target":"sle-12-x86_64","name":"SUSE-Manager-Server-3.2-Debuginfo-Updates","installer_updates":false,"description":"SUSE-Manager-Server-3.2-Debuginfo-Updates for sle-12-x86_64"},{"distro_target":"sle-12-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SUSE-Manager-Server/3.2/x86_64/product/","enabled":true,"id":2989,"description":"SUSE-Manager-Server-3.2-Pool for sle-12-x86_64","installer_updates":false,"name":"SUSE-Manager-Server-3.2-Pool"},{"name":"SUSE-Manager-Server-3.2-Debuginfo-Pool","installer_updates":false,"description":"SUSE-Manager-Server-3.2-Debuginfo-Pool for sle-12-x86_64","id":2990,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SUSE-Manager-Server/3.2/x86_64/product_debug/","autorefresh":false,"distro_target":"sle-12-x86_64"},{"id":2991,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SUSE-Manager-Server/3.2/x86_64/product_source/","distro_target":"sle-12-x86_64","autorefresh":false,"installer_updates":false,"name":"SUSE-Manager-Server-3.2-Source-Pool","description":"SUSE-Manager-Server-3.2-Source-Pool for sle-12-x86_64"}],"cpe":"cpe:/o:suse:suse-manager-server:3.2","product_type":"extension"},{"offline_predecessor_ids":[],"name":"SUSE Manager Proxy","release_type":null,"former_identifier":"SUSE-Manager-Proxy","friendly_name":"SUSE Manager Proxy 3.2 x86_64","migration_extra":false,"recommended":false,"version":"3.2","extensions":[{"free":false,"shortname":"SUSE Manager Retail Branch Server 3.2","description":"The SUSE Manager for Retail Branch Server supports large and/or geographically dispersed SUSE Manager for Retail environments by reducing the load on the SUSE Manager Server, lowering bandwidth needs, and providing faster local updates.","eula_url":"https://updates.suse.com/SUSE/Products/SUSE-Manager-Retail-Branch-Server/3.2/x86_64/product.license/","arch":"x86_64","predecessor_ids":[],"online_predecessor_ids":[],"product_class":"SMRBS","repositories":[{"url":"https://updates.suse.com/SUSE/Updates/SUSE-Manager-Retail-Branch-Server/3.2/x86_64/update/","distro_target":"sle-12-x86_64","autorefresh":true,"id":3517,"enabled":true,"description":"SUSE-Manager-Retail-Branch-Server-3.2-Updates for sle-12-x86_64","installer_updates":false,"name":"SUSE-Manager-Retail-Branch-Server-3.2-Updates"},{"enabled":false,"id":3518,"autorefresh":true,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Updates/SUSE-Manager-Retail-Branch-Server/3.2/x86_64/update_debug/","name":"SUSE-Manager-Retail-Branch-Server-3.2-Debuginfo-Updates","installer_updates":false,"description":"SUSE-Manager-Retail-Branch-Server-3.2-Debuginfo-Updates for sle-12-x86_64"},{"enabled":true,"id":3519,"autorefresh":false,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Products/SUSE-Manager-Retail-Branch-Server/3.2/x86_64/product/","name":"SUSE-Manager-Retail-Branch-Server-3.2-Pool","installer_updates":false,"description":"SUSE-Manager-Retail-Branch-Server-3.2-Pool for sle-12-x86_64"},{"installer_updates":false,"name":"SUSE-Manager-Retail-Branch-Server-3.2-Debuginfo-Pool","description":"SUSE-Manager-Retail-Branch-Server-3.2-Debuginfo-Pool for sle-12-x86_64","id":3520,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SUSE-Manager-Retail-Branch-Server/3.2/x86_64/product_debug/","distro_target":"sle-12-x86_64","autorefresh":false},{"distro_target":"sle-12-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SUSE-Manager-Retail-Branch-Server/3.2/x86_64/product_source/","enabled":false,"id":3521,"description":"SUSE-Manager-Retail-Branch-Server-3.2-Source-Pool for sle-12-x86_64","installer_updates":false,"name":"SUSE-Manager-Retail-Branch-Server-3.2-Source-Pool"}],"product_type":"extension","cpe":"cpe:/o:suse:suse-manager-retail-branch-server:3.2","recommended":false,"version":"3.2","offline_predecessor_ids":[],"name":"SUSE Manager Retail Branch Server","release_type":null,"former_identifier":"SUSE-Manager-Retail-Branch-Server","friendly_name":"SUSE Manager Retail Branch Server 3.2 x86_64","migration_extra":false,"friendly_version":"3.2","extensions":[],"identifier":"SUSE-Manager-Retail-Branch-Server","release_stage":"released","id":1826}],"release_stage":"released","id":1725,"identifier":"SUSE-Manager-Proxy","friendly_version":"3.2","eula_url":"https://updates.suse.com/SUSE/Products/SUSE-Manager-Proxy/3.2/x86_64/product.license/","arch":"x86_64","free":false,"shortname":"SUSE Manager Proxy 3.2","description":"SUSE Manager Proxies extend large and/or geographically dispersed SUSE Manager environments to reduce load on the SUSE Manager Server, lower bandwidth needs, and provide faster local updates.","product_type":"extension","cpe":"cpe:/o:suse:suse-manager-proxy:3.2","predecessor_ids":[1520],"product_class":"SMP","online_predecessor_ids":[1520],"repositories":[{"id":2992,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SUSE-Manager-Proxy/3.2/x86_64/update/","distro_target":"sle-12-x86_64","autorefresh":true,"installer_updates":false,"name":"SUSE-Manager-Proxy-3.2-Updates","description":"SUSE-Manager-Proxy-3.2-Updates for sle-12-x86_64"},{"installer_updates":false,"name":"SUSE-Manager-Proxy-3.2-Debuginfo-Updates","description":"SUSE-Manager-Proxy-3.2-Debuginfo-Updates for sle-12-x86_64","id":2993,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SUSE-Manager-Proxy/3.2/x86_64/update_debug/","distro_target":"sle-12-x86_64","autorefresh":true},{"autorefresh":false,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Products/SUSE-Manager-Proxy/3.2/x86_64/product/","enabled":true,"id":2994,"description":"SUSE-Manager-Proxy-3.2-Pool for sle-12-x86_64","name":"SUSE-Manager-Proxy-3.2-Pool","installer_updates":false},{"name":"SUSE-Manager-Proxy-3.2-Debuginfo-Pool","installer_updates":false,"description":"SUSE-Manager-Proxy-3.2-Debuginfo-Pool for sle-12-x86_64","enabled":false,"id":2995,"autorefresh":false,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Products/SUSE-Manager-Proxy/3.2/x86_64/product_debug/"},{"description":"SUSE-Manager-Proxy-3.2-Source-Pool for sle-12-x86_64","installer_updates":false,"name":"SUSE-Manager-Proxy-3.2-Source-Pool","url":"https://updates.suse.com/SUSE/Products/SUSE-Manager-Proxy/3.2/x86_64/product_source/","distro_target":"sle-12-x86_64","autorefresh":false,"id":2996,"enabled":false}]},{"arch":"x86_64","eula_url":"https://updates.suse.com/SUSE/Products/SLE-Live-Patching/12-SP4/x86_64/product.license/","free":false,"description":"

SUSE Linux Enterprise Live Patching provides packages to update critical kernel modules live in SUSE Linux Enterprise. With SUSE Linux Enterprise Live Patching, you can perform critical kernel patching without shutting down your system, reducing the need for planned downtime and increasing service availability.

","shortname":"Live-Patching","product_type":"extension","cpe":"cpe:/o:suse:sle-live-patching:12:sp4","repositories":[{"name":"SLE-Live-Patching12-SP4-Updates","installer_updates":false,"description":"SLE-Live-Patching12-SP4-Updates for sle-12-x86_64","id":3163,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Live-Patching/12-SP4/x86_64/update/","autorefresh":true,"distro_target":"sle-12-x86_64"},{"description":"SLE-Live-Patching12-SP4-Debuginfo-Updates for sle-12-x86_64","name":"SLE-Live-Patching12-SP4-Debuginfo-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Live-Patching/12-SP4/x86_64/update_debug/","enabled":false,"id":3164},{"id":3165,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Live-Patching/12-SP4/x86_64/product/","autorefresh":false,"distro_target":"sle-12-x86_64","name":"SLE-Live-Patching12-SP4-Pool","installer_updates":false,"description":"SLE-Live-Patching12-SP4-Pool for sle-12-x86_64"},{"enabled":false,"id":3166,"autorefresh":false,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Live-Patching/12-SP4/x86_64/product_debug/","name":"SLE-Live-Patching12-SP4-Debuginfo-Pool","installer_updates":false,"description":"SLE-Live-Patching12-SP4-Debuginfo-Pool for sle-12-x86_64"}],"online_predecessor_ids":[1253,1536],"product_class":"SLE-LP","predecessor_ids":[1253,1536],"former_identifier":"sle-live-patching","release_type":null,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Live Patching 12 SP4 x86_64","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Live Patching","version":"12.4","recommended":false,"release_stage":"released","id":1757,"identifier":"sle-live-patching","extensions":[],"friendly_version":"12 SP4"},{"friendly_version":"12 SP4","release_stage":"released","identifier":"PackageHub","id":1813,"extensions":[],"version":"12.4","recommended":false,"former_identifier":"PackageHub","release_type":null,"friendly_name":"SUSE Package Hub 12 SP4 x86_64","migration_extra":false,"offline_predecessor_ids":[],"name":"SUSE Package Hub","online_predecessor_ids":[1473,1476,1479,1529],"product_class":"MODULE","repositories":[{"installer_updates":false,"name":"SUSE-PackageHub-12-SP4-Standard-Pool","description":"SUSE-PackageHub-12-SP4-Standard-Pool for sle-12-x86_64","enabled":true,"id":3460,"distro_target":"sle-12-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Backports/SLE-12-SP4_x86_64/standard/"},{"url":"https://updates.suse.com/SUSE/Backports/SLE-12-SP4_x86_64/standard_debug/","autorefresh":true,"distro_target":"sle-12-x86_64","id":3461,"enabled":false,"description":"SUSE-PackageHub-12-SP4-Debuginfo for sle-12-x86_64","name":"SUSE-PackageHub-12-SP4-Debuginfo","installer_updates":false},{"installer_updates":false,"name":"SUSE-PackageHub-12-SP4-Pool","description":"SUSE-PackageHub-12-SP4-Pool for sle-12-x86_64","id":3462,"enabled":true,"url":"https://updates.suse.com/SUSE/Backports/SLE-12-SP4_x86_64/product/","distro_target":"sle-12-x86_64","autorefresh":false}],"predecessor_ids":[1473,1476,1479,1529],"product_type":"extension","cpe":"cpe:/o:suse:packagehub:12:sp4","free":true,"shortname":"SUSE-PackageHub-12-SP4","description":"SUSE Package Hub is a free of charge extension providing access to community maintained packages built to run on SUSE Linux Enterprise Server. Built from the same sources used in the openSUSE distributions, these quality packages provide additional software to what is found in the SUSE Linux Enterprise Server product. Packages from the Package Hub are delivered without L3 support from SUSE. General updates and fixes to the packages in SUSE Package Hub are provided by the openSUSE community based on their discretion though SUSE will monitor and ensure that any known critical security issues will be addressed. Packages in the Package Hub are approved by SUSE for use with SUSE Linux Enterprise Server 12 and to not interfere with the supportability of SUSE Linux Enterprise Server it's modules and extensions. For more information about SUSE Package Hub please visit https://packagehub.suse.com.","arch":"x86_64","eula_url":""},{"id":1820,"release_stage":"released","identifier":"suse-openstack-cloud","extensions":[],"friendly_version":"9","friendly_name":"SUSE OpenStack Cloud 9 x86_64","migration_extra":false,"former_identifier":"suse-openstack-cloud","release_type":null,"name":"SUSE OpenStack Cloud","offline_predecessor_ids":[],"version":"9","recommended":false,"cpe":"cpe:/o:suse:suse-openstack-cloud:9","product_type":"extension","product_class":"SUSE_CLOUD","online_predecessor_ids":[1617,1730],"repositories":[{"autorefresh":true,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Updates/OpenStack-Cloud/9/x86_64/update/","enabled":true,"id":3522,"description":"SUSE-OpenStack-Cloud-9-Updates for sle-12-x86_64","name":"SUSE-OpenStack-Cloud-9-Updates","installer_updates":false},{"url":"https://updates.suse.com/SUSE/Updates/OpenStack-Cloud/9/x86_64/update_debug/","distro_target":"sle-12-x86_64","autorefresh":true,"id":3523,"enabled":false,"description":"SUSE-OpenStack-Cloud-9-Debuginfo-Updates for sle-12-x86_64","installer_updates":false,"name":"SUSE-OpenStack-Cloud-9-Debuginfo-Updates"},{"id":3524,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/OpenStack-Cloud/9/x86_64/product/","autorefresh":false,"distro_target":"sle-12-x86_64","name":"SUSE-OpenStack-Cloud-9-Pool","installer_updates":false,"description":"SUSE-OpenStack-Cloud-9-Pool for sle-12-x86_64"},{"id":3525,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/OpenStack-Cloud/9/x86_64/product_debug/","autorefresh":false,"distro_target":"sle-12-x86_64","name":"SUSE-OpenStack-Cloud-9-Debuginfo-Pool","installer_updates":false,"description":"SUSE-OpenStack-Cloud-9-Debuginfo-Pool for sle-12-x86_64"},{"enabled":false,"id":3526,"distro_target":"sle-12-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/OpenStack-Cloud/9/x86_64/product_source/","installer_updates":false,"name":"SUSE-OpenStack-Cloud-9-Source-Pool","description":"SUSE-OpenStack-Cloud-9-Source-Pool for sle-12-x86_64"}],"predecessor_ids":[1617,1730],"arch":"x86_64","eula_url":"https://updates.suse.com/SUSE/Products/OpenStack-Cloud/9/x86_64/product.license/","shortname":"SOC9","description":"SUSE OpenStack Cloud is an enterprise-ready OpenStack distribution that accelerates deployment of highly available, mixed-hypervisor IaaS Clouds. Backed by the excellence of SUSE engineering, quality assurance and support, SUSE OpenStack Cloud leverages existing data center investments to help enterprises increase business agility, economically scale current IT capabilities and easily integrate upstream innovation.","free":false},{"release_type":null,"former_identifier":"suse-openstack-cloud-crowbar","friendly_name":"SUSE OpenStack Cloud Crowbar 9 x86_64","migration_extra":false,"offline_predecessor_ids":[],"name":"SUSE OpenStack Cloud Crowbar","version":"9","recommended":false,"identifier":"suse-openstack-cloud-crowbar","release_stage":"released","id":1821,"extensions":[],"friendly_version":"9","arch":"x86_64","eula_url":"https://updates.suse.com/SUSE/Products/OpenStack-Cloud-Crowbar/9/x86_64/product.license/","free":false,"description":"SUSE OpenStack Cloud is an enterprise-ready OpenStack distribution that accelerates deployment of highly available, mixed-hypervisor IaaS Clouds. Backed by the excellence of SUSE engineering, quality assurance and support, SUSE OpenStack Cloud leverages existing data center investments to help enterprises increase business agility, economically scale current IT capabilities and easily integrate upstream innovation.","shortname":"SOCC9","product_type":"extension","cpe":"cpe:/o:suse:suse-openstack-cloud-crowbar:9","online_predecessor_ids":[1729],"product_class":"SUSE_CLOUD","repositories":[{"distro_target":"sle-12-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/OpenStack-Cloud-Crowbar/9/x86_64/update/","enabled":true,"id":3492,"description":"SUSE-OpenStack-Cloud-Crowbar-9-Updates for sle-12-x86_64","installer_updates":false,"name":"SUSE-OpenStack-Cloud-Crowbar-9-Updates"},{"name":"SUSE-OpenStack-Cloud-Crowbar-9-Debuginfo-Updates","installer_updates":false,"description":"SUSE-OpenStack-Cloud-Crowbar-9-Debuginfo-Updates for sle-12-x86_64","enabled":false,"id":3493,"autorefresh":true,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Updates/OpenStack-Cloud-Crowbar/9/x86_64/update_debug/"},{"distro_target":"sle-12-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/OpenStack-Cloud-Crowbar/9/x86_64/product/","enabled":true,"id":3494,"description":"SUSE-OpenStack-Cloud-Crowbar-9-Pool for sle-12-x86_64","installer_updates":false,"name":"SUSE-OpenStack-Cloud-Crowbar-9-Pool"},{"id":3495,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/OpenStack-Cloud-Crowbar/9/x86_64/product_debug/","distro_target":"sle-12-x86_64","autorefresh":false,"installer_updates":false,"name":"SUSE-OpenStack-Cloud-Crowbar-9-Debuginfo-Pool","description":"SUSE-OpenStack-Cloud-Crowbar-9-Debuginfo-Pool for sle-12-x86_64"},{"description":"SUSE-OpenStack-Cloud-Crowbar-9-Source-Pool for sle-12-x86_64","name":"SUSE-OpenStack-Cloud-Crowbar-9-Source-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Products/OpenStack-Cloud-Crowbar/9/x86_64/product_source/","enabled":false,"id":3496}],"predecessor_ids":[1729]},{"version":"12.4","recommended":false,"friendly_name":"SUSE Linux Enterprise Server BCL 12 SP4 x86_64","migration_extra":false,"release_type":null,"former_identifier":"SLES-BCL","name":"SUSE Linux Enterprise Server BCL","offline_predecessor_ids":[],"friendly_version":"12 SP4","identifier":"SLES-BCL","release_stage":"released","id":1896,"extensions":[],"description":"SUSE Linux Enterprise offers a comprehensive suite of products built on a single code base. The platform addresses business needs from the smallest thin-client devices to the world's most powerful high-performance computing and mainframe servers. SUSE Linux Enterprise offers common management tools and technology certifications across the platform, and each product is enterprise-class.","shortname":"SLES12-SP4 BCL","free":false,"arch":"x86_64","eula_url":"","product_class":"BCL-X86","online_predecessor_ids":[],"repositories":[{"description":"SLES12-SP4-BCL-Updates for sle-12-x86_64","name":"SLES12-SP4-BCL-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-SP4-BCL/x86_64/update/","enabled":true,"id":3762},{"description":"SLES12-SP4-BCL-Debuginfo-Updates for sle-12-x86_64","name":"SLES12-SP4-BCL-Debuginfo-Updates","installer_updates":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-SP4-BCL/x86_64/update_debug/","autorefresh":true,"distro_target":"sle-12-x86_64","id":3763,"enabled":false},{"id":3764,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-SERVER/12-SP4-BCL/x86_64/product/","autorefresh":false,"distro_target":"sle-12-x86_64","name":"SLES12-SP4-BCL-Pool","installer_updates":false,"description":"SLES12-SP4-BCL-Pool for sle-12-x86_64"},{"autorefresh":false,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-SERVER/12-SP4-BCL/x86_64/product_debug/","enabled":false,"id":3765,"description":"SLES12-SP4-BCL-Debuginfo-Pool for sle-12-x86_64","name":"SLES12-SP4-BCL-Debuginfo-Pool","installer_updates":false},{"description":"SLES12-SP4-BCL-Source-Pool for sle-12-x86_64","installer_updates":false,"name":"SLES12-SP4-BCL-Source-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-SERVER/12-SP4-BCL/x86_64/product_source/","distro_target":"sle-12-x86_64","autorefresh":false,"id":3766,"enabled":false}],"predecessor_ids":[],"cpe":"cpe:/o:suse:sles-bcl:12:sp4","product_type":"extension"},{"offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Real Time","release_type":null,"former_identifier":"SUSE-Linux-Enterprise-RT","friendly_name":"SUSE Linux Enterprise Real Time 12 SP4 x86_64","migration_extra":false,"recommended":false,"version":"12.4","extensions":[],"release_stage":"released","identifier":"SUSE-Linux-Enterprise-RT","id":1924,"friendly_version":"12 SP4","eula_url":"https://updates.suse.com/SUSE/Products/SLE-RT/12-SP4/x86_64/product.license/","arch":"x86_64","free":false,"shortname":"SLERT12 SP4","description":"SUSE Linux Enterprise Real Time 12 SP4.","product_type":"extension","cpe":"cpe:/o:suse:suse-linux-enterprise-rt:12:sp4","predecessor_ids":[1619],"repositories":[{"description":"SLE-RT12-SP4-Updates for sle-12-x86_64","name":"SLE-RT12-SP4-Updates","installer_updates":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-RT/12-SP4/x86_64/update/","autorefresh":true,"distro_target":"sle-12-x86_64","id":3887,"enabled":true},{"id":3888,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-RT/12-SP4/x86_64/update_debug/","autorefresh":true,"distro_target":"sle-12-x86_64","name":"SLE-RT12-SP4-Debuginfo-Updates","installer_updates":false,"description":"SLE-RT12-SP4-Debuginfo-Updates for sle-12-x86_64"},{"distro_target":"sle-12-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-RT/12-SP4/x86_64/product/","enabled":true,"id":3889,"description":"SLE-RT12-SP4-Pool for sle-12-x86_64","installer_updates":false,"name":"SLE-RT12-SP4-Pool"},{"description":"SLE-RT12-SP4-Debuginfo-Pool for sle-12-x86_64","name":"SLE-RT12-SP4-Debuginfo-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-RT/12-SP4/x86_64/product_debug/","enabled":false,"id":3890}],"online_predecessor_ids":[1619],"product_class":"SUSE_RT"},{"predecessor_ids":[],"repositories":[{"url":"https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-SP4-LTSS/x86_64/update/","distro_target":"sle-12-x86_64","autorefresh":true,"id":4492,"enabled":true,"description":"SLES12-SP4-LTSS-Updates for sle-12-x86_64","installer_updates":false,"name":"SLES12-SP4-LTSS-Updates"},{"id":4493,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-SP4-LTSS/x86_64/update_debug/","autorefresh":true,"distro_target":"sle-12-x86_64","name":"SLES12-SP4-LTSS-Debuginfo-Updates","installer_updates":false,"description":"SLES12-SP4-LTSS-Debuginfo-Updates for sle-12-x86_64"}],"online_predecessor_ids":[],"product_class":"SLES12-SP4-LTSS-X86","cpe":"cpe:/o:suse:sles-ltss:12:sp4","product_type":"extension","description":"SUSE Linux Enterprise offers a comprehensive suite of products built on a single code base. The platform addresses business needs from the smallest thin-client devices to the world's most powerful high-performance computing and mainframe servers. SUSE Linux Enterprise offers common management tools and technology certifications across the platform, and each product is enterprise-class.","shortname":"SLES12-SP4 LTSS","free":false,"eula_url":"","arch":"x86_64","friendly_version":"12 SP4","extensions":[],"release_stage":"released","identifier":"SLES-LTSS","id":2117,"recommended":false,"version":"12.4","name":"SUSE Linux Enterprise Server LTSS","offline_predecessor_ids":[],"friendly_name":"SUSE Linux Enterprise Server LTSS 12 SP4 x86_64","migration_extra":false,"former_identifier":"SLES-LTSS","release_type":null}]},{"version":"12.4","recommended":false,"friendly_name":"SUSE Linux Enterprise Server 12 SP4 ppc64le","migration_extra":false,"former_identifier":"SLES","release_type":null,"name":"SUSE Linux Enterprise Server","offline_predecessor_ids":[],"friendly_version":"12 SP4","id":1626,"release_stage":"released","identifier":"SLES","extensions":[{"product_type":"module","cpe":"cpe:/o:suse:sle-module-legacy:12","online_predecessor_ids":[],"product_class":"MODULE","repositories":[{"description":"SLE-Module-Legacy12-Updates for sle-12-ppc64le","name":"SLE-Module-Legacy12-Updates","installer_updates":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/12/ppc64le/update/","autorefresh":true,"distro_target":"sle-12-ppc64le","id":1668,"enabled":true},{"description":"SLE-Module-Legacy12-Debuginfo-Updates for sle-12-ppc64le","installer_updates":false,"name":"SLE-Module-Legacy12-Debuginfo-Updates","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/12/ppc64le/update_debug/","distro_target":"sle-12-ppc64le","autorefresh":true,"id":1669,"enabled":false},{"enabled":true,"id":1670,"distro_target":"sle-12-ppc64le","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/12/ppc64le/product/","installer_updates":false,"name":"SLE-Module-Legacy12-Pool","description":"SLE-Module-Legacy12-Pool for sle-12-ppc64le"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/12/ppc64le/product_debug/","autorefresh":false,"distro_target":"sle-12-ppc64le","id":1671,"enabled":false,"description":"SLE-Module-Legacy12-Debuginfo-Pool for sle-12-ppc64le","name":"SLE-Module-Legacy12-Debuginfo-Pool","installer_updates":false},{"description":"SLE-Module-Legacy12-Source-Pool for sle-12-ppc64le","name":"SLE-Module-Legacy12-Source-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-12-ppc64le","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/12/ppc64le/product_source/","enabled":false,"id":1987}],"predecessor_ids":[],"arch":"ppc64le","eula_url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/12/ppc64le/product.license/","free":true,"shortname":"Legacy-Module","description":"

The Legacy Module helps you migrating applications from SUSE Linux Enterprise 10 and 11 and other systems to SUSE Linux Enterprise 12, by providing packages which are discontinued on SUSE Linux Enterprise Server, such as: sendmail, syslog-ng, IBM Java6, and a number of libraries (for example openssl-0.9.8).

Access to the Legacy Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself. Packages in the this module are usually supported for at most three years. Support for Sendmail and IBM Java 6 will end in September 2017 the latest.

","release_stage":"released","identifier":"sle-module-legacy","id":1148,"extensions":[],"friendly_version":"12","former_identifier":"sle-module-legacy","release_type":null,"friendly_name":"Legacy Module 12 ppc64le","migration_extra":false,"offline_predecessor_ids":[],"name":"Legacy Module","version":"12","recommended":false},{"repositories":[{"distro_target":"sle-12-ppc64le","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/12/ppc64le/update/","enabled":true,"id":1680,"description":"SLE-Module-Web-Scripting12-Updates for sle-12-ppc64le","installer_updates":false,"name":"SLE-Module-Web-Scripting12-Updates"},{"distro_target":"sle-12-ppc64le","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/12/ppc64le/update_debug/","enabled":false,"id":1681,"description":"SLE-Module-Web-Scripting12-Debuginfo-Updates for sle-12-ppc64le","installer_updates":false,"name":"SLE-Module-Web-Scripting12-Debuginfo-Updates"},{"installer_updates":false,"name":"SLE-Module-Web-Scripting12-Pool","description":"SLE-Module-Web-Scripting12-Pool for sle-12-ppc64le","enabled":true,"id":1682,"distro_target":"sle-12-ppc64le","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/12/ppc64le/product/"},{"installer_updates":false,"name":"SLE-Module-Web-Scripting12-Debuginfo-Pool","description":"SLE-Module-Web-Scripting12-Debuginfo-Pool for sle-12-ppc64le","enabled":false,"id":1683,"distro_target":"sle-12-ppc64le","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/12/ppc64le/product_debug/"},{"description":"SLE-Module-Web-Scripting12-Source-Pool for sle-12-ppc64le","installer_updates":false,"name":"SLE-Module-Web-Scripting12-Source-Pool","distro_target":"sle-12-ppc64le","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/12/ppc64le/product_source/","enabled":false,"id":1990}],"online_predecessor_ids":[],"product_class":"MODULE","predecessor_ids":[],"product_type":"module","cpe":"cpe:/o:suse:sle-module-web-scripting:12","free":true,"description":"

The SUSE Linux Enterprise Web and Scripting Module delivers a comprehensive suite of scripting languages, frameworks, and related tools helping developers and systems administrators accelerate the creation of stable, modern web applications, using dynamic languages, such as PHP, Ruby on Rails, and Python.

Access to the Web and Scripting Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself: Package versions in the this module are usually supported for at most three years. We are planning to release more recent versions on a schedule of approximately 18 month; the exact dates may differ per package.

","shortname":"Web-and-Scripting-Module","arch":"ppc64le","eula_url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/12/ppc64le/product.license/","friendly_version":"12","release_stage":"released","id":1151,"identifier":"sle-module-web-scripting","extensions":[],"version":"12","recommended":false,"release_type":null,"former_identifier":"sle-module-web-scripting","migration_extra":false,"friendly_name":"Web and Scripting Module 12 ppc64le","offline_predecessor_ids":[],"name":"Web and Scripting Module"},{"cpe":"cpe:/o:suse:sle-module-public-cloud:12","product_type":"module","repositories":[{"description":"SLE-Module-Public-Cloud12-Updates for sle-12-ppc64le","name":"SLE-Module-Public-Cloud12-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-12-ppc64le","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/12/ppc64le/update/","enabled":true,"id":1692},{"description":"SLE-Module-Public-Cloud12-Debuginfo-Updates for sle-12-ppc64le","installer_updates":false,"name":"SLE-Module-Public-Cloud12-Debuginfo-Updates","distro_target":"sle-12-ppc64le","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/12/ppc64le/update_debug/","enabled":false,"id":1693},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/12/ppc64le/product/","autorefresh":false,"distro_target":"sle-12-ppc64le","id":1694,"enabled":true,"description":"SLE-Module-Public-Cloud12-Pool for sle-12-ppc64le","name":"SLE-Module-Public-Cloud12-Pool","installer_updates":false},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/12/ppc64le/product_debug/","distro_target":"sle-12-ppc64le","autorefresh":false,"id":1695,"enabled":false,"description":"SLE-Module-Public-Cloud12-Debuginfo-Pool for sle-12-ppc64le","installer_updates":false,"name":"SLE-Module-Public-Cloud12-Debuginfo-Pool"},{"enabled":false,"id":1993,"distro_target":"sle-12-ppc64le","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/12/ppc64le/product_source/","installer_updates":false,"name":"SLE-Module-Public-Cloud12-Source-Pool","description":"SLE-Module-Public-Cloud12-Source-Pool for sle-12-ppc64le"}],"online_predecessor_ids":[],"product_class":"MODULE","predecessor_ids":[],"arch":"ppc64le","eula_url":"","shortname":"Public-Cloud-Module","description":"

The Public Cloud Module is a collection of tools that enables you to create and manage cloud images from the commandline on SUSE Linux Enterprise Server. When building your own images with KIWI or SUSE Studio, initialization code specific to the target cloud is included in that image.

Access to the Public Cloud Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself; please check the Release Notes for further details.

","free":true,"release_stage":"released","identifier":"sle-module-public-cloud","id":1218,"extensions":[],"friendly_version":"12","friendly_name":"Public Cloud Module 12 ppc64le","migration_extra":false,"release_type":null,"former_identifier":"sle-module-public-cloud","name":"Public Cloud Module","offline_predecessor_ids":[],"version":"12","recommended":false},{"shortname":"IBMDLPS12","description":"IBM DLPAR SDK for SLE 12","free":true,"eula_url":"","arch":"ppc64le","predecessor_ids":[],"repositories":[{"id":4429,"enabled":true,"url":"https://public.dhe.ibm.com/software/server/POWER/Linux/toolchain/at/suse/SLES_12/","autorefresh":true,"distro_target":null,"name":"IBM-DLPAR-SDK","installer_updates":false,"description":"IBM-DLPAR-SDK"}],"online_predecessor_ids":[],"product_class":"SLES-PPC","cpe":"cpe:/o:suse:ibm-dlpar-sdk:12","product_type":"extension","recommended":false,"version":"12","name":"IBM DLPAR SDK for SLE","offline_predecessor_ids":[],"friendly_name":"IBM DLPAR SDK for SLE 12 ppc64le","migration_extra":false,"former_identifier":"ibm-dlpar-sdk","release_type":null,"friendly_version":"12","extensions":[],"id":1249,"release_stage":"released","identifier":"ibm-dlpar-sdk"},{"version":"12","recommended":false,"migration_extra":false,"friendly_name":"IBM DLPAR Utils for SLE 12 ppc64le","former_identifier":"ibm-dlpar-utils","release_type":null,"name":"IBM DLPAR Utils for SLE","offline_predecessor_ids":[],"friendly_version":"12","identifier":"ibm-dlpar-utils","release_stage":"released","id":1250,"extensions":[],"description":"IBM DLPAR Utils for SLE 12","shortname":"IBMDLPU12","free":true,"arch":"ppc64le","eula_url":"https://public.dhe.ibm.com/software/server/POWER/Linux/yum/OSS/SLES/12/ppc64le.license/","online_predecessor_ids":[],"repositories":[{"description":"IBM-DLPAR-utils","name":"IBM-DLPAR-utils","installer_updates":false,"url":"https://public.dhe.ibm.com/software/server/POWER/Linux/yum/OSS/SLES/12/ppc64le/","autorefresh":true,"distro_target":null,"id":6216,"enabled":true}],"product_class":"SLES-PPC","predecessor_ids":[],"cpe":"cpe:/o:suse:ibm-dlpar-utils:12","product_type":"extension"},{"identifier":"sle-module-adv-systems-management","release_stage":"released","id":1294,"extensions":[],"friendly_version":"12","friendly_name":"Advanced Systems Management Module 12 ppc64le","migration_extra":false,"release_type":null,"former_identifier":"sle-module-adv-systems-management","name":"Advanced Systems Management Module","offline_predecessor_ids":[],"version":"12","recommended":false,"cpe":"cpe:/o:suse:sle-module-adv-systems-management:12","product_type":"module","product_class":"MODULE","online_predecessor_ids":[],"repositories":[{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Adv-Systems-Management/12/ppc64le/update/","distro_target":"sle-12-ppc64le","autorefresh":true,"id":1762,"enabled":true,"description":"SLE-Module-Adv-Systems-Management12-Updates for sle-12-ppc64le","installer_updates":false,"name":"SLE-Module-Adv-Systems-Management12-Updates"},{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Adv-Systems-Management/12/ppc64le/update_debug/","distro_target":"sle-12-ppc64le","autorefresh":true,"id":1763,"enabled":false,"description":"SLE-Module-Adv-Systems-Management12-Debuginfo-Updates for sle-12-ppc64le","installer_updates":false,"name":"SLE-Module-Adv-Systems-Management12-Debuginfo-Updates"},{"id":1764,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Adv-Systems-Management/12/ppc64le/product/","autorefresh":false,"distro_target":"sle-12-ppc64le","name":"SLE-Module-Adv-Systems-Management12-Pool","installer_updates":false,"description":"SLE-Module-Adv-Systems-Management12-Pool for sle-12-ppc64le"},{"description":"SLE-Module-Adv-Systems-Management12-Debuginfo-Pool for sle-12-ppc64le","installer_updates":false,"name":"SLE-Module-Adv-Systems-Management12-Debuginfo-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Adv-Systems-Management/12/ppc64le/product_debug/","distro_target":"sle-12-ppc64le","autorefresh":false,"id":1765,"enabled":false},{"name":"SLE-Module-Adv-Systems-Management12-Source-Pool","installer_updates":false,"description":"SLE-Module-Adv-Systems-Management12-Source-Pool for sle-12-ppc64le","enabled":false,"id":1996,"autorefresh":false,"distro_target":"sle-12-ppc64le","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Adv-Systems-Management/12/ppc64le/product_source/"}],"predecessor_ids":[],"arch":"ppc64le","eula_url":"","shortname":"Adv-Sys-Mgmt-Module","description":"

This Module contains current versions of the popular configuration management frameworks Puppet and CFEngine as well as the new systems management toolbox called machinery.

The machinery tool will be frequently updated and is SUSE's upcoming systems management toolbox for inspecting and validating systems remotely, storing their system description and creating new systems to deploy them in datacenters and clouds.

","free":true},{"free":true,"description":"Via this Module you will have access to a more recent GCC and Toolchain in addition to the default compiler of SUSE Linux Enterprise. Access to the Toolchain Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself. Please check the Release Notes for further details.","shortname":"Toolchain-Module","eula_url":"","arch":"ppc64le","predecessor_ids":[],"product_class":"MODULE","online_predecessor_ids":[],"repositories":[{"name":"SLE-Module-Toolchain12-Updates","installer_updates":false,"description":"SLE-Module-Toolchain12-Updates for sle-12-ppc64le","enabled":true,"id":1895,"autorefresh":true,"distro_target":"sle-12-ppc64le","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Toolchain/12/ppc64le/update/"},{"description":"SLE-Module-Toolchain12-Debuginfo-Updates for sle-12-ppc64le","installer_updates":false,"name":"SLE-Module-Toolchain12-Debuginfo-Updates","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Toolchain/12/ppc64le/update_debug/","distro_target":"sle-12-ppc64le","autorefresh":true,"id":1896,"enabled":false},{"autorefresh":false,"distro_target":"sle-12-ppc64le","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Toolchain/12/ppc64le/product/","enabled":true,"id":1897,"description":"SLE-Module-Toolchain12-Pool for sle-12-ppc64le","name":"SLE-Module-Toolchain12-Pool","installer_updates":false},{"name":"SLE-Module-Toolchain12-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-Toolchain12-Debuginfo-Pool for sle-12-ppc64le","id":1898,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Toolchain/12/ppc64le/product_debug/","autorefresh":false,"distro_target":"sle-12-ppc64le"}],"product_type":"module","cpe":"cpe:/o:suse:sle-module-toolchain:12","recommended":false,"version":"12","offline_predecessor_ids":[],"name":"Toolchain Module","release_type":null,"former_identifier":"sle-module-toolchain","friendly_name":"Toolchain Module 12 ppc64le","migration_extra":false,"friendly_version":"12","extensions":[],"id":1339,"release_stage":"released","identifier":"sle-module-toolchain"},{"arch":"ppc64le","eula_url":"","description":"

This Module contains several packages revolving around containers and related tools.

","shortname":"Containers-Module","free":true,"cpe":"cpe:/o:suse:sle-module-containers:12","product_type":"module","product_class":"MODULE","online_predecessor_ids":[],"repositories":[{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/12/ppc64le/update/","autorefresh":true,"distro_target":"sle-12-ppc64le","id":1972,"enabled":true,"description":"SLE-Module-Containers12-Updates for sle-12-ppc64le","name":"SLE-Module-Containers12-Updates","installer_updates":false},{"description":"SLE-Module-Containers12-Debuginfo-Updates for sle-12-ppc64le","installer_updates":false,"name":"SLE-Module-Containers12-Debuginfo-Updates","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/12/ppc64le/update_debug/","distro_target":"sle-12-ppc64le","autorefresh":true,"id":1973,"enabled":false},{"autorefresh":false,"distro_target":"sle-12-ppc64le","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/12/ppc64le/product/","enabled":true,"id":1974,"description":"SLE-Module-Containers12-Pool for sle-12-ppc64le","name":"SLE-Module-Containers12-Pool","installer_updates":false},{"autorefresh":false,"distro_target":"sle-12-ppc64le","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/12/ppc64le/product_debug/","enabled":false,"id":1975,"description":"SLE-Module-Containers12-Debuginfo-Pool for sle-12-ppc64le","name":"SLE-Module-Containers12-Debuginfo-Pool","installer_updates":false},{"installer_updates":false,"name":"SLE-Module-Containers12-Source-Pool","description":"SLE-Module-Containers12-Source-Pool for sle-12-ppc64le","id":1976,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/12/ppc64le/product_source/","distro_target":"sle-12-ppc64le","autorefresh":false}],"predecessor_ids":[],"migration_extra":false,"friendly_name":"Containers Module 12 ppc64le","release_type":null,"former_identifier":"sle-module-containers","name":"Containers Module","offline_predecessor_ids":[],"version":"12","recommended":false,"identifier":"sle-module-containers","release_stage":"released","id":1353,"extensions":[],"friendly_version":"12"},{"arch":"ppc64le","eula_url":"https://updates.suse.com/SUSE/Products/SUSE-Manager-Server/3.1/ppc64le/product.license/","free":false,"description":"SUSE Manager lets you efficiently manage physical, virtual, and cloud-based Linux systems. It provides automated and cost-effective configuration and software management, asset management, and system provisioning.","shortname":"SUSE Manager Server","product_type":"extension","cpe":"cpe:/o:suse:suse-manager-server:3.1","product_class":"SMS-PPC","online_predecessor_ids":[],"repositories":[{"autorefresh":true,"distro_target":"sle-12-ppc64le","url":"https://updates.suse.com/SUSE/Updates/SUSE-Manager-Server/3.1/ppc64le/update/","enabled":true,"id":2727,"description":"SUSE-Manager-Server-3.1-Updates for sle-12-ppc64le","name":"SUSE-Manager-Server-3.1-Updates","installer_updates":false},{"description":"SUSE-Manager-Server-3.1-Debuginfo-Updates for sle-12-ppc64le","installer_updates":false,"name":"SUSE-Manager-Server-3.1-Debuginfo-Updates","url":"https://updates.suse.com/SUSE/Updates/SUSE-Manager-Server/3.1/ppc64le/update_debug/","distro_target":"sle-12-ppc64le","autorefresh":true,"id":2728,"enabled":false},{"description":"SUSE-Manager-Server-3.1-Pool for sle-12-ppc64le","installer_updates":false,"name":"SUSE-Manager-Server-3.1-Pool","url":"https://updates.suse.com/SUSE/Products/SUSE-Manager-Server/3.1/ppc64le/product/","distro_target":"sle-12-ppc64le","autorefresh":false,"id":2729,"enabled":true},{"url":"https://updates.suse.com/SUSE/Products/SUSE-Manager-Server/3.1/ppc64le/product_debug/","distro_target":"sle-12-ppc64le","autorefresh":false,"id":2730,"enabled":false,"description":"SUSE-Manager-Server-3.1-Debuginfo-Pool for sle-12-ppc64le","installer_updates":false,"name":"SUSE-Manager-Server-3.1-Debuginfo-Pool"},{"enabled":false,"id":2731,"distro_target":"sle-12-ppc64le","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SUSE-Manager-Server/3.1/ppc64le/product_source/","installer_updates":false,"name":"SUSE-Manager-Server-3.1-Source-Pool","description":"SUSE-Manager-Server-3.1-Source-Pool for sle-12-ppc64le"}],"predecessor_ids":[],"release_type":null,"former_identifier":"SUSE-Manager-Server","migration_extra":false,"friendly_name":"SUSE Manager Server 3.1 ppc64le","offline_predecessor_ids":[],"name":"SUSE Manager Server","version":"3.1","recommended":false,"release_stage":"released","identifier":"SUSE-Manager-Server","id":1622,"extensions":[],"friendly_version":"3.1"},{"friendly_version":"12 SP4","release_stage":"released","identifier":"sle-sdk","id":1631,"extensions":[],"version":"12.4","recommended":false,"former_identifier":"sle-sdk","release_type":null,"friendly_name":"SUSE Linux Enterprise Software Development Kit 12 SP4 ppc64le","migration_extra":false,"offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Software Development Kit","online_predecessor_ids":[1145,1343,1364,1428],"product_class":"MODULE","repositories":[{"installer_updates":false,"name":"SLE-SDK12-SP4-Updates","description":"SLE-SDK12-SP4-Updates for sle-12-ppc64le","enabled":true,"id":2804,"distro_target":"sle-12-ppc64le","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-SDK/12-SP4/ppc64le/update/"},{"url":"https://updates.suse.com/SUSE/Updates/SLE-SDK/12-SP4/ppc64le/update_debug/","autorefresh":true,"distro_target":"sle-12-ppc64le","id":2805,"enabled":false,"description":"SLE-SDK12-SP4-Debuginfo-Updates for sle-12-ppc64le","name":"SLE-SDK12-SP4-Debuginfo-Updates","installer_updates":false},{"enabled":true,"id":2806,"autorefresh":false,"distro_target":"sle-12-ppc64le","url":"https://updates.suse.com/SUSE/Products/SLE-SDK/12-SP4/ppc64le/product/","name":"SLE-SDK12-SP4-Pool","installer_updates":false,"description":"SLE-SDK12-SP4-Pool for sle-12-ppc64le"},{"description":"SLE-SDK12-SP4-Debuginfo-Pool for sle-12-ppc64le","installer_updates":false,"name":"SLE-SDK12-SP4-Debuginfo-Pool","distro_target":"sle-12-ppc64le","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-SDK/12-SP4/ppc64le/product_debug/","enabled":false,"id":2807},{"distro_target":"sle-12-ppc64le","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-SDK/12-SP4/ppc64le/product_source/","enabled":false,"id":2808,"description":"SLE-SDK12-SP4-Source-Pool for sle-12-ppc64le","installer_updates":false,"name":"SLE-SDK12-SP4-Source-Pool"}],"predecessor_ids":[1145,1343,1364,1428],"product_type":"extension","cpe":"cpe:/o:suse:sle-sdk:12:sp4","free":true,"description":"

SUSE Linux Enterprise Software Development Kit is the Software Development Kit for the family of SUSE Linux Enterprise products. It is a free of charge extension for partners and customers working with SUSE Linux Enterprise Server and Desktop and derived products.

Packages on the SDK are delivered without L3 support; maintenance updates will be done for critical security and critical non-security issues, and where needed to remain in sync with packages delivered in the SUSE Linux Enterprise Server and Desktop products.

Packages to rebuild SUSE Linux Enterprise Server are not part of the SUSE Linux Enterprise Software Development Kit.

","shortname":"SDK12-SP4","arch":"ppc64le","eula_url":"https://updates.suse.com/SUSE/Products/SLE-SDK/12-SP4/ppc64le/product.license/"},{"version":"12.4","recommended":false,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise High Availability Extension 12 SP4 ppc64le","release_type":null,"former_identifier":"sle-hae","name":"SUSE Linux Enterprise High Availability Extension","offline_predecessor_ids":[],"friendly_version":"12 SP4","release_stage":"released","identifier":"sle-ha","id":1635,"extensions":[],"description":"SUSE Linux Enterprise High Availability Extension.","shortname":"SLEHA12-SP4","free":false,"arch":"ppc64le","eula_url":"https://updates.suse.com/SUSE/Products/SLE-HA/12-SP4/ppc64le/product.license/","repositories":[{"url":"https://updates.suse.com/SUSE/Updates/SLE-HA/12-SP4/ppc64le/update/","distro_target":"sle-12-ppc64le","autorefresh":true,"id":2824,"enabled":true,"description":"SLE-HA12-SP4-Updates for sle-12-ppc64le","installer_updates":false,"name":"SLE-HA12-SP4-Updates"},{"url":"https://updates.suse.com/SUSE/Updates/SLE-HA/12-SP4/ppc64le/update_debug/","distro_target":"sle-12-ppc64le","autorefresh":true,"id":2825,"enabled":false,"description":"SLE-HA12-SP4-Debuginfo-Updates for sle-12-ppc64le","installer_updates":false,"name":"SLE-HA12-SP4-Debuginfo-Updates"},{"autorefresh":false,"distro_target":"sle-12-ppc64le","url":"https://updates.suse.com/SUSE/Products/SLE-HA/12-SP4/ppc64le/product/","enabled":true,"id":2826,"description":"SLE-HA12-SP4-Pool for sle-12-ppc64le","name":"SLE-HA12-SP4-Pool","installer_updates":false},{"distro_target":"sle-12-ppc64le","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-HA/12-SP4/ppc64le/product_debug/","enabled":false,"id":2827,"description":"SLE-HA12-SP4-Debuginfo-Pool for sle-12-ppc64le","installer_updates":false,"name":"SLE-HA12-SP4-Debuginfo-Pool"},{"distro_target":"sle-12-ppc64le","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-HA/12-SP4/ppc64le/product_source/","enabled":false,"id":2828,"description":"SLE-HA12-SP4-Source-Pool for sle-12-ppc64le","installer_updates":false,"name":"SLE-HA12-SP4-Source-Pool"}],"online_predecessor_ids":[1420,1433],"product_class":"SLE-HAE-PPC","predecessor_ids":[1420,1433],"cpe":"cpe:/o:suse:sle-ha:12:sp4","product_type":"extension"},{"friendly_version":"3.2","release_stage":"released","identifier":"SUSE-Manager-Server","id":1722,"extensions":[],"version":"3.2","recommended":false,"friendly_name":"SUSE Manager Server 3.2 ppc64le","migration_extra":false,"former_identifier":"SUSE-Manager-Server","release_type":null,"name":"SUSE Manager Server","offline_predecessor_ids":[],"product_class":"SMS-PPC","online_predecessor_ids":[1622],"repositories":[{"description":"SUSE-Manager-Server-3.2-Updates for sle-12-ppc64le","installer_updates":false,"name":"SUSE-Manager-Server-3.2-Updates","url":"https://updates.suse.com/SUSE/Updates/SUSE-Manager-Server/3.2/ppc64le/update/","distro_target":"sle-12-ppc64le","autorefresh":true,"id":2977,"enabled":true},{"installer_updates":false,"name":"SUSE-Manager-Server-3.2-Debuginfo-Updates","description":"SUSE-Manager-Server-3.2-Debuginfo-Updates for sle-12-ppc64le","id":2978,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SUSE-Manager-Server/3.2/ppc64le/update_debug/","distro_target":"sle-12-ppc64le","autorefresh":true},{"enabled":true,"id":2979,"autorefresh":false,"distro_target":"sle-12-ppc64le","url":"https://updates.suse.com/SUSE/Products/SUSE-Manager-Server/3.2/ppc64le/product/","name":"SUSE-Manager-Server-3.2-Pool","installer_updates":false,"description":"SUSE-Manager-Server-3.2-Pool for sle-12-ppc64le"},{"name":"SUSE-Manager-Server-3.2-Debuginfo-Pool","installer_updates":false,"description":"SUSE-Manager-Server-3.2-Debuginfo-Pool for sle-12-ppc64le","id":2980,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SUSE-Manager-Server/3.2/ppc64le/product_debug/","autorefresh":false,"distro_target":"sle-12-ppc64le"},{"name":"SUSE-Manager-Server-3.2-Source-Pool","installer_updates":false,"description":"SUSE-Manager-Server-3.2-Source-Pool for sle-12-ppc64le","enabled":false,"id":2981,"autorefresh":false,"distro_target":"sle-12-ppc64le","url":"https://updates.suse.com/SUSE/Products/SUSE-Manager-Server/3.2/ppc64le/product_source/"}],"predecessor_ids":[1622],"cpe":"cpe:/o:suse:suse-manager-server:3.2","product_type":"extension","shortname":"SUSE Manager Server 3.2","description":"SUSE Manager lets you efficiently manage physical, virtual, and cloud-based Linux systems. It provides automated and cost-effective configuration and software management, asset management, and system provisioning.","free":false,"arch":"ppc64le","eula_url":"https://updates.suse.com/SUSE/Products/SUSE-Manager-Server/3.2/ppc64le/product.license/"},{"offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Live Patching","former_identifier":"sle-live-patching","release_type":null,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Live Patching 12 SP4 ppc64le","recommended":false,"version":"12.4","extensions":[],"release_stage":"released","identifier":"sle-live-patching","id":1756,"friendly_version":"12 SP4","eula_url":"https://updates.suse.com/SUSE/Products/SLE-Live-Patching/12-SP4/ppc64le/product.license/","arch":"ppc64le","free":false,"description":"

SUSE Linux Enterprise Live Patching provides packages to update critical kernel modules live in SUSE Linux Enterprise. With SUSE Linux Enterprise Live Patching, you can perform critical kernel patching without shutting down your system, reducing the need for planned downtime and increasing service availability.

","shortname":"Live-Patching","product_type":"extension","cpe":"cpe:/o:suse:sle-live-patching:12:sp4","predecessor_ids":[1537,1860],"repositories":[{"enabled":true,"id":3159,"distro_target":"sle-12-ppc64le","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Live-Patching/12-SP4/ppc64le/update/","installer_updates":false,"name":"SLE-Live-Patching12-SP4-Updates","description":"SLE-Live-Patching12-SP4-Updates for sle-12-ppc64le"},{"url":"https://updates.suse.com/SUSE/Updates/SLE-Live-Patching/12-SP4/ppc64le/update_debug/","autorefresh":true,"distro_target":"sle-12-ppc64le","id":3160,"enabled":false,"description":"SLE-Live-Patching12-SP4-Debuginfo-Updates for sle-12-ppc64le","name":"SLE-Live-Patching12-SP4-Debuginfo-Updates","installer_updates":false},{"description":"SLE-Live-Patching12-SP4-Pool for sle-12-ppc64le","name":"SLE-Live-Patching12-SP4-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Live-Patching/12-SP4/ppc64le/product/","autorefresh":false,"distro_target":"sle-12-ppc64le","id":3161,"enabled":true},{"id":3162,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Live-Patching/12-SP4/ppc64le/product_debug/","autorefresh":false,"distro_target":"sle-12-ppc64le","name":"SLE-Live-Patching12-SP4-Debuginfo-Pool","installer_updates":false,"description":"SLE-Live-Patching12-SP4-Debuginfo-Pool for sle-12-ppc64le"}],"online_predecessor_ids":[1537,1860],"product_class":"SLE-LP-PPC"},{"cpe":"cpe:/o:suse:packagehub:12:sp4","product_type":"extension","predecessor_ids":[1475,1478,1481,1531],"online_predecessor_ids":[1475,1478,1481,1531],"product_class":"MODULE","repositories":[{"id":3454,"enabled":true,"url":"https://updates.suse.com/SUSE/Backports/SLE-12-SP4_ppc64le/standard/","distro_target":"sle-12-ppc64le","autorefresh":false,"installer_updates":false,"name":"SUSE-PackageHub-12-SP4-Standard-Pool","description":"SUSE-PackageHub-12-SP4-Standard-Pool for sle-12-ppc64le"},{"name":"SUSE-PackageHub-12-SP4-Debuginfo","installer_updates":false,"description":"SUSE-PackageHub-12-SP4-Debuginfo for sle-12-ppc64le","enabled":false,"id":3455,"autorefresh":true,"distro_target":"sle-12-ppc64le","url":"https://updates.suse.com/SUSE/Backports/SLE-12-SP4_ppc64le/standard_debug/"},{"description":"SUSE-PackageHub-12-SP4-Pool for sle-12-ppc64le","name":"SUSE-PackageHub-12-SP4-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-12-ppc64le","url":"https://updates.suse.com/SUSE/Backports/SLE-12-SP4_ppc64le/product/","enabled":true,"id":3456}],"eula_url":"","arch":"ppc64le","description":"SUSE Package Hub is a free of charge extension providing access to community maintained packages built to run on SUSE Linux Enterprise Server. Built from the same sources used in the openSUSE distributions, these quality packages provide additional software to what is found in the SUSE Linux Enterprise Server product. Packages from the Package Hub are delivered without L3 support from SUSE. General updates and fixes to the packages in SUSE Package Hub are provided by the openSUSE community based on their discretion though SUSE will monitor and ensure that any known critical security issues will be addressed. Packages in the Package Hub are approved by SUSE for use with SUSE Linux Enterprise Server 12 and to not interfere with the supportability of SUSE Linux Enterprise Server it's modules and extensions. For more information about SUSE Package Hub please visit https://packagehub.suse.com.","shortname":"SUSE-PackageHub-12-SP4","free":true,"extensions":[],"identifier":"PackageHub","release_stage":"released","id":1811,"friendly_version":"12 SP4","name":"SUSE Package Hub","offline_predecessor_ids":[],"friendly_name":"SUSE Package Hub 12 SP4 ppc64le","migration_extra":false,"release_type":null,"former_identifier":"PackageHub","recommended":false,"version":"12.4"},{"predecessor_ids":[],"online_predecessor_ids":[],"repositories":[{"enabled":true,"id":4488,"autorefresh":true,"distro_target":"sle-12-ppc64le","url":"https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-SP4-LTSS/ppc64le/update/","name":"SLES12-SP4-LTSS-Updates","installer_updates":false,"description":"SLES12-SP4-LTSS-Updates for sle-12-ppc64le"},{"distro_target":"sle-12-ppc64le","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-SP4-LTSS/ppc64le/update_debug/","enabled":false,"id":4489,"description":"SLES12-SP4-LTSS-Debuginfo-Updates for sle-12-ppc64le","installer_updates":false,"name":"SLES12-SP4-LTSS-Debuginfo-Updates"}],"product_class":"SLES12-SP4-LTSS-PPC","cpe":"cpe:/o:suse:sles-ltss:12:sp4","product_type":"extension","shortname":"SLES12-SP4 LTSS","description":"SUSE Linux Enterprise offers a comprehensive suite of products built on a single code base. The platform addresses business needs from the smallest thin-client devices to the world's most powerful high-performance computing and mainframe servers. SUSE Linux Enterprise offers common management tools and technology certifications across the platform, and each product is enterprise-class.","free":false,"eula_url":"","arch":"ppc64le","friendly_version":"12 SP4","extensions":[],"id":2115,"release_stage":"released","identifier":"SLES-LTSS","recommended":false,"version":"12.4","name":"SUSE Linux Enterprise Server LTSS","offline_predecessor_ids":[],"friendly_name":"SUSE Linux Enterprise Server LTSS 12 SP4 ppc64le","migration_extra":false,"former_identifier":"SLES-LTSS","release_type":null}],"description":"SUSE Linux Enterprise offers a comprehensive suite of products built on a single code base. The platform addresses business needs from the smallest thin-client devices to the world's most powerful high-performance computing and mainframe servers. SUSE Linux Enterprise offers common management tools and technology certifications across the platform, and each product is enterprise-class.","shortname":"SLES12-SP4","free":false,"arch":"ppc64le","eula_url":"https://updates.suse.com/SUSE/Products/SLE-SERVER/12-SP4/ppc64le/product.license/","product_class":"SLES-PPC","online_predecessor_ids":[1116,1334,1355,1422],"repositories":[{"id":2775,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-SP4/ppc64le/update/","autorefresh":true,"distro_target":"sle-12-ppc64le","name":"SLES12-SP4-Updates","installer_updates":false,"description":"SLES12-SP4-Updates for sle-12-ppc64le"},{"installer_updates":false,"name":"SLES12-SP4-Debuginfo-Updates","description":"SLES12-SP4-Debuginfo-Updates for sle-12-ppc64le","id":2776,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-SP4/ppc64le/update_debug/","distro_target":"sle-12-ppc64le","autorefresh":true},{"name":"SLES12-SP4-Installer-Updates","installer_updates":true,"description":"SLES12-SP4-Installer-Updates for sle-12-ppc64le","enabled":false,"id":2777,"autorefresh":true,"distro_target":"sle-12-ppc64le","url":"https://updates.suse.com/SUSE/Updates/SLE-SERVER-INSTALLER/12-SP4/ppc64le/update/"},{"name":"SLES12-SP4-Pool","installer_updates":false,"description":"SLES12-SP4-Pool for sle-12-ppc64le","enabled":true,"id":2778,"autorefresh":false,"distro_target":"sle-12-ppc64le","url":"https://updates.suse.com/SUSE/Products/SLE-SERVER/12-SP4/ppc64le/product/"},{"name":"SLES12-SP4-Debuginfo-Pool","installer_updates":false,"description":"SLES12-SP4-Debuginfo-Pool for sle-12-ppc64le","enabled":false,"id":2779,"autorefresh":false,"distro_target":"sle-12-ppc64le","url":"https://updates.suse.com/SUSE/Products/SLE-SERVER/12-SP4/ppc64le/product_debug/"},{"url":"https://updates.suse.com/SUSE/Products/SLE-SERVER/12-SP4/ppc64le/product_source/","distro_target":"sle-12-ppc64le","autorefresh":false,"id":2780,"enabled":false,"description":"SLES12-SP4-Source-Pool for sle-12-ppc64le","installer_updates":false,"name":"SLES12-SP4-Source-Pool"}],"predecessor_ids":[1116,1334,1355,1422],"cpe":"cpe:/o:suse:sles:12:sp4","product_type":"base"},{"product_type":"base","cpe":"cpe:/o:suse:sles:12:sp4","repositories":[{"id":2781,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-SP4/s390x/update/","autorefresh":true,"distro_target":"sle-12-s390x","name":"SLES12-SP4-Updates","installer_updates":false,"description":"SLES12-SP4-Updates for sle-12-s390x"},{"name":"SLES12-SP4-Debuginfo-Updates","installer_updates":false,"description":"SLES12-SP4-Debuginfo-Updates for sle-12-s390x","id":2782,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-SP4/s390x/update_debug/","autorefresh":true,"distro_target":"sle-12-s390x"},{"name":"SLES12-SP4-Installer-Updates","installer_updates":true,"description":"SLES12-SP4-Installer-Updates for sle-12-s390x","id":2783,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-SERVER-INSTALLER/12-SP4/s390x/update/","autorefresh":true,"distro_target":"sle-12-s390x"},{"description":"SLES12-SP4-Pool for sle-12-s390x","installer_updates":false,"name":"SLES12-SP4-Pool","distro_target":"sle-12-s390x","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-SERVER/12-SP4/s390x/product/","enabled":true,"id":2784},{"enabled":false,"id":2785,"autorefresh":false,"distro_target":"sle-12-s390x","url":"https://updates.suse.com/SUSE/Products/SLE-SERVER/12-SP4/s390x/product_debug/","name":"SLES12-SP4-Debuginfo-Pool","installer_updates":false,"description":"SLES12-SP4-Debuginfo-Pool for sle-12-s390x"},{"description":"SLES12-SP4-Source-Pool for sle-12-s390x","name":"SLES12-SP4-Source-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-12-s390x","url":"https://updates.suse.com/SUSE/Products/SLE-SERVER/12-SP4/s390x/product_source/","enabled":false,"id":2786}],"online_predecessor_ids":[1115,1335,1356,1423],"product_class":"SLES-Z","predecessor_ids":[1115,1335,1356,1423],"arch":"s390x","eula_url":"https://updates.suse.com/SUSE/Products/SLE-SERVER/12-SP4/s390x/product.license/","free":false,"shortname":"SLES12-SP4","description":"SUSE Linux Enterprise offers a comprehensive suite of products built on a single code base. The platform addresses business needs from the smallest thin-client devices to the world's most powerful high-performance computing and mainframe servers. SUSE Linux Enterprise offers common management tools and technology certifications across the platform, and each product is enterprise-class.","release_stage":"released","id":1627,"identifier":"SLES","extensions":[{"migration_extra":false,"friendly_name":"Legacy Module 12 s390x","former_identifier":"sle-module-legacy","release_type":null,"name":"Legacy Module","offline_predecessor_ids":[],"version":"12","recommended":false,"id":1149,"release_stage":"released","identifier":"sle-module-legacy","extensions":[],"friendly_version":"12","arch":"s390x","eula_url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/12/s390x/product.license/","shortname":"Legacy-Module","description":"

The Legacy Module helps you migrating applications from SUSE Linux Enterprise 10 and 11 and other systems to SUSE Linux Enterprise 12, by providing packages which are discontinued on SUSE Linux Enterprise Server, such as: sendmail, syslog-ng, IBM Java6, and a number of libraries (for example openssl-0.9.8).

Access to the Legacy Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself. Packages in the this module are usually supported for at most three years. Support for Sendmail and IBM Java 6 will end in September 2017 the latest.

","free":true,"cpe":"cpe:/o:suse:sle-module-legacy:12","product_type":"module","repositories":[{"autorefresh":true,"distro_target":"sle-12-s390x","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/12/s390x/update/","enabled":true,"id":1672,"description":"SLE-Module-Legacy12-Updates for sle-12-s390x","name":"SLE-Module-Legacy12-Updates","installer_updates":false},{"installer_updates":false,"name":"SLE-Module-Legacy12-Debuginfo-Updates","description":"SLE-Module-Legacy12-Debuginfo-Updates for sle-12-s390x","enabled":false,"id":1673,"distro_target":"sle-12-s390x","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/12/s390x/update_debug/"},{"id":1674,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/12/s390x/product/","autorefresh":false,"distro_target":"sle-12-s390x","name":"SLE-Module-Legacy12-Pool","installer_updates":false,"description":"SLE-Module-Legacy12-Pool for sle-12-s390x"},{"description":"SLE-Module-Legacy12-Debuginfo-Pool for sle-12-s390x","installer_updates":false,"name":"SLE-Module-Legacy12-Debuginfo-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/12/s390x/product_debug/","distro_target":"sle-12-s390x","autorefresh":false,"id":1675,"enabled":false},{"name":"SLE-Module-Legacy12-Source-Pool","installer_updates":false,"description":"SLE-Module-Legacy12-Source-Pool for sle-12-s390x","id":1988,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/12/s390x/product_source/","autorefresh":false,"distro_target":"sle-12-s390x"}],"online_predecessor_ids":[],"product_class":"MODULE","predecessor_ids":[]},{"product_type":"module","cpe":"cpe:/o:suse:sle-module-web-scripting:12","online_predecessor_ids":[],"product_class":"MODULE","repositories":[{"name":"SLE-Module-Web-Scripting12-Updates","installer_updates":false,"description":"SLE-Module-Web-Scripting12-Updates for sle-12-s390x","id":1684,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/12/s390x/update/","autorefresh":true,"distro_target":"sle-12-s390x"},{"name":"SLE-Module-Web-Scripting12-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-Web-Scripting12-Debuginfo-Updates for sle-12-s390x","id":1685,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/12/s390x/update_debug/","autorefresh":true,"distro_target":"sle-12-s390x"},{"description":"SLE-Module-Web-Scripting12-Pool for sle-12-s390x","installer_updates":false,"name":"SLE-Module-Web-Scripting12-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/12/s390x/product/","distro_target":"sle-12-s390x","autorefresh":false,"id":1686,"enabled":true},{"distro_target":"sle-12-s390x","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/12/s390x/product_debug/","enabled":false,"id":1687,"description":"SLE-Module-Web-Scripting12-Debuginfo-Pool for sle-12-s390x","installer_updates":false,"name":"SLE-Module-Web-Scripting12-Debuginfo-Pool"},{"description":"SLE-Module-Web-Scripting12-Source-Pool for sle-12-s390x","name":"SLE-Module-Web-Scripting12-Source-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-12-s390x","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/12/s390x/product_source/","enabled":false,"id":1991}],"predecessor_ids":[],"arch":"s390x","eula_url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/12/s390x/product.license/","free":true,"description":"

The SUSE Linux Enterprise Web and Scripting Module delivers a comprehensive suite of scripting languages, frameworks, and related tools helping developers and systems administrators accelerate the creation of stable, modern web applications, using dynamic languages, such as PHP, Ruby on Rails, and Python.

Access to the Web and Scripting Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself: Package versions in the this module are usually supported for at most three years. We are planning to release more recent versions on a schedule of approximately 18 month; the exact dates may differ per package.

","shortname":"Web-and-Scripting-Module","identifier":"sle-module-web-scripting","release_stage":"released","id":1152,"extensions":[],"friendly_version":"12","release_type":null,"former_identifier":"sle-module-web-scripting","friendly_name":"Web and Scripting Module 12 s390x","migration_extra":false,"offline_predecessor_ids":[],"name":"Web and Scripting Module","version":"12","recommended":false},{"friendly_version":"12","id":1219,"release_stage":"released","identifier":"sle-module-public-cloud","extensions":[],"version":"12","recommended":false,"former_identifier":"sle-module-public-cloud","release_type":null,"migration_extra":false,"friendly_name":"Public Cloud Module 12 s390x","offline_predecessor_ids":[],"name":"Public Cloud Module","online_predecessor_ids":[],"product_class":"MODULE","repositories":[{"description":"SLE-Module-Public-Cloud12-Updates for sle-12-s390x","installer_updates":false,"name":"SLE-Module-Public-Cloud12-Updates","distro_target":"sle-12-s390x","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/12/s390x/update/","enabled":true,"id":1696},{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/12/s390x/update_debug/","distro_target":"sle-12-s390x","autorefresh":true,"id":1697,"enabled":false,"description":"SLE-Module-Public-Cloud12-Debuginfo-Updates for sle-12-s390x","installer_updates":false,"name":"SLE-Module-Public-Cloud12-Debuginfo-Updates"},{"description":"SLE-Module-Public-Cloud12-Pool for sle-12-s390x","name":"SLE-Module-Public-Cloud12-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/12/s390x/product/","autorefresh":false,"distro_target":"sle-12-s390x","id":1698,"enabled":true},{"description":"SLE-Module-Public-Cloud12-Debuginfo-Pool for sle-12-s390x","name":"SLE-Module-Public-Cloud12-Debuginfo-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/12/s390x/product_debug/","autorefresh":false,"distro_target":"sle-12-s390x","id":1699,"enabled":false},{"autorefresh":false,"distro_target":"sle-12-s390x","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/12/s390x/product_source/","enabled":false,"id":1994,"description":"SLE-Module-Public-Cloud12-Source-Pool for sle-12-s390x","name":"SLE-Module-Public-Cloud12-Source-Pool","installer_updates":false}],"predecessor_ids":[],"product_type":"module","cpe":"cpe:/o:suse:sle-module-public-cloud:12","free":true,"shortname":"Public-Cloud-Module","description":"

The Public Cloud Module is a collection of tools that enables you to create and manage cloud images from the commandline on SUSE Linux Enterprise Server. When building your own images with KIWI or SUSE Studio, initialization code specific to the target cloud is included in that image.

Access to the Public Cloud Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself; please check the Release Notes for further details.

","arch":"s390x","eula_url":""},{"cpe":"cpe:/o:suse:sle-module-adv-systems-management:12","product_type":"module","product_class":"MODULE","online_predecessor_ids":[],"repositories":[{"enabled":true,"id":1766,"distro_target":"sle-12-s390x","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Adv-Systems-Management/12/s390x/update/","installer_updates":false,"name":"SLE-Module-Adv-Systems-Management12-Updates","description":"SLE-Module-Adv-Systems-Management12-Updates for sle-12-s390x"},{"enabled":false,"id":1767,"autorefresh":true,"distro_target":"sle-12-s390x","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Adv-Systems-Management/12/s390x/update_debug/","name":"SLE-Module-Adv-Systems-Management12-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-Adv-Systems-Management12-Debuginfo-Updates for sle-12-s390x"},{"id":1768,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Adv-Systems-Management/12/s390x/product/","autorefresh":false,"distro_target":"sle-12-s390x","name":"SLE-Module-Adv-Systems-Management12-Pool","installer_updates":false,"description":"SLE-Module-Adv-Systems-Management12-Pool for sle-12-s390x"},{"autorefresh":false,"distro_target":"sle-12-s390x","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Adv-Systems-Management/12/s390x/product_debug/","enabled":false,"id":1769,"description":"SLE-Module-Adv-Systems-Management12-Debuginfo-Pool for sle-12-s390x","name":"SLE-Module-Adv-Systems-Management12-Debuginfo-Pool","installer_updates":false},{"description":"SLE-Module-Adv-Systems-Management12-Source-Pool for sle-12-s390x","installer_updates":false,"name":"SLE-Module-Adv-Systems-Management12-Source-Pool","distro_target":"sle-12-s390x","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Adv-Systems-Management/12/s390x/product_source/","enabled":false,"id":1997}],"predecessor_ids":[],"arch":"s390x","eula_url":"","shortname":"Adv-Sys-Mgmt-Module","description":"

This Module contains current versions of the popular configuration management frameworks Puppet and CFEngine as well as the new systems management toolbox called machinery.

The machinery tool will be frequently updated and is SUSE's upcoming systems management toolbox for inspecting and validating systems remotely, storing their system description and creating new systems to deploy them in datacenters and clouds.

","free":true,"identifier":"sle-module-adv-systems-management","release_stage":"released","id":1295,"extensions":[],"friendly_version":"12","friendly_name":"Advanced Systems Management Module 12 s390x","migration_extra":false,"former_identifier":"sle-module-adv-systems-management","release_type":null,"name":"Advanced Systems Management Module","offline_predecessor_ids":[],"version":"12","recommended":false},{"product_type":"module","cpe":"cpe:/o:suse:sle-module-toolchain:12","repositories":[{"enabled":true,"id":1899,"distro_target":"sle-12-s390x","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Toolchain/12/s390x/update/","installer_updates":false,"name":"SLE-Module-Toolchain12-Updates","description":"SLE-Module-Toolchain12-Updates for sle-12-s390x"},{"name":"SLE-Module-Toolchain12-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-Toolchain12-Debuginfo-Updates for sle-12-s390x","id":1900,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Toolchain/12/s390x/update_debug/","autorefresh":true,"distro_target":"sle-12-s390x"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Toolchain/12/s390x/product/","autorefresh":false,"distro_target":"sle-12-s390x","id":1901,"enabled":true,"description":"SLE-Module-Toolchain12-Pool for sle-12-s390x","name":"SLE-Module-Toolchain12-Pool","installer_updates":false},{"description":"SLE-Module-Toolchain12-Debuginfo-Pool for sle-12-s390x","installer_updates":false,"name":"SLE-Module-Toolchain12-Debuginfo-Pool","distro_target":"sle-12-s390x","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Toolchain/12/s390x/product_debug/","enabled":false,"id":1902}],"online_predecessor_ids":[],"product_class":"MODULE","predecessor_ids":[],"arch":"s390x","eula_url":"","free":true,"shortname":"Toolchain-Module","description":"Via this Module you will have access to a more recent GCC and Toolchain in addition to the default compiler of SUSE Linux Enterprise. Access to the Toolchain Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself. Please check the Release Notes for further details.","release_stage":"released","id":1340,"identifier":"sle-module-toolchain","extensions":[],"friendly_version":"12","release_type":null,"former_identifier":"sle-module-toolchain","friendly_name":"Toolchain Module 12 s390x","migration_extra":false,"offline_predecessor_ids":[],"name":"Toolchain Module","version":"12","recommended":false},{"extensions":[],"release_stage":"released","id":1354,"identifier":"sle-module-containers","friendly_version":"12","offline_predecessor_ids":[],"name":"Containers Module","former_identifier":"sle-module-containers","release_type":null,"friendly_name":"Containers Module 12 s390x","migration_extra":false,"recommended":false,"version":"12","product_type":"module","cpe":"cpe:/o:suse:sle-module-containers:12","predecessor_ids":[],"product_class":"MODULE","online_predecessor_ids":[],"repositories":[{"description":"SLE-Module-Containers12-Updates for sle-12-s390x","installer_updates":false,"name":"SLE-Module-Containers12-Updates","distro_target":"sle-12-s390x","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/12/s390x/update/","enabled":true,"id":1977},{"id":1978,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/12/s390x/update_debug/","autorefresh":true,"distro_target":"sle-12-s390x","name":"SLE-Module-Containers12-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-Containers12-Debuginfo-Updates for sle-12-s390x"},{"installer_updates":false,"name":"SLE-Module-Containers12-Pool","description":"SLE-Module-Containers12-Pool for sle-12-s390x","id":1979,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/12/s390x/product/","distro_target":"sle-12-s390x","autorefresh":false},{"description":"SLE-Module-Containers12-Debuginfo-Pool for sle-12-s390x","name":"SLE-Module-Containers12-Debuginfo-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/12/s390x/product_debug/","autorefresh":false,"distro_target":"sle-12-s390x","id":1980,"enabled":false},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/12/s390x/product_source/","distro_target":"sle-12-s390x","autorefresh":false,"id":1981,"enabled":false,"description":"SLE-Module-Containers12-Source-Pool for sle-12-s390x","installer_updates":false,"name":"SLE-Module-Containers12-Source-Pool"}],"eula_url":"","arch":"s390x","free":true,"shortname":"Containers-Module","description":"

This Module contains several packages revolving around containers and related tools.

"},{"name":"SUSE Manager Server","offline_predecessor_ids":[],"friendly_name":"SUSE Manager Server 3.1 s390x","migration_extra":false,"former_identifier":"SUSE-Manager-Server","release_type":null,"recommended":false,"version":"3.1","extensions":[],"release_stage":"released","id":1519,"identifier":"SUSE-Manager-Server","friendly_version":"3.1","eula_url":"https://updates.suse.com/SUSE/Products/SUSE-Manager-Server/3.1/s390x/product.license/","arch":"s390x","description":"SUSE Manager lets you efficiently manage physical, virtual, and cloud-based Linux systems. It provides automated and cost-effective configuration and software management, asset management, and system provisioning.","shortname":"SUSE Manager Server","free":false,"cpe":"cpe:/o:suse:suse-manager-server:3.1","product_type":"extension","predecessor_ids":[1348],"product_class":"SMS-Z","online_predecessor_ids":[1348],"repositories":[{"installer_updates":false,"name":"SUSE-Manager-Server-3.1-Updates","description":"SUSE-Manager-Server-3.1-Updates for sle-12-s390x","enabled":true,"id":2405,"distro_target":"sle-12-s390x","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SUSE-Manager-Server/3.1/s390x/update/"},{"name":"SUSE-Manager-Server-3.1-Debuginfo-Updates","installer_updates":false,"description":"SUSE-Manager-Server-3.1-Debuginfo-Updates for sle-12-s390x","id":2406,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SUSE-Manager-Server/3.1/s390x/update_debug/","autorefresh":true,"distro_target":"sle-12-s390x"},{"enabled":true,"id":2407,"autorefresh":false,"distro_target":"sle-12-s390x","url":"https://updates.suse.com/SUSE/Products/SUSE-Manager-Server/3.1/s390x/product/","name":"SUSE-Manager-Server-3.1-Pool","installer_updates":false,"description":"SUSE-Manager-Server-3.1-Pool for sle-12-s390x"},{"enabled":false,"id":2408,"autorefresh":false,"distro_target":"sle-12-s390x","url":"https://updates.suse.com/SUSE/Products/SUSE-Manager-Server/3.1/s390x/product_debug/","name":"SUSE-Manager-Server-3.1-Debuginfo-Pool","installer_updates":false,"description":"SUSE-Manager-Server-3.1-Debuginfo-Pool for sle-12-s390x"},{"name":"SUSE-Manager-Server-3.1-Source-Pool","installer_updates":false,"description":"SUSE-Manager-Server-3.1-Source-Pool for sle-12-s390x","id":2409,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SUSE-Manager-Server/3.1/s390x/product_source/","autorefresh":false,"distro_target":"sle-12-s390x"}]},{"version":"12.4","recommended":false,"release_type":null,"former_identifier":"sle-sdk","migration_extra":false,"friendly_name":"SUSE Linux Enterprise Software Development Kit 12 SP4 s390x","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Software Development Kit","friendly_version":"12 SP4","release_stage":"released","identifier":"sle-sdk","id":1632,"extensions":[],"free":true,"shortname":"SDK12-SP4","description":"

SUSE Linux Enterprise Software Development Kit is the Software Development Kit for the family of SUSE Linux Enterprise products. It is a free of charge extension for partners and customers working with SUSE Linux Enterprise Server and Desktop and derived products.

Packages on the SDK are delivered without L3 support; maintenance updates will be done for critical security and critical non-security issues, and where needed to remain in sync with packages delivered in the SUSE Linux Enterprise Server and Desktop products.

Packages to rebuild SUSE Linux Enterprise Server are not part of the SUSE Linux Enterprise Software Development Kit.

","arch":"s390x","eula_url":"https://updates.suse.com/SUSE/Products/SLE-SDK/12-SP4/s390x/product.license/","online_predecessor_ids":[1146,1344,1365,1429],"product_class":"MODULE","repositories":[{"installer_updates":false,"name":"SLE-SDK12-SP4-Updates","description":"SLE-SDK12-SP4-Updates for sle-12-s390x","id":2809,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-SDK/12-SP4/s390x/update/","distro_target":"sle-12-s390x","autorefresh":true},{"enabled":false,"id":2810,"distro_target":"sle-12-s390x","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-SDK/12-SP4/s390x/update_debug/","installer_updates":false,"name":"SLE-SDK12-SP4-Debuginfo-Updates","description":"SLE-SDK12-SP4-Debuginfo-Updates for sle-12-s390x"},{"name":"SLE-SDK12-SP4-Pool","installer_updates":false,"description":"SLE-SDK12-SP4-Pool for sle-12-s390x","id":2811,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-SDK/12-SP4/s390x/product/","autorefresh":false,"distro_target":"sle-12-s390x"},{"installer_updates":false,"name":"SLE-SDK12-SP4-Debuginfo-Pool","description":"SLE-SDK12-SP4-Debuginfo-Pool for sle-12-s390x","enabled":false,"id":2812,"distro_target":"sle-12-s390x","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-SDK/12-SP4/s390x/product_debug/"},{"url":"https://updates.suse.com/SUSE/Products/SLE-SDK/12-SP4/s390x/product_source/","autorefresh":false,"distro_target":"sle-12-s390x","id":2813,"enabled":false,"description":"SLE-SDK12-SP4-Source-Pool for sle-12-s390x","name":"SLE-SDK12-SP4-Source-Pool","installer_updates":false}],"predecessor_ids":[1146,1344,1365,1429],"product_type":"extension","cpe":"cpe:/o:suse:sle-sdk:12:sp4"},{"arch":"s390x","eula_url":"https://updates.suse.com/SUSE/Products/SLE-HA/12-SP4/s390x/product.license/","shortname":"SLEHA12-SP4","description":"SUSE Linux Enterprise High Availability Extension.","free":false,"cpe":"cpe:/o:suse:sle-ha:12:sp4","product_type":"extension","product_class":"SLE-HAE-Z","online_predecessor_ids":[1244,1336,1360,1434],"repositories":[{"name":"SLE-HA12-SP4-Updates","installer_updates":false,"description":"SLE-HA12-SP4-Updates for sle-12-s390x","enabled":true,"id":2829,"autorefresh":true,"distro_target":"sle-12-s390x","url":"https://updates.suse.com/SUSE/Updates/SLE-HA/12-SP4/s390x/update/"},{"description":"SLE-HA12-SP4-Debuginfo-Updates for sle-12-s390x","installer_updates":false,"name":"SLE-HA12-SP4-Debuginfo-Updates","distro_target":"sle-12-s390x","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-HA/12-SP4/s390x/update_debug/","enabled":false,"id":2830},{"id":2831,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-HA/12-SP4/s390x/product/","autorefresh":false,"distro_target":"sle-12-s390x","name":"SLE-HA12-SP4-Pool","installer_updates":false,"description":"SLE-HA12-SP4-Pool for sle-12-s390x"},{"description":"SLE-HA12-SP4-Debuginfo-Pool for sle-12-s390x","installer_updates":false,"name":"SLE-HA12-SP4-Debuginfo-Pool","distro_target":"sle-12-s390x","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-HA/12-SP4/s390x/product_debug/","enabled":false,"id":2832},{"url":"https://updates.suse.com/SUSE/Products/SLE-HA/12-SP4/s390x/product_source/","autorefresh":false,"distro_target":"sle-12-s390x","id":2833,"enabled":false,"description":"SLE-HA12-SP4-Source-Pool for sle-12-s390x","name":"SLE-HA12-SP4-Source-Pool","installer_updates":false}],"predecessor_ids":[1244,1336,1360,1434],"friendly_name":"SUSE Linux Enterprise High Availability Extension 12 SP4 s390x","migration_extra":false,"former_identifier":"sle-hae","release_type":null,"name":"SUSE Linux Enterprise High Availability Extension","offline_predecessor_ids":[1080,1082,1084,1086,1257],"version":"12.4","recommended":false,"identifier":"sle-ha","release_stage":"released","id":1636,"extensions":[{"version":"12.4","recommended":false,"friendly_name":"SUSE Linux Enterprise High Availability GEO Extension 12 SP4 s390x","migration_extra":false,"release_type":null,"former_identifier":"sle-hae-geo","name":"SUSE Linux Enterprise High Availability GEO Extension","offline_predecessor_ids":[1109,1110,1287],"friendly_version":"12 SP4","release_stage":"released","id":1638,"identifier":"sle-ha-geo","extensions":[],"description":"SUSE Linux Enterprise High Availability Geographical Cluster Extension","shortname":"SLEHAGEO12-SP4","free":false,"arch":"s390x","eula_url":"https://updates.suse.com/SUSE/Products/SLE-HA-GEO/12-SP4/s390x/product.license/","online_predecessor_ids":[1156,1345,1362,1436],"product_class":"SLE-HAE-GEO","repositories":[{"description":"SLE-HA-GEO12-SP4-Updates for sle-12-s390x","name":"SLE-HA-GEO12-SP4-Updates","installer_updates":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-HA-GEO/12-SP4/s390x/update/","autorefresh":true,"distro_target":"sle-12-s390x","id":2839,"enabled":true},{"url":"https://updates.suse.com/SUSE/Updates/SLE-HA-GEO/12-SP4/s390x/update_debug/","distro_target":"sle-12-s390x","autorefresh":true,"id":2840,"enabled":false,"description":"SLE-HA-GEO12-SP4-Debuginfo-Updates for sle-12-s390x","installer_updates":false,"name":"SLE-HA-GEO12-SP4-Debuginfo-Updates"},{"url":"https://updates.suse.com/SUSE/Products/SLE-HA-GEO/12-SP4/s390x/product/","autorefresh":false,"distro_target":"sle-12-s390x","id":2841,"enabled":true,"description":"SLE-HA-GEO12-SP4-Pool for sle-12-s390x","name":"SLE-HA-GEO12-SP4-Pool","installer_updates":false},{"description":"SLE-HA-GEO12-SP4-Debuginfo-Pool for sle-12-s390x","name":"SLE-HA-GEO12-SP4-Debuginfo-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-12-s390x","url":"https://updates.suse.com/SUSE/Products/SLE-HA-GEO/12-SP4/s390x/product_debug/","enabled":false,"id":2842},{"description":"SLE-HA-GEO12-SP4-Source-Pool for sle-12-s390x","name":"SLE-HA-GEO12-SP4-Source-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-HA-GEO/12-SP4/s390x/product_source/","autorefresh":false,"distro_target":"sle-12-s390x","id":2843,"enabled":false}],"predecessor_ids":[1156,1345,1362,1436],"cpe":"cpe:/o:suse:sle-ha-geo:12:sp4","product_type":"extension"}],"friendly_version":"12 SP4"},{"friendly_version":"3.2","id":1723,"release_stage":"released","identifier":"SUSE-Manager-Server","extensions":[],"version":"3.2","recommended":false,"former_identifier":"SUSE-Manager-Server","release_type":null,"friendly_name":"SUSE Manager Server 3.2 s390x","migration_extra":false,"offline_predecessor_ids":[],"name":"SUSE Manager Server","online_predecessor_ids":[1519],"repositories":[{"url":"https://updates.suse.com/SUSE/Updates/SUSE-Manager-Server/3.2/s390x/update/","autorefresh":true,"distro_target":"sle-12-s390x","id":2982,"enabled":true,"description":"SUSE-Manager-Server-3.2-Updates for sle-12-s390x","name":"SUSE-Manager-Server-3.2-Updates","installer_updates":false},{"enabled":false,"id":2983,"autorefresh":true,"distro_target":"sle-12-s390x","url":"https://updates.suse.com/SUSE/Updates/SUSE-Manager-Server/3.2/s390x/update_debug/","name":"SUSE-Manager-Server-3.2-Debuginfo-Updates","installer_updates":false,"description":"SUSE-Manager-Server-3.2-Debuginfo-Updates for sle-12-s390x"},{"autorefresh":false,"distro_target":"sle-12-s390x","url":"https://updates.suse.com/SUSE/Products/SUSE-Manager-Server/3.2/s390x/product/","enabled":true,"id":2984,"description":"SUSE-Manager-Server-3.2-Pool for sle-12-s390x","name":"SUSE-Manager-Server-3.2-Pool","installer_updates":false},{"enabled":false,"id":2985,"autorefresh":false,"distro_target":"sle-12-s390x","url":"https://updates.suse.com/SUSE/Products/SUSE-Manager-Server/3.2/s390x/product_debug/","name":"SUSE-Manager-Server-3.2-Debuginfo-Pool","installer_updates":false,"description":"SUSE-Manager-Server-3.2-Debuginfo-Pool for sle-12-s390x"},{"installer_updates":false,"name":"SUSE-Manager-Server-3.2-Source-Pool","description":"SUSE-Manager-Server-3.2-Source-Pool for sle-12-s390x","id":2986,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SUSE-Manager-Server/3.2/s390x/product_source/","distro_target":"sle-12-s390x","autorefresh":false}],"product_class":"SMS-Z","predecessor_ids":[1519],"product_type":"extension","cpe":"cpe:/o:suse:suse-manager-server:3.2","free":false,"description":"SUSE Manager lets you efficiently manage physical, virtual, and cloud-based Linux systems. It provides automated and cost-effective configuration and software management, asset management, and system provisioning.","shortname":"SUSE Manager Server 3.2","arch":"s390x","eula_url":"https://updates.suse.com/SUSE/Products/SUSE-Manager-Server/3.2/s390x/product.license/"},{"extensions":[],"id":1812,"release_stage":"released","identifier":"PackageHub","friendly_version":"12 SP4","offline_predecessor_ids":[],"name":"SUSE Package Hub","former_identifier":"PackageHub","release_type":null,"migration_extra":false,"friendly_name":"SUSE Package Hub 12 SP4 s390x","recommended":false,"version":"12.4","product_type":"extension","cpe":"cpe:/o:suse:packagehub:12:sp4","predecessor_ids":[1474,1477,1480,1530],"online_predecessor_ids":[1474,1477,1480,1530],"repositories":[{"description":"SUSE-PackageHub-12-SP4-Standard-Pool for sle-12-s390x","name":"SUSE-PackageHub-12-SP4-Standard-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-12-s390x","url":"https://updates.suse.com/SUSE/Backports/SLE-12-SP4_s390x/standard/","enabled":true,"id":3457},{"id":3458,"enabled":false,"url":"https://updates.suse.com/SUSE/Backports/SLE-12-SP4_s390x/standard_debug/","autorefresh":true,"distro_target":"sle-12-s390x","name":"SUSE-PackageHub-12-SP4-Debuginfo","installer_updates":false,"description":"SUSE-PackageHub-12-SP4-Debuginfo for sle-12-s390x"},{"url":"https://updates.suse.com/SUSE/Backports/SLE-12-SP4_s390x/product/","distro_target":"sle-12-s390x","autorefresh":false,"id":3459,"enabled":true,"description":"SUSE-PackageHub-12-SP4-Pool for sle-12-s390x","installer_updates":false,"name":"SUSE-PackageHub-12-SP4-Pool"}],"product_class":"MODULE","eula_url":"","arch":"s390x","free":true,"shortname":"SUSE-PackageHub-12-SP4","description":"SUSE Package Hub is a free of charge extension providing access to community maintained packages built to run on SUSE Linux Enterprise Server. Built from the same sources used in the openSUSE distributions, these quality packages provide additional software to what is found in the SUSE Linux Enterprise Server product. Packages from the Package Hub are delivered without L3 support from SUSE. General updates and fixes to the packages in SUSE Package Hub are provided by the openSUSE community based on their discretion though SUSE will monitor and ensure that any known critical security issues will be addressed. Packages in the Package Hub are approved by SUSE for use with SUSE Linux Enterprise Server 12 and to not interfere with the supportability of SUSE Linux Enterprise Server it's modules and extensions. For more information about SUSE Package Hub please visit https://packagehub.suse.com."},{"product_class":"SLE-LP-Z","online_predecessor_ids":[],"repositories":[{"description":"SLE-Live-Patching12-SP4-Updates for sle-12-s390x","name":"SLE-Live-Patching12-SP4-Updates","installer_updates":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Live-Patching/12-SP4/s390x/update/","autorefresh":true,"distro_target":"sle-12-s390x","id":4437,"enabled":true},{"name":"SLE-Live-Patching12-SP4-Debuginfo-Updates","installer_updates":false,"description":"SLE-Live-Patching12-SP4-Debuginfo-Updates for sle-12-s390x","id":4438,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Live-Patching/12-SP4/s390x/update_debug/","autorefresh":true,"distro_target":"sle-12-s390x"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Live-Patching/12-SP4/s390x/product/","distro_target":"sle-12-s390x","autorefresh":false,"id":4439,"enabled":true,"description":"SLE-Live-Patching12-SP4-Pool for sle-12-s390x","installer_updates":false,"name":"SLE-Live-Patching12-SP4-Pool"},{"enabled":false,"id":4440,"distro_target":"sle-12-s390x","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Live-Patching/12-SP4/s390x/product_debug/","installer_updates":false,"name":"SLE-Live-Patching12-SP4-Debuginfo-Pool","description":"SLE-Live-Patching12-SP4-Debuginfo-Pool for sle-12-s390x"}],"predecessor_ids":[],"product_type":"extension","cpe":"cpe:/o:suse:sle-live-patching:12:sp4","free":false,"shortname":"Live-Patching","description":"

SUSE Linux Enterprise Live Patching provides packages to update critical kernel modules live in SUSE Linux Enterprise. With SUSE Linux Enterprise Live Patching, you can perform critical kernel patching without shutting down your system, reducing the need for planned downtime and increasing service availability.

","arch":"s390x","eula_url":"https://updates.suse.com/SUSE/Products/SLE-Live-Patching/12-SP4/s390x/product.license/","friendly_version":"12 SP4","release_stage":"released","id":2079,"identifier":"sle-live-patching","extensions":[],"version":"12.4","recommended":false,"former_identifier":"sle-live-patching","release_type":null,"friendly_name":"SUSE Linux Enterprise Live Patching 12 SP4 s390x","migration_extra":false,"offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Live Patching"},{"offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Server LTSS","release_type":null,"former_identifier":"SLES-LTSS","migration_extra":false,"friendly_name":"SUSE Linux Enterprise Server LTSS 12 SP4 s390x","recommended":false,"version":"12.4","extensions":[],"identifier":"SLES-LTSS","release_stage":"released","id":2116,"friendly_version":"12 SP4","eula_url":"","arch":"s390x","free":false,"shortname":"SLES12-SP4 LTSS","description":"SUSE Linux Enterprise offers a comprehensive suite of products built on a single code base. The platform addresses business needs from the smallest thin-client devices to the world's most powerful high-performance computing and mainframe servers. SUSE Linux Enterprise offers common management tools and technology certifications across the platform, and each product is enterprise-class.","product_type":"extension","cpe":"cpe:/o:suse:sles-ltss:12:sp4","predecessor_ids":[],"repositories":[{"autorefresh":true,"distro_target":"sle-12-s390x","url":"https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-SP4-LTSS/s390x/update/","enabled":true,"id":4490,"description":"SLES12-SP4-LTSS-Updates for sle-12-s390x","name":"SLES12-SP4-LTSS-Updates","installer_updates":false},{"installer_updates":false,"name":"SLES12-SP4-LTSS-Debuginfo-Updates","description":"SLES12-SP4-LTSS-Debuginfo-Updates for sle-12-s390x","enabled":false,"id":4491,"distro_target":"sle-12-s390x","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-SP4-LTSS/s390x/update_debug/"}],"online_predecessor_ids":[],"product_class":"SLES12-SP4-LTSS-Z"}],"friendly_version":"12 SP4","former_identifier":"SLES","release_type":null,"friendly_name":"SUSE Linux Enterprise Server 12 SP4 s390x","migration_extra":false,"offline_predecessor_ids":[693,745,755,805,1303],"name":"SUSE Linux Enterprise Server","version":"12.4","recommended":false},{"version":"12.4","recommended":false,"former_identifier":"SLES","release_type":null,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Server 12 SP4 aarch64","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Server","friendly_version":"12 SP4","release_stage":"released","identifier":"SLES","id":1628,"extensions":[{"friendly_version":"12","extensions":[],"release_stage":"released","identifier":"sle-module-toolchain","id":1376,"recommended":false,"version":"12","name":"Toolchain Module","offline_predecessor_ids":[],"friendly_name":"Toolchain Module 12 aarch64","migration_extra":false,"former_identifier":"sle-module-toolchain","release_type":null,"predecessor_ids":[],"repositories":[{"installer_updates":false,"name":"SLE-Module-Toolchain12-Updates","description":"SLE-Module-Toolchain12-Updates for sle-12-aarch64","enabled":true,"id":2086,"distro_target":"sle-12-aarch64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Toolchain/12/aarch64/update/"},{"description":"SLE-Module-Toolchain12-Debuginfo-Updates for sle-12-aarch64","name":"SLE-Module-Toolchain12-Debuginfo-Updates","installer_updates":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Toolchain/12/aarch64/update_debug/","autorefresh":true,"distro_target":"sle-12-aarch64","id":2087,"enabled":false},{"description":"SLE-Module-Toolchain12-Pool for sle-12-aarch64","installer_updates":false,"name":"SLE-Module-Toolchain12-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Toolchain/12/aarch64/product/","distro_target":"sle-12-aarch64","autorefresh":false,"id":2088,"enabled":true},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Toolchain/12/aarch64/product_debug/","distro_target":"sle-12-aarch64","autorefresh":false,"id":2089,"enabled":false,"description":"SLE-Module-Toolchain12-Debuginfo-Pool for sle-12-aarch64","installer_updates":false,"name":"SLE-Module-Toolchain12-Debuginfo-Pool"}],"online_predecessor_ids":[],"product_class":"MODULE","cpe":"cpe:/o:suse:sle-module-toolchain:12","product_type":"module","shortname":"Toolchain-Module","description":"Via this Module you will have access to a more recent GCC and Toolchain in addition to the default compiler of SUSE Linux Enterprise. Access to the Toolchain Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself. Please check the Release Notes for further details.","free":true,"eula_url":"","arch":"aarch64"},{"arch":"aarch64","eula_url":"https://updates.suse.com/SUSE/Products/SLE-Module-HPC/12/aarch64/product.license/","shortname":"HPC-Module","description":"The SUSE Linux Enterprise Server High Performance Computing (HPC) module delivers specific tools commonly used for high performance, numerically intensive workloads. SUSE packages these tools in the SLES HPC Module to provide greater flexibility to deliver new versions or new tools more rapidly than the standard SUSE Linux Enterprise lifecycle would permit. Packages in this module are general supported till a newer version of the package is released or the package is dropped from the module.","free":true,"cpe":"cpe:/o:suse:sle-module-hpc:12","product_type":"module","product_class":"MODULE","online_predecessor_ids":[],"repositories":[{"enabled":true,"id":2421,"distro_target":"sle-12-aarch64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-HPC/12/aarch64/update/","installer_updates":false,"name":"SLE-Module-HPC12-Updates","description":"SLE-Module-HPC12-Updates for sle-12-aarch64"},{"installer_updates":false,"name":"SLE-Module-HPC12-Debuginfo-Updates","description":"SLE-Module-HPC12-Debuginfo-Updates for sle-12-aarch64","id":2422,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-HPC/12/aarch64/update_debug/","distro_target":"sle-12-aarch64","autorefresh":true},{"description":"SLE-Module-HPC12-Pool for sle-12-aarch64","name":"SLE-Module-HPC12-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-12-aarch64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-HPC/12/aarch64/product/","enabled":true,"id":2423},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-HPC/12/aarch64/product_debug/","autorefresh":false,"distro_target":"sle-12-aarch64","id":2424,"enabled":false,"description":"SLE-Module-HPC12-Debuginfo-Pool for sle-12-aarch64","name":"SLE-Module-HPC12-Debuginfo-Pool","installer_updates":false},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-HPC/12/aarch64/product_source/","autorefresh":false,"distro_target":"sle-12-aarch64","id":2425,"enabled":false,"description":"SLE-Module-HPC12-Source-Pool for sle-12-aarch64","name":"SLE-Module-HPC12-Source-Pool","installer_updates":false}],"predecessor_ids":[],"migration_extra":false,"friendly_name":"HPC Module 12 aarch64","former_identifier":"sle-module-hpc","release_type":null,"name":"HPC Module","offline_predecessor_ids":[],"version":"12","recommended":false,"id":1522,"release_stage":"released","identifier":"sle-module-hpc","extensions":[],"friendly_version":"12"},{"release_stage":"released","identifier":"sle-module-public-cloud","id":1528,"extensions":[],"friendly_version":"12","former_identifier":"sle-module-public-cloud","release_type":null,"friendly_name":"Public Cloud Module 12 aarch64","migration_extra":false,"offline_predecessor_ids":[],"name":"Public Cloud Module","version":"12","recommended":false,"product_type":"module","cpe":"cpe:/o:suse:sle-module-public-cloud:12","repositories":[{"enabled":true,"id":2157,"distro_target":"sle-12-aarch64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/12/aarch64/update/","installer_updates":false,"name":"SLE-Module-Public-Cloud12-Updates","description":"SLE-Module-Public-Cloud12-Updates for sle-12-aarch64"},{"enabled":false,"id":2158,"distro_target":"sle-12-aarch64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/12/aarch64/update_debug/","installer_updates":false,"name":"SLE-Module-Public-Cloud12-Debuginfo-Updates","description":"SLE-Module-Public-Cloud12-Debuginfo-Updates for sle-12-aarch64"},{"id":2159,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/12/aarch64/product/","autorefresh":false,"distro_target":"sle-12-aarch64","name":"SLE-Module-Public-Cloud12-Pool","installer_updates":false,"description":"SLE-Module-Public-Cloud12-Pool for sle-12-aarch64"},{"name":"SLE-Module-Public-Cloud12-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-Public-Cloud12-Debuginfo-Pool for sle-12-aarch64","id":2160,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/12/aarch64/product_debug/","autorefresh":false,"distro_target":"sle-12-aarch64"},{"name":"SLE-Module-Public-Cloud12-Source-Pool","installer_updates":false,"description":"SLE-Module-Public-Cloud12-Source-Pool for sle-12-aarch64","id":2161,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/12/aarch64/product_source/","autorefresh":false,"distro_target":"sle-12-aarch64"}],"online_predecessor_ids":[],"product_class":"MODULE","predecessor_ids":[],"arch":"aarch64","eula_url":"","free":true,"description":"

The Public Cloud Module is a collection of tools that enables you to create and manage cloud images from the commandline on SUSE Linux Enterprise Server. When building your own images with KIWI or SUSE Studio, initialization code specific to the target cloud is included in that image.

Access to the Public Cloud Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself; please check the Release Notes for further details.

","shortname":"Public-Cloud-Module"},{"free":true,"description":"

The SUSE Linux Enterprise Web and Scripting Module delivers a comprehensive suite of scripting languages, frameworks, and related tools helping developers and systems administrators accelerate the creation of stable, modern web applications, using dynamic languages, such as PHP, Ruby on Rails, and Python.

Access to the Web and Scripting Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself: Package versions in the this module are usually supported for at most three years. We are planning to release more recent versions on a schedule of approximately 18 month; the exact dates may differ per package.

","shortname":"Web-and-Scripting-Module","eula_url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/12/aarch64/product.license/","arch":"aarch64","predecessor_ids":[],"repositories":[{"distro_target":"sle-12-aarch64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/12/aarch64/update/","enabled":true,"id":2476,"description":"SLE-Module-Web-Scripting12-Updates for sle-12-aarch64","installer_updates":false,"name":"SLE-Module-Web-Scripting12-Updates"},{"description":"SLE-Module-Web-Scripting12-Debuginfo-Updates for sle-12-aarch64","installer_updates":false,"name":"SLE-Module-Web-Scripting12-Debuginfo-Updates","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/12/aarch64/update_debug/","distro_target":"sle-12-aarch64","autorefresh":true,"id":2477,"enabled":false},{"distro_target":"sle-12-aarch64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/12/aarch64/product/","enabled":true,"id":2478,"description":"SLE-Module-Web-Scripting12-Pool for sle-12-aarch64","installer_updates":false,"name":"SLE-Module-Web-Scripting12-Pool"},{"description":"SLE-Module-Web-Scripting12-Debuginfo-Pool for sle-12-aarch64","installer_updates":false,"name":"SLE-Module-Web-Scripting12-Debuginfo-Pool","distro_target":"sle-12-aarch64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/12/aarch64/product_debug/","enabled":false,"id":2479},{"name":"SLE-Module-Web-Scripting12-Source-Pool","installer_updates":false,"description":"SLE-Module-Web-Scripting12-Source-Pool for sle-12-aarch64","id":2480,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/12/aarch64/product_source/","autorefresh":false,"distro_target":"sle-12-aarch64"}],"online_predecessor_ids":[],"product_class":"MODULE","product_type":"module","cpe":"cpe:/o:suse:sle-module-web-scripting:12","recommended":false,"version":"12","offline_predecessor_ids":[],"name":"Web and Scripting Module","former_identifier":"sle-module-web-scripting","release_type":null,"friendly_name":"Web and Scripting Module 12 aarch64","migration_extra":false,"friendly_version":"12","extensions":[],"identifier":"sle-module-web-scripting","release_stage":"released","id":1539},{"offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Software Development Kit","release_type":null,"former_identifier":"sle-sdk","migration_extra":false,"friendly_name":"SUSE Linux Enterprise Software Development Kit 12 SP4 aarch64","recommended":false,"version":"12.4","extensions":[],"id":1633,"release_stage":"released","identifier":"sle-sdk","friendly_version":"12 SP4","eula_url":"https://updates.suse.com/SUSE/Products/SLE-SDK/12-SP4/aarch64/product.license/","arch":"aarch64","free":true,"shortname":"SDK12-SP4","description":"

SUSE Linux Enterprise Software Development Kit is the Software Development Kit for the family of SUSE Linux Enterprise products. It is a free of charge extension for partners and customers working with SUSE Linux Enterprise Server and Desktop and derived products.

Packages on the SDK are delivered without L3 support; maintenance updates will be done for critical security and critical non-security issues, and where needed to remain in sync with packages delivered in the SUSE Linux Enterprise Server and Desktop products.

Packages to rebuild SUSE Linux Enterprise Server are not part of the SUSE Linux Enterprise Software Development Kit.

","product_type":"extension","cpe":"cpe:/o:suse:sle-sdk:12:sp4","predecessor_ids":[1378,1430],"product_class":"MODULE","online_predecessor_ids":[1378,1430],"repositories":[{"enabled":true,"id":2814,"distro_target":"sle-12-aarch64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-SDK/12-SP4/aarch64/update/","installer_updates":false,"name":"SLE-SDK12-SP4-Updates","description":"SLE-SDK12-SP4-Updates for sle-12-aarch64"},{"description":"SLE-SDK12-SP4-Debuginfo-Updates for sle-12-aarch64","installer_updates":false,"name":"SLE-SDK12-SP4-Debuginfo-Updates","distro_target":"sle-12-aarch64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-SDK/12-SP4/aarch64/update_debug/","enabled":false,"id":2815},{"installer_updates":false,"name":"SLE-SDK12-SP4-Pool","description":"SLE-SDK12-SP4-Pool for sle-12-aarch64","enabled":true,"id":2816,"distro_target":"sle-12-aarch64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-SDK/12-SP4/aarch64/product/"},{"enabled":false,"id":2817,"distro_target":"sle-12-aarch64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-SDK/12-SP4/aarch64/product_debug/","installer_updates":false,"name":"SLE-SDK12-SP4-Debuginfo-Pool","description":"SLE-SDK12-SP4-Debuginfo-Pool for sle-12-aarch64"},{"url":"https://updates.suse.com/SUSE/Products/SLE-SDK/12-SP4/aarch64/product_source/","distro_target":"sle-12-aarch64","autorefresh":false,"id":2818,"enabled":false,"description":"SLE-SDK12-SP4-Source-Pool for sle-12-aarch64","installer_updates":false,"name":"SLE-SDK12-SP4-Source-Pool"}]},{"recommended":false,"version":"12.4","offline_predecessor_ids":[],"name":"SUSE Package Hub","former_identifier":"PackageHub","release_type":null,"migration_extra":false,"friendly_name":"SUSE Package Hub 12 SP4 aarch64","friendly_version":"12 SP4","extensions":[],"release_stage":"released","identifier":"PackageHub","id":1810,"free":true,"description":"SUSE Package Hub is a free of charge extension providing access to community maintained packages built to run on SUSE Linux Enterprise Server. Built from the same sources used in the openSUSE distributions, these quality packages provide additional software to what is found in the SUSE Linux Enterprise Server product. Packages from the Package Hub are delivered without L3 support from SUSE. General updates and fixes to the packages in SUSE Package Hub are provided by the openSUSE community based on their discretion though SUSE will monitor and ensure that any known critical security issues will be addressed. Packages in the Package Hub are approved by SUSE for use with SUSE Linux Enterprise Server 12 and to not interfere with the supportability of SUSE Linux Enterprise Server it's modules and extensions. For more information about SUSE Package Hub please visit https://packagehub.suse.com.","shortname":"SUSE-PackageHub-12-SP4","eula_url":"","arch":"aarch64","predecessor_ids":[1482,1532],"product_class":"MODULE","online_predecessor_ids":[1482,1532],"repositories":[{"autorefresh":false,"distro_target":"sle-12-aarch64","url":"https://updates.suse.com/SUSE/Backports/SLE-12-SP4_aarch64/standard/","enabled":true,"id":3451,"description":"SUSE-PackageHub-12-SP4-Standard-Pool for sle-12-aarch64","name":"SUSE-PackageHub-12-SP4-Standard-Pool","installer_updates":false},{"description":"SUSE-PackageHub-12-SP4-Debuginfo for sle-12-aarch64","name":"SUSE-PackageHub-12-SP4-Debuginfo","installer_updates":false,"url":"https://updates.suse.com/SUSE/Backports/SLE-12-SP4_aarch64/standard_debug/","autorefresh":true,"distro_target":"sle-12-aarch64","id":3452,"enabled":false},{"url":"https://updates.suse.com/SUSE/Backports/SLE-12-SP4_aarch64/product/","autorefresh":false,"distro_target":"sle-12-aarch64","id":3453,"enabled":true,"description":"SUSE-PackageHub-12-SP4-Pool for sle-12-aarch64","name":"SUSE-PackageHub-12-SP4-Pool","installer_updates":false}],"product_type":"extension","cpe":"cpe:/o:suse:packagehub:12:sp4"}],"free":false,"shortname":"SLES12-SP4","description":"SUSE Linux Enterprise offers a comprehensive suite of products built on a single code base. The platform addresses business needs from the smallest thin-client devices to the world's most powerful high-performance computing and mainframe servers. SUSE Linux Enterprise offers common management tools and technology certifications across the platform, and each product is enterprise-class.","arch":"aarch64","eula_url":"https://updates.suse.com/SUSE/Products/SLE-SERVER/12-SP4/aarch64/product.license/","product_class":"SLES-ARM64","online_predecessor_ids":[1375,1424],"repositories":[{"description":"SLES12-SP4-Updates for sle-12-aarch64","name":"SLES12-SP4-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-12-aarch64","url":"https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-SP4/aarch64/update/","enabled":true,"id":2787},{"url":"https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-SP4/aarch64/update_debug/","distro_target":"sle-12-aarch64","autorefresh":true,"id":2788,"enabled":false,"description":"SLES12-SP4-Debuginfo-Updates for sle-12-aarch64","installer_updates":false,"name":"SLES12-SP4-Debuginfo-Updates"},{"installer_updates":true,"name":"SLES12-SP4-Installer-Updates","description":"SLES12-SP4-Installer-Updates for sle-12-aarch64","id":2789,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-SERVER-INSTALLER/12-SP4/aarch64/update/","distro_target":"sle-12-aarch64","autorefresh":true},{"description":"SLES12-SP4-Pool for sle-12-aarch64","installer_updates":false,"name":"SLES12-SP4-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-SERVER/12-SP4/aarch64/product/","distro_target":"sle-12-aarch64","autorefresh":false,"id":2790,"enabled":true},{"description":"SLES12-SP4-Debuginfo-Pool for sle-12-aarch64","installer_updates":false,"name":"SLES12-SP4-Debuginfo-Pool","distro_target":"sle-12-aarch64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-SERVER/12-SP4/aarch64/product_debug/","enabled":false,"id":2791},{"url":"https://updates.suse.com/SUSE/Products/SLE-SERVER/12-SP4/aarch64/product_source/","distro_target":"sle-12-aarch64","autorefresh":false,"id":2792,"enabled":false,"description":"SLES12-SP4-Source-Pool for sle-12-aarch64","installer_updates":false,"name":"SLES12-SP4-Source-Pool"}],"predecessor_ids":[1375,1424],"product_type":"base","cpe":"cpe:/o:suse:sles:12:sp4"},{"friendly_version":"12 SP4","id":1629,"release_stage":"released","identifier":"SLED","extensions":[{"free":true,"shortname":"SDK12-SP4","description":"

SUSE Linux Enterprise Software Development Kit is the Software Development Kit for the family of SUSE Linux Enterprise products. It is a free of charge extension for partners and customers working with SUSE Linux Enterprise Server and Desktop and derived products.

Packages on the SDK are delivered without L3 support; maintenance updates will be done for critical security and critical non-security issues, and where needed to remain in sync with packages delivered in the SUSE Linux Enterprise Server and Desktop products.

Packages to rebuild SUSE Linux Enterprise Server are not part of the SUSE Linux Enterprise Software Development Kit.

","arch":"x86_64","eula_url":"https://updates.suse.com/SUSE/Products/SLE-SDK/12-SP4/x86_64/product.license/","online_predecessor_ids":[1223,1323,1366,1427],"product_class":"MODULE","repositories":[{"name":"SLE-SDK12-SP4-Updates","installer_updates":false,"description":"SLE-SDK12-SP4-Updates for sle-12-x86_64","id":2799,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-SDK/12-SP4/x86_64/update/","autorefresh":true,"distro_target":"sle-12-x86_64"},{"enabled":false,"id":2800,"autorefresh":true,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-SDK/12-SP4/x86_64/update_debug/","name":"SLE-SDK12-SP4-Debuginfo-Updates","installer_updates":false,"description":"SLE-SDK12-SP4-Debuginfo-Updates for sle-12-x86_64"},{"description":"SLE-SDK12-SP4-Pool for sle-12-x86_64","name":"SLE-SDK12-SP4-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-SDK/12-SP4/x86_64/product/","autorefresh":false,"distro_target":"sle-12-x86_64","id":2801,"enabled":true},{"description":"SLE-SDK12-SP4-Debuginfo-Pool for sle-12-x86_64","name":"SLE-SDK12-SP4-Debuginfo-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-SDK/12-SP4/x86_64/product_debug/","enabled":false,"id":2802},{"name":"SLE-SDK12-SP4-Source-Pool","installer_updates":false,"description":"SLE-SDK12-SP4-Source-Pool for sle-12-x86_64","enabled":false,"id":2803,"autorefresh":false,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-SDK/12-SP4/x86_64/product_source/"}],"predecessor_ids":[1223,1323,1366,1427],"product_type":"extension","cpe":"cpe:/o:suse:sle-sdk:12:sp4","version":"12.4","recommended":false,"former_identifier":"sle-sdk","release_type":null,"friendly_name":"SUSE Linux Enterprise Software Development Kit 12 SP4 x86_64","migration_extra":false,"offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Software Development Kit","friendly_version":"12 SP4","identifier":"sle-sdk","release_stage":"released","id":1630,"extensions":[]},{"version":"12","recommended":false,"release_type":null,"former_identifier":"sle-module-cap-tools","migration_extra":false,"friendly_name":"SUSE Cloud Application Platform Tools Module 12 x86_64","offline_predecessor_ids":[],"name":"SUSE Cloud Application Platform Tools Module","friendly_version":"12","release_stage":"released","identifier":"sle-module-cap-tools","id":1678,"extensions":[],"free":true,"shortname":"SUSE-CAP-Tools-Module","description":"

The SUSE Cloud Application Platform Tools Module is a collection of tools that enables you to interact with the SUSE Cloud Application Platform product itself, providing the commandline client for instance.

Access to the SUSE Cloud Application Platform Tools Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself; please check the Release Notes for further details.

","arch":"x86_64","eula_url":"","repositories":[{"description":"SLE-Module-CAP-Tools-12-Updates for sle-12-x86_64","name":"SLE-Module-CAP-Tools-12-Updates","installer_updates":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-CAP-Tools/12/x86_64/update/","autorefresh":true,"distro_target":"sle-12-x86_64","id":2912,"enabled":true},{"installer_updates":false,"name":"SLE-Module-CAP-Tools-12-Debuginfo-Updates","description":"SLE-Module-CAP-Tools-12-Debuginfo-Updates for sle-12-x86_64","enabled":false,"id":2913,"distro_target":"sle-12-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-CAP-Tools/12/x86_64/update_debug/"},{"installer_updates":false,"name":"SLE-Module-CAP-Tools-12-Pool","description":"SLE-Module-CAP-Tools-12-Pool for sle-12-x86_64","id":2914,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-CAP-Tools/12/x86_64/product/","distro_target":"sle-12-x86_64","autorefresh":false},{"name":"SLE-Module-CAP-Tools-12-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-CAP-Tools-12-Debuginfo-Pool for sle-12-x86_64","id":2915,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-CAP-Tools/12/x86_64/product_debug/","autorefresh":false,"distro_target":"sle-12-x86_64"},{"enabled":false,"id":2916,"distro_target":"sle-12-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-CAP-Tools/12/x86_64/product_source/","installer_updates":false,"name":"SLE-Module-CAP-Tools-12-Source-Pool","description":"SLE-Module-CAP-Tools-12-Source-Pool for sle-12-x86_64"}],"online_predecessor_ids":[],"product_class":"MODULE","predecessor_ids":[],"product_type":"module","cpe":"cpe:/o:suse:sle-module-cap-tools:12"},{"free":true,"shortname":"SUSE-PackageHub-12-SP4","description":"SUSE Package Hub is a free of charge extension providing access to community maintained packages built to run on SUSE Linux Enterprise Server. Built from the same sources used in the openSUSE distributions, these quality packages provide additional software to what is found in the SUSE Linux Enterprise Server product. Packages from the Package Hub are delivered without L3 support from SUSE. General updates and fixes to the packages in SUSE Package Hub are provided by the openSUSE community based on their discretion though SUSE will monitor and ensure that any known critical security issues will be addressed. Packages in the Package Hub are approved by SUSE for use with SUSE Linux Enterprise Server 12 and to not interfere with the supportability of SUSE Linux Enterprise Server it's modules and extensions. For more information about SUSE Package Hub please visit https://packagehub.suse.com.","arch":"x86_64","eula_url":"","online_predecessor_ids":[1473,1476,1479,1529],"repositories":[{"autorefresh":false,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Backports/SLE-12-SP4_x86_64/standard/","enabled":true,"id":3460,"description":"SUSE-PackageHub-12-SP4-Standard-Pool for sle-12-x86_64","name":"SUSE-PackageHub-12-SP4-Standard-Pool","installer_updates":false},{"name":"SUSE-PackageHub-12-SP4-Debuginfo","installer_updates":false,"description":"SUSE-PackageHub-12-SP4-Debuginfo for sle-12-x86_64","id":3461,"enabled":false,"url":"https://updates.suse.com/SUSE/Backports/SLE-12-SP4_x86_64/standard_debug/","autorefresh":true,"distro_target":"sle-12-x86_64"},{"enabled":true,"id":3462,"distro_target":"sle-12-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Backports/SLE-12-SP4_x86_64/product/","installer_updates":false,"name":"SUSE-PackageHub-12-SP4-Pool","description":"SUSE-PackageHub-12-SP4-Pool for sle-12-x86_64"}],"product_class":"MODULE","predecessor_ids":[1473,1476,1479,1529],"product_type":"extension","cpe":"cpe:/o:suse:packagehub:12:sp4","version":"12.4","recommended":false,"release_type":null,"former_identifier":"PackageHub","friendly_name":"SUSE Package Hub 12 SP4 x86_64","migration_extra":false,"offline_predecessor_ids":[],"name":"SUSE Package Hub","friendly_version":"12 SP4","release_stage":"released","id":1813,"identifier":"PackageHub","extensions":[]}],"version":"12.4","recommended":false,"former_identifier":"SLED","release_type":null,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Desktop 12 SP4 x86_64","offline_predecessor_ids":[887,901,902,924,1313],"name":"SUSE Linux Enterprise Desktop","online_predecessor_ids":[1118,1333,1358,1425],"repositories":[{"description":"SLED12-SP4-Updates for sle-12-x86_64","name":"SLED12-SP4-Updates","installer_updates":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-DESKTOP/12-SP4/x86_64/update/","autorefresh":true,"distro_target":"sle-12-x86_64","id":2793,"enabled":true},{"autorefresh":true,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-DESKTOP/12-SP4/x86_64/update_debug/","enabled":false,"id":2794,"description":"SLED12-SP4-Debuginfo-Updates for sle-12-x86_64","name":"SLED12-SP4-Debuginfo-Updates","installer_updates":false},{"id":2795,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-DESKTOP-INSTALLER/12-SP4/x86_64/update/","distro_target":"sle-12-x86_64","autorefresh":true,"installer_updates":true,"name":"SLED12-SP4-Installer-Updates","description":"SLED12-SP4-Installer-Updates for sle-12-x86_64"},{"description":"SLED12-SP4-Pool for sle-12-x86_64","installer_updates":false,"name":"SLED12-SP4-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-DESKTOP/12-SP4/x86_64/product/","distro_target":"sle-12-x86_64","autorefresh":false,"id":2796,"enabled":true},{"name":"SLED12-SP4-Debuginfo-Pool","installer_updates":false,"description":"SLED12-SP4-Debuginfo-Pool for sle-12-x86_64","enabled":false,"id":2797,"autorefresh":false,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-DESKTOP/12-SP4/x86_64/product_debug/"},{"description":"SLED12-SP4-Source-Pool for sle-12-x86_64","name":"SLED12-SP4-Source-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-DESKTOP/12-SP4/x86_64/product_source/","enabled":false,"id":2798},{"autorefresh":true,"distro_target":null,"url":"https://download.nvidia.com/suse/sle12sp4/","enabled":true,"id":3529,"description":"SLE-12-SP4-GA-Desktop-nVidia-Driver","name":"SLE-12-SP4-GA-Desktop-nVidia-Driver","installer_updates":false}],"product_class":"7260","predecessor_ids":[1118,1333,1358,1425],"product_type":"base","cpe":"cpe:/o:suse:sled:12:sp4","free":false,"description":"SUSE Linux Enterprise offers a comprehensive suite of products built on a single code base. The platform addresses business needs from the smallest thin-client devices to the world's most powerful high-performance computing and mainframe servers. SUSE Linux Enterprise offers common management tools and technology certifications across the platform, and each product is enterprise-class. SUSE Linux Enterprise provides more than a cute desktop product or a basic server offering. It is the only Linux platform for enterprise computing, and it is now replacing UNIX* and Windows* as well.","shortname":"SLED12-SP4","arch":"x86_64","eula_url":"https://updates.suse.com/SUSE/Products/SLE-DESKTOP/12-SP4/x86_64/product.license/"},{"friendly_version":"12 SP4","release_stage":"released","id":1630,"identifier":"sle-sdk","extensions":[],"version":"12.4","recommended":false,"former_identifier":"sle-sdk","release_type":null,"friendly_name":"SUSE Linux Enterprise Software Development Kit 12 SP4 x86_64","migration_extra":false,"offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Software Development Kit","online_predecessor_ids":[1223,1323,1366,1427],"repositories":[{"installer_updates":false,"name":"SLE-SDK12-SP4-Updates","description":"SLE-SDK12-SP4-Updates for sle-12-x86_64","enabled":true,"id":2799,"distro_target":"sle-12-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-SDK/12-SP4/x86_64/update/"},{"description":"SLE-SDK12-SP4-Debuginfo-Updates for sle-12-x86_64","name":"SLE-SDK12-SP4-Debuginfo-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-SDK/12-SP4/x86_64/update_debug/","enabled":false,"id":2800},{"enabled":true,"id":2801,"distro_target":"sle-12-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-SDK/12-SP4/x86_64/product/","installer_updates":false,"name":"SLE-SDK12-SP4-Pool","description":"SLE-SDK12-SP4-Pool for sle-12-x86_64"},{"distro_target":"sle-12-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-SDK/12-SP4/x86_64/product_debug/","enabled":false,"id":2802,"description":"SLE-SDK12-SP4-Debuginfo-Pool for sle-12-x86_64","installer_updates":false,"name":"SLE-SDK12-SP4-Debuginfo-Pool"},{"enabled":false,"id":2803,"autorefresh":false,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-SDK/12-SP4/x86_64/product_source/","name":"SLE-SDK12-SP4-Source-Pool","installer_updates":false,"description":"SLE-SDK12-SP4-Source-Pool for sle-12-x86_64"}],"product_class":"MODULE","predecessor_ids":[1223,1323,1366,1427],"product_type":"extension","cpe":"cpe:/o:suse:sle-sdk:12:sp4","free":true,"shortname":"SDK12-SP4","description":"

SUSE Linux Enterprise Software Development Kit is the Software Development Kit for the family of SUSE Linux Enterprise products. It is a free of charge extension for partners and customers working with SUSE Linux Enterprise Server and Desktop and derived products.

Packages on the SDK are delivered without L3 support; maintenance updates will be done for critical security and critical non-security issues, and where needed to remain in sync with packages delivered in the SUSE Linux Enterprise Server and Desktop products.

Packages to rebuild SUSE Linux Enterprise Server are not part of the SUSE Linux Enterprise Software Development Kit.

","arch":"x86_64","eula_url":"https://updates.suse.com/SUSE/Products/SLE-SDK/12-SP4/x86_64/product.license/"},{"product_class":"MODULE","online_predecessor_ids":[1145,1343,1364,1428],"repositories":[{"description":"SLE-SDK12-SP4-Updates for sle-12-ppc64le","name":"SLE-SDK12-SP4-Updates","installer_updates":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-SDK/12-SP4/ppc64le/update/","autorefresh":true,"distro_target":"sle-12-ppc64le","id":2804,"enabled":true},{"autorefresh":true,"distro_target":"sle-12-ppc64le","url":"https://updates.suse.com/SUSE/Updates/SLE-SDK/12-SP4/ppc64le/update_debug/","enabled":false,"id":2805,"description":"SLE-SDK12-SP4-Debuginfo-Updates for sle-12-ppc64le","name":"SLE-SDK12-SP4-Debuginfo-Updates","installer_updates":false},{"id":2806,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-SDK/12-SP4/ppc64le/product/","distro_target":"sle-12-ppc64le","autorefresh":false,"installer_updates":false,"name":"SLE-SDK12-SP4-Pool","description":"SLE-SDK12-SP4-Pool for sle-12-ppc64le"},{"description":"SLE-SDK12-SP4-Debuginfo-Pool for sle-12-ppc64le","installer_updates":false,"name":"SLE-SDK12-SP4-Debuginfo-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-SDK/12-SP4/ppc64le/product_debug/","distro_target":"sle-12-ppc64le","autorefresh":false,"id":2807,"enabled":false},{"description":"SLE-SDK12-SP4-Source-Pool for sle-12-ppc64le","name":"SLE-SDK12-SP4-Source-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-SDK/12-SP4/ppc64le/product_source/","autorefresh":false,"distro_target":"sle-12-ppc64le","id":2808,"enabled":false}],"predecessor_ids":[1145,1343,1364,1428],"cpe":"cpe:/o:suse:sle-sdk:12:sp4","product_type":"extension","description":"

SUSE Linux Enterprise Software Development Kit is the Software Development Kit for the family of SUSE Linux Enterprise products. It is a free of charge extension for partners and customers working with SUSE Linux Enterprise Server and Desktop and derived products.

Packages on the SDK are delivered without L3 support; maintenance updates will be done for critical security and critical non-security issues, and where needed to remain in sync with packages delivered in the SUSE Linux Enterprise Server and Desktop products.

Packages to rebuild SUSE Linux Enterprise Server are not part of the SUSE Linux Enterprise Software Development Kit.

","shortname":"SDK12-SP4","free":true,"arch":"ppc64le","eula_url":"https://updates.suse.com/SUSE/Products/SLE-SDK/12-SP4/ppc64le/product.license/","friendly_version":"12 SP4","identifier":"sle-sdk","release_stage":"released","id":1631,"extensions":[],"version":"12.4","recommended":false,"friendly_name":"SUSE Linux Enterprise Software Development Kit 12 SP4 ppc64le","migration_extra":false,"release_type":null,"former_identifier":"sle-sdk","name":"SUSE Linux Enterprise Software Development Kit","offline_predecessor_ids":[]},{"free":true,"shortname":"SDK12-SP4","description":"

SUSE Linux Enterprise Software Development Kit is the Software Development Kit for the family of SUSE Linux Enterprise products. It is a free of charge extension for partners and customers working with SUSE Linux Enterprise Server and Desktop and derived products.

Packages on the SDK are delivered without L3 support; maintenance updates will be done for critical security and critical non-security issues, and where needed to remain in sync with packages delivered in the SUSE Linux Enterprise Server and Desktop products.

Packages to rebuild SUSE Linux Enterprise Server are not part of the SUSE Linux Enterprise Software Development Kit.

","eula_url":"https://updates.suse.com/SUSE/Products/SLE-SDK/12-SP4/s390x/product.license/","arch":"s390x","predecessor_ids":[1146,1344,1365,1429],"repositories":[{"enabled":true,"id":2809,"distro_target":"sle-12-s390x","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-SDK/12-SP4/s390x/update/","installer_updates":false,"name":"SLE-SDK12-SP4-Updates","description":"SLE-SDK12-SP4-Updates for sle-12-s390x"},{"installer_updates":false,"name":"SLE-SDK12-SP4-Debuginfo-Updates","description":"SLE-SDK12-SP4-Debuginfo-Updates for sle-12-s390x","enabled":false,"id":2810,"distro_target":"sle-12-s390x","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-SDK/12-SP4/s390x/update_debug/"},{"enabled":true,"id":2811,"autorefresh":false,"distro_target":"sle-12-s390x","url":"https://updates.suse.com/SUSE/Products/SLE-SDK/12-SP4/s390x/product/","name":"SLE-SDK12-SP4-Pool","installer_updates":false,"description":"SLE-SDK12-SP4-Pool for sle-12-s390x"},{"description":"SLE-SDK12-SP4-Debuginfo-Pool for sle-12-s390x","installer_updates":false,"name":"SLE-SDK12-SP4-Debuginfo-Pool","distro_target":"sle-12-s390x","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-SDK/12-SP4/s390x/product_debug/","enabled":false,"id":2812},{"description":"SLE-SDK12-SP4-Source-Pool for sle-12-s390x","name":"SLE-SDK12-SP4-Source-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-SDK/12-SP4/s390x/product_source/","autorefresh":false,"distro_target":"sle-12-s390x","id":2813,"enabled":false}],"online_predecessor_ids":[1146,1344,1365,1429],"product_class":"MODULE","product_type":"extension","cpe":"cpe:/o:suse:sle-sdk:12:sp4","recommended":false,"version":"12.4","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Software Development Kit","release_type":null,"former_identifier":"sle-sdk","friendly_name":"SUSE Linux Enterprise Software Development Kit 12 SP4 s390x","migration_extra":false,"friendly_version":"12 SP4","extensions":[],"release_stage":"released","id":1632,"identifier":"sle-sdk"},{"cpe":"cpe:/o:suse:sle-sdk:12:sp4","product_type":"extension","online_predecessor_ids":[1378,1430],"product_class":"MODULE","repositories":[{"installer_updates":false,"name":"SLE-SDK12-SP4-Updates","description":"SLE-SDK12-SP4-Updates for sle-12-aarch64","enabled":true,"id":2814,"distro_target":"sle-12-aarch64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-SDK/12-SP4/aarch64/update/"},{"description":"SLE-SDK12-SP4-Debuginfo-Updates for sle-12-aarch64","installer_updates":false,"name":"SLE-SDK12-SP4-Debuginfo-Updates","distro_target":"sle-12-aarch64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-SDK/12-SP4/aarch64/update_debug/","enabled":false,"id":2815},{"url":"https://updates.suse.com/SUSE/Products/SLE-SDK/12-SP4/aarch64/product/","distro_target":"sle-12-aarch64","autorefresh":false,"id":2816,"enabled":true,"description":"SLE-SDK12-SP4-Pool for sle-12-aarch64","installer_updates":false,"name":"SLE-SDK12-SP4-Pool"},{"enabled":false,"id":2817,"autorefresh":false,"distro_target":"sle-12-aarch64","url":"https://updates.suse.com/SUSE/Products/SLE-SDK/12-SP4/aarch64/product_debug/","name":"SLE-SDK12-SP4-Debuginfo-Pool","installer_updates":false,"description":"SLE-SDK12-SP4-Debuginfo-Pool for sle-12-aarch64"},{"autorefresh":false,"distro_target":"sle-12-aarch64","url":"https://updates.suse.com/SUSE/Products/SLE-SDK/12-SP4/aarch64/product_source/","enabled":false,"id":2818,"description":"SLE-SDK12-SP4-Source-Pool for sle-12-aarch64","name":"SLE-SDK12-SP4-Source-Pool","installer_updates":false}],"predecessor_ids":[1378,1430],"arch":"aarch64","eula_url":"https://updates.suse.com/SUSE/Products/SLE-SDK/12-SP4/aarch64/product.license/","shortname":"SDK12-SP4","description":"

SUSE Linux Enterprise Software Development Kit is the Software Development Kit for the family of SUSE Linux Enterprise products. It is a free of charge extension for partners and customers working with SUSE Linux Enterprise Server and Desktop and derived products.

Packages on the SDK are delivered without L3 support; maintenance updates will be done for critical security and critical non-security issues, and where needed to remain in sync with packages delivered in the SUSE Linux Enterprise Server and Desktop products.

Packages to rebuild SUSE Linux Enterprise Server are not part of the SUSE Linux Enterprise Software Development Kit.

","free":true,"release_stage":"released","identifier":"sle-sdk","id":1633,"extensions":[],"friendly_version":"12 SP4","friendly_name":"SUSE Linux Enterprise Software Development Kit 12 SP4 aarch64","migration_extra":false,"former_identifier":"sle-sdk","release_type":null,"name":"SUSE Linux Enterprise Software Development Kit","offline_predecessor_ids":[],"version":"12.4","recommended":false},{"free":false,"description":"SUSE Linux Enterprise High Availability Extension.","shortname":"SLEHA12-SP4","eula_url":"https://updates.suse.com/SUSE/Products/SLE-HA/12-SP4/x86_64/product.license/","arch":"x86_64","predecessor_ids":[1245,1324,1361,1432],"product_class":"SLE-HAE-X86","online_predecessor_ids":[1245,1324,1361,1432],"repositories":[{"id":2819,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-HA/12-SP4/x86_64/update/","autorefresh":true,"distro_target":"sle-12-x86_64","name":"SLE-HA12-SP4-Updates","installer_updates":false,"description":"SLE-HA12-SP4-Updates for sle-12-x86_64"},{"description":"SLE-HA12-SP4-Debuginfo-Updates for sle-12-x86_64","installer_updates":false,"name":"SLE-HA12-SP4-Debuginfo-Updates","distro_target":"sle-12-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-HA/12-SP4/x86_64/update_debug/","enabled":false,"id":2820},{"id":2821,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-HA/12-SP4/x86_64/product/","autorefresh":false,"distro_target":"sle-12-x86_64","name":"SLE-HA12-SP4-Pool","installer_updates":false,"description":"SLE-HA12-SP4-Pool for sle-12-x86_64"},{"url":"https://updates.suse.com/SUSE/Products/SLE-HA/12-SP4/x86_64/product_debug/","distro_target":"sle-12-x86_64","autorefresh":false,"id":2822,"enabled":false,"description":"SLE-HA12-SP4-Debuginfo-Pool for sle-12-x86_64","installer_updates":false,"name":"SLE-HA12-SP4-Debuginfo-Pool"},{"name":"SLE-HA12-SP4-Source-Pool","installer_updates":false,"description":"SLE-HA12-SP4-Source-Pool for sle-12-x86_64","id":2823,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-HA/12-SP4/x86_64/product_source/","autorefresh":false,"distro_target":"sle-12-x86_64"}],"product_type":"extension","cpe":"cpe:/o:suse:sle-ha:12:sp4","recommended":false,"version":"12.4","offline_predecessor_ids":[958,961,967,971,1256],"name":"SUSE Linux Enterprise High Availability Extension","former_identifier":"sle-hae","release_type":null,"friendly_name":"SUSE Linux Enterprise High Availability Extension 12 SP4 x86_64","migration_extra":false,"friendly_version":"12 SP4","extensions":[],"id":1634,"release_stage":"released","identifier":"sle-ha"},{"cpe":"cpe:/o:suse:sle-ha:12:sp4","product_type":"extension","online_predecessor_ids":[1420,1433],"repositories":[{"distro_target":"sle-12-ppc64le","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-HA/12-SP4/ppc64le/update/","enabled":true,"id":2824,"description":"SLE-HA12-SP4-Updates for sle-12-ppc64le","installer_updates":false,"name":"SLE-HA12-SP4-Updates"},{"description":"SLE-HA12-SP4-Debuginfo-Updates for sle-12-ppc64le","installer_updates":false,"name":"SLE-HA12-SP4-Debuginfo-Updates","url":"https://updates.suse.com/SUSE/Updates/SLE-HA/12-SP4/ppc64le/update_debug/","distro_target":"sle-12-ppc64le","autorefresh":true,"id":2825,"enabled":false},{"distro_target":"sle-12-ppc64le","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-HA/12-SP4/ppc64le/product/","enabled":true,"id":2826,"description":"SLE-HA12-SP4-Pool for sle-12-ppc64le","installer_updates":false,"name":"SLE-HA12-SP4-Pool"},{"description":"SLE-HA12-SP4-Debuginfo-Pool for sle-12-ppc64le","name":"SLE-HA12-SP4-Debuginfo-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-HA/12-SP4/ppc64le/product_debug/","autorefresh":false,"distro_target":"sle-12-ppc64le","id":2827,"enabled":false},{"installer_updates":false,"name":"SLE-HA12-SP4-Source-Pool","description":"SLE-HA12-SP4-Source-Pool for sle-12-ppc64le","enabled":false,"id":2828,"distro_target":"sle-12-ppc64le","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-HA/12-SP4/ppc64le/product_source/"}],"product_class":"SLE-HAE-PPC","predecessor_ids":[1420,1433],"arch":"ppc64le","eula_url":"https://updates.suse.com/SUSE/Products/SLE-HA/12-SP4/ppc64le/product.license/","description":"SUSE Linux Enterprise High Availability Extension.","shortname":"SLEHA12-SP4","free":false,"id":1635,"release_stage":"released","identifier":"sle-ha","extensions":[],"friendly_version":"12 SP4","friendly_name":"SUSE Linux Enterprise High Availability Extension 12 SP4 ppc64le","migration_extra":false,"release_type":null,"former_identifier":"sle-hae","name":"SUSE Linux Enterprise High Availability Extension","offline_predecessor_ids":[],"version":"12.4","recommended":false},{"product_type":"extension","cpe":"cpe:/o:suse:sle-ha:12:sp4","online_predecessor_ids":[1244,1336,1360,1434],"product_class":"SLE-HAE-Z","repositories":[{"name":"SLE-HA12-SP4-Updates","installer_updates":false,"description":"SLE-HA12-SP4-Updates for sle-12-s390x","id":2829,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-HA/12-SP4/s390x/update/","autorefresh":true,"distro_target":"sle-12-s390x"},{"enabled":false,"id":2830,"distro_target":"sle-12-s390x","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-HA/12-SP4/s390x/update_debug/","installer_updates":false,"name":"SLE-HA12-SP4-Debuginfo-Updates","description":"SLE-HA12-SP4-Debuginfo-Updates for sle-12-s390x"},{"description":"SLE-HA12-SP4-Pool for sle-12-s390x","installer_updates":false,"name":"SLE-HA12-SP4-Pool","distro_target":"sle-12-s390x","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-HA/12-SP4/s390x/product/","enabled":true,"id":2831},{"autorefresh":false,"distro_target":"sle-12-s390x","url":"https://updates.suse.com/SUSE/Products/SLE-HA/12-SP4/s390x/product_debug/","enabled":false,"id":2832,"description":"SLE-HA12-SP4-Debuginfo-Pool for sle-12-s390x","name":"SLE-HA12-SP4-Debuginfo-Pool","installer_updates":false},{"url":"https://updates.suse.com/SUSE/Products/SLE-HA/12-SP4/s390x/product_source/","autorefresh":false,"distro_target":"sle-12-s390x","id":2833,"enabled":false,"description":"SLE-HA12-SP4-Source-Pool for sle-12-s390x","name":"SLE-HA12-SP4-Source-Pool","installer_updates":false}],"predecessor_ids":[1244,1336,1360,1434],"arch":"s390x","eula_url":"https://updates.suse.com/SUSE/Products/SLE-HA/12-SP4/s390x/product.license/","free":false,"description":"SUSE Linux Enterprise High Availability Extension.","shortname":"SLEHA12-SP4","release_stage":"released","identifier":"sle-ha","id":1636,"extensions":[],"friendly_version":"12 SP4","former_identifier":"sle-hae","release_type":null,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise High Availability Extension 12 SP4 s390x","offline_predecessor_ids":[1080,1082,1084,1086,1257],"name":"SUSE Linux Enterprise High Availability Extension","version":"12.4","recommended":false},{"eula_url":"https://updates.suse.com/SUSE/Products/SLE-HA-GEO/12-SP4/x86_64/product.license/","arch":"x86_64","description":"SUSE Linux Enterprise High Availability Geographical Cluster Extension","shortname":"SLEHAGEO12-SP4","free":false,"cpe":"cpe:/o:suse:sle-ha-geo:12:sp4","product_type":"extension","predecessor_ids":[1157,1337,1363,1435],"product_class":"SLE-HAE-GEO","online_predecessor_ids":[1157,1337,1363,1435],"repositories":[{"description":"SLE-HA-GEO12-SP4-Updates for sle-12-x86_64","installer_updates":false,"name":"SLE-HA-GEO12-SP4-Updates","url":"https://updates.suse.com/SUSE/Updates/SLE-HA-GEO/12-SP4/x86_64/update/","distro_target":"sle-12-x86_64","autorefresh":true,"id":2834,"enabled":true},{"enabled":false,"id":2835,"autorefresh":true,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-HA-GEO/12-SP4/x86_64/update_debug/","name":"SLE-HA-GEO12-SP4-Debuginfo-Updates","installer_updates":false,"description":"SLE-HA-GEO12-SP4-Debuginfo-Updates for sle-12-x86_64"},{"distro_target":"sle-12-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-HA-GEO/12-SP4/x86_64/product/","enabled":true,"id":2836,"description":"SLE-HA-GEO12-SP4-Pool for sle-12-x86_64","installer_updates":false,"name":"SLE-HA-GEO12-SP4-Pool"},{"description":"SLE-HA-GEO12-SP4-Debuginfo-Pool for sle-12-x86_64","installer_updates":false,"name":"SLE-HA-GEO12-SP4-Debuginfo-Pool","distro_target":"sle-12-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-HA-GEO/12-SP4/x86_64/product_debug/","enabled":false,"id":2837},{"description":"SLE-HA-GEO12-SP4-Source-Pool for sle-12-x86_64","installer_updates":false,"name":"SLE-HA-GEO12-SP4-Source-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-HA-GEO/12-SP4/x86_64/product_source/","distro_target":"sle-12-x86_64","autorefresh":false,"id":2838,"enabled":false}],"name":"SUSE Linux Enterprise High Availability GEO Extension","offline_predecessor_ids":[1101,1107,1286],"friendly_name":"SUSE Linux Enterprise High Availability GEO Extension 12 SP4 x86_64","migration_extra":false,"former_identifier":"sle-hae-geo","release_type":null,"recommended":false,"version":"12.4","extensions":[],"id":1637,"release_stage":"released","identifier":"sle-ha-geo","friendly_version":"12 SP4"},{"offline_predecessor_ids":[1109,1110,1287],"name":"SUSE Linux Enterprise High Availability GEO Extension","release_type":null,"former_identifier":"sle-hae-geo","friendly_name":"SUSE Linux Enterprise High Availability GEO Extension 12 SP4 s390x","migration_extra":false,"recommended":false,"version":"12.4","extensions":[],"identifier":"sle-ha-geo","release_stage":"released","id":1638,"friendly_version":"12 SP4","eula_url":"https://updates.suse.com/SUSE/Products/SLE-HA-GEO/12-SP4/s390x/product.license/","arch":"s390x","free":false,"shortname":"SLEHAGEO12-SP4","description":"SUSE Linux Enterprise High Availability Geographical Cluster Extension","product_type":"extension","cpe":"cpe:/o:suse:sle-ha-geo:12:sp4","predecessor_ids":[1156,1345,1362,1436],"repositories":[{"autorefresh":true,"distro_target":"sle-12-s390x","url":"https://updates.suse.com/SUSE/Updates/SLE-HA-GEO/12-SP4/s390x/update/","enabled":true,"id":2839,"description":"SLE-HA-GEO12-SP4-Updates for sle-12-s390x","name":"SLE-HA-GEO12-SP4-Updates","installer_updates":false},{"description":"SLE-HA-GEO12-SP4-Debuginfo-Updates for sle-12-s390x","installer_updates":false,"name":"SLE-HA-GEO12-SP4-Debuginfo-Updates","distro_target":"sle-12-s390x","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-HA-GEO/12-SP4/s390x/update_debug/","enabled":false,"id":2840},{"installer_updates":false,"name":"SLE-HA-GEO12-SP4-Pool","description":"SLE-HA-GEO12-SP4-Pool for sle-12-s390x","id":2841,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-HA-GEO/12-SP4/s390x/product/","distro_target":"sle-12-s390x","autorefresh":false},{"description":"SLE-HA-GEO12-SP4-Debuginfo-Pool for sle-12-s390x","installer_updates":false,"name":"SLE-HA-GEO12-SP4-Debuginfo-Pool","distro_target":"sle-12-s390x","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-HA-GEO/12-SP4/s390x/product_debug/","enabled":false,"id":2842},{"description":"SLE-HA-GEO12-SP4-Source-Pool for sle-12-s390x","name":"SLE-HA-GEO12-SP4-Source-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-12-s390x","url":"https://updates.suse.com/SUSE/Products/SLE-HA-GEO/12-SP4/s390x/product_source/","enabled":false,"id":2843}],"online_predecessor_ids":[1156,1345,1362,1436],"product_class":"SLE-HAE-GEO"},{"friendly_version":"12 SP4","extensions":[],"identifier":"sle-we","release_stage":"released","id":1639,"recommended":false,"version":"12.4","name":"SUSE Linux Enterprise Workstation Extension","offline_predecessor_ids":[],"friendly_name":"SUSE Linux Enterprise Workstation Extension 12 SP4 x86_64","migration_extra":false,"former_identifier":"sle-we","release_type":null,"predecessor_ids":[1222,1338,1359,1431],"online_predecessor_ids":[1222,1338,1359,1431],"product_class":"SLE-WE","repositories":[{"enabled":true,"id":2844,"distro_target":"sle-12-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-WE/12-SP4/x86_64/update/","installer_updates":false,"name":"SLE-WE12-SP4-Updates","description":"SLE-WE12-SP4-Updates for sle-12-x86_64"},{"distro_target":"sle-12-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-WE/12-SP4/x86_64/update_debug/","enabled":false,"id":2845,"description":"SLE-WE12-SP4-Debuginfo-Updates for sle-12-x86_64","installer_updates":false,"name":"SLE-WE12-SP4-Debuginfo-Updates"},{"enabled":true,"id":2846,"distro_target":"sle-12-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-WE/12-SP4/x86_64/product/","installer_updates":false,"name":"SLE-WE12-SP4-Pool","description":"SLE-WE12-SP4-Pool for sle-12-x86_64"},{"id":2847,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-WE/12-SP4/x86_64/product_debug/","distro_target":"sle-12-x86_64","autorefresh":false,"installer_updates":false,"name":"SLE-WE12-SP4-Debuginfo-Pool","description":"SLE-WE12-SP4-Debuginfo-Pool for sle-12-x86_64"},{"id":2848,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-WE/12-SP4/x86_64/product_source/","distro_target":"sle-12-x86_64","autorefresh":false,"installer_updates":false,"name":"SLE-WE12-SP4-Source-Pool","description":"SLE-WE12-SP4-Source-Pool for sle-12-x86_64"},{"description":"SLE-12-SP4-GA-Desktop-nVidia-Driver","installer_updates":false,"name":"SLE-12-SP4-GA-Desktop-nVidia-Driver","url":"https://download.nvidia.com/suse/sle12sp4/","distro_target":null,"autorefresh":true,"id":3529,"enabled":true}],"cpe":"cpe:/o:suse:sle-we:12:sp4","product_type":"extension","description":"SUSE Linux Enterprise Workstation Extension extends the functionality of SUSE Linux Enterprise Server with packages of SUSE Linux Enterprise Desktop, like additional desktop applications (office suite, email client, graphical editor ...) and libraries. It allows to combine both products to create a full featured Workstation.","shortname":"SLEWE12-SP4","free":false,"eula_url":"https://updates.suse.com/SUSE/Products/SLE-WE/12-SP4/x86_64/product.license/","arch":"x86_64"},{"recommended":false,"version":"15","offline_predecessor_ids":[1353],"name":"Containers Module","release_type":null,"former_identifier":"sle-module-containers","friendly_name":"Containers Module 15 ppc64le","migration_extra":false,"friendly_version":"15","extensions":[],"release_stage":"released","id":1640,"identifier":"sle-module-containers","free":true,"shortname":"Containers-Module","description":"

This Module contains several packages revolving around containers and related tools.

","eula_url":"","arch":"ppc64le","predecessor_ids":[],"repositories":[{"installer_updates":false,"name":"SLE-Module-Containers15-Updates","description":"SLE-Module-Containers15-Updates for sle-15-ppc64le","id":2854,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/15/ppc64le/update/","distro_target":"sle-15-ppc64le","autorefresh":true},{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/15/ppc64le/update_debug/","distro_target":"sle-15-ppc64le","autorefresh":true,"id":2855,"enabled":false,"description":"SLE-Module-Containers15-Debuginfo-Updates for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-Containers15-Debuginfo-Updates"},{"description":"SLE-Module-Containers15-Pool for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-Containers15-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15/ppc64le/product/","distro_target":"sle-15-ppc64le","autorefresh":false,"id":2856,"enabled":true},{"description":"SLE-Module-Containers15-Debuginfo-Pool for sle-15-ppc64le","name":"SLE-Module-Containers15-Debuginfo-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15/ppc64le/product_debug/","autorefresh":false,"distro_target":"sle-15-ppc64le","id":2857,"enabled":false},{"installer_updates":false,"name":"SLE-Module-Containers15-Source-Pool","description":"SLE-Module-Containers15-Source-Pool for sle-15-ppc64le","enabled":false,"id":2858,"distro_target":"sle-15-ppc64le","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15/ppc64le/product_source/"}],"online_predecessor_ids":[],"product_class":"MODULE","product_type":"module","cpe":"cpe:/o:suse:sle-module-containers:15"},{"friendly_name":"Containers Module 15 s390x","migration_extra":false,"release_type":null,"former_identifier":"sle-module-containers","name":"Containers Module","offline_predecessor_ids":[1354],"version":"15","recommended":false,"release_stage":"released","identifier":"sle-module-containers","id":1641,"extensions":[],"friendly_version":"15","arch":"s390x","eula_url":"","description":"

This Module contains several packages revolving around containers and related tools.

","shortname":"Containers-Module","free":true,"cpe":"cpe:/o:suse:sle-module-containers:15","product_type":"module","online_predecessor_ids":[],"repositories":[{"description":"SLE-Module-Containers15-Updates for sle-15-s390x","name":"SLE-Module-Containers15-Updates","installer_updates":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/15/s390x/update/","autorefresh":true,"distro_target":"sle-15-s390x","id":2859,"enabled":true},{"autorefresh":true,"distro_target":"sle-15-s390x","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/15/s390x/update_debug/","enabled":false,"id":2860,"description":"SLE-Module-Containers15-Debuginfo-Updates for sle-15-s390x","name":"SLE-Module-Containers15-Debuginfo-Updates","installer_updates":false},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15/s390x/product/","autorefresh":false,"distro_target":"sle-15-s390x","id":2861,"enabled":true,"description":"SLE-Module-Containers15-Pool for sle-15-s390x","name":"SLE-Module-Containers15-Pool","installer_updates":false},{"installer_updates":false,"name":"SLE-Module-Containers15-Debuginfo-Pool","description":"SLE-Module-Containers15-Debuginfo-Pool for sle-15-s390x","enabled":false,"id":2862,"distro_target":"sle-15-s390x","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15/s390x/product_debug/"},{"description":"SLE-Module-Containers15-Source-Pool for sle-15-s390x","name":"SLE-Module-Containers15-Source-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15/s390x/product_source/","autorefresh":false,"distro_target":"sle-15-s390x","id":2863,"enabled":false}],"product_class":"MODULE","predecessor_ids":[]},{"arch":"x86_64","eula_url":"","shortname":"Containers-Module","description":"

This Module contains several packages revolving around containers and related tools.

","free":true,"cpe":"cpe:/o:suse:sle-module-containers:15","product_type":"module","product_class":"MODULE","online_predecessor_ids":[],"repositories":[{"description":"SLE-Module-Containers15-Updates for sle-15-x86_64","name":"SLE-Module-Containers15-Updates","installer_updates":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/15/x86_64/update/","autorefresh":true,"distro_target":"sle-15-x86_64","id":2864,"enabled":true},{"description":"SLE-Module-Containers15-Debuginfo-Updates for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Containers15-Debuginfo-Updates","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/15/x86_64/update_debug/","distro_target":"sle-15-x86_64","autorefresh":true,"id":2865,"enabled":false},{"enabled":true,"id":2866,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15/x86_64/product/","name":"SLE-Module-Containers15-Pool","installer_updates":false,"description":"SLE-Module-Containers15-Pool for sle-15-x86_64"},{"id":2867,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15/x86_64/product_debug/","autorefresh":false,"distro_target":"sle-15-x86_64","name":"SLE-Module-Containers15-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-Containers15-Debuginfo-Pool for sle-15-x86_64"},{"id":2868,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15/x86_64/product_source/","autorefresh":false,"distro_target":"sle-15-x86_64","name":"SLE-Module-Containers15-Source-Pool","installer_updates":false,"description":"SLE-Module-Containers15-Source-Pool for sle-15-x86_64"}],"predecessor_ids":[],"migration_extra":false,"friendly_name":"Containers Module 15 x86_64","release_type":null,"former_identifier":"sle-module-containers","name":"Containers Module","offline_predecessor_ids":[1332],"version":"15","recommended":false,"release_stage":"released","identifier":"sle-module-containers","id":1642,"extensions":[],"friendly_version":"15"},{"eula_url":"https://updates.suse.com/SUSE/Products/Storage/6/aarch64/product.license/","arch":"aarch64","free":false,"description":"SUSE Enterprise Storage 6 for SUSE Linux Enterprise Server 15 SP1, powered by Ceph.","shortname":"SES6","product_type":"extension","cpe":"cpe:/o:suse:ses:6","predecessor_ids":[],"repositories":[{"description":"SUSE-Enterprise-Storage-6-Updates for sle-15-aarch64","name":"SUSE-Enterprise-Storage-6-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Updates/Storage/6/aarch64/update/","enabled":true,"id":2869},{"url":"https://updates.suse.com/SUSE/Updates/Storage/6/aarch64/update_debug/","distro_target":"sle-15-aarch64","autorefresh":true,"id":2870,"enabled":false,"description":"SUSE-Enterprise-Storage-6-Debuginfo-Updates for sle-15-aarch64","installer_updates":false,"name":"SUSE-Enterprise-Storage-6-Debuginfo-Updates"},{"enabled":true,"id":2871,"distro_target":"sle-15-aarch64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/Storage/6/aarch64/product/","installer_updates":false,"name":"SUSE-Enterprise-Storage-6-Pool","description":"SUSE-Enterprise-Storage-6-Pool for sle-15-aarch64"},{"url":"https://updates.suse.com/SUSE/Products/Storage/6/aarch64/product_debug/","distro_target":"sle-15-aarch64","autorefresh":false,"id":2872,"enabled":false,"description":"SUSE-Enterprise-Storage-6-Debuginfo-Pool for sle-15-aarch64","installer_updates":false,"name":"SUSE-Enterprise-Storage-6-Debuginfo-Pool"},{"id":2873,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/Storage/6/aarch64/product_source/","distro_target":"sle-15-aarch64","autorefresh":false,"installer_updates":false,"name":"SUSE-Enterprise-Storage-6-Source-Pool","description":"SUSE-Enterprise-Storage-6-Source-Pool for sle-15-aarch64"}],"online_predecessor_ids":[],"product_class":"SES-ARM64","offline_predecessor_ids":[1417,1527],"name":"SUSE Enterprise Storage","former_identifier":"ses","release_type":null,"friendly_name":"SUSE Enterprise Storage 6 aarch64","migration_extra":false,"recommended":false,"version":"6","extensions":[],"identifier":"ses","release_stage":"released","id":1643,"friendly_version":"6"},{"product_type":"extension","cpe":"cpe:/o:suse:ses:6","repositories":[{"distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/Storage/6/x86_64/update/","enabled":true,"id":2874,"description":"SUSE-Enterprise-Storage-6-Updates for sle-15-x86_64","installer_updates":false,"name":"SUSE-Enterprise-Storage-6-Updates"},{"id":2875,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/Storage/6/x86_64/update_debug/","distro_target":"sle-15-x86_64","autorefresh":true,"installer_updates":false,"name":"SUSE-Enterprise-Storage-6-Debuginfo-Updates","description":"SUSE-Enterprise-Storage-6-Debuginfo-Updates for sle-15-x86_64"},{"id":2876,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/Storage/6/x86_64/product/","autorefresh":false,"distro_target":"sle-15-x86_64","name":"SUSE-Enterprise-Storage-6-Pool","installer_updates":false,"description":"SUSE-Enterprise-Storage-6-Pool for sle-15-x86_64"},{"url":"https://updates.suse.com/SUSE/Products/Storage/6/x86_64/product_debug/","distro_target":"sle-15-x86_64","autorefresh":false,"id":2877,"enabled":false,"description":"SUSE-Enterprise-Storage-6-Debuginfo-Pool for sle-15-x86_64","installer_updates":false,"name":"SUSE-Enterprise-Storage-6-Debuginfo-Pool"},{"description":"SUSE-Enterprise-Storage-6-Source-Pool for sle-15-x86_64","name":"SUSE-Enterprise-Storage-6-Source-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/Storage/6/x86_64/product_source/","enabled":false,"id":2878}],"online_predecessor_ids":[],"product_class":"SES","predecessor_ids":[],"arch":"x86_64","eula_url":"https://updates.suse.com/SUSE/Products/Storage/6/x86_64/product.license/","free":false,"description":"SUSE Enterprise Storage 6 for SUSE Linux Enterprise Server 15 SP1, powered by Ceph.","shortname":"SES6","identifier":"ses","release_stage":"released","id":1644,"extensions":[],"friendly_version":"6","release_type":null,"former_identifier":"ses","friendly_name":"SUSE Enterprise Storage 6 x86_64","migration_extra":false,"offline_predecessor_ids":[1342,1369,1416,1526],"name":"SUSE Enterprise Storage","version":"6","recommended":false},{"offline_predecessor_ids":[1528],"name":"Public Cloud Module","release_type":null,"former_identifier":"sle-module-public-cloud","friendly_name":"Public Cloud Module 15 aarch64","migration_extra":false,"recommended":false,"version":"15","extensions":[],"release_stage":"released","identifier":"sle-module-public-cloud","id":1645,"friendly_version":"15","eula_url":"","arch":"aarch64","free":true,"shortname":"Public-Cloud-Module","description":"

The Public Cloud Module is a collection of tools that enables you to create and manage cloud images from the commandline on SUSE Linux Enterprise Server. When building your own images with KIWI or SUSE Studio, initialization code specific to the target cloud is included in that image.

Access to the Public Cloud Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself; please check the Release Notes for further details.

","product_type":"module","cpe":"cpe:/o:suse:sle-module-public-cloud:15","predecessor_ids":[],"online_predecessor_ids":[],"product_class":"MODULE","repositories":[{"installer_updates":false,"name":"SLE-Module-Public-Cloud15-Updates","description":"SLE-Module-Public-Cloud15-Updates for sle-15-aarch64","id":2879,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/15/aarch64/update/","distro_target":"sle-15-aarch64","autorefresh":true},{"description":"SLE-Module-Public-Cloud15-Debuginfo-Updates for sle-15-aarch64","installer_updates":false,"name":"SLE-Module-Public-Cloud15-Debuginfo-Updates","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/15/aarch64/update_debug/","distro_target":"sle-15-aarch64","autorefresh":true,"id":2880,"enabled":false},{"name":"SLE-Module-Public-Cloud15-Pool","installer_updates":false,"description":"SLE-Module-Public-Cloud15-Pool for sle-15-aarch64","enabled":true,"id":2881,"autorefresh":false,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15/aarch64/product/"},{"autorefresh":false,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15/aarch64/product_debug/","enabled":false,"id":2882,"description":"SLE-Module-Public-Cloud15-Debuginfo-Pool for sle-15-aarch64","name":"SLE-Module-Public-Cloud15-Debuginfo-Pool","installer_updates":false},{"description":"SLE-Module-Public-Cloud15-Source-Pool for sle-15-aarch64","name":"SLE-Module-Public-Cloud15-Source-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15/aarch64/product_source/","enabled":false,"id":3126}]},{"cpe":"cpe:/o:suse:sle-module-public-cloud:15","product_type":"module","predecessor_ids":[],"repositories":[{"distro_target":"sle-15-s390x","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/15/s390x/update/","enabled":true,"id":2883,"description":"SLE-Module-Public-Cloud15-Updates for sle-15-s390x","installer_updates":false,"name":"SLE-Module-Public-Cloud15-Updates"},{"enabled":false,"id":2884,"distro_target":"sle-15-s390x","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/15/s390x/update_debug/","installer_updates":false,"name":"SLE-Module-Public-Cloud15-Debuginfo-Updates","description":"SLE-Module-Public-Cloud15-Debuginfo-Updates for sle-15-s390x"},{"enabled":true,"id":2885,"distro_target":"sle-15-s390x","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15/s390x/product/","installer_updates":false,"name":"SLE-Module-Public-Cloud15-Pool","description":"SLE-Module-Public-Cloud15-Pool for sle-15-s390x"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15/s390x/product_debug/","autorefresh":false,"distro_target":"sle-15-s390x","id":2886,"enabled":false,"description":"SLE-Module-Public-Cloud15-Debuginfo-Pool for sle-15-s390x","name":"SLE-Module-Public-Cloud15-Debuginfo-Pool","installer_updates":false},{"description":"SLE-Module-Public-Cloud15-Source-Pool for sle-15-s390x","installer_updates":false,"name":"SLE-Module-Public-Cloud15-Source-Pool","distro_target":"sle-15-s390x","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15/s390x/product_source/","enabled":false,"id":3128}],"online_predecessor_ids":[],"product_class":"MODULE","eula_url":"","arch":"s390x","shortname":"Public-Cloud-Module","description":"

The Public Cloud Module is a collection of tools that enables you to create and manage cloud images from the commandline on SUSE Linux Enterprise Server. When building your own images with KIWI or SUSE Studio, initialization code specific to the target cloud is included in that image.

Access to the Public Cloud Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself; please check the Release Notes for further details.

","free":true,"extensions":[],"id":1646,"release_stage":"released","identifier":"sle-module-public-cloud","friendly_version":"15","name":"Public Cloud Module","offline_predecessor_ids":[1219],"migration_extra":false,"friendly_name":"Public Cloud Module 15 s390x","former_identifier":"sle-module-public-cloud","release_type":null,"recommended":false,"version":"15"},{"cpe":"cpe:/o:suse:sle-module-cap-tools:12","product_type":"module","repositories":[{"name":"SLE-Module-CAP-Tools-12-Updates","installer_updates":false,"description":"SLE-Module-CAP-Tools-12-Updates for sle-12-x86_64","enabled":true,"id":2912,"autorefresh":true,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-CAP-Tools/12/x86_64/update/"},{"name":"SLE-Module-CAP-Tools-12-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-CAP-Tools-12-Debuginfo-Updates for sle-12-x86_64","id":2913,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-CAP-Tools/12/x86_64/update_debug/","autorefresh":true,"distro_target":"sle-12-x86_64"},{"enabled":true,"id":2914,"distro_target":"sle-12-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-CAP-Tools/12/x86_64/product/","installer_updates":false,"name":"SLE-Module-CAP-Tools-12-Pool","description":"SLE-Module-CAP-Tools-12-Pool for sle-12-x86_64"},{"name":"SLE-Module-CAP-Tools-12-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-CAP-Tools-12-Debuginfo-Pool for sle-12-x86_64","enabled":false,"id":2915,"autorefresh":false,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-CAP-Tools/12/x86_64/product_debug/"},{"autorefresh":false,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-CAP-Tools/12/x86_64/product_source/","enabled":false,"id":2916,"description":"SLE-Module-CAP-Tools-12-Source-Pool for sle-12-x86_64","name":"SLE-Module-CAP-Tools-12-Source-Pool","installer_updates":false}],"online_predecessor_ids":[],"product_class":"MODULE","predecessor_ids":[],"arch":"x86_64","eula_url":"","shortname":"SUSE-CAP-Tools-Module","description":"

The SUSE Cloud Application Platform Tools Module is a collection of tools that enables you to interact with the SUSE Cloud Application Platform product itself, providing the commandline client for instance.

Access to the SUSE Cloud Application Platform Tools Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself; please check the Release Notes for further details.

","free":true,"release_stage":"released","id":1678,"identifier":"sle-module-cap-tools","extensions":[],"friendly_version":"12","migration_extra":false,"friendly_name":"SUSE Cloud Application Platform Tools Module 12 x86_64","former_identifier":"sle-module-cap-tools","release_type":null,"name":"SUSE Cloud Application Platform Tools Module","offline_predecessor_ids":[],"version":"12","recommended":false},{"product_type":"base","cpe":"cpe:/o:suse:res-manager-client:5","predecessor_ids":[],"product_class":"SLE-M-T","online_predecessor_ids":[],"repositories":[{"autorefresh":true,"distro_target":"i386","url":"https://updates.suse.com/repo/$RCE/RES5-SUSE-Manager-Tools/i386/","enabled":true,"id":990,"description":"RES-5-SUSE-Manager-Tools for i386","name":"RES-5-SUSE-Manager-Tools","installer_updates":false}],"eula_url":"","arch":"i386","free":false,"description":"SUSE Manager Client Tools for RHEL, Liberty and Clones 5","shortname":"RES5-Tools","extensions":[],"identifier":"res-manager-client","release_stage":"released","id":1679,"friendly_version":"5","offline_predecessor_ids":[],"name":"SUSE Manager Client Tools for RHEL, Liberty and Clones","former_identifier":"res-manager-client","release_type":null,"migration_extra":false,"friendly_name":"SUSE Manager Client Tools for RHEL, Liberty and Clones 5 i386","recommended":false,"version":"5"},{"friendly_version":"5","extensions":[],"release_stage":"released","identifier":"res-manager-client","id":1680,"recommended":false,"version":"5","name":"SUSE Manager Client Tools for RHEL, Liberty and Clones","offline_predecessor_ids":[],"friendly_name":"SUSE Manager Client Tools for RHEL, Liberty and Clones 5 x86_64","migration_extra":false,"former_identifier":"res-manager-client","release_type":null,"predecessor_ids":[],"online_predecessor_ids":[],"repositories":[{"id":979,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/RES5-SUSE-Manager-Tools/x86_64/","distro_target":"x86_64","autorefresh":true,"installer_updates":false,"name":"RES-5-SUSE-Manager-Tools","description":"RES-5-SUSE-Manager-Tools for x86_64"}],"product_class":"SLE-M-T","cpe":"cpe:/o:suse:res-manager-client:5","product_type":"base","shortname":"RES5-Tools","description":"SUSE Manager Client Tools for RHEL, Liberty and Clones 5","free":false,"eula_url":"","arch":"x86_64"},{"product_type":"base","cpe":"cpe:/o:suse:res-manager-client:6","online_predecessor_ids":[],"product_class":"SLE-M-T","repositories":[{"description":"RES-6-SUSE-Manager-Tools for i386","installer_updates":false,"name":"RES-6-SUSE-Manager-Tools","distro_target":"i386","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/RES6-SUSE-Manager-Tools/i386/","enabled":true,"id":994}],"predecessor_ids":[],"arch":"i386","eula_url":"","free":false,"description":"SUSE Manager Client Tools for RHEL, Liberty and Clones 6","shortname":"RES6-Tools","release_stage":"released","id":1681,"identifier":"res-manager-client","extensions":[],"friendly_version":"6","former_identifier":"res-manager-client","release_type":null,"friendly_name":"SUSE Manager Client Tools for RHEL, Liberty and Clones 6 i386","migration_extra":false,"offline_predecessor_ids":[],"name":"SUSE Manager Client Tools for RHEL, Liberty and Clones","version":"6","recommended":false},{"arch":"x86_64","eula_url":"","free":false,"description":"SUSE Manager Client Tools for RHEL, Liberty and Clones 6","shortname":"RES6-Tools","product_type":"base","cpe":"cpe:/o:suse:res-manager-client:6","online_predecessor_ids":[],"repositories":[{"description":"RES-6-SUSE-Manager-Tools for x86_64","installer_updates":false,"name":"RES-6-SUSE-Manager-Tools","url":"https://updates.suse.com/repo/$RCE/RES6-SUSE-Manager-Tools/x86_64/","distro_target":"x86_64","autorefresh":true,"id":977,"enabled":true}],"product_class":"SLE-M-T","predecessor_ids":[],"former_identifier":"res-manager-client","release_type":null,"migration_extra":false,"friendly_name":"SUSE Manager Client Tools for RHEL, Liberty and Clones 6 x86_64","offline_predecessor_ids":[],"name":"SUSE Manager Client Tools for RHEL, Liberty and Clones","version":"6","recommended":false,"identifier":"res-manager-client","release_stage":"released","id":1682,"extensions":[],"friendly_version":"6"},{"product_type":"base","cpe":"cpe:/o:suse:res-manager-client:7","predecessor_ids":[],"online_predecessor_ids":[],"repositories":[{"installer_updates":false,"name":"RES-7-SUSE-Manager-Tools","description":"RES-7-SUSE-Manager-Tools for x86_64","id":1746,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/RES7-SUSE-Manager-Tools/x86_64/","distro_target":"x86_64","autorefresh":true}],"product_class":"SLE-M-T","eula_url":"","arch":"x86_64","free":false,"shortname":"Manager-Tools","description":"SUSE Manager Client Tools for RHEL, Liberty and Clones 7","extensions":[],"identifier":"res-manager-client","release_stage":"released","id":1683,"friendly_version":"7","offline_predecessor_ids":[],"name":"SUSE Manager Client Tools for RHEL, Liberty and Clones","former_identifier":"res-manager-client","release_type":null,"migration_extra":false,"friendly_name":"SUSE Manager Client Tools for RHEL, Liberty and Clones 7 x86_64","recommended":false,"version":"7"},{"cpe":"cpe:/o:suse:sle-clienttools:10:sp3","product_type":"base","predecessor_ids":[],"online_predecessor_ids":[],"product_class":"SLE-M-T","repositories":[{"description":"SLE10-SUSE-Manager-Tools for sle-10-i586","installer_updates":false,"name":"SLE10-SUSE-Manager-Tools","distro_target":"sle-10-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SUSE-Manager-Tools/sles-10-i586/","enabled":true,"id":1827}],"eula_url":"","arch":"i586","description":"SUSE Linux Enterprise Client Tools 10","shortname":"SLE10-Tools","free":false,"extensions":[],"release_stage":"released","identifier":"sle-clienttools","id":1684,"friendly_version":"10 SP3","name":"SUSE Linux Enterprise Client Tools","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Client Tools 10 SP3 i586","former_identifier":"sle-clienttools","release_type":null,"recommended":false,"version":"10"},{"identifier":"sle-clienttools","release_stage":"released","id":1685,"extensions":[],"friendly_version":"10 SP3","former_identifier":"sle-clienttools","release_type":null,"friendly_name":"SUSE Linux Enterprise Client Tools 10 SP3 ia64","migration_extra":false,"offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Client Tools","version":"10","recommended":false,"product_type":"base","cpe":"cpe:/o:suse:sle-clienttools:10:sp3","repositories":[{"distro_target":"sle-10-ia64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SUSE-Manager-Tools/sles-10-ia64/","enabled":true,"id":988,"description":"SLE10-SUSE-Manager-Tools for sle-10-ia64","installer_updates":false,"name":"SLE10-SUSE-Manager-Tools"}],"online_predecessor_ids":[],"product_class":"SLE-M-T","predecessor_ids":[],"arch":"ia64","eula_url":"","free":false,"shortname":"SLE10-Tools","description":"SUSE Linux Enterprise Client Tools 10"},{"friendly_name":"SUSE Linux Enterprise Client Tools 10 SP3 ppc","migration_extra":false,"release_type":null,"former_identifier":"sle-clienttools","name":"SUSE Linux Enterprise Client Tools","offline_predecessor_ids":[],"version":"10","recommended":false,"release_stage":"released","id":1686,"identifier":"sle-clienttools","extensions":[],"friendly_version":"10 SP3","arch":"ppc","eula_url":"","description":"SUSE Linux Enterprise Client Tools 10","shortname":"SLE10-Tools","free":false,"cpe":"cpe:/o:suse:sle-clienttools:10:sp3","product_type":"base","product_class":"SLE-M-T","online_predecessor_ids":[],"repositories":[{"installer_updates":false,"name":"SLE10-SUSE-Manager-Tools","description":"SLE10-SUSE-Manager-Tools for sle-10-ppc","id":978,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLE10-SUSE-Manager-Tools/sles-10-ppc/","distro_target":"sle-10-ppc","autorefresh":true}],"predecessor_ids":[]},{"extensions":[],"release_stage":"released","identifier":"sle-clienttools","id":1687,"friendly_version":"10 SP3","name":"SUSE Linux Enterprise Client Tools","offline_predecessor_ids":[],"friendly_name":"SUSE Linux Enterprise Client Tools 10 SP3 s390x","migration_extra":false,"former_identifier":"sle-clienttools","release_type":null,"recommended":false,"version":"10","cpe":"cpe:/o:suse:sle-clienttools:10:sp3","product_type":"base","predecessor_ids":[],"online_predecessor_ids":[],"repositories":[{"description":"SLE10-SUSE-Manager-Tools for sle-10-s390x","name":"SLE10-SUSE-Manager-Tools","installer_updates":false,"autorefresh":true,"distro_target":"sle-10-s390x","url":"https://updates.suse.com/repo/$RCE/SLE10-SUSE-Manager-Tools/sles-10-s390x/","enabled":true,"id":992}],"product_class":"SLE-M-T","eula_url":"","arch":"s390x","shortname":"SLE10-Tools","description":"SUSE Linux Enterprise Client Tools 10","free":false},{"free":false,"shortname":"SLE10-Tools","description":"SUSE Linux Enterprise Client Tools 10","eula_url":"","arch":"x86_64","predecessor_ids":[],"product_class":"SLE-M-T","online_predecessor_ids":[],"repositories":[{"url":"https://updates.suse.com/repo/$RCE/SLE10-SUSE-Manager-Tools/sles-10-x86_64/","autorefresh":true,"distro_target":"sle-10-x86_64","id":993,"enabled":true,"description":"SLE10-SUSE-Manager-Tools for sle-10-x86_64","name":"SLE10-SUSE-Manager-Tools","installer_updates":false}],"product_type":"base","cpe":"cpe:/o:suse:sle-clienttools:10:sp3","recommended":false,"version":"10","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Client Tools","release_type":null,"former_identifier":"sle-clienttools","migration_extra":false,"friendly_name":"SUSE Linux Enterprise Client Tools 10 SP3 x86_64","friendly_version":"10 SP3","extensions":[],"release_stage":"released","id":1688,"identifier":"sle-clienttools"},{"free":false,"shortname":"SLE11SP1-Tools","description":"SUSE Manager Client Tools for SLE 11 SP1","eula_url":"","arch":"i586","predecessor_ids":[],"online_predecessor_ids":[],"repositories":[{"description":"SLES11-SP1-SUSE-Manager-Tools for sle-11-i586","name":"SLES11-SP1-SUSE-Manager-Tools","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-i586","url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-SUSE-Manager-Tools/sle-11-i586/","enabled":true,"id":976}],"product_class":"SLE-M-T","product_type":"base","cpe":"cpe:/a:suse:sle-clienttools:11:sp1","recommended":false,"version":"11.1","offline_predecessor_ids":[],"name":"SUSE Manager Client Tools for SLE","release_type":null,"former_identifier":"sle-clienttools","migration_extra":false,"friendly_name":"SUSE Manager Client Tools for SLE 11 SP1 i586","friendly_version":"11 SP1","extensions":[],"id":1689,"release_stage":"released","identifier":"sle-clienttools"},{"eula_url":"","arch":"ia64","shortname":"SLE11SP1-Tools","description":"SUSE Manager Client Tools for SLE 11 SP1","free":false,"cpe":"cpe:/a:suse:sle-clienttools:11:sp1","product_type":"base","predecessor_ids":[],"online_predecessor_ids":[],"product_class":"SLE-M-T","repositories":[{"url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-SUSE-Manager-Tools/sle-11-ia64/","distro_target":"sle-11-ia64","autorefresh":true,"id":984,"enabled":true,"description":"SLES11-SP1-SUSE-Manager-Tools for sle-11-ia64","installer_updates":false,"name":"SLES11-SP1-SUSE-Manager-Tools"}],"name":"SUSE Manager Client Tools for SLE","offline_predecessor_ids":[],"friendly_name":"SUSE Manager Client Tools for SLE 11 SP1 ia64","migration_extra":false,"release_type":null,"former_identifier":"sle-clienttools","recommended":false,"version":"11.1","extensions":[],"id":1690,"release_stage":"released","identifier":"sle-clienttools","friendly_version":"11 SP1"},{"offline_predecessor_ids":[],"name":"SUSE Manager Client Tools for SLE","release_type":null,"former_identifier":"sle-clienttools","friendly_name":"SUSE Manager Client Tools for SLE 11 SP1 ppc64","migration_extra":false,"recommended":false,"version":"11.1","extensions":[],"id":1691,"release_stage":"released","identifier":"sle-clienttools","friendly_version":"11 SP1","eula_url":"","arch":"ppc64","free":false,"description":"SUSE Manager Client Tools for SLE 11 SP1","shortname":"SLE11SP1-Tools","product_type":"base","cpe":"cpe:/a:suse:sle-clienttools:11:sp1","predecessor_ids":[],"product_class":"SLE-M-T","online_predecessor_ids":[],"repositories":[{"name":"SLES11-SP1-SUSE-Manager-Tools","installer_updates":false,"description":"SLES11-SP1-SUSE-Manager-Tools for sle-11-ppc64","enabled":true,"id":983,"autorefresh":true,"distro_target":"sle-11-ppc64","url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-SUSE-Manager-Tools/sle-11-ppc64/"}]},{"recommended":false,"version":"11.1","name":"SUSE Manager Client Tools for SLE","offline_predecessor_ids":[],"friendly_name":"SUSE Manager Client Tools for SLE 11 SP1 s390x","migration_extra":false,"former_identifier":"sle-clienttools","release_type":null,"friendly_version":"11 SP1","extensions":[],"identifier":"sle-clienttools","release_stage":"released","id":1692,"description":"SUSE Manager Client Tools for SLE 11 SP1","shortname":"SLE11SP1-Tools","free":false,"eula_url":"","arch":"s390x","predecessor_ids":[],"online_predecessor_ids":[],"product_class":"SLE-M-T","repositories":[{"url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-SUSE-Manager-Tools/sle-11-s390x/","distro_target":"sle-11-s390x","autorefresh":true,"id":982,"enabled":true,"description":"SLES11-SP1-SUSE-Manager-Tools for sle-11-s390x","installer_updates":false,"name":"SLES11-SP1-SUSE-Manager-Tools"}],"cpe":"cpe:/a:suse:sle-clienttools:11:sp1","product_type":"base"},{"extensions":[],"identifier":"sle-clienttools","release_stage":"released","id":1693,"friendly_version":"11 SP1","offline_predecessor_ids":[],"name":"SUSE Manager Client Tools for SLE","release_type":null,"former_identifier":"sle-clienttools","friendly_name":"SUSE Manager Client Tools for SLE 11 SP1 x86_64","migration_extra":false,"recommended":false,"version":"11.1","product_type":"base","cpe":"cpe:/a:suse:sle-clienttools:11:sp1","predecessor_ids":[],"repositories":[{"enabled":true,"id":985,"distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP1-SUSE-Manager-Tools/sle-11-x86_64/","installer_updates":false,"name":"SLES11-SP1-SUSE-Manager-Tools","description":"SLES11-SP1-SUSE-Manager-Tools for sle-11-x86_64"}],"online_predecessor_ids":[],"product_class":"SLE-M-T","eula_url":"","arch":"x86_64","free":false,"shortname":"SLE11SP1-Tools","description":"SUSE Manager Client Tools for SLE 11 SP1"},{"eula_url":"","arch":"i586","shortname":"SLE11SP2-Tools","description":"SUSE Manager Client Tools for SLE 11 SP2","free":false,"cpe":"cpe:/a:suse:sle-clienttools:11:sp2","product_type":"base","predecessor_ids":[],"online_predecessor_ids":[],"repositories":[{"enabled":true,"id":1567,"distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP2-SUSE-Manager-Tools/sle-11-i586/","installer_updates":false,"name":"SLES11-SP2-SUSE-Manager-Tools","description":"SLES11-SP2-SUSE-Manager-Tools for sle-11-i586"}],"product_class":"SLE-M-T","name":"SUSE Manager Client Tools for SLE","offline_predecessor_ids":[],"friendly_name":"SUSE Manager Client Tools for SLE 11 SP2 i586","migration_extra":false,"release_type":null,"former_identifier":"sle-clienttools","recommended":false,"version":"11.2","extensions":[],"id":1694,"release_stage":"released","identifier":"sle-clienttools","friendly_version":"11 SP2"},{"description":"SUSE Manager Client Tools for SLE 11 SP2","shortname":"SLE11SP2-Tools","free":false,"arch":"ia64","eula_url":"","product_class":"SLE-M-T","online_predecessor_ids":[],"repositories":[{"description":"SLES11-SP2-SUSE-Manager-Tools for sle-11-ia64","installer_updates":false,"name":"SLES11-SP2-SUSE-Manager-Tools","url":"https://updates.suse.com/repo/$RCE/SLES11-SP2-SUSE-Manager-Tools/sle-11-ia64/","distro_target":"sle-11-ia64","autorefresh":true,"id":1568,"enabled":true}],"predecessor_ids":[],"cpe":"cpe:/a:suse:sle-clienttools:11:sp2","product_type":"base","version":"11.2","recommended":false,"migration_extra":false,"friendly_name":"SUSE Manager Client Tools for SLE 11 SP2 ia64","former_identifier":"sle-clienttools","release_type":null,"name":"SUSE Manager Client Tools for SLE","offline_predecessor_ids":[],"friendly_version":"11 SP2","id":1695,"release_stage":"released","identifier":"sle-clienttools","extensions":[]},{"friendly_version":"11 SP2","extensions":[],"id":1696,"release_stage":"released","identifier":"sle-clienttools","recommended":false,"version":"11.2","offline_predecessor_ids":[],"name":"SUSE Manager Client Tools for SLE","former_identifier":"sle-clienttools","release_type":null,"migration_extra":false,"friendly_name":"SUSE Manager Client Tools for SLE 11 SP2 ppc64","predecessor_ids":[],"repositories":[{"name":"SLES11-SP2-SUSE-Manager-Tools","installer_updates":false,"description":"SLES11-SP2-SUSE-Manager-Tools for sle-11-ppc64","id":1569,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP2-SUSE-Manager-Tools/sle-11-ppc64/","autorefresh":true,"distro_target":"sle-11-ppc64"}],"online_predecessor_ids":[],"product_class":"SLE-M-T","product_type":"base","cpe":"cpe:/a:suse:sle-clienttools:11:sp2","free":false,"shortname":"SLE11SP2-Tools","description":"SUSE Manager Client Tools for SLE 11 SP2","eula_url":"","arch":"ppc64"},{"eula_url":"","arch":"s390x","free":false,"description":"SUSE Manager Client Tools for SLE 11 SP2","shortname":"SLE11SP2-Tools","product_type":"base","cpe":"cpe:/a:suse:sle-clienttools:11:sp2","predecessor_ids":[],"product_class":"SLE-M-T","online_predecessor_ids":[],"repositories":[{"distro_target":"sle-11-s390x","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP2-SUSE-Manager-Tools/sle-11-s390x/","enabled":true,"id":1570,"description":"SLES11-SP2-SUSE-Manager-Tools for sle-11-s390x","installer_updates":false,"name":"SLES11-SP2-SUSE-Manager-Tools"}],"offline_predecessor_ids":[],"name":"SUSE Manager Client Tools for SLE","release_type":null,"former_identifier":"sle-clienttools","migration_extra":false,"friendly_name":"SUSE Manager Client Tools for SLE 11 SP2 s390x","recommended":false,"version":"11.2","extensions":[],"release_stage":"released","id":1697,"identifier":"sle-clienttools","friendly_version":"11 SP2"},{"friendly_version":"11 SP2","release_stage":"released","id":1698,"identifier":"sle-clienttools","extensions":[],"version":"11.2","recommended":false,"migration_extra":false,"friendly_name":"SUSE Manager Client Tools for SLE 11 SP2 x86_64","release_type":null,"former_identifier":"sle-clienttools","name":"SUSE Manager Client Tools for SLE","offline_predecessor_ids":[],"product_class":"SLE-M-T","online_predecessor_ids":[],"repositories":[{"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLES11-SP2-SUSE-Manager-Tools/sle-11-x86_64/","enabled":true,"id":1571,"description":"SLES11-SP2-SUSE-Manager-Tools for sle-11-x86_64","name":"SLES11-SP2-SUSE-Manager-Tools","installer_updates":false}],"predecessor_ids":[],"cpe":"cpe:/a:suse:sle-clienttools:11:sp2","product_type":"base","shortname":"SLE11SP2-Tools","description":"SUSE Manager Client Tools for SLE 11 SP2","free":false,"arch":"x86_64","eula_url":""},{"free":false,"shortname":"Manager-Tools","description":"SUSE Manager Client Tools for SLE 11 SP3","arch":"i586","eula_url":"","repositories":[{"distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP3-SUSE-Manager-Tools/sle-11-i586/","enabled":true,"id":1572,"description":"SLES11-SP3-SUSE-Manager-Tools for sle-11-i586","installer_updates":false,"name":"SLES11-SP3-SUSE-Manager-Tools"}],"online_predecessor_ids":[],"product_class":"SLE-M-T","predecessor_ids":[],"product_type":"base","cpe":"cpe:/a:suse:sle-clienttools:11:sp3","version":"11.3","recommended":false,"release_type":null,"former_identifier":"sle-clienttools","migration_extra":false,"friendly_name":"SUSE Manager Client Tools for SLE 11 SP3 i586","offline_predecessor_ids":[],"name":"SUSE Manager Client Tools for SLE","friendly_version":"11 SP3","release_stage":"released","identifier":"sle-clienttools","id":1699,"extensions":[]},{"eula_url":"","arch":"ia64","free":false,"shortname":"Manager-Tools","description":"SUSE Manager Client Tools for SLE 11 SP3","product_type":"base","cpe":"cpe:/a:suse:sle-clienttools:11:sp3","predecessor_ids":[],"repositories":[{"id":1573,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP3-SUSE-Manager-Tools/sle-11-ia64/","distro_target":"sle-11-ia64","autorefresh":true,"installer_updates":false,"name":"SLES11-SP3-SUSE-Manager-Tools","description":"SLES11-SP3-SUSE-Manager-Tools for sle-11-ia64"}],"online_predecessor_ids":[],"product_class":"SLE-M-T","offline_predecessor_ids":[],"name":"SUSE Manager Client Tools for SLE","release_type":null,"former_identifier":"sle-clienttools","migration_extra":false,"friendly_name":"SUSE Manager Client Tools for SLE 11 SP3 ia64","recommended":false,"version":"11.3","extensions":[],"release_stage":"released","id":1700,"identifier":"sle-clienttools","friendly_version":"11 SP3"},{"recommended":false,"version":"11.3","offline_predecessor_ids":[],"name":"SUSE Manager Client Tools for SLE","former_identifier":"sle-clienttools","release_type":null,"friendly_name":"SUSE Manager Client Tools for SLE 11 SP3 ppc64","migration_extra":false,"friendly_version":"11 SP3","extensions":[],"identifier":"sle-clienttools","release_stage":"released","id":1701,"free":false,"shortname":"Manager-Tools","description":"SUSE Manager Client Tools for SLE 11 SP3","eula_url":"","arch":"ppc64","predecessor_ids":[],"product_class":"SLE-M-T","online_predecessor_ids":[],"repositories":[{"description":"SLES11-SP3-SUSE-Manager-Tools for sle-11-ppc64","installer_updates":false,"name":"SLES11-SP3-SUSE-Manager-Tools","url":"https://updates.suse.com/repo/$RCE/SLES11-SP3-SUSE-Manager-Tools/sle-11-ppc64/","distro_target":"sle-11-ppc64","autorefresh":true,"id":1574,"enabled":true}],"product_type":"base","cpe":"cpe:/a:suse:sle-clienttools:11:sp3"},{"version":"11.3","recommended":false,"migration_extra":false,"friendly_name":"SUSE Manager Client Tools for SLE 11 SP3 s390x","release_type":null,"former_identifier":"sle-clienttools","name":"SUSE Manager Client Tools for SLE","offline_predecessor_ids":[],"friendly_version":"11 SP3","id":1702,"release_stage":"released","identifier":"sle-clienttools","extensions":[],"shortname":"Manager-Tools","description":"SUSE Manager Client Tools for SLE 11 SP3","free":false,"arch":"s390x","eula_url":"","repositories":[{"name":"SLES11-SP3-SUSE-Manager-Tools","installer_updates":false,"description":"SLES11-SP3-SUSE-Manager-Tools for sle-11-s390x","id":1473,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP3-SUSE-Manager-Tools/sle-11-s390x/","autorefresh":true,"distro_target":"sle-11-s390x"}],"online_predecessor_ids":[],"product_class":"SLE-M-T","predecessor_ids":[],"cpe":"cpe:/a:suse:sle-clienttools:11:sp3","product_type":"base"},{"predecessor_ids":[],"product_class":"SLE-M-T","online_predecessor_ids":[],"repositories":[{"name":"SLES11-SP3-SUSE-Manager-Tools","installer_updates":false,"description":"SLES11-SP3-SUSE-Manager-Tools for sle-11-x86_64","enabled":true,"id":1208,"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLES11-SP3-SUSE-Manager-Tools/sle-11-x86_64/"}],"cpe":"cpe:/a:suse:sle-clienttools:11:sp3","product_type":"base","description":"SUSE Manager Client Tools for SLE 11 SP3","shortname":"Manager-Tools","free":false,"eula_url":"","arch":"x86_64","friendly_version":"11 SP3","extensions":[],"id":1703,"release_stage":"released","identifier":"sle-clienttools","recommended":false,"version":"11.3","name":"SUSE Manager Client Tools for SLE","offline_predecessor_ids":[],"friendly_name":"SUSE Manager Client Tools for SLE 11 SP3 x86_64","migration_extra":false,"release_type":null,"former_identifier":"sle-clienttools"},{"arch":"i586","eula_url":"","free":false,"shortname":"Manager-Tools","description":"SUSE Manager Client Tools for SLE 11 SP4","product_type":"base","cpe":"cpe:/a:suse:sle-clienttools:11:sp4","repositories":[{"enabled":true,"id":1841,"distro_target":"sle-11-i586","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP4-SUSE-Manager-Tools/sle-11-i586/","installer_updates":false,"name":"SLES11-SP4-SUSE-Manager-Tools","description":"SLES11-SP4-SUSE-Manager-Tools for sle-11-i586"}],"online_predecessor_ids":[],"product_class":"SLE-M-T","predecessor_ids":[],"release_type":null,"former_identifier":"sle-clienttools","migration_extra":false,"friendly_name":"SUSE Manager Client Tools for SLE 11 SP4 i586","offline_predecessor_ids":[],"name":"SUSE Manager Client Tools for SLE","version":"11.4","recommended":false,"id":1704,"release_stage":"released","identifier":"sle-clienttools","extensions":[],"friendly_version":"11 SP4"},{"arch":"ia64","eula_url":"","free":false,"description":"SUSE Manager Client Tools for SLE 11 SP4","shortname":"Manager-Tools","product_type":"base","cpe":"cpe:/a:suse:sle-clienttools:11:sp4","product_class":"SLE-M-T","online_predecessor_ids":[],"repositories":[{"url":"https://updates.suse.com/repo/$RCE/SLES11-SP4-SUSE-Manager-Tools/sle-11-ia64/","autorefresh":true,"distro_target":"sle-11-ia64","id":1844,"enabled":true,"description":"SLES11-SP4-SUSE-Manager-Tools for sle-11-ia64","name":"SLES11-SP4-SUSE-Manager-Tools","installer_updates":false}],"predecessor_ids":[],"release_type":null,"former_identifier":"sle-clienttools","friendly_name":"SUSE Manager Client Tools for SLE 11 SP4 ia64","migration_extra":false,"offline_predecessor_ids":[],"name":"SUSE Manager Client Tools for SLE","version":"11.4","recommended":false,"id":1705,"release_stage":"released","identifier":"sle-clienttools","extensions":[],"friendly_version":"11 SP4"},{"eula_url":"","arch":"ppc64","shortname":"Manager-Tools","description":"SUSE Manager Client Tools for SLE 11 SP4","free":false,"cpe":"cpe:/a:suse:sle-clienttools:11:sp4","product_type":"base","predecessor_ids":[],"online_predecessor_ids":[],"product_class":"SLE-M-T","repositories":[{"id":1843,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP4-SUSE-Manager-Tools/sle-11-ppc64/","autorefresh":true,"distro_target":"sle-11-ppc64","name":"SLES11-SP4-SUSE-Manager-Tools","installer_updates":false,"description":"SLES11-SP4-SUSE-Manager-Tools for sle-11-ppc64"}],"name":"SUSE Manager Client Tools for SLE","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"SUSE Manager Client Tools for SLE 11 SP4 ppc64","former_identifier":"sle-clienttools","release_type":null,"recommended":false,"version":"11.4","extensions":[],"release_stage":"released","identifier":"sle-clienttools","id":1706,"friendly_version":"11 SP4"},{"release_stage":"released","identifier":"sle-clienttools","id":1707,"extensions":[],"friendly_version":"11 SP4","migration_extra":false,"friendly_name":"SUSE Manager Client Tools for SLE 11 SP4 s390x","release_type":null,"former_identifier":"sle-clienttools","name":"SUSE Manager Client Tools for SLE","offline_predecessor_ids":[],"version":"11.4","recommended":false,"cpe":"cpe:/a:suse:sle-clienttools:11:sp4","product_type":"base","online_predecessor_ids":[],"product_class":"SLE-M-T","repositories":[{"url":"https://updates.suse.com/repo/$RCE/SLES11-SP4-SUSE-Manager-Tools/sle-11-s390x/","distro_target":"sle-11-s390x","autorefresh":true,"id":1845,"enabled":true,"description":"SLES11-SP4-SUSE-Manager-Tools for sle-11-s390x","installer_updates":false,"name":"SLES11-SP4-SUSE-Manager-Tools"}],"predecessor_ids":[],"arch":"s390x","eula_url":"","shortname":"Manager-Tools","description":"SUSE Manager Client Tools for SLE 11 SP4","free":false},{"recommended":false,"version":"11.4","offline_predecessor_ids":[],"name":"SUSE Manager Client Tools for SLE","former_identifier":"sle-clienttools","release_type":null,"migration_extra":false,"friendly_name":"SUSE Manager Client Tools for SLE 11 SP4 x86_64","friendly_version":"11 SP4","extensions":[],"release_stage":"released","identifier":"sle-clienttools","id":1708,"free":false,"shortname":"Manager-Tools","description":"SUSE Manager Client Tools for SLE 11 SP4","eula_url":"","arch":"x86_64","predecessor_ids":[],"product_class":"SLE-M-T","online_predecessor_ids":[],"repositories":[{"description":"SLES11-SP4-SUSE-Manager-Tools for sle-11-x86_64","installer_updates":false,"name":"SLES11-SP4-SUSE-Manager-Tools","url":"https://updates.suse.com/repo/$RCE/SLES11-SP4-SUSE-Manager-Tools/sle-11-x86_64/","distro_target":"sle-11-x86_64","autorefresh":true,"id":1842,"enabled":true}],"product_type":"base","cpe":"cpe:/a:suse:sle-clienttools:11:sp4"},{"eula_url":"","arch":"aarch64","free":false,"shortname":"Manager-Tools","description":"SUSE Manager Tools provide packages required to connect to a SUSE Manager Server.","product_type":"extension","cpe":"cpe:/o:suse:sle-manager-tools:15","predecessor_ids":[],"online_predecessor_ids":[],"repositories":[{"description":"SLE-Manager-Tools15-Updates for sle-15-aarch64","installer_updates":false,"name":"SLE-Manager-Tools15-Updates","url":"https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/15/aarch64/update/","distro_target":"sle-15-aarch64","autorefresh":true,"id":2917,"enabled":true},{"installer_updates":false,"name":"SLE-Manager-Tools15-Debuginfo-Updates","description":"SLE-Manager-Tools15-Debuginfo-Updates for sle-15-aarch64","id":2918,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/15/aarch64/update_debug/","distro_target":"sle-15-aarch64","autorefresh":true},{"description":"SLE-Manager-Tools15-Pool for sle-15-aarch64","name":"SLE-Manager-Tools15-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/15/aarch64/product/","autorefresh":false,"distro_target":"sle-15-aarch64","id":2919,"enabled":true},{"url":"https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/15/aarch64/product_debug/","distro_target":"sle-15-aarch64","autorefresh":false,"id":2920,"enabled":false,"description":"SLE-Manager-Tools15-Debuginfo-Pool for sle-15-aarch64","installer_updates":false,"name":"SLE-Manager-Tools15-Debuginfo-Pool"},{"installer_updates":false,"name":"SLE-Manager-Tools15-Source-Pool","description":"SLE-Manager-Tools15-Source-Pool for sle-15-aarch64","enabled":false,"id":2921,"distro_target":"sle-15-aarch64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/15/aarch64/product_source/"}],"product_class":"SLE-M-T","offline_predecessor_ids":[],"name":"SUSE Manager Client Tools for SLE","former_identifier":"sle-manager-tools","release_type":null,"migration_extra":false,"friendly_name":"SUSE Manager Client Tools for SLE 15 aarch64","recommended":false,"version":"15","extensions":[],"release_stage":"released","identifier":"sle-manager-tools","id":1709,"friendly_version":"15"},{"online_predecessor_ids":[],"repositories":[{"enabled":true,"id":2922,"autorefresh":true,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/15/ppc64le/update/","name":"SLE-Manager-Tools15-Updates","installer_updates":false,"description":"SLE-Manager-Tools15-Updates for sle-15-ppc64le"},{"url":"https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/15/ppc64le/update_debug/","distro_target":"sle-15-ppc64le","autorefresh":true,"id":2923,"enabled":false,"description":"SLE-Manager-Tools15-Debuginfo-Updates for sle-15-ppc64le","installer_updates":false,"name":"SLE-Manager-Tools15-Debuginfo-Updates"},{"autorefresh":false,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/15/ppc64le/product/","enabled":true,"id":2924,"description":"SLE-Manager-Tools15-Pool for sle-15-ppc64le","name":"SLE-Manager-Tools15-Pool","installer_updates":false},{"description":"SLE-Manager-Tools15-Debuginfo-Pool for sle-15-ppc64le","name":"SLE-Manager-Tools15-Debuginfo-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/15/ppc64le/product_debug/","enabled":false,"id":2925},{"name":"SLE-Manager-Tools15-Source-Pool","installer_updates":false,"description":"SLE-Manager-Tools15-Source-Pool for sle-15-ppc64le","enabled":false,"id":2926,"autorefresh":false,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/15/ppc64le/product_source/"}],"product_class":"SLE-M-T","predecessor_ids":[],"product_type":"extension","cpe":"cpe:/o:suse:sle-manager-tools:15","free":false,"description":"SUSE Manager Tools provide packages required to connect to a SUSE Manager Server.","shortname":"Manager-Tools","arch":"ppc64le","eula_url":"","friendly_version":"15","id":1710,"release_stage":"released","identifier":"sle-manager-tools","extensions":[],"version":"15","recommended":false,"former_identifier":"sle-manager-tools","release_type":null,"friendly_name":"SUSE Manager Client Tools for SLE 15 ppc64le","migration_extra":false,"offline_predecessor_ids":[],"name":"SUSE Manager Client Tools for SLE"},{"description":"SUSE Manager Tools provide packages required to connect to a SUSE Manager Server.","shortname":"Manager-Tools","free":false,"eula_url":"","arch":"s390x","predecessor_ids":[],"online_predecessor_ids":[],"repositories":[{"url":"https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/15/s390x/update/","distro_target":"sle-15-s390x","autorefresh":true,"id":2927,"enabled":true,"description":"SLE-Manager-Tools15-Updates for sle-15-s390x","installer_updates":false,"name":"SLE-Manager-Tools15-Updates"},{"url":"https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/15/s390x/update_debug/","distro_target":"sle-15-s390x","autorefresh":true,"id":2928,"enabled":false,"description":"SLE-Manager-Tools15-Debuginfo-Updates for sle-15-s390x","installer_updates":false,"name":"SLE-Manager-Tools15-Debuginfo-Updates"},{"description":"SLE-Manager-Tools15-Pool for sle-15-s390x","name":"SLE-Manager-Tools15-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/15/s390x/product/","autorefresh":false,"distro_target":"sle-15-s390x","id":2929,"enabled":true},{"autorefresh":false,"distro_target":"sle-15-s390x","url":"https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/15/s390x/product_debug/","enabled":false,"id":2930,"description":"SLE-Manager-Tools15-Debuginfo-Pool for sle-15-s390x","name":"SLE-Manager-Tools15-Debuginfo-Pool","installer_updates":false},{"autorefresh":false,"distro_target":"sle-15-s390x","url":"https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/15/s390x/product_source/","enabled":false,"id":2931,"description":"SLE-Manager-Tools15-Source-Pool for sle-15-s390x","name":"SLE-Manager-Tools15-Source-Pool","installer_updates":false}],"product_class":"SLE-M-T","cpe":"cpe:/o:suse:sle-manager-tools:15","product_type":"extension","recommended":false,"version":"15","name":"SUSE Manager Client Tools for SLE","offline_predecessor_ids":[],"friendly_name":"SUSE Manager Client Tools for SLE 15 s390x","migration_extra":false,"former_identifier":"sle-manager-tools","release_type":null,"friendly_version":"15","extensions":[],"release_stage":"released","id":1711,"identifier":"sle-manager-tools"},{"product_type":"extension","cpe":"cpe:/o:suse:sle-manager-tools:15","predecessor_ids":[],"online_predecessor_ids":[],"repositories":[{"enabled":true,"id":2932,"distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/15/x86_64/update/","installer_updates":false,"name":"SLE-Manager-Tools15-Updates","description":"SLE-Manager-Tools15-Updates for sle-15-x86_64"},{"name":"SLE-Manager-Tools15-Debuginfo-Updates","installer_updates":false,"description":"SLE-Manager-Tools15-Debuginfo-Updates for sle-15-x86_64","enabled":false,"id":2933,"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/15/x86_64/update_debug/"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/15/x86_64/product/","autorefresh":false,"distro_target":"sle-15-x86_64","id":2934,"enabled":true,"description":"SLE-Manager-Tools15-Pool for sle-15-x86_64","name":"SLE-Manager-Tools15-Pool","installer_updates":false},{"installer_updates":false,"name":"SLE-Manager-Tools15-Debuginfo-Pool","description":"SLE-Manager-Tools15-Debuginfo-Pool for sle-15-x86_64","enabled":false,"id":2935,"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/15/x86_64/product_debug/"},{"enabled":false,"id":2936,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/15/x86_64/product_source/","name":"SLE-Manager-Tools15-Source-Pool","installer_updates":false,"description":"SLE-Manager-Tools15-Source-Pool for sle-15-x86_64"}],"product_class":"SLE-M-T","eula_url":"","arch":"x86_64","free":false,"description":"SUSE Manager Tools provide packages required to connect to a SUSE Manager Server.","shortname":"Manager-Tools","extensions":[],"identifier":"sle-manager-tools","release_stage":"released","id":1712,"friendly_version":"15","offline_predecessor_ids":[],"name":"SUSE Manager Client Tools for SLE","release_type":null,"former_identifier":"sle-manager-tools","migration_extra":false,"friendly_name":"SUSE Manager Client Tools for SLE 15 x86_64","recommended":false,"version":"15"},{"free":false,"description":"SUSE Container as a Service Platform combines the benefits of an enterprise ready OS with the agility of a fast development containers orchestration platform. It is a modern Linux Operating System, designed for containers and optimized for large, clustered deployments. It inherits the benefits of SUSE Linux Enterprise Server while redefining the operating system into a small, efficient and reliable distribution.","shortname":"SUSE CaaS Platform 3.0","eula_url":"https://updates.suse.com/SUSE/Products/SUSE-CAASP/3.0/x86_64/product.license/","arch":"x86_64","predecessor_ids":[1607],"repositories":[{"url":"https://updates.suse.com/SUSE/Updates/SUSE-CAASP/3.0/x86_64/update/","autorefresh":true,"distro_target":"sle-12-x86_64","id":3144,"enabled":true,"description":"SUSE-CAASP-3.0-Updates for sle-12-x86_64","name":"SUSE-CAASP-3.0-Updates","installer_updates":false},{"distro_target":"sle-12-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SUSE-CAASP/3.0/x86_64/update_debug/","enabled":false,"id":3145,"description":"SUSE-CAASP-3.0-Debuginfo-Updates for sle-12-x86_64","installer_updates":false,"name":"SUSE-CAASP-3.0-Debuginfo-Updates"},{"description":"SUSE-CAASP-3.0-Pool for sle-12-x86_64","installer_updates":false,"name":"SUSE-CAASP-3.0-Pool","distro_target":"sle-12-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SUSE-CAASP/3.0/x86_64/product/","enabled":true,"id":3146},{"description":"SUSE-CAASP-3.0-Debuginfo-Pool for sle-12-x86_64","name":"SUSE-CAASP-3.0-Debuginfo-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Products/SUSE-CAASP/3.0/x86_64/product_debug/","enabled":false,"id":3147},{"id":3148,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SUSE-CAASP/3.0/x86_64/product_source/","distro_target":"sle-12-x86_64","autorefresh":false,"installer_updates":false,"name":"SUSE-CAASP-3.0-Source-Pool","description":"SUSE-CAASP-3.0-Source-Pool for sle-12-x86_64"}],"online_predecessor_ids":[1607],"product_class":"CAASP_X86","product_type":"base","cpe":"cpe:/o:suse:caasp:3.0","recommended":false,"version":"3.0","offline_predecessor_ids":[],"name":"SUSE CaaS Platform","release_type":null,"former_identifier":"CAASP","friendly_name":"SUSE CaaS Platform 3.0 x86_64","migration_extra":false,"friendly_version":"3.0","extensions":[{"former_identifier":"caasp-toolchain","release_type":null,"friendly_name":"SUSE CaaS Platform Toolchain 3.0 x86_64","migration_extra":false,"offline_predecessor_ids":[],"name":"SUSE CaaS Platform Toolchain","version":"3.0","recommended":false,"identifier":"caasp-toolchain","release_stage":"released","id":1752,"extensions":[],"friendly_version":"3.0","arch":"x86_64","eula_url":"","free":true,"shortname":"CaaSP-Toolchain","description":"Packages to compile kernel modules and debug applications on SUSE CaaS Platform.","product_type":"extension","cpe":"cpe:/o:suse:caasp-toolchain:3.0","online_predecessor_ids":[],"product_class":"MODULE","repositories":[{"url":"https://updates.suse.com/SUSE/Updates/SUSE-CaaSP-Toolchain/3/x86_64/update/","distro_target":"sle-12-x86_64","autorefresh":true,"id":3132,"enabled":true,"description":"SUSE-CAASP-Toolchain-3-Updates for sle-12-x86_64","installer_updates":false,"name":"SUSE-CAASP-Toolchain-3-Updates"},{"distro_target":"sle-12-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SUSE-CaaSP-Toolchain/3/x86_64/update_debug/","enabled":false,"id":3133,"description":"SUSE-CAASP-Toolchain-3-Debuginfo-Updates for sle-12-x86_64","installer_updates":false,"name":"SUSE-CAASP-Toolchain-3-Debuginfo-Updates"},{"description":"SUSE-CAASP-Toolchain-3-Pool for sle-12-x86_64","installer_updates":false,"name":"SUSE-CAASP-Toolchain-3-Pool","distro_target":"sle-12-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SUSE-CaaSP-Toolchain/3/x86_64/product/","enabled":true,"id":3134},{"installer_updates":false,"name":"SUSE-CAASP-Toolchain-3-Debuginfo-Pool","description":"SUSE-CAASP-Toolchain-3-Debuginfo-Pool for sle-12-x86_64","id":3135,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SUSE-CaaSP-Toolchain/3/x86_64/product_debug/","distro_target":"sle-12-x86_64","autorefresh":false},{"name":"SUSE-CAASP-Toolchain-3-Source-Pool","installer_updates":false,"description":"SUSE-CAASP-Toolchain-3-Source-Pool for sle-12-x86_64","id":3136,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SUSE-CaaSP-Toolchain/3/x86_64/product_source/","autorefresh":false,"distro_target":"sle-12-x86_64"}],"predecessor_ids":[]}],"id":1713,"release_stage":"released","identifier":"CAASP"},{"product_type":"extension","cpe":"cpe:/o:suse:sle-obs-deps:12:sp3","product_class":"7261","online_predecessor_ids":[],"repositories":[{"installer_updates":false,"name":"SLE-OBS-Deps12-SP3-Updates","description":"SLE-OBS-Deps12-SP3-Updates for sle-12-aarch64","id":2937,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-OBS-Deps/12-SP3/aarch64/update/","distro_target":"sle-12-aarch64","autorefresh":true},{"name":"SLE-OBS-Deps12-SP3-Debuginfo-Updates","installer_updates":false,"description":"SLE-OBS-Deps12-SP3-Debuginfo-Updates for sle-12-aarch64","id":2938,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-OBS-Deps/12-SP3/aarch64/update_debug/","autorefresh":true,"distro_target":"sle-12-aarch64"},{"id":2939,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-OBS-Deps/12-SP3/aarch64/product/","distro_target":"sle-12-aarch64","autorefresh":false,"installer_updates":false,"name":"SLE-OBS-Deps12-SP3-Pool","description":"SLE-OBS-Deps12-SP3-Pool for sle-12-aarch64"},{"description":"SLE-OBS-Deps12-SP3-Debuginfo-Pool for sle-12-aarch64","installer_updates":false,"name":"SLE-OBS-Deps12-SP3-Debuginfo-Pool","distro_target":"sle-12-aarch64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-OBS-Deps/12-SP3/aarch64/product_debug/","enabled":false,"id":2940},{"installer_updates":false,"name":"SLE-OBS-Deps12-SP3-Source-Pool","description":"SLE-OBS-Deps12-SP3-Source-Pool for sle-12-aarch64","enabled":false,"id":2941,"distro_target":"sle-12-aarch64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-OBS-Deps/12-SP3/aarch64/product_source/"}],"predecessor_ids":[],"arch":"aarch64","eula_url":"","free":false,"shortname":"OBS-Deps12-SP3","description":"

This kit is needed to build packages and esp. kiwi appliances in OpenBuildService

","release_stage":"released","id":1714,"identifier":"sle-obs-deps","extensions":[],"friendly_version":"12 SP3","release_type":null,"former_identifier":"sle-obs-deps","migration_extra":false,"friendly_name":"SUSE Linux Enterprise Software Development Kit for OBS 12 SP3 aarch64","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Software Development Kit for OBS","version":"12.3","recommended":false},{"friendly_version":"12 SP3","extensions":[],"id":1715,"release_stage":"released","identifier":"sle-obs-deps","recommended":false,"version":"12.3","name":"SUSE Linux Enterprise Software Development Kit for OBS","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Software Development Kit for OBS 12 SP3 ppc64le","former_identifier":"sle-obs-deps","release_type":null,"predecessor_ids":[],"product_class":"7261","online_predecessor_ids":[],"repositories":[{"name":"SLE-OBS-Deps12-SP3-Updates","installer_updates":false,"description":"SLE-OBS-Deps12-SP3-Updates for sle-12-ppc64le","id":2942,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-OBS-Deps/12-SP3/ppc64le/update/","autorefresh":true,"distro_target":"sle-12-ppc64le"},{"description":"SLE-OBS-Deps12-SP3-Debuginfo-Updates for sle-12-ppc64le","name":"SLE-OBS-Deps12-SP3-Debuginfo-Updates","installer_updates":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-OBS-Deps/12-SP3/ppc64le/update_debug/","autorefresh":true,"distro_target":"sle-12-ppc64le","id":2943,"enabled":false},{"id":2944,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-OBS-Deps/12-SP3/ppc64le/product/","distro_target":"sle-12-ppc64le","autorefresh":false,"installer_updates":false,"name":"SLE-OBS-Deps12-SP3-Pool","description":"SLE-OBS-Deps12-SP3-Pool for sle-12-ppc64le"},{"enabled":false,"id":2945,"autorefresh":false,"distro_target":"sle-12-ppc64le","url":"https://updates.suse.com/SUSE/Products/SLE-OBS-Deps/12-SP3/ppc64le/product_debug/","name":"SLE-OBS-Deps12-SP3-Debuginfo-Pool","installer_updates":false,"description":"SLE-OBS-Deps12-SP3-Debuginfo-Pool for sle-12-ppc64le"},{"id":2946,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-OBS-Deps/12-SP3/ppc64le/product_source/","distro_target":"sle-12-ppc64le","autorefresh":false,"installer_updates":false,"name":"SLE-OBS-Deps12-SP3-Source-Pool","description":"SLE-OBS-Deps12-SP3-Source-Pool for sle-12-ppc64le"}],"cpe":"cpe:/o:suse:sle-obs-deps:12:sp3","product_type":"extension","shortname":"OBS-Deps12-SP3","description":"

This kit is needed to build packages and esp. kiwi appliances in OpenBuildService

","free":false,"eula_url":"","arch":"ppc64le"},{"eula_url":"","arch":"s390x","shortname":"OBS-Deps12-SP3","description":"

This kit is needed to build packages and esp. kiwi appliances in OpenBuildService

","free":false,"cpe":"cpe:/o:suse:sle-obs-deps:12:sp3","product_type":"extension","predecessor_ids":[],"online_predecessor_ids":[],"product_class":"7261","repositories":[{"id":2947,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-OBS-Deps/12-SP3/s390x/update/","autorefresh":true,"distro_target":"sle-12-s390x","name":"SLE-OBS-Deps12-SP3-Updates","installer_updates":false,"description":"SLE-OBS-Deps12-SP3-Updates for sle-12-s390x"},{"description":"SLE-OBS-Deps12-SP3-Debuginfo-Updates for sle-12-s390x","name":"SLE-OBS-Deps12-SP3-Debuginfo-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-12-s390x","url":"https://updates.suse.com/SUSE/Updates/SLE-OBS-Deps/12-SP3/s390x/update_debug/","enabled":false,"id":2948},{"name":"SLE-OBS-Deps12-SP3-Pool","installer_updates":false,"description":"SLE-OBS-Deps12-SP3-Pool for sle-12-s390x","id":2949,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-OBS-Deps/12-SP3/s390x/product/","autorefresh":false,"distro_target":"sle-12-s390x"},{"description":"SLE-OBS-Deps12-SP3-Debuginfo-Pool for sle-12-s390x","name":"SLE-OBS-Deps12-SP3-Debuginfo-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-OBS-Deps/12-SP3/s390x/product_debug/","autorefresh":false,"distro_target":"sle-12-s390x","id":2950,"enabled":false},{"autorefresh":false,"distro_target":"sle-12-s390x","url":"https://updates.suse.com/SUSE/Products/SLE-OBS-Deps/12-SP3/s390x/product_source/","enabled":false,"id":2951,"description":"SLE-OBS-Deps12-SP3-Source-Pool for sle-12-s390x","name":"SLE-OBS-Deps12-SP3-Source-Pool","installer_updates":false}],"name":"SUSE Linux Enterprise Software Development Kit for OBS","offline_predecessor_ids":[],"friendly_name":"SUSE Linux Enterprise Software Development Kit for OBS 12 SP3 s390x","migration_extra":false,"former_identifier":"sle-obs-deps","release_type":null,"recommended":false,"version":"12.3","extensions":[],"release_stage":"released","id":1716,"identifier":"sle-obs-deps","friendly_version":"12 SP3"},{"arch":"x86_64","eula_url":"","free":false,"shortname":"OBS-Deps12-SP3","description":"

This kit is needed to build packages and esp. kiwi appliances in OpenBuildService

","product_type":"extension","cpe":"cpe:/o:suse:sle-obs-deps:12:sp3","product_class":"7261","online_predecessor_ids":[],"repositories":[{"description":"SLE-OBS-Deps12-SP3-Updates for sle-12-x86_64","name":"SLE-OBS-Deps12-SP3-Updates","installer_updates":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-OBS-Deps/12-SP3/x86_64/update/","autorefresh":true,"distro_target":"sle-12-x86_64","id":2952,"enabled":true},{"url":"https://updates.suse.com/SUSE/Updates/SLE-OBS-Deps/12-SP3/x86_64/update_debug/","distro_target":"sle-12-x86_64","autorefresh":true,"id":2953,"enabled":false,"description":"SLE-OBS-Deps12-SP3-Debuginfo-Updates for sle-12-x86_64","installer_updates":false,"name":"SLE-OBS-Deps12-SP3-Debuginfo-Updates"},{"url":"https://updates.suse.com/SUSE/Products/SLE-OBS-Deps/12-SP3/x86_64/product/","distro_target":"sle-12-x86_64","autorefresh":false,"id":2954,"enabled":true,"description":"SLE-OBS-Deps12-SP3-Pool for sle-12-x86_64","installer_updates":false,"name":"SLE-OBS-Deps12-SP3-Pool"},{"description":"SLE-OBS-Deps12-SP3-Debuginfo-Pool for sle-12-x86_64","installer_updates":false,"name":"SLE-OBS-Deps12-SP3-Debuginfo-Pool","distro_target":"sle-12-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-OBS-Deps/12-SP3/x86_64/product_debug/","enabled":false,"id":2955},{"id":2956,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-OBS-Deps/12-SP3/x86_64/product_source/","autorefresh":false,"distro_target":"sle-12-x86_64","name":"SLE-OBS-Deps12-SP3-Source-Pool","installer_updates":false,"description":"SLE-OBS-Deps12-SP3-Source-Pool for sle-12-x86_64"}],"predecessor_ids":[],"former_identifier":"sle-obs-deps","release_type":null,"friendly_name":"SUSE Linux Enterprise Software Development Kit for OBS 12 SP3 x86_64","migration_extra":false,"offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Software Development Kit for OBS","version":"12.3","recommended":false,"id":1717,"release_stage":"released","identifier":"sle-obs-deps","extensions":[],"friendly_version":"12 SP3"},{"arch":"aarch64","eula_url":"","description":"

The SUSE Linux Enterprise Web and Scripting Module should contains additional packages that are helpful when running a webserver.

Access to the Web and Scripting Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself: Package versions in this module are usually supported for at most three years. We are planning to release more recent versions on a schedule of approximately 18 month; the exact dates may differ per package.

","shortname":"Web-Scripting-Module","free":true,"cpe":"cpe:/o:suse:sle-module-web-scripting:15","product_type":"module","online_predecessor_ids":[],"product_class":"MODULE","repositories":[{"distro_target":"sle-15-aarch64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/15/aarch64/update/","enabled":true,"id":2957,"description":"SLE-Module-Web-Scripting15-Updates for sle-15-aarch64","installer_updates":false,"name":"SLE-Module-Web-Scripting15-Updates"},{"distro_target":"sle-15-aarch64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/15/aarch64/update_debug/","enabled":false,"id":2958,"description":"SLE-Module-Web-Scripting15-Debuginfo-Updates for sle-15-aarch64","installer_updates":false,"name":"SLE-Module-Web-Scripting15-Debuginfo-Updates"},{"id":2959,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15/aarch64/product/","distro_target":"sle-15-aarch64","autorefresh":false,"installer_updates":false,"name":"SLE-Module-Web-Scripting15-Pool","description":"SLE-Module-Web-Scripting15-Pool for sle-15-aarch64"},{"name":"SLE-Module-Web-Scripting15-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-Web-Scripting15-Debuginfo-Pool for sle-15-aarch64","enabled":false,"id":2960,"autorefresh":false,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15/aarch64/product_debug/"},{"description":"SLE-Module-Web-Scripting15-Source-Pool for sle-15-aarch64","name":"SLE-Module-Web-Scripting15-Source-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15/aarch64/product_source/","enabled":false,"id":2961}],"predecessor_ids":[],"migration_extra":false,"friendly_name":"Web and Scripting Module 15 aarch64","release_type":null,"former_identifier":"sle-module-web-scripting","name":"Web and Scripting Module","offline_predecessor_ids":[1539],"version":"15","recommended":false,"id":1718,"release_stage":"released","identifier":"sle-module-web-scripting","extensions":[],"friendly_version":"15"},{"friendly_version":"15","release_stage":"released","id":1719,"identifier":"sle-module-web-scripting","extensions":[],"version":"15","recommended":false,"former_identifier":"sle-module-web-scripting","release_type":null,"migration_extra":false,"friendly_name":"Web and Scripting Module 15 ppc64le","offline_predecessor_ids":[1151],"name":"Web and Scripting Module","online_predecessor_ids":[],"repositories":[{"installer_updates":false,"name":"SLE-Module-Web-Scripting15-Updates","description":"SLE-Module-Web-Scripting15-Updates for sle-15-ppc64le","enabled":true,"id":2962,"distro_target":"sle-15-ppc64le","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/15/ppc64le/update/"},{"name":"SLE-Module-Web-Scripting15-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-Web-Scripting15-Debuginfo-Updates for sle-15-ppc64le","enabled":false,"id":2963,"autorefresh":true,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/15/ppc64le/update_debug/"},{"id":2964,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15/ppc64le/product/","distro_target":"sle-15-ppc64le","autorefresh":false,"installer_updates":false,"name":"SLE-Module-Web-Scripting15-Pool","description":"SLE-Module-Web-Scripting15-Pool for sle-15-ppc64le"},{"installer_updates":false,"name":"SLE-Module-Web-Scripting15-Debuginfo-Pool","description":"SLE-Module-Web-Scripting15-Debuginfo-Pool for sle-15-ppc64le","id":2965,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15/ppc64le/product_debug/","distro_target":"sle-15-ppc64le","autorefresh":false},{"id":2966,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15/ppc64le/product_source/","distro_target":"sle-15-ppc64le","autorefresh":false,"installer_updates":false,"name":"SLE-Module-Web-Scripting15-Source-Pool","description":"SLE-Module-Web-Scripting15-Source-Pool for sle-15-ppc64le"}],"product_class":"MODULE","predecessor_ids":[],"product_type":"module","cpe":"cpe:/o:suse:sle-module-web-scripting:15","free":true,"shortname":"Web-Scripting-Module","description":"

The SUSE Linux Enterprise Web and Scripting Module should contains additional packages that are helpful when running a webserver.

Access to the Web and Scripting Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself: Package versions in this module are usually supported for at most three years. We are planning to release more recent versions on a schedule of approximately 18 month; the exact dates may differ per package.

","arch":"ppc64le","eula_url":""},{"migration_extra":false,"friendly_name":"Web and Scripting Module 15 s390x","former_identifier":"sle-module-web-scripting","release_type":null,"name":"Web and Scripting Module","offline_predecessor_ids":[1152],"version":"15","recommended":false,"identifier":"sle-module-web-scripting","release_stage":"released","id":1720,"extensions":[],"friendly_version":"15","arch":"s390x","eula_url":"","description":"

The SUSE Linux Enterprise Web and Scripting Module should contains additional packages that are helpful when running a webserver.

Access to the Web and Scripting Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself: Package versions in this module are usually supported for at most three years. We are planning to release more recent versions on a schedule of approximately 18 month; the exact dates may differ per package.

","shortname":"Web-Scripting-Module","free":true,"cpe":"cpe:/o:suse:sle-module-web-scripting:15","product_type":"module","online_predecessor_ids":[],"product_class":"MODULE","repositories":[{"installer_updates":false,"name":"SLE-Module-Web-Scripting15-Updates","description":"SLE-Module-Web-Scripting15-Updates for sle-15-s390x","enabled":true,"id":2967,"distro_target":"sle-15-s390x","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/15/s390x/update/"},{"description":"SLE-Module-Web-Scripting15-Debuginfo-Updates for sle-15-s390x","installer_updates":false,"name":"SLE-Module-Web-Scripting15-Debuginfo-Updates","distro_target":"sle-15-s390x","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/15/s390x/update_debug/","enabled":false,"id":2968},{"installer_updates":false,"name":"SLE-Module-Web-Scripting15-Pool","description":"SLE-Module-Web-Scripting15-Pool for sle-15-s390x","enabled":true,"id":2969,"distro_target":"sle-15-s390x","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15/s390x/product/"},{"autorefresh":false,"distro_target":"sle-15-s390x","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15/s390x/product_debug/","enabled":false,"id":2970,"description":"SLE-Module-Web-Scripting15-Debuginfo-Pool for sle-15-s390x","name":"SLE-Module-Web-Scripting15-Debuginfo-Pool","installer_updates":false},{"autorefresh":false,"distro_target":"sle-15-s390x","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15/s390x/product_source/","enabled":false,"id":2971,"description":"SLE-Module-Web-Scripting15-Source-Pool for sle-15-s390x","name":"SLE-Module-Web-Scripting15-Source-Pool","installer_updates":false}],"predecessor_ids":[]},{"friendly_version":"15","extensions":[],"release_stage":"released","identifier":"sle-module-web-scripting","id":1721,"recommended":false,"version":"15","offline_predecessor_ids":[1153],"name":"Web and Scripting Module","release_type":null,"former_identifier":"sle-module-web-scripting","friendly_name":"Web and Scripting Module 15 x86_64","migration_extra":false,"predecessor_ids":[],"repositories":[{"enabled":true,"id":2972,"distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/15/x86_64/update/","installer_updates":false,"name":"SLE-Module-Web-Scripting15-Updates","description":"SLE-Module-Web-Scripting15-Updates for sle-15-x86_64"},{"distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/15/x86_64/update_debug/","enabled":false,"id":2973,"description":"SLE-Module-Web-Scripting15-Debuginfo-Updates for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Web-Scripting15-Debuginfo-Updates"},{"name":"SLE-Module-Web-Scripting15-Pool","installer_updates":false,"description":"SLE-Module-Web-Scripting15-Pool for sle-15-x86_64","id":2974,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15/x86_64/product/","autorefresh":false,"distro_target":"sle-15-x86_64"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15/x86_64/product_debug/","distro_target":"sle-15-x86_64","autorefresh":false,"id":2975,"enabled":false,"description":"SLE-Module-Web-Scripting15-Debuginfo-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Web-Scripting15-Debuginfo-Pool"},{"enabled":false,"id":2976,"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15/x86_64/product_source/","installer_updates":false,"name":"SLE-Module-Web-Scripting15-Source-Pool","description":"SLE-Module-Web-Scripting15-Source-Pool for sle-15-x86_64"}],"online_predecessor_ids":[],"product_class":"MODULE","product_type":"module","cpe":"cpe:/o:suse:sle-module-web-scripting:15","free":true,"shortname":"Web-Scripting-Module","description":"

The SUSE Linux Enterprise Web and Scripting Module should contains additional packages that are helpful when running a webserver.

Access to the Web and Scripting Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself: Package versions in this module are usually supported for at most three years. We are planning to release more recent versions on a schedule of approximately 18 month; the exact dates may differ per package.

","eula_url":"","arch":"x86_64"},{"shortname":"SUSE Manager Server 3.2","description":"SUSE Manager lets you efficiently manage physical, virtual, and cloud-based Linux systems. It provides automated and cost-effective configuration and software management, asset management, and system provisioning.","free":false,"eula_url":"https://updates.suse.com/SUSE/Products/SUSE-Manager-Server/3.2/ppc64le/product.license/","arch":"ppc64le","predecessor_ids":[1622],"online_predecessor_ids":[1622],"product_class":"SMS-PPC","repositories":[{"enabled":true,"id":2977,"distro_target":"sle-12-ppc64le","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SUSE-Manager-Server/3.2/ppc64le/update/","installer_updates":false,"name":"SUSE-Manager-Server-3.2-Updates","description":"SUSE-Manager-Server-3.2-Updates for sle-12-ppc64le"},{"description":"SUSE-Manager-Server-3.2-Debuginfo-Updates for sle-12-ppc64le","name":"SUSE-Manager-Server-3.2-Debuginfo-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-12-ppc64le","url":"https://updates.suse.com/SUSE/Updates/SUSE-Manager-Server/3.2/ppc64le/update_debug/","enabled":false,"id":2978},{"id":2979,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SUSE-Manager-Server/3.2/ppc64le/product/","autorefresh":false,"distro_target":"sle-12-ppc64le","name":"SUSE-Manager-Server-3.2-Pool","installer_updates":false,"description":"SUSE-Manager-Server-3.2-Pool for sle-12-ppc64le"},{"id":2980,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SUSE-Manager-Server/3.2/ppc64le/product_debug/","autorefresh":false,"distro_target":"sle-12-ppc64le","name":"SUSE-Manager-Server-3.2-Debuginfo-Pool","installer_updates":false,"description":"SUSE-Manager-Server-3.2-Debuginfo-Pool for sle-12-ppc64le"},{"description":"SUSE-Manager-Server-3.2-Source-Pool for sle-12-ppc64le","name":"SUSE-Manager-Server-3.2-Source-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SUSE-Manager-Server/3.2/ppc64le/product_source/","autorefresh":false,"distro_target":"sle-12-ppc64le","id":2981,"enabled":false}],"cpe":"cpe:/o:suse:suse-manager-server:3.2","product_type":"extension","recommended":false,"version":"3.2","name":"SUSE Manager Server","offline_predecessor_ids":[],"friendly_name":"SUSE Manager Server 3.2 ppc64le","migration_extra":false,"former_identifier":"SUSE-Manager-Server","release_type":null,"friendly_version":"3.2","extensions":[],"id":1722,"release_stage":"released","identifier":"SUSE-Manager-Server"},{"friendly_version":"3.2","id":1723,"release_stage":"released","identifier":"SUSE-Manager-Server","extensions":[],"version":"3.2","recommended":false,"friendly_name":"SUSE Manager Server 3.2 s390x","migration_extra":false,"former_identifier":"SUSE-Manager-Server","release_type":null,"name":"SUSE Manager Server","offline_predecessor_ids":[],"repositories":[{"enabled":true,"id":2982,"autorefresh":true,"distro_target":"sle-12-s390x","url":"https://updates.suse.com/SUSE/Updates/SUSE-Manager-Server/3.2/s390x/update/","name":"SUSE-Manager-Server-3.2-Updates","installer_updates":false,"description":"SUSE-Manager-Server-3.2-Updates for sle-12-s390x"},{"installer_updates":false,"name":"SUSE-Manager-Server-3.2-Debuginfo-Updates","description":"SUSE-Manager-Server-3.2-Debuginfo-Updates for sle-12-s390x","enabled":false,"id":2983,"distro_target":"sle-12-s390x","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SUSE-Manager-Server/3.2/s390x/update_debug/"},{"installer_updates":false,"name":"SUSE-Manager-Server-3.2-Pool","description":"SUSE-Manager-Server-3.2-Pool for sle-12-s390x","enabled":true,"id":2984,"distro_target":"sle-12-s390x","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SUSE-Manager-Server/3.2/s390x/product/"},{"installer_updates":false,"name":"SUSE-Manager-Server-3.2-Debuginfo-Pool","description":"SUSE-Manager-Server-3.2-Debuginfo-Pool for sle-12-s390x","id":2985,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SUSE-Manager-Server/3.2/s390x/product_debug/","distro_target":"sle-12-s390x","autorefresh":false},{"description":"SUSE-Manager-Server-3.2-Source-Pool for sle-12-s390x","name":"SUSE-Manager-Server-3.2-Source-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SUSE-Manager-Server/3.2/s390x/product_source/","autorefresh":false,"distro_target":"sle-12-s390x","id":2986,"enabled":false}],"online_predecessor_ids":[1519],"product_class":"SMS-Z","predecessor_ids":[1519],"cpe":"cpe:/o:suse:suse-manager-server:3.2","product_type":"extension","description":"SUSE Manager lets you efficiently manage physical, virtual, and cloud-based Linux systems. It provides automated and cost-effective configuration and software management, asset management, and system provisioning.","shortname":"SUSE Manager Server 3.2","free":false,"arch":"s390x","eula_url":"https://updates.suse.com/SUSE/Products/SUSE-Manager-Server/3.2/s390x/product.license/"},{"eula_url":"https://updates.suse.com/SUSE/Products/SUSE-Manager-Server/3.2/x86_64/product.license/","arch":"x86_64","description":"SUSE Manager lets you efficiently manage physical, virtual, and cloud-based Linux systems. It provides automated and cost-effective configuration and software management, asset management, and system provisioning.","shortname":"SUSE Manager Server 3.2","free":false,"cpe":"cpe:/o:suse:suse-manager-server:3.2","product_type":"extension","predecessor_ids":[1518],"online_predecessor_ids":[1518],"repositories":[{"enabled":true,"id":2987,"autorefresh":true,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Updates/SUSE-Manager-Server/3.2/x86_64/update/","name":"SUSE-Manager-Server-3.2-Updates","installer_updates":false,"description":"SUSE-Manager-Server-3.2-Updates for sle-12-x86_64"},{"id":2988,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SUSE-Manager-Server/3.2/x86_64/update_debug/","distro_target":"sle-12-x86_64","autorefresh":true,"installer_updates":false,"name":"SUSE-Manager-Server-3.2-Debuginfo-Updates","description":"SUSE-Manager-Server-3.2-Debuginfo-Updates for sle-12-x86_64"},{"name":"SUSE-Manager-Server-3.2-Pool","installer_updates":false,"description":"SUSE-Manager-Server-3.2-Pool for sle-12-x86_64","id":2989,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SUSE-Manager-Server/3.2/x86_64/product/","autorefresh":false,"distro_target":"sle-12-x86_64"},{"description":"SUSE-Manager-Server-3.2-Debuginfo-Pool for sle-12-x86_64","name":"SUSE-Manager-Server-3.2-Debuginfo-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SUSE-Manager-Server/3.2/x86_64/product_debug/","autorefresh":false,"distro_target":"sle-12-x86_64","id":2990,"enabled":false},{"description":"SUSE-Manager-Server-3.2-Source-Pool for sle-12-x86_64","name":"SUSE-Manager-Server-3.2-Source-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Products/SUSE-Manager-Server/3.2/x86_64/product_source/","enabled":false,"id":2991}],"product_class":"SMS-X86","name":"SUSE Manager Server","offline_predecessor_ids":[],"friendly_name":"SUSE Manager Server 3.2 x86_64","migration_extra":false,"release_type":null,"former_identifier":"SUSE-Manager-Server","recommended":false,"version":"3.2","extensions":[],"identifier":"SUSE-Manager-Server","release_stage":"released","id":1724,"friendly_version":"3.2"},{"eula_url":"https://updates.suse.com/SUSE/Products/SUSE-Manager-Proxy/3.2/x86_64/product.license/","arch":"x86_64","shortname":"SUSE Manager Proxy 3.2","description":"SUSE Manager Proxies extend large and/or geographically dispersed SUSE Manager environments to reduce load on the SUSE Manager Server, lower bandwidth needs, and provide faster local updates.","free":false,"cpe":"cpe:/o:suse:suse-manager-proxy:3.2","product_type":"extension","predecessor_ids":[1520],"product_class":"SMP","online_predecessor_ids":[1520],"repositories":[{"id":2992,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SUSE-Manager-Proxy/3.2/x86_64/update/","autorefresh":true,"distro_target":"sle-12-x86_64","name":"SUSE-Manager-Proxy-3.2-Updates","installer_updates":false,"description":"SUSE-Manager-Proxy-3.2-Updates for sle-12-x86_64"},{"id":2993,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SUSE-Manager-Proxy/3.2/x86_64/update_debug/","autorefresh":true,"distro_target":"sle-12-x86_64","name":"SUSE-Manager-Proxy-3.2-Debuginfo-Updates","installer_updates":false,"description":"SUSE-Manager-Proxy-3.2-Debuginfo-Updates for sle-12-x86_64"},{"enabled":true,"id":2994,"distro_target":"sle-12-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SUSE-Manager-Proxy/3.2/x86_64/product/","installer_updates":false,"name":"SUSE-Manager-Proxy-3.2-Pool","description":"SUSE-Manager-Proxy-3.2-Pool for sle-12-x86_64"},{"description":"SUSE-Manager-Proxy-3.2-Debuginfo-Pool for sle-12-x86_64","name":"SUSE-Manager-Proxy-3.2-Debuginfo-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SUSE-Manager-Proxy/3.2/x86_64/product_debug/","autorefresh":false,"distro_target":"sle-12-x86_64","id":2995,"enabled":false},{"name":"SUSE-Manager-Proxy-3.2-Source-Pool","installer_updates":false,"description":"SUSE-Manager-Proxy-3.2-Source-Pool for sle-12-x86_64","enabled":false,"id":2996,"autorefresh":false,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Products/SUSE-Manager-Proxy/3.2/x86_64/product_source/"}],"name":"SUSE Manager Proxy","offline_predecessor_ids":[],"friendly_name":"SUSE Manager Proxy 3.2 x86_64","migration_extra":false,"release_type":null,"former_identifier":"SUSE-Manager-Proxy","recommended":false,"version":"3.2","extensions":[],"release_stage":"released","id":1725,"identifier":"SUSE-Manager-Proxy","friendly_version":"3.2"},{"shortname":"SAP-Applications-Module","description":"

The SAP Applications module contains the specialized tools for SAP Applications administration.

The module is maintained and supported by the SUSE Linux Enterprise Server for SAP Applications product subscription.

","free":true,"eula_url":"","arch":"ppc64le","predecessor_ids":[],"online_predecessor_ids":[],"repositories":[{"description":"SLE-Module-SAP-Applications15-Updates for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-SAP-Applications15-Updates","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-SAP-Applications/15/ppc64le/update/","distro_target":"sle-15-ppc64le","autorefresh":true,"id":2682,"enabled":true},{"description":"SLE-Module-SAP-Applications15-Debuginfo-Updates for sle-15-ppc64le","name":"SLE-Module-SAP-Applications15-Debuginfo-Updates","installer_updates":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-SAP-Applications/15/ppc64le/update_debug/","autorefresh":true,"distro_target":"sle-15-ppc64le","id":2683,"enabled":false},{"description":"SLE-Module-SAP-Applications15-Pool for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-SAP-Applications15-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-SAP-Applications/15/ppc64le/product/","distro_target":"sle-15-ppc64le","autorefresh":false,"id":2684,"enabled":true},{"enabled":false,"id":2685,"distro_target":"sle-15-ppc64le","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-SAP-Applications/15/ppc64le/product_debug/","installer_updates":false,"name":"SLE-Module-SAP-Applications15-Debuginfo-Pool","description":"SLE-Module-SAP-Applications15-Debuginfo-Pool for sle-15-ppc64le"},{"name":"SLE-Module-SAP-Applications15-Source-Pool","installer_updates":false,"description":"SLE-Module-SAP-Applications15-Source-Pool for sle-15-ppc64le","id":2686,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-SAP-Applications/15/ppc64le/product_source/","autorefresh":false,"distro_target":"sle-15-ppc64le"}],"product_class":"MODULE","cpe":"cpe:/o:suse:sle-module-sap-applications:15","product_type":"module","recommended":false,"version":"15","name":"SAP Applications Module","offline_predecessor_ids":[],"friendly_name":"SAP Applications Module 15 ppc64le","migration_extra":false,"former_identifier":"sle-module-sap-applications","release_type":null,"friendly_version":"15","extensions":[],"id":1726,"release_stage":"released","identifier":"sle-module-sap-applications"},{"migration_extra":false,"friendly_name":"SAP Applications Module 15 x86_64","former_identifier":"sle-module-sap-applications","release_type":null,"name":"SAP Applications Module","offline_predecessor_ids":[],"version":"15","recommended":false,"release_stage":"released","id":1727,"identifier":"sle-module-sap-applications","extensions":[],"friendly_version":"15","arch":"x86_64","eula_url":"","description":"

The SAP Applications module contains the specialized tools for SAP Applications administration.

The module is maintained and supported by the SUSE Linux Enterprise Server for SAP Applications product subscription.

","shortname":"SAP-Applications-Module","free":true,"cpe":"cpe:/o:suse:sle-module-sap-applications:15","product_type":"module","online_predecessor_ids":[],"product_class":"MODULE","repositories":[{"enabled":true,"id":2677,"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-SAP-Applications/15/x86_64/update/","name":"SLE-Module-SAP-Applications15-Updates","installer_updates":false,"description":"SLE-Module-SAP-Applications15-Updates for sle-15-x86_64"},{"description":"SLE-Module-SAP-Applications15-Debuginfo-Updates for sle-15-x86_64","name":"SLE-Module-SAP-Applications15-Debuginfo-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-SAP-Applications/15/x86_64/update_debug/","enabled":false,"id":2678},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-SAP-Applications/15/x86_64/product/","autorefresh":false,"distro_target":"sle-15-x86_64","id":2679,"enabled":true,"description":"SLE-Module-SAP-Applications15-Pool for sle-15-x86_64","name":"SLE-Module-SAP-Applications15-Pool","installer_updates":false},{"description":"SLE-Module-SAP-Applications15-Debuginfo-Pool for sle-15-x86_64","name":"SLE-Module-SAP-Applications15-Debuginfo-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-SAP-Applications/15/x86_64/product_debug/","autorefresh":false,"distro_target":"sle-15-x86_64","id":2680,"enabled":false},{"description":"SLE-Module-SAP-Applications15-Source-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-SAP-Applications15-Source-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-SAP-Applications/15/x86_64/product_source/","distro_target":"sle-15-x86_64","autorefresh":false,"id":2681,"enabled":false}],"predecessor_ids":[]},{"predecessor_ids":[],"online_predecessor_ids":[],"product_class":"MODULE","repositories":[{"installer_updates":false,"name":"SLE-Module-CAP-Tools15-Updates","description":"SLE-Module-CAP-Tools15-Updates for sle-15-x86_64","id":3000,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-CAP-Tools/15/x86_64/update/","distro_target":"sle-15-x86_64","autorefresh":true},{"id":3001,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-CAP-Tools/15/x86_64/update_debug/","distro_target":"sle-15-x86_64","autorefresh":true,"installer_updates":false,"name":"SLE-Module-CAP-Tools15-Debuginfo-Updates","description":"SLE-Module-CAP-Tools15-Debuginfo-Updates for sle-15-x86_64"},{"name":"SLE-Module-CAP-Tools15-Pool","installer_updates":false,"description":"SLE-Module-CAP-Tools15-Pool for sle-15-x86_64","enabled":true,"id":3002,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-CAP-Tools/15/x86_64/product/"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-CAP-Tools/15/x86_64/product_debug/","autorefresh":false,"distro_target":"sle-15-x86_64","id":3003,"enabled":false,"description":"SLE-Module-CAP-Tools15-Debuginfo-Pool for sle-15-x86_64","name":"SLE-Module-CAP-Tools15-Debuginfo-Pool","installer_updates":false},{"description":"SLE-Module-CAP-Tools15-Source-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-CAP-Tools15-Source-Pool","distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-CAP-Tools/15/x86_64/product_source/","enabled":false,"id":3123}],"product_type":"module","cpe":"cpe:/o:suse:sle-module-cap-tools:15","free":true,"shortname":"SUSE-CAP-Tools-Module","description":"

The SUSE Cloud Application Platform Tools Module is a collection of tools that enables you to interact with the SUSE Cloud Application Platform product itself, providing the commandline client for instance.

Access to the SUSE Cloud Application Platform Tools Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself; please check the Release Notes for further details.

","eula_url":"","arch":"x86_64","friendly_version":"15","extensions":[],"id":1728,"release_stage":"released","identifier":"sle-module-cap-tools","recommended":false,"version":"15","offline_predecessor_ids":[1678],"name":"SUSE Cloud Application Platform Tools Module","release_type":null,"former_identifier":"sle-module-cap-tools","migration_extra":false,"friendly_name":"SUSE Cloud Application Platform Tools Module 15 x86_64"},{"cpe":"cpe:/o:suse:suse-openstack-cloud-crowbar:8","product_type":"extension","product_class":"SUSE_CLOUD","online_predecessor_ids":[1381],"repositories":[{"url":"https://updates.suse.com/SUSE/Updates/OpenStack-Cloud-Crowbar/8/x86_64/update/","autorefresh":true,"distro_target":"sle-12-x86_64","id":3004,"enabled":true,"description":"SUSE-OpenStack-Cloud-Crowbar-8-Updates for sle-12-x86_64","name":"SUSE-OpenStack-Cloud-Crowbar-8-Updates","installer_updates":false},{"description":"SUSE-OpenStack-Cloud-Crowbar-8-Debuginfo-Updates for sle-12-x86_64","installer_updates":false,"name":"SUSE-OpenStack-Cloud-Crowbar-8-Debuginfo-Updates","distro_target":"sle-12-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/OpenStack-Cloud-Crowbar/8/x86_64/update_debug/","enabled":false,"id":3005},{"autorefresh":false,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Products/OpenStack-Cloud-Crowbar/8/x86_64/product/","enabled":true,"id":3006,"description":"SUSE-OpenStack-Cloud-Crowbar-8-Pool for sle-12-x86_64","name":"SUSE-OpenStack-Cloud-Crowbar-8-Pool","installer_updates":false},{"name":"SUSE-OpenStack-Cloud-Crowbar-8-Debuginfo-Pool","installer_updates":false,"description":"SUSE-OpenStack-Cloud-Crowbar-8-Debuginfo-Pool for sle-12-x86_64","enabled":false,"id":3007,"autorefresh":false,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Products/OpenStack-Cloud-Crowbar/8/x86_64/product_debug/"},{"id":3008,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/OpenStack-Cloud-Crowbar/8/x86_64/product_source/","distro_target":"sle-12-x86_64","autorefresh":false,"installer_updates":false,"name":"SUSE-OpenStack-Cloud-Crowbar-8-Source-Pool","description":"SUSE-OpenStack-Cloud-Crowbar-8-Source-Pool for sle-12-x86_64"}],"predecessor_ids":[1381],"arch":"x86_64","eula_url":"https://updates.suse.com/SUSE/Products/OpenStack-Cloud-Crowbar/8/x86_64/product.license/","description":"SUSE OpenStack Cloud Crowbar 8","shortname":"SOCC8","free":false,"identifier":"suse-openstack-cloud-crowbar","release_stage":"released","id":1729,"extensions":[],"friendly_version":"8","friendly_name":"SUSE OpenStack Cloud Crowbar 8 x86_64","migration_extra":false,"release_type":null,"former_identifier":"suse-openstack-cloud-crowbar","name":"SUSE OpenStack Cloud Crowbar","offline_predecessor_ids":[],"version":"8","recommended":false},{"version":"8","recommended":false,"friendly_name":"HPE Helion OpenStack 8 x86_64","migration_extra":false,"former_identifier":"hpe-helion-openstack","release_type":null,"name":"HPE Helion OpenStack","offline_predecessor_ids":[],"friendly_version":"8","id":1730,"release_stage":"released","identifier":"hpe-helion-openstack","extensions":[],"shortname":"HOS8","description":"HPE Helion OpenStack 8","free":false,"arch":"x86_64","eula_url":"https://updates.suse.com/SUSE/Products/HPE-Helion-OpenStack/8/x86_64/product.license/","product_class":"HPE-HELION-OPENSTACK-X86","online_predecessor_ids":[],"repositories":[{"installer_updates":false,"name":"HPE-Helion-OpenStack-8-Updates","description":"HPE-Helion-OpenStack-8-Updates for sle-12-x86_64","id":3139,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/HPE-Helion-OpenStack/8/x86_64/update/","distro_target":"sle-12-x86_64","autorefresh":true},{"autorefresh":true,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Updates/HPE-Helion-OpenStack/8/x86_64/update_debug/","enabled":false,"id":3140,"description":"HPE-Helion-OpenStack-8-Debuginfo-Updates for sle-12-x86_64","name":"HPE-Helion-OpenStack-8-Debuginfo-Updates","installer_updates":false},{"description":"HPE-Helion-OpenStack-8-Pool for sle-12-x86_64","name":"HPE-Helion-OpenStack-8-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Products/HPE-Helion-OpenStack/8/x86_64/product/","enabled":true,"id":3141},{"description":"HPE-Helion-OpenStack-8-Debuginfo-Pool for sle-12-x86_64","name":"HPE-Helion-OpenStack-8-Debuginfo-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/HPE-Helion-OpenStack/8/x86_64/product_debug/","autorefresh":false,"distro_target":"sle-12-x86_64","id":3142,"enabled":false},{"description":"HPE-Helion-OpenStack-8-Source-Pool for sle-12-x86_64","name":"HPE-Helion-OpenStack-8-Source-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Products/HPE-Helion-OpenStack/8/x86_64/product_source/","enabled":false,"id":3143}],"predecessor_ids":[],"cpe":"cpe:/o:suse:hpe-helion-openstack:8","product_type":"extension"},{"friendly_version":"15","id":1731,"release_stage":"released","identifier":"SLE_HPC","extensions":[{"shortname":"Basesystem-Module","description":"

The SUSE Linux Enterprise Basesystem Module delivers the base system of the product.

","free":true,"arch":"aarch64","eula_url":"","product_class":"MODULE","online_predecessor_ids":[],"repositories":[{"installer_updates":false,"name":"SLE-Module-Basesystem15-Updates","description":"SLE-Module-Basesystem15-Updates for sle-15-aarch64","id":2574,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15/aarch64/update/","distro_target":"sle-15-aarch64","autorefresh":true},{"description":"SLE-Module-Basesystem15-Pool for sle-15-aarch64","installer_updates":false,"name":"SLE-Module-Basesystem15-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15/aarch64/product/","distro_target":"sle-15-aarch64","autorefresh":false,"id":2575,"enabled":true},{"id":2576,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15/aarch64/product_debug/","autorefresh":false,"distro_target":"sle-15-aarch64","name":"SLE-Module-Basesystem15-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-Basesystem15-Debuginfo-Pool for sle-15-aarch64"},{"enabled":false,"id":2577,"distro_target":"sle-15-aarch64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15/aarch64/product_source/","installer_updates":false,"name":"SLE-Module-Basesystem15-Source-Pool","description":"SLE-Module-Basesystem15-Source-Pool for sle-15-aarch64"},{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15/aarch64/update_debug/","distro_target":"sle-15-aarch64","autorefresh":true,"id":3014,"enabled":false,"description":"SLE-Module-Basesystem15-Debuginfo-Updates for sle-15-aarch64","installer_updates":false,"name":"SLE-Module-Basesystem15-Debuginfo-Updates"}],"predecessor_ids":[],"cpe":"cpe:/o:suse:sle-module-basesystem:15","product_type":"module","version":"15","recommended":true,"migration_extra":false,"friendly_name":"Basesystem Module 15 aarch64","former_identifier":"sle-module-basesystem","release_type":null,"name":"Basesystem Module","offline_predecessor_ids":[1522],"friendly_version":"15","identifier":"sle-module-basesystem","release_stage":"released","id":1589,"extensions":[{"cpe":"cpe:/o:suse:sle-module-desktop-applications:15","product_type":"module","online_predecessor_ids":[],"product_class":"MODULE","repositories":[{"installer_updates":false,"name":"SLE-Module-Desktop-Applications15-Updates","description":"SLE-Module-Desktop-Applications15-Updates for sle-15-aarch64","id":2603,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15/aarch64/update/","distro_target":"sle-15-aarch64","autorefresh":true},{"name":"SLE-Module-Desktop-Applications15-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-Desktop-Applications15-Debuginfo-Updates for sle-15-aarch64","enabled":false,"id":2604,"autorefresh":true,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15/aarch64/update_debug/"},{"name":"SLE-Module-Desktop-Applications15-Pool","installer_updates":false,"description":"SLE-Module-Desktop-Applications15-Pool for sle-15-aarch64","id":2605,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15/aarch64/product/","autorefresh":false,"distro_target":"sle-15-aarch64"},{"description":"SLE-Module-Desktop-Applications15-Debuginfo-Pool for sle-15-aarch64","installer_updates":false,"name":"SLE-Module-Desktop-Applications15-Debuginfo-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15/aarch64/product_debug/","distro_target":"sle-15-aarch64","autorefresh":false,"id":2606,"enabled":false},{"name":"SLE-Module-Desktop-Applications15-Source-Pool","installer_updates":false,"description":"SLE-Module-Desktop-Applications15-Source-Pool for sle-15-aarch64","id":2607,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15/aarch64/product_source/","autorefresh":false,"distro_target":"sle-15-aarch64"}],"predecessor_ids":[],"arch":"aarch64","eula_url":"","shortname":"Desktop-Applications-Module","description":"

The SUSE Linux Enterprise Desktop Applications Module delivers a basic set of Desktop functionality.

Access to the Desktop Applications Module is included in your SUSE Linux Enterprise product subscription.

","free":true,"id":1595,"release_stage":"released","identifier":"sle-module-desktop-applications","extensions":[{"friendly_version":"15","extensions":[],"release_stage":"released","id":1598,"identifier":"sle-module-development-tools","recommended":true,"version":"15","offline_predecessor_ids":[1376,1378,1430,1633,1889],"name":"Development Tools Module","release_type":null,"former_identifier":"sle-sdk","friendly_name":"Development Tools Module 15 aarch64","migration_extra":false,"predecessor_ids":[],"product_class":"MODULE","online_predecessor_ids":[],"repositories":[{"id":2618,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15/aarch64/update/","distro_target":"sle-15-aarch64","autorefresh":true,"installer_updates":false,"name":"SLE-Module-DevTools15-Updates","description":"SLE-Module-DevTools15-Updates for sle-15-aarch64"},{"description":"SLE-Module-DevTools15-Debuginfo-Updates for sle-15-aarch64","name":"SLE-Module-DevTools15-Debuginfo-Updates","installer_updates":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15/aarch64/update_debug/","autorefresh":true,"distro_target":"sle-15-aarch64","id":2619,"enabled":false},{"description":"SLE-Module-DevTools15-Pool for sle-15-aarch64","installer_updates":false,"name":"SLE-Module-DevTools15-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15/aarch64/product/","distro_target":"sle-15-aarch64","autorefresh":false,"id":2620,"enabled":true},{"description":"SLE-Module-DevTools15-Debuginfo-Pool for sle-15-aarch64","name":"SLE-Module-DevTools15-Debuginfo-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15/aarch64/product_debug/","autorefresh":false,"distro_target":"sle-15-aarch64","id":2621,"enabled":false},{"autorefresh":false,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15/aarch64/product_source/","enabled":false,"id":2622,"description":"SLE-Module-DevTools15-Source-Pool for sle-15-aarch64","name":"SLE-Module-DevTools15-Source-Pool","installer_updates":false}],"product_type":"module","cpe":"cpe:/o:suse:sle-module-development-tools:15","free":true,"shortname":"Development-Tools-Module","description":"

The Development Tools Module helps you developing applications for SUSE Linux Enterprise 15.

Access to the Development Tools Module is included in your SUSE Linux Enterprise product subscription. The module has a different lifecycle than SUSE Linux Enterprise itself.

","eula_url":"","arch":"aarch64"}],"friendly_version":"15","migration_extra":false,"friendly_name":"Desktop Applications Module 15 aarch64","release_type":null,"former_identifier":"sle-module-desktop-applications","name":"Desktop Applications Module","offline_predecessor_ids":[],"version":"15","recommended":true},{"friendly_version":"15","release_stage":"released","id":1601,"identifier":"sle-module-server-applications","extensions":[{"extensions":[],"release_stage":"released","identifier":"sle-module-legacy","id":1604,"friendly_version":"15","name":"Legacy Module","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"Legacy Module 15 aarch64","former_identifier":"sle-module-legacy","release_type":null,"recommended":false,"version":"15","cpe":"cpe:/o:suse:sle-module-legacy:15","product_type":"module","predecessor_ids":[],"repositories":[{"description":"SLE-Module-Legacy15-Updates for sle-15-aarch64","name":"SLE-Module-Legacy15-Updates","installer_updates":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/15/aarch64/update/","autorefresh":true,"distro_target":"sle-15-aarch64","id":2648,"enabled":true},{"name":"SLE-Module-Legacy15-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-Legacy15-Debuginfo-Updates for sle-15-aarch64","id":2649,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/15/aarch64/update_debug/","autorefresh":true,"distro_target":"sle-15-aarch64"},{"installer_updates":false,"name":"SLE-Module-Legacy15-Pool","description":"SLE-Module-Legacy15-Pool for sle-15-aarch64","enabled":true,"id":2650,"distro_target":"sle-15-aarch64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15/aarch64/product/"},{"name":"SLE-Module-Legacy15-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-Legacy15-Debuginfo-Pool for sle-15-aarch64","enabled":false,"id":2651,"autorefresh":false,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15/aarch64/product_debug/"},{"autorefresh":false,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15/aarch64/product_source/","enabled":false,"id":2652,"description":"SLE-Module-Legacy15-Source-Pool for sle-15-aarch64","name":"SLE-Module-Legacy15-Source-Pool","installer_updates":false}],"online_predecessor_ids":[],"product_class":"MODULE","eula_url":"","arch":"aarch64","description":"

The Legacy Module helps you migrating applications from SUSE Linux Enterprise 12 and other systems to SUSE Linux Enterprise 15, by providing packages which are discontinued on SUSE Linux Enterprise Server, such as: ntp, IBM Java 8, and a number of libraries.

Access to the Legacy Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself. Packages in the this module are usually supported for at most three years.

","shortname":"Legacy-Module","free":true},{"free":false,"shortname":"SLEHA15","description":"SUSE Linux High Availability Extension provides mature, industry-leading open-source high-availability clustering technologies that are easy to set up and use. It can be deployed in physical and/or virtual environments, and can cluster physical servers, virtual servers, or any combination of the two to suit your business’ needs.","arch":"aarch64","eula_url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15/aarch64/product.license/","repositories":[{"description":"SLE-Product-HA15-Updates for sle-15-aarch64","name":"SLE-Product-HA15-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Updates/SLE-Product-HA/15/aarch64/update/","enabled":true,"id":2849},{"installer_updates":false,"name":"SLE-Product-HA15-Debuginfo-Updates","description":"SLE-Product-HA15-Debuginfo-Updates for sle-15-aarch64","enabled":false,"id":2850,"distro_target":"sle-15-aarch64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-HA/15/aarch64/update_debug/"},{"id":2851,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15/aarch64/product/","autorefresh":false,"distro_target":"sle-15-aarch64","name":"SLE-Product-HA15-Pool","installer_updates":false,"description":"SLE-Product-HA15-Pool for sle-15-aarch64"},{"distro_target":"sle-15-aarch64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15/aarch64/product_debug/","enabled":false,"id":2852,"description":"SLE-Product-HA15-Debuginfo-Pool for sle-15-aarch64","installer_updates":false,"name":"SLE-Product-HA15-Debuginfo-Pool"},{"autorefresh":false,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15/aarch64/product_source/","enabled":false,"id":2853,"description":"SLE-Product-HA15-Source-Pool for sle-15-aarch64","name":"SLE-Product-HA15-Source-Pool","installer_updates":false}],"online_predecessor_ids":[],"product_class":"SLE-HAE-ARM64","predecessor_ids":[],"product_type":"extension","cpe":"cpe:/o:suse:sle-ha:15","version":"15","recommended":false,"release_type":null,"former_identifier":"sle-ha","migration_extra":false,"friendly_name":"SUSE Linux Enterprise High Availability Extension 15 aarch64","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise High Availability Extension","friendly_version":"15","release_stage":"released","id":1608,"identifier":"sle-ha","extensions":[]},{"cpe":"cpe:/o:suse:sle-module-public-cloud:15","product_type":"module","product_class":"MODULE","online_predecessor_ids":[],"repositories":[{"description":"SLE-Module-Public-Cloud15-Updates for sle-15-aarch64","name":"SLE-Module-Public-Cloud15-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/15/aarch64/update/","enabled":true,"id":2879},{"id":2880,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/15/aarch64/update_debug/","autorefresh":true,"distro_target":"sle-15-aarch64","name":"SLE-Module-Public-Cloud15-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-Public-Cloud15-Debuginfo-Updates for sle-15-aarch64"},{"name":"SLE-Module-Public-Cloud15-Pool","installer_updates":false,"description":"SLE-Module-Public-Cloud15-Pool for sle-15-aarch64","enabled":true,"id":2881,"autorefresh":false,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15/aarch64/product/"},{"enabled":false,"id":2882,"autorefresh":false,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15/aarch64/product_debug/","name":"SLE-Module-Public-Cloud15-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-Public-Cloud15-Debuginfo-Pool for sle-15-aarch64"},{"installer_updates":false,"name":"SLE-Module-Public-Cloud15-Source-Pool","description":"SLE-Module-Public-Cloud15-Source-Pool for sle-15-aarch64","id":3126,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15/aarch64/product_source/","distro_target":"sle-15-aarch64","autorefresh":false}],"predecessor_ids":[],"arch":"aarch64","eula_url":"","description":"

The Public Cloud Module is a collection of tools that enables you to create and manage cloud images from the commandline on SUSE Linux Enterprise Server. When building your own images with KIWI or SUSE Studio, initialization code specific to the target cloud is included in that image.

Access to the Public Cloud Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself; please check the Release Notes for further details.

","shortname":"Public-Cloud-Module","free":true,"release_stage":"released","identifier":"sle-module-public-cloud","id":1645,"extensions":[],"friendly_version":"15","migration_extra":true,"friendly_name":"Public Cloud Module 15 aarch64","former_identifier":"sle-module-public-cloud","release_type":null,"name":"Public Cloud Module","offline_predecessor_ids":[1528],"version":"15","recommended":false},{"friendly_version":"15","extensions":[{"shortname":"HPC-Module","description":"

The SUSE Linux Enterprise Server High Performance Computing (HPC) module delivers specific tools commonly used for high performance, numerically intensive workloads.

SUSE packages these tools in the SLES HPC Module to provide greater flexibility to deliver new versions or new tools more rapidly than the standard SUSE Linux Enterprise lifecycle would permit.

Packages in this module are generally supported until a newer version of the package is released or the package is dropped from the module.

","free":true,"arch":"aarch64","eula_url":"","online_predecessor_ids":[],"product_class":"MODULE","repositories":[{"distro_target":"sle-15-aarch64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-HPC/15/aarch64/update/","enabled":true,"id":3019,"description":"SLE-Module-HPC15-Updates for sle-15-aarch64","installer_updates":false,"name":"SLE-Module-HPC15-Updates"},{"id":3020,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-HPC/15/aarch64/update_debug/","distro_target":"sle-15-aarch64","autorefresh":true,"installer_updates":false,"name":"SLE-Module-HPC15-Debuginfo-Updates","description":"SLE-Module-HPC15-Debuginfo-Updates for sle-15-aarch64"},{"id":3021,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-HPC/15/aarch64/product/","autorefresh":false,"distro_target":"sle-15-aarch64","name":"SLE-Module-HPC15-Pool","installer_updates":false,"description":"SLE-Module-HPC15-Pool for sle-15-aarch64"},{"installer_updates":false,"name":"SLE-Module-HPC15-Debuginfo-Pool","description":"SLE-Module-HPC15-Debuginfo-Pool for sle-15-aarch64","enabled":false,"id":3022,"distro_target":"sle-15-aarch64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-HPC/15/aarch64/product_debug/"},{"description":"SLE-Module-HPC15-Source-Pool for sle-15-aarch64","installer_updates":false,"name":"SLE-Module-HPC15-Source-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-HPC/15/aarch64/product_source/","distro_target":"sle-15-aarch64","autorefresh":false,"id":3023,"enabled":false}],"predecessor_ids":[],"cpe":"cpe:/o:suse:sle-module-hpc:15","product_type":"module","version":"15","recommended":true,"friendly_name":"HPC Module 15 aarch64","migration_extra":false,"former_identifier":"sle-module-hpc","release_type":null,"name":"HPC Module","offline_predecessor_ids":[1522],"friendly_version":"15","release_stage":"released","identifier":"sle-module-hpc","id":1733,"extensions":[]}],"release_stage":"released","id":1718,"identifier":"sle-module-web-scripting","recommended":true,"version":"15","offline_predecessor_ids":[1539],"name":"Web and Scripting Module","release_type":null,"former_identifier":"sle-module-web-scripting","friendly_name":"Web and Scripting Module 15 aarch64","migration_extra":false,"predecessor_ids":[],"product_class":"MODULE","online_predecessor_ids":[],"repositories":[{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/15/aarch64/update/","autorefresh":true,"distro_target":"sle-15-aarch64","id":2957,"enabled":true,"description":"SLE-Module-Web-Scripting15-Updates for sle-15-aarch64","name":"SLE-Module-Web-Scripting15-Updates","installer_updates":false},{"description":"SLE-Module-Web-Scripting15-Debuginfo-Updates for sle-15-aarch64","installer_updates":false,"name":"SLE-Module-Web-Scripting15-Debuginfo-Updates","distro_target":"sle-15-aarch64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/15/aarch64/update_debug/","enabled":false,"id":2958},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15/aarch64/product/","distro_target":"sle-15-aarch64","autorefresh":false,"id":2959,"enabled":true,"description":"SLE-Module-Web-Scripting15-Pool for sle-15-aarch64","installer_updates":false,"name":"SLE-Module-Web-Scripting15-Pool"},{"id":2960,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15/aarch64/product_debug/","autorefresh":false,"distro_target":"sle-15-aarch64","name":"SLE-Module-Web-Scripting15-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-Web-Scripting15-Debuginfo-Pool for sle-15-aarch64"},{"autorefresh":false,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15/aarch64/product_source/","enabled":false,"id":2961,"description":"SLE-Module-Web-Scripting15-Source-Pool for sle-15-aarch64","name":"SLE-Module-Web-Scripting15-Source-Pool","installer_updates":false}],"product_type":"module","cpe":"cpe:/o:suse:sle-module-web-scripting:15","free":true,"shortname":"Web-Scripting-Module","description":"

The SUSE Linux Enterprise Web and Scripting Module should contains additional packages that are helpful when running a webserver.

Access to the Web and Scripting Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself: Package versions in this module are usually supported for at most three years. We are planning to release more recent versions on a schedule of approximately 18 month; the exact dates may differ per package.

","eula_url":"","arch":"aarch64"}],"version":"15","recommended":true,"release_type":null,"former_identifier":"sle-module-server-applications","migration_extra":false,"friendly_name":"Server Applications Module 15 aarch64","offline_predecessor_ids":[],"name":"Server Applications Module","online_predecessor_ids":[],"product_class":"MODULE","repositories":[{"name":"SLE-Module-Server-Applications15-Updates","installer_updates":false,"description":"SLE-Module-Server-Applications15-Updates for sle-15-aarch64","enabled":true,"id":2633,"autorefresh":true,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15/aarch64/update/"},{"id":2634,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15/aarch64/update_debug/","distro_target":"sle-15-aarch64","autorefresh":true,"installer_updates":false,"name":"SLE-Module-Server-Applications15-Debuginfo-Updates","description":"SLE-Module-Server-Applications15-Debuginfo-Updates for sle-15-aarch64"},{"description":"SLE-Module-Server-Applications15-Pool for sle-15-aarch64","installer_updates":false,"name":"SLE-Module-Server-Applications15-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15/aarch64/product/","distro_target":"sle-15-aarch64","autorefresh":false,"id":2635,"enabled":true},{"installer_updates":false,"name":"SLE-Module-Server-Applications15-Debuginfo-Pool","description":"SLE-Module-Server-Applications15-Debuginfo-Pool for sle-15-aarch64","enabled":false,"id":2636,"distro_target":"sle-15-aarch64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15/aarch64/product_debug/"},{"description":"SLE-Module-Server-Applications15-Source-Pool for sle-15-aarch64","name":"SLE-Module-Server-Applications15-Source-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15/aarch64/product_source/","autorefresh":false,"distro_target":"sle-15-aarch64","id":2637,"enabled":false}],"predecessor_ids":[],"product_type":"module","cpe":"cpe:/o:suse:sle-module-server-applications:15","free":true,"shortname":"Server-Applications-Module","description":"

The SUSE Linux Enterprise Server Applications Module delivers a basic set of Server functionality.

Access to the Server Applications Module is included in your SUSE Linux Enterprise Server subscription.

","arch":"aarch64","eula_url":""},{"friendly_name":"SUSE Package Hub 15 aarch64","migration_extra":false,"former_identifier":"PackageHub","release_type":null,"name":"SUSE Package Hub","offline_predecessor_ids":[1532,1810,1912],"version":"15","recommended":false,"release_stage":"released","identifier":"PackageHub","id":1740,"extensions":[],"friendly_version":"15","arch":"aarch64","eula_url":"","description":"SUSE Package Hub is a free of charge extension providing access to community maintained packages built to run on SUSE Linux Enterprise Server. Built from the same sources used in the openSUSE distributions, these quality packages provide additional software to what is found in the SUSE Linux Enterprise Server product. Packages from the Package Hub are delivered without L3 support from SUSE. General updates and fixes to the packages in SUSE Package Hub are provided by the openSUSE community based on their discretion though SUSE will monitor and ensure that any known critical security issues will be addressed. Packages in the Package Hub are approved by SUSE for use with SUSE Linux Enterprise Server 15 and to not interfere with the supportability of SUSE Linux Enterprise Server it's modules and extensions. For more information about SUSE Package Hub please visit https://packagehub.suse.com.","shortname":"SUSE-PackageHub-15","free":true,"cpe":"cpe:/o:suse:packagehub:15","product_type":"extension","online_predecessor_ids":[],"repositories":[{"autorefresh":false,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Backports/SLE-15_aarch64/standard/","enabled":true,"id":3050,"description":"SUSE-PackageHub-15-Standard-Pool for sle-15-aarch64","name":"SUSE-PackageHub-15-Standard-Pool","installer_updates":false},{"id":3051,"enabled":false,"url":"https://updates.suse.com/SUSE/Backports/SLE-15_aarch64/standard_debug/","autorefresh":true,"distro_target":"sle-15-aarch64","name":"SUSE-PackageHub-15-Debuginfo","installer_updates":false,"description":"SUSE-PackageHub-15-Debuginfo for sle-15-aarch64"},{"url":"https://updates.suse.com/SUSE/Backports/SLE-15_aarch64/product/","autorefresh":false,"distro_target":"sle-15-aarch64","id":3052,"enabled":true,"description":"SUSE-PackageHub-15-Pool for sle-15-aarch64","name":"SUSE-PackageHub-15-Pool","installer_updates":false},{"description":"SLE-Module-Packagehub-Subpackages15-Updates for sle-15-aarch64","name":"SLE-Module-Packagehub-Subpackages15-Updates","installer_updates":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15/aarch64/update/","autorefresh":true,"distro_target":"sle-15-aarch64","id":3167,"enabled":true},{"description":"SLE-Module-Packagehub-Subpackages15-Debuginfo-Updates for sle-15-aarch64","name":"SLE-Module-Packagehub-Subpackages15-Debuginfo-Updates","installer_updates":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15/aarch64/update_debug/","autorefresh":true,"distro_target":"sle-15-aarch64","id":3168,"enabled":false},{"installer_updates":false,"name":"SLE-Module-Packagehub-Subpackages15-Pool","description":"SLE-Module-Packagehub-Subpackages15-Pool for sle-15-aarch64","id":3169,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15/aarch64/product/","distro_target":"sle-15-aarch64","autorefresh":false},{"id":3170,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15/aarch64/product_debug/","autorefresh":false,"distro_target":"sle-15-aarch64","name":"SLE-Module-Packagehub-Subpackages15-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-Packagehub-Subpackages15-Debuginfo-Pool for sle-15-aarch64"},{"description":"SLE-Module-Packagehub-Subpackages15-Source-Pool for sle-15-aarch64","name":"SLE-Module-Packagehub-Subpackages15-Source-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15/aarch64/product_source/","enabled":false,"id":3171}],"product_class":"MODULE","predecessor_ids":[]}]},{"friendly_version":"15","extensions":[],"id":2057,"release_stage":"released","identifier":"SLE_HPC-LTSS","recommended":false,"version":"15","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise High Performance Computing LTSS","release_type":null,"former_identifier":"SLE_HPC-LTSS","friendly_name":"SUSE Linux Enterprise High Performance Computing LTSS 15 aarch64","migration_extra":false,"predecessor_ids":[],"repositories":[{"id":4392,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-HPC/15-LTSS/aarch64/update/","autorefresh":true,"distro_target":"sle-15-aarch64","name":"SLE-Product-HPC-15-LTSS-Updates","installer_updates":false,"description":"SLE-Product-HPC-15-LTSS-Updates for sle-15-aarch64"},{"name":"SLE-Product-HPC15-Debuginfo-LTSS-Updates","installer_updates":false,"description":"SLE-Product-HPC15-Debuginfo-LTSS-Updates for sle-15-aarch64","id":4393,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-HPC/15-LTSS/aarch64/update_debug/","autorefresh":true,"distro_target":"sle-15-aarch64"}],"online_predecessor_ids":[],"product_class":"HPC15-LTSS-ARM64","product_type":"extension","cpe":"cpe:/o:suse:sle_hpc-ltss:15","free":false,"description":"

SUSE Linux Enterprise High Performance Computing is a highly scalable, high performance open source operating system designed to utilize the power of parallel computing for modeling, simulation and advanced analytics workloads.

","shortname":"SLE-15-HPC-LTSS","eula_url":"","arch":"aarch64"},{"id":2059,"release_stage":"released","identifier":"SLE_HPC-ESPOS","extensions":[],"friendly_version":"15","migration_extra":false,"friendly_name":"SUSE Linux Enterprise Server ESPOS 15 aarch64","former_identifier":"SLE_HPC-ESPOS","release_type":null,"name":"SUSE Linux Enterprise Server ESPOS","offline_predecessor_ids":[],"version":"15","recommended":false,"cpe":"cpe:/o:suse:sle_hpc-espos:15","product_type":"extension","repositories":[{"enabled":true,"id":4396,"distro_target":"sle-15-aarch64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-HPC/15-ESPOS/aarch64/update/","installer_updates":false,"name":"SLE-Product-HPC-ESPOS15-Updates","description":"SLE-Product-HPC-ESPOS15-Updates for sle-15-aarch64"},{"autorefresh":true,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Updates/SLE-Product-HPC/15-ESPOS/aarch64/update_debug/","enabled":false,"id":4397,"description":"SLE-Product-HPC-ESPOS15-Debuginfo-Updates for sle-15-aarch64","name":"SLE-Product-HPC-ESPOS15-Debuginfo-Updates","installer_updates":false},{"name":"SLE-Product-HPC-ESPOS15-Pool","installer_updates":false,"description":"SLE-Product-HPC-ESPOS15-Pool for sle-15-aarch64","id":4398,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-HPC/15-ESPOS/aarch64/product/","autorefresh":false,"distro_target":"sle-15-aarch64"},{"installer_updates":false,"name":"SLE-Product-HPC-ESPOS15-Debuginfo-Pool","description":"SLE-Product-HPC-ESPOS15-Debuginfo-Pool for sle-15-aarch64","enabled":false,"id":4399,"distro_target":"sle-15-aarch64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-HPC/15-ESPOS/aarch64/product_debug/"},{"installer_updates":false,"name":"SLE-Product-HPC-ESPOS15-Source-Pool","description":"SLE-Product-HPC-ESPOS15-Source-Pool for sle-15-aarch64","id":4400,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-HPC/15-ESPOS/aarch64/product_source/","distro_target":"sle-15-aarch64","autorefresh":false}],"online_predecessor_ids":[],"product_class":"SLE-ESPOS-ARM64","predecessor_ids":[],"arch":"aarch64","eula_url":"","shortname":"SLE-15-ESPOS","description":"SUSE Linux Enterprise offers a comprehensive suite of products built on a single code base. The platform addresses business needs from the smallest thin-client devices to the world's most powerful high-performance computing and mainframe servers. SUSE Linux Enterprise offers common management tools and technology certifications across the platform, and each product is enterprise-class.","free":false}],"version":"15","recommended":false,"former_identifier":"SLE_HPC","release_type":null,"friendly_name":"SUSE Linux Enterprise High Performance Computing 15 aarch64","migration_extra":false,"offline_predecessor_ids":[1424,1628,1750,1758,1872,1875],"name":"SUSE Linux Enterprise High Performance Computing","repositories":[{"description":"SLE-Product-HPC-15-Updates for sle-15-aarch64","name":"SLE-Product-HPC-15-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Updates/SLE-Product-HPC/15/aarch64/update/","enabled":true,"id":3015},{"description":"SLE-Product-HPC-15-Pool for sle-15-aarch64","installer_updates":false,"name":"SLE-Product-HPC-15-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Product-HPC/15/aarch64/product/","distro_target":"sle-15-aarch64","autorefresh":false,"id":3016,"enabled":true},{"description":"SLE-Product-HPC15-Debuginfo-Updates for sle-15-aarch64","installer_updates":false,"name":"SLE-Product-HPC15-Debuginfo-Updates","distro_target":"sle-15-aarch64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-HPC/15/aarch64/update_debug/","enabled":false,"id":3038},{"enabled":false,"id":3039,"autorefresh":false,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Products/SLE-Product-HPC/15/aarch64/product_debug/","name":"SLE-Product-HPC15-Debuginfo-Pool","installer_updates":false,"description":"SLE-Product-HPC15-Debuginfo-Pool for sle-15-aarch64"},{"enabled":false,"id":3040,"distro_target":"sle-15-aarch64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-HPC/15/aarch64/product_source/","installer_updates":false,"name":"SLE-Product-HPC15-Source-Pool","description":"SLE-Product-HPC15-Source-Pool for sle-15-aarch64"}],"online_predecessor_ids":[],"product_class":"HPC-ARM64","predecessor_ids":[],"product_type":"base","cpe":"cpe:/o:suse:sle_hpc:15","free":false,"description":"

SUSE Linux Enterprise High Performance Computing is a highly scalable, high performance open source operating system designed to utilize the power of parallel computing for modeling, simulation and advanced analytics workloads.

","shortname":"SLE-15-HPC","arch":"aarch64","eula_url":"https://updates.suse.com/SUSE/Products/SLE-Product-HPC/15/aarch64/product.license/"},{"offline_predecessor_ids":[1421,1625,1751,1759,1873,1878],"name":"SUSE Linux Enterprise High Performance Computing","release_type":null,"former_identifier":"SLE_HPC","friendly_name":"SUSE Linux Enterprise High Performance Computing 15 x86_64","migration_extra":false,"recommended":false,"version":"15","extensions":[{"cpe":"cpe:/o:suse:sle-module-basesystem:15","product_type":"module","predecessor_ids":[],"online_predecessor_ids":[],"repositories":[{"distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15/x86_64/update/","enabled":true,"id":2524,"description":"SLE-Module-Basesystem15-Updates for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Basesystem15-Updates"},{"description":"SLE-Module-Basesystem15-Debuginfo-Updates for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Basesystem15-Debuginfo-Updates","distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15/x86_64/update_debug/","enabled":false,"id":2525},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15/x86_64/product/","distro_target":"sle-15-x86_64","autorefresh":false,"id":2526,"enabled":true,"description":"SLE-Module-Basesystem15-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Basesystem15-Pool"},{"enabled":false,"id":2527,"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15/x86_64/product_debug/","installer_updates":false,"name":"SLE-Module-Basesystem15-Debuginfo-Pool","description":"SLE-Module-Basesystem15-Debuginfo-Pool for sle-15-x86_64"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15/x86_64/product_source/","distro_target":"sle-15-x86_64","autorefresh":false,"id":2528,"enabled":false,"description":"SLE-Module-Basesystem15-Source-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Basesystem15-Source-Pool"}],"product_class":"MODULE","eula_url":"","arch":"x86_64","description":"

The SUSE Linux Enterprise Basesystem Module delivers the base system of the product.

","shortname":"Basesystem-Module","free":true,"extensions":[{"online_predecessor_ids":[],"product_class":"MODULE","repositories":[{"description":"SLE-Module-Desktop-Applications15-Updates for sle-15-x86_64","name":"SLE-Module-Desktop-Applications15-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15/x86_64/update/","enabled":true,"id":2534},{"installer_updates":false,"name":"SLE-Module-Desktop-Applications15-Debuginfo-Updates","description":"SLE-Module-Desktop-Applications15-Debuginfo-Updates for sle-15-x86_64","id":2535,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15/x86_64/update_debug/","distro_target":"sle-15-x86_64","autorefresh":true},{"installer_updates":false,"name":"SLE-Module-Desktop-Applications15-Pool","description":"SLE-Module-Desktop-Applications15-Pool for sle-15-x86_64","enabled":true,"id":2536,"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15/x86_64/product/"},{"description":"SLE-Module-Desktop-Applications15-Debuginfo-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Desktop-Applications15-Debuginfo-Pool","distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15/x86_64/product_debug/","enabled":false,"id":2537},{"id":2538,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15/x86_64/product_source/","distro_target":"sle-15-x86_64","autorefresh":false,"installer_updates":false,"name":"SLE-Module-Desktop-Applications15-Source-Pool","description":"SLE-Module-Desktop-Applications15-Source-Pool for sle-15-x86_64"}],"predecessor_ids":[],"product_type":"module","cpe":"cpe:/o:suse:sle-module-desktop-applications:15","free":true,"shortname":"Desktop-Applications-Module","description":"

The SUSE Linux Enterprise Desktop Applications Module delivers a basic set of Desktop functionality.

Access to the Desktop Applications Module is included in your SUSE Linux Enterprise product subscription.

","arch":"x86_64","eula_url":"","friendly_version":"15","release_stage":"released","id":1578,"identifier":"sle-module-desktop-applications","extensions":[{"extensions":[],"release_stage":"released","identifier":"sle-module-development-tools","id":1579,"friendly_version":"15","offline_predecessor_ids":[1223,1323,1341,1366,1427,1630,1892],"name":"Development Tools Module","release_type":null,"former_identifier":"sle-sdk","migration_extra":false,"friendly_name":"Development Tools Module 15 x86_64","recommended":true,"version":"15","product_type":"module","cpe":"cpe:/o:suse:sle-module-development-tools:15","predecessor_ids":[],"online_predecessor_ids":[],"product_class":"MODULE","repositories":[{"name":"SLE-Module-DevTools15-Updates","installer_updates":false,"description":"SLE-Module-DevTools15-Updates for sle-15-x86_64","enabled":true,"id":2539,"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15/x86_64/update/"},{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15/x86_64/update_debug/","distro_target":"sle-15-x86_64","autorefresh":true,"id":2540,"enabled":false,"description":"SLE-Module-DevTools15-Debuginfo-Updates for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-DevTools15-Debuginfo-Updates"},{"name":"SLE-Module-DevTools15-Pool","installer_updates":false,"description":"SLE-Module-DevTools15-Pool for sle-15-x86_64","enabled":true,"id":2541,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15/x86_64/product/"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15/x86_64/product_debug/","distro_target":"sle-15-x86_64","autorefresh":false,"id":2542,"enabled":false,"description":"SLE-Module-DevTools15-Debuginfo-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-DevTools15-Debuginfo-Pool"},{"description":"SLE-Module-DevTools15-Source-Pool for sle-15-x86_64","name":"SLE-Module-DevTools15-Source-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15/x86_64/product_source/","autorefresh":false,"distro_target":"sle-15-x86_64","id":2543,"enabled":false}],"eula_url":"","arch":"x86_64","free":true,"description":"

The Development Tools Module helps you developing applications for SUSE Linux Enterprise 15.

Access to the Development Tools Module is included in your SUSE Linux Enterprise product subscription. The module has a different lifecycle than SUSE Linux Enterprise itself.

","shortname":"Development-Tools-Module"}],"version":"15","recommended":true,"release_type":null,"former_identifier":"sle-module-desktop-applications","friendly_name":"Desktop Applications Module 15 x86_64","migration_extra":false,"offline_predecessor_ids":[],"name":"Desktop Applications Module"},{"migration_extra":false,"friendly_name":"Server Applications Module 15 x86_64","release_type":null,"former_identifier":"sle-module-server-applications","name":"Server Applications Module","offline_predecessor_ids":[],"version":"15","recommended":true,"id":1580,"release_stage":"released","identifier":"sle-module-server-applications","extensions":[{"friendly_version":"15","identifier":"sle-module-legacy","release_stage":"released","id":1581,"extensions":[],"version":"15","recommended":false,"migration_extra":false,"friendly_name":"Legacy Module 15 x86_64","former_identifier":"sle-module-legacy","release_type":null,"name":"Legacy Module","offline_predecessor_ids":[1150],"online_predecessor_ids":[],"repositories":[{"enabled":true,"id":2549,"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/15/x86_64/update/","name":"SLE-Module-Legacy15-Updates","installer_updates":false,"description":"SLE-Module-Legacy15-Updates for sle-15-x86_64"},{"installer_updates":false,"name":"SLE-Module-Legacy15-Debuginfo-Updates","description":"SLE-Module-Legacy15-Debuginfo-Updates for sle-15-x86_64","id":2550,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/15/x86_64/update_debug/","distro_target":"sle-15-x86_64","autorefresh":true},{"description":"SLE-Module-Legacy15-Pool for sle-15-x86_64","name":"SLE-Module-Legacy15-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15/x86_64/product/","enabled":true,"id":2551},{"installer_updates":false,"name":"SLE-Module-Legacy15-Debuginfo-Pool","description":"SLE-Module-Legacy15-Debuginfo-Pool for sle-15-x86_64","enabled":false,"id":2552,"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15/x86_64/product_debug/"},{"enabled":false,"id":2553,"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15/x86_64/product_source/","installer_updates":false,"name":"SLE-Module-Legacy15-Source-Pool","description":"SLE-Module-Legacy15-Source-Pool for sle-15-x86_64"}],"product_class":"MODULE","predecessor_ids":[],"cpe":"cpe:/o:suse:sle-module-legacy:15","product_type":"module","description":"

The Legacy Module helps you migrating applications from SUSE Linux Enterprise 12 and other systems to SUSE Linux Enterprise 15, by providing packages which are discontinued on SUSE Linux Enterprise Server, such as: ntp, IBM Java 8, and a number of libraries.

Access to the Legacy Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself. Packages in the this module are usually supported for at most three years.

","shortname":"Legacy-Module","free":true,"arch":"x86_64","eula_url":""},{"free":false,"shortname":"SLEHA15","description":"SUSE Linux High Availability Extension provides mature, industry-leading open-source high-availability clustering technologies that are easy to set up and use. It can be deployed in physical and/or virtual environments, and can cluster physical servers, virtual servers, or any combination of the two to suit your business’ needs.","arch":"x86_64","eula_url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15/x86_64/product.license/","online_predecessor_ids":[],"product_class":"SLE-HAE-X86","repositories":[{"installer_updates":false,"name":"SLE-Product-HA15-Updates","description":"SLE-Product-HA15-Updates for sle-15-x86_64","id":2754,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-HA/15/x86_64/update/","distro_target":"sle-15-x86_64","autorefresh":true},{"enabled":false,"id":2755,"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Product-HA/15/x86_64/update_debug/","name":"SLE-Product-HA15-Debuginfo-Updates","installer_updates":false,"description":"SLE-Product-HA15-Debuginfo-Updates for sle-15-x86_64"},{"id":2756,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15/x86_64/product/","autorefresh":false,"distro_target":"sle-15-x86_64","name":"SLE-Product-HA15-Pool","installer_updates":false,"description":"SLE-Product-HA15-Pool for sle-15-x86_64"},{"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15/x86_64/product_debug/","enabled":false,"id":2757,"description":"SLE-Product-HA15-Debuginfo-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Product-HA15-Debuginfo-Pool"},{"id":2758,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15/x86_64/product_source/","autorefresh":false,"distro_target":"sle-15-x86_64","name":"SLE-Product-HA15-Source-Pool","installer_updates":false,"description":"SLE-Product-HA15-Source-Pool for sle-15-x86_64"}],"predecessor_ids":[],"product_type":"extension","cpe":"cpe:/o:suse:sle-ha:15","version":"15","recommended":false,"release_type":null,"former_identifier":"sle-ha","friendly_name":"SUSE Linux Enterprise High Availability Extension 15 x86_64","migration_extra":false,"offline_predecessor_ids":[958,961,967,971,1101,1107,1157,1245,1256,1286,1324,1337,1361,1363,1432,1435,1634,1637,1884,1886],"name":"SUSE Linux Enterprise High Availability Extension","friendly_version":"15","identifier":"sle-ha","release_stage":"released","id":1582,"extensions":[]},{"eula_url":"","arch":"x86_64","description":"

The Public Cloud Module is a collection of tools that enables you to create and manage cloud images from the commandline on SUSE Linux Enterprise Server. When building your own images with KIWI or SUSE Studio, initialization code specific to the target cloud is included in that image.

Access to the Public Cloud Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself; please check the Release Notes for further details.

","shortname":"Public-Cloud-Module","free":true,"cpe":"cpe:/o:suse:sle-module-public-cloud:15","product_type":"module","predecessor_ids":[],"online_predecessor_ids":[],"repositories":[{"description":"SLE-Module-Public-Cloud15-Updates for sle-15-x86_64","name":"SLE-Module-Public-Cloud15-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/15/x86_64/update/","enabled":true,"id":2673},{"enabled":false,"id":2674,"distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/15/x86_64/update_debug/","installer_updates":false,"name":"SLE-Module-Public-Cloud15-Debuginfo-Updates","description":"SLE-Module-Public-Cloud15-Debuginfo-Updates for sle-15-x86_64"},{"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15/x86_64/product/","enabled":true,"id":2675,"description":"SLE-Module-Public-Cloud15-Pool for sle-15-x86_64","name":"SLE-Module-Public-Cloud15-Pool","installer_updates":false},{"enabled":false,"id":2676,"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15/x86_64/product_debug/","installer_updates":false,"name":"SLE-Module-Public-Cloud15-Debuginfo-Pool","description":"SLE-Module-Public-Cloud15-Debuginfo-Pool for sle-15-x86_64"},{"id":3129,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15/x86_64/product_source/","distro_target":"sle-15-x86_64","autorefresh":false,"installer_updates":false,"name":"SLE-Module-Public-Cloud15-Source-Pool","description":"SLE-Module-Public-Cloud15-Source-Pool for sle-15-x86_64"}],"product_class":"MODULE","name":"Public Cloud Module","offline_predecessor_ids":[1220],"friendly_name":"Public Cloud Module 15 x86_64","migration_extra":true,"release_type":null,"former_identifier":"sle-module-public-cloud","recommended":false,"version":"15","extensions":[],"id":1611,"release_stage":"released","identifier":"sle-module-public-cloud","friendly_version":"15"},{"friendly_version":"15","extensions":[{"eula_url":"","arch":"x86_64","free":true,"shortname":"HPC-Module","description":"

The SUSE Linux Enterprise Server High Performance Computing (HPC) module delivers specific tools commonly used for high performance, numerically intensive workloads.

SUSE packages these tools in the SLES HPC Module to provide greater flexibility to deliver new versions or new tools more rapidly than the standard SUSE Linux Enterprise lifecycle would permit.

Packages in this module are generally supported until a newer version of the package is released or the package is dropped from the module.

","product_type":"module","cpe":"cpe:/o:suse:sle-module-hpc:15","predecessor_ids":[],"product_class":"MODULE","online_predecessor_ids":[],"repositories":[{"enabled":true,"id":3024,"distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-HPC/15/x86_64/update/","installer_updates":false,"name":"SLE-Module-HPC15-Updates","description":"SLE-Module-HPC15-Updates for sle-15-x86_64"},{"installer_updates":false,"name":"SLE-Module-HPC15-Debuginfo-Updates","description":"SLE-Module-HPC15-Debuginfo-Updates for sle-15-x86_64","enabled":false,"id":3025,"distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-HPC/15/x86_64/update_debug/"},{"name":"SLE-Module-HPC15-Pool","installer_updates":false,"description":"SLE-Module-HPC15-Pool for sle-15-x86_64","enabled":true,"id":3026,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-HPC/15/x86_64/product/"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-HPC/15/x86_64/product_debug/","distro_target":"sle-15-x86_64","autorefresh":false,"id":3027,"enabled":false,"description":"SLE-Module-HPC15-Debuginfo-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-HPC15-Debuginfo-Pool"},{"installer_updates":false,"name":"SLE-Module-HPC15-Source-Pool","description":"SLE-Module-HPC15-Source-Pool for sle-15-x86_64","id":3028,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-HPC/15/x86_64/product_source/","distro_target":"sle-15-x86_64","autorefresh":false}],"offline_predecessor_ids":[1440],"name":"HPC Module","former_identifier":"sle-module-hpc","release_type":null,"migration_extra":false,"friendly_name":"HPC Module 15 x86_64","recommended":true,"version":"15","extensions":[],"identifier":"sle-module-hpc","release_stage":"released","id":1734,"friendly_version":"15"}],"id":1721,"release_stage":"released","identifier":"sle-module-web-scripting","recommended":true,"version":"15","offline_predecessor_ids":[1153],"name":"Web and Scripting Module","release_type":null,"former_identifier":"sle-module-web-scripting","migration_extra":false,"friendly_name":"Web and Scripting Module 15 x86_64","predecessor_ids":[],"online_predecessor_ids":[],"product_class":"MODULE","repositories":[{"description":"SLE-Module-Web-Scripting15-Updates for sle-15-x86_64","name":"SLE-Module-Web-Scripting15-Updates","installer_updates":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/15/x86_64/update/","autorefresh":true,"distro_target":"sle-15-x86_64","id":2972,"enabled":true},{"id":2973,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/15/x86_64/update_debug/","distro_target":"sle-15-x86_64","autorefresh":true,"installer_updates":false,"name":"SLE-Module-Web-Scripting15-Debuginfo-Updates","description":"SLE-Module-Web-Scripting15-Debuginfo-Updates for sle-15-x86_64"},{"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15/x86_64/product/","enabled":true,"id":2974,"description":"SLE-Module-Web-Scripting15-Pool for sle-15-x86_64","name":"SLE-Module-Web-Scripting15-Pool","installer_updates":false},{"name":"SLE-Module-Web-Scripting15-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-Web-Scripting15-Debuginfo-Pool for sle-15-x86_64","id":2975,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15/x86_64/product_debug/","autorefresh":false,"distro_target":"sle-15-x86_64"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15/x86_64/product_source/","distro_target":"sle-15-x86_64","autorefresh":false,"id":2976,"enabled":false,"description":"SLE-Module-Web-Scripting15-Source-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Web-Scripting15-Source-Pool"}],"product_type":"module","cpe":"cpe:/o:suse:sle-module-web-scripting:15","free":true,"description":"

The SUSE Linux Enterprise Web and Scripting Module should contains additional packages that are helpful when running a webserver.

Access to the Web and Scripting Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself: Package versions in this module are usually supported for at most three years. We are planning to release more recent versions on a schedule of approximately 18 month; the exact dates may differ per package.

","shortname":"Web-Scripting-Module","eula_url":"","arch":"x86_64"}],"friendly_version":"15","arch":"x86_64","eula_url":"","shortname":"Server-Applications-Module","description":"

The SUSE Linux Enterprise Server Applications Module delivers a basic set of Server functionality.

Access to the Server Applications Module is included in your SUSE Linux Enterprise Server subscription.

","free":true,"cpe":"cpe:/o:suse:sle-module-server-applications:15","product_type":"module","product_class":"MODULE","online_predecessor_ids":[],"repositories":[{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15/x86_64/update/","autorefresh":true,"distro_target":"sle-15-x86_64","id":2544,"enabled":true,"description":"SLE-Module-Server-Applications15-Updates for sle-15-x86_64","name":"SLE-Module-Server-Applications15-Updates","installer_updates":false},{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15/x86_64/update_debug/","autorefresh":true,"distro_target":"sle-15-x86_64","id":2545,"enabled":false,"description":"SLE-Module-Server-Applications15-Debuginfo-Updates for sle-15-x86_64","name":"SLE-Module-Server-Applications15-Debuginfo-Updates","installer_updates":false},{"name":"SLE-Module-Server-Applications15-Pool","installer_updates":false,"description":"SLE-Module-Server-Applications15-Pool for sle-15-x86_64","enabled":true,"id":2546,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15/x86_64/product/"},{"description":"SLE-Module-Server-Applications15-Debuginfo-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Server-Applications15-Debuginfo-Pool","distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15/x86_64/product_debug/","enabled":false,"id":2547},{"id":2548,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15/x86_64/product_source/","autorefresh":false,"distro_target":"sle-15-x86_64","name":"SLE-Module-Server-Applications15-Source-Pool","installer_updates":false,"description":"SLE-Module-Server-Applications15-Source-Pool for sle-15-x86_64"}],"predecessor_ids":[]},{"friendly_version":"15","release_stage":"released","id":1642,"identifier":"sle-module-containers","extensions":[],"version":"15","recommended":false,"migration_extra":true,"friendly_name":"Containers Module 15 x86_64","former_identifier":"sle-module-containers","release_type":null,"name":"Containers Module","offline_predecessor_ids":[1332],"online_predecessor_ids":[],"product_class":"MODULE","repositories":[{"description":"SLE-Module-Containers15-Updates for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Containers15-Updates","distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/15/x86_64/update/","enabled":true,"id":2864},{"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/15/x86_64/update_debug/","enabled":false,"id":2865,"description":"SLE-Module-Containers15-Debuginfo-Updates for sle-15-x86_64","name":"SLE-Module-Containers15-Debuginfo-Updates","installer_updates":false},{"enabled":true,"id":2866,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15/x86_64/product/","name":"SLE-Module-Containers15-Pool","installer_updates":false,"description":"SLE-Module-Containers15-Pool for sle-15-x86_64"},{"installer_updates":false,"name":"SLE-Module-Containers15-Debuginfo-Pool","description":"SLE-Module-Containers15-Debuginfo-Pool for sle-15-x86_64","enabled":false,"id":2867,"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15/x86_64/product_debug/"},{"name":"SLE-Module-Containers15-Source-Pool","installer_updates":false,"description":"SLE-Module-Containers15-Source-Pool for sle-15-x86_64","enabled":false,"id":2868,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15/x86_64/product_source/"}],"predecessor_ids":[],"cpe":"cpe:/o:suse:sle-module-containers:15","product_type":"module","description":"

This Module contains several packages revolving around containers and related tools.

","shortname":"Containers-Module","free":true,"arch":"x86_64","eula_url":""},{"friendly_version":"15","extensions":[],"release_stage":"released","identifier":"sle-module-live-patching","id":1736,"recommended":false,"version":"15","offline_predecessor_ids":[1536,1757,1888],"name":"SUSE Linux Enterprise Live Patching","former_identifier":"sle-module-live-patching","release_type":null,"friendly_name":"SUSE Linux Enterprise Live Patching 15 x86_64","migration_extra":false,"predecessor_ids":[],"repositories":[{"id":3033,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Live-Patching/15/x86_64/update/","distro_target":"sle-15-x86_64","autorefresh":true,"installer_updates":false,"name":"SLE-Module-Live-Patching15-Updates","description":"SLE-Module-Live-Patching15-Updates for sle-15-x86_64"},{"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Live-Patching/15/x86_64/update_debug/","enabled":false,"id":3034,"description":"SLE-Module-Live-Patching15-Debuginfo-Updates for sle-15-x86_64","name":"SLE-Module-Live-Patching15-Debuginfo-Updates","installer_updates":false},{"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Live-Patching/15/x86_64/product/","enabled":true,"id":3035,"description":"SLE-Module-Live-Patching15-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Live-Patching15-Pool"},{"enabled":false,"id":3036,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Live-Patching/15/x86_64/product_debug/","name":"SLE-Module-Live-Patching15-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-Live-Patching15-Debuginfo-Pool for sle-15-x86_64"},{"installer_updates":false,"name":"SLE-Module-Live-Patching15-Source-Pool","description":"SLE-Module-Live-Patching15-Source-Pool for sle-15-x86_64","id":3125,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Live-Patching/15/x86_64/product_source/","distro_target":"sle-15-x86_64","autorefresh":false}],"online_predecessor_ids":[],"product_class":"SLE-LP","product_type":"module","cpe":"cpe:/o:suse:sle-module-live-patching:15","free":false,"shortname":"Live-Patching","description":"

SUSE Linux Enterprise Live Patching provides packages to update critical components in SUSE Linux Enterprise. With SUSE Linux Enterprise Live Patching, you can perform critical patching without shutting down your system, reducing the need for planned downtime and increasing service availability.

","eula_url":"","arch":"x86_64"},{"extensions":[],"id":1743,"release_stage":"released","identifier":"PackageHub","friendly_version":"15","name":"SUSE Package Hub","offline_predecessor_ids":[1529,1813,1915],"friendly_name":"SUSE Package Hub 15 x86_64","migration_extra":false,"former_identifier":"PackageHub","release_type":null,"recommended":false,"version":"15","cpe":"cpe:/o:suse:packagehub:15","product_type":"extension","predecessor_ids":[],"repositories":[{"description":"SUSE-PackageHub-15-Standard-Pool for sle-15-x86_64","name":"SUSE-PackageHub-15-Standard-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Backports/SLE-15_x86_64/standard/","enabled":true,"id":3059},{"name":"SUSE-PackageHub-15-Debuginfo","installer_updates":false,"description":"SUSE-PackageHub-15-Debuginfo for sle-15-x86_64","enabled":false,"id":3060,"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Backports/SLE-15_x86_64/standard_debug/"},{"description":"SUSE-PackageHub-15-Pool for sle-15-x86_64","name":"SUSE-PackageHub-15-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Backports/SLE-15_x86_64/product/","autorefresh":false,"distro_target":"sle-15-x86_64","id":3061,"enabled":true},{"installer_updates":false,"name":"SLE-Module-Packagehub-Subpackages15-Updates","description":"SLE-Module-Packagehub-Subpackages15-Updates for sle-15-x86_64","enabled":true,"id":3182,"distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15/x86_64/update/"},{"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15/x86_64/update_debug/","enabled":false,"id":3183,"description":"SLE-Module-Packagehub-Subpackages15-Debuginfo-Updates for sle-15-x86_64","name":"SLE-Module-Packagehub-Subpackages15-Debuginfo-Updates","installer_updates":false},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15/x86_64/product/","autorefresh":false,"distro_target":"sle-15-x86_64","id":3184,"enabled":true,"description":"SLE-Module-Packagehub-Subpackages15-Pool for sle-15-x86_64","name":"SLE-Module-Packagehub-Subpackages15-Pool","installer_updates":false},{"name":"SLE-Module-Packagehub-Subpackages15-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-Packagehub-Subpackages15-Debuginfo-Pool for sle-15-x86_64","enabled":false,"id":3185,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15/x86_64/product_debug/"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15/x86_64/product_source/","autorefresh":false,"distro_target":"sle-15-x86_64","id":3186,"enabled":false,"description":"SLE-Module-Packagehub-Subpackages15-Source-Pool for sle-15-x86_64","name":"SLE-Module-Packagehub-Subpackages15-Source-Pool","installer_updates":false}],"online_predecessor_ids":[],"product_class":"MODULE","eula_url":"","arch":"x86_64","shortname":"SUSE-PackageHub-15","description":"SUSE Package Hub is a free of charge extension providing access to community maintained packages built to run on SUSE Linux Enterprise Server. Built from the same sources used in the openSUSE distributions, these quality packages provide additional software to what is found in the SUSE Linux Enterprise Server product. Packages from the Package Hub are delivered without L3 support from SUSE. General updates and fixes to the packages in SUSE Package Hub are provided by the openSUSE community based on their discretion though SUSE will monitor and ensure that any known critical security issues will be addressed. Packages in the Package Hub are approved by SUSE for use with SUSE Linux Enterprise Server 15 and to not interfere with the supportability of SUSE Linux Enterprise Server it's modules and extensions. For more information about SUSE Package Hub please visit https://packagehub.suse.com.","free":true}],"id":1576,"release_stage":"released","identifier":"sle-module-basesystem","friendly_version":"15","name":"Basesystem Module","offline_predecessor_ids":[1212,1368,1440,1618],"friendly_name":"Basesystem Module 15 x86_64","migration_extra":false,"former_identifier":"sle-module-basesystem","release_type":null,"recommended":true,"version":"15"},{"friendly_version":"15","extensions":[],"release_stage":"released","identifier":"SLE_HPC-LTSS","id":2058,"recommended":false,"version":"15","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise High Performance Computing LTSS","release_type":null,"former_identifier":"SLE_HPC-LTSS","migration_extra":false,"friendly_name":"SUSE Linux Enterprise High Performance Computing LTSS 15 x86_64","predecessor_ids":[],"online_predecessor_ids":[],"product_class":"HPC15-LTSS-X86","repositories":[{"name":"SLE-Product-HPC-15-LTSS-Updates","installer_updates":false,"description":"SLE-Product-HPC-15-LTSS-Updates for sle-15-x86_64","id":4394,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-HPC/15-LTSS/x86_64/update/","autorefresh":true,"distro_target":"sle-15-x86_64"},{"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-HPC/15-LTSS/x86_64/update_debug/","distro_target":"sle-15-x86_64","autorefresh":true,"id":4395,"enabled":false,"description":"SLE-Product-HPC15-Debuginfo-LTSS-Updates for sle-15-x86_64","installer_updates":false,"name":"SLE-Product-HPC15-Debuginfo-LTSS-Updates"}],"product_type":"extension","cpe":"cpe:/o:suse:sle_hpc-ltss:15","free":false,"shortname":"SLE-15-HPC-LTSS","description":"

SUSE Linux Enterprise High Performance Computing is a highly scalable, high performance open source operating system designed to utilize the power of parallel computing for modeling, simulation and advanced analytics workloads.

","eula_url":"","arch":"x86_64"},{"arch":"x86_64","eula_url":"","free":false,"description":"SUSE Linux Enterprise offers a comprehensive suite of products built on a single code base. The platform addresses business needs from the smallest thin-client devices to the world's most powerful high-performance computing and mainframe servers. SUSE Linux Enterprise offers common management tools and technology certifications across the platform, and each product is enterprise-class.","shortname":"SLE-15-ESPOS","product_type":"extension","cpe":"cpe:/o:suse:sle_hpc-espos:15","online_predecessor_ids":[],"repositories":[{"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Product-HPC/15-ESPOS/x86_64/update/","enabled":true,"id":4401,"description":"SLE-Product-HPC-ESPOS15-Updates for sle-15-x86_64","name":"SLE-Product-HPC-ESPOS15-Updates","installer_updates":false},{"name":"SLE-Product-HPC-ESPOS15-Debuginfo-Updates","installer_updates":false,"description":"SLE-Product-HPC-ESPOS15-Debuginfo-Updates for sle-15-x86_64","id":4402,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-HPC/15-ESPOS/x86_64/update_debug/","autorefresh":true,"distro_target":"sle-15-x86_64"},{"description":"SLE-Product-HPC-ESPOS15-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Product-HPC-ESPOS15-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Product-HPC/15-ESPOS/x86_64/product/","distro_target":"sle-15-x86_64","autorefresh":false,"id":4403,"enabled":true},{"name":"SLE-Product-HPC-ESPOS15-Debuginfo-Pool","installer_updates":false,"description":"SLE-Product-HPC-ESPOS15-Debuginfo-Pool for sle-15-x86_64","id":4404,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-HPC/15-ESPOS/x86_64/product_debug/","autorefresh":false,"distro_target":"sle-15-x86_64"},{"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Product-HPC/15-ESPOS/x86_64/product_source/","enabled":false,"id":4405,"description":"SLE-Product-HPC-ESPOS15-Source-Pool for sle-15-x86_64","name":"SLE-Product-HPC-ESPOS15-Source-Pool","installer_updates":false}],"product_class":"SLE-ESPOS-X86","predecessor_ids":[],"release_type":null,"former_identifier":"SLE_HPC-ESPOS","friendly_name":"SUSE Linux Enterprise Server ESPOS 15 x86_64","migration_extra":false,"offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Server ESPOS","version":"15","recommended":false,"release_stage":"released","id":2060,"identifier":"SLE_HPC-ESPOS","extensions":[],"friendly_version":"15"}],"release_stage":"released","id":1732,"identifier":"SLE_HPC","friendly_version":"15","eula_url":"https://updates.suse.com/SUSE/Products/SLE-Product-HPC/15/x86_64/product.license/","arch":"x86_64","free":false,"shortname":"SLE-15-HPC","description":"

SUSE Linux Enterprise High Performance Computing is a highly scalable, high performance open source operating system designed to utilize the power of parallel computing for modeling, simulation and advanced analytics workloads.

","product_type":"base","cpe":"cpe:/o:suse:sle_hpc:15","predecessor_ids":[],"product_class":"HPC-X86","online_predecessor_ids":[],"repositories":[{"enabled":true,"id":3017,"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Product-HPC/15/x86_64/update/","name":"SLE-Product-HPC-15-Updates","installer_updates":false,"description":"SLE-Product-HPC-15-Updates for sle-15-x86_64"},{"id":3018,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-HPC/15/x86_64/product/","distro_target":"sle-15-x86_64","autorefresh":false,"installer_updates":false,"name":"SLE-Product-HPC-15-Pool","description":"SLE-Product-HPC-15-Pool for sle-15-x86_64"},{"installer_updates":false,"name":"SLE-Product-HPC15-Debuginfo-Updates","description":"SLE-Product-HPC15-Debuginfo-Updates for sle-15-x86_64","enabled":false,"id":3041,"distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-HPC/15/x86_64/update_debug/"},{"enabled":false,"id":3042,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Product-HPC/15/x86_64/product_debug/","name":"SLE-Product-HPC15-Debuginfo-Pool","installer_updates":false,"description":"SLE-Product-HPC15-Debuginfo-Pool for sle-15-x86_64"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Product-HPC/15/x86_64/product_source/","distro_target":"sle-15-x86_64","autorefresh":false,"id":3043,"enabled":false,"description":"SLE-Product-HPC15-Source-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Product-HPC15-Source-Pool"}]},{"extensions":[],"identifier":"sle-module-hpc","release_stage":"released","id":1733,"friendly_version":"15","name":"HPC Module","offline_predecessor_ids":[1522],"migration_extra":false,"friendly_name":"HPC Module 15 aarch64","former_identifier":"sle-module-hpc","release_type":null,"recommended":false,"version":"15","cpe":"cpe:/o:suse:sle-module-hpc:15","product_type":"module","predecessor_ids":[],"online_predecessor_ids":[],"product_class":"MODULE","repositories":[{"distro_target":"sle-15-aarch64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-HPC/15/aarch64/update/","enabled":true,"id":3019,"description":"SLE-Module-HPC15-Updates for sle-15-aarch64","installer_updates":false,"name":"SLE-Module-HPC15-Updates"},{"description":"SLE-Module-HPC15-Debuginfo-Updates for sle-15-aarch64","name":"SLE-Module-HPC15-Debuginfo-Updates","installer_updates":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-HPC/15/aarch64/update_debug/","autorefresh":true,"distro_target":"sle-15-aarch64","id":3020,"enabled":false},{"installer_updates":false,"name":"SLE-Module-HPC15-Pool","description":"SLE-Module-HPC15-Pool for sle-15-aarch64","id":3021,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-HPC/15/aarch64/product/","distro_target":"sle-15-aarch64","autorefresh":false},{"installer_updates":false,"name":"SLE-Module-HPC15-Debuginfo-Pool","description":"SLE-Module-HPC15-Debuginfo-Pool for sle-15-aarch64","enabled":false,"id":3022,"distro_target":"sle-15-aarch64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-HPC/15/aarch64/product_debug/"},{"description":"SLE-Module-HPC15-Source-Pool for sle-15-aarch64","name":"SLE-Module-HPC15-Source-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-HPC/15/aarch64/product_source/","enabled":false,"id":3023}],"eula_url":"","arch":"aarch64","description":"

The SUSE Linux Enterprise Server High Performance Computing (HPC) module delivers specific tools commonly used for high performance, numerically intensive workloads.

SUSE packages these tools in the SLES HPC Module to provide greater flexibility to deliver new versions or new tools more rapidly than the standard SUSE Linux Enterprise lifecycle would permit.

Packages in this module are generally supported until a newer version of the package is released or the package is dropped from the module.

","shortname":"HPC-Module","free":true},{"release_stage":"released","id":1734,"identifier":"sle-module-hpc","extensions":[],"friendly_version":"15","release_type":null,"former_identifier":"sle-module-hpc","friendly_name":"HPC Module 15 x86_64","migration_extra":false,"offline_predecessor_ids":[1440],"name":"HPC Module","version":"15","recommended":false,"product_type":"module","cpe":"cpe:/o:suse:sle-module-hpc:15","product_class":"MODULE","online_predecessor_ids":[],"repositories":[{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-HPC/15/x86_64/update/","autorefresh":true,"distro_target":"sle-15-x86_64","id":3024,"enabled":true,"description":"SLE-Module-HPC15-Updates for sle-15-x86_64","name":"SLE-Module-HPC15-Updates","installer_updates":false},{"id":3025,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-HPC/15/x86_64/update_debug/","autorefresh":true,"distro_target":"sle-15-x86_64","name":"SLE-Module-HPC15-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-HPC15-Debuginfo-Updates for sle-15-x86_64"},{"id":3026,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-HPC/15/x86_64/product/","distro_target":"sle-15-x86_64","autorefresh":false,"installer_updates":false,"name":"SLE-Module-HPC15-Pool","description":"SLE-Module-HPC15-Pool for sle-15-x86_64"},{"description":"SLE-Module-HPC15-Debuginfo-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-HPC15-Debuginfo-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-HPC/15/x86_64/product_debug/","distro_target":"sle-15-x86_64","autorefresh":false,"id":3027,"enabled":false},{"description":"SLE-Module-HPC15-Source-Pool for sle-15-x86_64","name":"SLE-Module-HPC15-Source-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-HPC/15/x86_64/product_source/","autorefresh":false,"distro_target":"sle-15-x86_64","id":3028,"enabled":false}],"predecessor_ids":[],"arch":"x86_64","eula_url":"","free":true,"description":"

The SUSE Linux Enterprise Server High Performance Computing (HPC) module delivers specific tools commonly used for high performance, numerically intensive workloads.

SUSE packages these tools in the SLES HPC Module to provide greater flexibility to deliver new versions or new tools more rapidly than the standard SUSE Linux Enterprise lifecycle would permit.

Packages in this module are generally supported until a newer version of the package is released or the package is dropped from the module.

","shortname":"HPC-Module"},{"free":false,"description":"

SUSE Linux Enterprise Live Patching provides packages to update critical components in SUSE Linux Enterprise. With SUSE Linux Enterprise Live Patching, you can perform critical patching without shutting down your system, reducing the need for planned downtime and increasing service availability.

","shortname":"Live-Patching","arch":"ppc64le","eula_url":"","online_predecessor_ids":[],"product_class":"SLE-LP-PPC","repositories":[{"autorefresh":true,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Live-Patching/15/ppc64le/update/","enabled":true,"id":3029,"description":"SLE-Module-Live-Patching15-Updates for sle-15-ppc64le","name":"SLE-Module-Live-Patching15-Updates","installer_updates":false},{"enabled":false,"id":3030,"autorefresh":true,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Live-Patching/15/ppc64le/update_debug/","name":"SLE-Module-Live-Patching15-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-Live-Patching15-Debuginfo-Updates for sle-15-ppc64le"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Live-Patching/15/ppc64le/product/","autorefresh":false,"distro_target":"sle-15-ppc64le","id":3031,"enabled":true,"description":"SLE-Module-Live-Patching15-Pool for sle-15-ppc64le","name":"SLE-Module-Live-Patching15-Pool","installer_updates":false},{"autorefresh":false,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Live-Patching/15/ppc64le/product_debug/","enabled":false,"id":3032,"description":"SLE-Module-Live-Patching15-Debuginfo-Pool for sle-15-ppc64le","name":"SLE-Module-Live-Patching15-Debuginfo-Pool","installer_updates":false},{"autorefresh":false,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Live-Patching/15/ppc64le/product_source/","enabled":false,"id":3124,"description":"SLE-Module-Live-Patching15-Source-Pool for sle-15-ppc64le","name":"SLE-Module-Live-Patching15-Source-Pool","installer_updates":false}],"predecessor_ids":[],"product_type":"module","cpe":"cpe:/o:suse:sle-module-live-patching:15","version":"15","recommended":false,"release_type":null,"former_identifier":"sle-module-live-patching","friendly_name":"SUSE Linux Enterprise Live Patching 15 ppc64le","migration_extra":false,"offline_predecessor_ids":[1537,1756,1887],"name":"SUSE Linux Enterprise Live Patching","friendly_version":"15","id":1735,"release_stage":"released","identifier":"sle-module-live-patching","extensions":[]},{"friendly_version":"15","identifier":"sle-module-live-patching","release_stage":"released","id":1736,"extensions":[],"version":"15","recommended":false,"release_type":null,"former_identifier":"sle-module-live-patching","friendly_name":"SUSE Linux Enterprise Live Patching 15 x86_64","migration_extra":false,"offline_predecessor_ids":[1536,1757,1888],"name":"SUSE Linux Enterprise Live Patching","product_class":"SLE-LP","online_predecessor_ids":[],"repositories":[{"name":"SLE-Module-Live-Patching15-Updates","installer_updates":false,"description":"SLE-Module-Live-Patching15-Updates for sle-15-x86_64","id":3033,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Live-Patching/15/x86_64/update/","autorefresh":true,"distro_target":"sle-15-x86_64"},{"name":"SLE-Module-Live-Patching15-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-Live-Patching15-Debuginfo-Updates for sle-15-x86_64","enabled":false,"id":3034,"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Live-Patching/15/x86_64/update_debug/"},{"name":"SLE-Module-Live-Patching15-Pool","installer_updates":false,"description":"SLE-Module-Live-Patching15-Pool for sle-15-x86_64","id":3035,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Live-Patching/15/x86_64/product/","autorefresh":false,"distro_target":"sle-15-x86_64"},{"enabled":false,"id":3036,"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Live-Patching/15/x86_64/product_debug/","installer_updates":false,"name":"SLE-Module-Live-Patching15-Debuginfo-Pool","description":"SLE-Module-Live-Patching15-Debuginfo-Pool for sle-15-x86_64"},{"description":"SLE-Module-Live-Patching15-Source-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Live-Patching15-Source-Pool","distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Live-Patching/15/x86_64/product_source/","enabled":false,"id":3125}],"predecessor_ids":[],"product_type":"module","cpe":"cpe:/o:suse:sle-module-live-patching:15","free":false,"description":"

SUSE Linux Enterprise Live Patching provides packages to update critical components in SUSE Linux Enterprise. With SUSE Linux Enterprise Live Patching, you can perform critical patching without shutting down your system, reducing the need for planned downtime and increasing service availability.

","shortname":"Live-Patching","arch":"x86_64","eula_url":""},{"cpe":"cpe:/o:suse:sles-ltss:12:sp2","product_type":"extension","predecessor_ids":[],"product_class":"SLES12-SP2-LTSS-PPC","online_predecessor_ids":[],"repositories":[{"installer_updates":false,"name":"SLES12-SP2-LTSS-Updates","description":"SLES12-SP2-LTSS-Updates for sle-12-ppc64le","enabled":true,"id":3044,"distro_target":"sle-12-ppc64le","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-SP2-LTSS/ppc64le/update/"},{"url":"https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-SP2-LTSS/ppc64le/update_debug/","distro_target":"sle-12-ppc64le","autorefresh":true,"id":3045,"enabled":false,"description":"SLES12-SP2-LTSS-Debuginfo-Updates for sle-12-ppc64le","installer_updates":false,"name":"SLES12-SP2-LTSS-Debuginfo-Updates"}],"eula_url":"","arch":"ppc64le","description":"SUSE Linux Enterprise offers a comprehensive suite of products built on a single code base. The platform addresses business needs from the smallest thin-client devices to the world's most powerful high-performance computing and mainframe servers. SUSE Linux Enterprise offers common management tools and technology certifications across the platform, and each product is enterprise-class.","shortname":"SLES12-SP2 LTSS","free":false,"extensions":[],"id":1737,"release_stage":"released","identifier":"SLES-LTSS","friendly_version":"12 SP2","name":"SUSE Linux Enterprise Server LTSS","offline_predecessor_ids":[],"friendly_name":"SUSE Linux Enterprise Server LTSS 12 SP2 ppc64le","migration_extra":false,"former_identifier":"SLES-LTSS","release_type":null,"recommended":false,"version":"12.2"},{"free":false,"description":"SUSE Linux Enterprise offers a comprehensive suite of products built on a single code base. The platform addresses business needs from the smallest thin-client devices to the world's most powerful high-performance computing and mainframe servers. SUSE Linux Enterprise offers common management tools and technology certifications across the platform, and each product is enterprise-class.","shortname":"SLES12-SP2 LTSS","eula_url":"","arch":"s390x","predecessor_ids":[],"repositories":[{"enabled":true,"id":3046,"distro_target":"sle-12-s390x","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-SP2-LTSS/s390x/update/","installer_updates":false,"name":"SLES12-SP2-LTSS-Updates","description":"SLES12-SP2-LTSS-Updates for sle-12-s390x"},{"url":"https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-SP2-LTSS/s390x/update_debug/","distro_target":"sle-12-s390x","autorefresh":true,"id":3047,"enabled":false,"description":"SLES12-SP2-LTSS-Debuginfo-Updates for sle-12-s390x","installer_updates":false,"name":"SLES12-SP2-LTSS-Debuginfo-Updates"}],"online_predecessor_ids":[],"product_class":"SLES12-SP2-LTSS-Z","product_type":"extension","cpe":"cpe:/o:suse:sles-ltss:12:sp2","recommended":false,"version":"12.2","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Server LTSS","former_identifier":"SLES-LTSS","release_type":null,"friendly_name":"SUSE Linux Enterprise Server LTSS 12 SP2 s390x","migration_extra":false,"friendly_version":"12 SP2","extensions":[],"release_stage":"released","identifier":"SLES-LTSS","id":1738},{"former_identifier":"SLES-LTSS","release_type":null,"friendly_name":"SUSE Linux Enterprise Server LTSS 12 SP2 x86_64","migration_extra":false,"offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Server LTSS","version":"12.2","recommended":false,"identifier":"SLES-LTSS","release_stage":"released","id":1739,"extensions":[],"friendly_version":"12 SP2","arch":"x86_64","eula_url":"","free":false,"shortname":"SLES12-SP2 LTSS","description":"SUSE Linux Enterprise offers a comprehensive suite of products built on a single code base. The platform addresses business needs from the smallest thin-client devices to the world's most powerful high-performance computing and mainframe servers. SUSE Linux Enterprise offers common management tools and technology certifications across the platform, and each product is enterprise-class.","product_type":"extension","cpe":"cpe:/o:suse:sles-ltss:12:sp2","online_predecessor_ids":[],"product_class":"SLES12-SP2-LTSS-X86","repositories":[{"url":"https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-SP2-LTSS/x86_64/update/","distro_target":"sle-12-x86_64","autorefresh":true,"id":3048,"enabled":true,"description":"SLES12-SP2-LTSS-Updates for sle-12-x86_64","installer_updates":false,"name":"SLES12-SP2-LTSS-Updates"},{"description":"SLES12-SP2-LTSS-Debuginfo-Updates for sle-12-x86_64","name":"SLES12-SP2-LTSS-Debuginfo-Updates","installer_updates":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-SP2-LTSS/x86_64/update_debug/","autorefresh":true,"distro_target":"sle-12-x86_64","id":3049,"enabled":false}],"predecessor_ids":[]},{"free":true,"description":"SUSE Package Hub is a free of charge extension providing access to community maintained packages built to run on SUSE Linux Enterprise Server. Built from the same sources used in the openSUSE distributions, these quality packages provide additional software to what is found in the SUSE Linux Enterprise Server product. Packages from the Package Hub are delivered without L3 support from SUSE. General updates and fixes to the packages in SUSE Package Hub are provided by the openSUSE community based on their discretion though SUSE will monitor and ensure that any known critical security issues will be addressed. Packages in the Package Hub are approved by SUSE for use with SUSE Linux Enterprise Server 15 and to not interfere with the supportability of SUSE Linux Enterprise Server it's modules and extensions. For more information about SUSE Package Hub please visit https://packagehub.suse.com.","shortname":"SUSE-PackageHub-15","eula_url":"","arch":"aarch64","predecessor_ids":[],"online_predecessor_ids":[],"repositories":[{"description":"SUSE-PackageHub-15-Standard-Pool for sle-15-aarch64","installer_updates":false,"name":"SUSE-PackageHub-15-Standard-Pool","distro_target":"sle-15-aarch64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Backports/SLE-15_aarch64/standard/","enabled":true,"id":3050},{"installer_updates":false,"name":"SUSE-PackageHub-15-Debuginfo","description":"SUSE-PackageHub-15-Debuginfo for sle-15-aarch64","id":3051,"enabled":false,"url":"https://updates.suse.com/SUSE/Backports/SLE-15_aarch64/standard_debug/","distro_target":"sle-15-aarch64","autorefresh":true},{"distro_target":"sle-15-aarch64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Backports/SLE-15_aarch64/product/","enabled":true,"id":3052,"description":"SUSE-PackageHub-15-Pool for sle-15-aarch64","installer_updates":false,"name":"SUSE-PackageHub-15-Pool"},{"installer_updates":false,"name":"SLE-Module-Packagehub-Subpackages15-Updates","description":"SLE-Module-Packagehub-Subpackages15-Updates for sle-15-aarch64","enabled":true,"id":3167,"distro_target":"sle-15-aarch64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15/aarch64/update/"},{"name":"SLE-Module-Packagehub-Subpackages15-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-Packagehub-Subpackages15-Debuginfo-Updates for sle-15-aarch64","enabled":false,"id":3168,"autorefresh":true,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15/aarch64/update_debug/"},{"name":"SLE-Module-Packagehub-Subpackages15-Pool","installer_updates":false,"description":"SLE-Module-Packagehub-Subpackages15-Pool for sle-15-aarch64","enabled":true,"id":3169,"autorefresh":false,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15/aarch64/product/"},{"id":3170,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15/aarch64/product_debug/","distro_target":"sle-15-aarch64","autorefresh":false,"installer_updates":false,"name":"SLE-Module-Packagehub-Subpackages15-Debuginfo-Pool","description":"SLE-Module-Packagehub-Subpackages15-Debuginfo-Pool for sle-15-aarch64"},{"enabled":false,"id":3171,"autorefresh":false,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15/aarch64/product_source/","name":"SLE-Module-Packagehub-Subpackages15-Source-Pool","installer_updates":false,"description":"SLE-Module-Packagehub-Subpackages15-Source-Pool for sle-15-aarch64"}],"product_class":"MODULE","product_type":"extension","cpe":"cpe:/o:suse:packagehub:15","recommended":false,"version":"15","offline_predecessor_ids":[1532,1810,1912],"name":"SUSE Package Hub","release_type":null,"former_identifier":"PackageHub","friendly_name":"SUSE Package Hub 15 aarch64","migration_extra":false,"friendly_version":"15","extensions":[],"release_stage":"released","id":1740,"identifier":"PackageHub"},{"recommended":false,"version":"15","name":"SUSE Package Hub","offline_predecessor_ids":[1531,1811,1913],"friendly_name":"SUSE Package Hub 15 ppc64le","migration_extra":false,"release_type":null,"former_identifier":"PackageHub","friendly_version":"15","extensions":[],"identifier":"PackageHub","release_stage":"released","id":1741,"description":"SUSE Package Hub is a free of charge extension providing access to community maintained packages built to run on SUSE Linux Enterprise Server. Built from the same sources used in the openSUSE distributions, these quality packages provide additional software to what is found in the SUSE Linux Enterprise Server product. Packages from the Package Hub are delivered without L3 support from SUSE. General updates and fixes to the packages in SUSE Package Hub are provided by the openSUSE community based on their discretion though SUSE will monitor and ensure that any known critical security issues will be addressed. Packages in the Package Hub are approved by SUSE for use with SUSE Linux Enterprise Server 15 and to not interfere with the supportability of SUSE Linux Enterprise Server it's modules and extensions. For more information about SUSE Package Hub please visit https://packagehub.suse.com.","shortname":"SUSE-PackageHub-15","free":true,"eula_url":"","arch":"ppc64le","predecessor_ids":[],"online_predecessor_ids":[],"product_class":"MODULE","repositories":[{"url":"https://updates.suse.com/SUSE/Backports/SLE-15_ppc64le/standard/","distro_target":"sle-15-ppc64le","autorefresh":false,"id":3053,"enabled":true,"description":"SUSE-PackageHub-15-Standard-Pool for sle-15-ppc64le","installer_updates":false,"name":"SUSE-PackageHub-15-Standard-Pool"},{"url":"https://updates.suse.com/SUSE/Backports/SLE-15_ppc64le/standard_debug/","distro_target":"sle-15-ppc64le","autorefresh":true,"id":3054,"enabled":false,"description":"SUSE-PackageHub-15-Debuginfo for sle-15-ppc64le","installer_updates":false,"name":"SUSE-PackageHub-15-Debuginfo"},{"enabled":true,"id":3055,"autorefresh":false,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Backports/SLE-15_ppc64le/product/","name":"SUSE-PackageHub-15-Pool","installer_updates":false,"description":"SUSE-PackageHub-15-Pool for sle-15-ppc64le"},{"autorefresh":true,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15/ppc64le/update/","enabled":true,"id":3172,"description":"SLE-Module-Packagehub-Subpackages15-Updates for sle-15-ppc64le","name":"SLE-Module-Packagehub-Subpackages15-Updates","installer_updates":false},{"enabled":false,"id":3173,"distro_target":"sle-15-ppc64le","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15/ppc64le/update_debug/","installer_updates":false,"name":"SLE-Module-Packagehub-Subpackages15-Debuginfo-Updates","description":"SLE-Module-Packagehub-Subpackages15-Debuginfo-Updates for sle-15-ppc64le"},{"description":"SLE-Module-Packagehub-Subpackages15-Pool for sle-15-ppc64le","name":"SLE-Module-Packagehub-Subpackages15-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15/ppc64le/product/","enabled":true,"id":3174},{"description":"SLE-Module-Packagehub-Subpackages15-Debuginfo-Pool for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-Packagehub-Subpackages15-Debuginfo-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15/ppc64le/product_debug/","distro_target":"sle-15-ppc64le","autorefresh":false,"id":3175,"enabled":false},{"description":"SLE-Module-Packagehub-Subpackages15-Source-Pool for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-Packagehub-Subpackages15-Source-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15/ppc64le/product_source/","distro_target":"sle-15-ppc64le","autorefresh":false,"id":3176,"enabled":false}],"cpe":"cpe:/o:suse:packagehub:15","product_type":"extension"},{"release_stage":"released","identifier":"PackageHub","id":1742,"extensions":[],"friendly_version":"15","friendly_name":"SUSE Package Hub 15 s390x","migration_extra":false,"former_identifier":"PackageHub","release_type":null,"name":"SUSE Package Hub","offline_predecessor_ids":[1530,1812,1914],"version":"15","recommended":false,"cpe":"cpe:/o:suse:packagehub:15","product_type":"extension","online_predecessor_ids":[],"repositories":[{"autorefresh":false,"distro_target":"sle-15-s390x","url":"https://updates.suse.com/SUSE/Backports/SLE-15_s390x/standard/","enabled":true,"id":3056,"description":"SUSE-PackageHub-15-Standard-Pool for sle-15-s390x","name":"SUSE-PackageHub-15-Standard-Pool","installer_updates":false},{"description":"SUSE-PackageHub-15-Debuginfo for sle-15-s390x","installer_updates":false,"name":"SUSE-PackageHub-15-Debuginfo","distro_target":"sle-15-s390x","autorefresh":true,"url":"https://updates.suse.com/SUSE/Backports/SLE-15_s390x/standard_debug/","enabled":false,"id":3057},{"name":"SUSE-PackageHub-15-Pool","installer_updates":false,"description":"SUSE-PackageHub-15-Pool for sle-15-s390x","id":3058,"enabled":true,"url":"https://updates.suse.com/SUSE/Backports/SLE-15_s390x/product/","autorefresh":false,"distro_target":"sle-15-s390x"},{"enabled":true,"id":3177,"distro_target":"sle-15-s390x","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15/s390x/update/","installer_updates":false,"name":"SLE-Module-Packagehub-Subpackages15-Updates","description":"SLE-Module-Packagehub-Subpackages15-Updates for sle-15-s390x"},{"autorefresh":true,"distro_target":"sle-15-s390x","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15/s390x/update_debug/","enabled":false,"id":3178,"description":"SLE-Module-Packagehub-Subpackages15-Debuginfo-Updates for sle-15-s390x","name":"SLE-Module-Packagehub-Subpackages15-Debuginfo-Updates","installer_updates":false},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15/s390x/product/","distro_target":"sle-15-s390x","autorefresh":false,"id":3179,"enabled":true,"description":"SLE-Module-Packagehub-Subpackages15-Pool for sle-15-s390x","installer_updates":false,"name":"SLE-Module-Packagehub-Subpackages15-Pool"},{"enabled":false,"id":3180,"autorefresh":false,"distro_target":"sle-15-s390x","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15/s390x/product_debug/","name":"SLE-Module-Packagehub-Subpackages15-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-Packagehub-Subpackages15-Debuginfo-Pool for sle-15-s390x"},{"distro_target":"sle-15-s390x","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15/s390x/product_source/","enabled":false,"id":3181,"description":"SLE-Module-Packagehub-Subpackages15-Source-Pool for sle-15-s390x","installer_updates":false,"name":"SLE-Module-Packagehub-Subpackages15-Source-Pool"}],"product_class":"MODULE","predecessor_ids":[],"arch":"s390x","eula_url":"","shortname":"SUSE-PackageHub-15","description":"SUSE Package Hub is a free of charge extension providing access to community maintained packages built to run on SUSE Linux Enterprise Server. Built from the same sources used in the openSUSE distributions, these quality packages provide additional software to what is found in the SUSE Linux Enterprise Server product. Packages from the Package Hub are delivered without L3 support from SUSE. General updates and fixes to the packages in SUSE Package Hub are provided by the openSUSE community based on their discretion though SUSE will monitor and ensure that any known critical security issues will be addressed. Packages in the Package Hub are approved by SUSE for use with SUSE Linux Enterprise Server 15 and to not interfere with the supportability of SUSE Linux Enterprise Server it's modules and extensions. For more information about SUSE Package Hub please visit https://packagehub.suse.com.","free":true},{"eula_url":"","arch":"x86_64","free":true,"description":"SUSE Package Hub is a free of charge extension providing access to community maintained packages built to run on SUSE Linux Enterprise Server. Built from the same sources used in the openSUSE distributions, these quality packages provide additional software to what is found in the SUSE Linux Enterprise Server product. Packages from the Package Hub are delivered without L3 support from SUSE. General updates and fixes to the packages in SUSE Package Hub are provided by the openSUSE community based on their discretion though SUSE will monitor and ensure that any known critical security issues will be addressed. Packages in the Package Hub are approved by SUSE for use with SUSE Linux Enterprise Server 15 and to not interfere with the supportability of SUSE Linux Enterprise Server it's modules and extensions. For more information about SUSE Package Hub please visit https://packagehub.suse.com.","shortname":"SUSE-PackageHub-15","product_type":"extension","cpe":"cpe:/o:suse:packagehub:15","predecessor_ids":[],"repositories":[{"name":"SUSE-PackageHub-15-Standard-Pool","installer_updates":false,"description":"SUSE-PackageHub-15-Standard-Pool for sle-15-x86_64","enabled":true,"id":3059,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Backports/SLE-15_x86_64/standard/"},{"installer_updates":false,"name":"SUSE-PackageHub-15-Debuginfo","description":"SUSE-PackageHub-15-Debuginfo for sle-15-x86_64","enabled":false,"id":3060,"distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Backports/SLE-15_x86_64/standard_debug/"},{"url":"https://updates.suse.com/SUSE/Backports/SLE-15_x86_64/product/","autorefresh":false,"distro_target":"sle-15-x86_64","id":3061,"enabled":true,"description":"SUSE-PackageHub-15-Pool for sle-15-x86_64","name":"SUSE-PackageHub-15-Pool","installer_updates":false},{"enabled":true,"id":3182,"distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15/x86_64/update/","installer_updates":false,"name":"SLE-Module-Packagehub-Subpackages15-Updates","description":"SLE-Module-Packagehub-Subpackages15-Updates for sle-15-x86_64"},{"installer_updates":false,"name":"SLE-Module-Packagehub-Subpackages15-Debuginfo-Updates","description":"SLE-Module-Packagehub-Subpackages15-Debuginfo-Updates for sle-15-x86_64","enabled":false,"id":3183,"distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15/x86_64/update_debug/"},{"description":"SLE-Module-Packagehub-Subpackages15-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Packagehub-Subpackages15-Pool","distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15/x86_64/product/","enabled":true,"id":3184},{"description":"SLE-Module-Packagehub-Subpackages15-Debuginfo-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Packagehub-Subpackages15-Debuginfo-Pool","distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15/x86_64/product_debug/","enabled":false,"id":3185},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15/x86_64/product_source/","distro_target":"sle-15-x86_64","autorefresh":false,"id":3186,"enabled":false,"description":"SLE-Module-Packagehub-Subpackages15-Source-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Packagehub-Subpackages15-Source-Pool"}],"online_predecessor_ids":[],"product_class":"MODULE","offline_predecessor_ids":[1529,1813,1915],"name":"SUSE Package Hub","release_type":null,"former_identifier":"PackageHub","friendly_name":"SUSE Package Hub 15 x86_64","migration_extra":false,"recommended":false,"version":"15","extensions":[],"release_stage":"released","id":1743,"identifier":"PackageHub","friendly_version":"15"},{"arch":"aarch64","eula_url":"","shortname":"Manager-Tools-Beta","description":"SUSE Manager Tools provide packages required to connect to a SUSE Manager Server for Beta testing.","free":false,"cpe":"cpe:/o:suse:sle-manager-tools-beta:12","product_type":"extension","online_predecessor_ids":[],"repositories":[{"description":"SLE-Manager-Tools12-BETA-Updates for sle-12-aarch64","name":"SLE-Manager-Tools12-BETA-Updates","installer_updates":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/12-BETA/aarch64/update/","autorefresh":true,"distro_target":"sle-12-aarch64","id":3062,"enabled":true},{"installer_updates":false,"name":"SLE-Manager-Tools12-BETA-Debuginfo-Updates","description":"SLE-Manager-Tools12-BETA-Debuginfo-Updates for sle-12-aarch64","id":3063,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/12-BETA/aarch64/update_debug/","distro_target":"sle-12-aarch64","autorefresh":true},{"url":"https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/12-BETA/aarch64/product/","distro_target":"sle-12-aarch64","autorefresh":false,"id":3064,"enabled":true,"description":"SLE-Manager-Tools12-BETA-Pool for sle-12-aarch64","installer_updates":false,"name":"SLE-Manager-Tools12-BETA-Pool"},{"autorefresh":false,"distro_target":"sle-12-aarch64","url":"https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/12-BETA/aarch64/product_debug/","enabled":false,"id":3065,"description":"SLE-Manager-Tools12-BETA-Debuginfo-Pool for sle-12-aarch64","name":"SLE-Manager-Tools12-BETA-Debuginfo-Pool","installer_updates":false},{"description":"SLE-Manager-Tools12-BETA-Source-Pool for sle-12-aarch64","installer_updates":false,"name":"SLE-Manager-Tools12-BETA-Source-Pool","distro_target":"sle-12-aarch64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/12-BETA/aarch64/product_source/","enabled":false,"id":3066}],"product_class":"SLE-M-T-BETA","predecessor_ids":[],"migration_extra":false,"friendly_name":"SUSE Manager Client Tools Beta for SLE 12 aarch64 (BETA)","former_identifier":"sle-manager-tools-beta","release_type":null,"name":"SUSE Manager Client Tools Beta for SLE","offline_predecessor_ids":[],"version":"12","recommended":false,"release_stage":"beta","id":1744,"identifier":"sle-manager-tools-beta","extensions":[],"friendly_version":"12"},{"arch":"ppc64le","eula_url":"","free":false,"description":"SUSE Manager Tools provide packages required to connect to a SUSE Manager Server for Beta testing.","shortname":"Manager-Tools-Beta","product_type":"extension","cpe":"cpe:/o:suse:sle-manager-tools-beta:12","online_predecessor_ids":[],"repositories":[{"url":"https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/12-BETA/ppc64le/update/","autorefresh":true,"distro_target":"sle-12-ppc64le","id":3067,"enabled":true,"description":"SLE-Manager-Tools12-BETA-Updates for sle-12-ppc64le","name":"SLE-Manager-Tools12-BETA-Updates","installer_updates":false},{"distro_target":"sle-12-ppc64le","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/12-BETA/ppc64le/update_debug/","enabled":false,"id":3068,"description":"SLE-Manager-Tools12-BETA-Debuginfo-Updates for sle-12-ppc64le","installer_updates":false,"name":"SLE-Manager-Tools12-BETA-Debuginfo-Updates"},{"description":"SLE-Manager-Tools12-BETA-Pool for sle-12-ppc64le","installer_updates":false,"name":"SLE-Manager-Tools12-BETA-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/12-BETA/ppc64le/product/","distro_target":"sle-12-ppc64le","autorefresh":false,"id":3069,"enabled":true},{"autorefresh":false,"distro_target":"sle-12-ppc64le","url":"https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/12-BETA/ppc64le/product_debug/","enabled":false,"id":3070,"description":"SLE-Manager-Tools12-BETA-Debuginfo-Pool for sle-12-ppc64le","name":"SLE-Manager-Tools12-BETA-Debuginfo-Pool","installer_updates":false},{"installer_updates":false,"name":"SLE-Manager-Tools12-BETA-Source-Pool","description":"SLE-Manager-Tools12-BETA-Source-Pool for sle-12-ppc64le","enabled":false,"id":3071,"distro_target":"sle-12-ppc64le","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/12-BETA/ppc64le/product_source/"}],"product_class":"SLE-M-T-BETA","predecessor_ids":[],"release_type":null,"former_identifier":"sle-manager-tools-beta","migration_extra":false,"friendly_name":"SUSE Manager Client Tools Beta for SLE 12 ppc64le (BETA)","offline_predecessor_ids":[],"name":"SUSE Manager Client Tools Beta for SLE","version":"12","recommended":false,"id":1745,"release_stage":"beta","identifier":"sle-manager-tools-beta","extensions":[],"friendly_version":"12"},{"repositories":[{"url":"https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/12-BETA/s390x/update/","autorefresh":true,"distro_target":"sle-12-s390x","id":3072,"enabled":true,"description":"SLE-Manager-Tools12-BETA-Updates for sle-12-s390x","name":"SLE-Manager-Tools12-BETA-Updates","installer_updates":false},{"distro_target":"sle-12-s390x","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/12-BETA/s390x/update_debug/","enabled":false,"id":3073,"description":"SLE-Manager-Tools12-BETA-Debuginfo-Updates for sle-12-s390x","installer_updates":false,"name":"SLE-Manager-Tools12-BETA-Debuginfo-Updates"},{"description":"SLE-Manager-Tools12-BETA-Pool for sle-12-s390x","installer_updates":false,"name":"SLE-Manager-Tools12-BETA-Pool","distro_target":"sle-12-s390x","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/12-BETA/s390x/product/","enabled":true,"id":3074},{"id":3075,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/12-BETA/s390x/product_debug/","autorefresh":false,"distro_target":"sle-12-s390x","name":"SLE-Manager-Tools12-BETA-Debuginfo-Pool","installer_updates":false,"description":"SLE-Manager-Tools12-BETA-Debuginfo-Pool for sle-12-s390x"},{"description":"SLE-Manager-Tools12-BETA-Source-Pool for sle-12-s390x","name":"SLE-Manager-Tools12-BETA-Source-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/12-BETA/s390x/product_source/","autorefresh":false,"distro_target":"sle-12-s390x","id":3076,"enabled":false}],"online_predecessor_ids":[],"product_class":"SLE-M-T-BETA","predecessor_ids":[],"product_type":"extension","cpe":"cpe:/o:suse:sle-manager-tools-beta:12","free":false,"shortname":"Manager-Tools-Beta","description":"SUSE Manager Tools provide packages required to connect to a SUSE Manager Server for Beta testing.","arch":"s390x","eula_url":"","friendly_version":"12","id":1746,"release_stage":"beta","identifier":"sle-manager-tools-beta","extensions":[],"version":"12","recommended":false,"release_type":null,"former_identifier":"sle-manager-tools-beta","friendly_name":"SUSE Manager Client Tools Beta for SLE 12 s390x (BETA)","migration_extra":false,"offline_predecessor_ids":[],"name":"SUSE Manager Client Tools Beta for SLE"},{"name":"SUSE Manager Client Tools Beta for SLE","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"SUSE Manager Client Tools Beta for SLE 12 x86_64 (BETA)","former_identifier":"sle-manager-tools-beta","release_type":null,"recommended":false,"version":"12","extensions":[],"id":1747,"release_stage":"beta","identifier":"sle-manager-tools-beta","friendly_version":"12","eula_url":"","arch":"x86_64","shortname":"Manager-Tools-Beta","description":"SUSE Manager Tools provide packages required to connect to a SUSE Manager Server for Beta testing.","free":false,"cpe":"cpe:/o:suse:sle-manager-tools-beta:12","product_type":"extension","predecessor_ids":[],"product_class":"SLE-M-T-BETA","online_predecessor_ids":[],"repositories":[{"url":"https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/12-BETA/x86_64/update/","autorefresh":true,"distro_target":"sle-12-x86_64","id":3077,"enabled":true,"description":"SLE-Manager-Tools12-BETA-Updates for sle-12-x86_64","name":"SLE-Manager-Tools12-BETA-Updates","installer_updates":false},{"id":3078,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/12-BETA/x86_64/update_debug/","autorefresh":true,"distro_target":"sle-12-x86_64","name":"SLE-Manager-Tools12-BETA-Debuginfo-Updates","installer_updates":false,"description":"SLE-Manager-Tools12-BETA-Debuginfo-Updates for sle-12-x86_64"},{"enabled":true,"id":3079,"autorefresh":false,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/12-BETA/x86_64/product/","name":"SLE-Manager-Tools12-BETA-Pool","installer_updates":false,"description":"SLE-Manager-Tools12-BETA-Pool for sle-12-x86_64"},{"name":"SLE-Manager-Tools12-BETA-Debuginfo-Pool","installer_updates":false,"description":"SLE-Manager-Tools12-BETA-Debuginfo-Pool for sle-12-x86_64","enabled":false,"id":3080,"autorefresh":false,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/12-BETA/x86_64/product_debug/"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/12-BETA/x86_64/product_source/","autorefresh":false,"distro_target":"sle-12-x86_64","id":3081,"enabled":false,"description":"SLE-Manager-Tools12-BETA-Source-Pool for sle-12-x86_64","name":"SLE-Manager-Tools12-BETA-Source-Pool","installer_updates":false}]},{"predecessor_ids":[],"online_predecessor_ids":[],"product_class":"HPC-X86","repositories":[{"description":"SLES12-SP2-Updates for sle-12-x86_64","name":"SLES12-SP2-Updates","installer_updates":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-SP2/x86_64/update/","autorefresh":true,"distro_target":"sle-12-x86_64","id":2013,"enabled":true},{"description":"SLES12-SP2-Debuginfo-Updates for sle-12-x86_64","installer_updates":false,"name":"SLES12-SP2-Debuginfo-Updates","distro_target":"sle-12-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-SP2/x86_64/update_debug/","enabled":false,"id":2014},{"id":2015,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-SERVER/12-SP2/x86_64/product/","distro_target":"sle-12-x86_64","autorefresh":false,"installer_updates":false,"name":"SLES12-SP2-Pool","description":"SLES12-SP2-Pool for sle-12-x86_64"},{"name":"SLES12-SP2-Debuginfo-Pool","installer_updates":false,"description":"SLES12-SP2-Debuginfo-Pool for sle-12-x86_64","enabled":false,"id":2016,"autorefresh":false,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-SERVER/12-SP2/x86_64/product_debug/"},{"name":"SLES12-SP2-Source-Pool","installer_updates":false,"description":"SLES12-SP2-Source-Pool for sle-12-x86_64","enabled":false,"id":2017,"autorefresh":false,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-SERVER/12-SP2/x86_64/product_source/"},{"installer_updates":true,"name":"SLES12-SP2-Installer-Updates","description":"SLES12-SP2-Installer-Updates for sle-12-x86_64","enabled":false,"id":2101,"distro_target":"sle-12-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-SERVER-INSTALLER/12-SP2/x86_64/update/"},{"enabled":true,"id":3087,"autorefresh":true,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-HPC/12-SP2/x86_64/update/","name":"SLE-12-SP2-HPC-Updates","installer_updates":false,"description":"SLE-12-SP2-HPC-Updates for sle-12-x86_64"},{"installer_updates":false,"name":"SLE-12-SP2-HPC-Debuginfo-Updates","description":"SLE-12-SP2-HPC-Debuginfo-Updates for sle-12-x86_64","enabled":false,"id":3088,"distro_target":"sle-12-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-HPC/12-SP2/x86_64/update_debug/"},{"enabled":true,"id":3089,"autorefresh":false,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-HPC/12-SP2/x86_64/product/","name":"SLE12-SP2-HPC-Pool","installer_updates":false,"description":"SLE12-SP2-HPC-Pool for sle-12-x86_64"},{"autorefresh":false,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-HPC/12-SP2/x86_64/product_debug/","enabled":false,"id":3090,"description":"SLE12-SP2-HPC-Debuginfo-Pool for sle-12-x86_64","name":"SLE12-SP2-HPC-Debuginfo-Pool","installer_updates":false},{"installer_updates":false,"name":"SLE12-SP2-HPC-Source-Pool","description":"SLE12-SP2-HPC-Source-Pool for sle-12-x86_64","enabled":false,"id":3091,"distro_target":"sle-12-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-HPC/12-SP2/x86_64/product_source/"}],"product_type":"base","cpe":"cpe:/o:suse:sle-hpc:12:sp2","free":false,"description":"SUSE Linux Enterprise offers a comprehensive suite of products built on a single code base. The platform addresses business needs from the smallest thin-client devices to the world's most powerful high-performance computing and mainframe servers. SUSE Linux Enterprise offers common management tools and technology certifications across the platform, and each product is enterprise-class. The SUSE Linux Enterprise Server for High Performance Computing (HPC) delivers specific tools commonly used for high performance, numerically intensive workloads.","shortname":"SLE-HPC-12-SP2","eula_url":"https://updates.suse.com/SUSE/Products/SLE-HPC/12-SP2/x86_64/product.license/","arch":"x86_64","friendly_version":"12 SP2","extensions":[{"product_class":"MODULE","online_predecessor_ids":[],"repositories":[{"installer_updates":false,"name":"SLE-Module-Legacy12-Updates","description":"SLE-Module-Legacy12-Updates for sle-12-x86_64","id":1676,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/12/x86_64/update/","distro_target":"sle-12-x86_64","autorefresh":true},{"enabled":false,"id":1677,"distro_target":"sle-12-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/12/x86_64/update_debug/","installer_updates":false,"name":"SLE-Module-Legacy12-Debuginfo-Updates","description":"SLE-Module-Legacy12-Debuginfo-Updates for sle-12-x86_64"},{"name":"SLE-Module-Legacy12-Pool","installer_updates":false,"description":"SLE-Module-Legacy12-Pool for sle-12-x86_64","enabled":true,"id":1678,"autorefresh":false,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/12/x86_64/product/"},{"id":1679,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/12/x86_64/product_debug/","autorefresh":false,"distro_target":"sle-12-x86_64","name":"SLE-Module-Legacy12-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-Legacy12-Debuginfo-Pool for sle-12-x86_64"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/12/x86_64/product_source/","distro_target":"sle-12-x86_64","autorefresh":false,"id":1989,"enabled":false,"description":"SLE-Module-Legacy12-Source-Pool for sle-12-x86_64","installer_updates":false,"name":"SLE-Module-Legacy12-Source-Pool"}],"predecessor_ids":[],"cpe":"cpe:/o:suse:sle-module-legacy:12","product_type":"module","shortname":"Legacy-Module","description":"

The Legacy Module helps you migrating applications from SUSE Linux Enterprise 10 and 11 and other systems to SUSE Linux Enterprise 12, by providing packages which are discontinued on SUSE Linux Enterprise Server, such as: sendmail, syslog-ng, IBM Java6, and a number of libraries (for example openssl-0.9.8).

Access to the Legacy Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself. Packages in the this module are usually supported for at most three years. Support for Sendmail and IBM Java 6 will end in September 2017 the latest.

","free":true,"arch":"x86_64","eula_url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/12/x86_64/product.license/","friendly_version":"12","identifier":"sle-module-legacy","release_stage":"released","id":1150,"extensions":[],"version":"12","recommended":false,"migration_extra":false,"friendly_name":"Legacy Module 12 x86_64","former_identifier":"sle-module-legacy","release_type":null,"name":"Legacy Module","offline_predecessor_ids":[]},{"arch":"x86_64","eula_url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/12/x86_64/product.license/","shortname":"Web-and-Scripting-Module","description":"

The SUSE Linux Enterprise Web and Scripting Module delivers a comprehensive suite of scripting languages, frameworks, and related tools helping developers and systems administrators accelerate the creation of stable, modern web applications, using dynamic languages, such as PHP, Ruby on Rails, and Python.

Access to the Web and Scripting Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself: Package versions in the this module are usually supported for at most three years. We are planning to release more recent versions on a schedule of approximately 18 month; the exact dates may differ per package.

","free":true,"cpe":"cpe:/o:suse:sle-module-web-scripting:12","product_type":"module","repositories":[{"id":1688,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/12/x86_64/update/","distro_target":"sle-12-x86_64","autorefresh":true,"installer_updates":false,"name":"SLE-Module-Web-Scripting12-Updates","description":"SLE-Module-Web-Scripting12-Updates for sle-12-x86_64"},{"description":"SLE-Module-Web-Scripting12-Debuginfo-Updates for sle-12-x86_64","installer_updates":false,"name":"SLE-Module-Web-Scripting12-Debuginfo-Updates","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/12/x86_64/update_debug/","distro_target":"sle-12-x86_64","autorefresh":true,"id":1689,"enabled":false},{"autorefresh":false,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/12/x86_64/product/","enabled":true,"id":1690,"description":"SLE-Module-Web-Scripting12-Pool for sle-12-x86_64","name":"SLE-Module-Web-Scripting12-Pool","installer_updates":false},{"enabled":false,"id":1691,"autorefresh":false,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/12/x86_64/product_debug/","name":"SLE-Module-Web-Scripting12-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-Web-Scripting12-Debuginfo-Pool for sle-12-x86_64"},{"distro_target":"sle-12-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/12/x86_64/product_source/","enabled":false,"id":1992,"description":"SLE-Module-Web-Scripting12-Source-Pool for sle-12-x86_64","installer_updates":false,"name":"SLE-Module-Web-Scripting12-Source-Pool"}],"online_predecessor_ids":[],"product_class":"MODULE","predecessor_ids":[],"friendly_name":"Web and Scripting Module 12 x86_64","migration_extra":false,"release_type":null,"former_identifier":"sle-module-web-scripting","name":"Web and Scripting Module","offline_predecessor_ids":[],"version":"12","recommended":false,"id":1153,"release_stage":"released","identifier":"sle-module-web-scripting","extensions":[],"friendly_version":"12"},{"identifier":"sle-module-adv-systems-management","release_stage":"released","id":1212,"extensions":[],"friendly_version":"12","migration_extra":false,"friendly_name":"Advanced Systems Management Module 12 x86_64","release_type":null,"former_identifier":"sle-module-adv-systems-management","name":"Advanced Systems Management Module","offline_predecessor_ids":[],"version":"12","recommended":false,"cpe":"cpe:/o:suse:sle-module-adv-systems-management:12","product_type":"module","repositories":[{"description":"SLE-Module-Adv-Systems-Management12-Updates for sle-12-x86_64","installer_updates":false,"name":"SLE-Module-Adv-Systems-Management12-Updates","distro_target":"sle-12-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Adv-Systems-Management/12/x86_64/update/","enabled":true,"id":1704},{"distro_target":"sle-12-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Adv-Systems-Management/12/x86_64/update_debug/","enabled":false,"id":1705,"description":"SLE-Module-Adv-Systems-Management12-Debuginfo-Updates for sle-12-x86_64","installer_updates":false,"name":"SLE-Module-Adv-Systems-Management12-Debuginfo-Updates"},{"name":"SLE-Module-Adv-Systems-Management12-Pool","installer_updates":false,"description":"SLE-Module-Adv-Systems-Management12-Pool for sle-12-x86_64","enabled":true,"id":1706,"autorefresh":false,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Adv-Systems-Management/12/x86_64/product/"},{"name":"SLE-Module-Adv-Systems-Management12-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-Adv-Systems-Management12-Debuginfo-Pool for sle-12-x86_64","id":1707,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Adv-Systems-Management/12/x86_64/product_debug/","autorefresh":false,"distro_target":"sle-12-x86_64"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Adv-Systems-Management/12/x86_64/product_source/","autorefresh":false,"distro_target":"sle-12-x86_64","id":1998,"enabled":false,"description":"SLE-Module-Adv-Systems-Management12-Source-Pool for sle-12-x86_64","name":"SLE-Module-Adv-Systems-Management12-Source-Pool","installer_updates":false}],"online_predecessor_ids":[],"product_class":"MODULE","predecessor_ids":[],"arch":"x86_64","eula_url":"","shortname":"Adv-Sys-Mgmt-Module","description":"

This Module contains current versions of the popular configuration management frameworks Puppet and CFEngine as well as the new systems management toolbox called machinery.

The machinery tool will be frequently updated and is SUSE's upcoming systems management toolbox for inspecting and validating systems remotely, storing their system description and creating new systems to deploy them in datacenters and clouds.

","free":true},{"friendly_version":"12","extensions":[],"identifier":"sle-module-public-cloud","release_stage":"released","id":1220,"recommended":false,"version":"12","offline_predecessor_ids":[],"name":"Public Cloud Module","release_type":null,"former_identifier":"sle-module-public-cloud","friendly_name":"Public Cloud Module 12 x86_64","migration_extra":false,"predecessor_ids":[],"online_predecessor_ids":[],"repositories":[{"description":"SLE-Module-Public-Cloud12-Updates for sle-12-x86_64","installer_updates":false,"name":"SLE-Module-Public-Cloud12-Updates","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/12/x86_64/update/","distro_target":"sle-12-x86_64","autorefresh":true,"id":1700,"enabled":true},{"description":"SLE-Module-Public-Cloud12-Debuginfo-Updates for sle-12-x86_64","installer_updates":false,"name":"SLE-Module-Public-Cloud12-Debuginfo-Updates","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/12/x86_64/update_debug/","distro_target":"sle-12-x86_64","autorefresh":true,"id":1701,"enabled":false},{"distro_target":"sle-12-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/12/x86_64/product/","enabled":true,"id":1702,"description":"SLE-Module-Public-Cloud12-Pool for sle-12-x86_64","installer_updates":false,"name":"SLE-Module-Public-Cloud12-Pool"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/12/x86_64/product_debug/","autorefresh":false,"distro_target":"sle-12-x86_64","id":1703,"enabled":false,"description":"SLE-Module-Public-Cloud12-Debuginfo-Pool for sle-12-x86_64","name":"SLE-Module-Public-Cloud12-Debuginfo-Pool","installer_updates":false},{"id":1995,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/12/x86_64/product_source/","distro_target":"sle-12-x86_64","autorefresh":false,"installer_updates":false,"name":"SLE-Module-Public-Cloud12-Source-Pool","description":"SLE-Module-Public-Cloud12-Source-Pool for sle-12-x86_64"}],"product_class":"MODULE","product_type":"module","cpe":"cpe:/o:suse:sle-module-public-cloud:12","free":true,"shortname":"Public-Cloud-Module","description":"

The Public Cloud Module is a collection of tools that enables you to create and manage cloud images from the commandline on SUSE Linux Enterprise Server. When building your own images with KIWI or SUSE Studio, initialization code specific to the target cloud is included in that image.

Access to the Public Cloud Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself; please check the Release Notes for further details.

","eula_url":"","arch":"x86_64"},{"id":1253,"release_stage":"released","identifier":"sle-live-patching","extensions":[],"friendly_version":"12","migration_extra":false,"friendly_name":"SUSE Linux Enterprise Live Patching 12 x86_64","former_identifier":"sle-live-patching","release_type":null,"name":"SUSE Linux Enterprise Live Patching","offline_predecessor_ids":[],"version":"12","recommended":false,"cpe":"cpe:/o:suse:sle-live-patching:12","product_type":"extension","repositories":[{"installer_updates":false,"name":"SLE-Live-Patching12-Updates","description":"SLE-Live-Patching12-Updates for sle-12-x86_64","id":1741,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Live-Patching/12/x86_64/update/","distro_target":"sle-12-x86_64","autorefresh":true},{"description":"SLE-Live-Patching12-Debuginfo-Updates for sle-12-x86_64","installer_updates":false,"name":"SLE-Live-Patching12-Debuginfo-Updates","url":"https://updates.suse.com/SUSE/Updates/SLE-Live-Patching/12/x86_64/update_debug/","distro_target":"sle-12-x86_64","autorefresh":true,"id":1742,"enabled":false},{"id":1743,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Live-Patching/12/x86_64/product/","autorefresh":false,"distro_target":"sle-12-x86_64","name":"SLE-Live-Patching12-Pool","installer_updates":false,"description":"SLE-Live-Patching12-Pool for sle-12-x86_64"},{"autorefresh":false,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Live-Patching/12/x86_64/product_debug/","enabled":false,"id":1744,"description":"SLE-Live-Patching12-Debuginfo-Pool for sle-12-x86_64","name":"SLE-Live-Patching12-Debuginfo-Pool","installer_updates":false},{"name":"SLE-Live-Patching12-Source-Pool","installer_updates":false,"description":"SLE-Live-Patching12-Source-Pool for sle-12-x86_64","id":1986,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Live-Patching/12/x86_64/product_source/","autorefresh":false,"distro_target":"sle-12-x86_64"}],"online_predecessor_ids":[],"product_class":"SLE-LP","predecessor_ids":[],"arch":"x86_64","eula_url":"https://updates.suse.com/SUSE/Products/SLE-Live-Patching/12/x86_64/product.license/","shortname":"Live-Patching","description":"

SUSE Linux Enterprise Live Patching provides packages to update critical kernel modules live in SUSE Linux Enterprise. With SUSE Linux Enterprise Live Patching, you can perform critical kernel patching without shutting down your system, reducing the need for planned downtime and increasing service availability.

","free":false},{"friendly_version":"12","extensions":[],"id":1332,"release_stage":"released","identifier":"sle-module-containers","recommended":false,"version":"12","name":"Containers Module","offline_predecessor_ids":[],"friendly_name":"Containers Module 12 x86_64","migration_extra":false,"former_identifier":"sle-module-containers","release_type":null,"predecessor_ids":[],"product_class":"MODULE","online_predecessor_ids":[],"repositories":[{"description":"SLE-Module-Containers12-Updates for sle-12-x86_64","name":"SLE-Module-Containers12-Updates","installer_updates":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/12/x86_64/update/","autorefresh":true,"distro_target":"sle-12-x86_64","id":1864,"enabled":true},{"name":"SLE-Module-Containers12-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-Containers12-Debuginfo-Updates for sle-12-x86_64","id":1865,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/12/x86_64/update_debug/","autorefresh":true,"distro_target":"sle-12-x86_64"},{"description":"SLE-Module-Containers12-Pool for sle-12-x86_64","name":"SLE-Module-Containers12-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/12/x86_64/product/","enabled":true,"id":1866},{"installer_updates":false,"name":"SLE-Module-Containers12-Debuginfo-Pool","description":"SLE-Module-Containers12-Debuginfo-Pool for sle-12-x86_64","enabled":false,"id":1867,"distro_target":"sle-12-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/12/x86_64/product_debug/"},{"name":"SLE-Module-Containers12-Source-Pool","installer_updates":false,"description":"SLE-Module-Containers12-Source-Pool for sle-12-x86_64","enabled":false,"id":1957,"autorefresh":false,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/12/x86_64/product_source/"}],"cpe":"cpe:/o:suse:sle-module-containers:12","product_type":"module","description":"

This Module contains several packages revolving around containers and related tools.

","shortname":"Containers-Module","free":true,"eula_url":"","arch":"x86_64"},{"friendly_version":"12","extensions":[],"id":1341,"release_stage":"released","identifier":"sle-module-toolchain","recommended":false,"version":"12","name":"Toolchain Module","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"Toolchain Module 12 x86_64","former_identifier":"sle-module-toolchain","release_type":null,"predecessor_ids":[],"product_class":"MODULE","online_predecessor_ids":[],"repositories":[{"name":"SLE-Module-Toolchain12-Updates","installer_updates":false,"description":"SLE-Module-Toolchain12-Updates for sle-12-x86_64","id":1903,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Toolchain/12/x86_64/update/","autorefresh":true,"distro_target":"sle-12-x86_64"},{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Toolchain/12/x86_64/update_debug/","distro_target":"sle-12-x86_64","autorefresh":true,"id":1904,"enabled":false,"description":"SLE-Module-Toolchain12-Debuginfo-Updates for sle-12-x86_64","installer_updates":false,"name":"SLE-Module-Toolchain12-Debuginfo-Updates"},{"description":"SLE-Module-Toolchain12-Pool for sle-12-x86_64","name":"SLE-Module-Toolchain12-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Toolchain/12/x86_64/product/","enabled":true,"id":1905},{"name":"SLE-Module-Toolchain12-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-Toolchain12-Debuginfo-Pool for sle-12-x86_64","enabled":false,"id":1906,"autorefresh":false,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Toolchain/12/x86_64/product_debug/"}],"cpe":"cpe:/o:suse:sle-module-toolchain:12","product_type":"module","description":"Via this Module you will have access to a more recent GCC and Toolchain in addition to the default compiler of SUSE Linux Enterprise. Access to the Toolchain Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself. Please check the Release Notes for further details.","shortname":"Toolchain-Module","free":true,"eula_url":"","arch":"x86_64"},{"release_stage":"released","identifier":"SUSE-Manager-Server","id":1349,"extensions":[],"friendly_version":"3.0","release_type":null,"former_identifier":"SUSE-Manager-Server","friendly_name":"SUSE Manager Server 3.0 x86_64","migration_extra":false,"offline_predecessor_ids":[],"name":"SUSE Manager Server","version":"3.0","recommended":false,"product_type":"extension","cpe":"cpe:/o:suse:suse-manager-server:3.0","product_class":"SMS-X86","online_predecessor_ids":[],"repositories":[{"description":"SUSE-Manager-Server-3.0-Updates for sle-12-x86_64","installer_updates":false,"name":"SUSE-Manager-Server-3.0-Updates","distro_target":"sle-12-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SUSE-Manager-Server/3.0/x86_64/update/","enabled":true,"id":1949},{"url":"https://updates.suse.com/SUSE/Updates/SUSE-Manager-Server/3.0/x86_64/update_debug/","distro_target":"sle-12-x86_64","autorefresh":true,"id":1950,"enabled":false,"description":"SUSE-Manager-Server-3.0-Debuginfo-Updates for sle-12-x86_64","installer_updates":false,"name":"SUSE-Manager-Server-3.0-Debuginfo-Updates"},{"autorefresh":false,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Products/SUSE-Manager-Server/3.0/x86_64/product/","enabled":true,"id":1951,"description":"SUSE-Manager-Server-3.0-Pool for sle-12-x86_64","name":"SUSE-Manager-Server-3.0-Pool","installer_updates":false},{"name":"SUSE-Manager-Server-3.0-Debuginfo-Pool","installer_updates":false,"description":"SUSE-Manager-Server-3.0-Debuginfo-Pool for sle-12-x86_64","id":1952,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SUSE-Manager-Server/3.0/x86_64/product_debug/","autorefresh":false,"distro_target":"sle-12-x86_64"},{"enabled":false,"id":2001,"distro_target":"sle-12-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SUSE-Manager-Server/3.0/x86_64/product_source/","installer_updates":false,"name":"SUSE-Manager-Server-3.0-Source-Pool","description":"SUSE-Manager-Server-3.0-Source-Pool for sle-12-x86_64"}],"predecessor_ids":[],"arch":"x86_64","eula_url":"https://updates.suse.com/SUSE/Products/SUSE-Manager-Server/3.0/x86_64/product.license/","free":false,"shortname":"SUSE Manager Server","description":"SUSE Manager lets you efficiently manage physical, virtual, and cloud-based Linux systems. It provides automated and cost-effective configuration and software management, asset management, and system provisioning."},{"product_type":"extension","cpe":"cpe:/o:suse:suse-manager-proxy:3.0","predecessor_ids":[],"repositories":[{"id":1968,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SUSE-Manager-Proxy/3.0/x86_64/update/","distro_target":"sle-12-x86_64","autorefresh":true,"installer_updates":false,"name":"SUSE-Manager-Proxy-3.0-Updates","description":"SUSE-Manager-Proxy-3.0-Updates for sle-12-x86_64"},{"description":"SUSE-Manager-Proxy-3.0-Debuginfo-Updates for sle-12-x86_64","name":"SUSE-Manager-Proxy-3.0-Debuginfo-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Updates/SUSE-Manager-Proxy/3.0/x86_64/update_debug/","enabled":false,"id":1969},{"id":1970,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SUSE-Manager-Proxy/3.0/x86_64/product/","autorefresh":false,"distro_target":"sle-12-x86_64","name":"SUSE-Manager-Proxy-3.0-Pool","installer_updates":false,"description":"SUSE-Manager-Proxy-3.0-Pool for sle-12-x86_64"},{"id":1971,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SUSE-Manager-Proxy/3.0/x86_64/product_debug/","distro_target":"sle-12-x86_64","autorefresh":false,"installer_updates":false,"name":"SUSE-Manager-Proxy-3.0-Debuginfo-Pool","description":"SUSE-Manager-Proxy-3.0-Debuginfo-Pool for sle-12-x86_64"},{"url":"https://updates.suse.com/SUSE/Products/SUSE-Manager-Proxy/3.0/x86_64/product_source/","distro_target":"sle-12-x86_64","autorefresh":false,"id":2002,"enabled":false,"description":"SUSE-Manager-Proxy-3.0-Source-Pool for sle-12-x86_64","installer_updates":false,"name":"SUSE-Manager-Proxy-3.0-Source-Pool"}],"online_predecessor_ids":[],"product_class":"SMP","eula_url":"https://updates.suse.com/SUSE/Products/SUSE-Manager-Proxy/3.0/x86_64/product.license/","arch":"x86_64","free":false,"description":"SUSE Manager Proxies extend large and/or geographically dispersed SUSE Manager environments to reduce load on the SUSE Manager Server, lower bandwidth needs, and provide faster local updates.","shortname":"SUSE Manager Proxy","extensions":[],"release_stage":"released","id":1352,"identifier":"SUSE-Manager-Proxy","friendly_version":"3.0","offline_predecessor_ids":[],"name":"SUSE Manager Proxy","former_identifier":"SUSE-Manager-Proxy","release_type":null,"friendly_name":"SUSE Manager Proxy 3.0 x86_64","migration_extra":false,"recommended":false,"version":"3.0"},{"cpe":"cpe:/o:suse:sle-we:12:sp2","product_type":"extension","repositories":[{"enabled":true,"id":2024,"autorefresh":true,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-WE/12-SP2/x86_64/update/","name":"SLE-WE12-SP2-Updates","installer_updates":false,"description":"SLE-WE12-SP2-Updates for sle-12-x86_64"},{"installer_updates":false,"name":"SLE-WE12-SP2-Debuginfo-Updates","description":"SLE-WE12-SP2-Debuginfo-Updates for sle-12-x86_64","enabled":false,"id":2025,"distro_target":"sle-12-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-WE/12-SP2/x86_64/update_debug/"},{"installer_updates":false,"name":"SLE-WE12-SP2-Pool","description":"SLE-WE12-SP2-Pool for sle-12-x86_64","id":2026,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-WE/12-SP2/x86_64/product/","distro_target":"sle-12-x86_64","autorefresh":false},{"distro_target":"sle-12-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-WE/12-SP2/x86_64/product_debug/","enabled":false,"id":2027,"description":"SLE-WE12-SP2-Debuginfo-Pool for sle-12-x86_64","installer_updates":false,"name":"SLE-WE12-SP2-Debuginfo-Pool"},{"description":"SLE-WE12-SP2-Source-Pool for sle-12-x86_64","installer_updates":false,"name":"SLE-WE12-SP2-Source-Pool","distro_target":"sle-12-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-WE/12-SP2/x86_64/product_source/","enabled":false,"id":2028},{"description":"SLE-12-SP2-GA-Desktop-nVidia-Driver","name":"SLE-12-SP2-GA-Desktop-nVidia-Driver","installer_updates":false,"url":"http://download.nvidia.com/suse/sle12sp2/","autorefresh":true,"distro_target":null,"id":2149,"enabled":true}],"online_predecessor_ids":[1222,1338],"product_class":"SLE-WE","predecessor_ids":[1222,1338],"arch":"x86_64","eula_url":"https://updates.suse.com/SUSE/Products/SLE-WE/12-SP2/x86_64/product.license/","description":"SUSE Linux Enterprise Workstation Extension extends the functionality of SUSE Linux Enterprise Server with packages of SUSE Linux Enterprise Desktop, like additional desktop applications (office suite, email client, graphical editor ...) and libraries. It allows to combine both products to create a full featured Workstation.","shortname":"SLEWE12-SP2","free":false,"release_stage":"released","identifier":"sle-we","id":1359,"extensions":[],"friendly_version":"12 SP2","migration_extra":false,"friendly_name":"SUSE Linux Enterprise Workstation Extension 12 SP2 x86_64","former_identifier":"sle-we","release_type":null,"name":"SUSE Linux Enterprise Workstation Extension","offline_predecessor_ids":[],"version":"12.2","recommended":false},{"cpe":"cpe:/o:suse:sle-ha:12:sp2","product_type":"extension","predecessor_ids":[1245,1324],"online_predecessor_ids":[1245,1324],"product_class":"SLE-HAE-X86","repositories":[{"id":2034,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-HA/12-SP2/x86_64/update/","autorefresh":true,"distro_target":"sle-12-x86_64","name":"SLE-HA12-SP2-Updates","installer_updates":false,"description":"SLE-HA12-SP2-Updates for sle-12-x86_64"},{"installer_updates":false,"name":"SLE-HA12-SP2-Debuginfo-Updates","description":"SLE-HA12-SP2-Debuginfo-Updates for sle-12-x86_64","id":2035,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-HA/12-SP2/x86_64/update_debug/","distro_target":"sle-12-x86_64","autorefresh":true},{"id":2036,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-HA/12-SP2/x86_64/product/","autorefresh":false,"distro_target":"sle-12-x86_64","name":"SLE-HA12-SP2-Pool","installer_updates":false,"description":"SLE-HA12-SP2-Pool for sle-12-x86_64"},{"name":"SLE-HA12-SP2-Debuginfo-Pool","installer_updates":false,"description":"SLE-HA12-SP2-Debuginfo-Pool for sle-12-x86_64","enabled":false,"id":2037,"autorefresh":false,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-HA/12-SP2/x86_64/product_debug/"},{"distro_target":"sle-12-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-HA/12-SP2/x86_64/product_source/","enabled":false,"id":2038,"description":"SLE-HA12-SP2-Source-Pool for sle-12-x86_64","installer_updates":false,"name":"SLE-HA12-SP2-Source-Pool"}],"eula_url":"https://updates.suse.com/SUSE/Products/SLE-HA/12-SP2/x86_64/product.license/","arch":"x86_64","shortname":"SLEHA12-SP2","description":"SUSE Linux Enterprise High Availability Extension.","free":false,"extensions":[{"cpe":"cpe:/o:suse:sle-ha-geo:12:sp2","product_type":"extension","online_predecessor_ids":[1157,1337],"repositories":[{"installer_updates":false,"name":"SLE-HA-GEO12-SP2-Updates","description":"SLE-HA-GEO12-SP2-Updates for sle-12-x86_64","id":2044,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-HA-GEO/12-SP2/x86_64/update/","distro_target":"sle-12-x86_64","autorefresh":true},{"id":2045,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-HA-GEO/12-SP2/x86_64/update_debug/","autorefresh":true,"distro_target":"sle-12-x86_64","name":"SLE-HA-GEO12-SP2-Debuginfo-Updates","installer_updates":false,"description":"SLE-HA-GEO12-SP2-Debuginfo-Updates for sle-12-x86_64"},{"name":"SLE-HA-GEO12-SP2-Pool","installer_updates":false,"description":"SLE-HA-GEO12-SP2-Pool for sle-12-x86_64","id":2046,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-HA-GEO/12-SP2/x86_64/product/","autorefresh":false,"distro_target":"sle-12-x86_64"},{"description":"SLE-HA-GEO12-SP2-Debuginfo-Pool for sle-12-x86_64","installer_updates":false,"name":"SLE-HA-GEO12-SP2-Debuginfo-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-HA-GEO/12-SP2/x86_64/product_debug/","distro_target":"sle-12-x86_64","autorefresh":false,"id":2047,"enabled":false},{"installer_updates":false,"name":"SLE-HA-GEO12-SP2-Source-Pool","description":"SLE-HA-GEO12-SP2-Source-Pool for sle-12-x86_64","enabled":false,"id":2048,"distro_target":"sle-12-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-HA-GEO/12-SP2/x86_64/product_source/"}],"product_class":"SLE-HAE-GEO","predecessor_ids":[1157,1337],"arch":"x86_64","eula_url":"https://updates.suse.com/SUSE/Products/SLE-HA-GEO/12-SP2/x86_64/product.license/","shortname":"SLEHAGEO12-SP2","description":"SUSE Linux Enterprise High Availability Geographical Cluster Extension","free":false,"id":1363,"release_stage":"released","identifier":"sle-ha-geo","extensions":[],"friendly_version":"12 SP2","migration_extra":false,"friendly_name":"SUSE Linux Enterprise High Availability GEO Extension 12 SP2 x86_64","release_type":null,"former_identifier":"sle-hae-geo","name":"SUSE Linux Enterprise High Availability GEO Extension","offline_predecessor_ids":[1101,1107,1286],"version":"12.2","recommended":false}],"release_stage":"released","id":1361,"identifier":"sle-ha","friendly_version":"12 SP2","name":"SUSE Linux Enterprise High Availability Extension","offline_predecessor_ids":[958,961,967,971,1256],"friendly_name":"SUSE Linux Enterprise High Availability Extension 12 SP2 x86_64","migration_extra":false,"release_type":null,"former_identifier":"sle-hae","recommended":false,"version":"12.2"},{"product_type":"extension","cpe":"cpe:/o:suse:sle-sdk:12:sp2","predecessor_ids":[1223,1323],"online_predecessor_ids":[1223,1323],"product_class":"SLE-SDK","repositories":[{"id":2059,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-SDK/12-SP2/x86_64/update/","distro_target":"sle-12-x86_64","autorefresh":true,"installer_updates":false,"name":"SLE-SDK12-SP2-Updates","description":"SLE-SDK12-SP2-Updates for sle-12-x86_64"},{"description":"SLE-SDK12-SP2-Debuginfo-Updates for sle-12-x86_64","name":"SLE-SDK12-SP2-Debuginfo-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-SDK/12-SP2/x86_64/update_debug/","enabled":false,"id":2060},{"enabled":true,"id":2061,"autorefresh":false,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-SDK/12-SP2/x86_64/product/","name":"SLE-SDK12-SP2-Pool","installer_updates":false,"description":"SLE-SDK12-SP2-Pool for sle-12-x86_64"},{"enabled":false,"id":2062,"autorefresh":false,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-SDK/12-SP2/x86_64/product_debug/","name":"SLE-SDK12-SP2-Debuginfo-Pool","installer_updates":false,"description":"SLE-SDK12-SP2-Debuginfo-Pool for sle-12-x86_64"},{"description":"SLE-SDK12-SP2-Source-Pool for sle-12-x86_64","name":"SLE-SDK12-SP2-Source-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-SDK/12-SP2/x86_64/product_source/","enabled":false,"id":2063}],"eula_url":"https://updates.suse.com/SUSE/Products/SLE-SDK/12-SP2/x86_64/product.license/","arch":"x86_64","free":true,"shortname":"SDK12-SP2","description":"

SUSE Linux Enterprise Software Development Kit 12 is the Software Development Kit for the family of SUSE Linux Enterprise products. It is a free of charge extension for partners and customers working with SUSE Linux Enterprise Server and Desktop and derived products.

Packages on the SDK are delivered without L3 support; maintenance updates will be done for critical security and critical non-security issues, and where needed to remain in sync with packages delivered in the SUSE Linux Enterprise Server and Desktop products.

Packages to rebuild SUSE Linux Enterprise Server are not part of the SUSE Linux Enterprise Software Development Kit.

","extensions":[],"id":1366,"release_stage":"released","identifier":"sle-sdk","friendly_version":"12 SP2","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Software Development Kit","former_identifier":"sle-sdk","release_type":null,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Software Development Kit 12 SP2 x86_64","recommended":false,"version":"12.2"},{"cpe":"cpe:/o:suse:suse-openstack-cloud:7","product_type":"extension","predecessor_ids":[1347],"product_class":"SUSE_CLOUD","online_predecessor_ids":[1347],"repositories":[{"url":"https://updates.suse.com/SUSE/Updates/OpenStack-Cloud/7/x86_64/update/","distro_target":"sle-12-x86_64","autorefresh":true,"id":2109,"enabled":true,"description":"SUSE-OpenStack-Cloud-7-Updates for sle-12-x86_64","installer_updates":false,"name":"SUSE-OpenStack-Cloud-7-Updates"},{"id":2110,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/OpenStack-Cloud/7/x86_64/update_debug/","distro_target":"sle-12-x86_64","autorefresh":true,"installer_updates":false,"name":"SUSE-OpenStack-Cloud-7-Debuginfo-Updates","description":"SUSE-OpenStack-Cloud-7-Debuginfo-Updates for sle-12-x86_64"},{"installer_updates":false,"name":"SUSE-OpenStack-Cloud-7-Pool","description":"SUSE-OpenStack-Cloud-7-Pool for sle-12-x86_64","id":2111,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/OpenStack-Cloud/7/x86_64/product/","distro_target":"sle-12-x86_64","autorefresh":false},{"installer_updates":false,"name":"SUSE-OpenStack-Cloud-7-Debuginfo-Pool","description":"SUSE-OpenStack-Cloud-7-Debuginfo-Pool for sle-12-x86_64","id":2112,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/OpenStack-Cloud/7/x86_64/product_debug/","distro_target":"sle-12-x86_64","autorefresh":false}],"eula_url":"https://updates.suse.com/SUSE/Products/OpenStack-Cloud/7/x86_64/product.license/","arch":"x86_64","shortname":"SOC7","description":"SUSE OpenStack Cloud 7","free":false,"extensions":[{"cpe":"cpe:/o:suse:openstack-cloud-magnum-orchestration:7","product_type":"module","predecessor_ids":[],"online_predecessor_ids":[],"product_class":"SUSE_CLOUD","repositories":[{"url":"https://updates.suse.com/SUSE/Updates/OpenStack-Cloud-Magnum-Orchestration/7/x86_64/update/","autorefresh":true,"distro_target":"sle-12-x86_64","id":2367,"enabled":true,"description":"OpenStack-Cloud-Magnum-Orchestration-Updates for sle-12-x86_64","name":"OpenStack-Cloud-Magnum-Orchestration-Updates","installer_updates":false},{"url":"https://updates.suse.com/SUSE/Updates/OpenStack-Cloud-Magnum-Orchestration/7/x86_64/update_debug/","distro_target":"sle-12-x86_64","autorefresh":true,"id":2368,"enabled":false,"description":"OpenStack-Cloud-Magnum-Orchestration-Debuginfo-Updates for sle-12-x86_64","installer_updates":false,"name":"OpenStack-Cloud-Magnum-Orchestration-Debuginfo-Updates"},{"description":"OpenStack-Cloud-Magnum-Orchestration-Pool for sle-12-x86_64","installer_updates":false,"name":"OpenStack-Cloud-Magnum-Orchestration-Pool","distro_target":"sle-12-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/OpenStack-Cloud-Magnum-Orchestration/7/x86_64/product/","enabled":true,"id":2369},{"enabled":false,"id":2370,"autorefresh":false,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Products/OpenStack-Cloud-Magnum-Orchestration/7/x86_64/product_debug/","name":"OpenStack-Cloud-Magnum-Orchestration-Debuginfo-Pool","installer_updates":false,"description":"OpenStack-Cloud-Magnum-Orchestration-Debuginfo-Pool for sle-12-x86_64"}],"eula_url":"","arch":"x86_64","shortname":"magnum-orchestration","description":"

This Module contains the maintenance packages for the kubernetes nodes created by Magnum.

","free":false,"extensions":[],"identifier":"openstack-cloud-magnum-orchestration","release_stage":"released","id":1485,"friendly_version":"7","name":"Magnum Orchestration","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"Magnum Orchestration 7 x86_64","former_identifier":"openstack-cloud-magnum-orchestration","release_type":null,"recommended":false,"version":"7"}],"id":1381,"release_stage":"released","identifier":"suse-openstack-cloud","friendly_version":"7","name":"SUSE OpenStack Cloud","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"SUSE OpenStack Cloud 7 x86_64","release_type":null,"former_identifier":"suse-openstack-cloud","recommended":false,"version":"7"},{"eula_url":"https://updates.suse.com/SUSE/Products/Storage/4/x86_64/product.license/","arch":"x86_64","free":false,"shortname":"SES4","description":"SUSE Enterprise Storage 4 for SUSE Linux Enterprise Server 12-SP2, powered by Ceph.","product_type":"extension","cpe":"cpe:/o:suse:ses:4","predecessor_ids":[1369],"product_class":"SES","online_predecessor_ids":[1369],"repositories":[{"installer_updates":false,"name":"SUSE-Enterprise-Storage-4-Updates","description":"SUSE-Enterprise-Storage-4-Updates for sle-12-x86_64","id":2163,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/Storage/4/x86_64/update/","distro_target":"sle-12-x86_64","autorefresh":true},{"enabled":false,"id":2164,"distro_target":"sle-12-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/Storage/4/x86_64/update_debug/","installer_updates":false,"name":"SUSE-Enterprise-Storage-4-Debuginfo-Updates","description":"SUSE-Enterprise-Storage-4-Debuginfo-Updates for sle-12-x86_64"},{"name":"SUSE-Enterprise-Storage-4-Pool","installer_updates":false,"description":"SUSE-Enterprise-Storage-4-Pool for sle-12-x86_64","enabled":true,"id":2165,"autorefresh":false,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Products/Storage/4/x86_64/product/"},{"enabled":false,"id":2166,"autorefresh":false,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Products/Storage/4/x86_64/product_debug/","name":"SUSE-Enterprise-Storage-4-Debuginfo-Pool","installer_updates":false,"description":"SUSE-Enterprise-Storage-4-Debuginfo-Pool for sle-12-x86_64"},{"name":"SUSE-Enterprise-Storage-4-Source-Pool","installer_updates":false,"description":"SUSE-Enterprise-Storage-4-Source-Pool for sle-12-x86_64","id":2167,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/Storage/4/x86_64/product_source/","autorefresh":false,"distro_target":"sle-12-x86_64"}],"offline_predecessor_ids":[],"name":"SUSE Enterprise Storage","former_identifier":"ses","release_type":null,"friendly_name":"SUSE Enterprise Storage 4 x86_64","migration_extra":false,"recommended":false,"version":"4","extensions":[],"release_stage":"released","id":1416,"identifier":"ses","friendly_version":"4"},{"description":"SUSE Linux Enterprise Real Time 12 SP2 is a fully supported, real time operating system, specifically engineered to increase the predictability and reliability of your time sensitive mission critical applications, and lower costs.","shortname":"SLERT12 SP2","free":false,"eula_url":"https://updates.suse.com/SUSE/Products/SLE-RT/12-SP2/x86_64/product.license/","arch":"x86_64","predecessor_ids":[1350],"online_predecessor_ids":[1350],"repositories":[{"installer_updates":false,"name":"SLE-RT12-SP2-Updates","description":"SLE-RT12-SP2-Updates for sle-12-x86_64","enabled":true,"id":2285,"distro_target":"sle-12-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-RT/12-SP2/x86_64/update/"},{"description":"SLE-RT12-SP2-Debuginfo-Updates for sle-12-x86_64","installer_updates":false,"name":"SLE-RT12-SP2-Debuginfo-Updates","distro_target":"sle-12-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-RT/12-SP2/x86_64/update_debug/","enabled":false,"id":2286},{"autorefresh":false,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-RT/12-SP2/x86_64/product/","enabled":true,"id":2287,"description":"SLE-RT12-SP2-Pool for sle-12-x86_64","name":"SLE-RT12-SP2-Pool","installer_updates":false},{"description":"SLE-RT12-SP2-Debuginfo-Pool for sle-12-x86_64","installer_updates":false,"name":"SLE-RT12-SP2-Debuginfo-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-RT/12-SP2/x86_64/product_debug/","distro_target":"sle-12-x86_64","autorefresh":false,"id":2288,"enabled":false}],"product_class":"SUSE_RT","cpe":"cpe:/o:suse:suse-linux-enterprise-rt:12:sp2","product_type":"extension","recommended":false,"version":"12.2","name":"SUSE Linux Enterprise Real Time","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Real Time 12 SP2 x86_64","former_identifier":"SUSE-Linux-Enterprise-RT","release_type":null,"friendly_version":"12 SP2","extensions":[],"release_stage":"released","identifier":"SUSE-Linux-Enterprise-RT","id":1438},{"version":"12.2","recommended":false,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Point of Service Image Server 12 SP2 x86_64","release_type":null,"former_identifier":"sle-pos","name":"SUSE Linux Enterprise Point of Service Image Server","offline_predecessor_ids":[],"friendly_version":"12 SP2","id":1439,"release_stage":"released","identifier":"sle-pos","extensions":[],"shortname":"SLEPOS12","description":"SUSE Linux Enterprise Point of Service Image Server","free":false,"arch":"x86_64","eula_url":"https://updates.suse.com/SUSE/Products/SLE-POS/12-SP2/x86_64/product.license/","online_predecessor_ids":[],"product_class":"10040","repositories":[{"name":"SLE-POS12-SP2-Updates","installer_updates":false,"description":"SLE-POS12-SP2-Updates for sle-12-x86_64","enabled":true,"id":2289,"autorefresh":true,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-POS/12-SP2/x86_64/update/"},{"enabled":false,"id":2290,"distro_target":"sle-12-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-POS/12-SP2/x86_64/update_debug/","installer_updates":false,"name":"SLE-POS12-SP2-Debuginfo-Updates","description":"SLE-POS12-SP2-Debuginfo-Updates for sle-12-x86_64"},{"id":2291,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-POS/12-SP2/x86_64/product/","autorefresh":false,"distro_target":"sle-12-x86_64","name":"SLE-POS12-SP2-Pool","installer_updates":false,"description":"SLE-POS12-SP2-Pool for sle-12-x86_64"},{"name":"SLE-POS12-SP2-Debuginfo-Pool","installer_updates":false,"description":"SLE-POS12-SP2-Debuginfo-Pool for sle-12-x86_64","id":2292,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-POS/12-SP2/x86_64/product_debug/","autorefresh":false,"distro_target":"sle-12-x86_64"},{"enabled":false,"id":2293,"distro_target":"sle-12-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-POS/12-SP2/x86_64/product_source/","installer_updates":false,"name":"SLE-POS12-SP2-Source-Pool","description":"SLE-POS12-SP2-Source-Pool for sle-12-x86_64"},{"enabled":true,"id":3130,"autorefresh":true,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-POS/12-SP2-CLIENT/x86_64/update/","name":"SLE-POS12-SP2-CLIENT-Updates","installer_updates":false,"description":"SLE-POS12-SP2-CLIENT-Updates for sle-12-x86_64"},{"id":3131,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-POS/12-SP2-CLIENT/x86_64/update_debug/","distro_target":"sle-12-x86_64","autorefresh":true,"installer_updates":false,"name":"SLE-POS12-SP2-CLIENT-Debuginfo-Updates","description":"SLE-POS12-SP2-CLIENT-Debuginfo-Updates for sle-12-x86_64"}],"predecessor_ids":[],"cpe":"cpe:/o:suse:sle-pos:12:sp2","product_type":"extension"},{"description":"The SUSE Linux Enterprise Server High Performance Computing (HPC) module delivers specific tools commonly used for high performance, numerically intensive workloads. SUSE packages these tools in the SLES HPC Module to provide greater flexibility to deliver new versions or new tools more rapidly than the standard SUSE Linux Enterprise lifecycle would permit. Packages in this module are general supported till a newer version of the package is released or the package is dropped from the module.","shortname":"HPC-Module","free":true,"eula_url":"https://updates.suse.com/SUSE/Products/SLE-Module-HPC/12/x86_64/product.license/","arch":"x86_64","predecessor_ids":[],"repositories":[{"autorefresh":true,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-HPC/12/x86_64/update/","enabled":true,"id":2294,"description":"SLE-Module-HPC12-Updates for sle-12-x86_64","name":"SLE-Module-HPC12-Updates","installer_updates":false},{"distro_target":"sle-12-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-HPC/12/x86_64/update_debug/","enabled":false,"id":2295,"description":"SLE-Module-HPC12-Debuginfo-Updates for sle-12-x86_64","installer_updates":false,"name":"SLE-Module-HPC12-Debuginfo-Updates"},{"description":"SLE-Module-HPC12-Pool for sle-12-x86_64","installer_updates":false,"name":"SLE-Module-HPC12-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-HPC/12/x86_64/product/","distro_target":"sle-12-x86_64","autorefresh":false,"id":2296,"enabled":true},{"description":"SLE-Module-HPC12-Debuginfo-Pool for sle-12-x86_64","name":"SLE-Module-HPC12-Debuginfo-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-HPC/12/x86_64/product_debug/","autorefresh":false,"distro_target":"sle-12-x86_64","id":2297,"enabled":false},{"id":2298,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-HPC/12/x86_64/product_source/","distro_target":"sle-12-x86_64","autorefresh":false,"installer_updates":false,"name":"SLE-Module-HPC12-Source-Pool","description":"SLE-Module-HPC12-Source-Pool for sle-12-x86_64"}],"online_predecessor_ids":[],"product_class":"MODULE","cpe":"cpe:/o:suse:sle-module-hpc:12","product_type":"module","recommended":false,"version":"12","name":"HPC Module","offline_predecessor_ids":[],"friendly_name":"HPC Module 12 x86_64","migration_extra":false,"former_identifier":"sle-module-hpc","release_type":null,"friendly_version":"12","extensions":[],"id":1440,"release_stage":"released","identifier":"sle-module-hpc"},{"recommended":false,"version":"12.2","offline_predecessor_ids":[],"name":"SUSE Package Hub","former_identifier":"PackageHub","release_type":null,"friendly_name":"SUSE Package Hub 12 SP2 x86_64","migration_extra":false,"friendly_version":"12 SP2","extensions":[],"release_stage":"released","identifier":"PackageHub","id":1479,"free":true,"shortname":"SUSE-PackageHub-12-SP2","description":"SUSE Package Hub is a free of charge extension providing access to community maintained packages built to run on SUSE Linux Enterprise Server. Built from the same sources used in the openSUSE distributions, these quality packages provide additional software to what is found in the SUSE Linux Enterprise Server product. Packages from the Package Hub are delivered without L3 support from SUSE. General updates and fixes to the packages in SUSE Package Hub are provided by the openSUSE community based on their discretion though SUSE will monitor and ensure that any known critical security issues will be addressed. Packages in the Package Hub are approved by SUSE for use with SUSE Linux Enterprise Server 12 and to not interfere with the supportability of SUSE Linux Enterprise Server it's modules and extensions. For more information about SUSE Package Hub please visit https://packagehub.suse.com.","eula_url":"","arch":"x86_64","predecessor_ids":[1473,1476],"online_predecessor_ids":[1473,1476],"repositories":[{"enabled":true,"id":2345,"autorefresh":false,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Backports/SLE-12-SP2_x86_64/standard/","name":"SUSE-PackageHub-12-SP2-Standard-Pool","installer_updates":false,"description":"SUSE-PackageHub-12-SP2-Standard-Pool for sle-12-x86_64"},{"id":2346,"enabled":false,"url":"https://updates.suse.com/SUSE/Backports/SLE-12-SP2_x86_64/standard_debug/","autorefresh":true,"distro_target":"sle-12-x86_64","name":"SUSE-PackageHub-12-SP2-Debuginfo","installer_updates":false,"description":"SUSE-PackageHub-12-SP2-Debuginfo for sle-12-x86_64"},{"installer_updates":false,"name":"SUSE-PackageHub-12-SP2-Pool","description":"SUSE-PackageHub-12-SP2-Pool for sle-12-x86_64","id":2347,"enabled":true,"url":"https://updates.suse.com/SUSE/Backports/SLE-12-SP2_x86_64/product/","distro_target":"sle-12-x86_64","autorefresh":false}],"product_class":"7261","product_type":"extension","cpe":"cpe:/o:suse:packagehub:12:sp2"},{"friendly_version":"3.1","extensions":[],"identifier":"SUSE-Manager-Server","release_stage":"released","id":1518,"recommended":false,"version":"3.1","name":"SUSE Manager Server","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"SUSE Manager Server 3.1 x86_64","release_type":null,"former_identifier":"SUSE-Manager-Server","predecessor_ids":[1349],"repositories":[{"name":"SUSE-Manager-Server-3.1-Updates","installer_updates":false,"description":"SUSE-Manager-Server-3.1-Updates for sle-12-x86_64","enabled":true,"id":2400,"autorefresh":true,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Updates/SUSE-Manager-Server/3.1/x86_64/update/"},{"description":"SUSE-Manager-Server-3.1-Debuginfo-Updates for sle-12-x86_64","installer_updates":false,"name":"SUSE-Manager-Server-3.1-Debuginfo-Updates","url":"https://updates.suse.com/SUSE/Updates/SUSE-Manager-Server/3.1/x86_64/update_debug/","distro_target":"sle-12-x86_64","autorefresh":true,"id":2401,"enabled":false},{"enabled":true,"id":2402,"distro_target":"sle-12-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SUSE-Manager-Server/3.1/x86_64/product/","installer_updates":false,"name":"SUSE-Manager-Server-3.1-Pool","description":"SUSE-Manager-Server-3.1-Pool for sle-12-x86_64"},{"id":2403,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SUSE-Manager-Server/3.1/x86_64/product_debug/","distro_target":"sle-12-x86_64","autorefresh":false,"installer_updates":false,"name":"SUSE-Manager-Server-3.1-Debuginfo-Pool","description":"SUSE-Manager-Server-3.1-Debuginfo-Pool for sle-12-x86_64"},{"id":2404,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SUSE-Manager-Server/3.1/x86_64/product_source/","distro_target":"sle-12-x86_64","autorefresh":false,"installer_updates":false,"name":"SUSE-Manager-Server-3.1-Source-Pool","description":"SUSE-Manager-Server-3.1-Source-Pool for sle-12-x86_64"}],"online_predecessor_ids":[1349],"product_class":"SMS-X86","cpe":"cpe:/o:suse:suse-manager-server:3.1","product_type":"extension","shortname":"SUSE Manager Server","description":"SUSE Manager lets you efficiently manage physical, virtual, and cloud-based Linux systems. It provides automated and cost-effective configuration and software management, asset management, and system provisioning.","free":false,"eula_url":"https://updates.suse.com/SUSE/Products/SUSE-Manager-Server/3.1/x86_64/product.license/","arch":"x86_64"},{"cpe":"cpe:/o:suse:suse-manager-proxy:3.1","product_type":"extension","online_predecessor_ids":[1352],"product_class":"SMP","repositories":[{"name":"SUSE-Manager-Proxy-3.1-Updates","installer_updates":false,"description":"SUSE-Manager-Proxy-3.1-Updates for sle-12-x86_64","enabled":true,"id":2410,"autorefresh":true,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Updates/SUSE-Manager-Proxy/3.1/x86_64/update/"},{"id":2411,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SUSE-Manager-Proxy/3.1/x86_64/update_debug/","distro_target":"sle-12-x86_64","autorefresh":true,"installer_updates":false,"name":"SUSE-Manager-Proxy-3.1-Debuginfo-Updates","description":"SUSE-Manager-Proxy-3.1-Debuginfo-Updates for sle-12-x86_64"},{"installer_updates":false,"name":"SUSE-Manager-Proxy-3.1-Pool","description":"SUSE-Manager-Proxy-3.1-Pool for sle-12-x86_64","id":2412,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SUSE-Manager-Proxy/3.1/x86_64/product/","distro_target":"sle-12-x86_64","autorefresh":false},{"url":"https://updates.suse.com/SUSE/Products/SUSE-Manager-Proxy/3.1/x86_64/product_debug/","autorefresh":false,"distro_target":"sle-12-x86_64","id":2413,"enabled":false,"description":"SUSE-Manager-Proxy-3.1-Debuginfo-Pool for sle-12-x86_64","name":"SUSE-Manager-Proxy-3.1-Debuginfo-Pool","installer_updates":false},{"description":"SUSE-Manager-Proxy-3.1-Source-Pool for sle-12-x86_64","installer_updates":false,"name":"SUSE-Manager-Proxy-3.1-Source-Pool","url":"https://updates.suse.com/SUSE/Products/SUSE-Manager-Proxy/3.1/x86_64/product_source/","distro_target":"sle-12-x86_64","autorefresh":false,"id":2414,"enabled":false}],"predecessor_ids":[1352],"arch":"x86_64","eula_url":"https://updates.suse.com/SUSE/Products/SUSE-Manager-Proxy/3.1/x86_64/product.license/","description":"SUSE Manager Proxies extend large and/or geographically dispersed SUSE Manager environments to reduce load on the SUSE Manager Server, lower bandwidth needs, and provide faster local updates.","shortname":"SUSE Manager Proxy","free":false,"id":1520,"release_stage":"released","identifier":"SUSE-Manager-Proxy","extensions":[],"friendly_version":"3.1","migration_extra":false,"friendly_name":"SUSE Manager Proxy 3.1 x86_64","former_identifier":"SUSE-Manager-Proxy","release_type":null,"name":"SUSE Manager Proxy","offline_predecessor_ids":[],"version":"3.1","recommended":false},{"recommended":false,"version":"12.2","name":"SUSE Linux Enterprise Server BCL","offline_predecessor_ids":[],"friendly_name":"SUSE Linux Enterprise Server BCL 12 SP2 x86_64","migration_extra":false,"former_identifier":"SLES-BCL","release_type":null,"friendly_version":"12 SP2","extensions":[],"release_stage":"released","identifier":"SLES-BCL","id":1523,"shortname":"SLES12-SP2 BCL","description":"SUSE Linux Enterprise offers a comprehensive suite of products built on a single code base. The platform addresses business needs from the smallest thin-client devices to the world's most powerful high-performance computing and mainframe servers. SUSE Linux Enterprise offers common management tools and technology certifications across the platform, and each product is enterprise-class.","free":false,"eula_url":"","arch":"x86_64","predecessor_ids":[],"online_predecessor_ids":[],"product_class":"BCL-X86","repositories":[{"enabled":true,"id":2426,"distro_target":"sle-12-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-SP2-BCL/x86_64/update/","installer_updates":false,"name":"SLES12-SP2-BCL-Updates","description":"SLES12-SP2-BCL-Updates for sle-12-x86_64"},{"id":2427,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-SP2-BCL/x86_64/update_debug/","distro_target":"sle-12-x86_64","autorefresh":true,"installer_updates":false,"name":"SLES12-SP2-BCL-Debuginfo-Updates","description":"SLES12-SP2-BCL-Debuginfo-Updates for sle-12-x86_64"},{"name":"SLES12-SP2-BCL-Pool","installer_updates":false,"description":"SLES12-SP2-BCL-Pool for sle-12-x86_64","enabled":true,"id":2442,"autorefresh":false,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-SERVER/12-SP2-BCL/x86_64/product/"},{"name":"SLES12-SP2-BCL-Debuginfo-Pool","installer_updates":false,"description":"SLES12-SP2-BCL-Debuginfo-Pool for sle-12-x86_64","enabled":false,"id":2443,"autorefresh":false,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-SERVER/12-SP2-BCL/x86_64/product_debug/"},{"url":"https://updates.suse.com/SUSE/Products/SLE-SERVER/12-SP2-BCL/x86_64/product_source/","distro_target":"sle-12-x86_64","autorefresh":false,"id":2444,"enabled":false,"description":"SLES12-SP2-BCL-Source-Pool for sle-12-x86_64","installer_updates":false,"name":"SLES12-SP2-BCL-Source-Pool"}],"cpe":"cpe:/o:suse:sles-bcl:12:sp2","product_type":"extension"},{"online_predecessor_ids":[],"repositories":[{"id":2519,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SUSE-Manager-Retail/3.1/x86_64/update/","distro_target":"sle-12-x86_64","autorefresh":true,"installer_updates":false,"name":"SUSE-Manager-Retail-3.1-Updates","description":"SUSE-Manager-Retail-3.1-Updates for sle-12-x86_64"},{"distro_target":"sle-12-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SUSE-Manager-Retail/3.1/x86_64/update_debug/","enabled":false,"id":2520,"description":"SUSE-Manager-Retail-3.1-Debuginfo-Updates for sle-12-x86_64","installer_updates":false,"name":"SUSE-Manager-Retail-3.1-Debuginfo-Updates"},{"installer_updates":false,"name":"SUSE-Manager-Retail-3.1-Pool","description":"SUSE-Manager-Retail-3.1-Pool for sle-12-x86_64","enabled":true,"id":2521,"distro_target":"sle-12-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SUSE-Manager-Retail/3.1/x86_64/product/"},{"url":"https://updates.suse.com/SUSE/Products/SUSE-Manager-Retail/3.1/x86_64/product_debug/","distro_target":"sle-12-x86_64","autorefresh":false,"id":2522,"enabled":false,"description":"SUSE-Manager-Retail-3.1-Debuginfo-Pool for sle-12-x86_64","installer_updates":false,"name":"SUSE-Manager-Retail-3.1-Debuginfo-Pool"},{"enabled":false,"id":2523,"distro_target":"sle-12-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SUSE-Manager-Retail/3.1/x86_64/product_source/","installer_updates":false,"name":"SUSE-Manager-Retail-3.1-Source-Pool","description":"SUSE-Manager-Retail-3.1-Source-Pool for sle-12-x86_64"}],"product_class":"SLE-POS-AS-SMRBS-X86","predecessor_ids":[],"product_type":"extension","cpe":"cpe:/o:suse:suse-manager-retail:3.1","free":false,"shortname":"SUSE Manager for Retail","description":"SUSE Manager for Retail","arch":"x86_64","eula_url":"https://updates.suse.com/SUSE/Products/SUSE-Manager-Retail/3.1/x86_64/product.license/","friendly_version":"3.1","release_stage":"released","identifier":"suse-manager-retail","id":1574,"extensions":[],"version":"3.1","recommended":false,"release_type":null,"former_identifier":"suse-manager-retail","migration_extra":false,"friendly_name":"SUSE Manager for Retail 3.1 x86_64","offline_predecessor_ids":[],"name":"SUSE Manager for Retail"},{"online_predecessor_ids":[],"repositories":[{"description":"SLE-Module-CAP-Tools-12-Updates for sle-12-x86_64","installer_updates":false,"name":"SLE-Module-CAP-Tools-12-Updates","distro_target":"sle-12-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-CAP-Tools/12/x86_64/update/","enabled":true,"id":2912},{"id":2913,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-CAP-Tools/12/x86_64/update_debug/","distro_target":"sle-12-x86_64","autorefresh":true,"installer_updates":false,"name":"SLE-Module-CAP-Tools-12-Debuginfo-Updates","description":"SLE-Module-CAP-Tools-12-Debuginfo-Updates for sle-12-x86_64"},{"installer_updates":false,"name":"SLE-Module-CAP-Tools-12-Pool","description":"SLE-Module-CAP-Tools-12-Pool for sle-12-x86_64","enabled":true,"id":2914,"distro_target":"sle-12-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-CAP-Tools/12/x86_64/product/"},{"installer_updates":false,"name":"SLE-Module-CAP-Tools-12-Debuginfo-Pool","description":"SLE-Module-CAP-Tools-12-Debuginfo-Pool for sle-12-x86_64","enabled":false,"id":2915,"distro_target":"sle-12-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-CAP-Tools/12/x86_64/product_debug/"},{"installer_updates":false,"name":"SLE-Module-CAP-Tools-12-Source-Pool","description":"SLE-Module-CAP-Tools-12-Source-Pool for sle-12-x86_64","enabled":false,"id":2916,"distro_target":"sle-12-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-CAP-Tools/12/x86_64/product_source/"}],"product_class":"MODULE","predecessor_ids":[],"cpe":"cpe:/o:suse:sle-module-cap-tools:12","product_type":"module","description":"

The SUSE Cloud Application Platform Tools Module is a collection of tools that enables you to interact with the SUSE Cloud Application Platform product itself, providing the commandline client for instance.

Access to the SUSE Cloud Application Platform Tools Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself; please check the Release Notes for further details.

","shortname":"SUSE-CAP-Tools-Module","free":true,"arch":"x86_64","eula_url":"","friendly_version":"12","identifier":"sle-module-cap-tools","release_stage":"released","id":1678,"extensions":[],"version":"12","recommended":false,"migration_extra":false,"friendly_name":"SUSE Cloud Application Platform Tools Module 12 x86_64","former_identifier":"sle-module-cap-tools","release_type":null,"name":"SUSE Cloud Application Platform Tools Module","offline_predecessor_ids":[]},{"release_stage":"released","identifier":"SLES-LTSS","id":1739,"extensions":[],"friendly_version":"12 SP2","former_identifier":"SLES-LTSS","release_type":null,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Server LTSS 12 SP2 x86_64","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Server LTSS","version":"12.2","recommended":false,"product_type":"extension","cpe":"cpe:/o:suse:sles-ltss:12:sp2","repositories":[{"url":"https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-SP2-LTSS/x86_64/update/","distro_target":"sle-12-x86_64","autorefresh":true,"id":3048,"enabled":true,"description":"SLES12-SP2-LTSS-Updates for sle-12-x86_64","installer_updates":false,"name":"SLES12-SP2-LTSS-Updates"},{"description":"SLES12-SP2-LTSS-Debuginfo-Updates for sle-12-x86_64","name":"SLES12-SP2-LTSS-Debuginfo-Updates","installer_updates":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-SP2-LTSS/x86_64/update_debug/","autorefresh":true,"distro_target":"sle-12-x86_64","id":3049,"enabled":false}],"online_predecessor_ids":[],"product_class":"SLES12-SP2-LTSS-X86","predecessor_ids":[],"arch":"x86_64","eula_url":"","free":false,"description":"SUSE Linux Enterprise offers a comprehensive suite of products built on a single code base. The platform addresses business needs from the smallest thin-client devices to the world's most powerful high-performance computing and mainframe servers. SUSE Linux Enterprise offers common management tools and technology certifications across the platform, and each product is enterprise-class.","shortname":"SLES12-SP2 LTSS"},{"arch":"x86_64","eula_url":"","free":false,"shortname":"SLES12-SP2 ESPOS","description":"SUSE Linux Enterprise offers a comprehensive suite of products built on a single code base. The platform addresses business needs from the smallest thin-client devices to the world's most powerful high-performance computing and mainframe servers. SUSE Linux Enterprise offers common management tools and technology certifications across the platform, and each product is enterprise-class.","product_type":"extension","cpe":"cpe:/o:suse:sles-espos:12:sp2","repositories":[{"enabled":true,"id":3463,"distro_target":"sle-12-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-SP2-ESPOS/x86_64/update/","installer_updates":false,"name":"SLES12-SP2-ESPOS-Updates","description":"SLES12-SP2-ESPOS-Updates for sle-12-x86_64"},{"url":"https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-SP2-ESPOS/x86_64/update_debug/","distro_target":"sle-12-x86_64","autorefresh":true,"id":3464,"enabled":false,"description":"SLES12-SP2-ESPOS-Debuginfo-Updates for sle-12-x86_64","installer_updates":false,"name":"SLES12-SP2-ESPOS-Debuginfo-Updates"},{"name":"SLES12-SP2-ESPOS-Pool","installer_updates":false,"description":"SLES12-SP2-ESPOS-Pool for sle-12-x86_64","id":3465,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-SERVER/12-SP2-ESPOS/x86_64/product/","autorefresh":false,"distro_target":"sle-12-x86_64"},{"url":"https://updates.suse.com/SUSE/Products/SLE-SERVER/12-SP2-ESPOS/x86_64/product_debug/","distro_target":"sle-12-x86_64","autorefresh":false,"id":3466,"enabled":false,"description":"SLES12-SP2-ESPOS-Debuginfo-Pool for sle-12-x86_64","installer_updates":false,"name":"SLES12-SP2-ESPOS-Debuginfo-Pool"},{"installer_updates":false,"name":"SLES12-SP2-ESPOS-Source-Pool","description":"SLES12-SP2-ESPOS-Source-Pool for sle-12-x86_64","enabled":false,"id":3467,"distro_target":"sle-12-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-SERVER/12-SP2-ESPOS/x86_64/product_source/"}],"online_predecessor_ids":[],"product_class":"SLE-ESPOS-X86","predecessor_ids":[],"former_identifier":"SLES-ESPOS","release_type":null,"friendly_name":"SUSE Linux Enterprise Server ESPOS 12 SP2 x86_64","migration_extra":false,"offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Server ESPOS","version":"12.2","recommended":false,"release_stage":"released","identifier":"SLES-ESPOS","id":1814,"extensions":[],"friendly_version":"12 SP2"}],"release_stage":"released","id":1749,"identifier":"SLE-HPC","recommended":false,"version":"12.2","offline_predecessor_ids":[1117,1322],"name":"SUSE Linux Enterprise High Performance Computing","release_type":null,"former_identifier":"SLE-HPC","friendly_name":"SUSE Linux Enterprise High Performance Computing 12 SP2 x86_64","migration_extra":false},{"version":"12.3","recommended":false,"release_type":null,"former_identifier":"SLE-HPC","friendly_name":"SUSE Linux Enterprise High Performance Computing 12 SP3 aarch64","migration_extra":false,"offline_predecessor_ids":[1375],"name":"SUSE Linux Enterprise High Performance Computing","friendly_version":"12 SP3","release_stage":"released","id":1750,"identifier":"SLE-HPC","extensions":[{"product_type":"module","cpe":"cpe:/o:suse:sle-module-toolchain:12","online_predecessor_ids":[],"product_class":"MODULE","repositories":[{"distro_target":"sle-12-aarch64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Toolchain/12/aarch64/update/","enabled":true,"id":2086,"description":"SLE-Module-Toolchain12-Updates for sle-12-aarch64","installer_updates":false,"name":"SLE-Module-Toolchain12-Updates"},{"distro_target":"sle-12-aarch64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Toolchain/12/aarch64/update_debug/","enabled":false,"id":2087,"description":"SLE-Module-Toolchain12-Debuginfo-Updates for sle-12-aarch64","installer_updates":false,"name":"SLE-Module-Toolchain12-Debuginfo-Updates"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Toolchain/12/aarch64/product/","distro_target":"sle-12-aarch64","autorefresh":false,"id":2088,"enabled":true,"description":"SLE-Module-Toolchain12-Pool for sle-12-aarch64","installer_updates":false,"name":"SLE-Module-Toolchain12-Pool"},{"installer_updates":false,"name":"SLE-Module-Toolchain12-Debuginfo-Pool","description":"SLE-Module-Toolchain12-Debuginfo-Pool for sle-12-aarch64","id":2089,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Toolchain/12/aarch64/product_debug/","distro_target":"sle-12-aarch64","autorefresh":false}],"predecessor_ids":[],"arch":"aarch64","eula_url":"","free":true,"description":"Via this Module you will have access to a more recent GCC and Toolchain in addition to the default compiler of SUSE Linux Enterprise. Access to the Toolchain Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself. Please check the Release Notes for further details.","shortname":"Toolchain-Module","release_stage":"released","identifier":"sle-module-toolchain","id":1376,"extensions":[],"friendly_version":"12","former_identifier":"sle-module-toolchain","release_type":null,"friendly_name":"Toolchain Module 12 aarch64","migration_extra":false,"offline_predecessor_ids":[],"name":"Toolchain Module","version":"12","recommended":false},{"predecessor_ids":[1378],"product_class":"SLE-SDK","online_predecessor_ids":[1378],"repositories":[{"id":2245,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-SDK/12-SP3/aarch64/update/","distro_target":"sle-12-aarch64","autorefresh":true,"installer_updates":false,"name":"SLE-SDK12-SP3-Updates","description":"SLE-SDK12-SP3-Updates for sle-12-aarch64"},{"description":"SLE-SDK12-SP3-Debuginfo-Updates for sle-12-aarch64","installer_updates":false,"name":"SLE-SDK12-SP3-Debuginfo-Updates","distro_target":"sle-12-aarch64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-SDK/12-SP3/aarch64/update_debug/","enabled":false,"id":2246},{"url":"https://updates.suse.com/SUSE/Products/SLE-SDK/12-SP3/aarch64/product/","autorefresh":false,"distro_target":"sle-12-aarch64","id":2247,"enabled":true,"description":"SLE-SDK12-SP3-Pool for sle-12-aarch64","name":"SLE-SDK12-SP3-Pool","installer_updates":false},{"distro_target":"sle-12-aarch64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-SDK/12-SP3/aarch64/product_debug/","enabled":false,"id":2248,"description":"SLE-SDK12-SP3-Debuginfo-Pool for sle-12-aarch64","installer_updates":false,"name":"SLE-SDK12-SP3-Debuginfo-Pool"},{"description":"SLE-SDK12-SP3-Source-Pool for sle-12-aarch64","name":"SLE-SDK12-SP3-Source-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-SDK/12-SP3/aarch64/product_source/","autorefresh":false,"distro_target":"sle-12-aarch64","id":2249,"enabled":false}],"product_type":"extension","cpe":"cpe:/o:suse:sle-sdk:12:sp3","free":true,"description":"

SUSE Linux Enterprise Software Development Kit is the Software Development Kit for the family of SUSE Linux Enterprise products. It is a free of charge extension for partners and customers working with SUSE Linux Enterprise Server and Desktop and derived products.

Packages on the SDK are delivered without L3 support; maintenance updates will be done for critical security and critical non-security issues, and where needed to remain in sync with packages delivered in the SUSE Linux Enterprise Server and Desktop products.

Packages to rebuild SUSE Linux Enterprise Server are not part of the SUSE Linux Enterprise Software Development Kit.

","shortname":"SDK12-SP3","eula_url":"https://updates.suse.com/SUSE/Products/SLE-SDK/12-SP3/aarch64/product.license/","arch":"aarch64","friendly_version":"12 SP3","extensions":[],"release_stage":"released","id":1430,"identifier":"sle-sdk","recommended":false,"version":"12.3","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Software Development Kit","former_identifier":"sle-sdk","release_type":null,"friendly_name":"SUSE Linux Enterprise Software Development Kit 12 SP3 aarch64","migration_extra":false},{"repositories":[{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-HPC/12/aarch64/update/","autorefresh":true,"distro_target":"sle-12-aarch64","id":2421,"enabled":true,"description":"SLE-Module-HPC12-Updates for sle-12-aarch64","name":"SLE-Module-HPC12-Updates","installer_updates":false},{"description":"SLE-Module-HPC12-Debuginfo-Updates for sle-12-aarch64","installer_updates":false,"name":"SLE-Module-HPC12-Debuginfo-Updates","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-HPC/12/aarch64/update_debug/","distro_target":"sle-12-aarch64","autorefresh":true,"id":2422,"enabled":false},{"id":2423,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-HPC/12/aarch64/product/","distro_target":"sle-12-aarch64","autorefresh":false,"installer_updates":false,"name":"SLE-Module-HPC12-Pool","description":"SLE-Module-HPC12-Pool for sle-12-aarch64"},{"autorefresh":false,"distro_target":"sle-12-aarch64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-HPC/12/aarch64/product_debug/","enabled":false,"id":2424,"description":"SLE-Module-HPC12-Debuginfo-Pool for sle-12-aarch64","name":"SLE-Module-HPC12-Debuginfo-Pool","installer_updates":false},{"name":"SLE-Module-HPC12-Source-Pool","installer_updates":false,"description":"SLE-Module-HPC12-Source-Pool for sle-12-aarch64","id":2425,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-HPC/12/aarch64/product_source/","autorefresh":false,"distro_target":"sle-12-aarch64"}],"online_predecessor_ids":[],"product_class":"MODULE","predecessor_ids":[],"product_type":"module","cpe":"cpe:/o:suse:sle-module-hpc:12","free":true,"shortname":"HPC-Module","description":"The SUSE Linux Enterprise Server High Performance Computing (HPC) module delivers specific tools commonly used for high performance, numerically intensive workloads. SUSE packages these tools in the SLES HPC Module to provide greater flexibility to deliver new versions or new tools more rapidly than the standard SUSE Linux Enterprise lifecycle would permit. Packages in this module are general supported till a newer version of the package is released or the package is dropped from the module.","arch":"aarch64","eula_url":"https://updates.suse.com/SUSE/Products/SLE-Module-HPC/12/aarch64/product.license/","friendly_version":"12","id":1522,"release_stage":"released","identifier":"sle-module-hpc","extensions":[],"version":"12","recommended":false,"release_type":null,"former_identifier":"sle-module-hpc","migration_extra":false,"friendly_name":"HPC Module 12 aarch64","offline_predecessor_ids":[],"name":"HPC Module"},{"product_type":"extension","cpe":"cpe:/o:suse:ses:5","product_class":"SES-ARM64","online_predecessor_ids":[1417],"repositories":[{"installer_updates":false,"name":"SUSE-Enterprise-Storage-5-Updates","description":"SUSE-Enterprise-Storage-5-Updates for sle-12-aarch64","id":2437,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/Storage/5/aarch64/update/","distro_target":"sle-12-aarch64","autorefresh":true},{"enabled":false,"id":2438,"autorefresh":true,"distro_target":"sle-12-aarch64","url":"https://updates.suse.com/SUSE/Updates/Storage/5/aarch64/update_debug/","name":"SUSE-Enterprise-Storage-5-Debuginfo-Updates","installer_updates":false,"description":"SUSE-Enterprise-Storage-5-Debuginfo-Updates for sle-12-aarch64"},{"name":"SUSE-Enterprise-Storage-5-Pool","installer_updates":false,"description":"SUSE-Enterprise-Storage-5-Pool for sle-12-aarch64","id":2439,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/Storage/5/aarch64/product/","autorefresh":false,"distro_target":"sle-12-aarch64"},{"name":"SUSE-Enterprise-Storage-5-Debuginfo-Pool","installer_updates":false,"description":"SUSE-Enterprise-Storage-5-Debuginfo-Pool for sle-12-aarch64","id":2440,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/Storage/5/aarch64/product_debug/","autorefresh":false,"distro_target":"sle-12-aarch64"},{"description":"SUSE-Enterprise-Storage-5-Source-Pool for sle-12-aarch64","installer_updates":false,"name":"SUSE-Enterprise-Storage-5-Source-Pool","distro_target":"sle-12-aarch64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/Storage/5/aarch64/product_source/","enabled":false,"id":2441}],"predecessor_ids":[1417],"arch":"aarch64","eula_url":"https://updates.suse.com/SUSE/Products/Storage/5/aarch64/product.license/","free":false,"shortname":"SES5","description":"SUSE Enterprise Storage 5 for SUSE Linux Enterprise Server 12-SP3, powered by Ceph.","release_stage":"released","id":1527,"identifier":"ses","extensions":[],"friendly_version":"5","former_identifier":"ses","release_type":null,"friendly_name":"SUSE Enterprise Storage 5 aarch64","migration_extra":false,"offline_predecessor_ids":[],"name":"SUSE Enterprise Storage","version":"5","recommended":false},{"identifier":"sle-module-public-cloud","release_stage":"released","id":1528,"extensions":[],"friendly_version":"12","friendly_name":"Public Cloud Module 12 aarch64","migration_extra":false,"release_type":null,"former_identifier":"sle-module-public-cloud","name":"Public Cloud Module","offline_predecessor_ids":[],"version":"12","recommended":false,"cpe":"cpe:/o:suse:sle-module-public-cloud:12","product_type":"module","repositories":[{"description":"SLE-Module-Public-Cloud12-Updates for sle-12-aarch64","installer_updates":false,"name":"SLE-Module-Public-Cloud12-Updates","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/12/aarch64/update/","distro_target":"sle-12-aarch64","autorefresh":true,"id":2157,"enabled":true},{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/12/aarch64/update_debug/","autorefresh":true,"distro_target":"sle-12-aarch64","id":2158,"enabled":false,"description":"SLE-Module-Public-Cloud12-Debuginfo-Updates for sle-12-aarch64","name":"SLE-Module-Public-Cloud12-Debuginfo-Updates","installer_updates":false},{"enabled":true,"id":2159,"distro_target":"sle-12-aarch64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/12/aarch64/product/","installer_updates":false,"name":"SLE-Module-Public-Cloud12-Pool","description":"SLE-Module-Public-Cloud12-Pool for sle-12-aarch64"},{"installer_updates":false,"name":"SLE-Module-Public-Cloud12-Debuginfo-Pool","description":"SLE-Module-Public-Cloud12-Debuginfo-Pool for sle-12-aarch64","id":2160,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/12/aarch64/product_debug/","distro_target":"sle-12-aarch64","autorefresh":false},{"id":2161,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/12/aarch64/product_source/","distro_target":"sle-12-aarch64","autorefresh":false,"installer_updates":false,"name":"SLE-Module-Public-Cloud12-Source-Pool","description":"SLE-Module-Public-Cloud12-Source-Pool for sle-12-aarch64"}],"online_predecessor_ids":[],"product_class":"MODULE","predecessor_ids":[],"arch":"aarch64","eula_url":"","shortname":"Public-Cloud-Module","description":"

The Public Cloud Module is a collection of tools that enables you to create and manage cloud images from the commandline on SUSE Linux Enterprise Server. When building your own images with KIWI or SUSE Studio, initialization code specific to the target cloud is included in that image.

Access to the Public Cloud Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself; please check the Release Notes for further details.

","free":true},{"free":true,"shortname":"SUSE-PackageHub-12-SP3","description":"SUSE Package Hub is a free of charge extension providing access to community maintained packages built to run on SUSE Linux Enterprise Server. Built from the same sources used in the openSUSE distributions, these quality packages provide additional software to what is found in the SUSE Linux Enterprise Server product. Packages from the Package Hub are delivered without L3 support from SUSE. General updates and fixes to the packages in SUSE Package Hub are provided by the openSUSE community based on their discretion though SUSE will monitor and ensure that any known critical security issues will be addressed. Packages in the Package Hub are approved by SUSE for use with SUSE Linux Enterprise Server 12 and to not interfere with the supportability of SUSE Linux Enterprise Server it's modules and extensions. For more information about SUSE Package Hub please visit https://packagehub.suse.com.","eula_url":"","arch":"aarch64","predecessor_ids":[1482],"product_class":"MODULE","online_predecessor_ids":[1482],"repositories":[{"description":"SUSE-PackageHub-12-SP3-Standard-Pool for sle-12-aarch64","name":"SUSE-PackageHub-12-SP3-Standard-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Backports/SLE-12-SP3_aarch64/standard/","autorefresh":false,"distro_target":"sle-12-aarch64","id":2454,"enabled":true},{"description":"SUSE-PackageHub-12-SP3-Debuginfo for sle-12-aarch64","name":"SUSE-PackageHub-12-SP3-Debuginfo","installer_updates":false,"url":"https://updates.suse.com/SUSE/Backports/SLE-12-SP3_aarch64/standard_debug/","autorefresh":true,"distro_target":"sle-12-aarch64","id":2455,"enabled":false},{"enabled":true,"id":2456,"distro_target":"sle-12-aarch64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Backports/SLE-12-SP3_aarch64/product/","installer_updates":false,"name":"SUSE-PackageHub-12-SP3-Pool","description":"SUSE-PackageHub-12-SP3-Pool for sle-12-aarch64"}],"product_type":"extension","cpe":"cpe:/o:suse:packagehub:12:sp3","recommended":false,"version":"12.3","offline_predecessor_ids":[],"name":"SUSE Package Hub","release_type":null,"former_identifier":"PackageHub","migration_extra":false,"friendly_name":"SUSE Package Hub 12 SP3 aarch64","friendly_version":"12 SP3","extensions":[],"identifier":"PackageHub","release_stage":"released","id":1532},{"offline_predecessor_ids":[],"name":"Web and Scripting Module","former_identifier":"sle-module-web-scripting","release_type":null,"migration_extra":false,"friendly_name":"Web and Scripting Module 12 aarch64","recommended":false,"version":"12","extensions":[],"identifier":"sle-module-web-scripting","release_stage":"released","id":1539,"friendly_version":"12","eula_url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/12/aarch64/product.license/","arch":"aarch64","free":true,"shortname":"Web-and-Scripting-Module","description":"

The SUSE Linux Enterprise Web and Scripting Module delivers a comprehensive suite of scripting languages, frameworks, and related tools helping developers and systems administrators accelerate the creation of stable, modern web applications, using dynamic languages, such as PHP, Ruby on Rails, and Python.

Access to the Web and Scripting Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself: Package versions in the this module are usually supported for at most three years. We are planning to release more recent versions on a schedule of approximately 18 month; the exact dates may differ per package.

","product_type":"module","cpe":"cpe:/o:suse:sle-module-web-scripting:12","predecessor_ids":[],"online_predecessor_ids":[],"product_class":"MODULE","repositories":[{"name":"SLE-Module-Web-Scripting12-Updates","installer_updates":false,"description":"SLE-Module-Web-Scripting12-Updates for sle-12-aarch64","id":2476,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/12/aarch64/update/","autorefresh":true,"distro_target":"sle-12-aarch64"},{"id":2477,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/12/aarch64/update_debug/","autorefresh":true,"distro_target":"sle-12-aarch64","name":"SLE-Module-Web-Scripting12-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-Web-Scripting12-Debuginfo-Updates for sle-12-aarch64"},{"id":2478,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/12/aarch64/product/","autorefresh":false,"distro_target":"sle-12-aarch64","name":"SLE-Module-Web-Scripting12-Pool","installer_updates":false,"description":"SLE-Module-Web-Scripting12-Pool for sle-12-aarch64"},{"distro_target":"sle-12-aarch64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/12/aarch64/product_debug/","enabled":false,"id":2479,"description":"SLE-Module-Web-Scripting12-Debuginfo-Pool for sle-12-aarch64","installer_updates":false,"name":"SLE-Module-Web-Scripting12-Debuginfo-Pool"},{"description":"SLE-Module-Web-Scripting12-Source-Pool for sle-12-aarch64","installer_updates":false,"name":"SLE-Module-Web-Scripting12-Source-Pool","distro_target":"sle-12-aarch64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/12/aarch64/product_source/","enabled":false,"id":2480}]},{"arch":"aarch64","eula_url":"","shortname":"SLES12-SP3 ESPOS","description":"SUSE Linux Enterprise offers a comprehensive suite of products built on a single code base. The platform addresses business needs from the smallest thin-client devices to the world's most powerful high-performance computing and mainframe servers. SUSE Linux Enterprise offers common management tools and technology certifications across the platform, and each product is enterprise-class.","free":false,"cpe":"cpe:/o:suse:sles-espos:12:sp3","product_type":"extension","online_predecessor_ids":[],"product_class":"SLE-ESPOS-ARM64","repositories":[{"distro_target":"sle-12-aarch64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-SP3-ESPOS/aarch64/update/","enabled":true,"id":3468,"description":"SLES12-SP3-ESPOS-Updates for sle-12-aarch64","installer_updates":false,"name":"SLES12-SP3-ESPOS-Updates"},{"description":"SLES12-SP3-ESPOS-Pool for sle-12-aarch64","name":"SLES12-SP3-ESPOS-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-SERVER/12-SP3-ESPOS/aarch64/product/","autorefresh":false,"distro_target":"sle-12-aarch64","id":3469,"enabled":true},{"distro_target":"sle-12-aarch64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-SERVER/12-SP3-ESPOS/aarch64/product_debug/","enabled":false,"id":3470,"description":"SLES12-SP3-ESPOS-Debuginfo-Pool for sle-12-aarch64","installer_updates":false,"name":"SLES12-SP3-ESPOS-Debuginfo-Pool"},{"url":"https://updates.suse.com/SUSE/Products/SLE-SERVER/12-SP3-ESPOS/aarch64/product_source/","autorefresh":false,"distro_target":"sle-12-aarch64","id":3471,"enabled":false,"description":"SLES12-SP3-ESPOS-Source-Pool for sle-12-aarch64","name":"SLES12-SP3-ESPOS-Source-Pool","installer_updates":false},{"description":"SLES12-SP3-ESPOS-Debuginfo-Updates for sle-12-aarch64","name":"SLES12-SP3-ESPOS-Debuginfo-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-12-aarch64","url":"https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-SP3-ESPOS/aarch64/update_debug/","enabled":false,"id":3527}],"predecessor_ids":[],"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Server ESPOS 12 SP3 aarch64","former_identifier":"SLES-ESPOS","release_type":null,"name":"SUSE Linux Enterprise Server ESPOS","offline_predecessor_ids":[],"version":"12.3","recommended":false,"identifier":"SLES-ESPOS","release_stage":"released","id":1815,"extensions":[],"friendly_version":"12 SP3"},{"cpe":"cpe:/o:suse:sles-ltss:12:sp3","product_type":"extension","online_predecessor_ids":[],"product_class":"SLES12-SP3-LTSS-ARM64","repositories":[{"id":4290,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-SP3-LTSS/aarch64/update/","distro_target":"sle-12-aarch64","autorefresh":true,"installer_updates":false,"name":"SLES12-SP3-LTSS-Updates","description":"SLES12-SP3-LTSS-Updates for sle-12-aarch64"},{"url":"https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-SP3-LTSS/aarch64/update_debug/","distro_target":"sle-12-aarch64","autorefresh":true,"id":4291,"enabled":false,"description":"SLES12-SP3-LTSS-Debuginfo-Updates for sle-12-aarch64","installer_updates":false,"name":"SLES12-SP3-LTSS-Debuginfo-Updates"}],"predecessor_ids":[],"arch":"aarch64","eula_url":"","shortname":"SLES12-SP3 LTSS","description":"SUSE Linux Enterprise offers a comprehensive suite of products built on a single code base. The platform addresses business needs from the smallest thin-client devices to the world's most powerful high-performance computing and mainframe servers. SUSE Linux Enterprise offers common management tools and technology certifications across the platform, and each product is enterprise-class.","free":false,"id":2002,"release_stage":"released","identifier":"SLES-LTSS","extensions":[],"friendly_version":"12 SP3","migration_extra":false,"friendly_name":"SUSE Linux Enterprise Server LTSS 12 SP3 aarch64","former_identifier":"SLES-LTSS","release_type":null,"name":"SUSE Linux Enterprise Server LTSS","offline_predecessor_ids":[],"version":"12.3","recommended":false}],"free":false,"description":"SUSE Linux Enterprise offers a comprehensive suite of products built on a single code base. The platform addresses business needs from the smallest thin-client devices to the world's most powerful high-performance computing and mainframe servers. SUSE Linux Enterprise offers common management tools and technology certifications across the platform, and each product is enterprise-class. The SUSE Linux Enterprise Server for High Performance Computing (HPC) delivers specific tools commonly used for high performance, numerically intensive workloads.","shortname":"SLE-HPC-12-SP3","arch":"aarch64","eula_url":"https://updates.suse.com/SUSE/Products/SLE-HPC/12-SP3/aarch64/product.license/","online_predecessor_ids":[],"repositories":[{"id":2207,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-SP3/aarch64/update/","distro_target":"sle-12-aarch64","autorefresh":true,"installer_updates":false,"name":"SLES12-SP3-Updates","description":"SLES12-SP3-Updates for sle-12-aarch64"},{"name":"SLES12-SP3-Debuginfo-Updates","installer_updates":false,"description":"SLES12-SP3-Debuginfo-Updates for sle-12-aarch64","enabled":false,"id":2208,"autorefresh":true,"distro_target":"sle-12-aarch64","url":"https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-SP3/aarch64/update_debug/"},{"autorefresh":true,"distro_target":"sle-12-aarch64","url":"https://updates.suse.com/SUSE/Updates/SLE-SERVER-INSTALLER/12-SP3/aarch64/update/","enabled":false,"id":2209,"description":"SLES12-SP3-Installer-Updates for sle-12-aarch64","name":"SLES12-SP3-Installer-Updates","installer_updates":true},{"name":"SLES12-SP3-Pool","installer_updates":false,"description":"SLES12-SP3-Pool for sle-12-aarch64","enabled":true,"id":2210,"autorefresh":false,"distro_target":"sle-12-aarch64","url":"https://updates.suse.com/SUSE/Products/SLE-SERVER/12-SP3/aarch64/product/"},{"distro_target":"sle-12-aarch64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-SERVER/12-SP3/aarch64/product_debug/","enabled":false,"id":2211,"description":"SLES12-SP3-Debuginfo-Pool for sle-12-aarch64","installer_updates":false,"name":"SLES12-SP3-Debuginfo-Pool"},{"autorefresh":false,"distro_target":"sle-12-aarch64","url":"https://updates.suse.com/SUSE/Products/SLE-SERVER/12-SP3/aarch64/product_source/","enabled":false,"id":2212,"description":"SLES12-SP3-Source-Pool for sle-12-aarch64","name":"SLES12-SP3-Source-Pool","installer_updates":false},{"enabled":true,"id":3092,"distro_target":"sle-12-aarch64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-HPC/12-SP3/aarch64/update/","installer_updates":false,"name":"SLES12-SP3-HPC-Updates","description":"SLES12-SP3-HPC-Updates for sle-12-aarch64"},{"distro_target":"sle-12-aarch64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-HPC/12-SP3/aarch64/update_debug/","enabled":false,"id":3093,"description":"SLE12-SP3-HPC-Debuginfo-Updates for sle-12-aarch64","installer_updates":false,"name":"SLE12-SP3-HPC-Debuginfo-Updates"},{"description":"SLE12-SP3-HPC-Pool for sle-12-aarch64","installer_updates":false,"name":"SLE12-SP3-HPC-Pool","distro_target":"sle-12-aarch64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-HPC/12-SP3/aarch64/product/","enabled":true,"id":3094},{"description":"SLE12-SP3-HPC-Debuginfo-Pool for sle-12-aarch64","installer_updates":false,"name":"SLE12-SP3-HPC-Debuginfo-Pool","distro_target":"sle-12-aarch64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-HPC/12-SP3/aarch64/product_debug/","enabled":false,"id":3095},{"description":"SLE12-SP3-HPC-Source-Pool for sle-12-aarch64","installer_updates":false,"name":"SLE12-SP3-HPC-Source-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-HPC/12-SP3/aarch64/product_source/","distro_target":"sle-12-aarch64","autorefresh":false,"id":3096,"enabled":false}],"product_class":"HPC-ARM64","predecessor_ids":[],"product_type":"base","cpe":"cpe:/o:suse:sle-hpc:12:sp3"},{"predecessor_ids":[1749],"online_predecessor_ids":[1749],"repositories":[{"distro_target":"sle-12-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-SP3/x86_64/update/","enabled":true,"id":2189,"description":"SLES12-SP3-Updates for sle-12-x86_64","installer_updates":false,"name":"SLES12-SP3-Updates"},{"description":"SLES12-SP3-Debuginfo-Updates for sle-12-x86_64","name":"SLES12-SP3-Debuginfo-Updates","installer_updates":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-SP3/x86_64/update_debug/","autorefresh":true,"distro_target":"sle-12-x86_64","id":2190,"enabled":false},{"url":"https://updates.suse.com/SUSE/Updates/SLE-SERVER-INSTALLER/12-SP3/x86_64/update/","autorefresh":true,"distro_target":"sle-12-x86_64","id":2191,"enabled":false,"description":"SLES12-SP3-Installer-Updates for sle-12-x86_64","name":"SLES12-SP3-Installer-Updates","installer_updates":true},{"id":2192,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-SERVER/12-SP3/x86_64/product/","distro_target":"sle-12-x86_64","autorefresh":false,"installer_updates":false,"name":"SLES12-SP3-Pool","description":"SLES12-SP3-Pool for sle-12-x86_64"},{"enabled":false,"id":2193,"distro_target":"sle-12-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-SERVER/12-SP3/x86_64/product_debug/","installer_updates":false,"name":"SLES12-SP3-Debuginfo-Pool","description":"SLES12-SP3-Debuginfo-Pool for sle-12-x86_64"},{"url":"https://updates.suse.com/SUSE/Products/SLE-SERVER/12-SP3/x86_64/product_source/","autorefresh":false,"distro_target":"sle-12-x86_64","id":2194,"enabled":false,"description":"SLES12-SP3-Source-Pool for sle-12-x86_64","name":"SLES12-SP3-Source-Pool","installer_updates":false},{"enabled":true,"id":3097,"distro_target":"sle-12-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-HPC/12-SP3/x86_64/update/","installer_updates":false,"name":"SLE12-SP3-HPC-Updates","description":"SLE12-SP3-HPC-Updates for sle-12-x86_64"},{"autorefresh":true,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-HPC/12-SP3/x86_64/update_debug/","enabled":false,"id":3098,"description":"SLE12-SP3-HPC-Debuginfo-Updates for sle-12-x86_64","name":"SLE12-SP3-HPC-Debuginfo-Updates","installer_updates":false},{"description":"SLE12-SP3-HPC-Pool for sle-12-x86_64","installer_updates":false,"name":"SLE12-SP3-HPC-Pool","distro_target":"sle-12-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-HPC/12-SP3/x86_64/product/","enabled":true,"id":3099},{"description":"SLE12-SP3-HPC-Debuginfo-Pool for sle-12-x86_64","installer_updates":false,"name":"SLE12-SP3-HPC-Debuginfo-Pool","distro_target":"sle-12-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-HPC/12-SP3/x86_64/product_debug/","enabled":false,"id":3100},{"enabled":false,"id":3101,"autorefresh":false,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-HPC/12-SP3/x86_64/product_source/","name":"SLE12-SP3-HPC-Source-Pool","installer_updates":false,"description":"SLE12-SP3-HPC-Source-Pool for sle-12-x86_64"}],"product_class":"HPC-X86","cpe":"cpe:/o:suse:sle-hpc:12:sp3","product_type":"base","shortname":"SLE-HPC-12-SP3","description":"SUSE Linux Enterprise offers a comprehensive suite of products built on a single code base. The platform addresses business needs from the smallest thin-client devices to the world's most powerful high-performance computing and mainframe servers. SUSE Linux Enterprise offers common management tools and technology certifications across the platform, and each product is enterprise-class. The SUSE Linux Enterprise Server for High Performance Computing (HPC) delivers specific tools commonly used for high performance, numerically intensive workloads.","free":false,"eula_url":"https://updates.suse.com/SUSE/Products/SLE-HPC/12-SP3/x86_64/product.license/","arch":"x86_64","friendly_version":"12 SP3","extensions":[{"eula_url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/12/x86_64/product.license/","arch":"x86_64","free":true,"description":"

The Legacy Module helps you migrating applications from SUSE Linux Enterprise 10 and 11 and other systems to SUSE Linux Enterprise 12, by providing packages which are discontinued on SUSE Linux Enterprise Server, such as: sendmail, syslog-ng, IBM Java6, and a number of libraries (for example openssl-0.9.8).

Access to the Legacy Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself. Packages in the this module are usually supported for at most three years. Support for Sendmail and IBM Java 6 will end in September 2017 the latest.

","shortname":"Legacy-Module","product_type":"module","cpe":"cpe:/o:suse:sle-module-legacy:12","predecessor_ids":[],"repositories":[{"id":1676,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/12/x86_64/update/","distro_target":"sle-12-x86_64","autorefresh":true,"installer_updates":false,"name":"SLE-Module-Legacy12-Updates","description":"SLE-Module-Legacy12-Updates for sle-12-x86_64"},{"distro_target":"sle-12-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/12/x86_64/update_debug/","enabled":false,"id":1677,"description":"SLE-Module-Legacy12-Debuginfo-Updates for sle-12-x86_64","installer_updates":false,"name":"SLE-Module-Legacy12-Debuginfo-Updates"},{"enabled":true,"id":1678,"autorefresh":false,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/12/x86_64/product/","name":"SLE-Module-Legacy12-Pool","installer_updates":false,"description":"SLE-Module-Legacy12-Pool for sle-12-x86_64"},{"enabled":false,"id":1679,"distro_target":"sle-12-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/12/x86_64/product_debug/","installer_updates":false,"name":"SLE-Module-Legacy12-Debuginfo-Pool","description":"SLE-Module-Legacy12-Debuginfo-Pool for sle-12-x86_64"},{"id":1989,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/12/x86_64/product_source/","autorefresh":false,"distro_target":"sle-12-x86_64","name":"SLE-Module-Legacy12-Source-Pool","installer_updates":false,"description":"SLE-Module-Legacy12-Source-Pool for sle-12-x86_64"}],"online_predecessor_ids":[],"product_class":"MODULE","offline_predecessor_ids":[],"name":"Legacy Module","release_type":null,"former_identifier":"sle-module-legacy","migration_extra":false,"friendly_name":"Legacy Module 12 x86_64","recommended":false,"version":"12","extensions":[],"release_stage":"released","identifier":"sle-module-legacy","id":1150,"friendly_version":"12"},{"description":"

The SUSE Linux Enterprise Web and Scripting Module delivers a comprehensive suite of scripting languages, frameworks, and related tools helping developers and systems administrators accelerate the creation of stable, modern web applications, using dynamic languages, such as PHP, Ruby on Rails, and Python.

Access to the Web and Scripting Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself: Package versions in the this module are usually supported for at most three years. We are planning to release more recent versions on a schedule of approximately 18 month; the exact dates may differ per package.

","shortname":"Web-and-Scripting-Module","free":true,"arch":"x86_64","eula_url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/12/x86_64/product.license/","product_class":"MODULE","online_predecessor_ids":[],"repositories":[{"description":"SLE-Module-Web-Scripting12-Updates for sle-12-x86_64","name":"SLE-Module-Web-Scripting12-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/12/x86_64/update/","enabled":true,"id":1688},{"autorefresh":true,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/12/x86_64/update_debug/","enabled":false,"id":1689,"description":"SLE-Module-Web-Scripting12-Debuginfo-Updates for sle-12-x86_64","name":"SLE-Module-Web-Scripting12-Debuginfo-Updates","installer_updates":false},{"autorefresh":false,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/12/x86_64/product/","enabled":true,"id":1690,"description":"SLE-Module-Web-Scripting12-Pool for sle-12-x86_64","name":"SLE-Module-Web-Scripting12-Pool","installer_updates":false},{"installer_updates":false,"name":"SLE-Module-Web-Scripting12-Debuginfo-Pool","description":"SLE-Module-Web-Scripting12-Debuginfo-Pool for sle-12-x86_64","enabled":false,"id":1691,"distro_target":"sle-12-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/12/x86_64/product_debug/"},{"installer_updates":false,"name":"SLE-Module-Web-Scripting12-Source-Pool","description":"SLE-Module-Web-Scripting12-Source-Pool for sle-12-x86_64","enabled":false,"id":1992,"distro_target":"sle-12-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/12/x86_64/product_source/"}],"predecessor_ids":[],"cpe":"cpe:/o:suse:sle-module-web-scripting:12","product_type":"module","version":"12","recommended":false,"friendly_name":"Web and Scripting Module 12 x86_64","migration_extra":false,"former_identifier":"sle-module-web-scripting","release_type":null,"name":"Web and Scripting Module","offline_predecessor_ids":[],"friendly_version":"12","release_stage":"released","id":1153,"identifier":"sle-module-web-scripting","extensions":[]},{"version":"12","recommended":false,"former_identifier":"sle-module-adv-systems-management","release_type":null,"migration_extra":false,"friendly_name":"Advanced Systems Management Module 12 x86_64","offline_predecessor_ids":[],"name":"Advanced Systems Management Module","friendly_version":"12","release_stage":"released","id":1212,"identifier":"sle-module-adv-systems-management","extensions":[],"free":true,"description":"

This Module contains current versions of the popular configuration management frameworks Puppet and CFEngine as well as the new systems management toolbox called machinery.

The machinery tool will be frequently updated and is SUSE's upcoming systems management toolbox for inspecting and validating systems remotely, storing their system description and creating new systems to deploy them in datacenters and clouds.

","shortname":"Adv-Sys-Mgmt-Module","arch":"x86_64","eula_url":"","online_predecessor_ids":[],"product_class":"MODULE","repositories":[{"name":"SLE-Module-Adv-Systems-Management12-Updates","installer_updates":false,"description":"SLE-Module-Adv-Systems-Management12-Updates for sle-12-x86_64","id":1704,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Adv-Systems-Management/12/x86_64/update/","autorefresh":true,"distro_target":"sle-12-x86_64"},{"description":"SLE-Module-Adv-Systems-Management12-Debuginfo-Updates for sle-12-x86_64","installer_updates":false,"name":"SLE-Module-Adv-Systems-Management12-Debuginfo-Updates","distro_target":"sle-12-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Adv-Systems-Management/12/x86_64/update_debug/","enabled":false,"id":1705},{"description":"SLE-Module-Adv-Systems-Management12-Pool for sle-12-x86_64","installer_updates":false,"name":"SLE-Module-Adv-Systems-Management12-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Adv-Systems-Management/12/x86_64/product/","distro_target":"sle-12-x86_64","autorefresh":false,"id":1706,"enabled":true},{"description":"SLE-Module-Adv-Systems-Management12-Debuginfo-Pool for sle-12-x86_64","installer_updates":false,"name":"SLE-Module-Adv-Systems-Management12-Debuginfo-Pool","distro_target":"sle-12-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Adv-Systems-Management/12/x86_64/product_debug/","enabled":false,"id":1707},{"description":"SLE-Module-Adv-Systems-Management12-Source-Pool for sle-12-x86_64","installer_updates":false,"name":"SLE-Module-Adv-Systems-Management12-Source-Pool","distro_target":"sle-12-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Adv-Systems-Management/12/x86_64/product_source/","enabled":false,"id":1998}],"predecessor_ids":[],"product_type":"module","cpe":"cpe:/o:suse:sle-module-adv-systems-management:12"},{"cpe":"cpe:/o:suse:sle-module-public-cloud:12","product_type":"module","predecessor_ids":[],"online_predecessor_ids":[],"repositories":[{"description":"SLE-Module-Public-Cloud12-Updates for sle-12-x86_64","name":"SLE-Module-Public-Cloud12-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/12/x86_64/update/","enabled":true,"id":1700},{"name":"SLE-Module-Public-Cloud12-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-Public-Cloud12-Debuginfo-Updates for sle-12-x86_64","id":1701,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/12/x86_64/update_debug/","autorefresh":true,"distro_target":"sle-12-x86_64"},{"description":"SLE-Module-Public-Cloud12-Pool for sle-12-x86_64","name":"SLE-Module-Public-Cloud12-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/12/x86_64/product/","autorefresh":false,"distro_target":"sle-12-x86_64","id":1702,"enabled":true},{"description":"SLE-Module-Public-Cloud12-Debuginfo-Pool for sle-12-x86_64","name":"SLE-Module-Public-Cloud12-Debuginfo-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/12/x86_64/product_debug/","autorefresh":false,"distro_target":"sle-12-x86_64","id":1703,"enabled":false},{"distro_target":"sle-12-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/12/x86_64/product_source/","enabled":false,"id":1995,"description":"SLE-Module-Public-Cloud12-Source-Pool for sle-12-x86_64","installer_updates":false,"name":"SLE-Module-Public-Cloud12-Source-Pool"}],"product_class":"MODULE","eula_url":"","arch":"x86_64","description":"

The Public Cloud Module is a collection of tools that enables you to create and manage cloud images from the commandline on SUSE Linux Enterprise Server. When building your own images with KIWI or SUSE Studio, initialization code specific to the target cloud is included in that image.

Access to the Public Cloud Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself; please check the Release Notes for further details.

","shortname":"Public-Cloud-Module","free":true,"extensions":[],"release_stage":"released","id":1220,"identifier":"sle-module-public-cloud","friendly_version":"12","name":"Public Cloud Module","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"Public Cloud Module 12 x86_64","former_identifier":"sle-module-public-cloud","release_type":null,"recommended":false,"version":"12"},{"eula_url":"","arch":"x86_64","shortname":"Containers-Module","description":"

This Module contains several packages revolving around containers and related tools.

","free":true,"cpe":"cpe:/o:suse:sle-module-containers:12","product_type":"module","predecessor_ids":[],"product_class":"MODULE","online_predecessor_ids":[],"repositories":[{"enabled":true,"id":1864,"autorefresh":true,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/12/x86_64/update/","name":"SLE-Module-Containers12-Updates","installer_updates":false,"description":"SLE-Module-Containers12-Updates for sle-12-x86_64"},{"distro_target":"sle-12-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/12/x86_64/update_debug/","enabled":false,"id":1865,"description":"SLE-Module-Containers12-Debuginfo-Updates for sle-12-x86_64","installer_updates":false,"name":"SLE-Module-Containers12-Debuginfo-Updates"},{"description":"SLE-Module-Containers12-Pool for sle-12-x86_64","installer_updates":false,"name":"SLE-Module-Containers12-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/12/x86_64/product/","distro_target":"sle-12-x86_64","autorefresh":false,"id":1866,"enabled":true},{"name":"SLE-Module-Containers12-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-Containers12-Debuginfo-Pool for sle-12-x86_64","enabled":false,"id":1867,"autorefresh":false,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/12/x86_64/product_debug/"},{"enabled":false,"id":1957,"autorefresh":false,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/12/x86_64/product_source/","name":"SLE-Module-Containers12-Source-Pool","installer_updates":false,"description":"SLE-Module-Containers12-Source-Pool for sle-12-x86_64"}],"name":"Containers Module","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"Containers Module 12 x86_64","former_identifier":"sle-module-containers","release_type":null,"recommended":false,"version":"12","extensions":[],"id":1332,"release_stage":"released","identifier":"sle-module-containers","friendly_version":"12"},{"release_stage":"released","identifier":"sle-module-toolchain","id":1341,"extensions":[],"friendly_version":"12","former_identifier":"sle-module-toolchain","release_type":null,"friendly_name":"Toolchain Module 12 x86_64","migration_extra":false,"offline_predecessor_ids":[],"name":"Toolchain Module","version":"12","recommended":false,"product_type":"module","cpe":"cpe:/o:suse:sle-module-toolchain:12","online_predecessor_ids":[],"product_class":"MODULE","repositories":[{"name":"SLE-Module-Toolchain12-Updates","installer_updates":false,"description":"SLE-Module-Toolchain12-Updates for sle-12-x86_64","id":1903,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Toolchain/12/x86_64/update/","autorefresh":true,"distro_target":"sle-12-x86_64"},{"distro_target":"sle-12-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Toolchain/12/x86_64/update_debug/","enabled":false,"id":1904,"description":"SLE-Module-Toolchain12-Debuginfo-Updates for sle-12-x86_64","installer_updates":false,"name":"SLE-Module-Toolchain12-Debuginfo-Updates"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Toolchain/12/x86_64/product/","distro_target":"sle-12-x86_64","autorefresh":false,"id":1905,"enabled":true,"description":"SLE-Module-Toolchain12-Pool for sle-12-x86_64","installer_updates":false,"name":"SLE-Module-Toolchain12-Pool"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Toolchain/12/x86_64/product_debug/","distro_target":"sle-12-x86_64","autorefresh":false,"id":1906,"enabled":false,"description":"SLE-Module-Toolchain12-Debuginfo-Pool for sle-12-x86_64","installer_updates":false,"name":"SLE-Module-Toolchain12-Debuginfo-Pool"}],"predecessor_ids":[],"arch":"x86_64","eula_url":"","free":true,"shortname":"Toolchain-Module","description":"Via this Module you will have access to a more recent GCC and Toolchain in addition to the default compiler of SUSE Linux Enterprise. Access to the Toolchain Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself. Please check the Release Notes for further details."},{"eula_url":"https://updates.suse.com/SUSE/Products/SUSE-Manager-Server/3.0/x86_64/product.license/","arch":"x86_64","free":false,"description":"SUSE Manager lets you efficiently manage physical, virtual, and cloud-based Linux systems. It provides automated and cost-effective configuration and software management, asset management, and system provisioning.","shortname":"SUSE Manager Server","product_type":"extension","cpe":"cpe:/o:suse:suse-manager-server:3.0","predecessor_ids":[],"repositories":[{"distro_target":"sle-12-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SUSE-Manager-Server/3.0/x86_64/update/","enabled":true,"id":1949,"description":"SUSE-Manager-Server-3.0-Updates for sle-12-x86_64","installer_updates":false,"name":"SUSE-Manager-Server-3.0-Updates"},{"distro_target":"sle-12-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SUSE-Manager-Server/3.0/x86_64/update_debug/","enabled":false,"id":1950,"description":"SUSE-Manager-Server-3.0-Debuginfo-Updates for sle-12-x86_64","installer_updates":false,"name":"SUSE-Manager-Server-3.0-Debuginfo-Updates"},{"description":"SUSE-Manager-Server-3.0-Pool for sle-12-x86_64","name":"SUSE-Manager-Server-3.0-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Products/SUSE-Manager-Server/3.0/x86_64/product/","enabled":true,"id":1951},{"id":1952,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SUSE-Manager-Server/3.0/x86_64/product_debug/","autorefresh":false,"distro_target":"sle-12-x86_64","name":"SUSE-Manager-Server-3.0-Debuginfo-Pool","installer_updates":false,"description":"SUSE-Manager-Server-3.0-Debuginfo-Pool for sle-12-x86_64"},{"name":"SUSE-Manager-Server-3.0-Source-Pool","installer_updates":false,"description":"SUSE-Manager-Server-3.0-Source-Pool for sle-12-x86_64","enabled":false,"id":2001,"autorefresh":false,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Products/SUSE-Manager-Server/3.0/x86_64/product_source/"}],"online_predecessor_ids":[],"product_class":"SMS-X86","offline_predecessor_ids":[],"name":"SUSE Manager Server","release_type":null,"former_identifier":"SUSE-Manager-Server","friendly_name":"SUSE Manager Server 3.0 x86_64","migration_extra":false,"recommended":false,"version":"3.0","extensions":[],"release_stage":"released","id":1349,"identifier":"SUSE-Manager-Server","friendly_version":"3.0"},{"predecessor_ids":[],"online_predecessor_ids":[],"repositories":[{"autorefresh":true,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Updates/SUSE-Manager-Proxy/3.0/x86_64/update/","enabled":true,"id":1968,"description":"SUSE-Manager-Proxy-3.0-Updates for sle-12-x86_64","name":"SUSE-Manager-Proxy-3.0-Updates","installer_updates":false},{"description":"SUSE-Manager-Proxy-3.0-Debuginfo-Updates for sle-12-x86_64","installer_updates":false,"name":"SUSE-Manager-Proxy-3.0-Debuginfo-Updates","url":"https://updates.suse.com/SUSE/Updates/SUSE-Manager-Proxy/3.0/x86_64/update_debug/","distro_target":"sle-12-x86_64","autorefresh":true,"id":1969,"enabled":false},{"distro_target":"sle-12-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SUSE-Manager-Proxy/3.0/x86_64/product/","enabled":true,"id":1970,"description":"SUSE-Manager-Proxy-3.0-Pool for sle-12-x86_64","installer_updates":false,"name":"SUSE-Manager-Proxy-3.0-Pool"},{"url":"https://updates.suse.com/SUSE/Products/SUSE-Manager-Proxy/3.0/x86_64/product_debug/","autorefresh":false,"distro_target":"sle-12-x86_64","id":1971,"enabled":false,"description":"SUSE-Manager-Proxy-3.0-Debuginfo-Pool for sle-12-x86_64","name":"SUSE-Manager-Proxy-3.0-Debuginfo-Pool","installer_updates":false},{"id":2002,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SUSE-Manager-Proxy/3.0/x86_64/product_source/","autorefresh":false,"distro_target":"sle-12-x86_64","name":"SUSE-Manager-Proxy-3.0-Source-Pool","installer_updates":false,"description":"SUSE-Manager-Proxy-3.0-Source-Pool for sle-12-x86_64"}],"product_class":"SMP","cpe":"cpe:/o:suse:suse-manager-proxy:3.0","product_type":"extension","shortname":"SUSE Manager Proxy","description":"SUSE Manager Proxies extend large and/or geographically dispersed SUSE Manager environments to reduce load on the SUSE Manager Server, lower bandwidth needs, and provide faster local updates.","free":false,"eula_url":"https://updates.suse.com/SUSE/Products/SUSE-Manager-Proxy/3.0/x86_64/product.license/","arch":"x86_64","friendly_version":"3.0","extensions":[],"identifier":"SUSE-Manager-Proxy","release_stage":"released","id":1352,"recommended":false,"version":"3.0","name":"SUSE Manager Proxy","offline_predecessor_ids":[],"friendly_name":"SUSE Manager Proxy 3.0 x86_64","migration_extra":false,"release_type":null,"former_identifier":"SUSE-Manager-Proxy"},{"free":true,"shortname":"SDK12-SP3","description":"

SUSE Linux Enterprise Software Development Kit is the Software Development Kit for the family of SUSE Linux Enterprise products. It is a free of charge extension for partners and customers working with SUSE Linux Enterprise Server and Desktop and derived products.

Packages on the SDK are delivered without L3 support; maintenance updates will be done for critical security and critical non-security issues, and where needed to remain in sync with packages delivered in the SUSE Linux Enterprise Server and Desktop products.

Packages to rebuild SUSE Linux Enterprise Server are not part of the SUSE Linux Enterprise Software Development Kit.

","eula_url":"https://updates.suse.com/SUSE/Products/SLE-SDK/12-SP3/x86_64/product.license/","arch":"x86_64","predecessor_ids":[1223,1323,1366],"product_class":"SLE-SDK","online_predecessor_ids":[1223,1323,1366],"repositories":[{"id":2230,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-SDK/12-SP3/x86_64/update/","distro_target":"sle-12-x86_64","autorefresh":true,"installer_updates":false,"name":"SLE-SDK12-SP3-Updates","description":"SLE-SDK12-SP3-Updates for sle-12-x86_64"},{"url":"https://updates.suse.com/SUSE/Updates/SLE-SDK/12-SP3/x86_64/update_debug/","distro_target":"sle-12-x86_64","autorefresh":true,"id":2231,"enabled":false,"description":"SLE-SDK12-SP3-Debuginfo-Updates for sle-12-x86_64","installer_updates":false,"name":"SLE-SDK12-SP3-Debuginfo-Updates"},{"id":2232,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-SDK/12-SP3/x86_64/product/","distro_target":"sle-12-x86_64","autorefresh":false,"installer_updates":false,"name":"SLE-SDK12-SP3-Pool","description":"SLE-SDK12-SP3-Pool for sle-12-x86_64"},{"url":"https://updates.suse.com/SUSE/Products/SLE-SDK/12-SP3/x86_64/product_debug/","autorefresh":false,"distro_target":"sle-12-x86_64","id":2233,"enabled":false,"description":"SLE-SDK12-SP3-Debuginfo-Pool for sle-12-x86_64","name":"SLE-SDK12-SP3-Debuginfo-Pool","installer_updates":false},{"enabled":false,"id":2234,"distro_target":"sle-12-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-SDK/12-SP3/x86_64/product_source/","installer_updates":false,"name":"SLE-SDK12-SP3-Source-Pool","description":"SLE-SDK12-SP3-Source-Pool for sle-12-x86_64"}],"product_type":"extension","cpe":"cpe:/o:suse:sle-sdk:12:sp3","recommended":false,"version":"12.3","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Software Development Kit","release_type":null,"former_identifier":"sle-sdk","friendly_name":"SUSE Linux Enterprise Software Development Kit 12 SP3 x86_64","migration_extra":false,"friendly_version":"12 SP3","extensions":[],"id":1427,"release_stage":"released","identifier":"sle-sdk"},{"predecessor_ids":[1222,1338,1359],"online_predecessor_ids":[1222,1338,1359],"product_class":"SLE-WE","repositories":[{"description":"SLE-12-SP3-GA-Desktop-nVidia-Driver","installer_updates":false,"name":"SLE-12-SP3-GA-Desktop-nVidia-Driver","url":"http://download.nvidia.com/suse/sle12sp3/","distro_target":null,"autorefresh":true,"id":2217,"enabled":true},{"id":2250,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-WE/12-SP3/x86_64/update/","distro_target":"sle-12-x86_64","autorefresh":true,"installer_updates":false,"name":"SLE-WE12-SP3-Updates","description":"SLE-WE12-SP3-Updates for sle-12-x86_64"},{"id":2251,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-WE/12-SP3/x86_64/update_debug/","autorefresh":true,"distro_target":"sle-12-x86_64","name":"SLE-WE12-SP3-Debuginfo-Updates","installer_updates":false,"description":"SLE-WE12-SP3-Debuginfo-Updates for sle-12-x86_64"},{"description":"SLE-WE12-SP3-Pool for sle-12-x86_64","name":"SLE-WE12-SP3-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-WE/12-SP3/x86_64/product/","enabled":true,"id":2252},{"name":"SLE-WE12-SP3-Debuginfo-Pool","installer_updates":false,"description":"SLE-WE12-SP3-Debuginfo-Pool for sle-12-x86_64","enabled":false,"id":2253,"autorefresh":false,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-WE/12-SP3/x86_64/product_debug/"},{"autorefresh":false,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-WE/12-SP3/x86_64/product_source/","enabled":false,"id":2254,"description":"SLE-WE12-SP3-Source-Pool for sle-12-x86_64","name":"SLE-WE12-SP3-Source-Pool","installer_updates":false}],"product_type":"extension","cpe":"cpe:/o:suse:sle-we:12:sp3","free":false,"shortname":"SLEWE12-SP3","description":"SUSE Linux Enterprise Workstation Extension extends the functionality of SUSE Linux Enterprise Server with packages of SUSE Linux Enterprise Desktop, like additional desktop applications (office suite, email client, graphical editor ...) and libraries. It allows to combine both products to create a full featured Workstation.","eula_url":"https://updates.suse.com/SUSE/Products/SLE-WE/12-SP3/x86_64/product.license/","arch":"x86_64","friendly_version":"12 SP3","extensions":[],"id":1431,"release_stage":"released","identifier":"sle-we","recommended":false,"version":"12.3","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Workstation Extension","former_identifier":"sle-we","release_type":null,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Workstation Extension 12 SP3 x86_64"},{"arch":"x86_64","eula_url":"https://updates.suse.com/SUSE/Products/SLE-HA/12-SP3/x86_64/product.license/","description":"SUSE Linux Enterprise High Availability Extension.","shortname":"SLEHA12-SP3","free":false,"cpe":"cpe:/o:suse:sle-ha:12:sp3","product_type":"extension","repositories":[{"autorefresh":true,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-HA/12-SP3/x86_64/update/","enabled":true,"id":2221,"description":"SLE-HA12-SP3-Updates for sle-12-x86_64","name":"SLE-HA12-SP3-Updates","installer_updates":false},{"name":"SLE-HA12-SP3-Debuginfo-Updates","installer_updates":false,"description":"SLE-HA12-SP3-Debuginfo-Updates for sle-12-x86_64","id":2223,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-HA/12-SP3/x86_64/update_debug/","autorefresh":true,"distro_target":"sle-12-x86_64"},{"enabled":true,"id":2225,"distro_target":"sle-12-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-HA/12-SP3/x86_64/product/","installer_updates":false,"name":"SLE-HA12-SP3-Pool","description":"SLE-HA12-SP3-Pool for sle-12-x86_64"},{"description":"SLE-HA12-SP3-Debuginfo-Pool for sle-12-x86_64","installer_updates":false,"name":"SLE-HA12-SP3-Debuginfo-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-HA/12-SP3/x86_64/product_debug/","distro_target":"sle-12-x86_64","autorefresh":false,"id":2227,"enabled":false},{"url":"https://updates.suse.com/SUSE/Products/SLE-HA/12-SP3/x86_64/product_source/","distro_target":"sle-12-x86_64","autorefresh":false,"id":2229,"enabled":false,"description":"SLE-HA12-SP3-Source-Pool for sle-12-x86_64","installer_updates":false,"name":"SLE-HA12-SP3-Source-Pool"}],"online_predecessor_ids":[1245,1324,1361],"product_class":"SLE-HAE-X86","predecessor_ids":[1245,1324,1361],"migration_extra":false,"friendly_name":"SUSE Linux Enterprise High Availability Extension 12 SP3 x86_64","release_type":null,"former_identifier":"sle-hae","name":"SUSE Linux Enterprise High Availability Extension","offline_predecessor_ids":[958,961,967,971,1256],"version":"12.3","recommended":false,"id":1432,"release_stage":"released","identifier":"sle-ha","extensions":[{"former_identifier":"sle-hae-geo","release_type":null,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise High Availability GEO Extension 12 SP3 x86_64","offline_predecessor_ids":[1101,1107,1286],"name":"SUSE Linux Enterprise High Availability GEO Extension","version":"12.3","recommended":false,"release_stage":"released","identifier":"sle-ha-geo","id":1435,"extensions":[],"friendly_version":"12 SP3","arch":"x86_64","eula_url":"https://updates.suse.com/SUSE/Products/SLE-HA-GEO/12-SP3/x86_64/product.license/","free":false,"description":"SUSE Linux Enterprise High Availability Geographical Cluster Extension","shortname":"SLEHAGEO12-SP3","product_type":"extension","cpe":"cpe:/o:suse:sle-ha-geo:12:sp3","product_class":"SLE-HAE-GEO","online_predecessor_ids":[1157,1337,1363],"repositories":[{"url":"https://updates.suse.com/SUSE/Updates/SLE-HA-GEO/12-SP3/x86_64/update/","autorefresh":true,"distro_target":"sle-12-x86_64","id":2265,"enabled":true,"description":"SLE-HA-GEO12-SP3-Updates for sle-12-x86_64","name":"SLE-HA-GEO12-SP3-Updates","installer_updates":false},{"enabled":false,"id":2266,"distro_target":"sle-12-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-HA-GEO/12-SP3/x86_64/update_debug/","installer_updates":false,"name":"SLE-HA-GEO12-SP3-Debuginfo-Updates","description":"SLE-HA-GEO12-SP3-Debuginfo-Updates for sle-12-x86_64"},{"enabled":true,"id":2267,"distro_target":"sle-12-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-HA-GEO/12-SP3/x86_64/product/","installer_updates":false,"name":"SLE-HA-GEO12-SP3-Pool","description":"SLE-HA-GEO12-SP3-Pool for sle-12-x86_64"},{"distro_target":"sle-12-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-HA-GEO/12-SP3/x86_64/product_debug/","enabled":false,"id":2268,"description":"SLE-HA-GEO12-SP3-Debuginfo-Pool for sle-12-x86_64","installer_updates":false,"name":"SLE-HA-GEO12-SP3-Debuginfo-Pool"},{"description":"SLE-HA-GEO12-SP3-Source-Pool for sle-12-x86_64","installer_updates":false,"name":"SLE-HA-GEO12-SP3-Source-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-HA-GEO/12-SP3/x86_64/product_source/","distro_target":"sle-12-x86_64","autorefresh":false,"id":2269,"enabled":false}],"predecessor_ids":[1157,1337,1363]}],"friendly_version":"12 SP3"},{"eula_url":"https://updates.suse.com/SUSE/Products/SLE-POS/12-SP2/x86_64/product.license/","arch":"x86_64","free":false,"description":"SUSE Linux Enterprise Point of Service Image Server","shortname":"SLEPOS12","product_type":"extension","cpe":"cpe:/o:suse:sle-pos:12:sp2","predecessor_ids":[],"product_class":"10040","online_predecessor_ids":[],"repositories":[{"installer_updates":false,"name":"SLE-POS12-SP2-Updates","description":"SLE-POS12-SP2-Updates for sle-12-x86_64","enabled":true,"id":2289,"distro_target":"sle-12-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-POS/12-SP2/x86_64/update/"},{"id":2290,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-POS/12-SP2/x86_64/update_debug/","distro_target":"sle-12-x86_64","autorefresh":true,"installer_updates":false,"name":"SLE-POS12-SP2-Debuginfo-Updates","description":"SLE-POS12-SP2-Debuginfo-Updates for sle-12-x86_64"},{"description":"SLE-POS12-SP2-Pool for sle-12-x86_64","installer_updates":false,"name":"SLE-POS12-SP2-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-POS/12-SP2/x86_64/product/","distro_target":"sle-12-x86_64","autorefresh":false,"id":2291,"enabled":true},{"installer_updates":false,"name":"SLE-POS12-SP2-Debuginfo-Pool","description":"SLE-POS12-SP2-Debuginfo-Pool for sle-12-x86_64","id":2292,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-POS/12-SP2/x86_64/product_debug/","distro_target":"sle-12-x86_64","autorefresh":false},{"url":"https://updates.suse.com/SUSE/Products/SLE-POS/12-SP2/x86_64/product_source/","autorefresh":false,"distro_target":"sle-12-x86_64","id":2293,"enabled":false,"description":"SLE-POS12-SP2-Source-Pool for sle-12-x86_64","name":"SLE-POS12-SP2-Source-Pool","installer_updates":false},{"distro_target":"sle-12-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-POS/12-SP2-CLIENT/x86_64/update/","enabled":true,"id":3130,"description":"SLE-POS12-SP2-CLIENT-Updates for sle-12-x86_64","installer_updates":false,"name":"SLE-POS12-SP2-CLIENT-Updates"},{"description":"SLE-POS12-SP2-CLIENT-Debuginfo-Updates for sle-12-x86_64","installer_updates":false,"name":"SLE-POS12-SP2-CLIENT-Debuginfo-Updates","distro_target":"sle-12-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-POS/12-SP2-CLIENT/x86_64/update_debug/","enabled":false,"id":3131}],"offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Point of Service Image Server","release_type":null,"former_identifier":"sle-pos","migration_extra":false,"friendly_name":"SUSE Linux Enterprise Point of Service Image Server 12 SP2 x86_64","recommended":false,"version":"12.2","extensions":[],"release_stage":"released","id":1439,"identifier":"sle-pos","friendly_version":"12 SP2"},{"description":"The SUSE Linux Enterprise Server High Performance Computing (HPC) module delivers specific tools commonly used for high performance, numerically intensive workloads. SUSE packages these tools in the SLES HPC Module to provide greater flexibility to deliver new versions or new tools more rapidly than the standard SUSE Linux Enterprise lifecycle would permit. Packages in this module are general supported till a newer version of the package is released or the package is dropped from the module.","shortname":"HPC-Module","free":true,"eula_url":"https://updates.suse.com/SUSE/Products/SLE-Module-HPC/12/x86_64/product.license/","arch":"x86_64","predecessor_ids":[],"online_predecessor_ids":[],"repositories":[{"autorefresh":true,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-HPC/12/x86_64/update/","enabled":true,"id":2294,"description":"SLE-Module-HPC12-Updates for sle-12-x86_64","name":"SLE-Module-HPC12-Updates","installer_updates":false},{"enabled":false,"id":2295,"distro_target":"sle-12-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-HPC/12/x86_64/update_debug/","installer_updates":false,"name":"SLE-Module-HPC12-Debuginfo-Updates","description":"SLE-Module-HPC12-Debuginfo-Updates for sle-12-x86_64"},{"installer_updates":false,"name":"SLE-Module-HPC12-Pool","description":"SLE-Module-HPC12-Pool for sle-12-x86_64","id":2296,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-HPC/12/x86_64/product/","distro_target":"sle-12-x86_64","autorefresh":false},{"name":"SLE-Module-HPC12-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-HPC12-Debuginfo-Pool for sle-12-x86_64","id":2297,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-HPC/12/x86_64/product_debug/","autorefresh":false,"distro_target":"sle-12-x86_64"},{"enabled":false,"id":2298,"autorefresh":false,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-HPC/12/x86_64/product_source/","name":"SLE-Module-HPC12-Source-Pool","installer_updates":false,"description":"SLE-Module-HPC12-Source-Pool for sle-12-x86_64"}],"product_class":"MODULE","cpe":"cpe:/o:suse:sle-module-hpc:12","product_type":"module","recommended":false,"version":"12","name":"HPC Module","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"HPC Module 12 x86_64","former_identifier":"sle-module-hpc","release_type":null,"friendly_version":"12","extensions":[],"identifier":"sle-module-hpc","release_stage":"released","id":1440},{"product_type":"extension","cpe":"cpe:/o:suse:suse-manager-server:3.1","predecessor_ids":[1349],"online_predecessor_ids":[1349],"repositories":[{"name":"SUSE-Manager-Server-3.1-Updates","installer_updates":false,"description":"SUSE-Manager-Server-3.1-Updates for sle-12-x86_64","enabled":true,"id":2400,"autorefresh":true,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Updates/SUSE-Manager-Server/3.1/x86_64/update/"},{"installer_updates":false,"name":"SUSE-Manager-Server-3.1-Debuginfo-Updates","description":"SUSE-Manager-Server-3.1-Debuginfo-Updates for sle-12-x86_64","id":2401,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SUSE-Manager-Server/3.1/x86_64/update_debug/","distro_target":"sle-12-x86_64","autorefresh":true},{"name":"SUSE-Manager-Server-3.1-Pool","installer_updates":false,"description":"SUSE-Manager-Server-3.1-Pool for sle-12-x86_64","id":2402,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SUSE-Manager-Server/3.1/x86_64/product/","autorefresh":false,"distro_target":"sle-12-x86_64"},{"name":"SUSE-Manager-Server-3.1-Debuginfo-Pool","installer_updates":false,"description":"SUSE-Manager-Server-3.1-Debuginfo-Pool for sle-12-x86_64","enabled":false,"id":2403,"autorefresh":false,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Products/SUSE-Manager-Server/3.1/x86_64/product_debug/"},{"url":"https://updates.suse.com/SUSE/Products/SUSE-Manager-Server/3.1/x86_64/product_source/","autorefresh":false,"distro_target":"sle-12-x86_64","id":2404,"enabled":false,"description":"SUSE-Manager-Server-3.1-Source-Pool for sle-12-x86_64","name":"SUSE-Manager-Server-3.1-Source-Pool","installer_updates":false}],"product_class":"SMS-X86","eula_url":"https://updates.suse.com/SUSE/Products/SUSE-Manager-Server/3.1/x86_64/product.license/","arch":"x86_64","free":false,"description":"SUSE Manager lets you efficiently manage physical, virtual, and cloud-based Linux systems. It provides automated and cost-effective configuration and software management, asset management, and system provisioning.","shortname":"SUSE Manager Server","extensions":[],"id":1518,"release_stage":"released","identifier":"SUSE-Manager-Server","friendly_version":"3.1","offline_predecessor_ids":[],"name":"SUSE Manager Server","former_identifier":"SUSE-Manager-Server","release_type":null,"migration_extra":false,"friendly_name":"SUSE Manager Server 3.1 x86_64","recommended":false,"version":"3.1"},{"friendly_version":"3.1","extensions":[],"identifier":"SUSE-Manager-Proxy","release_stage":"released","id":1520,"recommended":false,"version":"3.1","name":"SUSE Manager Proxy","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"SUSE Manager Proxy 3.1 x86_64","release_type":null,"former_identifier":"SUSE-Manager-Proxy","predecessor_ids":[1352],"online_predecessor_ids":[1352],"repositories":[{"url":"https://updates.suse.com/SUSE/Updates/SUSE-Manager-Proxy/3.1/x86_64/update/","distro_target":"sle-12-x86_64","autorefresh":true,"id":2410,"enabled":true,"description":"SUSE-Manager-Proxy-3.1-Updates for sle-12-x86_64","installer_updates":false,"name":"SUSE-Manager-Proxy-3.1-Updates"},{"url":"https://updates.suse.com/SUSE/Updates/SUSE-Manager-Proxy/3.1/x86_64/update_debug/","autorefresh":true,"distro_target":"sle-12-x86_64","id":2411,"enabled":false,"description":"SUSE-Manager-Proxy-3.1-Debuginfo-Updates for sle-12-x86_64","name":"SUSE-Manager-Proxy-3.1-Debuginfo-Updates","installer_updates":false},{"enabled":true,"id":2412,"autorefresh":false,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Products/SUSE-Manager-Proxy/3.1/x86_64/product/","name":"SUSE-Manager-Proxy-3.1-Pool","installer_updates":false,"description":"SUSE-Manager-Proxy-3.1-Pool for sle-12-x86_64"},{"installer_updates":false,"name":"SUSE-Manager-Proxy-3.1-Debuginfo-Pool","description":"SUSE-Manager-Proxy-3.1-Debuginfo-Pool for sle-12-x86_64","enabled":false,"id":2413,"distro_target":"sle-12-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SUSE-Manager-Proxy/3.1/x86_64/product_debug/"},{"description":"SUSE-Manager-Proxy-3.1-Source-Pool for sle-12-x86_64","name":"SUSE-Manager-Proxy-3.1-Source-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Products/SUSE-Manager-Proxy/3.1/x86_64/product_source/","enabled":false,"id":2414}],"product_class":"SMP","cpe":"cpe:/o:suse:suse-manager-proxy:3.1","product_type":"extension","shortname":"SUSE Manager Proxy","description":"SUSE Manager Proxies extend large and/or geographically dispersed SUSE Manager environments to reduce load on the SUSE Manager Server, lower bandwidth needs, and provide faster local updates.","free":false,"eula_url":"https://updates.suse.com/SUSE/Products/SUSE-Manager-Proxy/3.1/x86_64/product.license/","arch":"x86_64"},{"recommended":false,"version":"5","offline_predecessor_ids":[],"name":"SUSE Enterprise Storage","former_identifier":"ses","release_type":null,"migration_extra":false,"friendly_name":"SUSE Enterprise Storage 5 x86_64","friendly_version":"5","extensions":[],"id":1526,"release_stage":"released","identifier":"ses","free":false,"description":"SUSE Enterprise Storage 5 for SUSE Linux Enterprise Server 12-SP3, powered by Ceph.","shortname":"SES5","eula_url":"https://updates.suse.com/SUSE/Products/Storage/5/x86_64/product.license/","arch":"x86_64","predecessor_ids":[1416],"repositories":[{"description":"SUSE-Enterprise-Storage-5-Updates for sle-12-x86_64","name":"SUSE-Enterprise-Storage-5-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Updates/Storage/5/x86_64/update/","enabled":true,"id":2432},{"url":"https://updates.suse.com/SUSE/Updates/Storage/5/x86_64/update_debug/","distro_target":"sle-12-x86_64","autorefresh":true,"id":2433,"enabled":false,"description":"SUSE-Enterprise-Storage-5-Debuginfo-Updates for sle-12-x86_64","installer_updates":false,"name":"SUSE-Enterprise-Storage-5-Debuginfo-Updates"},{"url":"https://updates.suse.com/SUSE/Products/Storage/5/x86_64/product/","autorefresh":false,"distro_target":"sle-12-x86_64","id":2434,"enabled":true,"description":"SUSE-Enterprise-Storage-5-Pool for sle-12-x86_64","name":"SUSE-Enterprise-Storage-5-Pool","installer_updates":false},{"name":"SUSE-Enterprise-Storage-5-Debuginfo-Pool","installer_updates":false,"description":"SUSE-Enterprise-Storage-5-Debuginfo-Pool for sle-12-x86_64","id":2435,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/Storage/5/x86_64/product_debug/","autorefresh":false,"distro_target":"sle-12-x86_64"},{"name":"SUSE-Enterprise-Storage-5-Source-Pool","installer_updates":false,"description":"SUSE-Enterprise-Storage-5-Source-Pool for sle-12-x86_64","enabled":false,"id":2436,"autorefresh":false,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Products/Storage/5/x86_64/product_source/"}],"online_predecessor_ids":[1416],"product_class":"SES","product_type":"extension","cpe":"cpe:/o:suse:ses:5"},{"eula_url":"","arch":"x86_64","description":"SUSE Package Hub is a free of charge extension providing access to community maintained packages built to run on SUSE Linux Enterprise Server. Built from the same sources used in the openSUSE distributions, these quality packages provide additional software to what is found in the SUSE Linux Enterprise Server product. Packages from the Package Hub are delivered without L3 support from SUSE. General updates and fixes to the packages in SUSE Package Hub are provided by the openSUSE community based on their discretion though SUSE will monitor and ensure that any known critical security issues will be addressed. Packages in the Package Hub are approved by SUSE for use with SUSE Linux Enterprise Server 12 and to not interfere with the supportability of SUSE Linux Enterprise Server it's modules and extensions. For more information about SUSE Package Hub please visit https://packagehub.suse.com.","shortname":"SUSE-PackageHub-12-SP3","free":true,"cpe":"cpe:/o:suse:packagehub:12:sp3","product_type":"extension","predecessor_ids":[1473,1476,1479],"repositories":[{"url":"https://updates.suse.com/SUSE/Backports/SLE-12-SP3_x86_64/standard/","distro_target":"sle-12-x86_64","autorefresh":false,"id":2445,"enabled":true,"description":"SUSE-PackageHub-12-SP3-Standard-Pool for sle-12-x86_64","installer_updates":false,"name":"SUSE-PackageHub-12-SP3-Standard-Pool"},{"id":2446,"enabled":false,"url":"https://updates.suse.com/SUSE/Backports/SLE-12-SP3_x86_64/standard_debug/","autorefresh":true,"distro_target":"sle-12-x86_64","name":"SUSE-PackageHub-12-SP3-Debuginfo","installer_updates":false,"description":"SUSE-PackageHub-12-SP3-Debuginfo for sle-12-x86_64"},{"installer_updates":false,"name":"SUSE-PackageHub-12-SP3-Pool","description":"SUSE-PackageHub-12-SP3-Pool for sle-12-x86_64","id":2447,"enabled":true,"url":"https://updates.suse.com/SUSE/Backports/SLE-12-SP3_x86_64/product/","distro_target":"sle-12-x86_64","autorefresh":false}],"online_predecessor_ids":[1473,1476,1479],"product_class":"MODULE","name":"SUSE Package Hub","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"SUSE Package Hub 12 SP3 x86_64","former_identifier":"PackageHub","release_type":null,"recommended":false,"version":"12.3","extensions":[],"release_stage":"released","identifier":"PackageHub","id":1529,"friendly_version":"12 SP3"},{"arch":"x86_64","eula_url":"https://updates.suse.com/SUSE/Products/SLE-Live-Patching/12-SP3/x86_64/product.license/","description":"

SUSE Linux Enterprise Live Patching provides packages to update critical kernel modules live in SUSE Linux Enterprise. With SUSE Linux Enterprise Live Patching, you can perform critical kernel patching without shutting down your system, reducing the need for planned downtime and increasing service availability.

","shortname":"Live-Patching","free":false,"cpe":"cpe:/o:suse:sle-live-patching:12:sp3","product_type":"extension","product_class":"SLE-LP","online_predecessor_ids":[1253],"repositories":[{"id":2463,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Live-Patching/12-SP3/x86_64/update/","autorefresh":true,"distro_target":"sle-12-x86_64","name":"SLE-Live-Patching12-SP3-Updates","installer_updates":false,"description":"SLE-Live-Patching12-SP3-Updates for sle-12-x86_64"},{"installer_updates":false,"name":"SLE-Live-Patching12-SP3-Debuginfo-Updates","description":"SLE-Live-Patching12-SP3-Debuginfo-Updates for sle-12-x86_64","enabled":false,"id":2464,"distro_target":"sle-12-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Live-Patching/12-SP3/x86_64/update_debug/"},{"id":2465,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Live-Patching/12-SP3/x86_64/product/","autorefresh":false,"distro_target":"sle-12-x86_64","name":"SLE-Live-Patching12-SP3-Pool","installer_updates":false,"description":"SLE-Live-Patching12-SP3-Pool for sle-12-x86_64"},{"description":"SLE-Live-Patching12-SP3-Debuginfo-Pool for sle-12-x86_64","installer_updates":false,"name":"SLE-Live-Patching12-SP3-Debuginfo-Pool","distro_target":"sle-12-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Live-Patching/12-SP3/x86_64/product_debug/","enabled":false,"id":2466}],"predecessor_ids":[1253],"friendly_name":"SUSE Linux Enterprise Live Patching 12 SP3 x86_64","migration_extra":false,"former_identifier":"sle-live-patching","release_type":null,"name":"SUSE Linux Enterprise Live Patching","offline_predecessor_ids":[],"version":"12.3","recommended":false,"identifier":"sle-live-patching","release_stage":"released","id":1536,"extensions":[],"friendly_version":"12 SP3"},{"name":"SUSE Manager for Retail","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"SUSE Manager for Retail 3.1 x86_64","release_type":null,"former_identifier":"suse-manager-retail","recommended":false,"version":"3.1","extensions":[],"release_stage":"released","identifier":"suse-manager-retail","id":1574,"friendly_version":"3.1","eula_url":"https://updates.suse.com/SUSE/Products/SUSE-Manager-Retail/3.1/x86_64/product.license/","arch":"x86_64","description":"SUSE Manager for Retail","shortname":"SUSE Manager for Retail","free":false,"cpe":"cpe:/o:suse:suse-manager-retail:3.1","product_type":"extension","predecessor_ids":[],"online_predecessor_ids":[],"product_class":"SLE-POS-AS-SMRBS-X86","repositories":[{"name":"SUSE-Manager-Retail-3.1-Updates","installer_updates":false,"description":"SUSE-Manager-Retail-3.1-Updates for sle-12-x86_64","id":2519,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SUSE-Manager-Retail/3.1/x86_64/update/","autorefresh":true,"distro_target":"sle-12-x86_64"},{"distro_target":"sle-12-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SUSE-Manager-Retail/3.1/x86_64/update_debug/","enabled":false,"id":2520,"description":"SUSE-Manager-Retail-3.1-Debuginfo-Updates for sle-12-x86_64","installer_updates":false,"name":"SUSE-Manager-Retail-3.1-Debuginfo-Updates"},{"url":"https://updates.suse.com/SUSE/Products/SUSE-Manager-Retail/3.1/x86_64/product/","autorefresh":false,"distro_target":"sle-12-x86_64","id":2521,"enabled":true,"description":"SUSE-Manager-Retail-3.1-Pool for sle-12-x86_64","name":"SUSE-Manager-Retail-3.1-Pool","installer_updates":false},{"installer_updates":false,"name":"SUSE-Manager-Retail-3.1-Debuginfo-Pool","description":"SUSE-Manager-Retail-3.1-Debuginfo-Pool for sle-12-x86_64","id":2522,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SUSE-Manager-Retail/3.1/x86_64/product_debug/","distro_target":"sle-12-x86_64","autorefresh":false},{"distro_target":"sle-12-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SUSE-Manager-Retail/3.1/x86_64/product_source/","enabled":false,"id":2523,"description":"SUSE-Manager-Retail-3.1-Source-Pool for sle-12-x86_64","installer_updates":false,"name":"SUSE-Manager-Retail-3.1-Source-Pool"}]},{"product_type":"extension","cpe":"cpe:/o:suse:suse-openstack-cloud:8","online_predecessor_ids":[],"repositories":[{"distro_target":"sle-12-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/OpenStack-Cloud/8/x86_64/update/","enabled":true,"id":2691,"description":"SUSE-OpenStack-Cloud-8-Updates for sle-12-x86_64","installer_updates":false,"name":"SUSE-OpenStack-Cloud-8-Updates"},{"name":"SUSE-OpenStack-Cloud-8-Debuginfo-Updates","installer_updates":false,"description":"SUSE-OpenStack-Cloud-8-Debuginfo-Updates for sle-12-x86_64","id":2692,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/OpenStack-Cloud/8/x86_64/update_debug/","autorefresh":true,"distro_target":"sle-12-x86_64"},{"description":"SUSE-OpenStack-Cloud-8-Pool for sle-12-x86_64","name":"SUSE-OpenStack-Cloud-8-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Products/OpenStack-Cloud/8/x86_64/product/","enabled":true,"id":2693},{"distro_target":"sle-12-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/OpenStack-Cloud/8/x86_64/product_debug/","enabled":false,"id":2694,"description":"SUSE-OpenStack-Cloud-8-Debuginfo-Pool for sle-12-x86_64","installer_updates":false,"name":"SUSE-OpenStack-Cloud-8-Debuginfo-Pool"},{"name":"SUSE-OpenStack-Cloud-8-Source-Pool","installer_updates":false,"description":"SUSE-OpenStack-Cloud-8-Source-Pool for sle-12-x86_64","id":2695,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/OpenStack-Cloud/8/x86_64/product_source/","autorefresh":false,"distro_target":"sle-12-x86_64"}],"product_class":"SUSE_CLOUD","predecessor_ids":[],"arch":"x86_64","eula_url":"https://updates.suse.com/SUSE/Products/OpenStack-Cloud/8/x86_64/product.license/","free":false,"shortname":"SOC8","description":"SUSE OpenStack Cloud 8","release_stage":"released","id":1617,"identifier":"suse-openstack-cloud","extensions":[],"friendly_version":"8","former_identifier":"suse-openstack-cloud","release_type":null,"migration_extra":false,"friendly_name":"SUSE OpenStack Cloud 8 x86_64","offline_predecessor_ids":[],"name":"SUSE OpenStack Cloud","version":"8","recommended":false},{"offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Server BCL","former_identifier":"SLES-BCL","release_type":null,"friendly_name":"SUSE Linux Enterprise Server BCL 12 SP3 x86_64","migration_extra":false,"recommended":false,"version":"12.3","extensions":[],"release_stage":"released","identifier":"SLES-BCL","id":1618,"friendly_version":"12 SP3","eula_url":"","arch":"x86_64","free":false,"shortname":"SLES12-SP3 BCL","description":"SUSE Linux Enterprise offers a comprehensive suite of products built on a single code base. The platform addresses business needs from the smallest thin-client devices to the world's most powerful high-performance computing and mainframe servers. SUSE Linux Enterprise offers common management tools and technology certifications across the platform, and each product is enterprise-class.","product_type":"extension","cpe":"cpe:/o:suse:sles-bcl:12:sp3","predecessor_ids":[],"product_class":"BCL-X86","online_predecessor_ids":[],"repositories":[{"id":2696,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-SP3-BCL/x86_64/update/","autorefresh":true,"distro_target":"sle-12-x86_64","name":"SLES12-SP3-BCL-Updates","installer_updates":false,"description":"SLES12-SP3-BCL-Updates for sle-12-x86_64"},{"name":"SLES12-SP3-BCL-Debuginfo-Updates","installer_updates":false,"description":"SLES12-SP3-BCL-Debuginfo-Updates for sle-12-x86_64","enabled":false,"id":2697,"autorefresh":true,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-SP3-BCL/x86_64/update_debug/"},{"description":"SLES12-SP3-BCL-Pool for sle-12-x86_64","installer_updates":false,"name":"SLES12-SP3-BCL-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-SERVER/12-SP3-BCL/x86_64/product/","distro_target":"sle-12-x86_64","autorefresh":false,"id":2698,"enabled":true},{"name":"SLES12-SP3-BCL-Debuginfo-Pool","installer_updates":false,"description":"SLES12-SP3-BCL-Debuginfo-Pool for sle-12-x86_64","enabled":false,"id":2699,"autorefresh":false,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-SERVER/12-SP3-BCL/x86_64/product_debug/"},{"url":"https://updates.suse.com/SUSE/Products/SLE-SERVER/12-SP3-BCL/x86_64/product_source/","autorefresh":false,"distro_target":"sle-12-x86_64","id":2700,"enabled":false,"description":"SLES12-SP3-BCL-Source-Pool for sle-12-x86_64","name":"SLES12-SP3-BCL-Source-Pool","installer_updates":false}]},{"friendly_version":"12 SP3","release_stage":"released","id":1619,"identifier":"SUSE-Linux-Enterprise-RT","extensions":[],"version":"12.3","recommended":false,"release_type":null,"former_identifier":"SUSE-Linux-Enterprise-RT","friendly_name":"SUSE Linux Enterprise Real Time 12 SP3 x86_64","migration_extra":false,"offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Real Time","product_class":"SUSE_RT","online_predecessor_ids":[1438],"repositories":[{"autorefresh":true,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-RT/12-SP3/x86_64/update/","enabled":true,"id":2701,"description":"SLE-RT12-SP3-Updates for sle-12-x86_64","name":"SLE-RT12-SP3-Updates","installer_updates":false},{"installer_updates":false,"name":"SLE-RT12-SP3-Debuginfo-Updates","description":"SLE-RT12-SP3-Debuginfo-Updates for sle-12-x86_64","enabled":false,"id":2702,"distro_target":"sle-12-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-RT/12-SP3/x86_64/update_debug/"},{"description":"SLE-RT12-SP3-Pool for sle-12-x86_64","installer_updates":false,"name":"SLE-RT12-SP3-Pool","distro_target":"sle-12-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-RT/12-SP3/x86_64/product/","enabled":true,"id":2703},{"url":"https://updates.suse.com/SUSE/Products/SLE-RT/12-SP3/x86_64/product_debug/","distro_target":"sle-12-x86_64","autorefresh":false,"id":2704,"enabled":false,"description":"SLE-RT12-SP3-Debuginfo-Pool for sle-12-x86_64","installer_updates":false,"name":"SLE-RT12-SP3-Debuginfo-Pool"}],"predecessor_ids":[1438],"product_type":"extension","cpe":"cpe:/o:suse:suse-linux-enterprise-rt:12:sp3","free":false,"shortname":"SLERT12 SP3","description":"SUSE Linux Enterprise Real Time 12 SP3.","arch":"x86_64","eula_url":"https://updates.suse.com/SUSE/Products/SLE-RT/12-SP3/x86_64/product.license/"},{"id":1678,"release_stage":"released","identifier":"sle-module-cap-tools","extensions":[],"friendly_version":"12","release_type":null,"former_identifier":"sle-module-cap-tools","migration_extra":false,"friendly_name":"SUSE Cloud Application Platform Tools Module 12 x86_64","offline_predecessor_ids":[],"name":"SUSE Cloud Application Platform Tools Module","version":"12","recommended":false,"product_type":"module","cpe":"cpe:/o:suse:sle-module-cap-tools:12","product_class":"MODULE","online_predecessor_ids":[],"repositories":[{"name":"SLE-Module-CAP-Tools-12-Updates","installer_updates":false,"description":"SLE-Module-CAP-Tools-12-Updates for sle-12-x86_64","enabled":true,"id":2912,"autorefresh":true,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-CAP-Tools/12/x86_64/update/"},{"description":"SLE-Module-CAP-Tools-12-Debuginfo-Updates for sle-12-x86_64","name":"SLE-Module-CAP-Tools-12-Debuginfo-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-CAP-Tools/12/x86_64/update_debug/","enabled":false,"id":2913},{"id":2914,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-CAP-Tools/12/x86_64/product/","autorefresh":false,"distro_target":"sle-12-x86_64","name":"SLE-Module-CAP-Tools-12-Pool","installer_updates":false,"description":"SLE-Module-CAP-Tools-12-Pool for sle-12-x86_64"},{"installer_updates":false,"name":"SLE-Module-CAP-Tools-12-Debuginfo-Pool","description":"SLE-Module-CAP-Tools-12-Debuginfo-Pool for sle-12-x86_64","enabled":false,"id":2915,"distro_target":"sle-12-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-CAP-Tools/12/x86_64/product_debug/"},{"name":"SLE-Module-CAP-Tools-12-Source-Pool","installer_updates":false,"description":"SLE-Module-CAP-Tools-12-Source-Pool for sle-12-x86_64","id":2916,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-CAP-Tools/12/x86_64/product_source/","autorefresh":false,"distro_target":"sle-12-x86_64"}],"predecessor_ids":[],"arch":"x86_64","eula_url":"","free":true,"description":"

The SUSE Cloud Application Platform Tools Module is a collection of tools that enables you to interact with the SUSE Cloud Application Platform product itself, providing the commandline client for instance.

Access to the SUSE Cloud Application Platform Tools Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself; please check the Release Notes for further details.

","shortname":"SUSE-CAP-Tools-Module"},{"description":"SUSE Manager lets you efficiently manage physical, virtual, and cloud-based Linux systems. It provides automated and cost-effective configuration and software management, asset management, and system provisioning.","shortname":"SUSE Manager Server 3.2","free":false,"arch":"x86_64","eula_url":"https://updates.suse.com/SUSE/Products/SUSE-Manager-Server/3.2/x86_64/product.license/","product_class":"SMS-X86","online_predecessor_ids":[1518],"repositories":[{"description":"SUSE-Manager-Server-3.2-Updates for sle-12-x86_64","name":"SUSE-Manager-Server-3.2-Updates","installer_updates":false,"url":"https://updates.suse.com/SUSE/Updates/SUSE-Manager-Server/3.2/x86_64/update/","autorefresh":true,"distro_target":"sle-12-x86_64","id":2987,"enabled":true},{"installer_updates":false,"name":"SUSE-Manager-Server-3.2-Debuginfo-Updates","description":"SUSE-Manager-Server-3.2-Debuginfo-Updates for sle-12-x86_64","id":2988,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SUSE-Manager-Server/3.2/x86_64/update_debug/","distro_target":"sle-12-x86_64","autorefresh":true},{"description":"SUSE-Manager-Server-3.2-Pool for sle-12-x86_64","installer_updates":false,"name":"SUSE-Manager-Server-3.2-Pool","distro_target":"sle-12-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SUSE-Manager-Server/3.2/x86_64/product/","enabled":true,"id":2989},{"autorefresh":false,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Products/SUSE-Manager-Server/3.2/x86_64/product_debug/","enabled":false,"id":2990,"description":"SUSE-Manager-Server-3.2-Debuginfo-Pool for sle-12-x86_64","name":"SUSE-Manager-Server-3.2-Debuginfo-Pool","installer_updates":false},{"enabled":false,"id":2991,"autorefresh":false,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Products/SUSE-Manager-Server/3.2/x86_64/product_source/","name":"SUSE-Manager-Server-3.2-Source-Pool","installer_updates":false,"description":"SUSE-Manager-Server-3.2-Source-Pool for sle-12-x86_64"}],"predecessor_ids":[1518],"cpe":"cpe:/o:suse:suse-manager-server:3.2","product_type":"extension","version":"3.2","recommended":false,"friendly_name":"SUSE Manager Server 3.2 x86_64","migration_extra":false,"former_identifier":"SUSE-Manager-Server","release_type":null,"name":"SUSE Manager Server","offline_predecessor_ids":[],"friendly_version":"3.2","release_stage":"released","identifier":"SUSE-Manager-Server","id":1724,"extensions":[]},{"version":"3.2","recommended":false,"migration_extra":false,"friendly_name":"SUSE Manager Proxy 3.2 x86_64","former_identifier":"SUSE-Manager-Proxy","release_type":null,"name":"SUSE Manager Proxy","offline_predecessor_ids":[],"friendly_version":"3.2","release_stage":"released","identifier":"SUSE-Manager-Proxy","id":1725,"extensions":[{"recommended":false,"version":"3.2","name":"SUSE Manager Retail Branch Server","offline_predecessor_ids":[],"friendly_name":"SUSE Manager Retail Branch Server 3.2 x86_64","migration_extra":false,"release_type":null,"former_identifier":"SUSE-Manager-Retail-Branch-Server","friendly_version":"3.2","extensions":[],"id":1826,"release_stage":"released","identifier":"SUSE-Manager-Retail-Branch-Server","shortname":"SUSE Manager Retail Branch Server 3.2","description":"The SUSE Manager for Retail Branch Server supports large and/or geographically dispersed SUSE Manager for Retail environments by reducing the load on the SUSE Manager Server, lowering bandwidth needs, and providing faster local updates.","free":false,"eula_url":"https://updates.suse.com/SUSE/Products/SUSE-Manager-Retail-Branch-Server/3.2/x86_64/product.license/","arch":"x86_64","predecessor_ids":[],"online_predecessor_ids":[],"product_class":"SMRBS","repositories":[{"url":"https://updates.suse.com/SUSE/Updates/SUSE-Manager-Retail-Branch-Server/3.2/x86_64/update/","distro_target":"sle-12-x86_64","autorefresh":true,"id":3517,"enabled":true,"description":"SUSE-Manager-Retail-Branch-Server-3.2-Updates for sle-12-x86_64","installer_updates":false,"name":"SUSE-Manager-Retail-Branch-Server-3.2-Updates"},{"description":"SUSE-Manager-Retail-Branch-Server-3.2-Debuginfo-Updates for sle-12-x86_64","name":"SUSE-Manager-Retail-Branch-Server-3.2-Debuginfo-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Updates/SUSE-Manager-Retail-Branch-Server/3.2/x86_64/update_debug/","enabled":false,"id":3518},{"enabled":true,"id":3519,"distro_target":"sle-12-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SUSE-Manager-Retail-Branch-Server/3.2/x86_64/product/","installer_updates":false,"name":"SUSE-Manager-Retail-Branch-Server-3.2-Pool","description":"SUSE-Manager-Retail-Branch-Server-3.2-Pool for sle-12-x86_64"},{"name":"SUSE-Manager-Retail-Branch-Server-3.2-Debuginfo-Pool","installer_updates":false,"description":"SUSE-Manager-Retail-Branch-Server-3.2-Debuginfo-Pool for sle-12-x86_64","enabled":false,"id":3520,"autorefresh":false,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Products/SUSE-Manager-Retail-Branch-Server/3.2/x86_64/product_debug/"},{"description":"SUSE-Manager-Retail-Branch-Server-3.2-Source-Pool for sle-12-x86_64","name":"SUSE-Manager-Retail-Branch-Server-3.2-Source-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Products/SUSE-Manager-Retail-Branch-Server/3.2/x86_64/product_source/","enabled":false,"id":3521}],"cpe":"cpe:/o:suse:suse-manager-retail-branch-server:3.2","product_type":"extension"}],"shortname":"SUSE Manager Proxy 3.2","description":"SUSE Manager Proxies extend large and/or geographically dispersed SUSE Manager environments to reduce load on the SUSE Manager Server, lower bandwidth needs, and provide faster local updates.","free":false,"arch":"x86_64","eula_url":"https://updates.suse.com/SUSE/Products/SUSE-Manager-Proxy/3.2/x86_64/product.license/","repositories":[{"description":"SUSE-Manager-Proxy-3.2-Updates for sle-12-x86_64","name":"SUSE-Manager-Proxy-3.2-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Updates/SUSE-Manager-Proxy/3.2/x86_64/update/","enabled":true,"id":2992},{"name":"SUSE-Manager-Proxy-3.2-Debuginfo-Updates","installer_updates":false,"description":"SUSE-Manager-Proxy-3.2-Debuginfo-Updates for sle-12-x86_64","id":2993,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SUSE-Manager-Proxy/3.2/x86_64/update_debug/","autorefresh":true,"distro_target":"sle-12-x86_64"},{"distro_target":"sle-12-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SUSE-Manager-Proxy/3.2/x86_64/product/","enabled":true,"id":2994,"description":"SUSE-Manager-Proxy-3.2-Pool for sle-12-x86_64","installer_updates":false,"name":"SUSE-Manager-Proxy-3.2-Pool"},{"url":"https://updates.suse.com/SUSE/Products/SUSE-Manager-Proxy/3.2/x86_64/product_debug/","distro_target":"sle-12-x86_64","autorefresh":false,"id":2995,"enabled":false,"description":"SUSE-Manager-Proxy-3.2-Debuginfo-Pool for sle-12-x86_64","installer_updates":false,"name":"SUSE-Manager-Proxy-3.2-Debuginfo-Pool"},{"description":"SUSE-Manager-Proxy-3.2-Source-Pool for sle-12-x86_64","name":"SUSE-Manager-Proxy-3.2-Source-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Products/SUSE-Manager-Proxy/3.2/x86_64/product_source/","enabled":false,"id":2996}],"online_predecessor_ids":[1520],"product_class":"SMP","predecessor_ids":[1520],"cpe":"cpe:/o:suse:suse-manager-proxy:3.2","product_type":"extension"},{"friendly_version":"8","identifier":"suse-openstack-cloud-crowbar","release_stage":"released","id":1729,"extensions":[],"version":"8","recommended":false,"former_identifier":"suse-openstack-cloud-crowbar","release_type":null,"friendly_name":"SUSE OpenStack Cloud Crowbar 8 x86_64","migration_extra":false,"offline_predecessor_ids":[],"name":"SUSE OpenStack Cloud Crowbar","online_predecessor_ids":[1381],"repositories":[{"id":3004,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/OpenStack-Cloud-Crowbar/8/x86_64/update/","distro_target":"sle-12-x86_64","autorefresh":true,"installer_updates":false,"name":"SUSE-OpenStack-Cloud-Crowbar-8-Updates","description":"SUSE-OpenStack-Cloud-Crowbar-8-Updates for sle-12-x86_64"},{"url":"https://updates.suse.com/SUSE/Updates/OpenStack-Cloud-Crowbar/8/x86_64/update_debug/","distro_target":"sle-12-x86_64","autorefresh":true,"id":3005,"enabled":false,"description":"SUSE-OpenStack-Cloud-Crowbar-8-Debuginfo-Updates for sle-12-x86_64","installer_updates":false,"name":"SUSE-OpenStack-Cloud-Crowbar-8-Debuginfo-Updates"},{"description":"SUSE-OpenStack-Cloud-Crowbar-8-Pool for sle-12-x86_64","installer_updates":false,"name":"SUSE-OpenStack-Cloud-Crowbar-8-Pool","distro_target":"sle-12-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/OpenStack-Cloud-Crowbar/8/x86_64/product/","enabled":true,"id":3006},{"id":3007,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/OpenStack-Cloud-Crowbar/8/x86_64/product_debug/","distro_target":"sle-12-x86_64","autorefresh":false,"installer_updates":false,"name":"SUSE-OpenStack-Cloud-Crowbar-8-Debuginfo-Pool","description":"SUSE-OpenStack-Cloud-Crowbar-8-Debuginfo-Pool for sle-12-x86_64"},{"description":"SUSE-OpenStack-Cloud-Crowbar-8-Source-Pool for sle-12-x86_64","name":"SUSE-OpenStack-Cloud-Crowbar-8-Source-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Products/OpenStack-Cloud-Crowbar/8/x86_64/product_source/","enabled":false,"id":3008}],"product_class":"SUSE_CLOUD","predecessor_ids":[1381],"product_type":"extension","cpe":"cpe:/o:suse:suse-openstack-cloud-crowbar:8","free":false,"description":"SUSE OpenStack Cloud Crowbar 8","shortname":"SOCC8","arch":"x86_64","eula_url":"https://updates.suse.com/SUSE/Products/OpenStack-Cloud-Crowbar/8/x86_64/product.license/"},{"version":"8","recommended":false,"former_identifier":"hpe-helion-openstack","release_type":null,"friendly_name":"HPE Helion OpenStack 8 x86_64","migration_extra":false,"offline_predecessor_ids":[],"name":"HPE Helion OpenStack","friendly_version":"8","release_stage":"released","identifier":"hpe-helion-openstack","id":1730,"extensions":[],"free":false,"description":"HPE Helion OpenStack 8","shortname":"HOS8","arch":"x86_64","eula_url":"https://updates.suse.com/SUSE/Products/HPE-Helion-OpenStack/8/x86_64/product.license/","product_class":"HPE-HELION-OPENSTACK-X86","online_predecessor_ids":[],"repositories":[{"name":"HPE-Helion-OpenStack-8-Updates","installer_updates":false,"description":"HPE-Helion-OpenStack-8-Updates for sle-12-x86_64","enabled":true,"id":3139,"autorefresh":true,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Updates/HPE-Helion-OpenStack/8/x86_64/update/"},{"description":"HPE-Helion-OpenStack-8-Debuginfo-Updates for sle-12-x86_64","name":"HPE-Helion-OpenStack-8-Debuginfo-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Updates/HPE-Helion-OpenStack/8/x86_64/update_debug/","enabled":false,"id":3140},{"enabled":true,"id":3141,"autorefresh":false,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Products/HPE-Helion-OpenStack/8/x86_64/product/","name":"HPE-Helion-OpenStack-8-Pool","installer_updates":false,"description":"HPE-Helion-OpenStack-8-Pool for sle-12-x86_64"},{"url":"https://updates.suse.com/SUSE/Products/HPE-Helion-OpenStack/8/x86_64/product_debug/","distro_target":"sle-12-x86_64","autorefresh":false,"id":3142,"enabled":false,"description":"HPE-Helion-OpenStack-8-Debuginfo-Pool for sle-12-x86_64","installer_updates":false,"name":"HPE-Helion-OpenStack-8-Debuginfo-Pool"},{"name":"HPE-Helion-OpenStack-8-Source-Pool","installer_updates":false,"description":"HPE-Helion-OpenStack-8-Source-Pool for sle-12-x86_64","id":3143,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/HPE-Helion-OpenStack/8/x86_64/product_source/","autorefresh":false,"distro_target":"sle-12-x86_64"}],"predecessor_ids":[],"product_type":"extension","cpe":"cpe:/o:suse:hpe-helion-openstack:8"},{"version":"12.3","recommended":false,"friendly_name":"SUSE Linux Enterprise Server ESPOS 12 SP3 x86_64","migration_extra":false,"release_type":null,"former_identifier":"SLES-ESPOS","name":"SUSE Linux Enterprise Server ESPOS","offline_predecessor_ids":[],"friendly_version":"12 SP3","release_stage":"released","identifier":"SLES-ESPOS","id":1816,"extensions":[],"shortname":"SLES12-SP3 ESPOS","description":"SUSE Linux Enterprise offers a comprehensive suite of products built on a single code base. The platform addresses business needs from the smallest thin-client devices to the world's most powerful high-performance computing and mainframe servers. SUSE Linux Enterprise offers common management tools and technology certifications across the platform, and each product is enterprise-class.","free":false,"arch":"x86_64","eula_url":"","product_class":"SLE-ESPOS-X86","online_predecessor_ids":[1814],"repositories":[{"distro_target":"sle-12-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-SP3-ESPOS/x86_64/update/","enabled":true,"id":3472,"description":"SLES12-SP3-ESPOS-Updates for sle-12-x86_64","installer_updates":false,"name":"SLES12-SP3-ESPOS-Updates"},{"description":"SLES12-SP3-ESPOS-Debuginfo-Updates for sle-12-x86_64","name":"SLES12-SP3-ESPOS-Debuginfo-Updates","installer_updates":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-SP3-ESPOS/x86_64/update_debug/","autorefresh":true,"distro_target":"sle-12-x86_64","id":3473,"enabled":false},{"enabled":true,"id":3474,"autorefresh":false,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-SERVER/12-SP3-ESPOS/x86_64/product/","name":"SLES12-SP3-ESPOS-Pool","installer_updates":false,"description":"SLES12-SP3-ESPOS-Pool for sle-12-x86_64"},{"description":"SLES12-SP3-ESPOS-Debuginfo-Pool for sle-12-x86_64","installer_updates":false,"name":"SLES12-SP3-ESPOS-Debuginfo-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-SERVER/12-SP3-ESPOS/x86_64/product_debug/","distro_target":"sle-12-x86_64","autorefresh":false,"id":3475,"enabled":false},{"description":"SLES12-SP3-ESPOS-Source-Pool for sle-12-x86_64","installer_updates":false,"name":"SLES12-SP3-ESPOS-Source-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-SERVER/12-SP3-ESPOS/x86_64/product_source/","distro_target":"sle-12-x86_64","autorefresh":false,"id":3476,"enabled":false}],"predecessor_ids":[1814],"cpe":"cpe:/o:suse:sles-espos:12:sp3","product_type":"extension"},{"friendly_version":"12 SP3","extensions":[],"release_stage":"released","id":1932,"identifier":"SLES-LTSS","recommended":false,"version":"12.3","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Server LTSS","release_type":null,"former_identifier":"SLES-LTSS","friendly_name":"SUSE Linux Enterprise Server LTSS 12 SP3 x86_64","migration_extra":false,"predecessor_ids":[],"product_class":"SLES12-SP3-LTSS-X86","online_predecessor_ids":[],"repositories":[{"url":"https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-SP3-LTSS/x86_64/update/","autorefresh":true,"distro_target":"sle-12-x86_64","id":3919,"enabled":true,"description":"SLES12-SP3-LTSS-Updates for sle-12-x86_64","name":"SLES12-SP3-LTSS-Updates","installer_updates":false},{"id":3920,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-SP3-LTSS/x86_64/update_debug/","autorefresh":true,"distro_target":"sle-12-x86_64","name":"SLES12-SP3-LTSS-Debuginfo-Updates","installer_updates":false,"description":"SLES12-SP3-LTSS-Debuginfo-Updates for sle-12-x86_64"}],"product_type":"extension","cpe":"cpe:/o:suse:sles-ltss:12:sp3","free":false,"shortname":"SLES12-SP3 LTSS","description":"SUSE Linux Enterprise offers a comprehensive suite of products built on a single code base. The platform addresses business needs from the smallest thin-client devices to the world's most powerful high-performance computing and mainframe servers. SUSE Linux Enterprise offers common management tools and technology certifications across the platform, and each product is enterprise-class.","eula_url":"","arch":"x86_64"}],"id":1751,"release_stage":"released","identifier":"SLE-HPC","recommended":false,"version":"12.3","name":"SUSE Linux Enterprise High Performance Computing","offline_predecessor_ids":[1117,1322,1357],"migration_extra":false,"friendly_name":"SUSE Linux Enterprise High Performance Computing 12 SP3 x86_64","release_type":null,"former_identifier":"SLE-HPC"},{"recommended":false,"version":"3.0","offline_predecessor_ids":[],"name":"SUSE CaaS Platform Toolchain","former_identifier":"caasp-toolchain","release_type":null,"friendly_name":"SUSE CaaS Platform Toolchain 3.0 x86_64","migration_extra":false,"friendly_version":"3.0","extensions":[],"release_stage":"released","id":1752,"identifier":"caasp-toolchain","free":true,"shortname":"CaaSP-Toolchain","description":"Packages to compile kernel modules and debug applications on SUSE CaaS Platform.","eula_url":"","arch":"x86_64","predecessor_ids":[],"product_class":"MODULE","online_predecessor_ids":[],"repositories":[{"installer_updates":false,"name":"SUSE-CAASP-Toolchain-3-Updates","description":"SUSE-CAASP-Toolchain-3-Updates for sle-12-x86_64","id":3132,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SUSE-CaaSP-Toolchain/3/x86_64/update/","distro_target":"sle-12-x86_64","autorefresh":true},{"description":"SUSE-CAASP-Toolchain-3-Debuginfo-Updates for sle-12-x86_64","name":"SUSE-CAASP-Toolchain-3-Debuginfo-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Updates/SUSE-CaaSP-Toolchain/3/x86_64/update_debug/","enabled":false,"id":3133},{"distro_target":"sle-12-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SUSE-CaaSP-Toolchain/3/x86_64/product/","enabled":true,"id":3134,"description":"SUSE-CAASP-Toolchain-3-Pool for sle-12-x86_64","installer_updates":false,"name":"SUSE-CAASP-Toolchain-3-Pool"},{"description":"SUSE-CAASP-Toolchain-3-Debuginfo-Pool for sle-12-x86_64","installer_updates":false,"name":"SUSE-CAASP-Toolchain-3-Debuginfo-Pool","distro_target":"sle-12-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SUSE-CaaSP-Toolchain/3/x86_64/product_debug/","enabled":false,"id":3135},{"id":3136,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SUSE-CaaSP-Toolchain/3/x86_64/product_source/","autorefresh":false,"distro_target":"sle-12-x86_64","name":"SUSE-CAASP-Toolchain-3-Source-Pool","installer_updates":false,"description":"SUSE-CAASP-Toolchain-3-Source-Pool for sle-12-x86_64"}],"product_type":"extension","cpe":"cpe:/o:suse:caasp-toolchain:3.0"},{"free":false,"description":"SUSE OpenStack Cloud 6 LTSS","shortname":"SOC6 LTSS","arch":"x86_64","eula_url":"","repositories":[{"description":"SUSE-OpenStack-Cloud-6-LTSS-Updates for sle-12-x86_64","name":"SUSE-OpenStack-Cloud-6-LTSS-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Updates/OpenStack-Cloud/6-LTSS/x86_64/update/","enabled":true,"id":3137},{"id":3138,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/OpenStack-Cloud/6-LTSS/x86_64/update_debug/","autorefresh":true,"distro_target":"sle-12-x86_64","name":"SUSE-OpenStack-Cloud-6-LTSS-Debuginfo-Updates","installer_updates":false,"description":"SUSE-OpenStack-Cloud-6-LTSS-Debuginfo-Updates for sle-12-x86_64"}],"online_predecessor_ids":[],"product_class":"SUSE-OPENSTACK-CLOUD-LTSS-X86","predecessor_ids":[],"product_type":"extension","cpe":"cpe:/o:suse:suse-openstack-cloud-ltss:6","version":"6","recommended":false,"release_type":null,"former_identifier":"suse-openstack-cloud-ltss","migration_extra":false,"friendly_name":"SUSE OpenStack Cloud LTSS 6 x86_64","offline_predecessor_ids":[],"name":"SUSE OpenStack Cloud LTSS","friendly_version":"6","release_stage":"released","identifier":"suse-openstack-cloud-ltss","id":1753,"extensions":[]},{"free":false,"shortname":"SLE-12-SP4-SAP","description":"SUSE LINUX Enterprise Server 12 SP4 for SAP Applications","arch":"ppc64le","eula_url":"https://updates.suse.com/SUSE/Products/SLE-SAP/12-SP4/ppc64le/product.license/","online_predecessor_ids":[1521,1572],"repositories":[{"enabled":true,"id":2775,"distro_target":"sle-12-ppc64le","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-SP4/ppc64le/update/","installer_updates":false,"name":"SLES12-SP4-Updates","description":"SLES12-SP4-Updates for sle-12-ppc64le"},{"enabled":false,"id":2776,"distro_target":"sle-12-ppc64le","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-SP4/ppc64le/update_debug/","installer_updates":false,"name":"SLES12-SP4-Debuginfo-Updates","description":"SLES12-SP4-Debuginfo-Updates for sle-12-ppc64le"},{"name":"SLES12-SP4-Pool","installer_updates":false,"description":"SLES12-SP4-Pool for sle-12-ppc64le","id":2778,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-SERVER/12-SP4/ppc64le/product/","autorefresh":false,"distro_target":"sle-12-ppc64le"},{"installer_updates":false,"name":"SLES12-SP4-Debuginfo-Pool","description":"SLES12-SP4-Debuginfo-Pool for sle-12-ppc64le","enabled":false,"id":2779,"distro_target":"sle-12-ppc64le","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-SERVER/12-SP4/ppc64le/product_debug/"},{"installer_updates":false,"name":"SLES12-SP4-Source-Pool","description":"SLES12-SP4-Source-Pool for sle-12-ppc64le","id":2780,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-SERVER/12-SP4/ppc64le/product_source/","distro_target":"sle-12-ppc64le","autorefresh":false},{"autorefresh":true,"distro_target":"sle-12-ppc64le","url":"https://updates.suse.com/SUSE/Updates/SLE-HA/12-SP4/ppc64le/update/","enabled":true,"id":2824,"description":"SLE-HA12-SP4-Updates for sle-12-ppc64le","name":"SLE-HA12-SP4-Updates","installer_updates":false},{"installer_updates":false,"name":"SLE-HA12-SP4-Debuginfo-Updates","description":"SLE-HA12-SP4-Debuginfo-Updates for sle-12-ppc64le","enabled":false,"id":2825,"distro_target":"sle-12-ppc64le","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-HA/12-SP4/ppc64le/update_debug/"},{"name":"SLE-HA12-SP4-Pool","installer_updates":false,"description":"SLE-HA12-SP4-Pool for sle-12-ppc64le","enabled":true,"id":2826,"autorefresh":false,"distro_target":"sle-12-ppc64le","url":"https://updates.suse.com/SUSE/Products/SLE-HA/12-SP4/ppc64le/product/"},{"enabled":false,"id":2827,"distro_target":"sle-12-ppc64le","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-HA/12-SP4/ppc64le/product_debug/","installer_updates":false,"name":"SLE-HA12-SP4-Debuginfo-Pool","description":"SLE-HA12-SP4-Debuginfo-Pool for sle-12-ppc64le"},{"url":"https://updates.suse.com/SUSE/Products/SLE-HA/12-SP4/ppc64le/product_source/","autorefresh":false,"distro_target":"sle-12-ppc64le","id":2828,"enabled":false,"description":"SLE-HA12-SP4-Source-Pool for sle-12-ppc64le","name":"SLE-HA12-SP4-Source-Pool","installer_updates":false},{"enabled":true,"id":3149,"distro_target":"sle-12-ppc64le","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-SAP/12-SP4/ppc64le/update/","installer_updates":false,"name":"SLE-12-SP4-SAP-Updates","description":"SLE-12-SP4-SAP-Updates for sle-12-ppc64le"},{"url":"https://updates.suse.com/SUSE/Updates/SLE-SAP/12-SP4/ppc64le/update_debug/","autorefresh":true,"distro_target":"sle-12-ppc64le","id":3150,"enabled":false,"description":"SLE-12-SP4-SAP-Debuginfo-Updates for sle-12-ppc64le","name":"SLE-12-SP4-SAP-Debuginfo-Updates","installer_updates":false},{"distro_target":"sle-12-ppc64le","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-SAP/12-SP4/ppc64le/product/","enabled":true,"id":3151,"description":"SLE12-SP4-SAP-Pool for sle-12-ppc64le","installer_updates":false,"name":"SLE12-SP4-SAP-Pool"},{"description":"SLE12-SP4-SAP-Debuginfo-Pool for sle-12-ppc64le","name":"SLE12-SP4-SAP-Debuginfo-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-SAP/12-SP4/ppc64le/product_debug/","autorefresh":false,"distro_target":"sle-12-ppc64le","id":3152,"enabled":false},{"url":"https://updates.suse.com/SUSE/Products/SLE-SAP/12-SP4/ppc64le/product_source/","distro_target":"sle-12-ppc64le","autorefresh":false,"id":3153,"enabled":false,"description":"SLE12-SP4-SAP-Source-Pool for sle-12-ppc64le","installer_updates":false,"name":"SLE12-SP4-SAP-Source-Pool"}],"product_class":"AiO-PPC","predecessor_ids":[1521,1572],"product_type":"base","cpe":"cpe:/o:suse:sles_sap:12:sp4","version":"12.4","recommended":false,"former_identifier":"SUSE_SLES_SAP","release_type":null,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Server for SAP Applications 12 SP4 ppc64le","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Server for SAP Applications","friendly_version":"12 SP4","release_stage":"released","id":1754,"identifier":"SLES_SAP","extensions":[{"recommended":false,"version":"12","offline_predecessor_ids":[],"name":"Legacy Module","release_type":null,"former_identifier":"sle-module-legacy","friendly_name":"Legacy Module 12 ppc64le","migration_extra":false,"friendly_version":"12","extensions":[],"release_stage":"released","identifier":"sle-module-legacy","id":1148,"free":true,"shortname":"Legacy-Module","description":"

The Legacy Module helps you migrating applications from SUSE Linux Enterprise 10 and 11 and other systems to SUSE Linux Enterprise 12, by providing packages which are discontinued on SUSE Linux Enterprise Server, such as: sendmail, syslog-ng, IBM Java6, and a number of libraries (for example openssl-0.9.8).

Access to the Legacy Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself. Packages in the this module are usually supported for at most three years. Support for Sendmail and IBM Java 6 will end in September 2017 the latest.

","eula_url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/12/ppc64le/product.license/","arch":"ppc64le","predecessor_ids":[],"product_class":"MODULE","online_predecessor_ids":[],"repositories":[{"name":"SLE-Module-Legacy12-Updates","installer_updates":false,"description":"SLE-Module-Legacy12-Updates for sle-12-ppc64le","id":1668,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/12/ppc64le/update/","autorefresh":true,"distro_target":"sle-12-ppc64le"},{"distro_target":"sle-12-ppc64le","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/12/ppc64le/update_debug/","enabled":false,"id":1669,"description":"SLE-Module-Legacy12-Debuginfo-Updates for sle-12-ppc64le","installer_updates":false,"name":"SLE-Module-Legacy12-Debuginfo-Updates"},{"description":"SLE-Module-Legacy12-Pool for sle-12-ppc64le","name":"SLE-Module-Legacy12-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/12/ppc64le/product/","autorefresh":false,"distro_target":"sle-12-ppc64le","id":1670,"enabled":true},{"id":1671,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/12/ppc64le/product_debug/","autorefresh":false,"distro_target":"sle-12-ppc64le","name":"SLE-Module-Legacy12-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-Legacy12-Debuginfo-Pool for sle-12-ppc64le"},{"id":1987,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/12/ppc64le/product_source/","autorefresh":false,"distro_target":"sle-12-ppc64le","name":"SLE-Module-Legacy12-Source-Pool","installer_updates":false,"description":"SLE-Module-Legacy12-Source-Pool for sle-12-ppc64le"}],"product_type":"module","cpe":"cpe:/o:suse:sle-module-legacy:12"},{"recommended":false,"version":"12","name":"Web and Scripting Module","offline_predecessor_ids":[],"friendly_name":"Web and Scripting Module 12 ppc64le","migration_extra":false,"former_identifier":"sle-module-web-scripting","release_type":null,"friendly_version":"12","extensions":[],"release_stage":"released","identifier":"sle-module-web-scripting","id":1151,"description":"

The SUSE Linux Enterprise Web and Scripting Module delivers a comprehensive suite of scripting languages, frameworks, and related tools helping developers and systems administrators accelerate the creation of stable, modern web applications, using dynamic languages, such as PHP, Ruby on Rails, and Python.

Access to the Web and Scripting Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself: Package versions in the this module are usually supported for at most three years. We are planning to release more recent versions on a schedule of approximately 18 month; the exact dates may differ per package.

","shortname":"Web-and-Scripting-Module","free":true,"eula_url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/12/ppc64le/product.license/","arch":"ppc64le","predecessor_ids":[],"product_class":"MODULE","online_predecessor_ids":[],"repositories":[{"id":1680,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/12/ppc64le/update/","autorefresh":true,"distro_target":"sle-12-ppc64le","name":"SLE-Module-Web-Scripting12-Updates","installer_updates":false,"description":"SLE-Module-Web-Scripting12-Updates for sle-12-ppc64le"},{"distro_target":"sle-12-ppc64le","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/12/ppc64le/update_debug/","enabled":false,"id":1681,"description":"SLE-Module-Web-Scripting12-Debuginfo-Updates for sle-12-ppc64le","installer_updates":false,"name":"SLE-Module-Web-Scripting12-Debuginfo-Updates"},{"id":1682,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/12/ppc64le/product/","distro_target":"sle-12-ppc64le","autorefresh":false,"installer_updates":false,"name":"SLE-Module-Web-Scripting12-Pool","description":"SLE-Module-Web-Scripting12-Pool for sle-12-ppc64le"},{"distro_target":"sle-12-ppc64le","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/12/ppc64le/product_debug/","enabled":false,"id":1683,"description":"SLE-Module-Web-Scripting12-Debuginfo-Pool for sle-12-ppc64le","installer_updates":false,"name":"SLE-Module-Web-Scripting12-Debuginfo-Pool"},{"description":"SLE-Module-Web-Scripting12-Source-Pool for sle-12-ppc64le","installer_updates":false,"name":"SLE-Module-Web-Scripting12-Source-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/12/ppc64le/product_source/","distro_target":"sle-12-ppc64le","autorefresh":false,"id":1990,"enabled":false}],"cpe":"cpe:/o:suse:sle-module-web-scripting:12","product_type":"module"},{"version":"12","recommended":false,"release_type":null,"former_identifier":"sle-module-public-cloud","friendly_name":"Public Cloud Module 12 ppc64le","migration_extra":false,"offline_predecessor_ids":[],"name":"Public Cloud Module","friendly_version":"12","release_stage":"released","identifier":"sle-module-public-cloud","id":1218,"extensions":[],"free":true,"description":"

The Public Cloud Module is a collection of tools that enables you to create and manage cloud images from the commandline on SUSE Linux Enterprise Server. When building your own images with KIWI or SUSE Studio, initialization code specific to the target cloud is included in that image.

Access to the Public Cloud Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself; please check the Release Notes for further details.

","shortname":"Public-Cloud-Module","arch":"ppc64le","eula_url":"","online_predecessor_ids":[],"repositories":[{"description":"SLE-Module-Public-Cloud12-Updates for sle-12-ppc64le","installer_updates":false,"name":"SLE-Module-Public-Cloud12-Updates","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/12/ppc64le/update/","distro_target":"sle-12-ppc64le","autorefresh":true,"id":1692,"enabled":true},{"installer_updates":false,"name":"SLE-Module-Public-Cloud12-Debuginfo-Updates","description":"SLE-Module-Public-Cloud12-Debuginfo-Updates for sle-12-ppc64le","enabled":false,"id":1693,"distro_target":"sle-12-ppc64le","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/12/ppc64le/update_debug/"},{"id":1694,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/12/ppc64le/product/","distro_target":"sle-12-ppc64le","autorefresh":false,"installer_updates":false,"name":"SLE-Module-Public-Cloud12-Pool","description":"SLE-Module-Public-Cloud12-Pool for sle-12-ppc64le"},{"name":"SLE-Module-Public-Cloud12-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-Public-Cloud12-Debuginfo-Pool for sle-12-ppc64le","enabled":false,"id":1695,"autorefresh":false,"distro_target":"sle-12-ppc64le","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/12/ppc64le/product_debug/"},{"description":"SLE-Module-Public-Cloud12-Source-Pool for sle-12-ppc64le","name":"SLE-Module-Public-Cloud12-Source-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/12/ppc64le/product_source/","autorefresh":false,"distro_target":"sle-12-ppc64le","id":1993,"enabled":false}],"product_class":"MODULE","predecessor_ids":[],"product_type":"module","cpe":"cpe:/o:suse:sle-module-public-cloud:12"},{"product_type":"extension","cpe":"cpe:/o:suse:ibm-dlpar-sdk:12","repositories":[{"enabled":true,"id":4429,"distro_target":null,"autorefresh":true,"url":"https://public.dhe.ibm.com/software/server/POWER/Linux/toolchain/at/suse/SLES_12/","installer_updates":false,"name":"IBM-DLPAR-SDK","description":"IBM-DLPAR-SDK"}],"online_predecessor_ids":[],"product_class":"SLES-PPC","predecessor_ids":[],"arch":"ppc64le","eula_url":"","free":true,"shortname":"IBMDLPS12","description":"IBM DLPAR SDK for SLE 12","identifier":"ibm-dlpar-sdk","release_stage":"released","id":1249,"extensions":[],"friendly_version":"12","release_type":null,"former_identifier":"ibm-dlpar-sdk","migration_extra":false,"friendly_name":"IBM DLPAR SDK for SLE 12 ppc64le","offline_predecessor_ids":[],"name":"IBM DLPAR SDK for SLE","version":"12","recommended":false},{"offline_predecessor_ids":[],"name":"IBM DLPAR Utils for SLE","release_type":null,"former_identifier":"ibm-dlpar-utils","friendly_name":"IBM DLPAR Utils for SLE 12 ppc64le","migration_extra":false,"recommended":false,"version":"12","extensions":[],"release_stage":"released","identifier":"ibm-dlpar-utils","id":1250,"friendly_version":"12","eula_url":"https://public.dhe.ibm.com/software/server/POWER/Linux/yum/OSS/SLES/12/ppc64le.license/","arch":"ppc64le","free":true,"shortname":"IBMDLPU12","description":"IBM DLPAR Utils for SLE 12","product_type":"extension","cpe":"cpe:/o:suse:ibm-dlpar-utils:12","predecessor_ids":[],"online_predecessor_ids":[],"product_class":"SLES-PPC","repositories":[{"url":"https://public.dhe.ibm.com/software/server/POWER/Linux/yum/OSS/SLES/12/ppc64le/","distro_target":null,"autorefresh":true,"id":6216,"enabled":true,"description":"IBM-DLPAR-utils","installer_updates":false,"name":"IBM-DLPAR-utils"}]},{"cpe":"cpe:/o:suse:sle-module-adv-systems-management:12","product_type":"module","repositories":[{"description":"SLE-Module-Adv-Systems-Management12-Updates for sle-12-ppc64le","installer_updates":false,"name":"SLE-Module-Adv-Systems-Management12-Updates","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Adv-Systems-Management/12/ppc64le/update/","distro_target":"sle-12-ppc64le","autorefresh":true,"id":1762,"enabled":true},{"description":"SLE-Module-Adv-Systems-Management12-Debuginfo-Updates for sle-12-ppc64le","installer_updates":false,"name":"SLE-Module-Adv-Systems-Management12-Debuginfo-Updates","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Adv-Systems-Management/12/ppc64le/update_debug/","distro_target":"sle-12-ppc64le","autorefresh":true,"id":1763,"enabled":false},{"description":"SLE-Module-Adv-Systems-Management12-Pool for sle-12-ppc64le","name":"SLE-Module-Adv-Systems-Management12-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Adv-Systems-Management/12/ppc64le/product/","autorefresh":false,"distro_target":"sle-12-ppc64le","id":1764,"enabled":true},{"id":1765,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Adv-Systems-Management/12/ppc64le/product_debug/","distro_target":"sle-12-ppc64le","autorefresh":false,"installer_updates":false,"name":"SLE-Module-Adv-Systems-Management12-Debuginfo-Pool","description":"SLE-Module-Adv-Systems-Management12-Debuginfo-Pool for sle-12-ppc64le"},{"installer_updates":false,"name":"SLE-Module-Adv-Systems-Management12-Source-Pool","description":"SLE-Module-Adv-Systems-Management12-Source-Pool for sle-12-ppc64le","enabled":false,"id":1996,"distro_target":"sle-12-ppc64le","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Adv-Systems-Management/12/ppc64le/product_source/"}],"online_predecessor_ids":[],"product_class":"MODULE","predecessor_ids":[],"arch":"ppc64le","eula_url":"","description":"

This Module contains current versions of the popular configuration management frameworks Puppet and CFEngine as well as the new systems management toolbox called machinery.

The machinery tool will be frequently updated and is SUSE's upcoming systems management toolbox for inspecting and validating systems remotely, storing their system description and creating new systems to deploy them in datacenters and clouds.

","shortname":"Adv-Sys-Mgmt-Module","free":true,"release_stage":"released","id":1294,"identifier":"sle-module-adv-systems-management","extensions":[],"friendly_version":"12","migration_extra":false,"friendly_name":"Advanced Systems Management Module 12 ppc64le","release_type":null,"former_identifier":"sle-module-adv-systems-management","name":"Advanced Systems Management Module","offline_predecessor_ids":[],"version":"12","recommended":false},{"shortname":"Toolchain-Module","description":"Via this Module you will have access to a more recent GCC and Toolchain in addition to the default compiler of SUSE Linux Enterprise. Access to the Toolchain Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself. Please check the Release Notes for further details.","free":true,"arch":"ppc64le","eula_url":"","repositories":[{"id":1895,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Toolchain/12/ppc64le/update/","autorefresh":true,"distro_target":"sle-12-ppc64le","name":"SLE-Module-Toolchain12-Updates","installer_updates":false,"description":"SLE-Module-Toolchain12-Updates for sle-12-ppc64le"},{"distro_target":"sle-12-ppc64le","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Toolchain/12/ppc64le/update_debug/","enabled":false,"id":1896,"description":"SLE-Module-Toolchain12-Debuginfo-Updates for sle-12-ppc64le","installer_updates":false,"name":"SLE-Module-Toolchain12-Debuginfo-Updates"},{"id":1897,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Toolchain/12/ppc64le/product/","autorefresh":false,"distro_target":"sle-12-ppc64le","name":"SLE-Module-Toolchain12-Pool","installer_updates":false,"description":"SLE-Module-Toolchain12-Pool for sle-12-ppc64le"},{"description":"SLE-Module-Toolchain12-Debuginfo-Pool for sle-12-ppc64le","installer_updates":false,"name":"SLE-Module-Toolchain12-Debuginfo-Pool","distro_target":"sle-12-ppc64le","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Toolchain/12/ppc64le/product_debug/","enabled":false,"id":1898}],"online_predecessor_ids":[],"product_class":"MODULE","predecessor_ids":[],"cpe":"cpe:/o:suse:sle-module-toolchain:12","product_type":"module","version":"12","recommended":false,"friendly_name":"Toolchain Module 12 ppc64le","migration_extra":false,"former_identifier":"sle-module-toolchain","release_type":null,"name":"Toolchain Module","offline_predecessor_ids":[],"friendly_version":"12","release_stage":"released","identifier":"sle-module-toolchain","id":1339,"extensions":[]},{"product_type":"module","cpe":"cpe:/o:suse:sle-module-containers:12","online_predecessor_ids":[],"repositories":[{"enabled":true,"id":1972,"autorefresh":true,"distro_target":"sle-12-ppc64le","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/12/ppc64le/update/","name":"SLE-Module-Containers12-Updates","installer_updates":false,"description":"SLE-Module-Containers12-Updates for sle-12-ppc64le"},{"description":"SLE-Module-Containers12-Debuginfo-Updates for sle-12-ppc64le","installer_updates":false,"name":"SLE-Module-Containers12-Debuginfo-Updates","distro_target":"sle-12-ppc64le","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/12/ppc64le/update_debug/","enabled":false,"id":1973},{"name":"SLE-Module-Containers12-Pool","installer_updates":false,"description":"SLE-Module-Containers12-Pool for sle-12-ppc64le","enabled":true,"id":1974,"autorefresh":false,"distro_target":"sle-12-ppc64le","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/12/ppc64le/product/"},{"id":1975,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/12/ppc64le/product_debug/","autorefresh":false,"distro_target":"sle-12-ppc64le","name":"SLE-Module-Containers12-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-Containers12-Debuginfo-Pool for sle-12-ppc64le"},{"installer_updates":false,"name":"SLE-Module-Containers12-Source-Pool","description":"SLE-Module-Containers12-Source-Pool for sle-12-ppc64le","id":1976,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/12/ppc64le/product_source/","distro_target":"sle-12-ppc64le","autorefresh":false}],"product_class":"MODULE","predecessor_ids":[],"arch":"ppc64le","eula_url":"","free":true,"shortname":"Containers-Module","description":"

This Module contains several packages revolving around containers and related tools.

","id":1353,"release_stage":"released","identifier":"sle-module-containers","extensions":[],"friendly_version":"12","release_type":null,"former_identifier":"sle-module-containers","migration_extra":false,"friendly_name":"Containers Module 12 ppc64le","offline_predecessor_ids":[],"name":"Containers Module","version":"12","recommended":false},{"eula_url":"https://updates.suse.com/SUSE/Products/SLE-SDK/12-SP4/ppc64le/product.license/","arch":"ppc64le","shortname":"SDK12-SP4","description":"

SUSE Linux Enterprise Software Development Kit is the Software Development Kit for the family of SUSE Linux Enterprise products. It is a free of charge extension for partners and customers working with SUSE Linux Enterprise Server and Desktop and derived products.

Packages on the SDK are delivered without L3 support; maintenance updates will be done for critical security and critical non-security issues, and where needed to remain in sync with packages delivered in the SUSE Linux Enterprise Server and Desktop products.

Packages to rebuild SUSE Linux Enterprise Server are not part of the SUSE Linux Enterprise Software Development Kit.

","free":true,"cpe":"cpe:/o:suse:sle-sdk:12:sp4","product_type":"extension","predecessor_ids":[1145,1343,1364,1428],"online_predecessor_ids":[1145,1343,1364,1428],"product_class":"MODULE","repositories":[{"name":"SLE-SDK12-SP4-Updates","installer_updates":false,"description":"SLE-SDK12-SP4-Updates for sle-12-ppc64le","enabled":true,"id":2804,"autorefresh":true,"distro_target":"sle-12-ppc64le","url":"https://updates.suse.com/SUSE/Updates/SLE-SDK/12-SP4/ppc64le/update/"},{"autorefresh":true,"distro_target":"sle-12-ppc64le","url":"https://updates.suse.com/SUSE/Updates/SLE-SDK/12-SP4/ppc64le/update_debug/","enabled":false,"id":2805,"description":"SLE-SDK12-SP4-Debuginfo-Updates for sle-12-ppc64le","name":"SLE-SDK12-SP4-Debuginfo-Updates","installer_updates":false},{"description":"SLE-SDK12-SP4-Pool for sle-12-ppc64le","name":"SLE-SDK12-SP4-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-12-ppc64le","url":"https://updates.suse.com/SUSE/Products/SLE-SDK/12-SP4/ppc64le/product/","enabled":true,"id":2806},{"description":"SLE-SDK12-SP4-Debuginfo-Pool for sle-12-ppc64le","name":"SLE-SDK12-SP4-Debuginfo-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-12-ppc64le","url":"https://updates.suse.com/SUSE/Products/SLE-SDK/12-SP4/ppc64le/product_debug/","enabled":false,"id":2807},{"installer_updates":false,"name":"SLE-SDK12-SP4-Source-Pool","description":"SLE-SDK12-SP4-Source-Pool for sle-12-ppc64le","enabled":false,"id":2808,"distro_target":"sle-12-ppc64le","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-SDK/12-SP4/ppc64le/product_source/"}],"name":"SUSE Linux Enterprise Software Development Kit","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Software Development Kit 12 SP4 ppc64le","release_type":null,"former_identifier":"sle-sdk","recommended":false,"version":"12.4","extensions":[],"identifier":"sle-sdk","release_stage":"released","id":1631,"friendly_version":"12 SP4"},{"version":"12.4","recommended":false,"release_type":null,"former_identifier":"sle-live-patching","friendly_name":"SUSE Linux Enterprise Live Patching 12 SP4 ppc64le","migration_extra":false,"offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Live Patching","friendly_version":"12 SP4","release_stage":"released","id":1756,"identifier":"sle-live-patching","extensions":[],"free":false,"shortname":"Live-Patching","description":"

SUSE Linux Enterprise Live Patching provides packages to update critical kernel modules live in SUSE Linux Enterprise. With SUSE Linux Enterprise Live Patching, you can perform critical kernel patching without shutting down your system, reducing the need for planned downtime and increasing service availability.

","arch":"ppc64le","eula_url":"https://updates.suse.com/SUSE/Products/SLE-Live-Patching/12-SP4/ppc64le/product.license/","online_predecessor_ids":[1537,1860],"product_class":"SLE-LP-PPC","repositories":[{"url":"https://updates.suse.com/SUSE/Updates/SLE-Live-Patching/12-SP4/ppc64le/update/","distro_target":"sle-12-ppc64le","autorefresh":true,"id":3159,"enabled":true,"description":"SLE-Live-Patching12-SP4-Updates for sle-12-ppc64le","installer_updates":false,"name":"SLE-Live-Patching12-SP4-Updates"},{"description":"SLE-Live-Patching12-SP4-Debuginfo-Updates for sle-12-ppc64le","installer_updates":false,"name":"SLE-Live-Patching12-SP4-Debuginfo-Updates","url":"https://updates.suse.com/SUSE/Updates/SLE-Live-Patching/12-SP4/ppc64le/update_debug/","distro_target":"sle-12-ppc64le","autorefresh":true,"id":3160,"enabled":false},{"description":"SLE-Live-Patching12-SP4-Pool for sle-12-ppc64le","name":"SLE-Live-Patching12-SP4-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-12-ppc64le","url":"https://updates.suse.com/SUSE/Products/SLE-Live-Patching/12-SP4/ppc64le/product/","enabled":true,"id":3161},{"enabled":false,"id":3162,"autorefresh":false,"distro_target":"sle-12-ppc64le","url":"https://updates.suse.com/SUSE/Products/SLE-Live-Patching/12-SP4/ppc64le/product_debug/","name":"SLE-Live-Patching12-SP4-Debuginfo-Pool","installer_updates":false,"description":"SLE-Live-Patching12-SP4-Debuginfo-Pool for sle-12-ppc64le"}],"predecessor_ids":[1537,1860],"product_type":"extension","cpe":"cpe:/o:suse:sle-live-patching:12:sp4"},{"eula_url":"","arch":"ppc64le","free":true,"shortname":"SUSE-PackageHub-12-SP4","description":"SUSE Package Hub is a free of charge extension providing access to community maintained packages built to run on SUSE Linux Enterprise Server. Built from the same sources used in the openSUSE distributions, these quality packages provide additional software to what is found in the SUSE Linux Enterprise Server product. Packages from the Package Hub are delivered without L3 support from SUSE. General updates and fixes to the packages in SUSE Package Hub are provided by the openSUSE community based on their discretion though SUSE will monitor and ensure that any known critical security issues will be addressed. Packages in the Package Hub are approved by SUSE for use with SUSE Linux Enterprise Server 12 and to not interfere with the supportability of SUSE Linux Enterprise Server it's modules and extensions. For more information about SUSE Package Hub please visit https://packagehub.suse.com.","product_type":"extension","cpe":"cpe:/o:suse:packagehub:12:sp4","predecessor_ids":[1475,1478,1481,1531],"online_predecessor_ids":[1475,1478,1481,1531],"product_class":"MODULE","repositories":[{"url":"https://updates.suse.com/SUSE/Backports/SLE-12-SP4_ppc64le/standard/","autorefresh":false,"distro_target":"sle-12-ppc64le","id":3454,"enabled":true,"description":"SUSE-PackageHub-12-SP4-Standard-Pool for sle-12-ppc64le","name":"SUSE-PackageHub-12-SP4-Standard-Pool","installer_updates":false},{"description":"SUSE-PackageHub-12-SP4-Debuginfo for sle-12-ppc64le","name":"SUSE-PackageHub-12-SP4-Debuginfo","installer_updates":false,"autorefresh":true,"distro_target":"sle-12-ppc64le","url":"https://updates.suse.com/SUSE/Backports/SLE-12-SP4_ppc64le/standard_debug/","enabled":false,"id":3455},{"enabled":true,"id":3456,"distro_target":"sle-12-ppc64le","autorefresh":false,"url":"https://updates.suse.com/SUSE/Backports/SLE-12-SP4_ppc64le/product/","installer_updates":false,"name":"SUSE-PackageHub-12-SP4-Pool","description":"SUSE-PackageHub-12-SP4-Pool for sle-12-ppc64le"}],"offline_predecessor_ids":[],"name":"SUSE Package Hub","former_identifier":"PackageHub","release_type":null,"friendly_name":"SUSE Package Hub 12 SP4 ppc64le","migration_extra":false,"recommended":false,"version":"12.4","extensions":[],"id":1811,"release_stage":"released","identifier":"PackageHub","friendly_version":"12 SP4"},{"recommended":false,"version":"12.4","name":"SUSE Linux Enterprise Server LTSS","offline_predecessor_ids":[],"friendly_name":"SUSE Linux Enterprise Server LTSS 12 SP4 ppc64le","migration_extra":false,"release_type":null,"former_identifier":"SLES-LTSS","friendly_version":"12 SP4","extensions":[],"identifier":"SLES-LTSS","release_stage":"released","id":2115,"description":"SUSE Linux Enterprise offers a comprehensive suite of products built on a single code base. The platform addresses business needs from the smallest thin-client devices to the world's most powerful high-performance computing and mainframe servers. SUSE Linux Enterprise offers common management tools and technology certifications across the platform, and each product is enterprise-class.","shortname":"SLES12-SP4 LTSS","free":false,"eula_url":"","arch":"ppc64le","predecessor_ids":[],"online_predecessor_ids":[],"repositories":[{"enabled":true,"id":4488,"distro_target":"sle-12-ppc64le","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-SP4-LTSS/ppc64le/update/","installer_updates":false,"name":"SLES12-SP4-LTSS-Updates","description":"SLES12-SP4-LTSS-Updates for sle-12-ppc64le"},{"installer_updates":false,"name":"SLES12-SP4-LTSS-Debuginfo-Updates","description":"SLES12-SP4-LTSS-Debuginfo-Updates for sle-12-ppc64le","id":4489,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-SP4-LTSS/ppc64le/update_debug/","distro_target":"sle-12-ppc64le","autorefresh":true}],"product_class":"SLES12-SP4-LTSS-PPC","cpe":"cpe:/o:suse:sles-ltss:12:sp4","product_type":"extension"}]},{"arch":"x86_64","eula_url":"https://updates.suse.com/SUSE/Products/SLE-SAP/12-SP4/x86_64/product.license/","description":"SUSE LINUX Enterprise Server 12 SP4 for SAP Applications","shortname":"SLE-12-SP4-SAP","free":false,"cpe":"cpe:/o:suse:sles_sap:12:sp4","product_type":"base","repositories":[{"name":"SLES12-SP4-Updates","installer_updates":false,"description":"SLES12-SP4-Updates for sle-12-x86_64","enabled":true,"id":2769,"autorefresh":true,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-SP4/x86_64/update/"},{"id":2770,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-SP4/x86_64/update_debug/","autorefresh":true,"distro_target":"sle-12-x86_64","name":"SLES12-SP4-Debuginfo-Updates","installer_updates":false,"description":"SLES12-SP4-Debuginfo-Updates for sle-12-x86_64"},{"id":2772,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-SERVER/12-SP4/x86_64/product/","autorefresh":false,"distro_target":"sle-12-x86_64","name":"SLES12-SP4-Pool","installer_updates":false,"description":"SLES12-SP4-Pool for sle-12-x86_64"},{"distro_target":"sle-12-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-SERVER/12-SP4/x86_64/product_debug/","enabled":false,"id":2773,"description":"SLES12-SP4-Debuginfo-Pool for sle-12-x86_64","installer_updates":false,"name":"SLES12-SP4-Debuginfo-Pool"},{"enabled":false,"id":2774,"distro_target":"sle-12-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-SERVER/12-SP4/x86_64/product_source/","installer_updates":false,"name":"SLES12-SP4-Source-Pool","description":"SLES12-SP4-Source-Pool for sle-12-x86_64"},{"name":"SLE-HA12-SP4-Updates","installer_updates":false,"description":"SLE-HA12-SP4-Updates for sle-12-x86_64","enabled":true,"id":2819,"autorefresh":true,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-HA/12-SP4/x86_64/update/"},{"name":"SLE-HA12-SP4-Debuginfo-Updates","installer_updates":false,"description":"SLE-HA12-SP4-Debuginfo-Updates for sle-12-x86_64","id":2820,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-HA/12-SP4/x86_64/update_debug/","autorefresh":true,"distro_target":"sle-12-x86_64"},{"installer_updates":false,"name":"SLE-HA12-SP4-Pool","description":"SLE-HA12-SP4-Pool for sle-12-x86_64","id":2821,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-HA/12-SP4/x86_64/product/","distro_target":"sle-12-x86_64","autorefresh":false},{"distro_target":"sle-12-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-HA/12-SP4/x86_64/product_debug/","enabled":false,"id":2822,"description":"SLE-HA12-SP4-Debuginfo-Pool for sle-12-x86_64","installer_updates":false,"name":"SLE-HA12-SP4-Debuginfo-Pool"},{"description":"SLE-HA12-SP4-Source-Pool for sle-12-x86_64","name":"SLE-HA12-SP4-Source-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-HA/12-SP4/x86_64/product_source/","enabled":false,"id":2823},{"name":"SLE-12-SP4-SAP-Updates","installer_updates":false,"description":"SLE-12-SP4-SAP-Updates for sle-12-x86_64","enabled":true,"id":3154,"autorefresh":true,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-SAP/12-SP4/x86_64/update/"},{"enabled":false,"id":3155,"autorefresh":true,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-SAP/12-SP4/x86_64/update_debug/","name":"SLE-12-SP4-SAP-Debuginfo-Updates","installer_updates":false,"description":"SLE-12-SP4-SAP-Debuginfo-Updates for sle-12-x86_64"},{"enabled":true,"id":3156,"autorefresh":false,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-SAP/12-SP4/x86_64/product/","name":"SLE12-SP4-SAP-Pool","installer_updates":false,"description":"SLE12-SP4-SAP-Pool for sle-12-x86_64"},{"description":"SLE12-SP4-SAP-Debuginfo-Pool for sle-12-x86_64","name":"SLE12-SP4-SAP-Debuginfo-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-SAP/12-SP4/x86_64/product_debug/","autorefresh":false,"distro_target":"sle-12-x86_64","id":3157,"enabled":false},{"id":3158,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-SAP/12-SP4/x86_64/product_source/","distro_target":"sle-12-x86_64","autorefresh":false,"installer_updates":false,"name":"SLE12-SP4-SAP-Source-Pool","description":"SLE12-SP4-SAP-Source-Pool for sle-12-x86_64"}],"online_predecessor_ids":[1346,1414,1426],"product_class":"AiO","predecessor_ids":[1346,1414,1426],"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Server for SAP Applications 12 SP4 x86_64","release_type":null,"former_identifier":"SUSE_SLES_SAP","name":"SUSE Linux Enterprise Server for SAP Applications","offline_predecessor_ids":[1329],"version":"12.4","recommended":false,"release_stage":"released","identifier":"SLES_SAP","id":1755,"extensions":[{"friendly_version":"12","extensions":[],"release_stage":"released","identifier":"sle-module-legacy","id":1150,"recommended":false,"version":"12","offline_predecessor_ids":[],"name":"Legacy Module","release_type":null,"former_identifier":"sle-module-legacy","friendly_name":"Legacy Module 12 x86_64","migration_extra":false,"predecessor_ids":[],"repositories":[{"enabled":true,"id":1676,"distro_target":"sle-12-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/12/x86_64/update/","installer_updates":false,"name":"SLE-Module-Legacy12-Updates","description":"SLE-Module-Legacy12-Updates for sle-12-x86_64"},{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/12/x86_64/update_debug/","autorefresh":true,"distro_target":"sle-12-x86_64","id":1677,"enabled":false,"description":"SLE-Module-Legacy12-Debuginfo-Updates for sle-12-x86_64","name":"SLE-Module-Legacy12-Debuginfo-Updates","installer_updates":false},{"enabled":true,"id":1678,"autorefresh":false,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/12/x86_64/product/","name":"SLE-Module-Legacy12-Pool","installer_updates":false,"description":"SLE-Module-Legacy12-Pool for sle-12-x86_64"},{"distro_target":"sle-12-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/12/x86_64/product_debug/","enabled":false,"id":1679,"description":"SLE-Module-Legacy12-Debuginfo-Pool for sle-12-x86_64","installer_updates":false,"name":"SLE-Module-Legacy12-Debuginfo-Pool"},{"name":"SLE-Module-Legacy12-Source-Pool","installer_updates":false,"description":"SLE-Module-Legacy12-Source-Pool for sle-12-x86_64","enabled":false,"id":1989,"autorefresh":false,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/12/x86_64/product_source/"}],"online_predecessor_ids":[],"product_class":"MODULE","product_type":"module","cpe":"cpe:/o:suse:sle-module-legacy:12","free":true,"description":"

The Legacy Module helps you migrating applications from SUSE Linux Enterprise 10 and 11 and other systems to SUSE Linux Enterprise 12, by providing packages which are discontinued on SUSE Linux Enterprise Server, such as: sendmail, syslog-ng, IBM Java6, and a number of libraries (for example openssl-0.9.8).

Access to the Legacy Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself. Packages in the this module are usually supported for at most three years. Support for Sendmail and IBM Java 6 will end in September 2017 the latest.

","shortname":"Legacy-Module","eula_url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/12/x86_64/product.license/","arch":"x86_64"},{"id":1153,"release_stage":"released","identifier":"sle-module-web-scripting","extensions":[],"friendly_version":"12","migration_extra":false,"friendly_name":"Web and Scripting Module 12 x86_64","former_identifier":"sle-module-web-scripting","release_type":null,"name":"Web and Scripting Module","offline_predecessor_ids":[],"version":"12","recommended":false,"cpe":"cpe:/o:suse:sle-module-web-scripting:12","product_type":"module","online_predecessor_ids":[],"repositories":[{"distro_target":"sle-12-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/12/x86_64/update/","enabled":true,"id":1688,"description":"SLE-Module-Web-Scripting12-Updates for sle-12-x86_64","installer_updates":false,"name":"SLE-Module-Web-Scripting12-Updates"},{"name":"SLE-Module-Web-Scripting12-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-Web-Scripting12-Debuginfo-Updates for sle-12-x86_64","enabled":false,"id":1689,"autorefresh":true,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/12/x86_64/update_debug/"},{"id":1690,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/12/x86_64/product/","autorefresh":false,"distro_target":"sle-12-x86_64","name":"SLE-Module-Web-Scripting12-Pool","installer_updates":false,"description":"SLE-Module-Web-Scripting12-Pool for sle-12-x86_64"},{"description":"SLE-Module-Web-Scripting12-Debuginfo-Pool for sle-12-x86_64","name":"SLE-Module-Web-Scripting12-Debuginfo-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/12/x86_64/product_debug/","autorefresh":false,"distro_target":"sle-12-x86_64","id":1691,"enabled":false},{"name":"SLE-Module-Web-Scripting12-Source-Pool","installer_updates":false,"description":"SLE-Module-Web-Scripting12-Source-Pool for sle-12-x86_64","enabled":false,"id":1992,"autorefresh":false,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/12/x86_64/product_source/"}],"product_class":"MODULE","predecessor_ids":[],"arch":"x86_64","eula_url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/12/x86_64/product.license/","description":"

The SUSE Linux Enterprise Web and Scripting Module delivers a comprehensive suite of scripting languages, frameworks, and related tools helping developers and systems administrators accelerate the creation of stable, modern web applications, using dynamic languages, such as PHP, Ruby on Rails, and Python.

Access to the Web and Scripting Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself: Package versions in the this module are usually supported for at most three years. We are planning to release more recent versions on a schedule of approximately 18 month; the exact dates may differ per package.

","shortname":"Web-and-Scripting-Module","free":true},{"predecessor_ids":[],"online_predecessor_ids":[],"product_class":"MODULE","repositories":[{"description":"SLE-Module-Adv-Systems-Management12-Updates for sle-12-x86_64","name":"SLE-Module-Adv-Systems-Management12-Updates","installer_updates":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Adv-Systems-Management/12/x86_64/update/","autorefresh":true,"distro_target":"sle-12-x86_64","id":1704,"enabled":true},{"autorefresh":true,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Adv-Systems-Management/12/x86_64/update_debug/","enabled":false,"id":1705,"description":"SLE-Module-Adv-Systems-Management12-Debuginfo-Updates for sle-12-x86_64","name":"SLE-Module-Adv-Systems-Management12-Debuginfo-Updates","installer_updates":false},{"description":"SLE-Module-Adv-Systems-Management12-Pool for sle-12-x86_64","name":"SLE-Module-Adv-Systems-Management12-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Adv-Systems-Management/12/x86_64/product/","enabled":true,"id":1706},{"enabled":false,"id":1707,"distro_target":"sle-12-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Adv-Systems-Management/12/x86_64/product_debug/","installer_updates":false,"name":"SLE-Module-Adv-Systems-Management12-Debuginfo-Pool","description":"SLE-Module-Adv-Systems-Management12-Debuginfo-Pool for sle-12-x86_64"},{"distro_target":"sle-12-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Adv-Systems-Management/12/x86_64/product_source/","enabled":false,"id":1998,"description":"SLE-Module-Adv-Systems-Management12-Source-Pool for sle-12-x86_64","installer_updates":false,"name":"SLE-Module-Adv-Systems-Management12-Source-Pool"}],"product_type":"module","cpe":"cpe:/o:suse:sle-module-adv-systems-management:12","free":true,"description":"

This Module contains current versions of the popular configuration management frameworks Puppet and CFEngine as well as the new systems management toolbox called machinery.

The machinery tool will be frequently updated and is SUSE's upcoming systems management toolbox for inspecting and validating systems remotely, storing their system description and creating new systems to deploy them in datacenters and clouds.

","shortname":"Adv-Sys-Mgmt-Module","eula_url":"","arch":"x86_64","friendly_version":"12","extensions":[],"release_stage":"released","identifier":"sle-module-adv-systems-management","id":1212,"recommended":false,"version":"12","offline_predecessor_ids":[],"name":"Advanced Systems Management Module","former_identifier":"sle-module-adv-systems-management","release_type":null,"migration_extra":false,"friendly_name":"Advanced Systems Management Module 12 x86_64"},{"friendly_version":"12","release_stage":"released","id":1220,"identifier":"sle-module-public-cloud","extensions":[],"version":"12","recommended":false,"friendly_name":"Public Cloud Module 12 x86_64","migration_extra":false,"former_identifier":"sle-module-public-cloud","release_type":null,"name":"Public Cloud Module","offline_predecessor_ids":[],"product_class":"MODULE","online_predecessor_ids":[],"repositories":[{"enabled":true,"id":1700,"distro_target":"sle-12-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/12/x86_64/update/","installer_updates":false,"name":"SLE-Module-Public-Cloud12-Updates","description":"SLE-Module-Public-Cloud12-Updates for sle-12-x86_64"},{"enabled":false,"id":1701,"autorefresh":true,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/12/x86_64/update_debug/","name":"SLE-Module-Public-Cloud12-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-Public-Cloud12-Debuginfo-Updates for sle-12-x86_64"},{"name":"SLE-Module-Public-Cloud12-Pool","installer_updates":false,"description":"SLE-Module-Public-Cloud12-Pool for sle-12-x86_64","enabled":true,"id":1702,"autorefresh":false,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/12/x86_64/product/"},{"enabled":false,"id":1703,"distro_target":"sle-12-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/12/x86_64/product_debug/","installer_updates":false,"name":"SLE-Module-Public-Cloud12-Debuginfo-Pool","description":"SLE-Module-Public-Cloud12-Debuginfo-Pool for sle-12-x86_64"},{"distro_target":"sle-12-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/12/x86_64/product_source/","enabled":false,"id":1995,"description":"SLE-Module-Public-Cloud12-Source-Pool for sle-12-x86_64","installer_updates":false,"name":"SLE-Module-Public-Cloud12-Source-Pool"}],"predecessor_ids":[],"cpe":"cpe:/o:suse:sle-module-public-cloud:12","product_type":"module","description":"

The Public Cloud Module is a collection of tools that enables you to create and manage cloud images from the commandline on SUSE Linux Enterprise Server. When building your own images with KIWI or SUSE Studio, initialization code specific to the target cloud is included in that image.

Access to the Public Cloud Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself; please check the Release Notes for further details.

","shortname":"Public-Cloud-Module","free":true,"arch":"x86_64","eula_url":""},{"recommended":false,"version":"12","offline_predecessor_ids":[],"name":"Containers Module","release_type":null,"former_identifier":"sle-module-containers","friendly_name":"Containers Module 12 x86_64","migration_extra":false,"friendly_version":"12","extensions":[],"identifier":"sle-module-containers","release_stage":"released","id":1332,"free":true,"shortname":"Containers-Module","description":"

This Module contains several packages revolving around containers and related tools.

","eula_url":"","arch":"x86_64","predecessor_ids":[],"repositories":[{"description":"SLE-Module-Containers12-Updates for sle-12-x86_64","name":"SLE-Module-Containers12-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/12/x86_64/update/","enabled":true,"id":1864},{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/12/x86_64/update_debug/","autorefresh":true,"distro_target":"sle-12-x86_64","id":1865,"enabled":false,"description":"SLE-Module-Containers12-Debuginfo-Updates for sle-12-x86_64","name":"SLE-Module-Containers12-Debuginfo-Updates","installer_updates":false},{"name":"SLE-Module-Containers12-Pool","installer_updates":false,"description":"SLE-Module-Containers12-Pool for sle-12-x86_64","enabled":true,"id":1866,"autorefresh":false,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/12/x86_64/product/"},{"description":"SLE-Module-Containers12-Debuginfo-Pool for sle-12-x86_64","name":"SLE-Module-Containers12-Debuginfo-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/12/x86_64/product_debug/","enabled":false,"id":1867},{"installer_updates":false,"name":"SLE-Module-Containers12-Source-Pool","description":"SLE-Module-Containers12-Source-Pool for sle-12-x86_64","id":1957,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/12/x86_64/product_source/","distro_target":"sle-12-x86_64","autorefresh":false}],"online_predecessor_ids":[],"product_class":"MODULE","product_type":"module","cpe":"cpe:/o:suse:sle-module-containers:12"},{"friendly_version":"12","release_stage":"released","identifier":"sle-module-toolchain","id":1341,"extensions":[],"version":"12","recommended":false,"friendly_name":"Toolchain Module 12 x86_64","migration_extra":false,"release_type":null,"former_identifier":"sle-module-toolchain","name":"Toolchain Module","offline_predecessor_ids":[],"product_class":"MODULE","online_predecessor_ids":[],"repositories":[{"name":"SLE-Module-Toolchain12-Updates","installer_updates":false,"description":"SLE-Module-Toolchain12-Updates for sle-12-x86_64","id":1903,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Toolchain/12/x86_64/update/","autorefresh":true,"distro_target":"sle-12-x86_64"},{"description":"SLE-Module-Toolchain12-Debuginfo-Updates for sle-12-x86_64","name":"SLE-Module-Toolchain12-Debuginfo-Updates","installer_updates":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Toolchain/12/x86_64/update_debug/","autorefresh":true,"distro_target":"sle-12-x86_64","id":1904,"enabled":false},{"description":"SLE-Module-Toolchain12-Pool for sle-12-x86_64","installer_updates":false,"name":"SLE-Module-Toolchain12-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Toolchain/12/x86_64/product/","distro_target":"sle-12-x86_64","autorefresh":false,"id":1905,"enabled":true},{"name":"SLE-Module-Toolchain12-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-Toolchain12-Debuginfo-Pool for sle-12-x86_64","id":1906,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Toolchain/12/x86_64/product_debug/","autorefresh":false,"distro_target":"sle-12-x86_64"}],"predecessor_ids":[],"cpe":"cpe:/o:suse:sle-module-toolchain:12","product_type":"module","shortname":"Toolchain-Module","description":"Via this Module you will have access to a more recent GCC and Toolchain in addition to the default compiler of SUSE Linux Enterprise. Access to the Toolchain Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself. Please check the Release Notes for further details.","free":true,"arch":"x86_64","eula_url":""},{"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Point of Service Image Server 12 SP2 x86_64","former_identifier":"sle-pos","release_type":null,"name":"SUSE Linux Enterprise Point of Service Image Server","offline_predecessor_ids":[],"version":"12.2","recommended":false,"identifier":"sle-pos","release_stage":"released","id":1439,"extensions":[],"friendly_version":"12 SP2","arch":"x86_64","eula_url":"https://updates.suse.com/SUSE/Products/SLE-POS/12-SP2/x86_64/product.license/","shortname":"SLEPOS12","description":"SUSE Linux Enterprise Point of Service Image Server","free":false,"cpe":"cpe:/o:suse:sle-pos:12:sp2","product_type":"extension","repositories":[{"description":"SLE-POS12-SP2-Updates for sle-12-x86_64","name":"SLE-POS12-SP2-Updates","installer_updates":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-POS/12-SP2/x86_64/update/","autorefresh":true,"distro_target":"sle-12-x86_64","id":2289,"enabled":true},{"description":"SLE-POS12-SP2-Debuginfo-Updates for sle-12-x86_64","name":"SLE-POS12-SP2-Debuginfo-Updates","installer_updates":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-POS/12-SP2/x86_64/update_debug/","autorefresh":true,"distro_target":"sle-12-x86_64","id":2290,"enabled":false},{"description":"SLE-POS12-SP2-Pool for sle-12-x86_64","installer_updates":false,"name":"SLE-POS12-SP2-Pool","distro_target":"sle-12-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-POS/12-SP2/x86_64/product/","enabled":true,"id":2291},{"name":"SLE-POS12-SP2-Debuginfo-Pool","installer_updates":false,"description":"SLE-POS12-SP2-Debuginfo-Pool for sle-12-x86_64","id":2292,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-POS/12-SP2/x86_64/product_debug/","autorefresh":false,"distro_target":"sle-12-x86_64"},{"description":"SLE-POS12-SP2-Source-Pool for sle-12-x86_64","installer_updates":false,"name":"SLE-POS12-SP2-Source-Pool","distro_target":"sle-12-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-POS/12-SP2/x86_64/product_source/","enabled":false,"id":2293},{"installer_updates":false,"name":"SLE-POS12-SP2-CLIENT-Updates","description":"SLE-POS12-SP2-CLIENT-Updates for sle-12-x86_64","id":3130,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-POS/12-SP2-CLIENT/x86_64/update/","distro_target":"sle-12-x86_64","autorefresh":true},{"name":"SLE-POS12-SP2-CLIENT-Debuginfo-Updates","installer_updates":false,"description":"SLE-POS12-SP2-CLIENT-Debuginfo-Updates for sle-12-x86_64","enabled":false,"id":3131,"autorefresh":true,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-POS/12-SP2-CLIENT/x86_64/update_debug/"}],"online_predecessor_ids":[],"product_class":"10040","predecessor_ids":[]},{"repositories":[{"installer_updates":false,"name":"SLE-Module-HPC12-Updates","description":"SLE-Module-HPC12-Updates for sle-12-x86_64","id":2294,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-HPC/12/x86_64/update/","distro_target":"sle-12-x86_64","autorefresh":true},{"id":2295,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-HPC/12/x86_64/update_debug/","distro_target":"sle-12-x86_64","autorefresh":true,"installer_updates":false,"name":"SLE-Module-HPC12-Debuginfo-Updates","description":"SLE-Module-HPC12-Debuginfo-Updates for sle-12-x86_64"},{"description":"SLE-Module-HPC12-Pool for sle-12-x86_64","installer_updates":false,"name":"SLE-Module-HPC12-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-HPC/12/x86_64/product/","distro_target":"sle-12-x86_64","autorefresh":false,"id":2296,"enabled":true},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-HPC/12/x86_64/product_debug/","autorefresh":false,"distro_target":"sle-12-x86_64","id":2297,"enabled":false,"description":"SLE-Module-HPC12-Debuginfo-Pool for sle-12-x86_64","name":"SLE-Module-HPC12-Debuginfo-Pool","installer_updates":false},{"autorefresh":false,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-HPC/12/x86_64/product_source/","enabled":false,"id":2298,"description":"SLE-Module-HPC12-Source-Pool for sle-12-x86_64","name":"SLE-Module-HPC12-Source-Pool","installer_updates":false}],"online_predecessor_ids":[],"product_class":"MODULE","predecessor_ids":[],"cpe":"cpe:/o:suse:sle-module-hpc:12","product_type":"module","description":"The SUSE Linux Enterprise Server High Performance Computing (HPC) module delivers specific tools commonly used for high performance, numerically intensive workloads. SUSE packages these tools in the SLES HPC Module to provide greater flexibility to deliver new versions or new tools more rapidly than the standard SUSE Linux Enterprise lifecycle would permit. Packages in this module are general supported till a newer version of the package is released or the package is dropped from the module.","shortname":"HPC-Module","free":true,"arch":"x86_64","eula_url":"https://updates.suse.com/SUSE/Products/SLE-Module-HPC/12/x86_64/product.license/","friendly_version":"12","release_stage":"released","identifier":"sle-module-hpc","id":1440,"extensions":[],"version":"12","recommended":false,"friendly_name":"HPC Module 12 x86_64","migration_extra":false,"former_identifier":"sle-module-hpc","release_type":null,"name":"HPC Module","offline_predecessor_ids":[]},{"description":"

SUSE Linux Enterprise Software Development Kit is the Software Development Kit for the family of SUSE Linux Enterprise products. It is a free of charge extension for partners and customers working with SUSE Linux Enterprise Server and Desktop and derived products.

Packages on the SDK are delivered without L3 support; maintenance updates will be done for critical security and critical non-security issues, and where needed to remain in sync with packages delivered in the SUSE Linux Enterprise Server and Desktop products.

Packages to rebuild SUSE Linux Enterprise Server are not part of the SUSE Linux Enterprise Software Development Kit.

","shortname":"SDK12-SP4","free":true,"arch":"x86_64","eula_url":"https://updates.suse.com/SUSE/Products/SLE-SDK/12-SP4/x86_64/product.license/","product_class":"MODULE","online_predecessor_ids":[1223,1323,1366,1427],"repositories":[{"installer_updates":false,"name":"SLE-SDK12-SP4-Updates","description":"SLE-SDK12-SP4-Updates for sle-12-x86_64","enabled":true,"id":2799,"distro_target":"sle-12-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-SDK/12-SP4/x86_64/update/"},{"enabled":false,"id":2800,"distro_target":"sle-12-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-SDK/12-SP4/x86_64/update_debug/","installer_updates":false,"name":"SLE-SDK12-SP4-Debuginfo-Updates","description":"SLE-SDK12-SP4-Debuginfo-Updates for sle-12-x86_64"},{"enabled":true,"id":2801,"autorefresh":false,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-SDK/12-SP4/x86_64/product/","name":"SLE-SDK12-SP4-Pool","installer_updates":false,"description":"SLE-SDK12-SP4-Pool for sle-12-x86_64"},{"enabled":false,"id":2802,"distro_target":"sle-12-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-SDK/12-SP4/x86_64/product_debug/","installer_updates":false,"name":"SLE-SDK12-SP4-Debuginfo-Pool","description":"SLE-SDK12-SP4-Debuginfo-Pool for sle-12-x86_64"},{"distro_target":"sle-12-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-SDK/12-SP4/x86_64/product_source/","enabled":false,"id":2803,"description":"SLE-SDK12-SP4-Source-Pool for sle-12-x86_64","installer_updates":false,"name":"SLE-SDK12-SP4-Source-Pool"}],"predecessor_ids":[1223,1323,1366,1427],"cpe":"cpe:/o:suse:sle-sdk:12:sp4","product_type":"extension","version":"12.4","recommended":false,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Software Development Kit 12 SP4 x86_64","release_type":null,"former_identifier":"sle-sdk","name":"SUSE Linux Enterprise Software Development Kit","offline_predecessor_ids":[],"friendly_version":"12 SP4","id":1630,"release_stage":"released","identifier":"sle-sdk","extensions":[]},{"release_stage":"released","identifier":"sle-ha-geo","id":1637,"extensions":[],"friendly_version":"12 SP4","release_type":null,"former_identifier":"sle-hae-geo","migration_extra":false,"friendly_name":"SUSE Linux Enterprise High Availability GEO Extension 12 SP4 x86_64","offline_predecessor_ids":[1101,1107,1286],"name":"SUSE Linux Enterprise High Availability GEO Extension","version":"12.4","recommended":false,"product_type":"extension","cpe":"cpe:/o:suse:sle-ha-geo:12:sp4","online_predecessor_ids":[1157,1337,1363,1435],"product_class":"SLE-HAE-GEO","repositories":[{"enabled":true,"id":2834,"autorefresh":true,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-HA-GEO/12-SP4/x86_64/update/","name":"SLE-HA-GEO12-SP4-Updates","installer_updates":false,"description":"SLE-HA-GEO12-SP4-Updates for sle-12-x86_64"},{"installer_updates":false,"name":"SLE-HA-GEO12-SP4-Debuginfo-Updates","description":"SLE-HA-GEO12-SP4-Debuginfo-Updates for sle-12-x86_64","id":2835,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-HA-GEO/12-SP4/x86_64/update_debug/","distro_target":"sle-12-x86_64","autorefresh":true},{"description":"SLE-HA-GEO12-SP4-Pool for sle-12-x86_64","name":"SLE-HA-GEO12-SP4-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-HA-GEO/12-SP4/x86_64/product/","enabled":true,"id":2836},{"url":"https://updates.suse.com/SUSE/Products/SLE-HA-GEO/12-SP4/x86_64/product_debug/","distro_target":"sle-12-x86_64","autorefresh":false,"id":2837,"enabled":false,"description":"SLE-HA-GEO12-SP4-Debuginfo-Pool for sle-12-x86_64","installer_updates":false,"name":"SLE-HA-GEO12-SP4-Debuginfo-Pool"},{"description":"SLE-HA-GEO12-SP4-Source-Pool for sle-12-x86_64","name":"SLE-HA-GEO12-SP4-Source-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-HA-GEO/12-SP4/x86_64/product_source/","autorefresh":false,"distro_target":"sle-12-x86_64","id":2838,"enabled":false}],"predecessor_ids":[1157,1337,1363,1435],"arch":"x86_64","eula_url":"https://updates.suse.com/SUSE/Products/SLE-HA-GEO/12-SP4/x86_64/product.license/","free":false,"shortname":"SLEHAGEO12-SP4","description":"SUSE Linux Enterprise High Availability Geographical Cluster Extension"},{"extensions":[],"release_stage":"released","id":1639,"identifier":"sle-we","friendly_version":"12 SP4","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Workstation Extension","release_type":null,"former_identifier":"sle-we","friendly_name":"SUSE Linux Enterprise Workstation Extension 12 SP4 x86_64","migration_extra":false,"recommended":false,"version":"12.4","product_type":"extension","cpe":"cpe:/o:suse:sle-we:12:sp4","predecessor_ids":[1222,1338,1359,1431],"online_predecessor_ids":[1222,1338,1359,1431],"product_class":"SLE-WE","repositories":[{"name":"SLE-WE12-SP4-Updates","installer_updates":false,"description":"SLE-WE12-SP4-Updates for sle-12-x86_64","id":2844,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-WE/12-SP4/x86_64/update/","autorefresh":true,"distro_target":"sle-12-x86_64"},{"description":"SLE-WE12-SP4-Debuginfo-Updates for sle-12-x86_64","name":"SLE-WE12-SP4-Debuginfo-Updates","installer_updates":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-WE/12-SP4/x86_64/update_debug/","autorefresh":true,"distro_target":"sle-12-x86_64","id":2845,"enabled":false},{"description":"SLE-WE12-SP4-Pool for sle-12-x86_64","installer_updates":false,"name":"SLE-WE12-SP4-Pool","distro_target":"sle-12-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-WE/12-SP4/x86_64/product/","enabled":true,"id":2846},{"description":"SLE-WE12-SP4-Debuginfo-Pool for sle-12-x86_64","name":"SLE-WE12-SP4-Debuginfo-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-WE/12-SP4/x86_64/product_debug/","enabled":false,"id":2847},{"url":"https://updates.suse.com/SUSE/Products/SLE-WE/12-SP4/x86_64/product_source/","autorefresh":false,"distro_target":"sle-12-x86_64","id":2848,"enabled":false,"description":"SLE-WE12-SP4-Source-Pool for sle-12-x86_64","name":"SLE-WE12-SP4-Source-Pool","installer_updates":false},{"name":"SLE-12-SP4-GA-Desktop-nVidia-Driver","installer_updates":false,"description":"SLE-12-SP4-GA-Desktop-nVidia-Driver","id":3529,"enabled":true,"url":"https://download.nvidia.com/suse/sle12sp4/","autorefresh":true,"distro_target":null}],"eula_url":"https://updates.suse.com/SUSE/Products/SLE-WE/12-SP4/x86_64/product.license/","arch":"x86_64","free":false,"description":"SUSE Linux Enterprise Workstation Extension extends the functionality of SUSE Linux Enterprise Server with packages of SUSE Linux Enterprise Desktop, like additional desktop applications (office suite, email client, graphical editor ...) and libraries. It allows to combine both products to create a full featured Workstation.","shortname":"SLEWE12-SP4"},{"extensions":[],"release_stage":"released","identifier":"sle-live-patching","id":1757,"friendly_version":"12 SP4","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Live Patching","release_type":null,"former_identifier":"sle-live-patching","migration_extra":false,"friendly_name":"SUSE Linux Enterprise Live Patching 12 SP4 x86_64","recommended":false,"version":"12.4","product_type":"extension","cpe":"cpe:/o:suse:sle-live-patching:12:sp4","predecessor_ids":[1253,1536],"online_predecessor_ids":[1253,1536],"repositories":[{"id":3163,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Live-Patching/12-SP4/x86_64/update/","distro_target":"sle-12-x86_64","autorefresh":true,"installer_updates":false,"name":"SLE-Live-Patching12-SP4-Updates","description":"SLE-Live-Patching12-SP4-Updates for sle-12-x86_64"},{"name":"SLE-Live-Patching12-SP4-Debuginfo-Updates","installer_updates":false,"description":"SLE-Live-Patching12-SP4-Debuginfo-Updates for sle-12-x86_64","id":3164,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Live-Patching/12-SP4/x86_64/update_debug/","autorefresh":true,"distro_target":"sle-12-x86_64"},{"name":"SLE-Live-Patching12-SP4-Pool","installer_updates":false,"description":"SLE-Live-Patching12-SP4-Pool for sle-12-x86_64","enabled":true,"id":3165,"autorefresh":false,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Live-Patching/12-SP4/x86_64/product/"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Live-Patching/12-SP4/x86_64/product_debug/","autorefresh":false,"distro_target":"sle-12-x86_64","id":3166,"enabled":false,"description":"SLE-Live-Patching12-SP4-Debuginfo-Pool for sle-12-x86_64","name":"SLE-Live-Patching12-SP4-Debuginfo-Pool","installer_updates":false}],"product_class":"SLE-LP","eula_url":"https://updates.suse.com/SUSE/Products/SLE-Live-Patching/12-SP4/x86_64/product.license/","arch":"x86_64","free":false,"shortname":"Live-Patching","description":"

SUSE Linux Enterprise Live Patching provides packages to update critical kernel modules live in SUSE Linux Enterprise. With SUSE Linux Enterprise Live Patching, you can perform critical kernel patching without shutting down your system, reducing the need for planned downtime and increasing service availability.

"},{"recommended":false,"version":"12.4","name":"SUSE Package Hub","offline_predecessor_ids":[],"friendly_name":"SUSE Package Hub 12 SP4 x86_64","migration_extra":false,"release_type":null,"former_identifier":"PackageHub","friendly_version":"12 SP4","extensions":[],"release_stage":"released","identifier":"PackageHub","id":1813,"description":"SUSE Package Hub is a free of charge extension providing access to community maintained packages built to run on SUSE Linux Enterprise Server. Built from the same sources used in the openSUSE distributions, these quality packages provide additional software to what is found in the SUSE Linux Enterprise Server product. Packages from the Package Hub are delivered without L3 support from SUSE. General updates and fixes to the packages in SUSE Package Hub are provided by the openSUSE community based on their discretion though SUSE will monitor and ensure that any known critical security issues will be addressed. Packages in the Package Hub are approved by SUSE for use with SUSE Linux Enterprise Server 12 and to not interfere with the supportability of SUSE Linux Enterprise Server it's modules and extensions. For more information about SUSE Package Hub please visit https://packagehub.suse.com.","shortname":"SUSE-PackageHub-12-SP4","free":true,"eula_url":"","arch":"x86_64","predecessor_ids":[1473,1476,1479,1529],"online_predecessor_ids":[1473,1476,1479,1529],"repositories":[{"url":"https://updates.suse.com/SUSE/Backports/SLE-12-SP4_x86_64/standard/","distro_target":"sle-12-x86_64","autorefresh":false,"id":3460,"enabled":true,"description":"SUSE-PackageHub-12-SP4-Standard-Pool for sle-12-x86_64","installer_updates":false,"name":"SUSE-PackageHub-12-SP4-Standard-Pool"},{"id":3461,"enabled":false,"url":"https://updates.suse.com/SUSE/Backports/SLE-12-SP4_x86_64/standard_debug/","autorefresh":true,"distro_target":"sle-12-x86_64","name":"SUSE-PackageHub-12-SP4-Debuginfo","installer_updates":false,"description":"SUSE-PackageHub-12-SP4-Debuginfo for sle-12-x86_64"},{"installer_updates":false,"name":"SUSE-PackageHub-12-SP4-Pool","description":"SUSE-PackageHub-12-SP4-Pool for sle-12-x86_64","id":3462,"enabled":true,"url":"https://updates.suse.com/SUSE/Backports/SLE-12-SP4_x86_64/product/","distro_target":"sle-12-x86_64","autorefresh":false}],"product_class":"MODULE","cpe":"cpe:/o:suse:packagehub:12:sp4","product_type":"extension"},{"free":false,"description":"SUSE Linux Enterprise offers a comprehensive suite of products built on a single code base. The platform addresses business needs from the smallest thin-client devices to the world's most powerful high-performance computing and mainframe servers. SUSE Linux Enterprise offers common management tools and technology certifications across the platform, and each product is enterprise-class.","shortname":"SLES12-SP4 LTSS","arch":"x86_64","eula_url":"","product_class":"SLES12-SP4-LTSS-X86","online_predecessor_ids":[],"repositories":[{"name":"SLES12-SP4-LTSS-Updates","installer_updates":false,"description":"SLES12-SP4-LTSS-Updates for sle-12-x86_64","enabled":true,"id":4492,"autorefresh":true,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-SP4-LTSS/x86_64/update/"},{"url":"https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-SP4-LTSS/x86_64/update_debug/","autorefresh":true,"distro_target":"sle-12-x86_64","id":4493,"enabled":false,"description":"SLES12-SP4-LTSS-Debuginfo-Updates for sle-12-x86_64","name":"SLES12-SP4-LTSS-Debuginfo-Updates","installer_updates":false}],"predecessor_ids":[],"product_type":"extension","cpe":"cpe:/o:suse:sles-ltss:12:sp4","version":"12.4","recommended":false,"former_identifier":"SLES-LTSS","release_type":null,"friendly_name":"SUSE Linux Enterprise Server LTSS 12 SP4 x86_64","migration_extra":false,"offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Server LTSS","friendly_version":"12 SP4","release_stage":"released","identifier":"SLES-LTSS","id":2117,"extensions":[]}],"friendly_version":"12 SP4"},{"extensions":[],"release_stage":"released","id":1756,"identifier":"sle-live-patching","friendly_version":"12 SP4","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Live Patching","release_type":null,"former_identifier":"sle-live-patching","friendly_name":"SUSE Linux Enterprise Live Patching 12 SP4 ppc64le","migration_extra":false,"recommended":false,"version":"12.4","product_type":"extension","cpe":"cpe:/o:suse:sle-live-patching:12:sp4","predecessor_ids":[1537,1860],"online_predecessor_ids":[1537,1860],"repositories":[{"id":3159,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Live-Patching/12-SP4/ppc64le/update/","autorefresh":true,"distro_target":"sle-12-ppc64le","name":"SLE-Live-Patching12-SP4-Updates","installer_updates":false,"description":"SLE-Live-Patching12-SP4-Updates for sle-12-ppc64le"},{"url":"https://updates.suse.com/SUSE/Updates/SLE-Live-Patching/12-SP4/ppc64le/update_debug/","distro_target":"sle-12-ppc64le","autorefresh":true,"id":3160,"enabled":false,"description":"SLE-Live-Patching12-SP4-Debuginfo-Updates for sle-12-ppc64le","installer_updates":false,"name":"SLE-Live-Patching12-SP4-Debuginfo-Updates"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Live-Patching/12-SP4/ppc64le/product/","autorefresh":false,"distro_target":"sle-12-ppc64le","id":3161,"enabled":true,"description":"SLE-Live-Patching12-SP4-Pool for sle-12-ppc64le","name":"SLE-Live-Patching12-SP4-Pool","installer_updates":false},{"description":"SLE-Live-Patching12-SP4-Debuginfo-Pool for sle-12-ppc64le","installer_updates":false,"name":"SLE-Live-Patching12-SP4-Debuginfo-Pool","distro_target":"sle-12-ppc64le","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Live-Patching/12-SP4/ppc64le/product_debug/","enabled":false,"id":3162}],"product_class":"SLE-LP-PPC","eula_url":"https://updates.suse.com/SUSE/Products/SLE-Live-Patching/12-SP4/ppc64le/product.license/","arch":"ppc64le","free":false,"description":"

SUSE Linux Enterprise Live Patching provides packages to update critical kernel modules live in SUSE Linux Enterprise. With SUSE Linux Enterprise Live Patching, you can perform critical kernel patching without shutting down your system, reducing the need for planned downtime and increasing service availability.

","shortname":"Live-Patching"},{"free":false,"shortname":"Live-Patching","description":"

SUSE Linux Enterprise Live Patching provides packages to update critical kernel modules live in SUSE Linux Enterprise. With SUSE Linux Enterprise Live Patching, you can perform critical kernel patching without shutting down your system, reducing the need for planned downtime and increasing service availability.

","eula_url":"https://updates.suse.com/SUSE/Products/SLE-Live-Patching/12-SP4/x86_64/product.license/","arch":"x86_64","predecessor_ids":[1253,1536],"repositories":[{"distro_target":"sle-12-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Live-Patching/12-SP4/x86_64/update/","enabled":true,"id":3163,"description":"SLE-Live-Patching12-SP4-Updates for sle-12-x86_64","installer_updates":false,"name":"SLE-Live-Patching12-SP4-Updates"},{"distro_target":"sle-12-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Live-Patching/12-SP4/x86_64/update_debug/","enabled":false,"id":3164,"description":"SLE-Live-Patching12-SP4-Debuginfo-Updates for sle-12-x86_64","installer_updates":false,"name":"SLE-Live-Patching12-SP4-Debuginfo-Updates"},{"id":3165,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Live-Patching/12-SP4/x86_64/product/","autorefresh":false,"distro_target":"sle-12-x86_64","name":"SLE-Live-Patching12-SP4-Pool","installer_updates":false,"description":"SLE-Live-Patching12-SP4-Pool for sle-12-x86_64"},{"installer_updates":false,"name":"SLE-Live-Patching12-SP4-Debuginfo-Pool","description":"SLE-Live-Patching12-SP4-Debuginfo-Pool for sle-12-x86_64","id":3166,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Live-Patching/12-SP4/x86_64/product_debug/","distro_target":"sle-12-x86_64","autorefresh":false}],"online_predecessor_ids":[1253,1536],"product_class":"SLE-LP","product_type":"extension","cpe":"cpe:/o:suse:sle-live-patching:12:sp4","recommended":false,"version":"12.4","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Live Patching","release_type":null,"former_identifier":"sle-live-patching","friendly_name":"SUSE Linux Enterprise Live Patching 12 SP4 x86_64","migration_extra":false,"friendly_version":"12 SP4","extensions":[],"id":1757,"release_stage":"released","identifier":"sle-live-patching"},{"cpe":"cpe:/o:suse:sle-hpc:12:sp4","product_type":"base","predecessor_ids":[1750],"repositories":[{"name":"SLES12-SP4-Updates","installer_updates":false,"description":"SLES12-SP4-Updates for sle-12-aarch64","id":2787,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-SP4/aarch64/update/","autorefresh":true,"distro_target":"sle-12-aarch64"},{"distro_target":"sle-12-aarch64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-SP4/aarch64/update_debug/","enabled":false,"id":2788,"description":"SLES12-SP4-Debuginfo-Updates for sle-12-aarch64","installer_updates":false,"name":"SLES12-SP4-Debuginfo-Updates"},{"installer_updates":true,"name":"SLES12-SP4-Installer-Updates","description":"SLES12-SP4-Installer-Updates for sle-12-aarch64","id":2789,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-SERVER-INSTALLER/12-SP4/aarch64/update/","distro_target":"sle-12-aarch64","autorefresh":true},{"id":2790,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-SERVER/12-SP4/aarch64/product/","distro_target":"sle-12-aarch64","autorefresh":false,"installer_updates":false,"name":"SLES12-SP4-Pool","description":"SLES12-SP4-Pool for sle-12-aarch64"},{"description":"SLES12-SP4-Debuginfo-Pool for sle-12-aarch64","installer_updates":false,"name":"SLES12-SP4-Debuginfo-Pool","distro_target":"sle-12-aarch64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-SERVER/12-SP4/aarch64/product_debug/","enabled":false,"id":2791},{"enabled":false,"id":2792,"distro_target":"sle-12-aarch64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-SERVER/12-SP4/aarch64/product_source/","installer_updates":false,"name":"SLES12-SP4-Source-Pool","description":"SLES12-SP4-Source-Pool for sle-12-aarch64"},{"name":"SLE12-SP4-HPC-Updates","installer_updates":false,"description":"SLE12-SP4-HPC-Updates for sle-12-aarch64","enabled":true,"id":3187,"autorefresh":true,"distro_target":"sle-12-aarch64","url":"https://updates.suse.com/SUSE/Updates/SLE-HPC/12-SP4/aarch64/update/"},{"id":3188,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-HPC/12-SP4/aarch64/update_debug/","distro_target":"sle-12-aarch64","autorefresh":true,"installer_updates":false,"name":"SLE12-SP4-HPC-Debuginfo-Updates","description":"SLE12-SP4-HPC-Debuginfo-Updates for sle-12-aarch64"},{"description":"SLE12-SP4-HPC-Pool for sle-12-aarch64","name":"SLE12-SP4-HPC-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-HPC/12-SP4/aarch64/product/","autorefresh":false,"distro_target":"sle-12-aarch64","id":3189,"enabled":true},{"installer_updates":false,"name":"SLE12-SP4-HPC-Debuginfo-Pool","description":"SLE12-SP4-HPC-Debuginfo-Pool for sle-12-aarch64","enabled":false,"id":3190,"distro_target":"sle-12-aarch64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-HPC/12-SP4/aarch64/product_debug/"},{"enabled":false,"id":3191,"distro_target":"sle-12-aarch64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-HPC/12-SP4/aarch64/product_source/","installer_updates":false,"name":"SLE12-SP4-HPC-Source-Pool","description":"SLE12-SP4-HPC-Source-Pool for sle-12-aarch64"}],"online_predecessor_ids":[1750],"product_class":"HPC-ARM64","eula_url":"https://updates.suse.com/SUSE/Products/SLE-HPC/12-SP4/aarch64/product.license/","arch":"aarch64","description":"SUSE Linux Enterprise offers a comprehensive suite of products built on a single code base. The platform addresses business needs from the smallest thin-client devices to the world's most powerful high-performance computing and mainframe servers. SUSE Linux Enterprise offers common management tools and technology certifications across the platform, and each product is enterprise-class. The SUSE Linux Enterprise Server for High Performance Computing (HPC) delivers specific tools commonly used for high performance, numerically intensive workloads.","shortname":"SLE-HPC-12-SP4","free":false,"extensions":[{"name":"Toolchain Module","offline_predecessor_ids":[],"friendly_name":"Toolchain Module 12 aarch64","migration_extra":false,"release_type":null,"former_identifier":"sle-module-toolchain","recommended":false,"version":"12","extensions":[],"identifier":"sle-module-toolchain","release_stage":"released","id":1376,"friendly_version":"12","eula_url":"","arch":"aarch64","description":"Via this Module you will have access to a more recent GCC and Toolchain in addition to the default compiler of SUSE Linux Enterprise. Access to the Toolchain Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself. Please check the Release Notes for further details.","shortname":"Toolchain-Module","free":true,"cpe":"cpe:/o:suse:sle-module-toolchain:12","product_type":"module","predecessor_ids":[],"online_predecessor_ids":[],"product_class":"MODULE","repositories":[{"id":2086,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Toolchain/12/aarch64/update/","autorefresh":true,"distro_target":"sle-12-aarch64","name":"SLE-Module-Toolchain12-Updates","installer_updates":false,"description":"SLE-Module-Toolchain12-Updates for sle-12-aarch64"},{"description":"SLE-Module-Toolchain12-Debuginfo-Updates for sle-12-aarch64","name":"SLE-Module-Toolchain12-Debuginfo-Updates","installer_updates":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Toolchain/12/aarch64/update_debug/","autorefresh":true,"distro_target":"sle-12-aarch64","id":2087,"enabled":false},{"id":2088,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Toolchain/12/aarch64/product/","distro_target":"sle-12-aarch64","autorefresh":false,"installer_updates":false,"name":"SLE-Module-Toolchain12-Pool","description":"SLE-Module-Toolchain12-Pool for sle-12-aarch64"},{"name":"SLE-Module-Toolchain12-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-Toolchain12-Debuginfo-Pool for sle-12-aarch64","id":2089,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Toolchain/12/aarch64/product_debug/","autorefresh":false,"distro_target":"sle-12-aarch64"}]},{"release_stage":"released","identifier":"sle-module-hpc","id":1522,"extensions":[],"friendly_version":"12","migration_extra":false,"friendly_name":"HPC Module 12 aarch64","former_identifier":"sle-module-hpc","release_type":null,"name":"HPC Module","offline_predecessor_ids":[],"version":"12","recommended":false,"cpe":"cpe:/o:suse:sle-module-hpc:12","product_type":"module","online_predecessor_ids":[],"product_class":"MODULE","repositories":[{"description":"SLE-Module-HPC12-Updates for sle-12-aarch64","name":"SLE-Module-HPC12-Updates","installer_updates":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-HPC/12/aarch64/update/","autorefresh":true,"distro_target":"sle-12-aarch64","id":2421,"enabled":true},{"id":2422,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-HPC/12/aarch64/update_debug/","autorefresh":true,"distro_target":"sle-12-aarch64","name":"SLE-Module-HPC12-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-HPC12-Debuginfo-Updates for sle-12-aarch64"},{"id":2423,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-HPC/12/aarch64/product/","autorefresh":false,"distro_target":"sle-12-aarch64","name":"SLE-Module-HPC12-Pool","installer_updates":false,"description":"SLE-Module-HPC12-Pool for sle-12-aarch64"},{"name":"SLE-Module-HPC12-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-HPC12-Debuginfo-Pool for sle-12-aarch64","enabled":false,"id":2424,"autorefresh":false,"distro_target":"sle-12-aarch64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-HPC/12/aarch64/product_debug/"},{"enabled":false,"id":2425,"autorefresh":false,"distro_target":"sle-12-aarch64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-HPC/12/aarch64/product_source/","name":"SLE-Module-HPC12-Source-Pool","installer_updates":false,"description":"SLE-Module-HPC12-Source-Pool for sle-12-aarch64"}],"predecessor_ids":[],"arch":"aarch64","eula_url":"https://updates.suse.com/SUSE/Products/SLE-Module-HPC/12/aarch64/product.license/","shortname":"HPC-Module","description":"The SUSE Linux Enterprise Server High Performance Computing (HPC) module delivers specific tools commonly used for high performance, numerically intensive workloads. SUSE packages these tools in the SLES HPC Module to provide greater flexibility to deliver new versions or new tools more rapidly than the standard SUSE Linux Enterprise lifecycle would permit. Packages in this module are general supported till a newer version of the package is released or the package is dropped from the module.","free":true},{"arch":"aarch64","eula_url":"","description":"

The Public Cloud Module is a collection of tools that enables you to create and manage cloud images from the commandline on SUSE Linux Enterprise Server. When building your own images with KIWI or SUSE Studio, initialization code specific to the target cloud is included in that image.

Access to the Public Cloud Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself; please check the Release Notes for further details.

","shortname":"Public-Cloud-Module","free":true,"cpe":"cpe:/o:suse:sle-module-public-cloud:12","product_type":"module","product_class":"MODULE","online_predecessor_ids":[],"repositories":[{"installer_updates":false,"name":"SLE-Module-Public-Cloud12-Updates","description":"SLE-Module-Public-Cloud12-Updates for sle-12-aarch64","enabled":true,"id":2157,"distro_target":"sle-12-aarch64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/12/aarch64/update/"},{"description":"SLE-Module-Public-Cloud12-Debuginfo-Updates for sle-12-aarch64","name":"SLE-Module-Public-Cloud12-Debuginfo-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-12-aarch64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/12/aarch64/update_debug/","enabled":false,"id":2158},{"description":"SLE-Module-Public-Cloud12-Pool for sle-12-aarch64","name":"SLE-Module-Public-Cloud12-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-12-aarch64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/12/aarch64/product/","enabled":true,"id":2159},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/12/aarch64/product_debug/","autorefresh":false,"distro_target":"sle-12-aarch64","id":2160,"enabled":false,"description":"SLE-Module-Public-Cloud12-Debuginfo-Pool for sle-12-aarch64","name":"SLE-Module-Public-Cloud12-Debuginfo-Pool","installer_updates":false},{"installer_updates":false,"name":"SLE-Module-Public-Cloud12-Source-Pool","description":"SLE-Module-Public-Cloud12-Source-Pool for sle-12-aarch64","id":2161,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/12/aarch64/product_source/","distro_target":"sle-12-aarch64","autorefresh":false}],"predecessor_ids":[],"friendly_name":"Public Cloud Module 12 aarch64","migration_extra":false,"former_identifier":"sle-module-public-cloud","release_type":null,"name":"Public Cloud Module","offline_predecessor_ids":[],"version":"12","recommended":false,"identifier":"sle-module-public-cloud","release_stage":"released","id":1528,"extensions":[],"friendly_version":"12"},{"friendly_version":"12","id":1539,"release_stage":"released","identifier":"sle-module-web-scripting","extensions":[],"version":"12","recommended":false,"former_identifier":"sle-module-web-scripting","release_type":null,"migration_extra":false,"friendly_name":"Web and Scripting Module 12 aarch64","offline_predecessor_ids":[],"name":"Web and Scripting Module","online_predecessor_ids":[],"product_class":"MODULE","repositories":[{"distro_target":"sle-12-aarch64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/12/aarch64/update/","enabled":true,"id":2476,"description":"SLE-Module-Web-Scripting12-Updates for sle-12-aarch64","installer_updates":false,"name":"SLE-Module-Web-Scripting12-Updates"},{"autorefresh":true,"distro_target":"sle-12-aarch64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/12/aarch64/update_debug/","enabled":false,"id":2477,"description":"SLE-Module-Web-Scripting12-Debuginfo-Updates for sle-12-aarch64","name":"SLE-Module-Web-Scripting12-Debuginfo-Updates","installer_updates":false},{"id":2478,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/12/aarch64/product/","autorefresh":false,"distro_target":"sle-12-aarch64","name":"SLE-Module-Web-Scripting12-Pool","installer_updates":false,"description":"SLE-Module-Web-Scripting12-Pool for sle-12-aarch64"},{"description":"SLE-Module-Web-Scripting12-Debuginfo-Pool for sle-12-aarch64","installer_updates":false,"name":"SLE-Module-Web-Scripting12-Debuginfo-Pool","distro_target":"sle-12-aarch64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/12/aarch64/product_debug/","enabled":false,"id":2479},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/12/aarch64/product_source/","autorefresh":false,"distro_target":"sle-12-aarch64","id":2480,"enabled":false,"description":"SLE-Module-Web-Scripting12-Source-Pool for sle-12-aarch64","name":"SLE-Module-Web-Scripting12-Source-Pool","installer_updates":false}],"predecessor_ids":[],"product_type":"module","cpe":"cpe:/o:suse:sle-module-web-scripting:12","free":true,"description":"

The SUSE Linux Enterprise Web and Scripting Module delivers a comprehensive suite of scripting languages, frameworks, and related tools helping developers and systems administrators accelerate the creation of stable, modern web applications, using dynamic languages, such as PHP, Ruby on Rails, and Python.

Access to the Web and Scripting Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself: Package versions in the this module are usually supported for at most three years. We are planning to release more recent versions on a schedule of approximately 18 month; the exact dates may differ per package.

","shortname":"Web-and-Scripting-Module","arch":"aarch64","eula_url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/12/aarch64/product.license/"},{"description":"

SUSE Linux Enterprise Software Development Kit is the Software Development Kit for the family of SUSE Linux Enterprise products. It is a free of charge extension for partners and customers working with SUSE Linux Enterprise Server and Desktop and derived products.

Packages on the SDK are delivered without L3 support; maintenance updates will be done for critical security and critical non-security issues, and where needed to remain in sync with packages delivered in the SUSE Linux Enterprise Server and Desktop products.

Packages to rebuild SUSE Linux Enterprise Server are not part of the SUSE Linux Enterprise Software Development Kit.

","shortname":"SDK12-SP4","free":true,"arch":"aarch64","eula_url":"https://updates.suse.com/SUSE/Products/SLE-SDK/12-SP4/aarch64/product.license/","online_predecessor_ids":[1378,1430],"product_class":"MODULE","repositories":[{"name":"SLE-SDK12-SP4-Updates","installer_updates":false,"description":"SLE-SDK12-SP4-Updates for sle-12-aarch64","enabled":true,"id":2814,"autorefresh":true,"distro_target":"sle-12-aarch64","url":"https://updates.suse.com/SUSE/Updates/SLE-SDK/12-SP4/aarch64/update/"},{"autorefresh":true,"distro_target":"sle-12-aarch64","url":"https://updates.suse.com/SUSE/Updates/SLE-SDK/12-SP4/aarch64/update_debug/","enabled":false,"id":2815,"description":"SLE-SDK12-SP4-Debuginfo-Updates for sle-12-aarch64","name":"SLE-SDK12-SP4-Debuginfo-Updates","installer_updates":false},{"url":"https://updates.suse.com/SUSE/Products/SLE-SDK/12-SP4/aarch64/product/","distro_target":"sle-12-aarch64","autorefresh":false,"id":2816,"enabled":true,"description":"SLE-SDK12-SP4-Pool for sle-12-aarch64","installer_updates":false,"name":"SLE-SDK12-SP4-Pool"},{"name":"SLE-SDK12-SP4-Debuginfo-Pool","installer_updates":false,"description":"SLE-SDK12-SP4-Debuginfo-Pool for sle-12-aarch64","enabled":false,"id":2817,"autorefresh":false,"distro_target":"sle-12-aarch64","url":"https://updates.suse.com/SUSE/Products/SLE-SDK/12-SP4/aarch64/product_debug/"},{"installer_updates":false,"name":"SLE-SDK12-SP4-Source-Pool","description":"SLE-SDK12-SP4-Source-Pool for sle-12-aarch64","id":2818,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-SDK/12-SP4/aarch64/product_source/","distro_target":"sle-12-aarch64","autorefresh":false}],"predecessor_ids":[1378,1430],"cpe":"cpe:/o:suse:sle-sdk:12:sp4","product_type":"extension","version":"12.4","recommended":false,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Software Development Kit 12 SP4 aarch64","release_type":null,"former_identifier":"sle-sdk","name":"SUSE Linux Enterprise Software Development Kit","offline_predecessor_ids":[],"friendly_version":"12 SP4","release_stage":"released","identifier":"sle-sdk","id":1633,"extensions":[]},{"recommended":false,"version":"12.4","name":"SUSE Package Hub","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"SUSE Package Hub 12 SP4 aarch64","former_identifier":"PackageHub","release_type":null,"friendly_version":"12 SP4","extensions":[],"identifier":"PackageHub","release_stage":"released","id":1810,"shortname":"SUSE-PackageHub-12-SP4","description":"SUSE Package Hub is a free of charge extension providing access to community maintained packages built to run on SUSE Linux Enterprise Server. Built from the same sources used in the openSUSE distributions, these quality packages provide additional software to what is found in the SUSE Linux Enterprise Server product. Packages from the Package Hub are delivered without L3 support from SUSE. General updates and fixes to the packages in SUSE Package Hub are provided by the openSUSE community based on their discretion though SUSE will monitor and ensure that any known critical security issues will be addressed. Packages in the Package Hub are approved by SUSE for use with SUSE Linux Enterprise Server 12 and to not interfere with the supportability of SUSE Linux Enterprise Server it's modules and extensions. For more information about SUSE Package Hub please visit https://packagehub.suse.com.","free":true,"eula_url":"","arch":"aarch64","predecessor_ids":[1482,1532],"online_predecessor_ids":[1482,1532],"product_class":"MODULE","repositories":[{"installer_updates":false,"name":"SUSE-PackageHub-12-SP4-Standard-Pool","description":"SUSE-PackageHub-12-SP4-Standard-Pool for sle-12-aarch64","id":3451,"enabled":true,"url":"https://updates.suse.com/SUSE/Backports/SLE-12-SP4_aarch64/standard/","distro_target":"sle-12-aarch64","autorefresh":false},{"enabled":false,"id":3452,"distro_target":"sle-12-aarch64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Backports/SLE-12-SP4_aarch64/standard_debug/","installer_updates":false,"name":"SUSE-PackageHub-12-SP4-Debuginfo","description":"SUSE-PackageHub-12-SP4-Debuginfo for sle-12-aarch64"},{"description":"SUSE-PackageHub-12-SP4-Pool for sle-12-aarch64","installer_updates":false,"name":"SUSE-PackageHub-12-SP4-Pool","url":"https://updates.suse.com/SUSE/Backports/SLE-12-SP4_aarch64/product/","distro_target":"sle-12-aarch64","autorefresh":false,"id":3453,"enabled":true}],"cpe":"cpe:/o:suse:packagehub:12:sp4","product_type":"extension"},{"recommended":false,"version":"12.4","name":"SUSE Linux Enterprise Server ESPOS","offline_predecessor_ids":[],"friendly_name":"SUSE Linux Enterprise Server ESPOS 12 SP4 aarch64","migration_extra":false,"former_identifier":"SLES-ESPOS","release_type":null,"friendly_version":"12 SP4","extensions":[],"release_stage":"released","identifier":"SLES-ESPOS","id":1817,"description":"SUSE Linux Enterprise offers a comprehensive suite of products built on a single code base. The platform addresses business needs from the smallest thin-client devices to the world's most powerful high-performance computing and mainframe servers. SUSE Linux Enterprise offers common management tools and technology certifications across the platform, and each product is enterprise-class.","shortname":"SLES12-SP4 ESPOS","free":false,"eula_url":"","arch":"aarch64","predecessor_ids":[1815],"product_class":"SLE-ESPOS-ARM64","online_predecessor_ids":[1815],"repositories":[{"url":"https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-SP4-ESPOS/aarch64/update/","distro_target":"sle-12-aarch64","autorefresh":true,"id":3477,"enabled":true,"description":"SLES12-SP4-ESPOS-Updates for sle-12-aarch64","installer_updates":false,"name":"SLES12-SP4-ESPOS-Updates"},{"description":"SLES12-SP4-ESPOS-Pool for sle-12-aarch64","installer_updates":false,"name":"SLES12-SP4-ESPOS-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-SERVER/12-SP4-ESPOS/aarch64/product/","distro_target":"sle-12-aarch64","autorefresh":false,"id":3478,"enabled":true},{"url":"https://updates.suse.com/SUSE/Products/SLE-SERVER/12-SP4-ESPOS/aarch64/product_debug/","autorefresh":false,"distro_target":"sle-12-aarch64","id":3479,"enabled":false,"description":"SLES12-SP4-ESPOS-Debuginfo-Pool for sle-12-aarch64","name":"SLES12-SP4-ESPOS-Debuginfo-Pool","installer_updates":false},{"enabled":false,"id":3480,"distro_target":"sle-12-aarch64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-SERVER/12-SP4-ESPOS/aarch64/product_source/","installer_updates":false,"name":"SLES12-SP4-ESPOS-Source-Pool","description":"SLES12-SP4-ESPOS-Source-Pool for sle-12-aarch64"},{"installer_updates":false,"name":"SLES12-SP4-ESPOS-Debuginfo-Updates","description":"SLES12-SP4-ESPOS-Debuginfo-Updates for sle-12-aarch64","enabled":false,"id":3528,"distro_target":"sle-12-aarch64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-SP4-ESPOS/aarch64/update_debug/"}],"cpe":"cpe:/o:suse:sles-espos:12:sp4","product_type":"extension"},{"friendly_version":"12 SP4","id":2114,"release_stage":"released","identifier":"SLES-LTSS","extensions":[],"version":"12.4","recommended":false,"former_identifier":"SLES-LTSS","release_type":null,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Server LTSS 12 SP4 aarch64","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Server LTSS","product_class":"SLES12-SP4-LTSS-ARM64","online_predecessor_ids":[],"repositories":[{"url":"https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-SP4-LTSS/aarch64/update/","autorefresh":true,"distro_target":"sle-12-aarch64","id":4486,"enabled":true,"description":"SLES12-SP4-LTSS-Updates for sle-12-aarch64","name":"SLES12-SP4-LTSS-Updates","installer_updates":false},{"autorefresh":true,"distro_target":"sle-12-aarch64","url":"https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-SP4-LTSS/aarch64/update_debug/","enabled":false,"id":4487,"description":"SLES12-SP4-LTSS-Debuginfo-Updates for sle-12-aarch64","name":"SLES12-SP4-LTSS-Debuginfo-Updates","installer_updates":false}],"predecessor_ids":[],"product_type":"extension","cpe":"cpe:/o:suse:sles-ltss:12:sp4","free":false,"description":"SUSE Linux Enterprise offers a comprehensive suite of products built on a single code base. The platform addresses business needs from the smallest thin-client devices to the world's most powerful high-performance computing and mainframe servers. SUSE Linux Enterprise offers common management tools and technology certifications across the platform, and each product is enterprise-class.","shortname":"SLES12-SP4 LTSS","arch":"aarch64","eula_url":""}],"release_stage":"released","id":1758,"identifier":"SLE-HPC","friendly_version":"12 SP4","name":"SUSE Linux Enterprise High Performance Computing","offline_predecessor_ids":[1375,1424],"migration_extra":false,"friendly_name":"SUSE Linux Enterprise High Performance Computing 12 SP4 aarch64","former_identifier":"SLE-HPC","release_type":null,"recommended":false,"version":"12.4"},{"offline_predecessor_ids":[1117,1322,1357,1421],"name":"SUSE Linux Enterprise High Performance Computing","release_type":null,"former_identifier":"SLE-HPC","migration_extra":false,"friendly_name":"SUSE Linux Enterprise High Performance Computing 12 SP4 x86_64","recommended":false,"version":"12.4","extensions":[{"free":true,"shortname":"Legacy-Module","description":"

The Legacy Module helps you migrating applications from SUSE Linux Enterprise 10 and 11 and other systems to SUSE Linux Enterprise 12, by providing packages which are discontinued on SUSE Linux Enterprise Server, such as: sendmail, syslog-ng, IBM Java6, and a number of libraries (for example openssl-0.9.8).

Access to the Legacy Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself. Packages in the this module are usually supported for at most three years. Support for Sendmail and IBM Java 6 will end in September 2017 the latest.

","eula_url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/12/x86_64/product.license/","arch":"x86_64","predecessor_ids":[],"repositories":[{"name":"SLE-Module-Legacy12-Updates","installer_updates":false,"description":"SLE-Module-Legacy12-Updates for sle-12-x86_64","id":1676,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/12/x86_64/update/","autorefresh":true,"distro_target":"sle-12-x86_64"},{"enabled":false,"id":1677,"autorefresh":true,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/12/x86_64/update_debug/","name":"SLE-Module-Legacy12-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-Legacy12-Debuginfo-Updates for sle-12-x86_64"},{"enabled":true,"id":1678,"autorefresh":false,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/12/x86_64/product/","name":"SLE-Module-Legacy12-Pool","installer_updates":false,"description":"SLE-Module-Legacy12-Pool for sle-12-x86_64"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/12/x86_64/product_debug/","distro_target":"sle-12-x86_64","autorefresh":false,"id":1679,"enabled":false,"description":"SLE-Module-Legacy12-Debuginfo-Pool for sle-12-x86_64","installer_updates":false,"name":"SLE-Module-Legacy12-Debuginfo-Pool"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/12/x86_64/product_source/","autorefresh":false,"distro_target":"sle-12-x86_64","id":1989,"enabled":false,"description":"SLE-Module-Legacy12-Source-Pool for sle-12-x86_64","name":"SLE-Module-Legacy12-Source-Pool","installer_updates":false}],"online_predecessor_ids":[],"product_class":"MODULE","product_type":"module","cpe":"cpe:/o:suse:sle-module-legacy:12","recommended":false,"version":"12","offline_predecessor_ids":[],"name":"Legacy Module","release_type":null,"former_identifier":"sle-module-legacy","friendly_name":"Legacy Module 12 x86_64","migration_extra":false,"friendly_version":"12","extensions":[],"identifier":"sle-module-legacy","release_stage":"released","id":1150},{"offline_predecessor_ids":[],"name":"Web and Scripting Module","former_identifier":"sle-module-web-scripting","release_type":null,"friendly_name":"Web and Scripting Module 12 x86_64","migration_extra":false,"recommended":false,"version":"12","extensions":[],"release_stage":"released","id":1153,"identifier":"sle-module-web-scripting","friendly_version":"12","eula_url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/12/x86_64/product.license/","arch":"x86_64","free":true,"description":"

The SUSE Linux Enterprise Web and Scripting Module delivers a comprehensive suite of scripting languages, frameworks, and related tools helping developers and systems administrators accelerate the creation of stable, modern web applications, using dynamic languages, such as PHP, Ruby on Rails, and Python.

Access to the Web and Scripting Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself: Package versions in the this module are usually supported for at most three years. We are planning to release more recent versions on a schedule of approximately 18 month; the exact dates may differ per package.

","shortname":"Web-and-Scripting-Module","product_type":"module","cpe":"cpe:/o:suse:sle-module-web-scripting:12","predecessor_ids":[],"repositories":[{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/12/x86_64/update/","autorefresh":true,"distro_target":"sle-12-x86_64","id":1688,"enabled":true,"description":"SLE-Module-Web-Scripting12-Updates for sle-12-x86_64","name":"SLE-Module-Web-Scripting12-Updates","installer_updates":false},{"name":"SLE-Module-Web-Scripting12-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-Web-Scripting12-Debuginfo-Updates for sle-12-x86_64","id":1689,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/12/x86_64/update_debug/","autorefresh":true,"distro_target":"sle-12-x86_64"},{"description":"SLE-Module-Web-Scripting12-Pool for sle-12-x86_64","installer_updates":false,"name":"SLE-Module-Web-Scripting12-Pool","distro_target":"sle-12-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/12/x86_64/product/","enabled":true,"id":1690},{"description":"SLE-Module-Web-Scripting12-Debuginfo-Pool for sle-12-x86_64","name":"SLE-Module-Web-Scripting12-Debuginfo-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/12/x86_64/product_debug/","enabled":false,"id":1691},{"installer_updates":false,"name":"SLE-Module-Web-Scripting12-Source-Pool","description":"SLE-Module-Web-Scripting12-Source-Pool for sle-12-x86_64","id":1992,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/12/x86_64/product_source/","distro_target":"sle-12-x86_64","autorefresh":false}],"online_predecessor_ids":[],"product_class":"MODULE"},{"migration_extra":false,"friendly_name":"Advanced Systems Management Module 12 x86_64","former_identifier":"sle-module-adv-systems-management","release_type":null,"name":"Advanced Systems Management Module","offline_predecessor_ids":[],"version":"12","recommended":false,"release_stage":"released","id":1212,"identifier":"sle-module-adv-systems-management","extensions":[],"friendly_version":"12","arch":"x86_64","eula_url":"","shortname":"Adv-Sys-Mgmt-Module","description":"

This Module contains current versions of the popular configuration management frameworks Puppet and CFEngine as well as the new systems management toolbox called machinery.

The machinery tool will be frequently updated and is SUSE's upcoming systems management toolbox for inspecting and validating systems remotely, storing their system description and creating new systems to deploy them in datacenters and clouds.

","free":true,"cpe":"cpe:/o:suse:sle-module-adv-systems-management:12","product_type":"module","repositories":[{"description":"SLE-Module-Adv-Systems-Management12-Updates for sle-12-x86_64","installer_updates":false,"name":"SLE-Module-Adv-Systems-Management12-Updates","distro_target":"sle-12-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Adv-Systems-Management/12/x86_64/update/","enabled":true,"id":1704},{"autorefresh":true,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Adv-Systems-Management/12/x86_64/update_debug/","enabled":false,"id":1705,"description":"SLE-Module-Adv-Systems-Management12-Debuginfo-Updates for sle-12-x86_64","name":"SLE-Module-Adv-Systems-Management12-Debuginfo-Updates","installer_updates":false},{"distro_target":"sle-12-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Adv-Systems-Management/12/x86_64/product/","enabled":true,"id":1706,"description":"SLE-Module-Adv-Systems-Management12-Pool for sle-12-x86_64","installer_updates":false,"name":"SLE-Module-Adv-Systems-Management12-Pool"},{"name":"SLE-Module-Adv-Systems-Management12-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-Adv-Systems-Management12-Debuginfo-Pool for sle-12-x86_64","enabled":false,"id":1707,"autorefresh":false,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Adv-Systems-Management/12/x86_64/product_debug/"},{"id":1998,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Adv-Systems-Management/12/x86_64/product_source/","distro_target":"sle-12-x86_64","autorefresh":false,"installer_updates":false,"name":"SLE-Module-Adv-Systems-Management12-Source-Pool","description":"SLE-Module-Adv-Systems-Management12-Source-Pool for sle-12-x86_64"}],"online_predecessor_ids":[],"product_class":"MODULE","predecessor_ids":[]},{"arch":"x86_64","eula_url":"","free":true,"shortname":"Public-Cloud-Module","description":"

The Public Cloud Module is a collection of tools that enables you to create and manage cloud images from the commandline on SUSE Linux Enterprise Server. When building your own images with KIWI or SUSE Studio, initialization code specific to the target cloud is included in that image.

Access to the Public Cloud Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself; please check the Release Notes for further details.

","product_type":"module","cpe":"cpe:/o:suse:sle-module-public-cloud:12","repositories":[{"id":1700,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/12/x86_64/update/","distro_target":"sle-12-x86_64","autorefresh":true,"installer_updates":false,"name":"SLE-Module-Public-Cloud12-Updates","description":"SLE-Module-Public-Cloud12-Updates for sle-12-x86_64"},{"description":"SLE-Module-Public-Cloud12-Debuginfo-Updates for sle-12-x86_64","name":"SLE-Module-Public-Cloud12-Debuginfo-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/12/x86_64/update_debug/","enabled":false,"id":1701},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/12/x86_64/product/","autorefresh":false,"distro_target":"sle-12-x86_64","id":1702,"enabled":true,"description":"SLE-Module-Public-Cloud12-Pool for sle-12-x86_64","name":"SLE-Module-Public-Cloud12-Pool","installer_updates":false},{"description":"SLE-Module-Public-Cloud12-Debuginfo-Pool for sle-12-x86_64","installer_updates":false,"name":"SLE-Module-Public-Cloud12-Debuginfo-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/12/x86_64/product_debug/","distro_target":"sle-12-x86_64","autorefresh":false,"id":1703,"enabled":false},{"description":"SLE-Module-Public-Cloud12-Source-Pool for sle-12-x86_64","name":"SLE-Module-Public-Cloud12-Source-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/12/x86_64/product_source/","enabled":false,"id":1995}],"online_predecessor_ids":[],"product_class":"MODULE","predecessor_ids":[],"release_type":null,"former_identifier":"sle-module-public-cloud","migration_extra":false,"friendly_name":"Public Cloud Module 12 x86_64","offline_predecessor_ids":[],"name":"Public Cloud Module","version":"12","recommended":false,"identifier":"sle-module-public-cloud","release_stage":"released","id":1220,"extensions":[],"friendly_version":"12"},{"description":"

This Module contains several packages revolving around containers and related tools.

","shortname":"Containers-Module","free":true,"eula_url":"","arch":"x86_64","predecessor_ids":[],"product_class":"MODULE","online_predecessor_ids":[],"repositories":[{"id":1864,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/12/x86_64/update/","distro_target":"sle-12-x86_64","autorefresh":true,"installer_updates":false,"name":"SLE-Module-Containers12-Updates","description":"SLE-Module-Containers12-Updates for sle-12-x86_64"},{"distro_target":"sle-12-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/12/x86_64/update_debug/","enabled":false,"id":1865,"description":"SLE-Module-Containers12-Debuginfo-Updates for sle-12-x86_64","installer_updates":false,"name":"SLE-Module-Containers12-Debuginfo-Updates"},{"enabled":true,"id":1866,"distro_target":"sle-12-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/12/x86_64/product/","installer_updates":false,"name":"SLE-Module-Containers12-Pool","description":"SLE-Module-Containers12-Pool for sle-12-x86_64"},{"description":"SLE-Module-Containers12-Debuginfo-Pool for sle-12-x86_64","installer_updates":false,"name":"SLE-Module-Containers12-Debuginfo-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/12/x86_64/product_debug/","distro_target":"sle-12-x86_64","autorefresh":false,"id":1867,"enabled":false},{"distro_target":"sle-12-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/12/x86_64/product_source/","enabled":false,"id":1957,"description":"SLE-Module-Containers12-Source-Pool for sle-12-x86_64","installer_updates":false,"name":"SLE-Module-Containers12-Source-Pool"}],"cpe":"cpe:/o:suse:sle-module-containers:12","product_type":"module","recommended":false,"version":"12","name":"Containers Module","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"Containers Module 12 x86_64","former_identifier":"sle-module-containers","release_type":null,"friendly_version":"12","extensions":[],"release_stage":"released","id":1332,"identifier":"sle-module-containers"},{"description":"Via this Module you will have access to a more recent GCC and Toolchain in addition to the default compiler of SUSE Linux Enterprise. Access to the Toolchain Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself. Please check the Release Notes for further details.","shortname":"Toolchain-Module","free":true,"eula_url":"","arch":"x86_64","predecessor_ids":[],"repositories":[{"name":"SLE-Module-Toolchain12-Updates","installer_updates":false,"description":"SLE-Module-Toolchain12-Updates for sle-12-x86_64","enabled":true,"id":1903,"autorefresh":true,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Toolchain/12/x86_64/update/"},{"installer_updates":false,"name":"SLE-Module-Toolchain12-Debuginfo-Updates","description":"SLE-Module-Toolchain12-Debuginfo-Updates for sle-12-x86_64","enabled":false,"id":1904,"distro_target":"sle-12-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Toolchain/12/x86_64/update_debug/"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Toolchain/12/x86_64/product/","distro_target":"sle-12-x86_64","autorefresh":false,"id":1905,"enabled":true,"description":"SLE-Module-Toolchain12-Pool for sle-12-x86_64","installer_updates":false,"name":"SLE-Module-Toolchain12-Pool"},{"id":1906,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Toolchain/12/x86_64/product_debug/","distro_target":"sle-12-x86_64","autorefresh":false,"installer_updates":false,"name":"SLE-Module-Toolchain12-Debuginfo-Pool","description":"SLE-Module-Toolchain12-Debuginfo-Pool for sle-12-x86_64"}],"online_predecessor_ids":[],"product_class":"MODULE","cpe":"cpe:/o:suse:sle-module-toolchain:12","product_type":"module","recommended":false,"version":"12","name":"Toolchain Module","offline_predecessor_ids":[],"friendly_name":"Toolchain Module 12 x86_64","migration_extra":false,"release_type":null,"former_identifier":"sle-module-toolchain","friendly_version":"12","extensions":[],"id":1341,"release_stage":"released","identifier":"sle-module-toolchain"},{"free":false,"shortname":"SLEPOS12","description":"SUSE Linux Enterprise Point of Service Image Server","arch":"x86_64","eula_url":"https://updates.suse.com/SUSE/Products/SLE-POS/12-SP2/x86_64/product.license/","product_class":"10040","online_predecessor_ids":[],"repositories":[{"url":"https://updates.suse.com/SUSE/Updates/SLE-POS/12-SP2/x86_64/update/","distro_target":"sle-12-x86_64","autorefresh":true,"id":2289,"enabled":true,"description":"SLE-POS12-SP2-Updates for sle-12-x86_64","installer_updates":false,"name":"SLE-POS12-SP2-Updates"},{"description":"SLE-POS12-SP2-Debuginfo-Updates for sle-12-x86_64","name":"SLE-POS12-SP2-Debuginfo-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-POS/12-SP2/x86_64/update_debug/","enabled":false,"id":2290},{"description":"SLE-POS12-SP2-Pool for sle-12-x86_64","installer_updates":false,"name":"SLE-POS12-SP2-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-POS/12-SP2/x86_64/product/","distro_target":"sle-12-x86_64","autorefresh":false,"id":2291,"enabled":true},{"id":2292,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-POS/12-SP2/x86_64/product_debug/","distro_target":"sle-12-x86_64","autorefresh":false,"installer_updates":false,"name":"SLE-POS12-SP2-Debuginfo-Pool","description":"SLE-POS12-SP2-Debuginfo-Pool for sle-12-x86_64"},{"description":"SLE-POS12-SP2-Source-Pool for sle-12-x86_64","name":"SLE-POS12-SP2-Source-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-POS/12-SP2/x86_64/product_source/","enabled":false,"id":2293},{"enabled":true,"id":3130,"distro_target":"sle-12-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-POS/12-SP2-CLIENT/x86_64/update/","installer_updates":false,"name":"SLE-POS12-SP2-CLIENT-Updates","description":"SLE-POS12-SP2-CLIENT-Updates for sle-12-x86_64"},{"autorefresh":true,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-POS/12-SP2-CLIENT/x86_64/update_debug/","enabled":false,"id":3131,"description":"SLE-POS12-SP2-CLIENT-Debuginfo-Updates for sle-12-x86_64","name":"SLE-POS12-SP2-CLIENT-Debuginfo-Updates","installer_updates":false}],"predecessor_ids":[],"product_type":"extension","cpe":"cpe:/o:suse:sle-pos:12:sp2","version":"12.2","recommended":false,"former_identifier":"sle-pos","release_type":null,"friendly_name":"SUSE Linux Enterprise Point of Service Image Server 12 SP2 x86_64","migration_extra":false,"offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Point of Service Image Server","friendly_version":"12 SP2","release_stage":"released","identifier":"sle-pos","id":1439,"extensions":[]},{"version":"12","recommended":false,"former_identifier":"sle-module-hpc","release_type":null,"friendly_name":"HPC Module 12 x86_64","migration_extra":false,"offline_predecessor_ids":[],"name":"HPC Module","friendly_version":"12","release_stage":"released","identifier":"sle-module-hpc","id":1440,"extensions":[],"free":true,"description":"The SUSE Linux Enterprise Server High Performance Computing (HPC) module delivers specific tools commonly used for high performance, numerically intensive workloads. SUSE packages these tools in the SLES HPC Module to provide greater flexibility to deliver new versions or new tools more rapidly than the standard SUSE Linux Enterprise lifecycle would permit. Packages in this module are general supported till a newer version of the package is released or the package is dropped from the module.","shortname":"HPC-Module","arch":"x86_64","eula_url":"https://updates.suse.com/SUSE/Products/SLE-Module-HPC/12/x86_64/product.license/","online_predecessor_ids":[],"product_class":"MODULE","repositories":[{"id":2294,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-HPC/12/x86_64/update/","distro_target":"sle-12-x86_64","autorefresh":true,"installer_updates":false,"name":"SLE-Module-HPC12-Updates","description":"SLE-Module-HPC12-Updates for sle-12-x86_64"},{"enabled":false,"id":2295,"distro_target":"sle-12-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-HPC/12/x86_64/update_debug/","installer_updates":false,"name":"SLE-Module-HPC12-Debuginfo-Updates","description":"SLE-Module-HPC12-Debuginfo-Updates for sle-12-x86_64"},{"id":2296,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-HPC/12/x86_64/product/","autorefresh":false,"distro_target":"sle-12-x86_64","name":"SLE-Module-HPC12-Pool","installer_updates":false,"description":"SLE-Module-HPC12-Pool for sle-12-x86_64"},{"installer_updates":false,"name":"SLE-Module-HPC12-Debuginfo-Pool","description":"SLE-Module-HPC12-Debuginfo-Pool for sle-12-x86_64","id":2297,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-HPC/12/x86_64/product_debug/","distro_target":"sle-12-x86_64","autorefresh":false},{"name":"SLE-Module-HPC12-Source-Pool","installer_updates":false,"description":"SLE-Module-HPC12-Source-Pool for sle-12-x86_64","id":2298,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-HPC/12/x86_64/product_source/","autorefresh":false,"distro_target":"sle-12-x86_64"}],"predecessor_ids":[],"product_type":"module","cpe":"cpe:/o:suse:sle-module-hpc:12"},{"cpe":"cpe:/o:suse:suse-manager-server:3.1","product_type":"extension","product_class":"SMS-X86","online_predecessor_ids":[1349],"repositories":[{"distro_target":"sle-12-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SUSE-Manager-Server/3.1/x86_64/update/","enabled":true,"id":2400,"description":"SUSE-Manager-Server-3.1-Updates for sle-12-x86_64","installer_updates":false,"name":"SUSE-Manager-Server-3.1-Updates"},{"installer_updates":false,"name":"SUSE-Manager-Server-3.1-Debuginfo-Updates","description":"SUSE-Manager-Server-3.1-Debuginfo-Updates for sle-12-x86_64","id":2401,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SUSE-Manager-Server/3.1/x86_64/update_debug/","distro_target":"sle-12-x86_64","autorefresh":true},{"description":"SUSE-Manager-Server-3.1-Pool for sle-12-x86_64","installer_updates":false,"name":"SUSE-Manager-Server-3.1-Pool","distro_target":"sle-12-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SUSE-Manager-Server/3.1/x86_64/product/","enabled":true,"id":2402},{"url":"https://updates.suse.com/SUSE/Products/SUSE-Manager-Server/3.1/x86_64/product_debug/","distro_target":"sle-12-x86_64","autorefresh":false,"id":2403,"enabled":false,"description":"SUSE-Manager-Server-3.1-Debuginfo-Pool for sle-12-x86_64","installer_updates":false,"name":"SUSE-Manager-Server-3.1-Debuginfo-Pool"},{"url":"https://updates.suse.com/SUSE/Products/SUSE-Manager-Server/3.1/x86_64/product_source/","distro_target":"sle-12-x86_64","autorefresh":false,"id":2404,"enabled":false,"description":"SUSE-Manager-Server-3.1-Source-Pool for sle-12-x86_64","installer_updates":false,"name":"SUSE-Manager-Server-3.1-Source-Pool"}],"predecessor_ids":[1349],"arch":"x86_64","eula_url":"https://updates.suse.com/SUSE/Products/SUSE-Manager-Server/3.1/x86_64/product.license/","description":"SUSE Manager lets you efficiently manage physical, virtual, and cloud-based Linux systems. It provides automated and cost-effective configuration and software management, asset management, and system provisioning.","shortname":"SUSE Manager Server","free":false,"release_stage":"released","id":1518,"identifier":"SUSE-Manager-Server","extensions":[],"friendly_version":"3.1","friendly_name":"SUSE Manager Server 3.1 x86_64","migration_extra":false,"release_type":null,"former_identifier":"SUSE-Manager-Server","name":"SUSE Manager Server","offline_predecessor_ids":[],"version":"3.1","recommended":false},{"cpe":"cpe:/o:suse:suse-manager-proxy:3.1","product_type":"extension","predecessor_ids":[1352],"repositories":[{"enabled":true,"id":2410,"distro_target":"sle-12-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SUSE-Manager-Proxy/3.1/x86_64/update/","installer_updates":false,"name":"SUSE-Manager-Proxy-3.1-Updates","description":"SUSE-Manager-Proxy-3.1-Updates for sle-12-x86_64"},{"installer_updates":false,"name":"SUSE-Manager-Proxy-3.1-Debuginfo-Updates","description":"SUSE-Manager-Proxy-3.1-Debuginfo-Updates for sle-12-x86_64","enabled":false,"id":2411,"distro_target":"sle-12-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SUSE-Manager-Proxy/3.1/x86_64/update_debug/"},{"enabled":true,"id":2412,"autorefresh":false,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Products/SUSE-Manager-Proxy/3.1/x86_64/product/","name":"SUSE-Manager-Proxy-3.1-Pool","installer_updates":false,"description":"SUSE-Manager-Proxy-3.1-Pool for sle-12-x86_64"},{"url":"https://updates.suse.com/SUSE/Products/SUSE-Manager-Proxy/3.1/x86_64/product_debug/","autorefresh":false,"distro_target":"sle-12-x86_64","id":2413,"enabled":false,"description":"SUSE-Manager-Proxy-3.1-Debuginfo-Pool for sle-12-x86_64","name":"SUSE-Manager-Proxy-3.1-Debuginfo-Pool","installer_updates":false},{"description":"SUSE-Manager-Proxy-3.1-Source-Pool for sle-12-x86_64","name":"SUSE-Manager-Proxy-3.1-Source-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Products/SUSE-Manager-Proxy/3.1/x86_64/product_source/","enabled":false,"id":2414}],"online_predecessor_ids":[1352],"product_class":"SMP","eula_url":"https://updates.suse.com/SUSE/Products/SUSE-Manager-Proxy/3.1/x86_64/product.license/","arch":"x86_64","description":"SUSE Manager Proxies extend large and/or geographically dispersed SUSE Manager environments to reduce load on the SUSE Manager Server, lower bandwidth needs, and provide faster local updates.","shortname":"SUSE Manager Proxy","free":false,"extensions":[],"identifier":"SUSE-Manager-Proxy","release_stage":"released","id":1520,"friendly_version":"3.1","name":"SUSE Manager Proxy","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"SUSE Manager Proxy 3.1 x86_64","former_identifier":"SUSE-Manager-Proxy","release_type":null,"recommended":false,"version":"3.1"},{"product_class":"MODULE","online_predecessor_ids":[1223,1323,1366,1427],"repositories":[{"id":2799,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-SDK/12-SP4/x86_64/update/","autorefresh":true,"distro_target":"sle-12-x86_64","name":"SLE-SDK12-SP4-Updates","installer_updates":false,"description":"SLE-SDK12-SP4-Updates for sle-12-x86_64"},{"enabled":false,"id":2800,"distro_target":"sle-12-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-SDK/12-SP4/x86_64/update_debug/","installer_updates":false,"name":"SLE-SDK12-SP4-Debuginfo-Updates","description":"SLE-SDK12-SP4-Debuginfo-Updates for sle-12-x86_64"},{"enabled":true,"id":2801,"autorefresh":false,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-SDK/12-SP4/x86_64/product/","name":"SLE-SDK12-SP4-Pool","installer_updates":false,"description":"SLE-SDK12-SP4-Pool for sle-12-x86_64"},{"id":2802,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-SDK/12-SP4/x86_64/product_debug/","distro_target":"sle-12-x86_64","autorefresh":false,"installer_updates":false,"name":"SLE-SDK12-SP4-Debuginfo-Pool","description":"SLE-SDK12-SP4-Debuginfo-Pool for sle-12-x86_64"},{"enabled":false,"id":2803,"distro_target":"sle-12-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-SDK/12-SP4/x86_64/product_source/","installer_updates":false,"name":"SLE-SDK12-SP4-Source-Pool","description":"SLE-SDK12-SP4-Source-Pool for sle-12-x86_64"}],"predecessor_ids":[1223,1323,1366,1427],"cpe":"cpe:/o:suse:sle-sdk:12:sp4","product_type":"extension","shortname":"SDK12-SP4","description":"

SUSE Linux Enterprise Software Development Kit is the Software Development Kit for the family of SUSE Linux Enterprise products. It is a free of charge extension for partners and customers working with SUSE Linux Enterprise Server and Desktop and derived products.

Packages on the SDK are delivered without L3 support; maintenance updates will be done for critical security and critical non-security issues, and where needed to remain in sync with packages delivered in the SUSE Linux Enterprise Server and Desktop products.

Packages to rebuild SUSE Linux Enterprise Server are not part of the SUSE Linux Enterprise Software Development Kit.

","free":true,"arch":"x86_64","eula_url":"https://updates.suse.com/SUSE/Products/SLE-SDK/12-SP4/x86_64/product.license/","friendly_version":"12 SP4","id":1630,"release_stage":"released","identifier":"sle-sdk","extensions":[],"version":"12.4","recommended":false,"friendly_name":"SUSE Linux Enterprise Software Development Kit 12 SP4 x86_64","migration_extra":false,"former_identifier":"sle-sdk","release_type":null,"name":"SUSE Linux Enterprise Software Development Kit","offline_predecessor_ids":[]},{"extensions":[{"cpe":"cpe:/o:suse:sle-ha-geo:12:sp4","product_type":"extension","online_predecessor_ids":[1157,1337,1363,1435],"product_class":"SLE-HAE-GEO","repositories":[{"autorefresh":true,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-HA-GEO/12-SP4/x86_64/update/","enabled":true,"id":2834,"description":"SLE-HA-GEO12-SP4-Updates for sle-12-x86_64","name":"SLE-HA-GEO12-SP4-Updates","installer_updates":false},{"enabled":false,"id":2835,"autorefresh":true,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-HA-GEO/12-SP4/x86_64/update_debug/","name":"SLE-HA-GEO12-SP4-Debuginfo-Updates","installer_updates":false,"description":"SLE-HA-GEO12-SP4-Debuginfo-Updates for sle-12-x86_64"},{"description":"SLE-HA-GEO12-SP4-Pool for sle-12-x86_64","name":"SLE-HA-GEO12-SP4-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-HA-GEO/12-SP4/x86_64/product/","enabled":true,"id":2836},{"url":"https://updates.suse.com/SUSE/Products/SLE-HA-GEO/12-SP4/x86_64/product_debug/","autorefresh":false,"distro_target":"sle-12-x86_64","id":2837,"enabled":false,"description":"SLE-HA-GEO12-SP4-Debuginfo-Pool for sle-12-x86_64","name":"SLE-HA-GEO12-SP4-Debuginfo-Pool","installer_updates":false},{"description":"SLE-HA-GEO12-SP4-Source-Pool for sle-12-x86_64","installer_updates":false,"name":"SLE-HA-GEO12-SP4-Source-Pool","distro_target":"sle-12-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-HA-GEO/12-SP4/x86_64/product_source/","enabled":false,"id":2838}],"predecessor_ids":[1157,1337,1363,1435],"arch":"x86_64","eula_url":"https://updates.suse.com/SUSE/Products/SLE-HA-GEO/12-SP4/x86_64/product.license/","shortname":"SLEHAGEO12-SP4","description":"SUSE Linux Enterprise High Availability Geographical Cluster Extension","free":false,"release_stage":"released","id":1637,"identifier":"sle-ha-geo","extensions":[],"friendly_version":"12 SP4","migration_extra":false,"friendly_name":"SUSE Linux Enterprise High Availability GEO Extension 12 SP4 x86_64","release_type":null,"former_identifier":"sle-hae-geo","name":"SUSE Linux Enterprise High Availability GEO Extension","offline_predecessor_ids":[1101,1107,1286],"version":"12.4","recommended":false}],"id":1634,"release_stage":"released","identifier":"sle-ha","friendly_version":"12 SP4","name":"SUSE Linux Enterprise High Availability Extension","offline_predecessor_ids":[958,961,967,971,1256],"migration_extra":false,"friendly_name":"SUSE Linux Enterprise High Availability Extension 12 SP4 x86_64","former_identifier":"sle-hae","release_type":null,"recommended":false,"version":"12.4","cpe":"cpe:/o:suse:sle-ha:12:sp4","product_type":"extension","predecessor_ids":[1245,1324,1361,1432],"product_class":"SLE-HAE-X86","online_predecessor_ids":[1245,1324,1361,1432],"repositories":[{"installer_updates":false,"name":"SLE-HA12-SP4-Updates","description":"SLE-HA12-SP4-Updates for sle-12-x86_64","id":2819,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-HA/12-SP4/x86_64/update/","distro_target":"sle-12-x86_64","autorefresh":true},{"installer_updates":false,"name":"SLE-HA12-SP4-Debuginfo-Updates","description":"SLE-HA12-SP4-Debuginfo-Updates for sle-12-x86_64","id":2820,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-HA/12-SP4/x86_64/update_debug/","distro_target":"sle-12-x86_64","autorefresh":true},{"autorefresh":false,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-HA/12-SP4/x86_64/product/","enabled":true,"id":2821,"description":"SLE-HA12-SP4-Pool for sle-12-x86_64","name":"SLE-HA12-SP4-Pool","installer_updates":false},{"description":"SLE-HA12-SP4-Debuginfo-Pool for sle-12-x86_64","installer_updates":false,"name":"SLE-HA12-SP4-Debuginfo-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-HA/12-SP4/x86_64/product_debug/","distro_target":"sle-12-x86_64","autorefresh":false,"id":2822,"enabled":false},{"name":"SLE-HA12-SP4-Source-Pool","installer_updates":false,"description":"SLE-HA12-SP4-Source-Pool for sle-12-x86_64","enabled":false,"id":2823,"autorefresh":false,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-HA/12-SP4/x86_64/product_source/"}],"eula_url":"https://updates.suse.com/SUSE/Products/SLE-HA/12-SP4/x86_64/product.license/","arch":"x86_64","description":"SUSE Linux Enterprise High Availability Extension.","shortname":"SLEHA12-SP4","free":false},{"eula_url":"https://updates.suse.com/SUSE/Products/SLE-WE/12-SP4/x86_64/product.license/","arch":"x86_64","shortname":"SLEWE12-SP4","description":"SUSE Linux Enterprise Workstation Extension extends the functionality of SUSE Linux Enterprise Server with packages of SUSE Linux Enterprise Desktop, like additional desktop applications (office suite, email client, graphical editor ...) and libraries. It allows to combine both products to create a full featured Workstation.","free":false,"cpe":"cpe:/o:suse:sle-we:12:sp4","product_type":"extension","predecessor_ids":[1222,1338,1359,1431],"online_predecessor_ids":[1222,1338,1359,1431],"product_class":"SLE-WE","repositories":[{"name":"SLE-WE12-SP4-Updates","installer_updates":false,"description":"SLE-WE12-SP4-Updates for sle-12-x86_64","enabled":true,"id":2844,"autorefresh":true,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-WE/12-SP4/x86_64/update/"},{"name":"SLE-WE12-SP4-Debuginfo-Updates","installer_updates":false,"description":"SLE-WE12-SP4-Debuginfo-Updates for sle-12-x86_64","enabled":false,"id":2845,"autorefresh":true,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-WE/12-SP4/x86_64/update_debug/"},{"installer_updates":false,"name":"SLE-WE12-SP4-Pool","description":"SLE-WE12-SP4-Pool for sle-12-x86_64","id":2846,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-WE/12-SP4/x86_64/product/","distro_target":"sle-12-x86_64","autorefresh":false},{"id":2847,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-WE/12-SP4/x86_64/product_debug/","autorefresh":false,"distro_target":"sle-12-x86_64","name":"SLE-WE12-SP4-Debuginfo-Pool","installer_updates":false,"description":"SLE-WE12-SP4-Debuginfo-Pool for sle-12-x86_64"},{"url":"https://updates.suse.com/SUSE/Products/SLE-WE/12-SP4/x86_64/product_source/","distro_target":"sle-12-x86_64","autorefresh":false,"id":2848,"enabled":false,"description":"SLE-WE12-SP4-Source-Pool for sle-12-x86_64","installer_updates":false,"name":"SLE-WE12-SP4-Source-Pool"},{"installer_updates":false,"name":"SLE-12-SP4-GA-Desktop-nVidia-Driver","description":"SLE-12-SP4-GA-Desktop-nVidia-Driver","id":3529,"enabled":true,"url":"https://download.nvidia.com/suse/sle12sp4/","distro_target":null,"autorefresh":true}],"name":"SUSE Linux Enterprise Workstation Extension","offline_predecessor_ids":[],"friendly_name":"SUSE Linux Enterprise Workstation Extension 12 SP4 x86_64","migration_extra":false,"former_identifier":"sle-we","release_type":null,"recommended":false,"version":"12.4","extensions":[],"id":1639,"release_stage":"released","identifier":"sle-we","friendly_version":"12 SP4"},{"friendly_version":"12","release_stage":"released","identifier":"sle-module-cap-tools","id":1678,"extensions":[],"version":"12","recommended":false,"former_identifier":"sle-module-cap-tools","release_type":null,"friendly_name":"SUSE Cloud Application Platform Tools Module 12 x86_64","migration_extra":false,"offline_predecessor_ids":[],"name":"SUSE Cloud Application Platform Tools Module","online_predecessor_ids":[],"repositories":[{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-CAP-Tools/12/x86_64/update/","autorefresh":true,"distro_target":"sle-12-x86_64","id":2912,"enabled":true,"description":"SLE-Module-CAP-Tools-12-Updates for sle-12-x86_64","name":"SLE-Module-CAP-Tools-12-Updates","installer_updates":false},{"enabled":false,"id":2913,"autorefresh":true,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-CAP-Tools/12/x86_64/update_debug/","name":"SLE-Module-CAP-Tools-12-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-CAP-Tools-12-Debuginfo-Updates for sle-12-x86_64"},{"distro_target":"sle-12-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-CAP-Tools/12/x86_64/product/","enabled":true,"id":2914,"description":"SLE-Module-CAP-Tools-12-Pool for sle-12-x86_64","installer_updates":false,"name":"SLE-Module-CAP-Tools-12-Pool"},{"name":"SLE-Module-CAP-Tools-12-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-CAP-Tools-12-Debuginfo-Pool for sle-12-x86_64","enabled":false,"id":2915,"autorefresh":false,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-CAP-Tools/12/x86_64/product_debug/"},{"description":"SLE-Module-CAP-Tools-12-Source-Pool for sle-12-x86_64","name":"SLE-Module-CAP-Tools-12-Source-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-CAP-Tools/12/x86_64/product_source/","autorefresh":false,"distro_target":"sle-12-x86_64","id":2916,"enabled":false}],"product_class":"MODULE","predecessor_ids":[],"product_type":"module","cpe":"cpe:/o:suse:sle-module-cap-tools:12","free":true,"shortname":"SUSE-CAP-Tools-Module","description":"

The SUSE Cloud Application Platform Tools Module is a collection of tools that enables you to interact with the SUSE Cloud Application Platform product itself, providing the commandline client for instance.

Access to the SUSE Cloud Application Platform Tools Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself; please check the Release Notes for further details.

","arch":"x86_64","eula_url":""},{"recommended":false,"version":"3.2","name":"SUSE Manager Server","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"SUSE Manager Server 3.2 x86_64","release_type":null,"former_identifier":"SUSE-Manager-Server","friendly_version":"3.2","extensions":[],"id":1724,"release_stage":"released","identifier":"SUSE-Manager-Server","description":"SUSE Manager lets you efficiently manage physical, virtual, and cloud-based Linux systems. It provides automated and cost-effective configuration and software management, asset management, and system provisioning.","shortname":"SUSE Manager Server 3.2","free":false,"eula_url":"https://updates.suse.com/SUSE/Products/SUSE-Manager-Server/3.2/x86_64/product.license/","arch":"x86_64","predecessor_ids":[1518],"product_class":"SMS-X86","online_predecessor_ids":[1518],"repositories":[{"enabled":true,"id":2987,"distro_target":"sle-12-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SUSE-Manager-Server/3.2/x86_64/update/","installer_updates":false,"name":"SUSE-Manager-Server-3.2-Updates","description":"SUSE-Manager-Server-3.2-Updates for sle-12-x86_64"},{"autorefresh":true,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Updates/SUSE-Manager-Server/3.2/x86_64/update_debug/","enabled":false,"id":2988,"description":"SUSE-Manager-Server-3.2-Debuginfo-Updates for sle-12-x86_64","name":"SUSE-Manager-Server-3.2-Debuginfo-Updates","installer_updates":false},{"url":"https://updates.suse.com/SUSE/Products/SUSE-Manager-Server/3.2/x86_64/product/","autorefresh":false,"distro_target":"sle-12-x86_64","id":2989,"enabled":true,"description":"SUSE-Manager-Server-3.2-Pool for sle-12-x86_64","name":"SUSE-Manager-Server-3.2-Pool","installer_updates":false},{"installer_updates":false,"name":"SUSE-Manager-Server-3.2-Debuginfo-Pool","description":"SUSE-Manager-Server-3.2-Debuginfo-Pool for sle-12-x86_64","id":2990,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SUSE-Manager-Server/3.2/x86_64/product_debug/","distro_target":"sle-12-x86_64","autorefresh":false},{"distro_target":"sle-12-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SUSE-Manager-Server/3.2/x86_64/product_source/","enabled":false,"id":2991,"description":"SUSE-Manager-Server-3.2-Source-Pool for sle-12-x86_64","installer_updates":false,"name":"SUSE-Manager-Server-3.2-Source-Pool"}],"cpe":"cpe:/o:suse:suse-manager-server:3.2","product_type":"extension"},{"extensions":[{"predecessor_ids":[],"repositories":[{"id":3517,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SUSE-Manager-Retail-Branch-Server/3.2/x86_64/update/","autorefresh":true,"distro_target":"sle-12-x86_64","name":"SUSE-Manager-Retail-Branch-Server-3.2-Updates","installer_updates":false,"description":"SUSE-Manager-Retail-Branch-Server-3.2-Updates for sle-12-x86_64"},{"autorefresh":true,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Updates/SUSE-Manager-Retail-Branch-Server/3.2/x86_64/update_debug/","enabled":false,"id":3518,"description":"SUSE-Manager-Retail-Branch-Server-3.2-Debuginfo-Updates for sle-12-x86_64","name":"SUSE-Manager-Retail-Branch-Server-3.2-Debuginfo-Updates","installer_updates":false},{"url":"https://updates.suse.com/SUSE/Products/SUSE-Manager-Retail-Branch-Server/3.2/x86_64/product/","autorefresh":false,"distro_target":"sle-12-x86_64","id":3519,"enabled":true,"description":"SUSE-Manager-Retail-Branch-Server-3.2-Pool for sle-12-x86_64","name":"SUSE-Manager-Retail-Branch-Server-3.2-Pool","installer_updates":false},{"distro_target":"sle-12-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SUSE-Manager-Retail-Branch-Server/3.2/x86_64/product_debug/","enabled":false,"id":3520,"description":"SUSE-Manager-Retail-Branch-Server-3.2-Debuginfo-Pool for sle-12-x86_64","installer_updates":false,"name":"SUSE-Manager-Retail-Branch-Server-3.2-Debuginfo-Pool"},{"distro_target":"sle-12-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SUSE-Manager-Retail-Branch-Server/3.2/x86_64/product_source/","enabled":false,"id":3521,"description":"SUSE-Manager-Retail-Branch-Server-3.2-Source-Pool for sle-12-x86_64","installer_updates":false,"name":"SUSE-Manager-Retail-Branch-Server-3.2-Source-Pool"}],"online_predecessor_ids":[],"product_class":"SMRBS","cpe":"cpe:/o:suse:suse-manager-retail-branch-server:3.2","product_type":"extension","description":"The SUSE Manager for Retail Branch Server supports large and/or geographically dispersed SUSE Manager for Retail environments by reducing the load on the SUSE Manager Server, lowering bandwidth needs, and providing faster local updates.","shortname":"SUSE Manager Retail Branch Server 3.2","free":false,"eula_url":"https://updates.suse.com/SUSE/Products/SUSE-Manager-Retail-Branch-Server/3.2/x86_64/product.license/","arch":"x86_64","friendly_version":"3.2","extensions":[],"identifier":"SUSE-Manager-Retail-Branch-Server","release_stage":"released","id":1826,"recommended":false,"version":"3.2","name":"SUSE Manager Retail Branch Server","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"SUSE Manager Retail Branch Server 3.2 x86_64","release_type":null,"former_identifier":"SUSE-Manager-Retail-Branch-Server"}],"id":1725,"release_stage":"released","identifier":"SUSE-Manager-Proxy","friendly_version":"3.2","name":"SUSE Manager Proxy","offline_predecessor_ids":[],"friendly_name":"SUSE Manager Proxy 3.2 x86_64","migration_extra":false,"release_type":null,"former_identifier":"SUSE-Manager-Proxy","recommended":false,"version":"3.2","cpe":"cpe:/o:suse:suse-manager-proxy:3.2","product_type":"extension","predecessor_ids":[1520],"online_predecessor_ids":[1520],"repositories":[{"description":"SUSE-Manager-Proxy-3.2-Updates for sle-12-x86_64","installer_updates":false,"name":"SUSE-Manager-Proxy-3.2-Updates","distro_target":"sle-12-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SUSE-Manager-Proxy/3.2/x86_64/update/","enabled":true,"id":2992},{"url":"https://updates.suse.com/SUSE/Updates/SUSE-Manager-Proxy/3.2/x86_64/update_debug/","distro_target":"sle-12-x86_64","autorefresh":true,"id":2993,"enabled":false,"description":"SUSE-Manager-Proxy-3.2-Debuginfo-Updates for sle-12-x86_64","installer_updates":false,"name":"SUSE-Manager-Proxy-3.2-Debuginfo-Updates"},{"installer_updates":false,"name":"SUSE-Manager-Proxy-3.2-Pool","description":"SUSE-Manager-Proxy-3.2-Pool for sle-12-x86_64","id":2994,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SUSE-Manager-Proxy/3.2/x86_64/product/","distro_target":"sle-12-x86_64","autorefresh":false},{"id":2995,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SUSE-Manager-Proxy/3.2/x86_64/product_debug/","autorefresh":false,"distro_target":"sle-12-x86_64","name":"SUSE-Manager-Proxy-3.2-Debuginfo-Pool","installer_updates":false,"description":"SUSE-Manager-Proxy-3.2-Debuginfo-Pool for sle-12-x86_64"},{"installer_updates":false,"name":"SUSE-Manager-Proxy-3.2-Source-Pool","description":"SUSE-Manager-Proxy-3.2-Source-Pool for sle-12-x86_64","enabled":false,"id":2996,"distro_target":"sle-12-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SUSE-Manager-Proxy/3.2/x86_64/product_source/"}],"product_class":"SMP","eula_url":"https://updates.suse.com/SUSE/Products/SUSE-Manager-Proxy/3.2/x86_64/product.license/","arch":"x86_64","description":"SUSE Manager Proxies extend large and/or geographically dispersed SUSE Manager environments to reduce load on the SUSE Manager Server, lower bandwidth needs, and provide faster local updates.","shortname":"SUSE Manager Proxy 3.2","free":false},{"recommended":false,"version":"12.4","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Live Patching","release_type":null,"former_identifier":"sle-live-patching","friendly_name":"SUSE Linux Enterprise Live Patching 12 SP4 x86_64","migration_extra":false,"friendly_version":"12 SP4","extensions":[],"id":1757,"release_stage":"released","identifier":"sle-live-patching","free":false,"description":"

SUSE Linux Enterprise Live Patching provides packages to update critical kernel modules live in SUSE Linux Enterprise. With SUSE Linux Enterprise Live Patching, you can perform critical kernel patching without shutting down your system, reducing the need for planned downtime and increasing service availability.

","shortname":"Live-Patching","eula_url":"https://updates.suse.com/SUSE/Products/SLE-Live-Patching/12-SP4/x86_64/product.license/","arch":"x86_64","predecessor_ids":[1253,1536],"online_predecessor_ids":[1253,1536],"repositories":[{"name":"SLE-Live-Patching12-SP4-Updates","installer_updates":false,"description":"SLE-Live-Patching12-SP4-Updates for sle-12-x86_64","id":3163,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Live-Patching/12-SP4/x86_64/update/","autorefresh":true,"distro_target":"sle-12-x86_64"},{"distro_target":"sle-12-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Live-Patching/12-SP4/x86_64/update_debug/","enabled":false,"id":3164,"description":"SLE-Live-Patching12-SP4-Debuginfo-Updates for sle-12-x86_64","installer_updates":false,"name":"SLE-Live-Patching12-SP4-Debuginfo-Updates"},{"description":"SLE-Live-Patching12-SP4-Pool for sle-12-x86_64","installer_updates":false,"name":"SLE-Live-Patching12-SP4-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Live-Patching/12-SP4/x86_64/product/","distro_target":"sle-12-x86_64","autorefresh":false,"id":3165,"enabled":true},{"name":"SLE-Live-Patching12-SP4-Debuginfo-Pool","installer_updates":false,"description":"SLE-Live-Patching12-SP4-Debuginfo-Pool for sle-12-x86_64","enabled":false,"id":3166,"autorefresh":false,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Live-Patching/12-SP4/x86_64/product_debug/"}],"product_class":"SLE-LP","product_type":"extension","cpe":"cpe:/o:suse:sle-live-patching:12:sp4"},{"extensions":[],"release_stage":"released","identifier":"PackageHub","id":1813,"friendly_version":"12 SP4","offline_predecessor_ids":[],"name":"SUSE Package Hub","release_type":null,"former_identifier":"PackageHub","migration_extra":false,"friendly_name":"SUSE Package Hub 12 SP4 x86_64","recommended":false,"version":"12.4","product_type":"extension","cpe":"cpe:/o:suse:packagehub:12:sp4","predecessor_ids":[1473,1476,1479,1529],"product_class":"MODULE","online_predecessor_ids":[1473,1476,1479,1529],"repositories":[{"description":"SUSE-PackageHub-12-SP4-Standard-Pool for sle-12-x86_64","name":"SUSE-PackageHub-12-SP4-Standard-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Backports/SLE-12-SP4_x86_64/standard/","autorefresh":false,"distro_target":"sle-12-x86_64","id":3460,"enabled":true},{"name":"SUSE-PackageHub-12-SP4-Debuginfo","installer_updates":false,"description":"SUSE-PackageHub-12-SP4-Debuginfo for sle-12-x86_64","enabled":false,"id":3461,"autorefresh":true,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Backports/SLE-12-SP4_x86_64/standard_debug/"},{"autorefresh":false,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Backports/SLE-12-SP4_x86_64/product/","enabled":true,"id":3462,"description":"SUSE-PackageHub-12-SP4-Pool for sle-12-x86_64","name":"SUSE-PackageHub-12-SP4-Pool","installer_updates":false}],"eula_url":"","arch":"x86_64","free":true,"shortname":"SUSE-PackageHub-12-SP4","description":"SUSE Package Hub is a free of charge extension providing access to community maintained packages built to run on SUSE Linux Enterprise Server. Built from the same sources used in the openSUSE distributions, these quality packages provide additional software to what is found in the SUSE Linux Enterprise Server product. Packages from the Package Hub are delivered without L3 support from SUSE. General updates and fixes to the packages in SUSE Package Hub are provided by the openSUSE community based on their discretion though SUSE will monitor and ensure that any known critical security issues will be addressed. Packages in the Package Hub are approved by SUSE for use with SUSE Linux Enterprise Server 12 and to not interfere with the supportability of SUSE Linux Enterprise Server it's modules and extensions. For more information about SUSE Package Hub please visit https://packagehub.suse.com."},{"arch":"x86_64","eula_url":"","free":false,"shortname":"SLES12-SP4 ESPOS","description":"SUSE Linux Enterprise offers a comprehensive suite of products built on a single code base. The platform addresses business needs from the smallest thin-client devices to the world's most powerful high-performance computing and mainframe servers. SUSE Linux Enterprise offers common management tools and technology certifications across the platform, and each product is enterprise-class.","product_type":"extension","cpe":"cpe:/o:suse:sles-espos:12:sp4","repositories":[{"distro_target":"sle-12-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-SP4-ESPOS/x86_64/update/","enabled":true,"id":3481,"description":"SLES12-SP4-ESPOS-Updates for sle-12-x86_64","installer_updates":false,"name":"SLES12-SP4-ESPOS-Updates"},{"name":"SLES12-SP4-ESPOS-Debuginfo-Updates","installer_updates":false,"description":"SLES12-SP4-ESPOS-Debuginfo-Updates for sle-12-x86_64","enabled":false,"id":3482,"autorefresh":true,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-SP4-ESPOS/x86_64/update_debug/"},{"id":3483,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-SERVER/12-SP4-ESPOS/x86_64/product/","distro_target":"sle-12-x86_64","autorefresh":false,"installer_updates":false,"name":"SLES12-SP4-ESPOS-Pool","description":"SLES12-SP4-ESPOS-Pool for sle-12-x86_64"},{"autorefresh":false,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-SERVER/12-SP4-ESPOS/x86_64/product_debug/","enabled":false,"id":3484,"description":"SLES12-SP4-ESPOS-Debuginfo-Pool for sle-12-x86_64","name":"SLES12-SP4-ESPOS-Debuginfo-Pool","installer_updates":false},{"distro_target":"sle-12-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-SERVER/12-SP4-ESPOS/x86_64/product_source/","enabled":false,"id":3485,"description":"SLES12-SP4-ESPOS-Source-Pool for sle-12-x86_64","installer_updates":false,"name":"SLES12-SP4-ESPOS-Source-Pool"}],"online_predecessor_ids":[1814,1816],"product_class":"SLE-ESPOS-X86","predecessor_ids":[1814,1816],"release_type":null,"former_identifier":"SLES-ESPOS","friendly_name":"SUSE Linux Enterprise Server ESPOS 12 SP4 x86_64","migration_extra":false,"offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Server ESPOS","version":"12.4","recommended":false,"release_stage":"released","id":1818,"identifier":"SLES-ESPOS","extensions":[],"friendly_version":"12 SP4"},{"extensions":[],"release_stage":"released","identifier":"SLES-BCL","id":1896,"friendly_version":"12 SP4","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Server BCL","release_type":null,"former_identifier":"SLES-BCL","friendly_name":"SUSE Linux Enterprise Server BCL 12 SP4 x86_64","migration_extra":false,"recommended":false,"version":"12.4","product_type":"extension","cpe":"cpe:/o:suse:sles-bcl:12:sp4","predecessor_ids":[],"online_predecessor_ids":[],"product_class":"BCL-X86","repositories":[{"name":"SLES12-SP4-BCL-Updates","installer_updates":false,"description":"SLES12-SP4-BCL-Updates for sle-12-x86_64","enabled":true,"id":3762,"autorefresh":true,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-SP4-BCL/x86_64/update/"},{"autorefresh":true,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-SP4-BCL/x86_64/update_debug/","enabled":false,"id":3763,"description":"SLES12-SP4-BCL-Debuginfo-Updates for sle-12-x86_64","name":"SLES12-SP4-BCL-Debuginfo-Updates","installer_updates":false},{"installer_updates":false,"name":"SLES12-SP4-BCL-Pool","description":"SLES12-SP4-BCL-Pool for sle-12-x86_64","enabled":true,"id":3764,"distro_target":"sle-12-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-SERVER/12-SP4-BCL/x86_64/product/"},{"description":"SLES12-SP4-BCL-Debuginfo-Pool for sle-12-x86_64","installer_updates":false,"name":"SLES12-SP4-BCL-Debuginfo-Pool","distro_target":"sle-12-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-SERVER/12-SP4-BCL/x86_64/product_debug/","enabled":false,"id":3765},{"enabled":false,"id":3766,"distro_target":"sle-12-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-SERVER/12-SP4-BCL/x86_64/product_source/","installer_updates":false,"name":"SLES12-SP4-BCL-Source-Pool","description":"SLES12-SP4-BCL-Source-Pool for sle-12-x86_64"}],"eula_url":"","arch":"x86_64","free":false,"shortname":"SLES12-SP4 BCL","description":"SUSE Linux Enterprise offers a comprehensive suite of products built on a single code base. The platform addresses business needs from the smallest thin-client devices to the world's most powerful high-performance computing and mainframe servers. SUSE Linux Enterprise offers common management tools and technology certifications across the platform, and each product is enterprise-class."},{"recommended":false,"version":"12.4","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Real Time","former_identifier":"SUSE-Linux-Enterprise-RT","release_type":null,"friendly_name":"SUSE Linux Enterprise Real Time 12 SP4 x86_64","migration_extra":false,"friendly_version":"12 SP4","extensions":[],"id":1924,"release_stage":"released","identifier":"SUSE-Linux-Enterprise-RT","free":false,"description":"SUSE Linux Enterprise Real Time 12 SP4.","shortname":"SLERT12 SP4","eula_url":"https://updates.suse.com/SUSE/Products/SLE-RT/12-SP4/x86_64/product.license/","arch":"x86_64","predecessor_ids":[1619],"product_class":"SUSE_RT","online_predecessor_ids":[1619],"repositories":[{"description":"SLE-RT12-SP4-Updates for sle-12-x86_64","name":"SLE-RT12-SP4-Updates","installer_updates":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-RT/12-SP4/x86_64/update/","autorefresh":true,"distro_target":"sle-12-x86_64","id":3887,"enabled":true},{"name":"SLE-RT12-SP4-Debuginfo-Updates","installer_updates":false,"description":"SLE-RT12-SP4-Debuginfo-Updates for sle-12-x86_64","enabled":false,"id":3888,"autorefresh":true,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-RT/12-SP4/x86_64/update_debug/"},{"description":"SLE-RT12-SP4-Pool for sle-12-x86_64","name":"SLE-RT12-SP4-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-RT/12-SP4/x86_64/product/","enabled":true,"id":3889},{"autorefresh":false,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-RT/12-SP4/x86_64/product_debug/","enabled":false,"id":3890,"description":"SLE-RT12-SP4-Debuginfo-Pool for sle-12-x86_64","name":"SLE-RT12-SP4-Debuginfo-Pool","installer_updates":false}],"product_type":"extension","cpe":"cpe:/o:suse:suse-linux-enterprise-rt:12:sp4"},{"product_type":"extension","cpe":"cpe:/o:suse:sles-ltss:12:sp4","predecessor_ids":[],"product_class":"SLES12-SP4-LTSS-X86","online_predecessor_ids":[],"repositories":[{"id":4492,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-SP4-LTSS/x86_64/update/","distro_target":"sle-12-x86_64","autorefresh":true,"installer_updates":false,"name":"SLES12-SP4-LTSS-Updates","description":"SLES12-SP4-LTSS-Updates for sle-12-x86_64"},{"description":"SLES12-SP4-LTSS-Debuginfo-Updates for sle-12-x86_64","name":"SLES12-SP4-LTSS-Debuginfo-Updates","installer_updates":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-SP4-LTSS/x86_64/update_debug/","autorefresh":true,"distro_target":"sle-12-x86_64","id":4493,"enabled":false}],"eula_url":"","arch":"x86_64","free":false,"description":"SUSE Linux Enterprise offers a comprehensive suite of products built on a single code base. The platform addresses business needs from the smallest thin-client devices to the world's most powerful high-performance computing and mainframe servers. SUSE Linux Enterprise offers common management tools and technology certifications across the platform, and each product is enterprise-class.","shortname":"SLES12-SP4 LTSS","extensions":[],"id":2117,"release_stage":"released","identifier":"SLES-LTSS","friendly_version":"12 SP4","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Server LTSS","former_identifier":"SLES-LTSS","release_type":null,"friendly_name":"SUSE Linux Enterprise Server LTSS 12 SP4 x86_64","migration_extra":false,"recommended":false,"version":"12.4"}],"release_stage":"released","identifier":"SLE-HPC","id":1759,"friendly_version":"12 SP4","eula_url":"https://updates.suse.com/SUSE/Products/SLE-HPC/12-SP4/x86_64/product.license/","arch":"x86_64","free":false,"shortname":"SLE-HPC-12-SP4","description":"SUSE Linux Enterprise offers a comprehensive suite of products built on a single code base. The platform addresses business needs from the smallest thin-client devices to the world's most powerful high-performance computing and mainframe servers. SUSE Linux Enterprise offers common management tools and technology certifications across the platform, and each product is enterprise-class. The SUSE Linux Enterprise Server for High Performance Computing (HPC) delivers specific tools commonly used for high performance, numerically intensive workloads.","product_type":"base","cpe":"cpe:/o:suse:sle-hpc:12:sp4","predecessor_ids":[1749,1751],"online_predecessor_ids":[1749,1751],"repositories":[{"id":2769,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-SP4/x86_64/update/","distro_target":"sle-12-x86_64","autorefresh":true,"installer_updates":false,"name":"SLES12-SP4-Updates","description":"SLES12-SP4-Updates for sle-12-x86_64"},{"url":"https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-SP4/x86_64/update_debug/","distro_target":"sle-12-x86_64","autorefresh":true,"id":2770,"enabled":false,"description":"SLES12-SP4-Debuginfo-Updates for sle-12-x86_64","installer_updates":false,"name":"SLES12-SP4-Debuginfo-Updates"},{"enabled":false,"id":2771,"distro_target":"sle-12-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-SERVER-INSTALLER/12-SP4/x86_64/update/","installer_updates":true,"name":"SLES12-SP4-Installer-Updates","description":"SLES12-SP4-Installer-Updates for sle-12-x86_64"},{"enabled":true,"id":2772,"distro_target":"sle-12-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-SERVER/12-SP4/x86_64/product/","installer_updates":false,"name":"SLES12-SP4-Pool","description":"SLES12-SP4-Pool for sle-12-x86_64"},{"distro_target":"sle-12-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-SERVER/12-SP4/x86_64/product_debug/","enabled":false,"id":2773,"description":"SLES12-SP4-Debuginfo-Pool for sle-12-x86_64","installer_updates":false,"name":"SLES12-SP4-Debuginfo-Pool"},{"description":"SLES12-SP4-Source-Pool for sle-12-x86_64","installer_updates":false,"name":"SLES12-SP4-Source-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-SERVER/12-SP4/x86_64/product_source/","distro_target":"sle-12-x86_64","autorefresh":false,"id":2774,"enabled":false},{"description":"SLE12-SP4-HPC-Updates for sle-12-x86_64","installer_updates":false,"name":"SLE12-SP4-HPC-Updates","url":"https://updates.suse.com/SUSE/Updates/SLE-HPC/12-SP4/x86_64/update/","distro_target":"sle-12-x86_64","autorefresh":true,"id":3192,"enabled":true},{"description":"SLE12-SP4-HPC-Debuginfo-Updates for sle-12-x86_64","installer_updates":false,"name":"SLE12-SP4-HPC-Debuginfo-Updates","distro_target":"sle-12-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-HPC/12-SP4/x86_64/update_debug/","enabled":false,"id":3193},{"enabled":true,"id":3194,"distro_target":"sle-12-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-HPC/12-SP4/x86_64/product/","installer_updates":false,"name":"SLE12-SP4-HPC-Pool","description":"SLE12-SP4-HPC-Pool for sle-12-x86_64"},{"url":"https://updates.suse.com/SUSE/Products/SLE-HPC/12-SP4/x86_64/product_debug/","autorefresh":false,"distro_target":"sle-12-x86_64","id":3195,"enabled":false,"description":"SLE12-SP4-HPC-Debuginfo-Pool for sle-12-x86_64","name":"SLE12-SP4-HPC-Debuginfo-Pool","installer_updates":false},{"id":3196,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-HPC/12-SP4/x86_64/product_source/","autorefresh":false,"distro_target":"sle-12-x86_64","name":"SLE12-SP4-HPC-Source-Pool","installer_updates":false,"description":"SLE12-SP4-HPC-Source-Pool for sle-12-x86_64"}],"product_class":"HPC-X86"},{"identifier":"SLES","release_stage":"released","id":1760,"extensions":[{"extensions":[{"recommended":false,"version":"15.1","name":"Desktop Applications Module","offline_predecessor_ids":[],"migration_extra":true,"friendly_name":"Desktop Applications Module 15 SP1 aarch64","former_identifier":"sle-module-desktop-applications","release_type":null,"friendly_version":"15 SP1","extensions":[{"friendly_version":"15 SP1","extensions":[],"release_stage":"released","id":1791,"identifier":"sle-module-development-tools","recommended":false,"version":"15.1","name":"Development Tools Module","offline_predecessor_ids":[1376,1378,1430,1633,1889],"friendly_name":"Development Tools Module 15 SP1 aarch64","migration_extra":true,"former_identifier":"sle-sdk","release_type":null,"predecessor_ids":[1598],"online_predecessor_ids":[1598],"product_class":"MODULE","repositories":[{"enabled":true,"id":3356,"distro_target":"sle-15-aarch64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15-SP1/aarch64/update/","installer_updates":false,"name":"SLE-Module-DevTools15-SP1-Updates","description":"SLE-Module-DevTools15-SP1-Updates for sle-15-aarch64"},{"description":"SLE-Module-DevTools15-SP1-Debuginfo-Updates for sle-15-aarch64","installer_updates":false,"name":"SLE-Module-DevTools15-SP1-Debuginfo-Updates","distro_target":"sle-15-aarch64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15-SP1/aarch64/update_debug/","enabled":false,"id":3357},{"id":3358,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP1/aarch64/product/","autorefresh":false,"distro_target":"sle-15-aarch64","name":"SLE-Module-DevTools15-SP1-Pool","installer_updates":false,"description":"SLE-Module-DevTools15-SP1-Pool for sle-15-aarch64"},{"autorefresh":false,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP1/aarch64/product_debug/","enabled":false,"id":3359,"description":"SLE-Module-DevTools15-SP1-Debuginfo-Pool for sle-15-aarch64","name":"SLE-Module-DevTools15-SP1-Debuginfo-Pool","installer_updates":false},{"enabled":false,"id":3360,"distro_target":"sle-15-aarch64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP1/aarch64/product_source/","installer_updates":false,"name":"SLE-Module-DevTools15-SP1-Source-Pool","description":"SLE-Module-DevTools15-SP1-Source-Pool for sle-15-aarch64"}],"cpe":"cpe:/o:suse:sle-module-development-tools:15:sp1","product_type":"module","shortname":"Development-Tools-Module","description":"

The Development Tools Module helps you developing applications for SUSE Linux Enterprise 15.

Access to the Development Tools Module is included in your SUSE Linux Enterprise product subscription. The module has a different lifecycle than SUSE Linux Enterprise itself.

","free":true,"eula_url":"","arch":"aarch64"}],"release_stage":"released","id":1773,"identifier":"sle-module-desktop-applications","description":"

The SUSE Linux Enterprise Desktop Applications Module delivers a basic set of Desktop functionality.

Access to the Desktop Applications Module is included in your SUSE Linux Enterprise product subscription.

","shortname":"Desktop-Applications-Module","free":true,"eula_url":"","arch":"aarch64","predecessor_ids":[1595],"repositories":[{"name":"SLE-Module-Desktop-Applications15-SP1-Updates","installer_updates":false,"description":"SLE-Module-Desktop-Applications15-SP1-Updates for sle-15-aarch64","id":3266,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15-SP1/aarch64/update/","autorefresh":true,"distro_target":"sle-15-aarch64"},{"description":"SLE-Module-Desktop-Applications15-SP1-Debuginfo-Updates for sle-15-aarch64","installer_updates":false,"name":"SLE-Module-Desktop-Applications15-SP1-Debuginfo-Updates","distro_target":"sle-15-aarch64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15-SP1/aarch64/update_debug/","enabled":false,"id":3267},{"enabled":true,"id":3268,"distro_target":"sle-15-aarch64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP1/aarch64/product/","installer_updates":false,"name":"SLE-Module-Desktop-Applications15-SP1-Pool","description":"SLE-Module-Desktop-Applications15-SP1-Pool for sle-15-aarch64"},{"enabled":false,"id":3269,"distro_target":"sle-15-aarch64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP1/aarch64/product_debug/","installer_updates":false,"name":"SLE-Module-Desktop-Applications15-SP1-Debuginfo-Pool","description":"SLE-Module-Desktop-Applications15-SP1-Debuginfo-Pool for sle-15-aarch64"},{"name":"SLE-Module-Desktop-Applications15-SP1-Source-Pool","installer_updates":false,"description":"SLE-Module-Desktop-Applications15-SP1-Source-Pool for sle-15-aarch64","id":3270,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP1/aarch64/product_source/","autorefresh":false,"distro_target":"sle-15-aarch64"}],"online_predecessor_ids":[1595],"product_class":"MODULE","cpe":"cpe:/o:suse:sle-module-desktop-applications:15:sp1","product_type":"module"},{"cpe":"cpe:/o:suse:sle-module-server-applications:15:sp1","product_type":"module","predecessor_ids":[1601],"online_predecessor_ids":[1601],"product_class":"MODULE","repositories":[{"description":"SLE-Module-Server-Applications15-SP1-Updates for sle-15-aarch64","installer_updates":false,"name":"SLE-Module-Server-Applications15-SP1-Updates","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15-SP1/aarch64/update/","distro_target":"sle-15-aarch64","autorefresh":true,"id":3286,"enabled":true},{"description":"SLE-Module-Server-Applications15-SP1-Debuginfo-Updates for sle-15-aarch64","name":"SLE-Module-Server-Applications15-SP1-Debuginfo-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15-SP1/aarch64/update_debug/","enabled":false,"id":3287},{"name":"SLE-Module-Server-Applications15-SP1-Pool","installer_updates":false,"description":"SLE-Module-Server-Applications15-SP1-Pool for sle-15-aarch64","enabled":true,"id":3288,"autorefresh":false,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP1/aarch64/product/"},{"installer_updates":false,"name":"SLE-Module-Server-Applications15-SP1-Debuginfo-Pool","description":"SLE-Module-Server-Applications15-SP1-Debuginfo-Pool for sle-15-aarch64","enabled":false,"id":3289,"distro_target":"sle-15-aarch64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP1/aarch64/product_debug/"},{"enabled":false,"id":3290,"distro_target":"sle-15-aarch64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP1/aarch64/product_source/","installer_updates":false,"name":"SLE-Module-Server-Applications15-SP1-Source-Pool","description":"SLE-Module-Server-Applications15-SP1-Source-Pool for sle-15-aarch64"}],"eula_url":"","arch":"aarch64","description":"

The SUSE Linux Enterprise Server Applications Module delivers a basic set of Server functionality.

Access to the Server Applications Module is included in your SUSE Linux Enterprise Server subscription.

","shortname":"Server-Applications-Module","free":true,"extensions":[{"predecessor_ids":[],"product_class":"SES-ARM64","online_predecessor_ids":[],"repositories":[{"enabled":true,"id":2869,"distro_target":"sle-15-aarch64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/Storage/6/aarch64/update/","installer_updates":false,"name":"SUSE-Enterprise-Storage-6-Updates","description":"SUSE-Enterprise-Storage-6-Updates for sle-15-aarch64"},{"description":"SUSE-Enterprise-Storage-6-Debuginfo-Updates for sle-15-aarch64","installer_updates":false,"name":"SUSE-Enterprise-Storage-6-Debuginfo-Updates","url":"https://updates.suse.com/SUSE/Updates/Storage/6/aarch64/update_debug/","distro_target":"sle-15-aarch64","autorefresh":true,"id":2870,"enabled":false},{"enabled":true,"id":2871,"distro_target":"sle-15-aarch64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/Storage/6/aarch64/product/","installer_updates":false,"name":"SUSE-Enterprise-Storage-6-Pool","description":"SUSE-Enterprise-Storage-6-Pool for sle-15-aarch64"},{"distro_target":"sle-15-aarch64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/Storage/6/aarch64/product_debug/","enabled":false,"id":2872,"description":"SUSE-Enterprise-Storage-6-Debuginfo-Pool for sle-15-aarch64","installer_updates":false,"name":"SUSE-Enterprise-Storage-6-Debuginfo-Pool"},{"id":2873,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/Storage/6/aarch64/product_source/","distro_target":"sle-15-aarch64","autorefresh":false,"installer_updates":false,"name":"SUSE-Enterprise-Storage-6-Source-Pool","description":"SUSE-Enterprise-Storage-6-Source-Pool for sle-15-aarch64"}],"product_type":"extension","cpe":"cpe:/o:suse:ses:6","free":false,"shortname":"SES6","description":"SUSE Enterprise Storage 6 for SUSE Linux Enterprise Server 15 SP1, powered by Ceph.","eula_url":"https://updates.suse.com/SUSE/Products/Storage/6/aarch64/product.license/","arch":"aarch64","friendly_version":"6","extensions":[],"release_stage":"released","id":1643,"identifier":"ses","recommended":false,"version":"6","offline_predecessor_ids":[1417,1527],"name":"SUSE Enterprise Storage","former_identifier":"ses","release_type":null,"migration_extra":false,"friendly_name":"SUSE Enterprise Storage 6 aarch64"},{"description":"SUSE Linux High Availability Extension provides mature, industry-leading open-source high-availability clustering technologies that are easy to set up and use. It can be deployed in physical and/or virtual environments, and can cluster physical servers, virtual servers, or any combination of the two to suit your business’ needs.","shortname":"SLEHA15-SP1","free":false,"arch":"aarch64","eula_url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP1/aarch64/product.license/","product_class":"SLE-HAE-ARM64","online_predecessor_ids":[1608],"repositories":[{"name":"SLE-Product-HA15-SP1-Updates","installer_updates":false,"description":"SLE-Product-HA15-SP1-Updates for sle-15-aarch64","id":3311,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-HA/15-SP1/aarch64/update/","autorefresh":true,"distro_target":"sle-15-aarch64"},{"description":"SLE-Product-HA15-SP1-Debuginfo-Updates for sle-15-aarch64","name":"SLE-Product-HA15-SP1-Debuginfo-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Updates/SLE-Product-HA/15-SP1/aarch64/update_debug/","enabled":false,"id":3312},{"autorefresh":false,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP1/aarch64/product/","enabled":true,"id":3313,"description":"SLE-Product-HA15-SP1-Pool for sle-15-aarch64","name":"SLE-Product-HA15-SP1-Pool","installer_updates":false},{"installer_updates":false,"name":"SLE-Product-HA15-SP1-Debuginfo-Pool","description":"SLE-Product-HA15-SP1-Debuginfo-Pool for sle-15-aarch64","id":3314,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP1/aarch64/product_debug/","distro_target":"sle-15-aarch64","autorefresh":false},{"enabled":false,"id":3315,"autorefresh":false,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP1/aarch64/product_source/","name":"SLE-Product-HA15-SP1-Source-Pool","installer_updates":false,"description":"SLE-Product-HA15-SP1-Source-Pool for sle-15-aarch64"}],"predecessor_ids":[1608],"cpe":"cpe:/o:suse:sle-ha:15:sp1","product_type":"extension","version":"15.1","recommended":false,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise High Availability Extension 15 SP1 aarch64","former_identifier":"sle-ha","release_type":null,"name":"SUSE Linux Enterprise High Availability Extension","offline_predecessor_ids":[],"friendly_version":"15 SP1","release_stage":"released","id":1782,"identifier":"sle-ha","extensions":[]},{"name":"Web and Scripting Module","offline_predecessor_ids":[1539],"friendly_name":"Web and Scripting Module 15 SP1 aarch64","migration_extra":true,"former_identifier":"sle-module-web-scripting","release_type":null,"recommended":false,"version":"15.1","extensions":[],"release_stage":"released","id":1795,"identifier":"sle-module-web-scripting","friendly_version":"15 SP1","eula_url":"","arch":"aarch64","shortname":"Web-Scripting-Module","description":"

The SUSE Linux Enterprise Web and Scripting Module should contains additional packages that are helpful when running a webserver.

Access to the Web and Scripting Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself: Package versions in this module are usually supported for at most three years. We are planning to release more recent versions on a schedule of approximately 18 month; the exact dates may differ per package.

","free":true,"cpe":"cpe:/o:suse:sle-module-web-scripting:15:sp1","product_type":"module","predecessor_ids":[1718],"online_predecessor_ids":[1718],"repositories":[{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/15-SP1/aarch64/update/","distro_target":"sle-15-aarch64","autorefresh":true,"id":3376,"enabled":true,"description":"SLE-Module-Web-Scripting15-SP1-Updates for sle-15-aarch64","installer_updates":false,"name":"SLE-Module-Web-Scripting15-SP1-Updates"},{"id":3377,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/15-SP1/aarch64/update_debug/","autorefresh":true,"distro_target":"sle-15-aarch64","name":"SLE-Module-Web-Scripting15-SP1-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-Web-Scripting15-SP1-Debuginfo-Updates for sle-15-aarch64"},{"id":3378,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP1/aarch64/product/","distro_target":"sle-15-aarch64","autorefresh":false,"installer_updates":false,"name":"SLE-Module-Web-Scripting15-SP1-Pool","description":"SLE-Module-Web-Scripting15-SP1-Pool for sle-15-aarch64"},{"description":"SLE-Module-Web-Scripting15-SP1-Debuginfo-Pool for sle-15-aarch64","name":"SLE-Module-Web-Scripting15-SP1-Debuginfo-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP1/aarch64/product_debug/","enabled":false,"id":3379},{"id":3380,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP1/aarch64/product_source/","distro_target":"sle-15-aarch64","autorefresh":false,"installer_updates":false,"name":"SLE-Module-Web-Scripting15-SP1-Source-Pool","description":"SLE-Module-Web-Scripting15-SP1-Source-Pool for sle-15-aarch64"}],"product_class":"MODULE"},{"migration_extra":true,"friendly_name":"Legacy Module 15 SP1 aarch64","release_type":null,"former_identifier":"sle-module-legacy","name":"Legacy Module","offline_predecessor_ids":[],"version":"15.1","recommended":false,"release_stage":"released","identifier":"sle-module-legacy","id":1801,"extensions":[],"friendly_version":"15 SP1","arch":"aarch64","eula_url":"","description":"

The Legacy Module helps you migrating applications from SUSE Linux Enterprise 12 and other systems to SUSE Linux Enterprise 15, by providing packages which are discontinued on SUSE Linux Enterprise Server, such as: ntp, IBM Java 8, and a number of libraries.

Access to the Legacy Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself. Packages in the this module are usually supported for at most three years.

","shortname":"Legacy-Module","free":true,"cpe":"cpe:/o:suse:sle-module-legacy:15:sp1","product_type":"module","repositories":[{"enabled":true,"id":3406,"autorefresh":true,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/15-SP1/aarch64/update/","name":"SLE-Module-Legacy15-SP1-Updates","installer_updates":false,"description":"SLE-Module-Legacy15-SP1-Updates for sle-15-aarch64"},{"name":"SLE-Module-Legacy15-SP1-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-Legacy15-SP1-Debuginfo-Updates for sle-15-aarch64","enabled":false,"id":3407,"autorefresh":true,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/15-SP1/aarch64/update_debug/"},{"enabled":true,"id":3408,"autorefresh":false,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15-SP1/aarch64/product/","name":"SLE-Module-Legacy15-SP1-Pool","installer_updates":false,"description":"SLE-Module-Legacy15-SP1-Pool for sle-15-aarch64"},{"enabled":false,"id":3409,"distro_target":"sle-15-aarch64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15-SP1/aarch64/product_debug/","installer_updates":false,"name":"SLE-Module-Legacy15-SP1-Debuginfo-Pool","description":"SLE-Module-Legacy15-SP1-Debuginfo-Pool for sle-15-aarch64"},{"enabled":false,"id":3410,"distro_target":"sle-15-aarch64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15-SP1/aarch64/product_source/","installer_updates":false,"name":"SLE-Module-Legacy15-SP1-Source-Pool","description":"SLE-Module-Legacy15-SP1-Source-Pool for sle-15-aarch64"}],"online_predecessor_ids":[1604],"product_class":"MODULE","predecessor_ids":[1604]},{"version":"15.1","recommended":false,"release_type":null,"former_identifier":"sle-module-public-cloud","friendly_name":"Public Cloud Module 15 SP1 aarch64","migration_extra":false,"offline_predecessor_ids":[1528],"name":"Public Cloud Module","friendly_version":"15 SP1","release_stage":"released","id":1805,"identifier":"sle-module-public-cloud","extensions":[],"free":true,"description":"

The Public Cloud Module is a collection of tools that enables you to create and manage cloud images from the commandline on SUSE Linux Enterprise Server. When building your own images with KIWI or SUSE Studio, initialization code specific to the target cloud is included in that image.

Access to the Public Cloud Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself; please check the Release Notes for further details.

","shortname":"Public-Cloud-Module","arch":"aarch64","eula_url":"","online_predecessor_ids":[1645],"repositories":[{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/15-SP1/aarch64/update/","distro_target":"sle-15-aarch64","autorefresh":true,"id":3426,"enabled":true,"description":"SLE-Module-Public-Cloud15-SP1-Updates for sle-15-aarch64","installer_updates":false,"name":"SLE-Module-Public-Cloud15-SP1-Updates"},{"installer_updates":false,"name":"SLE-Module-Public-Cloud15-SP1-Debuginfo-Updates","description":"SLE-Module-Public-Cloud15-SP1-Debuginfo-Updates for sle-15-aarch64","id":3427,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/15-SP1/aarch64/update_debug/","distro_target":"sle-15-aarch64","autorefresh":true},{"enabled":true,"id":3428,"autorefresh":false,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP1/aarch64/product/","name":"SLE-Module-Public-Cloud15-SP1-Pool","installer_updates":false,"description":"SLE-Module-Public-Cloud15-SP1-Pool for sle-15-aarch64"},{"description":"SLE-Module-Public-Cloud15-SP1-Debuginfo-Pool for sle-15-aarch64","name":"SLE-Module-Public-Cloud15-SP1-Debuginfo-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP1/aarch64/product_debug/","autorefresh":false,"distro_target":"sle-15-aarch64","id":3429,"enabled":false},{"description":"SLE-Module-Public-Cloud15-SP1-Source-Pool for sle-15-aarch64","name":"SLE-Module-Public-Cloud15-SP1-Source-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP1/aarch64/product_source/","autorefresh":false,"distro_target":"sle-15-aarch64","id":3430,"enabled":false}],"product_class":"MODULE","predecessor_ids":[1645],"product_type":"module","cpe":"cpe:/o:suse:sle-module-public-cloud:15:sp1"}],"id":1777,"release_stage":"released","identifier":"sle-module-server-applications","friendly_version":"15 SP1","name":"Server Applications Module","offline_predecessor_ids":[],"friendly_name":"Server Applications Module 15 SP1 aarch64","migration_extra":false,"release_type":null,"former_identifier":"sle-module-server-applications","recommended":true,"version":"15.1"},{"free":true,"shortname":"Transactional-Server-Module","description":"

Transactional Updates provide SUSE Linux Enterprise systems with a method of updating the operating system and its packages in an entirely ‘atomic’ way. Updates are either applied to the system all together in a single transaction, or not at all. This happens without influencing the running system. If an update fails, or if the successful update is deemed to be incompatible or otherwise incorrect, it can be discarded to immediately return the system to its previous functioning state.

Access to theTransactional Server Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself: Package versions in the this module are usually supported for at most three years. We are planning to release more recent versions on a schedule of approximately 18 month; the exact dates may differ per package.

","eula_url":"","arch":"aarch64","predecessor_ids":[],"repositories":[{"description":"SLE-Module-Transactional-Server15-SP1-Updates for sle-15-aarch64","name":"SLE-Module-Transactional-Server15-SP1-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Transactional-Server/15-SP1/aarch64/update/","enabled":true,"id":3497},{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Transactional-Server/15-SP1/aarch64/update_debug/","distro_target":"sle-15-aarch64","autorefresh":true,"id":3498,"enabled":false,"description":"SLE-Module-Transactional-Server15-SP1-Debuginfo-Updates for sle-15-aarch64","installer_updates":false,"name":"SLE-Module-Transactional-Server15-SP1-Debuginfo-Updates"},{"name":"SLE-Module-Transactional-Server15-SP1-Pool","installer_updates":false,"description":"SLE-Module-Transactional-Server15-SP1-Pool for sle-15-aarch64","enabled":true,"id":3499,"autorefresh":false,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Transactional-Server/15-SP1/aarch64/product/"},{"description":"SLE-Module-Transactional-Server15-SP1-Debuginfo-Pool for sle-15-aarch64","name":"SLE-Module-Transactional-Server15-SP1-Debuginfo-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Transactional-Server/15-SP1/aarch64/product_debug/","autorefresh":false,"distro_target":"sle-15-aarch64","id":3500,"enabled":false},{"description":"SLE-Module-Transactional-Server15-SP1-Source-Pool for sle-15-aarch64","name":"SLE-Module-Transactional-Server15-SP1-Source-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Transactional-Server/15-SP1/aarch64/product_source/","enabled":false,"id":3501}],"online_predecessor_ids":[],"product_class":"MODULE","product_type":"module","cpe":"cpe:/o:suse:sle-module-transactional-server:15:sp1","recommended":false,"version":"15.1","offline_predecessor_ids":[],"name":"Transactional Server Module","former_identifier":"sle-module-transactional-server","release_type":null,"friendly_name":"Transactional Server Module 15 SP1 aarch64","migration_extra":false,"friendly_version":"15 SP1","extensions":[],"id":1822,"release_stage":"released","identifier":"sle-module-transactional-server"},{"predecessor_ids":[],"online_predecessor_ids":[],"product_class":"MODULE","repositories":[{"id":3583,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Python2/15-SP1/aarch64/update/","distro_target":"sle-15-aarch64","autorefresh":true,"installer_updates":false,"name":"SLE-Module-Python2-15-SP1-Updates","description":"SLE-Module-Python2-15-SP1-Updates for sle-15-aarch64"},{"autorefresh":true,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Python2/15-SP1/aarch64/update_debug/","enabled":false,"id":3584,"description":"SLE-Module-Python2-15-SP1-Debuginfo-Updates for sle-15-aarch64","name":"SLE-Module-Python2-15-SP1-Debuginfo-Updates","installer_updates":false},{"description":"SLE-Module-Python2-15-SP1-Pool for sle-15-aarch64","name":"SLE-Module-Python2-15-SP1-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Python2/15-SP1/aarch64/product/","enabled":true,"id":3585},{"enabled":false,"id":3586,"autorefresh":false,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Python2/15-SP1/aarch64/product_debug/","name":"SLE-Module-Python2-15-SP1-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-Python2-15-SP1-Debuginfo-Pool for sle-15-aarch64"},{"description":"SLE-Module-Python2-15-SP1-Source-Pool for sle-15-aarch64","name":"SLE-Module-Python2-15-SP1-Source-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Python2/15-SP1/aarch64/product_source/","enabled":false,"id":3587}],"product_type":"module","cpe":"cpe:/o:suse:sle-module-python2:15:sp1","free":true,"description":"

This module contains the python 2 packages.

Access to the Python 2 Module is included in your SUSE Linux Enterprise subscription. The module has a different lifecycle than SUSE Linux Enterprise itself. Packages in the this module are usually supported for at most three years.

","shortname":"Python2-Module","eula_url":"","arch":"aarch64","friendly_version":"15 SP1","extensions":[],"id":1864,"release_stage":"released","identifier":"sle-module-python2","recommended":false,"version":"15.1","offline_predecessor_ids":[],"name":"Python 2 Module","release_type":null,"former_identifier":"sle-module-python2","friendly_name":"Python 2 Module 15 SP1 aarch64","migration_extra":false},{"offline_predecessor_ids":[1532,1810,1912],"name":"SUSE Package Hub","release_type":null,"former_identifier":"PackageHub","friendly_name":"SUSE Package Hub 15 SP1 aarch64","migration_extra":false,"recommended":false,"version":"15.1","extensions":[],"identifier":"PackageHub","release_stage":"released","id":1868,"friendly_version":"15 SP1","eula_url":"","arch":"aarch64","free":true,"shortname":"SUSE-PackageHub-15","description":"SUSE Package Hub is a free of charge extension providing access to community maintained packages built to run on SUSE Linux Enterprise Server. Built from the same sources used in the openSUSE distributions, these quality packages provide additional software to what is found in the SUSE Linux Enterprise Server product. Packages from the Package Hub are delivered without L3 support from SUSE. General updates and fixes to the packages in SUSE Package Hub are provided by the openSUSE community based on their discretion, though SUSE will monitor and ensure that any known critical security issues will be addressed. Packages in the Package Hub are approved by SUSE for use with SUSE Linux Enterprise Server 15-SP1 and to not interfere with the supportability of SUSE Linux Enterprise Server, its modules and extensions. For more information about SUSE Package Hub please visit https://packagehub.suse.com.","product_type":"extension","cpe":"cpe:/o:suse:packagehub:15:sp1","predecessor_ids":[1740],"online_predecessor_ids":[1740],"product_class":"MODULE","repositories":[{"installer_updates":false,"name":"SUSE-PackageHub-15-SP1-Backports-Pool","description":"SUSE-PackageHub-15-SP1-Backports-Pool for sle-15-aarch64","id":3603,"enabled":true,"url":"https://updates.suse.com/SUSE/Backports/SLE-15-SP1_aarch64/standard/","distro_target":"sle-15-aarch64","autorefresh":false},{"name":"SUSE-PackageHub-15-SP1-Backports-Debuginfo","installer_updates":false,"description":"SUSE-PackageHub-15-SP1-Backports-Debuginfo for sle-15-aarch64","enabled":false,"id":3604,"autorefresh":true,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Backports/SLE-15-SP1_aarch64/standard_debug/"},{"installer_updates":false,"name":"SLE-Module-Packagehub-Subpackages15-SP1-Updates","description":"SLE-Module-Packagehub-Subpackages15-SP1-Updates for sle-15-aarch64","id":3605,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP1/aarch64/update/","distro_target":"sle-15-aarch64","autorefresh":true},{"distro_target":"sle-15-aarch64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP1/aarch64/update_debug/","enabled":false,"id":3606,"description":"SLE-Module-Packagehub-Subpackages15-SP1-Debuginfo-Updates for sle-15-aarch64","installer_updates":false,"name":"SLE-Module-Packagehub-Subpackages15-SP1-Debuginfo-Updates"},{"name":"SUSE-PackageHub-15-SP1-Pool","installer_updates":false,"description":"SUSE-PackageHub-15-SP1-Pool for sle-15-aarch64","id":3607,"enabled":true,"url":"https://updates.suse.com/SUSE/Backports/SLE-15-SP1_aarch64/product/","autorefresh":false,"distro_target":"sle-15-aarch64"},{"enabled":true,"id":3608,"autorefresh":false,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP1/aarch64/product/","name":"SLE-Module-Packagehub-Subpackages15-SP1-Pool","installer_updates":false,"description":"SLE-Module-Packagehub-Subpackages15-SP1-Pool for sle-15-aarch64"},{"installer_updates":false,"name":"SLE-Module-Packagehub-Subpackages15-SP1-Debuginfo-Pool","description":"SLE-Module-Packagehub-Subpackages15-SP1-Debuginfo-Pool for sle-15-aarch64","id":3609,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP1/aarch64/product_debug/","distro_target":"sle-15-aarch64","autorefresh":false},{"name":"SLE-Module-Packagehub-Subpackages15-SP1-Source-Pool","installer_updates":false,"description":"SLE-Module-Packagehub-Subpackages15-SP1-Source-Pool for sle-15-aarch64","enabled":false,"id":3610,"autorefresh":false,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP1/aarch64/product_source/"}]},{"arch":"aarch64","eula_url":"","description":"

This Module contains several packages revolving around containers and related tools.

","shortname":"Containers-Module","free":true,"cpe":"cpe:/o:suse:sle-module-containers:15:sp1","product_type":"module","online_predecessor_ids":[],"product_class":"MODULE","repositories":[{"id":3873,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/15-SP1/aarch64/update/","autorefresh":true,"distro_target":"sle-15-aarch64","name":"SLE-Module-Containers15-SP1-Updates","installer_updates":false,"description":"SLE-Module-Containers15-SP1-Updates for sle-15-aarch64"},{"id":3874,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/15-SP1/aarch64/update_debug/","distro_target":"sle-15-aarch64","autorefresh":true,"installer_updates":false,"name":"SLE-Module-Containers15-SP1-Debuginfo-Updates","description":"SLE-Module-Containers15-SP1-Debuginfo-Updates for sle-15-aarch64"},{"description":"SLE-Module-Containers15-SP1-Pool for sle-15-aarch64","installer_updates":false,"name":"SLE-Module-Containers15-SP1-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP1/aarch64/product/","distro_target":"sle-15-aarch64","autorefresh":false,"id":3875,"enabled":true},{"installer_updates":false,"name":"SLE-Module-Containers15-SP1-Debuginfo-Pool","description":"SLE-Module-Containers15-SP1-Debuginfo-Pool for sle-15-aarch64","id":3876,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP1/aarch64/product_debug/","distro_target":"sle-15-aarch64","autorefresh":false},{"name":"SLE-Module-Containers15-SP1-Source-Pool","installer_updates":false,"description":"SLE-Module-Containers15-SP1-Source-Pool for sle-15-aarch64","id":3877,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP1/aarch64/product_source/","autorefresh":false,"distro_target":"sle-15-aarch64"}],"predecessor_ids":[],"migration_extra":false,"friendly_name":"Containers Module 15 SP1 aarch64","former_identifier":"sle-module-containers","release_type":null,"name":"Containers Module","offline_predecessor_ids":[],"version":"15.1","recommended":false,"release_stage":"released","id":1920,"identifier":"sle-module-containers","extensions":[],"friendly_version":"15 SP1"}],"identifier":"sle-module-basesystem","release_stage":"released","id":1769,"friendly_version":"15 SP1","offline_predecessor_ids":[1522],"name":"Basesystem Module","former_identifier":"sle-module-basesystem","release_type":null,"friendly_name":"Basesystem Module 15 SP1 aarch64","migration_extra":false,"recommended":true,"version":"15.1","product_type":"module","cpe":"cpe:/o:suse:sle-module-basesystem:15:sp1","predecessor_ids":[1589],"online_predecessor_ids":[1589],"product_class":"MODULE","repositories":[{"enabled":true,"id":3246,"autorefresh":true,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15-SP1/aarch64/update/","name":"SLE-Module-Basesystem15-SP1-Updates","installer_updates":false,"description":"SLE-Module-Basesystem15-SP1-Updates for sle-15-aarch64"},{"id":3247,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15-SP1/aarch64/update_debug/","autorefresh":true,"distro_target":"sle-15-aarch64","name":"SLE-Module-Basesystem15-SP1-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-Basesystem15-SP1-Debuginfo-Updates for sle-15-aarch64"},{"installer_updates":false,"name":"SLE-Module-Basesystem15-SP1-Pool","description":"SLE-Module-Basesystem15-SP1-Pool for sle-15-aarch64","id":3248,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP1/aarch64/product/","distro_target":"sle-15-aarch64","autorefresh":false},{"installer_updates":false,"name":"SLE-Module-Basesystem15-SP1-Debuginfo-Pool","description":"SLE-Module-Basesystem15-SP1-Debuginfo-Pool for sle-15-aarch64","id":3249,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP1/aarch64/product_debug/","distro_target":"sle-15-aarch64","autorefresh":false},{"description":"SLE-Module-Basesystem15-SP1-Source-Pool for sle-15-aarch64","name":"SLE-Module-Basesystem15-SP1-Source-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP1/aarch64/product_source/","enabled":false,"id":3250}],"eula_url":"","arch":"aarch64","free":true,"shortname":"Basesystem-Module","description":"

The SUSE Linux Enterprise Basesystem Module delivers the base system of the product.

"},{"arch":"aarch64","eula_url":"","free":false,"description":"SUSE Linux Enterprise offers a comprehensive suite of products built on a single code base. The platform addresses business needs from the smallest thin-client devices to the world's most powerful high-performance computing and mainframe servers. SUSE Linux Enterprise offers common management tools and technology certifications across the platform, and each product is enterprise-class.","shortname":"SLES15-SP1-LTSS","product_type":"extension","cpe":"cpe:/o:suse:sles-ltss:15:sp1","online_predecessor_ids":[],"product_class":"SLES15-SP1-LTSS-ARM64","repositories":[{"autorefresh":true,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Updates/SLE-Product-SLES/15-SP1-LTSS/aarch64/update/","enabled":true,"id":4971,"description":"SLE-Product-SLES15-SP1-LTSS-Updates for sle-15-aarch64","name":"SLE-Product-SLES15-SP1-LTSS-Updates","installer_updates":false},{"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-SLES/15-SP1-LTSS/aarch64/update_debug/","distro_target":"sle-15-aarch64","autorefresh":true,"id":4972,"enabled":false,"description":"SLE-Product-SLES15-SP1-Debuginfo-LTSS-Updates for sle-15-aarch64","installer_updates":false,"name":"SLE-Product-SLES15-SP1-Debuginfo-LTSS-Updates"}],"predecessor_ids":[],"release_type":null,"former_identifier":"SLES-LTSS","migration_extra":false,"friendly_name":"SUSE Linux Enterprise Server LTSS 15 SP1 aarch64","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Server LTSS","version":"15.1","recommended":false,"release_stage":"released","id":2216,"identifier":"SLES-LTSS","extensions":[],"friendly_version":"15 SP1"}],"friendly_version":"15 SP1","friendly_name":"SUSE Linux Enterprise Server 15 SP1 aarch64","migration_extra":false,"release_type":null,"former_identifier":"SLES","name":"SUSE Linux Enterprise Server","offline_predecessor_ids":[1424,1628,1875],"version":"15.1","recommended":false,"cpe":"cpe:/o:suse:sles:15:sp1","product_type":"base","product_class":"SLES-ARM64","online_predecessor_ids":[1586],"repositories":[{"installer_updates":false,"name":"SLE-Product-SLES15-SP1-Updates","description":"SLE-Product-SLES15-SP1-Updates for sle-15-aarch64","enabled":true,"id":3197,"distro_target":"sle-15-aarch64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-SLES/15-SP1/aarch64/update/"},{"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-SLES/15-SP1/aarch64/update_debug/","autorefresh":true,"distro_target":"sle-15-aarch64","id":3198,"enabled":false,"description":"SLE-Product-SLES15-SP1-Debuginfo-Updates for sle-15-aarch64","name":"SLE-Product-SLES15-SP1-Debuginfo-Updates","installer_updates":false},{"id":3199,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-INSTALLER/15-SP1/aarch64/update/","autorefresh":true,"distro_target":"sle-15-aarch64","name":"SLE15-SP1-Installer-Updates","installer_updates":true,"description":"SLE15-SP1-Installer-Updates for sle-15-aarch64"},{"id":3200,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-SLES/15-SP1/aarch64/product/","distro_target":"sle-15-aarch64","autorefresh":false,"installer_updates":false,"name":"SLE-Product-SLES15-SP1-Pool","description":"SLE-Product-SLES15-SP1-Pool for sle-15-aarch64"},{"description":"SLE-Product-SLES15-SP1-Debuginfo-Pool for sle-15-aarch64","name":"SLE-Product-SLES15-SP1-Debuginfo-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Products/SLE-Product-SLES/15-SP1/aarch64/product_debug/","enabled":false,"id":3201},{"name":"SLE-Product-SLES15-SP1-Source-Pool","installer_updates":false,"description":"SLE-Product-SLES15-SP1-Source-Pool for sle-15-aarch64","id":3202,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-SLES/15-SP1/aarch64/product_source/","autorefresh":false,"distro_target":"sle-15-aarch64"}],"predecessor_ids":[1586],"arch":"aarch64","eula_url":"https://updates.suse.com/SUSE/Products/SLE-Product-SLES/15-SP1/aarch64/product.license/","description":"SUSE Linux Enterprise offers a comprehensive suite of products built on a single code base. The platform addresses business needs from the smallest thin-client devices to the world's most powerful high-performance computing and mainframe servers. SUSE Linux Enterprise offers common management tools and technology certifications across the platform, and each product is enterprise-class.","shortname":"SLES15-SP1","free":false},{"friendly_version":"15 SP1","release_stage":"released","id":1761,"identifier":"SLES","extensions":[{"recommended":true,"version":"15.1","name":"Basesystem Module","offline_predecessor_ids":[1294],"migration_extra":false,"friendly_name":"Basesystem Module 15 SP1 ppc64le","former_identifier":"sle-module-basesystem","release_type":null,"friendly_version":"15 SP1","extensions":[{"free":true,"shortname":"Desktop-Applications-Module","description":"

The SUSE Linux Enterprise Desktop Applications Module delivers a basic set of Desktop functionality.

Access to the Desktop Applications Module is included in your SUSE Linux Enterprise product subscription.

","arch":"ppc64le","eula_url":"","online_predecessor_ids":[1594],"product_class":"MODULE","repositories":[{"description":"SLE-Module-Desktop-Applications15-SP1-Updates for sle-15-ppc64le","name":"SLE-Module-Desktop-Applications15-SP1-Updates","installer_updates":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15-SP1/ppc64le/update/","autorefresh":true,"distro_target":"sle-15-ppc64le","id":3271,"enabled":true},{"name":"SLE-Module-Desktop-Applications15-SP1-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-Desktop-Applications15-SP1-Debuginfo-Updates for sle-15-ppc64le","id":3272,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15-SP1/ppc64le/update_debug/","autorefresh":true,"distro_target":"sle-15-ppc64le"},{"description":"SLE-Module-Desktop-Applications15-SP1-Pool for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-Desktop-Applications15-SP1-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP1/ppc64le/product/","distro_target":"sle-15-ppc64le","autorefresh":false,"id":3273,"enabled":true},{"enabled":false,"id":3274,"autorefresh":false,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP1/ppc64le/product_debug/","name":"SLE-Module-Desktop-Applications15-SP1-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-Desktop-Applications15-SP1-Debuginfo-Pool for sle-15-ppc64le"},{"name":"SLE-Module-Desktop-Applications15-SP1-Source-Pool","installer_updates":false,"description":"SLE-Module-Desktop-Applications15-SP1-Source-Pool for sle-15-ppc64le","id":3275,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP1/ppc64le/product_source/","autorefresh":false,"distro_target":"sle-15-ppc64le"}],"predecessor_ids":[1594],"product_type":"module","cpe":"cpe:/o:suse:sle-module-desktop-applications:15:sp1","version":"15.1","recommended":false,"release_type":null,"former_identifier":"sle-module-desktop-applications","friendly_name":"Desktop Applications Module 15 SP1 ppc64le","migration_extra":true,"offline_predecessor_ids":[],"name":"Desktop Applications Module","friendly_version":"15 SP1","release_stage":"released","identifier":"sle-module-desktop-applications","id":1774,"extensions":[{"name":"Development Tools Module","offline_predecessor_ids":[1145,1339,1343,1364,1428,1631,1890],"migration_extra":true,"friendly_name":"Development Tools Module 15 SP1 ppc64le","release_type":null,"former_identifier":"sle-sdk","recommended":false,"version":"15.1","extensions":[],"id":1792,"release_stage":"released","identifier":"sle-module-development-tools","friendly_version":"15 SP1","eula_url":"","arch":"ppc64le","shortname":"Development-Tools-Module","description":"

The Development Tools Module helps you developing applications for SUSE Linux Enterprise 15.

Access to the Development Tools Module is included in your SUSE Linux Enterprise product subscription. The module has a different lifecycle than SUSE Linux Enterprise itself.

","free":true,"cpe":"cpe:/o:suse:sle-module-development-tools:15:sp1","product_type":"module","predecessor_ids":[1597],"online_predecessor_ids":[1597],"repositories":[{"name":"SLE-Module-DevTools15-SP1-Updates","installer_updates":false,"description":"SLE-Module-DevTools15-SP1-Updates for sle-15-ppc64le","enabled":true,"id":3361,"autorefresh":true,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15-SP1/ppc64le/update/"},{"description":"SLE-Module-DevTools15-SP1-Debuginfo-Updates for sle-15-ppc64le","name":"SLE-Module-DevTools15-SP1-Debuginfo-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15-SP1/ppc64le/update_debug/","enabled":false,"id":3362},{"description":"SLE-Module-DevTools15-SP1-Pool for sle-15-ppc64le","name":"SLE-Module-DevTools15-SP1-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP1/ppc64le/product/","autorefresh":false,"distro_target":"sle-15-ppc64le","id":3363,"enabled":true},{"id":3364,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP1/ppc64le/product_debug/","distro_target":"sle-15-ppc64le","autorefresh":false,"installer_updates":false,"name":"SLE-Module-DevTools15-SP1-Debuginfo-Pool","description":"SLE-Module-DevTools15-SP1-Debuginfo-Pool for sle-15-ppc64le"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP1/ppc64le/product_source/","distro_target":"sle-15-ppc64le","autorefresh":false,"id":3365,"enabled":false,"description":"SLE-Module-DevTools15-SP1-Source-Pool for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-DevTools15-SP1-Source-Pool"}],"product_class":"MODULE"}]},{"arch":"ppc64le","eula_url":"","free":true,"shortname":"Server-Applications-Module","description":"

The SUSE Linux Enterprise Server Applications Module delivers a basic set of Server functionality.

Access to the Server Applications Module is included in your SUSE Linux Enterprise Server subscription.

","product_type":"module","cpe":"cpe:/o:suse:sle-module-server-applications:15:sp1","product_class":"MODULE","online_predecessor_ids":[1600],"repositories":[{"description":"SLE-Module-Server-Applications15-SP1-Updates for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-Server-Applications15-SP1-Updates","distro_target":"sle-15-ppc64le","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15-SP1/ppc64le/update/","enabled":true,"id":3291},{"autorefresh":true,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15-SP1/ppc64le/update_debug/","enabled":false,"id":3292,"description":"SLE-Module-Server-Applications15-SP1-Debuginfo-Updates for sle-15-ppc64le","name":"SLE-Module-Server-Applications15-SP1-Debuginfo-Updates","installer_updates":false},{"description":"SLE-Module-Server-Applications15-SP1-Pool for sle-15-ppc64le","name":"SLE-Module-Server-Applications15-SP1-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP1/ppc64le/product/","enabled":true,"id":3293},{"id":3294,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP1/ppc64le/product_debug/","autorefresh":false,"distro_target":"sle-15-ppc64le","name":"SLE-Module-Server-Applications15-SP1-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-Server-Applications15-SP1-Debuginfo-Pool for sle-15-ppc64le"},{"autorefresh":false,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP1/ppc64le/product_source/","enabled":false,"id":3295,"description":"SLE-Module-Server-Applications15-SP1-Source-Pool for sle-15-ppc64le","name":"SLE-Module-Server-Applications15-SP1-Source-Pool","installer_updates":false}],"predecessor_ids":[1600],"release_type":null,"former_identifier":"sle-module-server-applications","migration_extra":false,"friendly_name":"Server Applications Module 15 SP1 ppc64le","offline_predecessor_ids":[],"name":"Server Applications Module","version":"15.1","recommended":true,"release_stage":"released","identifier":"sle-module-server-applications","id":1778,"extensions":[{"offline_predecessor_ids":[1433,1635,1882],"name":"SUSE Linux Enterprise High Availability Extension","former_identifier":"sle-ha","release_type":null,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise High Availability Extension 15 SP1 ppc64le","recommended":false,"version":"15.1","extensions":[],"release_stage":"released","id":1783,"identifier":"sle-ha","friendly_version":"15 SP1","eula_url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP1/ppc64le/product.license/","arch":"ppc64le","free":false,"description":"SUSE Linux High Availability Extension provides mature, industry-leading open-source high-availability clustering technologies that are easy to set up and use. It can be deployed in physical and/or virtual environments, and can cluster physical servers, virtual servers, or any combination of the two to suit your business’ needs.","shortname":"SLEHA15-SP1","product_type":"extension","cpe":"cpe:/o:suse:sle-ha:15:sp1","predecessor_ids":[1606],"online_predecessor_ids":[1606],"product_class":"SLE-HAE-PPC","repositories":[{"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-HA/15-SP1/ppc64le/update/","autorefresh":true,"distro_target":"sle-15-ppc64le","id":3316,"enabled":true,"description":"SLE-Product-HA15-SP1-Updates for sle-15-ppc64le","name":"SLE-Product-HA15-SP1-Updates","installer_updates":false},{"enabled":false,"id":3317,"autorefresh":true,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Updates/SLE-Product-HA/15-SP1/ppc64le/update_debug/","name":"SLE-Product-HA15-SP1-Debuginfo-Updates","installer_updates":false,"description":"SLE-Product-HA15-SP1-Debuginfo-Updates for sle-15-ppc64le"},{"installer_updates":false,"name":"SLE-Product-HA15-SP1-Pool","description":"SLE-Product-HA15-SP1-Pool for sle-15-ppc64le","enabled":true,"id":3318,"distro_target":"sle-15-ppc64le","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP1/ppc64le/product/"},{"autorefresh":false,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP1/ppc64le/product_debug/","enabled":false,"id":3319,"description":"SLE-Product-HA15-SP1-Debuginfo-Pool for sle-15-ppc64le","name":"SLE-Product-HA15-SP1-Debuginfo-Pool","installer_updates":false},{"enabled":false,"id":3320,"autorefresh":false,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP1/ppc64le/product_source/","name":"SLE-Product-HA15-SP1-Source-Pool","installer_updates":false,"description":"SLE-Product-HA15-SP1-Source-Pool for sle-15-ppc64le"}]},{"release_stage":"released","identifier":"sle-module-web-scripting","id":1796,"extensions":[],"friendly_version":"15 SP1","former_identifier":"sle-module-web-scripting","release_type":null,"friendly_name":"Web and Scripting Module 15 SP1 ppc64le","migration_extra":true,"offline_predecessor_ids":[1151],"name":"Web and Scripting Module","version":"15.1","recommended":false,"product_type":"module","cpe":"cpe:/o:suse:sle-module-web-scripting:15:sp1","online_predecessor_ids":[1719],"product_class":"MODULE","repositories":[{"enabled":true,"id":3381,"autorefresh":true,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/15-SP1/ppc64le/update/","name":"SLE-Module-Web-Scripting15-SP1-Updates","installer_updates":false,"description":"SLE-Module-Web-Scripting15-SP1-Updates for sle-15-ppc64le"},{"id":3382,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/15-SP1/ppc64le/update_debug/","distro_target":"sle-15-ppc64le","autorefresh":true,"installer_updates":false,"name":"SLE-Module-Web-Scripting15-SP1-Debuginfo-Updates","description":"SLE-Module-Web-Scripting15-SP1-Debuginfo-Updates for sle-15-ppc64le"},{"name":"SLE-Module-Web-Scripting15-SP1-Pool","installer_updates":false,"description":"SLE-Module-Web-Scripting15-SP1-Pool for sle-15-ppc64le","enabled":true,"id":3383,"autorefresh":false,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP1/ppc64le/product/"},{"name":"SLE-Module-Web-Scripting15-SP1-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-Web-Scripting15-SP1-Debuginfo-Pool for sle-15-ppc64le","id":3384,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP1/ppc64le/product_debug/","autorefresh":false,"distro_target":"sle-15-ppc64le"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP1/ppc64le/product_source/","autorefresh":false,"distro_target":"sle-15-ppc64le","id":3385,"enabled":false,"description":"SLE-Module-Web-Scripting15-SP1-Source-Pool for sle-15-ppc64le","name":"SLE-Module-Web-Scripting15-SP1-Source-Pool","installer_updates":false}],"predecessor_ids":[1719],"arch":"ppc64le","eula_url":"","free":true,"description":"

The SUSE Linux Enterprise Web and Scripting Module should contains additional packages that are helpful when running a webserver.

Access to the Web and Scripting Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself: Package versions in this module are usually supported for at most three years. We are planning to release more recent versions on a schedule of approximately 18 month; the exact dates may differ per package.

","shortname":"Web-Scripting-Module"},{"free":true,"description":"

The Legacy Module helps you migrating applications from SUSE Linux Enterprise 12 and other systems to SUSE Linux Enterprise 15, by providing packages which are discontinued on SUSE Linux Enterprise Server, such as: ntp, IBM Java 8, and a number of libraries.

Access to the Legacy Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself. Packages in the this module are usually supported for at most three years.

","shortname":"Legacy-Module","eula_url":"","arch":"ppc64le","predecessor_ids":[1603],"repositories":[{"installer_updates":false,"name":"SLE-Module-Legacy15-SP1-Updates","description":"SLE-Module-Legacy15-SP1-Updates for sle-15-ppc64le","id":3411,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/15-SP1/ppc64le/update/","distro_target":"sle-15-ppc64le","autorefresh":true},{"description":"SLE-Module-Legacy15-SP1-Debuginfo-Updates for sle-15-ppc64le","name":"SLE-Module-Legacy15-SP1-Debuginfo-Updates","installer_updates":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/15-SP1/ppc64le/update_debug/","autorefresh":true,"distro_target":"sle-15-ppc64le","id":3412,"enabled":false},{"name":"SLE-Module-Legacy15-SP1-Pool","installer_updates":false,"description":"SLE-Module-Legacy15-SP1-Pool for sle-15-ppc64le","enabled":true,"id":3413,"autorefresh":false,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15-SP1/ppc64le/product/"},{"name":"SLE-Module-Legacy15-SP1-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-Legacy15-SP1-Debuginfo-Pool for sle-15-ppc64le","enabled":false,"id":3414,"autorefresh":false,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15-SP1/ppc64le/product_debug/"},{"distro_target":"sle-15-ppc64le","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15-SP1/ppc64le/product_source/","enabled":false,"id":3415,"description":"SLE-Module-Legacy15-SP1-Source-Pool for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-Legacy15-SP1-Source-Pool"}],"online_predecessor_ids":[1603],"product_class":"MODULE","product_type":"module","cpe":"cpe:/o:suse:sle-module-legacy:15:sp1","recommended":false,"version":"15.1","offline_predecessor_ids":[1148],"name":"Legacy Module","release_type":null,"former_identifier":"sle-module-legacy","migration_extra":true,"friendly_name":"Legacy Module 15 SP1 ppc64le","friendly_version":"15 SP1","extensions":[],"release_stage":"released","identifier":"sle-module-legacy","id":1802},{"release_stage":"released","identifier":"sle-module-public-cloud","id":1806,"extensions":[],"friendly_version":"15 SP1","former_identifier":"sle-module-public-cloud","release_type":null,"migration_extra":false,"friendly_name":"Public Cloud Module 15 SP1 ppc64le","offline_predecessor_ids":[1218],"name":"Public Cloud Module","version":"15.1","recommended":false,"product_type":"module","cpe":"cpe:/o:suse:sle-module-public-cloud:15:sp1","product_class":"MODULE","online_predecessor_ids":[1616],"repositories":[{"enabled":true,"id":3431,"autorefresh":true,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/15-SP1/ppc64le/update/","name":"SLE-Module-Public-Cloud15-SP1-Updates","installer_updates":false,"description":"SLE-Module-Public-Cloud15-SP1-Updates for sle-15-ppc64le"},{"id":3432,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/15-SP1/ppc64le/update_debug/","autorefresh":true,"distro_target":"sle-15-ppc64le","name":"SLE-Module-Public-Cloud15-SP1-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-Public-Cloud15-SP1-Debuginfo-Updates for sle-15-ppc64le"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP1/ppc64le/product/","distro_target":"sle-15-ppc64le","autorefresh":false,"id":3433,"enabled":true,"description":"SLE-Module-Public-Cloud15-SP1-Pool for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-Public-Cloud15-SP1-Pool"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP1/ppc64le/product_debug/","autorefresh":false,"distro_target":"sle-15-ppc64le","id":3434,"enabled":false,"description":"SLE-Module-Public-Cloud15-SP1-Debuginfo-Pool for sle-15-ppc64le","name":"SLE-Module-Public-Cloud15-SP1-Debuginfo-Pool","installer_updates":false},{"name":"SLE-Module-Public-Cloud15-SP1-Source-Pool","installer_updates":false,"description":"SLE-Module-Public-Cloud15-SP1-Source-Pool for sle-15-ppc64le","id":3435,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP1/ppc64le/product_source/","autorefresh":false,"distro_target":"sle-15-ppc64le"}],"predecessor_ids":[1616],"arch":"ppc64le","eula_url":"","free":true,"description":"

The Public Cloud Module is a collection of tools that enables you to create and manage cloud images from the commandline on SUSE Linux Enterprise Server. When building your own images with KIWI or SUSE Studio, initialization code specific to the target cloud is included in that image.

Access to the Public Cloud Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself; please check the Release Notes for further details.

","shortname":"Public-Cloud-Module"},{"cpe":"cpe:/o:suse:ibm-power-advance-toolchain:15","product_type":"extension","predecessor_ids":[],"online_predecessor_ids":[],"repositories":[{"description":"IBM-POWER-Adv-Toolchain","name":"IBM-POWER-Adv-Toolchain","installer_updates":false,"autorefresh":true,"distro_target":null,"url":"https://public.dhe.ibm.com/software/server/POWER/Linux/toolchain/at/suse/SLES_15/","enabled":true,"id":4430}],"product_class":"MODULE","eula_url":"","arch":"ppc64le","shortname":"IBMPWAT15","description":"IBM POWER Advance Toolchain for SLE 15","free":true,"extensions":[],"release_stage":"released","identifier":"ibm-power-advance-toolchain","id":2076,"friendly_version":"15","name":"IBM POWER Advance Toolchain for SLE","offline_predecessor_ids":[1249],"migration_extra":false,"friendly_name":"IBM POWER Advance Toolchain for SLE 15 ppc64le","release_type":null,"former_identifier":"ibm-power-advance-toolchain","recommended":false,"version":"15"},{"migration_extra":false,"friendly_name":"IBM POWER Tools for SLE 15 ppc64le","release_type":null,"former_identifier":"ibm-power-tools","name":"IBM POWER Tools for SLE","offline_predecessor_ids":[1250],"version":"15","recommended":false,"identifier":"ibm-power-tools","release_stage":"released","id":2077,"extensions":[],"friendly_version":"15","arch":"ppc64le","eula_url":"https://public.dhe.ibm.com/software/server/POWER/Linux/yum/OSS/SLES/15/ppc64le.license/","description":"IBM POWER Tools for SLE 15","shortname":"IBMPWUT15","free":true,"cpe":"cpe:/o:suse:ibm-power-tools:15","product_type":"extension","product_class":"MODULE","online_predecessor_ids":[],"repositories":[{"description":"IBM-POWER-Tools","installer_updates":false,"name":"IBM-POWER-Tools","url":"https://public.dhe.ibm.com/software/server/POWER/Linux/yum/OSS/SLES/15/ppc64le/","distro_target":null,"autorefresh":true,"id":4431,"enabled":true}],"predecessor_ids":[]}],"friendly_version":"15 SP1"},{"friendly_version":"15 SP1","extensions":[],"release_stage":"released","id":1788,"identifier":"sle-module-containers","recommended":false,"version":"15.1","name":"Containers Module","offline_predecessor_ids":[1353],"friendly_name":"Containers Module 15 SP1 ppc64le","migration_extra":false,"former_identifier":"sle-module-containers","release_type":null,"predecessor_ids":[1640],"online_predecessor_ids":[1640],"product_class":"MODULE","repositories":[{"description":"SLE-Module-Containers15-SP1-Updates for sle-15-ppc64le","name":"SLE-Module-Containers15-SP1-Updates","installer_updates":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/15-SP1/ppc64le/update/","autorefresh":true,"distro_target":"sle-15-ppc64le","id":3341,"enabled":true},{"id":3342,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/15-SP1/ppc64le/update_debug/","distro_target":"sle-15-ppc64le","autorefresh":true,"installer_updates":false,"name":"SLE-Module-Containers15-SP1-Debuginfo-Updates","description":"SLE-Module-Containers15-SP1-Debuginfo-Updates for sle-15-ppc64le"},{"name":"SLE-Module-Containers15-SP1-Pool","installer_updates":false,"description":"SLE-Module-Containers15-SP1-Pool for sle-15-ppc64le","id":3343,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP1/ppc64le/product/","autorefresh":false,"distro_target":"sle-15-ppc64le"},{"description":"SLE-Module-Containers15-SP1-Debuginfo-Pool for sle-15-ppc64le","name":"SLE-Module-Containers15-SP1-Debuginfo-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP1/ppc64le/product_debug/","autorefresh":false,"distro_target":"sle-15-ppc64le","id":3344,"enabled":false},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP1/ppc64le/product_source/","autorefresh":false,"distro_target":"sle-15-ppc64le","id":3345,"enabled":false,"description":"SLE-Module-Containers15-SP1-Source-Pool for sle-15-ppc64le","name":"SLE-Module-Containers15-SP1-Source-Pool","installer_updates":false}],"cpe":"cpe:/o:suse:sle-module-containers:15:sp1","product_type":"module","shortname":"Containers-Module","description":"

This Module contains several packages revolving around containers and related tools.

","free":true,"eula_url":"","arch":"ppc64le"},{"online_predecessor_ids":[],"product_class":"MODULE","repositories":[{"installer_updates":false,"name":"SLE-Module-Transactional-Server15-SP1-Updates","description":"SLE-Module-Transactional-Server15-SP1-Updates for sle-15-ppc64le","id":3502,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Transactional-Server/15-SP1/ppc64le/update/","distro_target":"sle-15-ppc64le","autorefresh":true},{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Transactional-Server/15-SP1/ppc64le/update_debug/","distro_target":"sle-15-ppc64le","autorefresh":true,"id":3503,"enabled":false,"description":"SLE-Module-Transactional-Server15-SP1-Debuginfo-Updates for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-Transactional-Server15-SP1-Debuginfo-Updates"},{"installer_updates":false,"name":"SLE-Module-Transactional-Server15-SP1-Pool","description":"SLE-Module-Transactional-Server15-SP1-Pool for sle-15-ppc64le","enabled":true,"id":3504,"distro_target":"sle-15-ppc64le","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Transactional-Server/15-SP1/ppc64le/product/"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Transactional-Server/15-SP1/ppc64le/product_debug/","distro_target":"sle-15-ppc64le","autorefresh":false,"id":3505,"enabled":false,"description":"SLE-Module-Transactional-Server15-SP1-Debuginfo-Pool for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-Transactional-Server15-SP1-Debuginfo-Pool"},{"description":"SLE-Module-Transactional-Server15-SP1-Source-Pool for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-Transactional-Server15-SP1-Source-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Transactional-Server/15-SP1/ppc64le/product_source/","distro_target":"sle-15-ppc64le","autorefresh":false,"id":3506,"enabled":false}],"predecessor_ids":[],"cpe":"cpe:/o:suse:sle-module-transactional-server:15:sp1","product_type":"module","description":"

Transactional Updates provide SUSE Linux Enterprise systems with a method of updating the operating system and its packages in an entirely ‘atomic’ way. Updates are either applied to the system all together in a single transaction, or not at all. This happens without influencing the running system. If an update fails, or if the successful update is deemed to be incompatible or otherwise incorrect, it can be discarded to immediately return the system to its previous functioning state.

Access to theTransactional Server Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself: Package versions in the this module are usually supported for at most three years. We are planning to release more recent versions on a schedule of approximately 18 month; the exact dates may differ per package.

","shortname":"Transactional-Server-Module","free":true,"arch":"ppc64le","eula_url":"","friendly_version":"15 SP1","release_stage":"released","id":1823,"identifier":"sle-module-transactional-server","extensions":[],"version":"15.1","recommended":false,"friendly_name":"Transactional Server Module 15 SP1 ppc64le","migration_extra":false,"former_identifier":"sle-module-transactional-server","release_type":null,"name":"Transactional Server Module","offline_predecessor_ids":[]},{"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Live Patching 15 SP1 ppc64le","release_type":null,"former_identifier":"sle-module-live-patching","name":"SUSE Linux Enterprise Live Patching","offline_predecessor_ids":[1537,1756,1887],"version":"15.1","recommended":false,"id":1827,"release_stage":"released","identifier":"sle-module-live-patching","extensions":[],"friendly_version":"15 SP1","arch":"ppc64le","eula_url":"","shortname":"Live-Patching","description":"

SUSE Linux Enterprise Live Patching provides packages to update critical components in SUSE Linux Enterprise. With SUSE Linux Enterprise Live Patching, you can perform critical patching without shutting down your system, reducing the need for planned downtime and increasing service availability.

","free":false,"cpe":"cpe:/o:suse:sle-module-live-patching:15:sp1","product_type":"extension","online_predecessor_ids":[1735],"repositories":[{"id":3530,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Live-Patching/15-SP1/ppc64le/update/","autorefresh":true,"distro_target":"sle-15-ppc64le","name":"SLE-Module-Live-Patching15-SP1-Updates","installer_updates":false,"description":"SLE-Module-Live-Patching15-SP1-Updates for sle-15-ppc64le"},{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Live-Patching/15-SP1/ppc64le/update_debug/","distro_target":"sle-15-ppc64le","autorefresh":true,"id":3531,"enabled":false,"description":"SLE-Module-Live-Patching15-SP1-Debuginfo-Updates for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-Live-Patching15-SP1-Debuginfo-Updates"},{"description":"SLE-Module-Live-Patching15-SP1-Pool for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-Live-Patching15-SP1-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Live-Patching/15-SP1/ppc64le/product/","distro_target":"sle-15-ppc64le","autorefresh":false,"id":3532,"enabled":true},{"description":"SLE-Module-Live-Patching15-SP1-Debuginfo-Pool for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-Live-Patching15-SP1-Debuginfo-Pool","distro_target":"sle-15-ppc64le","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Live-Patching/15-SP1/ppc64le/product_debug/","enabled":false,"id":3533},{"enabled":false,"id":3534,"autorefresh":false,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Live-Patching/15-SP1/ppc64le/product_source/","name":"SLE-Module-Live-Patching15-SP1-Source-Pool","installer_updates":false,"description":"SLE-Module-Live-Patching15-SP1-Source-Pool for sle-15-ppc64le"}],"product_class":"SLE-LP-PPC","predecessor_ids":[1735]},{"friendly_name":"Python 2 Module 15 SP1 ppc64le","migration_extra":false,"former_identifier":"sle-module-python2","release_type":null,"name":"Python 2 Module","offline_predecessor_ids":[],"version":"15.1","recommended":false,"identifier":"sle-module-python2","release_stage":"released","id":1865,"extensions":[],"friendly_version":"15 SP1","arch":"ppc64le","eula_url":"","shortname":"Python2-Module","description":"

This module contains the python 2 packages.

Access to the Python 2 Module is included in your SUSE Linux Enterprise subscription. The module has a different lifecycle than SUSE Linux Enterprise itself. Packages in the this module are usually supported for at most three years.

","free":true,"cpe":"cpe:/o:suse:sle-module-python2:15:sp1","product_type":"module","repositories":[{"description":"SLE-Module-Python2-15-SP1-Updates for sle-15-ppc64le","name":"SLE-Module-Python2-15-SP1-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Python2/15-SP1/ppc64le/update/","enabled":true,"id":3588},{"autorefresh":true,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Python2/15-SP1/ppc64le/update_debug/","enabled":false,"id":3589,"description":"SLE-Module-Python2-15-SP1-Debuginfo-Updates for sle-15-ppc64le","name":"SLE-Module-Python2-15-SP1-Debuginfo-Updates","installer_updates":false},{"enabled":true,"id":3590,"autorefresh":false,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Python2/15-SP1/ppc64le/product/","name":"SLE-Module-Python2-15-SP1-Pool","installer_updates":false,"description":"SLE-Module-Python2-15-SP1-Pool for sle-15-ppc64le"},{"autorefresh":false,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Python2/15-SP1/ppc64le/product_debug/","enabled":false,"id":3591,"description":"SLE-Module-Python2-15-SP1-Debuginfo-Pool for sle-15-ppc64le","name":"SLE-Module-Python2-15-SP1-Debuginfo-Pool","installer_updates":false},{"id":3592,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Python2/15-SP1/ppc64le/product_source/","distro_target":"sle-15-ppc64le","autorefresh":false,"installer_updates":false,"name":"SLE-Module-Python2-15-SP1-Source-Pool","description":"SLE-Module-Python2-15-SP1-Source-Pool for sle-15-ppc64le"}],"online_predecessor_ids":[],"product_class":"MODULE","predecessor_ids":[]},{"offline_predecessor_ids":[1531,1811,1913],"name":"SUSE Package Hub","release_type":null,"former_identifier":"PackageHub","migration_extra":false,"friendly_name":"SUSE Package Hub 15 SP1 ppc64le","recommended":false,"version":"15.1","extensions":[],"release_stage":"released","identifier":"PackageHub","id":1869,"friendly_version":"15 SP1","eula_url":"","arch":"ppc64le","free":true,"description":"SUSE Package Hub is a free of charge extension providing access to community maintained packages built to run on SUSE Linux Enterprise Server. Built from the same sources used in the openSUSE distributions, these quality packages provide additional software to what is found in the SUSE Linux Enterprise Server product. Packages from the Package Hub are delivered without L3 support from SUSE. General updates and fixes to the packages in SUSE Package Hub are provided by the openSUSE community based on their discretion, though SUSE will monitor and ensure that any known critical security issues will be addressed. Packages in the Package Hub are approved by SUSE for use with SUSE Linux Enterprise Server 15-SP1 and to not interfere with the supportability of SUSE Linux Enterprise Server, its modules and extensions. For more information about SUSE Package Hub please visit https://packagehub.suse.com.","shortname":"SUSE-PackageHub-15","product_type":"extension","cpe":"cpe:/o:suse:packagehub:15:sp1","predecessor_ids":[1741],"product_class":"MODULE","online_predecessor_ids":[1741],"repositories":[{"url":"https://updates.suse.com/SUSE/Backports/SLE-15-SP1_ppc64le/standard/","autorefresh":false,"distro_target":"sle-15-ppc64le","id":3611,"enabled":true,"description":"SUSE-PackageHub-15-SP1-Backports-Pool for sle-15-ppc64le","name":"SUSE-PackageHub-15-SP1-Backports-Pool","installer_updates":false},{"description":"SUSE-PackageHub-15-SP1-Backports-Debuginfo for sle-15-ppc64le","name":"SUSE-PackageHub-15-SP1-Backports-Debuginfo","installer_updates":false,"url":"https://updates.suse.com/SUSE/Backports/SLE-15-SP1_ppc64le/standard_debug/","autorefresh":true,"distro_target":"sle-15-ppc64le","id":3612,"enabled":false},{"autorefresh":true,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP1/ppc64le/update/","enabled":true,"id":3613,"description":"SLE-Module-Packagehub-Subpackages15-SP1-Updates for sle-15-ppc64le","name":"SLE-Module-Packagehub-Subpackages15-SP1-Updates","installer_updates":false},{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP1/ppc64le/update_debug/","distro_target":"sle-15-ppc64le","autorefresh":true,"id":3614,"enabled":false,"description":"SLE-Module-Packagehub-Subpackages15-SP1-Debuginfo-Updates for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-Packagehub-Subpackages15-SP1-Debuginfo-Updates"},{"name":"SUSE-PackageHub-15-SP1-Pool","installer_updates":false,"description":"SUSE-PackageHub-15-SP1-Pool for sle-15-ppc64le","enabled":true,"id":3615,"autorefresh":false,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Backports/SLE-15-SP1_ppc64le/product/"},{"description":"SLE-Module-Packagehub-Subpackages15-SP1-Pool for sle-15-ppc64le","name":"SLE-Module-Packagehub-Subpackages15-SP1-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP1/ppc64le/product/","enabled":true,"id":3616},{"installer_updates":false,"name":"SLE-Module-Packagehub-Subpackages15-SP1-Debuginfo-Pool","description":"SLE-Module-Packagehub-Subpackages15-SP1-Debuginfo-Pool for sle-15-ppc64le","id":3617,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP1/ppc64le/product_debug/","distro_target":"sle-15-ppc64le","autorefresh":false},{"name":"SLE-Module-Packagehub-Subpackages15-SP1-Source-Pool","installer_updates":false,"description":"SLE-Module-Packagehub-Subpackages15-SP1-Source-Pool for sle-15-ppc64le","enabled":false,"id":3618,"autorefresh":false,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP1/ppc64le/product_source/"}]}],"identifier":"sle-module-basesystem","release_stage":"released","id":1770,"description":"

The SUSE Linux Enterprise Basesystem Module delivers the base system of the product.

","shortname":"Basesystem-Module","free":true,"eula_url":"","arch":"ppc64le","predecessor_ids":[1588],"online_predecessor_ids":[1588],"product_class":"MODULE","repositories":[{"description":"SLE-Module-Basesystem15-SP1-Updates for sle-15-ppc64le","name":"SLE-Module-Basesystem15-SP1-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15-SP1/ppc64le/update/","enabled":true,"id":3251},{"id":3252,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15-SP1/ppc64le/update_debug/","distro_target":"sle-15-ppc64le","autorefresh":true,"installer_updates":false,"name":"SLE-Module-Basesystem15-SP1-Debuginfo-Updates","description":"SLE-Module-Basesystem15-SP1-Debuginfo-Updates for sle-15-ppc64le"},{"autorefresh":false,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP1/ppc64le/product/","enabled":true,"id":3253,"description":"SLE-Module-Basesystem15-SP1-Pool for sle-15-ppc64le","name":"SLE-Module-Basesystem15-SP1-Pool","installer_updates":false},{"enabled":false,"id":3254,"autorefresh":false,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP1/ppc64le/product_debug/","name":"SLE-Module-Basesystem15-SP1-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-Basesystem15-SP1-Debuginfo-Pool for sle-15-ppc64le"},{"description":"SLE-Module-Basesystem15-SP1-Source-Pool for sle-15-ppc64le","name":"SLE-Module-Basesystem15-SP1-Source-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP1/ppc64le/product_source/","autorefresh":false,"distro_target":"sle-15-ppc64le","id":3255,"enabled":false}],"cpe":"cpe:/o:suse:sle-module-basesystem:15:sp1","product_type":"module"},{"recommended":false,"version":"15.1","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Server LTSS","former_identifier":"SLES-LTSS","release_type":null,"friendly_name":"SUSE Linux Enterprise Server LTSS 15 SP1 ppc64le","migration_extra":false,"friendly_version":"15 SP1","extensions":[],"release_stage":"released","identifier":"SLES-LTSS","id":2217,"free":false,"description":"SUSE Linux Enterprise offers a comprehensive suite of products built on a single code base. The platform addresses business needs from the smallest thin-client devices to the world's most powerful high-performance computing and mainframe servers. SUSE Linux Enterprise offers common management tools and technology certifications across the platform, and each product is enterprise-class.","shortname":"SLES15-SP1-LTSS","eula_url":"","arch":"ppc64le","predecessor_ids":[],"repositories":[{"name":"SLE-Product-SLES15-SP1-LTSS-Updates","installer_updates":false,"description":"SLE-Product-SLES15-SP1-LTSS-Updates for sle-15-ppc64le","id":4973,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-SLES/15-SP1-LTSS/ppc64le/update/","autorefresh":true,"distro_target":"sle-15-ppc64le"},{"description":"SLE-Product-SLES15-SP1-Debuginfo-LTSS-Updates for sle-15-ppc64le","name":"SLE-Product-SLES15-SP1-Debuginfo-LTSS-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Updates/SLE-Product-SLES/15-SP1-LTSS/ppc64le/update_debug/","enabled":false,"id":4974}],"online_predecessor_ids":[],"product_class":"SLES15-SP1-LTSS-PPC","product_type":"extension","cpe":"cpe:/o:suse:sles-ltss:15:sp1"}],"version":"15.1","recommended":false,"former_identifier":"SLES","release_type":null,"friendly_name":"SUSE Linux Enterprise Server 15 SP1 ppc64le","migration_extra":false,"offline_predecessor_ids":[1422,1626,1876],"name":"SUSE Linux Enterprise Server","online_predecessor_ids":[1585],"product_class":"SLES-PPC","repositories":[{"description":"SLE-Product-SLES15-SP1-Updates for sle-15-ppc64le","installer_updates":false,"name":"SLE-Product-SLES15-SP1-Updates","distro_target":"sle-15-ppc64le","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-SLES/15-SP1/ppc64le/update/","enabled":true,"id":3203},{"name":"SLE-Product-SLES15-SP1-Debuginfo-Updates","installer_updates":false,"description":"SLE-Product-SLES15-SP1-Debuginfo-Updates for sle-15-ppc64le","enabled":false,"id":3204,"autorefresh":true,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Updates/SLE-Product-SLES/15-SP1/ppc64le/update_debug/"},{"description":"SLE15-SP1-Installer-Updates for sle-15-ppc64le","name":"SLE15-SP1-Installer-Updates","installer_updates":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-INSTALLER/15-SP1/ppc64le/update/","autorefresh":true,"distro_target":"sle-15-ppc64le","id":3205,"enabled":false},{"installer_updates":false,"name":"SLE-Product-SLES15-SP1-Pool","description":"SLE-Product-SLES15-SP1-Pool for sle-15-ppc64le","enabled":true,"id":3206,"distro_target":"sle-15-ppc64le","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-SLES/15-SP1/ppc64le/product/"},{"enabled":false,"id":3207,"autorefresh":false,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Products/SLE-Product-SLES/15-SP1/ppc64le/product_debug/","name":"SLE-Product-SLES15-SP1-Debuginfo-Pool","installer_updates":false,"description":"SLE-Product-SLES15-SP1-Debuginfo-Pool for sle-15-ppc64le"},{"description":"SLE-Product-SLES15-SP1-Source-Pool for sle-15-ppc64le","installer_updates":false,"name":"SLE-Product-SLES15-SP1-Source-Pool","distro_target":"sle-15-ppc64le","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-SLES/15-SP1/ppc64le/product_source/","enabled":false,"id":3208}],"predecessor_ids":[1585],"product_type":"base","cpe":"cpe:/o:suse:sles:15:sp1","free":false,"description":"SUSE Linux Enterprise offers a comprehensive suite of products built on a single code base. The platform addresses business needs from the smallest thin-client devices to the world's most powerful high-performance computing and mainframe servers. SUSE Linux Enterprise offers common management tools and technology certifications across the platform, and each product is enterprise-class.","shortname":"SLES15-SP1","arch":"ppc64le","eula_url":"https://updates.suse.com/SUSE/Products/SLE-Product-SLES/15-SP1/ppc64le/product.license/"},{"description":"SUSE Linux Enterprise offers a comprehensive suite of products built on a single code base. The platform addresses business needs from the smallest thin-client devices to the world's most powerful high-performance computing and mainframe servers. SUSE Linux Enterprise offers common management tools and technology certifications across the platform, and each product is enterprise-class.","shortname":"SLES15-SP1","free":false,"eula_url":"https://updates.suse.com/SUSE/Products/SLE-Product-SLES/15-SP1/s390x/product.license/","arch":"s390x","predecessor_ids":[1584],"online_predecessor_ids":[1584],"product_class":"SLES-Z","repositories":[{"id":3209,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-SLES/15-SP1/s390x/update/","distro_target":"sle-15-s390x","autorefresh":true,"installer_updates":false,"name":"SLE-Product-SLES15-SP1-Updates","description":"SLE-Product-SLES15-SP1-Updates for sle-15-s390x"},{"description":"SLE-Product-SLES15-SP1-Debuginfo-Updates for sle-15-s390x","installer_updates":false,"name":"SLE-Product-SLES15-SP1-Debuginfo-Updates","distro_target":"sle-15-s390x","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-SLES/15-SP1/s390x/update_debug/","enabled":false,"id":3210},{"description":"SLE15-SP1-Installer-Updates for sle-15-s390x","installer_updates":true,"name":"SLE15-SP1-Installer-Updates","distro_target":"sle-15-s390x","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-INSTALLER/15-SP1/s390x/update/","enabled":false,"id":3211},{"description":"SLE-Product-SLES15-SP1-Pool for sle-15-s390x","name":"SLE-Product-SLES15-SP1-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-SLES/15-SP1/s390x/product/","autorefresh":false,"distro_target":"sle-15-s390x","id":3212,"enabled":true},{"id":3213,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-SLES/15-SP1/s390x/product_debug/","autorefresh":false,"distro_target":"sle-15-s390x","name":"SLE-Product-SLES15-SP1-Debuginfo-Pool","installer_updates":false,"description":"SLE-Product-SLES15-SP1-Debuginfo-Pool for sle-15-s390x"},{"name":"SLE-Product-SLES15-SP1-Source-Pool","installer_updates":false,"description":"SLE-Product-SLES15-SP1-Source-Pool for sle-15-s390x","enabled":false,"id":3214,"autorefresh":false,"distro_target":"sle-15-s390x","url":"https://updates.suse.com/SUSE/Products/SLE-Product-SLES/15-SP1/s390x/product_source/"}],"cpe":"cpe:/o:suse:sles:15:sp1","product_type":"base","recommended":false,"version":"15.1","name":"SUSE Linux Enterprise Server","offline_predecessor_ids":[693,745,755,805,1303,1423,1627,1877],"friendly_name":"SUSE Linux Enterprise Server 15 SP1 s390x","migration_extra":false,"former_identifier":"SLES","release_type":null,"friendly_version":"15 SP1","extensions":[{"free":true,"shortname":"Basesystem-Module","description":"

The SUSE Linux Enterprise Basesystem Module delivers the base system of the product.

","arch":"s390x","eula_url":"","online_predecessor_ids":[1587],"product_class":"MODULE","repositories":[{"description":"SLE-Module-Basesystem15-SP1-Updates for sle-15-s390x","name":"SLE-Module-Basesystem15-SP1-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-15-s390x","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15-SP1/s390x/update/","enabled":true,"id":3256},{"id":3257,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15-SP1/s390x/update_debug/","autorefresh":true,"distro_target":"sle-15-s390x","name":"SLE-Module-Basesystem15-SP1-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-Basesystem15-SP1-Debuginfo-Updates for sle-15-s390x"},{"distro_target":"sle-15-s390x","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP1/s390x/product/","enabled":true,"id":3258,"description":"SLE-Module-Basesystem15-SP1-Pool for sle-15-s390x","installer_updates":false,"name":"SLE-Module-Basesystem15-SP1-Pool"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP1/s390x/product_debug/","distro_target":"sle-15-s390x","autorefresh":false,"id":3259,"enabled":false,"description":"SLE-Module-Basesystem15-SP1-Debuginfo-Pool for sle-15-s390x","installer_updates":false,"name":"SLE-Module-Basesystem15-SP1-Debuginfo-Pool"},{"description":"SLE-Module-Basesystem15-SP1-Source-Pool for sle-15-s390x","installer_updates":false,"name":"SLE-Module-Basesystem15-SP1-Source-Pool","distro_target":"sle-15-s390x","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP1/s390x/product_source/","enabled":false,"id":3260}],"predecessor_ids":[1587],"product_type":"module","cpe":"cpe:/o:suse:sle-module-basesystem:15:sp1","version":"15.1","recommended":true,"former_identifier":"sle-module-basesystem","release_type":null,"migration_extra":false,"friendly_name":"Basesystem Module 15 SP1 s390x","offline_predecessor_ids":[1295,1367],"name":"Basesystem Module","friendly_version":"15 SP1","identifier":"sle-module-basesystem","release_stage":"released","id":1771,"extensions":[{"eula_url":"","arch":"s390x","free":true,"description":"

The SUSE Linux Enterprise Desktop Applications Module delivers a basic set of Desktop functionality.

Access to the Desktop Applications Module is included in your SUSE Linux Enterprise product subscription.

","shortname":"Desktop-Applications-Module","product_type":"module","cpe":"cpe:/o:suse:sle-module-desktop-applications:15:sp1","predecessor_ids":[1593],"product_class":"MODULE","online_predecessor_ids":[1593],"repositories":[{"description":"SLE-Module-Desktop-Applications15-SP1-Updates for sle-15-s390x","installer_updates":false,"name":"SLE-Module-Desktop-Applications15-SP1-Updates","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15-SP1/s390x/update/","distro_target":"sle-15-s390x","autorefresh":true,"id":3276,"enabled":true},{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15-SP1/s390x/update_debug/","distro_target":"sle-15-s390x","autorefresh":true,"id":3277,"enabled":false,"description":"SLE-Module-Desktop-Applications15-SP1-Debuginfo-Updates for sle-15-s390x","installer_updates":false,"name":"SLE-Module-Desktop-Applications15-SP1-Debuginfo-Updates"},{"name":"SLE-Module-Desktop-Applications15-SP1-Pool","installer_updates":false,"description":"SLE-Module-Desktop-Applications15-SP1-Pool for sle-15-s390x","id":3278,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP1/s390x/product/","autorefresh":false,"distro_target":"sle-15-s390x"},{"installer_updates":false,"name":"SLE-Module-Desktop-Applications15-SP1-Debuginfo-Pool","description":"SLE-Module-Desktop-Applications15-SP1-Debuginfo-Pool for sle-15-s390x","enabled":false,"id":3279,"distro_target":"sle-15-s390x","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP1/s390x/product_debug/"},{"description":"SLE-Module-Desktop-Applications15-SP1-Source-Pool for sle-15-s390x","installer_updates":false,"name":"SLE-Module-Desktop-Applications15-SP1-Source-Pool","distro_target":"sle-15-s390x","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP1/s390x/product_source/","enabled":false,"id":3280}],"offline_predecessor_ids":[],"name":"Desktop Applications Module","former_identifier":"sle-module-desktop-applications","release_type":null,"friendly_name":"Desktop Applications Module 15 SP1 s390x","migration_extra":true,"recommended":false,"version":"15.1","extensions":[{"identifier":"sle-module-development-tools","release_stage":"released","id":1793,"extensions":[],"friendly_version":"15 SP1","migration_extra":true,"friendly_name":"Development Tools Module 15 SP1 s390x","release_type":null,"former_identifier":"sle-sdk","name":"Development Tools Module","offline_predecessor_ids":[1146,1340,1344,1365,1429,1632,1891],"version":"15.1","recommended":false,"cpe":"cpe:/o:suse:sle-module-development-tools:15:sp1","product_type":"module","online_predecessor_ids":[1596],"repositories":[{"id":3366,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15-SP1/s390x/update/","distro_target":"sle-15-s390x","autorefresh":true,"installer_updates":false,"name":"SLE-Module-DevTools15-SP1-Updates","description":"SLE-Module-DevTools15-SP1-Updates for sle-15-s390x"},{"description":"SLE-Module-DevTools15-SP1-Debuginfo-Updates for sle-15-s390x","name":"SLE-Module-DevTools15-SP1-Debuginfo-Updates","installer_updates":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15-SP1/s390x/update_debug/","autorefresh":true,"distro_target":"sle-15-s390x","id":3367,"enabled":false},{"description":"SLE-Module-DevTools15-SP1-Pool for sle-15-s390x","name":"SLE-Module-DevTools15-SP1-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-15-s390x","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP1/s390x/product/","enabled":true,"id":3368},{"description":"SLE-Module-DevTools15-SP1-Debuginfo-Pool for sle-15-s390x","installer_updates":false,"name":"SLE-Module-DevTools15-SP1-Debuginfo-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP1/s390x/product_debug/","distro_target":"sle-15-s390x","autorefresh":false,"id":3369,"enabled":false},{"id":3370,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP1/s390x/product_source/","distro_target":"sle-15-s390x","autorefresh":false,"installer_updates":false,"name":"SLE-Module-DevTools15-SP1-Source-Pool","description":"SLE-Module-DevTools15-SP1-Source-Pool for sle-15-s390x"}],"product_class":"MODULE","predecessor_ids":[1596],"arch":"s390x","eula_url":"","shortname":"Development-Tools-Module","description":"

The Development Tools Module helps you developing applications for SUSE Linux Enterprise 15.

Access to the Development Tools Module is included in your SUSE Linux Enterprise product subscription. The module has a different lifecycle than SUSE Linux Enterprise itself.

","free":true}],"release_stage":"released","identifier":"sle-module-desktop-applications","id":1775,"friendly_version":"15 SP1"},{"eula_url":"","arch":"s390x","description":"

The SUSE Linux Enterprise Server Applications Module delivers a basic set of Server functionality.

Access to the Server Applications Module is included in your SUSE Linux Enterprise Server subscription.

","shortname":"Server-Applications-Module","free":true,"cpe":"cpe:/o:suse:sle-module-server-applications:15:sp1","product_type":"module","predecessor_ids":[1599],"online_predecessor_ids":[1599],"product_class":"MODULE","repositories":[{"description":"SLE-Module-Server-Applications15-SP1-Updates for sle-15-s390x","installer_updates":false,"name":"SLE-Module-Server-Applications15-SP1-Updates","distro_target":"sle-15-s390x","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15-SP1/s390x/update/","enabled":true,"id":3296},{"description":"SLE-Module-Server-Applications15-SP1-Debuginfo-Updates for sle-15-s390x","installer_updates":false,"name":"SLE-Module-Server-Applications15-SP1-Debuginfo-Updates","distro_target":"sle-15-s390x","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15-SP1/s390x/update_debug/","enabled":false,"id":3297},{"description":"SLE-Module-Server-Applications15-SP1-Pool for sle-15-s390x","installer_updates":false,"name":"SLE-Module-Server-Applications15-SP1-Pool","distro_target":"sle-15-s390x","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP1/s390x/product/","enabled":true,"id":3298},{"description":"SLE-Module-Server-Applications15-SP1-Debuginfo-Pool for sle-15-s390x","name":"SLE-Module-Server-Applications15-SP1-Debuginfo-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-15-s390x","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP1/s390x/product_debug/","enabled":false,"id":3299},{"installer_updates":false,"name":"SLE-Module-Server-Applications15-SP1-Source-Pool","description":"SLE-Module-Server-Applications15-SP1-Source-Pool for sle-15-s390x","id":3300,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP1/s390x/product_source/","distro_target":"sle-15-s390x","autorefresh":false}],"name":"Server Applications Module","offline_predecessor_ids":[],"friendly_name":"Server Applications Module 15 SP1 s390x","migration_extra":false,"former_identifier":"sle-module-server-applications","release_type":null,"recommended":true,"version":"15.1","extensions":[{"friendly_name":"SUSE Linux Enterprise High Availability Extension 15 SP1 s390x","migration_extra":false,"former_identifier":"sle-ha","release_type":null,"name":"SUSE Linux Enterprise High Availability Extension","offline_predecessor_ids":[1080,1082,1084,1086,1109,1110,1257,1287,1434,1436,1636,1638,1883,1885],"version":"15.1","recommended":false,"identifier":"sle-ha","release_stage":"released","id":1784,"extensions":[],"friendly_version":"15 SP1","arch":"s390x","eula_url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP1/s390x/product.license/","description":"SUSE Linux High Availability Extension provides mature, industry-leading open-source high-availability clustering technologies that are easy to set up and use. It can be deployed in physical and/or virtual environments, and can cluster physical servers, virtual servers, or any combination of the two to suit your business’ needs.","shortname":"SLEHA15-SP1","free":false,"cpe":"cpe:/o:suse:sle-ha:15:sp1","product_type":"extension","product_class":"SLE-HAE-Z","online_predecessor_ids":[1605],"repositories":[{"id":3321,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-HA/15-SP1/s390x/update/","autorefresh":true,"distro_target":"sle-15-s390x","name":"SLE-Product-HA15-SP1-Updates","installer_updates":false,"description":"SLE-Product-HA15-SP1-Updates for sle-15-s390x"},{"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-HA/15-SP1/s390x/update_debug/","autorefresh":true,"distro_target":"sle-15-s390x","id":3322,"enabled":false,"description":"SLE-Product-HA15-SP1-Debuginfo-Updates for sle-15-s390x","name":"SLE-Product-HA15-SP1-Debuginfo-Updates","installer_updates":false},{"url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP1/s390x/product/","distro_target":"sle-15-s390x","autorefresh":false,"id":3323,"enabled":true,"description":"SLE-Product-HA15-SP1-Pool for sle-15-s390x","installer_updates":false,"name":"SLE-Product-HA15-SP1-Pool"},{"description":"SLE-Product-HA15-SP1-Debuginfo-Pool for sle-15-s390x","name":"SLE-Product-HA15-SP1-Debuginfo-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP1/s390x/product_debug/","autorefresh":false,"distro_target":"sle-15-s390x","id":3324,"enabled":false},{"enabled":false,"id":3325,"autorefresh":false,"distro_target":"sle-15-s390x","url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP1/s390x/product_source/","name":"SLE-Product-HA15-SP1-Source-Pool","installer_updates":false,"description":"SLE-Product-HA15-SP1-Source-Pool for sle-15-s390x"}],"predecessor_ids":[1605]},{"online_predecessor_ids":[1720],"repositories":[{"enabled":true,"id":3386,"autorefresh":true,"distro_target":"sle-15-s390x","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/15-SP1/s390x/update/","name":"SLE-Module-Web-Scripting15-SP1-Updates","installer_updates":false,"description":"SLE-Module-Web-Scripting15-SP1-Updates for sle-15-s390x"},{"name":"SLE-Module-Web-Scripting15-SP1-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-Web-Scripting15-SP1-Debuginfo-Updates for sle-15-s390x","enabled":false,"id":3387,"autorefresh":true,"distro_target":"sle-15-s390x","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/15-SP1/s390x/update_debug/"},{"id":3388,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP1/s390x/product/","autorefresh":false,"distro_target":"sle-15-s390x","name":"SLE-Module-Web-Scripting15-SP1-Pool","installer_updates":false,"description":"SLE-Module-Web-Scripting15-SP1-Pool for sle-15-s390x"},{"id":3389,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP1/s390x/product_debug/","autorefresh":false,"distro_target":"sle-15-s390x","name":"SLE-Module-Web-Scripting15-SP1-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-Web-Scripting15-SP1-Debuginfo-Pool for sle-15-s390x"},{"description":"SLE-Module-Web-Scripting15-SP1-Source-Pool for sle-15-s390x","name":"SLE-Module-Web-Scripting15-SP1-Source-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-15-s390x","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP1/s390x/product_source/","enabled":false,"id":3390}],"product_class":"MODULE","predecessor_ids":[1720],"product_type":"module","cpe":"cpe:/o:suse:sle-module-web-scripting:15:sp1","free":true,"description":"

The SUSE Linux Enterprise Web and Scripting Module should contains additional packages that are helpful when running a webserver.

Access to the Web and Scripting Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself: Package versions in this module are usually supported for at most three years. We are planning to release more recent versions on a schedule of approximately 18 month; the exact dates may differ per package.

","shortname":"Web-Scripting-Module","arch":"s390x","eula_url":"","friendly_version":"15 SP1","identifier":"sle-module-web-scripting","release_stage":"released","id":1797,"extensions":[],"version":"15.1","recommended":false,"release_type":null,"former_identifier":"sle-module-web-scripting","friendly_name":"Web and Scripting Module 15 SP1 s390x","migration_extra":true,"offline_predecessor_ids":[1152],"name":"Web and Scripting Module"},{"offline_predecessor_ids":[1149],"name":"Legacy Module","former_identifier":"sle-module-legacy","release_type":null,"migration_extra":true,"friendly_name":"Legacy Module 15 SP1 s390x","recommended":false,"version":"15.1","extensions":[],"release_stage":"released","identifier":"sle-module-legacy","id":1803,"friendly_version":"15 SP1","eula_url":"","arch":"s390x","free":true,"description":"

The Legacy Module helps you migrating applications from SUSE Linux Enterprise 12 and other systems to SUSE Linux Enterprise 15, by providing packages which are discontinued on SUSE Linux Enterprise Server, such as: ntp, IBM Java 8, and a number of libraries.

Access to the Legacy Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself. Packages in the this module are usually supported for at most three years.

","shortname":"Legacy-Module","product_type":"module","cpe":"cpe:/o:suse:sle-module-legacy:15:sp1","predecessor_ids":[1602],"product_class":"MODULE","online_predecessor_ids":[1602],"repositories":[{"description":"SLE-Module-Legacy15-SP1-Updates for sle-15-s390x","installer_updates":false,"name":"SLE-Module-Legacy15-SP1-Updates","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/15-SP1/s390x/update/","distro_target":"sle-15-s390x","autorefresh":true,"id":3416,"enabled":true},{"id":3417,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/15-SP1/s390x/update_debug/","distro_target":"sle-15-s390x","autorefresh":true,"installer_updates":false,"name":"SLE-Module-Legacy15-SP1-Debuginfo-Updates","description":"SLE-Module-Legacy15-SP1-Debuginfo-Updates for sle-15-s390x"},{"description":"SLE-Module-Legacy15-SP1-Pool for sle-15-s390x","installer_updates":false,"name":"SLE-Module-Legacy15-SP1-Pool","distro_target":"sle-15-s390x","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15-SP1/s390x/product/","enabled":true,"id":3418},{"id":3419,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15-SP1/s390x/product_debug/","distro_target":"sle-15-s390x","autorefresh":false,"installer_updates":false,"name":"SLE-Module-Legacy15-SP1-Debuginfo-Pool","description":"SLE-Module-Legacy15-SP1-Debuginfo-Pool for sle-15-s390x"},{"description":"SLE-Module-Legacy15-SP1-Source-Pool for sle-15-s390x","name":"SLE-Module-Legacy15-SP1-Source-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15-SP1/s390x/product_source/","autorefresh":false,"distro_target":"sle-15-s390x","id":3420,"enabled":false}]},{"extensions":[],"id":1807,"release_stage":"released","identifier":"sle-module-public-cloud","friendly_version":"15 SP1","offline_predecessor_ids":[1219],"name":"Public Cloud Module","release_type":null,"former_identifier":"sle-module-public-cloud","friendly_name":"Public Cloud Module 15 SP1 s390x","migration_extra":false,"recommended":false,"version":"15.1","product_type":"module","cpe":"cpe:/o:suse:sle-module-public-cloud:15:sp1","predecessor_ids":[1646],"product_class":"MODULE","online_predecessor_ids":[1646],"repositories":[{"id":3436,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/15-SP1/s390x/update/","autorefresh":true,"distro_target":"sle-15-s390x","name":"SLE-Module-Public-Cloud15-SP1-Updates","installer_updates":false,"description":"SLE-Module-Public-Cloud15-SP1-Updates for sle-15-s390x"},{"id":3437,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/15-SP1/s390x/update_debug/","distro_target":"sle-15-s390x","autorefresh":true,"installer_updates":false,"name":"SLE-Module-Public-Cloud15-SP1-Debuginfo-Updates","description":"SLE-Module-Public-Cloud15-SP1-Debuginfo-Updates for sle-15-s390x"},{"installer_updates":false,"name":"SLE-Module-Public-Cloud15-SP1-Pool","description":"SLE-Module-Public-Cloud15-SP1-Pool for sle-15-s390x","enabled":true,"id":3438,"distro_target":"sle-15-s390x","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP1/s390x/product/"},{"description":"SLE-Module-Public-Cloud15-SP1-Debuginfo-Pool for sle-15-s390x","name":"SLE-Module-Public-Cloud15-SP1-Debuginfo-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP1/s390x/product_debug/","autorefresh":false,"distro_target":"sle-15-s390x","id":3439,"enabled":false},{"distro_target":"sle-15-s390x","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP1/s390x/product_source/","enabled":false,"id":3440,"description":"SLE-Module-Public-Cloud15-SP1-Source-Pool for sle-15-s390x","installer_updates":false,"name":"SLE-Module-Public-Cloud15-SP1-Source-Pool"}],"eula_url":"","arch":"s390x","free":true,"description":"

The Public Cloud Module is a collection of tools that enables you to create and manage cloud images from the commandline on SUSE Linux Enterprise Server. When building your own images with KIWI or SUSE Studio, initialization code specific to the target cloud is included in that image.

Access to the Public Cloud Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself; please check the Release Notes for further details.

","shortname":"Public-Cloud-Module"}],"release_stage":"released","id":1779,"identifier":"sle-module-server-applications","friendly_version":"15 SP1"},{"offline_predecessor_ids":[1354],"name":"Containers Module","former_identifier":"sle-module-containers","release_type":null,"migration_extra":false,"friendly_name":"Containers Module 15 SP1 s390x","recommended":false,"version":"15.1","extensions":[],"id":1789,"release_stage":"released","identifier":"sle-module-containers","friendly_version":"15 SP1","eula_url":"","arch":"s390x","free":true,"shortname":"Containers-Module","description":"

This Module contains several packages revolving around containers and related tools.

","product_type":"module","cpe":"cpe:/o:suse:sle-module-containers:15:sp1","predecessor_ids":[1641],"product_class":"MODULE","online_predecessor_ids":[1641],"repositories":[{"description":"SLE-Module-Containers15-SP1-Updates for sle-15-s390x","name":"SLE-Module-Containers15-SP1-Updates","installer_updates":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/15-SP1/s390x/update/","autorefresh":true,"distro_target":"sle-15-s390x","id":3346,"enabled":true},{"installer_updates":false,"name":"SLE-Module-Containers15-SP1-Debuginfo-Updates","description":"SLE-Module-Containers15-SP1-Debuginfo-Updates for sle-15-s390x","id":3347,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/15-SP1/s390x/update_debug/","distro_target":"sle-15-s390x","autorefresh":true},{"name":"SLE-Module-Containers15-SP1-Pool","installer_updates":false,"description":"SLE-Module-Containers15-SP1-Pool for sle-15-s390x","enabled":true,"id":3348,"autorefresh":false,"distro_target":"sle-15-s390x","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP1/s390x/product/"},{"description":"SLE-Module-Containers15-SP1-Debuginfo-Pool for sle-15-s390x","name":"SLE-Module-Containers15-SP1-Debuginfo-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-15-s390x","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP1/s390x/product_debug/","enabled":false,"id":3349},{"description":"SLE-Module-Containers15-SP1-Source-Pool for sle-15-s390x","name":"SLE-Module-Containers15-SP1-Source-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-15-s390x","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP1/s390x/product_source/","enabled":false,"id":3350}]},{"recommended":false,"version":"15.1","offline_predecessor_ids":[],"name":"Transactional Server Module","former_identifier":"sle-module-transactional-server","release_type":null,"friendly_name":"Transactional Server Module 15 SP1 s390x","migration_extra":false,"friendly_version":"15 SP1","extensions":[],"release_stage":"released","id":1824,"identifier":"sle-module-transactional-server","free":true,"description":"

Transactional Updates provide SUSE Linux Enterprise systems with a method of updating the operating system and its packages in an entirely ‘atomic’ way. Updates are either applied to the system all together in a single transaction, or not at all. This happens without influencing the running system. If an update fails, or if the successful update is deemed to be incompatible or otherwise incorrect, it can be discarded to immediately return the system to its previous functioning state.

Access to theTransactional Server Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself: Package versions in the this module are usually supported for at most three years. We are planning to release more recent versions on a schedule of approximately 18 month; the exact dates may differ per package.

","shortname":"Transactional-Server-Module","eula_url":"","arch":"s390x","predecessor_ids":[],"online_predecessor_ids":[],"repositories":[{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Transactional-Server/15-SP1/s390x/update/","autorefresh":true,"distro_target":"sle-15-s390x","id":3507,"enabled":true,"description":"SLE-Module-Transactional-Server15-SP1-Updates for sle-15-s390x","name":"SLE-Module-Transactional-Server15-SP1-Updates","installer_updates":false},{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Transactional-Server/15-SP1/s390x/update_debug/","autorefresh":true,"distro_target":"sle-15-s390x","id":3508,"enabled":false,"description":"SLE-Module-Transactional-Server15-SP1-Debuginfo-Updates for sle-15-s390x","name":"SLE-Module-Transactional-Server15-SP1-Debuginfo-Updates","installer_updates":false},{"id":3509,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Transactional-Server/15-SP1/s390x/product/","distro_target":"sle-15-s390x","autorefresh":false,"installer_updates":false,"name":"SLE-Module-Transactional-Server15-SP1-Pool","description":"SLE-Module-Transactional-Server15-SP1-Pool for sle-15-s390x"},{"name":"SLE-Module-Transactional-Server15-SP1-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-Transactional-Server15-SP1-Debuginfo-Pool for sle-15-s390x","enabled":false,"id":3510,"autorefresh":false,"distro_target":"sle-15-s390x","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Transactional-Server/15-SP1/s390x/product_debug/"},{"description":"SLE-Module-Transactional-Server15-SP1-Source-Pool for sle-15-s390x","installer_updates":false,"name":"SLE-Module-Transactional-Server15-SP1-Source-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Transactional-Server/15-SP1/s390x/product_source/","distro_target":"sle-15-s390x","autorefresh":false,"id":3511,"enabled":false}],"product_class":"MODULE","product_type":"module","cpe":"cpe:/o:suse:sle-module-transactional-server:15:sp1"},{"online_predecessor_ids":[],"product_class":"MODULE","repositories":[{"name":"SLE-Module-Python2-15-SP1-Updates","installer_updates":false,"description":"SLE-Module-Python2-15-SP1-Updates for sle-15-s390x","id":3593,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Python2/15-SP1/s390x/update/","autorefresh":true,"distro_target":"sle-15-s390x"},{"description":"SLE-Module-Python2-15-SP1-Debuginfo-Updates for sle-15-s390x","installer_updates":false,"name":"SLE-Module-Python2-15-SP1-Debuginfo-Updates","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Python2/15-SP1/s390x/update_debug/","distro_target":"sle-15-s390x","autorefresh":true,"id":3594,"enabled":false},{"enabled":true,"id":3595,"distro_target":"sle-15-s390x","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Python2/15-SP1/s390x/product/","installer_updates":false,"name":"SLE-Module-Python2-15-SP1-Pool","description":"SLE-Module-Python2-15-SP1-Pool for sle-15-s390x"},{"id":3596,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Python2/15-SP1/s390x/product_debug/","autorefresh":false,"distro_target":"sle-15-s390x","name":"SLE-Module-Python2-15-SP1-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-Python2-15-SP1-Debuginfo-Pool for sle-15-s390x"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Python2/15-SP1/s390x/product_source/","distro_target":"sle-15-s390x","autorefresh":false,"id":3597,"enabled":false,"description":"SLE-Module-Python2-15-SP1-Source-Pool for sle-15-s390x","installer_updates":false,"name":"SLE-Module-Python2-15-SP1-Source-Pool"}],"predecessor_ids":[],"cpe":"cpe:/o:suse:sle-module-python2:15:sp1","product_type":"module","shortname":"Python2-Module","description":"

This module contains the python 2 packages.

Access to the Python 2 Module is included in your SUSE Linux Enterprise subscription. The module has a different lifecycle than SUSE Linux Enterprise itself. Packages in the this module are usually supported for at most three years.

","free":true,"arch":"s390x","eula_url":"","friendly_version":"15 SP1","release_stage":"released","id":1866,"identifier":"sle-module-python2","extensions":[],"version":"15.1","recommended":false,"friendly_name":"Python 2 Module 15 SP1 s390x","migration_extra":false,"release_type":null,"former_identifier":"sle-module-python2","name":"Python 2 Module","offline_predecessor_ids":[]},{"predecessor_ids":[1742],"online_predecessor_ids":[1742],"product_class":"MODULE","repositories":[{"name":"SUSE-PackageHub-15-SP1-Backports-Pool","installer_updates":false,"description":"SUSE-PackageHub-15-SP1-Backports-Pool for sle-15-s390x","enabled":true,"id":3619,"autorefresh":false,"distro_target":"sle-15-s390x","url":"https://updates.suse.com/SUSE/Backports/SLE-15-SP1_s390x/standard/"},{"description":"SUSE-PackageHub-15-SP1-Backports-Debuginfo for sle-15-s390x","name":"SUSE-PackageHub-15-SP1-Backports-Debuginfo","installer_updates":false,"autorefresh":true,"distro_target":"sle-15-s390x","url":"https://updates.suse.com/SUSE/Backports/SLE-15-SP1_s390x/standard_debug/","enabled":false,"id":3620},{"description":"SLE-Module-Packagehub-Subpackages15-SP1-Updates for sle-15-s390x","installer_updates":false,"name":"SLE-Module-Packagehub-Subpackages15-SP1-Updates","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP1/s390x/update/","distro_target":"sle-15-s390x","autorefresh":true,"id":3621,"enabled":true},{"description":"SLE-Module-Packagehub-Subpackages15-SP1-Debuginfo-Updates for sle-15-s390x","installer_updates":false,"name":"SLE-Module-Packagehub-Subpackages15-SP1-Debuginfo-Updates","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP1/s390x/update_debug/","distro_target":"sle-15-s390x","autorefresh":true,"id":3622,"enabled":false},{"url":"https://updates.suse.com/SUSE/Backports/SLE-15-SP1_s390x/product/","autorefresh":false,"distro_target":"sle-15-s390x","id":3623,"enabled":true,"description":"SUSE-PackageHub-15-SP1-Pool for sle-15-s390x","name":"SUSE-PackageHub-15-SP1-Pool","installer_updates":false},{"name":"SLE-Module-Packagehub-Subpackages15-SP1-Pool","installer_updates":false,"description":"SLE-Module-Packagehub-Subpackages15-SP1-Pool for sle-15-s390x","id":3624,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP1/s390x/product/","autorefresh":false,"distro_target":"sle-15-s390x"},{"enabled":false,"id":3625,"distro_target":"sle-15-s390x","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP1/s390x/product_debug/","installer_updates":false,"name":"SLE-Module-Packagehub-Subpackages15-SP1-Debuginfo-Pool","description":"SLE-Module-Packagehub-Subpackages15-SP1-Debuginfo-Pool for sle-15-s390x"},{"id":3626,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP1/s390x/product_source/","distro_target":"sle-15-s390x","autorefresh":false,"installer_updates":false,"name":"SLE-Module-Packagehub-Subpackages15-SP1-Source-Pool","description":"SLE-Module-Packagehub-Subpackages15-SP1-Source-Pool for sle-15-s390x"}],"cpe":"cpe:/o:suse:packagehub:15:sp1","product_type":"extension","description":"SUSE Package Hub is a free of charge extension providing access to community maintained packages built to run on SUSE Linux Enterprise Server. Built from the same sources used in the openSUSE distributions, these quality packages provide additional software to what is found in the SUSE Linux Enterprise Server product. Packages from the Package Hub are delivered without L3 support from SUSE. General updates and fixes to the packages in SUSE Package Hub are provided by the openSUSE community based on their discretion, though SUSE will monitor and ensure that any known critical security issues will be addressed. Packages in the Package Hub are approved by SUSE for use with SUSE Linux Enterprise Server 15-SP1 and to not interfere with the supportability of SUSE Linux Enterprise Server, its modules and extensions. For more information about SUSE Package Hub please visit https://packagehub.suse.com.","shortname":"SUSE-PackageHub-15","free":true,"eula_url":"","arch":"s390x","friendly_version":"15 SP1","extensions":[],"release_stage":"released","identifier":"PackageHub","id":1870,"recommended":false,"version":"15.1","name":"SUSE Package Hub","offline_predecessor_ids":[1530,1812,1914],"friendly_name":"SUSE Package Hub 15 SP1 s390x","migration_extra":false,"former_identifier":"PackageHub","release_type":null}]},{"offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Server LTSS","release_type":null,"former_identifier":"SLES-LTSS","friendly_name":"SUSE Linux Enterprise Server LTSS 15 SP1 s390x","migration_extra":false,"recommended":false,"version":"15.1","extensions":[],"release_stage":"released","id":2218,"identifier":"SLES-LTSS","friendly_version":"15 SP1","eula_url":"","arch":"s390x","free":false,"shortname":"SLES15-SP1-LTSS","description":"SUSE Linux Enterprise offers a comprehensive suite of products built on a single code base. The platform addresses business needs from the smallest thin-client devices to the world's most powerful high-performance computing and mainframe servers. SUSE Linux Enterprise offers common management tools and technology certifications across the platform, and each product is enterprise-class.","product_type":"extension","cpe":"cpe:/o:suse:sles-ltss:15:sp1","predecessor_ids":[],"online_predecessor_ids":[],"product_class":"SLES15-SP1-LTSS-Z","repositories":[{"autorefresh":true,"distro_target":"sle-15-s390x","url":"https://updates.suse.com/SUSE/Updates/SLE-Product-SLES/15-SP1-LTSS/s390x/update/","enabled":true,"id":4975,"description":"SLE-Product-SLES15-SP1-LTSS-Updates for sle-15-s390x","name":"SLE-Product-SLES15-SP1-LTSS-Updates","installer_updates":false},{"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-SLES/15-SP1-LTSS/s390x/update_debug/","autorefresh":true,"distro_target":"sle-15-s390x","id":4976,"enabled":false,"description":"SLE-Product-SLES15-SP1-Debuginfo-LTSS-Updates for sle-15-s390x","name":"SLE-Product-SLES15-SP1-Debuginfo-LTSS-Updates","installer_updates":false}]}],"release_stage":"released","identifier":"SLES","id":1762},{"product_type":"base","cpe":"cpe:/o:suse:sles:15:sp1","product_class":"7261","online_predecessor_ids":[1575,1929],"repositories":[{"distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-SLES/15-SP1/x86_64/update/","enabled":true,"id":3215,"description":"SLE-Product-SLES15-SP1-Updates for sle-15-x86_64","installer_updates":false,"name":"SLE-Product-SLES15-SP1-Updates"},{"name":"SLE-Product-SLES15-SP1-Debuginfo-Updates","installer_updates":false,"description":"SLE-Product-SLES15-SP1-Debuginfo-Updates for sle-15-x86_64","enabled":false,"id":3216,"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Product-SLES/15-SP1/x86_64/update_debug/"},{"name":"SLE15-SP1-Installer-Updates","installer_updates":true,"description":"SLE15-SP1-Installer-Updates for sle-15-x86_64","id":3217,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-INSTALLER/15-SP1/x86_64/update/","autorefresh":true,"distro_target":"sle-15-x86_64"},{"description":"SLE-Product-SLES15-SP1-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Product-SLES15-SP1-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Product-SLES/15-SP1/x86_64/product/","distro_target":"sle-15-x86_64","autorefresh":false,"id":3218,"enabled":true},{"description":"SLE-Product-SLES15-SP1-Debuginfo-Pool for sle-15-x86_64","name":"SLE-Product-SLES15-SP1-Debuginfo-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Product-SLES/15-SP1/x86_64/product_debug/","enabled":false,"id":3219},{"description":"SLE-Product-SLES15-SP1-Source-Pool for sle-15-x86_64","name":"SLE-Product-SLES15-SP1-Source-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-SLES/15-SP1/x86_64/product_source/","autorefresh":false,"distro_target":"sle-15-x86_64","id":3220,"enabled":false}],"predecessor_ids":[1575,1929],"arch":"x86_64","eula_url":"https://updates.suse.com/SUSE/Products/SLE-Product-SLES/15-SP1/x86_64/product.license/","free":false,"description":"SUSE Linux Enterprise offers a comprehensive suite of products built on a single code base. The platform addresses business needs from the smallest thin-client devices to the world's most powerful high-performance computing and mainframe servers. SUSE Linux Enterprise offers common management tools and technology certifications across the platform, and each product is enterprise-class.","shortname":"SLES15-SP1","release_stage":"released","identifier":"SLES","id":1763,"extensions":[{"arch":"x86_64","eula_url":"","description":"

The SUSE Linux Enterprise Basesystem Module delivers the base system of the product.

","shortname":"Basesystem-Module","free":true,"cpe":"cpe:/o:suse:sle-module-basesystem:15:sp1","product_type":"module","repositories":[{"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15-SP1/x86_64/update/","enabled":true,"id":3261,"description":"SLE-Module-Basesystem15-SP1-Updates for sle-15-x86_64","name":"SLE-Module-Basesystem15-SP1-Updates","installer_updates":false},{"enabled":false,"id":3262,"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15-SP1/x86_64/update_debug/","name":"SLE-Module-Basesystem15-SP1-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-Basesystem15-SP1-Debuginfo-Updates for sle-15-x86_64"},{"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP1/x86_64/product/","enabled":true,"id":3263,"description":"SLE-Module-Basesystem15-SP1-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Basesystem15-SP1-Pool"},{"id":3264,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP1/x86_64/product_debug/","autorefresh":false,"distro_target":"sle-15-x86_64","name":"SLE-Module-Basesystem15-SP1-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-Basesystem15-SP1-Debuginfo-Pool for sle-15-x86_64"},{"description":"SLE-Module-Basesystem15-SP1-Source-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Basesystem15-SP1-Source-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP1/x86_64/product_source/","distro_target":"sle-15-x86_64","autorefresh":false,"id":3265,"enabled":false}],"online_predecessor_ids":[1576],"product_class":"MODULE","predecessor_ids":[1576],"friendly_name":"Basesystem Module 15 SP1 x86_64","migration_extra":false,"release_type":null,"former_identifier":"sle-module-basesystem","name":"Basesystem Module","offline_predecessor_ids":[1212,1368,1440,1618],"version":"15.1","recommended":true,"identifier":"sle-module-basesystem","release_stage":"released","id":1772,"extensions":[{"version":"15.1","recommended":false,"friendly_name":"Desktop Applications Module 15 SP1 x86_64","migration_extra":true,"release_type":null,"former_identifier":"sle-module-desktop-applications","name":"Desktop Applications Module","offline_predecessor_ids":[],"friendly_version":"15 SP1","release_stage":"released","identifier":"sle-module-desktop-applications","id":1776,"extensions":[{"eula_url":"https://updates.suse.com/SUSE/Products/SLE-Product-WE/15-SP1/x86_64/product.license/","arch":"x86_64","description":"SUSE Linux Enterprise Workstation Extension adds additional functionality to a base SUSE Linux Enterprise installation. The Workstation Extension offers additional desktop applications (office suite, email client, graphical editor, multimedia tools) and libraries. Workstation Extension is enabled and installed by default on SUSE Linux Enterprise Desktop installation. Adding the Workstation Extension to a SUSE Linux Enterprise Server installation allows to seamlessly combine both products to create a full featured server workstation.","shortname":"SLEWE15-SP1","free":false,"cpe":"cpe:/o:suse:sle-we:15:sp1","product_type":"extension","predecessor_ids":[1583],"product_class":"SLE-WE","online_predecessor_ids":[1583],"repositories":[{"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Product-WE/15-SP1/x86_64/update/","enabled":true,"id":3306,"description":"SLE-Product-WE15-SP1-Updates for sle-15-x86_64","name":"SLE-Product-WE15-SP1-Updates","installer_updates":false},{"name":"SLE-Product-WE15-SP1-Debuginfo-Updates","installer_updates":false,"description":"SLE-Product-WE15-SP1-Debuginfo-Updates for sle-15-x86_64","id":3307,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-WE/15-SP1/x86_64/update_debug/","autorefresh":true,"distro_target":"sle-15-x86_64"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Product-WE/15-SP1/x86_64/product/","autorefresh":false,"distro_target":"sle-15-x86_64","id":3308,"enabled":true,"description":"SLE-Product-WE15-SP1-Pool for sle-15-x86_64","name":"SLE-Product-WE15-SP1-Pool","installer_updates":false},{"id":3309,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-WE/15-SP1/x86_64/product_debug/","distro_target":"sle-15-x86_64","autorefresh":false,"installer_updates":false,"name":"SLE-Product-WE15-SP1-Debuginfo-Pool","description":"SLE-Product-WE15-SP1-Debuginfo-Pool for sle-15-x86_64"},{"description":"SLE-Product-WE15-SP1-Source-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Product-WE15-SP1-Source-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Product-WE/15-SP1/x86_64/product_source/","distro_target":"sle-15-x86_64","autorefresh":false,"id":3310,"enabled":false},{"id":3792,"enabled":true,"url":"https://download.nvidia.com/suse/sle15sp1/","distro_target":null,"autorefresh":true,"installer_updates":false,"name":"SLE-15-SP1-Desktop-NVIDIA-Driver","description":"SLE-15-SP1-Desktop-NVIDIA-Driver"}],"name":"SUSE Linux Enterprise Workstation Extension","offline_predecessor_ids":[1431,1639,1893],"friendly_name":"SUSE Linux Enterprise Workstation Extension 15 SP1 x86_64","migration_extra":false,"release_type":null,"former_identifier":"sle-we","recommended":false,"version":"15.1","extensions":[],"release_stage":"released","identifier":"sle-we","id":1781,"friendly_version":"15 SP1"},{"offline_predecessor_ids":[1223,1323,1341,1366,1427,1630,1892],"name":"Development Tools Module","release_type":null,"former_identifier":"sle-sdk","friendly_name":"Development Tools Module 15 SP1 x86_64","migration_extra":true,"recommended":false,"version":"15.1","extensions":[],"release_stage":"released","id":1794,"identifier":"sle-module-development-tools","friendly_version":"15 SP1","eula_url":"","arch":"x86_64","free":true,"description":"

The Development Tools Module helps you developing applications for SUSE Linux Enterprise 15.

Access to the Development Tools Module is included in your SUSE Linux Enterprise product subscription. The module has a different lifecycle than SUSE Linux Enterprise itself.

","shortname":"Development-Tools-Module","product_type":"module","cpe":"cpe:/o:suse:sle-module-development-tools:15:sp1","predecessor_ids":[1579],"product_class":"MODULE","online_predecessor_ids":[1579],"repositories":[{"enabled":true,"id":3371,"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15-SP1/x86_64/update/","name":"SLE-Module-DevTools15-SP1-Updates","installer_updates":false,"description":"SLE-Module-DevTools15-SP1-Updates for sle-15-x86_64"},{"installer_updates":false,"name":"SLE-Module-DevTools15-SP1-Debuginfo-Updates","description":"SLE-Module-DevTools15-SP1-Debuginfo-Updates for sle-15-x86_64","id":3372,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15-SP1/x86_64/update_debug/","distro_target":"sle-15-x86_64","autorefresh":true},{"description":"SLE-Module-DevTools15-SP1-Pool for sle-15-x86_64","name":"SLE-Module-DevTools15-SP1-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP1/x86_64/product/","enabled":true,"id":3373},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP1/x86_64/product_debug/","autorefresh":false,"distro_target":"sle-15-x86_64","id":3374,"enabled":false,"description":"SLE-Module-DevTools15-SP1-Debuginfo-Pool for sle-15-x86_64","name":"SLE-Module-DevTools15-SP1-Debuginfo-Pool","installer_updates":false},{"description":"SLE-Module-DevTools15-SP1-Source-Pool for sle-15-x86_64","name":"SLE-Module-DevTools15-SP1-Source-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP1/x86_64/product_source/","enabled":false,"id":3375}]}],"description":"

The SUSE Linux Enterprise Desktop Applications Module delivers a basic set of Desktop functionality.

Access to the Desktop Applications Module is included in your SUSE Linux Enterprise product subscription.

","shortname":"Desktop-Applications-Module","free":true,"arch":"x86_64","eula_url":"","product_class":"MODULE","online_predecessor_ids":[1578],"repositories":[{"id":3281,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15-SP1/x86_64/update/","distro_target":"sle-15-x86_64","autorefresh":true,"installer_updates":false,"name":"SLE-Module-Desktop-Applications15-SP1-Updates","description":"SLE-Module-Desktop-Applications15-SP1-Updates for sle-15-x86_64"},{"enabled":false,"id":3282,"distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15-SP1/x86_64/update_debug/","installer_updates":false,"name":"SLE-Module-Desktop-Applications15-SP1-Debuginfo-Updates","description":"SLE-Module-Desktop-Applications15-SP1-Debuginfo-Updates for sle-15-x86_64"},{"id":3283,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP1/x86_64/product/","autorefresh":false,"distro_target":"sle-15-x86_64","name":"SLE-Module-Desktop-Applications15-SP1-Pool","installer_updates":false,"description":"SLE-Module-Desktop-Applications15-SP1-Pool for sle-15-x86_64"},{"name":"SLE-Module-Desktop-Applications15-SP1-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-Desktop-Applications15-SP1-Debuginfo-Pool for sle-15-x86_64","id":3284,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP1/x86_64/product_debug/","autorefresh":false,"distro_target":"sle-15-x86_64"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP1/x86_64/product_source/","distro_target":"sle-15-x86_64","autorefresh":false,"id":3285,"enabled":false,"description":"SLE-Module-Desktop-Applications15-SP1-Source-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Desktop-Applications15-SP1-Source-Pool"}],"predecessor_ids":[1578],"cpe":"cpe:/o:suse:sle-module-desktop-applications:15:sp1","product_type":"module"},{"shortname":"Server-Applications-Module","description":"

The SUSE Linux Enterprise Server Applications Module delivers a basic set of Server functionality.

Access to the Server Applications Module is included in your SUSE Linux Enterprise Server subscription.

","free":true,"eula_url":"","arch":"x86_64","predecessor_ids":[1580],"product_class":"MODULE","online_predecessor_ids":[1580],"repositories":[{"description":"SLE-Module-Server-Applications15-SP1-Updates for sle-15-x86_64","name":"SLE-Module-Server-Applications15-SP1-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15-SP1/x86_64/update/","enabled":true,"id":3301},{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15-SP1/x86_64/update_debug/","autorefresh":true,"distro_target":"sle-15-x86_64","id":3302,"enabled":false,"description":"SLE-Module-Server-Applications15-SP1-Debuginfo-Updates for sle-15-x86_64","name":"SLE-Module-Server-Applications15-SP1-Debuginfo-Updates","installer_updates":false},{"id":3303,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP1/x86_64/product/","autorefresh":false,"distro_target":"sle-15-x86_64","name":"SLE-Module-Server-Applications15-SP1-Pool","installer_updates":false,"description":"SLE-Module-Server-Applications15-SP1-Pool for sle-15-x86_64"},{"description":"SLE-Module-Server-Applications15-SP1-Debuginfo-Pool for sle-15-x86_64","name":"SLE-Module-Server-Applications15-SP1-Debuginfo-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP1/x86_64/product_debug/","autorefresh":false,"distro_target":"sle-15-x86_64","id":3304,"enabled":false},{"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP1/x86_64/product_source/","enabled":false,"id":3305,"description":"SLE-Module-Server-Applications15-SP1-Source-Pool for sle-15-x86_64","name":"SLE-Module-Server-Applications15-SP1-Source-Pool","installer_updates":false}],"cpe":"cpe:/o:suse:sle-module-server-applications:15:sp1","product_type":"module","recommended":true,"version":"15.1","name":"Server Applications Module","offline_predecessor_ids":[],"friendly_name":"Server Applications Module 15 SP1 x86_64","migration_extra":false,"former_identifier":"sle-module-server-applications","release_type":null,"friendly_version":"15 SP1","extensions":[{"version":"6","recommended":false,"friendly_name":"SUSE Enterprise Storage 6 x86_64","migration_extra":false,"release_type":null,"former_identifier":"ses","name":"SUSE Enterprise Storage","offline_predecessor_ids":[1342,1369,1416,1526],"friendly_version":"6","identifier":"ses","release_stage":"released","id":1644,"extensions":[],"description":"SUSE Enterprise Storage 6 for SUSE Linux Enterprise Server 15 SP1, powered by Ceph.","shortname":"SES6","free":false,"arch":"x86_64","eula_url":"https://updates.suse.com/SUSE/Products/Storage/6/x86_64/product.license/","product_class":"SES","online_predecessor_ids":[],"repositories":[{"url":"https://updates.suse.com/SUSE/Updates/Storage/6/x86_64/update/","distro_target":"sle-15-x86_64","autorefresh":true,"id":2874,"enabled":true,"description":"SUSE-Enterprise-Storage-6-Updates for sle-15-x86_64","installer_updates":false,"name":"SUSE-Enterprise-Storage-6-Updates"},{"url":"https://updates.suse.com/SUSE/Updates/Storage/6/x86_64/update_debug/","distro_target":"sle-15-x86_64","autorefresh":true,"id":2875,"enabled":false,"description":"SUSE-Enterprise-Storage-6-Debuginfo-Updates for sle-15-x86_64","installer_updates":false,"name":"SUSE-Enterprise-Storage-6-Debuginfo-Updates"},{"name":"SUSE-Enterprise-Storage-6-Pool","installer_updates":false,"description":"SUSE-Enterprise-Storage-6-Pool for sle-15-x86_64","id":2876,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/Storage/6/x86_64/product/","autorefresh":false,"distro_target":"sle-15-x86_64"},{"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/Storage/6/x86_64/product_debug/","enabled":false,"id":2877,"description":"SUSE-Enterprise-Storage-6-Debuginfo-Pool for sle-15-x86_64","name":"SUSE-Enterprise-Storage-6-Debuginfo-Pool","installer_updates":false},{"description":"SUSE-Enterprise-Storage-6-Source-Pool for sle-15-x86_64","installer_updates":false,"name":"SUSE-Enterprise-Storage-6-Source-Pool","distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/Storage/6/x86_64/product_source/","enabled":false,"id":2878}],"predecessor_ids":[],"cpe":"cpe:/o:suse:ses:6","product_type":"extension"},{"free":false,"description":"SUSE Linux High Availability Extension provides mature, industry-leading open-source high-availability clustering technologies that are easy to set up and use. It can be deployed in physical and/or virtual environments, and can cluster physical servers, virtual servers, or any combination of the two to suit your business’ needs.","shortname":"SLEHA15-SP1","arch":"x86_64","eula_url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP1/x86_64/product.license/","product_class":"SLE-HAE-X86","online_predecessor_ids":[1582],"repositories":[{"description":"SLE-Product-HA15-SP1-Updates for sle-15-x86_64","name":"SLE-Product-HA15-SP1-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Product-HA/15-SP1/x86_64/update/","enabled":true,"id":3326},{"installer_updates":false,"name":"SLE-Product-HA15-SP1-Debuginfo-Updates","description":"SLE-Product-HA15-SP1-Debuginfo-Updates for sle-15-x86_64","id":3327,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-HA/15-SP1/x86_64/update_debug/","distro_target":"sle-15-x86_64","autorefresh":true},{"url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP1/x86_64/product/","autorefresh":false,"distro_target":"sle-15-x86_64","id":3328,"enabled":true,"description":"SLE-Product-HA15-SP1-Pool for sle-15-x86_64","name":"SLE-Product-HA15-SP1-Pool","installer_updates":false},{"installer_updates":false,"name":"SLE-Product-HA15-SP1-Debuginfo-Pool","description":"SLE-Product-HA15-SP1-Debuginfo-Pool for sle-15-x86_64","id":3329,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP1/x86_64/product_debug/","distro_target":"sle-15-x86_64","autorefresh":false},{"enabled":false,"id":3330,"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP1/x86_64/product_source/","installer_updates":false,"name":"SLE-Product-HA15-SP1-Source-Pool","description":"SLE-Product-HA15-SP1-Source-Pool for sle-15-x86_64"}],"predecessor_ids":[1582],"product_type":"extension","cpe":"cpe:/o:suse:sle-ha:15:sp1","version":"15.1","recommended":false,"former_identifier":"sle-ha","release_type":null,"friendly_name":"SUSE Linux Enterprise High Availability Extension 15 SP1 x86_64","migration_extra":false,"offline_predecessor_ids":[958,961,967,971,1101,1107,1256,1286,1432,1435,1634,1637,1884,1886],"name":"SUSE Linux Enterprise High Availability Extension","friendly_version":"15 SP1","id":1785,"release_stage":"released","identifier":"sle-ha","extensions":[]},{"friendly_version":"15 SP1","id":1798,"release_stage":"released","identifier":"sle-module-web-scripting","extensions":[],"version":"15.1","recommended":false,"friendly_name":"Web and Scripting Module 15 SP1 x86_64","migration_extra":true,"former_identifier":"sle-module-web-scripting","release_type":null,"name":"Web and Scripting Module","offline_predecessor_ids":[1153],"online_predecessor_ids":[1721],"repositories":[{"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/15-SP1/x86_64/update/","enabled":true,"id":3391,"description":"SLE-Module-Web-Scripting15-SP1-Updates for sle-15-x86_64","name":"SLE-Module-Web-Scripting15-SP1-Updates","installer_updates":false},{"description":"SLE-Module-Web-Scripting15-SP1-Debuginfo-Updates for sle-15-x86_64","name":"SLE-Module-Web-Scripting15-SP1-Debuginfo-Updates","installer_updates":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/15-SP1/x86_64/update_debug/","autorefresh":true,"distro_target":"sle-15-x86_64","id":3392,"enabled":false},{"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP1/x86_64/product/","enabled":true,"id":3393,"description":"SLE-Module-Web-Scripting15-SP1-Pool for sle-15-x86_64","name":"SLE-Module-Web-Scripting15-SP1-Pool","installer_updates":false},{"name":"SLE-Module-Web-Scripting15-SP1-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-Web-Scripting15-SP1-Debuginfo-Pool for sle-15-x86_64","id":3394,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP1/x86_64/product_debug/","autorefresh":false,"distro_target":"sle-15-x86_64"},{"enabled":false,"id":3395,"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP1/x86_64/product_source/","installer_updates":false,"name":"SLE-Module-Web-Scripting15-SP1-Source-Pool","description":"SLE-Module-Web-Scripting15-SP1-Source-Pool for sle-15-x86_64"}],"product_class":"MODULE","predecessor_ids":[1721],"cpe":"cpe:/o:suse:sle-module-web-scripting:15:sp1","product_type":"module","shortname":"Web-Scripting-Module","description":"

The SUSE Linux Enterprise Web and Scripting Module should contains additional packages that are helpful when running a webserver.

Access to the Web and Scripting Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself: Package versions in this module are usually supported for at most three years. We are planning to release more recent versions on a schedule of approximately 18 month; the exact dates may differ per package.

","free":true,"arch":"x86_64","eula_url":""},{"release_stage":"released","id":1804,"identifier":"sle-module-legacy","extensions":[],"friendly_version":"15 SP1","release_type":null,"former_identifier":"sle-module-legacy","friendly_name":"Legacy Module 15 SP1 x86_64","migration_extra":true,"offline_predecessor_ids":[1150],"name":"Legacy Module","version":"15.1","recommended":false,"product_type":"module","cpe":"cpe:/o:suse:sle-module-legacy:15:sp1","product_class":"MODULE","online_predecessor_ids":[1581],"repositories":[{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/15-SP1/x86_64/update/","distro_target":"sle-15-x86_64","autorefresh":true,"id":3421,"enabled":true,"description":"SLE-Module-Legacy15-SP1-Updates for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Legacy15-SP1-Updates"},{"installer_updates":false,"name":"SLE-Module-Legacy15-SP1-Debuginfo-Updates","description":"SLE-Module-Legacy15-SP1-Debuginfo-Updates for sle-15-x86_64","enabled":false,"id":3422,"distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/15-SP1/x86_64/update_debug/"},{"name":"SLE-Module-Legacy15-SP1-Pool","installer_updates":false,"description":"SLE-Module-Legacy15-SP1-Pool for sle-15-x86_64","enabled":true,"id":3423,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15-SP1/x86_64/product/"},{"installer_updates":false,"name":"SLE-Module-Legacy15-SP1-Debuginfo-Pool","description":"SLE-Module-Legacy15-SP1-Debuginfo-Pool for sle-15-x86_64","enabled":false,"id":3424,"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15-SP1/x86_64/product_debug/"},{"name":"SLE-Module-Legacy15-SP1-Source-Pool","installer_updates":false,"description":"SLE-Module-Legacy15-SP1-Source-Pool for sle-15-x86_64","id":3425,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15-SP1/x86_64/product_source/","autorefresh":false,"distro_target":"sle-15-x86_64"}],"predecessor_ids":[1581],"arch":"x86_64","eula_url":"","free":true,"shortname":"Legacy-Module","description":"

The Legacy Module helps you migrating applications from SUSE Linux Enterprise 12 and other systems to SUSE Linux Enterprise 15, by providing packages which are discontinued on SUSE Linux Enterprise Server, such as: ntp, IBM Java 8, and a number of libraries.

Access to the Legacy Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself. Packages in the this module are usually supported for at most three years.

"},{"recommended":false,"version":"15.1","offline_predecessor_ids":[1220],"name":"Public Cloud Module","former_identifier":"sle-module-public-cloud","release_type":null,"migration_extra":false,"friendly_name":"Public Cloud Module 15 SP1 x86_64","friendly_version":"15 SP1","extensions":[],"identifier":"sle-module-public-cloud","release_stage":"released","id":1808,"free":true,"description":"

The Public Cloud Module is a collection of tools that enables you to create and manage cloud images from the commandline on SUSE Linux Enterprise Server. When building your own images with KIWI or SUSE Studio, initialization code specific to the target cloud is included in that image.

Access to the Public Cloud Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself; please check the Release Notes for further details.

","shortname":"Public-Cloud-Module","eula_url":"","arch":"x86_64","predecessor_ids":[1611],"online_predecessor_ids":[1611],"product_class":"MODULE","repositories":[{"installer_updates":false,"name":"SLE-Module-Public-Cloud15-SP1-Updates","description":"SLE-Module-Public-Cloud15-SP1-Updates for sle-15-x86_64","enabled":true,"id":3441,"distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/15-SP1/x86_64/update/"},{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/15-SP1/x86_64/update_debug/","distro_target":"sle-15-x86_64","autorefresh":true,"id":3442,"enabled":false,"description":"SLE-Module-Public-Cloud15-SP1-Debuginfo-Updates for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Public-Cloud15-SP1-Debuginfo-Updates"},{"enabled":true,"id":3443,"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP1/x86_64/product/","installer_updates":false,"name":"SLE-Module-Public-Cloud15-SP1-Pool","description":"SLE-Module-Public-Cloud15-SP1-Pool for sle-15-x86_64"},{"enabled":false,"id":3444,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP1/x86_64/product_debug/","name":"SLE-Module-Public-Cloud15-SP1-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-Public-Cloud15-SP1-Debuginfo-Pool for sle-15-x86_64"},{"name":"SLE-Module-Public-Cloud15-SP1-Source-Pool","installer_updates":false,"description":"SLE-Module-Public-Cloud15-SP1-Source-Pool for sle-15-x86_64","id":3445,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP1/x86_64/product_source/","autorefresh":false,"distro_target":"sle-15-x86_64"}],"product_type":"module","cpe":"cpe:/o:suse:sle-module-public-cloud:15:sp1"}],"release_stage":"released","identifier":"sle-module-server-applications","id":1780},{"id":1790,"release_stage":"released","identifier":"sle-module-containers","extensions":[{"eula_url":"https://updates.suse.com/SUSE/Products/SUSE-CAASP/4.0/x86_64/product.license/","arch":"x86_64","free":false,"shortname":"SUSE CaaS Platform 4.0","description":"SUSE CaaS Platform is a Kubernetes-based container management solution used by application development and DevOps teams to more easily and efficiently deploy and manage containerized applications and services. Enterprises use SUSE CaaS Platform to reduce application delivery cycle times and improve business agility. Focused on providing an exceptional platform operator experience, SUSE CaaS Platform delivers Kubernetes innovations in a complete, enterprise grade solution that enables IT to deliver the power of Kubernetes to users more quickly, consistently, and cost-effectively.","product_type":"extension","cpe":"cpe:/o:suse:caasp:4.0","predecessor_ids":[],"online_predecessor_ids":[],"repositories":[{"installer_updates":false,"name":"SUSE-CAASP-4.0-Updates","description":"SUSE-CAASP-4.0-Updates for sle-15-x86_64","id":3578,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SUSE-CAASP/4.0/x86_64/update/","distro_target":"sle-15-x86_64","autorefresh":true},{"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SUSE-CAASP/4.0/x86_64/update_debug/","enabled":false,"id":3579,"description":"SUSE-CAASP-4.0-Debuginfo-Updates for sle-15-x86_64","name":"SUSE-CAASP-4.0-Debuginfo-Updates","installer_updates":false},{"description":"SUSE-CAASP-4.0-Pool for sle-15-x86_64","installer_updates":false,"name":"SUSE-CAASP-4.0-Pool","url":"https://updates.suse.com/SUSE/Products/SUSE-CAASP/4.0/x86_64/product/","distro_target":"sle-15-x86_64","autorefresh":false,"id":3580,"enabled":true},{"installer_updates":false,"name":"SUSE-CAASP-4.0-Debuginfo-Pool","description":"SUSE-CAASP-4.0-Debuginfo-Pool for sle-15-x86_64","enabled":false,"id":3581,"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SUSE-CAASP/4.0/x86_64/product_debug/"},{"id":3582,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SUSE-CAASP/4.0/x86_64/product_source/","distro_target":"sle-15-x86_64","autorefresh":false,"installer_updates":false,"name":"SUSE-CAASP-4.0-Source-Pool","description":"SUSE-CAASP-4.0-Source-Pool for sle-15-x86_64"}],"product_class":"CAASP_X86","offline_predecessor_ids":[],"name":"SUSE CaaS Platform","former_identifier":"caasp","release_type":null,"friendly_name":"SUSE CaaS Platform 4.0 x86_64","migration_extra":false,"recommended":false,"version":"4.0","extensions":[],"release_stage":"released","identifier":"caasp","id":1863,"friendly_version":"4.0"}],"friendly_version":"15 SP1","release_type":null,"former_identifier":"sle-module-containers","friendly_name":"Containers Module 15 SP1 x86_64","migration_extra":false,"offline_predecessor_ids":[1332],"name":"Containers Module","version":"15.1","recommended":false,"product_type":"module","cpe":"cpe:/o:suse:sle-module-containers:15:sp1","product_class":"MODULE","online_predecessor_ids":[1642],"repositories":[{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/15-SP1/x86_64/update/","distro_target":"sle-15-x86_64","autorefresh":true,"id":3351,"enabled":true,"description":"SLE-Module-Containers15-SP1-Updates for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Containers15-SP1-Updates"},{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/15-SP1/x86_64/update_debug/","distro_target":"sle-15-x86_64","autorefresh":true,"id":3352,"enabled":false,"description":"SLE-Module-Containers15-SP1-Debuginfo-Updates for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Containers15-SP1-Debuginfo-Updates"},{"description":"SLE-Module-Containers15-SP1-Pool for sle-15-x86_64","name":"SLE-Module-Containers15-SP1-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP1/x86_64/product/","enabled":true,"id":3353},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP1/x86_64/product_debug/","autorefresh":false,"distro_target":"sle-15-x86_64","id":3354,"enabled":false,"description":"SLE-Module-Containers15-SP1-Debuginfo-Pool for sle-15-x86_64","name":"SLE-Module-Containers15-SP1-Debuginfo-Pool","installer_updates":false},{"enabled":false,"id":3355,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP1/x86_64/product_source/","name":"SLE-Module-Containers15-SP1-Source-Pool","installer_updates":false,"description":"SLE-Module-Containers15-SP1-Source-Pool for sle-15-x86_64"}],"predecessor_ids":[1642],"arch":"x86_64","eula_url":"","free":true,"shortname":"Containers-Module","description":"

This Module contains several packages revolving around containers and related tools.

"},{"shortname":"SUSE-CAP-Tools-Module","description":"

The SUSE Cloud Application Platform Tools Module is a collection of tools that enables you to interact with the SUSE Cloud Application Platform product itself, providing the commandline client for instance.

Access to the SUSE Cloud Application Platform Tools Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself; please check the Release Notes for further details.

","free":true,"arch":"x86_64","eula_url":"","repositories":[{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-CAP-Tools/15-SP1/x86_64/update/","distro_target":"sle-15-x86_64","autorefresh":true,"id":3446,"enabled":true,"description":"SLE-Module-CAP-Tools15-SP1-Updates for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-CAP-Tools15-SP1-Updates"},{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-CAP-Tools/15-SP1/x86_64/update_debug/","distro_target":"sle-15-x86_64","autorefresh":true,"id":3447,"enabled":false,"description":"SLE-Module-CAP-Tools15-SP1-Debuginfo-Updates for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-CAP-Tools15-SP1-Debuginfo-Updates"},{"name":"SLE-Module-CAP-Tools15-SP1-Pool","installer_updates":false,"description":"SLE-Module-CAP-Tools15-SP1-Pool for sle-15-x86_64","enabled":true,"id":3448,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-CAP-Tools/15-SP1/x86_64/product/"},{"enabled":false,"id":3449,"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-CAP-Tools/15-SP1/x86_64/product_debug/","installer_updates":false,"name":"SLE-Module-CAP-Tools15-SP1-Debuginfo-Pool","description":"SLE-Module-CAP-Tools15-SP1-Debuginfo-Pool for sle-15-x86_64"},{"description":"SLE-Module-CAP-Tools15-SP1-Source-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-CAP-Tools15-SP1-Source-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-CAP-Tools/15-SP1/x86_64/product_source/","distro_target":"sle-15-x86_64","autorefresh":false,"id":3450,"enabled":false}],"online_predecessor_ids":[1728],"product_class":"MODULE","predecessor_ids":[1728],"cpe":"cpe:/o:suse:sle-module-cap-tools:15:sp1","product_type":"module","version":"15.1","recommended":false,"migration_extra":false,"friendly_name":"SUSE Cloud Application Platform Tools Module 15 SP1 x86_64","release_type":null,"former_identifier":"sle-module-cap-tools","name":"SUSE Cloud Application Platform Tools Module","offline_predecessor_ids":[1678],"friendly_version":"15 SP1","id":1809,"release_stage":"released","identifier":"sle-module-cap-tools","extensions":[]},{"description":"

Transactional Updates provide SUSE Linux Enterprise systems with a method of updating the operating system and its packages in an entirely ‘atomic’ way. Updates are either applied to the system all together in a single transaction, or not at all. This happens without influencing the running system. If an update fails, or if the successful update is deemed to be incompatible or otherwise incorrect, it can be discarded to immediately return the system to its previous functioning state.

Access to theTransactional Server Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself: Package versions in the this module are usually supported for at most three years. We are planning to release more recent versions on a schedule of approximately 18 month; the exact dates may differ per package.

","shortname":"Transactional-Server-Module","free":true,"eula_url":"","arch":"x86_64","predecessor_ids":[],"product_class":"MODULE","online_predecessor_ids":[],"repositories":[{"enabled":true,"id":3512,"distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Transactional-Server/15-SP1/x86_64/update/","installer_updates":false,"name":"SLE-Module-Transactional-Server15-SP1-Updates","description":"SLE-Module-Transactional-Server15-SP1-Updates for sle-15-x86_64"},{"description":"SLE-Module-Transactional-Server15-SP1-Debuginfo-Updates for sle-15-x86_64","name":"SLE-Module-Transactional-Server15-SP1-Debuginfo-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Transactional-Server/15-SP1/x86_64/update_debug/","enabled":false,"id":3513},{"id":3514,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Transactional-Server/15-SP1/x86_64/product/","autorefresh":false,"distro_target":"sle-15-x86_64","name":"SLE-Module-Transactional-Server15-SP1-Pool","installer_updates":false,"description":"SLE-Module-Transactional-Server15-SP1-Pool for sle-15-x86_64"},{"installer_updates":false,"name":"SLE-Module-Transactional-Server15-SP1-Debuginfo-Pool","description":"SLE-Module-Transactional-Server15-SP1-Debuginfo-Pool for sle-15-x86_64","enabled":false,"id":3515,"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Transactional-Server/15-SP1/x86_64/product_debug/"},{"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Transactional-Server/15-SP1/x86_64/product_source/","enabled":false,"id":3516,"description":"SLE-Module-Transactional-Server15-SP1-Source-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Transactional-Server15-SP1-Source-Pool"}],"cpe":"cpe:/o:suse:sle-module-transactional-server:15:sp1","product_type":"module","recommended":false,"version":"15.1","name":"Transactional Server Module","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"Transactional Server Module 15 SP1 x86_64","former_identifier":"sle-module-transactional-server","release_type":null,"friendly_version":"15 SP1","extensions":[],"id":1825,"release_stage":"released","identifier":"sle-module-transactional-server"},{"eula_url":"","arch":"x86_64","shortname":"Live-Patching","description":"

SUSE Linux Enterprise Live Patching provides packages to update critical components in SUSE Linux Enterprise. With SUSE Linux Enterprise Live Patching, you can perform critical patching without shutting down your system, reducing the need for planned downtime and increasing service availability.

","free":false,"cpe":"cpe:/o:suse:sle-module-live-patching:15:sp1","product_type":"extension","predecessor_ids":[1736],"online_predecessor_ids":[1736],"repositories":[{"description":"SLE-Module-Live-Patching15-SP1-Updates for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Live-Patching15-SP1-Updates","distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Live-Patching/15-SP1/x86_64/update/","enabled":true,"id":3535},{"distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Live-Patching/15-SP1/x86_64/update_debug/","enabled":false,"id":3536,"description":"SLE-Module-Live-Patching15-SP1-Debuginfo-Updates for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Live-Patching15-SP1-Debuginfo-Updates"},{"description":"SLE-Module-Live-Patching15-SP1-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Live-Patching15-SP1-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Live-Patching/15-SP1/x86_64/product/","distro_target":"sle-15-x86_64","autorefresh":false,"id":3537,"enabled":true},{"description":"SLE-Module-Live-Patching15-SP1-Debuginfo-Pool for sle-15-x86_64","name":"SLE-Module-Live-Patching15-SP1-Debuginfo-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Live-Patching/15-SP1/x86_64/product_debug/","autorefresh":false,"distro_target":"sle-15-x86_64","id":3538,"enabled":false},{"description":"SLE-Module-Live-Patching15-SP1-Source-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Live-Patching15-SP1-Source-Pool","distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Live-Patching/15-SP1/x86_64/product_source/","enabled":false,"id":3539}],"product_class":"SLE-LP","name":"SUSE Linux Enterprise Live Patching","offline_predecessor_ids":[1536,1757,1888],"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Live Patching 15 SP1 x86_64","release_type":null,"former_identifier":"sle-module-live-patching","recommended":false,"version":"15.1","extensions":[],"identifier":"sle-module-live-patching","release_stage":"released","id":1828,"friendly_version":"15 SP1"},{"free":true,"shortname":"Python2-Module","description":"

This module contains the python 2 packages.

Access to the Python 2 Module is included in your SUSE Linux Enterprise subscription. The module has a different lifecycle than SUSE Linux Enterprise itself. Packages in the this module are usually supported for at most three years.

","eula_url":"","arch":"x86_64","predecessor_ids":[],"product_class":"MODULE","online_predecessor_ids":[],"repositories":[{"name":"SLE-Module-Python2-15-SP1-Updates","installer_updates":false,"description":"SLE-Module-Python2-15-SP1-Updates for sle-15-x86_64","enabled":true,"id":3598,"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Python2/15-SP1/x86_64/update/"},{"id":3599,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Python2/15-SP1/x86_64/update_debug/","autorefresh":true,"distro_target":"sle-15-x86_64","name":"SLE-Module-Python2-15-SP1-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-Python2-15-SP1-Debuginfo-Updates for sle-15-x86_64"},{"description":"SLE-Module-Python2-15-SP1-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Python2-15-SP1-Pool","distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Python2/15-SP1/x86_64/product/","enabled":true,"id":3600},{"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Python2/15-SP1/x86_64/product_debug/","enabled":false,"id":3601,"description":"SLE-Module-Python2-15-SP1-Debuginfo-Pool for sle-15-x86_64","name":"SLE-Module-Python2-15-SP1-Debuginfo-Pool","installer_updates":false},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Python2/15-SP1/x86_64/product_source/","autorefresh":false,"distro_target":"sle-15-x86_64","id":3602,"enabled":false,"description":"SLE-Module-Python2-15-SP1-Source-Pool for sle-15-x86_64","name":"SLE-Module-Python2-15-SP1-Source-Pool","installer_updates":false}],"product_type":"module","cpe":"cpe:/o:suse:sle-module-python2:15:sp1","recommended":false,"version":"15.1","offline_predecessor_ids":[],"name":"Python 2 Module","former_identifier":"sle-module-python2","release_type":null,"friendly_name":"Python 2 Module 15 SP1 x86_64","migration_extra":true,"friendly_version":"15 SP1","extensions":[],"identifier":"sle-module-python2","release_stage":"released","id":1867},{"arch":"x86_64","eula_url":"","free":true,"description":"SUSE Package Hub is a free of charge extension providing access to community maintained packages built to run on SUSE Linux Enterprise Server. Built from the same sources used in the openSUSE distributions, these quality packages provide additional software to what is found in the SUSE Linux Enterprise Server product. Packages from the Package Hub are delivered without L3 support from SUSE. General updates and fixes to the packages in SUSE Package Hub are provided by the openSUSE community based on their discretion, though SUSE will monitor and ensure that any known critical security issues will be addressed. Packages in the Package Hub are approved by SUSE for use with SUSE Linux Enterprise Server 15-SP1 and to not interfere with the supportability of SUSE Linux Enterprise Server, its modules and extensions. For more information about SUSE Package Hub please visit https://packagehub.suse.com.","shortname":"SUSE-PackageHub-15","product_type":"extension","cpe":"cpe:/o:suse:packagehub:15:sp1","repositories":[{"description":"SUSE-PackageHub-15-SP1-Backports-Pool for sle-15-x86_64","name":"SUSE-PackageHub-15-SP1-Backports-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Backports/SLE-15-SP1_x86_64/standard/","autorefresh":false,"distro_target":"sle-15-x86_64","id":3627,"enabled":true},{"url":"https://updates.suse.com/SUSE/Backports/SLE-15-SP1_x86_64/standard_debug/","distro_target":"sle-15-x86_64","autorefresh":true,"id":3628,"enabled":false,"description":"SUSE-PackageHub-15-SP1-Backports-Debuginfo for sle-15-x86_64","installer_updates":false,"name":"SUSE-PackageHub-15-SP1-Backports-Debuginfo"},{"description":"SLE-Module-Packagehub-Subpackages15-SP1-Updates for sle-15-x86_64","name":"SLE-Module-Packagehub-Subpackages15-SP1-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP1/x86_64/update/","enabled":true,"id":3629},{"id":3630,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP1/x86_64/update_debug/","autorefresh":true,"distro_target":"sle-15-x86_64","name":"SLE-Module-Packagehub-Subpackages15-SP1-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-Packagehub-Subpackages15-SP1-Debuginfo-Updates for sle-15-x86_64"},{"id":3631,"enabled":true,"url":"https://updates.suse.com/SUSE/Backports/SLE-15-SP1_x86_64/product/","distro_target":"sle-15-x86_64","autorefresh":false,"installer_updates":false,"name":"SUSE-PackageHub-15-SP1-Pool","description":"SUSE-PackageHub-15-SP1-Pool for sle-15-x86_64"},{"description":"SLE-Module-Packagehub-Subpackages15-SP1-Pool for sle-15-x86_64","name":"SLE-Module-Packagehub-Subpackages15-SP1-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP1/x86_64/product/","enabled":true,"id":3632},{"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP1/x86_64/product_debug/","enabled":false,"id":3633,"description":"SLE-Module-Packagehub-Subpackages15-SP1-Debuginfo-Pool for sle-15-x86_64","name":"SLE-Module-Packagehub-Subpackages15-SP1-Debuginfo-Pool","installer_updates":false},{"installer_updates":false,"name":"SLE-Module-Packagehub-Subpackages15-SP1-Source-Pool","description":"SLE-Module-Packagehub-Subpackages15-SP1-Source-Pool for sle-15-x86_64","enabled":false,"id":3634,"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP1/x86_64/product_source/"}],"online_predecessor_ids":[1743],"product_class":"MODULE","predecessor_ids":[1743],"release_type":null,"former_identifier":"PackageHub","migration_extra":false,"friendly_name":"SUSE Package Hub 15 SP1 x86_64","offline_predecessor_ids":[1529,1813,1915],"name":"SUSE Package Hub","version":"15.1","recommended":false,"id":1871,"release_stage":"released","identifier":"PackageHub","extensions":[],"friendly_version":"15 SP1"}],"friendly_version":"15 SP1"},{"recommended":false,"version":"15.1","name":"SUSE Linux Enterprise Server LTSS","offline_predecessor_ids":[],"friendly_name":"SUSE Linux Enterprise Server LTSS 15 SP1 x86_64","migration_extra":false,"former_identifier":"SLES-LTSS","release_type":null,"friendly_version":"15 SP1","extensions":[],"release_stage":"released","identifier":"SLES-LTSS","id":2219,"shortname":"SLES15-SP1-LTSS","description":"SUSE Linux Enterprise offers a comprehensive suite of products built on a single code base. The platform addresses business needs from the smallest thin-client devices to the world's most powerful high-performance computing and mainframe servers. SUSE Linux Enterprise offers common management tools and technology certifications across the platform, and each product is enterprise-class.","free":false,"eula_url":"","arch":"x86_64","predecessor_ids":[],"product_class":"SLES15-SP1-LTSS-X86","online_predecessor_ids":[],"repositories":[{"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-SLES/15-SP1-LTSS/x86_64/update/","distro_target":"sle-15-x86_64","autorefresh":true,"id":4977,"enabled":true,"description":"SLE-Product-SLES15-SP1-LTSS-Updates for sle-15-x86_64","installer_updates":false,"name":"SLE-Product-SLES15-SP1-LTSS-Updates"},{"description":"SLE-Product-SLES15-SP1-Debuginfo-LTSS-Updates for sle-15-x86_64","installer_updates":false,"name":"SLE-Product-SLES15-SP1-Debuginfo-LTSS-Updates","distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-SLES/15-SP1-LTSS/x86_64/update_debug/","enabled":false,"id":4978}],"cpe":"cpe:/o:suse:sles-ltss:15:sp1","product_type":"extension"}],"friendly_version":"15 SP1","former_identifier":"SLES","release_type":null,"friendly_name":"SUSE Linux Enterprise Server 15 SP1 x86_64","migration_extra":false,"offline_predecessor_ids":[690,769,814,824,1300,1421,1625,1878],"name":"SUSE Linux Enterprise Server","version":"15.1","recommended":false},{"shortname":"SLED15-SP1","description":"SUSE Linux Enterprise offers a comprehensive suite of products built on a single code base. The platform addresses business needs from the smallest thin-client devices to the world's most powerful high-performance computing and mainframe servers. SUSE Linux Enterprise offers common management tools and technology certifications across the platform, and each product is enterprise-class. SUSE Linux Enterprise provides more than a cute desktop product or a basic server offering. It is the only Linux platform for enterprise computing, and it is now replacing UNIX* and Windows* as well.","free":false,"arch":"x86_64","eula_url":"https://updates.suse.com/SUSE/Products/SLE-Product-SLED/15-SP1/x86_64/product.license/","product_class":"7260","online_predecessor_ids":[1609],"repositories":[{"description":"SLE-Product-SLED15-SP1-Updates for sle-15-x86_64","installer_updates":false,"name":"SLE-Product-SLED15-SP1-Updates","url":"https://updates.suse.com/SUSE/Updates/SLE-Product-SLED/15-SP1/x86_64/update/","distro_target":"sle-15-x86_64","autorefresh":true,"id":3221,"enabled":true},{"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-SLED/15-SP1/x86_64/update_debug/","autorefresh":true,"distro_target":"sle-15-x86_64","id":3222,"enabled":false,"description":"SLE-Product-SLED15-SP1-Debuginfo-Updates for sle-15-x86_64","name":"SLE-Product-SLED15-SP1-Debuginfo-Updates","installer_updates":false},{"name":"SLE-Product-SLED15-SP1-Pool","installer_updates":false,"description":"SLE-Product-SLED15-SP1-Pool for sle-15-x86_64","id":3223,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-SLED/15-SP1/x86_64/product/","autorefresh":false,"distro_target":"sle-15-x86_64"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Product-SLED/15-SP1/x86_64/product_debug/","distro_target":"sle-15-x86_64","autorefresh":false,"id":3224,"enabled":false,"description":"SLE-Product-SLED15-SP1-Debuginfo-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Product-SLED15-SP1-Debuginfo-Pool"},{"enabled":false,"id":3225,"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-SLED/15-SP1/x86_64/product_source/","installer_updates":false,"name":"SLE-Product-SLED15-SP1-Source-Pool","description":"SLE-Product-SLED15-SP1-Source-Pool for sle-15-x86_64"},{"url":"https://download.nvidia.com/suse/sle15sp1/","distro_target":null,"autorefresh":true,"id":3792,"enabled":true,"description":"SLE-15-SP1-Desktop-NVIDIA-Driver","installer_updates":false,"name":"SLE-15-SP1-Desktop-NVIDIA-Driver"}],"predecessor_ids":[1609],"cpe":"cpe:/o:suse:sled:15:sp1","product_type":"base","version":"15.1","recommended":false,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Desktop 15 SP1 x86_64","release_type":null,"former_identifier":"SLED","name":"SUSE Linux Enterprise Desktop","offline_predecessor_ids":[1425,1629],"friendly_version":"15 SP1","release_stage":"released","identifier":"SLED","id":1764,"extensions":[{"friendly_version":"15 SP1","extensions":[{"friendly_version":"15 SP1","identifier":"sle-module-desktop-applications","release_stage":"released","id":1776,"extensions":[{"recommended":true,"version":"15.1","name":"SUSE Linux Enterprise Workstation Extension","offline_predecessor_ids":[1431,1639,1893],"friendly_name":"SUSE Linux Enterprise Workstation Extension 15 SP1 x86_64","migration_extra":false,"former_identifier":"sle-we","release_type":null,"friendly_version":"15 SP1","extensions":[],"id":1781,"release_stage":"released","identifier":"sle-we","shortname":"SLEWE15-SP1","description":"SUSE Linux Enterprise Workstation Extension adds additional functionality to a base SUSE Linux Enterprise installation. The Workstation Extension offers additional desktop applications (office suite, email client, graphical editor, multimedia tools) and libraries. Workstation Extension is enabled and installed by default on SUSE Linux Enterprise Desktop installation. Adding the Workstation Extension to a SUSE Linux Enterprise Server installation allows to seamlessly combine both products to create a full featured server workstation.","free":false,"eula_url":"https://updates.suse.com/SUSE/Products/SLE-Product-WE/15-SP1/x86_64/product.license/","arch":"x86_64","predecessor_ids":[1583],"product_class":"SLE-WE","online_predecessor_ids":[1583],"repositories":[{"installer_updates":false,"name":"SLE-Product-WE15-SP1-Updates","description":"SLE-Product-WE15-SP1-Updates for sle-15-x86_64","id":3306,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-WE/15-SP1/x86_64/update/","distro_target":"sle-15-x86_64","autorefresh":true},{"description":"SLE-Product-WE15-SP1-Debuginfo-Updates for sle-15-x86_64","installer_updates":false,"name":"SLE-Product-WE15-SP1-Debuginfo-Updates","url":"https://updates.suse.com/SUSE/Updates/SLE-Product-WE/15-SP1/x86_64/update_debug/","distro_target":"sle-15-x86_64","autorefresh":true,"id":3307,"enabled":false},{"name":"SLE-Product-WE15-SP1-Pool","installer_updates":false,"description":"SLE-Product-WE15-SP1-Pool for sle-15-x86_64","enabled":true,"id":3308,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Product-WE/15-SP1/x86_64/product/"},{"description":"SLE-Product-WE15-SP1-Debuginfo-Pool for sle-15-x86_64","name":"SLE-Product-WE15-SP1-Debuginfo-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Product-WE/15-SP1/x86_64/product_debug/","enabled":false,"id":3309},{"id":3310,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-WE/15-SP1/x86_64/product_source/","distro_target":"sle-15-x86_64","autorefresh":false,"installer_updates":false,"name":"SLE-Product-WE15-SP1-Source-Pool","description":"SLE-Product-WE15-SP1-Source-Pool for sle-15-x86_64"},{"name":"SLE-15-SP1-Desktop-NVIDIA-Driver","installer_updates":false,"description":"SLE-15-SP1-Desktop-NVIDIA-Driver","enabled":true,"id":3792,"autorefresh":true,"distro_target":null,"url":"https://download.nvidia.com/suse/sle15sp1/"}],"cpe":"cpe:/o:suse:sle-we:15:sp1","product_type":"extension"},{"version":"15.1","recommended":false,"release_type":null,"former_identifier":"sle-sdk","migration_extra":false,"friendly_name":"Development Tools Module 15 SP1 x86_64","offline_predecessor_ids":[1223,1323,1341,1366,1427,1630,1892],"name":"Development Tools Module","friendly_version":"15 SP1","identifier":"sle-module-development-tools","release_stage":"released","id":1794,"extensions":[],"free":true,"shortname":"Development-Tools-Module","description":"

The Development Tools Module helps you developing applications for SUSE Linux Enterprise 15.

Access to the Development Tools Module is included in your SUSE Linux Enterprise product subscription. The module has a different lifecycle than SUSE Linux Enterprise itself.

","arch":"x86_64","eula_url":"","online_predecessor_ids":[1579],"repositories":[{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15-SP1/x86_64/update/","distro_target":"sle-15-x86_64","autorefresh":true,"id":3371,"enabled":true,"description":"SLE-Module-DevTools15-SP1-Updates for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-DevTools15-SP1-Updates"},{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15-SP1/x86_64/update_debug/","autorefresh":true,"distro_target":"sle-15-x86_64","id":3372,"enabled":false,"description":"SLE-Module-DevTools15-SP1-Debuginfo-Updates for sle-15-x86_64","name":"SLE-Module-DevTools15-SP1-Debuginfo-Updates","installer_updates":false},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP1/x86_64/product/","distro_target":"sle-15-x86_64","autorefresh":false,"id":3373,"enabled":true,"description":"SLE-Module-DevTools15-SP1-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-DevTools15-SP1-Pool"},{"enabled":false,"id":3374,"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP1/x86_64/product_debug/","installer_updates":false,"name":"SLE-Module-DevTools15-SP1-Debuginfo-Pool","description":"SLE-Module-DevTools15-SP1-Debuginfo-Pool for sle-15-x86_64"},{"name":"SLE-Module-DevTools15-SP1-Source-Pool","installer_updates":false,"description":"SLE-Module-DevTools15-SP1-Source-Pool for sle-15-x86_64","enabled":false,"id":3375,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP1/x86_64/product_source/"}],"product_class":"MODULE","predecessor_ids":[1579],"product_type":"module","cpe":"cpe:/o:suse:sle-module-development-tools:15:sp1"}],"version":"15.1","recommended":true,"migration_extra":false,"friendly_name":"Desktop Applications Module 15 SP1 x86_64","former_identifier":"sle-module-desktop-applications","release_type":null,"name":"Desktop Applications Module","offline_predecessor_ids":[],"online_predecessor_ids":[1578],"product_class":"MODULE","repositories":[{"description":"SLE-Module-Desktop-Applications15-SP1-Updates for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Desktop-Applications15-SP1-Updates","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15-SP1/x86_64/update/","distro_target":"sle-15-x86_64","autorefresh":true,"id":3281,"enabled":true},{"description":"SLE-Module-Desktop-Applications15-SP1-Debuginfo-Updates for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Desktop-Applications15-SP1-Debuginfo-Updates","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15-SP1/x86_64/update_debug/","distro_target":"sle-15-x86_64","autorefresh":true,"id":3282,"enabled":false},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP1/x86_64/product/","autorefresh":false,"distro_target":"sle-15-x86_64","id":3283,"enabled":true,"description":"SLE-Module-Desktop-Applications15-SP1-Pool for sle-15-x86_64","name":"SLE-Module-Desktop-Applications15-SP1-Pool","installer_updates":false},{"description":"SLE-Module-Desktop-Applications15-SP1-Debuginfo-Pool for sle-15-x86_64","name":"SLE-Module-Desktop-Applications15-SP1-Debuginfo-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP1/x86_64/product_debug/","enabled":false,"id":3284},{"id":3285,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP1/x86_64/product_source/","autorefresh":false,"distro_target":"sle-15-x86_64","name":"SLE-Module-Desktop-Applications15-SP1-Source-Pool","installer_updates":false,"description":"SLE-Module-Desktop-Applications15-SP1-Source-Pool for sle-15-x86_64"}],"predecessor_ids":[1578],"cpe":"cpe:/o:suse:sle-module-desktop-applications:15:sp1","product_type":"module","shortname":"Desktop-Applications-Module","description":"

The SUSE Linux Enterprise Desktop Applications Module delivers a basic set of Desktop functionality.

Access to the Desktop Applications Module is included in your SUSE Linux Enterprise product subscription.

","free":true,"arch":"x86_64","eula_url":""},{"version":"15.1","recommended":false,"migration_extra":false,"friendly_name":"SUSE Cloud Application Platform Tools Module 15 SP1 x86_64","release_type":null,"former_identifier":"sle-module-cap-tools","name":"SUSE Cloud Application Platform Tools Module","offline_predecessor_ids":[1678],"friendly_version":"15 SP1","id":1809,"release_stage":"released","identifier":"sle-module-cap-tools","extensions":[],"description":"

The SUSE Cloud Application Platform Tools Module is a collection of tools that enables you to interact with the SUSE Cloud Application Platform product itself, providing the commandline client for instance.

Access to the SUSE Cloud Application Platform Tools Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself; please check the Release Notes for further details.

","shortname":"SUSE-CAP-Tools-Module","free":true,"arch":"x86_64","eula_url":"","online_predecessor_ids":[1728],"product_class":"MODULE","repositories":[{"installer_updates":false,"name":"SLE-Module-CAP-Tools15-SP1-Updates","description":"SLE-Module-CAP-Tools15-SP1-Updates for sle-15-x86_64","enabled":true,"id":3446,"distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-CAP-Tools/15-SP1/x86_64/update/"},{"description":"SLE-Module-CAP-Tools15-SP1-Debuginfo-Updates for sle-15-x86_64","name":"SLE-Module-CAP-Tools15-SP1-Debuginfo-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-CAP-Tools/15-SP1/x86_64/update_debug/","enabled":false,"id":3447},{"installer_updates":false,"name":"SLE-Module-CAP-Tools15-SP1-Pool","description":"SLE-Module-CAP-Tools15-SP1-Pool for sle-15-x86_64","id":3448,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-CAP-Tools/15-SP1/x86_64/product/","distro_target":"sle-15-x86_64","autorefresh":false},{"name":"SLE-Module-CAP-Tools15-SP1-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-CAP-Tools15-SP1-Debuginfo-Pool for sle-15-x86_64","enabled":false,"id":3449,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-CAP-Tools/15-SP1/x86_64/product_debug/"},{"description":"SLE-Module-CAP-Tools15-SP1-Source-Pool for sle-15-x86_64","name":"SLE-Module-CAP-Tools15-SP1-Source-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-CAP-Tools/15-SP1/x86_64/product_source/","autorefresh":false,"distro_target":"sle-15-x86_64","id":3450,"enabled":false}],"predecessor_ids":[1728],"cpe":"cpe:/o:suse:sle-module-cap-tools:15:sp1","product_type":"module"},{"cpe":"cpe:/o:suse:sle-module-python2:15:sp1","product_type":"module","predecessor_ids":[],"online_predecessor_ids":[],"repositories":[{"description":"SLE-Module-Python2-15-SP1-Updates for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Python2-15-SP1-Updates","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Python2/15-SP1/x86_64/update/","distro_target":"sle-15-x86_64","autorefresh":true,"id":3598,"enabled":true},{"name":"SLE-Module-Python2-15-SP1-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-Python2-15-SP1-Debuginfo-Updates for sle-15-x86_64","id":3599,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Python2/15-SP1/x86_64/update_debug/","autorefresh":true,"distro_target":"sle-15-x86_64"},{"description":"SLE-Module-Python2-15-SP1-Pool for sle-15-x86_64","name":"SLE-Module-Python2-15-SP1-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Python2/15-SP1/x86_64/product/","autorefresh":false,"distro_target":"sle-15-x86_64","id":3600,"enabled":true},{"enabled":false,"id":3601,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Python2/15-SP1/x86_64/product_debug/","name":"SLE-Module-Python2-15-SP1-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-Python2-15-SP1-Debuginfo-Pool for sle-15-x86_64"},{"name":"SLE-Module-Python2-15-SP1-Source-Pool","installer_updates":false,"description":"SLE-Module-Python2-15-SP1-Source-Pool for sle-15-x86_64","enabled":false,"id":3602,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Python2/15-SP1/x86_64/product_source/"}],"product_class":"MODULE","eula_url":"","arch":"x86_64","description":"

This module contains the python 2 packages.

Access to the Python 2 Module is included in your SUSE Linux Enterprise subscription. The module has a different lifecycle than SUSE Linux Enterprise itself. Packages in the this module are usually supported for at most three years.

","shortname":"Python2-Module","free":true,"extensions":[],"release_stage":"released","identifier":"sle-module-python2","id":1867,"friendly_version":"15 SP1","name":"Python 2 Module","offline_predecessor_ids":[],"friendly_name":"Python 2 Module 15 SP1 x86_64","migration_extra":true,"former_identifier":"sle-module-python2","release_type":null,"recommended":true,"version":"15.1"},{"product_type":"extension","cpe":"cpe:/o:suse:packagehub:15:sp1","predecessor_ids":[1743],"product_class":"MODULE","online_predecessor_ids":[1743],"repositories":[{"name":"SUSE-PackageHub-15-SP1-Backports-Pool","installer_updates":false,"description":"SUSE-PackageHub-15-SP1-Backports-Pool for sle-15-x86_64","id":3627,"enabled":true,"url":"https://updates.suse.com/SUSE/Backports/SLE-15-SP1_x86_64/standard/","autorefresh":false,"distro_target":"sle-15-x86_64"},{"url":"https://updates.suse.com/SUSE/Backports/SLE-15-SP1_x86_64/standard_debug/","autorefresh":true,"distro_target":"sle-15-x86_64","id":3628,"enabled":false,"description":"SUSE-PackageHub-15-SP1-Backports-Debuginfo for sle-15-x86_64","name":"SUSE-PackageHub-15-SP1-Backports-Debuginfo","installer_updates":false},{"installer_updates":false,"name":"SLE-Module-Packagehub-Subpackages15-SP1-Updates","description":"SLE-Module-Packagehub-Subpackages15-SP1-Updates for sle-15-x86_64","enabled":true,"id":3629,"distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP1/x86_64/update/"},{"installer_updates":false,"name":"SLE-Module-Packagehub-Subpackages15-SP1-Debuginfo-Updates","description":"SLE-Module-Packagehub-Subpackages15-SP1-Debuginfo-Updates for sle-15-x86_64","id":3630,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP1/x86_64/update_debug/","distro_target":"sle-15-x86_64","autorefresh":true},{"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Backports/SLE-15-SP1_x86_64/product/","enabled":true,"id":3631,"description":"SUSE-PackageHub-15-SP1-Pool for sle-15-x86_64","installer_updates":false,"name":"SUSE-PackageHub-15-SP1-Pool"},{"installer_updates":false,"name":"SLE-Module-Packagehub-Subpackages15-SP1-Pool","description":"SLE-Module-Packagehub-Subpackages15-SP1-Pool for sle-15-x86_64","enabled":true,"id":3632,"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP1/x86_64/product/"},{"installer_updates":false,"name":"SLE-Module-Packagehub-Subpackages15-SP1-Debuginfo-Pool","description":"SLE-Module-Packagehub-Subpackages15-SP1-Debuginfo-Pool for sle-15-x86_64","id":3633,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP1/x86_64/product_debug/","distro_target":"sle-15-x86_64","autorefresh":false},{"description":"SLE-Module-Packagehub-Subpackages15-SP1-Source-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Packagehub-Subpackages15-SP1-Source-Pool","distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP1/x86_64/product_source/","enabled":false,"id":3634}],"eula_url":"","arch":"x86_64","free":true,"shortname":"SUSE-PackageHub-15","description":"SUSE Package Hub is a free of charge extension providing access to community maintained packages built to run on SUSE Linux Enterprise Server. Built from the same sources used in the openSUSE distributions, these quality packages provide additional software to what is found in the SUSE Linux Enterprise Server product. Packages from the Package Hub are delivered without L3 support from SUSE. General updates and fixes to the packages in SUSE Package Hub are provided by the openSUSE community based on their discretion, though SUSE will monitor and ensure that any known critical security issues will be addressed. Packages in the Package Hub are approved by SUSE for use with SUSE Linux Enterprise Server 15-SP1 and to not interfere with the supportability of SUSE Linux Enterprise Server, its modules and extensions. For more information about SUSE Package Hub please visit https://packagehub.suse.com.","extensions":[],"release_stage":"released","identifier":"PackageHub","id":1871,"friendly_version":"15 SP1","offline_predecessor_ids":[1529,1813,1915],"name":"SUSE Package Hub","former_identifier":"PackageHub","release_type":null,"migration_extra":false,"friendly_name":"SUSE Package Hub 15 SP1 x86_64","recommended":false,"version":"15.1"}],"id":1772,"release_stage":"released","identifier":"sle-module-basesystem","recommended":true,"version":"15.1","offline_predecessor_ids":[1212,1368,1440,1618],"name":"Basesystem Module","release_type":null,"former_identifier":"sle-module-basesystem","friendly_name":"Basesystem Module 15 SP1 x86_64","migration_extra":false,"predecessor_ids":[1576],"repositories":[{"installer_updates":false,"name":"SLE-Module-Basesystem15-SP1-Updates","description":"SLE-Module-Basesystem15-SP1-Updates for sle-15-x86_64","enabled":true,"id":3261,"distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15-SP1/x86_64/update/"},{"id":3262,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15-SP1/x86_64/update_debug/","autorefresh":true,"distro_target":"sle-15-x86_64","name":"SLE-Module-Basesystem15-SP1-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-Basesystem15-SP1-Debuginfo-Updates for sle-15-x86_64"},{"enabled":true,"id":3263,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP1/x86_64/product/","name":"SLE-Module-Basesystem15-SP1-Pool","installer_updates":false,"description":"SLE-Module-Basesystem15-SP1-Pool for sle-15-x86_64"},{"installer_updates":false,"name":"SLE-Module-Basesystem15-SP1-Debuginfo-Pool","description":"SLE-Module-Basesystem15-SP1-Debuginfo-Pool for sle-15-x86_64","id":3264,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP1/x86_64/product_debug/","distro_target":"sle-15-x86_64","autorefresh":false},{"description":"SLE-Module-Basesystem15-SP1-Source-Pool for sle-15-x86_64","name":"SLE-Module-Basesystem15-SP1-Source-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP1/x86_64/product_source/","enabled":false,"id":3265}],"online_predecessor_ids":[1576],"product_class":"MODULE","product_type":"module","cpe":"cpe:/o:suse:sle-module-basesystem:15:sp1","free":true,"shortname":"Basesystem-Module","description":"

The SUSE Linux Enterprise Basesystem Module delivers the base system of the product.

","eula_url":"","arch":"x86_64"}]},{"name":"SUSE Linux Enterprise Server for SAP Applications","offline_predecessor_ids":[1572,1754,1879],"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Server for SAP Applications 15 SP1 ppc64le","former_identifier":"SUSE_SLES_SAP","release_type":null,"recommended":false,"version":"15.1","extensions":[{"product_type":"module","cpe":"cpe:/o:suse:sle-module-basesystem:15:sp1","predecessor_ids":[1588],"online_predecessor_ids":[1588],"repositories":[{"autorefresh":true,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15-SP1/ppc64le/update/","enabled":true,"id":3251,"description":"SLE-Module-Basesystem15-SP1-Updates for sle-15-ppc64le","name":"SLE-Module-Basesystem15-SP1-Updates","installer_updates":false},{"name":"SLE-Module-Basesystem15-SP1-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-Basesystem15-SP1-Debuginfo-Updates for sle-15-ppc64le","id":3252,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15-SP1/ppc64le/update_debug/","autorefresh":true,"distro_target":"sle-15-ppc64le"},{"installer_updates":false,"name":"SLE-Module-Basesystem15-SP1-Pool","description":"SLE-Module-Basesystem15-SP1-Pool for sle-15-ppc64le","id":3253,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP1/ppc64le/product/","distro_target":"sle-15-ppc64le","autorefresh":false},{"id":3254,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP1/ppc64le/product_debug/","distro_target":"sle-15-ppc64le","autorefresh":false,"installer_updates":false,"name":"SLE-Module-Basesystem15-SP1-Debuginfo-Pool","description":"SLE-Module-Basesystem15-SP1-Debuginfo-Pool for sle-15-ppc64le"},{"distro_target":"sle-15-ppc64le","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP1/ppc64le/product_source/","enabled":false,"id":3255,"description":"SLE-Module-Basesystem15-SP1-Source-Pool for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-Basesystem15-SP1-Source-Pool"}],"product_class":"MODULE","eula_url":"","arch":"ppc64le","free":true,"shortname":"Basesystem-Module","description":"

The SUSE Linux Enterprise Basesystem Module delivers the base system of the product.

","extensions":[{"free":true,"shortname":"Desktop-Applications-Module","description":"

The SUSE Linux Enterprise Desktop Applications Module delivers a basic set of Desktop functionality.

Access to the Desktop Applications Module is included in your SUSE Linux Enterprise product subscription.

","eula_url":"","arch":"ppc64le","predecessor_ids":[1594],"online_predecessor_ids":[1594],"repositories":[{"id":3271,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15-SP1/ppc64le/update/","autorefresh":true,"distro_target":"sle-15-ppc64le","name":"SLE-Module-Desktop-Applications15-SP1-Updates","installer_updates":false,"description":"SLE-Module-Desktop-Applications15-SP1-Updates for sle-15-ppc64le"},{"autorefresh":true,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15-SP1/ppc64le/update_debug/","enabled":false,"id":3272,"description":"SLE-Module-Desktop-Applications15-SP1-Debuginfo-Updates for sle-15-ppc64le","name":"SLE-Module-Desktop-Applications15-SP1-Debuginfo-Updates","installer_updates":false},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP1/ppc64le/product/","distro_target":"sle-15-ppc64le","autorefresh":false,"id":3273,"enabled":true,"description":"SLE-Module-Desktop-Applications15-SP1-Pool for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-Desktop-Applications15-SP1-Pool"},{"description":"SLE-Module-Desktop-Applications15-SP1-Debuginfo-Pool for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-Desktop-Applications15-SP1-Debuginfo-Pool","distro_target":"sle-15-ppc64le","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP1/ppc64le/product_debug/","enabled":false,"id":3274},{"description":"SLE-Module-Desktop-Applications15-SP1-Source-Pool for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-Desktop-Applications15-SP1-Source-Pool","distro_target":"sle-15-ppc64le","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP1/ppc64le/product_source/","enabled":false,"id":3275}],"product_class":"MODULE","product_type":"module","cpe":"cpe:/o:suse:sle-module-desktop-applications:15:sp1","recommended":true,"version":"15.1","offline_predecessor_ids":[],"name":"Desktop Applications Module","former_identifier":"sle-module-desktop-applications","release_type":null,"migration_extra":false,"friendly_name":"Desktop Applications Module 15 SP1 ppc64le","friendly_version":"15 SP1","extensions":[{"friendly_version":"15 SP1","extensions":[],"identifier":"sle-module-development-tools","release_stage":"released","id":1792,"recommended":false,"version":"15.1","offline_predecessor_ids":[1145,1339,1343,1364,1428,1631,1890],"name":"Development Tools Module","release_type":null,"former_identifier":"sle-sdk","migration_extra":false,"friendly_name":"Development Tools Module 15 SP1 ppc64le","predecessor_ids":[1597],"online_predecessor_ids":[1597],"repositories":[{"name":"SLE-Module-DevTools15-SP1-Updates","installer_updates":false,"description":"SLE-Module-DevTools15-SP1-Updates for sle-15-ppc64le","enabled":true,"id":3361,"autorefresh":true,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15-SP1/ppc64le/update/"},{"enabled":false,"id":3362,"distro_target":"sle-15-ppc64le","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15-SP1/ppc64le/update_debug/","installer_updates":false,"name":"SLE-Module-DevTools15-SP1-Debuginfo-Updates","description":"SLE-Module-DevTools15-SP1-Debuginfo-Updates for sle-15-ppc64le"},{"id":3363,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP1/ppc64le/product/","distro_target":"sle-15-ppc64le","autorefresh":false,"installer_updates":false,"name":"SLE-Module-DevTools15-SP1-Pool","description":"SLE-Module-DevTools15-SP1-Pool for sle-15-ppc64le"},{"description":"SLE-Module-DevTools15-SP1-Debuginfo-Pool for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-DevTools15-SP1-Debuginfo-Pool","distro_target":"sle-15-ppc64le","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP1/ppc64le/product_debug/","enabled":false,"id":3364},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP1/ppc64le/product_source/","distro_target":"sle-15-ppc64le","autorefresh":false,"id":3365,"enabled":false,"description":"SLE-Module-DevTools15-SP1-Source-Pool for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-DevTools15-SP1-Source-Pool"}],"product_class":"MODULE","product_type":"module","cpe":"cpe:/o:suse:sle-module-development-tools:15:sp1","free":true,"shortname":"Development-Tools-Module","description":"

The Development Tools Module helps you developing applications for SUSE Linux Enterprise 15.

Access to the Development Tools Module is included in your SUSE Linux Enterprise product subscription. The module has a different lifecycle than SUSE Linux Enterprise itself.

","eula_url":"","arch":"ppc64le"}],"release_stage":"released","identifier":"sle-module-desktop-applications","id":1774},{"offline_predecessor_ids":[],"name":"Server Applications Module","former_identifier":"sle-module-server-applications","release_type":null,"migration_extra":false,"friendly_name":"Server Applications Module 15 SP1 ppc64le","recommended":true,"version":"15.1","extensions":[{"version":"15.1","recommended":true,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise High Availability Extension 15 SP1 ppc64le","release_type":null,"former_identifier":"sle-ha","name":"SUSE Linux Enterprise High Availability Extension","offline_predecessor_ids":[1433,1635,1882],"friendly_version":"15 SP1","release_stage":"released","id":1783,"identifier":"sle-ha","extensions":[{"repositories":[{"installer_updates":false,"name":"SLE-Module-SAP-Applications15-SP1-Updates","description":"SLE-Module-SAP-Applications15-SP1-Updates for sle-15-ppc64le","id":3331,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-SAP-Applications/15-SP1/ppc64le/update/","distro_target":"sle-15-ppc64le","autorefresh":true},{"description":"SLE-Module-SAP-Applications15-SP1-Debuginfo-Updates for sle-15-ppc64le","name":"SLE-Module-SAP-Applications15-SP1-Debuginfo-Updates","installer_updates":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-SAP-Applications/15-SP1/ppc64le/update_debug/","autorefresh":true,"distro_target":"sle-15-ppc64le","id":3332,"enabled":false},{"description":"SLE-Module-SAP-Applications15-SP1-Pool for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-SAP-Applications15-SP1-Pool","distro_target":"sle-15-ppc64le","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-SAP-Applications/15-SP1/ppc64le/product/","enabled":true,"id":3333},{"enabled":false,"id":3334,"autorefresh":false,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Products/SLE-Module-SAP-Applications/15-SP1/ppc64le/product_debug/","name":"SLE-Module-SAP-Applications15-SP1-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-SAP-Applications15-SP1-Debuginfo-Pool for sle-15-ppc64le"},{"id":3335,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-SAP-Applications/15-SP1/ppc64le/product_source/","autorefresh":false,"distro_target":"sle-15-ppc64le","name":"SLE-Module-SAP-Applications15-SP1-Source-Pool","installer_updates":false,"description":"SLE-Module-SAP-Applications15-SP1-Source-Pool for sle-15-ppc64le"}],"online_predecessor_ids":[1726],"product_class":"MODULE","predecessor_ids":[1726],"product_type":"module","cpe":"cpe:/o:suse:sle-module-sap-applications:15:sp1","free":true,"shortname":"SAP-Applications-Module","description":"

The SAP Applications module contains the specialized tools for SAP Applications administration.

The module is maintained and supported by the SUSE Linux Enterprise Server for SAP Applications product subscription.

","arch":"ppc64le","eula_url":"","friendly_version":"15 SP1","release_stage":"released","identifier":"sle-module-sap-applications","id":1786,"extensions":[],"version":"15.1","recommended":true,"release_type":null,"former_identifier":"sle-module-sap-applications","friendly_name":"SAP Applications Module 15 SP1 ppc64le","migration_extra":false,"offline_predecessor_ids":[],"name":"SAP Applications Module"}],"description":"SUSE Linux High Availability Extension provides mature, industry-leading open-source high-availability clustering technologies that are easy to set up and use. It can be deployed in physical and/or virtual environments, and can cluster physical servers, virtual servers, or any combination of the two to suit your business’ needs.","shortname":"SLEHA15-SP1","free":false,"arch":"ppc64le","eula_url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP1/ppc64le/product.license/","online_predecessor_ids":[1606],"repositories":[{"description":"SLE-Product-HA15-SP1-Updates for sle-15-ppc64le","name":"SLE-Product-HA15-SP1-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Updates/SLE-Product-HA/15-SP1/ppc64le/update/","enabled":true,"id":3316},{"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-HA/15-SP1/ppc64le/update_debug/","autorefresh":true,"distro_target":"sle-15-ppc64le","id":3317,"enabled":false,"description":"SLE-Product-HA15-SP1-Debuginfo-Updates for sle-15-ppc64le","name":"SLE-Product-HA15-SP1-Debuginfo-Updates","installer_updates":false},{"url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP1/ppc64le/product/","distro_target":"sle-15-ppc64le","autorefresh":false,"id":3318,"enabled":true,"description":"SLE-Product-HA15-SP1-Pool for sle-15-ppc64le","installer_updates":false,"name":"SLE-Product-HA15-SP1-Pool"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP1/ppc64le/product_debug/","autorefresh":false,"distro_target":"sle-15-ppc64le","id":3319,"enabled":false,"description":"SLE-Product-HA15-SP1-Debuginfo-Pool for sle-15-ppc64le","name":"SLE-Product-HA15-SP1-Debuginfo-Pool","installer_updates":false},{"url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP1/ppc64le/product_source/","distro_target":"sle-15-ppc64le","autorefresh":false,"id":3320,"enabled":false,"description":"SLE-Product-HA15-SP1-Source-Pool for sle-15-ppc64le","installer_updates":false,"name":"SLE-Product-HA15-SP1-Source-Pool"}],"product_class":"SLE-HAE-PPC","predecessor_ids":[1606],"cpe":"cpe:/o:suse:sle-ha:15:sp1","product_type":"extension"},{"id":1796,"release_stage":"released","identifier":"sle-module-web-scripting","extensions":[],"friendly_version":"15 SP1","former_identifier":"sle-module-web-scripting","release_type":null,"migration_extra":false,"friendly_name":"Web and Scripting Module 15 SP1 ppc64le","offline_predecessor_ids":[1151],"name":"Web and Scripting Module","version":"15.1","recommended":false,"product_type":"module","cpe":"cpe:/o:suse:sle-module-web-scripting:15:sp1","online_predecessor_ids":[1719],"product_class":"MODULE","repositories":[{"installer_updates":false,"name":"SLE-Module-Web-Scripting15-SP1-Updates","description":"SLE-Module-Web-Scripting15-SP1-Updates for sle-15-ppc64le","id":3381,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/15-SP1/ppc64le/update/","distro_target":"sle-15-ppc64le","autorefresh":true},{"installer_updates":false,"name":"SLE-Module-Web-Scripting15-SP1-Debuginfo-Updates","description":"SLE-Module-Web-Scripting15-SP1-Debuginfo-Updates for sle-15-ppc64le","id":3382,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/15-SP1/ppc64le/update_debug/","distro_target":"sle-15-ppc64le","autorefresh":true},{"description":"SLE-Module-Web-Scripting15-SP1-Pool for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-Web-Scripting15-SP1-Pool","distro_target":"sle-15-ppc64le","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP1/ppc64le/product/","enabled":true,"id":3383},{"name":"SLE-Module-Web-Scripting15-SP1-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-Web-Scripting15-SP1-Debuginfo-Pool for sle-15-ppc64le","enabled":false,"id":3384,"autorefresh":false,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP1/ppc64le/product_debug/"},{"installer_updates":false,"name":"SLE-Module-Web-Scripting15-SP1-Source-Pool","description":"SLE-Module-Web-Scripting15-SP1-Source-Pool for sle-15-ppc64le","enabled":false,"id":3385,"distro_target":"sle-15-ppc64le","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP1/ppc64le/product_source/"}],"predecessor_ids":[1719],"arch":"ppc64le","eula_url":"","free":true,"description":"

The SUSE Linux Enterprise Web and Scripting Module should contains additional packages that are helpful when running a webserver.

Access to the Web and Scripting Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself: Package versions in this module are usually supported for at most three years. We are planning to release more recent versions on a schedule of approximately 18 month; the exact dates may differ per package.

","shortname":"Web-Scripting-Module"},{"eula_url":"","arch":"ppc64le","description":"

The Legacy Module helps you migrating applications from SUSE Linux Enterprise 12 and other systems to SUSE Linux Enterprise 15, by providing packages which are discontinued on SUSE Linux Enterprise Server, such as: ntp, IBM Java 8, and a number of libraries.

Access to the Legacy Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself. Packages in the this module are usually supported for at most three years.

","shortname":"Legacy-Module","free":true,"cpe":"cpe:/o:suse:sle-module-legacy:15:sp1","product_type":"module","predecessor_ids":[1603],"repositories":[{"description":"SLE-Module-Legacy15-SP1-Updates for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-Legacy15-SP1-Updates","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/15-SP1/ppc64le/update/","distro_target":"sle-15-ppc64le","autorefresh":true,"id":3411,"enabled":true},{"enabled":false,"id":3412,"distro_target":"sle-15-ppc64le","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/15-SP1/ppc64le/update_debug/","installer_updates":false,"name":"SLE-Module-Legacy15-SP1-Debuginfo-Updates","description":"SLE-Module-Legacy15-SP1-Debuginfo-Updates for sle-15-ppc64le"},{"installer_updates":false,"name":"SLE-Module-Legacy15-SP1-Pool","description":"SLE-Module-Legacy15-SP1-Pool for sle-15-ppc64le","enabled":true,"id":3413,"distro_target":"sle-15-ppc64le","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15-SP1/ppc64le/product/"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15-SP1/ppc64le/product_debug/","autorefresh":false,"distro_target":"sle-15-ppc64le","id":3414,"enabled":false,"description":"SLE-Module-Legacy15-SP1-Debuginfo-Pool for sle-15-ppc64le","name":"SLE-Module-Legacy15-SP1-Debuginfo-Pool","installer_updates":false},{"enabled":false,"id":3415,"distro_target":"sle-15-ppc64le","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15-SP1/ppc64le/product_source/","installer_updates":false,"name":"SLE-Module-Legacy15-SP1-Source-Pool","description":"SLE-Module-Legacy15-SP1-Source-Pool for sle-15-ppc64le"}],"online_predecessor_ids":[1603],"product_class":"MODULE","name":"Legacy Module","offline_predecessor_ids":[1148],"friendly_name":"Legacy Module 15 SP1 ppc64le","migration_extra":true,"release_type":null,"former_identifier":"sle-module-legacy","recommended":false,"version":"15.1","extensions":[],"release_stage":"released","identifier":"sle-module-legacy","id":1802,"friendly_version":"15 SP1"},{"friendly_version":"15 SP1","release_stage":"released","id":1806,"identifier":"sle-module-public-cloud","extensions":[],"version":"15.1","recommended":false,"migration_extra":false,"friendly_name":"Public Cloud Module 15 SP1 ppc64le","release_type":null,"former_identifier":"sle-module-public-cloud","name":"Public Cloud Module","offline_predecessor_ids":[1218],"online_predecessor_ids":[1616],"product_class":"MODULE","repositories":[{"name":"SLE-Module-Public-Cloud15-SP1-Updates","installer_updates":false,"description":"SLE-Module-Public-Cloud15-SP1-Updates for sle-15-ppc64le","id":3431,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/15-SP1/ppc64le/update/","autorefresh":true,"distro_target":"sle-15-ppc64le"},{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/15-SP1/ppc64le/update_debug/","autorefresh":true,"distro_target":"sle-15-ppc64le","id":3432,"enabled":false,"description":"SLE-Module-Public-Cloud15-SP1-Debuginfo-Updates for sle-15-ppc64le","name":"SLE-Module-Public-Cloud15-SP1-Debuginfo-Updates","installer_updates":false},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP1/ppc64le/product/","autorefresh":false,"distro_target":"sle-15-ppc64le","id":3433,"enabled":true,"description":"SLE-Module-Public-Cloud15-SP1-Pool for sle-15-ppc64le","name":"SLE-Module-Public-Cloud15-SP1-Pool","installer_updates":false},{"distro_target":"sle-15-ppc64le","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP1/ppc64le/product_debug/","enabled":false,"id":3434,"description":"SLE-Module-Public-Cloud15-SP1-Debuginfo-Pool for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-Public-Cloud15-SP1-Debuginfo-Pool"},{"description":"SLE-Module-Public-Cloud15-SP1-Source-Pool for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-Public-Cloud15-SP1-Source-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP1/ppc64le/product_source/","distro_target":"sle-15-ppc64le","autorefresh":false,"id":3435,"enabled":false}],"predecessor_ids":[1616],"cpe":"cpe:/o:suse:sle-module-public-cloud:15:sp1","product_type":"module","description":"

The Public Cloud Module is a collection of tools that enables you to create and manage cloud images from the commandline on SUSE Linux Enterprise Server. When building your own images with KIWI or SUSE Studio, initialization code specific to the target cloud is included in that image.

Access to the Public Cloud Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself; please check the Release Notes for further details.

","shortname":"Public-Cloud-Module","free":true,"arch":"ppc64le","eula_url":""},{"predecessor_ids":[],"product_class":"MODULE","online_predecessor_ids":[],"repositories":[{"description":"IBM-POWER-Adv-Toolchain","name":"IBM-POWER-Adv-Toolchain","installer_updates":false,"autorefresh":true,"distro_target":null,"url":"https://public.dhe.ibm.com/software/server/POWER/Linux/toolchain/at/suse/SLES_15/","enabled":true,"id":4430}],"product_type":"extension","cpe":"cpe:/o:suse:ibm-power-advance-toolchain:15","free":true,"description":"IBM POWER Advance Toolchain for SLE 15","shortname":"IBMPWAT15","eula_url":"","arch":"ppc64le","friendly_version":"15","extensions":[],"identifier":"ibm-power-advance-toolchain","release_stage":"released","id":2076,"recommended":false,"version":"15","offline_predecessor_ids":[1249],"name":"IBM POWER Advance Toolchain for SLE","release_type":null,"former_identifier":"ibm-power-advance-toolchain","friendly_name":"IBM POWER Advance Toolchain for SLE 15 ppc64le","migration_extra":false},{"friendly_version":"15","extensions":[],"identifier":"ibm-power-tools","release_stage":"released","id":2077,"recommended":false,"version":"15","name":"IBM POWER Tools for SLE","offline_predecessor_ids":[1250],"friendly_name":"IBM POWER Tools for SLE 15 ppc64le","migration_extra":false,"former_identifier":"ibm-power-tools","release_type":null,"predecessor_ids":[],"repositories":[{"id":4431,"enabled":true,"url":"https://public.dhe.ibm.com/software/server/POWER/Linux/yum/OSS/SLES/15/ppc64le/","autorefresh":true,"distro_target":null,"name":"IBM-POWER-Tools","installer_updates":false,"description":"IBM-POWER-Tools"}],"online_predecessor_ids":[],"product_class":"MODULE","cpe":"cpe:/o:suse:ibm-power-tools:15","product_type":"extension","description":"IBM POWER Tools for SLE 15","shortname":"IBMPWUT15","free":true,"eula_url":"https://public.dhe.ibm.com/software/server/POWER/Linux/yum/OSS/SLES/15/ppc64le.license/","arch":"ppc64le"}],"release_stage":"released","id":1778,"identifier":"sle-module-server-applications","friendly_version":"15 SP1","eula_url":"","arch":"ppc64le","free":true,"shortname":"Server-Applications-Module","description":"

The SUSE Linux Enterprise Server Applications Module delivers a basic set of Server functionality.

Access to the Server Applications Module is included in your SUSE Linux Enterprise Server subscription.

","product_type":"module","cpe":"cpe:/o:suse:sle-module-server-applications:15:sp1","predecessor_ids":[1600],"online_predecessor_ids":[1600],"product_class":"MODULE","repositories":[{"description":"SLE-Module-Server-Applications15-SP1-Updates for sle-15-ppc64le","name":"SLE-Module-Server-Applications15-SP1-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15-SP1/ppc64le/update/","enabled":true,"id":3291},{"distro_target":"sle-15-ppc64le","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15-SP1/ppc64le/update_debug/","enabled":false,"id":3292,"description":"SLE-Module-Server-Applications15-SP1-Debuginfo-Updates for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-Server-Applications15-SP1-Debuginfo-Updates"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP1/ppc64le/product/","distro_target":"sle-15-ppc64le","autorefresh":false,"id":3293,"enabled":true,"description":"SLE-Module-Server-Applications15-SP1-Pool for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-Server-Applications15-SP1-Pool"},{"description":"SLE-Module-Server-Applications15-SP1-Debuginfo-Pool for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-Server-Applications15-SP1-Debuginfo-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP1/ppc64le/product_debug/","distro_target":"sle-15-ppc64le","autorefresh":false,"id":3294,"enabled":false},{"enabled":false,"id":3295,"distro_target":"sle-15-ppc64le","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP1/ppc64le/product_source/","installer_updates":false,"name":"SLE-Module-Server-Applications15-SP1-Source-Pool","description":"SLE-Module-Server-Applications15-SP1-Source-Pool for sle-15-ppc64le"}]},{"cpe":"cpe:/o:suse:sle-module-containers:15:sp1","product_type":"module","predecessor_ids":[1640],"online_predecessor_ids":[1640],"product_class":"MODULE","repositories":[{"description":"SLE-Module-Containers15-SP1-Updates for sle-15-ppc64le","name":"SLE-Module-Containers15-SP1-Updates","installer_updates":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/15-SP1/ppc64le/update/","autorefresh":true,"distro_target":"sle-15-ppc64le","id":3341,"enabled":true},{"description":"SLE-Module-Containers15-SP1-Debuginfo-Updates for sle-15-ppc64le","name":"SLE-Module-Containers15-SP1-Debuginfo-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/15-SP1/ppc64le/update_debug/","enabled":false,"id":3342},{"name":"SLE-Module-Containers15-SP1-Pool","installer_updates":false,"description":"SLE-Module-Containers15-SP1-Pool for sle-15-ppc64le","enabled":true,"id":3343,"autorefresh":false,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP1/ppc64le/product/"},{"enabled":false,"id":3344,"autorefresh":false,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP1/ppc64le/product_debug/","name":"SLE-Module-Containers15-SP1-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-Containers15-SP1-Debuginfo-Pool for sle-15-ppc64le"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP1/ppc64le/product_source/","distro_target":"sle-15-ppc64le","autorefresh":false,"id":3345,"enabled":false,"description":"SLE-Module-Containers15-SP1-Source-Pool for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-Containers15-SP1-Source-Pool"}],"eula_url":"","arch":"ppc64le","shortname":"Containers-Module","description":"

This Module contains several packages revolving around containers and related tools.

","free":true,"extensions":[],"id":1788,"release_stage":"released","identifier":"sle-module-containers","friendly_version":"15 SP1","name":"Containers Module","offline_predecessor_ids":[1353],"migration_extra":false,"friendly_name":"Containers Module 15 SP1 ppc64le","release_type":null,"former_identifier":"sle-module-containers","recommended":false,"version":"15.1"},{"product_type":"extension","cpe":"cpe:/o:suse:sle-module-live-patching:15:sp1","online_predecessor_ids":[1735],"repositories":[{"description":"SLE-Module-Live-Patching15-SP1-Updates for sle-15-ppc64le","name":"SLE-Module-Live-Patching15-SP1-Updates","installer_updates":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Live-Patching/15-SP1/ppc64le/update/","autorefresh":true,"distro_target":"sle-15-ppc64le","id":3530,"enabled":true},{"installer_updates":false,"name":"SLE-Module-Live-Patching15-SP1-Debuginfo-Updates","description":"SLE-Module-Live-Patching15-SP1-Debuginfo-Updates for sle-15-ppc64le","enabled":false,"id":3531,"distro_target":"sle-15-ppc64le","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Live-Patching/15-SP1/ppc64le/update_debug/"},{"enabled":true,"id":3532,"distro_target":"sle-15-ppc64le","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Live-Patching/15-SP1/ppc64le/product/","installer_updates":false,"name":"SLE-Module-Live-Patching15-SP1-Pool","description":"SLE-Module-Live-Patching15-SP1-Pool for sle-15-ppc64le"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Live-Patching/15-SP1/ppc64le/product_debug/","distro_target":"sle-15-ppc64le","autorefresh":false,"id":3533,"enabled":false,"description":"SLE-Module-Live-Patching15-SP1-Debuginfo-Pool for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-Live-Patching15-SP1-Debuginfo-Pool"},{"enabled":false,"id":3534,"autorefresh":false,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Live-Patching/15-SP1/ppc64le/product_source/","name":"SLE-Module-Live-Patching15-SP1-Source-Pool","installer_updates":false,"description":"SLE-Module-Live-Patching15-SP1-Source-Pool for sle-15-ppc64le"}],"product_class":"SLE-LP-PPC","predecessor_ids":[1735],"arch":"ppc64le","eula_url":"","free":false,"description":"

SUSE Linux Enterprise Live Patching provides packages to update critical components in SUSE Linux Enterprise. With SUSE Linux Enterprise Live Patching, you can perform critical patching without shutting down your system, reducing the need for planned downtime and increasing service availability.

","shortname":"Live-Patching","identifier":"sle-module-live-patching","release_stage":"released","id":1827,"extensions":[],"friendly_version":"15 SP1","former_identifier":"sle-module-live-patching","release_type":null,"friendly_name":"SUSE Linux Enterprise Live Patching 15 SP1 ppc64le","migration_extra":false,"offline_predecessor_ids":[1537,1756,1887],"name":"SUSE Linux Enterprise Live Patching","version":"15.1","recommended":false},{"eula_url":"","arch":"ppc64le","shortname":"Python2-Module","description":"

This module contains the python 2 packages.

Access to the Python 2 Module is included in your SUSE Linux Enterprise subscription. The module has a different lifecycle than SUSE Linux Enterprise itself. Packages in the this module are usually supported for at most three years.

","free":true,"cpe":"cpe:/o:suse:sle-module-python2:15:sp1","product_type":"module","predecessor_ids":[],"product_class":"MODULE","online_predecessor_ids":[],"repositories":[{"description":"SLE-Module-Python2-15-SP1-Updates for sle-15-ppc64le","name":"SLE-Module-Python2-15-SP1-Updates","installer_updates":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Python2/15-SP1/ppc64le/update/","autorefresh":true,"distro_target":"sle-15-ppc64le","id":3588,"enabled":true},{"enabled":false,"id":3589,"autorefresh":true,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Python2/15-SP1/ppc64le/update_debug/","name":"SLE-Module-Python2-15-SP1-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-Python2-15-SP1-Debuginfo-Updates for sle-15-ppc64le"},{"distro_target":"sle-15-ppc64le","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Python2/15-SP1/ppc64le/product/","enabled":true,"id":3590,"description":"SLE-Module-Python2-15-SP1-Pool for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-Python2-15-SP1-Pool"},{"description":"SLE-Module-Python2-15-SP1-Debuginfo-Pool for sle-15-ppc64le","name":"SLE-Module-Python2-15-SP1-Debuginfo-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Python2/15-SP1/ppc64le/product_debug/","enabled":false,"id":3591},{"description":"SLE-Module-Python2-15-SP1-Source-Pool for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-Python2-15-SP1-Source-Pool","distro_target":"sle-15-ppc64le","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Python2/15-SP1/ppc64le/product_source/","enabled":false,"id":3592}],"name":"Python 2 Module","offline_predecessor_ids":[],"friendly_name":"Python 2 Module 15 SP1 ppc64le","migration_extra":false,"release_type":null,"former_identifier":"sle-module-python2","recommended":false,"version":"15.1","extensions":[],"identifier":"sle-module-python2","release_stage":"released","id":1865,"friendly_version":"15 SP1"},{"free":true,"description":"SUSE Package Hub is a free of charge extension providing access to community maintained packages built to run on SUSE Linux Enterprise Server. Built from the same sources used in the openSUSE distributions, these quality packages provide additional software to what is found in the SUSE Linux Enterprise Server product. Packages from the Package Hub are delivered without L3 support from SUSE. General updates and fixes to the packages in SUSE Package Hub are provided by the openSUSE community based on their discretion, though SUSE will monitor and ensure that any known critical security issues will be addressed. Packages in the Package Hub are approved by SUSE for use with SUSE Linux Enterprise Server 15-SP1 and to not interfere with the supportability of SUSE Linux Enterprise Server, its modules and extensions. For more information about SUSE Package Hub please visit https://packagehub.suse.com.","shortname":"SUSE-PackageHub-15","arch":"ppc64le","eula_url":"","repositories":[{"enabled":true,"id":3611,"autorefresh":false,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Backports/SLE-15-SP1_ppc64le/standard/","name":"SUSE-PackageHub-15-SP1-Backports-Pool","installer_updates":false,"description":"SUSE-PackageHub-15-SP1-Backports-Pool for sle-15-ppc64le"},{"name":"SUSE-PackageHub-15-SP1-Backports-Debuginfo","installer_updates":false,"description":"SUSE-PackageHub-15-SP1-Backports-Debuginfo for sle-15-ppc64le","id":3612,"enabled":false,"url":"https://updates.suse.com/SUSE/Backports/SLE-15-SP1_ppc64le/standard_debug/","autorefresh":true,"distro_target":"sle-15-ppc64le"},{"description":"SLE-Module-Packagehub-Subpackages15-SP1-Updates for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-Packagehub-Subpackages15-SP1-Updates","distro_target":"sle-15-ppc64le","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP1/ppc64le/update/","enabled":true,"id":3613},{"id":3614,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP1/ppc64le/update_debug/","distro_target":"sle-15-ppc64le","autorefresh":true,"installer_updates":false,"name":"SLE-Module-Packagehub-Subpackages15-SP1-Debuginfo-Updates","description":"SLE-Module-Packagehub-Subpackages15-SP1-Debuginfo-Updates for sle-15-ppc64le"},{"id":3615,"enabled":true,"url":"https://updates.suse.com/SUSE/Backports/SLE-15-SP1_ppc64le/product/","distro_target":"sle-15-ppc64le","autorefresh":false,"installer_updates":false,"name":"SUSE-PackageHub-15-SP1-Pool","description":"SUSE-PackageHub-15-SP1-Pool for sle-15-ppc64le"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP1/ppc64le/product/","autorefresh":false,"distro_target":"sle-15-ppc64le","id":3616,"enabled":true,"description":"SLE-Module-Packagehub-Subpackages15-SP1-Pool for sle-15-ppc64le","name":"SLE-Module-Packagehub-Subpackages15-SP1-Pool","installer_updates":false},{"name":"SLE-Module-Packagehub-Subpackages15-SP1-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-Packagehub-Subpackages15-SP1-Debuginfo-Pool for sle-15-ppc64le","id":3617,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP1/ppc64le/product_debug/","autorefresh":false,"distro_target":"sle-15-ppc64le"},{"name":"SLE-Module-Packagehub-Subpackages15-SP1-Source-Pool","installer_updates":false,"description":"SLE-Module-Packagehub-Subpackages15-SP1-Source-Pool for sle-15-ppc64le","id":3618,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP1/ppc64le/product_source/","autorefresh":false,"distro_target":"sle-15-ppc64le"}],"online_predecessor_ids":[1741],"product_class":"MODULE","predecessor_ids":[1741],"product_type":"extension","cpe":"cpe:/o:suse:packagehub:15:sp1","version":"15.1","recommended":false,"former_identifier":"PackageHub","release_type":null,"migration_extra":false,"friendly_name":"SUSE Package Hub 15 SP1 ppc64le","offline_predecessor_ids":[1531,1811,1913],"name":"SUSE Package Hub","friendly_version":"15 SP1","release_stage":"released","identifier":"PackageHub","id":1869,"extensions":[]}],"identifier":"sle-module-basesystem","release_stage":"released","id":1770,"friendly_version":"15 SP1","offline_predecessor_ids":[1294],"name":"Basesystem Module","former_identifier":"sle-module-basesystem","release_type":null,"migration_extra":false,"friendly_name":"Basesystem Module 15 SP1 ppc64le","recommended":true,"version":"15.1"}],"release_stage":"released","id":1765,"identifier":"SLES_SAP","friendly_version":"15 SP1","eula_url":"https://updates.suse.com/SUSE/Products/SLE-Product-SLES_SAP/15-SP1/ppc64le/product.license/","arch":"ppc64le","shortname":"SLE-15-SP1-SAP","description":"SUSE Linux Enterprise offers a comprehensive suite of products built on a single code base. The platform addresses business needs from the smallest thin-client devices to the world's most powerful high-performance computing and mainframe servers. SUSE Linux Enterprise offers common management tools and technology certifications across the platform, and each product is enterprise-class.","free":false,"cpe":"cpe:/o:suse:sles_sap:15:sp1","product_type":"base","predecessor_ids":[1613],"repositories":[{"description":"SLE-Product-SLES_SAP15-SP1-Updates for sle-15-ppc64le","name":"SLE-Product-SLES_SAP15-SP1-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Updates/SLE-Product-SLES_SAP/15-SP1/ppc64le/update/","enabled":true,"id":3226},{"installer_updates":false,"name":"SLE-Product-SLES_SAP15-SP1-Debuginfo-Updates","description":"SLE-Product-SLES_SAP15-SP1-Debuginfo-Updates for sle-15-ppc64le","id":3227,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-SLES_SAP/15-SP1/ppc64le/update_debug/","distro_target":"sle-15-ppc64le","autorefresh":true},{"name":"SLE-Product-SLES_SAP15-SP1-Pool","installer_updates":false,"description":"SLE-Product-SLES_SAP15-SP1-Pool for sle-15-ppc64le","id":3228,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-SLES_SAP/15-SP1/ppc64le/product/","autorefresh":false,"distro_target":"sle-15-ppc64le"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Product-SLES_SAP/15-SP1/ppc64le/product_debug/","distro_target":"sle-15-ppc64le","autorefresh":false,"id":3229,"enabled":false,"description":"SLE-Product-SLES_SAP15-SP1-Debuginfo-Pool for sle-15-ppc64le","installer_updates":false,"name":"SLE-Product-SLES_SAP15-SP1-Debuginfo-Pool"},{"description":"SLE-Product-SLES_SAP15-SP1-Source-Pool for sle-15-ppc64le","name":"SLE-Product-SLES_SAP15-SP1-Source-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Products/SLE-Product-SLES_SAP/15-SP1/ppc64le/product_source/","enabled":false,"id":3230}],"online_predecessor_ids":[1613],"product_class":"AiO-PPC"},{"recommended":false,"version":"15.1","name":"SUSE Linux Enterprise Server for SAP Applications","offline_predecessor_ids":[1329,1426,1755,1880],"friendly_name":"SUSE Linux Enterprise Server for SAP Applications 15 SP1 x86_64","migration_extra":false,"former_identifier":"SUSE_SLES_SAP","release_type":null,"friendly_version":"15 SP1","extensions":[{"extensions":[{"product_type":"module","cpe":"cpe:/o:suse:sle-module-desktop-applications:15:sp1","online_predecessor_ids":[1578],"repositories":[{"enabled":true,"id":3281,"distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15-SP1/x86_64/update/","installer_updates":false,"name":"SLE-Module-Desktop-Applications15-SP1-Updates","description":"SLE-Module-Desktop-Applications15-SP1-Updates for sle-15-x86_64"},{"description":"SLE-Module-Desktop-Applications15-SP1-Debuginfo-Updates for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Desktop-Applications15-SP1-Debuginfo-Updates","distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15-SP1/x86_64/update_debug/","enabled":false,"id":3282},{"id":3283,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP1/x86_64/product/","distro_target":"sle-15-x86_64","autorefresh":false,"installer_updates":false,"name":"SLE-Module-Desktop-Applications15-SP1-Pool","description":"SLE-Module-Desktop-Applications15-SP1-Pool for sle-15-x86_64"},{"description":"SLE-Module-Desktop-Applications15-SP1-Debuginfo-Pool for sle-15-x86_64","name":"SLE-Module-Desktop-Applications15-SP1-Debuginfo-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP1/x86_64/product_debug/","enabled":false,"id":3284},{"name":"SLE-Module-Desktop-Applications15-SP1-Source-Pool","installer_updates":false,"description":"SLE-Module-Desktop-Applications15-SP1-Source-Pool for sle-15-x86_64","enabled":false,"id":3285,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP1/x86_64/product_source/"}],"product_class":"MODULE","predecessor_ids":[1578],"arch":"x86_64","eula_url":"","free":true,"description":"

The SUSE Linux Enterprise Desktop Applications Module delivers a basic set of Desktop functionality.

Access to the Desktop Applications Module is included in your SUSE Linux Enterprise product subscription.

","shortname":"Desktop-Applications-Module","release_stage":"released","identifier":"sle-module-desktop-applications","id":1776,"extensions":[{"recommended":false,"version":"15.1","offline_predecessor_ids":[1431,1639,1893],"name":"SUSE Linux Enterprise Workstation Extension","release_type":null,"former_identifier":"sle-we","friendly_name":"SUSE Linux Enterprise Workstation Extension 15 SP1 x86_64","migration_extra":false,"friendly_version":"15 SP1","extensions":[],"identifier":"sle-we","release_stage":"released","id":1781,"free":false,"shortname":"SLEWE15-SP1","description":"SUSE Linux Enterprise Workstation Extension adds additional functionality to a base SUSE Linux Enterprise installation. The Workstation Extension offers additional desktop applications (office suite, email client, graphical editor, multimedia tools) and libraries. Workstation Extension is enabled and installed by default on SUSE Linux Enterprise Desktop installation. Adding the Workstation Extension to a SUSE Linux Enterprise Server installation allows to seamlessly combine both products to create a full featured server workstation.","eula_url":"https://updates.suse.com/SUSE/Products/SLE-Product-WE/15-SP1/x86_64/product.license/","arch":"x86_64","predecessor_ids":[1583],"repositories":[{"id":3306,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-WE/15-SP1/x86_64/update/","distro_target":"sle-15-x86_64","autorefresh":true,"installer_updates":false,"name":"SLE-Product-WE15-SP1-Updates","description":"SLE-Product-WE15-SP1-Updates for sle-15-x86_64"},{"id":3307,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-WE/15-SP1/x86_64/update_debug/","distro_target":"sle-15-x86_64","autorefresh":true,"installer_updates":false,"name":"SLE-Product-WE15-SP1-Debuginfo-Updates","description":"SLE-Product-WE15-SP1-Debuginfo-Updates for sle-15-x86_64"},{"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Product-WE/15-SP1/x86_64/product/","enabled":true,"id":3308,"description":"SLE-Product-WE15-SP1-Pool for sle-15-x86_64","name":"SLE-Product-WE15-SP1-Pool","installer_updates":false},{"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Product-WE/15-SP1/x86_64/product_debug/","enabled":false,"id":3309,"description":"SLE-Product-WE15-SP1-Debuginfo-Pool for sle-15-x86_64","name":"SLE-Product-WE15-SP1-Debuginfo-Pool","installer_updates":false},{"url":"https://updates.suse.com/SUSE/Products/SLE-Product-WE/15-SP1/x86_64/product_source/","autorefresh":false,"distro_target":"sle-15-x86_64","id":3310,"enabled":false,"description":"SLE-Product-WE15-SP1-Source-Pool for sle-15-x86_64","name":"SLE-Product-WE15-SP1-Source-Pool","installer_updates":false},{"url":"https://download.nvidia.com/suse/sle15sp1/","autorefresh":true,"distro_target":null,"id":3792,"enabled":true,"description":"SLE-15-SP1-Desktop-NVIDIA-Driver","name":"SLE-15-SP1-Desktop-NVIDIA-Driver","installer_updates":false}],"online_predecessor_ids":[1583],"product_class":"SLE-WE","product_type":"extension","cpe":"cpe:/o:suse:sle-we:15:sp1"},{"online_predecessor_ids":[1579],"repositories":[{"description":"SLE-Module-DevTools15-SP1-Updates for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-DevTools15-SP1-Updates","distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15-SP1/x86_64/update/","enabled":true,"id":3371},{"id":3372,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15-SP1/x86_64/update_debug/","distro_target":"sle-15-x86_64","autorefresh":true,"installer_updates":false,"name":"SLE-Module-DevTools15-SP1-Debuginfo-Updates","description":"SLE-Module-DevTools15-SP1-Debuginfo-Updates for sle-15-x86_64"},{"description":"SLE-Module-DevTools15-SP1-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-DevTools15-SP1-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP1/x86_64/product/","distro_target":"sle-15-x86_64","autorefresh":false,"id":3373,"enabled":true},{"description":"SLE-Module-DevTools15-SP1-Debuginfo-Pool for sle-15-x86_64","name":"SLE-Module-DevTools15-SP1-Debuginfo-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP1/x86_64/product_debug/","autorefresh":false,"distro_target":"sle-15-x86_64","id":3374,"enabled":false},{"id":3375,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP1/x86_64/product_source/","distro_target":"sle-15-x86_64","autorefresh":false,"installer_updates":false,"name":"SLE-Module-DevTools15-SP1-Source-Pool","description":"SLE-Module-DevTools15-SP1-Source-Pool for sle-15-x86_64"}],"product_class":"MODULE","predecessor_ids":[1579],"product_type":"module","cpe":"cpe:/o:suse:sle-module-development-tools:15:sp1","free":true,"description":"

The Development Tools Module helps you developing applications for SUSE Linux Enterprise 15.

Access to the Development Tools Module is included in your SUSE Linux Enterprise product subscription. The module has a different lifecycle than SUSE Linux Enterprise itself.

","shortname":"Development-Tools-Module","arch":"x86_64","eula_url":"","friendly_version":"15 SP1","identifier":"sle-module-development-tools","release_stage":"released","id":1794,"extensions":[],"version":"15.1","recommended":false,"release_type":null,"former_identifier":"sle-sdk","migration_extra":false,"friendly_name":"Development Tools Module 15 SP1 x86_64","offline_predecessor_ids":[1223,1323,1341,1366,1427,1630,1892],"name":"Development Tools Module"}],"friendly_version":"15 SP1","former_identifier":"sle-module-desktop-applications","release_type":null,"migration_extra":false,"friendly_name":"Desktop Applications Module 15 SP1 x86_64","offline_predecessor_ids":[],"name":"Desktop Applications Module","version":"15.1","recommended":true},{"recommended":true,"version":"15.1","offline_predecessor_ids":[],"name":"Server Applications Module","former_identifier":"sle-module-server-applications","release_type":null,"friendly_name":"Server Applications Module 15 SP1 x86_64","migration_extra":false,"friendly_version":"15 SP1","extensions":[{"predecessor_ids":[1582],"online_predecessor_ids":[1582],"product_class":"SLE-HAE-X86","repositories":[{"name":"SLE-Product-HA15-SP1-Updates","installer_updates":false,"description":"SLE-Product-HA15-SP1-Updates for sle-15-x86_64","enabled":true,"id":3326,"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Product-HA/15-SP1/x86_64/update/"},{"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Product-HA/15-SP1/x86_64/update_debug/","enabled":false,"id":3327,"description":"SLE-Product-HA15-SP1-Debuginfo-Updates for sle-15-x86_64","name":"SLE-Product-HA15-SP1-Debuginfo-Updates","installer_updates":false},{"installer_updates":false,"name":"SLE-Product-HA15-SP1-Pool","description":"SLE-Product-HA15-SP1-Pool for sle-15-x86_64","enabled":true,"id":3328,"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP1/x86_64/product/"},{"installer_updates":false,"name":"SLE-Product-HA15-SP1-Debuginfo-Pool","description":"SLE-Product-HA15-SP1-Debuginfo-Pool for sle-15-x86_64","enabled":false,"id":3329,"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP1/x86_64/product_debug/"},{"description":"SLE-Product-HA15-SP1-Source-Pool for sle-15-x86_64","name":"SLE-Product-HA15-SP1-Source-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP1/x86_64/product_source/","enabled":false,"id":3330}],"product_type":"extension","cpe":"cpe:/o:suse:sle-ha:15:sp1","free":false,"shortname":"SLEHA15-SP1","description":"SUSE Linux High Availability Extension provides mature, industry-leading open-source high-availability clustering technologies that are easy to set up and use. It can be deployed in physical and/or virtual environments, and can cluster physical servers, virtual servers, or any combination of the two to suit your business’ needs.","eula_url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP1/x86_64/product.license/","arch":"x86_64","friendly_version":"15 SP1","extensions":[{"extensions":[],"release_stage":"released","id":1787,"identifier":"sle-module-sap-applications","friendly_version":"15 SP1","offline_predecessor_ids":[],"name":"SAP Applications Module","former_identifier":"sle-module-sap-applications","release_type":null,"friendly_name":"SAP Applications Module 15 SP1 x86_64","migration_extra":false,"recommended":true,"version":"15.1","product_type":"module","cpe":"cpe:/o:suse:sle-module-sap-applications:15:sp1","predecessor_ids":[1727],"repositories":[{"name":"SLE-Module-SAP-Applications15-SP1-Updates","installer_updates":false,"description":"SLE-Module-SAP-Applications15-SP1-Updates for sle-15-x86_64","id":3336,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-SAP-Applications/15-SP1/x86_64/update/","autorefresh":true,"distro_target":"sle-15-x86_64"},{"distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-SAP-Applications/15-SP1/x86_64/update_debug/","enabled":false,"id":3337,"description":"SLE-Module-SAP-Applications15-SP1-Debuginfo-Updates for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-SAP-Applications15-SP1-Debuginfo-Updates"},{"description":"SLE-Module-SAP-Applications15-SP1-Pool for sle-15-x86_64","name":"SLE-Module-SAP-Applications15-SP1-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-SAP-Applications/15-SP1/x86_64/product/","autorefresh":false,"distro_target":"sle-15-x86_64","id":3338,"enabled":true},{"id":3339,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-SAP-Applications/15-SP1/x86_64/product_debug/","distro_target":"sle-15-x86_64","autorefresh":false,"installer_updates":false,"name":"SLE-Module-SAP-Applications15-SP1-Debuginfo-Pool","description":"SLE-Module-SAP-Applications15-SP1-Debuginfo-Pool for sle-15-x86_64"},{"description":"SLE-Module-SAP-Applications15-SP1-Source-Pool for sle-15-x86_64","name":"SLE-Module-SAP-Applications15-SP1-Source-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-SAP-Applications/15-SP1/x86_64/product_source/","enabled":false,"id":3340}],"online_predecessor_ids":[1727],"product_class":"MODULE","eula_url":"","arch":"x86_64","free":true,"shortname":"SAP-Applications-Module","description":"

The SAP Applications module contains the specialized tools for SAP Applications administration.

The module is maintained and supported by the SUSE Linux Enterprise Server for SAP Applications product subscription.

"}],"release_stage":"released","id":1785,"identifier":"sle-ha","recommended":true,"version":"15.1","offline_predecessor_ids":[958,961,967,971,1101,1107,1256,1286,1432,1435,1634,1637,1884,1886],"name":"SUSE Linux Enterprise High Availability Extension","release_type":null,"former_identifier":"sle-ha","friendly_name":"SUSE Linux Enterprise High Availability Extension 15 SP1 x86_64","migration_extra":false},{"repositories":[{"name":"SLE-Module-Web-Scripting15-SP1-Updates","installer_updates":false,"description":"SLE-Module-Web-Scripting15-SP1-Updates for sle-15-x86_64","id":3391,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/15-SP1/x86_64/update/","autorefresh":true,"distro_target":"sle-15-x86_64"},{"enabled":false,"id":3392,"distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/15-SP1/x86_64/update_debug/","installer_updates":false,"name":"SLE-Module-Web-Scripting15-SP1-Debuginfo-Updates","description":"SLE-Module-Web-Scripting15-SP1-Debuginfo-Updates for sle-15-x86_64"},{"description":"SLE-Module-Web-Scripting15-SP1-Pool for sle-15-x86_64","name":"SLE-Module-Web-Scripting15-SP1-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP1/x86_64/product/","autorefresh":false,"distro_target":"sle-15-x86_64","id":3393,"enabled":true},{"description":"SLE-Module-Web-Scripting15-SP1-Debuginfo-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Web-Scripting15-SP1-Debuginfo-Pool","distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP1/x86_64/product_debug/","enabled":false,"id":3394},{"installer_updates":false,"name":"SLE-Module-Web-Scripting15-SP1-Source-Pool","description":"SLE-Module-Web-Scripting15-SP1-Source-Pool for sle-15-x86_64","id":3395,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP1/x86_64/product_source/","distro_target":"sle-15-x86_64","autorefresh":false}],"online_predecessor_ids":[1721],"product_class":"MODULE","predecessor_ids":[1721],"cpe":"cpe:/o:suse:sle-module-web-scripting:15:sp1","product_type":"module","description":"

The SUSE Linux Enterprise Web and Scripting Module should contains additional packages that are helpful when running a webserver.

Access to the Web and Scripting Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself: Package versions in this module are usually supported for at most three years. We are planning to release more recent versions on a schedule of approximately 18 month; the exact dates may differ per package.

","shortname":"Web-Scripting-Module","free":true,"arch":"x86_64","eula_url":"","friendly_version":"15 SP1","release_stage":"released","identifier":"sle-module-web-scripting","id":1798,"extensions":[],"version":"15.1","recommended":false,"friendly_name":"Web and Scripting Module 15 SP1 x86_64","migration_extra":false,"former_identifier":"sle-module-web-scripting","release_type":null,"name":"Web and Scripting Module","offline_predecessor_ids":[1153]},{"cpe":"cpe:/o:suse:sle-module-legacy:15:sp1","product_type":"module","online_predecessor_ids":[1581],"repositories":[{"installer_updates":false,"name":"SLE-Module-Legacy15-SP1-Updates","description":"SLE-Module-Legacy15-SP1-Updates for sle-15-x86_64","id":3421,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/15-SP1/x86_64/update/","distro_target":"sle-15-x86_64","autorefresh":true},{"enabled":false,"id":3422,"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/15-SP1/x86_64/update_debug/","name":"SLE-Module-Legacy15-SP1-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-Legacy15-SP1-Debuginfo-Updates for sle-15-x86_64"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15-SP1/x86_64/product/","autorefresh":false,"distro_target":"sle-15-x86_64","id":3423,"enabled":true,"description":"SLE-Module-Legacy15-SP1-Pool for sle-15-x86_64","name":"SLE-Module-Legacy15-SP1-Pool","installer_updates":false},{"installer_updates":false,"name":"SLE-Module-Legacy15-SP1-Debuginfo-Pool","description":"SLE-Module-Legacy15-SP1-Debuginfo-Pool for sle-15-x86_64","enabled":false,"id":3424,"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15-SP1/x86_64/product_debug/"},{"name":"SLE-Module-Legacy15-SP1-Source-Pool","installer_updates":false,"description":"SLE-Module-Legacy15-SP1-Source-Pool for sle-15-x86_64","id":3425,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15-SP1/x86_64/product_source/","autorefresh":false,"distro_target":"sle-15-x86_64"}],"product_class":"MODULE","predecessor_ids":[1581],"arch":"x86_64","eula_url":"","description":"

The Legacy Module helps you migrating applications from SUSE Linux Enterprise 12 and other systems to SUSE Linux Enterprise 15, by providing packages which are discontinued on SUSE Linux Enterprise Server, such as: ntp, IBM Java 8, and a number of libraries.

Access to the Legacy Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself. Packages in the this module are usually supported for at most three years.

","shortname":"Legacy-Module","free":true,"release_stage":"released","id":1804,"identifier":"sle-module-legacy","extensions":[],"friendly_version":"15 SP1","friendly_name":"Legacy Module 15 SP1 x86_64","migration_extra":true,"release_type":null,"former_identifier":"sle-module-legacy","name":"Legacy Module","offline_predecessor_ids":[1150],"version":"15.1","recommended":false},{"offline_predecessor_ids":[1220],"name":"Public Cloud Module","former_identifier":"sle-module-public-cloud","release_type":null,"migration_extra":false,"friendly_name":"Public Cloud Module 15 SP1 x86_64","recommended":false,"version":"15.1","extensions":[],"release_stage":"released","id":1808,"identifier":"sle-module-public-cloud","friendly_version":"15 SP1","eula_url":"","arch":"x86_64","free":true,"description":"

The Public Cloud Module is a collection of tools that enables you to create and manage cloud images from the commandline on SUSE Linux Enterprise Server. When building your own images with KIWI or SUSE Studio, initialization code specific to the target cloud is included in that image.

Access to the Public Cloud Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself; please check the Release Notes for further details.

","shortname":"Public-Cloud-Module","product_type":"module","cpe":"cpe:/o:suse:sle-module-public-cloud:15:sp1","predecessor_ids":[1611],"repositories":[{"distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/15-SP1/x86_64/update/","enabled":true,"id":3441,"description":"SLE-Module-Public-Cloud15-SP1-Updates for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Public-Cloud15-SP1-Updates"},{"id":3442,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/15-SP1/x86_64/update_debug/","distro_target":"sle-15-x86_64","autorefresh":true,"installer_updates":false,"name":"SLE-Module-Public-Cloud15-SP1-Debuginfo-Updates","description":"SLE-Module-Public-Cloud15-SP1-Debuginfo-Updates for sle-15-x86_64"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP1/x86_64/product/","distro_target":"sle-15-x86_64","autorefresh":false,"id":3443,"enabled":true,"description":"SLE-Module-Public-Cloud15-SP1-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Public-Cloud15-SP1-Pool"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP1/x86_64/product_debug/","distro_target":"sle-15-x86_64","autorefresh":false,"id":3444,"enabled":false,"description":"SLE-Module-Public-Cloud15-SP1-Debuginfo-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Public-Cloud15-SP1-Debuginfo-Pool"},{"id":3445,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP1/x86_64/product_source/","distro_target":"sle-15-x86_64","autorefresh":false,"installer_updates":false,"name":"SLE-Module-Public-Cloud15-SP1-Source-Pool","description":"SLE-Module-Public-Cloud15-SP1-Source-Pool for sle-15-x86_64"}],"online_predecessor_ids":[1611],"product_class":"MODULE"}],"identifier":"sle-module-server-applications","release_stage":"released","id":1780,"free":true,"description":"

The SUSE Linux Enterprise Server Applications Module delivers a basic set of Server functionality.

Access to the Server Applications Module is included in your SUSE Linux Enterprise Server subscription.

","shortname":"Server-Applications-Module","eula_url":"","arch":"x86_64","predecessor_ids":[1580],"product_class":"MODULE","online_predecessor_ids":[1580],"repositories":[{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15-SP1/x86_64/update/","distro_target":"sle-15-x86_64","autorefresh":true,"id":3301,"enabled":true,"description":"SLE-Module-Server-Applications15-SP1-Updates for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Server-Applications15-SP1-Updates"},{"installer_updates":false,"name":"SLE-Module-Server-Applications15-SP1-Debuginfo-Updates","description":"SLE-Module-Server-Applications15-SP1-Debuginfo-Updates for sle-15-x86_64","id":3302,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15-SP1/x86_64/update_debug/","distro_target":"sle-15-x86_64","autorefresh":true},{"description":"SLE-Module-Server-Applications15-SP1-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Server-Applications15-SP1-Pool","distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP1/x86_64/product/","enabled":true,"id":3303},{"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP1/x86_64/product_debug/","enabled":false,"id":3304,"description":"SLE-Module-Server-Applications15-SP1-Debuginfo-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Server-Applications15-SP1-Debuginfo-Pool"},{"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP1/x86_64/product_source/","enabled":false,"id":3305,"description":"SLE-Module-Server-Applications15-SP1-Source-Pool for sle-15-x86_64","name":"SLE-Module-Server-Applications15-SP1-Source-Pool","installer_updates":false}],"product_type":"module","cpe":"cpe:/o:suse:sle-module-server-applications:15:sp1"},{"eula_url":"","arch":"x86_64","shortname":"Containers-Module","description":"

This Module contains several packages revolving around containers and related tools.

","free":true,"cpe":"cpe:/o:suse:sle-module-containers:15:sp1","product_type":"module","predecessor_ids":[1642],"online_predecessor_ids":[1642],"product_class":"MODULE","repositories":[{"name":"SLE-Module-Containers15-SP1-Updates","installer_updates":false,"description":"SLE-Module-Containers15-SP1-Updates for sle-15-x86_64","id":3351,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/15-SP1/x86_64/update/","autorefresh":true,"distro_target":"sle-15-x86_64"},{"name":"SLE-Module-Containers15-SP1-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-Containers15-SP1-Debuginfo-Updates for sle-15-x86_64","enabled":false,"id":3352,"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/15-SP1/x86_64/update_debug/"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP1/x86_64/product/","distro_target":"sle-15-x86_64","autorefresh":false,"id":3353,"enabled":true,"description":"SLE-Module-Containers15-SP1-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Containers15-SP1-Pool"},{"description":"SLE-Module-Containers15-SP1-Debuginfo-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Containers15-SP1-Debuginfo-Pool","distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP1/x86_64/product_debug/","enabled":false,"id":3354},{"id":3355,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP1/x86_64/product_source/","autorefresh":false,"distro_target":"sle-15-x86_64","name":"SLE-Module-Containers15-SP1-Source-Pool","installer_updates":false,"description":"SLE-Module-Containers15-SP1-Source-Pool for sle-15-x86_64"}],"name":"Containers Module","offline_predecessor_ids":[1332],"friendly_name":"Containers Module 15 SP1 x86_64","migration_extra":false,"former_identifier":"sle-module-containers","release_type":null,"recommended":false,"version":"15.1","extensions":[],"id":1790,"release_stage":"released","identifier":"sle-module-containers","friendly_version":"15 SP1"},{"identifier":"sle-module-cap-tools","release_stage":"released","id":1809,"extensions":[],"friendly_version":"15 SP1","release_type":null,"former_identifier":"sle-module-cap-tools","migration_extra":false,"friendly_name":"SUSE Cloud Application Platform Tools Module 15 SP1 x86_64","offline_predecessor_ids":[1678],"name":"SUSE Cloud Application Platform Tools Module","version":"15.1","recommended":false,"product_type":"module","cpe":"cpe:/o:suse:sle-module-cap-tools:15:sp1","online_predecessor_ids":[1728],"product_class":"MODULE","repositories":[{"name":"SLE-Module-CAP-Tools15-SP1-Updates","installer_updates":false,"description":"SLE-Module-CAP-Tools15-SP1-Updates for sle-15-x86_64","id":3446,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-CAP-Tools/15-SP1/x86_64/update/","autorefresh":true,"distro_target":"sle-15-x86_64"},{"description":"SLE-Module-CAP-Tools15-SP1-Debuginfo-Updates for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-CAP-Tools15-SP1-Debuginfo-Updates","distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-CAP-Tools/15-SP1/x86_64/update_debug/","enabled":false,"id":3447},{"description":"SLE-Module-CAP-Tools15-SP1-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-CAP-Tools15-SP1-Pool","distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-CAP-Tools/15-SP1/x86_64/product/","enabled":true,"id":3448},{"enabled":false,"id":3449,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-CAP-Tools/15-SP1/x86_64/product_debug/","name":"SLE-Module-CAP-Tools15-SP1-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-CAP-Tools15-SP1-Debuginfo-Pool for sle-15-x86_64"},{"enabled":false,"id":3450,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-CAP-Tools/15-SP1/x86_64/product_source/","name":"SLE-Module-CAP-Tools15-SP1-Source-Pool","installer_updates":false,"description":"SLE-Module-CAP-Tools15-SP1-Source-Pool for sle-15-x86_64"}],"predecessor_ids":[1728],"arch":"x86_64","eula_url":"","free":true,"description":"

The SUSE Cloud Application Platform Tools Module is a collection of tools that enables you to interact with the SUSE Cloud Application Platform product itself, providing the commandline client for instance.

Access to the SUSE Cloud Application Platform Tools Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself; please check the Release Notes for further details.

","shortname":"SUSE-CAP-Tools-Module"},{"repositories":[{"enabled":true,"id":3535,"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Live-Patching/15-SP1/x86_64/update/","name":"SLE-Module-Live-Patching15-SP1-Updates","installer_updates":false,"description":"SLE-Module-Live-Patching15-SP1-Updates for sle-15-x86_64"},{"installer_updates":false,"name":"SLE-Module-Live-Patching15-SP1-Debuginfo-Updates","description":"SLE-Module-Live-Patching15-SP1-Debuginfo-Updates for sle-15-x86_64","id":3536,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Live-Patching/15-SP1/x86_64/update_debug/","distro_target":"sle-15-x86_64","autorefresh":true},{"name":"SLE-Module-Live-Patching15-SP1-Pool","installer_updates":false,"description":"SLE-Module-Live-Patching15-SP1-Pool for sle-15-x86_64","enabled":true,"id":3537,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Live-Patching/15-SP1/x86_64/product/"},{"id":3538,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Live-Patching/15-SP1/x86_64/product_debug/","autorefresh":false,"distro_target":"sle-15-x86_64","name":"SLE-Module-Live-Patching15-SP1-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-Live-Patching15-SP1-Debuginfo-Pool for sle-15-x86_64"},{"description":"SLE-Module-Live-Patching15-SP1-Source-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Live-Patching15-SP1-Source-Pool","distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Live-Patching/15-SP1/x86_64/product_source/","enabled":false,"id":3539}],"online_predecessor_ids":[1736],"product_class":"SLE-LP","predecessor_ids":[1736],"product_type":"extension","cpe":"cpe:/o:suse:sle-module-live-patching:15:sp1","free":false,"description":"

SUSE Linux Enterprise Live Patching provides packages to update critical components in SUSE Linux Enterprise. With SUSE Linux Enterprise Live Patching, you can perform critical patching without shutting down your system, reducing the need for planned downtime and increasing service availability.

","shortname":"Live-Patching","arch":"x86_64","eula_url":"","friendly_version":"15 SP1","identifier":"sle-module-live-patching","release_stage":"released","id":1828,"extensions":[],"version":"15.1","recommended":false,"former_identifier":"sle-module-live-patching","release_type":null,"friendly_name":"SUSE Linux Enterprise Live Patching 15 SP1 x86_64","migration_extra":false,"offline_predecessor_ids":[1536,1757,1888],"name":"SUSE Linux Enterprise Live Patching"},{"shortname":"Python2-Module","description":"

This module contains the python 2 packages.

Access to the Python 2 Module is included in your SUSE Linux Enterprise subscription. The module has a different lifecycle than SUSE Linux Enterprise itself. Packages in the this module are usually supported for at most three years.

","free":true,"eula_url":"","arch":"x86_64","predecessor_ids":[],"product_class":"MODULE","online_predecessor_ids":[],"repositories":[{"name":"SLE-Module-Python2-15-SP1-Updates","installer_updates":false,"description":"SLE-Module-Python2-15-SP1-Updates for sle-15-x86_64","id":3598,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Python2/15-SP1/x86_64/update/","autorefresh":true,"distro_target":"sle-15-x86_64"},{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Python2/15-SP1/x86_64/update_debug/","distro_target":"sle-15-x86_64","autorefresh":true,"id":3599,"enabled":false,"description":"SLE-Module-Python2-15-SP1-Debuginfo-Updates for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Python2-15-SP1-Debuginfo-Updates"},{"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Python2/15-SP1/x86_64/product/","enabled":true,"id":3600,"description":"SLE-Module-Python2-15-SP1-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Python2-15-SP1-Pool"},{"description":"SLE-Module-Python2-15-SP1-Debuginfo-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Python2-15-SP1-Debuginfo-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Python2/15-SP1/x86_64/product_debug/","distro_target":"sle-15-x86_64","autorefresh":false,"id":3601,"enabled":false},{"id":3602,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Python2/15-SP1/x86_64/product_source/","distro_target":"sle-15-x86_64","autorefresh":false,"installer_updates":false,"name":"SLE-Module-Python2-15-SP1-Source-Pool","description":"SLE-Module-Python2-15-SP1-Source-Pool for sle-15-x86_64"}],"cpe":"cpe:/o:suse:sle-module-python2:15:sp1","product_type":"module","recommended":false,"version":"15.1","name":"Python 2 Module","offline_predecessor_ids":[],"migration_extra":true,"friendly_name":"Python 2 Module 15 SP1 x86_64","former_identifier":"sle-module-python2","release_type":null,"friendly_version":"15 SP1","extensions":[],"id":1867,"release_stage":"released","identifier":"sle-module-python2"},{"former_identifier":"PackageHub","release_type":null,"friendly_name":"SUSE Package Hub 15 SP1 x86_64","migration_extra":false,"offline_predecessor_ids":[1529,1813,1915],"name":"SUSE Package Hub","version":"15.1","recommended":false,"identifier":"PackageHub","release_stage":"released","id":1871,"extensions":[],"friendly_version":"15 SP1","arch":"x86_64","eula_url":"","free":true,"shortname":"SUSE-PackageHub-15","description":"SUSE Package Hub is a free of charge extension providing access to community maintained packages built to run on SUSE Linux Enterprise Server. Built from the same sources used in the openSUSE distributions, these quality packages provide additional software to what is found in the SUSE Linux Enterprise Server product. Packages from the Package Hub are delivered without L3 support from SUSE. General updates and fixes to the packages in SUSE Package Hub are provided by the openSUSE community based on their discretion, though SUSE will monitor and ensure that any known critical security issues will be addressed. Packages in the Package Hub are approved by SUSE for use with SUSE Linux Enterprise Server 15-SP1 and to not interfere with the supportability of SUSE Linux Enterprise Server, its modules and extensions. For more information about SUSE Package Hub please visit https://packagehub.suse.com.","product_type":"extension","cpe":"cpe:/o:suse:packagehub:15:sp1","product_class":"MODULE","online_predecessor_ids":[1743],"repositories":[{"name":"SUSE-PackageHub-15-SP1-Backports-Pool","installer_updates":false,"description":"SUSE-PackageHub-15-SP1-Backports-Pool for sle-15-x86_64","enabled":true,"id":3627,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Backports/SLE-15-SP1_x86_64/standard/"},{"name":"SUSE-PackageHub-15-SP1-Backports-Debuginfo","installer_updates":false,"description":"SUSE-PackageHub-15-SP1-Backports-Debuginfo for sle-15-x86_64","enabled":false,"id":3628,"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Backports/SLE-15-SP1_x86_64/standard_debug/"},{"description":"SLE-Module-Packagehub-Subpackages15-SP1-Updates for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Packagehub-Subpackages15-SP1-Updates","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP1/x86_64/update/","distro_target":"sle-15-x86_64","autorefresh":true,"id":3629,"enabled":true},{"installer_updates":false,"name":"SLE-Module-Packagehub-Subpackages15-SP1-Debuginfo-Updates","description":"SLE-Module-Packagehub-Subpackages15-SP1-Debuginfo-Updates for sle-15-x86_64","enabled":false,"id":3630,"distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP1/x86_64/update_debug/"},{"description":"SUSE-PackageHub-15-SP1-Pool for sle-15-x86_64","installer_updates":false,"name":"SUSE-PackageHub-15-SP1-Pool","distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Backports/SLE-15-SP1_x86_64/product/","enabled":true,"id":3631},{"id":3632,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP1/x86_64/product/","autorefresh":false,"distro_target":"sle-15-x86_64","name":"SLE-Module-Packagehub-Subpackages15-SP1-Pool","installer_updates":false,"description":"SLE-Module-Packagehub-Subpackages15-SP1-Pool for sle-15-x86_64"},{"enabled":false,"id":3633,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP1/x86_64/product_debug/","name":"SLE-Module-Packagehub-Subpackages15-SP1-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-Packagehub-Subpackages15-SP1-Debuginfo-Pool for sle-15-x86_64"},{"description":"SLE-Module-Packagehub-Subpackages15-SP1-Source-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Packagehub-Subpackages15-SP1-Source-Pool","distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP1/x86_64/product_source/","enabled":false,"id":3634}],"predecessor_ids":[1743]}],"release_stage":"released","identifier":"sle-module-basesystem","id":1772,"friendly_version":"15 SP1","name":"Basesystem Module","offline_predecessor_ids":[1212,1368,1440,1618],"migration_extra":false,"friendly_name":"Basesystem Module 15 SP1 x86_64","release_type":null,"former_identifier":"sle-module-basesystem","recommended":true,"version":"15.1","cpe":"cpe:/o:suse:sle-module-basesystem:15:sp1","product_type":"module","predecessor_ids":[1576],"product_class":"MODULE","online_predecessor_ids":[1576],"repositories":[{"name":"SLE-Module-Basesystem15-SP1-Updates","installer_updates":false,"description":"SLE-Module-Basesystem15-SP1-Updates for sle-15-x86_64","enabled":true,"id":3261,"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15-SP1/x86_64/update/"},{"id":3262,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15-SP1/x86_64/update_debug/","distro_target":"sle-15-x86_64","autorefresh":true,"installer_updates":false,"name":"SLE-Module-Basesystem15-SP1-Debuginfo-Updates","description":"SLE-Module-Basesystem15-SP1-Debuginfo-Updates for sle-15-x86_64"},{"installer_updates":false,"name":"SLE-Module-Basesystem15-SP1-Pool","description":"SLE-Module-Basesystem15-SP1-Pool for sle-15-x86_64","enabled":true,"id":3263,"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP1/x86_64/product/"},{"installer_updates":false,"name":"SLE-Module-Basesystem15-SP1-Debuginfo-Pool","description":"SLE-Module-Basesystem15-SP1-Debuginfo-Pool for sle-15-x86_64","enabled":false,"id":3264,"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP1/x86_64/product_debug/"},{"enabled":false,"id":3265,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP1/x86_64/product_source/","name":"SLE-Module-Basesystem15-SP1-Source-Pool","installer_updates":false,"description":"SLE-Module-Basesystem15-SP1-Source-Pool for sle-15-x86_64"}],"eula_url":"","arch":"x86_64","shortname":"Basesystem-Module","description":"

The SUSE Linux Enterprise Basesystem Module delivers the base system of the product.

","free":true}],"release_stage":"released","id":1766,"identifier":"SLES_SAP","shortname":"SLE-15-SP1-SAP","description":"SUSE Linux Enterprise offers a comprehensive suite of products built on a single code base. The platform addresses business needs from the smallest thin-client devices to the world's most powerful high-performance computing and mainframe servers. SUSE Linux Enterprise offers common management tools and technology certifications across the platform, and each product is enterprise-class.","free":false,"eula_url":"https://updates.suse.com/SUSE/Products/SLE-Product-SLES_SAP/15-SP1/x86_64/product.license/","arch":"x86_64","predecessor_ids":[1612],"repositories":[{"installer_updates":false,"name":"SLE-Product-SLES_SAP15-SP1-Updates","description":"SLE-Product-SLES_SAP15-SP1-Updates for sle-15-x86_64","enabled":true,"id":3231,"distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-SLES_SAP/15-SP1/x86_64/update/"},{"description":"SLE-Product-SLES_SAP15-SP1-Debuginfo-Updates for sle-15-x86_64","installer_updates":false,"name":"SLE-Product-SLES_SAP15-SP1-Debuginfo-Updates","distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-SLES_SAP/15-SP1/x86_64/update_debug/","enabled":false,"id":3232},{"installer_updates":false,"name":"SLE-Product-SLES_SAP15-SP1-Pool","description":"SLE-Product-SLES_SAP15-SP1-Pool for sle-15-x86_64","enabled":true,"id":3233,"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-SLES_SAP/15-SP1/x86_64/product/"},{"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Product-SLES_SAP/15-SP1/x86_64/product_debug/","enabled":false,"id":3234,"description":"SLE-Product-SLES_SAP15-SP1-Debuginfo-Pool for sle-15-x86_64","name":"SLE-Product-SLES_SAP15-SP1-Debuginfo-Pool","installer_updates":false},{"description":"SLE-Product-SLES_SAP15-SP1-Source-Pool for sle-15-x86_64","name":"SLE-Product-SLES_SAP15-SP1-Source-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-SLES_SAP/15-SP1/x86_64/product_source/","autorefresh":false,"distro_target":"sle-15-x86_64","id":3235,"enabled":false}],"online_predecessor_ids":[1612],"product_class":"AiO","cpe":"cpe:/o:suse:sles_sap:15:sp1","product_type":"base"},{"friendly_version":"15 SP1","extensions":[{"online_predecessor_ids":[1589],"product_class":"MODULE","repositories":[{"description":"SLE-Module-Basesystem15-SP1-Updates for sle-15-aarch64","name":"SLE-Module-Basesystem15-SP1-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15-SP1/aarch64/update/","enabled":true,"id":3246},{"description":"SLE-Module-Basesystem15-SP1-Debuginfo-Updates for sle-15-aarch64","installer_updates":false,"name":"SLE-Module-Basesystem15-SP1-Debuginfo-Updates","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15-SP1/aarch64/update_debug/","distro_target":"sle-15-aarch64","autorefresh":true,"id":3247,"enabled":false},{"distro_target":"sle-15-aarch64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP1/aarch64/product/","enabled":true,"id":3248,"description":"SLE-Module-Basesystem15-SP1-Pool for sle-15-aarch64","installer_updates":false,"name":"SLE-Module-Basesystem15-SP1-Pool"},{"distro_target":"sle-15-aarch64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP1/aarch64/product_debug/","enabled":false,"id":3249,"description":"SLE-Module-Basesystem15-SP1-Debuginfo-Pool for sle-15-aarch64","installer_updates":false,"name":"SLE-Module-Basesystem15-SP1-Debuginfo-Pool"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP1/aarch64/product_source/","distro_target":"sle-15-aarch64","autorefresh":false,"id":3250,"enabled":false,"description":"SLE-Module-Basesystem15-SP1-Source-Pool for sle-15-aarch64","installer_updates":false,"name":"SLE-Module-Basesystem15-SP1-Source-Pool"}],"predecessor_ids":[1589],"cpe":"cpe:/o:suse:sle-module-basesystem:15:sp1","product_type":"module","shortname":"Basesystem-Module","description":"

The SUSE Linux Enterprise Basesystem Module delivers the base system of the product.

","free":true,"arch":"aarch64","eula_url":"","friendly_version":"15 SP1","id":1769,"release_stage":"released","identifier":"sle-module-basesystem","extensions":[{"product_class":"MODULE","online_predecessor_ids":[1595],"repositories":[{"description":"SLE-Module-Desktop-Applications15-SP1-Updates for sle-15-aarch64","installer_updates":false,"name":"SLE-Module-Desktop-Applications15-SP1-Updates","distro_target":"sle-15-aarch64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15-SP1/aarch64/update/","enabled":true,"id":3266},{"installer_updates":false,"name":"SLE-Module-Desktop-Applications15-SP1-Debuginfo-Updates","description":"SLE-Module-Desktop-Applications15-SP1-Debuginfo-Updates for sle-15-aarch64","id":3267,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15-SP1/aarch64/update_debug/","distro_target":"sle-15-aarch64","autorefresh":true},{"id":3268,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP1/aarch64/product/","distro_target":"sle-15-aarch64","autorefresh":false,"installer_updates":false,"name":"SLE-Module-Desktop-Applications15-SP1-Pool","description":"SLE-Module-Desktop-Applications15-SP1-Pool for sle-15-aarch64"},{"description":"SLE-Module-Desktop-Applications15-SP1-Debuginfo-Pool for sle-15-aarch64","installer_updates":false,"name":"SLE-Module-Desktop-Applications15-SP1-Debuginfo-Pool","distro_target":"sle-15-aarch64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP1/aarch64/product_debug/","enabled":false,"id":3269},{"enabled":false,"id":3270,"autorefresh":false,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP1/aarch64/product_source/","name":"SLE-Module-Desktop-Applications15-SP1-Source-Pool","installer_updates":false,"description":"SLE-Module-Desktop-Applications15-SP1-Source-Pool for sle-15-aarch64"}],"predecessor_ids":[1595],"cpe":"cpe:/o:suse:sle-module-desktop-applications:15:sp1","product_type":"module","shortname":"Desktop-Applications-Module","description":"

The SUSE Linux Enterprise Desktop Applications Module delivers a basic set of Desktop functionality.

Access to the Desktop Applications Module is included in your SUSE Linux Enterprise product subscription.

","free":true,"arch":"aarch64","eula_url":"","friendly_version":"15 SP1","identifier":"sle-module-desktop-applications","release_stage":"released","id":1773,"extensions":[{"friendly_version":"15 SP1","extensions":[],"id":1791,"release_stage":"released","identifier":"sle-module-development-tools","recommended":true,"version":"15.1","offline_predecessor_ids":[1376,1378,1430,1633,1889],"name":"Development Tools Module","former_identifier":"sle-sdk","release_type":null,"migration_extra":false,"friendly_name":"Development Tools Module 15 SP1 aarch64","predecessor_ids":[1598],"online_predecessor_ids":[1598],"repositories":[{"description":"SLE-Module-DevTools15-SP1-Updates for sle-15-aarch64","name":"SLE-Module-DevTools15-SP1-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15-SP1/aarch64/update/","enabled":true,"id":3356},{"enabled":false,"id":3357,"distro_target":"sle-15-aarch64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15-SP1/aarch64/update_debug/","installer_updates":false,"name":"SLE-Module-DevTools15-SP1-Debuginfo-Updates","description":"SLE-Module-DevTools15-SP1-Debuginfo-Updates for sle-15-aarch64"},{"name":"SLE-Module-DevTools15-SP1-Pool","installer_updates":false,"description":"SLE-Module-DevTools15-SP1-Pool for sle-15-aarch64","enabled":true,"id":3358,"autorefresh":false,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP1/aarch64/product/"},{"installer_updates":false,"name":"SLE-Module-DevTools15-SP1-Debuginfo-Pool","description":"SLE-Module-DevTools15-SP1-Debuginfo-Pool for sle-15-aarch64","enabled":false,"id":3359,"distro_target":"sle-15-aarch64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP1/aarch64/product_debug/"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP1/aarch64/product_source/","distro_target":"sle-15-aarch64","autorefresh":false,"id":3360,"enabled":false,"description":"SLE-Module-DevTools15-SP1-Source-Pool for sle-15-aarch64","installer_updates":false,"name":"SLE-Module-DevTools15-SP1-Source-Pool"}],"product_class":"MODULE","product_type":"module","cpe":"cpe:/o:suse:sle-module-development-tools:15:sp1","free":true,"shortname":"Development-Tools-Module","description":"

The Development Tools Module helps you developing applications for SUSE Linux Enterprise 15.

Access to the Development Tools Module is included in your SUSE Linux Enterprise product subscription. The module has a different lifecycle than SUSE Linux Enterprise itself.

","eula_url":"","arch":"aarch64"}],"version":"15.1","recommended":true,"migration_extra":false,"friendly_name":"Desktop Applications Module 15 SP1 aarch64","release_type":null,"former_identifier":"sle-module-desktop-applications","name":"Desktop Applications Module","offline_predecessor_ids":[]},{"product_type":"module","cpe":"cpe:/o:suse:sle-module-server-applications:15:sp1","predecessor_ids":[1601],"online_predecessor_ids":[1601],"product_class":"MODULE","repositories":[{"description":"SLE-Module-Server-Applications15-SP1-Updates for sle-15-aarch64","installer_updates":false,"name":"SLE-Module-Server-Applications15-SP1-Updates","distro_target":"sle-15-aarch64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15-SP1/aarch64/update/","enabled":true,"id":3286},{"description":"SLE-Module-Server-Applications15-SP1-Debuginfo-Updates for sle-15-aarch64","name":"SLE-Module-Server-Applications15-SP1-Debuginfo-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15-SP1/aarch64/update_debug/","enabled":false,"id":3287},{"autorefresh":false,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP1/aarch64/product/","enabled":true,"id":3288,"description":"SLE-Module-Server-Applications15-SP1-Pool for sle-15-aarch64","name":"SLE-Module-Server-Applications15-SP1-Pool","installer_updates":false},{"id":3289,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP1/aarch64/product_debug/","autorefresh":false,"distro_target":"sle-15-aarch64","name":"SLE-Module-Server-Applications15-SP1-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-Server-Applications15-SP1-Debuginfo-Pool for sle-15-aarch64"},{"name":"SLE-Module-Server-Applications15-SP1-Source-Pool","installer_updates":false,"description":"SLE-Module-Server-Applications15-SP1-Source-Pool for sle-15-aarch64","enabled":false,"id":3290,"autorefresh":false,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP1/aarch64/product_source/"}],"eula_url":"","arch":"aarch64","free":true,"shortname":"Server-Applications-Module","description":"

The SUSE Linux Enterprise Server Applications Module delivers a basic set of Server functionality.

Access to the Server Applications Module is included in your SUSE Linux Enterprise Server subscription.

","extensions":[{"friendly_version":"15 SP1","id":1782,"release_stage":"released","identifier":"sle-ha","extensions":[],"version":"15.1","recommended":false,"release_type":null,"former_identifier":"sle-ha","migration_extra":false,"friendly_name":"SUSE Linux Enterprise High Availability Extension 15 SP1 aarch64","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise High Availability Extension","product_class":"SLE-HAE-ARM64","online_predecessor_ids":[1608],"repositories":[{"description":"SLE-Product-HA15-SP1-Updates for sle-15-aarch64","name":"SLE-Product-HA15-SP1-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Updates/SLE-Product-HA/15-SP1/aarch64/update/","enabled":true,"id":3311},{"enabled":false,"id":3312,"distro_target":"sle-15-aarch64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-HA/15-SP1/aarch64/update_debug/","installer_updates":false,"name":"SLE-Product-HA15-SP1-Debuginfo-Updates","description":"SLE-Product-HA15-SP1-Debuginfo-Updates for sle-15-aarch64"},{"enabled":true,"id":3313,"distro_target":"sle-15-aarch64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP1/aarch64/product/","installer_updates":false,"name":"SLE-Product-HA15-SP1-Pool","description":"SLE-Product-HA15-SP1-Pool for sle-15-aarch64"},{"name":"SLE-Product-HA15-SP1-Debuginfo-Pool","installer_updates":false,"description":"SLE-Product-HA15-SP1-Debuginfo-Pool for sle-15-aarch64","enabled":false,"id":3314,"autorefresh":false,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP1/aarch64/product_debug/"},{"enabled":false,"id":3315,"distro_target":"sle-15-aarch64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP1/aarch64/product_source/","installer_updates":false,"name":"SLE-Product-HA15-SP1-Source-Pool","description":"SLE-Product-HA15-SP1-Source-Pool for sle-15-aarch64"}],"predecessor_ids":[1608],"product_type":"extension","cpe":"cpe:/o:suse:sle-ha:15:sp1","free":false,"description":"SUSE Linux High Availability Extension provides mature, industry-leading open-source high-availability clustering technologies that are easy to set up and use. It can be deployed in physical and/or virtual environments, and can cluster physical servers, virtual servers, or any combination of the two to suit your business’ needs.","shortname":"SLEHA15-SP1","arch":"aarch64","eula_url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP1/aarch64/product.license/"},{"offline_predecessor_ids":[1539],"name":"Web and Scripting Module","former_identifier":"sle-module-web-scripting","release_type":null,"friendly_name":"Web and Scripting Module 15 SP1 aarch64","migration_extra":false,"recommended":true,"version":"15.1","extensions":[{"free":true,"description":"

The SUSE Linux Enterprise Server High Performance Computing (HPC) module delivers specific tools commonly used for high performance, numerically intensive workloads.

SUSE packages these tools in the SLES HPC Module to provide greater flexibility to deliver new versions or new tools more rapidly than the standard SUSE Linux Enterprise lifecycle would permit.

Packages in this module are generally supported until a newer version of the package is released or the package is dropped from the module.

","shortname":"HPC-Module","arch":"aarch64","eula_url":"","online_predecessor_ids":[1733],"product_class":"MODULE","repositories":[{"name":"SLE-Module-HPC15-SP1-Updates","installer_updates":false,"description":"SLE-Module-HPC15-SP1-Updates for sle-15-aarch64","id":3396,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-HPC/15-SP1/aarch64/update/","autorefresh":true,"distro_target":"sle-15-aarch64"},{"description":"SLE-Module-HPC15-SP1-Debuginfo-Updates for sle-15-aarch64","installer_updates":false,"name":"SLE-Module-HPC15-SP1-Debuginfo-Updates","distro_target":"sle-15-aarch64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-HPC/15-SP1/aarch64/update_debug/","enabled":false,"id":3397},{"name":"SLE-Module-HPC15-SP1-Pool","installer_updates":false,"description":"SLE-Module-HPC15-SP1-Pool for sle-15-aarch64","enabled":true,"id":3398,"autorefresh":false,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-HPC/15-SP1/aarch64/product/"},{"description":"SLE-Module-HPC15-SP1-Debuginfo-Pool for sle-15-aarch64","installer_updates":false,"name":"SLE-Module-HPC15-SP1-Debuginfo-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-HPC/15-SP1/aarch64/product_debug/","distro_target":"sle-15-aarch64","autorefresh":false,"id":3399,"enabled":false},{"installer_updates":false,"name":"SLE-Module-HPC15-SP1-Source-Pool","description":"SLE-Module-HPC15-SP1-Source-Pool for sle-15-aarch64","enabled":false,"id":3400,"distro_target":"sle-15-aarch64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-HPC/15-SP1/aarch64/product_source/"}],"predecessor_ids":[1733],"product_type":"module","cpe":"cpe:/o:suse:sle-module-hpc:15:sp1","version":"15.1","recommended":true,"former_identifier":"sle-module-hpc","release_type":null,"friendly_name":"HPC Module 15 SP1 aarch64","migration_extra":false,"offline_predecessor_ids":[1522],"name":"HPC Module","friendly_version":"15 SP1","release_stage":"released","identifier":"sle-module-hpc","id":1799,"extensions":[]}],"release_stage":"released","id":1795,"identifier":"sle-module-web-scripting","friendly_version":"15 SP1","eula_url":"","arch":"aarch64","free":true,"description":"

The SUSE Linux Enterprise Web and Scripting Module should contains additional packages that are helpful when running a webserver.

Access to the Web and Scripting Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself: Package versions in this module are usually supported for at most three years. We are planning to release more recent versions on a schedule of approximately 18 month; the exact dates may differ per package.

","shortname":"Web-Scripting-Module","product_type":"module","cpe":"cpe:/o:suse:sle-module-web-scripting:15:sp1","predecessor_ids":[1718],"repositories":[{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/15-SP1/aarch64/update/","autorefresh":true,"distro_target":"sle-15-aarch64","id":3376,"enabled":true,"description":"SLE-Module-Web-Scripting15-SP1-Updates for sle-15-aarch64","name":"SLE-Module-Web-Scripting15-SP1-Updates","installer_updates":false},{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/15-SP1/aarch64/update_debug/","autorefresh":true,"distro_target":"sle-15-aarch64","id":3377,"enabled":false,"description":"SLE-Module-Web-Scripting15-SP1-Debuginfo-Updates for sle-15-aarch64","name":"SLE-Module-Web-Scripting15-SP1-Debuginfo-Updates","installer_updates":false},{"id":3378,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP1/aarch64/product/","autorefresh":false,"distro_target":"sle-15-aarch64","name":"SLE-Module-Web-Scripting15-SP1-Pool","installer_updates":false,"description":"SLE-Module-Web-Scripting15-SP1-Pool for sle-15-aarch64"},{"id":3379,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP1/aarch64/product_debug/","autorefresh":false,"distro_target":"sle-15-aarch64","name":"SLE-Module-Web-Scripting15-SP1-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-Web-Scripting15-SP1-Debuginfo-Pool for sle-15-aarch64"},{"id":3380,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP1/aarch64/product_source/","distro_target":"sle-15-aarch64","autorefresh":false,"installer_updates":false,"name":"SLE-Module-Web-Scripting15-SP1-Source-Pool","description":"SLE-Module-Web-Scripting15-SP1-Source-Pool for sle-15-aarch64"}],"online_predecessor_ids":[1718],"product_class":"MODULE"},{"name":"Public Cloud Module","offline_predecessor_ids":[1528],"friendly_name":"Public Cloud Module 15 SP1 aarch64","migration_extra":false,"former_identifier":"sle-module-public-cloud","release_type":null,"recommended":false,"version":"15.1","extensions":[],"identifier":"sle-module-public-cloud","release_stage":"released","id":1805,"friendly_version":"15 SP1","eula_url":"","arch":"aarch64","shortname":"Public-Cloud-Module","description":"

The Public Cloud Module is a collection of tools that enables you to create and manage cloud images from the commandline on SUSE Linux Enterprise Server. When building your own images with KIWI or SUSE Studio, initialization code specific to the target cloud is included in that image.

Access to the Public Cloud Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself; please check the Release Notes for further details.

","free":true,"cpe":"cpe:/o:suse:sle-module-public-cloud:15:sp1","product_type":"module","predecessor_ids":[1645],"product_class":"MODULE","online_predecessor_ids":[1645],"repositories":[{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/15-SP1/aarch64/update/","distro_target":"sle-15-aarch64","autorefresh":true,"id":3426,"enabled":true,"description":"SLE-Module-Public-Cloud15-SP1-Updates for sle-15-aarch64","installer_updates":false,"name":"SLE-Module-Public-Cloud15-SP1-Updates"},{"installer_updates":false,"name":"SLE-Module-Public-Cloud15-SP1-Debuginfo-Updates","description":"SLE-Module-Public-Cloud15-SP1-Debuginfo-Updates for sle-15-aarch64","enabled":false,"id":3427,"distro_target":"sle-15-aarch64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/15-SP1/aarch64/update_debug/"},{"installer_updates":false,"name":"SLE-Module-Public-Cloud15-SP1-Pool","description":"SLE-Module-Public-Cloud15-SP1-Pool for sle-15-aarch64","enabled":true,"id":3428,"distro_target":"sle-15-aarch64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP1/aarch64/product/"},{"description":"SLE-Module-Public-Cloud15-SP1-Debuginfo-Pool for sle-15-aarch64","name":"SLE-Module-Public-Cloud15-SP1-Debuginfo-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP1/aarch64/product_debug/","enabled":false,"id":3429},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP1/aarch64/product_source/","distro_target":"sle-15-aarch64","autorefresh":false,"id":3430,"enabled":false,"description":"SLE-Module-Public-Cloud15-SP1-Source-Pool for sle-15-aarch64","installer_updates":false,"name":"SLE-Module-Public-Cloud15-SP1-Source-Pool"}]}],"release_stage":"released","identifier":"sle-module-server-applications","id":1777,"friendly_version":"15 SP1","offline_predecessor_ids":[],"name":"Server Applications Module","release_type":null,"former_identifier":"sle-module-server-applications","migration_extra":false,"friendly_name":"Server Applications Module 15 SP1 aarch64","recommended":true,"version":"15.1"},{"friendly_version":"15 SP1","extensions":[],"release_stage":"released","identifier":"sle-module-python2","id":1864,"recommended":true,"version":"15.1","name":"Python 2 Module","offline_predecessor_ids":[],"friendly_name":"Python 2 Module 15 SP1 aarch64","migration_extra":true,"former_identifier":"sle-module-python2","release_type":null,"predecessor_ids":[],"repositories":[{"description":"SLE-Module-Python2-15-SP1-Updates for sle-15-aarch64","name":"SLE-Module-Python2-15-SP1-Updates","installer_updates":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Python2/15-SP1/aarch64/update/","autorefresh":true,"distro_target":"sle-15-aarch64","id":3583,"enabled":true},{"id":3584,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Python2/15-SP1/aarch64/update_debug/","autorefresh":true,"distro_target":"sle-15-aarch64","name":"SLE-Module-Python2-15-SP1-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-Python2-15-SP1-Debuginfo-Updates for sle-15-aarch64"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Python2/15-SP1/aarch64/product/","autorefresh":false,"distro_target":"sle-15-aarch64","id":3585,"enabled":true,"description":"SLE-Module-Python2-15-SP1-Pool for sle-15-aarch64","name":"SLE-Module-Python2-15-SP1-Pool","installer_updates":false},{"enabled":false,"id":3586,"autorefresh":false,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Python2/15-SP1/aarch64/product_debug/","name":"SLE-Module-Python2-15-SP1-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-Python2-15-SP1-Debuginfo-Pool for sle-15-aarch64"},{"description":"SLE-Module-Python2-15-SP1-Source-Pool for sle-15-aarch64","name":"SLE-Module-Python2-15-SP1-Source-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Python2/15-SP1/aarch64/product_source/","enabled":false,"id":3587}],"online_predecessor_ids":[],"product_class":"MODULE","cpe":"cpe:/o:suse:sle-module-python2:15:sp1","product_type":"module","shortname":"Python2-Module","description":"

This module contains the python 2 packages.

Access to the Python 2 Module is included in your SUSE Linux Enterprise subscription. The module has a different lifecycle than SUSE Linux Enterprise itself. Packages in the this module are usually supported for at most three years.

","free":true,"eula_url":"","arch":"aarch64"},{"friendly_version":"15 SP1","identifier":"PackageHub","release_stage":"released","id":1868,"extensions":[],"version":"15.1","recommended":false,"migration_extra":false,"friendly_name":"SUSE Package Hub 15 SP1 aarch64","former_identifier":"PackageHub","release_type":null,"name":"SUSE Package Hub","offline_predecessor_ids":[1532,1810,1912],"online_predecessor_ids":[1740],"product_class":"MODULE","repositories":[{"installer_updates":false,"name":"SUSE-PackageHub-15-SP1-Backports-Pool","description":"SUSE-PackageHub-15-SP1-Backports-Pool for sle-15-aarch64","enabled":true,"id":3603,"distro_target":"sle-15-aarch64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Backports/SLE-15-SP1_aarch64/standard/"},{"id":3604,"enabled":false,"url":"https://updates.suse.com/SUSE/Backports/SLE-15-SP1_aarch64/standard_debug/","autorefresh":true,"distro_target":"sle-15-aarch64","name":"SUSE-PackageHub-15-SP1-Backports-Debuginfo","installer_updates":false,"description":"SUSE-PackageHub-15-SP1-Backports-Debuginfo for sle-15-aarch64"},{"description":"SLE-Module-Packagehub-Subpackages15-SP1-Updates for sle-15-aarch64","installer_updates":false,"name":"SLE-Module-Packagehub-Subpackages15-SP1-Updates","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP1/aarch64/update/","distro_target":"sle-15-aarch64","autorefresh":true,"id":3605,"enabled":true},{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP1/aarch64/update_debug/","autorefresh":true,"distro_target":"sle-15-aarch64","id":3606,"enabled":false,"description":"SLE-Module-Packagehub-Subpackages15-SP1-Debuginfo-Updates for sle-15-aarch64","name":"SLE-Module-Packagehub-Subpackages15-SP1-Debuginfo-Updates","installer_updates":false},{"enabled":true,"id":3607,"distro_target":"sle-15-aarch64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Backports/SLE-15-SP1_aarch64/product/","installer_updates":false,"name":"SUSE-PackageHub-15-SP1-Pool","description":"SUSE-PackageHub-15-SP1-Pool for sle-15-aarch64"},{"id":3608,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP1/aarch64/product/","distro_target":"sle-15-aarch64","autorefresh":false,"installer_updates":false,"name":"SLE-Module-Packagehub-Subpackages15-SP1-Pool","description":"SLE-Module-Packagehub-Subpackages15-SP1-Pool for sle-15-aarch64"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP1/aarch64/product_debug/","autorefresh":false,"distro_target":"sle-15-aarch64","id":3609,"enabled":false,"description":"SLE-Module-Packagehub-Subpackages15-SP1-Debuginfo-Pool for sle-15-aarch64","name":"SLE-Module-Packagehub-Subpackages15-SP1-Debuginfo-Pool","installer_updates":false},{"description":"SLE-Module-Packagehub-Subpackages15-SP1-Source-Pool for sle-15-aarch64","name":"SLE-Module-Packagehub-Subpackages15-SP1-Source-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP1/aarch64/product_source/","enabled":false,"id":3610}],"predecessor_ids":[1740],"cpe":"cpe:/o:suse:packagehub:15:sp1","product_type":"extension","shortname":"SUSE-PackageHub-15","description":"SUSE Package Hub is a free of charge extension providing access to community maintained packages built to run on SUSE Linux Enterprise Server. Built from the same sources used in the openSUSE distributions, these quality packages provide additional software to what is found in the SUSE Linux Enterprise Server product. Packages from the Package Hub are delivered without L3 support from SUSE. General updates and fixes to the packages in SUSE Package Hub are provided by the openSUSE community based on their discretion, though SUSE will monitor and ensure that any known critical security issues will be addressed. Packages in the Package Hub are approved by SUSE for use with SUSE Linux Enterprise Server 15-SP1 and to not interfere with the supportability of SUSE Linux Enterprise Server, its modules and extensions. For more information about SUSE Package Hub please visit https://packagehub.suse.com.","free":true,"arch":"aarch64","eula_url":""},{"description":"

This Module contains several packages revolving around containers and related tools.

","shortname":"Containers-Module","free":true,"arch":"aarch64","eula_url":"","online_predecessor_ids":[],"repositories":[{"name":"SLE-Module-Containers15-SP1-Updates","installer_updates":false,"description":"SLE-Module-Containers15-SP1-Updates for sle-15-aarch64","enabled":true,"id":3873,"autorefresh":true,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/15-SP1/aarch64/update/"},{"name":"SLE-Module-Containers15-SP1-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-Containers15-SP1-Debuginfo-Updates for sle-15-aarch64","enabled":false,"id":3874,"autorefresh":true,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/15-SP1/aarch64/update_debug/"},{"name":"SLE-Module-Containers15-SP1-Pool","installer_updates":false,"description":"SLE-Module-Containers15-SP1-Pool for sle-15-aarch64","id":3875,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP1/aarch64/product/","autorefresh":false,"distro_target":"sle-15-aarch64"},{"description":"SLE-Module-Containers15-SP1-Debuginfo-Pool for sle-15-aarch64","name":"SLE-Module-Containers15-SP1-Debuginfo-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP1/aarch64/product_debug/","autorefresh":false,"distro_target":"sle-15-aarch64","id":3876,"enabled":false},{"name":"SLE-Module-Containers15-SP1-Source-Pool","installer_updates":false,"description":"SLE-Module-Containers15-SP1-Source-Pool for sle-15-aarch64","enabled":false,"id":3877,"autorefresh":false,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP1/aarch64/product_source/"}],"product_class":"MODULE","predecessor_ids":[],"cpe":"cpe:/o:suse:sle-module-containers:15:sp1","product_type":"module","version":"15.1","recommended":false,"migration_extra":false,"friendly_name":"Containers Module 15 SP1 aarch64","release_type":null,"former_identifier":"sle-module-containers","name":"Containers Module","offline_predecessor_ids":[],"friendly_version":"15 SP1","release_stage":"released","id":1920,"identifier":"sle-module-containers","extensions":[]}],"version":"15.1","recommended":true,"migration_extra":false,"friendly_name":"Basesystem Module 15 SP1 aarch64","release_type":null,"former_identifier":"sle-module-basesystem","name":"Basesystem Module","offline_predecessor_ids":[1522]},{"recommended":false,"version":"15.1","name":"SUSE Linux Enterprise High Performance Computing LTSS","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"SUSE Linux Enterprise High Performance Computing LTSS 15 SP1 aarch64","release_type":null,"former_identifier":"SLE_HPC-LTSS","friendly_version":"15 SP1","extensions":[],"release_stage":"released","identifier":"SLE_HPC-LTSS","id":2122,"description":"

SUSE Linux Enterprise High Performance Computing is a highly scalable, high performance open source operating system designed to utilize the power of parallel computing for modeling, simulation and advanced analytics workloads.

","shortname":"SLE_HPC-15-SP1-LTSS","free":false,"eula_url":"","arch":"aarch64","predecessor_ids":[],"product_class":"HPC15-SP1-LTSS-ARM64","online_predecessor_ids":[],"repositories":[{"description":"SLE-Product-HPC-15-SP1-LTSS-Updates for sle-15-aarch64","installer_updates":false,"name":"SLE-Product-HPC-15-SP1-LTSS-Updates","distro_target":"sle-15-aarch64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-HPC/15-SP1-LTSS/aarch64/update/","enabled":true,"id":4514},{"autorefresh":true,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Updates/SLE-Product-HPC/15-SP1-LTSS/aarch64/update_debug/","enabled":false,"id":4515,"description":"SLE-Product-HPC-15-SP1-LTSS-Debuginfo-Updates for sle-15-aarch64","name":"SLE-Product-HPC-15-SP1-LTSS-Debuginfo-Updates","installer_updates":false},{"name":"SLE-Product-HPC-15-SP1-LTSS-Pool","installer_updates":false,"description":"SLE-Product-HPC-15-SP1-LTSS-Pool for sle-15-aarch64","enabled":true,"id":4516,"autorefresh":false,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Products/SLE-Product-HPC/15-SP1-LTSS/aarch64/product/"},{"distro_target":"sle-15-aarch64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-HPC/15-SP1-LTSS/aarch64/product_debug/","enabled":false,"id":4517,"description":"SLE-Product-HPC-15-SP1-LTSS-Debuginfo-Pool for sle-15-aarch64","installer_updates":false,"name":"SLE-Product-HPC-15-SP1-LTSS-Debuginfo-Pool"},{"distro_target":"sle-15-aarch64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-HPC/15-SP1-LTSS/aarch64/product_source/","enabled":false,"id":4518,"description":"SLE-Product-HPC-15-SP1-LTSS-Source-Pool for sle-15-aarch64","installer_updates":false,"name":"SLE-Product-HPC-15-SP1-LTSS-Source-Pool"}],"cpe":"cpe:/o:suse:sle_hpc-ltss:15:sp1","product_type":"extension"},{"extensions":[],"release_stage":"released","identifier":"SLE_HPC-ESPOS","id":2126,"friendly_version":"15 SP1","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise High Performance Computing ESPOS","release_type":null,"former_identifier":"SLE_HPC-ESPOS","migration_extra":false,"friendly_name":"SUSE Linux Enterprise High Performance Computing ESPOS 15 SP1 aarch64","recommended":false,"version":"15.1","product_type":"extension","cpe":"cpe:/o:suse:sle_hpc-espos:15:sp1","predecessor_ids":[],"product_class":"SLE-ESPOS-ARM64","online_predecessor_ids":[],"repositories":[{"id":4534,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-HPC/15-SP1-ESPOS/aarch64/update/","autorefresh":true,"distro_target":"sle-15-aarch64","name":"SLE-Product-HPC-15-SP1-ESPOS-Updates","installer_updates":false,"description":"SLE-Product-HPC-15-SP1-ESPOS-Updates for sle-15-aarch64"},{"name":"SLE-Product-HPC-15-SP1-ESPOS-Debuginfo-Updates","installer_updates":false,"description":"SLE-Product-HPC-15-SP1-ESPOS-Debuginfo-Updates for sle-15-aarch64","enabled":false,"id":4535,"autorefresh":true,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Updates/SLE-Product-HPC/15-SP1-ESPOS/aarch64/update_debug/"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Product-HPC/15-SP1-ESPOS/aarch64/product/","distro_target":"sle-15-aarch64","autorefresh":false,"id":4536,"enabled":true,"description":"SLE-Product-HPC-15-SP1-ESPOS-Pool for sle-15-aarch64","installer_updates":false,"name":"SLE-Product-HPC-15-SP1-ESPOS-Pool"},{"id":4537,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-HPC/15-SP1-ESPOS/aarch64/product_debug/","autorefresh":false,"distro_target":"sle-15-aarch64","name":"SLE-Product-HPC-15-SP1-ESPOS-Debuginfo-Pool","installer_updates":false,"description":"SLE-Product-HPC-15-SP1-ESPOS-Debuginfo-Pool for sle-15-aarch64"},{"description":"SLE-Product-HPC-15-SP1-ESPOS-Source-Pool for sle-15-aarch64","name":"SLE-Product-HPC-15-SP1-ESPOS-Source-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-HPC/15-SP1-ESPOS/aarch64/product_source/","autorefresh":false,"distro_target":"sle-15-aarch64","id":4538,"enabled":false}],"eula_url":"","arch":"aarch64","free":false,"description":"

SUSE Linux Enterprise High Performance Computing is a highly scalable, high performance open source operating system designed to utilize the power of parallel computing for modeling, simulation and advanced analytics workloads.

","shortname":"SLE_HPC-15-SP1-ESPOS"}],"release_stage":"released","identifier":"SLE_HPC","id":1767,"recommended":false,"version":"15.1","name":"SUSE Linux Enterprise High Performance Computing","offline_predecessor_ids":[1424,1628,1750,1758,1872,1875],"friendly_name":"SUSE Linux Enterprise High Performance Computing 15 SP1 aarch64","migration_extra":false,"former_identifier":"SLE_HPC","release_type":null,"predecessor_ids":[1731],"online_predecessor_ids":[1731],"repositories":[{"name":"SLE-Product-HPC-15-SP1-Updates","installer_updates":false,"description":"SLE-Product-HPC-15-SP1-Updates for sle-15-aarch64","id":3236,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-HPC/15-SP1/aarch64/update/","autorefresh":true,"distro_target":"sle-15-aarch64"},{"description":"SLE-Product-HPC15-SP1-Debuginfo-Updates for sle-15-aarch64","name":"SLE-Product-HPC15-SP1-Debuginfo-Updates","installer_updates":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-HPC/15-SP1/aarch64/update_debug/","autorefresh":true,"distro_target":"sle-15-aarch64","id":3237,"enabled":false},{"installer_updates":false,"name":"SLE-Product-HPC-15-SP1-Pool","description":"SLE-Product-HPC-15-SP1-Pool for sle-15-aarch64","id":3238,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-HPC/15-SP1/aarch64/product/","distro_target":"sle-15-aarch64","autorefresh":false},{"autorefresh":false,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Products/SLE-Product-HPC/15-SP1/aarch64/product_debug/","enabled":false,"id":3239,"description":"SLE-Product-HPC15-SP1-Debuginfo-Pool for sle-15-aarch64","name":"SLE-Product-HPC15-SP1-Debuginfo-Pool","installer_updates":false},{"installer_updates":false,"name":"SLE-Product-HPC15-SP1-Source-Pool","description":"SLE-Product-HPC15-SP1-Source-Pool for sle-15-aarch64","enabled":false,"id":3240,"distro_target":"sle-15-aarch64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-HPC/15-SP1/aarch64/product_source/"}],"product_class":"HPC-ARM64","cpe":"cpe:/o:suse:sle_hpc:15:sp1","product_type":"base","description":"

SUSE Linux Enterprise High Performance Computing is a highly scalable, high performance open source operating system designed to utilize the power of parallel computing for modeling, simulation and advanced analytics workloads.

","shortname":"SLE-15-SP1-HPC","free":false,"eula_url":"https://updates.suse.com/SUSE/Products/SLE-Product-HPC/15-SP1/aarch64/product.license/","arch":"aarch64"},{"free":false,"description":"

SUSE Linux Enterprise High Performance Computing is a highly scalable, high performance open source operating system designed to utilize the power of parallel computing for modeling, simulation and advanced analytics workloads.

","shortname":"SLE-15-SP1-HPC","eula_url":"https://updates.suse.com/SUSE/Products/SLE-Product-HPC/15-SP1/x86_64/product.license/","arch":"x86_64","predecessor_ids":[1732],"product_class":"HPC-X86","online_predecessor_ids":[1732],"repositories":[{"description":"SLE-Product-HPC-15-SP1-Updates for sle-15-x86_64","installer_updates":false,"name":"SLE-Product-HPC-15-SP1-Updates","distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-HPC/15-SP1/x86_64/update/","enabled":true,"id":3241},{"name":"SLE-Product-HPC15-SP1-Debuginfo-Updates","installer_updates":false,"description":"SLE-Product-HPC15-SP1-Debuginfo-Updates for sle-15-x86_64","id":3242,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-HPC/15-SP1/x86_64/update_debug/","autorefresh":true,"distro_target":"sle-15-x86_64"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Product-HPC/15-SP1/x86_64/product/","distro_target":"sle-15-x86_64","autorefresh":false,"id":3243,"enabled":true,"description":"SLE-Product-HPC-15-SP1-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Product-HPC-15-SP1-Pool"},{"installer_updates":false,"name":"SLE-Product-HPC15-SP1-Debuginfo-Pool","description":"SLE-Product-HPC15-SP1-Debuginfo-Pool for sle-15-x86_64","enabled":false,"id":3244,"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-HPC/15-SP1/x86_64/product_debug/"},{"description":"SLE-Product-HPC15-SP1-Source-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Product-HPC15-SP1-Source-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Product-HPC/15-SP1/x86_64/product_source/","distro_target":"sle-15-x86_64","autorefresh":false,"id":3245,"enabled":false}],"product_type":"base","cpe":"cpe:/o:suse:sle_hpc:15:sp1","recommended":false,"version":"15.1","offline_predecessor_ids":[1421,1625,1751,1759,1873,1878],"name":"SUSE Linux Enterprise High Performance Computing","release_type":null,"former_identifier":"SLE_HPC","migration_extra":false,"friendly_name":"SUSE Linux Enterprise High Performance Computing 15 SP1 x86_64","friendly_version":"15 SP1","extensions":[{"cpe":"cpe:/o:suse:sle-module-basesystem:15:sp1","product_type":"module","product_class":"MODULE","online_predecessor_ids":[1576],"repositories":[{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15-SP1/x86_64/update/","distro_target":"sle-15-x86_64","autorefresh":true,"id":3261,"enabled":true,"description":"SLE-Module-Basesystem15-SP1-Updates for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Basesystem15-SP1-Updates"},{"id":3262,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15-SP1/x86_64/update_debug/","distro_target":"sle-15-x86_64","autorefresh":true,"installer_updates":false,"name":"SLE-Module-Basesystem15-SP1-Debuginfo-Updates","description":"SLE-Module-Basesystem15-SP1-Debuginfo-Updates for sle-15-x86_64"},{"installer_updates":false,"name":"SLE-Module-Basesystem15-SP1-Pool","description":"SLE-Module-Basesystem15-SP1-Pool for sle-15-x86_64","id":3263,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP1/x86_64/product/","distro_target":"sle-15-x86_64","autorefresh":false},{"installer_updates":false,"name":"SLE-Module-Basesystem15-SP1-Debuginfo-Pool","description":"SLE-Module-Basesystem15-SP1-Debuginfo-Pool for sle-15-x86_64","id":3264,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP1/x86_64/product_debug/","distro_target":"sle-15-x86_64","autorefresh":false},{"description":"SLE-Module-Basesystem15-SP1-Source-Pool for sle-15-x86_64","name":"SLE-Module-Basesystem15-SP1-Source-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP1/x86_64/product_source/","autorefresh":false,"distro_target":"sle-15-x86_64","id":3265,"enabled":false}],"predecessor_ids":[1576],"arch":"x86_64","eula_url":"","shortname":"Basesystem-Module","description":"

The SUSE Linux Enterprise Basesystem Module delivers the base system of the product.

","free":true,"release_stage":"released","id":1772,"identifier":"sle-module-basesystem","extensions":[{"friendly_name":"Desktop Applications Module 15 SP1 x86_64","migration_extra":false,"former_identifier":"sle-module-desktop-applications","release_type":null,"name":"Desktop Applications Module","offline_predecessor_ids":[],"version":"15.1","recommended":true,"identifier":"sle-module-desktop-applications","release_stage":"released","id":1776,"extensions":[{"friendly_version":"15 SP1","extensions":[{"friendly_version":"15","identifier":"sle-module-NVIDIA-compute","release_stage":"released","id":2131,"extensions":[],"version":"15","recommended":false,"release_type":null,"former_identifier":"sle-module-NVIDIA-compute","migration_extra":false,"friendly_name":"NVIDIA Compute Module 15 x86_64","offline_predecessor_ids":[],"name":"NVIDIA Compute Module","repositories":[{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-NVIDIA-Compute/15/x86_64/update/","distro_target":"sle-15-x86_64","autorefresh":true,"id":4554,"enabled":true,"description":"SLE-Module-NVIDIA-Compute-15-Updates for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-NVIDIA-Compute-15-Updates"},{"description":"SLE-Module-NVIDIA-Compute-15-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-NVIDIA-Compute-15-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-NVIDIA-Compute/15/x86_64/product/","distro_target":"sle-15-x86_64","autorefresh":false,"id":4556,"enabled":true},{"url":"https://developer.download.nvidia.com/compute/cuda/repos/sles15/x86_64/","autorefresh":true,"distro_target":null,"id":4563,"enabled":true,"description":"NVIDIA-Compute-SLE-15","name":"NVIDIA-Compute-SLE-15","installer_updates":false}],"online_predecessor_ids":[],"product_class":"MODULE","predecessor_ids":[],"product_type":"module","cpe":"cpe:/o:suse:sle-module-nvidia-compute:15","free":true,"shortname":"NVIDIA-Compute-Module","description":"NVIDIA Compute Drivers - NVIDIA CUDA This Module contains software under the terms and conditions of a 3rd party EULA (End User License Agreement). The EULA can be found at https://docs.nvidia.com/cuda/eula/index.html. By using this software you agree to fully comply with the terms and conditions of the EULA. If you do not agree to the terms and conditions of the EULA, do not use the software.","arch":"x86_64","eula_url":"https://updates.suse.com/SUSE/Products/SLE-Module-NVIDIA-Compute/15/x86_64/product.license/"}],"identifier":"sle-module-development-tools","release_stage":"released","id":1794,"recommended":true,"version":"15.1","name":"Development Tools Module","offline_predecessor_ids":[1223,1323,1341,1366,1427,1630,1892],"migration_extra":false,"friendly_name":"Development Tools Module 15 SP1 x86_64","release_type":null,"former_identifier":"sle-sdk","predecessor_ids":[1579],"online_predecessor_ids":[1579],"product_class":"MODULE","repositories":[{"description":"SLE-Module-DevTools15-SP1-Updates for sle-15-x86_64","name":"SLE-Module-DevTools15-SP1-Updates","installer_updates":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15-SP1/x86_64/update/","autorefresh":true,"distro_target":"sle-15-x86_64","id":3371,"enabled":true},{"installer_updates":false,"name":"SLE-Module-DevTools15-SP1-Debuginfo-Updates","description":"SLE-Module-DevTools15-SP1-Debuginfo-Updates for sle-15-x86_64","enabled":false,"id":3372,"distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15-SP1/x86_64/update_debug/"},{"description":"SLE-Module-DevTools15-SP1-Pool for sle-15-x86_64","name":"SLE-Module-DevTools15-SP1-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP1/x86_64/product/","enabled":true,"id":3373},{"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP1/x86_64/product_debug/","enabled":false,"id":3374,"description":"SLE-Module-DevTools15-SP1-Debuginfo-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-DevTools15-SP1-Debuginfo-Pool"},{"installer_updates":false,"name":"SLE-Module-DevTools15-SP1-Source-Pool","description":"SLE-Module-DevTools15-SP1-Source-Pool for sle-15-x86_64","id":3375,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP1/x86_64/product_source/","distro_target":"sle-15-x86_64","autorefresh":false}],"cpe":"cpe:/o:suse:sle-module-development-tools:15:sp1","product_type":"module","shortname":"Development-Tools-Module","description":"

The Development Tools Module helps you developing applications for SUSE Linux Enterprise 15.

Access to the Development Tools Module is included in your SUSE Linux Enterprise product subscription. The module has a different lifecycle than SUSE Linux Enterprise itself.

","free":true,"eula_url":"","arch":"x86_64"}],"friendly_version":"15 SP1","arch":"x86_64","eula_url":"","shortname":"Desktop-Applications-Module","description":"

The SUSE Linux Enterprise Desktop Applications Module delivers a basic set of Desktop functionality.

Access to the Desktop Applications Module is included in your SUSE Linux Enterprise product subscription.

","free":true,"cpe":"cpe:/o:suse:sle-module-desktop-applications:15:sp1","product_type":"module","online_predecessor_ids":[1578],"product_class":"MODULE","repositories":[{"enabled":true,"id":3281,"distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15-SP1/x86_64/update/","installer_updates":false,"name":"SLE-Module-Desktop-Applications15-SP1-Updates","description":"SLE-Module-Desktop-Applications15-SP1-Updates for sle-15-x86_64"},{"name":"SLE-Module-Desktop-Applications15-SP1-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-Desktop-Applications15-SP1-Debuginfo-Updates for sle-15-x86_64","enabled":false,"id":3282,"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15-SP1/x86_64/update_debug/"},{"description":"SLE-Module-Desktop-Applications15-SP1-Pool for sle-15-x86_64","name":"SLE-Module-Desktop-Applications15-SP1-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP1/x86_64/product/","autorefresh":false,"distro_target":"sle-15-x86_64","id":3283,"enabled":true},{"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP1/x86_64/product_debug/","enabled":false,"id":3284,"description":"SLE-Module-Desktop-Applications15-SP1-Debuginfo-Pool for sle-15-x86_64","name":"SLE-Module-Desktop-Applications15-SP1-Debuginfo-Pool","installer_updates":false},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP1/x86_64/product_source/","distro_target":"sle-15-x86_64","autorefresh":false,"id":3285,"enabled":false,"description":"SLE-Module-Desktop-Applications15-SP1-Source-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Desktop-Applications15-SP1-Source-Pool"}],"predecessor_ids":[1578]},{"repositories":[{"description":"SLE-Module-Server-Applications15-SP1-Updates for sle-15-x86_64","name":"SLE-Module-Server-Applications15-SP1-Updates","installer_updates":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15-SP1/x86_64/update/","autorefresh":true,"distro_target":"sle-15-x86_64","id":3301,"enabled":true},{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15-SP1/x86_64/update_debug/","distro_target":"sle-15-x86_64","autorefresh":true,"id":3302,"enabled":false,"description":"SLE-Module-Server-Applications15-SP1-Debuginfo-Updates for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Server-Applications15-SP1-Debuginfo-Updates"},{"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP1/x86_64/product/","enabled":true,"id":3303,"description":"SLE-Module-Server-Applications15-SP1-Pool for sle-15-x86_64","name":"SLE-Module-Server-Applications15-SP1-Pool","installer_updates":false},{"installer_updates":false,"name":"SLE-Module-Server-Applications15-SP1-Debuginfo-Pool","description":"SLE-Module-Server-Applications15-SP1-Debuginfo-Pool for sle-15-x86_64","enabled":false,"id":3304,"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP1/x86_64/product_debug/"},{"description":"SLE-Module-Server-Applications15-SP1-Source-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Server-Applications15-SP1-Source-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP1/x86_64/product_source/","distro_target":"sle-15-x86_64","autorefresh":false,"id":3305,"enabled":false}],"online_predecessor_ids":[1580],"product_class":"MODULE","predecessor_ids":[1580],"product_type":"module","cpe":"cpe:/o:suse:sle-module-server-applications:15:sp1","free":true,"shortname":"Server-Applications-Module","description":"

The SUSE Linux Enterprise Server Applications Module delivers a basic set of Server functionality.

Access to the Server Applications Module is included in your SUSE Linux Enterprise Server subscription.

","arch":"x86_64","eula_url":"","friendly_version":"15 SP1","release_stage":"released","identifier":"sle-module-server-applications","id":1780,"extensions":[{"shortname":"SLEHA15-SP1","description":"SUSE Linux High Availability Extension provides mature, industry-leading open-source high-availability clustering technologies that are easy to set up and use. It can be deployed in physical and/or virtual environments, and can cluster physical servers, virtual servers, or any combination of the two to suit your business’ needs.","free":false,"arch":"x86_64","eula_url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP1/x86_64/product.license/","repositories":[{"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-HA/15-SP1/x86_64/update/","autorefresh":true,"distro_target":"sle-15-x86_64","id":3326,"enabled":true,"description":"SLE-Product-HA15-SP1-Updates for sle-15-x86_64","name":"SLE-Product-HA15-SP1-Updates","installer_updates":false},{"name":"SLE-Product-HA15-SP1-Debuginfo-Updates","installer_updates":false,"description":"SLE-Product-HA15-SP1-Debuginfo-Updates for sle-15-x86_64","id":3327,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-HA/15-SP1/x86_64/update_debug/","autorefresh":true,"distro_target":"sle-15-x86_64"},{"description":"SLE-Product-HA15-SP1-Pool for sle-15-x86_64","name":"SLE-Product-HA15-SP1-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP1/x86_64/product/","enabled":true,"id":3328},{"description":"SLE-Product-HA15-SP1-Debuginfo-Pool for sle-15-x86_64","name":"SLE-Product-HA15-SP1-Debuginfo-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP1/x86_64/product_debug/","enabled":false,"id":3329},{"description":"SLE-Product-HA15-SP1-Source-Pool for sle-15-x86_64","name":"SLE-Product-HA15-SP1-Source-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP1/x86_64/product_source/","autorefresh":false,"distro_target":"sle-15-x86_64","id":3330,"enabled":false}],"online_predecessor_ids":[1582],"product_class":"SLE-HAE-X86","predecessor_ids":[1582],"cpe":"cpe:/o:suse:sle-ha:15:sp1","product_type":"extension","version":"15.1","recommended":false,"friendly_name":"SUSE Linux Enterprise High Availability Extension 15 SP1 x86_64","migration_extra":false,"release_type":null,"former_identifier":"sle-ha","name":"SUSE Linux Enterprise High Availability Extension","offline_predecessor_ids":[958,961,967,971,1101,1107,1256,1286,1432,1435,1634,1637,1884,1886],"friendly_version":"15 SP1","release_stage":"released","id":1785,"identifier":"sle-ha","extensions":[]},{"offline_predecessor_ids":[1153],"name":"Web and Scripting Module","release_type":null,"former_identifier":"sle-module-web-scripting","friendly_name":"Web and Scripting Module 15 SP1 x86_64","migration_extra":false,"recommended":true,"version":"15.1","extensions":[{"friendly_version":"15 SP1","extensions":[],"id":1800,"release_stage":"released","identifier":"sle-module-hpc","recommended":true,"version":"15.1","offline_predecessor_ids":[1440],"name":"HPC Module","release_type":null,"former_identifier":"sle-module-hpc","migration_extra":false,"friendly_name":"HPC Module 15 SP1 x86_64","predecessor_ids":[1734],"online_predecessor_ids":[1734],"product_class":"MODULE","repositories":[{"id":3401,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-HPC/15-SP1/x86_64/update/","autorefresh":true,"distro_target":"sle-15-x86_64","name":"SLE-Module-HPC15-SP1-Updates","installer_updates":false,"description":"SLE-Module-HPC15-SP1-Updates for sle-15-x86_64"},{"description":"SLE-Module-HPC15-SP1-Debuginfo-Updates for sle-15-x86_64","name":"SLE-Module-HPC15-SP1-Debuginfo-Updates","installer_updates":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-HPC/15-SP1/x86_64/update_debug/","autorefresh":true,"distro_target":"sle-15-x86_64","id":3402,"enabled":false},{"enabled":true,"id":3403,"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-HPC/15-SP1/x86_64/product/","installer_updates":false,"name":"SLE-Module-HPC15-SP1-Pool","description":"SLE-Module-HPC15-SP1-Pool for sle-15-x86_64"},{"name":"SLE-Module-HPC15-SP1-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-HPC15-SP1-Debuginfo-Pool for sle-15-x86_64","id":3404,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-HPC/15-SP1/x86_64/product_debug/","autorefresh":false,"distro_target":"sle-15-x86_64"},{"id":3405,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-HPC/15-SP1/x86_64/product_source/","distro_target":"sle-15-x86_64","autorefresh":false,"installer_updates":false,"name":"SLE-Module-HPC15-SP1-Source-Pool","description":"SLE-Module-HPC15-SP1-Source-Pool for sle-15-x86_64"}],"product_type":"module","cpe":"cpe:/o:suse:sle-module-hpc:15:sp1","free":true,"shortname":"HPC-Module","description":"

The SUSE Linux Enterprise Server High Performance Computing (HPC) module delivers specific tools commonly used for high performance, numerically intensive workloads.

SUSE packages these tools in the SLES HPC Module to provide greater flexibility to deliver new versions or new tools more rapidly than the standard SUSE Linux Enterprise lifecycle would permit.

Packages in this module are generally supported until a newer version of the package is released or the package is dropped from the module.

","eula_url":"","arch":"x86_64"}],"release_stage":"released","id":1798,"identifier":"sle-module-web-scripting","friendly_version":"15 SP1","eula_url":"","arch":"x86_64","free":true,"shortname":"Web-Scripting-Module","description":"

The SUSE Linux Enterprise Web and Scripting Module should contains additional packages that are helpful when running a webserver.

Access to the Web and Scripting Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself: Package versions in this module are usually supported for at most three years. We are planning to release more recent versions on a schedule of approximately 18 month; the exact dates may differ per package.

","product_type":"module","cpe":"cpe:/o:suse:sle-module-web-scripting:15:sp1","predecessor_ids":[1721],"online_predecessor_ids":[1721],"product_class":"MODULE","repositories":[{"installer_updates":false,"name":"SLE-Module-Web-Scripting15-SP1-Updates","description":"SLE-Module-Web-Scripting15-SP1-Updates for sle-15-x86_64","id":3391,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/15-SP1/x86_64/update/","distro_target":"sle-15-x86_64","autorefresh":true},{"name":"SLE-Module-Web-Scripting15-SP1-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-Web-Scripting15-SP1-Debuginfo-Updates for sle-15-x86_64","id":3392,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/15-SP1/x86_64/update_debug/","autorefresh":true,"distro_target":"sle-15-x86_64"},{"description":"SLE-Module-Web-Scripting15-SP1-Pool for sle-15-x86_64","name":"SLE-Module-Web-Scripting15-SP1-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP1/x86_64/product/","autorefresh":false,"distro_target":"sle-15-x86_64","id":3393,"enabled":true},{"description":"SLE-Module-Web-Scripting15-SP1-Debuginfo-Pool for sle-15-x86_64","name":"SLE-Module-Web-Scripting15-SP1-Debuginfo-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP1/x86_64/product_debug/","autorefresh":false,"distro_target":"sle-15-x86_64","id":3394,"enabled":false},{"enabled":false,"id":3395,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP1/x86_64/product_source/","name":"SLE-Module-Web-Scripting15-SP1-Source-Pool","installer_updates":false,"description":"SLE-Module-Web-Scripting15-SP1-Source-Pool for sle-15-x86_64"}]},{"eula_url":"","arch":"x86_64","free":true,"shortname":"Public-Cloud-Module","description":"

The Public Cloud Module is a collection of tools that enables you to create and manage cloud images from the commandline on SUSE Linux Enterprise Server. When building your own images with KIWI or SUSE Studio, initialization code specific to the target cloud is included in that image.

Access to the Public Cloud Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself; please check the Release Notes for further details.

","product_type":"module","cpe":"cpe:/o:suse:sle-module-public-cloud:15:sp1","predecessor_ids":[1611],"online_predecessor_ids":[1611],"product_class":"MODULE","repositories":[{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/15-SP1/x86_64/update/","autorefresh":true,"distro_target":"sle-15-x86_64","id":3441,"enabled":true,"description":"SLE-Module-Public-Cloud15-SP1-Updates for sle-15-x86_64","name":"SLE-Module-Public-Cloud15-SP1-Updates","installer_updates":false},{"installer_updates":false,"name":"SLE-Module-Public-Cloud15-SP1-Debuginfo-Updates","description":"SLE-Module-Public-Cloud15-SP1-Debuginfo-Updates for sle-15-x86_64","enabled":false,"id":3442,"distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/15-SP1/x86_64/update_debug/"},{"enabled":true,"id":3443,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP1/x86_64/product/","name":"SLE-Module-Public-Cloud15-SP1-Pool","installer_updates":false,"description":"SLE-Module-Public-Cloud15-SP1-Pool for sle-15-x86_64"},{"id":3444,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP1/x86_64/product_debug/","autorefresh":false,"distro_target":"sle-15-x86_64","name":"SLE-Module-Public-Cloud15-SP1-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-Public-Cloud15-SP1-Debuginfo-Pool for sle-15-x86_64"},{"description":"SLE-Module-Public-Cloud15-SP1-Source-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Public-Cloud15-SP1-Source-Pool","distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP1/x86_64/product_source/","enabled":false,"id":3445}],"offline_predecessor_ids":[1220],"name":"Public Cloud Module","release_type":null,"former_identifier":"sle-module-public-cloud","migration_extra":false,"friendly_name":"Public Cloud Module 15 SP1 x86_64","recommended":false,"version":"15.1","extensions":[],"id":1808,"release_stage":"released","identifier":"sle-module-public-cloud","friendly_version":"15 SP1"}],"version":"15.1","recommended":true,"former_identifier":"sle-module-server-applications","release_type":null,"friendly_name":"Server Applications Module 15 SP1 x86_64","migration_extra":false,"offline_predecessor_ids":[],"name":"Server Applications Module"},{"product_class":"MODULE","online_predecessor_ids":[1642],"repositories":[{"name":"SLE-Module-Containers15-SP1-Updates","installer_updates":false,"description":"SLE-Module-Containers15-SP1-Updates for sle-15-x86_64","id":3351,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/15-SP1/x86_64/update/","autorefresh":true,"distro_target":"sle-15-x86_64"},{"id":3352,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/15-SP1/x86_64/update_debug/","autorefresh":true,"distro_target":"sle-15-x86_64","name":"SLE-Module-Containers15-SP1-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-Containers15-SP1-Debuginfo-Updates for sle-15-x86_64"},{"installer_updates":false,"name":"SLE-Module-Containers15-SP1-Pool","description":"SLE-Module-Containers15-SP1-Pool for sle-15-x86_64","enabled":true,"id":3353,"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP1/x86_64/product/"},{"name":"SLE-Module-Containers15-SP1-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-Containers15-SP1-Debuginfo-Pool for sle-15-x86_64","id":3354,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP1/x86_64/product_debug/","autorefresh":false,"distro_target":"sle-15-x86_64"},{"name":"SLE-Module-Containers15-SP1-Source-Pool","installer_updates":false,"description":"SLE-Module-Containers15-SP1-Source-Pool for sle-15-x86_64","id":3355,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP1/x86_64/product_source/","autorefresh":false,"distro_target":"sle-15-x86_64"}],"predecessor_ids":[1642],"product_type":"module","cpe":"cpe:/o:suse:sle-module-containers:15:sp1","free":true,"description":"

This Module contains several packages revolving around containers and related tools.

","shortname":"Containers-Module","arch":"x86_64","eula_url":"","friendly_version":"15 SP1","identifier":"sle-module-containers","release_stage":"released","id":1790,"extensions":[],"version":"15.1","recommended":false,"release_type":null,"former_identifier":"sle-module-containers","migration_extra":false,"friendly_name":"Containers Module 15 SP1 x86_64","offline_predecessor_ids":[1332],"name":"Containers Module"},{"friendly_name":"SUSE Linux Enterprise Live Patching 15 SP1 x86_64","migration_extra":false,"former_identifier":"sle-module-live-patching","release_type":null,"name":"SUSE Linux Enterprise Live Patching","offline_predecessor_ids":[1536,1757,1888],"version":"15.1","recommended":false,"release_stage":"released","id":1828,"identifier":"sle-module-live-patching","extensions":[],"friendly_version":"15 SP1","arch":"x86_64","eula_url":"","shortname":"Live-Patching","description":"

SUSE Linux Enterprise Live Patching provides packages to update critical components in SUSE Linux Enterprise. With SUSE Linux Enterprise Live Patching, you can perform critical patching without shutting down your system, reducing the need for planned downtime and increasing service availability.

","free":false,"cpe":"cpe:/o:suse:sle-module-live-patching:15:sp1","product_type":"extension","online_predecessor_ids":[1736],"product_class":"SLE-LP","repositories":[{"id":3535,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Live-Patching/15-SP1/x86_64/update/","distro_target":"sle-15-x86_64","autorefresh":true,"installer_updates":false,"name":"SLE-Module-Live-Patching15-SP1-Updates","description":"SLE-Module-Live-Patching15-SP1-Updates for sle-15-x86_64"},{"description":"SLE-Module-Live-Patching15-SP1-Debuginfo-Updates for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Live-Patching15-SP1-Debuginfo-Updates","distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Live-Patching/15-SP1/x86_64/update_debug/","enabled":false,"id":3536},{"id":3537,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Live-Patching/15-SP1/x86_64/product/","autorefresh":false,"distro_target":"sle-15-x86_64","name":"SLE-Module-Live-Patching15-SP1-Pool","installer_updates":false,"description":"SLE-Module-Live-Patching15-SP1-Pool for sle-15-x86_64"},{"description":"SLE-Module-Live-Patching15-SP1-Debuginfo-Pool for sle-15-x86_64","name":"SLE-Module-Live-Patching15-SP1-Debuginfo-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Live-Patching/15-SP1/x86_64/product_debug/","enabled":false,"id":3538},{"description":"SLE-Module-Live-Patching15-SP1-Source-Pool for sle-15-x86_64","name":"SLE-Module-Live-Patching15-SP1-Source-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Live-Patching/15-SP1/x86_64/product_source/","enabled":false,"id":3539}],"predecessor_ids":[1736]},{"version":"15.1","recommended":true,"former_identifier":"sle-module-python2","release_type":null,"migration_extra":true,"friendly_name":"Python 2 Module 15 SP1 x86_64","offline_predecessor_ids":[],"name":"Python 2 Module","friendly_version":"15 SP1","identifier":"sle-module-python2","release_stage":"released","id":1867,"extensions":[],"free":true,"description":"

This module contains the python 2 packages.

Access to the Python 2 Module is included in your SUSE Linux Enterprise subscription. The module has a different lifecycle than SUSE Linux Enterprise itself. Packages in the this module are usually supported for at most three years.

","shortname":"Python2-Module","arch":"x86_64","eula_url":"","repositories":[{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Python2/15-SP1/x86_64/update/","autorefresh":true,"distro_target":"sle-15-x86_64","id":3598,"enabled":true,"description":"SLE-Module-Python2-15-SP1-Updates for sle-15-x86_64","name":"SLE-Module-Python2-15-SP1-Updates","installer_updates":false},{"description":"SLE-Module-Python2-15-SP1-Debuginfo-Updates for sle-15-x86_64","name":"SLE-Module-Python2-15-SP1-Debuginfo-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Python2/15-SP1/x86_64/update_debug/","enabled":false,"id":3599},{"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Python2/15-SP1/x86_64/product/","enabled":true,"id":3600,"description":"SLE-Module-Python2-15-SP1-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Python2-15-SP1-Pool"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Python2/15-SP1/x86_64/product_debug/","autorefresh":false,"distro_target":"sle-15-x86_64","id":3601,"enabled":false,"description":"SLE-Module-Python2-15-SP1-Debuginfo-Pool for sle-15-x86_64","name":"SLE-Module-Python2-15-SP1-Debuginfo-Pool","installer_updates":false},{"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Python2/15-SP1/x86_64/product_source/","enabled":false,"id":3602,"description":"SLE-Module-Python2-15-SP1-Source-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Python2-15-SP1-Source-Pool"}],"online_predecessor_ids":[],"product_class":"MODULE","predecessor_ids":[],"product_type":"module","cpe":"cpe:/o:suse:sle-module-python2:15:sp1"},{"product_type":"extension","cpe":"cpe:/o:suse:packagehub:15:sp1","repositories":[{"url":"https://updates.suse.com/SUSE/Backports/SLE-15-SP1_x86_64/standard/","autorefresh":false,"distro_target":"sle-15-x86_64","id":3627,"enabled":true,"description":"SUSE-PackageHub-15-SP1-Backports-Pool for sle-15-x86_64","name":"SUSE-PackageHub-15-SP1-Backports-Pool","installer_updates":false},{"enabled":false,"id":3628,"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Backports/SLE-15-SP1_x86_64/standard_debug/","name":"SUSE-PackageHub-15-SP1-Backports-Debuginfo","installer_updates":false,"description":"SUSE-PackageHub-15-SP1-Backports-Debuginfo for sle-15-x86_64"},{"enabled":true,"id":3629,"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP1/x86_64/update/","name":"SLE-Module-Packagehub-Subpackages15-SP1-Updates","installer_updates":false,"description":"SLE-Module-Packagehub-Subpackages15-SP1-Updates for sle-15-x86_64"},{"installer_updates":false,"name":"SLE-Module-Packagehub-Subpackages15-SP1-Debuginfo-Updates","description":"SLE-Module-Packagehub-Subpackages15-SP1-Debuginfo-Updates for sle-15-x86_64","enabled":false,"id":3630,"distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP1/x86_64/update_debug/"},{"url":"https://updates.suse.com/SUSE/Backports/SLE-15-SP1_x86_64/product/","distro_target":"sle-15-x86_64","autorefresh":false,"id":3631,"enabled":true,"description":"SUSE-PackageHub-15-SP1-Pool for sle-15-x86_64","installer_updates":false,"name":"SUSE-PackageHub-15-SP1-Pool"},{"name":"SLE-Module-Packagehub-Subpackages15-SP1-Pool","installer_updates":false,"description":"SLE-Module-Packagehub-Subpackages15-SP1-Pool for sle-15-x86_64","enabled":true,"id":3632,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP1/x86_64/product/"},{"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP1/x86_64/product_debug/","enabled":false,"id":3633,"description":"SLE-Module-Packagehub-Subpackages15-SP1-Debuginfo-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Packagehub-Subpackages15-SP1-Debuginfo-Pool"},{"description":"SLE-Module-Packagehub-Subpackages15-SP1-Source-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Packagehub-Subpackages15-SP1-Source-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP1/x86_64/product_source/","distro_target":"sle-15-x86_64","autorefresh":false,"id":3634,"enabled":false}],"online_predecessor_ids":[1743],"product_class":"MODULE","predecessor_ids":[1743],"arch":"x86_64","eula_url":"","free":true,"description":"SUSE Package Hub is a free of charge extension providing access to community maintained packages built to run on SUSE Linux Enterprise Server. Built from the same sources used in the openSUSE distributions, these quality packages provide additional software to what is found in the SUSE Linux Enterprise Server product. Packages from the Package Hub are delivered without L3 support from SUSE. General updates and fixes to the packages in SUSE Package Hub are provided by the openSUSE community based on their discretion, though SUSE will monitor and ensure that any known critical security issues will be addressed. Packages in the Package Hub are approved by SUSE for use with SUSE Linux Enterprise Server 15-SP1 and to not interfere with the supportability of SUSE Linux Enterprise Server, its modules and extensions. For more information about SUSE Package Hub please visit https://packagehub.suse.com.","shortname":"SUSE-PackageHub-15","release_stage":"released","id":1871,"identifier":"PackageHub","extensions":[],"friendly_version":"15 SP1","former_identifier":"PackageHub","release_type":null,"friendly_name":"SUSE Package Hub 15 SP1 x86_64","migration_extra":false,"offline_predecessor_ids":[1529,1813,1915],"name":"SUSE Package Hub","version":"15.1","recommended":false}],"friendly_version":"15 SP1","migration_extra":false,"friendly_name":"Basesystem Module 15 SP1 x86_64","former_identifier":"sle-module-basesystem","release_type":null,"name":"Basesystem Module","offline_predecessor_ids":[1212,1368,1440,1618],"version":"15.1","recommended":true},{"version":"15.1","recommended":false,"former_identifier":"SLE_HPC-LTSS","release_type":null,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise High Performance Computing LTSS 15 SP1 x86_64","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise High Performance Computing LTSS","friendly_version":"15 SP1","identifier":"SLE_HPC-LTSS","release_stage":"released","id":2123,"extensions":[],"free":false,"description":"

SUSE Linux Enterprise High Performance Computing is a highly scalable, high performance open source operating system designed to utilize the power of parallel computing for modeling, simulation and advanced analytics workloads.

","shortname":"SLE_HPC-15-SP1-LTSS","arch":"x86_64","eula_url":"","online_predecessor_ids":[],"product_class":"HPC15-SP1-LTSS-X86","repositories":[{"distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-HPC/15-SP1-LTSS/x86_64/update/","enabled":true,"id":4519,"description":"SLE-Product-HPC-15-SP1-LTSS-Updates for sle-15-x86_64","installer_updates":false,"name":"SLE-Product-HPC-15-SP1-LTSS-Updates"},{"enabled":false,"id":4520,"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Product-HPC/15-SP1-LTSS/x86_64/update_debug/","name":"SLE-Product-HPC-15-SP1-LTSS-Debuginfo-Updates","installer_updates":false,"description":"SLE-Product-HPC-15-SP1-LTSS-Debuginfo-Updates for sle-15-x86_64"},{"installer_updates":false,"name":"SLE-Product-HPC-15-SP1-LTSS-Pool","description":"SLE-Product-HPC-15-SP1-LTSS-Pool for sle-15-x86_64","id":4521,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-HPC/15-SP1-LTSS/x86_64/product/","distro_target":"sle-15-x86_64","autorefresh":false},{"description":"SLE-Product-HPC-15-SP1-LTSS-Debuginfo-Pool for sle-15-x86_64","name":"SLE-Product-HPC-15-SP1-LTSS-Debuginfo-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Product-HPC/15-SP1-LTSS/x86_64/product_debug/","enabled":false,"id":4522},{"enabled":false,"id":4523,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Product-HPC/15-SP1-LTSS/x86_64/product_source/","name":"SLE-Product-HPC-15-SP1-LTSS-Source-Pool","installer_updates":false,"description":"SLE-Product-HPC-15-SP1-LTSS-Source-Pool for sle-15-x86_64"}],"predecessor_ids":[],"product_type":"extension","cpe":"cpe:/o:suse:sle_hpc-ltss:15:sp1"},{"offline_predecessor_ids":[],"name":"SUSE Linux Enterprise High Performance Computing ESPOS","release_type":null,"former_identifier":"SLE_HPC-ESPOS","migration_extra":false,"friendly_name":"SUSE Linux Enterprise High Performance Computing ESPOS 15 SP1 x86_64","recommended":false,"version":"15.1","extensions":[],"id":2127,"release_stage":"released","identifier":"SLE_HPC-ESPOS","friendly_version":"15 SP1","eula_url":"","arch":"x86_64","free":false,"shortname":"SLE_HPC-15-SP1-ESPOS","description":"

SUSE Linux Enterprise High Performance Computing is a highly scalable, high performance open source operating system designed to utilize the power of parallel computing for modeling, simulation and advanced analytics workloads.

","product_type":"extension","cpe":"cpe:/o:suse:sle_hpc-espos:15:sp1","predecessor_ids":[],"online_predecessor_ids":[],"repositories":[{"enabled":true,"id":4539,"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Product-HPC/15-SP1-ESPOS/x86_64/update/","name":"SLE-Product-HPC-15-SP1-ESPOS-Updates","installer_updates":false,"description":"SLE-Product-HPC-15-SP1-ESPOS-Updates for sle-15-x86_64"},{"description":"SLE-Product-HPC-15-SP1-ESPOS-Debuginfo-Updates for sle-15-x86_64","installer_updates":false,"name":"SLE-Product-HPC-15-SP1-ESPOS-Debuginfo-Updates","url":"https://updates.suse.com/SUSE/Updates/SLE-Product-HPC/15-SP1-ESPOS/x86_64/update_debug/","distro_target":"sle-15-x86_64","autorefresh":true,"id":4540,"enabled":false},{"name":"SLE-Product-HPC-15-SP1-ESPOS-Pool","installer_updates":false,"description":"SLE-Product-HPC-15-SP1-ESPOS-Pool for sle-15-x86_64","id":4541,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-HPC/15-SP1-ESPOS/x86_64/product/","autorefresh":false,"distro_target":"sle-15-x86_64"},{"description":"SLE-Product-HPC-15-SP1-ESPOS-Debuginfo-Pool for sle-15-x86_64","name":"SLE-Product-HPC-15-SP1-ESPOS-Debuginfo-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-HPC/15-SP1-ESPOS/x86_64/product_debug/","autorefresh":false,"distro_target":"sle-15-x86_64","id":4542,"enabled":false},{"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Product-HPC/15-SP1-ESPOS/x86_64/product_source/","enabled":false,"id":4543,"description":"SLE-Product-HPC-15-SP1-ESPOS-Source-Pool for sle-15-x86_64","name":"SLE-Product-HPC-15-SP1-ESPOS-Source-Pool","installer_updates":false}],"product_class":"SLE-ESPOS-X86"}],"id":1768,"release_stage":"released","identifier":"SLE_HPC"},{"shortname":"Basesystem-Module","description":"

The SUSE Linux Enterprise Basesystem Module delivers the base system of the product.

","free":true,"eula_url":"","arch":"aarch64","predecessor_ids":[1589],"product_class":"MODULE","online_predecessor_ids":[1589],"repositories":[{"description":"SLE-Module-Basesystem15-SP1-Updates for sle-15-aarch64","name":"SLE-Module-Basesystem15-SP1-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15-SP1/aarch64/update/","enabled":true,"id":3246},{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15-SP1/aarch64/update_debug/","distro_target":"sle-15-aarch64","autorefresh":true,"id":3247,"enabled":false,"description":"SLE-Module-Basesystem15-SP1-Debuginfo-Updates for sle-15-aarch64","installer_updates":false,"name":"SLE-Module-Basesystem15-SP1-Debuginfo-Updates"},{"id":3248,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP1/aarch64/product/","autorefresh":false,"distro_target":"sle-15-aarch64","name":"SLE-Module-Basesystem15-SP1-Pool","installer_updates":false,"description":"SLE-Module-Basesystem15-SP1-Pool for sle-15-aarch64"},{"installer_updates":false,"name":"SLE-Module-Basesystem15-SP1-Debuginfo-Pool","description":"SLE-Module-Basesystem15-SP1-Debuginfo-Pool for sle-15-aarch64","id":3249,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP1/aarch64/product_debug/","distro_target":"sle-15-aarch64","autorefresh":false},{"installer_updates":false,"name":"SLE-Module-Basesystem15-SP1-Source-Pool","description":"SLE-Module-Basesystem15-SP1-Source-Pool for sle-15-aarch64","id":3250,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP1/aarch64/product_source/","distro_target":"sle-15-aarch64","autorefresh":false}],"cpe":"cpe:/o:suse:sle-module-basesystem:15:sp1","product_type":"module","recommended":false,"version":"15.1","name":"Basesystem Module","offline_predecessor_ids":[1522],"friendly_name":"Basesystem Module 15 SP1 aarch64","migration_extra":false,"former_identifier":"sle-module-basesystem","release_type":null,"friendly_version":"15 SP1","extensions":[],"identifier":"sle-module-basesystem","release_stage":"released","id":1769},{"version":"15.1","recommended":false,"friendly_name":"Basesystem Module 15 SP1 ppc64le","migration_extra":false,"former_identifier":"sle-module-basesystem","release_type":null,"name":"Basesystem Module","offline_predecessor_ids":[1294],"friendly_version":"15 SP1","identifier":"sle-module-basesystem","release_stage":"released","id":1770,"extensions":[],"description":"

The SUSE Linux Enterprise Basesystem Module delivers the base system of the product.

","shortname":"Basesystem-Module","free":true,"arch":"ppc64le","eula_url":"","product_class":"MODULE","online_predecessor_ids":[1588],"repositories":[{"description":"SLE-Module-Basesystem15-SP1-Updates for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-Basesystem15-SP1-Updates","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15-SP1/ppc64le/update/","distro_target":"sle-15-ppc64le","autorefresh":true,"id":3251,"enabled":true},{"installer_updates":false,"name":"SLE-Module-Basesystem15-SP1-Debuginfo-Updates","description":"SLE-Module-Basesystem15-SP1-Debuginfo-Updates for sle-15-ppc64le","enabled":false,"id":3252,"distro_target":"sle-15-ppc64le","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15-SP1/ppc64le/update_debug/"},{"description":"SLE-Module-Basesystem15-SP1-Pool for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-Basesystem15-SP1-Pool","distro_target":"sle-15-ppc64le","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP1/ppc64le/product/","enabled":true,"id":3253},{"description":"SLE-Module-Basesystem15-SP1-Debuginfo-Pool for sle-15-ppc64le","name":"SLE-Module-Basesystem15-SP1-Debuginfo-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP1/ppc64le/product_debug/","autorefresh":false,"distro_target":"sle-15-ppc64le","id":3254,"enabled":false},{"installer_updates":false,"name":"SLE-Module-Basesystem15-SP1-Source-Pool","description":"SLE-Module-Basesystem15-SP1-Source-Pool for sle-15-ppc64le","id":3255,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP1/ppc64le/product_source/","distro_target":"sle-15-ppc64le","autorefresh":false}],"predecessor_ids":[1588],"cpe":"cpe:/o:suse:sle-module-basesystem:15:sp1","product_type":"module"},{"friendly_version":"15 SP1","extensions":[],"release_stage":"released","id":1771,"identifier":"sle-module-basesystem","recommended":false,"version":"15.1","offline_predecessor_ids":[1295,1367],"name":"Basesystem Module","release_type":null,"former_identifier":"sle-module-basesystem","friendly_name":"Basesystem Module 15 SP1 s390x","migration_extra":false,"predecessor_ids":[1587],"online_predecessor_ids":[1587],"product_class":"MODULE","repositories":[{"id":3256,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15-SP1/s390x/update/","distro_target":"sle-15-s390x","autorefresh":true,"installer_updates":false,"name":"SLE-Module-Basesystem15-SP1-Updates","description":"SLE-Module-Basesystem15-SP1-Updates for sle-15-s390x"},{"enabled":false,"id":3257,"distro_target":"sle-15-s390x","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15-SP1/s390x/update_debug/","installer_updates":false,"name":"SLE-Module-Basesystem15-SP1-Debuginfo-Updates","description":"SLE-Module-Basesystem15-SP1-Debuginfo-Updates for sle-15-s390x"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP1/s390x/product/","autorefresh":false,"distro_target":"sle-15-s390x","id":3258,"enabled":true,"description":"SLE-Module-Basesystem15-SP1-Pool for sle-15-s390x","name":"SLE-Module-Basesystem15-SP1-Pool","installer_updates":false},{"autorefresh":false,"distro_target":"sle-15-s390x","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP1/s390x/product_debug/","enabled":false,"id":3259,"description":"SLE-Module-Basesystem15-SP1-Debuginfo-Pool for sle-15-s390x","name":"SLE-Module-Basesystem15-SP1-Debuginfo-Pool","installer_updates":false},{"description":"SLE-Module-Basesystem15-SP1-Source-Pool for sle-15-s390x","installer_updates":false,"name":"SLE-Module-Basesystem15-SP1-Source-Pool","distro_target":"sle-15-s390x","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP1/s390x/product_source/","enabled":false,"id":3260}],"product_type":"module","cpe":"cpe:/o:suse:sle-module-basesystem:15:sp1","free":true,"shortname":"Basesystem-Module","description":"

The SUSE Linux Enterprise Basesystem Module delivers the base system of the product.

","eula_url":"","arch":"s390x"},{"product_class":"MODULE","online_predecessor_ids":[1576],"repositories":[{"distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15-SP1/x86_64/update/","enabled":true,"id":3261,"description":"SLE-Module-Basesystem15-SP1-Updates for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Basesystem15-SP1-Updates"},{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15-SP1/x86_64/update_debug/","distro_target":"sle-15-x86_64","autorefresh":true,"id":3262,"enabled":false,"description":"SLE-Module-Basesystem15-SP1-Debuginfo-Updates for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Basesystem15-SP1-Debuginfo-Updates"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP1/x86_64/product/","distro_target":"sle-15-x86_64","autorefresh":false,"id":3263,"enabled":true,"description":"SLE-Module-Basesystem15-SP1-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Basesystem15-SP1-Pool"},{"description":"SLE-Module-Basesystem15-SP1-Debuginfo-Pool for sle-15-x86_64","name":"SLE-Module-Basesystem15-SP1-Debuginfo-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP1/x86_64/product_debug/","enabled":false,"id":3264},{"description":"SLE-Module-Basesystem15-SP1-Source-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Basesystem15-SP1-Source-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP1/x86_64/product_source/","distro_target":"sle-15-x86_64","autorefresh":false,"id":3265,"enabled":false}],"predecessor_ids":[1576],"cpe":"cpe:/o:suse:sle-module-basesystem:15:sp1","product_type":"module","description":"

The SUSE Linux Enterprise Basesystem Module delivers the base system of the product.

","shortname":"Basesystem-Module","free":true,"arch":"x86_64","eula_url":"","friendly_version":"15 SP1","release_stage":"released","id":1772,"identifier":"sle-module-basesystem","extensions":[],"version":"15.1","recommended":false,"migration_extra":false,"friendly_name":"Basesystem Module 15 SP1 x86_64","release_type":null,"former_identifier":"sle-module-basesystem","name":"Basesystem Module","offline_predecessor_ids":[1212,1368,1440,1618]},{"arch":"aarch64","eula_url":"","free":true,"shortname":"Desktop-Applications-Module","description":"

The SUSE Linux Enterprise Desktop Applications Module delivers a basic set of Desktop functionality.

Access to the Desktop Applications Module is included in your SUSE Linux Enterprise product subscription.

","product_type":"module","cpe":"cpe:/o:suse:sle-module-desktop-applications:15:sp1","product_class":"MODULE","online_predecessor_ids":[1595],"repositories":[{"name":"SLE-Module-Desktop-Applications15-SP1-Updates","installer_updates":false,"description":"SLE-Module-Desktop-Applications15-SP1-Updates for sle-15-aarch64","id":3266,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15-SP1/aarch64/update/","autorefresh":true,"distro_target":"sle-15-aarch64"},{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15-SP1/aarch64/update_debug/","distro_target":"sle-15-aarch64","autorefresh":true,"id":3267,"enabled":false,"description":"SLE-Module-Desktop-Applications15-SP1-Debuginfo-Updates for sle-15-aarch64","installer_updates":false,"name":"SLE-Module-Desktop-Applications15-SP1-Debuginfo-Updates"},{"description":"SLE-Module-Desktop-Applications15-SP1-Pool for sle-15-aarch64","installer_updates":false,"name":"SLE-Module-Desktop-Applications15-SP1-Pool","distro_target":"sle-15-aarch64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP1/aarch64/product/","enabled":true,"id":3268},{"name":"SLE-Module-Desktop-Applications15-SP1-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-Desktop-Applications15-SP1-Debuginfo-Pool for sle-15-aarch64","id":3269,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP1/aarch64/product_debug/","autorefresh":false,"distro_target":"sle-15-aarch64"},{"installer_updates":false,"name":"SLE-Module-Desktop-Applications15-SP1-Source-Pool","description":"SLE-Module-Desktop-Applications15-SP1-Source-Pool for sle-15-aarch64","enabled":false,"id":3270,"distro_target":"sle-15-aarch64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP1/aarch64/product_source/"}],"predecessor_ids":[1595],"release_type":null,"former_identifier":"sle-module-desktop-applications","migration_extra":false,"friendly_name":"Desktop Applications Module 15 SP1 aarch64","offline_predecessor_ids":[],"name":"Desktop Applications Module","version":"15.1","recommended":false,"identifier":"sle-module-desktop-applications","release_stage":"released","id":1773,"extensions":[],"friendly_version":"15 SP1"},{"extensions":[],"release_stage":"released","id":1774,"identifier":"sle-module-desktop-applications","friendly_version":"15 SP1","name":"Desktop Applications Module","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"Desktop Applications Module 15 SP1 ppc64le","release_type":null,"former_identifier":"sle-module-desktop-applications","recommended":false,"version":"15.1","cpe":"cpe:/o:suse:sle-module-desktop-applications:15:sp1","product_type":"module","predecessor_ids":[1594],"product_class":"MODULE","online_predecessor_ids":[1594],"repositories":[{"id":3271,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15-SP1/ppc64le/update/","distro_target":"sle-15-ppc64le","autorefresh":true,"installer_updates":false,"name":"SLE-Module-Desktop-Applications15-SP1-Updates","description":"SLE-Module-Desktop-Applications15-SP1-Updates for sle-15-ppc64le"},{"id":3272,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15-SP1/ppc64le/update_debug/","distro_target":"sle-15-ppc64le","autorefresh":true,"installer_updates":false,"name":"SLE-Module-Desktop-Applications15-SP1-Debuginfo-Updates","description":"SLE-Module-Desktop-Applications15-SP1-Debuginfo-Updates for sle-15-ppc64le"},{"description":"SLE-Module-Desktop-Applications15-SP1-Pool for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-Desktop-Applications15-SP1-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP1/ppc64le/product/","distro_target":"sle-15-ppc64le","autorefresh":false,"id":3273,"enabled":true},{"distro_target":"sle-15-ppc64le","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP1/ppc64le/product_debug/","enabled":false,"id":3274,"description":"SLE-Module-Desktop-Applications15-SP1-Debuginfo-Pool for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-Desktop-Applications15-SP1-Debuginfo-Pool"},{"distro_target":"sle-15-ppc64le","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP1/ppc64le/product_source/","enabled":false,"id":3275,"description":"SLE-Module-Desktop-Applications15-SP1-Source-Pool for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-Desktop-Applications15-SP1-Source-Pool"}],"eula_url":"","arch":"ppc64le","description":"

The SUSE Linux Enterprise Desktop Applications Module delivers a basic set of Desktop functionality.

Access to the Desktop Applications Module is included in your SUSE Linux Enterprise product subscription.

","shortname":"Desktop-Applications-Module","free":true},{"recommended":false,"version":"15.1","name":"Desktop Applications Module","offline_predecessor_ids":[],"friendly_name":"Desktop Applications Module 15 SP1 s390x","migration_extra":false,"release_type":null,"former_identifier":"sle-module-desktop-applications","friendly_version":"15 SP1","extensions":[],"identifier":"sle-module-desktop-applications","release_stage":"released","id":1775,"shortname":"Desktop-Applications-Module","description":"

The SUSE Linux Enterprise Desktop Applications Module delivers a basic set of Desktop functionality.

Access to the Desktop Applications Module is included in your SUSE Linux Enterprise product subscription.

","free":true,"eula_url":"","arch":"s390x","predecessor_ids":[1593],"online_predecessor_ids":[1593],"repositories":[{"name":"SLE-Module-Desktop-Applications15-SP1-Updates","installer_updates":false,"description":"SLE-Module-Desktop-Applications15-SP1-Updates for sle-15-s390x","enabled":true,"id":3276,"autorefresh":true,"distro_target":"sle-15-s390x","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15-SP1/s390x/update/"},{"installer_updates":false,"name":"SLE-Module-Desktop-Applications15-SP1-Debuginfo-Updates","description":"SLE-Module-Desktop-Applications15-SP1-Debuginfo-Updates for sle-15-s390x","enabled":false,"id":3277,"distro_target":"sle-15-s390x","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15-SP1/s390x/update_debug/"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP1/s390x/product/","distro_target":"sle-15-s390x","autorefresh":false,"id":3278,"enabled":true,"description":"SLE-Module-Desktop-Applications15-SP1-Pool for sle-15-s390x","installer_updates":false,"name":"SLE-Module-Desktop-Applications15-SP1-Pool"},{"distro_target":"sle-15-s390x","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP1/s390x/product_debug/","enabled":false,"id":3279,"description":"SLE-Module-Desktop-Applications15-SP1-Debuginfo-Pool for sle-15-s390x","installer_updates":false,"name":"SLE-Module-Desktop-Applications15-SP1-Debuginfo-Pool"},{"description":"SLE-Module-Desktop-Applications15-SP1-Source-Pool for sle-15-s390x","name":"SLE-Module-Desktop-Applications15-SP1-Source-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP1/s390x/product_source/","autorefresh":false,"distro_target":"sle-15-s390x","id":3280,"enabled":false}],"product_class":"MODULE","cpe":"cpe:/o:suse:sle-module-desktop-applications:15:sp1","product_type":"module"},{"friendly_version":"15 SP1","id":1776,"release_stage":"released","identifier":"sle-module-desktop-applications","extensions":[],"version":"15.1","recommended":false,"migration_extra":false,"friendly_name":"Desktop Applications Module 15 SP1 x86_64","release_type":null,"former_identifier":"sle-module-desktop-applications","name":"Desktop Applications Module","offline_predecessor_ids":[],"product_class":"MODULE","online_predecessor_ids":[1578],"repositories":[{"enabled":true,"id":3281,"distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15-SP1/x86_64/update/","installer_updates":false,"name":"SLE-Module-Desktop-Applications15-SP1-Updates","description":"SLE-Module-Desktop-Applications15-SP1-Updates for sle-15-x86_64"},{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15-SP1/x86_64/update_debug/","autorefresh":true,"distro_target":"sle-15-x86_64","id":3282,"enabled":false,"description":"SLE-Module-Desktop-Applications15-SP1-Debuginfo-Updates for sle-15-x86_64","name":"SLE-Module-Desktop-Applications15-SP1-Debuginfo-Updates","installer_updates":false},{"name":"SLE-Module-Desktop-Applications15-SP1-Pool","installer_updates":false,"description":"SLE-Module-Desktop-Applications15-SP1-Pool for sle-15-x86_64","id":3283,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP1/x86_64/product/","autorefresh":false,"distro_target":"sle-15-x86_64"},{"name":"SLE-Module-Desktop-Applications15-SP1-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-Desktop-Applications15-SP1-Debuginfo-Pool for sle-15-x86_64","id":3284,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP1/x86_64/product_debug/","autorefresh":false,"distro_target":"sle-15-x86_64"},{"id":3285,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP1/x86_64/product_source/","distro_target":"sle-15-x86_64","autorefresh":false,"installer_updates":false,"name":"SLE-Module-Desktop-Applications15-SP1-Source-Pool","description":"SLE-Module-Desktop-Applications15-SP1-Source-Pool for sle-15-x86_64"}],"predecessor_ids":[1578],"cpe":"cpe:/o:suse:sle-module-desktop-applications:15:sp1","product_type":"module","shortname":"Desktop-Applications-Module","description":"

The SUSE Linux Enterprise Desktop Applications Module delivers a basic set of Desktop functionality.

Access to the Desktop Applications Module is included in your SUSE Linux Enterprise product subscription.

","free":true,"arch":"x86_64","eula_url":""},{"offline_predecessor_ids":[],"name":"Server Applications Module","former_identifier":"sle-module-server-applications","release_type":null,"friendly_name":"Server Applications Module 15 SP1 aarch64","migration_extra":false,"recommended":false,"version":"15.1","extensions":[],"id":1777,"release_stage":"released","identifier":"sle-module-server-applications","friendly_version":"15 SP1","eula_url":"","arch":"aarch64","free":true,"shortname":"Server-Applications-Module","description":"

The SUSE Linux Enterprise Server Applications Module delivers a basic set of Server functionality.

Access to the Server Applications Module is included in your SUSE Linux Enterprise Server subscription.

","product_type":"module","cpe":"cpe:/o:suse:sle-module-server-applications:15:sp1","predecessor_ids":[1601],"online_predecessor_ids":[1601],"product_class":"MODULE","repositories":[{"name":"SLE-Module-Server-Applications15-SP1-Updates","installer_updates":false,"description":"SLE-Module-Server-Applications15-SP1-Updates for sle-15-aarch64","enabled":true,"id":3286,"autorefresh":true,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15-SP1/aarch64/update/"},{"description":"SLE-Module-Server-Applications15-SP1-Debuginfo-Updates for sle-15-aarch64","name":"SLE-Module-Server-Applications15-SP1-Debuginfo-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15-SP1/aarch64/update_debug/","enabled":false,"id":3287},{"id":3288,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP1/aarch64/product/","autorefresh":false,"distro_target":"sle-15-aarch64","name":"SLE-Module-Server-Applications15-SP1-Pool","installer_updates":false,"description":"SLE-Module-Server-Applications15-SP1-Pool for sle-15-aarch64"},{"name":"SLE-Module-Server-Applications15-SP1-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-Server-Applications15-SP1-Debuginfo-Pool for sle-15-aarch64","enabled":false,"id":3289,"autorefresh":false,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP1/aarch64/product_debug/"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP1/aarch64/product_source/","autorefresh":false,"distro_target":"sle-15-aarch64","id":3290,"enabled":false,"description":"SLE-Module-Server-Applications15-SP1-Source-Pool for sle-15-aarch64","name":"SLE-Module-Server-Applications15-SP1-Source-Pool","installer_updates":false}]},{"extensions":[],"id":1778,"release_stage":"released","identifier":"sle-module-server-applications","friendly_version":"15 SP1","offline_predecessor_ids":[],"name":"Server Applications Module","former_identifier":"sle-module-server-applications","release_type":null,"friendly_name":"Server Applications Module 15 SP1 ppc64le","migration_extra":false,"recommended":false,"version":"15.1","product_type":"module","cpe":"cpe:/o:suse:sle-module-server-applications:15:sp1","predecessor_ids":[1600],"repositories":[{"id":3291,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15-SP1/ppc64le/update/","distro_target":"sle-15-ppc64le","autorefresh":true,"installer_updates":false,"name":"SLE-Module-Server-Applications15-SP1-Updates","description":"SLE-Module-Server-Applications15-SP1-Updates for sle-15-ppc64le"},{"autorefresh":true,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15-SP1/ppc64le/update_debug/","enabled":false,"id":3292,"description":"SLE-Module-Server-Applications15-SP1-Debuginfo-Updates for sle-15-ppc64le","name":"SLE-Module-Server-Applications15-SP1-Debuginfo-Updates","installer_updates":false},{"id":3293,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP1/ppc64le/product/","autorefresh":false,"distro_target":"sle-15-ppc64le","name":"SLE-Module-Server-Applications15-SP1-Pool","installer_updates":false,"description":"SLE-Module-Server-Applications15-SP1-Pool for sle-15-ppc64le"},{"name":"SLE-Module-Server-Applications15-SP1-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-Server-Applications15-SP1-Debuginfo-Pool for sle-15-ppc64le","enabled":false,"id":3294,"autorefresh":false,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP1/ppc64le/product_debug/"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP1/ppc64le/product_source/","distro_target":"sle-15-ppc64le","autorefresh":false,"id":3295,"enabled":false,"description":"SLE-Module-Server-Applications15-SP1-Source-Pool for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-Server-Applications15-SP1-Source-Pool"}],"online_predecessor_ids":[1600],"product_class":"MODULE","eula_url":"","arch":"ppc64le","free":true,"description":"

The SUSE Linux Enterprise Server Applications Module delivers a basic set of Server functionality.

Access to the Server Applications Module is included in your SUSE Linux Enterprise Server subscription.

","shortname":"Server-Applications-Module"},{"friendly_version":"15 SP1","extensions":[],"release_stage":"released","id":1779,"identifier":"sle-module-server-applications","recommended":false,"version":"15.1","name":"Server Applications Module","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"Server Applications Module 15 SP1 s390x","former_identifier":"sle-module-server-applications","release_type":null,"predecessor_ids":[1599],"online_predecessor_ids":[1599],"repositories":[{"distro_target":"sle-15-s390x","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15-SP1/s390x/update/","enabled":true,"id":3296,"description":"SLE-Module-Server-Applications15-SP1-Updates for sle-15-s390x","installer_updates":false,"name":"SLE-Module-Server-Applications15-SP1-Updates"},{"installer_updates":false,"name":"SLE-Module-Server-Applications15-SP1-Debuginfo-Updates","description":"SLE-Module-Server-Applications15-SP1-Debuginfo-Updates for sle-15-s390x","id":3297,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15-SP1/s390x/update_debug/","distro_target":"sle-15-s390x","autorefresh":true},{"name":"SLE-Module-Server-Applications15-SP1-Pool","installer_updates":false,"description":"SLE-Module-Server-Applications15-SP1-Pool for sle-15-s390x","id":3298,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP1/s390x/product/","autorefresh":false,"distro_target":"sle-15-s390x"},{"installer_updates":false,"name":"SLE-Module-Server-Applications15-SP1-Debuginfo-Pool","description":"SLE-Module-Server-Applications15-SP1-Debuginfo-Pool for sle-15-s390x","id":3299,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP1/s390x/product_debug/","distro_target":"sle-15-s390x","autorefresh":false},{"name":"SLE-Module-Server-Applications15-SP1-Source-Pool","installer_updates":false,"description":"SLE-Module-Server-Applications15-SP1-Source-Pool for sle-15-s390x","enabled":false,"id":3300,"autorefresh":false,"distro_target":"sle-15-s390x","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP1/s390x/product_source/"}],"product_class":"MODULE","cpe":"cpe:/o:suse:sle-module-server-applications:15:sp1","product_type":"module","description":"

The SUSE Linux Enterprise Server Applications Module delivers a basic set of Server functionality.

Access to the Server Applications Module is included in your SUSE Linux Enterprise Server subscription.

","shortname":"Server-Applications-Module","free":true,"eula_url":"","arch":"s390x"},{"arch":"x86_64","eula_url":"","shortname":"Server-Applications-Module","description":"

The SUSE Linux Enterprise Server Applications Module delivers a basic set of Server functionality.

Access to the Server Applications Module is included in your SUSE Linux Enterprise Server subscription.

","free":true,"cpe":"cpe:/o:suse:sle-module-server-applications:15:sp1","product_type":"module","online_predecessor_ids":[1580],"repositories":[{"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15-SP1/x86_64/update/","enabled":true,"id":3301,"description":"SLE-Module-Server-Applications15-SP1-Updates for sle-15-x86_64","name":"SLE-Module-Server-Applications15-SP1-Updates","installer_updates":false},{"installer_updates":false,"name":"SLE-Module-Server-Applications15-SP1-Debuginfo-Updates","description":"SLE-Module-Server-Applications15-SP1-Debuginfo-Updates for sle-15-x86_64","enabled":false,"id":3302,"distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15-SP1/x86_64/update_debug/"},{"description":"SLE-Module-Server-Applications15-SP1-Pool for sle-15-x86_64","name":"SLE-Module-Server-Applications15-SP1-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP1/x86_64/product/","autorefresh":false,"distro_target":"sle-15-x86_64","id":3303,"enabled":true},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP1/x86_64/product_debug/","distro_target":"sle-15-x86_64","autorefresh":false,"id":3304,"enabled":false,"description":"SLE-Module-Server-Applications15-SP1-Debuginfo-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Server-Applications15-SP1-Debuginfo-Pool"},{"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP1/x86_64/product_source/","enabled":false,"id":3305,"description":"SLE-Module-Server-Applications15-SP1-Source-Pool for sle-15-x86_64","name":"SLE-Module-Server-Applications15-SP1-Source-Pool","installer_updates":false}],"product_class":"MODULE","predecessor_ids":[1580],"friendly_name":"Server Applications Module 15 SP1 x86_64","migration_extra":false,"former_identifier":"sle-module-server-applications","release_type":null,"name":"Server Applications Module","offline_predecessor_ids":[],"version":"15.1","recommended":false,"identifier":"sle-module-server-applications","release_stage":"released","id":1780,"extensions":[],"friendly_version":"15 SP1"},{"predecessor_ids":[1583],"product_class":"SLE-WE","online_predecessor_ids":[1583],"repositories":[{"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-WE/15-SP1/x86_64/update/","autorefresh":true,"distro_target":"sle-15-x86_64","id":3306,"enabled":true,"description":"SLE-Product-WE15-SP1-Updates for sle-15-x86_64","name":"SLE-Product-WE15-SP1-Updates","installer_updates":false},{"description":"SLE-Product-WE15-SP1-Debuginfo-Updates for sle-15-x86_64","name":"SLE-Product-WE15-SP1-Debuginfo-Updates","installer_updates":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-WE/15-SP1/x86_64/update_debug/","autorefresh":true,"distro_target":"sle-15-x86_64","id":3307,"enabled":false},{"enabled":true,"id":3308,"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-WE/15-SP1/x86_64/product/","installer_updates":false,"name":"SLE-Product-WE15-SP1-Pool","description":"SLE-Product-WE15-SP1-Pool for sle-15-x86_64"},{"id":3309,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-WE/15-SP1/x86_64/product_debug/","distro_target":"sle-15-x86_64","autorefresh":false,"installer_updates":false,"name":"SLE-Product-WE15-SP1-Debuginfo-Pool","description":"SLE-Product-WE15-SP1-Debuginfo-Pool for sle-15-x86_64"},{"name":"SLE-Product-WE15-SP1-Source-Pool","installer_updates":false,"description":"SLE-Product-WE15-SP1-Source-Pool for sle-15-x86_64","enabled":false,"id":3310,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Product-WE/15-SP1/x86_64/product_source/"},{"description":"SLE-15-SP1-Desktop-NVIDIA-Driver","name":"SLE-15-SP1-Desktop-NVIDIA-Driver","installer_updates":false,"autorefresh":true,"distro_target":null,"url":"https://download.nvidia.com/suse/sle15sp1/","enabled":true,"id":3792}],"product_type":"extension","cpe":"cpe:/o:suse:sle-we:15:sp1","free":false,"shortname":"SLEWE15-SP1","description":"SUSE Linux Enterprise Workstation Extension adds additional functionality to a base SUSE Linux Enterprise installation. The Workstation Extension offers additional desktop applications (office suite, email client, graphical editor, multimedia tools) and libraries. Workstation Extension is enabled and installed by default on SUSE Linux Enterprise Desktop installation. Adding the Workstation Extension to a SUSE Linux Enterprise Server installation allows to seamlessly combine both products to create a full featured server workstation.","eula_url":"https://updates.suse.com/SUSE/Products/SLE-Product-WE/15-SP1/x86_64/product.license/","arch":"x86_64","friendly_version":"15 SP1","extensions":[],"release_stage":"released","id":1781,"identifier":"sle-we","recommended":false,"version":"15.1","offline_predecessor_ids":[1431,1639,1893],"name":"SUSE Linux Enterprise Workstation Extension","release_type":null,"former_identifier":"sle-we","friendly_name":"SUSE Linux Enterprise Workstation Extension 15 SP1 x86_64","migration_extra":false},{"eula_url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP1/aarch64/product.license/","arch":"aarch64","free":false,"shortname":"SLEHA15-SP1","description":"SUSE Linux High Availability Extension provides mature, industry-leading open-source high-availability clustering technologies that are easy to set up and use. It can be deployed in physical and/or virtual environments, and can cluster physical servers, virtual servers, or any combination of the two to suit your business’ needs.","product_type":"extension","cpe":"cpe:/o:suse:sle-ha:15:sp1","predecessor_ids":[1608],"online_predecessor_ids":[1608],"repositories":[{"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-HA/15-SP1/aarch64/update/","distro_target":"sle-15-aarch64","autorefresh":true,"id":3311,"enabled":true,"description":"SLE-Product-HA15-SP1-Updates for sle-15-aarch64","installer_updates":false,"name":"SLE-Product-HA15-SP1-Updates"},{"installer_updates":false,"name":"SLE-Product-HA15-SP1-Debuginfo-Updates","description":"SLE-Product-HA15-SP1-Debuginfo-Updates for sle-15-aarch64","id":3312,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-HA/15-SP1/aarch64/update_debug/","distro_target":"sle-15-aarch64","autorefresh":true},{"name":"SLE-Product-HA15-SP1-Pool","installer_updates":false,"description":"SLE-Product-HA15-SP1-Pool for sle-15-aarch64","id":3313,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP1/aarch64/product/","autorefresh":false,"distro_target":"sle-15-aarch64"},{"installer_updates":false,"name":"SLE-Product-HA15-SP1-Debuginfo-Pool","description":"SLE-Product-HA15-SP1-Debuginfo-Pool for sle-15-aarch64","enabled":false,"id":3314,"distro_target":"sle-15-aarch64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP1/aarch64/product_debug/"},{"installer_updates":false,"name":"SLE-Product-HA15-SP1-Source-Pool","description":"SLE-Product-HA15-SP1-Source-Pool for sle-15-aarch64","enabled":false,"id":3315,"distro_target":"sle-15-aarch64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP1/aarch64/product_source/"}],"product_class":"SLE-HAE-ARM64","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise High Availability Extension","former_identifier":"sle-ha","release_type":null,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise High Availability Extension 15 SP1 aarch64","recommended":false,"version":"15.1","extensions":[],"release_stage":"released","identifier":"sle-ha","id":1782,"friendly_version":"15 SP1"},{"release_stage":"released","id":1783,"identifier":"sle-ha","extensions":[],"friendly_version":"15 SP1","friendly_name":"SUSE Linux Enterprise High Availability Extension 15 SP1 ppc64le","migration_extra":false,"release_type":null,"former_identifier":"sle-ha","name":"SUSE Linux Enterprise High Availability Extension","offline_predecessor_ids":[1433,1635,1882],"version":"15.1","recommended":false,"cpe":"cpe:/o:suse:sle-ha:15:sp1","product_type":"extension","online_predecessor_ids":[1606],"product_class":"SLE-HAE-PPC","repositories":[{"installer_updates":false,"name":"SLE-Product-HA15-SP1-Updates","description":"SLE-Product-HA15-SP1-Updates for sle-15-ppc64le","enabled":true,"id":3316,"distro_target":"sle-15-ppc64le","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-HA/15-SP1/ppc64le/update/"},{"description":"SLE-Product-HA15-SP1-Debuginfo-Updates for sle-15-ppc64le","installer_updates":false,"name":"SLE-Product-HA15-SP1-Debuginfo-Updates","distro_target":"sle-15-ppc64le","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-HA/15-SP1/ppc64le/update_debug/","enabled":false,"id":3317},{"enabled":true,"id":3318,"autorefresh":false,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP1/ppc64le/product/","name":"SLE-Product-HA15-SP1-Pool","installer_updates":false,"description":"SLE-Product-HA15-SP1-Pool for sle-15-ppc64le"},{"name":"SLE-Product-HA15-SP1-Debuginfo-Pool","installer_updates":false,"description":"SLE-Product-HA15-SP1-Debuginfo-Pool for sle-15-ppc64le","id":3319,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP1/ppc64le/product_debug/","autorefresh":false,"distro_target":"sle-15-ppc64le"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP1/ppc64le/product_source/","distro_target":"sle-15-ppc64le","autorefresh":false,"id":3320,"enabled":false,"description":"SLE-Product-HA15-SP1-Source-Pool for sle-15-ppc64le","installer_updates":false,"name":"SLE-Product-HA15-SP1-Source-Pool"}],"predecessor_ids":[1606],"arch":"ppc64le","eula_url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP1/ppc64le/product.license/","shortname":"SLEHA15-SP1","description":"SUSE Linux High Availability Extension provides mature, industry-leading open-source high-availability clustering technologies that are easy to set up and use. It can be deployed in physical and/or virtual environments, and can cluster physical servers, virtual servers, or any combination of the two to suit your business’ needs.","free":false},{"friendly_version":"15 SP1","extensions":[],"release_stage":"released","identifier":"sle-ha","id":1784,"recommended":false,"version":"15.1","offline_predecessor_ids":[1080,1082,1084,1086,1109,1110,1257,1287,1434,1436,1636,1638,1883,1885],"name":"SUSE Linux Enterprise High Availability Extension","release_type":null,"former_identifier":"sle-ha","friendly_name":"SUSE Linux Enterprise High Availability Extension 15 SP1 s390x","migration_extra":false,"predecessor_ids":[1605],"repositories":[{"installer_updates":false,"name":"SLE-Product-HA15-SP1-Updates","description":"SLE-Product-HA15-SP1-Updates for sle-15-s390x","enabled":true,"id":3321,"distro_target":"sle-15-s390x","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-HA/15-SP1/s390x/update/"},{"autorefresh":true,"distro_target":"sle-15-s390x","url":"https://updates.suse.com/SUSE/Updates/SLE-Product-HA/15-SP1/s390x/update_debug/","enabled":false,"id":3322,"description":"SLE-Product-HA15-SP1-Debuginfo-Updates for sle-15-s390x","name":"SLE-Product-HA15-SP1-Debuginfo-Updates","installer_updates":false},{"installer_updates":false,"name":"SLE-Product-HA15-SP1-Pool","description":"SLE-Product-HA15-SP1-Pool for sle-15-s390x","id":3323,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP1/s390x/product/","distro_target":"sle-15-s390x","autorefresh":false},{"enabled":false,"id":3324,"autorefresh":false,"distro_target":"sle-15-s390x","url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP1/s390x/product_debug/","name":"SLE-Product-HA15-SP1-Debuginfo-Pool","installer_updates":false,"description":"SLE-Product-HA15-SP1-Debuginfo-Pool for sle-15-s390x"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP1/s390x/product_source/","autorefresh":false,"distro_target":"sle-15-s390x","id":3325,"enabled":false,"description":"SLE-Product-HA15-SP1-Source-Pool for sle-15-s390x","name":"SLE-Product-HA15-SP1-Source-Pool","installer_updates":false}],"online_predecessor_ids":[1605],"product_class":"SLE-HAE-Z","product_type":"extension","cpe":"cpe:/o:suse:sle-ha:15:sp1","free":false,"shortname":"SLEHA15-SP1","description":"SUSE Linux High Availability Extension provides mature, industry-leading open-source high-availability clustering technologies that are easy to set up and use. It can be deployed in physical and/or virtual environments, and can cluster physical servers, virtual servers, or any combination of the two to suit your business’ needs.","eula_url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP1/s390x/product.license/","arch":"s390x"},{"online_predecessor_ids":[1582],"product_class":"SLE-HAE-X86","repositories":[{"distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-HA/15-SP1/x86_64/update/","enabled":true,"id":3326,"description":"SLE-Product-HA15-SP1-Updates for sle-15-x86_64","installer_updates":false,"name":"SLE-Product-HA15-SP1-Updates"},{"name":"SLE-Product-HA15-SP1-Debuginfo-Updates","installer_updates":false,"description":"SLE-Product-HA15-SP1-Debuginfo-Updates for sle-15-x86_64","enabled":false,"id":3327,"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Product-HA/15-SP1/x86_64/update_debug/"},{"name":"SLE-Product-HA15-SP1-Pool","installer_updates":false,"description":"SLE-Product-HA15-SP1-Pool for sle-15-x86_64","id":3328,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP1/x86_64/product/","autorefresh":false,"distro_target":"sle-15-x86_64"},{"description":"SLE-Product-HA15-SP1-Debuginfo-Pool for sle-15-x86_64","name":"SLE-Product-HA15-SP1-Debuginfo-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP1/x86_64/product_debug/","autorefresh":false,"distro_target":"sle-15-x86_64","id":3329,"enabled":false},{"installer_updates":false,"name":"SLE-Product-HA15-SP1-Source-Pool","description":"SLE-Product-HA15-SP1-Source-Pool for sle-15-x86_64","id":3330,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP1/x86_64/product_source/","distro_target":"sle-15-x86_64","autorefresh":false}],"predecessor_ids":[1582],"product_type":"extension","cpe":"cpe:/o:suse:sle-ha:15:sp1","free":false,"shortname":"SLEHA15-SP1","description":"SUSE Linux High Availability Extension provides mature, industry-leading open-source high-availability clustering technologies that are easy to set up and use. It can be deployed in physical and/or virtual environments, and can cluster physical servers, virtual servers, or any combination of the two to suit your business’ needs.","arch":"x86_64","eula_url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP1/x86_64/product.license/","friendly_version":"15 SP1","release_stage":"released","identifier":"sle-ha","id":1785,"extensions":[],"version":"15.1","recommended":false,"release_type":null,"former_identifier":"sle-ha","friendly_name":"SUSE Linux Enterprise High Availability Extension 15 SP1 x86_64","migration_extra":false,"offline_predecessor_ids":[958,961,967,971,1101,1107,1256,1286,1432,1435,1634,1637,1884,1886],"name":"SUSE Linux Enterprise High Availability Extension"},{"arch":"ppc64le","eula_url":"","free":true,"shortname":"SAP-Applications-Module","description":"

The SAP Applications module contains the specialized tools for SAP Applications administration.

The module is maintained and supported by the SUSE Linux Enterprise Server for SAP Applications product subscription.

","product_type":"module","cpe":"cpe:/o:suse:sle-module-sap-applications:15:sp1","online_predecessor_ids":[1726],"product_class":"MODULE","repositories":[{"autorefresh":true,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-SAP-Applications/15-SP1/ppc64le/update/","enabled":true,"id":3331,"description":"SLE-Module-SAP-Applications15-SP1-Updates for sle-15-ppc64le","name":"SLE-Module-SAP-Applications15-SP1-Updates","installer_updates":false},{"installer_updates":false,"name":"SLE-Module-SAP-Applications15-SP1-Debuginfo-Updates","description":"SLE-Module-SAP-Applications15-SP1-Debuginfo-Updates for sle-15-ppc64le","id":3332,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-SAP-Applications/15-SP1/ppc64le/update_debug/","distro_target":"sle-15-ppc64le","autorefresh":true},{"id":3333,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-SAP-Applications/15-SP1/ppc64le/product/","distro_target":"sle-15-ppc64le","autorefresh":false,"installer_updates":false,"name":"SLE-Module-SAP-Applications15-SP1-Pool","description":"SLE-Module-SAP-Applications15-SP1-Pool for sle-15-ppc64le"},{"autorefresh":false,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Products/SLE-Module-SAP-Applications/15-SP1/ppc64le/product_debug/","enabled":false,"id":3334,"description":"SLE-Module-SAP-Applications15-SP1-Debuginfo-Pool for sle-15-ppc64le","name":"SLE-Module-SAP-Applications15-SP1-Debuginfo-Pool","installer_updates":false},{"description":"SLE-Module-SAP-Applications15-SP1-Source-Pool for sle-15-ppc64le","name":"SLE-Module-SAP-Applications15-SP1-Source-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Products/SLE-Module-SAP-Applications/15-SP1/ppc64le/product_source/","enabled":false,"id":3335}],"predecessor_ids":[1726],"release_type":null,"former_identifier":"sle-module-sap-applications","migration_extra":false,"friendly_name":"SAP Applications Module 15 SP1 ppc64le","offline_predecessor_ids":[],"name":"SAP Applications Module","version":"15.1","recommended":false,"release_stage":"released","identifier":"sle-module-sap-applications","id":1786,"extensions":[],"friendly_version":"15 SP1"},{"friendly_name":"SAP Applications Module 15 SP1 x86_64","migration_extra":false,"release_type":null,"former_identifier":"sle-module-sap-applications","name":"SAP Applications Module","offline_predecessor_ids":[],"version":"15.1","recommended":false,"release_stage":"released","id":1787,"identifier":"sle-module-sap-applications","extensions":[],"friendly_version":"15 SP1","arch":"x86_64","eula_url":"","shortname":"SAP-Applications-Module","description":"

The SAP Applications module contains the specialized tools for SAP Applications administration.

The module is maintained and supported by the SUSE Linux Enterprise Server for SAP Applications product subscription.

","free":true,"cpe":"cpe:/o:suse:sle-module-sap-applications:15:sp1","product_type":"module","online_predecessor_ids":[1727],"repositories":[{"id":3336,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-SAP-Applications/15-SP1/x86_64/update/","distro_target":"sle-15-x86_64","autorefresh":true,"installer_updates":false,"name":"SLE-Module-SAP-Applications15-SP1-Updates","description":"SLE-Module-SAP-Applications15-SP1-Updates for sle-15-x86_64"},{"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-SAP-Applications/15-SP1/x86_64/update_debug/","enabled":false,"id":3337,"description":"SLE-Module-SAP-Applications15-SP1-Debuginfo-Updates for sle-15-x86_64","name":"SLE-Module-SAP-Applications15-SP1-Debuginfo-Updates","installer_updates":false},{"description":"SLE-Module-SAP-Applications15-SP1-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-SAP-Applications15-SP1-Pool","distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-SAP-Applications/15-SP1/x86_64/product/","enabled":true,"id":3338},{"description":"SLE-Module-SAP-Applications15-SP1-Debuginfo-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-SAP-Applications15-SP1-Debuginfo-Pool","distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-SAP-Applications/15-SP1/x86_64/product_debug/","enabled":false,"id":3339},{"installer_updates":false,"name":"SLE-Module-SAP-Applications15-SP1-Source-Pool","description":"SLE-Module-SAP-Applications15-SP1-Source-Pool for sle-15-x86_64","id":3340,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-SAP-Applications/15-SP1/x86_64/product_source/","distro_target":"sle-15-x86_64","autorefresh":false}],"product_class":"MODULE","predecessor_ids":[1727]},{"extensions":[],"identifier":"sle-module-containers","release_stage":"released","id":1788,"friendly_version":"15 SP1","offline_predecessor_ids":[1353],"name":"Containers Module","former_identifier":"sle-module-containers","release_type":null,"friendly_name":"Containers Module 15 SP1 ppc64le","migration_extra":false,"recommended":false,"version":"15.1","product_type":"module","cpe":"cpe:/o:suse:sle-module-containers:15:sp1","predecessor_ids":[1640],"online_predecessor_ids":[1640],"product_class":"MODULE","repositories":[{"autorefresh":true,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/15-SP1/ppc64le/update/","enabled":true,"id":3341,"description":"SLE-Module-Containers15-SP1-Updates for sle-15-ppc64le","name":"SLE-Module-Containers15-SP1-Updates","installer_updates":false},{"enabled":false,"id":3342,"autorefresh":true,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/15-SP1/ppc64le/update_debug/","name":"SLE-Module-Containers15-SP1-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-Containers15-SP1-Debuginfo-Updates for sle-15-ppc64le"},{"id":3343,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP1/ppc64le/product/","distro_target":"sle-15-ppc64le","autorefresh":false,"installer_updates":false,"name":"SLE-Module-Containers15-SP1-Pool","description":"SLE-Module-Containers15-SP1-Pool for sle-15-ppc64le"},{"enabled":false,"id":3344,"distro_target":"sle-15-ppc64le","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP1/ppc64le/product_debug/","installer_updates":false,"name":"SLE-Module-Containers15-SP1-Debuginfo-Pool","description":"SLE-Module-Containers15-SP1-Debuginfo-Pool for sle-15-ppc64le"},{"id":3345,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP1/ppc64le/product_source/","distro_target":"sle-15-ppc64le","autorefresh":false,"installer_updates":false,"name":"SLE-Module-Containers15-SP1-Source-Pool","description":"SLE-Module-Containers15-SP1-Source-Pool for sle-15-ppc64le"}],"eula_url":"","arch":"ppc64le","free":true,"description":"

This Module contains several packages revolving around containers and related tools.

","shortname":"Containers-Module"},{"arch":"s390x","eula_url":"","description":"

This Module contains several packages revolving around containers and related tools.

","shortname":"Containers-Module","free":true,"cpe":"cpe:/o:suse:sle-module-containers:15:sp1","product_type":"module","repositories":[{"distro_target":"sle-15-s390x","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/15-SP1/s390x/update/","enabled":true,"id":3346,"description":"SLE-Module-Containers15-SP1-Updates for sle-15-s390x","installer_updates":false,"name":"SLE-Module-Containers15-SP1-Updates"},{"autorefresh":true,"distro_target":"sle-15-s390x","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/15-SP1/s390x/update_debug/","enabled":false,"id":3347,"description":"SLE-Module-Containers15-SP1-Debuginfo-Updates for sle-15-s390x","name":"SLE-Module-Containers15-SP1-Debuginfo-Updates","installer_updates":false},{"id":3348,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP1/s390x/product/","autorefresh":false,"distro_target":"sle-15-s390x","name":"SLE-Module-Containers15-SP1-Pool","installer_updates":false,"description":"SLE-Module-Containers15-SP1-Pool for sle-15-s390x"},{"description":"SLE-Module-Containers15-SP1-Debuginfo-Pool for sle-15-s390x","installer_updates":false,"name":"SLE-Module-Containers15-SP1-Debuginfo-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP1/s390x/product_debug/","distro_target":"sle-15-s390x","autorefresh":false,"id":3349,"enabled":false},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP1/s390x/product_source/","distro_target":"sle-15-s390x","autorefresh":false,"id":3350,"enabled":false,"description":"SLE-Module-Containers15-SP1-Source-Pool for sle-15-s390x","installer_updates":false,"name":"SLE-Module-Containers15-SP1-Source-Pool"}],"online_predecessor_ids":[1641],"product_class":"MODULE","predecessor_ids":[1641],"friendly_name":"Containers Module 15 SP1 s390x","migration_extra":false,"release_type":null,"former_identifier":"sle-module-containers","name":"Containers Module","offline_predecessor_ids":[1354],"version":"15.1","recommended":false,"release_stage":"released","id":1789,"identifier":"sle-module-containers","extensions":[],"friendly_version":"15 SP1"},{"eula_url":"","arch":"x86_64","shortname":"Containers-Module","description":"

This Module contains several packages revolving around containers and related tools.

","free":true,"cpe":"cpe:/o:suse:sle-module-containers:15:sp1","product_type":"module","predecessor_ids":[1642],"repositories":[{"name":"SLE-Module-Containers15-SP1-Updates","installer_updates":false,"description":"SLE-Module-Containers15-SP1-Updates for sle-15-x86_64","id":3351,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/15-SP1/x86_64/update/","autorefresh":true,"distro_target":"sle-15-x86_64"},{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/15-SP1/x86_64/update_debug/","autorefresh":true,"distro_target":"sle-15-x86_64","id":3352,"enabled":false,"description":"SLE-Module-Containers15-SP1-Debuginfo-Updates for sle-15-x86_64","name":"SLE-Module-Containers15-SP1-Debuginfo-Updates","installer_updates":false},{"description":"SLE-Module-Containers15-SP1-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Containers15-SP1-Pool","distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP1/x86_64/product/","enabled":true,"id":3353},{"installer_updates":false,"name":"SLE-Module-Containers15-SP1-Debuginfo-Pool","description":"SLE-Module-Containers15-SP1-Debuginfo-Pool for sle-15-x86_64","enabled":false,"id":3354,"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP1/x86_64/product_debug/"},{"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP1/x86_64/product_source/","enabled":false,"id":3355,"description":"SLE-Module-Containers15-SP1-Source-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Containers15-SP1-Source-Pool"}],"online_predecessor_ids":[1642],"product_class":"MODULE","name":"Containers Module","offline_predecessor_ids":[1332],"migration_extra":false,"friendly_name":"Containers Module 15 SP1 x86_64","release_type":null,"former_identifier":"sle-module-containers","recommended":false,"version":"15.1","extensions":[],"release_stage":"released","identifier":"sle-module-containers","id":1790,"friendly_version":"15 SP1"},{"free":true,"description":"

The Development Tools Module helps you developing applications for SUSE Linux Enterprise 15.

Access to the Development Tools Module is included in your SUSE Linux Enterprise product subscription. The module has a different lifecycle than SUSE Linux Enterprise itself.

","shortname":"Development-Tools-Module","eula_url":"","arch":"aarch64","predecessor_ids":[1598],"product_class":"MODULE","online_predecessor_ids":[1598],"repositories":[{"description":"SLE-Module-DevTools15-SP1-Updates for sle-15-aarch64","name":"SLE-Module-DevTools15-SP1-Updates","installer_updates":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15-SP1/aarch64/update/","autorefresh":true,"distro_target":"sle-15-aarch64","id":3356,"enabled":true},{"name":"SLE-Module-DevTools15-SP1-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-DevTools15-SP1-Debuginfo-Updates for sle-15-aarch64","enabled":false,"id":3357,"autorefresh":true,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15-SP1/aarch64/update_debug/"},{"enabled":true,"id":3358,"autorefresh":false,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP1/aarch64/product/","name":"SLE-Module-DevTools15-SP1-Pool","installer_updates":false,"description":"SLE-Module-DevTools15-SP1-Pool for sle-15-aarch64"},{"description":"SLE-Module-DevTools15-SP1-Debuginfo-Pool for sle-15-aarch64","name":"SLE-Module-DevTools15-SP1-Debuginfo-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP1/aarch64/product_debug/","enabled":false,"id":3359},{"enabled":false,"id":3360,"distro_target":"sle-15-aarch64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP1/aarch64/product_source/","installer_updates":false,"name":"SLE-Module-DevTools15-SP1-Source-Pool","description":"SLE-Module-DevTools15-SP1-Source-Pool for sle-15-aarch64"}],"product_type":"module","cpe":"cpe:/o:suse:sle-module-development-tools:15:sp1","recommended":false,"version":"15.1","offline_predecessor_ids":[1376,1378,1430,1633,1889],"name":"Development Tools Module","release_type":null,"former_identifier":"sle-sdk","friendly_name":"Development Tools Module 15 SP1 aarch64","migration_extra":false,"friendly_version":"15 SP1","extensions":[],"id":1791,"release_stage":"released","identifier":"sle-module-development-tools"},{"product_class":"MODULE","online_predecessor_ids":[1597],"repositories":[{"description":"SLE-Module-DevTools15-SP1-Updates for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-DevTools15-SP1-Updates","distro_target":"sle-15-ppc64le","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15-SP1/ppc64le/update/","enabled":true,"id":3361},{"description":"SLE-Module-DevTools15-SP1-Debuginfo-Updates for sle-15-ppc64le","name":"SLE-Module-DevTools15-SP1-Debuginfo-Updates","installer_updates":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15-SP1/ppc64le/update_debug/","autorefresh":true,"distro_target":"sle-15-ppc64le","id":3362,"enabled":false},{"enabled":true,"id":3363,"distro_target":"sle-15-ppc64le","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP1/ppc64le/product/","installer_updates":false,"name":"SLE-Module-DevTools15-SP1-Pool","description":"SLE-Module-DevTools15-SP1-Pool for sle-15-ppc64le"},{"id":3364,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP1/ppc64le/product_debug/","autorefresh":false,"distro_target":"sle-15-ppc64le","name":"SLE-Module-DevTools15-SP1-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-DevTools15-SP1-Debuginfo-Pool for sle-15-ppc64le"},{"description":"SLE-Module-DevTools15-SP1-Source-Pool for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-DevTools15-SP1-Source-Pool","distro_target":"sle-15-ppc64le","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP1/ppc64le/product_source/","enabled":false,"id":3365}],"predecessor_ids":[1597],"cpe":"cpe:/o:suse:sle-module-development-tools:15:sp1","product_type":"module","shortname":"Development-Tools-Module","description":"

The Development Tools Module helps you developing applications for SUSE Linux Enterprise 15.

Access to the Development Tools Module is included in your SUSE Linux Enterprise product subscription. The module has a different lifecycle than SUSE Linux Enterprise itself.

","free":true,"arch":"ppc64le","eula_url":"","friendly_version":"15 SP1","release_stage":"released","identifier":"sle-module-development-tools","id":1792,"extensions":[],"version":"15.1","recommended":false,"migration_extra":false,"friendly_name":"Development Tools Module 15 SP1 ppc64le","release_type":null,"former_identifier":"sle-sdk","name":"Development Tools Module","offline_predecessor_ids":[1145,1339,1343,1364,1428,1631,1890]},{"id":1793,"release_stage":"released","identifier":"sle-module-development-tools","extensions":[],"friendly_version":"15 SP1","migration_extra":false,"friendly_name":"Development Tools Module 15 SP1 s390x","former_identifier":"sle-sdk","release_type":null,"name":"Development Tools Module","offline_predecessor_ids":[1146,1340,1344,1365,1429,1632,1891],"version":"15.1","recommended":false,"cpe":"cpe:/o:suse:sle-module-development-tools:15:sp1","product_type":"module","repositories":[{"distro_target":"sle-15-s390x","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15-SP1/s390x/update/","enabled":true,"id":3366,"description":"SLE-Module-DevTools15-SP1-Updates for sle-15-s390x","installer_updates":false,"name":"SLE-Module-DevTools15-SP1-Updates"},{"installer_updates":false,"name":"SLE-Module-DevTools15-SP1-Debuginfo-Updates","description":"SLE-Module-DevTools15-SP1-Debuginfo-Updates for sle-15-s390x","id":3367,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15-SP1/s390x/update_debug/","distro_target":"sle-15-s390x","autorefresh":true},{"description":"SLE-Module-DevTools15-SP1-Pool for sle-15-s390x","installer_updates":false,"name":"SLE-Module-DevTools15-SP1-Pool","distro_target":"sle-15-s390x","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP1/s390x/product/","enabled":true,"id":3368},{"description":"SLE-Module-DevTools15-SP1-Debuginfo-Pool for sle-15-s390x","name":"SLE-Module-DevTools15-SP1-Debuginfo-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-15-s390x","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP1/s390x/product_debug/","enabled":false,"id":3369},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP1/s390x/product_source/","autorefresh":false,"distro_target":"sle-15-s390x","id":3370,"enabled":false,"description":"SLE-Module-DevTools15-SP1-Source-Pool for sle-15-s390x","name":"SLE-Module-DevTools15-SP1-Source-Pool","installer_updates":false}],"online_predecessor_ids":[1596],"product_class":"MODULE","predecessor_ids":[1596],"arch":"s390x","eula_url":"","shortname":"Development-Tools-Module","description":"

The Development Tools Module helps you developing applications for SUSE Linux Enterprise 15.

Access to the Development Tools Module is included in your SUSE Linux Enterprise product subscription. The module has a different lifecycle than SUSE Linux Enterprise itself.

","free":true},{"extensions":[],"identifier":"sle-module-development-tools","release_stage":"released","id":1794,"friendly_version":"15 SP1","offline_predecessor_ids":[1223,1323,1341,1366,1427,1630,1892],"name":"Development Tools Module","former_identifier":"sle-sdk","release_type":null,"migration_extra":false,"friendly_name":"Development Tools Module 15 SP1 x86_64","recommended":false,"version":"15.1","product_type":"module","cpe":"cpe:/o:suse:sle-module-development-tools:15:sp1","predecessor_ids":[1579],"online_predecessor_ids":[1579],"product_class":"MODULE","repositories":[{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15-SP1/x86_64/update/","distro_target":"sle-15-x86_64","autorefresh":true,"id":3371,"enabled":true,"description":"SLE-Module-DevTools15-SP1-Updates for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-DevTools15-SP1-Updates"},{"enabled":false,"id":3372,"distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15-SP1/x86_64/update_debug/","installer_updates":false,"name":"SLE-Module-DevTools15-SP1-Debuginfo-Updates","description":"SLE-Module-DevTools15-SP1-Debuginfo-Updates for sle-15-x86_64"},{"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP1/x86_64/product/","enabled":true,"id":3373,"description":"SLE-Module-DevTools15-SP1-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-DevTools15-SP1-Pool"},{"installer_updates":false,"name":"SLE-Module-DevTools15-SP1-Debuginfo-Pool","description":"SLE-Module-DevTools15-SP1-Debuginfo-Pool for sle-15-x86_64","enabled":false,"id":3374,"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP1/x86_64/product_debug/"},{"description":"SLE-Module-DevTools15-SP1-Source-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-DevTools15-SP1-Source-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP1/x86_64/product_source/","distro_target":"sle-15-x86_64","autorefresh":false,"id":3375,"enabled":false}],"eula_url":"","arch":"x86_64","free":true,"shortname":"Development-Tools-Module","description":"

The Development Tools Module helps you developing applications for SUSE Linux Enterprise 15.

Access to the Development Tools Module is included in your SUSE Linux Enterprise product subscription. The module has a different lifecycle than SUSE Linux Enterprise itself.

"},{"version":"15.1","recommended":false,"former_identifier":"sle-module-web-scripting","release_type":null,"migration_extra":false,"friendly_name":"Web and Scripting Module 15 SP1 aarch64","offline_predecessor_ids":[1539],"name":"Web and Scripting Module","friendly_version":"15 SP1","identifier":"sle-module-web-scripting","release_stage":"released","id":1795,"extensions":[],"free":true,"description":"

The SUSE Linux Enterprise Web and Scripting Module should contains additional packages that are helpful when running a webserver.

Access to the Web and Scripting Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself: Package versions in this module are usually supported for at most three years. We are planning to release more recent versions on a schedule of approximately 18 month; the exact dates may differ per package.

","shortname":"Web-Scripting-Module","arch":"aarch64","eula_url":"","product_class":"MODULE","online_predecessor_ids":[1718],"repositories":[{"distro_target":"sle-15-aarch64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/15-SP1/aarch64/update/","enabled":true,"id":3376,"description":"SLE-Module-Web-Scripting15-SP1-Updates for sle-15-aarch64","installer_updates":false,"name":"SLE-Module-Web-Scripting15-SP1-Updates"},{"enabled":false,"id":3377,"autorefresh":true,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/15-SP1/aarch64/update_debug/","name":"SLE-Module-Web-Scripting15-SP1-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-Web-Scripting15-SP1-Debuginfo-Updates for sle-15-aarch64"},{"description":"SLE-Module-Web-Scripting15-SP1-Pool for sle-15-aarch64","installer_updates":false,"name":"SLE-Module-Web-Scripting15-SP1-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP1/aarch64/product/","distro_target":"sle-15-aarch64","autorefresh":false,"id":3378,"enabled":true},{"name":"SLE-Module-Web-Scripting15-SP1-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-Web-Scripting15-SP1-Debuginfo-Pool for sle-15-aarch64","enabled":false,"id":3379,"autorefresh":false,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP1/aarch64/product_debug/"},{"enabled":false,"id":3380,"autorefresh":false,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP1/aarch64/product_source/","name":"SLE-Module-Web-Scripting15-SP1-Source-Pool","installer_updates":false,"description":"SLE-Module-Web-Scripting15-SP1-Source-Pool for sle-15-aarch64"}],"predecessor_ids":[1718],"product_type":"module","cpe":"cpe:/o:suse:sle-module-web-scripting:15:sp1"},{"free":true,"description":"

The SUSE Linux Enterprise Web and Scripting Module should contains additional packages that are helpful when running a webserver.

Access to the Web and Scripting Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself: Package versions in this module are usually supported for at most three years. We are planning to release more recent versions on a schedule of approximately 18 month; the exact dates may differ per package.

","shortname":"Web-Scripting-Module","arch":"ppc64le","eula_url":"","product_class":"MODULE","online_predecessor_ids":[1719],"repositories":[{"id":3381,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/15-SP1/ppc64le/update/","autorefresh":true,"distro_target":"sle-15-ppc64le","name":"SLE-Module-Web-Scripting15-SP1-Updates","installer_updates":false,"description":"SLE-Module-Web-Scripting15-SP1-Updates for sle-15-ppc64le"},{"description":"SLE-Module-Web-Scripting15-SP1-Debuginfo-Updates for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-Web-Scripting15-SP1-Debuginfo-Updates","distro_target":"sle-15-ppc64le","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/15-SP1/ppc64le/update_debug/","enabled":false,"id":3382},{"autorefresh":false,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP1/ppc64le/product/","enabled":true,"id":3383,"description":"SLE-Module-Web-Scripting15-SP1-Pool for sle-15-ppc64le","name":"SLE-Module-Web-Scripting15-SP1-Pool","installer_updates":false},{"enabled":false,"id":3384,"distro_target":"sle-15-ppc64le","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP1/ppc64le/product_debug/","installer_updates":false,"name":"SLE-Module-Web-Scripting15-SP1-Debuginfo-Pool","description":"SLE-Module-Web-Scripting15-SP1-Debuginfo-Pool for sle-15-ppc64le"},{"description":"SLE-Module-Web-Scripting15-SP1-Source-Pool for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-Web-Scripting15-SP1-Source-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP1/ppc64le/product_source/","distro_target":"sle-15-ppc64le","autorefresh":false,"id":3385,"enabled":false}],"predecessor_ids":[1719],"product_type":"module","cpe":"cpe:/o:suse:sle-module-web-scripting:15:sp1","version":"15.1","recommended":false,"release_type":null,"former_identifier":"sle-module-web-scripting","migration_extra":false,"friendly_name":"Web and Scripting Module 15 SP1 ppc64le","offline_predecessor_ids":[1151],"name":"Web and Scripting Module","friendly_version":"15 SP1","id":1796,"release_stage":"released","identifier":"sle-module-web-scripting","extensions":[]},{"description":"

The SUSE Linux Enterprise Web and Scripting Module should contains additional packages that are helpful when running a webserver.

Access to the Web and Scripting Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself: Package versions in this module are usually supported for at most three years. We are planning to release more recent versions on a schedule of approximately 18 month; the exact dates may differ per package.

","shortname":"Web-Scripting-Module","free":true,"arch":"s390x","eula_url":"","repositories":[{"description":"SLE-Module-Web-Scripting15-SP1-Updates for sle-15-s390x","installer_updates":false,"name":"SLE-Module-Web-Scripting15-SP1-Updates","distro_target":"sle-15-s390x","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/15-SP1/s390x/update/","enabled":true,"id":3386},{"id":3387,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/15-SP1/s390x/update_debug/","distro_target":"sle-15-s390x","autorefresh":true,"installer_updates":false,"name":"SLE-Module-Web-Scripting15-SP1-Debuginfo-Updates","description":"SLE-Module-Web-Scripting15-SP1-Debuginfo-Updates for sle-15-s390x"},{"description":"SLE-Module-Web-Scripting15-SP1-Pool for sle-15-s390x","installer_updates":false,"name":"SLE-Module-Web-Scripting15-SP1-Pool","distro_target":"sle-15-s390x","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP1/s390x/product/","enabled":true,"id":3388},{"description":"SLE-Module-Web-Scripting15-SP1-Debuginfo-Pool for sle-15-s390x","installer_updates":false,"name":"SLE-Module-Web-Scripting15-SP1-Debuginfo-Pool","distro_target":"sle-15-s390x","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP1/s390x/product_debug/","enabled":false,"id":3389},{"description":"SLE-Module-Web-Scripting15-SP1-Source-Pool for sle-15-s390x","name":"SLE-Module-Web-Scripting15-SP1-Source-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP1/s390x/product_source/","autorefresh":false,"distro_target":"sle-15-s390x","id":3390,"enabled":false}],"online_predecessor_ids":[1720],"product_class":"MODULE","predecessor_ids":[1720],"cpe":"cpe:/o:suse:sle-module-web-scripting:15:sp1","product_type":"module","version":"15.1","recommended":false,"friendly_name":"Web and Scripting Module 15 SP1 s390x","migration_extra":false,"former_identifier":"sle-module-web-scripting","release_type":null,"name":"Web and Scripting Module","offline_predecessor_ids":[1152],"friendly_version":"15 SP1","id":1797,"release_stage":"released","identifier":"sle-module-web-scripting","extensions":[]},{"cpe":"cpe:/o:suse:sle-module-web-scripting:15:sp1","product_type":"module","product_class":"MODULE","online_predecessor_ids":[1721],"repositories":[{"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/15-SP1/x86_64/update/","enabled":true,"id":3391,"description":"SLE-Module-Web-Scripting15-SP1-Updates for sle-15-x86_64","name":"SLE-Module-Web-Scripting15-SP1-Updates","installer_updates":false},{"description":"SLE-Module-Web-Scripting15-SP1-Debuginfo-Updates for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Web-Scripting15-SP1-Debuginfo-Updates","distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/15-SP1/x86_64/update_debug/","enabled":false,"id":3392},{"description":"SLE-Module-Web-Scripting15-SP1-Pool for sle-15-x86_64","name":"SLE-Module-Web-Scripting15-SP1-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP1/x86_64/product/","autorefresh":false,"distro_target":"sle-15-x86_64","id":3393,"enabled":true},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP1/x86_64/product_debug/","autorefresh":false,"distro_target":"sle-15-x86_64","id":3394,"enabled":false,"description":"SLE-Module-Web-Scripting15-SP1-Debuginfo-Pool for sle-15-x86_64","name":"SLE-Module-Web-Scripting15-SP1-Debuginfo-Pool","installer_updates":false},{"description":"SLE-Module-Web-Scripting15-SP1-Source-Pool for sle-15-x86_64","name":"SLE-Module-Web-Scripting15-SP1-Source-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP1/x86_64/product_source/","enabled":false,"id":3395}],"predecessor_ids":[1721],"arch":"x86_64","eula_url":"","shortname":"Web-Scripting-Module","description":"

The SUSE Linux Enterprise Web and Scripting Module should contains additional packages that are helpful when running a webserver.

Access to the Web and Scripting Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself: Package versions in this module are usually supported for at most three years. We are planning to release more recent versions on a schedule of approximately 18 month; the exact dates may differ per package.

","free":true,"release_stage":"released","id":1798,"identifier":"sle-module-web-scripting","extensions":[],"friendly_version":"15 SP1","friendly_name":"Web and Scripting Module 15 SP1 x86_64","migration_extra":false,"former_identifier":"sle-module-web-scripting","release_type":null,"name":"Web and Scripting Module","offline_predecessor_ids":[1153],"version":"15.1","recommended":false},{"arch":"aarch64","eula_url":"","free":true,"description":"

The SUSE Linux Enterprise Server High Performance Computing (HPC) module delivers specific tools commonly used for high performance, numerically intensive workloads.

SUSE packages these tools in the SLES HPC Module to provide greater flexibility to deliver new versions or new tools more rapidly than the standard SUSE Linux Enterprise lifecycle would permit.

Packages in this module are generally supported until a newer version of the package is released or the package is dropped from the module.

","shortname":"HPC-Module","product_type":"module","cpe":"cpe:/o:suse:sle-module-hpc:15:sp1","online_predecessor_ids":[1733],"repositories":[{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-HPC/15-SP1/aarch64/update/","distro_target":"sle-15-aarch64","autorefresh":true,"id":3396,"enabled":true,"description":"SLE-Module-HPC15-SP1-Updates for sle-15-aarch64","installer_updates":false,"name":"SLE-Module-HPC15-SP1-Updates"},{"enabled":false,"id":3397,"distro_target":"sle-15-aarch64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-HPC/15-SP1/aarch64/update_debug/","installer_updates":false,"name":"SLE-Module-HPC15-SP1-Debuginfo-Updates","description":"SLE-Module-HPC15-SP1-Debuginfo-Updates for sle-15-aarch64"},{"installer_updates":false,"name":"SLE-Module-HPC15-SP1-Pool","description":"SLE-Module-HPC15-SP1-Pool for sle-15-aarch64","id":3398,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-HPC/15-SP1/aarch64/product/","distro_target":"sle-15-aarch64","autorefresh":false},{"installer_updates":false,"name":"SLE-Module-HPC15-SP1-Debuginfo-Pool","description":"SLE-Module-HPC15-SP1-Debuginfo-Pool for sle-15-aarch64","id":3399,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-HPC/15-SP1/aarch64/product_debug/","distro_target":"sle-15-aarch64","autorefresh":false},{"name":"SLE-Module-HPC15-SP1-Source-Pool","installer_updates":false,"description":"SLE-Module-HPC15-SP1-Source-Pool for sle-15-aarch64","enabled":false,"id":3400,"autorefresh":false,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-HPC/15-SP1/aarch64/product_source/"}],"product_class":"MODULE","predecessor_ids":[1733],"former_identifier":"sle-module-hpc","release_type":null,"friendly_name":"HPC Module 15 SP1 aarch64","migration_extra":false,"offline_predecessor_ids":[1522],"name":"HPC Module","version":"15.1","recommended":false,"id":1799,"release_stage":"released","identifier":"sle-module-hpc","extensions":[],"friendly_version":"15 SP1"},{"cpe":"cpe:/o:suse:sle-module-hpc:15:sp1","product_type":"module","online_predecessor_ids":[1734],"product_class":"MODULE","repositories":[{"description":"SLE-Module-HPC15-SP1-Updates for sle-15-x86_64","name":"SLE-Module-HPC15-SP1-Updates","installer_updates":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-HPC/15-SP1/x86_64/update/","autorefresh":true,"distro_target":"sle-15-x86_64","id":3401,"enabled":true},{"description":"SLE-Module-HPC15-SP1-Debuginfo-Updates for sle-15-x86_64","name":"SLE-Module-HPC15-SP1-Debuginfo-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-HPC/15-SP1/x86_64/update_debug/","enabled":false,"id":3402},{"description":"SLE-Module-HPC15-SP1-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-HPC15-SP1-Pool","distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-HPC/15-SP1/x86_64/product/","enabled":true,"id":3403},{"description":"SLE-Module-HPC15-SP1-Debuginfo-Pool for sle-15-x86_64","name":"SLE-Module-HPC15-SP1-Debuginfo-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-HPC/15-SP1/x86_64/product_debug/","enabled":false,"id":3404},{"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-HPC/15-SP1/x86_64/product_source/","enabled":false,"id":3405,"description":"SLE-Module-HPC15-SP1-Source-Pool for sle-15-x86_64","name":"SLE-Module-HPC15-SP1-Source-Pool","installer_updates":false}],"predecessor_ids":[1734],"arch":"x86_64","eula_url":"","shortname":"HPC-Module","description":"

The SUSE Linux Enterprise Server High Performance Computing (HPC) module delivers specific tools commonly used for high performance, numerically intensive workloads.

SUSE packages these tools in the SLES HPC Module to provide greater flexibility to deliver new versions or new tools more rapidly than the standard SUSE Linux Enterprise lifecycle would permit.

Packages in this module are generally supported until a newer version of the package is released or the package is dropped from the module.

","free":true,"release_stage":"released","id":1800,"identifier":"sle-module-hpc","extensions":[],"friendly_version":"15 SP1","friendly_name":"HPC Module 15 SP1 x86_64","migration_extra":false,"former_identifier":"sle-module-hpc","release_type":null,"name":"HPC Module","offline_predecessor_ids":[1440],"version":"15.1","recommended":false},{"friendly_version":"15 SP1","extensions":[],"identifier":"sle-module-legacy","release_stage":"released","id":1801,"recommended":false,"version":"15.1","name":"Legacy Module","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"Legacy Module 15 SP1 aarch64","release_type":null,"former_identifier":"sle-module-legacy","predecessor_ids":[1604],"repositories":[{"installer_updates":false,"name":"SLE-Module-Legacy15-SP1-Updates","description":"SLE-Module-Legacy15-SP1-Updates for sle-15-aarch64","enabled":true,"id":3406,"distro_target":"sle-15-aarch64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/15-SP1/aarch64/update/"},{"description":"SLE-Module-Legacy15-SP1-Debuginfo-Updates for sle-15-aarch64","name":"SLE-Module-Legacy15-SP1-Debuginfo-Updates","installer_updates":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/15-SP1/aarch64/update_debug/","autorefresh":true,"distro_target":"sle-15-aarch64","id":3407,"enabled":false},{"id":3408,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15-SP1/aarch64/product/","distro_target":"sle-15-aarch64","autorefresh":false,"installer_updates":false,"name":"SLE-Module-Legacy15-SP1-Pool","description":"SLE-Module-Legacy15-SP1-Pool for sle-15-aarch64"},{"description":"SLE-Module-Legacy15-SP1-Debuginfo-Pool for sle-15-aarch64","name":"SLE-Module-Legacy15-SP1-Debuginfo-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15-SP1/aarch64/product_debug/","autorefresh":false,"distro_target":"sle-15-aarch64","id":3409,"enabled":false},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15-SP1/aarch64/product_source/","autorefresh":false,"distro_target":"sle-15-aarch64","id":3410,"enabled":false,"description":"SLE-Module-Legacy15-SP1-Source-Pool for sle-15-aarch64","name":"SLE-Module-Legacy15-SP1-Source-Pool","installer_updates":false}],"online_predecessor_ids":[1604],"product_class":"MODULE","cpe":"cpe:/o:suse:sle-module-legacy:15:sp1","product_type":"module","description":"

The Legacy Module helps you migrating applications from SUSE Linux Enterprise 12 and other systems to SUSE Linux Enterprise 15, by providing packages which are discontinued on SUSE Linux Enterprise Server, such as: ntp, IBM Java 8, and a number of libraries.

Access to the Legacy Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself. Packages in the this module are usually supported for at most three years.

","shortname":"Legacy-Module","free":true,"eula_url":"","arch":"aarch64"},{"product_type":"module","cpe":"cpe:/o:suse:sle-module-legacy:15:sp1","online_predecessor_ids":[1603],"repositories":[{"enabled":true,"id":3411,"distro_target":"sle-15-ppc64le","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/15-SP1/ppc64le/update/","installer_updates":false,"name":"SLE-Module-Legacy15-SP1-Updates","description":"SLE-Module-Legacy15-SP1-Updates for sle-15-ppc64le"},{"id":3412,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/15-SP1/ppc64le/update_debug/","distro_target":"sle-15-ppc64le","autorefresh":true,"installer_updates":false,"name":"SLE-Module-Legacy15-SP1-Debuginfo-Updates","description":"SLE-Module-Legacy15-SP1-Debuginfo-Updates for sle-15-ppc64le"},{"name":"SLE-Module-Legacy15-SP1-Pool","installer_updates":false,"description":"SLE-Module-Legacy15-SP1-Pool for sle-15-ppc64le","id":3413,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15-SP1/ppc64le/product/","autorefresh":false,"distro_target":"sle-15-ppc64le"},{"description":"SLE-Module-Legacy15-SP1-Debuginfo-Pool for sle-15-ppc64le","name":"SLE-Module-Legacy15-SP1-Debuginfo-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15-SP1/ppc64le/product_debug/","autorefresh":false,"distro_target":"sle-15-ppc64le","id":3414,"enabled":false},{"installer_updates":false,"name":"SLE-Module-Legacy15-SP1-Source-Pool","description":"SLE-Module-Legacy15-SP1-Source-Pool for sle-15-ppc64le","id":3415,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15-SP1/ppc64le/product_source/","distro_target":"sle-15-ppc64le","autorefresh":false}],"product_class":"MODULE","predecessor_ids":[1603],"arch":"ppc64le","eula_url":"","free":true,"description":"

The Legacy Module helps you migrating applications from SUSE Linux Enterprise 12 and other systems to SUSE Linux Enterprise 15, by providing packages which are discontinued on SUSE Linux Enterprise Server, such as: ntp, IBM Java 8, and a number of libraries.

Access to the Legacy Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself. Packages in the this module are usually supported for at most three years.

","shortname":"Legacy-Module","identifier":"sle-module-legacy","release_stage":"released","id":1802,"extensions":[],"friendly_version":"15 SP1","former_identifier":"sle-module-legacy","release_type":null,"friendly_name":"Legacy Module 15 SP1 ppc64le","migration_extra":false,"offline_predecessor_ids":[1148],"name":"Legacy Module","version":"15.1","recommended":false},{"version":"15.1","recommended":false,"friendly_name":"Legacy Module 15 SP1 s390x","migration_extra":false,"release_type":null,"former_identifier":"sle-module-legacy","name":"Legacy Module","offline_predecessor_ids":[1149],"friendly_version":"15 SP1","identifier":"sle-module-legacy","release_stage":"released","id":1803,"extensions":[],"description":"

The Legacy Module helps you migrating applications from SUSE Linux Enterprise 12 and other systems to SUSE Linux Enterprise 15, by providing packages which are discontinued on SUSE Linux Enterprise Server, such as: ntp, IBM Java 8, and a number of libraries.

Access to the Legacy Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself. Packages in the this module are usually supported for at most three years.

","shortname":"Legacy-Module","free":true,"arch":"s390x","eula_url":"","online_predecessor_ids":[1602],"repositories":[{"installer_updates":false,"name":"SLE-Module-Legacy15-SP1-Updates","description":"SLE-Module-Legacy15-SP1-Updates for sle-15-s390x","enabled":true,"id":3416,"distro_target":"sle-15-s390x","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/15-SP1/s390x/update/"},{"id":3417,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/15-SP1/s390x/update_debug/","autorefresh":true,"distro_target":"sle-15-s390x","name":"SLE-Module-Legacy15-SP1-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-Legacy15-SP1-Debuginfo-Updates for sle-15-s390x"},{"description":"SLE-Module-Legacy15-SP1-Pool for sle-15-s390x","name":"SLE-Module-Legacy15-SP1-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15-SP1/s390x/product/","autorefresh":false,"distro_target":"sle-15-s390x","id":3418,"enabled":true},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15-SP1/s390x/product_debug/","autorefresh":false,"distro_target":"sle-15-s390x","id":3419,"enabled":false,"description":"SLE-Module-Legacy15-SP1-Debuginfo-Pool for sle-15-s390x","name":"SLE-Module-Legacy15-SP1-Debuginfo-Pool","installer_updates":false},{"description":"SLE-Module-Legacy15-SP1-Source-Pool for sle-15-s390x","name":"SLE-Module-Legacy15-SP1-Source-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15-SP1/s390x/product_source/","autorefresh":false,"distro_target":"sle-15-s390x","id":3420,"enabled":false}],"product_class":"MODULE","predecessor_ids":[1602],"cpe":"cpe:/o:suse:sle-module-legacy:15:sp1","product_type":"module"},{"extensions":[],"release_stage":"released","identifier":"sle-module-legacy","id":1804,"friendly_version":"15 SP1","name":"Legacy Module","offline_predecessor_ids":[1150],"migration_extra":false,"friendly_name":"Legacy Module 15 SP1 x86_64","release_type":null,"former_identifier":"sle-module-legacy","recommended":false,"version":"15.1","cpe":"cpe:/o:suse:sle-module-legacy:15:sp1","product_type":"module","predecessor_ids":[1581],"repositories":[{"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/15-SP1/x86_64/update/","enabled":true,"id":3421,"description":"SLE-Module-Legacy15-SP1-Updates for sle-15-x86_64","name":"SLE-Module-Legacy15-SP1-Updates","installer_updates":false},{"id":3422,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/15-SP1/x86_64/update_debug/","autorefresh":true,"distro_target":"sle-15-x86_64","name":"SLE-Module-Legacy15-SP1-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-Legacy15-SP1-Debuginfo-Updates for sle-15-x86_64"},{"enabled":true,"id":3423,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15-SP1/x86_64/product/","name":"SLE-Module-Legacy15-SP1-Pool","installer_updates":false,"description":"SLE-Module-Legacy15-SP1-Pool for sle-15-x86_64"},{"name":"SLE-Module-Legacy15-SP1-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-Legacy15-SP1-Debuginfo-Pool for sle-15-x86_64","id":3424,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15-SP1/x86_64/product_debug/","autorefresh":false,"distro_target":"sle-15-x86_64"},{"description":"SLE-Module-Legacy15-SP1-Source-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Legacy15-SP1-Source-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15-SP1/x86_64/product_source/","distro_target":"sle-15-x86_64","autorefresh":false,"id":3425,"enabled":false}],"online_predecessor_ids":[1581],"product_class":"MODULE","eula_url":"","arch":"x86_64","shortname":"Legacy-Module","description":"

The Legacy Module helps you migrating applications from SUSE Linux Enterprise 12 and other systems to SUSE Linux Enterprise 15, by providing packages which are discontinued on SUSE Linux Enterprise Server, such as: ntp, IBM Java 8, and a number of libraries.

Access to the Legacy Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself. Packages in the this module are usually supported for at most three years.

","free":true},{"free":true,"shortname":"Public-Cloud-Module","description":"

The Public Cloud Module is a collection of tools that enables you to create and manage cloud images from the commandline on SUSE Linux Enterprise Server. When building your own images with KIWI or SUSE Studio, initialization code specific to the target cloud is included in that image.

Access to the Public Cloud Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself; please check the Release Notes for further details.

","arch":"aarch64","eula_url":"","online_predecessor_ids":[1645],"product_class":"MODULE","repositories":[{"description":"SLE-Module-Public-Cloud15-SP1-Updates for sle-15-aarch64","installer_updates":false,"name":"SLE-Module-Public-Cloud15-SP1-Updates","distro_target":"sle-15-aarch64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/15-SP1/aarch64/update/","enabled":true,"id":3426},{"description":"SLE-Module-Public-Cloud15-SP1-Debuginfo-Updates for sle-15-aarch64","name":"SLE-Module-Public-Cloud15-SP1-Debuginfo-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/15-SP1/aarch64/update_debug/","enabled":false,"id":3427},{"distro_target":"sle-15-aarch64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP1/aarch64/product/","enabled":true,"id":3428,"description":"SLE-Module-Public-Cloud15-SP1-Pool for sle-15-aarch64","installer_updates":false,"name":"SLE-Module-Public-Cloud15-SP1-Pool"},{"name":"SLE-Module-Public-Cloud15-SP1-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-Public-Cloud15-SP1-Debuginfo-Pool for sle-15-aarch64","id":3429,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP1/aarch64/product_debug/","autorefresh":false,"distro_target":"sle-15-aarch64"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP1/aarch64/product_source/","autorefresh":false,"distro_target":"sle-15-aarch64","id":3430,"enabled":false,"description":"SLE-Module-Public-Cloud15-SP1-Source-Pool for sle-15-aarch64","name":"SLE-Module-Public-Cloud15-SP1-Source-Pool","installer_updates":false}],"predecessor_ids":[1645],"product_type":"module","cpe":"cpe:/o:suse:sle-module-public-cloud:15:sp1","version":"15.1","recommended":false,"release_type":null,"former_identifier":"sle-module-public-cloud","migration_extra":false,"friendly_name":"Public Cloud Module 15 SP1 aarch64","offline_predecessor_ids":[1528],"name":"Public Cloud Module","friendly_version":"15 SP1","release_stage":"released","identifier":"sle-module-public-cloud","id":1805,"extensions":[]},{"predecessor_ids":[1616],"product_class":"MODULE","online_predecessor_ids":[1616],"repositories":[{"enabled":true,"id":3431,"autorefresh":true,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/15-SP1/ppc64le/update/","name":"SLE-Module-Public-Cloud15-SP1-Updates","installer_updates":false,"description":"SLE-Module-Public-Cloud15-SP1-Updates for sle-15-ppc64le"},{"id":3432,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/15-SP1/ppc64le/update_debug/","autorefresh":true,"distro_target":"sle-15-ppc64le","name":"SLE-Module-Public-Cloud15-SP1-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-Public-Cloud15-SP1-Debuginfo-Updates for sle-15-ppc64le"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP1/ppc64le/product/","autorefresh":false,"distro_target":"sle-15-ppc64le","id":3433,"enabled":true,"description":"SLE-Module-Public-Cloud15-SP1-Pool for sle-15-ppc64le","name":"SLE-Module-Public-Cloud15-SP1-Pool","installer_updates":false},{"installer_updates":false,"name":"SLE-Module-Public-Cloud15-SP1-Debuginfo-Pool","description":"SLE-Module-Public-Cloud15-SP1-Debuginfo-Pool for sle-15-ppc64le","id":3434,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP1/ppc64le/product_debug/","distro_target":"sle-15-ppc64le","autorefresh":false},{"id":3435,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP1/ppc64le/product_source/","distro_target":"sle-15-ppc64le","autorefresh":false,"installer_updates":false,"name":"SLE-Module-Public-Cloud15-SP1-Source-Pool","description":"SLE-Module-Public-Cloud15-SP1-Source-Pool for sle-15-ppc64le"}],"product_type":"module","cpe":"cpe:/o:suse:sle-module-public-cloud:15:sp1","free":true,"description":"

The Public Cloud Module is a collection of tools that enables you to create and manage cloud images from the commandline on SUSE Linux Enterprise Server. When building your own images with KIWI or SUSE Studio, initialization code specific to the target cloud is included in that image.

Access to the Public Cloud Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself; please check the Release Notes for further details.

","shortname":"Public-Cloud-Module","eula_url":"","arch":"ppc64le","friendly_version":"15 SP1","extensions":[],"release_stage":"released","id":1806,"identifier":"sle-module-public-cloud","recommended":false,"version":"15.1","offline_predecessor_ids":[1218],"name":"Public Cloud Module","former_identifier":"sle-module-public-cloud","release_type":null,"friendly_name":"Public Cloud Module 15 SP1 ppc64le","migration_extra":false},{"friendly_version":"15 SP1","release_stage":"released","id":1807,"identifier":"sle-module-public-cloud","extensions":[],"version":"15.1","recommended":false,"former_identifier":"sle-module-public-cloud","release_type":null,"migration_extra":false,"friendly_name":"Public Cloud Module 15 SP1 s390x","offline_predecessor_ids":[1219],"name":"Public Cloud Module","repositories":[{"enabled":true,"id":3436,"distro_target":"sle-15-s390x","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/15-SP1/s390x/update/","installer_updates":false,"name":"SLE-Module-Public-Cloud15-SP1-Updates","description":"SLE-Module-Public-Cloud15-SP1-Updates for sle-15-s390x"},{"description":"SLE-Module-Public-Cloud15-SP1-Debuginfo-Updates for sle-15-s390x","name":"SLE-Module-Public-Cloud15-SP1-Debuginfo-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-15-s390x","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/15-SP1/s390x/update_debug/","enabled":false,"id":3437},{"description":"SLE-Module-Public-Cloud15-SP1-Pool for sle-15-s390x","name":"SLE-Module-Public-Cloud15-SP1-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP1/s390x/product/","autorefresh":false,"distro_target":"sle-15-s390x","id":3438,"enabled":true},{"id":3439,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP1/s390x/product_debug/","autorefresh":false,"distro_target":"sle-15-s390x","name":"SLE-Module-Public-Cloud15-SP1-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-Public-Cloud15-SP1-Debuginfo-Pool for sle-15-s390x"},{"description":"SLE-Module-Public-Cloud15-SP1-Source-Pool for sle-15-s390x","name":"SLE-Module-Public-Cloud15-SP1-Source-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP1/s390x/product_source/","autorefresh":false,"distro_target":"sle-15-s390x","id":3440,"enabled":false}],"online_predecessor_ids":[1646],"product_class":"MODULE","predecessor_ids":[1646],"product_type":"module","cpe":"cpe:/o:suse:sle-module-public-cloud:15:sp1","free":true,"description":"

The Public Cloud Module is a collection of tools that enables you to create and manage cloud images from the commandline on SUSE Linux Enterprise Server. When building your own images with KIWI or SUSE Studio, initialization code specific to the target cloud is included in that image.

Access to the Public Cloud Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself; please check the Release Notes for further details.

","shortname":"Public-Cloud-Module","arch":"s390x","eula_url":""},{"former_identifier":"sle-module-public-cloud","release_type":null,"friendly_name":"Public Cloud Module 15 SP1 x86_64","migration_extra":false,"offline_predecessor_ids":[1220],"name":"Public Cloud Module","version":"15.1","recommended":false,"release_stage":"released","identifier":"sle-module-public-cloud","id":1808,"extensions":[],"friendly_version":"15 SP1","arch":"x86_64","eula_url":"","free":true,"shortname":"Public-Cloud-Module","description":"

The Public Cloud Module is a collection of tools that enables you to create and manage cloud images from the commandline on SUSE Linux Enterprise Server. When building your own images with KIWI or SUSE Studio, initialization code specific to the target cloud is included in that image.

Access to the Public Cloud Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself; please check the Release Notes for further details.

","product_type":"module","cpe":"cpe:/o:suse:sle-module-public-cloud:15:sp1","product_class":"MODULE","online_predecessor_ids":[1611],"repositories":[{"description":"SLE-Module-Public-Cloud15-SP1-Updates for sle-15-x86_64","name":"SLE-Module-Public-Cloud15-SP1-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/15-SP1/x86_64/update/","enabled":true,"id":3441},{"installer_updates":false,"name":"SLE-Module-Public-Cloud15-SP1-Debuginfo-Updates","description":"SLE-Module-Public-Cloud15-SP1-Debuginfo-Updates for sle-15-x86_64","id":3442,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/15-SP1/x86_64/update_debug/","distro_target":"sle-15-x86_64","autorefresh":true},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP1/x86_64/product/","distro_target":"sle-15-x86_64","autorefresh":false,"id":3443,"enabled":true,"description":"SLE-Module-Public-Cloud15-SP1-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Public-Cloud15-SP1-Pool"},{"description":"SLE-Module-Public-Cloud15-SP1-Debuginfo-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Public-Cloud15-SP1-Debuginfo-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP1/x86_64/product_debug/","distro_target":"sle-15-x86_64","autorefresh":false,"id":3444,"enabled":false},{"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP1/x86_64/product_source/","enabled":false,"id":3445,"description":"SLE-Module-Public-Cloud15-SP1-Source-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Public-Cloud15-SP1-Source-Pool"}],"predecessor_ids":[1611]},{"product_class":"MODULE","online_predecessor_ids":[1728],"repositories":[{"name":"SLE-Module-CAP-Tools15-SP1-Updates","installer_updates":false,"description":"SLE-Module-CAP-Tools15-SP1-Updates for sle-15-x86_64","enabled":true,"id":3446,"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-CAP-Tools/15-SP1/x86_64/update/"},{"description":"SLE-Module-CAP-Tools15-SP1-Debuginfo-Updates for sle-15-x86_64","name":"SLE-Module-CAP-Tools15-SP1-Debuginfo-Updates","installer_updates":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-CAP-Tools/15-SP1/x86_64/update_debug/","autorefresh":true,"distro_target":"sle-15-x86_64","id":3447,"enabled":false},{"name":"SLE-Module-CAP-Tools15-SP1-Pool","installer_updates":false,"description":"SLE-Module-CAP-Tools15-SP1-Pool for sle-15-x86_64","enabled":true,"id":3448,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-CAP-Tools/15-SP1/x86_64/product/"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-CAP-Tools/15-SP1/x86_64/product_debug/","autorefresh":false,"distro_target":"sle-15-x86_64","id":3449,"enabled":false,"description":"SLE-Module-CAP-Tools15-SP1-Debuginfo-Pool for sle-15-x86_64","name":"SLE-Module-CAP-Tools15-SP1-Debuginfo-Pool","installer_updates":false},{"description":"SLE-Module-CAP-Tools15-SP1-Source-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-CAP-Tools15-SP1-Source-Pool","distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-CAP-Tools/15-SP1/x86_64/product_source/","enabled":false,"id":3450}],"predecessor_ids":[1728],"product_type":"module","cpe":"cpe:/o:suse:sle-module-cap-tools:15:sp1","free":true,"description":"

The SUSE Cloud Application Platform Tools Module is a collection of tools that enables you to interact with the SUSE Cloud Application Platform product itself, providing the commandline client for instance.

Access to the SUSE Cloud Application Platform Tools Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself; please check the Release Notes for further details.

","shortname":"SUSE-CAP-Tools-Module","arch":"x86_64","eula_url":"","friendly_version":"15 SP1","release_stage":"released","id":1809,"identifier":"sle-module-cap-tools","extensions":[],"version":"15.1","recommended":false,"former_identifier":"sle-module-cap-tools","release_type":null,"migration_extra":false,"friendly_name":"SUSE Cloud Application Platform Tools Module 15 SP1 x86_64","offline_predecessor_ids":[1678],"name":"SUSE Cloud Application Platform Tools Module"},{"id":1810,"release_stage":"released","identifier":"PackageHub","extensions":[],"friendly_version":"12 SP4","migration_extra":false,"friendly_name":"SUSE Package Hub 12 SP4 aarch64","former_identifier":"PackageHub","release_type":null,"name":"SUSE Package Hub","offline_predecessor_ids":[],"version":"12.4","recommended":false,"cpe":"cpe:/o:suse:packagehub:12:sp4","product_type":"extension","repositories":[{"url":"https://updates.suse.com/SUSE/Backports/SLE-12-SP4_aarch64/standard/","autorefresh":false,"distro_target":"sle-12-aarch64","id":3451,"enabled":true,"description":"SUSE-PackageHub-12-SP4-Standard-Pool for sle-12-aarch64","name":"SUSE-PackageHub-12-SP4-Standard-Pool","installer_updates":false},{"id":3452,"enabled":false,"url":"https://updates.suse.com/SUSE/Backports/SLE-12-SP4_aarch64/standard_debug/","autorefresh":true,"distro_target":"sle-12-aarch64","name":"SUSE-PackageHub-12-SP4-Debuginfo","installer_updates":false,"description":"SUSE-PackageHub-12-SP4-Debuginfo for sle-12-aarch64"},{"installer_updates":false,"name":"SUSE-PackageHub-12-SP4-Pool","description":"SUSE-PackageHub-12-SP4-Pool for sle-12-aarch64","enabled":true,"id":3453,"distro_target":"sle-12-aarch64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Backports/SLE-12-SP4_aarch64/product/"}],"online_predecessor_ids":[1482,1532],"product_class":"MODULE","predecessor_ids":[1482,1532],"arch":"aarch64","eula_url":"","shortname":"SUSE-PackageHub-12-SP4","description":"SUSE Package Hub is a free of charge extension providing access to community maintained packages built to run on SUSE Linux Enterprise Server. Built from the same sources used in the openSUSE distributions, these quality packages provide additional software to what is found in the SUSE Linux Enterprise Server product. Packages from the Package Hub are delivered without L3 support from SUSE. General updates and fixes to the packages in SUSE Package Hub are provided by the openSUSE community based on their discretion though SUSE will monitor and ensure that any known critical security issues will be addressed. Packages in the Package Hub are approved by SUSE for use with SUSE Linux Enterprise Server 12 and to not interfere with the supportability of SUSE Linux Enterprise Server it's modules and extensions. For more information about SUSE Package Hub please visit https://packagehub.suse.com.","free":true},{"release_stage":"released","identifier":"PackageHub","id":1811,"extensions":[],"friendly_version":"12 SP4","former_identifier":"PackageHub","release_type":null,"friendly_name":"SUSE Package Hub 12 SP4 ppc64le","migration_extra":false,"offline_predecessor_ids":[],"name":"SUSE Package Hub","version":"12.4","recommended":false,"product_type":"extension","cpe":"cpe:/o:suse:packagehub:12:sp4","online_predecessor_ids":[1475,1478,1481,1531],"product_class":"MODULE","repositories":[{"installer_updates":false,"name":"SUSE-PackageHub-12-SP4-Standard-Pool","description":"SUSE-PackageHub-12-SP4-Standard-Pool for sle-12-ppc64le","id":3454,"enabled":true,"url":"https://updates.suse.com/SUSE/Backports/SLE-12-SP4_ppc64le/standard/","distro_target":"sle-12-ppc64le","autorefresh":false},{"installer_updates":false,"name":"SUSE-PackageHub-12-SP4-Debuginfo","description":"SUSE-PackageHub-12-SP4-Debuginfo for sle-12-ppc64le","id":3455,"enabled":false,"url":"https://updates.suse.com/SUSE/Backports/SLE-12-SP4_ppc64le/standard_debug/","distro_target":"sle-12-ppc64le","autorefresh":true},{"description":"SUSE-PackageHub-12-SP4-Pool for sle-12-ppc64le","name":"SUSE-PackageHub-12-SP4-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Backports/SLE-12-SP4_ppc64le/product/","autorefresh":false,"distro_target":"sle-12-ppc64le","id":3456,"enabled":true}],"predecessor_ids":[1475,1478,1481,1531],"arch":"ppc64le","eula_url":"","free":true,"description":"SUSE Package Hub is a free of charge extension providing access to community maintained packages built to run on SUSE Linux Enterprise Server. Built from the same sources used in the openSUSE distributions, these quality packages provide additional software to what is found in the SUSE Linux Enterprise Server product. Packages from the Package Hub are delivered without L3 support from SUSE. General updates and fixes to the packages in SUSE Package Hub are provided by the openSUSE community based on their discretion though SUSE will monitor and ensure that any known critical security issues will be addressed. Packages in the Package Hub are approved by SUSE for use with SUSE Linux Enterprise Server 12 and to not interfere with the supportability of SUSE Linux Enterprise Server it's modules and extensions. For more information about SUSE Package Hub please visit https://packagehub.suse.com.","shortname":"SUSE-PackageHub-12-SP4"},{"recommended":false,"version":"12.4","offline_predecessor_ids":[],"name":"SUSE Package Hub","release_type":null,"former_identifier":"PackageHub","migration_extra":false,"friendly_name":"SUSE Package Hub 12 SP4 s390x","friendly_version":"12 SP4","extensions":[],"id":1812,"release_stage":"released","identifier":"PackageHub","free":true,"shortname":"SUSE-PackageHub-12-SP4","description":"SUSE Package Hub is a free of charge extension providing access to community maintained packages built to run on SUSE Linux Enterprise Server. Built from the same sources used in the openSUSE distributions, these quality packages provide additional software to what is found in the SUSE Linux Enterprise Server product. Packages from the Package Hub are delivered without L3 support from SUSE. General updates and fixes to the packages in SUSE Package Hub are provided by the openSUSE community based on their discretion though SUSE will monitor and ensure that any known critical security issues will be addressed. Packages in the Package Hub are approved by SUSE for use with SUSE Linux Enterprise Server 12 and to not interfere with the supportability of SUSE Linux Enterprise Server it's modules and extensions. For more information about SUSE Package Hub please visit https://packagehub.suse.com.","eula_url":"","arch":"s390x","predecessor_ids":[1474,1477,1480,1530],"product_class":"MODULE","online_predecessor_ids":[1474,1477,1480,1530],"repositories":[{"description":"SUSE-PackageHub-12-SP4-Standard-Pool for sle-12-s390x","name":"SUSE-PackageHub-12-SP4-Standard-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Backports/SLE-12-SP4_s390x/standard/","autorefresh":false,"distro_target":"sle-12-s390x","id":3457,"enabled":true},{"url":"https://updates.suse.com/SUSE/Backports/SLE-12-SP4_s390x/standard_debug/","autorefresh":true,"distro_target":"sle-12-s390x","id":3458,"enabled":false,"description":"SUSE-PackageHub-12-SP4-Debuginfo for sle-12-s390x","name":"SUSE-PackageHub-12-SP4-Debuginfo","installer_updates":false},{"url":"https://updates.suse.com/SUSE/Backports/SLE-12-SP4_s390x/product/","autorefresh":false,"distro_target":"sle-12-s390x","id":3459,"enabled":true,"description":"SUSE-PackageHub-12-SP4-Pool for sle-12-s390x","name":"SUSE-PackageHub-12-SP4-Pool","installer_updates":false}],"product_type":"extension","cpe":"cpe:/o:suse:packagehub:12:sp4"},{"recommended":false,"version":"12.4","offline_predecessor_ids":[],"name":"SUSE Package Hub","former_identifier":"PackageHub","release_type":null,"friendly_name":"SUSE Package Hub 12 SP4 x86_64","migration_extra":false,"friendly_version":"12 SP4","extensions":[],"release_stage":"released","identifier":"PackageHub","id":1813,"free":true,"description":"SUSE Package Hub is a free of charge extension providing access to community maintained packages built to run on SUSE Linux Enterprise Server. Built from the same sources used in the openSUSE distributions, these quality packages provide additional software to what is found in the SUSE Linux Enterprise Server product. Packages from the Package Hub are delivered without L3 support from SUSE. General updates and fixes to the packages in SUSE Package Hub are provided by the openSUSE community based on their discretion though SUSE will monitor and ensure that any known critical security issues will be addressed. Packages in the Package Hub are approved by SUSE for use with SUSE Linux Enterprise Server 12 and to not interfere with the supportability of SUSE Linux Enterprise Server it's modules and extensions. For more information about SUSE Package Hub please visit https://packagehub.suse.com.","shortname":"SUSE-PackageHub-12-SP4","eula_url":"","arch":"x86_64","predecessor_ids":[1473,1476,1479,1529],"online_predecessor_ids":[1473,1476,1479,1529],"product_class":"MODULE","repositories":[{"url":"https://updates.suse.com/SUSE/Backports/SLE-12-SP4_x86_64/standard/","autorefresh":false,"distro_target":"sle-12-x86_64","id":3460,"enabled":true,"description":"SUSE-PackageHub-12-SP4-Standard-Pool for sle-12-x86_64","name":"SUSE-PackageHub-12-SP4-Standard-Pool","installer_updates":false},{"description":"SUSE-PackageHub-12-SP4-Debuginfo for sle-12-x86_64","installer_updates":false,"name":"SUSE-PackageHub-12-SP4-Debuginfo","distro_target":"sle-12-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Backports/SLE-12-SP4_x86_64/standard_debug/","enabled":false,"id":3461},{"description":"SUSE-PackageHub-12-SP4-Pool for sle-12-x86_64","installer_updates":false,"name":"SUSE-PackageHub-12-SP4-Pool","url":"https://updates.suse.com/SUSE/Backports/SLE-12-SP4_x86_64/product/","distro_target":"sle-12-x86_64","autorefresh":false,"id":3462,"enabled":true}],"product_type":"extension","cpe":"cpe:/o:suse:packagehub:12:sp4"},{"product_class":"SLE-ESPOS-X86","online_predecessor_ids":[],"repositories":[{"id":3463,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-SP2-ESPOS/x86_64/update/","distro_target":"sle-12-x86_64","autorefresh":true,"installer_updates":false,"name":"SLES12-SP2-ESPOS-Updates","description":"SLES12-SP2-ESPOS-Updates for sle-12-x86_64"},{"url":"https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-SP2-ESPOS/x86_64/update_debug/","distro_target":"sle-12-x86_64","autorefresh":true,"id":3464,"enabled":false,"description":"SLES12-SP2-ESPOS-Debuginfo-Updates for sle-12-x86_64","installer_updates":false,"name":"SLES12-SP2-ESPOS-Debuginfo-Updates"},{"name":"SLES12-SP2-ESPOS-Pool","installer_updates":false,"description":"SLES12-SP2-ESPOS-Pool for sle-12-x86_64","enabled":true,"id":3465,"autorefresh":false,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-SERVER/12-SP2-ESPOS/x86_64/product/"},{"enabled":false,"id":3466,"autorefresh":false,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-SERVER/12-SP2-ESPOS/x86_64/product_debug/","name":"SLES12-SP2-ESPOS-Debuginfo-Pool","installer_updates":false,"description":"SLES12-SP2-ESPOS-Debuginfo-Pool for sle-12-x86_64"},{"installer_updates":false,"name":"SLES12-SP2-ESPOS-Source-Pool","description":"SLES12-SP2-ESPOS-Source-Pool for sle-12-x86_64","enabled":false,"id":3467,"distro_target":"sle-12-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-SERVER/12-SP2-ESPOS/x86_64/product_source/"}],"predecessor_ids":[],"cpe":"cpe:/o:suse:sles-espos:12:sp2","product_type":"extension","shortname":"SLES12-SP2 ESPOS","description":"SUSE Linux Enterprise offers a comprehensive suite of products built on a single code base. The platform addresses business needs from the smallest thin-client devices to the world's most powerful high-performance computing and mainframe servers. SUSE Linux Enterprise offers common management tools and technology certifications across the platform, and each product is enterprise-class.","free":false,"arch":"x86_64","eula_url":"","friendly_version":"12 SP2","release_stage":"released","identifier":"SLES-ESPOS","id":1814,"extensions":[],"version":"12.2","recommended":false,"friendly_name":"SUSE Linux Enterprise Server ESPOS 12 SP2 x86_64","migration_extra":false,"release_type":null,"former_identifier":"SLES-ESPOS","name":"SUSE Linux Enterprise Server ESPOS","offline_predecessor_ids":[]},{"release_type":null,"former_identifier":"SLES-ESPOS","migration_extra":false,"friendly_name":"SUSE Linux Enterprise Server ESPOS 12 SP3 aarch64","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Server ESPOS","version":"12.3","recommended":false,"id":1815,"release_stage":"released","identifier":"SLES-ESPOS","extensions":[],"friendly_version":"12 SP3","arch":"aarch64","eula_url":"","free":false,"description":"SUSE Linux Enterprise offers a comprehensive suite of products built on a single code base. The platform addresses business needs from the smallest thin-client devices to the world's most powerful high-performance computing and mainframe servers. SUSE Linux Enterprise offers common management tools and technology certifications across the platform, and each product is enterprise-class.","shortname":"SLES12-SP3 ESPOS","product_type":"extension","cpe":"cpe:/o:suse:sles-espos:12:sp3","online_predecessor_ids":[],"repositories":[{"id":3468,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-SP3-ESPOS/aarch64/update/","distro_target":"sle-12-aarch64","autorefresh":true,"installer_updates":false,"name":"SLES12-SP3-ESPOS-Updates","description":"SLES12-SP3-ESPOS-Updates for sle-12-aarch64"},{"enabled":true,"id":3469,"distro_target":"sle-12-aarch64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-SERVER/12-SP3-ESPOS/aarch64/product/","installer_updates":false,"name":"SLES12-SP3-ESPOS-Pool","description":"SLES12-SP3-ESPOS-Pool for sle-12-aarch64"},{"id":3470,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-SERVER/12-SP3-ESPOS/aarch64/product_debug/","autorefresh":false,"distro_target":"sle-12-aarch64","name":"SLES12-SP3-ESPOS-Debuginfo-Pool","installer_updates":false,"description":"SLES12-SP3-ESPOS-Debuginfo-Pool for sle-12-aarch64"},{"enabled":false,"id":3471,"distro_target":"sle-12-aarch64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-SERVER/12-SP3-ESPOS/aarch64/product_source/","installer_updates":false,"name":"SLES12-SP3-ESPOS-Source-Pool","description":"SLES12-SP3-ESPOS-Source-Pool for sle-12-aarch64"},{"enabled":false,"id":3527,"distro_target":"sle-12-aarch64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-SP3-ESPOS/aarch64/update_debug/","installer_updates":false,"name":"SLES12-SP3-ESPOS-Debuginfo-Updates","description":"SLES12-SP3-ESPOS-Debuginfo-Updates for sle-12-aarch64"}],"product_class":"SLE-ESPOS-ARM64","predecessor_ids":[]},{"repositories":[{"installer_updates":false,"name":"SLES12-SP3-ESPOS-Updates","description":"SLES12-SP3-ESPOS-Updates for sle-12-x86_64","enabled":true,"id":3472,"distro_target":"sle-12-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-SP3-ESPOS/x86_64/update/"},{"description":"SLES12-SP3-ESPOS-Debuginfo-Updates for sle-12-x86_64","name":"SLES12-SP3-ESPOS-Debuginfo-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-SP3-ESPOS/x86_64/update_debug/","enabled":false,"id":3473},{"installer_updates":false,"name":"SLES12-SP3-ESPOS-Pool","description":"SLES12-SP3-ESPOS-Pool for sle-12-x86_64","id":3474,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-SERVER/12-SP3-ESPOS/x86_64/product/","distro_target":"sle-12-x86_64","autorefresh":false},{"url":"https://updates.suse.com/SUSE/Products/SLE-SERVER/12-SP3-ESPOS/x86_64/product_debug/","autorefresh":false,"distro_target":"sle-12-x86_64","id":3475,"enabled":false,"description":"SLES12-SP3-ESPOS-Debuginfo-Pool for sle-12-x86_64","name":"SLES12-SP3-ESPOS-Debuginfo-Pool","installer_updates":false},{"description":"SLES12-SP3-ESPOS-Source-Pool for sle-12-x86_64","installer_updates":false,"name":"SLES12-SP3-ESPOS-Source-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-SERVER/12-SP3-ESPOS/x86_64/product_source/","distro_target":"sle-12-x86_64","autorefresh":false,"id":3476,"enabled":false}],"online_predecessor_ids":[1814],"product_class":"SLE-ESPOS-X86","predecessor_ids":[1814],"cpe":"cpe:/o:suse:sles-espos:12:sp3","product_type":"extension","description":"SUSE Linux Enterprise offers a comprehensive suite of products built on a single code base. The platform addresses business needs from the smallest thin-client devices to the world's most powerful high-performance computing and mainframe servers. SUSE Linux Enterprise offers common management tools and technology certifications across the platform, and each product is enterprise-class.","shortname":"SLES12-SP3 ESPOS","free":false,"arch":"x86_64","eula_url":"","friendly_version":"12 SP3","release_stage":"released","id":1816,"identifier":"SLES-ESPOS","extensions":[],"version":"12.3","recommended":false,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Server ESPOS 12 SP3 x86_64","release_type":null,"former_identifier":"SLES-ESPOS","name":"SUSE Linux Enterprise Server ESPOS","offline_predecessor_ids":[]},{"predecessor_ids":[1815],"online_predecessor_ids":[1815],"product_class":"SLE-ESPOS-ARM64","repositories":[{"id":3477,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-SP4-ESPOS/aarch64/update/","distro_target":"sle-12-aarch64","autorefresh":true,"installer_updates":false,"name":"SLES12-SP4-ESPOS-Updates","description":"SLES12-SP4-ESPOS-Updates for sle-12-aarch64"},{"name":"SLES12-SP4-ESPOS-Pool","installer_updates":false,"description":"SLES12-SP4-ESPOS-Pool for sle-12-aarch64","enabled":true,"id":3478,"autorefresh":false,"distro_target":"sle-12-aarch64","url":"https://updates.suse.com/SUSE/Products/SLE-SERVER/12-SP4-ESPOS/aarch64/product/"},{"enabled":false,"id":3479,"autorefresh":false,"distro_target":"sle-12-aarch64","url":"https://updates.suse.com/SUSE/Products/SLE-SERVER/12-SP4-ESPOS/aarch64/product_debug/","name":"SLES12-SP4-ESPOS-Debuginfo-Pool","installer_updates":false,"description":"SLES12-SP4-ESPOS-Debuginfo-Pool for sle-12-aarch64"},{"distro_target":"sle-12-aarch64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-SERVER/12-SP4-ESPOS/aarch64/product_source/","enabled":false,"id":3480,"description":"SLES12-SP4-ESPOS-Source-Pool for sle-12-aarch64","installer_updates":false,"name":"SLES12-SP4-ESPOS-Source-Pool"},{"name":"SLES12-SP4-ESPOS-Debuginfo-Updates","installer_updates":false,"description":"SLES12-SP4-ESPOS-Debuginfo-Updates for sle-12-aarch64","enabled":false,"id":3528,"autorefresh":true,"distro_target":"sle-12-aarch64","url":"https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-SP4-ESPOS/aarch64/update_debug/"}],"cpe":"cpe:/o:suse:sles-espos:12:sp4","product_type":"extension","description":"SUSE Linux Enterprise offers a comprehensive suite of products built on a single code base. The platform addresses business needs from the smallest thin-client devices to the world's most powerful high-performance computing and mainframe servers. SUSE Linux Enterprise offers common management tools and technology certifications across the platform, and each product is enterprise-class.","shortname":"SLES12-SP4 ESPOS","free":false,"eula_url":"","arch":"aarch64","friendly_version":"12 SP4","extensions":[],"release_stage":"released","identifier":"SLES-ESPOS","id":1817,"recommended":false,"version":"12.4","name":"SUSE Linux Enterprise Server ESPOS","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Server ESPOS 12 SP4 aarch64","former_identifier":"SLES-ESPOS","release_type":null},{"version":"12.4","recommended":false,"release_type":null,"former_identifier":"SLES-ESPOS","friendly_name":"SUSE Linux Enterprise Server ESPOS 12 SP4 x86_64","migration_extra":false,"offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Server ESPOS","friendly_version":"12 SP4","id":1818,"release_stage":"released","identifier":"SLES-ESPOS","extensions":[],"free":false,"description":"SUSE Linux Enterprise offers a comprehensive suite of products built on a single code base. The platform addresses business needs from the smallest thin-client devices to the world's most powerful high-performance computing and mainframe servers. SUSE Linux Enterprise offers common management tools and technology certifications across the platform, and each product is enterprise-class.","shortname":"SLES12-SP4 ESPOS","arch":"x86_64","eula_url":"","repositories":[{"description":"SLES12-SP4-ESPOS-Updates for sle-12-x86_64","installer_updates":false,"name":"SLES12-SP4-ESPOS-Updates","distro_target":"sle-12-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-SP4-ESPOS/x86_64/update/","enabled":true,"id":3481},{"id":3482,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-SP4-ESPOS/x86_64/update_debug/","autorefresh":true,"distro_target":"sle-12-x86_64","name":"SLES12-SP4-ESPOS-Debuginfo-Updates","installer_updates":false,"description":"SLES12-SP4-ESPOS-Debuginfo-Updates for sle-12-x86_64"},{"autorefresh":false,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-SERVER/12-SP4-ESPOS/x86_64/product/","enabled":true,"id":3483,"description":"SLES12-SP4-ESPOS-Pool for sle-12-x86_64","name":"SLES12-SP4-ESPOS-Pool","installer_updates":false},{"description":"SLES12-SP4-ESPOS-Debuginfo-Pool for sle-12-x86_64","installer_updates":false,"name":"SLES12-SP4-ESPOS-Debuginfo-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-SERVER/12-SP4-ESPOS/x86_64/product_debug/","distro_target":"sle-12-x86_64","autorefresh":false,"id":3484,"enabled":false},{"installer_updates":false,"name":"SLES12-SP4-ESPOS-Source-Pool","description":"SLES12-SP4-ESPOS-Source-Pool for sle-12-x86_64","id":3485,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-SERVER/12-SP4-ESPOS/x86_64/product_source/","distro_target":"sle-12-x86_64","autorefresh":false}],"online_predecessor_ids":[1814,1816],"product_class":"SLE-ESPOS-X86","predecessor_ids":[1814,1816],"product_type":"extension","cpe":"cpe:/o:suse:sles-espos:12:sp4"},{"arch":"x86_64","eula_url":"https://updates.suse.com/SUSE/Products/OpenStack-Cloud/9/x86_64/product.license/","free":false,"shortname":"SOC9","description":"SUSE OpenStack Cloud is an enterprise-ready OpenStack distribution that accelerates deployment of highly available, mixed-hypervisor IaaS Clouds. Backed by the excellence of SUSE engineering, quality assurance and support, SUSE OpenStack Cloud leverages existing data center investments to help enterprises increase business agility, economically scale current IT capabilities and easily integrate upstream innovation.","product_type":"extension","cpe":"cpe:/o:suse:suse-openstack-cloud:9","repositories":[{"url":"https://updates.suse.com/SUSE/Updates/OpenStack-Cloud/9/x86_64/update/","distro_target":"sle-12-x86_64","autorefresh":true,"id":3522,"enabled":true,"description":"SUSE-OpenStack-Cloud-9-Updates for sle-12-x86_64","installer_updates":false,"name":"SUSE-OpenStack-Cloud-9-Updates"},{"name":"SUSE-OpenStack-Cloud-9-Debuginfo-Updates","installer_updates":false,"description":"SUSE-OpenStack-Cloud-9-Debuginfo-Updates for sle-12-x86_64","enabled":false,"id":3523,"autorefresh":true,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Updates/OpenStack-Cloud/9/x86_64/update_debug/"},{"installer_updates":false,"name":"SUSE-OpenStack-Cloud-9-Pool","description":"SUSE-OpenStack-Cloud-9-Pool for sle-12-x86_64","id":3524,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/OpenStack-Cloud/9/x86_64/product/","distro_target":"sle-12-x86_64","autorefresh":false},{"distro_target":"sle-12-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/OpenStack-Cloud/9/x86_64/product_debug/","enabled":false,"id":3525,"description":"SUSE-OpenStack-Cloud-9-Debuginfo-Pool for sle-12-x86_64","installer_updates":false,"name":"SUSE-OpenStack-Cloud-9-Debuginfo-Pool"},{"description":"SUSE-OpenStack-Cloud-9-Source-Pool for sle-12-x86_64","installer_updates":false,"name":"SUSE-OpenStack-Cloud-9-Source-Pool","url":"https://updates.suse.com/SUSE/Products/OpenStack-Cloud/9/x86_64/product_source/","distro_target":"sle-12-x86_64","autorefresh":false,"id":3526,"enabled":false}],"online_predecessor_ids":[1617,1730],"product_class":"SUSE_CLOUD","predecessor_ids":[1617,1730],"former_identifier":"suse-openstack-cloud","release_type":null,"friendly_name":"SUSE OpenStack Cloud 9 x86_64","migration_extra":false,"offline_predecessor_ids":[],"name":"SUSE OpenStack Cloud","version":"9","recommended":false,"release_stage":"released","id":1820,"identifier":"suse-openstack-cloud","extensions":[],"friendly_version":"9"},{"friendly_version":"9","release_stage":"released","id":1821,"identifier":"suse-openstack-cloud-crowbar","extensions":[],"version":"9","recommended":false,"migration_extra":false,"friendly_name":"SUSE OpenStack Cloud Crowbar 9 x86_64","former_identifier":"suse-openstack-cloud-crowbar","release_type":null,"name":"SUSE OpenStack Cloud Crowbar","offline_predecessor_ids":[],"online_predecessor_ids":[1729],"repositories":[{"description":"SUSE-OpenStack-Cloud-Crowbar-9-Updates for sle-12-x86_64","installer_updates":false,"name":"SUSE-OpenStack-Cloud-Crowbar-9-Updates","distro_target":"sle-12-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/OpenStack-Cloud-Crowbar/9/x86_64/update/","enabled":true,"id":3492},{"url":"https://updates.suse.com/SUSE/Updates/OpenStack-Cloud-Crowbar/9/x86_64/update_debug/","autorefresh":true,"distro_target":"sle-12-x86_64","id":3493,"enabled":false,"description":"SUSE-OpenStack-Cloud-Crowbar-9-Debuginfo-Updates for sle-12-x86_64","name":"SUSE-OpenStack-Cloud-Crowbar-9-Debuginfo-Updates","installer_updates":false},{"name":"SUSE-OpenStack-Cloud-Crowbar-9-Pool","installer_updates":false,"description":"SUSE-OpenStack-Cloud-Crowbar-9-Pool for sle-12-x86_64","enabled":true,"id":3494,"autorefresh":false,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Products/OpenStack-Cloud-Crowbar/9/x86_64/product/"},{"enabled":false,"id":3495,"autorefresh":false,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Products/OpenStack-Cloud-Crowbar/9/x86_64/product_debug/","name":"SUSE-OpenStack-Cloud-Crowbar-9-Debuginfo-Pool","installer_updates":false,"description":"SUSE-OpenStack-Cloud-Crowbar-9-Debuginfo-Pool for sle-12-x86_64"},{"id":3496,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/OpenStack-Cloud-Crowbar/9/x86_64/product_source/","distro_target":"sle-12-x86_64","autorefresh":false,"installer_updates":false,"name":"SUSE-OpenStack-Cloud-Crowbar-9-Source-Pool","description":"SUSE-OpenStack-Cloud-Crowbar-9-Source-Pool for sle-12-x86_64"}],"product_class":"SUSE_CLOUD","predecessor_ids":[1729],"cpe":"cpe:/o:suse:suse-openstack-cloud-crowbar:9","product_type":"extension","shortname":"SOCC9","description":"SUSE OpenStack Cloud is an enterprise-ready OpenStack distribution that accelerates deployment of highly available, mixed-hypervisor IaaS Clouds. Backed by the excellence of SUSE engineering, quality assurance and support, SUSE OpenStack Cloud leverages existing data center investments to help enterprises increase business agility, economically scale current IT capabilities and easily integrate upstream innovation.","free":false,"arch":"x86_64","eula_url":"https://updates.suse.com/SUSE/Products/OpenStack-Cloud-Crowbar/9/x86_64/product.license/"},{"extensions":[],"release_stage":"released","id":1822,"identifier":"sle-module-transactional-server","friendly_version":"15 SP1","name":"Transactional Server Module","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"Transactional Server Module 15 SP1 aarch64","release_type":null,"former_identifier":"sle-module-transactional-server","recommended":false,"version":"15.1","cpe":"cpe:/o:suse:sle-module-transactional-server:15:sp1","product_type":"module","predecessor_ids":[],"product_class":"MODULE","online_predecessor_ids":[],"repositories":[{"distro_target":"sle-15-aarch64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Transactional-Server/15-SP1/aarch64/update/","enabled":true,"id":3497,"description":"SLE-Module-Transactional-Server15-SP1-Updates for sle-15-aarch64","installer_updates":false,"name":"SLE-Module-Transactional-Server15-SP1-Updates"},{"name":"SLE-Module-Transactional-Server15-SP1-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-Transactional-Server15-SP1-Debuginfo-Updates for sle-15-aarch64","id":3498,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Transactional-Server/15-SP1/aarch64/update_debug/","autorefresh":true,"distro_target":"sle-15-aarch64"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Transactional-Server/15-SP1/aarch64/product/","distro_target":"sle-15-aarch64","autorefresh":false,"id":3499,"enabled":true,"description":"SLE-Module-Transactional-Server15-SP1-Pool for sle-15-aarch64","installer_updates":false,"name":"SLE-Module-Transactional-Server15-SP1-Pool"},{"enabled":false,"id":3500,"autorefresh":false,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Transactional-Server/15-SP1/aarch64/product_debug/","name":"SLE-Module-Transactional-Server15-SP1-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-Transactional-Server15-SP1-Debuginfo-Pool for sle-15-aarch64"},{"description":"SLE-Module-Transactional-Server15-SP1-Source-Pool for sle-15-aarch64","name":"SLE-Module-Transactional-Server15-SP1-Source-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Transactional-Server/15-SP1/aarch64/product_source/","enabled":false,"id":3501}],"eula_url":"","arch":"aarch64","shortname":"Transactional-Server-Module","description":"

Transactional Updates provide SUSE Linux Enterprise systems with a method of updating the operating system and its packages in an entirely ‘atomic’ way. Updates are either applied to the system all together in a single transaction, or not at all. This happens without influencing the running system. If an update fails, or if the successful update is deemed to be incompatible or otherwise incorrect, it can be discarded to immediately return the system to its previous functioning state.

Access to theTransactional Server Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself: Package versions in the this module are usually supported for at most three years. We are planning to release more recent versions on a schedule of approximately 18 month; the exact dates may differ per package.

","free":true},{"friendly_version":"15 SP1","id":1823,"release_stage":"released","identifier":"sle-module-transactional-server","extensions":[],"version":"15.1","recommended":false,"friendly_name":"Transactional Server Module 15 SP1 ppc64le","migration_extra":false,"release_type":null,"former_identifier":"sle-module-transactional-server","name":"Transactional Server Module","offline_predecessor_ids":[],"online_predecessor_ids":[],"repositories":[{"description":"SLE-Module-Transactional-Server15-SP1-Updates for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-Transactional-Server15-SP1-Updates","distro_target":"sle-15-ppc64le","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Transactional-Server/15-SP1/ppc64le/update/","enabled":true,"id":3502},{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Transactional-Server/15-SP1/ppc64le/update_debug/","distro_target":"sle-15-ppc64le","autorefresh":true,"id":3503,"enabled":false,"description":"SLE-Module-Transactional-Server15-SP1-Debuginfo-Updates for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-Transactional-Server15-SP1-Debuginfo-Updates"},{"description":"SLE-Module-Transactional-Server15-SP1-Pool for sle-15-ppc64le","name":"SLE-Module-Transactional-Server15-SP1-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Transactional-Server/15-SP1/ppc64le/product/","autorefresh":false,"distro_target":"sle-15-ppc64le","id":3504,"enabled":true},{"name":"SLE-Module-Transactional-Server15-SP1-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-Transactional-Server15-SP1-Debuginfo-Pool for sle-15-ppc64le","id":3505,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Transactional-Server/15-SP1/ppc64le/product_debug/","autorefresh":false,"distro_target":"sle-15-ppc64le"},{"installer_updates":false,"name":"SLE-Module-Transactional-Server15-SP1-Source-Pool","description":"SLE-Module-Transactional-Server15-SP1-Source-Pool for sle-15-ppc64le","enabled":false,"id":3506,"distro_target":"sle-15-ppc64le","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Transactional-Server/15-SP1/ppc64le/product_source/"}],"product_class":"MODULE","predecessor_ids":[],"cpe":"cpe:/o:suse:sle-module-transactional-server:15:sp1","product_type":"module","description":"

Transactional Updates provide SUSE Linux Enterprise systems with a method of updating the operating system and its packages in an entirely ‘atomic’ way. Updates are either applied to the system all together in a single transaction, or not at all. This happens without influencing the running system. If an update fails, or if the successful update is deemed to be incompatible or otherwise incorrect, it can be discarded to immediately return the system to its previous functioning state.

Access to theTransactional Server Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself: Package versions in the this module are usually supported for at most three years. We are planning to release more recent versions on a schedule of approximately 18 month; the exact dates may differ per package.

","shortname":"Transactional-Server-Module","free":true,"arch":"ppc64le","eula_url":""},{"eula_url":"","arch":"s390x","free":true,"shortname":"Transactional-Server-Module","description":"

Transactional Updates provide SUSE Linux Enterprise systems with a method of updating the operating system and its packages in an entirely ‘atomic’ way. Updates are either applied to the system all together in a single transaction, or not at all. This happens without influencing the running system. If an update fails, or if the successful update is deemed to be incompatible or otherwise incorrect, it can be discarded to immediately return the system to its previous functioning state.

Access to theTransactional Server Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself: Package versions in the this module are usually supported for at most three years. We are planning to release more recent versions on a schedule of approximately 18 month; the exact dates may differ per package.

","product_type":"module","cpe":"cpe:/o:suse:sle-module-transactional-server:15:sp1","predecessor_ids":[],"product_class":"MODULE","online_predecessor_ids":[],"repositories":[{"description":"SLE-Module-Transactional-Server15-SP1-Updates for sle-15-s390x","name":"SLE-Module-Transactional-Server15-SP1-Updates","installer_updates":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Transactional-Server/15-SP1/s390x/update/","autorefresh":true,"distro_target":"sle-15-s390x","id":3507,"enabled":true},{"autorefresh":true,"distro_target":"sle-15-s390x","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Transactional-Server/15-SP1/s390x/update_debug/","enabled":false,"id":3508,"description":"SLE-Module-Transactional-Server15-SP1-Debuginfo-Updates for sle-15-s390x","name":"SLE-Module-Transactional-Server15-SP1-Debuginfo-Updates","installer_updates":false},{"description":"SLE-Module-Transactional-Server15-SP1-Pool for sle-15-s390x","installer_updates":false,"name":"SLE-Module-Transactional-Server15-SP1-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Transactional-Server/15-SP1/s390x/product/","distro_target":"sle-15-s390x","autorefresh":false,"id":3509,"enabled":true},{"installer_updates":false,"name":"SLE-Module-Transactional-Server15-SP1-Debuginfo-Pool","description":"SLE-Module-Transactional-Server15-SP1-Debuginfo-Pool for sle-15-s390x","id":3510,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Transactional-Server/15-SP1/s390x/product_debug/","distro_target":"sle-15-s390x","autorefresh":false},{"autorefresh":false,"distro_target":"sle-15-s390x","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Transactional-Server/15-SP1/s390x/product_source/","enabled":false,"id":3511,"description":"SLE-Module-Transactional-Server15-SP1-Source-Pool for sle-15-s390x","name":"SLE-Module-Transactional-Server15-SP1-Source-Pool","installer_updates":false}],"offline_predecessor_ids":[],"name":"Transactional Server Module","former_identifier":"sle-module-transactional-server","release_type":null,"migration_extra":false,"friendly_name":"Transactional Server Module 15 SP1 s390x","recommended":false,"version":"15.1","extensions":[],"id":1824,"release_stage":"released","identifier":"sle-module-transactional-server","friendly_version":"15 SP1"},{"friendly_version":"15 SP1","release_stage":"released","id":1825,"identifier":"sle-module-transactional-server","extensions":[],"version":"15.1","recommended":false,"former_identifier":"sle-module-transactional-server","release_type":null,"friendly_name":"Transactional Server Module 15 SP1 x86_64","migration_extra":false,"offline_predecessor_ids":[],"name":"Transactional Server Module","online_predecessor_ids":[],"repositories":[{"distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Transactional-Server/15-SP1/x86_64/update/","enabled":true,"id":3512,"description":"SLE-Module-Transactional-Server15-SP1-Updates for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Transactional-Server15-SP1-Updates"},{"installer_updates":false,"name":"SLE-Module-Transactional-Server15-SP1-Debuginfo-Updates","description":"SLE-Module-Transactional-Server15-SP1-Debuginfo-Updates for sle-15-x86_64","id":3513,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Transactional-Server/15-SP1/x86_64/update_debug/","distro_target":"sle-15-x86_64","autorefresh":true},{"id":3514,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Transactional-Server/15-SP1/x86_64/product/","autorefresh":false,"distro_target":"sle-15-x86_64","name":"SLE-Module-Transactional-Server15-SP1-Pool","installer_updates":false,"description":"SLE-Module-Transactional-Server15-SP1-Pool for sle-15-x86_64"},{"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Transactional-Server/15-SP1/x86_64/product_debug/","enabled":false,"id":3515,"description":"SLE-Module-Transactional-Server15-SP1-Debuginfo-Pool for sle-15-x86_64","name":"SLE-Module-Transactional-Server15-SP1-Debuginfo-Pool","installer_updates":false},{"name":"SLE-Module-Transactional-Server15-SP1-Source-Pool","installer_updates":false,"description":"SLE-Module-Transactional-Server15-SP1-Source-Pool for sle-15-x86_64","enabled":false,"id":3516,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Transactional-Server/15-SP1/x86_64/product_source/"}],"product_class":"MODULE","predecessor_ids":[],"product_type":"module","cpe":"cpe:/o:suse:sle-module-transactional-server:15:sp1","free":true,"shortname":"Transactional-Server-Module","description":"

Transactional Updates provide SUSE Linux Enterprise systems with a method of updating the operating system and its packages in an entirely ‘atomic’ way. Updates are either applied to the system all together in a single transaction, or not at all. This happens without influencing the running system. If an update fails, or if the successful update is deemed to be incompatible or otherwise incorrect, it can be discarded to immediately return the system to its previous functioning state.

Access to theTransactional Server Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself: Package versions in the this module are usually supported for at most three years. We are planning to release more recent versions on a schedule of approximately 18 month; the exact dates may differ per package.

","arch":"x86_64","eula_url":""},{"extensions":[],"release_stage":"released","identifier":"SUSE-Manager-Retail-Branch-Server","id":1826,"friendly_version":"3.2","name":"SUSE Manager Retail Branch Server","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"SUSE Manager Retail Branch Server 3.2 x86_64","former_identifier":"SUSE-Manager-Retail-Branch-Server","release_type":null,"recommended":false,"version":"3.2","cpe":"cpe:/o:suse:suse-manager-retail-branch-server:3.2","product_type":"extension","predecessor_ids":[],"online_predecessor_ids":[],"product_class":"SMRBS","repositories":[{"id":3517,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SUSE-Manager-Retail-Branch-Server/3.2/x86_64/update/","autorefresh":true,"distro_target":"sle-12-x86_64","name":"SUSE-Manager-Retail-Branch-Server-3.2-Updates","installer_updates":false,"description":"SUSE-Manager-Retail-Branch-Server-3.2-Updates for sle-12-x86_64"},{"installer_updates":false,"name":"SUSE-Manager-Retail-Branch-Server-3.2-Debuginfo-Updates","description":"SUSE-Manager-Retail-Branch-Server-3.2-Debuginfo-Updates for sle-12-x86_64","id":3518,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SUSE-Manager-Retail-Branch-Server/3.2/x86_64/update_debug/","distro_target":"sle-12-x86_64","autorefresh":true},{"url":"https://updates.suse.com/SUSE/Products/SUSE-Manager-Retail-Branch-Server/3.2/x86_64/product/","autorefresh":false,"distro_target":"sle-12-x86_64","id":3519,"enabled":true,"description":"SUSE-Manager-Retail-Branch-Server-3.2-Pool for sle-12-x86_64","name":"SUSE-Manager-Retail-Branch-Server-3.2-Pool","installer_updates":false},{"description":"SUSE-Manager-Retail-Branch-Server-3.2-Debuginfo-Pool for sle-12-x86_64","name":"SUSE-Manager-Retail-Branch-Server-3.2-Debuginfo-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SUSE-Manager-Retail-Branch-Server/3.2/x86_64/product_debug/","autorefresh":false,"distro_target":"sle-12-x86_64","id":3520,"enabled":false},{"id":3521,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SUSE-Manager-Retail-Branch-Server/3.2/x86_64/product_source/","autorefresh":false,"distro_target":"sle-12-x86_64","name":"SUSE-Manager-Retail-Branch-Server-3.2-Source-Pool","installer_updates":false,"description":"SUSE-Manager-Retail-Branch-Server-3.2-Source-Pool for sle-12-x86_64"}],"eula_url":"https://updates.suse.com/SUSE/Products/SUSE-Manager-Retail-Branch-Server/3.2/x86_64/product.license/","arch":"x86_64","description":"The SUSE Manager for Retail Branch Server supports large and/or geographically dispersed SUSE Manager for Retail environments by reducing the load on the SUSE Manager Server, lowering bandwidth needs, and providing faster local updates.","shortname":"SUSE Manager Retail Branch Server 3.2","free":false},{"product_type":"extension","cpe":"cpe:/o:suse:sle-module-live-patching:15:sp1","online_predecessor_ids":[1735],"product_class":"SLE-LP-PPC","repositories":[{"distro_target":"sle-15-ppc64le","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Live-Patching/15-SP1/ppc64le/update/","enabled":true,"id":3530,"description":"SLE-Module-Live-Patching15-SP1-Updates for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-Live-Patching15-SP1-Updates"},{"name":"SLE-Module-Live-Patching15-SP1-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-Live-Patching15-SP1-Debuginfo-Updates for sle-15-ppc64le","id":3531,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Live-Patching/15-SP1/ppc64le/update_debug/","autorefresh":true,"distro_target":"sle-15-ppc64le"},{"enabled":true,"id":3532,"distro_target":"sle-15-ppc64le","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Live-Patching/15-SP1/ppc64le/product/","installer_updates":false,"name":"SLE-Module-Live-Patching15-SP1-Pool","description":"SLE-Module-Live-Patching15-SP1-Pool for sle-15-ppc64le"},{"name":"SLE-Module-Live-Patching15-SP1-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-Live-Patching15-SP1-Debuginfo-Pool for sle-15-ppc64le","id":3533,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Live-Patching/15-SP1/ppc64le/product_debug/","autorefresh":false,"distro_target":"sle-15-ppc64le"},{"enabled":false,"id":3534,"distro_target":"sle-15-ppc64le","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Live-Patching/15-SP1/ppc64le/product_source/","installer_updates":false,"name":"SLE-Module-Live-Patching15-SP1-Source-Pool","description":"SLE-Module-Live-Patching15-SP1-Source-Pool for sle-15-ppc64le"}],"predecessor_ids":[1735],"arch":"ppc64le","eula_url":"","free":false,"shortname":"Live-Patching","description":"

SUSE Linux Enterprise Live Patching provides packages to update critical components in SUSE Linux Enterprise. With SUSE Linux Enterprise Live Patching, you can perform critical patching without shutting down your system, reducing the need for planned downtime and increasing service availability.

","release_stage":"released","identifier":"sle-module-live-patching","id":1827,"extensions":[],"friendly_version":"15 SP1","release_type":null,"former_identifier":"sle-module-live-patching","migration_extra":false,"friendly_name":"SUSE Linux Enterprise Live Patching 15 SP1 ppc64le","offline_predecessor_ids":[1537,1756,1887],"name":"SUSE Linux Enterprise Live Patching","version":"15.1","recommended":false},{"description":"

SUSE Linux Enterprise Live Patching provides packages to update critical components in SUSE Linux Enterprise. With SUSE Linux Enterprise Live Patching, you can perform critical patching without shutting down your system, reducing the need for planned downtime and increasing service availability.

","shortname":"Live-Patching","free":false,"eula_url":"","arch":"x86_64","predecessor_ids":[1736],"online_predecessor_ids":[1736],"product_class":"SLE-LP","repositories":[{"id":3535,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Live-Patching/15-SP1/x86_64/update/","autorefresh":true,"distro_target":"sle-15-x86_64","name":"SLE-Module-Live-Patching15-SP1-Updates","installer_updates":false,"description":"SLE-Module-Live-Patching15-SP1-Updates for sle-15-x86_64"},{"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Live-Patching/15-SP1/x86_64/update_debug/","enabled":false,"id":3536,"description":"SLE-Module-Live-Patching15-SP1-Debuginfo-Updates for sle-15-x86_64","name":"SLE-Module-Live-Patching15-SP1-Debuginfo-Updates","installer_updates":false},{"id":3537,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Live-Patching/15-SP1/x86_64/product/","autorefresh":false,"distro_target":"sle-15-x86_64","name":"SLE-Module-Live-Patching15-SP1-Pool","installer_updates":false,"description":"SLE-Module-Live-Patching15-SP1-Pool for sle-15-x86_64"},{"description":"SLE-Module-Live-Patching15-SP1-Debuginfo-Pool for sle-15-x86_64","name":"SLE-Module-Live-Patching15-SP1-Debuginfo-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Live-Patching/15-SP1/x86_64/product_debug/","enabled":false,"id":3538},{"description":"SLE-Module-Live-Patching15-SP1-Source-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Live-Patching15-SP1-Source-Pool","distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Live-Patching/15-SP1/x86_64/product_source/","enabled":false,"id":3539}],"cpe":"cpe:/o:suse:sle-module-live-patching:15:sp1","product_type":"extension","recommended":false,"version":"15.1","name":"SUSE Linux Enterprise Live Patching","offline_predecessor_ids":[1536,1757,1888],"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Live Patching 15 SP1 x86_64","former_identifier":"sle-module-live-patching","release_type":null,"friendly_version":"15 SP1","extensions":[],"release_stage":"released","id":1828,"identifier":"sle-module-live-patching"},{"eula_url":"https://updates.suse.com/SUSE/Products/SLE-Live-Patching/12/ppc64le/product.license/","arch":"ppc64le","description":"

SUSE Linux Enterprise Live Patching provides packages to update critical kernel modules live in SUSE Linux Enterprise. With SUSE Linux Enterprise Live Patching, you can perform critical kernel patching without shutting down your system, reducing the need for planned downtime and increasing service availability.

","shortname":"Live-Patching","free":false,"cpe":"cpe:/o:suse:sle-live-patching:12","product_type":"extension","predecessor_ids":[],"product_class":"SLE-LP-PPC","online_predecessor_ids":[],"repositories":[{"enabled":true,"id":3563,"distro_target":"sle-12-ppc64le","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Live-Patching/12/ppc64le/update/","installer_updates":false,"name":"SLE-Live-Patching12-Updates","description":"SLE-Live-Patching12-Updates for sle-12-ppc64le"},{"installer_updates":false,"name":"SLE-Live-Patching12-Debuginfo-Updates","description":"SLE-Live-Patching12-Debuginfo-Updates for sle-12-ppc64le","id":3564,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Live-Patching/12/ppc64le/update_debug/","distro_target":"sle-12-ppc64le","autorefresh":true},{"name":"SLE-Live-Patching12-Pool","installer_updates":false,"description":"SLE-Live-Patching12-Pool for sle-12-ppc64le","id":3565,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Live-Patching/12/ppc64le/product/","autorefresh":false,"distro_target":"sle-12-ppc64le"},{"description":"SLE-Live-Patching12-Debuginfo-Pool for sle-12-ppc64le","installer_updates":false,"name":"SLE-Live-Patching12-Debuginfo-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Live-Patching/12/ppc64le/product_debug/","distro_target":"sle-12-ppc64le","autorefresh":false,"id":3566,"enabled":false},{"description":"SLE-Live-Patching12-Source-Pool for sle-12-ppc64le","name":"SLE-Live-Patching12-Source-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-12-ppc64le","url":"https://updates.suse.com/SUSE/Products/SLE-Live-Patching/12/ppc64le/product_source/","enabled":false,"id":3567}],"name":"SUSE Linux Enterprise Live Patching","offline_predecessor_ids":[],"friendly_name":"SUSE Linux Enterprise Live Patching 12 ppc64le","migration_extra":false,"former_identifier":"sle-live-patching","release_type":null,"recommended":false,"version":"12","extensions":[],"identifier":"sle-live-patching","release_stage":"released","id":1860,"friendly_version":"12"},{"recommended":false,"version":"15.1","offline_predecessor_ids":[690,769,814,824,1300,1421],"name":"SUSE Linux Enterprise Real Time","release_type":null,"former_identifier":"SLE_RT","migration_extra":false,"friendly_name":"SUSE Linux Enterprise Real Time 15 SP1 x86_64","friendly_version":"15 SP1","extensions":[{"repositories":[{"distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15-SP1/x86_64/update/","enabled":true,"id":3261,"description":"SLE-Module-Basesystem15-SP1-Updates for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Basesystem15-SP1-Updates"},{"installer_updates":false,"name":"SLE-Module-Basesystem15-SP1-Debuginfo-Updates","description":"SLE-Module-Basesystem15-SP1-Debuginfo-Updates for sle-15-x86_64","id":3262,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15-SP1/x86_64/update_debug/","distro_target":"sle-15-x86_64","autorefresh":true},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP1/x86_64/product/","autorefresh":false,"distro_target":"sle-15-x86_64","id":3263,"enabled":true,"description":"SLE-Module-Basesystem15-SP1-Pool for sle-15-x86_64","name":"SLE-Module-Basesystem15-SP1-Pool","installer_updates":false},{"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP1/x86_64/product_debug/","enabled":false,"id":3264,"description":"SLE-Module-Basesystem15-SP1-Debuginfo-Pool for sle-15-x86_64","name":"SLE-Module-Basesystem15-SP1-Debuginfo-Pool","installer_updates":false},{"installer_updates":false,"name":"SLE-Module-Basesystem15-SP1-Source-Pool","description":"SLE-Module-Basesystem15-SP1-Source-Pool for sle-15-x86_64","enabled":false,"id":3265,"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP1/x86_64/product_source/"}],"online_predecessor_ids":[1576],"product_class":"MODULE","predecessor_ids":[1576],"cpe":"cpe:/o:suse:sle-module-basesystem:15:sp1","product_type":"module","description":"

The SUSE Linux Enterprise Basesystem Module delivers the base system of the product.

","shortname":"Basesystem-Module","free":true,"arch":"x86_64","eula_url":"","friendly_version":"15 SP1","id":1772,"release_stage":"released","identifier":"sle-module-basesystem","extensions":[{"description":"

The SUSE Linux Enterprise Desktop Applications Module delivers a basic set of Desktop functionality.

Access to the Desktop Applications Module is included in your SUSE Linux Enterprise product subscription.

","shortname":"Desktop-Applications-Module","free":true,"arch":"x86_64","eula_url":"","repositories":[{"enabled":true,"id":3281,"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15-SP1/x86_64/update/","name":"SLE-Module-Desktop-Applications15-SP1-Updates","installer_updates":false,"description":"SLE-Module-Desktop-Applications15-SP1-Updates for sle-15-x86_64"},{"description":"SLE-Module-Desktop-Applications15-SP1-Debuginfo-Updates for sle-15-x86_64","name":"SLE-Module-Desktop-Applications15-SP1-Debuginfo-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15-SP1/x86_64/update_debug/","enabled":false,"id":3282},{"id":3283,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP1/x86_64/product/","autorefresh":false,"distro_target":"sle-15-x86_64","name":"SLE-Module-Desktop-Applications15-SP1-Pool","installer_updates":false,"description":"SLE-Module-Desktop-Applications15-SP1-Pool for sle-15-x86_64"},{"installer_updates":false,"name":"SLE-Module-Desktop-Applications15-SP1-Debuginfo-Pool","description":"SLE-Module-Desktop-Applications15-SP1-Debuginfo-Pool for sle-15-x86_64","enabled":false,"id":3284,"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP1/x86_64/product_debug/"},{"name":"SLE-Module-Desktop-Applications15-SP1-Source-Pool","installer_updates":false,"description":"SLE-Module-Desktop-Applications15-SP1-Source-Pool for sle-15-x86_64","enabled":false,"id":3285,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP1/x86_64/product_source/"}],"online_predecessor_ids":[1578],"product_class":"MODULE","predecessor_ids":[1578],"cpe":"cpe:/o:suse:sle-module-desktop-applications:15:sp1","product_type":"module","version":"15.1","recommended":true,"friendly_name":"Desktop Applications Module 15 SP1 x86_64","migration_extra":false,"release_type":null,"former_identifier":"sle-module-desktop-applications","name":"Desktop Applications Module","offline_predecessor_ids":[],"friendly_version":"15 SP1","identifier":"sle-module-desktop-applications","release_stage":"released","id":1776,"extensions":[{"friendly_version":"15 SP1","extensions":[],"release_stage":"released","identifier":"sle-module-development-tools","id":1794,"recommended":true,"version":"15.1","offline_predecessor_ids":[1223,1323,1341,1366,1427,1630,1892],"name":"Development Tools Module","release_type":null,"former_identifier":"sle-sdk","friendly_name":"Development Tools Module 15 SP1 x86_64","migration_extra":false,"predecessor_ids":[1579],"online_predecessor_ids":[1579],"repositories":[{"installer_updates":false,"name":"SLE-Module-DevTools15-SP1-Updates","description":"SLE-Module-DevTools15-SP1-Updates for sle-15-x86_64","id":3371,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15-SP1/x86_64/update/","distro_target":"sle-15-x86_64","autorefresh":true},{"id":3372,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15-SP1/x86_64/update_debug/","distro_target":"sle-15-x86_64","autorefresh":true,"installer_updates":false,"name":"SLE-Module-DevTools15-SP1-Debuginfo-Updates","description":"SLE-Module-DevTools15-SP1-Debuginfo-Updates for sle-15-x86_64"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP1/x86_64/product/","autorefresh":false,"distro_target":"sle-15-x86_64","id":3373,"enabled":true,"description":"SLE-Module-DevTools15-SP1-Pool for sle-15-x86_64","name":"SLE-Module-DevTools15-SP1-Pool","installer_updates":false},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP1/x86_64/product_debug/","distro_target":"sle-15-x86_64","autorefresh":false,"id":3374,"enabled":false,"description":"SLE-Module-DevTools15-SP1-Debuginfo-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-DevTools15-SP1-Debuginfo-Pool"},{"installer_updates":false,"name":"SLE-Module-DevTools15-SP1-Source-Pool","description":"SLE-Module-DevTools15-SP1-Source-Pool for sle-15-x86_64","enabled":false,"id":3375,"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP1/x86_64/product_source/"}],"product_class":"MODULE","product_type":"module","cpe":"cpe:/o:suse:sle-module-development-tools:15:sp1","free":true,"description":"

The Development Tools Module helps you developing applications for SUSE Linux Enterprise 15.

Access to the Development Tools Module is included in your SUSE Linux Enterprise product subscription. The module has a different lifecycle than SUSE Linux Enterprise itself.

","shortname":"Development-Tools-Module","eula_url":"","arch":"x86_64"}]},{"arch":"x86_64","eula_url":"","free":true,"description":"

The SUSE Linux Enterprise Server Applications Module delivers a basic set of Server functionality.

Access to the Server Applications Module is included in your SUSE Linux Enterprise Server subscription.

","shortname":"Server-Applications-Module","product_type":"module","cpe":"cpe:/o:suse:sle-module-server-applications:15:sp1","product_class":"MODULE","online_predecessor_ids":[1580],"repositories":[{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15-SP1/x86_64/update/","distro_target":"sle-15-x86_64","autorefresh":true,"id":3301,"enabled":true,"description":"SLE-Module-Server-Applications15-SP1-Updates for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Server-Applications15-SP1-Updates"},{"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15-SP1/x86_64/update_debug/","enabled":false,"id":3302,"description":"SLE-Module-Server-Applications15-SP1-Debuginfo-Updates for sle-15-x86_64","name":"SLE-Module-Server-Applications15-SP1-Debuginfo-Updates","installer_updates":false},{"description":"SLE-Module-Server-Applications15-SP1-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Server-Applications15-SP1-Pool","distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP1/x86_64/product/","enabled":true,"id":3303},{"installer_updates":false,"name":"SLE-Module-Server-Applications15-SP1-Debuginfo-Pool","description":"SLE-Module-Server-Applications15-SP1-Debuginfo-Pool for sle-15-x86_64","id":3304,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP1/x86_64/product_debug/","distro_target":"sle-15-x86_64","autorefresh":false},{"description":"SLE-Module-Server-Applications15-SP1-Source-Pool for sle-15-x86_64","name":"SLE-Module-Server-Applications15-SP1-Source-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP1/x86_64/product_source/","autorefresh":false,"distro_target":"sle-15-x86_64","id":3305,"enabled":false}],"predecessor_ids":[1580],"former_identifier":"sle-module-server-applications","release_type":null,"migration_extra":false,"friendly_name":"Server Applications Module 15 SP1 x86_64","offline_predecessor_ids":[],"name":"Server Applications Module","version":"15.1","recommended":true,"release_stage":"released","identifier":"sle-module-server-applications","id":1780,"extensions":[{"product_type":"module","cpe":"cpe:/o:suse:sle-module-rt:15:sp1","repositories":[{"id":3573,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-RT/15-SP1/x86_64/update/","distro_target":"sle-15-x86_64","autorefresh":true,"installer_updates":false,"name":"SLE-Module-RT15-SP1-Updates","description":"SLE-Module-RT15-SP1-Updates for sle-15-x86_64"},{"id":3574,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-RT/15-SP1/x86_64/update_debug/","autorefresh":true,"distro_target":"sle-15-x86_64","name":"SLE-Module-RT15-SP1-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-RT15-SP1-Debuginfo-Updates for sle-15-x86_64"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-RT/15-SP1/x86_64/product/","autorefresh":false,"distro_target":"sle-15-x86_64","id":3575,"enabled":true,"description":"SLE-Module-RT15-SP1-Pool for sle-15-x86_64","name":"SLE-Module-RT15-SP1-Pool","installer_updates":false},{"id":3576,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-RT/15-SP1/x86_64/product_debug/","distro_target":"sle-15-x86_64","autorefresh":false,"installer_updates":false,"name":"SLE-Module-RT15-SP1-Debuginfo-Pool","description":"SLE-Module-RT15-SP1-Debuginfo-Pool for sle-15-x86_64"},{"installer_updates":false,"name":"SLE-Module-RT15-SP1-Source-Pool","description":"SLE-Module-RT15-SP1-Source-Pool for sle-15-x86_64","id":3577,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-RT/15-SP1/x86_64/product_source/","distro_target":"sle-15-x86_64","autorefresh":false}],"online_predecessor_ids":[],"product_class":"MODULE","predecessor_ids":[],"arch":"x86_64","eula_url":"","free":true,"shortname":"SUSE-Real-Time-Module","description":"

The SUSE Linux Enterprise Real Time aims to reduce the latency and increase the predictability and reliability of time-sensitive mission-critical applications.

Packages in this module are generally supported until a newer version of the package is released or the package is dropped from the module.

","identifier":"sle-module-rt","release_stage":"released","id":1862,"extensions":[],"friendly_version":"15 SP1","former_identifier":"sle-module-rt","release_type":null,"migration_extra":false,"friendly_name":"SUSE Real Time Module 15 SP1 x86_64","offline_predecessor_ids":[1296,1619],"name":"SUSE Real Time Module","version":"15.1","recommended":true}],"friendly_version":"15 SP1"}],"version":"15.1","recommended":true,"friendly_name":"Basesystem Module 15 SP1 x86_64","migration_extra":false,"former_identifier":"sle-module-basesystem","release_type":null,"name":"Basesystem Module","offline_predecessor_ids":[1212,1368,1440,1618]}],"release_stage":"released","id":1861,"identifier":"SLE_RT","free":false,"shortname":"SLE-15-SP1-RT","description":"

The SUSE Linux Enterprise Real Time aims to reduce the latency and increase the predictability and reliability of time-sensitive mission-critical applications.

","eula_url":"https://updates.suse.com/SUSE/Products/SLE-Product-RT/15-SP1/x86_64/product.license/","arch":"x86_64","predecessor_ids":[],"online_predecessor_ids":[],"product_class":"SUSE_RT","repositories":[{"enabled":true,"id":3568,"distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-RT/15-SP1/x86_64/update/","installer_updates":false,"name":"SLE-Product-RT-15-SP1-Updates","description":"SLE-Product-RT-15-SP1-Updates for sle-15-x86_64"},{"description":"SLE-Product-RT15-SP1-Debuginfo-Updates for sle-15-x86_64","installer_updates":false,"name":"SLE-Product-RT15-SP1-Debuginfo-Updates","url":"https://updates.suse.com/SUSE/Updates/SLE-Product-RT/15-SP1/x86_64/update_debug/","distro_target":"sle-15-x86_64","autorefresh":true,"id":3569,"enabled":false},{"description":"SLE-Product-RT-15-SP1-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Product-RT-15-SP1-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Product-RT/15-SP1/x86_64/product/","distro_target":"sle-15-x86_64","autorefresh":false,"id":3570,"enabled":true},{"installer_updates":false,"name":"SLE-Product-RT15-SP1-Debuginfo-Pool","description":"SLE-Product-RT15-SP1-Debuginfo-Pool for sle-15-x86_64","id":3571,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-RT/15-SP1/x86_64/product_debug/","distro_target":"sle-15-x86_64","autorefresh":false},{"description":"SLE-Product-RT15-SP1-Source-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Product-RT15-SP1-Source-Pool","distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-RT/15-SP1/x86_64/product_source/","enabled":false,"id":3572}],"product_type":"base","cpe":"cpe:/o:suse:sle_rt:15:sp1"},{"release_type":null,"former_identifier":"sle-module-rt","friendly_name":"SUSE Real Time Module 15 SP1 x86_64","migration_extra":false,"offline_predecessor_ids":[1296,1619],"name":"SUSE Real Time Module","version":"15.1","recommended":false,"release_stage":"released","identifier":"sle-module-rt","id":1862,"extensions":[],"friendly_version":"15 SP1","arch":"x86_64","eula_url":"","free":true,"shortname":"SUSE-Real-Time-Module","description":"

The SUSE Linux Enterprise Real Time aims to reduce the latency and increase the predictability and reliability of time-sensitive mission-critical applications.

Packages in this module are generally supported until a newer version of the package is released or the package is dropped from the module.

","product_type":"module","cpe":"cpe:/o:suse:sle-module-rt:15:sp1","online_predecessor_ids":[],"repositories":[{"enabled":true,"id":3573,"distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-RT/15-SP1/x86_64/update/","installer_updates":false,"name":"SLE-Module-RT15-SP1-Updates","description":"SLE-Module-RT15-SP1-Updates for sle-15-x86_64"},{"description":"SLE-Module-RT15-SP1-Debuginfo-Updates for sle-15-x86_64","name":"SLE-Module-RT15-SP1-Debuginfo-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-RT/15-SP1/x86_64/update_debug/","enabled":false,"id":3574},{"id":3575,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-RT/15-SP1/x86_64/product/","autorefresh":false,"distro_target":"sle-15-x86_64","name":"SLE-Module-RT15-SP1-Pool","installer_updates":false,"description":"SLE-Module-RT15-SP1-Pool for sle-15-x86_64"},{"name":"SLE-Module-RT15-SP1-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-RT15-SP1-Debuginfo-Pool for sle-15-x86_64","enabled":false,"id":3576,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-RT/15-SP1/x86_64/product_debug/"},{"installer_updates":false,"name":"SLE-Module-RT15-SP1-Source-Pool","description":"SLE-Module-RT15-SP1-Source-Pool for sle-15-x86_64","id":3577,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-RT/15-SP1/x86_64/product_source/","distro_target":"sle-15-x86_64","autorefresh":false}],"product_class":"MODULE","predecessor_ids":[]},{"free":false,"description":"SUSE CaaS Platform is a Kubernetes-based container management solution used by application development and DevOps teams to more easily and efficiently deploy and manage containerized applications and services. Enterprises use SUSE CaaS Platform to reduce application delivery cycle times and improve business agility. Focused on providing an exceptional platform operator experience, SUSE CaaS Platform delivers Kubernetes innovations in a complete, enterprise grade solution that enables IT to deliver the power of Kubernetes to users more quickly, consistently, and cost-effectively.","shortname":"SUSE CaaS Platform 4.0","arch":"x86_64","eula_url":"https://updates.suse.com/SUSE/Products/SUSE-CAASP/4.0/x86_64/product.license/","online_predecessor_ids":[],"product_class":"CAASP_X86","repositories":[{"description":"SUSE-CAASP-4.0-Updates for sle-15-x86_64","installer_updates":false,"name":"SUSE-CAASP-4.0-Updates","distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SUSE-CAASP/4.0/x86_64/update/","enabled":true,"id":3578},{"enabled":false,"id":3579,"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SUSE-CAASP/4.0/x86_64/update_debug/","name":"SUSE-CAASP-4.0-Debuginfo-Updates","installer_updates":false,"description":"SUSE-CAASP-4.0-Debuginfo-Updates for sle-15-x86_64"},{"description":"SUSE-CAASP-4.0-Pool for sle-15-x86_64","installer_updates":false,"name":"SUSE-CAASP-4.0-Pool","distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SUSE-CAASP/4.0/x86_64/product/","enabled":true,"id":3580},{"installer_updates":false,"name":"SUSE-CAASP-4.0-Debuginfo-Pool","description":"SUSE-CAASP-4.0-Debuginfo-Pool for sle-15-x86_64","enabled":false,"id":3581,"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SUSE-CAASP/4.0/x86_64/product_debug/"},{"enabled":false,"id":3582,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SUSE-CAASP/4.0/x86_64/product_source/","name":"SUSE-CAASP-4.0-Source-Pool","installer_updates":false,"description":"SUSE-CAASP-4.0-Source-Pool for sle-15-x86_64"}],"predecessor_ids":[],"product_type":"extension","cpe":"cpe:/o:suse:caasp:4.0","version":"4.0","recommended":false,"former_identifier":"caasp","release_type":null,"migration_extra":false,"friendly_name":"SUSE CaaS Platform 4.0 x86_64","offline_predecessor_ids":[],"name":"SUSE CaaS Platform","friendly_version":"4.0","release_stage":"released","id":1863,"identifier":"caasp","extensions":[]},{"product_type":"module","cpe":"cpe:/o:suse:sle-module-python2:15:sp1","predecessor_ids":[],"product_class":"MODULE","online_predecessor_ids":[],"repositories":[{"name":"SLE-Module-Python2-15-SP1-Updates","installer_updates":false,"description":"SLE-Module-Python2-15-SP1-Updates for sle-15-aarch64","id":3583,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Python2/15-SP1/aarch64/update/","autorefresh":true,"distro_target":"sle-15-aarch64"},{"name":"SLE-Module-Python2-15-SP1-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-Python2-15-SP1-Debuginfo-Updates for sle-15-aarch64","id":3584,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Python2/15-SP1/aarch64/update_debug/","autorefresh":true,"distro_target":"sle-15-aarch64"},{"description":"SLE-Module-Python2-15-SP1-Pool for sle-15-aarch64","installer_updates":false,"name":"SLE-Module-Python2-15-SP1-Pool","distro_target":"sle-15-aarch64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Python2/15-SP1/aarch64/product/","enabled":true,"id":3585},{"id":3586,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Python2/15-SP1/aarch64/product_debug/","distro_target":"sle-15-aarch64","autorefresh":false,"installer_updates":false,"name":"SLE-Module-Python2-15-SP1-Debuginfo-Pool","description":"SLE-Module-Python2-15-SP1-Debuginfo-Pool for sle-15-aarch64"},{"enabled":false,"id":3587,"autorefresh":false,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Python2/15-SP1/aarch64/product_source/","name":"SLE-Module-Python2-15-SP1-Source-Pool","installer_updates":false,"description":"SLE-Module-Python2-15-SP1-Source-Pool for sle-15-aarch64"}],"eula_url":"","arch":"aarch64","free":true,"description":"

This module contains the python 2 packages.

Access to the Python 2 Module is included in your SUSE Linux Enterprise subscription. The module has a different lifecycle than SUSE Linux Enterprise itself. Packages in the this module are usually supported for at most three years.

","shortname":"Python2-Module","extensions":[],"identifier":"sle-module-python2","release_stage":"released","id":1864,"friendly_version":"15 SP1","offline_predecessor_ids":[],"name":"Python 2 Module","release_type":null,"former_identifier":"sle-module-python2","migration_extra":false,"friendly_name":"Python 2 Module 15 SP1 aarch64","recommended":false,"version":"15.1"},{"cpe":"cpe:/o:suse:sle-module-python2:15:sp1","product_type":"module","predecessor_ids":[],"online_predecessor_ids":[],"product_class":"MODULE","repositories":[{"installer_updates":false,"name":"SLE-Module-Python2-15-SP1-Updates","description":"SLE-Module-Python2-15-SP1-Updates for sle-15-ppc64le","id":3588,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Python2/15-SP1/ppc64le/update/","distro_target":"sle-15-ppc64le","autorefresh":true},{"enabled":false,"id":3589,"distro_target":"sle-15-ppc64le","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Python2/15-SP1/ppc64le/update_debug/","installer_updates":false,"name":"SLE-Module-Python2-15-SP1-Debuginfo-Updates","description":"SLE-Module-Python2-15-SP1-Debuginfo-Updates for sle-15-ppc64le"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Python2/15-SP1/ppc64le/product/","distro_target":"sle-15-ppc64le","autorefresh":false,"id":3590,"enabled":true,"description":"SLE-Module-Python2-15-SP1-Pool for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-Python2-15-SP1-Pool"},{"description":"SLE-Module-Python2-15-SP1-Debuginfo-Pool for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-Python2-15-SP1-Debuginfo-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Python2/15-SP1/ppc64le/product_debug/","distro_target":"sle-15-ppc64le","autorefresh":false,"id":3591,"enabled":false},{"description":"SLE-Module-Python2-15-SP1-Source-Pool for sle-15-ppc64le","name":"SLE-Module-Python2-15-SP1-Source-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Python2/15-SP1/ppc64le/product_source/","enabled":false,"id":3592}],"eula_url":"","arch":"ppc64le","description":"

This module contains the python 2 packages.

Access to the Python 2 Module is included in your SUSE Linux Enterprise subscription. The module has a different lifecycle than SUSE Linux Enterprise itself. Packages in the this module are usually supported for at most three years.

","shortname":"Python2-Module","free":true,"extensions":[],"identifier":"sle-module-python2","release_stage":"released","id":1865,"friendly_version":"15 SP1","name":"Python 2 Module","offline_predecessor_ids":[],"friendly_name":"Python 2 Module 15 SP1 ppc64le","migration_extra":false,"former_identifier":"sle-module-python2","release_type":null,"recommended":false,"version":"15.1"},{"online_predecessor_ids":[],"repositories":[{"description":"SLE-Module-Python2-15-SP1-Updates for sle-15-s390x","name":"SLE-Module-Python2-15-SP1-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-15-s390x","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Python2/15-SP1/s390x/update/","enabled":true,"id":3593},{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Python2/15-SP1/s390x/update_debug/","distro_target":"sle-15-s390x","autorefresh":true,"id":3594,"enabled":false,"description":"SLE-Module-Python2-15-SP1-Debuginfo-Updates for sle-15-s390x","installer_updates":false,"name":"SLE-Module-Python2-15-SP1-Debuginfo-Updates"},{"installer_updates":false,"name":"SLE-Module-Python2-15-SP1-Pool","description":"SLE-Module-Python2-15-SP1-Pool for sle-15-s390x","enabled":true,"id":3595,"distro_target":"sle-15-s390x","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Python2/15-SP1/s390x/product/"},{"description":"SLE-Module-Python2-15-SP1-Debuginfo-Pool for sle-15-s390x","name":"SLE-Module-Python2-15-SP1-Debuginfo-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-15-s390x","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Python2/15-SP1/s390x/product_debug/","enabled":false,"id":3596},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Python2/15-SP1/s390x/product_source/","autorefresh":false,"distro_target":"sle-15-s390x","id":3597,"enabled":false,"description":"SLE-Module-Python2-15-SP1-Source-Pool for sle-15-s390x","name":"SLE-Module-Python2-15-SP1-Source-Pool","installer_updates":false}],"product_class":"MODULE","predecessor_ids":[],"cpe":"cpe:/o:suse:sle-module-python2:15:sp1","product_type":"module","description":"

This module contains the python 2 packages.

Access to the Python 2 Module is included in your SUSE Linux Enterprise subscription. The module has a different lifecycle than SUSE Linux Enterprise itself. Packages in the this module are usually supported for at most three years.

","shortname":"Python2-Module","free":true,"arch":"s390x","eula_url":"","friendly_version":"15 SP1","release_stage":"released","identifier":"sle-module-python2","id":1866,"extensions":[],"version":"15.1","recommended":false,"migration_extra":false,"friendly_name":"Python 2 Module 15 SP1 s390x","release_type":null,"former_identifier":"sle-module-python2","name":"Python 2 Module","offline_predecessor_ids":[]},{"recommended":false,"version":"15.1","name":"Python 2 Module","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"Python 2 Module 15 SP1 x86_64","release_type":null,"former_identifier":"sle-module-python2","friendly_version":"15 SP1","extensions":[],"id":1867,"release_stage":"released","identifier":"sle-module-python2","shortname":"Python2-Module","description":"

This module contains the python 2 packages.

Access to the Python 2 Module is included in your SUSE Linux Enterprise subscription. The module has a different lifecycle than SUSE Linux Enterprise itself. Packages in the this module are usually supported for at most three years.

","free":true,"eula_url":"","arch":"x86_64","predecessor_ids":[],"online_predecessor_ids":[],"product_class":"MODULE","repositories":[{"description":"SLE-Module-Python2-15-SP1-Updates for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Python2-15-SP1-Updates","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Python2/15-SP1/x86_64/update/","distro_target":"sle-15-x86_64","autorefresh":true,"id":3598,"enabled":true},{"description":"SLE-Module-Python2-15-SP1-Debuginfo-Updates for sle-15-x86_64","name":"SLE-Module-Python2-15-SP1-Debuginfo-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Python2/15-SP1/x86_64/update_debug/","enabled":false,"id":3599},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Python2/15-SP1/x86_64/product/","autorefresh":false,"distro_target":"sle-15-x86_64","id":3600,"enabled":true,"description":"SLE-Module-Python2-15-SP1-Pool for sle-15-x86_64","name":"SLE-Module-Python2-15-SP1-Pool","installer_updates":false},{"description":"SLE-Module-Python2-15-SP1-Debuginfo-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Python2-15-SP1-Debuginfo-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Python2/15-SP1/x86_64/product_debug/","distro_target":"sle-15-x86_64","autorefresh":false,"id":3601,"enabled":false},{"description":"SLE-Module-Python2-15-SP1-Source-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Python2-15-SP1-Source-Pool","distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Python2/15-SP1/x86_64/product_source/","enabled":false,"id":3602}],"cpe":"cpe:/o:suse:sle-module-python2:15:sp1","product_type":"module"},{"recommended":false,"version":"15.1","name":"SUSE Package Hub","offline_predecessor_ids":[1532,1810,1912],"migration_extra":false,"friendly_name":"SUSE Package Hub 15 SP1 aarch64","release_type":null,"former_identifier":"PackageHub","friendly_version":"15 SP1","extensions":[],"release_stage":"released","id":1868,"identifier":"PackageHub","shortname":"SUSE-PackageHub-15","description":"SUSE Package Hub is a free of charge extension providing access to community maintained packages built to run on SUSE Linux Enterprise Server. Built from the same sources used in the openSUSE distributions, these quality packages provide additional software to what is found in the SUSE Linux Enterprise Server product. Packages from the Package Hub are delivered without L3 support from SUSE. General updates and fixes to the packages in SUSE Package Hub are provided by the openSUSE community based on their discretion, though SUSE will monitor and ensure that any known critical security issues will be addressed. Packages in the Package Hub are approved by SUSE for use with SUSE Linux Enterprise Server 15-SP1 and to not interfere with the supportability of SUSE Linux Enterprise Server, its modules and extensions. For more information about SUSE Package Hub please visit https://packagehub.suse.com.","free":true,"eula_url":"","arch":"aarch64","predecessor_ids":[1740],"online_predecessor_ids":[1740],"repositories":[{"name":"SUSE-PackageHub-15-SP1-Backports-Pool","installer_updates":false,"description":"SUSE-PackageHub-15-SP1-Backports-Pool for sle-15-aarch64","id":3603,"enabled":true,"url":"https://updates.suse.com/SUSE/Backports/SLE-15-SP1_aarch64/standard/","autorefresh":false,"distro_target":"sle-15-aarch64"},{"autorefresh":true,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Backports/SLE-15-SP1_aarch64/standard_debug/","enabled":false,"id":3604,"description":"SUSE-PackageHub-15-SP1-Backports-Debuginfo for sle-15-aarch64","name":"SUSE-PackageHub-15-SP1-Backports-Debuginfo","installer_updates":false},{"enabled":true,"id":3605,"autorefresh":true,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP1/aarch64/update/","name":"SLE-Module-Packagehub-Subpackages15-SP1-Updates","installer_updates":false,"description":"SLE-Module-Packagehub-Subpackages15-SP1-Updates for sle-15-aarch64"},{"enabled":false,"id":3606,"autorefresh":true,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP1/aarch64/update_debug/","name":"SLE-Module-Packagehub-Subpackages15-SP1-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-Packagehub-Subpackages15-SP1-Debuginfo-Updates for sle-15-aarch64"},{"name":"SUSE-PackageHub-15-SP1-Pool","installer_updates":false,"description":"SUSE-PackageHub-15-SP1-Pool for sle-15-aarch64","id":3607,"enabled":true,"url":"https://updates.suse.com/SUSE/Backports/SLE-15-SP1_aarch64/product/","autorefresh":false,"distro_target":"sle-15-aarch64"},{"autorefresh":false,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP1/aarch64/product/","enabled":true,"id":3608,"description":"SLE-Module-Packagehub-Subpackages15-SP1-Pool for sle-15-aarch64","name":"SLE-Module-Packagehub-Subpackages15-SP1-Pool","installer_updates":false},{"autorefresh":false,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP1/aarch64/product_debug/","enabled":false,"id":3609,"description":"SLE-Module-Packagehub-Subpackages15-SP1-Debuginfo-Pool for sle-15-aarch64","name":"SLE-Module-Packagehub-Subpackages15-SP1-Debuginfo-Pool","installer_updates":false},{"autorefresh":false,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP1/aarch64/product_source/","enabled":false,"id":3610,"description":"SLE-Module-Packagehub-Subpackages15-SP1-Source-Pool for sle-15-aarch64","name":"SLE-Module-Packagehub-Subpackages15-SP1-Source-Pool","installer_updates":false}],"product_class":"MODULE","cpe":"cpe:/o:suse:packagehub:15:sp1","product_type":"extension"},{"predecessor_ids":[1741],"repositories":[{"id":3611,"enabled":true,"url":"https://updates.suse.com/SUSE/Backports/SLE-15-SP1_ppc64le/standard/","distro_target":"sle-15-ppc64le","autorefresh":false,"installer_updates":false,"name":"SUSE-PackageHub-15-SP1-Backports-Pool","description":"SUSE-PackageHub-15-SP1-Backports-Pool for sle-15-ppc64le"},{"url":"https://updates.suse.com/SUSE/Backports/SLE-15-SP1_ppc64le/standard_debug/","distro_target":"sle-15-ppc64le","autorefresh":true,"id":3612,"enabled":false,"description":"SUSE-PackageHub-15-SP1-Backports-Debuginfo for sle-15-ppc64le","installer_updates":false,"name":"SUSE-PackageHub-15-SP1-Backports-Debuginfo"},{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP1/ppc64le/update/","distro_target":"sle-15-ppc64le","autorefresh":true,"id":3613,"enabled":true,"description":"SLE-Module-Packagehub-Subpackages15-SP1-Updates for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-Packagehub-Subpackages15-SP1-Updates"},{"name":"SLE-Module-Packagehub-Subpackages15-SP1-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-Packagehub-Subpackages15-SP1-Debuginfo-Updates for sle-15-ppc64le","id":3614,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP1/ppc64le/update_debug/","autorefresh":true,"distro_target":"sle-15-ppc64le"},{"name":"SUSE-PackageHub-15-SP1-Pool","installer_updates":false,"description":"SUSE-PackageHub-15-SP1-Pool for sle-15-ppc64le","id":3615,"enabled":true,"url":"https://updates.suse.com/SUSE/Backports/SLE-15-SP1_ppc64le/product/","autorefresh":false,"distro_target":"sle-15-ppc64le"},{"name":"SLE-Module-Packagehub-Subpackages15-SP1-Pool","installer_updates":false,"description":"SLE-Module-Packagehub-Subpackages15-SP1-Pool for sle-15-ppc64le","id":3616,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP1/ppc64le/product/","autorefresh":false,"distro_target":"sle-15-ppc64le"},{"description":"SLE-Module-Packagehub-Subpackages15-SP1-Debuginfo-Pool for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-Packagehub-Subpackages15-SP1-Debuginfo-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP1/ppc64le/product_debug/","distro_target":"sle-15-ppc64le","autorefresh":false,"id":3617,"enabled":false},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP1/ppc64le/product_source/","distro_target":"sle-15-ppc64le","autorefresh":false,"id":3618,"enabled":false,"description":"SLE-Module-Packagehub-Subpackages15-SP1-Source-Pool for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-Packagehub-Subpackages15-SP1-Source-Pool"}],"online_predecessor_ids":[1741],"product_class":"MODULE","product_type":"extension","cpe":"cpe:/o:suse:packagehub:15:sp1","free":true,"shortname":"SUSE-PackageHub-15","description":"SUSE Package Hub is a free of charge extension providing access to community maintained packages built to run on SUSE Linux Enterprise Server. Built from the same sources used in the openSUSE distributions, these quality packages provide additional software to what is found in the SUSE Linux Enterprise Server product. Packages from the Package Hub are delivered without L3 support from SUSE. General updates and fixes to the packages in SUSE Package Hub are provided by the openSUSE community based on their discretion, though SUSE will monitor and ensure that any known critical security issues will be addressed. Packages in the Package Hub are approved by SUSE for use with SUSE Linux Enterprise Server 15-SP1 and to not interfere with the supportability of SUSE Linux Enterprise Server, its modules and extensions. For more information about SUSE Package Hub please visit https://packagehub.suse.com.","eula_url":"","arch":"ppc64le","friendly_version":"15 SP1","extensions":[],"release_stage":"released","identifier":"PackageHub","id":1869,"recommended":false,"version":"15.1","offline_predecessor_ids":[1531,1811,1913],"name":"SUSE Package Hub","former_identifier":"PackageHub","release_type":null,"migration_extra":false,"friendly_name":"SUSE Package Hub 15 SP1 ppc64le"},{"friendly_version":"15 SP1","extensions":[],"identifier":"PackageHub","release_stage":"released","id":1870,"recommended":false,"version":"15.1","name":"SUSE Package Hub","offline_predecessor_ids":[1530,1812,1914],"friendly_name":"SUSE Package Hub 15 SP1 s390x","migration_extra":false,"release_type":null,"former_identifier":"PackageHub","predecessor_ids":[1742],"repositories":[{"name":"SUSE-PackageHub-15-SP1-Backports-Pool","installer_updates":false,"description":"SUSE-PackageHub-15-SP1-Backports-Pool for sle-15-s390x","enabled":true,"id":3619,"autorefresh":false,"distro_target":"sle-15-s390x","url":"https://updates.suse.com/SUSE/Backports/SLE-15-SP1_s390x/standard/"},{"installer_updates":false,"name":"SUSE-PackageHub-15-SP1-Backports-Debuginfo","description":"SUSE-PackageHub-15-SP1-Backports-Debuginfo for sle-15-s390x","id":3620,"enabled":false,"url":"https://updates.suse.com/SUSE/Backports/SLE-15-SP1_s390x/standard_debug/","distro_target":"sle-15-s390x","autorefresh":true},{"distro_target":"sle-15-s390x","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP1/s390x/update/","enabled":true,"id":3621,"description":"SLE-Module-Packagehub-Subpackages15-SP1-Updates for sle-15-s390x","installer_updates":false,"name":"SLE-Module-Packagehub-Subpackages15-SP1-Updates"},{"id":3622,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP1/s390x/update_debug/","distro_target":"sle-15-s390x","autorefresh":true,"installer_updates":false,"name":"SLE-Module-Packagehub-Subpackages15-SP1-Debuginfo-Updates","description":"SLE-Module-Packagehub-Subpackages15-SP1-Debuginfo-Updates for sle-15-s390x"},{"distro_target":"sle-15-s390x","autorefresh":false,"url":"https://updates.suse.com/SUSE/Backports/SLE-15-SP1_s390x/product/","enabled":true,"id":3623,"description":"SUSE-PackageHub-15-SP1-Pool for sle-15-s390x","installer_updates":false,"name":"SUSE-PackageHub-15-SP1-Pool"},{"distro_target":"sle-15-s390x","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP1/s390x/product/","enabled":true,"id":3624,"description":"SLE-Module-Packagehub-Subpackages15-SP1-Pool for sle-15-s390x","installer_updates":false,"name":"SLE-Module-Packagehub-Subpackages15-SP1-Pool"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP1/s390x/product_debug/","autorefresh":false,"distro_target":"sle-15-s390x","id":3625,"enabled":false,"description":"SLE-Module-Packagehub-Subpackages15-SP1-Debuginfo-Pool for sle-15-s390x","name":"SLE-Module-Packagehub-Subpackages15-SP1-Debuginfo-Pool","installer_updates":false},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP1/s390x/product_source/","distro_target":"sle-15-s390x","autorefresh":false,"id":3626,"enabled":false,"description":"SLE-Module-Packagehub-Subpackages15-SP1-Source-Pool for sle-15-s390x","installer_updates":false,"name":"SLE-Module-Packagehub-Subpackages15-SP1-Source-Pool"}],"online_predecessor_ids":[1742],"product_class":"MODULE","cpe":"cpe:/o:suse:packagehub:15:sp1","product_type":"extension","shortname":"SUSE-PackageHub-15","description":"SUSE Package Hub is a free of charge extension providing access to community maintained packages built to run on SUSE Linux Enterprise Server. Built from the same sources used in the openSUSE distributions, these quality packages provide additional software to what is found in the SUSE Linux Enterprise Server product. Packages from the Package Hub are delivered without L3 support from SUSE. General updates and fixes to the packages in SUSE Package Hub are provided by the openSUSE community based on their discretion, though SUSE will monitor and ensure that any known critical security issues will be addressed. Packages in the Package Hub are approved by SUSE for use with SUSE Linux Enterprise Server 15-SP1 and to not interfere with the supportability of SUSE Linux Enterprise Server, its modules and extensions. For more information about SUSE Package Hub please visit https://packagehub.suse.com.","free":true,"eula_url":"","arch":"s390x"},{"friendly_version":"15 SP1","extensions":[],"id":1871,"release_stage":"released","identifier":"PackageHub","recommended":false,"version":"15.1","name":"SUSE Package Hub","offline_predecessor_ids":[1529,1813,1915],"friendly_name":"SUSE Package Hub 15 SP1 x86_64","migration_extra":false,"release_type":null,"former_identifier":"PackageHub","predecessor_ids":[1743],"online_predecessor_ids":[1743],"product_class":"MODULE","repositories":[{"description":"SUSE-PackageHub-15-SP1-Backports-Pool for sle-15-x86_64","installer_updates":false,"name":"SUSE-PackageHub-15-SP1-Backports-Pool","distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Backports/SLE-15-SP1_x86_64/standard/","enabled":true,"id":3627},{"name":"SUSE-PackageHub-15-SP1-Backports-Debuginfo","installer_updates":false,"description":"SUSE-PackageHub-15-SP1-Backports-Debuginfo for sle-15-x86_64","id":3628,"enabled":false,"url":"https://updates.suse.com/SUSE/Backports/SLE-15-SP1_x86_64/standard_debug/","autorefresh":true,"distro_target":"sle-15-x86_64"},{"description":"SLE-Module-Packagehub-Subpackages15-SP1-Updates for sle-15-x86_64","name":"SLE-Module-Packagehub-Subpackages15-SP1-Updates","installer_updates":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP1/x86_64/update/","autorefresh":true,"distro_target":"sle-15-x86_64","id":3629,"enabled":true},{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP1/x86_64/update_debug/","autorefresh":true,"distro_target":"sle-15-x86_64","id":3630,"enabled":false,"description":"SLE-Module-Packagehub-Subpackages15-SP1-Debuginfo-Updates for sle-15-x86_64","name":"SLE-Module-Packagehub-Subpackages15-SP1-Debuginfo-Updates","installer_updates":false},{"url":"https://updates.suse.com/SUSE/Backports/SLE-15-SP1_x86_64/product/","distro_target":"sle-15-x86_64","autorefresh":false,"id":3631,"enabled":true,"description":"SUSE-PackageHub-15-SP1-Pool for sle-15-x86_64","installer_updates":false,"name":"SUSE-PackageHub-15-SP1-Pool"},{"installer_updates":false,"name":"SLE-Module-Packagehub-Subpackages15-SP1-Pool","description":"SLE-Module-Packagehub-Subpackages15-SP1-Pool for sle-15-x86_64","enabled":true,"id":3632,"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP1/x86_64/product/"},{"enabled":false,"id":3633,"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP1/x86_64/product_debug/","installer_updates":false,"name":"SLE-Module-Packagehub-Subpackages15-SP1-Debuginfo-Pool","description":"SLE-Module-Packagehub-Subpackages15-SP1-Debuginfo-Pool for sle-15-x86_64"},{"description":"SLE-Module-Packagehub-Subpackages15-SP1-Source-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Packagehub-Subpackages15-SP1-Source-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP1/x86_64/product_source/","distro_target":"sle-15-x86_64","autorefresh":false,"id":3634,"enabled":false}],"cpe":"cpe:/o:suse:packagehub:15:sp1","product_type":"extension","shortname":"SUSE-PackageHub-15","description":"SUSE Package Hub is a free of charge extension providing access to community maintained packages built to run on SUSE Linux Enterprise Server. Built from the same sources used in the openSUSE distributions, these quality packages provide additional software to what is found in the SUSE Linux Enterprise Server product. Packages from the Package Hub are delivered without L3 support from SUSE. General updates and fixes to the packages in SUSE Package Hub are provided by the openSUSE community based on their discretion, though SUSE will monitor and ensure that any known critical security issues will be addressed. Packages in the Package Hub are approved by SUSE for use with SUSE Linux Enterprise Server 15-SP1 and to not interfere with the supportability of SUSE Linux Enterprise Server, its modules and extensions. For more information about SUSE Package Hub please visit https://packagehub.suse.com.","free":true,"eula_url":"","arch":"x86_64"},{"friendly_version":"12 SP5","extensions":[{"predecessor_ids":[],"product_class":"MODULE","online_predecessor_ids":[],"repositories":[{"id":2086,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Toolchain/12/aarch64/update/","autorefresh":true,"distro_target":"sle-12-aarch64","name":"SLE-Module-Toolchain12-Updates","installer_updates":false,"description":"SLE-Module-Toolchain12-Updates for sle-12-aarch64"},{"name":"SLE-Module-Toolchain12-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-Toolchain12-Debuginfo-Updates for sle-12-aarch64","enabled":false,"id":2087,"autorefresh":true,"distro_target":"sle-12-aarch64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Toolchain/12/aarch64/update_debug/"},{"description":"SLE-Module-Toolchain12-Pool for sle-12-aarch64","name":"SLE-Module-Toolchain12-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Toolchain/12/aarch64/product/","autorefresh":false,"distro_target":"sle-12-aarch64","id":2088,"enabled":true},{"id":2089,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Toolchain/12/aarch64/product_debug/","distro_target":"sle-12-aarch64","autorefresh":false,"installer_updates":false,"name":"SLE-Module-Toolchain12-Debuginfo-Pool","description":"SLE-Module-Toolchain12-Debuginfo-Pool for sle-12-aarch64"}],"cpe":"cpe:/o:suse:sle-module-toolchain:12","product_type":"module","description":"Via this Module you will have access to a more recent GCC and Toolchain in addition to the default compiler of SUSE Linux Enterprise. Access to the Toolchain Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself. Please check the Release Notes for further details.","shortname":"Toolchain-Module","free":true,"eula_url":"","arch":"aarch64","friendly_version":"12","extensions":[],"identifier":"sle-module-toolchain","release_stage":"released","id":1376,"recommended":false,"version":"12","name":"Toolchain Module","offline_predecessor_ids":[],"friendly_name":"Toolchain Module 12 aarch64","migration_extra":false,"release_type":null,"former_identifier":"sle-module-toolchain"},{"predecessor_ids":[],"online_predecessor_ids":[],"repositories":[{"description":"SLE-Module-HPC12-Updates for sle-12-aarch64","installer_updates":false,"name":"SLE-Module-HPC12-Updates","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-HPC/12/aarch64/update/","distro_target":"sle-12-aarch64","autorefresh":true,"id":2421,"enabled":true},{"enabled":false,"id":2422,"distro_target":"sle-12-aarch64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-HPC/12/aarch64/update_debug/","installer_updates":false,"name":"SLE-Module-HPC12-Debuginfo-Updates","description":"SLE-Module-HPC12-Debuginfo-Updates for sle-12-aarch64"},{"description":"SLE-Module-HPC12-Pool for sle-12-aarch64","installer_updates":false,"name":"SLE-Module-HPC12-Pool","distro_target":"sle-12-aarch64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-HPC/12/aarch64/product/","enabled":true,"id":2423},{"enabled":false,"id":2424,"autorefresh":false,"distro_target":"sle-12-aarch64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-HPC/12/aarch64/product_debug/","name":"SLE-Module-HPC12-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-HPC12-Debuginfo-Pool for sle-12-aarch64"},{"distro_target":"sle-12-aarch64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-HPC/12/aarch64/product_source/","enabled":false,"id":2425,"description":"SLE-Module-HPC12-Source-Pool for sle-12-aarch64","installer_updates":false,"name":"SLE-Module-HPC12-Source-Pool"}],"product_class":"MODULE","cpe":"cpe:/o:suse:sle-module-hpc:12","product_type":"module","shortname":"HPC-Module","description":"The SUSE Linux Enterprise Server High Performance Computing (HPC) module delivers specific tools commonly used for high performance, numerically intensive workloads. SUSE packages these tools in the SLES HPC Module to provide greater flexibility to deliver new versions or new tools more rapidly than the standard SUSE Linux Enterprise lifecycle would permit. Packages in this module are general supported till a newer version of the package is released or the package is dropped from the module.","free":true,"eula_url":"https://updates.suse.com/SUSE/Products/SLE-Module-HPC/12/aarch64/product.license/","arch":"aarch64","friendly_version":"12","extensions":[],"id":1522,"release_stage":"released","identifier":"sle-module-hpc","recommended":false,"version":"12","name":"HPC Module","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"HPC Module 12 aarch64","release_type":null,"former_identifier":"sle-module-hpc"},{"repositories":[{"id":2157,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/12/aarch64/update/","autorefresh":true,"distro_target":"sle-12-aarch64","name":"SLE-Module-Public-Cloud12-Updates","installer_updates":false,"description":"SLE-Module-Public-Cloud12-Updates for sle-12-aarch64"},{"description":"SLE-Module-Public-Cloud12-Debuginfo-Updates for sle-12-aarch64","installer_updates":false,"name":"SLE-Module-Public-Cloud12-Debuginfo-Updates","distro_target":"sle-12-aarch64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/12/aarch64/update_debug/","enabled":false,"id":2158},{"description":"SLE-Module-Public-Cloud12-Pool for sle-12-aarch64","installer_updates":false,"name":"SLE-Module-Public-Cloud12-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/12/aarch64/product/","distro_target":"sle-12-aarch64","autorefresh":false,"id":2159,"enabled":true},{"installer_updates":false,"name":"SLE-Module-Public-Cloud12-Debuginfo-Pool","description":"SLE-Module-Public-Cloud12-Debuginfo-Pool for sle-12-aarch64","enabled":false,"id":2160,"distro_target":"sle-12-aarch64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/12/aarch64/product_debug/"},{"description":"SLE-Module-Public-Cloud12-Source-Pool for sle-12-aarch64","installer_updates":false,"name":"SLE-Module-Public-Cloud12-Source-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/12/aarch64/product_source/","distro_target":"sle-12-aarch64","autorefresh":false,"id":2161,"enabled":false}],"online_predecessor_ids":[],"product_class":"MODULE","predecessor_ids":[],"product_type":"module","cpe":"cpe:/o:suse:sle-module-public-cloud:12","free":true,"shortname":"Public-Cloud-Module","description":"

The Public Cloud Module is a collection of tools that enables you to create and manage cloud images from the commandline on SUSE Linux Enterprise Server. When building your own images with KIWI or SUSE Studio, initialization code specific to the target cloud is included in that image.

Access to the Public Cloud Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself; please check the Release Notes for further details.

","arch":"aarch64","eula_url":"","friendly_version":"12","id":1528,"release_stage":"released","identifier":"sle-module-public-cloud","extensions":[],"version":"12","recommended":false,"release_type":null,"former_identifier":"sle-module-public-cloud","friendly_name":"Public Cloud Module 12 aarch64","migration_extra":false,"offline_predecessor_ids":[],"name":"Public Cloud Module"},{"id":1539,"release_stage":"released","identifier":"sle-module-web-scripting","extensions":[],"friendly_version":"12","friendly_name":"Web and Scripting Module 12 aarch64","migration_extra":false,"release_type":null,"former_identifier":"sle-module-web-scripting","name":"Web and Scripting Module","offline_predecessor_ids":[],"version":"12","recommended":false,"cpe":"cpe:/o:suse:sle-module-web-scripting:12","product_type":"module","repositories":[{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/12/aarch64/update/","distro_target":"sle-12-aarch64","autorefresh":true,"id":2476,"enabled":true,"description":"SLE-Module-Web-Scripting12-Updates for sle-12-aarch64","installer_updates":false,"name":"SLE-Module-Web-Scripting12-Updates"},{"description":"SLE-Module-Web-Scripting12-Debuginfo-Updates for sle-12-aarch64","name":"SLE-Module-Web-Scripting12-Debuginfo-Updates","installer_updates":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/12/aarch64/update_debug/","autorefresh":true,"distro_target":"sle-12-aarch64","id":2477,"enabled":false},{"description":"SLE-Module-Web-Scripting12-Pool for sle-12-aarch64","installer_updates":false,"name":"SLE-Module-Web-Scripting12-Pool","distro_target":"sle-12-aarch64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/12/aarch64/product/","enabled":true,"id":2478},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/12/aarch64/product_debug/","distro_target":"sle-12-aarch64","autorefresh":false,"id":2479,"enabled":false,"description":"SLE-Module-Web-Scripting12-Debuginfo-Pool for sle-12-aarch64","installer_updates":false,"name":"SLE-Module-Web-Scripting12-Debuginfo-Pool"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/12/aarch64/product_source/","autorefresh":false,"distro_target":"sle-12-aarch64","id":2480,"enabled":false,"description":"SLE-Module-Web-Scripting12-Source-Pool for sle-12-aarch64","name":"SLE-Module-Web-Scripting12-Source-Pool","installer_updates":false}],"online_predecessor_ids":[],"product_class":"MODULE","predecessor_ids":[],"arch":"aarch64","eula_url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/12/aarch64/product.license/","shortname":"Web-and-Scripting-Module","description":"

The SUSE Linux Enterprise Web and Scripting Module delivers a comprehensive suite of scripting languages, frameworks, and related tools helping developers and systems administrators accelerate the creation of stable, modern web applications, using dynamic languages, such as PHP, Ruby on Rails, and Python.

Access to the Web and Scripting Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself: Package versions in the this module are usually supported for at most three years. We are planning to release more recent versions on a schedule of approximately 18 month; the exact dates may differ per package.

","free":true},{"free":true,"description":"

SUSE Linux Enterprise Software Development Kit is the Software Development Kit for the family of SUSE Linux Enterprise products. It is a free of charge extension for partners and customers working with SUSE Linux Enterprise Server and Desktop and derived products.

Packages on the SDK are delivered without L3 support; maintenance updates will be done for critical security and critical non-security issues, and where needed to remain in sync with packages delivered in the SUSE Linux Enterprise Server and Desktop products.

Packages to rebuild SUSE Linux Enterprise Server are not part of the SUSE Linux Enterprise Software Development Kit.

","shortname":"SDK12-SP5","eula_url":"https://updates.suse.com/SUSE/Products/SLE-SDK/12-SP5/aarch64/product.license/","arch":"aarch64","predecessor_ids":[1378,1430,1633],"product_class":"MODULE","online_predecessor_ids":[1378,1430,1633],"repositories":[{"enabled":true,"id":3724,"distro_target":"sle-12-aarch64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-SDK/12-SP5/aarch64/update/","installer_updates":false,"name":"SLE-SDK12-SP5-Updates","description":"SLE-SDK12-SP5-Updates for sle-12-aarch64"},{"autorefresh":true,"distro_target":"sle-12-aarch64","url":"https://updates.suse.com/SUSE/Updates/SLE-SDK/12-SP5/aarch64/update_debug/","enabled":false,"id":3725,"description":"SLE-SDK12-SP5-Debuginfo-Updates for sle-12-aarch64","name":"SLE-SDK12-SP5-Debuginfo-Updates","installer_updates":false},{"description":"SLE-SDK12-SP5-Pool for sle-12-aarch64","installer_updates":false,"name":"SLE-SDK12-SP5-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-SDK/12-SP5/aarch64/product/","distro_target":"sle-12-aarch64","autorefresh":false,"id":3726,"enabled":true},{"installer_updates":false,"name":"SLE-SDK12-SP5-Debuginfo-Pool","description":"SLE-SDK12-SP5-Debuginfo-Pool for sle-12-aarch64","enabled":false,"id":3727,"distro_target":"sle-12-aarch64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-SDK/12-SP5/aarch64/product_debug/"},{"distro_target":"sle-12-aarch64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-SDK/12-SP5/aarch64/product_source/","enabled":false,"id":3728,"description":"SLE-SDK12-SP5-Source-Pool for sle-12-aarch64","installer_updates":false,"name":"SLE-SDK12-SP5-Source-Pool"}],"product_type":"extension","cpe":"cpe:/o:suse:sle-sdk:12:sp5","recommended":false,"version":"12.5","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Software Development Kit","former_identifier":"sle-sdk","release_type":null,"friendly_name":"SUSE Linux Enterprise Software Development Kit 12 SP5 aarch64","migration_extra":false,"friendly_version":"12 SP5","extensions":[],"release_stage":"released","id":1889,"identifier":"sle-sdk"},{"online_predecessor_ids":[1815,1817],"product_class":"SLE-ESPOS-ARM64-ALPHA","repositories":[{"enabled":true,"id":3749,"autorefresh":true,"distro_target":"sle-12-aarch64","url":"https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-SP5-ESPOS/aarch64/update/","name":"SLES12-SP5-ESPOS-Updates","installer_updates":false,"description":"SLES12-SP5-ESPOS-Updates for sle-12-aarch64"},{"installer_updates":false,"name":"SLES12-SP5-ESPOS-Debuginfo-Updates","description":"SLES12-SP5-ESPOS-Debuginfo-Updates for sle-12-aarch64","enabled":false,"id":3750,"distro_target":"sle-12-aarch64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-SP5-ESPOS/aarch64/update_debug/"},{"enabled":true,"id":3751,"autorefresh":false,"distro_target":"sle-12-aarch64","url":"https://updates.suse.com/SUSE/Products/SLE-SERVER/12-SP5-ESPOS/aarch64/product/","name":"SLES12-SP5-ESPOS-Pool","installer_updates":false,"description":"SLES12-SP5-ESPOS-Pool for sle-12-aarch64"},{"enabled":false,"id":3752,"distro_target":"sle-12-aarch64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-SERVER/12-SP5-ESPOS/aarch64/product_debug/","installer_updates":false,"name":"SLES12-SP5-ESPOS-Debuginfo-Pool","description":"SLES12-SP5-ESPOS-Debuginfo-Pool for sle-12-aarch64"},{"enabled":false,"id":3753,"autorefresh":false,"distro_target":"sle-12-aarch64","url":"https://updates.suse.com/SUSE/Products/SLE-SERVER/12-SP5-ESPOS/aarch64/product_source/","name":"SLES12-SP5-ESPOS-Source-Pool","installer_updates":false,"description":"SLES12-SP5-ESPOS-Source-Pool for sle-12-aarch64"}],"predecessor_ids":[1815,1817],"cpe":"cpe:/o:suse:sles-espos:12:sp5","product_type":"extension","shortname":"SLES12-SP5 ESPOS","description":"SUSE Linux Enterprise offers a comprehensive suite of products built on a single code base. The platform addresses business needs from the smallest thin-client devices to the world's most powerful high-performance computing and mainframe servers. SUSE Linux Enterprise offers common management tools and technology certifications across the platform, and each product is enterprise-class.","free":false,"arch":"aarch64","eula_url":"","friendly_version":"12 SP5","release_stage":"alpha","identifier":"SLES-ESPOS","id":1894,"extensions":[],"version":"12.5","recommended":false,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Server ESPOS 12 SP5 aarch64 (ALPHA)","former_identifier":"SLES-ESPOS","release_type":null,"name":"SUSE Linux Enterprise Server ESPOS","offline_predecessor_ids":[]},{"arch":"aarch64","eula_url":"","shortname":"SUSE-PackageHub-12-SP5","description":"SUSE Package Hub is a free of charge extension providing access to community maintained packages built to run on SUSE Linux Enterprise Server. Built from the same sources used in the openSUSE distributions, these quality packages provide additional software to what is found in the SUSE Linux Enterprise Server product. Packages from the Package Hub are delivered without L3 support from SUSE. General updates and fixes to the packages in SUSE Package Hub are provided by the openSUSE community based on their discretion though SUSE will monitor and ensure that any known critical security issues will be addressed. Packages in the Package Hub are approved by SUSE for use with SUSE Linux Enterprise Server 12 and to not interfere with the supportability of SUSE Linux Enterprise Server it's modules and extensions. For more information about SUSE Package Hub please visit https://packagehub.suse.com.","free":true,"cpe":"cpe:/o:suse:packagehub:12:sp5","product_type":"extension","online_predecessor_ids":[1482,1532,1810],"product_class":"MODULE","repositories":[{"url":"https://updates.suse.com/SUSE/Backports/SLE-12-SP5_aarch64/standard/","autorefresh":false,"distro_target":"sle-12-aarch64","id":3855,"enabled":true,"description":"SUSE-PackageHub-12-SP5-Standard-Pool for sle-12-aarch64","name":"SUSE-PackageHub-12-SP5-Standard-Pool","installer_updates":false},{"description":"SUSE-PackageHub-12-SP5-Debuginfo for sle-12-aarch64","name":"SUSE-PackageHub-12-SP5-Debuginfo","installer_updates":false,"autorefresh":true,"distro_target":"sle-12-aarch64","url":"https://updates.suse.com/SUSE/Backports/SLE-12-SP5_aarch64/standard_debug/","enabled":false,"id":3856},{"description":"SUSE-PackageHub-12-SP5-Pool for sle-12-aarch64","name":"SUSE-PackageHub-12-SP5-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Backports/SLE-12-SP5_aarch64/product/","autorefresh":false,"distro_target":"sle-12-aarch64","id":3857,"enabled":true}],"predecessor_ids":[1482,1532,1810],"friendly_name":"SUSE Package Hub 12 SP5 aarch64","migration_extra":false,"former_identifier":"PackageHub","release_type":null,"name":"SUSE Package Hub","offline_predecessor_ids":[],"version":"12.5","recommended":false,"id":1912,"release_stage":"released","identifier":"PackageHub","extensions":[],"friendly_version":"12 SP5"}],"release_stage":"released","identifier":"SLE-HPC","id":1872,"recommended":false,"version":"12.5","offline_predecessor_ids":[1375,1424,1628],"name":"SUSE Linux Enterprise High Performance Computing","former_identifier":"SLE-HPC","release_type":null,"friendly_name":"SUSE Linux Enterprise High Performance Computing 12 SP5 aarch64","migration_extra":false,"predecessor_ids":[1750,1758],"repositories":[{"distro_target":"sle-12-aarch64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-HPC/12-SP5/aarch64/update/","enabled":true,"id":3635,"description":"SLE12-SP5-HPC-Updates for sle-12-aarch64","installer_updates":false,"name":"SLE12-SP5-HPC-Updates"},{"url":"https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-SP5/aarch64/update/","autorefresh":true,"distro_target":"sle-12-aarch64","id":3636,"enabled":true,"description":"SLES12-SP5-Updates for sle-12-aarch64","name":"SLES12-SP5-Updates","installer_updates":false},{"autorefresh":true,"distro_target":"sle-12-aarch64","url":"https://updates.suse.com/SUSE/Updates/SLE-HPC/12-SP5/aarch64/update_debug/","enabled":false,"id":3637,"description":"SLE12-SP5-HPC-Debuginfo-Updates for sle-12-aarch64","name":"SLE12-SP5-HPC-Debuginfo-Updates","installer_updates":false},{"name":"SLES12-SP5-Debuginfo-Updates","installer_updates":false,"description":"SLES12-SP5-Debuginfo-Updates for sle-12-aarch64","id":3638,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-SP5/aarch64/update_debug/","autorefresh":true,"distro_target":"sle-12-aarch64"},{"installer_updates":true,"name":"SLES12-SP5-Installer-Updates","description":"SLES12-SP5-Installer-Updates for sle-12-aarch64","id":3639,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-SERVER-INSTALLER/12-SP5/aarch64/update/","distro_target":"sle-12-aarch64","autorefresh":true},{"url":"https://updates.suse.com/SUSE/Products/SLE-HPC/12-SP5/aarch64/product/","autorefresh":false,"distro_target":"sle-12-aarch64","id":3640,"enabled":true,"description":"SLE12-SP5-HPC-Pool for sle-12-aarch64","name":"SLE12-SP5-HPC-Pool","installer_updates":false},{"distro_target":"sle-12-aarch64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-SERVER/12-SP5/aarch64/product/","enabled":true,"id":3641,"description":"SLES12-SP5-Pool for sle-12-aarch64","installer_updates":false,"name":"SLES12-SP5-Pool"},{"enabled":false,"id":3642,"autorefresh":false,"distro_target":"sle-12-aarch64","url":"https://updates.suse.com/SUSE/Products/SLE-HPC/12-SP5/aarch64/product_debug/","name":"SLE12-SP5-HPC-Debuginfo-Pool","installer_updates":false,"description":"SLE12-SP5-HPC-Debuginfo-Pool for sle-12-aarch64"},{"name":"SLES12-SP5-Debuginfo-Pool","installer_updates":false,"description":"SLES12-SP5-Debuginfo-Pool for sle-12-aarch64","id":3643,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-SERVER/12-SP5/aarch64/product_debug/","autorefresh":false,"distro_target":"sle-12-aarch64"},{"description":"SLE12-SP5-HPC-Source-Pool for sle-12-aarch64","name":"SLE12-SP5-HPC-Source-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-12-aarch64","url":"https://updates.suse.com/SUSE/Products/SLE-HPC/12-SP5/aarch64/product_source/","enabled":false,"id":3644},{"enabled":false,"id":3645,"autorefresh":false,"distro_target":"sle-12-aarch64","url":"https://updates.suse.com/SUSE/Products/SLE-SERVER/12-SP5/aarch64/product_source/","name":"SLES12-SP5-Source-Pool","installer_updates":false,"description":"SLES12-SP5-Source-Pool for sle-12-aarch64"}],"online_predecessor_ids":[1750,1758],"product_class":"HPC-ARM64","product_type":"base","cpe":"cpe:/o:suse:sle-hpc:12:sp5","free":false,"description":"SUSE Linux Enterprise offers a comprehensive suite of products built on a single code base. The platform addresses business needs from the smallest thin-client devices to the world's most powerful high-performance computing and mainframe servers. SUSE Linux Enterprise offers common management tools and technology certifications across the platform, and each product is enterprise-class. The SUSE Linux Enterprise Server for High Performance Computing (HPC) delivers specific tools commonly used for high performance, numerically intensive workloads.","shortname":"SLE-HPC-12-SP5","eula_url":"https://updates.suse.com/SUSE/Products/SLE-HPC/12-SP5/aarch64/product.license/","arch":"aarch64"},{"eula_url":"https://updates.suse.com/SUSE/Products/SLE-HPC/12-SP5/x86_64/product.license/","arch":"x86_64","shortname":"SLE-HPC-12-SP5","description":"SUSE Linux Enterprise offers a comprehensive suite of products built on a single code base. The platform addresses business needs from the smallest thin-client devices to the world's most powerful high-performance computing and mainframe servers. SUSE Linux Enterprise offers common management tools and technology certifications across the platform, and each product is enterprise-class. The SUSE Linux Enterprise Server for High Performance Computing (HPC) delivers specific tools commonly used for high performance, numerically intensive workloads.","free":false,"cpe":"cpe:/o:suse:sle-hpc:12:sp5","product_type":"base","predecessor_ids":[1749,1751,1759],"online_predecessor_ids":[1749,1751,1759],"product_class":"HPC-X86","repositories":[{"enabled":true,"id":3646,"autorefresh":true,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-HPC/12-SP5/x86_64/update/","name":"SLE12-SP5-HPC-Updates","installer_updates":false,"description":"SLE12-SP5-HPC-Updates for sle-12-x86_64"},{"distro_target":"sle-12-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-SP5/x86_64/update/","enabled":true,"id":3647,"description":"SLES12-SP5-Updates for sle-12-x86_64","installer_updates":false,"name":"SLES12-SP5-Updates"},{"name":"SLE12-SP5-HPC-Debuginfo-Updates","installer_updates":false,"description":"SLE12-SP5-HPC-Debuginfo-Updates for sle-12-x86_64","id":3648,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-HPC/12-SP5/x86_64/update_debug/","autorefresh":true,"distro_target":"sle-12-x86_64"},{"enabled":false,"id":3649,"autorefresh":true,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-SP5/x86_64/update_debug/","name":"SLES12-SP5-Debuginfo-Updates","installer_updates":false,"description":"SLES12-SP5-Debuginfo-Updates for sle-12-x86_64"},{"description":"SLES12-SP5-Installer-Updates for sle-12-x86_64","installer_updates":true,"name":"SLES12-SP5-Installer-Updates","distro_target":"sle-12-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-SERVER-INSTALLER/12-SP5/x86_64/update/","enabled":false,"id":3650},{"description":"SLE12-SP5-HPC-Pool for sle-12-x86_64","name":"SLE12-SP5-HPC-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-HPC/12-SP5/x86_64/product/","enabled":true,"id":3651},{"enabled":true,"id":3652,"distro_target":"sle-12-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-SERVER/12-SP5/x86_64/product/","installer_updates":false,"name":"SLES12-SP5-Pool","description":"SLES12-SP5-Pool for sle-12-x86_64"},{"description":"SLE12-SP5-HPC-Debuginfo-Pool for sle-12-x86_64","name":"SLE12-SP5-HPC-Debuginfo-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-HPC/12-SP5/x86_64/product_debug/","enabled":false,"id":3653},{"autorefresh":false,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-SERVER/12-SP5/x86_64/product_debug/","enabled":false,"id":3654,"description":"SLES12-SP5-Debuginfo-Pool for sle-12-x86_64","name":"SLES12-SP5-Debuginfo-Pool","installer_updates":false},{"distro_target":"sle-12-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-HPC/12-SP5/x86_64/product_source/","enabled":false,"id":3655,"description":"SLE12-SP5-HPC-Source-Pool for sle-12-x86_64","installer_updates":false,"name":"SLE12-SP5-HPC-Source-Pool"},{"description":"SLES12-SP5-Source-Pool for sle-12-x86_64","name":"SLES12-SP5-Source-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-SERVER/12-SP5/x86_64/product_source/","enabled":false,"id":3656}],"name":"SUSE Linux Enterprise High Performance Computing","offline_predecessor_ids":[1117,1322,1357,1421,1625],"friendly_name":"SUSE Linux Enterprise High Performance Computing 12 SP5 x86_64","migration_extra":false,"former_identifier":"SLE-HPC","release_type":null,"recommended":false,"version":"12.5","extensions":[{"predecessor_ids":[],"product_class":"MODULE","online_predecessor_ids":[],"repositories":[{"description":"SLE-Module-Legacy12-Updates for sle-12-x86_64","installer_updates":false,"name":"SLE-Module-Legacy12-Updates","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/12/x86_64/update/","distro_target":"sle-12-x86_64","autorefresh":true,"id":1676,"enabled":true},{"enabled":false,"id":1677,"distro_target":"sle-12-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/12/x86_64/update_debug/","installer_updates":false,"name":"SLE-Module-Legacy12-Debuginfo-Updates","description":"SLE-Module-Legacy12-Debuginfo-Updates for sle-12-x86_64"},{"enabled":true,"id":1678,"distro_target":"sle-12-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/12/x86_64/product/","installer_updates":false,"name":"SLE-Module-Legacy12-Pool","description":"SLE-Module-Legacy12-Pool for sle-12-x86_64"},{"installer_updates":false,"name":"SLE-Module-Legacy12-Debuginfo-Pool","description":"SLE-Module-Legacy12-Debuginfo-Pool for sle-12-x86_64","enabled":false,"id":1679,"distro_target":"sle-12-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/12/x86_64/product_debug/"},{"description":"SLE-Module-Legacy12-Source-Pool for sle-12-x86_64","name":"SLE-Module-Legacy12-Source-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/12/x86_64/product_source/","enabled":false,"id":1989}],"cpe":"cpe:/o:suse:sle-module-legacy:12","product_type":"module","description":"

The Legacy Module helps you migrating applications from SUSE Linux Enterprise 10 and 11 and other systems to SUSE Linux Enterprise 12, by providing packages which are discontinued on SUSE Linux Enterprise Server, such as: sendmail, syslog-ng, IBM Java6, and a number of libraries (for example openssl-0.9.8).

Access to the Legacy Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself. Packages in the this module are usually supported for at most three years. Support for Sendmail and IBM Java 6 will end in September 2017 the latest.

","shortname":"Legacy-Module","free":true,"eula_url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/12/x86_64/product.license/","arch":"x86_64","friendly_version":"12","extensions":[],"id":1150,"release_stage":"released","identifier":"sle-module-legacy","recommended":false,"version":"12","name":"Legacy Module","offline_predecessor_ids":[],"friendly_name":"Legacy Module 12 x86_64","migration_extra":false,"release_type":null,"former_identifier":"sle-module-legacy"},{"eula_url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/12/x86_64/product.license/","arch":"x86_64","free":true,"description":"

The SUSE Linux Enterprise Web and Scripting Module delivers a comprehensive suite of scripting languages, frameworks, and related tools helping developers and systems administrators accelerate the creation of stable, modern web applications, using dynamic languages, such as PHP, Ruby on Rails, and Python.

Access to the Web and Scripting Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself: Package versions in the this module are usually supported for at most three years. We are planning to release more recent versions on a schedule of approximately 18 month; the exact dates may differ per package.

","shortname":"Web-and-Scripting-Module","product_type":"module","cpe":"cpe:/o:suse:sle-module-web-scripting:12","predecessor_ids":[],"repositories":[{"enabled":true,"id":1688,"distro_target":"sle-12-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/12/x86_64/update/","installer_updates":false,"name":"SLE-Module-Web-Scripting12-Updates","description":"SLE-Module-Web-Scripting12-Updates for sle-12-x86_64"},{"name":"SLE-Module-Web-Scripting12-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-Web-Scripting12-Debuginfo-Updates for sle-12-x86_64","enabled":false,"id":1689,"autorefresh":true,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/12/x86_64/update_debug/"},{"enabled":true,"id":1690,"autorefresh":false,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/12/x86_64/product/","name":"SLE-Module-Web-Scripting12-Pool","installer_updates":false,"description":"SLE-Module-Web-Scripting12-Pool for sle-12-x86_64"},{"name":"SLE-Module-Web-Scripting12-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-Web-Scripting12-Debuginfo-Pool for sle-12-x86_64","enabled":false,"id":1691,"autorefresh":false,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/12/x86_64/product_debug/"},{"name":"SLE-Module-Web-Scripting12-Source-Pool","installer_updates":false,"description":"SLE-Module-Web-Scripting12-Source-Pool for sle-12-x86_64","id":1992,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/12/x86_64/product_source/","autorefresh":false,"distro_target":"sle-12-x86_64"}],"online_predecessor_ids":[],"product_class":"MODULE","offline_predecessor_ids":[],"name":"Web and Scripting Module","release_type":null,"former_identifier":"sle-module-web-scripting","migration_extra":false,"friendly_name":"Web and Scripting Module 12 x86_64","recommended":false,"version":"12","extensions":[],"id":1153,"release_stage":"released","identifier":"sle-module-web-scripting","friendly_version":"12"},{"product_type":"module","cpe":"cpe:/o:suse:sle-module-adv-systems-management:12","repositories":[{"description":"SLE-Module-Adv-Systems-Management12-Updates for sle-12-x86_64","name":"SLE-Module-Adv-Systems-Management12-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Adv-Systems-Management/12/x86_64/update/","enabled":true,"id":1704},{"description":"SLE-Module-Adv-Systems-Management12-Debuginfo-Updates for sle-12-x86_64","installer_updates":false,"name":"SLE-Module-Adv-Systems-Management12-Debuginfo-Updates","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Adv-Systems-Management/12/x86_64/update_debug/","distro_target":"sle-12-x86_64","autorefresh":true,"id":1705,"enabled":false},{"description":"SLE-Module-Adv-Systems-Management12-Pool for sle-12-x86_64","name":"SLE-Module-Adv-Systems-Management12-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Adv-Systems-Management/12/x86_64/product/","autorefresh":false,"distro_target":"sle-12-x86_64","id":1706,"enabled":true},{"description":"SLE-Module-Adv-Systems-Management12-Debuginfo-Pool for sle-12-x86_64","name":"SLE-Module-Adv-Systems-Management12-Debuginfo-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Adv-Systems-Management/12/x86_64/product_debug/","autorefresh":false,"distro_target":"sle-12-x86_64","id":1707,"enabled":false},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Adv-Systems-Management/12/x86_64/product_source/","autorefresh":false,"distro_target":"sle-12-x86_64","id":1998,"enabled":false,"description":"SLE-Module-Adv-Systems-Management12-Source-Pool for sle-12-x86_64","name":"SLE-Module-Adv-Systems-Management12-Source-Pool","installer_updates":false}],"online_predecessor_ids":[],"product_class":"MODULE","predecessor_ids":[],"arch":"x86_64","eula_url":"","free":true,"shortname":"Adv-Sys-Mgmt-Module","description":"

This Module contains current versions of the popular configuration management frameworks Puppet and CFEngine as well as the new systems management toolbox called machinery.

The machinery tool will be frequently updated and is SUSE's upcoming systems management toolbox for inspecting and validating systems remotely, storing their system description and creating new systems to deploy them in datacenters and clouds.

","release_stage":"released","identifier":"sle-module-adv-systems-management","id":1212,"extensions":[],"friendly_version":"12","release_type":null,"former_identifier":"sle-module-adv-systems-management","migration_extra":false,"friendly_name":"Advanced Systems Management Module 12 x86_64","offline_predecessor_ids":[],"name":"Advanced Systems Management Module","version":"12","recommended":false},{"extensions":[],"release_stage":"released","id":1220,"identifier":"sle-module-public-cloud","friendly_version":"12","offline_predecessor_ids":[],"name":"Public Cloud Module","former_identifier":"sle-module-public-cloud","release_type":null,"migration_extra":false,"friendly_name":"Public Cloud Module 12 x86_64","recommended":false,"version":"12","product_type":"module","cpe":"cpe:/o:suse:sle-module-public-cloud:12","predecessor_ids":[],"repositories":[{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/12/x86_64/update/","autorefresh":true,"distro_target":"sle-12-x86_64","id":1700,"enabled":true,"description":"SLE-Module-Public-Cloud12-Updates for sle-12-x86_64","name":"SLE-Module-Public-Cloud12-Updates","installer_updates":false},{"enabled":false,"id":1701,"distro_target":"sle-12-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/12/x86_64/update_debug/","installer_updates":false,"name":"SLE-Module-Public-Cloud12-Debuginfo-Updates","description":"SLE-Module-Public-Cloud12-Debuginfo-Updates for sle-12-x86_64"},{"enabled":true,"id":1702,"distro_target":"sle-12-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/12/x86_64/product/","installer_updates":false,"name":"SLE-Module-Public-Cloud12-Pool","description":"SLE-Module-Public-Cloud12-Pool for sle-12-x86_64"},{"description":"SLE-Module-Public-Cloud12-Debuginfo-Pool for sle-12-x86_64","installer_updates":false,"name":"SLE-Module-Public-Cloud12-Debuginfo-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/12/x86_64/product_debug/","distro_target":"sle-12-x86_64","autorefresh":false,"id":1703,"enabled":false},{"description":"SLE-Module-Public-Cloud12-Source-Pool for sle-12-x86_64","installer_updates":false,"name":"SLE-Module-Public-Cloud12-Source-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/12/x86_64/product_source/","distro_target":"sle-12-x86_64","autorefresh":false,"id":1995,"enabled":false}],"online_predecessor_ids":[],"product_class":"MODULE","eula_url":"","arch":"x86_64","free":true,"description":"

The Public Cloud Module is a collection of tools that enables you to create and manage cloud images from the commandline on SUSE Linux Enterprise Server. When building your own images with KIWI or SUSE Studio, initialization code specific to the target cloud is included in that image.

Access to the Public Cloud Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself; please check the Release Notes for further details.

","shortname":"Public-Cloud-Module"},{"predecessor_ids":[],"online_predecessor_ids":[],"product_class":"MODULE","repositories":[{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/12/x86_64/update/","distro_target":"sle-12-x86_64","autorefresh":true,"id":1864,"enabled":true,"description":"SLE-Module-Containers12-Updates for sle-12-x86_64","installer_updates":false,"name":"SLE-Module-Containers12-Updates"},{"description":"SLE-Module-Containers12-Debuginfo-Updates for sle-12-x86_64","name":"SLE-Module-Containers12-Debuginfo-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/12/x86_64/update_debug/","enabled":false,"id":1865},{"description":"SLE-Module-Containers12-Pool for sle-12-x86_64","name":"SLE-Module-Containers12-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/12/x86_64/product/","autorefresh":false,"distro_target":"sle-12-x86_64","id":1866,"enabled":true},{"name":"SLE-Module-Containers12-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-Containers12-Debuginfo-Pool for sle-12-x86_64","id":1867,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/12/x86_64/product_debug/","autorefresh":false,"distro_target":"sle-12-x86_64"},{"enabled":false,"id":1957,"distro_target":"sle-12-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/12/x86_64/product_source/","installer_updates":false,"name":"SLE-Module-Containers12-Source-Pool","description":"SLE-Module-Containers12-Source-Pool for sle-12-x86_64"}],"product_type":"module","cpe":"cpe:/o:suse:sle-module-containers:12","free":true,"shortname":"Containers-Module","description":"

This Module contains several packages revolving around containers and related tools.

","eula_url":"","arch":"x86_64","friendly_version":"12","extensions":[],"id":1332,"release_stage":"released","identifier":"sle-module-containers","recommended":false,"version":"12","offline_predecessor_ids":[],"name":"Containers Module","release_type":null,"former_identifier":"sle-module-containers","migration_extra":false,"friendly_name":"Containers Module 12 x86_64"},{"eula_url":"","arch":"x86_64","description":"Via this Module you will have access to a more recent GCC and Toolchain in addition to the default compiler of SUSE Linux Enterprise. Access to the Toolchain Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself. Please check the Release Notes for further details.","shortname":"Toolchain-Module","free":true,"cpe":"cpe:/o:suse:sle-module-toolchain:12","product_type":"module","predecessor_ids":[],"online_predecessor_ids":[],"repositories":[{"distro_target":"sle-12-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Toolchain/12/x86_64/update/","enabled":true,"id":1903,"description":"SLE-Module-Toolchain12-Updates for sle-12-x86_64","installer_updates":false,"name":"SLE-Module-Toolchain12-Updates"},{"installer_updates":false,"name":"SLE-Module-Toolchain12-Debuginfo-Updates","description":"SLE-Module-Toolchain12-Debuginfo-Updates for sle-12-x86_64","id":1904,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Toolchain/12/x86_64/update_debug/","distro_target":"sle-12-x86_64","autorefresh":true},{"enabled":true,"id":1905,"distro_target":"sle-12-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Toolchain/12/x86_64/product/","installer_updates":false,"name":"SLE-Module-Toolchain12-Pool","description":"SLE-Module-Toolchain12-Pool for sle-12-x86_64"},{"enabled":false,"id":1906,"distro_target":"sle-12-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Toolchain/12/x86_64/product_debug/","installer_updates":false,"name":"SLE-Module-Toolchain12-Debuginfo-Pool","description":"SLE-Module-Toolchain12-Debuginfo-Pool for sle-12-x86_64"}],"product_class":"MODULE","name":"Toolchain Module","offline_predecessor_ids":[],"friendly_name":"Toolchain Module 12 x86_64","migration_extra":false,"release_type":null,"former_identifier":"sle-module-toolchain","recommended":false,"version":"12","extensions":[],"release_stage":"released","identifier":"sle-module-toolchain","id":1341,"friendly_version":"12"},{"free":false,"shortname":"SLEPOS12","description":"SUSE Linux Enterprise Point of Service Image Server","eula_url":"https://updates.suse.com/SUSE/Products/SLE-POS/12-SP2/x86_64/product.license/","arch":"x86_64","predecessor_ids":[],"product_class":"10040","online_predecessor_ids":[],"repositories":[{"description":"SLE-POS12-SP2-Updates for sle-12-x86_64","name":"SLE-POS12-SP2-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-POS/12-SP2/x86_64/update/","enabled":true,"id":2289},{"description":"SLE-POS12-SP2-Debuginfo-Updates for sle-12-x86_64","name":"SLE-POS12-SP2-Debuginfo-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-POS/12-SP2/x86_64/update_debug/","enabled":false,"id":2290},{"enabled":true,"id":2291,"autorefresh":false,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-POS/12-SP2/x86_64/product/","name":"SLE-POS12-SP2-Pool","installer_updates":false,"description":"SLE-POS12-SP2-Pool for sle-12-x86_64"},{"id":2292,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-POS/12-SP2/x86_64/product_debug/","distro_target":"sle-12-x86_64","autorefresh":false,"installer_updates":false,"name":"SLE-POS12-SP2-Debuginfo-Pool","description":"SLE-POS12-SP2-Debuginfo-Pool for sle-12-x86_64"},{"distro_target":"sle-12-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-POS/12-SP2/x86_64/product_source/","enabled":false,"id":2293,"description":"SLE-POS12-SP2-Source-Pool for sle-12-x86_64","installer_updates":false,"name":"SLE-POS12-SP2-Source-Pool"},{"description":"SLE-POS12-SP2-CLIENT-Updates for sle-12-x86_64","name":"SLE-POS12-SP2-CLIENT-Updates","installer_updates":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-POS/12-SP2-CLIENT/x86_64/update/","autorefresh":true,"distro_target":"sle-12-x86_64","id":3130,"enabled":true},{"enabled":false,"id":3131,"autorefresh":true,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-POS/12-SP2-CLIENT/x86_64/update_debug/","name":"SLE-POS12-SP2-CLIENT-Debuginfo-Updates","installer_updates":false,"description":"SLE-POS12-SP2-CLIENT-Debuginfo-Updates for sle-12-x86_64"}],"product_type":"extension","cpe":"cpe:/o:suse:sle-pos:12:sp2","recommended":false,"version":"12.2","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Point of Service Image Server","release_type":null,"former_identifier":"sle-pos","friendly_name":"SUSE Linux Enterprise Point of Service Image Server 12 SP2 x86_64","migration_extra":false,"friendly_version":"12 SP2","extensions":[],"release_stage":"released","id":1439,"identifier":"sle-pos"},{"free":true,"shortname":"HPC-Module","description":"The SUSE Linux Enterprise Server High Performance Computing (HPC) module delivers specific tools commonly used for high performance, numerically intensive workloads. SUSE packages these tools in the SLES HPC Module to provide greater flexibility to deliver new versions or new tools more rapidly than the standard SUSE Linux Enterprise lifecycle would permit. Packages in this module are general supported till a newer version of the package is released or the package is dropped from the module.","eula_url":"https://updates.suse.com/SUSE/Products/SLE-Module-HPC/12/x86_64/product.license/","arch":"x86_64","predecessor_ids":[],"online_predecessor_ids":[],"repositories":[{"description":"SLE-Module-HPC12-Updates for sle-12-x86_64","installer_updates":false,"name":"SLE-Module-HPC12-Updates","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-HPC/12/x86_64/update/","distro_target":"sle-12-x86_64","autorefresh":true,"id":2294,"enabled":true},{"description":"SLE-Module-HPC12-Debuginfo-Updates for sle-12-x86_64","name":"SLE-Module-HPC12-Debuginfo-Updates","installer_updates":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-HPC/12/x86_64/update_debug/","autorefresh":true,"distro_target":"sle-12-x86_64","id":2295,"enabled":false},{"id":2296,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-HPC/12/x86_64/product/","distro_target":"sle-12-x86_64","autorefresh":false,"installer_updates":false,"name":"SLE-Module-HPC12-Pool","description":"SLE-Module-HPC12-Pool for sle-12-x86_64"},{"installer_updates":false,"name":"SLE-Module-HPC12-Debuginfo-Pool","description":"SLE-Module-HPC12-Debuginfo-Pool for sle-12-x86_64","enabled":false,"id":2297,"distro_target":"sle-12-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-HPC/12/x86_64/product_debug/"},{"enabled":false,"id":2298,"autorefresh":false,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-HPC/12/x86_64/product_source/","name":"SLE-Module-HPC12-Source-Pool","installer_updates":false,"description":"SLE-Module-HPC12-Source-Pool for sle-12-x86_64"}],"product_class":"MODULE","product_type":"module","cpe":"cpe:/o:suse:sle-module-hpc:12","recommended":false,"version":"12","offline_predecessor_ids":[],"name":"HPC Module","release_type":null,"former_identifier":"sle-module-hpc","friendly_name":"HPC Module 12 x86_64","migration_extra":false,"friendly_version":"12","extensions":[],"release_stage":"released","identifier":"sle-module-hpc","id":1440},{"description":"

The SUSE Cloud Application Platform Tools Module is a collection of tools that enables you to interact with the SUSE Cloud Application Platform product itself, providing the commandline client for instance.

Access to the SUSE Cloud Application Platform Tools Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself; please check the Release Notes for further details.

","shortname":"SUSE-CAP-Tools-Module","free":true,"arch":"x86_64","eula_url":"","repositories":[{"enabled":true,"id":2912,"distro_target":"sle-12-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-CAP-Tools/12/x86_64/update/","installer_updates":false,"name":"SLE-Module-CAP-Tools-12-Updates","description":"SLE-Module-CAP-Tools-12-Updates for sle-12-x86_64"},{"enabled":false,"id":2913,"autorefresh":true,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-CAP-Tools/12/x86_64/update_debug/","name":"SLE-Module-CAP-Tools-12-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-CAP-Tools-12-Debuginfo-Updates for sle-12-x86_64"},{"description":"SLE-Module-CAP-Tools-12-Pool for sle-12-x86_64","installer_updates":false,"name":"SLE-Module-CAP-Tools-12-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-CAP-Tools/12/x86_64/product/","distro_target":"sle-12-x86_64","autorefresh":false,"id":2914,"enabled":true},{"name":"SLE-Module-CAP-Tools-12-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-CAP-Tools-12-Debuginfo-Pool for sle-12-x86_64","enabled":false,"id":2915,"autorefresh":false,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-CAP-Tools/12/x86_64/product_debug/"},{"description":"SLE-Module-CAP-Tools-12-Source-Pool for sle-12-x86_64","installer_updates":false,"name":"SLE-Module-CAP-Tools-12-Source-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-CAP-Tools/12/x86_64/product_source/","distro_target":"sle-12-x86_64","autorefresh":false,"id":2916,"enabled":false}],"online_predecessor_ids":[],"product_class":"MODULE","predecessor_ids":[],"cpe":"cpe:/o:suse:sle-module-cap-tools:12","product_type":"module","version":"12","recommended":false,"friendly_name":"SUSE Cloud Application Platform Tools Module 12 x86_64","migration_extra":false,"release_type":null,"former_identifier":"sle-module-cap-tools","name":"SUSE Cloud Application Platform Tools Module","offline_predecessor_ids":[],"friendly_version":"12","release_stage":"released","identifier":"sle-module-cap-tools","id":1678,"extensions":[]},{"free":false,"shortname":"SLEHA12-SP5","description":"SUSE Linux Enterprise High Availability Extension.","arch":"x86_64","eula_url":"https://updates.suse.com/SUSE/Products/SLE-HA/12-SP5/x86_64/product.license/","online_predecessor_ids":[1245,1324,1361,1432,1634],"product_class":"SLE-HAE-X86","repositories":[{"url":"https://updates.suse.com/SUSE/Updates/SLE-HA/12-SP5/x86_64/update/","distro_target":"sle-12-x86_64","autorefresh":true,"id":3687,"enabled":true,"description":"SLE-HA12-SP5-Updates for sle-12-x86_64","installer_updates":false,"name":"SLE-HA12-SP5-Updates"},{"enabled":false,"id":3689,"autorefresh":true,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-HA/12-SP5/x86_64/update_debug/","name":"SLE-HA12-SP5-Debuginfo-Updates","installer_updates":false,"description":"SLE-HA12-SP5-Debuginfo-Updates for sle-12-x86_64"},{"url":"https://updates.suse.com/SUSE/Products/SLE-HA/12-SP5/x86_64/product/","autorefresh":false,"distro_target":"sle-12-x86_64","id":3691,"enabled":true,"description":"SLE-HA12-SP5-Pool for sle-12-x86_64","name":"SLE-HA12-SP5-Pool","installer_updates":false},{"enabled":false,"id":3693,"autorefresh":false,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-HA/12-SP5/x86_64/product_debug/","name":"SLE-HA12-SP5-Debuginfo-Pool","installer_updates":false,"description":"SLE-HA12-SP5-Debuginfo-Pool for sle-12-x86_64"},{"description":"SLE-HA12-SP5-Source-Pool for sle-12-x86_64","installer_updates":false,"name":"SLE-HA12-SP5-Source-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-HA/12-SP5/x86_64/product_source/","distro_target":"sle-12-x86_64","autorefresh":false,"id":3695,"enabled":false}],"predecessor_ids":[1245,1324,1361,1432,1634],"product_type":"extension","cpe":"cpe:/o:suse:sle-ha:12:sp5","version":"12.5","recommended":false,"release_type":null,"former_identifier":"sle-hae","friendly_name":"SUSE Linux Enterprise High Availability Extension 12 SP5 x86_64","migration_extra":false,"offline_predecessor_ids":[958,961,967,971,1256],"name":"SUSE Linux Enterprise High Availability Extension","friendly_version":"12 SP5","release_stage":"released","identifier":"sle-ha","id":1884,"extensions":[{"offline_predecessor_ids":[1101,1107,1286],"name":"SUSE Linux Enterprise High Availability GEO Extension","former_identifier":"sle-hae-geo","release_type":null,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise High Availability GEO Extension 12 SP5 x86_64","recommended":false,"version":"12.5","extensions":[],"identifier":"sle-ha-geo","release_stage":"released","id":1886,"friendly_version":"12 SP5","eula_url":"https://updates.suse.com/SUSE/Products/SLE-HA-GEO/12-SP5/x86_64/product.license/","arch":"x86_64","free":false,"shortname":"SLEHAGEO12-SP5","description":"SUSE Linux Enterprise High Availability Geographical Cluster Extension","product_type":"extension","cpe":"cpe:/o:suse:sle-ha-geo:12:sp5","predecessor_ids":[1157,1337,1363,1435,1637],"online_predecessor_ids":[1157,1337,1363,1435,1637],"repositories":[{"autorefresh":true,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-HA-GEO/12-SP5/x86_64/update/","enabled":true,"id":3711,"description":"SLE-HA-GEO12-SP5-Updates for sle-12-x86_64","name":"SLE-HA-GEO12-SP5-Updates","installer_updates":false},{"installer_updates":false,"name":"SLE-HA-GEO12-SP5-Debuginfo-Updates","description":"SLE-HA-GEO12-SP5-Debuginfo-Updates for sle-12-x86_64","enabled":false,"id":3712,"distro_target":"sle-12-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-HA-GEO/12-SP5/x86_64/update_debug/"},{"description":"SLE-HA-GEO12-SP5-Pool for sle-12-x86_64","installer_updates":false,"name":"SLE-HA-GEO12-SP5-Pool","distro_target":"sle-12-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-HA-GEO/12-SP5/x86_64/product/","enabled":true,"id":3713},{"description":"SLE-HA-GEO12-SP5-Debuginfo-Pool for sle-12-x86_64","installer_updates":false,"name":"SLE-HA-GEO12-SP5-Debuginfo-Pool","distro_target":"sle-12-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-HA-GEO/12-SP5/x86_64/product_debug/","enabled":false,"id":3714},{"url":"https://updates.suse.com/SUSE/Products/SLE-HA-GEO/12-SP5/x86_64/product_source/","distro_target":"sle-12-x86_64","autorefresh":false,"id":3715,"enabled":false,"description":"SLE-HA-GEO12-SP5-Source-Pool for sle-12-x86_64","installer_updates":false,"name":"SLE-HA-GEO12-SP5-Source-Pool"}],"product_class":"SLE-HAE-GEO"}]},{"predecessor_ids":[1253,1536,1757],"product_class":"SLE-LP","online_predecessor_ids":[1253,1536,1757],"repositories":[{"url":"https://updates.suse.com/SUSE/Updates/SLE-Live-Patching/12-SP5/x86_64/update/","distro_target":"sle-12-x86_64","autorefresh":true,"id":3720,"enabled":true,"description":"SLE-Live-Patching12-SP5-Updates for sle-12-x86_64","installer_updates":false,"name":"SLE-Live-Patching12-SP5-Updates"},{"name":"SLE-Live-Patching12-SP5-Debuginfo-Updates","installer_updates":false,"description":"SLE-Live-Patching12-SP5-Debuginfo-Updates for sle-12-x86_64","enabled":false,"id":3721,"autorefresh":true,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Live-Patching/12-SP5/x86_64/update_debug/"},{"name":"SLE-Live-Patching12-SP5-Pool","installer_updates":false,"description":"SLE-Live-Patching12-SP5-Pool for sle-12-x86_64","enabled":true,"id":3722,"autorefresh":false,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Live-Patching/12-SP5/x86_64/product/"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Live-Patching/12-SP5/x86_64/product_debug/","distro_target":"sle-12-x86_64","autorefresh":false,"id":3723,"enabled":false,"description":"SLE-Live-Patching12-SP5-Debuginfo-Pool for sle-12-x86_64","installer_updates":false,"name":"SLE-Live-Patching12-SP5-Debuginfo-Pool"}],"cpe":"cpe:/o:suse:sle-live-patching:12:sp5","product_type":"extension","description":"

SUSE Linux Enterprise Live Patching provides packages to update critical kernel modules live in SUSE Linux Enterprise. With SUSE Linux Enterprise Live Patching, you can perform critical kernel patching without shutting down your system, reducing the need for planned downtime and increasing service availability.

","shortname":"Live-Patching","free":false,"eula_url":"https://updates.suse.com/SUSE/Products/SLE-Live-Patching/12-SP5/x86_64/product.license/","arch":"x86_64","friendly_version":"12 SP5","extensions":[],"release_stage":"released","identifier":"sle-live-patching","id":1888,"recommended":false,"version":"12.5","name":"SUSE Linux Enterprise Live Patching","offline_predecessor_ids":[],"friendly_name":"SUSE Linux Enterprise Live Patching 12 SP5 x86_64","migration_extra":false,"release_type":null,"former_identifier":"sle-live-patching"},{"version":"12.5","recommended":false,"friendly_name":"SUSE Linux Enterprise Software Development Kit 12 SP5 x86_64","migration_extra":false,"release_type":null,"former_identifier":"sle-sdk","name":"SUSE Linux Enterprise Software Development Kit","offline_predecessor_ids":[],"friendly_version":"12 SP5","release_stage":"released","id":1892,"identifier":"sle-sdk","extensions":[],"description":"

SUSE Linux Enterprise Software Development Kit is the Software Development Kit for the family of SUSE Linux Enterprise products. It is a free of charge extension for partners and customers working with SUSE Linux Enterprise Server and Desktop and derived products.

Packages on the SDK are delivered without L3 support; maintenance updates will be done for critical security and critical non-security issues, and where needed to remain in sync with packages delivered in the SUSE Linux Enterprise Server and Desktop products.

Packages to rebuild SUSE Linux Enterprise Server are not part of the SUSE Linux Enterprise Software Development Kit.

","shortname":"SDK12-SP5","free":true,"arch":"x86_64","eula_url":"https://updates.suse.com/SUSE/Products/SLE-SDK/12-SP5/x86_64/product.license/","product_class":"MODULE","online_predecessor_ids":[1223,1323,1366,1427,1630],"repositories":[{"description":"SLE-SDK12-SP5-Updates for sle-12-x86_64","name":"SLE-SDK12-SP5-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-SDK/12-SP5/x86_64/update/","enabled":true,"id":3739},{"description":"SLE-SDK12-SP5-Debuginfo-Updates for sle-12-x86_64","installer_updates":false,"name":"SLE-SDK12-SP5-Debuginfo-Updates","url":"https://updates.suse.com/SUSE/Updates/SLE-SDK/12-SP5/x86_64/update_debug/","distro_target":"sle-12-x86_64","autorefresh":true,"id":3740,"enabled":false},{"distro_target":"sle-12-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-SDK/12-SP5/x86_64/product/","enabled":true,"id":3741,"description":"SLE-SDK12-SP5-Pool for sle-12-x86_64","installer_updates":false,"name":"SLE-SDK12-SP5-Pool"},{"description":"SLE-SDK12-SP5-Debuginfo-Pool for sle-12-x86_64","installer_updates":false,"name":"SLE-SDK12-SP5-Debuginfo-Pool","distro_target":"sle-12-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-SDK/12-SP5/x86_64/product_debug/","enabled":false,"id":3742},{"description":"SLE-SDK12-SP5-Source-Pool for sle-12-x86_64","name":"SLE-SDK12-SP5-Source-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-SDK/12-SP5/x86_64/product_source/","enabled":false,"id":3743}],"predecessor_ids":[1223,1323,1366,1427,1630],"cpe":"cpe:/o:suse:sle-sdk:12:sp5","product_type":"extension"},{"extensions":[],"id":1893,"release_stage":"released","identifier":"sle-we","friendly_version":"12 SP5","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Workstation Extension","release_type":null,"former_identifier":"sle-we","migration_extra":false,"friendly_name":"SUSE Linux Enterprise Workstation Extension 12 SP5 x86_64","recommended":false,"version":"12.5","product_type":"extension","cpe":"cpe:/o:suse:sle-we:12:sp5","predecessor_ids":[1222,1338,1359,1431,1639],"product_class":"SLE-WE","online_predecessor_ids":[1222,1338,1359,1431,1639],"repositories":[{"installer_updates":false,"name":"SLE-12-SP5-GA-Desktop-nVidia-Driver","description":"SLE-12-SP5-GA-Desktop-nVidia-Driver","id":3661,"enabled":true,"url":"https://download.nvidia.com/suse/sle12sp5/","distro_target":null,"autorefresh":true},{"description":"SLE-WE12-SP5-Updates for sle-12-x86_64","installer_updates":false,"name":"SLE-WE12-SP5-Updates","distro_target":"sle-12-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-WE/12-SP5/x86_64/update/","enabled":true,"id":3744},{"url":"https://updates.suse.com/SUSE/Updates/SLE-WE/12-SP5/x86_64/update_debug/","distro_target":"sle-12-x86_64","autorefresh":true,"id":3745,"enabled":false,"description":"SLE-WE12-SP5-Debuginfo-Updates for sle-12-x86_64","installer_updates":false,"name":"SLE-WE12-SP5-Debuginfo-Updates"},{"enabled":true,"id":3746,"distro_target":"sle-12-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-WE/12-SP5/x86_64/product/","installer_updates":false,"name":"SLE-WE12-SP5-Pool","description":"SLE-WE12-SP5-Pool for sle-12-x86_64"},{"installer_updates":false,"name":"SLE-WE12-SP5-Debuginfo-Pool","description":"SLE-WE12-SP5-Debuginfo-Pool for sle-12-x86_64","enabled":false,"id":3747,"distro_target":"sle-12-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-WE/12-SP5/x86_64/product_debug/"},{"id":3748,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-WE/12-SP5/x86_64/product_source/","distro_target":"sle-12-x86_64","autorefresh":false,"installer_updates":false,"name":"SLE-WE12-SP5-Source-Pool","description":"SLE-WE12-SP5-Source-Pool for sle-12-x86_64"}],"eula_url":"https://updates.suse.com/SUSE/Products/SLE-WE/12-SP5/x86_64/product.license/","arch":"x86_64","free":false,"description":"SUSE Linux Enterprise Workstation Extension extends the functionality of SUSE Linux Enterprise Server with packages of SUSE Linux Enterprise Desktop, like additional desktop applications (office suite, email client, graphical editor ...) and libraries. It allows to combine both products to create a full featured Workstation.","shortname":"SLEWE12-SP5"},{"eula_url":"","arch":"x86_64","free":false,"description":"SUSE Linux Enterprise offers a comprehensive suite of products built on a single code base. The platform addresses business needs from the smallest thin-client devices to the world's most powerful high-performance computing and mainframe servers. SUSE Linux Enterprise offers common management tools and technology certifications across the platform, and each product is enterprise-class.","shortname":"SLES12-SP5 ESPOS","product_type":"extension","cpe":"cpe:/o:suse:sles-espos:12:sp5","predecessor_ids":[1814,1816,1818],"online_predecessor_ids":[1814,1816,1818],"repositories":[{"description":"SLES12-SP5-ESPOS-Updates for sle-12-x86_64","installer_updates":false,"name":"SLES12-SP5-ESPOS-Updates","url":"https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-SP5-ESPOS/x86_64/update/","distro_target":"sle-12-x86_64","autorefresh":true,"id":3754,"enabled":true},{"url":"https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-SP5-ESPOS/x86_64/update_debug/","distro_target":"sle-12-x86_64","autorefresh":true,"id":3755,"enabled":false,"description":"SLES12-SP5-ESPOS-Debuginfo-Updates for sle-12-x86_64","installer_updates":false,"name":"SLES12-SP5-ESPOS-Debuginfo-Updates"},{"name":"SLES12-SP5-ESPOS-Pool","installer_updates":false,"description":"SLES12-SP5-ESPOS-Pool for sle-12-x86_64","enabled":true,"id":3756,"autorefresh":false,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-SERVER/12-SP5-ESPOS/x86_64/product/"},{"id":3757,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-SERVER/12-SP5-ESPOS/x86_64/product_debug/","distro_target":"sle-12-x86_64","autorefresh":false,"installer_updates":false,"name":"SLES12-SP5-ESPOS-Debuginfo-Pool","description":"SLES12-SP5-ESPOS-Debuginfo-Pool for sle-12-x86_64"},{"distro_target":"sle-12-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-SERVER/12-SP5-ESPOS/x86_64/product_source/","enabled":false,"id":3758,"description":"SLES12-SP5-ESPOS-Source-Pool for sle-12-x86_64","installer_updates":false,"name":"SLES12-SP5-ESPOS-Source-Pool"}],"product_class":"SLE-ESPOS-X86-ALPHA","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Server ESPOS","former_identifier":"SLES-ESPOS","release_type":null,"friendly_name":"SUSE Linux Enterprise Server ESPOS 12 SP5 x86_64 (ALPHA)","migration_extra":false,"recommended":false,"version":"12.5","extensions":[],"id":1895,"release_stage":"alpha","identifier":"SLES-ESPOS","friendly_version":"12 SP5"},{"shortname":"SUSE-PackageHub-12-SP5","description":"SUSE Package Hub is a free of charge extension providing access to community maintained packages built to run on SUSE Linux Enterprise Server. Built from the same sources used in the openSUSE distributions, these quality packages provide additional software to what is found in the SUSE Linux Enterprise Server product. Packages from the Package Hub are delivered without L3 support from SUSE. General updates and fixes to the packages in SUSE Package Hub are provided by the openSUSE community based on their discretion though SUSE will monitor and ensure that any known critical security issues will be addressed. Packages in the Package Hub are approved by SUSE for use with SUSE Linux Enterprise Server 12 and to not interfere with the supportability of SUSE Linux Enterprise Server it's modules and extensions. For more information about SUSE Package Hub please visit https://packagehub.suse.com.","free":true,"arch":"x86_64","eula_url":"","online_predecessor_ids":[1473,1476,1479,1529,1813],"repositories":[{"installer_updates":false,"name":"SUSE-PackageHub-12-SP5-Standard-Pool","description":"SUSE-PackageHub-12-SP5-Standard-Pool for sle-12-x86_64","enabled":true,"id":3864,"distro_target":"sle-12-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Backports/SLE-12-SP5_x86_64/standard/"},{"enabled":false,"id":3865,"distro_target":"sle-12-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Backports/SLE-12-SP5_x86_64/standard_debug/","installer_updates":false,"name":"SUSE-PackageHub-12-SP5-Debuginfo","description":"SUSE-PackageHub-12-SP5-Debuginfo for sle-12-x86_64"},{"distro_target":"sle-12-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Backports/SLE-12-SP5_x86_64/product/","enabled":true,"id":3866,"description":"SUSE-PackageHub-12-SP5-Pool for sle-12-x86_64","installer_updates":false,"name":"SUSE-PackageHub-12-SP5-Pool"}],"product_class":"MODULE","predecessor_ids":[1473,1476,1479,1529,1813],"cpe":"cpe:/o:suse:packagehub:12:sp5","product_type":"extension","version":"12.5","recommended":false,"friendly_name":"SUSE Package Hub 12 SP5 x86_64","migration_extra":false,"former_identifier":"PackageHub","release_type":null,"name":"SUSE Package Hub","offline_predecessor_ids":[],"friendly_version":"12 SP5","identifier":"PackageHub","release_stage":"released","id":1915,"extensions":[]},{"friendly_version":"12 SP5","extensions":[],"release_stage":"released","identifier":"SLES-BCL","id":2000,"recommended":false,"version":"12.5","name":"SUSE Linux Enterprise Server BCL","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Server BCL 12 SP5 x86_64","release_type":null,"former_identifier":"SLES-BCL","predecessor_ids":[],"product_class":"BCL-X86","online_predecessor_ids":[],"repositories":[{"description":"SLES12-SP5-BCL-Updates for sle-12-x86_64","installer_updates":false,"name":"SLES12-SP5-BCL-Updates","distro_target":"sle-12-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-SP5-BCL/x86_64/update/","enabled":true,"id":4281},{"description":"SLES12-SP5-BCL-Debuginfo-Updates for sle-12-x86_64","name":"SLES12-SP5-BCL-Debuginfo-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-SP5-BCL/x86_64/update_debug/","enabled":false,"id":4282},{"installer_updates":false,"name":"SLES12-SP5-BCL-Pool","description":"SLES12-SP5-BCL-Pool for sle-12-x86_64","id":4283,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-SERVER/12-SP5-BCL/x86_64/product/","distro_target":"sle-12-x86_64","autorefresh":false},{"description":"SLES12-SP5-BCL-Debuginfo-Pool for sle-12-x86_64","name":"SLES12-SP5-BCL-Debuginfo-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-SERVER/12-SP5-BCL/x86_64/product_debug/","autorefresh":false,"distro_target":"sle-12-x86_64","id":4284,"enabled":false},{"description":"SLES12-SP5-BCL-Source-Pool for sle-12-x86_64","installer_updates":false,"name":"SLES12-SP5-BCL-Source-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-SERVER/12-SP5-BCL/x86_64/product_source/","distro_target":"sle-12-x86_64","autorefresh":false,"id":4285,"enabled":false}],"cpe":"cpe:/o:suse:sles-bcl:12:sp5","product_type":"extension","shortname":"SLES12-SP5 BCL","description":"SUSE Linux Enterprise offers a comprehensive suite of products built on a single code base. The platform addresses business needs from the smallest thin-client devices to the world's most powerful high-performance computing and mainframe servers. SUSE Linux Enterprise offers common management tools and technology certifications across the platform, and each product is enterprise-class.","free":false,"eula_url":"","arch":"x86_64"},{"product_type":"extension","cpe":"cpe:/o:suse:suse-linux-enterprise-rt:12:sp5","predecessor_ids":[1924],"online_predecessor_ids":[1924],"product_class":"SUSE_RT","repositories":[{"autorefresh":true,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-RT/12-SP5/x86_64/update/","enabled":true,"id":4307,"description":"SLE-RT12-SP5-Updates for sle-12-x86_64","name":"SLE-RT12-SP5-Updates","installer_updates":false},{"url":"https://updates.suse.com/SUSE/Updates/SLE-RT/12-SP5/x86_64/update_debug/","distro_target":"sle-12-x86_64","autorefresh":true,"id":4308,"enabled":false,"description":"SLE-RT12-SP5-Debuginfo-Updates for sle-12-x86_64","installer_updates":false,"name":"SLE-RT12-SP5-Debuginfo-Updates"},{"distro_target":"sle-12-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-RT/12-SP5/x86_64/product/","enabled":true,"id":4309,"description":"SLE-RT12-SP5-Pool for sle-12-x86_64","installer_updates":false,"name":"SLE-RT12-SP5-Pool"},{"installer_updates":false,"name":"SLE-RT12-SP5-Debuginfo-Pool","description":"SLE-RT12-SP5-Debuginfo-Pool for sle-12-x86_64","enabled":false,"id":4310,"distro_target":"sle-12-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-RT/12-SP5/x86_64/product_debug/"}],"eula_url":"https://updates.suse.com/SUSE/Products/SLE-RT/12-SP5/x86_64/product.license/","arch":"x86_64","free":false,"description":"SUSE Linux Enterprise Real Time 12 SP5.","shortname":"SLERT12 SP5","extensions":[],"release_stage":"released","identifier":"SUSE-Linux-Enterprise-RT","id":2006,"friendly_version":"12 SP5","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Real Time","release_type":null,"former_identifier":"SUSE-Linux-Enterprise-RT","friendly_name":"SUSE Linux Enterprise Real Time 12 SP5 x86_64","migration_extra":false,"recommended":false,"version":"12.5"}],"release_stage":"released","id":1873,"identifier":"SLE-HPC","friendly_version":"12 SP5"},{"eula_url":"https://updates.suse.com/SUSE/Products/SLE-SERVER/12-SP5/aarch64/product.license/","arch":"aarch64","free":false,"description":"SUSE Linux Enterprise offers a comprehensive suite of products built on a single code base. The platform addresses business needs from the smallest thin-client devices to the world's most powerful high-performance computing and mainframe servers. SUSE Linux Enterprise offers common management tools and technology certifications across the platform, and each product is enterprise-class.","shortname":"SLES12-SP5","product_type":"base","cpe":"cpe:/o:suse:sles:12:sp5","predecessor_ids":[1375,1424,1628],"online_predecessor_ids":[1375,1424,1628],"repositories":[{"description":"SLES12-SP5-Updates for sle-12-aarch64","installer_updates":false,"name":"SLES12-SP5-Updates","url":"https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-SP5/aarch64/update/","distro_target":"sle-12-aarch64","autorefresh":true,"id":3636,"enabled":true},{"url":"https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-SP5/aarch64/update_debug/","autorefresh":true,"distro_target":"sle-12-aarch64","id":3638,"enabled":false,"description":"SLES12-SP5-Debuginfo-Updates for sle-12-aarch64","name":"SLES12-SP5-Debuginfo-Updates","installer_updates":false},{"description":"SLES12-SP5-Installer-Updates for sle-12-aarch64","installer_updates":true,"name":"SLES12-SP5-Installer-Updates","url":"https://updates.suse.com/SUSE/Updates/SLE-SERVER-INSTALLER/12-SP5/aarch64/update/","distro_target":"sle-12-aarch64","autorefresh":true,"id":3639,"enabled":false},{"url":"https://updates.suse.com/SUSE/Products/SLE-SERVER/12-SP5/aarch64/product/","distro_target":"sle-12-aarch64","autorefresh":false,"id":3641,"enabled":true,"description":"SLES12-SP5-Pool for sle-12-aarch64","installer_updates":false,"name":"SLES12-SP5-Pool"},{"description":"SLES12-SP5-Debuginfo-Pool for sle-12-aarch64","installer_updates":false,"name":"SLES12-SP5-Debuginfo-Pool","distro_target":"sle-12-aarch64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-SERVER/12-SP5/aarch64/product_debug/","enabled":false,"id":3643},{"installer_updates":false,"name":"SLES12-SP5-Source-Pool","description":"SLES12-SP5-Source-Pool for sle-12-aarch64","enabled":false,"id":3645,"distro_target":"sle-12-aarch64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-SERVER/12-SP5/aarch64/product_source/"}],"product_class":"SLES-ARM64","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Server","release_type":null,"former_identifier":"SLES","friendly_name":"SUSE Linux Enterprise Server 12 SP5 aarch64","migration_extra":false,"recommended":false,"version":"12.5","extensions":[{"cpe":"cpe:/o:suse:sle-module-toolchain:12","product_type":"module","product_class":"MODULE","online_predecessor_ids":[],"repositories":[{"autorefresh":true,"distro_target":"sle-12-aarch64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Toolchain/12/aarch64/update/","enabled":true,"id":2086,"description":"SLE-Module-Toolchain12-Updates for sle-12-aarch64","name":"SLE-Module-Toolchain12-Updates","installer_updates":false},{"id":2087,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Toolchain/12/aarch64/update_debug/","distro_target":"sle-12-aarch64","autorefresh":true,"installer_updates":false,"name":"SLE-Module-Toolchain12-Debuginfo-Updates","description":"SLE-Module-Toolchain12-Debuginfo-Updates for sle-12-aarch64"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Toolchain/12/aarch64/product/","distro_target":"sle-12-aarch64","autorefresh":false,"id":2088,"enabled":true,"description":"SLE-Module-Toolchain12-Pool for sle-12-aarch64","installer_updates":false,"name":"SLE-Module-Toolchain12-Pool"},{"description":"SLE-Module-Toolchain12-Debuginfo-Pool for sle-12-aarch64","name":"SLE-Module-Toolchain12-Debuginfo-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-12-aarch64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Toolchain/12/aarch64/product_debug/","enabled":false,"id":2089}],"predecessor_ids":[],"arch":"aarch64","eula_url":"","description":"Via this Module you will have access to a more recent GCC and Toolchain in addition to the default compiler of SUSE Linux Enterprise. Access to the Toolchain Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself. Please check the Release Notes for further details.","shortname":"Toolchain-Module","free":true,"release_stage":"released","id":1376,"identifier":"sle-module-toolchain","extensions":[],"friendly_version":"12","friendly_name":"Toolchain Module 12 aarch64","migration_extra":false,"release_type":null,"former_identifier":"sle-module-toolchain","name":"Toolchain Module","offline_predecessor_ids":[],"version":"12","recommended":false},{"friendly_version":"12","release_stage":"released","id":1522,"identifier":"sle-module-hpc","extensions":[],"version":"12","recommended":false,"migration_extra":false,"friendly_name":"HPC Module 12 aarch64","former_identifier":"sle-module-hpc","release_type":null,"name":"HPC Module","offline_predecessor_ids":[],"online_predecessor_ids":[],"product_class":"MODULE","repositories":[{"installer_updates":false,"name":"SLE-Module-HPC12-Updates","description":"SLE-Module-HPC12-Updates for sle-12-aarch64","enabled":true,"id":2421,"distro_target":"sle-12-aarch64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-HPC/12/aarch64/update/"},{"installer_updates":false,"name":"SLE-Module-HPC12-Debuginfo-Updates","description":"SLE-Module-HPC12-Debuginfo-Updates for sle-12-aarch64","id":2422,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-HPC/12/aarch64/update_debug/","distro_target":"sle-12-aarch64","autorefresh":true},{"description":"SLE-Module-HPC12-Pool for sle-12-aarch64","name":"SLE-Module-HPC12-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-12-aarch64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-HPC/12/aarch64/product/","enabled":true,"id":2423},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-HPC/12/aarch64/product_debug/","distro_target":"sle-12-aarch64","autorefresh":false,"id":2424,"enabled":false,"description":"SLE-Module-HPC12-Debuginfo-Pool for sle-12-aarch64","installer_updates":false,"name":"SLE-Module-HPC12-Debuginfo-Pool"},{"id":2425,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-HPC/12/aarch64/product_source/","autorefresh":false,"distro_target":"sle-12-aarch64","name":"SLE-Module-HPC12-Source-Pool","installer_updates":false,"description":"SLE-Module-HPC12-Source-Pool for sle-12-aarch64"}],"predecessor_ids":[],"cpe":"cpe:/o:suse:sle-module-hpc:12","product_type":"module","description":"The SUSE Linux Enterprise Server High Performance Computing (HPC) module delivers specific tools commonly used for high performance, numerically intensive workloads. SUSE packages these tools in the SLES HPC Module to provide greater flexibility to deliver new versions or new tools more rapidly than the standard SUSE Linux Enterprise lifecycle would permit. Packages in this module are general supported till a newer version of the package is released or the package is dropped from the module.","shortname":"HPC-Module","free":true,"arch":"aarch64","eula_url":"https://updates.suse.com/SUSE/Products/SLE-Module-HPC/12/aarch64/product.license/"},{"friendly_version":"12","extensions":[],"identifier":"sle-module-public-cloud","release_stage":"released","id":1528,"recommended":false,"version":"12","name":"Public Cloud Module","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"Public Cloud Module 12 aarch64","former_identifier":"sle-module-public-cloud","release_type":null,"predecessor_ids":[],"online_predecessor_ids":[],"product_class":"MODULE","repositories":[{"description":"SLE-Module-Public-Cloud12-Updates for sle-12-aarch64","installer_updates":false,"name":"SLE-Module-Public-Cloud12-Updates","distro_target":"sle-12-aarch64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/12/aarch64/update/","enabled":true,"id":2157},{"description":"SLE-Module-Public-Cloud12-Debuginfo-Updates for sle-12-aarch64","installer_updates":false,"name":"SLE-Module-Public-Cloud12-Debuginfo-Updates","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/12/aarch64/update_debug/","distro_target":"sle-12-aarch64","autorefresh":true,"id":2158,"enabled":false},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/12/aarch64/product/","autorefresh":false,"distro_target":"sle-12-aarch64","id":2159,"enabled":true,"description":"SLE-Module-Public-Cloud12-Pool for sle-12-aarch64","name":"SLE-Module-Public-Cloud12-Pool","installer_updates":false},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/12/aarch64/product_debug/","autorefresh":false,"distro_target":"sle-12-aarch64","id":2160,"enabled":false,"description":"SLE-Module-Public-Cloud12-Debuginfo-Pool for sle-12-aarch64","name":"SLE-Module-Public-Cloud12-Debuginfo-Pool","installer_updates":false},{"name":"SLE-Module-Public-Cloud12-Source-Pool","installer_updates":false,"description":"SLE-Module-Public-Cloud12-Source-Pool for sle-12-aarch64","enabled":false,"id":2161,"autorefresh":false,"distro_target":"sle-12-aarch64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/12/aarch64/product_source/"}],"cpe":"cpe:/o:suse:sle-module-public-cloud:12","product_type":"module","shortname":"Public-Cloud-Module","description":"

The Public Cloud Module is a collection of tools that enables you to create and manage cloud images from the commandline on SUSE Linux Enterprise Server. When building your own images with KIWI or SUSE Studio, initialization code specific to the target cloud is included in that image.

Access to the Public Cloud Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself; please check the Release Notes for further details.

","free":true,"eula_url":"","arch":"aarch64"},{"repositories":[{"description":"SLE-Module-Web-Scripting12-Updates for sle-12-aarch64","installer_updates":false,"name":"SLE-Module-Web-Scripting12-Updates","distro_target":"sle-12-aarch64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/12/aarch64/update/","enabled":true,"id":2476},{"description":"SLE-Module-Web-Scripting12-Debuginfo-Updates for sle-12-aarch64","installer_updates":false,"name":"SLE-Module-Web-Scripting12-Debuginfo-Updates","distro_target":"sle-12-aarch64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/12/aarch64/update_debug/","enabled":false,"id":2477},{"enabled":true,"id":2478,"distro_target":"sle-12-aarch64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/12/aarch64/product/","installer_updates":false,"name":"SLE-Module-Web-Scripting12-Pool","description":"SLE-Module-Web-Scripting12-Pool for sle-12-aarch64"},{"description":"SLE-Module-Web-Scripting12-Debuginfo-Pool for sle-12-aarch64","installer_updates":false,"name":"SLE-Module-Web-Scripting12-Debuginfo-Pool","distro_target":"sle-12-aarch64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/12/aarch64/product_debug/","enabled":false,"id":2479},{"description":"SLE-Module-Web-Scripting12-Source-Pool for sle-12-aarch64","name":"SLE-Module-Web-Scripting12-Source-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-12-aarch64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/12/aarch64/product_source/","enabled":false,"id":2480}],"online_predecessor_ids":[],"product_class":"MODULE","predecessor_ids":[],"cpe":"cpe:/o:suse:sle-module-web-scripting:12","product_type":"module","shortname":"Web-and-Scripting-Module","description":"

The SUSE Linux Enterprise Web and Scripting Module delivers a comprehensive suite of scripting languages, frameworks, and related tools helping developers and systems administrators accelerate the creation of stable, modern web applications, using dynamic languages, such as PHP, Ruby on Rails, and Python.

Access to the Web and Scripting Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself: Package versions in the this module are usually supported for at most three years. We are planning to release more recent versions on a schedule of approximately 18 month; the exact dates may differ per package.

","free":true,"arch":"aarch64","eula_url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/12/aarch64/product.license/","friendly_version":"12","identifier":"sle-module-web-scripting","release_stage":"released","id":1539,"extensions":[],"version":"12","recommended":false,"migration_extra":false,"friendly_name":"Web and Scripting Module 12 aarch64","former_identifier":"sle-module-web-scripting","release_type":null,"name":"Web and Scripting Module","offline_predecessor_ids":[]},{"version":"12.5","recommended":false,"former_identifier":"sle-sdk","release_type":null,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Software Development Kit 12 SP5 aarch64","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Software Development Kit","friendly_version":"12 SP5","id":1889,"release_stage":"released","identifier":"sle-sdk","extensions":[],"free":true,"shortname":"SDK12-SP5","description":"

SUSE Linux Enterprise Software Development Kit is the Software Development Kit for the family of SUSE Linux Enterprise products. It is a free of charge extension for partners and customers working with SUSE Linux Enterprise Server and Desktop and derived products.

Packages on the SDK are delivered without L3 support; maintenance updates will be done for critical security and critical non-security issues, and where needed to remain in sync with packages delivered in the SUSE Linux Enterprise Server and Desktop products.

Packages to rebuild SUSE Linux Enterprise Server are not part of the SUSE Linux Enterprise Software Development Kit.

","arch":"aarch64","eula_url":"https://updates.suse.com/SUSE/Products/SLE-SDK/12-SP5/aarch64/product.license/","online_predecessor_ids":[1378,1430,1633],"repositories":[{"url":"https://updates.suse.com/SUSE/Updates/SLE-SDK/12-SP5/aarch64/update/","distro_target":"sle-12-aarch64","autorefresh":true,"id":3724,"enabled":true,"description":"SLE-SDK12-SP5-Updates for sle-12-aarch64","installer_updates":false,"name":"SLE-SDK12-SP5-Updates"},{"name":"SLE-SDK12-SP5-Debuginfo-Updates","installer_updates":false,"description":"SLE-SDK12-SP5-Debuginfo-Updates for sle-12-aarch64","id":3725,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-SDK/12-SP5/aarch64/update_debug/","autorefresh":true,"distro_target":"sle-12-aarch64"},{"id":3726,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-SDK/12-SP5/aarch64/product/","autorefresh":false,"distro_target":"sle-12-aarch64","name":"SLE-SDK12-SP5-Pool","installer_updates":false,"description":"SLE-SDK12-SP5-Pool for sle-12-aarch64"},{"name":"SLE-SDK12-SP5-Debuginfo-Pool","installer_updates":false,"description":"SLE-SDK12-SP5-Debuginfo-Pool for sle-12-aarch64","enabled":false,"id":3727,"autorefresh":false,"distro_target":"sle-12-aarch64","url":"https://updates.suse.com/SUSE/Products/SLE-SDK/12-SP5/aarch64/product_debug/"},{"enabled":false,"id":3728,"autorefresh":false,"distro_target":"sle-12-aarch64","url":"https://updates.suse.com/SUSE/Products/SLE-SDK/12-SP5/aarch64/product_source/","name":"SLE-SDK12-SP5-Source-Pool","installer_updates":false,"description":"SLE-SDK12-SP5-Source-Pool for sle-12-aarch64"}],"product_class":"MODULE","predecessor_ids":[1378,1430,1633],"product_type":"extension","cpe":"cpe:/o:suse:sle-sdk:12:sp5"},{"friendly_version":"12 SP5","extensions":[],"identifier":"PackageHub","release_stage":"released","id":1912,"recommended":false,"version":"12.5","name":"SUSE Package Hub","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"SUSE Package Hub 12 SP5 aarch64","former_identifier":"PackageHub","release_type":null,"predecessor_ids":[1482,1532,1810],"repositories":[{"description":"SUSE-PackageHub-12-SP5-Standard-Pool for sle-12-aarch64","installer_updates":false,"name":"SUSE-PackageHub-12-SP5-Standard-Pool","url":"https://updates.suse.com/SUSE/Backports/SLE-12-SP5_aarch64/standard/","distro_target":"sle-12-aarch64","autorefresh":false,"id":3855,"enabled":true},{"description":"SUSE-PackageHub-12-SP5-Debuginfo for sle-12-aarch64","name":"SUSE-PackageHub-12-SP5-Debuginfo","installer_updates":false,"url":"https://updates.suse.com/SUSE/Backports/SLE-12-SP5_aarch64/standard_debug/","autorefresh":true,"distro_target":"sle-12-aarch64","id":3856,"enabled":false},{"autorefresh":false,"distro_target":"sle-12-aarch64","url":"https://updates.suse.com/SUSE/Backports/SLE-12-SP5_aarch64/product/","enabled":true,"id":3857,"description":"SUSE-PackageHub-12-SP5-Pool for sle-12-aarch64","name":"SUSE-PackageHub-12-SP5-Pool","installer_updates":false}],"online_predecessor_ids":[1482,1532,1810],"product_class":"MODULE","cpe":"cpe:/o:suse:packagehub:12:sp5","product_type":"extension","description":"SUSE Package Hub is a free of charge extension providing access to community maintained packages built to run on SUSE Linux Enterprise Server. Built from the same sources used in the openSUSE distributions, these quality packages provide additional software to what is found in the SUSE Linux Enterprise Server product. Packages from the Package Hub are delivered without L3 support from SUSE. General updates and fixes to the packages in SUSE Package Hub are provided by the openSUSE community based on their discretion though SUSE will monitor and ensure that any known critical security issues will be addressed. Packages in the Package Hub are approved by SUSE for use with SUSE Linux Enterprise Server 12 and to not interfere with the supportability of SUSE Linux Enterprise Server it's modules and extensions. For more information about SUSE Package Hub please visit https://packagehub.suse.com.","shortname":"SUSE-PackageHub-12-SP5","free":true,"eula_url":"","arch":"aarch64"}],"release_stage":"released","identifier":"SLES","id":1875,"friendly_version":"12 SP5"},{"friendly_version":"12 SP5","identifier":"SLES","release_stage":"released","id":1876,"extensions":[{"predecessor_ids":[],"repositories":[{"autorefresh":true,"distro_target":"sle-12-ppc64le","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/12/ppc64le/update/","enabled":true,"id":1668,"description":"SLE-Module-Legacy12-Updates for sle-12-ppc64le","name":"SLE-Module-Legacy12-Updates","installer_updates":false},{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/12/ppc64le/update_debug/","distro_target":"sle-12-ppc64le","autorefresh":true,"id":1669,"enabled":false,"description":"SLE-Module-Legacy12-Debuginfo-Updates for sle-12-ppc64le","installer_updates":false,"name":"SLE-Module-Legacy12-Debuginfo-Updates"},{"distro_target":"sle-12-ppc64le","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/12/ppc64le/product/","enabled":true,"id":1670,"description":"SLE-Module-Legacy12-Pool for sle-12-ppc64le","installer_updates":false,"name":"SLE-Module-Legacy12-Pool"},{"autorefresh":false,"distro_target":"sle-12-ppc64le","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/12/ppc64le/product_debug/","enabled":false,"id":1671,"description":"SLE-Module-Legacy12-Debuginfo-Pool for sle-12-ppc64le","name":"SLE-Module-Legacy12-Debuginfo-Pool","installer_updates":false},{"distro_target":"sle-12-ppc64le","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/12/ppc64le/product_source/","enabled":false,"id":1987,"description":"SLE-Module-Legacy12-Source-Pool for sle-12-ppc64le","installer_updates":false,"name":"SLE-Module-Legacy12-Source-Pool"}],"online_predecessor_ids":[],"product_class":"MODULE","cpe":"cpe:/o:suse:sle-module-legacy:12","product_type":"module","description":"

The Legacy Module helps you migrating applications from SUSE Linux Enterprise 10 and 11 and other systems to SUSE Linux Enterprise 12, by providing packages which are discontinued on SUSE Linux Enterprise Server, such as: sendmail, syslog-ng, IBM Java6, and a number of libraries (for example openssl-0.9.8).

Access to the Legacy Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself. Packages in the this module are usually supported for at most three years. Support for Sendmail and IBM Java 6 will end in September 2017 the latest.

","shortname":"Legacy-Module","free":true,"eula_url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/12/ppc64le/product.license/","arch":"ppc64le","friendly_version":"12","extensions":[],"id":1148,"release_stage":"released","identifier":"sle-module-legacy","recommended":false,"version":"12","name":"Legacy Module","offline_predecessor_ids":[],"friendly_name":"Legacy Module 12 ppc64le","migration_extra":false,"former_identifier":"sle-module-legacy","release_type":null},{"eula_url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/12/ppc64le/product.license/","arch":"ppc64le","free":true,"shortname":"Web-and-Scripting-Module","description":"

The SUSE Linux Enterprise Web and Scripting Module delivers a comprehensive suite of scripting languages, frameworks, and related tools helping developers and systems administrators accelerate the creation of stable, modern web applications, using dynamic languages, such as PHP, Ruby on Rails, and Python.

Access to the Web and Scripting Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself: Package versions in the this module are usually supported for at most three years. We are planning to release more recent versions on a schedule of approximately 18 month; the exact dates may differ per package.

","product_type":"module","cpe":"cpe:/o:suse:sle-module-web-scripting:12","predecessor_ids":[],"online_predecessor_ids":[],"repositories":[{"description":"SLE-Module-Web-Scripting12-Updates for sle-12-ppc64le","name":"SLE-Module-Web-Scripting12-Updates","installer_updates":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/12/ppc64le/update/","autorefresh":true,"distro_target":"sle-12-ppc64le","id":1680,"enabled":true},{"installer_updates":false,"name":"SLE-Module-Web-Scripting12-Debuginfo-Updates","description":"SLE-Module-Web-Scripting12-Debuginfo-Updates for sle-12-ppc64le","enabled":false,"id":1681,"distro_target":"sle-12-ppc64le","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/12/ppc64le/update_debug/"},{"description":"SLE-Module-Web-Scripting12-Pool for sle-12-ppc64le","installer_updates":false,"name":"SLE-Module-Web-Scripting12-Pool","distro_target":"sle-12-ppc64le","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/12/ppc64le/product/","enabled":true,"id":1682},{"id":1683,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/12/ppc64le/product_debug/","distro_target":"sle-12-ppc64le","autorefresh":false,"installer_updates":false,"name":"SLE-Module-Web-Scripting12-Debuginfo-Pool","description":"SLE-Module-Web-Scripting12-Debuginfo-Pool for sle-12-ppc64le"},{"installer_updates":false,"name":"SLE-Module-Web-Scripting12-Source-Pool","description":"SLE-Module-Web-Scripting12-Source-Pool for sle-12-ppc64le","id":1990,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/12/ppc64le/product_source/","distro_target":"sle-12-ppc64le","autorefresh":false}],"product_class":"MODULE","offline_predecessor_ids":[],"name":"Web and Scripting Module","former_identifier":"sle-module-web-scripting","release_type":null,"friendly_name":"Web and Scripting Module 12 ppc64le","migration_extra":false,"recommended":false,"version":"12","extensions":[],"identifier":"sle-module-web-scripting","release_stage":"released","id":1151,"friendly_version":"12"},{"extensions":[],"release_stage":"released","id":1218,"identifier":"sle-module-public-cloud","friendly_version":"12","name":"Public Cloud Module","offline_predecessor_ids":[],"friendly_name":"Public Cloud Module 12 ppc64le","migration_extra":false,"release_type":null,"former_identifier":"sle-module-public-cloud","recommended":false,"version":"12","cpe":"cpe:/o:suse:sle-module-public-cloud:12","product_type":"module","predecessor_ids":[],"product_class":"MODULE","online_predecessor_ids":[],"repositories":[{"name":"SLE-Module-Public-Cloud12-Updates","installer_updates":false,"description":"SLE-Module-Public-Cloud12-Updates for sle-12-ppc64le","enabled":true,"id":1692,"autorefresh":true,"distro_target":"sle-12-ppc64le","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/12/ppc64le/update/"},{"description":"SLE-Module-Public-Cloud12-Debuginfo-Updates for sle-12-ppc64le","name":"SLE-Module-Public-Cloud12-Debuginfo-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-12-ppc64le","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/12/ppc64le/update_debug/","enabled":false,"id":1693},{"installer_updates":false,"name":"SLE-Module-Public-Cloud12-Pool","description":"SLE-Module-Public-Cloud12-Pool for sle-12-ppc64le","id":1694,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/12/ppc64le/product/","distro_target":"sle-12-ppc64le","autorefresh":false},{"distro_target":"sle-12-ppc64le","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/12/ppc64le/product_debug/","enabled":false,"id":1695,"description":"SLE-Module-Public-Cloud12-Debuginfo-Pool for sle-12-ppc64le","installer_updates":false,"name":"SLE-Module-Public-Cloud12-Debuginfo-Pool"},{"installer_updates":false,"name":"SLE-Module-Public-Cloud12-Source-Pool","description":"SLE-Module-Public-Cloud12-Source-Pool for sle-12-ppc64le","id":1993,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/12/ppc64le/product_source/","distro_target":"sle-12-ppc64le","autorefresh":false}],"eula_url":"","arch":"ppc64le","shortname":"Public-Cloud-Module","description":"

The Public Cloud Module is a collection of tools that enables you to create and manage cloud images from the commandline on SUSE Linux Enterprise Server. When building your own images with KIWI or SUSE Studio, initialization code specific to the target cloud is included in that image.

Access to the Public Cloud Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself; please check the Release Notes for further details.

","free":true},{"version":"12","recommended":false,"friendly_name":"IBM DLPAR SDK for SLE 12 ppc64le","migration_extra":false,"former_identifier":"ibm-dlpar-sdk","release_type":null,"name":"IBM DLPAR SDK for SLE","offline_predecessor_ids":[],"friendly_version":"12","id":1249,"release_stage":"released","identifier":"ibm-dlpar-sdk","extensions":[],"shortname":"IBMDLPS12","description":"IBM DLPAR SDK for SLE 12","free":true,"arch":"ppc64le","eula_url":"","online_predecessor_ids":[],"product_class":"SLES-PPC","repositories":[{"name":"IBM-DLPAR-SDK","installer_updates":false,"description":"IBM-DLPAR-SDK","id":4429,"enabled":true,"url":"https://public.dhe.ibm.com/software/server/POWER/Linux/toolchain/at/suse/SLES_12/","autorefresh":true,"distro_target":null}],"predecessor_ids":[],"cpe":"cpe:/o:suse:ibm-dlpar-sdk:12","product_type":"extension"},{"free":true,"shortname":"IBMDLPU12","description":"IBM DLPAR Utils for SLE 12","eula_url":"https://public.dhe.ibm.com/software/server/POWER/Linux/yum/OSS/SLES/12/ppc64le.license/","arch":"ppc64le","predecessor_ids":[],"repositories":[{"url":"https://public.dhe.ibm.com/software/server/POWER/Linux/yum/OSS/SLES/12/ppc64le/","distro_target":null,"autorefresh":true,"id":6216,"enabled":true,"description":"IBM-DLPAR-utils","installer_updates":false,"name":"IBM-DLPAR-utils"}],"online_predecessor_ids":[],"product_class":"SLES-PPC","product_type":"extension","cpe":"cpe:/o:suse:ibm-dlpar-utils:12","recommended":false,"version":"12","offline_predecessor_ids":[],"name":"IBM DLPAR Utils for SLE","former_identifier":"ibm-dlpar-utils","release_type":null,"friendly_name":"IBM DLPAR Utils for SLE 12 ppc64le","migration_extra":false,"friendly_version":"12","extensions":[],"id":1250,"release_stage":"released","identifier":"ibm-dlpar-utils"},{"cpe":"cpe:/o:suse:sle-module-adv-systems-management:12","product_type":"module","predecessor_ids":[],"online_predecessor_ids":[],"product_class":"MODULE","repositories":[{"description":"SLE-Module-Adv-Systems-Management12-Updates for sle-12-ppc64le","name":"SLE-Module-Adv-Systems-Management12-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-12-ppc64le","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Adv-Systems-Management/12/ppc64le/update/","enabled":true,"id":1762},{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Adv-Systems-Management/12/ppc64le/update_debug/","distro_target":"sle-12-ppc64le","autorefresh":true,"id":1763,"enabled":false,"description":"SLE-Module-Adv-Systems-Management12-Debuginfo-Updates for sle-12-ppc64le","installer_updates":false,"name":"SLE-Module-Adv-Systems-Management12-Debuginfo-Updates"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Adv-Systems-Management/12/ppc64le/product/","autorefresh":false,"distro_target":"sle-12-ppc64le","id":1764,"enabled":true,"description":"SLE-Module-Adv-Systems-Management12-Pool for sle-12-ppc64le","name":"SLE-Module-Adv-Systems-Management12-Pool","installer_updates":false},{"name":"SLE-Module-Adv-Systems-Management12-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-Adv-Systems-Management12-Debuginfo-Pool for sle-12-ppc64le","enabled":false,"id":1765,"autorefresh":false,"distro_target":"sle-12-ppc64le","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Adv-Systems-Management/12/ppc64le/product_debug/"},{"description":"SLE-Module-Adv-Systems-Management12-Source-Pool for sle-12-ppc64le","name":"SLE-Module-Adv-Systems-Management12-Source-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Adv-Systems-Management/12/ppc64le/product_source/","autorefresh":false,"distro_target":"sle-12-ppc64le","id":1996,"enabled":false}],"eula_url":"","arch":"ppc64le","description":"

This Module contains current versions of the popular configuration management frameworks Puppet and CFEngine as well as the new systems management toolbox called machinery.

The machinery tool will be frequently updated and is SUSE's upcoming systems management toolbox for inspecting and validating systems remotely, storing their system description and creating new systems to deploy them in datacenters and clouds.

","shortname":"Adv-Sys-Mgmt-Module","free":true,"extensions":[],"identifier":"sle-module-adv-systems-management","release_stage":"released","id":1294,"friendly_version":"12","name":"Advanced Systems Management Module","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"Advanced Systems Management Module 12 ppc64le","release_type":null,"former_identifier":"sle-module-adv-systems-management","recommended":false,"version":"12"},{"friendly_version":"12","extensions":[],"identifier":"sle-module-toolchain","release_stage":"released","id":1339,"recommended":false,"version":"12","offline_predecessor_ids":[],"name":"Toolchain Module","former_identifier":"sle-module-toolchain","release_type":null,"migration_extra":false,"friendly_name":"Toolchain Module 12 ppc64le","predecessor_ids":[],"online_predecessor_ids":[],"product_class":"MODULE","repositories":[{"description":"SLE-Module-Toolchain12-Updates for sle-12-ppc64le","installer_updates":false,"name":"SLE-Module-Toolchain12-Updates","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Toolchain/12/ppc64le/update/","distro_target":"sle-12-ppc64le","autorefresh":true,"id":1895,"enabled":true},{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Toolchain/12/ppc64le/update_debug/","autorefresh":true,"distro_target":"sle-12-ppc64le","id":1896,"enabled":false,"description":"SLE-Module-Toolchain12-Debuginfo-Updates for sle-12-ppc64le","name":"SLE-Module-Toolchain12-Debuginfo-Updates","installer_updates":false},{"installer_updates":false,"name":"SLE-Module-Toolchain12-Pool","description":"SLE-Module-Toolchain12-Pool for sle-12-ppc64le","id":1897,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Toolchain/12/ppc64le/product/","distro_target":"sle-12-ppc64le","autorefresh":false},{"description":"SLE-Module-Toolchain12-Debuginfo-Pool for sle-12-ppc64le","installer_updates":false,"name":"SLE-Module-Toolchain12-Debuginfo-Pool","distro_target":"sle-12-ppc64le","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Toolchain/12/ppc64le/product_debug/","enabled":false,"id":1898}],"product_type":"module","cpe":"cpe:/o:suse:sle-module-toolchain:12","free":true,"description":"Via this Module you will have access to a more recent GCC and Toolchain in addition to the default compiler of SUSE Linux Enterprise. Access to the Toolchain Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself. Please check the Release Notes for further details.","shortname":"Toolchain-Module","eula_url":"","arch":"ppc64le"},{"online_predecessor_ids":[],"repositories":[{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/12/ppc64le/update/","distro_target":"sle-12-ppc64le","autorefresh":true,"id":1972,"enabled":true,"description":"SLE-Module-Containers12-Updates for sle-12-ppc64le","installer_updates":false,"name":"SLE-Module-Containers12-Updates"},{"installer_updates":false,"name":"SLE-Module-Containers12-Debuginfo-Updates","description":"SLE-Module-Containers12-Debuginfo-Updates for sle-12-ppc64le","id":1973,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/12/ppc64le/update_debug/","distro_target":"sle-12-ppc64le","autorefresh":true},{"id":1974,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/12/ppc64le/product/","autorefresh":false,"distro_target":"sle-12-ppc64le","name":"SLE-Module-Containers12-Pool","installer_updates":false,"description":"SLE-Module-Containers12-Pool for sle-12-ppc64le"},{"description":"SLE-Module-Containers12-Debuginfo-Pool for sle-12-ppc64le","installer_updates":false,"name":"SLE-Module-Containers12-Debuginfo-Pool","distro_target":"sle-12-ppc64le","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/12/ppc64le/product_debug/","enabled":false,"id":1975},{"enabled":false,"id":1976,"distro_target":"sle-12-ppc64le","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/12/ppc64le/product_source/","installer_updates":false,"name":"SLE-Module-Containers12-Source-Pool","description":"SLE-Module-Containers12-Source-Pool for sle-12-ppc64le"}],"product_class":"MODULE","predecessor_ids":[],"cpe":"cpe:/o:suse:sle-module-containers:12","product_type":"module","description":"

This Module contains several packages revolving around containers and related tools.

","shortname":"Containers-Module","free":true,"arch":"ppc64le","eula_url":"","friendly_version":"12","release_stage":"released","id":1353,"identifier":"sle-module-containers","extensions":[],"version":"12","recommended":false,"friendly_name":"Containers Module 12 ppc64le","migration_extra":false,"release_type":null,"former_identifier":"sle-module-containers","name":"Containers Module","offline_predecessor_ids":[]},{"product_type":"extension","cpe":"cpe:/o:suse:sle-ha:12:sp5","predecessor_ids":[1420,1433,1635],"product_class":"SLE-HAE-PPC","online_predecessor_ids":[1420,1433,1635],"repositories":[{"url":"https://updates.suse.com/SUSE/Updates/SLE-HA/12-SP5/ppc64le/update/","autorefresh":true,"distro_target":"sle-12-ppc64le","id":3677,"enabled":true,"description":"SLE-HA12-SP5-Updates for sle-12-ppc64le","name":"SLE-HA12-SP5-Updates","installer_updates":false},{"autorefresh":true,"distro_target":"sle-12-ppc64le","url":"https://updates.suse.com/SUSE/Updates/SLE-HA/12-SP5/ppc64le/update_debug/","enabled":false,"id":3679,"description":"SLE-HA12-SP5-Debuginfo-Updates for sle-12-ppc64le","name":"SLE-HA12-SP5-Debuginfo-Updates","installer_updates":false},{"description":"SLE-HA12-SP5-Pool for sle-12-ppc64le","name":"SLE-HA12-SP5-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-12-ppc64le","url":"https://updates.suse.com/SUSE/Products/SLE-HA/12-SP5/ppc64le/product/","enabled":true,"id":3681},{"description":"SLE-HA12-SP5-Debuginfo-Pool for sle-12-ppc64le","installer_updates":false,"name":"SLE-HA12-SP5-Debuginfo-Pool","distro_target":"sle-12-ppc64le","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-HA/12-SP5/ppc64le/product_debug/","enabled":false,"id":3683},{"description":"SLE-HA12-SP5-Source-Pool for sle-12-ppc64le","name":"SLE-HA12-SP5-Source-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-HA/12-SP5/ppc64le/product_source/","autorefresh":false,"distro_target":"sle-12-ppc64le","id":3685,"enabled":false}],"eula_url":"https://updates.suse.com/SUSE/Products/SLE-HA/12-SP5/ppc64le/product.license/","arch":"ppc64le","free":false,"description":"SUSE Linux Enterprise High Availability Extension.","shortname":"SLEHA12-SP5","extensions":[],"identifier":"sle-ha","release_stage":"released","id":1882,"friendly_version":"12 SP5","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise High Availability Extension","former_identifier":"sle-hae","release_type":null,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise High Availability Extension 12 SP5 ppc64le","recommended":false,"version":"12.5"},{"friendly_version":"12 SP5","release_stage":"released","identifier":"sle-live-patching","id":1887,"extensions":[],"version":"12.5","recommended":false,"release_type":null,"former_identifier":"sle-live-patching","friendly_name":"SUSE Linux Enterprise Live Patching 12 SP5 ppc64le","migration_extra":false,"offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Live Patching","online_predecessor_ids":[1537,1756,1860],"product_class":"SLE-LP-PPC","repositories":[{"id":3716,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Live-Patching/12-SP5/ppc64le/update/","autorefresh":true,"distro_target":"sle-12-ppc64le","name":"SLE-Live-Patching12-SP5-Updates","installer_updates":false,"description":"SLE-Live-Patching12-SP5-Updates for sle-12-ppc64le"},{"installer_updates":false,"name":"SLE-Live-Patching12-SP5-Debuginfo-Updates","description":"SLE-Live-Patching12-SP5-Debuginfo-Updates for sle-12-ppc64le","id":3717,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Live-Patching/12-SP5/ppc64le/update_debug/","distro_target":"sle-12-ppc64le","autorefresh":true},{"url":"https://updates.suse.com/SUSE/Products/SLE-Live-Patching/12-SP5/ppc64le/product/","autorefresh":false,"distro_target":"sle-12-ppc64le","id":3718,"enabled":true,"description":"SLE-Live-Patching12-SP5-Pool for sle-12-ppc64le","name":"SLE-Live-Patching12-SP5-Pool","installer_updates":false},{"url":"https://updates.suse.com/SUSE/Products/SLE-Live-Patching/12-SP5/ppc64le/product_debug/","distro_target":"sle-12-ppc64le","autorefresh":false,"id":3719,"enabled":false,"description":"SLE-Live-Patching12-SP5-Debuginfo-Pool for sle-12-ppc64le","installer_updates":false,"name":"SLE-Live-Patching12-SP5-Debuginfo-Pool"}],"predecessor_ids":[1537,1756,1860],"product_type":"extension","cpe":"cpe:/o:suse:sle-live-patching:12:sp5","free":false,"shortname":"Live-Patching","description":"

SUSE Linux Enterprise Live Patching provides packages to update critical kernel modules live in SUSE Linux Enterprise. With SUSE Linux Enterprise Live Patching, you can perform critical kernel patching without shutting down your system, reducing the need for planned downtime and increasing service availability.

","arch":"ppc64le","eula_url":"https://updates.suse.com/SUSE/Products/SLE-Live-Patching/12-SP5/ppc64le/product.license/"},{"extensions":[],"release_stage":"released","id":1890,"identifier":"sle-sdk","friendly_version":"12 SP5","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Software Development Kit","former_identifier":"sle-sdk","release_type":null,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Software Development Kit 12 SP5 ppc64le","recommended":false,"version":"12.5","product_type":"extension","cpe":"cpe:/o:suse:sle-sdk:12:sp5","predecessor_ids":[1145,1343,1364,1428,1631],"online_predecessor_ids":[1145,1343,1364,1428,1631],"repositories":[{"installer_updates":false,"name":"SLE-SDK12-SP5-Updates","description":"SLE-SDK12-SP5-Updates for sle-12-ppc64le","id":3729,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-SDK/12-SP5/ppc64le/update/","distro_target":"sle-12-ppc64le","autorefresh":true},{"description":"SLE-SDK12-SP5-Debuginfo-Updates for sle-12-ppc64le","installer_updates":false,"name":"SLE-SDK12-SP5-Debuginfo-Updates","distro_target":"sle-12-ppc64le","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-SDK/12-SP5/ppc64le/update_debug/","enabled":false,"id":3730},{"distro_target":"sle-12-ppc64le","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-SDK/12-SP5/ppc64le/product/","enabled":true,"id":3731,"description":"SLE-SDK12-SP5-Pool for sle-12-ppc64le","installer_updates":false,"name":"SLE-SDK12-SP5-Pool"},{"description":"SLE-SDK12-SP5-Debuginfo-Pool for sle-12-ppc64le","name":"SLE-SDK12-SP5-Debuginfo-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-12-ppc64le","url":"https://updates.suse.com/SUSE/Products/SLE-SDK/12-SP5/ppc64le/product_debug/","enabled":false,"id":3732},{"description":"SLE-SDK12-SP5-Source-Pool for sle-12-ppc64le","name":"SLE-SDK12-SP5-Source-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-12-ppc64le","url":"https://updates.suse.com/SUSE/Products/SLE-SDK/12-SP5/ppc64le/product_source/","enabled":false,"id":3733}],"product_class":"MODULE","eula_url":"https://updates.suse.com/SUSE/Products/SLE-SDK/12-SP5/ppc64le/product.license/","arch":"ppc64le","free":true,"shortname":"SDK12-SP5","description":"

SUSE Linux Enterprise Software Development Kit is the Software Development Kit for the family of SUSE Linux Enterprise products. It is a free of charge extension for partners and customers working with SUSE Linux Enterprise Server and Desktop and derived products.

Packages on the SDK are delivered without L3 support; maintenance updates will be done for critical security and critical non-security issues, and where needed to remain in sync with packages delivered in the SUSE Linux Enterprise Server and Desktop products.

Packages to rebuild SUSE Linux Enterprise Server are not part of the SUSE Linux Enterprise Software Development Kit.

"},{"eula_url":"","arch":"ppc64le","free":true,"description":"SUSE Package Hub is a free of charge extension providing access to community maintained packages built to run on SUSE Linux Enterprise Server. Built from the same sources used in the openSUSE distributions, these quality packages provide additional software to what is found in the SUSE Linux Enterprise Server product. Packages from the Package Hub are delivered without L3 support from SUSE. General updates and fixes to the packages in SUSE Package Hub are provided by the openSUSE community based on their discretion though SUSE will monitor and ensure that any known critical security issues will be addressed. Packages in the Package Hub are approved by SUSE for use with SUSE Linux Enterprise Server 12 and to not interfere with the supportability of SUSE Linux Enterprise Server it's modules and extensions. For more information about SUSE Package Hub please visit https://packagehub.suse.com.","shortname":"SUSE-PackageHub-12-SP5","product_type":"extension","cpe":"cpe:/o:suse:packagehub:12:sp5","predecessor_ids":[1475,1478,1481,1531,1811],"repositories":[{"id":3858,"enabled":true,"url":"https://updates.suse.com/SUSE/Backports/SLE-12-SP5_ppc64le/standard/","distro_target":"sle-12-ppc64le","autorefresh":false,"installer_updates":false,"name":"SUSE-PackageHub-12-SP5-Standard-Pool","description":"SUSE-PackageHub-12-SP5-Standard-Pool for sle-12-ppc64le"},{"distro_target":"sle-12-ppc64le","autorefresh":true,"url":"https://updates.suse.com/SUSE/Backports/SLE-12-SP5_ppc64le/standard_debug/","enabled":false,"id":3859,"description":"SUSE-PackageHub-12-SP5-Debuginfo for sle-12-ppc64le","installer_updates":false,"name":"SUSE-PackageHub-12-SP5-Debuginfo"},{"url":"https://updates.suse.com/SUSE/Backports/SLE-12-SP5_ppc64le/product/","distro_target":"sle-12-ppc64le","autorefresh":false,"id":3860,"enabled":true,"description":"SUSE-PackageHub-12-SP5-Pool for sle-12-ppc64le","installer_updates":false,"name":"SUSE-PackageHub-12-SP5-Pool"}],"online_predecessor_ids":[1475,1478,1481,1531,1811],"product_class":"MODULE","offline_predecessor_ids":[],"name":"SUSE Package Hub","former_identifier":"PackageHub","release_type":null,"migration_extra":false,"friendly_name":"SUSE Package Hub 12 SP5 ppc64le","recommended":false,"version":"12.5","extensions":[],"identifier":"PackageHub","release_stage":"released","id":1913,"friendly_version":"12 SP5"}],"version":"12.5","recommended":false,"former_identifier":"SLES","release_type":null,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Server 12 SP5 ppc64le","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Server","repositories":[{"enabled":true,"id":3664,"distro_target":"sle-12-ppc64le","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-SP5/ppc64le/update/","installer_updates":false,"name":"SLES12-SP5-Updates","description":"SLES12-SP5-Updates for sle-12-ppc64le"},{"enabled":false,"id":3665,"autorefresh":true,"distro_target":"sle-12-ppc64le","url":"https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-SP5/ppc64le/update_debug/","name":"SLES12-SP5-Debuginfo-Updates","installer_updates":false,"description":"SLES12-SP5-Debuginfo-Updates for sle-12-ppc64le"},{"autorefresh":true,"distro_target":"sle-12-ppc64le","url":"https://updates.suse.com/SUSE/Updates/SLE-SERVER-INSTALLER/12-SP5/ppc64le/update/","enabled":false,"id":3666,"description":"SLES12-SP5-Installer-Updates for sle-12-ppc64le","name":"SLES12-SP5-Installer-Updates","installer_updates":true},{"id":3667,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-SERVER/12-SP5/ppc64le/product/","autorefresh":false,"distro_target":"sle-12-ppc64le","name":"SLES12-SP5-Pool","installer_updates":false,"description":"SLES12-SP5-Pool for sle-12-ppc64le"},{"distro_target":"sle-12-ppc64le","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-SERVER/12-SP5/ppc64le/product_debug/","enabled":false,"id":3668,"description":"SLES12-SP5-Debuginfo-Pool for sle-12-ppc64le","installer_updates":false,"name":"SLES12-SP5-Debuginfo-Pool"},{"name":"SLES12-SP5-Source-Pool","installer_updates":false,"description":"SLES12-SP5-Source-Pool for sle-12-ppc64le","enabled":false,"id":3669,"autorefresh":false,"distro_target":"sle-12-ppc64le","url":"https://updates.suse.com/SUSE/Products/SLE-SERVER/12-SP5/ppc64le/product_source/"}],"online_predecessor_ids":[1116,1334,1355,1422,1626],"product_class":"SLES-PPC","predecessor_ids":[1116,1334,1355,1422,1626],"product_type":"base","cpe":"cpe:/o:suse:sles:12:sp5","free":false,"description":"SUSE Linux Enterprise offers a comprehensive suite of products built on a single code base. The platform addresses business needs from the smallest thin-client devices to the world's most powerful high-performance computing and mainframe servers. SUSE Linux Enterprise offers common management tools and technology certifications across the platform, and each product is enterprise-class.","shortname":"SLES12-SP5","arch":"ppc64le","eula_url":"https://updates.suse.com/SUSE/Products/SLE-SERVER/12-SP5/ppc64le/product.license/"},{"product_type":"base","cpe":"cpe:/o:suse:sles:12:sp5","repositories":[{"description":"SLES12-SP5-Updates for sle-12-s390x","installer_updates":false,"name":"SLES12-SP5-Updates","distro_target":"sle-12-s390x","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-SP5/s390x/update/","enabled":true,"id":3670},{"installer_updates":false,"name":"SLES12-SP5-Debuginfo-Updates","description":"SLES12-SP5-Debuginfo-Updates for sle-12-s390x","enabled":false,"id":3671,"distro_target":"sle-12-s390x","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-SP5/s390x/update_debug/"},{"description":"SLES12-SP5-Installer-Updates for sle-12-s390x","name":"SLES12-SP5-Installer-Updates","installer_updates":true,"autorefresh":true,"distro_target":"sle-12-s390x","url":"https://updates.suse.com/SUSE/Updates/SLE-SERVER-INSTALLER/12-SP5/s390x/update/","enabled":false,"id":3672},{"id":3673,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-SERVER/12-SP5/s390x/product/","autorefresh":false,"distro_target":"sle-12-s390x","name":"SLES12-SP5-Pool","installer_updates":false,"description":"SLES12-SP5-Pool for sle-12-s390x"},{"description":"SLES12-SP5-Debuginfo-Pool for sle-12-s390x","name":"SLES12-SP5-Debuginfo-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-12-s390x","url":"https://updates.suse.com/SUSE/Products/SLE-SERVER/12-SP5/s390x/product_debug/","enabled":false,"id":3674},{"installer_updates":false,"name":"SLES12-SP5-Source-Pool","description":"SLES12-SP5-Source-Pool for sle-12-s390x","enabled":false,"id":3675,"distro_target":"sle-12-s390x","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-SERVER/12-SP5/s390x/product_source/"}],"online_predecessor_ids":[1115,1335,1356,1423,1627],"product_class":"SLES-Z","predecessor_ids":[1115,1335,1356,1423,1627],"arch":"s390x","eula_url":"https://updates.suse.com/SUSE/Products/SLE-SERVER/12-SP5/s390x/product.license/","free":false,"shortname":"SLES12-SP5","description":"SUSE Linux Enterprise offers a comprehensive suite of products built on a single code base. The platform addresses business needs from the smallest thin-client devices to the world's most powerful high-performance computing and mainframe servers. SUSE Linux Enterprise offers common management tools and technology certifications across the platform, and each product is enterprise-class.","release_stage":"released","identifier":"SLES","id":1877,"extensions":[{"arch":"s390x","eula_url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/12/s390x/product.license/","shortname":"Legacy-Module","description":"

The Legacy Module helps you migrating applications from SUSE Linux Enterprise 10 and 11 and other systems to SUSE Linux Enterprise 12, by providing packages which are discontinued on SUSE Linux Enterprise Server, such as: sendmail, syslog-ng, IBM Java6, and a number of libraries (for example openssl-0.9.8).

Access to the Legacy Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself. Packages in the this module are usually supported for at most three years. Support for Sendmail and IBM Java 6 will end in September 2017 the latest.

","free":true,"cpe":"cpe:/o:suse:sle-module-legacy:12","product_type":"module","product_class":"MODULE","online_predecessor_ids":[],"repositories":[{"id":1672,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/12/s390x/update/","distro_target":"sle-12-s390x","autorefresh":true,"installer_updates":false,"name":"SLE-Module-Legacy12-Updates","description":"SLE-Module-Legacy12-Updates for sle-12-s390x"},{"autorefresh":true,"distro_target":"sle-12-s390x","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/12/s390x/update_debug/","enabled":false,"id":1673,"description":"SLE-Module-Legacy12-Debuginfo-Updates for sle-12-s390x","name":"SLE-Module-Legacy12-Debuginfo-Updates","installer_updates":false},{"autorefresh":false,"distro_target":"sle-12-s390x","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/12/s390x/product/","enabled":true,"id":1674,"description":"SLE-Module-Legacy12-Pool for sle-12-s390x","name":"SLE-Module-Legacy12-Pool","installer_updates":false},{"distro_target":"sle-12-s390x","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/12/s390x/product_debug/","enabled":false,"id":1675,"description":"SLE-Module-Legacy12-Debuginfo-Pool for sle-12-s390x","installer_updates":false,"name":"SLE-Module-Legacy12-Debuginfo-Pool"},{"name":"SLE-Module-Legacy12-Source-Pool","installer_updates":false,"description":"SLE-Module-Legacy12-Source-Pool for sle-12-s390x","enabled":false,"id":1988,"autorefresh":false,"distro_target":"sle-12-s390x","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/12/s390x/product_source/"}],"predecessor_ids":[],"migration_extra":false,"friendly_name":"Legacy Module 12 s390x","release_type":null,"former_identifier":"sle-module-legacy","name":"Legacy Module","offline_predecessor_ids":[],"version":"12","recommended":false,"release_stage":"released","id":1149,"identifier":"sle-module-legacy","extensions":[],"friendly_version":"12"},{"eula_url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/12/s390x/product.license/","arch":"s390x","free":true,"description":"

The SUSE Linux Enterprise Web and Scripting Module delivers a comprehensive suite of scripting languages, frameworks, and related tools helping developers and systems administrators accelerate the creation of stable, modern web applications, using dynamic languages, such as PHP, Ruby on Rails, and Python.

Access to the Web and Scripting Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself: Package versions in the this module are usually supported for at most three years. We are planning to release more recent versions on a schedule of approximately 18 month; the exact dates may differ per package.

","shortname":"Web-and-Scripting-Module","product_type":"module","cpe":"cpe:/o:suse:sle-module-web-scripting:12","predecessor_ids":[],"product_class":"MODULE","online_predecessor_ids":[],"repositories":[{"enabled":true,"id":1684,"autorefresh":true,"distro_target":"sle-12-s390x","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/12/s390x/update/","name":"SLE-Module-Web-Scripting12-Updates","installer_updates":false,"description":"SLE-Module-Web-Scripting12-Updates for sle-12-s390x"},{"name":"SLE-Module-Web-Scripting12-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-Web-Scripting12-Debuginfo-Updates for sle-12-s390x","enabled":false,"id":1685,"autorefresh":true,"distro_target":"sle-12-s390x","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/12/s390x/update_debug/"},{"name":"SLE-Module-Web-Scripting12-Pool","installer_updates":false,"description":"SLE-Module-Web-Scripting12-Pool for sle-12-s390x","id":1686,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/12/s390x/product/","autorefresh":false,"distro_target":"sle-12-s390x"},{"description":"SLE-Module-Web-Scripting12-Debuginfo-Pool for sle-12-s390x","installer_updates":false,"name":"SLE-Module-Web-Scripting12-Debuginfo-Pool","distro_target":"sle-12-s390x","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/12/s390x/product_debug/","enabled":false,"id":1687},{"name":"SLE-Module-Web-Scripting12-Source-Pool","installer_updates":false,"description":"SLE-Module-Web-Scripting12-Source-Pool for sle-12-s390x","enabled":false,"id":1991,"autorefresh":false,"distro_target":"sle-12-s390x","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/12/s390x/product_source/"}],"offline_predecessor_ids":[],"name":"Web and Scripting Module","former_identifier":"sle-module-web-scripting","release_type":null,"migration_extra":false,"friendly_name":"Web and Scripting Module 12 s390x","recommended":false,"version":"12","extensions":[],"id":1152,"release_stage":"released","identifier":"sle-module-web-scripting","friendly_version":"12"},{"friendly_version":"12","extensions":[],"identifier":"sle-module-public-cloud","release_stage":"released","id":1219,"recommended":false,"version":"12","offline_predecessor_ids":[],"name":"Public Cloud Module","former_identifier":"sle-module-public-cloud","release_type":null,"migration_extra":false,"friendly_name":"Public Cloud Module 12 s390x","predecessor_ids":[],"online_predecessor_ids":[],"repositories":[{"installer_updates":false,"name":"SLE-Module-Public-Cloud12-Updates","description":"SLE-Module-Public-Cloud12-Updates for sle-12-s390x","id":1696,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/12/s390x/update/","distro_target":"sle-12-s390x","autorefresh":true},{"installer_updates":false,"name":"SLE-Module-Public-Cloud12-Debuginfo-Updates","description":"SLE-Module-Public-Cloud12-Debuginfo-Updates for sle-12-s390x","enabled":false,"id":1697,"distro_target":"sle-12-s390x","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/12/s390x/update_debug/"},{"name":"SLE-Module-Public-Cloud12-Pool","installer_updates":false,"description":"SLE-Module-Public-Cloud12-Pool for sle-12-s390x","id":1698,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/12/s390x/product/","autorefresh":false,"distro_target":"sle-12-s390x"},{"description":"SLE-Module-Public-Cloud12-Debuginfo-Pool for sle-12-s390x","name":"SLE-Module-Public-Cloud12-Debuginfo-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-12-s390x","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/12/s390x/product_debug/","enabled":false,"id":1699},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/12/s390x/product_source/","distro_target":"sle-12-s390x","autorefresh":false,"id":1994,"enabled":false,"description":"SLE-Module-Public-Cloud12-Source-Pool for sle-12-s390x","installer_updates":false,"name":"SLE-Module-Public-Cloud12-Source-Pool"}],"product_class":"MODULE","product_type":"module","cpe":"cpe:/o:suse:sle-module-public-cloud:12","free":true,"description":"

The Public Cloud Module is a collection of tools that enables you to create and manage cloud images from the commandline on SUSE Linux Enterprise Server. When building your own images with KIWI or SUSE Studio, initialization code specific to the target cloud is included in that image.

Access to the Public Cloud Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself; please check the Release Notes for further details.

","shortname":"Public-Cloud-Module","eula_url":"","arch":"s390x"},{"extensions":[],"id":1295,"release_stage":"released","identifier":"sle-module-adv-systems-management","friendly_version":"12","offline_predecessor_ids":[],"name":"Advanced Systems Management Module","former_identifier":"sle-module-adv-systems-management","release_type":null,"friendly_name":"Advanced Systems Management Module 12 s390x","migration_extra":false,"recommended":false,"version":"12","product_type":"module","cpe":"cpe:/o:suse:sle-module-adv-systems-management:12","predecessor_ids":[],"product_class":"MODULE","online_predecessor_ids":[],"repositories":[{"enabled":true,"id":1766,"distro_target":"sle-12-s390x","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Adv-Systems-Management/12/s390x/update/","installer_updates":false,"name":"SLE-Module-Adv-Systems-Management12-Updates","description":"SLE-Module-Adv-Systems-Management12-Updates for sle-12-s390x"},{"description":"SLE-Module-Adv-Systems-Management12-Debuginfo-Updates for sle-12-s390x","installer_updates":false,"name":"SLE-Module-Adv-Systems-Management12-Debuginfo-Updates","distro_target":"sle-12-s390x","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Adv-Systems-Management/12/s390x/update_debug/","enabled":false,"id":1767},{"description":"SLE-Module-Adv-Systems-Management12-Pool for sle-12-s390x","name":"SLE-Module-Adv-Systems-Management12-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Adv-Systems-Management/12/s390x/product/","autorefresh":false,"distro_target":"sle-12-s390x","id":1768,"enabled":true},{"installer_updates":false,"name":"SLE-Module-Adv-Systems-Management12-Debuginfo-Pool","description":"SLE-Module-Adv-Systems-Management12-Debuginfo-Pool for sle-12-s390x","enabled":false,"id":1769,"distro_target":"sle-12-s390x","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Adv-Systems-Management/12/s390x/product_debug/"},{"installer_updates":false,"name":"SLE-Module-Adv-Systems-Management12-Source-Pool","description":"SLE-Module-Adv-Systems-Management12-Source-Pool for sle-12-s390x","id":1997,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Adv-Systems-Management/12/s390x/product_source/","distro_target":"sle-12-s390x","autorefresh":false}],"eula_url":"","arch":"s390x","free":true,"shortname":"Adv-Sys-Mgmt-Module","description":"

This Module contains current versions of the popular configuration management frameworks Puppet and CFEngine as well as the new systems management toolbox called machinery.

The machinery tool will be frequently updated and is SUSE's upcoming systems management toolbox for inspecting and validating systems remotely, storing their system description and creating new systems to deploy them in datacenters and clouds.

"},{"eula_url":"","arch":"s390x","shortname":"Toolchain-Module","description":"Via this Module you will have access to a more recent GCC and Toolchain in addition to the default compiler of SUSE Linux Enterprise. Access to the Toolchain Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself. Please check the Release Notes for further details.","free":true,"cpe":"cpe:/o:suse:sle-module-toolchain:12","product_type":"module","predecessor_ids":[],"online_predecessor_ids":[],"repositories":[{"enabled":true,"id":1899,"distro_target":"sle-12-s390x","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Toolchain/12/s390x/update/","installer_updates":false,"name":"SLE-Module-Toolchain12-Updates","description":"SLE-Module-Toolchain12-Updates for sle-12-s390x"},{"autorefresh":true,"distro_target":"sle-12-s390x","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Toolchain/12/s390x/update_debug/","enabled":false,"id":1900,"description":"SLE-Module-Toolchain12-Debuginfo-Updates for sle-12-s390x","name":"SLE-Module-Toolchain12-Debuginfo-Updates","installer_updates":false},{"enabled":true,"id":1901,"distro_target":"sle-12-s390x","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Toolchain/12/s390x/product/","installer_updates":false,"name":"SLE-Module-Toolchain12-Pool","description":"SLE-Module-Toolchain12-Pool for sle-12-s390x"},{"description":"SLE-Module-Toolchain12-Debuginfo-Pool for sle-12-s390x","name":"SLE-Module-Toolchain12-Debuginfo-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-12-s390x","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Toolchain/12/s390x/product_debug/","enabled":false,"id":1902}],"product_class":"MODULE","name":"Toolchain Module","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"Toolchain Module 12 s390x","former_identifier":"sle-module-toolchain","release_type":null,"recommended":false,"version":"12","extensions":[],"release_stage":"released","identifier":"sle-module-toolchain","id":1340,"friendly_version":"12"},{"cpe":"cpe:/o:suse:sle-module-containers:12","product_type":"module","repositories":[{"autorefresh":true,"distro_target":"sle-12-s390x","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/12/s390x/update/","enabled":true,"id":1977,"description":"SLE-Module-Containers12-Updates for sle-12-s390x","name":"SLE-Module-Containers12-Updates","installer_updates":false},{"enabled":false,"id":1978,"autorefresh":true,"distro_target":"sle-12-s390x","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/12/s390x/update_debug/","name":"SLE-Module-Containers12-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-Containers12-Debuginfo-Updates for sle-12-s390x"},{"description":"SLE-Module-Containers12-Pool for sle-12-s390x","installer_updates":false,"name":"SLE-Module-Containers12-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/12/s390x/product/","distro_target":"sle-12-s390x","autorefresh":false,"id":1979,"enabled":true},{"distro_target":"sle-12-s390x","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/12/s390x/product_debug/","enabled":false,"id":1980,"description":"SLE-Module-Containers12-Debuginfo-Pool for sle-12-s390x","installer_updates":false,"name":"SLE-Module-Containers12-Debuginfo-Pool"},{"enabled":false,"id":1981,"autorefresh":false,"distro_target":"sle-12-s390x","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/12/s390x/product_source/","name":"SLE-Module-Containers12-Source-Pool","installer_updates":false,"description":"SLE-Module-Containers12-Source-Pool for sle-12-s390x"}],"online_predecessor_ids":[],"product_class":"MODULE","predecessor_ids":[],"arch":"s390x","eula_url":"","shortname":"Containers-Module","description":"

This Module contains several packages revolving around containers and related tools.

","free":true,"identifier":"sle-module-containers","release_stage":"released","id":1354,"extensions":[],"friendly_version":"12","friendly_name":"Containers Module 12 s390x","migration_extra":false,"release_type":null,"former_identifier":"sle-module-containers","name":"Containers Module","offline_predecessor_ids":[],"version":"12","recommended":false},{"online_predecessor_ids":[1244,1336,1360,1434,1636],"repositories":[{"description":"SLE-HA12-SP5-Updates for sle-12-s390x","installer_updates":false,"name":"SLE-HA12-SP5-Updates","url":"https://updates.suse.com/SUSE/Updates/SLE-HA/12-SP5/s390x/update/","distro_target":"sle-12-s390x","autorefresh":true,"id":3701,"enabled":true},{"distro_target":"sle-12-s390x","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-HA/12-SP5/s390x/update_debug/","enabled":false,"id":3702,"description":"SLE-HA12-SP5-Debuginfo-Updates for sle-12-s390x","installer_updates":false,"name":"SLE-HA12-SP5-Debuginfo-Updates"},{"installer_updates":false,"name":"SLE-HA12-SP5-Pool","description":"SLE-HA12-SP5-Pool for sle-12-s390x","id":3703,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-HA/12-SP5/s390x/product/","distro_target":"sle-12-s390x","autorefresh":false},{"description":"SLE-HA12-SP5-Debuginfo-Pool for sle-12-s390x","installer_updates":false,"name":"SLE-HA12-SP5-Debuginfo-Pool","distro_target":"sle-12-s390x","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-HA/12-SP5/s390x/product_debug/","enabled":false,"id":3704},{"url":"https://updates.suse.com/SUSE/Products/SLE-HA/12-SP5/s390x/product_source/","distro_target":"sle-12-s390x","autorefresh":false,"id":3705,"enabled":false,"description":"SLE-HA12-SP5-Source-Pool for sle-12-s390x","installer_updates":false,"name":"SLE-HA12-SP5-Source-Pool"}],"product_class":"SLE-HAE-Z","predecessor_ids":[1244,1336,1360,1434,1636],"cpe":"cpe:/o:suse:sle-ha:12:sp5","product_type":"extension","description":"SUSE Linux Enterprise High Availability Extension.","shortname":"SLEHA12-SP5","free":false,"arch":"s390x","eula_url":"https://updates.suse.com/SUSE/Products/SLE-HA/12-SP5/s390x/product.license/","friendly_version":"12 SP5","identifier":"sle-ha","release_stage":"released","id":1883,"extensions":[{"release_stage":"released","identifier":"sle-ha-geo","id":1885,"extensions":[],"friendly_version":"12 SP5","release_type":null,"former_identifier":"sle-hae-geo","friendly_name":"SUSE Linux Enterprise High Availability GEO Extension 12 SP5 s390x","migration_extra":false,"offline_predecessor_ids":[1109,1110,1287],"name":"SUSE Linux Enterprise High Availability GEO Extension","version":"12.5","recommended":false,"product_type":"extension","cpe":"cpe:/o:suse:sle-ha-geo:12:sp5","repositories":[{"enabled":true,"id":3706,"distro_target":"sle-12-s390x","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-HA-GEO/12-SP5/s390x/update/","installer_updates":false,"name":"SLE-HA-GEO12-SP5-Updates","description":"SLE-HA-GEO12-SP5-Updates for sle-12-s390x"},{"id":3707,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-HA-GEO/12-SP5/s390x/update_debug/","autorefresh":true,"distro_target":"sle-12-s390x","name":"SLE-HA-GEO12-SP5-Debuginfo-Updates","installer_updates":false,"description":"SLE-HA-GEO12-SP5-Debuginfo-Updates for sle-12-s390x"},{"url":"https://updates.suse.com/SUSE/Products/SLE-HA-GEO/12-SP5/s390x/product/","distro_target":"sle-12-s390x","autorefresh":false,"id":3708,"enabled":true,"description":"SLE-HA-GEO12-SP5-Pool for sle-12-s390x","installer_updates":false,"name":"SLE-HA-GEO12-SP5-Pool"},{"enabled":false,"id":3709,"autorefresh":false,"distro_target":"sle-12-s390x","url":"https://updates.suse.com/SUSE/Products/SLE-HA-GEO/12-SP5/s390x/product_debug/","name":"SLE-HA-GEO12-SP5-Debuginfo-Pool","installer_updates":false,"description":"SLE-HA-GEO12-SP5-Debuginfo-Pool for sle-12-s390x"},{"distro_target":"sle-12-s390x","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-HA-GEO/12-SP5/s390x/product_source/","enabled":false,"id":3710,"description":"SLE-HA-GEO12-SP5-Source-Pool for sle-12-s390x","installer_updates":false,"name":"SLE-HA-GEO12-SP5-Source-Pool"}],"online_predecessor_ids":[1156,1345,1362,1436,1638],"product_class":"SLE-HAE-GEO","predecessor_ids":[1156,1345,1362,1436,1638],"arch":"s390x","eula_url":"https://updates.suse.com/SUSE/Products/SLE-HA-GEO/12-SP5/s390x/product.license/","free":false,"shortname":"SLEHAGEO12-SP5","description":"SUSE Linux Enterprise High Availability Geographical Cluster Extension"}],"version":"12.5","recommended":false,"friendly_name":"SUSE Linux Enterprise High Availability Extension 12 SP5 s390x","migration_extra":false,"release_type":null,"former_identifier":"sle-hae","name":"SUSE Linux Enterprise High Availability Extension","offline_predecessor_ids":[1080,1082,1084,1086,1257]},{"product_type":"extension","cpe":"cpe:/o:suse:sle-sdk:12:sp5","predecessor_ids":[1146,1344,1365,1429,1632],"online_predecessor_ids":[1146,1344,1365,1429,1632],"product_class":"MODULE","repositories":[{"description":"SLE-SDK12-SP5-Updates for sle-12-s390x","installer_updates":false,"name":"SLE-SDK12-SP5-Updates","url":"https://updates.suse.com/SUSE/Updates/SLE-SDK/12-SP5/s390x/update/","distro_target":"sle-12-s390x","autorefresh":true,"id":3734,"enabled":true},{"enabled":false,"id":3735,"autorefresh":true,"distro_target":"sle-12-s390x","url":"https://updates.suse.com/SUSE/Updates/SLE-SDK/12-SP5/s390x/update_debug/","name":"SLE-SDK12-SP5-Debuginfo-Updates","installer_updates":false,"description":"SLE-SDK12-SP5-Debuginfo-Updates for sle-12-s390x"},{"name":"SLE-SDK12-SP5-Pool","installer_updates":false,"description":"SLE-SDK12-SP5-Pool for sle-12-s390x","id":3736,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-SDK/12-SP5/s390x/product/","autorefresh":false,"distro_target":"sle-12-s390x"},{"description":"SLE-SDK12-SP5-Debuginfo-Pool for sle-12-s390x","installer_updates":false,"name":"SLE-SDK12-SP5-Debuginfo-Pool","distro_target":"sle-12-s390x","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-SDK/12-SP5/s390x/product_debug/","enabled":false,"id":3737},{"distro_target":"sle-12-s390x","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-SDK/12-SP5/s390x/product_source/","enabled":false,"id":3738,"description":"SLE-SDK12-SP5-Source-Pool for sle-12-s390x","installer_updates":false,"name":"SLE-SDK12-SP5-Source-Pool"}],"eula_url":"https://updates.suse.com/SUSE/Products/SLE-SDK/12-SP5/s390x/product.license/","arch":"s390x","free":true,"shortname":"SDK12-SP5","description":"

SUSE Linux Enterprise Software Development Kit is the Software Development Kit for the family of SUSE Linux Enterprise products. It is a free of charge extension for partners and customers working with SUSE Linux Enterprise Server and Desktop and derived products.

Packages on the SDK are delivered without L3 support; maintenance updates will be done for critical security and critical non-security issues, and where needed to remain in sync with packages delivered in the SUSE Linux Enterprise Server and Desktop products.

Packages to rebuild SUSE Linux Enterprise Server are not part of the SUSE Linux Enterprise Software Development Kit.

","extensions":[],"release_stage":"released","id":1891,"identifier":"sle-sdk","friendly_version":"12 SP5","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Software Development Kit","former_identifier":"sle-sdk","release_type":null,"friendly_name":"SUSE Linux Enterprise Software Development Kit 12 SP5 s390x","migration_extra":false,"recommended":false,"version":"12.5"},{"online_predecessor_ids":[1474,1477,1480,1530,1812],"repositories":[{"name":"SUSE-PackageHub-12-SP5-Standard-Pool","installer_updates":false,"description":"SUSE-PackageHub-12-SP5-Standard-Pool for sle-12-s390x","id":3861,"enabled":true,"url":"https://updates.suse.com/SUSE/Backports/SLE-12-SP5_s390x/standard/","autorefresh":false,"distro_target":"sle-12-s390x"},{"enabled":false,"id":3862,"distro_target":"sle-12-s390x","autorefresh":true,"url":"https://updates.suse.com/SUSE/Backports/SLE-12-SP5_s390x/standard_debug/","installer_updates":false,"name":"SUSE-PackageHub-12-SP5-Debuginfo","description":"SUSE-PackageHub-12-SP5-Debuginfo for sle-12-s390x"},{"installer_updates":false,"name":"SUSE-PackageHub-12-SP5-Pool","description":"SUSE-PackageHub-12-SP5-Pool for sle-12-s390x","id":3863,"enabled":true,"url":"https://updates.suse.com/SUSE/Backports/SLE-12-SP5_s390x/product/","distro_target":"sle-12-s390x","autorefresh":false}],"product_class":"MODULE","predecessor_ids":[1474,1477,1480,1530,1812],"cpe":"cpe:/o:suse:packagehub:12:sp5","product_type":"extension","description":"SUSE Package Hub is a free of charge extension providing access to community maintained packages built to run on SUSE Linux Enterprise Server. Built from the same sources used in the openSUSE distributions, these quality packages provide additional software to what is found in the SUSE Linux Enterprise Server product. Packages from the Package Hub are delivered without L3 support from SUSE. General updates and fixes to the packages in SUSE Package Hub are provided by the openSUSE community based on their discretion though SUSE will monitor and ensure that any known critical security issues will be addressed. Packages in the Package Hub are approved by SUSE for use with SUSE Linux Enterprise Server 12 and to not interfere with the supportability of SUSE Linux Enterprise Server it's modules and extensions. For more information about SUSE Package Hub please visit https://packagehub.suse.com.","shortname":"SUSE-PackageHub-12-SP5","free":true,"arch":"s390x","eula_url":"","friendly_version":"12 SP5","release_stage":"released","id":1914,"identifier":"PackageHub","extensions":[],"version":"12.5","recommended":false,"migration_extra":false,"friendly_name":"SUSE Package Hub 12 SP5 s390x","former_identifier":"PackageHub","release_type":null,"name":"SUSE Package Hub","offline_predecessor_ids":[]},{"shortname":"Live-Patching","description":"

SUSE Linux Enterprise Live Patching provides packages to update critical kernel modules live in SUSE Linux Enterprise. With SUSE Linux Enterprise Live Patching, you can perform critical kernel patching without shutting down your system, reducing the need for planned downtime and increasing service availability.

","free":false,"eula_url":"https://updates.suse.com/SUSE/Products/SLE-Live-Patching/12-SP5/s390x/product.license/","arch":"s390x","predecessor_ids":[2079],"online_predecessor_ids":[2079],"product_class":"SLE-LP-Z","repositories":[{"enabled":true,"id":4441,"distro_target":"sle-12-s390x","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Live-Patching/12-SP5/s390x/update/","installer_updates":false,"name":"SLE-Live-Patching12-SP5-Updates","description":"SLE-Live-Patching12-SP5-Updates for sle-12-s390x"},{"name":"SLE-Live-Patching12-SP5-Debuginfo-Updates","installer_updates":false,"description":"SLE-Live-Patching12-SP5-Debuginfo-Updates for sle-12-s390x","enabled":false,"id":4442,"autorefresh":true,"distro_target":"sle-12-s390x","url":"https://updates.suse.com/SUSE/Updates/SLE-Live-Patching/12-SP5/s390x/update_debug/"},{"description":"SLE-Live-Patching12-SP5-Pool for sle-12-s390x","installer_updates":false,"name":"SLE-Live-Patching12-SP5-Pool","distro_target":"sle-12-s390x","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Live-Patching/12-SP5/s390x/product/","enabled":true,"id":4443},{"distro_target":"sle-12-s390x","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Live-Patching/12-SP5/s390x/product_debug/","enabled":false,"id":4444,"description":"SLE-Live-Patching12-SP5-Debuginfo-Pool for sle-12-s390x","installer_updates":false,"name":"SLE-Live-Patching12-SP5-Debuginfo-Pool"}],"cpe":"cpe:/o:suse:sle-live-patching:12:sp5","product_type":"extension","recommended":false,"version":"12.5","name":"SUSE Linux Enterprise Live Patching","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Live Patching 12 SP5 s390x","release_type":null,"former_identifier":"sle-live-patching","friendly_version":"12 SP5","extensions":[],"release_stage":"released","identifier":"sle-live-patching","id":2080}],"friendly_version":"12 SP5","release_type":null,"former_identifier":"SLES","migration_extra":false,"friendly_name":"SUSE Linux Enterprise Server 12 SP5 s390x","offline_predecessor_ids":[693,745,755,805,1303],"name":"SUSE Linux Enterprise Server","version":"12.5","recommended":false},{"release_stage":"released","identifier":"SLES","id":1878,"extensions":[{"arch":"x86_64","eula_url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/12/x86_64/product.license/","free":true,"shortname":"Legacy-Module","description":"

The Legacy Module helps you migrating applications from SUSE Linux Enterprise 10 and 11 and other systems to SUSE Linux Enterprise 12, by providing packages which are discontinued on SUSE Linux Enterprise Server, such as: sendmail, syslog-ng, IBM Java6, and a number of libraries (for example openssl-0.9.8).

Access to the Legacy Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself. Packages in the this module are usually supported for at most three years. Support for Sendmail and IBM Java 6 will end in September 2017 the latest.

","product_type":"module","cpe":"cpe:/o:suse:sle-module-legacy:12","online_predecessor_ids":[],"product_class":"MODULE","repositories":[{"id":1676,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/12/x86_64/update/","autorefresh":true,"distro_target":"sle-12-x86_64","name":"SLE-Module-Legacy12-Updates","installer_updates":false,"description":"SLE-Module-Legacy12-Updates for sle-12-x86_64"},{"description":"SLE-Module-Legacy12-Debuginfo-Updates for sle-12-x86_64","name":"SLE-Module-Legacy12-Debuginfo-Updates","installer_updates":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/12/x86_64/update_debug/","autorefresh":true,"distro_target":"sle-12-x86_64","id":1677,"enabled":false},{"installer_updates":false,"name":"SLE-Module-Legacy12-Pool","description":"SLE-Module-Legacy12-Pool for sle-12-x86_64","enabled":true,"id":1678,"distro_target":"sle-12-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/12/x86_64/product/"},{"id":1679,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/12/x86_64/product_debug/","distro_target":"sle-12-x86_64","autorefresh":false,"installer_updates":false,"name":"SLE-Module-Legacy12-Debuginfo-Pool","description":"SLE-Module-Legacy12-Debuginfo-Pool for sle-12-x86_64"},{"enabled":false,"id":1989,"autorefresh":false,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/12/x86_64/product_source/","name":"SLE-Module-Legacy12-Source-Pool","installer_updates":false,"description":"SLE-Module-Legacy12-Source-Pool for sle-12-x86_64"}],"predecessor_ids":[],"former_identifier":"sle-module-legacy","release_type":null,"friendly_name":"Legacy Module 12 x86_64","migration_extra":false,"offline_predecessor_ids":[],"name":"Legacy Module","version":"12","recommended":false,"id":1150,"release_stage":"released","identifier":"sle-module-legacy","extensions":[],"friendly_version":"12"},{"eula_url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/12/x86_64/product.license/","arch":"x86_64","free":true,"shortname":"Web-and-Scripting-Module","description":"

The SUSE Linux Enterprise Web and Scripting Module delivers a comprehensive suite of scripting languages, frameworks, and related tools helping developers and systems administrators accelerate the creation of stable, modern web applications, using dynamic languages, such as PHP, Ruby on Rails, and Python.

Access to the Web and Scripting Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself: Package versions in the this module are usually supported for at most three years. We are planning to release more recent versions on a schedule of approximately 18 month; the exact dates may differ per package.

","product_type":"module","cpe":"cpe:/o:suse:sle-module-web-scripting:12","predecessor_ids":[],"product_class":"MODULE","online_predecessor_ids":[],"repositories":[{"description":"SLE-Module-Web-Scripting12-Updates for sle-12-x86_64","name":"SLE-Module-Web-Scripting12-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/12/x86_64/update/","enabled":true,"id":1688},{"id":1689,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/12/x86_64/update_debug/","distro_target":"sle-12-x86_64","autorefresh":true,"installer_updates":false,"name":"SLE-Module-Web-Scripting12-Debuginfo-Updates","description":"SLE-Module-Web-Scripting12-Debuginfo-Updates for sle-12-x86_64"},{"enabled":true,"id":1690,"autorefresh":false,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/12/x86_64/product/","name":"SLE-Module-Web-Scripting12-Pool","installer_updates":false,"description":"SLE-Module-Web-Scripting12-Pool for sle-12-x86_64"},{"id":1691,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/12/x86_64/product_debug/","distro_target":"sle-12-x86_64","autorefresh":false,"installer_updates":false,"name":"SLE-Module-Web-Scripting12-Debuginfo-Pool","description":"SLE-Module-Web-Scripting12-Debuginfo-Pool for sle-12-x86_64"},{"description":"SLE-Module-Web-Scripting12-Source-Pool for sle-12-x86_64","name":"SLE-Module-Web-Scripting12-Source-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/12/x86_64/product_source/","enabled":false,"id":1992}],"offline_predecessor_ids":[],"name":"Web and Scripting Module","release_type":null,"former_identifier":"sle-module-web-scripting","friendly_name":"Web and Scripting Module 12 x86_64","migration_extra":false,"recommended":false,"version":"12","extensions":[],"release_stage":"released","identifier":"sle-module-web-scripting","id":1153,"friendly_version":"12"},{"arch":"x86_64","eula_url":"","shortname":"Adv-Sys-Mgmt-Module","description":"

This Module contains current versions of the popular configuration management frameworks Puppet and CFEngine as well as the new systems management toolbox called machinery.

The machinery tool will be frequently updated and is SUSE's upcoming systems management toolbox for inspecting and validating systems remotely, storing their system description and creating new systems to deploy them in datacenters and clouds.

","free":true,"cpe":"cpe:/o:suse:sle-module-adv-systems-management:12","product_type":"module","online_predecessor_ids":[],"product_class":"MODULE","repositories":[{"id":1704,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Adv-Systems-Management/12/x86_64/update/","autorefresh":true,"distro_target":"sle-12-x86_64","name":"SLE-Module-Adv-Systems-Management12-Updates","installer_updates":false,"description":"SLE-Module-Adv-Systems-Management12-Updates for sle-12-x86_64"},{"description":"SLE-Module-Adv-Systems-Management12-Debuginfo-Updates for sle-12-x86_64","installer_updates":false,"name":"SLE-Module-Adv-Systems-Management12-Debuginfo-Updates","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Adv-Systems-Management/12/x86_64/update_debug/","distro_target":"sle-12-x86_64","autorefresh":true,"id":1705,"enabled":false},{"enabled":true,"id":1706,"distro_target":"sle-12-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Adv-Systems-Management/12/x86_64/product/","installer_updates":false,"name":"SLE-Module-Adv-Systems-Management12-Pool","description":"SLE-Module-Adv-Systems-Management12-Pool for sle-12-x86_64"},{"id":1707,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Adv-Systems-Management/12/x86_64/product_debug/","autorefresh":false,"distro_target":"sle-12-x86_64","name":"SLE-Module-Adv-Systems-Management12-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-Adv-Systems-Management12-Debuginfo-Pool for sle-12-x86_64"},{"description":"SLE-Module-Adv-Systems-Management12-Source-Pool for sle-12-x86_64","name":"SLE-Module-Adv-Systems-Management12-Source-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Adv-Systems-Management/12/x86_64/product_source/","enabled":false,"id":1998}],"predecessor_ids":[],"friendly_name":"Advanced Systems Management Module 12 x86_64","migration_extra":false,"former_identifier":"sle-module-adv-systems-management","release_type":null,"name":"Advanced Systems Management Module","offline_predecessor_ids":[],"version":"12","recommended":false,"release_stage":"released","identifier":"sle-module-adv-systems-management","id":1212,"extensions":[],"friendly_version":"12"},{"version":"12","recommended":false,"friendly_name":"Public Cloud Module 12 x86_64","migration_extra":false,"former_identifier":"sle-module-public-cloud","release_type":null,"name":"Public Cloud Module","offline_predecessor_ids":[],"friendly_version":"12","release_stage":"released","id":1220,"identifier":"sle-module-public-cloud","extensions":[],"shortname":"Public-Cloud-Module","description":"

The Public Cloud Module is a collection of tools that enables you to create and manage cloud images from the commandline on SUSE Linux Enterprise Server. When building your own images with KIWI or SUSE Studio, initialization code specific to the target cloud is included in that image.

Access to the Public Cloud Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself; please check the Release Notes for further details.

","free":true,"arch":"x86_64","eula_url":"","product_class":"MODULE","online_predecessor_ids":[],"repositories":[{"description":"SLE-Module-Public-Cloud12-Updates for sle-12-x86_64","name":"SLE-Module-Public-Cloud12-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/12/x86_64/update/","enabled":true,"id":1700},{"id":1701,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/12/x86_64/update_debug/","autorefresh":true,"distro_target":"sle-12-x86_64","name":"SLE-Module-Public-Cloud12-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-Public-Cloud12-Debuginfo-Updates for sle-12-x86_64"},{"description":"SLE-Module-Public-Cloud12-Pool for sle-12-x86_64","name":"SLE-Module-Public-Cloud12-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/12/x86_64/product/","enabled":true,"id":1702},{"enabled":false,"id":1703,"autorefresh":false,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/12/x86_64/product_debug/","name":"SLE-Module-Public-Cloud12-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-Public-Cloud12-Debuginfo-Pool for sle-12-x86_64"},{"autorefresh":false,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/12/x86_64/product_source/","enabled":false,"id":1995,"description":"SLE-Module-Public-Cloud12-Source-Pool for sle-12-x86_64","name":"SLE-Module-Public-Cloud12-Source-Pool","installer_updates":false}],"predecessor_ids":[],"cpe":"cpe:/o:suse:sle-module-public-cloud:12","product_type":"module"},{"recommended":false,"version":"12","name":"Containers Module","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"Containers Module 12 x86_64","former_identifier":"sle-module-containers","release_type":null,"friendly_version":"12","extensions":[],"identifier":"sle-module-containers","release_stage":"released","id":1332,"shortname":"Containers-Module","description":"

This Module contains several packages revolving around containers and related tools.

","free":true,"eula_url":"","arch":"x86_64","predecessor_ids":[],"online_predecessor_ids":[],"repositories":[{"name":"SLE-Module-Containers12-Updates","installer_updates":false,"description":"SLE-Module-Containers12-Updates for sle-12-x86_64","id":1864,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/12/x86_64/update/","autorefresh":true,"distro_target":"sle-12-x86_64"},{"name":"SLE-Module-Containers12-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-Containers12-Debuginfo-Updates for sle-12-x86_64","enabled":false,"id":1865,"autorefresh":true,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/12/x86_64/update_debug/"},{"description":"SLE-Module-Containers12-Pool for sle-12-x86_64","name":"SLE-Module-Containers12-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/12/x86_64/product/","autorefresh":false,"distro_target":"sle-12-x86_64","id":1866,"enabled":true},{"description":"SLE-Module-Containers12-Debuginfo-Pool for sle-12-x86_64","name":"SLE-Module-Containers12-Debuginfo-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/12/x86_64/product_debug/","autorefresh":false,"distro_target":"sle-12-x86_64","id":1867,"enabled":false},{"id":1957,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/12/x86_64/product_source/","autorefresh":false,"distro_target":"sle-12-x86_64","name":"SLE-Module-Containers12-Source-Pool","installer_updates":false,"description":"SLE-Module-Containers12-Source-Pool for sle-12-x86_64"}],"product_class":"MODULE","cpe":"cpe:/o:suse:sle-module-containers:12","product_type":"module"},{"online_predecessor_ids":[],"product_class":"MODULE","repositories":[{"distro_target":"sle-12-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Toolchain/12/x86_64/update/","enabled":true,"id":1903,"description":"SLE-Module-Toolchain12-Updates for sle-12-x86_64","installer_updates":false,"name":"SLE-Module-Toolchain12-Updates"},{"description":"SLE-Module-Toolchain12-Debuginfo-Updates for sle-12-x86_64","installer_updates":false,"name":"SLE-Module-Toolchain12-Debuginfo-Updates","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Toolchain/12/x86_64/update_debug/","distro_target":"sle-12-x86_64","autorefresh":true,"id":1904,"enabled":false},{"name":"SLE-Module-Toolchain12-Pool","installer_updates":false,"description":"SLE-Module-Toolchain12-Pool for sle-12-x86_64","id":1905,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Toolchain/12/x86_64/product/","autorefresh":false,"distro_target":"sle-12-x86_64"},{"id":1906,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Toolchain/12/x86_64/product_debug/","distro_target":"sle-12-x86_64","autorefresh":false,"installer_updates":false,"name":"SLE-Module-Toolchain12-Debuginfo-Pool","description":"SLE-Module-Toolchain12-Debuginfo-Pool for sle-12-x86_64"}],"predecessor_ids":[],"cpe":"cpe:/o:suse:sle-module-toolchain:12","product_type":"module","description":"Via this Module you will have access to a more recent GCC and Toolchain in addition to the default compiler of SUSE Linux Enterprise. Access to the Toolchain Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself. Please check the Release Notes for further details.","shortname":"Toolchain-Module","free":true,"arch":"x86_64","eula_url":"","friendly_version":"12","id":1341,"release_stage":"released","identifier":"sle-module-toolchain","extensions":[],"version":"12","recommended":false,"migration_extra":false,"friendly_name":"Toolchain Module 12 x86_64","former_identifier":"sle-module-toolchain","release_type":null,"name":"Toolchain Module","offline_predecessor_ids":[]},{"friendly_version":"12 SP2","extensions":[],"release_stage":"released","id":1439,"identifier":"sle-pos","recommended":false,"version":"12.2","name":"SUSE Linux Enterprise Point of Service Image Server","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Point of Service Image Server 12 SP2 x86_64","release_type":null,"former_identifier":"sle-pos","predecessor_ids":[],"online_predecessor_ids":[],"product_class":"10040","repositories":[{"url":"https://updates.suse.com/SUSE/Updates/SLE-POS/12-SP2/x86_64/update/","autorefresh":true,"distro_target":"sle-12-x86_64","id":2289,"enabled":true,"description":"SLE-POS12-SP2-Updates for sle-12-x86_64","name":"SLE-POS12-SP2-Updates","installer_updates":false},{"description":"SLE-POS12-SP2-Debuginfo-Updates for sle-12-x86_64","installer_updates":false,"name":"SLE-POS12-SP2-Debuginfo-Updates","distro_target":"sle-12-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-POS/12-SP2/x86_64/update_debug/","enabled":false,"id":2290},{"description":"SLE-POS12-SP2-Pool for sle-12-x86_64","installer_updates":false,"name":"SLE-POS12-SP2-Pool","distro_target":"sle-12-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-POS/12-SP2/x86_64/product/","enabled":true,"id":2291},{"description":"SLE-POS12-SP2-Debuginfo-Pool for sle-12-x86_64","name":"SLE-POS12-SP2-Debuginfo-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-POS/12-SP2/x86_64/product_debug/","autorefresh":false,"distro_target":"sle-12-x86_64","id":2292,"enabled":false},{"id":2293,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-POS/12-SP2/x86_64/product_source/","autorefresh":false,"distro_target":"sle-12-x86_64","name":"SLE-POS12-SP2-Source-Pool","installer_updates":false,"description":"SLE-POS12-SP2-Source-Pool for sle-12-x86_64"},{"description":"SLE-POS12-SP2-CLIENT-Updates for sle-12-x86_64","name":"SLE-POS12-SP2-CLIENT-Updates","installer_updates":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-POS/12-SP2-CLIENT/x86_64/update/","autorefresh":true,"distro_target":"sle-12-x86_64","id":3130,"enabled":true},{"name":"SLE-POS12-SP2-CLIENT-Debuginfo-Updates","installer_updates":false,"description":"SLE-POS12-SP2-CLIENT-Debuginfo-Updates for sle-12-x86_64","id":3131,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-POS/12-SP2-CLIENT/x86_64/update_debug/","autorefresh":true,"distro_target":"sle-12-x86_64"}],"cpe":"cpe:/o:suse:sle-pos:12:sp2","product_type":"extension","description":"SUSE Linux Enterprise Point of Service Image Server","shortname":"SLEPOS12","free":false,"eula_url":"https://updates.suse.com/SUSE/Products/SLE-POS/12-SP2/x86_64/product.license/","arch":"x86_64"},{"recommended":false,"version":"12","name":"HPC Module","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"HPC Module 12 x86_64","release_type":null,"former_identifier":"sle-module-hpc","friendly_version":"12","extensions":[],"id":1440,"release_stage":"released","identifier":"sle-module-hpc","shortname":"HPC-Module","description":"The SUSE Linux Enterprise Server High Performance Computing (HPC) module delivers specific tools commonly used for high performance, numerically intensive workloads. SUSE packages these tools in the SLES HPC Module to provide greater flexibility to deliver new versions or new tools more rapidly than the standard SUSE Linux Enterprise lifecycle would permit. Packages in this module are general supported till a newer version of the package is released or the package is dropped from the module.","free":true,"eula_url":"https://updates.suse.com/SUSE/Products/SLE-Module-HPC/12/x86_64/product.license/","arch":"x86_64","predecessor_ids":[],"product_class":"MODULE","online_predecessor_ids":[],"repositories":[{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-HPC/12/x86_64/update/","distro_target":"sle-12-x86_64","autorefresh":true,"id":2294,"enabled":true,"description":"SLE-Module-HPC12-Updates for sle-12-x86_64","installer_updates":false,"name":"SLE-Module-HPC12-Updates"},{"distro_target":"sle-12-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-HPC/12/x86_64/update_debug/","enabled":false,"id":2295,"description":"SLE-Module-HPC12-Debuginfo-Updates for sle-12-x86_64","installer_updates":false,"name":"SLE-Module-HPC12-Debuginfo-Updates"},{"installer_updates":false,"name":"SLE-Module-HPC12-Pool","description":"SLE-Module-HPC12-Pool for sle-12-x86_64","enabled":true,"id":2296,"distro_target":"sle-12-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-HPC/12/x86_64/product/"},{"description":"SLE-Module-HPC12-Debuginfo-Pool for sle-12-x86_64","name":"SLE-Module-HPC12-Debuginfo-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-HPC/12/x86_64/product_debug/","autorefresh":false,"distro_target":"sle-12-x86_64","id":2297,"enabled":false},{"id":2298,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-HPC/12/x86_64/product_source/","distro_target":"sle-12-x86_64","autorefresh":false,"installer_updates":false,"name":"SLE-Module-HPC12-Source-Pool","description":"SLE-Module-HPC12-Source-Pool for sle-12-x86_64"}],"cpe":"cpe:/o:suse:sle-module-hpc:12","product_type":"module"},{"repositories":[{"description":"SLE-Module-CAP-Tools-12-Updates for sle-12-x86_64","installer_updates":false,"name":"SLE-Module-CAP-Tools-12-Updates","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-CAP-Tools/12/x86_64/update/","distro_target":"sle-12-x86_64","autorefresh":true,"id":2912,"enabled":true},{"name":"SLE-Module-CAP-Tools-12-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-CAP-Tools-12-Debuginfo-Updates for sle-12-x86_64","id":2913,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-CAP-Tools/12/x86_64/update_debug/","autorefresh":true,"distro_target":"sle-12-x86_64"},{"autorefresh":false,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-CAP-Tools/12/x86_64/product/","enabled":true,"id":2914,"description":"SLE-Module-CAP-Tools-12-Pool for sle-12-x86_64","name":"SLE-Module-CAP-Tools-12-Pool","installer_updates":false},{"installer_updates":false,"name":"SLE-Module-CAP-Tools-12-Debuginfo-Pool","description":"SLE-Module-CAP-Tools-12-Debuginfo-Pool for sle-12-x86_64","enabled":false,"id":2915,"distro_target":"sle-12-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-CAP-Tools/12/x86_64/product_debug/"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-CAP-Tools/12/x86_64/product_source/","autorefresh":false,"distro_target":"sle-12-x86_64","id":2916,"enabled":false,"description":"SLE-Module-CAP-Tools-12-Source-Pool for sle-12-x86_64","name":"SLE-Module-CAP-Tools-12-Source-Pool","installer_updates":false}],"online_predecessor_ids":[],"product_class":"MODULE","predecessor_ids":[],"product_type":"module","cpe":"cpe:/o:suse:sle-module-cap-tools:12","free":true,"description":"

The SUSE Cloud Application Platform Tools Module is a collection of tools that enables you to interact with the SUSE Cloud Application Platform product itself, providing the commandline client for instance.

Access to the SUSE Cloud Application Platform Tools Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself; please check the Release Notes for further details.

","shortname":"SUSE-CAP-Tools-Module","arch":"x86_64","eula_url":"","friendly_version":"12","id":1678,"release_stage":"released","identifier":"sle-module-cap-tools","extensions":[],"version":"12","recommended":false,"former_identifier":"sle-module-cap-tools","release_type":null,"migration_extra":false,"friendly_name":"SUSE Cloud Application Platform Tools Module 12 x86_64","offline_predecessor_ids":[],"name":"SUSE Cloud Application Platform Tools Module"},{"shortname":"SLEHA12-SP5","description":"SUSE Linux Enterprise High Availability Extension.","free":false,"arch":"x86_64","eula_url":"https://updates.suse.com/SUSE/Products/SLE-HA/12-SP5/x86_64/product.license/","repositories":[{"name":"SLE-HA12-SP5-Updates","installer_updates":false,"description":"SLE-HA12-SP5-Updates for sle-12-x86_64","enabled":true,"id":3687,"autorefresh":true,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-HA/12-SP5/x86_64/update/"},{"autorefresh":true,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-HA/12-SP5/x86_64/update_debug/","enabled":false,"id":3689,"description":"SLE-HA12-SP5-Debuginfo-Updates for sle-12-x86_64","name":"SLE-HA12-SP5-Debuginfo-Updates","installer_updates":false},{"description":"SLE-HA12-SP5-Pool for sle-12-x86_64","installer_updates":false,"name":"SLE-HA12-SP5-Pool","distro_target":"sle-12-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-HA/12-SP5/x86_64/product/","enabled":true,"id":3691},{"name":"SLE-HA12-SP5-Debuginfo-Pool","installer_updates":false,"description":"SLE-HA12-SP5-Debuginfo-Pool for sle-12-x86_64","enabled":false,"id":3693,"autorefresh":false,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-HA/12-SP5/x86_64/product_debug/"},{"description":"SLE-HA12-SP5-Source-Pool for sle-12-x86_64","installer_updates":false,"name":"SLE-HA12-SP5-Source-Pool","distro_target":"sle-12-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-HA/12-SP5/x86_64/product_source/","enabled":false,"id":3695}],"online_predecessor_ids":[1245,1324,1361,1432,1634],"product_class":"SLE-HAE-X86","predecessor_ids":[1245,1324,1361,1432,1634],"cpe":"cpe:/o:suse:sle-ha:12:sp5","product_type":"extension","version":"12.5","recommended":false,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise High Availability Extension 12 SP5 x86_64","former_identifier":"sle-hae","release_type":null,"name":"SUSE Linux Enterprise High Availability Extension","offline_predecessor_ids":[958,961,967,971,1256],"friendly_version":"12 SP5","id":1884,"release_stage":"released","identifier":"sle-ha","extensions":[{"description":"SUSE Linux Enterprise High Availability Geographical Cluster Extension","shortname":"SLEHAGEO12-SP5","free":false,"eula_url":"https://updates.suse.com/SUSE/Products/SLE-HA-GEO/12-SP5/x86_64/product.license/","arch":"x86_64","predecessor_ids":[1157,1337,1363,1435,1637],"product_class":"SLE-HAE-GEO","online_predecessor_ids":[1157,1337,1363,1435,1637],"repositories":[{"enabled":true,"id":3711,"autorefresh":true,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-HA-GEO/12-SP5/x86_64/update/","name":"SLE-HA-GEO12-SP5-Updates","installer_updates":false,"description":"SLE-HA-GEO12-SP5-Updates for sle-12-x86_64"},{"url":"https://updates.suse.com/SUSE/Updates/SLE-HA-GEO/12-SP5/x86_64/update_debug/","autorefresh":true,"distro_target":"sle-12-x86_64","id":3712,"enabled":false,"description":"SLE-HA-GEO12-SP5-Debuginfo-Updates for sle-12-x86_64","name":"SLE-HA-GEO12-SP5-Debuginfo-Updates","installer_updates":false},{"name":"SLE-HA-GEO12-SP5-Pool","installer_updates":false,"description":"SLE-HA-GEO12-SP5-Pool for sle-12-x86_64","id":3713,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-HA-GEO/12-SP5/x86_64/product/","autorefresh":false,"distro_target":"sle-12-x86_64"},{"description":"SLE-HA-GEO12-SP5-Debuginfo-Pool for sle-12-x86_64","name":"SLE-HA-GEO12-SP5-Debuginfo-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-HA-GEO/12-SP5/x86_64/product_debug/","enabled":false,"id":3714},{"enabled":false,"id":3715,"distro_target":"sle-12-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-HA-GEO/12-SP5/x86_64/product_source/","installer_updates":false,"name":"SLE-HA-GEO12-SP5-Source-Pool","description":"SLE-HA-GEO12-SP5-Source-Pool for sle-12-x86_64"}],"cpe":"cpe:/o:suse:sle-ha-geo:12:sp5","product_type":"extension","recommended":false,"version":"12.5","name":"SUSE Linux Enterprise High Availability GEO Extension","offline_predecessor_ids":[1101,1107,1286],"migration_extra":false,"friendly_name":"SUSE Linux Enterprise High Availability GEO Extension 12 SP5 x86_64","release_type":null,"former_identifier":"sle-hae-geo","friendly_version":"12 SP5","extensions":[],"release_stage":"released","identifier":"sle-ha-geo","id":1886}]},{"name":"SUSE Linux Enterprise Live Patching","offline_predecessor_ids":[],"friendly_name":"SUSE Linux Enterprise Live Patching 12 SP5 x86_64","migration_extra":false,"release_type":null,"former_identifier":"sle-live-patching","recommended":false,"version":"12.5","extensions":[],"id":1888,"release_stage":"released","identifier":"sle-live-patching","friendly_version":"12 SP5","eula_url":"https://updates.suse.com/SUSE/Products/SLE-Live-Patching/12-SP5/x86_64/product.license/","arch":"x86_64","description":"

SUSE Linux Enterprise Live Patching provides packages to update critical kernel modules live in SUSE Linux Enterprise. With SUSE Linux Enterprise Live Patching, you can perform critical kernel patching without shutting down your system, reducing the need for planned downtime and increasing service availability.

","shortname":"Live-Patching","free":false,"cpe":"cpe:/o:suse:sle-live-patching:12:sp5","product_type":"extension","predecessor_ids":[1253,1536,1757],"product_class":"SLE-LP","online_predecessor_ids":[1253,1536,1757],"repositories":[{"id":3720,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Live-Patching/12-SP5/x86_64/update/","distro_target":"sle-12-x86_64","autorefresh":true,"installer_updates":false,"name":"SLE-Live-Patching12-SP5-Updates","description":"SLE-Live-Patching12-SP5-Updates for sle-12-x86_64"},{"enabled":false,"id":3721,"distro_target":"sle-12-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Live-Patching/12-SP5/x86_64/update_debug/","installer_updates":false,"name":"SLE-Live-Patching12-SP5-Debuginfo-Updates","description":"SLE-Live-Patching12-SP5-Debuginfo-Updates for sle-12-x86_64"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Live-Patching/12-SP5/x86_64/product/","autorefresh":false,"distro_target":"sle-12-x86_64","id":3722,"enabled":true,"description":"SLE-Live-Patching12-SP5-Pool for sle-12-x86_64","name":"SLE-Live-Patching12-SP5-Pool","installer_updates":false},{"autorefresh":false,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Live-Patching/12-SP5/x86_64/product_debug/","enabled":false,"id":3723,"description":"SLE-Live-Patching12-SP5-Debuginfo-Pool for sle-12-x86_64","name":"SLE-Live-Patching12-SP5-Debuginfo-Pool","installer_updates":false}]},{"recommended":false,"version":"12.5","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Software Development Kit","release_type":null,"former_identifier":"sle-sdk","friendly_name":"SUSE Linux Enterprise Software Development Kit 12 SP5 x86_64","migration_extra":false,"friendly_version":"12 SP5","extensions":[],"release_stage":"released","identifier":"sle-sdk","id":1892,"free":true,"shortname":"SDK12-SP5","description":"

SUSE Linux Enterprise Software Development Kit is the Software Development Kit for the family of SUSE Linux Enterprise products. It is a free of charge extension for partners and customers working with SUSE Linux Enterprise Server and Desktop and derived products.

Packages on the SDK are delivered without L3 support; maintenance updates will be done for critical security and critical non-security issues, and where needed to remain in sync with packages delivered in the SUSE Linux Enterprise Server and Desktop products.

Packages to rebuild SUSE Linux Enterprise Server are not part of the SUSE Linux Enterprise Software Development Kit.

","eula_url":"https://updates.suse.com/SUSE/Products/SLE-SDK/12-SP5/x86_64/product.license/","arch":"x86_64","predecessor_ids":[1223,1323,1366,1427,1630],"online_predecessor_ids":[1223,1323,1366,1427,1630],"repositories":[{"description":"SLE-SDK12-SP5-Updates for sle-12-x86_64","name":"SLE-SDK12-SP5-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-SDK/12-SP5/x86_64/update/","enabled":true,"id":3739},{"name":"SLE-SDK12-SP5-Debuginfo-Updates","installer_updates":false,"description":"SLE-SDK12-SP5-Debuginfo-Updates for sle-12-x86_64","enabled":false,"id":3740,"autorefresh":true,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-SDK/12-SP5/x86_64/update_debug/"},{"distro_target":"sle-12-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-SDK/12-SP5/x86_64/product/","enabled":true,"id":3741,"description":"SLE-SDK12-SP5-Pool for sle-12-x86_64","installer_updates":false,"name":"SLE-SDK12-SP5-Pool"},{"url":"https://updates.suse.com/SUSE/Products/SLE-SDK/12-SP5/x86_64/product_debug/","autorefresh":false,"distro_target":"sle-12-x86_64","id":3742,"enabled":false,"description":"SLE-SDK12-SP5-Debuginfo-Pool for sle-12-x86_64","name":"SLE-SDK12-SP5-Debuginfo-Pool","installer_updates":false},{"description":"SLE-SDK12-SP5-Source-Pool for sle-12-x86_64","installer_updates":false,"name":"SLE-SDK12-SP5-Source-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-SDK/12-SP5/x86_64/product_source/","distro_target":"sle-12-x86_64","autorefresh":false,"id":3743,"enabled":false}],"product_class":"MODULE","product_type":"extension","cpe":"cpe:/o:suse:sle-sdk:12:sp5"},{"release_stage":"released","identifier":"sle-we","id":1893,"extensions":[],"friendly_version":"12 SP5","friendly_name":"SUSE Linux Enterprise Workstation Extension 12 SP5 x86_64","migration_extra":false,"former_identifier":"sle-we","release_type":null,"name":"SUSE Linux Enterprise Workstation Extension","offline_predecessor_ids":[],"version":"12.5","recommended":false,"cpe":"cpe:/o:suse:sle-we:12:sp5","product_type":"extension","online_predecessor_ids":[1222,1338,1359,1431,1639],"repositories":[{"url":"https://download.nvidia.com/suse/sle12sp5/","distro_target":null,"autorefresh":true,"id":3661,"enabled":true,"description":"SLE-12-SP5-GA-Desktop-nVidia-Driver","installer_updates":false,"name":"SLE-12-SP5-GA-Desktop-nVidia-Driver"},{"description":"SLE-WE12-SP5-Updates for sle-12-x86_64","installer_updates":false,"name":"SLE-WE12-SP5-Updates","distro_target":"sle-12-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-WE/12-SP5/x86_64/update/","enabled":true,"id":3744},{"autorefresh":true,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-WE/12-SP5/x86_64/update_debug/","enabled":false,"id":3745,"description":"SLE-WE12-SP5-Debuginfo-Updates for sle-12-x86_64","name":"SLE-WE12-SP5-Debuginfo-Updates","installer_updates":false},{"installer_updates":false,"name":"SLE-WE12-SP5-Pool","description":"SLE-WE12-SP5-Pool for sle-12-x86_64","id":3746,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-WE/12-SP5/x86_64/product/","distro_target":"sle-12-x86_64","autorefresh":false},{"url":"https://updates.suse.com/SUSE/Products/SLE-WE/12-SP5/x86_64/product_debug/","autorefresh":false,"distro_target":"sle-12-x86_64","id":3747,"enabled":false,"description":"SLE-WE12-SP5-Debuginfo-Pool for sle-12-x86_64","name":"SLE-WE12-SP5-Debuginfo-Pool","installer_updates":false},{"autorefresh":false,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-WE/12-SP5/x86_64/product_source/","enabled":false,"id":3748,"description":"SLE-WE12-SP5-Source-Pool for sle-12-x86_64","name":"SLE-WE12-SP5-Source-Pool","installer_updates":false}],"product_class":"SLE-WE","predecessor_ids":[1222,1338,1359,1431,1639],"arch":"x86_64","eula_url":"https://updates.suse.com/SUSE/Products/SLE-WE/12-SP5/x86_64/product.license/","description":"SUSE Linux Enterprise Workstation Extension extends the functionality of SUSE Linux Enterprise Server with packages of SUSE Linux Enterprise Desktop, like additional desktop applications (office suite, email client, graphical editor ...) and libraries. It allows to combine both products to create a full featured Workstation.","shortname":"SLEWE12-SP5","free":false},{"predecessor_ids":[1473,1476,1479,1529,1813],"online_predecessor_ids":[1473,1476,1479,1529,1813],"repositories":[{"url":"https://updates.suse.com/SUSE/Backports/SLE-12-SP5_x86_64/standard/","autorefresh":false,"distro_target":"sle-12-x86_64","id":3864,"enabled":true,"description":"SUSE-PackageHub-12-SP5-Standard-Pool for sle-12-x86_64","name":"SUSE-PackageHub-12-SP5-Standard-Pool","installer_updates":false},{"name":"SUSE-PackageHub-12-SP5-Debuginfo","installer_updates":false,"description":"SUSE-PackageHub-12-SP5-Debuginfo for sle-12-x86_64","id":3865,"enabled":false,"url":"https://updates.suse.com/SUSE/Backports/SLE-12-SP5_x86_64/standard_debug/","autorefresh":true,"distro_target":"sle-12-x86_64"},{"name":"SUSE-PackageHub-12-SP5-Pool","installer_updates":false,"description":"SUSE-PackageHub-12-SP5-Pool for sle-12-x86_64","enabled":true,"id":3866,"autorefresh":false,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Backports/SLE-12-SP5_x86_64/product/"}],"product_class":"MODULE","cpe":"cpe:/o:suse:packagehub:12:sp5","product_type":"extension","description":"SUSE Package Hub is a free of charge extension providing access to community maintained packages built to run on SUSE Linux Enterprise Server. Built from the same sources used in the openSUSE distributions, these quality packages provide additional software to what is found in the SUSE Linux Enterprise Server product. Packages from the Package Hub are delivered without L3 support from SUSE. General updates and fixes to the packages in SUSE Package Hub are provided by the openSUSE community based on their discretion though SUSE will monitor and ensure that any known critical security issues will be addressed. Packages in the Package Hub are approved by SUSE for use with SUSE Linux Enterprise Server 12 and to not interfere with the supportability of SUSE Linux Enterprise Server it's modules and extensions. For more information about SUSE Package Hub please visit https://packagehub.suse.com.","shortname":"SUSE-PackageHub-12-SP5","free":true,"eula_url":"","arch":"x86_64","friendly_version":"12 SP5","extensions":[],"id":1915,"release_stage":"released","identifier":"PackageHub","recommended":false,"version":"12.5","name":"SUSE Package Hub","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"SUSE Package Hub 12 SP5 x86_64","former_identifier":"PackageHub","release_type":null},{"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Server BCL 12 SP5 x86_64","former_identifier":"SLES-BCL","release_type":null,"name":"SUSE Linux Enterprise Server BCL","offline_predecessor_ids":[],"version":"12.5","recommended":false,"release_stage":"released","identifier":"SLES-BCL","id":2000,"extensions":[],"friendly_version":"12 SP5","arch":"x86_64","eula_url":"","description":"SUSE Linux Enterprise offers a comprehensive suite of products built on a single code base. The platform addresses business needs from the smallest thin-client devices to the world's most powerful high-performance computing and mainframe servers. SUSE Linux Enterprise offers common management tools and technology certifications across the platform, and each product is enterprise-class.","shortname":"SLES12-SP5 BCL","free":false,"cpe":"cpe:/o:suse:sles-bcl:12:sp5","product_type":"extension","repositories":[{"url":"https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-SP5-BCL/x86_64/update/","distro_target":"sle-12-x86_64","autorefresh":true,"id":4281,"enabled":true,"description":"SLES12-SP5-BCL-Updates for sle-12-x86_64","installer_updates":false,"name":"SLES12-SP5-BCL-Updates"},{"id":4282,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-SP5-BCL/x86_64/update_debug/","autorefresh":true,"distro_target":"sle-12-x86_64","name":"SLES12-SP5-BCL-Debuginfo-Updates","installer_updates":false,"description":"SLES12-SP5-BCL-Debuginfo-Updates for sle-12-x86_64"},{"url":"https://updates.suse.com/SUSE/Products/SLE-SERVER/12-SP5-BCL/x86_64/product/","distro_target":"sle-12-x86_64","autorefresh":false,"id":4283,"enabled":true,"description":"SLES12-SP5-BCL-Pool for sle-12-x86_64","installer_updates":false,"name":"SLES12-SP5-BCL-Pool"},{"description":"SLES12-SP5-BCL-Debuginfo-Pool for sle-12-x86_64","installer_updates":false,"name":"SLES12-SP5-BCL-Debuginfo-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-SERVER/12-SP5-BCL/x86_64/product_debug/","distro_target":"sle-12-x86_64","autorefresh":false,"id":4284,"enabled":false},{"description":"SLES12-SP5-BCL-Source-Pool for sle-12-x86_64","installer_updates":false,"name":"SLES12-SP5-BCL-Source-Pool","distro_target":"sle-12-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-SERVER/12-SP5-BCL/x86_64/product_source/","enabled":false,"id":4285}],"online_predecessor_ids":[],"product_class":"BCL-X86","predecessor_ids":[]},{"description":"SUSE Linux Enterprise Real Time 12 SP5.","shortname":"SLERT12 SP5","free":false,"arch":"x86_64","eula_url":"https://updates.suse.com/SUSE/Products/SLE-RT/12-SP5/x86_64/product.license/","online_predecessor_ids":[1924],"product_class":"SUSE_RT","repositories":[{"description":"SLE-RT12-SP5-Updates for sle-12-x86_64","installer_updates":false,"name":"SLE-RT12-SP5-Updates","url":"https://updates.suse.com/SUSE/Updates/SLE-RT/12-SP5/x86_64/update/","distro_target":"sle-12-x86_64","autorefresh":true,"id":4307,"enabled":true},{"enabled":false,"id":4308,"distro_target":"sle-12-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-RT/12-SP5/x86_64/update_debug/","installer_updates":false,"name":"SLE-RT12-SP5-Debuginfo-Updates","description":"SLE-RT12-SP5-Debuginfo-Updates for sle-12-x86_64"},{"name":"SLE-RT12-SP5-Pool","installer_updates":false,"description":"SLE-RT12-SP5-Pool for sle-12-x86_64","id":4309,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-RT/12-SP5/x86_64/product/","autorefresh":false,"distro_target":"sle-12-x86_64"},{"description":"SLE-RT12-SP5-Debuginfo-Pool for sle-12-x86_64","name":"SLE-RT12-SP5-Debuginfo-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-RT/12-SP5/x86_64/product_debug/","enabled":false,"id":4310}],"predecessor_ids":[1924],"cpe":"cpe:/o:suse:suse-linux-enterprise-rt:12:sp5","product_type":"extension","version":"12.5","recommended":false,"friendly_name":"SUSE Linux Enterprise Real Time 12 SP5 x86_64","migration_extra":false,"former_identifier":"SUSE-Linux-Enterprise-RT","release_type":null,"name":"SUSE Linux Enterprise Real Time","offline_predecessor_ids":[],"friendly_version":"12 SP5","release_stage":"released","id":2006,"identifier":"SUSE-Linux-Enterprise-RT","extensions":[]}],"friendly_version":"12 SP5","migration_extra":false,"friendly_name":"SUSE Linux Enterprise Server 12 SP5 x86_64","release_type":null,"former_identifier":"SLES","name":"SUSE Linux Enterprise Server","offline_predecessor_ids":[690,769,814,824,1300],"version":"12.5","recommended":false,"cpe":"cpe:/o:suse:sles:12:sp5","product_type":"base","product_class":"7261","online_predecessor_ids":[1117,1322,1357,1421,1625],"repositories":[{"id":3647,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-SP5/x86_64/update/","distro_target":"sle-12-x86_64","autorefresh":true,"installer_updates":false,"name":"SLES12-SP5-Updates","description":"SLES12-SP5-Updates for sle-12-x86_64"},{"description":"SLES12-SP5-Debuginfo-Updates for sle-12-x86_64","name":"SLES12-SP5-Debuginfo-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-SP5/x86_64/update_debug/","enabled":false,"id":3649},{"description":"SLES12-SP5-Installer-Updates for sle-12-x86_64","installer_updates":true,"name":"SLES12-SP5-Installer-Updates","url":"https://updates.suse.com/SUSE/Updates/SLE-SERVER-INSTALLER/12-SP5/x86_64/update/","distro_target":"sle-12-x86_64","autorefresh":true,"id":3650,"enabled":false},{"installer_updates":false,"name":"SLES12-SP5-Pool","description":"SLES12-SP5-Pool for sle-12-x86_64","enabled":true,"id":3652,"distro_target":"sle-12-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-SERVER/12-SP5/x86_64/product/"},{"enabled":false,"id":3654,"distro_target":"sle-12-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-SERVER/12-SP5/x86_64/product_debug/","installer_updates":false,"name":"SLES12-SP5-Debuginfo-Pool","description":"SLES12-SP5-Debuginfo-Pool for sle-12-x86_64"},{"description":"SLES12-SP5-Source-Pool for sle-12-x86_64","name":"SLES12-SP5-Source-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-SERVER/12-SP5/x86_64/product_source/","autorefresh":false,"distro_target":"sle-12-x86_64","id":3656,"enabled":false}],"predecessor_ids":[1117,1322,1357,1421,1625],"arch":"x86_64","eula_url":"https://updates.suse.com/SUSE/Products/SLE-SERVER/12-SP5/x86_64/product.license/","description":"SUSE Linux Enterprise offers a comprehensive suite of products built on a single code base. The platform addresses business needs from the smallest thin-client devices to the world's most powerful high-performance computing and mainframe servers. SUSE Linux Enterprise offers common management tools and technology certifications across the platform, and each product is enterprise-class.","shortname":"SLES12-SP5","free":false},{"version":"12.5","recommended":false,"release_type":null,"former_identifier":"SUSE_SLES_SAP","friendly_name":"SUSE Linux Enterprise Server for SAP Applications 12 SP5 ppc64le","migration_extra":false,"offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Server for SAP Applications","friendly_version":"12 SP5","release_stage":"released","identifier":"SLES_SAP","id":1879,"extensions":[{"version":"12","recommended":false,"release_type":null,"former_identifier":"sle-module-legacy","friendly_name":"Legacy Module 12 ppc64le","migration_extra":false,"offline_predecessor_ids":[],"name":"Legacy Module","friendly_version":"12","release_stage":"released","id":1148,"identifier":"sle-module-legacy","extensions":[],"free":true,"description":"

The Legacy Module helps you migrating applications from SUSE Linux Enterprise 10 and 11 and other systems to SUSE Linux Enterprise 12, by providing packages which are discontinued on SUSE Linux Enterprise Server, such as: sendmail, syslog-ng, IBM Java6, and a number of libraries (for example openssl-0.9.8).

Access to the Legacy Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself. Packages in the this module are usually supported for at most three years. Support for Sendmail and IBM Java 6 will end in September 2017 the latest.

","shortname":"Legacy-Module","arch":"ppc64le","eula_url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/12/ppc64le/product.license/","online_predecessor_ids":[],"product_class":"MODULE","repositories":[{"name":"SLE-Module-Legacy12-Updates","installer_updates":false,"description":"SLE-Module-Legacy12-Updates for sle-12-ppc64le","id":1668,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/12/ppc64le/update/","autorefresh":true,"distro_target":"sle-12-ppc64le"},{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/12/ppc64le/update_debug/","distro_target":"sle-12-ppc64le","autorefresh":true,"id":1669,"enabled":false,"description":"SLE-Module-Legacy12-Debuginfo-Updates for sle-12-ppc64le","installer_updates":false,"name":"SLE-Module-Legacy12-Debuginfo-Updates"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/12/ppc64le/product/","autorefresh":false,"distro_target":"sle-12-ppc64le","id":1670,"enabled":true,"description":"SLE-Module-Legacy12-Pool for sle-12-ppc64le","name":"SLE-Module-Legacy12-Pool","installer_updates":false},{"description":"SLE-Module-Legacy12-Debuginfo-Pool for sle-12-ppc64le","installer_updates":false,"name":"SLE-Module-Legacy12-Debuginfo-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/12/ppc64le/product_debug/","distro_target":"sle-12-ppc64le","autorefresh":false,"id":1671,"enabled":false},{"id":1987,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/12/ppc64le/product_source/","autorefresh":false,"distro_target":"sle-12-ppc64le","name":"SLE-Module-Legacy12-Source-Pool","installer_updates":false,"description":"SLE-Module-Legacy12-Source-Pool for sle-12-ppc64le"}],"predecessor_ids":[],"product_type":"module","cpe":"cpe:/o:suse:sle-module-legacy:12"},{"predecessor_ids":[],"online_predecessor_ids":[],"repositories":[{"description":"SLE-Module-Web-Scripting12-Updates for sle-12-ppc64le","installer_updates":false,"name":"SLE-Module-Web-Scripting12-Updates","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/12/ppc64le/update/","distro_target":"sle-12-ppc64le","autorefresh":true,"id":1680,"enabled":true},{"name":"SLE-Module-Web-Scripting12-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-Web-Scripting12-Debuginfo-Updates for sle-12-ppc64le","id":1681,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/12/ppc64le/update_debug/","autorefresh":true,"distro_target":"sle-12-ppc64le"},{"installer_updates":false,"name":"SLE-Module-Web-Scripting12-Pool","description":"SLE-Module-Web-Scripting12-Pool for sle-12-ppc64le","enabled":true,"id":1682,"distro_target":"sle-12-ppc64le","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/12/ppc64le/product/"},{"name":"SLE-Module-Web-Scripting12-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-Web-Scripting12-Debuginfo-Pool for sle-12-ppc64le","enabled":false,"id":1683,"autorefresh":false,"distro_target":"sle-12-ppc64le","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/12/ppc64le/product_debug/"},{"name":"SLE-Module-Web-Scripting12-Source-Pool","installer_updates":false,"description":"SLE-Module-Web-Scripting12-Source-Pool for sle-12-ppc64le","id":1990,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/12/ppc64le/product_source/","autorefresh":false,"distro_target":"sle-12-ppc64le"}],"product_class":"MODULE","product_type":"module","cpe":"cpe:/o:suse:sle-module-web-scripting:12","free":true,"shortname":"Web-and-Scripting-Module","description":"

The SUSE Linux Enterprise Web and Scripting Module delivers a comprehensive suite of scripting languages, frameworks, and related tools helping developers and systems administrators accelerate the creation of stable, modern web applications, using dynamic languages, such as PHP, Ruby on Rails, and Python.

Access to the Web and Scripting Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself: Package versions in the this module are usually supported for at most three years. We are planning to release more recent versions on a schedule of approximately 18 month; the exact dates may differ per package.

","eula_url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/12/ppc64le/product.license/","arch":"ppc64le","friendly_version":"12","extensions":[],"release_stage":"released","id":1151,"identifier":"sle-module-web-scripting","recommended":false,"version":"12","offline_predecessor_ids":[],"name":"Web and Scripting Module","former_identifier":"sle-module-web-scripting","release_type":null,"friendly_name":"Web and Scripting Module 12 ppc64le","migration_extra":false},{"product_type":"module","cpe":"cpe:/o:suse:sle-module-public-cloud:12","predecessor_ids":[],"online_predecessor_ids":[],"repositories":[{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/12/ppc64le/update/","autorefresh":true,"distro_target":"sle-12-ppc64le","id":1692,"enabled":true,"description":"SLE-Module-Public-Cloud12-Updates for sle-12-ppc64le","name":"SLE-Module-Public-Cloud12-Updates","installer_updates":false},{"description":"SLE-Module-Public-Cloud12-Debuginfo-Updates for sle-12-ppc64le","installer_updates":false,"name":"SLE-Module-Public-Cloud12-Debuginfo-Updates","distro_target":"sle-12-ppc64le","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/12/ppc64le/update_debug/","enabled":false,"id":1693},{"enabled":true,"id":1694,"autorefresh":false,"distro_target":"sle-12-ppc64le","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/12/ppc64le/product/","name":"SLE-Module-Public-Cloud12-Pool","installer_updates":false,"description":"SLE-Module-Public-Cloud12-Pool for sle-12-ppc64le"},{"enabled":false,"id":1695,"distro_target":"sle-12-ppc64le","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/12/ppc64le/product_debug/","installer_updates":false,"name":"SLE-Module-Public-Cloud12-Debuginfo-Pool","description":"SLE-Module-Public-Cloud12-Debuginfo-Pool for sle-12-ppc64le"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/12/ppc64le/product_source/","autorefresh":false,"distro_target":"sle-12-ppc64le","id":1993,"enabled":false,"description":"SLE-Module-Public-Cloud12-Source-Pool for sle-12-ppc64le","name":"SLE-Module-Public-Cloud12-Source-Pool","installer_updates":false}],"product_class":"MODULE","eula_url":"","arch":"ppc64le","free":true,"description":"

The Public Cloud Module is a collection of tools that enables you to create and manage cloud images from the commandline on SUSE Linux Enterprise Server. When building your own images with KIWI or SUSE Studio, initialization code specific to the target cloud is included in that image.

Access to the Public Cloud Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself; please check the Release Notes for further details.

","shortname":"Public-Cloud-Module","extensions":[],"identifier":"sle-module-public-cloud","release_stage":"released","id":1218,"friendly_version":"12","offline_predecessor_ids":[],"name":"Public Cloud Module","former_identifier":"sle-module-public-cloud","release_type":null,"migration_extra":false,"friendly_name":"Public Cloud Module 12 ppc64le","recommended":false,"version":"12"},{"friendly_version":"12","id":1249,"release_stage":"released","identifier":"ibm-dlpar-sdk","extensions":[],"version":"12","recommended":false,"former_identifier":"ibm-dlpar-sdk","release_type":null,"friendly_name":"IBM DLPAR SDK for SLE 12 ppc64le","migration_extra":false,"offline_predecessor_ids":[],"name":"IBM DLPAR SDK for SLE","product_class":"SLES-PPC","online_predecessor_ids":[],"repositories":[{"installer_updates":false,"name":"IBM-DLPAR-SDK","description":"IBM-DLPAR-SDK","enabled":true,"id":4429,"distro_target":null,"autorefresh":true,"url":"https://public.dhe.ibm.com/software/server/POWER/Linux/toolchain/at/suse/SLES_12/"}],"predecessor_ids":[],"product_type":"extension","cpe":"cpe:/o:suse:ibm-dlpar-sdk:12","free":true,"shortname":"IBMDLPS12","description":"IBM DLPAR SDK for SLE 12","arch":"ppc64le","eula_url":""},{"migration_extra":false,"friendly_name":"IBM DLPAR Utils for SLE 12 ppc64le","release_type":null,"former_identifier":"ibm-dlpar-utils","name":"IBM DLPAR Utils for SLE","offline_predecessor_ids":[],"version":"12","recommended":false,"release_stage":"released","identifier":"ibm-dlpar-utils","id":1250,"extensions":[],"friendly_version":"12","arch":"ppc64le","eula_url":"https://public.dhe.ibm.com/software/server/POWER/Linux/yum/OSS/SLES/12/ppc64le.license/","description":"IBM DLPAR Utils for SLE 12","shortname":"IBMDLPU12","free":true,"cpe":"cpe:/o:suse:ibm-dlpar-utils:12","product_type":"extension","online_predecessor_ids":[],"product_class":"SLES-PPC","repositories":[{"description":"IBM-DLPAR-utils","installer_updates":false,"name":"IBM-DLPAR-utils","url":"https://public.dhe.ibm.com/software/server/POWER/Linux/yum/OSS/SLES/12/ppc64le/","distro_target":null,"autorefresh":true,"id":6216,"enabled":true}],"predecessor_ids":[]},{"cpe":"cpe:/o:suse:sle-module-adv-systems-management:12","product_type":"module","product_class":"MODULE","online_predecessor_ids":[],"repositories":[{"name":"SLE-Module-Adv-Systems-Management12-Updates","installer_updates":false,"description":"SLE-Module-Adv-Systems-Management12-Updates for sle-12-ppc64le","id":1762,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Adv-Systems-Management/12/ppc64le/update/","autorefresh":true,"distro_target":"sle-12-ppc64le"},{"description":"SLE-Module-Adv-Systems-Management12-Debuginfo-Updates for sle-12-ppc64le","name":"SLE-Module-Adv-Systems-Management12-Debuginfo-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-12-ppc64le","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Adv-Systems-Management/12/ppc64le/update_debug/","enabled":false,"id":1763},{"name":"SLE-Module-Adv-Systems-Management12-Pool","installer_updates":false,"description":"SLE-Module-Adv-Systems-Management12-Pool for sle-12-ppc64le","enabled":true,"id":1764,"autorefresh":false,"distro_target":"sle-12-ppc64le","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Adv-Systems-Management/12/ppc64le/product/"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Adv-Systems-Management/12/ppc64le/product_debug/","distro_target":"sle-12-ppc64le","autorefresh":false,"id":1765,"enabled":false,"description":"SLE-Module-Adv-Systems-Management12-Debuginfo-Pool for sle-12-ppc64le","installer_updates":false,"name":"SLE-Module-Adv-Systems-Management12-Debuginfo-Pool"},{"autorefresh":false,"distro_target":"sle-12-ppc64le","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Adv-Systems-Management/12/ppc64le/product_source/","enabled":false,"id":1996,"description":"SLE-Module-Adv-Systems-Management12-Source-Pool for sle-12-ppc64le","name":"SLE-Module-Adv-Systems-Management12-Source-Pool","installer_updates":false}],"predecessor_ids":[],"arch":"ppc64le","eula_url":"","shortname":"Adv-Sys-Mgmt-Module","description":"

This Module contains current versions of the popular configuration management frameworks Puppet and CFEngine as well as the new systems management toolbox called machinery.

The machinery tool will be frequently updated and is SUSE's upcoming systems management toolbox for inspecting and validating systems remotely, storing their system description and creating new systems to deploy them in datacenters and clouds.

","free":true,"release_stage":"released","id":1294,"identifier":"sle-module-adv-systems-management","extensions":[],"friendly_version":"12","friendly_name":"Advanced Systems Management Module 12 ppc64le","migration_extra":false,"release_type":null,"former_identifier":"sle-module-adv-systems-management","name":"Advanced Systems Management Module","offline_predecessor_ids":[],"version":"12","recommended":false},{"description":"Via this Module you will have access to a more recent GCC and Toolchain in addition to the default compiler of SUSE Linux Enterprise. Access to the Toolchain Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself. Please check the Release Notes for further details.","shortname":"Toolchain-Module","free":true,"eula_url":"","arch":"ppc64le","predecessor_ids":[],"repositories":[{"name":"SLE-Module-Toolchain12-Updates","installer_updates":false,"description":"SLE-Module-Toolchain12-Updates for sle-12-ppc64le","enabled":true,"id":1895,"autorefresh":true,"distro_target":"sle-12-ppc64le","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Toolchain/12/ppc64le/update/"},{"description":"SLE-Module-Toolchain12-Debuginfo-Updates for sle-12-ppc64le","installer_updates":false,"name":"SLE-Module-Toolchain12-Debuginfo-Updates","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Toolchain/12/ppc64le/update_debug/","distro_target":"sle-12-ppc64le","autorefresh":true,"id":1896,"enabled":false},{"installer_updates":false,"name":"SLE-Module-Toolchain12-Pool","description":"SLE-Module-Toolchain12-Pool for sle-12-ppc64le","enabled":true,"id":1897,"distro_target":"sle-12-ppc64le","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Toolchain/12/ppc64le/product/"},{"enabled":false,"id":1898,"distro_target":"sle-12-ppc64le","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Toolchain/12/ppc64le/product_debug/","installer_updates":false,"name":"SLE-Module-Toolchain12-Debuginfo-Pool","description":"SLE-Module-Toolchain12-Debuginfo-Pool for sle-12-ppc64le"}],"online_predecessor_ids":[],"product_class":"MODULE","cpe":"cpe:/o:suse:sle-module-toolchain:12","product_type":"module","recommended":false,"version":"12","name":"Toolchain Module","offline_predecessor_ids":[],"friendly_name":"Toolchain Module 12 ppc64le","migration_extra":false,"release_type":null,"former_identifier":"sle-module-toolchain","friendly_version":"12","extensions":[],"release_stage":"released","id":1339,"identifier":"sle-module-toolchain"},{"shortname":"Containers-Module","description":"

This Module contains several packages revolving around containers and related tools.

","free":true,"eula_url":"","arch":"ppc64le","predecessor_ids":[],"product_class":"MODULE","online_predecessor_ids":[],"repositories":[{"id":1972,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/12/ppc64le/update/","distro_target":"sle-12-ppc64le","autorefresh":true,"installer_updates":false,"name":"SLE-Module-Containers12-Updates","description":"SLE-Module-Containers12-Updates for sle-12-ppc64le"},{"description":"SLE-Module-Containers12-Debuginfo-Updates for sle-12-ppc64le","installer_updates":false,"name":"SLE-Module-Containers12-Debuginfo-Updates","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/12/ppc64le/update_debug/","distro_target":"sle-12-ppc64le","autorefresh":true,"id":1973,"enabled":false},{"description":"SLE-Module-Containers12-Pool for sle-12-ppc64le","name":"SLE-Module-Containers12-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/12/ppc64le/product/","autorefresh":false,"distro_target":"sle-12-ppc64le","id":1974,"enabled":true},{"description":"SLE-Module-Containers12-Debuginfo-Pool for sle-12-ppc64le","name":"SLE-Module-Containers12-Debuginfo-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-12-ppc64le","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/12/ppc64le/product_debug/","enabled":false,"id":1975},{"installer_updates":false,"name":"SLE-Module-Containers12-Source-Pool","description":"SLE-Module-Containers12-Source-Pool for sle-12-ppc64le","enabled":false,"id":1976,"distro_target":"sle-12-ppc64le","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/12/ppc64le/product_source/"}],"cpe":"cpe:/o:suse:sle-module-containers:12","product_type":"module","recommended":false,"version":"12","name":"Containers Module","offline_predecessor_ids":[],"friendly_name":"Containers Module 12 ppc64le","migration_extra":false,"release_type":null,"former_identifier":"sle-module-containers","friendly_version":"12","extensions":[],"release_stage":"released","id":1353,"identifier":"sle-module-containers"},{"arch":"ppc64le","eula_url":"https://updates.suse.com/SUSE/Products/SLE-Live-Patching/12-SP5/ppc64le/product.license/","description":"

SUSE Linux Enterprise Live Patching provides packages to update critical kernel modules live in SUSE Linux Enterprise. With SUSE Linux Enterprise Live Patching, you can perform critical kernel patching without shutting down your system, reducing the need for planned downtime and increasing service availability.

","shortname":"Live-Patching","free":false,"cpe":"cpe:/o:suse:sle-live-patching:12:sp5","product_type":"extension","online_predecessor_ids":[1537,1756,1860],"product_class":"SLE-LP-PPC","repositories":[{"description":"SLE-Live-Patching12-SP5-Updates for sle-12-ppc64le","installer_updates":false,"name":"SLE-Live-Patching12-SP5-Updates","url":"https://updates.suse.com/SUSE/Updates/SLE-Live-Patching/12-SP5/ppc64le/update/","distro_target":"sle-12-ppc64le","autorefresh":true,"id":3716,"enabled":true},{"description":"SLE-Live-Patching12-SP5-Debuginfo-Updates for sle-12-ppc64le","installer_updates":false,"name":"SLE-Live-Patching12-SP5-Debuginfo-Updates","url":"https://updates.suse.com/SUSE/Updates/SLE-Live-Patching/12-SP5/ppc64le/update_debug/","distro_target":"sle-12-ppc64le","autorefresh":true,"id":3717,"enabled":false},{"description":"SLE-Live-Patching12-SP5-Pool for sle-12-ppc64le","installer_updates":false,"name":"SLE-Live-Patching12-SP5-Pool","distro_target":"sle-12-ppc64le","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Live-Patching/12-SP5/ppc64le/product/","enabled":true,"id":3718},{"id":3719,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Live-Patching/12-SP5/ppc64le/product_debug/","autorefresh":false,"distro_target":"sle-12-ppc64le","name":"SLE-Live-Patching12-SP5-Debuginfo-Pool","installer_updates":false,"description":"SLE-Live-Patching12-SP5-Debuginfo-Pool for sle-12-ppc64le"}],"predecessor_ids":[1537,1756,1860],"friendly_name":"SUSE Linux Enterprise Live Patching 12 SP5 ppc64le","migration_extra":false,"release_type":null,"former_identifier":"sle-live-patching","name":"SUSE Linux Enterprise Live Patching","offline_predecessor_ids":[],"version":"12.5","recommended":false,"identifier":"sle-live-patching","release_stage":"released","id":1887,"extensions":[],"friendly_version":"12 SP5"},{"friendly_version":"12 SP5","extensions":[],"release_stage":"released","identifier":"sle-sdk","id":1890,"recommended":false,"version":"12.5","name":"SUSE Linux Enterprise Software Development Kit","offline_predecessor_ids":[],"friendly_name":"SUSE Linux Enterprise Software Development Kit 12 SP5 ppc64le","migration_extra":false,"former_identifier":"sle-sdk","release_type":null,"predecessor_ids":[1145,1343,1364,1428,1631],"product_class":"MODULE","online_predecessor_ids":[1145,1343,1364,1428,1631],"repositories":[{"installer_updates":false,"name":"SLE-SDK12-SP5-Updates","description":"SLE-SDK12-SP5-Updates for sle-12-ppc64le","enabled":true,"id":3729,"distro_target":"sle-12-ppc64le","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-SDK/12-SP5/ppc64le/update/"},{"url":"https://updates.suse.com/SUSE/Updates/SLE-SDK/12-SP5/ppc64le/update_debug/","autorefresh":true,"distro_target":"sle-12-ppc64le","id":3730,"enabled":false,"description":"SLE-SDK12-SP5-Debuginfo-Updates for sle-12-ppc64le","name":"SLE-SDK12-SP5-Debuginfo-Updates","installer_updates":false},{"description":"SLE-SDK12-SP5-Pool for sle-12-ppc64le","name":"SLE-SDK12-SP5-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-SDK/12-SP5/ppc64le/product/","autorefresh":false,"distro_target":"sle-12-ppc64le","id":3731,"enabled":true},{"enabled":false,"id":3732,"autorefresh":false,"distro_target":"sle-12-ppc64le","url":"https://updates.suse.com/SUSE/Products/SLE-SDK/12-SP5/ppc64le/product_debug/","name":"SLE-SDK12-SP5-Debuginfo-Pool","installer_updates":false,"description":"SLE-SDK12-SP5-Debuginfo-Pool for sle-12-ppc64le"},{"description":"SLE-SDK12-SP5-Source-Pool for sle-12-ppc64le","installer_updates":false,"name":"SLE-SDK12-SP5-Source-Pool","distro_target":"sle-12-ppc64le","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-SDK/12-SP5/ppc64le/product_source/","enabled":false,"id":3733}],"cpe":"cpe:/o:suse:sle-sdk:12:sp5","product_type":"extension","description":"

SUSE Linux Enterprise Software Development Kit is the Software Development Kit for the family of SUSE Linux Enterprise products. It is a free of charge extension for partners and customers working with SUSE Linux Enterprise Server and Desktop and derived products.

Packages on the SDK are delivered without L3 support; maintenance updates will be done for critical security and critical non-security issues, and where needed to remain in sync with packages delivered in the SUSE Linux Enterprise Server and Desktop products.

Packages to rebuild SUSE Linux Enterprise Server are not part of the SUSE Linux Enterprise Software Development Kit.

","shortname":"SDK12-SP5","free":true,"eula_url":"https://updates.suse.com/SUSE/Products/SLE-SDK/12-SP5/ppc64le/product.license/","arch":"ppc64le"},{"friendly_version":"12 SP5","identifier":"PackageHub","release_stage":"released","id":1913,"extensions":[],"version":"12.5","recommended":false,"friendly_name":"SUSE Package Hub 12 SP5 ppc64le","migration_extra":false,"release_type":null,"former_identifier":"PackageHub","name":"SUSE Package Hub","offline_predecessor_ids":[],"repositories":[{"url":"https://updates.suse.com/SUSE/Backports/SLE-12-SP5_ppc64le/standard/","distro_target":"sle-12-ppc64le","autorefresh":false,"id":3858,"enabled":true,"description":"SUSE-PackageHub-12-SP5-Standard-Pool for sle-12-ppc64le","installer_updates":false,"name":"SUSE-PackageHub-12-SP5-Standard-Pool"},{"name":"SUSE-PackageHub-12-SP5-Debuginfo","installer_updates":false,"description":"SUSE-PackageHub-12-SP5-Debuginfo for sle-12-ppc64le","id":3859,"enabled":false,"url":"https://updates.suse.com/SUSE/Backports/SLE-12-SP5_ppc64le/standard_debug/","autorefresh":true,"distro_target":"sle-12-ppc64le"},{"description":"SUSE-PackageHub-12-SP5-Pool for sle-12-ppc64le","name":"SUSE-PackageHub-12-SP5-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Backports/SLE-12-SP5_ppc64le/product/","autorefresh":false,"distro_target":"sle-12-ppc64le","id":3860,"enabled":true}],"online_predecessor_ids":[1475,1478,1481,1531,1811],"product_class":"MODULE","predecessor_ids":[1475,1478,1481,1531,1811],"cpe":"cpe:/o:suse:packagehub:12:sp5","product_type":"extension","description":"SUSE Package Hub is a free of charge extension providing access to community maintained packages built to run on SUSE Linux Enterprise Server. Built from the same sources used in the openSUSE distributions, these quality packages provide additional software to what is found in the SUSE Linux Enterprise Server product. Packages from the Package Hub are delivered without L3 support from SUSE. General updates and fixes to the packages in SUSE Package Hub are provided by the openSUSE community based on their discretion though SUSE will monitor and ensure that any known critical security issues will be addressed. Packages in the Package Hub are approved by SUSE for use with SUSE Linux Enterprise Server 12 and to not interfere with the supportability of SUSE Linux Enterprise Server it's modules and extensions. For more information about SUSE Package Hub please visit https://packagehub.suse.com.","shortname":"SUSE-PackageHub-12-SP5","free":true,"arch":"ppc64le","eula_url":""}],"free":false,"shortname":"SLE-12-SP5-SAP","description":"SUSE LINUX Enterprise Server 12 SP5 for SAP Applications","arch":"ppc64le","eula_url":"https://updates.suse.com/SUSE/Products/SLE-SAP/12-SP5/ppc64le/product.license/","online_predecessor_ids":[1521,1572,1754],"repositories":[{"enabled":true,"id":3664,"distro_target":"sle-12-ppc64le","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-SP5/ppc64le/update/","installer_updates":false,"name":"SLES12-SP5-Updates","description":"SLES12-SP5-Updates for sle-12-ppc64le"},{"installer_updates":false,"name":"SLES12-SP5-Debuginfo-Updates","description":"SLES12-SP5-Debuginfo-Updates for sle-12-ppc64le","enabled":false,"id":3665,"distro_target":"sle-12-ppc64le","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-SP5/ppc64le/update_debug/"},{"name":"SLES12-SP5-Pool","installer_updates":false,"description":"SLES12-SP5-Pool for sle-12-ppc64le","id":3667,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-SERVER/12-SP5/ppc64le/product/","autorefresh":false,"distro_target":"sle-12-ppc64le"},{"distro_target":"sle-12-ppc64le","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-SERVER/12-SP5/ppc64le/product_debug/","enabled":false,"id":3668,"description":"SLES12-SP5-Debuginfo-Pool for sle-12-ppc64le","installer_updates":false,"name":"SLES12-SP5-Debuginfo-Pool"},{"id":3669,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-SERVER/12-SP5/ppc64le/product_source/","distro_target":"sle-12-ppc64le","autorefresh":false,"installer_updates":false,"name":"SLES12-SP5-Source-Pool","description":"SLES12-SP5-Source-Pool for sle-12-ppc64le"},{"description":"SLE-12-SP5-SAP-Updates for sle-12-ppc64le","installer_updates":false,"name":"SLE-12-SP5-SAP-Updates","url":"https://updates.suse.com/SUSE/Updates/SLE-SAP/12-SP5/ppc64le/update/","distro_target":"sle-12-ppc64le","autorefresh":true,"id":3676,"enabled":true},{"installer_updates":false,"name":"SLE-HA12-SP5-Updates","description":"SLE-HA12-SP5-Updates for sle-12-ppc64le","id":3677,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-HA/12-SP5/ppc64le/update/","distro_target":"sle-12-ppc64le","autorefresh":true},{"name":"SLE-12-SP5-SAP-Debuginfo-Updates","installer_updates":false,"description":"SLE-12-SP5-SAP-Debuginfo-Updates for sle-12-ppc64le","id":3678,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-SAP/12-SP5/ppc64le/update_debug/","autorefresh":true,"distro_target":"sle-12-ppc64le"},{"id":3679,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-HA/12-SP5/ppc64le/update_debug/","autorefresh":true,"distro_target":"sle-12-ppc64le","name":"SLE-HA12-SP5-Debuginfo-Updates","installer_updates":false,"description":"SLE-HA12-SP5-Debuginfo-Updates for sle-12-ppc64le"},{"url":"https://updates.suse.com/SUSE/Products/SLE-SAP/12-SP5/ppc64le/product/","distro_target":"sle-12-ppc64le","autorefresh":false,"id":3680,"enabled":true,"description":"SLE12-SP5-SAP-Pool for sle-12-ppc64le","installer_updates":false,"name":"SLE12-SP5-SAP-Pool"},{"name":"SLE-HA12-SP5-Pool","installer_updates":false,"description":"SLE-HA12-SP5-Pool for sle-12-ppc64le","id":3681,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-HA/12-SP5/ppc64le/product/","autorefresh":false,"distro_target":"sle-12-ppc64le"},{"description":"SLE12-SP5-SAP-Debuginfo-Pool for sle-12-ppc64le","name":"SLE12-SP5-SAP-Debuginfo-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-SAP/12-SP5/ppc64le/product_debug/","autorefresh":false,"distro_target":"sle-12-ppc64le","id":3682,"enabled":false},{"autorefresh":false,"distro_target":"sle-12-ppc64le","url":"https://updates.suse.com/SUSE/Products/SLE-HA/12-SP5/ppc64le/product_debug/","enabled":false,"id":3683,"description":"SLE-HA12-SP5-Debuginfo-Pool for sle-12-ppc64le","name":"SLE-HA12-SP5-Debuginfo-Pool","installer_updates":false},{"description":"SLE12-SP5-SAP-Source-Pool for sle-12-ppc64le","installer_updates":false,"name":"SLE12-SP5-SAP-Source-Pool","distro_target":"sle-12-ppc64le","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-SAP/12-SP5/ppc64le/product_source/","enabled":false,"id":3684},{"installer_updates":false,"name":"SLE-HA12-SP5-Source-Pool","description":"SLE-HA12-SP5-Source-Pool for sle-12-ppc64le","id":3685,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-HA/12-SP5/ppc64le/product_source/","distro_target":"sle-12-ppc64le","autorefresh":false}],"product_class":"AiO-PPC","predecessor_ids":[1521,1572,1754],"product_type":"base","cpe":"cpe:/o:suse:sles_sap:12:sp5"},{"friendly_version":"12 SP5","extensions":[{"product_class":"MODULE","online_predecessor_ids":[],"repositories":[{"name":"SLE-Module-Legacy12-Updates","installer_updates":false,"description":"SLE-Module-Legacy12-Updates for sle-12-x86_64","id":1676,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/12/x86_64/update/","autorefresh":true,"distro_target":"sle-12-x86_64"},{"autorefresh":true,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/12/x86_64/update_debug/","enabled":false,"id":1677,"description":"SLE-Module-Legacy12-Debuginfo-Updates for sle-12-x86_64","name":"SLE-Module-Legacy12-Debuginfo-Updates","installer_updates":false},{"name":"SLE-Module-Legacy12-Pool","installer_updates":false,"description":"SLE-Module-Legacy12-Pool for sle-12-x86_64","enabled":true,"id":1678,"autorefresh":false,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/12/x86_64/product/"},{"id":1679,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/12/x86_64/product_debug/","autorefresh":false,"distro_target":"sle-12-x86_64","name":"SLE-Module-Legacy12-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-Legacy12-Debuginfo-Pool for sle-12-x86_64"},{"installer_updates":false,"name":"SLE-Module-Legacy12-Source-Pool","description":"SLE-Module-Legacy12-Source-Pool for sle-12-x86_64","id":1989,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/12/x86_64/product_source/","distro_target":"sle-12-x86_64","autorefresh":false}],"predecessor_ids":[],"cpe":"cpe:/o:suse:sle-module-legacy:12","product_type":"module","shortname":"Legacy-Module","description":"

The Legacy Module helps you migrating applications from SUSE Linux Enterprise 10 and 11 and other systems to SUSE Linux Enterprise 12, by providing packages which are discontinued on SUSE Linux Enterprise Server, such as: sendmail, syslog-ng, IBM Java6, and a number of libraries (for example openssl-0.9.8).

Access to the Legacy Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself. Packages in the this module are usually supported for at most three years. Support for Sendmail and IBM Java 6 will end in September 2017 the latest.

","free":true,"arch":"x86_64","eula_url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/12/x86_64/product.license/","friendly_version":"12","identifier":"sle-module-legacy","release_stage":"released","id":1150,"extensions":[],"version":"12","recommended":false,"friendly_name":"Legacy Module 12 x86_64","migration_extra":false,"former_identifier":"sle-module-legacy","release_type":null,"name":"Legacy Module","offline_predecessor_ids":[]},{"migration_extra":false,"friendly_name":"Web and Scripting Module 12 x86_64","release_type":null,"former_identifier":"sle-module-web-scripting","name":"Web and Scripting Module","offline_predecessor_ids":[],"version":"12","recommended":false,"identifier":"sle-module-web-scripting","release_stage":"released","id":1153,"extensions":[],"friendly_version":"12","arch":"x86_64","eula_url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/12/x86_64/product.license/","shortname":"Web-and-Scripting-Module","description":"

The SUSE Linux Enterprise Web and Scripting Module delivers a comprehensive suite of scripting languages, frameworks, and related tools helping developers and systems administrators accelerate the creation of stable, modern web applications, using dynamic languages, such as PHP, Ruby on Rails, and Python.

Access to the Web and Scripting Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself: Package versions in the this module are usually supported for at most three years. We are planning to release more recent versions on a schedule of approximately 18 month; the exact dates may differ per package.

","free":true,"cpe":"cpe:/o:suse:sle-module-web-scripting:12","product_type":"module","product_class":"MODULE","online_predecessor_ids":[],"repositories":[{"enabled":true,"id":1688,"distro_target":"sle-12-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/12/x86_64/update/","installer_updates":false,"name":"SLE-Module-Web-Scripting12-Updates","description":"SLE-Module-Web-Scripting12-Updates for sle-12-x86_64"},{"id":1689,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/12/x86_64/update_debug/","autorefresh":true,"distro_target":"sle-12-x86_64","name":"SLE-Module-Web-Scripting12-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-Web-Scripting12-Debuginfo-Updates for sle-12-x86_64"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/12/x86_64/product/","distro_target":"sle-12-x86_64","autorefresh":false,"id":1690,"enabled":true,"description":"SLE-Module-Web-Scripting12-Pool for sle-12-x86_64","installer_updates":false,"name":"SLE-Module-Web-Scripting12-Pool"},{"description":"SLE-Module-Web-Scripting12-Debuginfo-Pool for sle-12-x86_64","installer_updates":false,"name":"SLE-Module-Web-Scripting12-Debuginfo-Pool","distro_target":"sle-12-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/12/x86_64/product_debug/","enabled":false,"id":1691},{"distro_target":"sle-12-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/12/x86_64/product_source/","enabled":false,"id":1992,"description":"SLE-Module-Web-Scripting12-Source-Pool for sle-12-x86_64","installer_updates":false,"name":"SLE-Module-Web-Scripting12-Source-Pool"}],"predecessor_ids":[]},{"online_predecessor_ids":[],"product_class":"MODULE","repositories":[{"name":"SLE-Module-Adv-Systems-Management12-Updates","installer_updates":false,"description":"SLE-Module-Adv-Systems-Management12-Updates for sle-12-x86_64","id":1704,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Adv-Systems-Management/12/x86_64/update/","autorefresh":true,"distro_target":"sle-12-x86_64"},{"installer_updates":false,"name":"SLE-Module-Adv-Systems-Management12-Debuginfo-Updates","description":"SLE-Module-Adv-Systems-Management12-Debuginfo-Updates for sle-12-x86_64","id":1705,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Adv-Systems-Management/12/x86_64/update_debug/","distro_target":"sle-12-x86_64","autorefresh":true},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Adv-Systems-Management/12/x86_64/product/","distro_target":"sle-12-x86_64","autorefresh":false,"id":1706,"enabled":true,"description":"SLE-Module-Adv-Systems-Management12-Pool for sle-12-x86_64","installer_updates":false,"name":"SLE-Module-Adv-Systems-Management12-Pool"},{"installer_updates":false,"name":"SLE-Module-Adv-Systems-Management12-Debuginfo-Pool","description":"SLE-Module-Adv-Systems-Management12-Debuginfo-Pool for sle-12-x86_64","id":1707,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Adv-Systems-Management/12/x86_64/product_debug/","distro_target":"sle-12-x86_64","autorefresh":false},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Adv-Systems-Management/12/x86_64/product_source/","distro_target":"sle-12-x86_64","autorefresh":false,"id":1998,"enabled":false,"description":"SLE-Module-Adv-Systems-Management12-Source-Pool for sle-12-x86_64","installer_updates":false,"name":"SLE-Module-Adv-Systems-Management12-Source-Pool"}],"predecessor_ids":[],"cpe":"cpe:/o:suse:sle-module-adv-systems-management:12","product_type":"module","shortname":"Adv-Sys-Mgmt-Module","description":"

This Module contains current versions of the popular configuration management frameworks Puppet and CFEngine as well as the new systems management toolbox called machinery.

The machinery tool will be frequently updated and is SUSE's upcoming systems management toolbox for inspecting and validating systems remotely, storing their system description and creating new systems to deploy them in datacenters and clouds.

","free":true,"arch":"x86_64","eula_url":"","friendly_version":"12","release_stage":"released","id":1212,"identifier":"sle-module-adv-systems-management","extensions":[],"version":"12","recommended":false,"friendly_name":"Advanced Systems Management Module 12 x86_64","migration_extra":false,"former_identifier":"sle-module-adv-systems-management","release_type":null,"name":"Advanced Systems Management Module","offline_predecessor_ids":[]},{"extensions":[],"release_stage":"released","identifier":"sle-module-public-cloud","id":1220,"friendly_version":"12","offline_predecessor_ids":[],"name":"Public Cloud Module","former_identifier":"sle-module-public-cloud","release_type":null,"friendly_name":"Public Cloud Module 12 x86_64","migration_extra":false,"recommended":false,"version":"12","product_type":"module","cpe":"cpe:/o:suse:sle-module-public-cloud:12","predecessor_ids":[],"online_predecessor_ids":[],"repositories":[{"name":"SLE-Module-Public-Cloud12-Updates","installer_updates":false,"description":"SLE-Module-Public-Cloud12-Updates for sle-12-x86_64","id":1700,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/12/x86_64/update/","autorefresh":true,"distro_target":"sle-12-x86_64"},{"installer_updates":false,"name":"SLE-Module-Public-Cloud12-Debuginfo-Updates","description":"SLE-Module-Public-Cloud12-Debuginfo-Updates for sle-12-x86_64","id":1701,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/12/x86_64/update_debug/","distro_target":"sle-12-x86_64","autorefresh":true},{"installer_updates":false,"name":"SLE-Module-Public-Cloud12-Pool","description":"SLE-Module-Public-Cloud12-Pool for sle-12-x86_64","enabled":true,"id":1702,"distro_target":"sle-12-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/12/x86_64/product/"},{"description":"SLE-Module-Public-Cloud12-Debuginfo-Pool for sle-12-x86_64","name":"SLE-Module-Public-Cloud12-Debuginfo-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/12/x86_64/product_debug/","enabled":false,"id":1703},{"description":"SLE-Module-Public-Cloud12-Source-Pool for sle-12-x86_64","installer_updates":false,"name":"SLE-Module-Public-Cloud12-Source-Pool","distro_target":"sle-12-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/12/x86_64/product_source/","enabled":false,"id":1995}],"product_class":"MODULE","eula_url":"","arch":"x86_64","free":true,"description":"

The Public Cloud Module is a collection of tools that enables you to create and manage cloud images from the commandline on SUSE Linux Enterprise Server. When building your own images with KIWI or SUSE Studio, initialization code specific to the target cloud is included in that image.

Access to the Public Cloud Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself; please check the Release Notes for further details.

","shortname":"Public-Cloud-Module"},{"cpe":"cpe:/o:suse:sle-module-containers:12","product_type":"module","predecessor_ids":[],"repositories":[{"name":"SLE-Module-Containers12-Updates","installer_updates":false,"description":"SLE-Module-Containers12-Updates for sle-12-x86_64","id":1864,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/12/x86_64/update/","autorefresh":true,"distro_target":"sle-12-x86_64"},{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/12/x86_64/update_debug/","autorefresh":true,"distro_target":"sle-12-x86_64","id":1865,"enabled":false,"description":"SLE-Module-Containers12-Debuginfo-Updates for sle-12-x86_64","name":"SLE-Module-Containers12-Debuginfo-Updates","installer_updates":false},{"autorefresh":false,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/12/x86_64/product/","enabled":true,"id":1866,"description":"SLE-Module-Containers12-Pool for sle-12-x86_64","name":"SLE-Module-Containers12-Pool","installer_updates":false},{"id":1867,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/12/x86_64/product_debug/","distro_target":"sle-12-x86_64","autorefresh":false,"installer_updates":false,"name":"SLE-Module-Containers12-Debuginfo-Pool","description":"SLE-Module-Containers12-Debuginfo-Pool for sle-12-x86_64"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/12/x86_64/product_source/","distro_target":"sle-12-x86_64","autorefresh":false,"id":1957,"enabled":false,"description":"SLE-Module-Containers12-Source-Pool for sle-12-x86_64","installer_updates":false,"name":"SLE-Module-Containers12-Source-Pool"}],"online_predecessor_ids":[],"product_class":"MODULE","eula_url":"","arch":"x86_64","shortname":"Containers-Module","description":"

This Module contains several packages revolving around containers and related tools.

","free":true,"extensions":[],"identifier":"sle-module-containers","release_stage":"released","id":1332,"friendly_version":"12","name":"Containers Module","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"Containers Module 12 x86_64","release_type":null,"former_identifier":"sle-module-containers","recommended":false,"version":"12"},{"free":true,"description":"Via this Module you will have access to a more recent GCC and Toolchain in addition to the default compiler of SUSE Linux Enterprise. Access to the Toolchain Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself. Please check the Release Notes for further details.","shortname":"Toolchain-Module","eula_url":"","arch":"x86_64","predecessor_ids":[],"repositories":[{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Toolchain/12/x86_64/update/","autorefresh":true,"distro_target":"sle-12-x86_64","id":1903,"enabled":true,"description":"SLE-Module-Toolchain12-Updates for sle-12-x86_64","name":"SLE-Module-Toolchain12-Updates","installer_updates":false},{"enabled":false,"id":1904,"autorefresh":true,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Toolchain/12/x86_64/update_debug/","name":"SLE-Module-Toolchain12-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-Toolchain12-Debuginfo-Updates for sle-12-x86_64"},{"description":"SLE-Module-Toolchain12-Pool for sle-12-x86_64","installer_updates":false,"name":"SLE-Module-Toolchain12-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Toolchain/12/x86_64/product/","distro_target":"sle-12-x86_64","autorefresh":false,"id":1905,"enabled":true},{"description":"SLE-Module-Toolchain12-Debuginfo-Pool for sle-12-x86_64","name":"SLE-Module-Toolchain12-Debuginfo-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Toolchain/12/x86_64/product_debug/","autorefresh":false,"distro_target":"sle-12-x86_64","id":1906,"enabled":false}],"online_predecessor_ids":[],"product_class":"MODULE","product_type":"module","cpe":"cpe:/o:suse:sle-module-toolchain:12","recommended":false,"version":"12","offline_predecessor_ids":[],"name":"Toolchain Module","release_type":null,"former_identifier":"sle-module-toolchain","migration_extra":false,"friendly_name":"Toolchain Module 12 x86_64","friendly_version":"12","extensions":[],"identifier":"sle-module-toolchain","release_stage":"released","id":1341},{"friendly_version":"12 SP2","extensions":[],"release_stage":"released","id":1439,"identifier":"sle-pos","recommended":false,"version":"12.2","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Point of Service Image Server","release_type":null,"former_identifier":"sle-pos","migration_extra":false,"friendly_name":"SUSE Linux Enterprise Point of Service Image Server 12 SP2 x86_64","predecessor_ids":[],"online_predecessor_ids":[],"repositories":[{"id":2289,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-POS/12-SP2/x86_64/update/","distro_target":"sle-12-x86_64","autorefresh":true,"installer_updates":false,"name":"SLE-POS12-SP2-Updates","description":"SLE-POS12-SP2-Updates for sle-12-x86_64"},{"distro_target":"sle-12-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-POS/12-SP2/x86_64/update_debug/","enabled":false,"id":2290,"description":"SLE-POS12-SP2-Debuginfo-Updates for sle-12-x86_64","installer_updates":false,"name":"SLE-POS12-SP2-Debuginfo-Updates"},{"description":"SLE-POS12-SP2-Pool for sle-12-x86_64","installer_updates":false,"name":"SLE-POS12-SP2-Pool","distro_target":"sle-12-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-POS/12-SP2/x86_64/product/","enabled":true,"id":2291},{"url":"https://updates.suse.com/SUSE/Products/SLE-POS/12-SP2/x86_64/product_debug/","distro_target":"sle-12-x86_64","autorefresh":false,"id":2292,"enabled":false,"description":"SLE-POS12-SP2-Debuginfo-Pool for sle-12-x86_64","installer_updates":false,"name":"SLE-POS12-SP2-Debuginfo-Pool"},{"description":"SLE-POS12-SP2-Source-Pool for sle-12-x86_64","name":"SLE-POS12-SP2-Source-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-POS/12-SP2/x86_64/product_source/","autorefresh":false,"distro_target":"sle-12-x86_64","id":2293,"enabled":false},{"installer_updates":false,"name":"SLE-POS12-SP2-CLIENT-Updates","description":"SLE-POS12-SP2-CLIENT-Updates for sle-12-x86_64","enabled":true,"id":3130,"distro_target":"sle-12-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-POS/12-SP2-CLIENT/x86_64/update/"},{"description":"SLE-POS12-SP2-CLIENT-Debuginfo-Updates for sle-12-x86_64","installer_updates":false,"name":"SLE-POS12-SP2-CLIENT-Debuginfo-Updates","url":"https://updates.suse.com/SUSE/Updates/SLE-POS/12-SP2-CLIENT/x86_64/update_debug/","distro_target":"sle-12-x86_64","autorefresh":true,"id":3131,"enabled":false}],"product_class":"10040","product_type":"extension","cpe":"cpe:/o:suse:sle-pos:12:sp2","free":false,"description":"SUSE Linux Enterprise Point of Service Image Server","shortname":"SLEPOS12","eula_url":"https://updates.suse.com/SUSE/Products/SLE-POS/12-SP2/x86_64/product.license/","arch":"x86_64"},{"cpe":"cpe:/o:suse:sle-module-hpc:12","product_type":"module","predecessor_ids":[],"product_class":"MODULE","online_predecessor_ids":[],"repositories":[{"description":"SLE-Module-HPC12-Updates for sle-12-x86_64","name":"SLE-Module-HPC12-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-HPC/12/x86_64/update/","enabled":true,"id":2294},{"name":"SLE-Module-HPC12-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-HPC12-Debuginfo-Updates for sle-12-x86_64","id":2295,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-HPC/12/x86_64/update_debug/","autorefresh":true,"distro_target":"sle-12-x86_64"},{"enabled":true,"id":2296,"distro_target":"sle-12-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-HPC/12/x86_64/product/","installer_updates":false,"name":"SLE-Module-HPC12-Pool","description":"SLE-Module-HPC12-Pool for sle-12-x86_64"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-HPC/12/x86_64/product_debug/","autorefresh":false,"distro_target":"sle-12-x86_64","id":2297,"enabled":false,"description":"SLE-Module-HPC12-Debuginfo-Pool for sle-12-x86_64","name":"SLE-Module-HPC12-Debuginfo-Pool","installer_updates":false},{"id":2298,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-HPC/12/x86_64/product_source/","autorefresh":false,"distro_target":"sle-12-x86_64","name":"SLE-Module-HPC12-Source-Pool","installer_updates":false,"description":"SLE-Module-HPC12-Source-Pool for sle-12-x86_64"}],"eula_url":"https://updates.suse.com/SUSE/Products/SLE-Module-HPC/12/x86_64/product.license/","arch":"x86_64","description":"The SUSE Linux Enterprise Server High Performance Computing (HPC) module delivers specific tools commonly used for high performance, numerically intensive workloads. SUSE packages these tools in the SLES HPC Module to provide greater flexibility to deliver new versions or new tools more rapidly than the standard SUSE Linux Enterprise lifecycle would permit. Packages in this module are general supported till a newer version of the package is released or the package is dropped from the module.","shortname":"HPC-Module","free":true,"extensions":[],"release_stage":"released","id":1440,"identifier":"sle-module-hpc","friendly_version":"12","name":"HPC Module","offline_predecessor_ids":[],"friendly_name":"HPC Module 12 x86_64","migration_extra":false,"release_type":null,"former_identifier":"sle-module-hpc","recommended":false,"version":"12"},{"cpe":"cpe:/o:suse:sle-ha-geo:12:sp5","product_type":"extension","product_class":"SLE-HAE-GEO","online_predecessor_ids":[1157,1337,1363,1435,1637],"repositories":[{"url":"https://updates.suse.com/SUSE/Updates/SLE-HA-GEO/12-SP5/x86_64/update/","autorefresh":true,"distro_target":"sle-12-x86_64","id":3711,"enabled":true,"description":"SLE-HA-GEO12-SP5-Updates for sle-12-x86_64","name":"SLE-HA-GEO12-SP5-Updates","installer_updates":false},{"enabled":false,"id":3712,"autorefresh":true,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-HA-GEO/12-SP5/x86_64/update_debug/","name":"SLE-HA-GEO12-SP5-Debuginfo-Updates","installer_updates":false,"description":"SLE-HA-GEO12-SP5-Debuginfo-Updates for sle-12-x86_64"},{"description":"SLE-HA-GEO12-SP5-Pool for sle-12-x86_64","name":"SLE-HA-GEO12-SP5-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-HA-GEO/12-SP5/x86_64/product/","enabled":true,"id":3713},{"name":"SLE-HA-GEO12-SP5-Debuginfo-Pool","installer_updates":false,"description":"SLE-HA-GEO12-SP5-Debuginfo-Pool for sle-12-x86_64","enabled":false,"id":3714,"autorefresh":false,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-HA-GEO/12-SP5/x86_64/product_debug/"},{"description":"SLE-HA-GEO12-SP5-Source-Pool for sle-12-x86_64","installer_updates":false,"name":"SLE-HA-GEO12-SP5-Source-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-HA-GEO/12-SP5/x86_64/product_source/","distro_target":"sle-12-x86_64","autorefresh":false,"id":3715,"enabled":false}],"predecessor_ids":[1157,1337,1363,1435,1637],"arch":"x86_64","eula_url":"https://updates.suse.com/SUSE/Products/SLE-HA-GEO/12-SP5/x86_64/product.license/","shortname":"SLEHAGEO12-SP5","description":"SUSE Linux Enterprise High Availability Geographical Cluster Extension","free":false,"release_stage":"released","id":1886,"identifier":"sle-ha-geo","extensions":[],"friendly_version":"12 SP5","migration_extra":false,"friendly_name":"SUSE Linux Enterprise High Availability GEO Extension 12 SP5 x86_64","release_type":null,"former_identifier":"sle-hae-geo","name":"SUSE Linux Enterprise High Availability GEO Extension","offline_predecessor_ids":[1101,1107,1286],"version":"12.5","recommended":false},{"description":"

SUSE Linux Enterprise Live Patching provides packages to update critical kernel modules live in SUSE Linux Enterprise. With SUSE Linux Enterprise Live Patching, you can perform critical kernel patching without shutting down your system, reducing the need for planned downtime and increasing service availability.

","shortname":"Live-Patching","free":false,"eula_url":"https://updates.suse.com/SUSE/Products/SLE-Live-Patching/12-SP5/x86_64/product.license/","arch":"x86_64","predecessor_ids":[1253,1536,1757],"online_predecessor_ids":[1253,1536,1757],"product_class":"SLE-LP","repositories":[{"enabled":true,"id":3720,"distro_target":"sle-12-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Live-Patching/12-SP5/x86_64/update/","installer_updates":false,"name":"SLE-Live-Patching12-SP5-Updates","description":"SLE-Live-Patching12-SP5-Updates for sle-12-x86_64"},{"description":"SLE-Live-Patching12-SP5-Debuginfo-Updates for sle-12-x86_64","installer_updates":false,"name":"SLE-Live-Patching12-SP5-Debuginfo-Updates","distro_target":"sle-12-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Live-Patching/12-SP5/x86_64/update_debug/","enabled":false,"id":3721},{"url":"https://updates.suse.com/SUSE/Products/SLE-Live-Patching/12-SP5/x86_64/product/","distro_target":"sle-12-x86_64","autorefresh":false,"id":3722,"enabled":true,"description":"SLE-Live-Patching12-SP5-Pool for sle-12-x86_64","installer_updates":false,"name":"SLE-Live-Patching12-SP5-Pool"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Live-Patching/12-SP5/x86_64/product_debug/","autorefresh":false,"distro_target":"sle-12-x86_64","id":3723,"enabled":false,"description":"SLE-Live-Patching12-SP5-Debuginfo-Pool for sle-12-x86_64","name":"SLE-Live-Patching12-SP5-Debuginfo-Pool","installer_updates":false}],"cpe":"cpe:/o:suse:sle-live-patching:12:sp5","product_type":"extension","recommended":false,"version":"12.5","name":"SUSE Linux Enterprise Live Patching","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Live Patching 12 SP5 x86_64","former_identifier":"sle-live-patching","release_type":null,"friendly_version":"12 SP5","extensions":[],"id":1888,"release_stage":"released","identifier":"sle-live-patching"},{"version":"12.5","recommended":false,"release_type":null,"former_identifier":"sle-sdk","migration_extra":false,"friendly_name":"SUSE Linux Enterprise Software Development Kit 12 SP5 x86_64","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Software Development Kit","friendly_version":"12 SP5","identifier":"sle-sdk","release_stage":"released","id":1892,"extensions":[],"free":true,"shortname":"SDK12-SP5","description":"

SUSE Linux Enterprise Software Development Kit is the Software Development Kit for the family of SUSE Linux Enterprise products. It is a free of charge extension for partners and customers working with SUSE Linux Enterprise Server and Desktop and derived products.

Packages on the SDK are delivered without L3 support; maintenance updates will be done for critical security and critical non-security issues, and where needed to remain in sync with packages delivered in the SUSE Linux Enterprise Server and Desktop products.

Packages to rebuild SUSE Linux Enterprise Server are not part of the SUSE Linux Enterprise Software Development Kit.

","arch":"x86_64","eula_url":"https://updates.suse.com/SUSE/Products/SLE-SDK/12-SP5/x86_64/product.license/","repositories":[{"name":"SLE-SDK12-SP5-Updates","installer_updates":false,"description":"SLE-SDK12-SP5-Updates for sle-12-x86_64","id":3739,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-SDK/12-SP5/x86_64/update/","autorefresh":true,"distro_target":"sle-12-x86_64"},{"name":"SLE-SDK12-SP5-Debuginfo-Updates","installer_updates":false,"description":"SLE-SDK12-SP5-Debuginfo-Updates for sle-12-x86_64","id":3740,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-SDK/12-SP5/x86_64/update_debug/","autorefresh":true,"distro_target":"sle-12-x86_64"},{"name":"SLE-SDK12-SP5-Pool","installer_updates":false,"description":"SLE-SDK12-SP5-Pool for sle-12-x86_64","enabled":true,"id":3741,"autorefresh":false,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-SDK/12-SP5/x86_64/product/"},{"description":"SLE-SDK12-SP5-Debuginfo-Pool for sle-12-x86_64","installer_updates":false,"name":"SLE-SDK12-SP5-Debuginfo-Pool","distro_target":"sle-12-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-SDK/12-SP5/x86_64/product_debug/","enabled":false,"id":3742},{"installer_updates":false,"name":"SLE-SDK12-SP5-Source-Pool","description":"SLE-SDK12-SP5-Source-Pool for sle-12-x86_64","id":3743,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-SDK/12-SP5/x86_64/product_source/","distro_target":"sle-12-x86_64","autorefresh":false}],"online_predecessor_ids":[1223,1323,1366,1427,1630],"product_class":"MODULE","predecessor_ids":[1223,1323,1366,1427,1630],"product_type":"extension","cpe":"cpe:/o:suse:sle-sdk:12:sp5"},{"extensions":[],"id":1893,"release_stage":"released","identifier":"sle-we","friendly_version":"12 SP5","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Workstation Extension","release_type":null,"former_identifier":"sle-we","friendly_name":"SUSE Linux Enterprise Workstation Extension 12 SP5 x86_64","migration_extra":false,"recommended":false,"version":"12.5","product_type":"extension","cpe":"cpe:/o:suse:sle-we:12:sp5","predecessor_ids":[1222,1338,1359,1431,1639],"online_predecessor_ids":[1222,1338,1359,1431,1639],"product_class":"SLE-WE","repositories":[{"description":"SLE-12-SP5-GA-Desktop-nVidia-Driver","installer_updates":false,"name":"SLE-12-SP5-GA-Desktop-nVidia-Driver","url":"https://download.nvidia.com/suse/sle12sp5/","distro_target":null,"autorefresh":true,"id":3661,"enabled":true},{"distro_target":"sle-12-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-WE/12-SP5/x86_64/update/","enabled":true,"id":3744,"description":"SLE-WE12-SP5-Updates for sle-12-x86_64","installer_updates":false,"name":"SLE-WE12-SP5-Updates"},{"enabled":false,"id":3745,"autorefresh":true,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-WE/12-SP5/x86_64/update_debug/","name":"SLE-WE12-SP5-Debuginfo-Updates","installer_updates":false,"description":"SLE-WE12-SP5-Debuginfo-Updates for sle-12-x86_64"},{"description":"SLE-WE12-SP5-Pool for sle-12-x86_64","installer_updates":false,"name":"SLE-WE12-SP5-Pool","distro_target":"sle-12-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-WE/12-SP5/x86_64/product/","enabled":true,"id":3746},{"autorefresh":false,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-WE/12-SP5/x86_64/product_debug/","enabled":false,"id":3747,"description":"SLE-WE12-SP5-Debuginfo-Pool for sle-12-x86_64","name":"SLE-WE12-SP5-Debuginfo-Pool","installer_updates":false},{"autorefresh":false,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-WE/12-SP5/x86_64/product_source/","enabled":false,"id":3748,"description":"SLE-WE12-SP5-Source-Pool for sle-12-x86_64","name":"SLE-WE12-SP5-Source-Pool","installer_updates":false}],"eula_url":"https://updates.suse.com/SUSE/Products/SLE-WE/12-SP5/x86_64/product.license/","arch":"x86_64","free":false,"shortname":"SLEWE12-SP5","description":"SUSE Linux Enterprise Workstation Extension extends the functionality of SUSE Linux Enterprise Server with packages of SUSE Linux Enterprise Desktop, like additional desktop applications (office suite, email client, graphical editor ...) and libraries. It allows to combine both products to create a full featured Workstation."},{"friendly_version":"12 SP5","extensions":[],"identifier":"PackageHub","release_stage":"released","id":1915,"recommended":false,"version":"12.5","offline_predecessor_ids":[],"name":"SUSE Package Hub","former_identifier":"PackageHub","release_type":null,"migration_extra":false,"friendly_name":"SUSE Package Hub 12 SP5 x86_64","predecessor_ids":[1473,1476,1479,1529,1813],"online_predecessor_ids":[1473,1476,1479,1529,1813],"product_class":"MODULE","repositories":[{"name":"SUSE-PackageHub-12-SP5-Standard-Pool","installer_updates":false,"description":"SUSE-PackageHub-12-SP5-Standard-Pool for sle-12-x86_64","enabled":true,"id":3864,"autorefresh":false,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Backports/SLE-12-SP5_x86_64/standard/"},{"id":3865,"enabled":false,"url":"https://updates.suse.com/SUSE/Backports/SLE-12-SP5_x86_64/standard_debug/","distro_target":"sle-12-x86_64","autorefresh":true,"installer_updates":false,"name":"SUSE-PackageHub-12-SP5-Debuginfo","description":"SUSE-PackageHub-12-SP5-Debuginfo for sle-12-x86_64"},{"description":"SUSE-PackageHub-12-SP5-Pool for sle-12-x86_64","installer_updates":false,"name":"SUSE-PackageHub-12-SP5-Pool","url":"https://updates.suse.com/SUSE/Backports/SLE-12-SP5_x86_64/product/","distro_target":"sle-12-x86_64","autorefresh":false,"id":3866,"enabled":true}],"product_type":"extension","cpe":"cpe:/o:suse:packagehub:12:sp5","free":true,"description":"SUSE Package Hub is a free of charge extension providing access to community maintained packages built to run on SUSE Linux Enterprise Server. Built from the same sources used in the openSUSE distributions, these quality packages provide additional software to what is found in the SUSE Linux Enterprise Server product. Packages from the Package Hub are delivered without L3 support from SUSE. General updates and fixes to the packages in SUSE Package Hub are provided by the openSUSE community based on their discretion though SUSE will monitor and ensure that any known critical security issues will be addressed. Packages in the Package Hub are approved by SUSE for use with SUSE Linux Enterprise Server 12 and to not interfere with the supportability of SUSE Linux Enterprise Server it's modules and extensions. For more information about SUSE Package Hub please visit https://packagehub.suse.com.","shortname":"SUSE-PackageHub-12-SP5","eula_url":"","arch":"x86_64"}],"release_stage":"released","identifier":"SLES_SAP","id":1880,"recommended":false,"version":"12.5","name":"SUSE Linux Enterprise Server for SAP Applications","offline_predecessor_ids":[1329],"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Server for SAP Applications 12 SP5 x86_64","release_type":null,"former_identifier":"SUSE_SLES_SAP","predecessor_ids":[1346,1414,1426,1755],"product_class":"AiO","online_predecessor_ids":[1346,1414,1426,1755],"repositories":[{"enabled":true,"id":3647,"distro_target":"sle-12-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-SP5/x86_64/update/","installer_updates":false,"name":"SLES12-SP5-Updates","description":"SLES12-SP5-Updates for sle-12-x86_64"},{"autorefresh":true,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-SP5/x86_64/update_debug/","enabled":false,"id":3649,"description":"SLES12-SP5-Debuginfo-Updates for sle-12-x86_64","name":"SLES12-SP5-Debuginfo-Updates","installer_updates":false},{"autorefresh":false,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-SERVER/12-SP5/x86_64/product/","enabled":true,"id":3652,"description":"SLES12-SP5-Pool for sle-12-x86_64","name":"SLES12-SP5-Pool","installer_updates":false},{"enabled":false,"id":3654,"distro_target":"sle-12-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-SERVER/12-SP5/x86_64/product_debug/","installer_updates":false,"name":"SLES12-SP5-Debuginfo-Pool","description":"SLES12-SP5-Debuginfo-Pool for sle-12-x86_64"},{"enabled":false,"id":3656,"distro_target":"sle-12-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-SERVER/12-SP5/x86_64/product_source/","installer_updates":false,"name":"SLES12-SP5-Source-Pool","description":"SLES12-SP5-Source-Pool for sle-12-x86_64"},{"description":"SLE-12-SP5-SAP-Updates for sle-12-x86_64","installer_updates":false,"name":"SLE-12-SP5-SAP-Updates","distro_target":"sle-12-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-SAP/12-SP5/x86_64/update/","enabled":true,"id":3686},{"installer_updates":false,"name":"SLE-HA12-SP5-Updates","description":"SLE-HA12-SP5-Updates for sle-12-x86_64","enabled":true,"id":3687,"distro_target":"sle-12-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-HA/12-SP5/x86_64/update/"},{"enabled":false,"id":3688,"autorefresh":true,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-SAP/12-SP5/x86_64/update_debug/","name":"SLE-12-SP5-SAP-Debuginfo-Updates","installer_updates":false,"description":"SLE-12-SP5-SAP-Debuginfo-Updates for sle-12-x86_64"},{"description":"SLE-HA12-SP5-Debuginfo-Updates for sle-12-x86_64","installer_updates":false,"name":"SLE-HA12-SP5-Debuginfo-Updates","distro_target":"sle-12-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-HA/12-SP5/x86_64/update_debug/","enabled":false,"id":3689},{"description":"SLE12-SP5-SAP-Pool for sle-12-x86_64","name":"SLE12-SP5-SAP-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-SAP/12-SP5/x86_64/product/","autorefresh":false,"distro_target":"sle-12-x86_64","id":3690,"enabled":true},{"description":"SLE-HA12-SP5-Pool for sle-12-x86_64","installer_updates":false,"name":"SLE-HA12-SP5-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-HA/12-SP5/x86_64/product/","distro_target":"sle-12-x86_64","autorefresh":false,"id":3691,"enabled":true},{"enabled":false,"id":3692,"autorefresh":false,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-SAP/12-SP5/x86_64/product_debug/","name":"SLE12-SP5-SAP-Debuginfo-Pool","installer_updates":false,"description":"SLE12-SP5-SAP-Debuginfo-Pool for sle-12-x86_64"},{"url":"https://updates.suse.com/SUSE/Products/SLE-HA/12-SP5/x86_64/product_debug/","autorefresh":false,"distro_target":"sle-12-x86_64","id":3693,"enabled":false,"description":"SLE-HA12-SP5-Debuginfo-Pool for sle-12-x86_64","name":"SLE-HA12-SP5-Debuginfo-Pool","installer_updates":false},{"description":"SLE12-SP5-SAP-Source-Pool for sle-12-x86_64","name":"SLE12-SP5-SAP-Source-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-SAP/12-SP5/x86_64/product_source/","enabled":false,"id":3694},{"description":"SLE-HA12-SP5-Source-Pool for sle-12-x86_64","installer_updates":false,"name":"SLE-HA12-SP5-Source-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-HA/12-SP5/x86_64/product_source/","distro_target":"sle-12-x86_64","autorefresh":false,"id":3695,"enabled":false}],"cpe":"cpe:/o:suse:sles_sap:12:sp5","product_type":"base","shortname":"SLE-12-SP5-SAP","description":"SUSE LINUX Enterprise Server 12 SP5 for SAP Applications","free":false,"eula_url":"https://updates.suse.com/SUSE/Products/SLE-SAP/12-SP5/x86_64/product.license/","arch":"x86_64"},{"eula_url":"https://updates.suse.com/SUSE/Products/SLE-HA/12-SP5/ppc64le/product.license/","arch":"ppc64le","free":false,"shortname":"SLEHA12-SP5","description":"SUSE Linux Enterprise High Availability Extension.","product_type":"extension","cpe":"cpe:/o:suse:sle-ha:12:sp5","predecessor_ids":[1420,1433,1635],"online_predecessor_ids":[1420,1433,1635],"product_class":"SLE-HAE-PPC","repositories":[{"id":3677,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-HA/12-SP5/ppc64le/update/","autorefresh":true,"distro_target":"sle-12-ppc64le","name":"SLE-HA12-SP5-Updates","installer_updates":false,"description":"SLE-HA12-SP5-Updates for sle-12-ppc64le"},{"installer_updates":false,"name":"SLE-HA12-SP5-Debuginfo-Updates","description":"SLE-HA12-SP5-Debuginfo-Updates for sle-12-ppc64le","id":3679,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-HA/12-SP5/ppc64le/update_debug/","distro_target":"sle-12-ppc64le","autorefresh":true},{"installer_updates":false,"name":"SLE-HA12-SP5-Pool","description":"SLE-HA12-SP5-Pool for sle-12-ppc64le","id":3681,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-HA/12-SP5/ppc64le/product/","distro_target":"sle-12-ppc64le","autorefresh":false},{"id":3683,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-HA/12-SP5/ppc64le/product_debug/","distro_target":"sle-12-ppc64le","autorefresh":false,"installer_updates":false,"name":"SLE-HA12-SP5-Debuginfo-Pool","description":"SLE-HA12-SP5-Debuginfo-Pool for sle-12-ppc64le"},{"url":"https://updates.suse.com/SUSE/Products/SLE-HA/12-SP5/ppc64le/product_source/","autorefresh":false,"distro_target":"sle-12-ppc64le","id":3685,"enabled":false,"description":"SLE-HA12-SP5-Source-Pool for sle-12-ppc64le","name":"SLE-HA12-SP5-Source-Pool","installer_updates":false}],"offline_predecessor_ids":[],"name":"SUSE Linux Enterprise High Availability Extension","release_type":null,"former_identifier":"sle-hae","migration_extra":false,"friendly_name":"SUSE Linux Enterprise High Availability Extension 12 SP5 ppc64le","recommended":false,"version":"12.5","extensions":[],"release_stage":"released","identifier":"sle-ha","id":1882,"friendly_version":"12 SP5"},{"online_predecessor_ids":[1244,1336,1360,1434,1636],"product_class":"SLE-HAE-Z","repositories":[{"name":"SLE-HA12-SP5-Updates","installer_updates":false,"description":"SLE-HA12-SP5-Updates for sle-12-s390x","id":3701,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-HA/12-SP5/s390x/update/","autorefresh":true,"distro_target":"sle-12-s390x"},{"name":"SLE-HA12-SP5-Debuginfo-Updates","installer_updates":false,"description":"SLE-HA12-SP5-Debuginfo-Updates for sle-12-s390x","enabled":false,"id":3702,"autorefresh":true,"distro_target":"sle-12-s390x","url":"https://updates.suse.com/SUSE/Updates/SLE-HA/12-SP5/s390x/update_debug/"},{"description":"SLE-HA12-SP5-Pool for sle-12-s390x","installer_updates":false,"name":"SLE-HA12-SP5-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-HA/12-SP5/s390x/product/","distro_target":"sle-12-s390x","autorefresh":false,"id":3703,"enabled":true},{"name":"SLE-HA12-SP5-Debuginfo-Pool","installer_updates":false,"description":"SLE-HA12-SP5-Debuginfo-Pool for sle-12-s390x","enabled":false,"id":3704,"autorefresh":false,"distro_target":"sle-12-s390x","url":"https://updates.suse.com/SUSE/Products/SLE-HA/12-SP5/s390x/product_debug/"},{"description":"SLE-HA12-SP5-Source-Pool for sle-12-s390x","installer_updates":false,"name":"SLE-HA12-SP5-Source-Pool","distro_target":"sle-12-s390x","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-HA/12-SP5/s390x/product_source/","enabled":false,"id":3705}],"predecessor_ids":[1244,1336,1360,1434,1636],"cpe":"cpe:/o:suse:sle-ha:12:sp5","product_type":"extension","shortname":"SLEHA12-SP5","description":"SUSE Linux Enterprise High Availability Extension.","free":false,"arch":"s390x","eula_url":"https://updates.suse.com/SUSE/Products/SLE-HA/12-SP5/s390x/product.license/","friendly_version":"12 SP5","id":1883,"release_stage":"released","identifier":"sle-ha","extensions":[],"version":"12.5","recommended":false,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise High Availability Extension 12 SP5 s390x","release_type":null,"former_identifier":"sle-hae","name":"SUSE Linux Enterprise High Availability Extension","offline_predecessor_ids":[1080,1082,1084,1086,1257]},{"friendly_version":"12 SP5","id":1884,"release_stage":"released","identifier":"sle-ha","extensions":[],"version":"12.5","recommended":false,"release_type":null,"former_identifier":"sle-hae","migration_extra":false,"friendly_name":"SUSE Linux Enterprise High Availability Extension 12 SP5 x86_64","offline_predecessor_ids":[958,961,967,971,1256],"name":"SUSE Linux Enterprise High Availability Extension","product_class":"SLE-HAE-X86","online_predecessor_ids":[1245,1324,1361,1432,1634],"repositories":[{"description":"SLE-HA12-SP5-Updates for sle-12-x86_64","installer_updates":false,"name":"SLE-HA12-SP5-Updates","url":"https://updates.suse.com/SUSE/Updates/SLE-HA/12-SP5/x86_64/update/","distro_target":"sle-12-x86_64","autorefresh":true,"id":3687,"enabled":true},{"description":"SLE-HA12-SP5-Debuginfo-Updates for sle-12-x86_64","name":"SLE-HA12-SP5-Debuginfo-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-HA/12-SP5/x86_64/update_debug/","enabled":false,"id":3689},{"installer_updates":false,"name":"SLE-HA12-SP5-Pool","description":"SLE-HA12-SP5-Pool for sle-12-x86_64","id":3691,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-HA/12-SP5/x86_64/product/","distro_target":"sle-12-x86_64","autorefresh":false},{"id":3693,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-HA/12-SP5/x86_64/product_debug/","distro_target":"sle-12-x86_64","autorefresh":false,"installer_updates":false,"name":"SLE-HA12-SP5-Debuginfo-Pool","description":"SLE-HA12-SP5-Debuginfo-Pool for sle-12-x86_64"},{"name":"SLE-HA12-SP5-Source-Pool","installer_updates":false,"description":"SLE-HA12-SP5-Source-Pool for sle-12-x86_64","enabled":false,"id":3695,"autorefresh":false,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-HA/12-SP5/x86_64/product_source/"}],"predecessor_ids":[1245,1324,1361,1432,1634],"product_type":"extension","cpe":"cpe:/o:suse:sle-ha:12:sp5","free":false,"shortname":"SLEHA12-SP5","description":"SUSE Linux Enterprise High Availability Extension.","arch":"x86_64","eula_url":"https://updates.suse.com/SUSE/Products/SLE-HA/12-SP5/x86_64/product.license/"},{"extensions":[],"release_stage":"released","identifier":"sle-ha-geo","id":1885,"friendly_version":"12 SP5","offline_predecessor_ids":[1109,1110,1287],"name":"SUSE Linux Enterprise High Availability GEO Extension","release_type":null,"former_identifier":"sle-hae-geo","friendly_name":"SUSE Linux Enterprise High Availability GEO Extension 12 SP5 s390x","migration_extra":false,"recommended":false,"version":"12.5","product_type":"extension","cpe":"cpe:/o:suse:sle-ha-geo:12:sp5","predecessor_ids":[1156,1345,1362,1436,1638],"online_predecessor_ids":[1156,1345,1362,1436,1638],"product_class":"SLE-HAE-GEO","repositories":[{"description":"SLE-HA-GEO12-SP5-Updates for sle-12-s390x","installer_updates":false,"name":"SLE-HA-GEO12-SP5-Updates","distro_target":"sle-12-s390x","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-HA-GEO/12-SP5/s390x/update/","enabled":true,"id":3706},{"description":"SLE-HA-GEO12-SP5-Debuginfo-Updates for sle-12-s390x","name":"SLE-HA-GEO12-SP5-Debuginfo-Updates","installer_updates":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-HA-GEO/12-SP5/s390x/update_debug/","autorefresh":true,"distro_target":"sle-12-s390x","id":3707,"enabled":false},{"name":"SLE-HA-GEO12-SP5-Pool","installer_updates":false,"description":"SLE-HA-GEO12-SP5-Pool for sle-12-s390x","enabled":true,"id":3708,"autorefresh":false,"distro_target":"sle-12-s390x","url":"https://updates.suse.com/SUSE/Products/SLE-HA-GEO/12-SP5/s390x/product/"},{"installer_updates":false,"name":"SLE-HA-GEO12-SP5-Debuginfo-Pool","description":"SLE-HA-GEO12-SP5-Debuginfo-Pool for sle-12-s390x","enabled":false,"id":3709,"distro_target":"sle-12-s390x","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-HA-GEO/12-SP5/s390x/product_debug/"},{"installer_updates":false,"name":"SLE-HA-GEO12-SP5-Source-Pool","description":"SLE-HA-GEO12-SP5-Source-Pool for sle-12-s390x","enabled":false,"id":3710,"distro_target":"sle-12-s390x","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-HA-GEO/12-SP5/s390x/product_source/"}],"eula_url":"https://updates.suse.com/SUSE/Products/SLE-HA-GEO/12-SP5/s390x/product.license/","arch":"s390x","free":false,"shortname":"SLEHAGEO12-SP5","description":"SUSE Linux Enterprise High Availability Geographical Cluster Extension"},{"product_type":"extension","cpe":"cpe:/o:suse:sle-ha-geo:12:sp5","online_predecessor_ids":[1157,1337,1363,1435,1637],"repositories":[{"autorefresh":true,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-HA-GEO/12-SP5/x86_64/update/","enabled":true,"id":3711,"description":"SLE-HA-GEO12-SP5-Updates for sle-12-x86_64","name":"SLE-HA-GEO12-SP5-Updates","installer_updates":false},{"description":"SLE-HA-GEO12-SP5-Debuginfo-Updates for sle-12-x86_64","name":"SLE-HA-GEO12-SP5-Debuginfo-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-HA-GEO/12-SP5/x86_64/update_debug/","enabled":false,"id":3712},{"enabled":true,"id":3713,"distro_target":"sle-12-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-HA-GEO/12-SP5/x86_64/product/","installer_updates":false,"name":"SLE-HA-GEO12-SP5-Pool","description":"SLE-HA-GEO12-SP5-Pool for sle-12-x86_64"},{"description":"SLE-HA-GEO12-SP5-Debuginfo-Pool for sle-12-x86_64","installer_updates":false,"name":"SLE-HA-GEO12-SP5-Debuginfo-Pool","distro_target":"sle-12-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-HA-GEO/12-SP5/x86_64/product_debug/","enabled":false,"id":3714},{"description":"SLE-HA-GEO12-SP5-Source-Pool for sle-12-x86_64","installer_updates":false,"name":"SLE-HA-GEO12-SP5-Source-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-HA-GEO/12-SP5/x86_64/product_source/","distro_target":"sle-12-x86_64","autorefresh":false,"id":3715,"enabled":false}],"product_class":"SLE-HAE-GEO","predecessor_ids":[1157,1337,1363,1435,1637],"arch":"x86_64","eula_url":"https://updates.suse.com/SUSE/Products/SLE-HA-GEO/12-SP5/x86_64/product.license/","free":false,"description":"SUSE Linux Enterprise High Availability Geographical Cluster Extension","shortname":"SLEHAGEO12-SP5","release_stage":"released","identifier":"sle-ha-geo","id":1886,"extensions":[],"friendly_version":"12 SP5","release_type":null,"former_identifier":"sle-hae-geo","friendly_name":"SUSE Linux Enterprise High Availability GEO Extension 12 SP5 x86_64","migration_extra":false,"offline_predecessor_ids":[1101,1107,1286],"name":"SUSE Linux Enterprise High Availability GEO Extension","version":"12.5","recommended":false},{"extensions":[],"release_stage":"released","id":1887,"identifier":"sle-live-patching","friendly_version":"12 SP5","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Live Patching","release_type":null,"former_identifier":"sle-live-patching","friendly_name":"SUSE Linux Enterprise Live Patching 12 SP5 ppc64le","migration_extra":false,"recommended":false,"version":"12.5","product_type":"extension","cpe":"cpe:/o:suse:sle-live-patching:12:sp5","predecessor_ids":[1537,1756,1860],"product_class":"SLE-LP-PPC","online_predecessor_ids":[1537,1756,1860],"repositories":[{"description":"SLE-Live-Patching12-SP5-Updates for sle-12-ppc64le","installer_updates":false,"name":"SLE-Live-Patching12-SP5-Updates","url":"https://updates.suse.com/SUSE/Updates/SLE-Live-Patching/12-SP5/ppc64le/update/","distro_target":"sle-12-ppc64le","autorefresh":true,"id":3716,"enabled":true},{"description":"SLE-Live-Patching12-SP5-Debuginfo-Updates for sle-12-ppc64le","name":"SLE-Live-Patching12-SP5-Debuginfo-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-12-ppc64le","url":"https://updates.suse.com/SUSE/Updates/SLE-Live-Patching/12-SP5/ppc64le/update_debug/","enabled":false,"id":3717},{"name":"SLE-Live-Patching12-SP5-Pool","installer_updates":false,"description":"SLE-Live-Patching12-SP5-Pool for sle-12-ppc64le","id":3718,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Live-Patching/12-SP5/ppc64le/product/","autorefresh":false,"distro_target":"sle-12-ppc64le"},{"installer_updates":false,"name":"SLE-Live-Patching12-SP5-Debuginfo-Pool","description":"SLE-Live-Patching12-SP5-Debuginfo-Pool for sle-12-ppc64le","id":3719,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Live-Patching/12-SP5/ppc64le/product_debug/","distro_target":"sle-12-ppc64le","autorefresh":false}],"eula_url":"https://updates.suse.com/SUSE/Products/SLE-Live-Patching/12-SP5/ppc64le/product.license/","arch":"ppc64le","free":false,"shortname":"Live-Patching","description":"

SUSE Linux Enterprise Live Patching provides packages to update critical kernel modules live in SUSE Linux Enterprise. With SUSE Linux Enterprise Live Patching, you can perform critical kernel patching without shutting down your system, reducing the need for planned downtime and increasing service availability.

"},{"eula_url":"https://updates.suse.com/SUSE/Products/SLE-Live-Patching/12-SP5/x86_64/product.license/","arch":"x86_64","shortname":"Live-Patching","description":"

SUSE Linux Enterprise Live Patching provides packages to update critical kernel modules live in SUSE Linux Enterprise. With SUSE Linux Enterprise Live Patching, you can perform critical kernel patching without shutting down your system, reducing the need for planned downtime and increasing service availability.

","free":false,"cpe":"cpe:/o:suse:sle-live-patching:12:sp5","product_type":"extension","predecessor_ids":[1253,1536,1757],"repositories":[{"id":3720,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Live-Patching/12-SP5/x86_64/update/","autorefresh":true,"distro_target":"sle-12-x86_64","name":"SLE-Live-Patching12-SP5-Updates","installer_updates":false,"description":"SLE-Live-Patching12-SP5-Updates for sle-12-x86_64"},{"enabled":false,"id":3721,"autorefresh":true,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Live-Patching/12-SP5/x86_64/update_debug/","name":"SLE-Live-Patching12-SP5-Debuginfo-Updates","installer_updates":false,"description":"SLE-Live-Patching12-SP5-Debuginfo-Updates for sle-12-x86_64"},{"enabled":true,"id":3722,"autorefresh":false,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Live-Patching/12-SP5/x86_64/product/","name":"SLE-Live-Patching12-SP5-Pool","installer_updates":false,"description":"SLE-Live-Patching12-SP5-Pool for sle-12-x86_64"},{"autorefresh":false,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Live-Patching/12-SP5/x86_64/product_debug/","enabled":false,"id":3723,"description":"SLE-Live-Patching12-SP5-Debuginfo-Pool for sle-12-x86_64","name":"SLE-Live-Patching12-SP5-Debuginfo-Pool","installer_updates":false}],"online_predecessor_ids":[1253,1536,1757],"product_class":"SLE-LP","name":"SUSE Linux Enterprise Live Patching","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Live Patching 12 SP5 x86_64","former_identifier":"sle-live-patching","release_type":null,"recommended":false,"version":"12.5","extensions":[],"identifier":"sle-live-patching","release_stage":"released","id":1888,"friendly_version":"12 SP5"},{"friendly_version":"12 SP5","release_stage":"released","identifier":"sle-sdk","id":1889,"extensions":[],"version":"12.5","recommended":false,"former_identifier":"sle-sdk","release_type":null,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Software Development Kit 12 SP5 aarch64","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Software Development Kit","online_predecessor_ids":[1378,1430,1633],"repositories":[{"id":3724,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-SDK/12-SP5/aarch64/update/","distro_target":"sle-12-aarch64","autorefresh":true,"installer_updates":false,"name":"SLE-SDK12-SP5-Updates","description":"SLE-SDK12-SP5-Updates for sle-12-aarch64"},{"name":"SLE-SDK12-SP5-Debuginfo-Updates","installer_updates":false,"description":"SLE-SDK12-SP5-Debuginfo-Updates for sle-12-aarch64","id":3725,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-SDK/12-SP5/aarch64/update_debug/","autorefresh":true,"distro_target":"sle-12-aarch64"},{"name":"SLE-SDK12-SP5-Pool","installer_updates":false,"description":"SLE-SDK12-SP5-Pool for sle-12-aarch64","enabled":true,"id":3726,"autorefresh":false,"distro_target":"sle-12-aarch64","url":"https://updates.suse.com/SUSE/Products/SLE-SDK/12-SP5/aarch64/product/"},{"description":"SLE-SDK12-SP5-Debuginfo-Pool for sle-12-aarch64","name":"SLE-SDK12-SP5-Debuginfo-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-SDK/12-SP5/aarch64/product_debug/","autorefresh":false,"distro_target":"sle-12-aarch64","id":3727,"enabled":false},{"enabled":false,"id":3728,"autorefresh":false,"distro_target":"sle-12-aarch64","url":"https://updates.suse.com/SUSE/Products/SLE-SDK/12-SP5/aarch64/product_source/","name":"SLE-SDK12-SP5-Source-Pool","installer_updates":false,"description":"SLE-SDK12-SP5-Source-Pool for sle-12-aarch64"}],"product_class":"MODULE","predecessor_ids":[1378,1430,1633],"product_type":"extension","cpe":"cpe:/o:suse:sle-sdk:12:sp5","free":true,"shortname":"SDK12-SP5","description":"

SUSE Linux Enterprise Software Development Kit is the Software Development Kit for the family of SUSE Linux Enterprise products. It is a free of charge extension for partners and customers working with SUSE Linux Enterprise Server and Desktop and derived products.

Packages on the SDK are delivered without L3 support; maintenance updates will be done for critical security and critical non-security issues, and where needed to remain in sync with packages delivered in the SUSE Linux Enterprise Server and Desktop products.

Packages to rebuild SUSE Linux Enterprise Server are not part of the SUSE Linux Enterprise Software Development Kit.

","arch":"aarch64","eula_url":"https://updates.suse.com/SUSE/Products/SLE-SDK/12-SP5/aarch64/product.license/"},{"cpe":"cpe:/o:suse:sle-sdk:12:sp5","product_type":"extension","predecessor_ids":[1145,1343,1364,1428,1631],"repositories":[{"installer_updates":false,"name":"SLE-SDK12-SP5-Updates","description":"SLE-SDK12-SP5-Updates for sle-12-ppc64le","enabled":true,"id":3729,"distro_target":"sle-12-ppc64le","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-SDK/12-SP5/ppc64le/update/"},{"enabled":false,"id":3730,"autorefresh":true,"distro_target":"sle-12-ppc64le","url":"https://updates.suse.com/SUSE/Updates/SLE-SDK/12-SP5/ppc64le/update_debug/","name":"SLE-SDK12-SP5-Debuginfo-Updates","installer_updates":false,"description":"SLE-SDK12-SP5-Debuginfo-Updates for sle-12-ppc64le"},{"url":"https://updates.suse.com/SUSE/Products/SLE-SDK/12-SP5/ppc64le/product/","autorefresh":false,"distro_target":"sle-12-ppc64le","id":3731,"enabled":true,"description":"SLE-SDK12-SP5-Pool for sle-12-ppc64le","name":"SLE-SDK12-SP5-Pool","installer_updates":false},{"installer_updates":false,"name":"SLE-SDK12-SP5-Debuginfo-Pool","description":"SLE-SDK12-SP5-Debuginfo-Pool for sle-12-ppc64le","id":3732,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-SDK/12-SP5/ppc64le/product_debug/","distro_target":"sle-12-ppc64le","autorefresh":false},{"enabled":false,"id":3733,"autorefresh":false,"distro_target":"sle-12-ppc64le","url":"https://updates.suse.com/SUSE/Products/SLE-SDK/12-SP5/ppc64le/product_source/","name":"SLE-SDK12-SP5-Source-Pool","installer_updates":false,"description":"SLE-SDK12-SP5-Source-Pool for sle-12-ppc64le"}],"online_predecessor_ids":[1145,1343,1364,1428,1631],"product_class":"MODULE","eula_url":"https://updates.suse.com/SUSE/Products/SLE-SDK/12-SP5/ppc64le/product.license/","arch":"ppc64le","description":"

SUSE Linux Enterprise Software Development Kit is the Software Development Kit for the family of SUSE Linux Enterprise products. It is a free of charge extension for partners and customers working with SUSE Linux Enterprise Server and Desktop and derived products.

Packages on the SDK are delivered without L3 support; maintenance updates will be done for critical security and critical non-security issues, and where needed to remain in sync with packages delivered in the SUSE Linux Enterprise Server and Desktop products.

Packages to rebuild SUSE Linux Enterprise Server are not part of the SUSE Linux Enterprise Software Development Kit.

","shortname":"SDK12-SP5","free":true,"extensions":[],"release_stage":"released","identifier":"sle-sdk","id":1890,"friendly_version":"12 SP5","name":"SUSE Linux Enterprise Software Development Kit","offline_predecessor_ids":[],"friendly_name":"SUSE Linux Enterprise Software Development Kit 12 SP5 ppc64le","migration_extra":false,"release_type":null,"former_identifier":"sle-sdk","recommended":false,"version":"12.5"},{"release_stage":"released","identifier":"sle-sdk","id":1891,"extensions":[],"friendly_version":"12 SP5","former_identifier":"sle-sdk","release_type":null,"friendly_name":"SUSE Linux Enterprise Software Development Kit 12 SP5 s390x","migration_extra":false,"offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Software Development Kit","version":"12.5","recommended":false,"product_type":"extension","cpe":"cpe:/o:suse:sle-sdk:12:sp5","online_predecessor_ids":[1146,1344,1365,1429,1632],"product_class":"MODULE","repositories":[{"description":"SLE-SDK12-SP5-Updates for sle-12-s390x","installer_updates":false,"name":"SLE-SDK12-SP5-Updates","url":"https://updates.suse.com/SUSE/Updates/SLE-SDK/12-SP5/s390x/update/","distro_target":"sle-12-s390x","autorefresh":true,"id":3734,"enabled":true},{"name":"SLE-SDK12-SP5-Debuginfo-Updates","installer_updates":false,"description":"SLE-SDK12-SP5-Debuginfo-Updates for sle-12-s390x","id":3735,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-SDK/12-SP5/s390x/update_debug/","autorefresh":true,"distro_target":"sle-12-s390x"},{"enabled":true,"id":3736,"distro_target":"sle-12-s390x","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-SDK/12-SP5/s390x/product/","installer_updates":false,"name":"SLE-SDK12-SP5-Pool","description":"SLE-SDK12-SP5-Pool for sle-12-s390x"},{"url":"https://updates.suse.com/SUSE/Products/SLE-SDK/12-SP5/s390x/product_debug/","autorefresh":false,"distro_target":"sle-12-s390x","id":3737,"enabled":false,"description":"SLE-SDK12-SP5-Debuginfo-Pool for sle-12-s390x","name":"SLE-SDK12-SP5-Debuginfo-Pool","installer_updates":false},{"description":"SLE-SDK12-SP5-Source-Pool for sle-12-s390x","installer_updates":false,"name":"SLE-SDK12-SP5-Source-Pool","distro_target":"sle-12-s390x","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-SDK/12-SP5/s390x/product_source/","enabled":false,"id":3738}],"predecessor_ids":[1146,1344,1365,1429,1632],"arch":"s390x","eula_url":"https://updates.suse.com/SUSE/Products/SLE-SDK/12-SP5/s390x/product.license/","free":true,"shortname":"SDK12-SP5","description":"

SUSE Linux Enterprise Software Development Kit is the Software Development Kit for the family of SUSE Linux Enterprise products. It is a free of charge extension for partners and customers working with SUSE Linux Enterprise Server and Desktop and derived products.

Packages on the SDK are delivered without L3 support; maintenance updates will be done for critical security and critical non-security issues, and where needed to remain in sync with packages delivered in the SUSE Linux Enterprise Server and Desktop products.

Packages to rebuild SUSE Linux Enterprise Server are not part of the SUSE Linux Enterprise Software Development Kit.

"},{"eula_url":"https://updates.suse.com/SUSE/Products/SLE-SDK/12-SP5/x86_64/product.license/","arch":"x86_64","free":true,"shortname":"SDK12-SP5","description":"

SUSE Linux Enterprise Software Development Kit is the Software Development Kit for the family of SUSE Linux Enterprise products. It is a free of charge extension for partners and customers working with SUSE Linux Enterprise Server and Desktop and derived products.

Packages on the SDK are delivered without L3 support; maintenance updates will be done for critical security and critical non-security issues, and where needed to remain in sync with packages delivered in the SUSE Linux Enterprise Server and Desktop products.

Packages to rebuild SUSE Linux Enterprise Server are not part of the SUSE Linux Enterprise Software Development Kit.

","product_type":"extension","cpe":"cpe:/o:suse:sle-sdk:12:sp5","predecessor_ids":[1223,1323,1366,1427,1630],"product_class":"MODULE","online_predecessor_ids":[1223,1323,1366,1427,1630],"repositories":[{"name":"SLE-SDK12-SP5-Updates","installer_updates":false,"description":"SLE-SDK12-SP5-Updates for sle-12-x86_64","enabled":true,"id":3739,"autorefresh":true,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-SDK/12-SP5/x86_64/update/"},{"description":"SLE-SDK12-SP5-Debuginfo-Updates for sle-12-x86_64","name":"SLE-SDK12-SP5-Debuginfo-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-SDK/12-SP5/x86_64/update_debug/","enabled":false,"id":3740},{"name":"SLE-SDK12-SP5-Pool","installer_updates":false,"description":"SLE-SDK12-SP5-Pool for sle-12-x86_64","enabled":true,"id":3741,"autorefresh":false,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-SDK/12-SP5/x86_64/product/"},{"id":3742,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-SDK/12-SP5/x86_64/product_debug/","autorefresh":false,"distro_target":"sle-12-x86_64","name":"SLE-SDK12-SP5-Debuginfo-Pool","installer_updates":false,"description":"SLE-SDK12-SP5-Debuginfo-Pool for sle-12-x86_64"},{"distro_target":"sle-12-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-SDK/12-SP5/x86_64/product_source/","enabled":false,"id":3743,"description":"SLE-SDK12-SP5-Source-Pool for sle-12-x86_64","installer_updates":false,"name":"SLE-SDK12-SP5-Source-Pool"}],"offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Software Development Kit","former_identifier":"sle-sdk","release_type":null,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Software Development Kit 12 SP5 x86_64","recommended":false,"version":"12.5","extensions":[],"identifier":"sle-sdk","release_stage":"released","id":1892,"friendly_version":"12 SP5"},{"eula_url":"https://updates.suse.com/SUSE/Products/SLE-WE/12-SP5/x86_64/product.license/","arch":"x86_64","free":false,"description":"SUSE Linux Enterprise Workstation Extension extends the functionality of SUSE Linux Enterprise Server with packages of SUSE Linux Enterprise Desktop, like additional desktop applications (office suite, email client, graphical editor ...) and libraries. It allows to combine both products to create a full featured Workstation.","shortname":"SLEWE12-SP5","product_type":"extension","cpe":"cpe:/o:suse:sle-we:12:sp5","predecessor_ids":[1222,1338,1359,1431,1639],"online_predecessor_ids":[1222,1338,1359,1431,1639],"product_class":"SLE-WE","repositories":[{"installer_updates":false,"name":"SLE-12-SP5-GA-Desktop-nVidia-Driver","description":"SLE-12-SP5-GA-Desktop-nVidia-Driver","enabled":true,"id":3661,"distro_target":null,"autorefresh":true,"url":"https://download.nvidia.com/suse/sle12sp5/"},{"id":3744,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-WE/12-SP5/x86_64/update/","autorefresh":true,"distro_target":"sle-12-x86_64","name":"SLE-WE12-SP5-Updates","installer_updates":false,"description":"SLE-WE12-SP5-Updates for sle-12-x86_64"},{"description":"SLE-WE12-SP5-Debuginfo-Updates for sle-12-x86_64","installer_updates":false,"name":"SLE-WE12-SP5-Debuginfo-Updates","distro_target":"sle-12-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-WE/12-SP5/x86_64/update_debug/","enabled":false,"id":3745},{"description":"SLE-WE12-SP5-Pool for sle-12-x86_64","name":"SLE-WE12-SP5-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-WE/12-SP5/x86_64/product/","enabled":true,"id":3746},{"installer_updates":false,"name":"SLE-WE12-SP5-Debuginfo-Pool","description":"SLE-WE12-SP5-Debuginfo-Pool for sle-12-x86_64","enabled":false,"id":3747,"distro_target":"sle-12-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-WE/12-SP5/x86_64/product_debug/"},{"name":"SLE-WE12-SP5-Source-Pool","installer_updates":false,"description":"SLE-WE12-SP5-Source-Pool for sle-12-x86_64","enabled":false,"id":3748,"autorefresh":false,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-WE/12-SP5/x86_64/product_source/"}],"offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Workstation Extension","release_type":null,"former_identifier":"sle-we","friendly_name":"SUSE Linux Enterprise Workstation Extension 12 SP5 x86_64","migration_extra":false,"recommended":false,"version":"12.5","extensions":[],"identifier":"sle-we","release_stage":"released","id":1893,"friendly_version":"12 SP5"},{"online_predecessor_ids":[1815,1817],"product_class":"SLE-ESPOS-ARM64-ALPHA","repositories":[{"name":"SLES12-SP5-ESPOS-Updates","installer_updates":false,"description":"SLES12-SP5-ESPOS-Updates for sle-12-aarch64","id":3749,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-SP5-ESPOS/aarch64/update/","autorefresh":true,"distro_target":"sle-12-aarch64"},{"installer_updates":false,"name":"SLES12-SP5-ESPOS-Debuginfo-Updates","description":"SLES12-SP5-ESPOS-Debuginfo-Updates for sle-12-aarch64","enabled":false,"id":3750,"distro_target":"sle-12-aarch64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-SP5-ESPOS/aarch64/update_debug/"},{"description":"SLES12-SP5-ESPOS-Pool for sle-12-aarch64","installer_updates":false,"name":"SLES12-SP5-ESPOS-Pool","distro_target":"sle-12-aarch64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-SERVER/12-SP5-ESPOS/aarch64/product/","enabled":true,"id":3751},{"name":"SLES12-SP5-ESPOS-Debuginfo-Pool","installer_updates":false,"description":"SLES12-SP5-ESPOS-Debuginfo-Pool for sle-12-aarch64","id":3752,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-SERVER/12-SP5-ESPOS/aarch64/product_debug/","autorefresh":false,"distro_target":"sle-12-aarch64"},{"autorefresh":false,"distro_target":"sle-12-aarch64","url":"https://updates.suse.com/SUSE/Products/SLE-SERVER/12-SP5-ESPOS/aarch64/product_source/","enabled":false,"id":3753,"description":"SLES12-SP5-ESPOS-Source-Pool for sle-12-aarch64","name":"SLES12-SP5-ESPOS-Source-Pool","installer_updates":false}],"predecessor_ids":[1815,1817],"product_type":"extension","cpe":"cpe:/o:suse:sles-espos:12:sp5","free":false,"description":"SUSE Linux Enterprise offers a comprehensive suite of products built on a single code base. The platform addresses business needs from the smallest thin-client devices to the world's most powerful high-performance computing and mainframe servers. SUSE Linux Enterprise offers common management tools and technology certifications across the platform, and each product is enterprise-class.","shortname":"SLES12-SP5 ESPOS","arch":"aarch64","eula_url":"","friendly_version":"12 SP5","identifier":"SLES-ESPOS","release_stage":"alpha","id":1894,"extensions":[],"version":"12.5","recommended":false,"release_type":null,"former_identifier":"SLES-ESPOS","friendly_name":"SUSE Linux Enterprise Server ESPOS 12 SP5 aarch64 (ALPHA)","migration_extra":false,"offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Server ESPOS"},{"name":"SUSE Linux Enterprise Server ESPOS","offline_predecessor_ids":[],"friendly_name":"SUSE Linux Enterprise Server ESPOS 12 SP5 x86_64 (ALPHA)","migration_extra":false,"former_identifier":"SLES-ESPOS","release_type":null,"recommended":false,"version":"12.5","extensions":[],"release_stage":"alpha","id":1895,"identifier":"SLES-ESPOS","friendly_version":"12 SP5","eula_url":"","arch":"x86_64","shortname":"SLES12-SP5 ESPOS","description":"SUSE Linux Enterprise offers a comprehensive suite of products built on a single code base. The platform addresses business needs from the smallest thin-client devices to the world's most powerful high-performance computing and mainframe servers. SUSE Linux Enterprise offers common management tools and technology certifications across the platform, and each product is enterprise-class.","free":false,"cpe":"cpe:/o:suse:sles-espos:12:sp5","product_type":"extension","predecessor_ids":[1814,1816,1818],"repositories":[{"distro_target":"sle-12-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-SP5-ESPOS/x86_64/update/","enabled":true,"id":3754,"description":"SLES12-SP5-ESPOS-Updates for sle-12-x86_64","installer_updates":false,"name":"SLES12-SP5-ESPOS-Updates"},{"enabled":false,"id":3755,"autorefresh":true,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-SP5-ESPOS/x86_64/update_debug/","name":"SLES12-SP5-ESPOS-Debuginfo-Updates","installer_updates":false,"description":"SLES12-SP5-ESPOS-Debuginfo-Updates for sle-12-x86_64"},{"description":"SLES12-SP5-ESPOS-Pool for sle-12-x86_64","installer_updates":false,"name":"SLES12-SP5-ESPOS-Pool","distro_target":"sle-12-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-SERVER/12-SP5-ESPOS/x86_64/product/","enabled":true,"id":3756},{"enabled":false,"id":3757,"autorefresh":false,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-SERVER/12-SP5-ESPOS/x86_64/product_debug/","name":"SLES12-SP5-ESPOS-Debuginfo-Pool","installer_updates":false,"description":"SLES12-SP5-ESPOS-Debuginfo-Pool for sle-12-x86_64"},{"url":"https://updates.suse.com/SUSE/Products/SLE-SERVER/12-SP5-ESPOS/x86_64/product_source/","distro_target":"sle-12-x86_64","autorefresh":false,"id":3758,"enabled":false,"description":"SLES12-SP5-ESPOS-Source-Pool for sle-12-x86_64","installer_updates":false,"name":"SLES12-SP5-ESPOS-Source-Pool"}],"online_predecessor_ids":[1814,1816,1818],"product_class":"SLE-ESPOS-X86-ALPHA"},{"recommended":false,"version":"12.4","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Server BCL","release_type":null,"former_identifier":"SLES-BCL","migration_extra":false,"friendly_name":"SUSE Linux Enterprise Server BCL 12 SP4 x86_64","friendly_version":"12 SP4","extensions":[],"release_stage":"released","identifier":"SLES-BCL","id":1896,"free":false,"description":"SUSE Linux Enterprise offers a comprehensive suite of products built on a single code base. The platform addresses business needs from the smallest thin-client devices to the world's most powerful high-performance computing and mainframe servers. SUSE Linux Enterprise offers common management tools and technology certifications across the platform, and each product is enterprise-class.","shortname":"SLES12-SP4 BCL","eula_url":"","arch":"x86_64","predecessor_ids":[],"online_predecessor_ids":[],"product_class":"BCL-X86","repositories":[{"autorefresh":true,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-SP4-BCL/x86_64/update/","enabled":true,"id":3762,"description":"SLES12-SP4-BCL-Updates for sle-12-x86_64","name":"SLES12-SP4-BCL-Updates","installer_updates":false},{"name":"SLES12-SP4-BCL-Debuginfo-Updates","installer_updates":false,"description":"SLES12-SP4-BCL-Debuginfo-Updates for sle-12-x86_64","id":3763,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-SP4-BCL/x86_64/update_debug/","autorefresh":true,"distro_target":"sle-12-x86_64"},{"name":"SLES12-SP4-BCL-Pool","installer_updates":false,"description":"SLES12-SP4-BCL-Pool for sle-12-x86_64","enabled":true,"id":3764,"autorefresh":false,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-SERVER/12-SP4-BCL/x86_64/product/"},{"enabled":false,"id":3765,"distro_target":"sle-12-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-SERVER/12-SP4-BCL/x86_64/product_debug/","installer_updates":false,"name":"SLES12-SP4-BCL-Debuginfo-Pool","description":"SLES12-SP4-BCL-Debuginfo-Pool for sle-12-x86_64"},{"name":"SLES12-SP4-BCL-Source-Pool","installer_updates":false,"description":"SLES12-SP4-BCL-Source-Pool for sle-12-x86_64","enabled":false,"id":3766,"autorefresh":false,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-SERVER/12-SP4-BCL/x86_64/product_source/"}],"product_type":"extension","cpe":"cpe:/o:suse:sles-bcl:12:sp4"},{"offline_predecessor_ids":[],"name":"SUSE Manager Server","former_identifier":"SUSE-Manager-Server","release_type":null,"migration_extra":false,"friendly_name":"SUSE Manager Server 4.0 ppc64le","recommended":false,"version":"4.0","extensions":[{"predecessor_ids":[1588],"repositories":[{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15-SP1/ppc64le/update/","distro_target":"sle-15-ppc64le","autorefresh":true,"id":3251,"enabled":true,"description":"SLE-Module-Basesystem15-SP1-Updates for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-Basesystem15-SP1-Updates"},{"description":"SLE-Module-Basesystem15-SP1-Debuginfo-Updates for sle-15-ppc64le","name":"SLE-Module-Basesystem15-SP1-Debuginfo-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15-SP1/ppc64le/update_debug/","enabled":false,"id":3252},{"enabled":true,"id":3253,"distro_target":"sle-15-ppc64le","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP1/ppc64le/product/","installer_updates":false,"name":"SLE-Module-Basesystem15-SP1-Pool","description":"SLE-Module-Basesystem15-SP1-Pool for sle-15-ppc64le"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP1/ppc64le/product_debug/","distro_target":"sle-15-ppc64le","autorefresh":false,"id":3254,"enabled":false,"description":"SLE-Module-Basesystem15-SP1-Debuginfo-Pool for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-Basesystem15-SP1-Debuginfo-Pool"},{"description":"SLE-Module-Basesystem15-SP1-Source-Pool for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-Basesystem15-SP1-Source-Pool","distro_target":"sle-15-ppc64le","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP1/ppc64le/product_source/","enabled":false,"id":3255}],"online_predecessor_ids":[1588],"product_class":"MODULE","product_type":"module","cpe":"cpe:/o:suse:sle-module-basesystem:15:sp1","free":true,"shortname":"Basesystem-Module","description":"

The SUSE Linux Enterprise Basesystem Module delivers the base system of the product.

","eula_url":"","arch":"ppc64le","friendly_version":"15 SP1","extensions":[{"product_class":"MODULE","online_predecessor_ids":[1594],"repositories":[{"enabled":true,"id":3271,"distro_target":"sle-15-ppc64le","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15-SP1/ppc64le/update/","installer_updates":false,"name":"SLE-Module-Desktop-Applications15-SP1-Updates","description":"SLE-Module-Desktop-Applications15-SP1-Updates for sle-15-ppc64le"},{"distro_target":"sle-15-ppc64le","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15-SP1/ppc64le/update_debug/","enabled":false,"id":3272,"description":"SLE-Module-Desktop-Applications15-SP1-Debuginfo-Updates for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-Desktop-Applications15-SP1-Debuginfo-Updates"},{"description":"SLE-Module-Desktop-Applications15-SP1-Pool for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-Desktop-Applications15-SP1-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP1/ppc64le/product/","distro_target":"sle-15-ppc64le","autorefresh":false,"id":3273,"enabled":true},{"name":"SLE-Module-Desktop-Applications15-SP1-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-Desktop-Applications15-SP1-Debuginfo-Pool for sle-15-ppc64le","id":3274,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP1/ppc64le/product_debug/","autorefresh":false,"distro_target":"sle-15-ppc64le"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP1/ppc64le/product_source/","autorefresh":false,"distro_target":"sle-15-ppc64le","id":3275,"enabled":false,"description":"SLE-Module-Desktop-Applications15-SP1-Source-Pool for sle-15-ppc64le","name":"SLE-Module-Desktop-Applications15-SP1-Source-Pool","installer_updates":false}],"predecessor_ids":[1594],"cpe":"cpe:/o:suse:sle-module-desktop-applications:15:sp1","product_type":"module","shortname":"Desktop-Applications-Module","description":"

The SUSE Linux Enterprise Desktop Applications Module delivers a basic set of Desktop functionality.

Access to the Desktop Applications Module is included in your SUSE Linux Enterprise product subscription.

","free":true,"arch":"ppc64le","eula_url":"","friendly_version":"15 SP1","id":1774,"release_stage":"released","identifier":"sle-module-desktop-applications","extensions":[{"extensions":[],"release_stage":"released","identifier":"sle-module-development-tools","id":1792,"friendly_version":"15 SP1","name":"Development Tools Module","offline_predecessor_ids":[1145,1339,1343,1364,1428,1631,1890],"friendly_name":"Development Tools Module 15 SP1 ppc64le","migration_extra":false,"release_type":null,"former_identifier":"sle-sdk","recommended":false,"version":"15.1","cpe":"cpe:/o:suse:sle-module-development-tools:15:sp1","product_type":"module","predecessor_ids":[1597],"online_predecessor_ids":[1597],"repositories":[{"installer_updates":false,"name":"SLE-Module-DevTools15-SP1-Updates","description":"SLE-Module-DevTools15-SP1-Updates for sle-15-ppc64le","id":3361,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15-SP1/ppc64le/update/","distro_target":"sle-15-ppc64le","autorefresh":true},{"autorefresh":true,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15-SP1/ppc64le/update_debug/","enabled":false,"id":3362,"description":"SLE-Module-DevTools15-SP1-Debuginfo-Updates for sle-15-ppc64le","name":"SLE-Module-DevTools15-SP1-Debuginfo-Updates","installer_updates":false},{"description":"SLE-Module-DevTools15-SP1-Pool for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-DevTools15-SP1-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP1/ppc64le/product/","distro_target":"sle-15-ppc64le","autorefresh":false,"id":3363,"enabled":true},{"installer_updates":false,"name":"SLE-Module-DevTools15-SP1-Debuginfo-Pool","description":"SLE-Module-DevTools15-SP1-Debuginfo-Pool for sle-15-ppc64le","id":3364,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP1/ppc64le/product_debug/","distro_target":"sle-15-ppc64le","autorefresh":false},{"installer_updates":false,"name":"SLE-Module-DevTools15-SP1-Source-Pool","description":"SLE-Module-DevTools15-SP1-Source-Pool for sle-15-ppc64le","enabled":false,"id":3365,"distro_target":"sle-15-ppc64le","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP1/ppc64le/product_source/"}],"product_class":"MODULE","eula_url":"","arch":"ppc64le","shortname":"Development-Tools-Module","description":"

The Development Tools Module helps you developing applications for SUSE Linux Enterprise 15.

Access to the Development Tools Module is included in your SUSE Linux Enterprise product subscription. The module has a different lifecycle than SUSE Linux Enterprise itself.

","free":true}],"version":"15.1","recommended":false,"migration_extra":false,"friendly_name":"Desktop Applications Module 15 SP1 ppc64le","release_type":null,"former_identifier":"sle-module-desktop-applications","name":"Desktop Applications Module","offline_predecessor_ids":[]},{"eula_url":"","arch":"ppc64le","shortname":"Server-Applications-Module","description":"

The SUSE Linux Enterprise Server Applications Module delivers a basic set of Server functionality.

Access to the Server Applications Module is included in your SUSE Linux Enterprise Server subscription.

","free":true,"cpe":"cpe:/o:suse:sle-module-server-applications:15:sp1","product_type":"module","predecessor_ids":[1600],"online_predecessor_ids":[1600],"repositories":[{"description":"SLE-Module-Server-Applications15-SP1-Updates for sle-15-ppc64le","name":"SLE-Module-Server-Applications15-SP1-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15-SP1/ppc64le/update/","enabled":true,"id":3291},{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15-SP1/ppc64le/update_debug/","distro_target":"sle-15-ppc64le","autorefresh":true,"id":3292,"enabled":false,"description":"SLE-Module-Server-Applications15-SP1-Debuginfo-Updates for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-Server-Applications15-SP1-Debuginfo-Updates"},{"description":"SLE-Module-Server-Applications15-SP1-Pool for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-Server-Applications15-SP1-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP1/ppc64le/product/","distro_target":"sle-15-ppc64le","autorefresh":false,"id":3293,"enabled":true},{"enabled":false,"id":3294,"distro_target":"sle-15-ppc64le","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP1/ppc64le/product_debug/","installer_updates":false,"name":"SLE-Module-Server-Applications15-SP1-Debuginfo-Pool","description":"SLE-Module-Server-Applications15-SP1-Debuginfo-Pool for sle-15-ppc64le"},{"installer_updates":false,"name":"SLE-Module-Server-Applications15-SP1-Source-Pool","description":"SLE-Module-Server-Applications15-SP1-Source-Pool for sle-15-ppc64le","id":3295,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP1/ppc64le/product_source/","distro_target":"sle-15-ppc64le","autorefresh":false}],"product_class":"MODULE","name":"Server Applications Module","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"Server Applications Module 15 SP1 ppc64le","release_type":null,"former_identifier":"sle-module-server-applications","recommended":true,"version":"15.1","extensions":[{"cpe":"cpe:/o:suse:sle-ha:15:sp1","product_type":"extension","repositories":[{"description":"SLE-Product-HA15-SP1-Updates for sle-15-ppc64le","name":"SLE-Product-HA15-SP1-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Updates/SLE-Product-HA/15-SP1/ppc64le/update/","enabled":true,"id":3316},{"description":"SLE-Product-HA15-SP1-Debuginfo-Updates for sle-15-ppc64le","installer_updates":false,"name":"SLE-Product-HA15-SP1-Debuginfo-Updates","distro_target":"sle-15-ppc64le","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-HA/15-SP1/ppc64le/update_debug/","enabled":false,"id":3317},{"installer_updates":false,"name":"SLE-Product-HA15-SP1-Pool","description":"SLE-Product-HA15-SP1-Pool for sle-15-ppc64le","id":3318,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP1/ppc64le/product/","distro_target":"sle-15-ppc64le","autorefresh":false},{"id":3319,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP1/ppc64le/product_debug/","distro_target":"sle-15-ppc64le","autorefresh":false,"installer_updates":false,"name":"SLE-Product-HA15-SP1-Debuginfo-Pool","description":"SLE-Product-HA15-SP1-Debuginfo-Pool for sle-15-ppc64le"},{"distro_target":"sle-15-ppc64le","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP1/ppc64le/product_source/","enabled":false,"id":3320,"description":"SLE-Product-HA15-SP1-Source-Pool for sle-15-ppc64le","installer_updates":false,"name":"SLE-Product-HA15-SP1-Source-Pool"}],"online_predecessor_ids":[1606],"product_class":"SLE-HAE-PPC","predecessor_ids":[1606],"arch":"ppc64le","eula_url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP1/ppc64le/product.license/","shortname":"SLEHA15-SP1","description":"SUSE Linux High Availability Extension provides mature, industry-leading open-source high-availability clustering technologies that are easy to set up and use. It can be deployed in physical and/or virtual environments, and can cluster physical servers, virtual servers, or any combination of the two to suit your business’ needs.","free":false,"release_stage":"released","id":1783,"identifier":"sle-ha","extensions":[],"friendly_version":"15 SP1","migration_extra":false,"friendly_name":"SUSE Linux Enterprise High Availability Extension 15 SP1 ppc64le","release_type":null,"former_identifier":"sle-ha","name":"SUSE Linux Enterprise High Availability Extension","offline_predecessor_ids":[1433,1635,1882],"version":"15.1","recommended":false},{"friendly_name":"Web and Scripting Module 15 SP1 ppc64le","migration_extra":false,"former_identifier":"sle-module-web-scripting","release_type":null,"name":"Web and Scripting Module","offline_predecessor_ids":[1151],"version":"15.1","recommended":true,"id":1796,"release_stage":"released","identifier":"sle-module-web-scripting","extensions":[{"version":"4.0","recommended":true,"friendly_name":"SUSE Manager Server Module 4.0 ppc64le","migration_extra":false,"former_identifier":"sle-module-suse-manager-server","release_type":null,"name":"SUSE Manager Server Module","offline_predecessor_ids":[],"friendly_version":"4.0","identifier":"sle-module-suse-manager-server","release_stage":"released","id":1903,"extensions":[],"shortname":"SUSE Manager Server 4.0 Module","description":"SUSE Manager lets you efficiently manage physical, virtual, and cloud-based Linux systems. It provides automated and cost-effective configuration and software management, asset management, and system provisioning.","free":true,"arch":"ppc64le","eula_url":"","online_predecessor_ids":[],"repositories":[{"name":"SLE-Module-SUSE-Manager-Server-4.0-Updates","installer_updates":false,"description":"SLE-Module-SUSE-Manager-Server-4.0-Updates for sle-15-ppc64le","id":3813,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-SUSE-Manager-Server/4.0/ppc64le/update/","autorefresh":true,"distro_target":"sle-15-ppc64le"},{"name":"SLE-Module-SUSE-Manager-Server-4.0-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-SUSE-Manager-Server-4.0-Debuginfo-Updates for sle-15-ppc64le","id":3814,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-SUSE-Manager-Server/4.0/ppc64le/update_debug/","autorefresh":true,"distro_target":"sle-15-ppc64le"},{"name":"SLE-Module-SUSE-Manager-Server-4.0-Pool","installer_updates":false,"description":"SLE-Module-SUSE-Manager-Server-4.0-Pool for sle-15-ppc64le","id":3815,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-SUSE-Manager-Server/4.0/ppc64le/product/","autorefresh":false,"distro_target":"sle-15-ppc64le"},{"description":"SLE-Module-SUSE-Manager-Server-4.0-Debuginfo-Pool for sle-15-ppc64le","name":"SLE-Module-SUSE-Manager-Server-4.0-Debuginfo-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-SUSE-Manager-Server/4.0/ppc64le/product_debug/","autorefresh":false,"distro_target":"sle-15-ppc64le","id":3816,"enabled":false},{"enabled":false,"id":3817,"autorefresh":false,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Products/SLE-Module-SUSE-Manager-Server/4.0/ppc64le/product_source/","name":"SLE-Module-SUSE-Manager-Server-4.0-Source-Pool","installer_updates":false,"description":"SLE-Module-SUSE-Manager-Server-4.0-Source-Pool for sle-15-ppc64le"}],"product_class":"MODULE","predecessor_ids":[],"cpe":"cpe:/o:suse:sle-module-suse-manager-server:4.0","product_type":"module"}],"friendly_version":"15 SP1","arch":"ppc64le","eula_url":"","description":"

The SUSE Linux Enterprise Web and Scripting Module should contains additional packages that are helpful when running a webserver.

Access to the Web and Scripting Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself: Package versions in this module are usually supported for at most three years. We are planning to release more recent versions on a schedule of approximately 18 month; the exact dates may differ per package.

","shortname":"Web-Scripting-Module","free":true,"cpe":"cpe:/o:suse:sle-module-web-scripting:15:sp1","product_type":"module","product_class":"MODULE","online_predecessor_ids":[1719],"repositories":[{"enabled":true,"id":3381,"distro_target":"sle-15-ppc64le","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/15-SP1/ppc64le/update/","installer_updates":false,"name":"SLE-Module-Web-Scripting15-SP1-Updates","description":"SLE-Module-Web-Scripting15-SP1-Updates for sle-15-ppc64le"},{"distro_target":"sle-15-ppc64le","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/15-SP1/ppc64le/update_debug/","enabled":false,"id":3382,"description":"SLE-Module-Web-Scripting15-SP1-Debuginfo-Updates for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-Web-Scripting15-SP1-Debuginfo-Updates"},{"description":"SLE-Module-Web-Scripting15-SP1-Pool for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-Web-Scripting15-SP1-Pool","distro_target":"sle-15-ppc64le","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP1/ppc64le/product/","enabled":true,"id":3383},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP1/ppc64le/product_debug/","autorefresh":false,"distro_target":"sle-15-ppc64le","id":3384,"enabled":false,"description":"SLE-Module-Web-Scripting15-SP1-Debuginfo-Pool for sle-15-ppc64le","name":"SLE-Module-Web-Scripting15-SP1-Debuginfo-Pool","installer_updates":false},{"enabled":false,"id":3385,"distro_target":"sle-15-ppc64le","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP1/ppc64le/product_source/","installer_updates":false,"name":"SLE-Module-Web-Scripting15-SP1-Source-Pool","description":"SLE-Module-Web-Scripting15-SP1-Source-Pool for sle-15-ppc64le"}],"predecessor_ids":[1719]},{"cpe":"cpe:/o:suse:sle-module-legacy:15:sp1","product_type":"module","predecessor_ids":[1603],"online_predecessor_ids":[1603],"product_class":"MODULE","repositories":[{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/15-SP1/ppc64le/update/","autorefresh":true,"distro_target":"sle-15-ppc64le","id":3411,"enabled":true,"description":"SLE-Module-Legacy15-SP1-Updates for sle-15-ppc64le","name":"SLE-Module-Legacy15-SP1-Updates","installer_updates":false},{"autorefresh":true,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/15-SP1/ppc64le/update_debug/","enabled":false,"id":3412,"description":"SLE-Module-Legacy15-SP1-Debuginfo-Updates for sle-15-ppc64le","name":"SLE-Module-Legacy15-SP1-Debuginfo-Updates","installer_updates":false},{"name":"SLE-Module-Legacy15-SP1-Pool","installer_updates":false,"description":"SLE-Module-Legacy15-SP1-Pool for sle-15-ppc64le","enabled":true,"id":3413,"autorefresh":false,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15-SP1/ppc64le/product/"},{"distro_target":"sle-15-ppc64le","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15-SP1/ppc64le/product_debug/","enabled":false,"id":3414,"description":"SLE-Module-Legacy15-SP1-Debuginfo-Pool for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-Legacy15-SP1-Debuginfo-Pool"},{"name":"SLE-Module-Legacy15-SP1-Source-Pool","installer_updates":false,"description":"SLE-Module-Legacy15-SP1-Source-Pool for sle-15-ppc64le","id":3415,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15-SP1/ppc64le/product_source/","autorefresh":false,"distro_target":"sle-15-ppc64le"}],"eula_url":"","arch":"ppc64le","shortname":"Legacy-Module","description":"

The Legacy Module helps you migrating applications from SUSE Linux Enterprise 12 and other systems to SUSE Linux Enterprise 15, by providing packages which are discontinued on SUSE Linux Enterprise Server, such as: ntp, IBM Java 8, and a number of libraries.

Access to the Legacy Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself. Packages in the this module are usually supported for at most three years.

","free":true,"extensions":[],"identifier":"sle-module-legacy","release_stage":"released","id":1802,"friendly_version":"15 SP1","name":"Legacy Module","offline_predecessor_ids":[1148],"friendly_name":"Legacy Module 15 SP1 ppc64le","migration_extra":false,"former_identifier":"sle-module-legacy","release_type":null,"recommended":false,"version":"15.1"},{"eula_url":"","arch":"ppc64le","free":true,"shortname":"Public-Cloud-Module","description":"

The Public Cloud Module is a collection of tools that enables you to create and manage cloud images from the commandline on SUSE Linux Enterprise Server. When building your own images with KIWI or SUSE Studio, initialization code specific to the target cloud is included in that image.

Access to the Public Cloud Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself; please check the Release Notes for further details.

","product_type":"module","cpe":"cpe:/o:suse:sle-module-public-cloud:15:sp1","predecessor_ids":[1616],"repositories":[{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/15-SP1/ppc64le/update/","autorefresh":true,"distro_target":"sle-15-ppc64le","id":3431,"enabled":true,"description":"SLE-Module-Public-Cloud15-SP1-Updates for sle-15-ppc64le","name":"SLE-Module-Public-Cloud15-SP1-Updates","installer_updates":false},{"name":"SLE-Module-Public-Cloud15-SP1-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-Public-Cloud15-SP1-Debuginfo-Updates for sle-15-ppc64le","id":3432,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/15-SP1/ppc64le/update_debug/","autorefresh":true,"distro_target":"sle-15-ppc64le"},{"enabled":true,"id":3433,"distro_target":"sle-15-ppc64le","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP1/ppc64le/product/","installer_updates":false,"name":"SLE-Module-Public-Cloud15-SP1-Pool","description":"SLE-Module-Public-Cloud15-SP1-Pool for sle-15-ppc64le"},{"description":"SLE-Module-Public-Cloud15-SP1-Debuginfo-Pool for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-Public-Cloud15-SP1-Debuginfo-Pool","distro_target":"sle-15-ppc64le","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP1/ppc64le/product_debug/","enabled":false,"id":3434},{"description":"SLE-Module-Public-Cloud15-SP1-Source-Pool for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-Public-Cloud15-SP1-Source-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP1/ppc64le/product_source/","distro_target":"sle-15-ppc64le","autorefresh":false,"id":3435,"enabled":false}],"online_predecessor_ids":[1616],"product_class":"MODULE","offline_predecessor_ids":[1218],"name":"Public Cloud Module","release_type":null,"former_identifier":"sle-module-public-cloud","migration_extra":false,"friendly_name":"Public Cloud Module 15 SP1 ppc64le","recommended":false,"version":"15.1","extensions":[],"identifier":"sle-module-public-cloud","release_stage":"released","id":1806,"friendly_version":"15 SP1"}],"release_stage":"released","id":1778,"identifier":"sle-module-server-applications","friendly_version":"15 SP1"},{"description":"

This Module contains several packages revolving around containers and related tools.

","shortname":"Containers-Module","free":true,"arch":"ppc64le","eula_url":"","online_predecessor_ids":[1640],"product_class":"MODULE","repositories":[{"autorefresh":true,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/15-SP1/ppc64le/update/","enabled":true,"id":3341,"description":"SLE-Module-Containers15-SP1-Updates for sle-15-ppc64le","name":"SLE-Module-Containers15-SP1-Updates","installer_updates":false},{"description":"SLE-Module-Containers15-SP1-Debuginfo-Updates for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-Containers15-SP1-Debuginfo-Updates","distro_target":"sle-15-ppc64le","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/15-SP1/ppc64le/update_debug/","enabled":false,"id":3342},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP1/ppc64le/product/","distro_target":"sle-15-ppc64le","autorefresh":false,"id":3343,"enabled":true,"description":"SLE-Module-Containers15-SP1-Pool for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-Containers15-SP1-Pool"},{"autorefresh":false,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP1/ppc64le/product_debug/","enabled":false,"id":3344,"description":"SLE-Module-Containers15-SP1-Debuginfo-Pool for sle-15-ppc64le","name":"SLE-Module-Containers15-SP1-Debuginfo-Pool","installer_updates":false},{"enabled":false,"id":3345,"distro_target":"sle-15-ppc64le","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP1/ppc64le/product_source/","installer_updates":false,"name":"SLE-Module-Containers15-SP1-Source-Pool","description":"SLE-Module-Containers15-SP1-Source-Pool for sle-15-ppc64le"}],"predecessor_ids":[1640],"cpe":"cpe:/o:suse:sle-module-containers:15:sp1","product_type":"module","version":"15.1","recommended":false,"migration_extra":false,"friendly_name":"Containers Module 15 SP1 ppc64le","former_identifier":"sle-module-containers","release_type":null,"name":"Containers Module","offline_predecessor_ids":[1353],"friendly_version":"15 SP1","release_stage":"released","identifier":"sle-module-containers","id":1788,"extensions":[]},{"release_stage":"released","identifier":"sle-module-python2","id":1865,"extensions":[],"friendly_version":"15 SP1","migration_extra":false,"friendly_name":"Python 2 Module 15 SP1 ppc64le","former_identifier":"sle-module-python2","release_type":null,"name":"Python 2 Module","offline_predecessor_ids":[],"version":"15.1","recommended":true,"cpe":"cpe:/o:suse:sle-module-python2:15:sp1","product_type":"module","online_predecessor_ids":[],"product_class":"MODULE","repositories":[{"description":"SLE-Module-Python2-15-SP1-Updates for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-Python2-15-SP1-Updates","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Python2/15-SP1/ppc64le/update/","distro_target":"sle-15-ppc64le","autorefresh":true,"id":3588,"enabled":true},{"autorefresh":true,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Python2/15-SP1/ppc64le/update_debug/","enabled":false,"id":3589,"description":"SLE-Module-Python2-15-SP1-Debuginfo-Updates for sle-15-ppc64le","name":"SLE-Module-Python2-15-SP1-Debuginfo-Updates","installer_updates":false},{"installer_updates":false,"name":"SLE-Module-Python2-15-SP1-Pool","description":"SLE-Module-Python2-15-SP1-Pool for sle-15-ppc64le","id":3590,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Python2/15-SP1/ppc64le/product/","distro_target":"sle-15-ppc64le","autorefresh":false},{"installer_updates":false,"name":"SLE-Module-Python2-15-SP1-Debuginfo-Pool","description":"SLE-Module-Python2-15-SP1-Debuginfo-Pool for sle-15-ppc64le","enabled":false,"id":3591,"distro_target":"sle-15-ppc64le","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Python2/15-SP1/ppc64le/product_debug/"},{"description":"SLE-Module-Python2-15-SP1-Source-Pool for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-Python2-15-SP1-Source-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Python2/15-SP1/ppc64le/product_source/","distro_target":"sle-15-ppc64le","autorefresh":false,"id":3592,"enabled":false}],"predecessor_ids":[],"arch":"ppc64le","eula_url":"","description":"

This module contains the python 2 packages.

Access to the Python 2 Module is included in your SUSE Linux Enterprise subscription. The module has a different lifecycle than SUSE Linux Enterprise itself. Packages in the this module are usually supported for at most three years.

","shortname":"Python2-Module","free":true},{"eula_url":"","arch":"ppc64le","free":true,"shortname":"SUSE-PackageHub-15","description":"SUSE Package Hub is a free of charge extension providing access to community maintained packages built to run on SUSE Linux Enterprise Server. Built from the same sources used in the openSUSE distributions, these quality packages provide additional software to what is found in the SUSE Linux Enterprise Server product. Packages from the Package Hub are delivered without L3 support from SUSE. General updates and fixes to the packages in SUSE Package Hub are provided by the openSUSE community based on their discretion, though SUSE will monitor and ensure that any known critical security issues will be addressed. Packages in the Package Hub are approved by SUSE for use with SUSE Linux Enterprise Server 15-SP1 and to not interfere with the supportability of SUSE Linux Enterprise Server, its modules and extensions. For more information about SUSE Package Hub please visit https://packagehub.suse.com.","product_type":"extension","cpe":"cpe:/o:suse:packagehub:15:sp1","predecessor_ids":[1741],"product_class":"MODULE","online_predecessor_ids":[1741],"repositories":[{"description":"SUSE-PackageHub-15-SP1-Backports-Pool for sle-15-ppc64le","installer_updates":false,"name":"SUSE-PackageHub-15-SP1-Backports-Pool","url":"https://updates.suse.com/SUSE/Backports/SLE-15-SP1_ppc64le/standard/","distro_target":"sle-15-ppc64le","autorefresh":false,"id":3611,"enabled":true},{"enabled":false,"id":3612,"distro_target":"sle-15-ppc64le","autorefresh":true,"url":"https://updates.suse.com/SUSE/Backports/SLE-15-SP1_ppc64le/standard_debug/","installer_updates":false,"name":"SUSE-PackageHub-15-SP1-Backports-Debuginfo","description":"SUSE-PackageHub-15-SP1-Backports-Debuginfo for sle-15-ppc64le"},{"description":"SLE-Module-Packagehub-Subpackages15-SP1-Updates for sle-15-ppc64le","name":"SLE-Module-Packagehub-Subpackages15-SP1-Updates","installer_updates":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP1/ppc64le/update/","autorefresh":true,"distro_target":"sle-15-ppc64le","id":3613,"enabled":true},{"description":"SLE-Module-Packagehub-Subpackages15-SP1-Debuginfo-Updates for sle-15-ppc64le","name":"SLE-Module-Packagehub-Subpackages15-SP1-Debuginfo-Updates","installer_updates":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP1/ppc64le/update_debug/","autorefresh":true,"distro_target":"sle-15-ppc64le","id":3614,"enabled":false},{"autorefresh":false,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Backports/SLE-15-SP1_ppc64le/product/","enabled":true,"id":3615,"description":"SUSE-PackageHub-15-SP1-Pool for sle-15-ppc64le","name":"SUSE-PackageHub-15-SP1-Pool","installer_updates":false},{"name":"SLE-Module-Packagehub-Subpackages15-SP1-Pool","installer_updates":false,"description":"SLE-Module-Packagehub-Subpackages15-SP1-Pool for sle-15-ppc64le","enabled":true,"id":3616,"autorefresh":false,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP1/ppc64le/product/"},{"description":"SLE-Module-Packagehub-Subpackages15-SP1-Debuginfo-Pool for sle-15-ppc64le","name":"SLE-Module-Packagehub-Subpackages15-SP1-Debuginfo-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP1/ppc64le/product_debug/","enabled":false,"id":3617},{"id":3618,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP1/ppc64le/product_source/","autorefresh":false,"distro_target":"sle-15-ppc64le","name":"SLE-Module-Packagehub-Subpackages15-SP1-Source-Pool","installer_updates":false,"description":"SLE-Module-Packagehub-Subpackages15-SP1-Source-Pool for sle-15-ppc64le"}],"offline_predecessor_ids":[1531,1811,1913],"name":"SUSE Package Hub","release_type":null,"former_identifier":"PackageHub","migration_extra":false,"friendly_name":"SUSE Package Hub 15 SP1 ppc64le","recommended":false,"version":"15.1","extensions":[],"id":1869,"release_stage":"released","identifier":"PackageHub","friendly_version":"15 SP1"}],"release_stage":"released","id":1770,"identifier":"sle-module-basesystem","recommended":true,"version":"15.1","offline_predecessor_ids":[1294],"name":"Basesystem Module","former_identifier":"sle-module-basesystem","release_type":null,"migration_extra":false,"friendly_name":"Basesystem Module 15 SP1 ppc64le"}],"release_stage":"released","identifier":"SUSE-Manager-Server","id":1897,"friendly_version":"4.0","eula_url":"https://updates.suse.com/SUSE/Products/SLE-Product-SUSE-Manager-Server/4.0/ppc64le/product.license/","arch":"ppc64le","free":false,"description":"SUSE Manager lets you efficiently manage physical, virtual, and cloud-based Linux systems. It provides automated and cost-effective configuration and software management, asset management, and system provisioning.","shortname":"SUSE Manager Server 4.0","product_type":"base","cpe":"cpe:/o:suse:suse-manager-server:4.0","predecessor_ids":[],"online_predecessor_ids":[],"product_class":"SMS-PPC","repositories":[{"description":"SLE-Product-SUSE-Manager-Server-4.0-Updates for sle-15-ppc64le","name":"SLE-Product-SUSE-Manager-Server-4.0-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Updates/SLE-Product-SUSE-Manager-Server/4.0/ppc64le/update/","enabled":true,"id":3798},{"id":3799,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-SUSE-Manager-Server/4.0/ppc64le/update_debug/","distro_target":"sle-15-ppc64le","autorefresh":true,"installer_updates":false,"name":"SLE-Product-SUSE-Manager-Server-4.0-Debuginfo-Updates","description":"SLE-Product-SUSE-Manager-Server-4.0-Debuginfo-Updates for sle-15-ppc64le"},{"description":"SLE-Product-SUSE-Manager-Server-4.0-Pool for sle-15-ppc64le","installer_updates":false,"name":"SLE-Product-SUSE-Manager-Server-4.0-Pool","distro_target":"sle-15-ppc64le","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-SUSE-Manager-Server/4.0/ppc64le/product/","enabled":true,"id":3800},{"id":3801,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-SUSE-Manager-Server/4.0/ppc64le/product_debug/","distro_target":"sle-15-ppc64le","autorefresh":false,"installer_updates":false,"name":"SLE-Product-SUSE-Manager-Server-4.0-Debuginfo-Pool","description":"SLE-Product-SUSE-Manager-Server-4.0-Debuginfo-Pool for sle-15-ppc64le"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Product-SUSE-Manager-Server/4.0/ppc64le/product_source/","distro_target":"sle-15-ppc64le","autorefresh":false,"id":3802,"enabled":false,"description":"SLE-Product-SUSE-Manager-Server-4.0-Source-Pool for sle-15-ppc64le","installer_updates":false,"name":"SLE-Product-SUSE-Manager-Server-4.0-Source-Pool"}]},{"product_type":"base","cpe":"cpe:/o:suse:suse-manager-server:4.0","online_predecessor_ids":[],"repositories":[{"description":"SLE-Product-SUSE-Manager-Server-4.0-Updates for sle-15-s390x","installer_updates":false,"name":"SLE-Product-SUSE-Manager-Server-4.0-Updates","distro_target":"sle-15-s390x","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-SUSE-Manager-Server/4.0/s390x/update/","enabled":true,"id":3803},{"installer_updates":false,"name":"SLE-Product-SUSE-Manager-Server-4.0-Debuginfo-Updates","description":"SLE-Product-SUSE-Manager-Server-4.0-Debuginfo-Updates for sle-15-s390x","enabled":false,"id":3804,"distro_target":"sle-15-s390x","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-SUSE-Manager-Server/4.0/s390x/update_debug/"},{"installer_updates":false,"name":"SLE-Product-SUSE-Manager-Server-4.0-Pool","description":"SLE-Product-SUSE-Manager-Server-4.0-Pool for sle-15-s390x","id":3805,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-SUSE-Manager-Server/4.0/s390x/product/","distro_target":"sle-15-s390x","autorefresh":false},{"id":3806,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-SUSE-Manager-Server/4.0/s390x/product_debug/","autorefresh":false,"distro_target":"sle-15-s390x","name":"SLE-Product-SUSE-Manager-Server-4.0-Debuginfo-Pool","installer_updates":false,"description":"SLE-Product-SUSE-Manager-Server-4.0-Debuginfo-Pool for sle-15-s390x"},{"name":"SLE-Product-SUSE-Manager-Server-4.0-Source-Pool","installer_updates":false,"description":"SLE-Product-SUSE-Manager-Server-4.0-Source-Pool for sle-15-s390x","enabled":false,"id":3807,"autorefresh":false,"distro_target":"sle-15-s390x","url":"https://updates.suse.com/SUSE/Products/SLE-Product-SUSE-Manager-Server/4.0/s390x/product_source/"}],"product_class":"SMS-Z","predecessor_ids":[],"arch":"s390x","eula_url":"https://updates.suse.com/SUSE/Products/SLE-Product-SUSE-Manager-Server/4.0/s390x/product.license/","free":false,"shortname":"SUSE Manager Server 4.0","description":"SUSE Manager lets you efficiently manage physical, virtual, and cloud-based Linux systems. It provides automated and cost-effective configuration and software management, asset management, and system provisioning.","release_stage":"released","identifier":"SUSE-Manager-Server","id":1898,"extensions":[{"id":1771,"release_stage":"released","identifier":"sle-module-basesystem","extensions":[{"version":"15.1","recommended":false,"former_identifier":"sle-module-desktop-applications","release_type":null,"friendly_name":"Desktop Applications Module 15 SP1 s390x","migration_extra":false,"offline_predecessor_ids":[],"name":"Desktop Applications Module","friendly_version":"15 SP1","release_stage":"released","id":1775,"identifier":"sle-module-desktop-applications","extensions":[{"version":"15.1","recommended":false,"migration_extra":false,"friendly_name":"Development Tools Module 15 SP1 s390x","release_type":null,"former_identifier":"sle-sdk","name":"Development Tools Module","offline_predecessor_ids":[1146,1340,1344,1365,1429,1632,1891],"friendly_version":"15 SP1","release_stage":"released","identifier":"sle-module-development-tools","id":1793,"extensions":[],"shortname":"Development-Tools-Module","description":"

The Development Tools Module helps you developing applications for SUSE Linux Enterprise 15.

Access to the Development Tools Module is included in your SUSE Linux Enterprise product subscription. The module has a different lifecycle than SUSE Linux Enterprise itself.

","free":true,"arch":"s390x","eula_url":"","online_predecessor_ids":[1596],"product_class":"MODULE","repositories":[{"id":3366,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15-SP1/s390x/update/","distro_target":"sle-15-s390x","autorefresh":true,"installer_updates":false,"name":"SLE-Module-DevTools15-SP1-Updates","description":"SLE-Module-DevTools15-SP1-Updates for sle-15-s390x"},{"autorefresh":true,"distro_target":"sle-15-s390x","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15-SP1/s390x/update_debug/","enabled":false,"id":3367,"description":"SLE-Module-DevTools15-SP1-Debuginfo-Updates for sle-15-s390x","name":"SLE-Module-DevTools15-SP1-Debuginfo-Updates","installer_updates":false},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP1/s390x/product/","autorefresh":false,"distro_target":"sle-15-s390x","id":3368,"enabled":true,"description":"SLE-Module-DevTools15-SP1-Pool for sle-15-s390x","name":"SLE-Module-DevTools15-SP1-Pool","installer_updates":false},{"autorefresh":false,"distro_target":"sle-15-s390x","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP1/s390x/product_debug/","enabled":false,"id":3369,"description":"SLE-Module-DevTools15-SP1-Debuginfo-Pool for sle-15-s390x","name":"SLE-Module-DevTools15-SP1-Debuginfo-Pool","installer_updates":false},{"description":"SLE-Module-DevTools15-SP1-Source-Pool for sle-15-s390x","name":"SLE-Module-DevTools15-SP1-Source-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-15-s390x","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP1/s390x/product_source/","enabled":false,"id":3370}],"predecessor_ids":[1596],"cpe":"cpe:/o:suse:sle-module-development-tools:15:sp1","product_type":"module"}],"free":true,"description":"

The SUSE Linux Enterprise Desktop Applications Module delivers a basic set of Desktop functionality.

Access to the Desktop Applications Module is included in your SUSE Linux Enterprise product subscription.

","shortname":"Desktop-Applications-Module","arch":"s390x","eula_url":"","repositories":[{"id":3276,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15-SP1/s390x/update/","distro_target":"sle-15-s390x","autorefresh":true,"installer_updates":false,"name":"SLE-Module-Desktop-Applications15-SP1-Updates","description":"SLE-Module-Desktop-Applications15-SP1-Updates for sle-15-s390x"},{"distro_target":"sle-15-s390x","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15-SP1/s390x/update_debug/","enabled":false,"id":3277,"description":"SLE-Module-Desktop-Applications15-SP1-Debuginfo-Updates for sle-15-s390x","installer_updates":false,"name":"SLE-Module-Desktop-Applications15-SP1-Debuginfo-Updates"},{"enabled":true,"id":3278,"autorefresh":false,"distro_target":"sle-15-s390x","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP1/s390x/product/","name":"SLE-Module-Desktop-Applications15-SP1-Pool","installer_updates":false,"description":"SLE-Module-Desktop-Applications15-SP1-Pool for sle-15-s390x"},{"id":3279,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP1/s390x/product_debug/","distro_target":"sle-15-s390x","autorefresh":false,"installer_updates":false,"name":"SLE-Module-Desktop-Applications15-SP1-Debuginfo-Pool","description":"SLE-Module-Desktop-Applications15-SP1-Debuginfo-Pool for sle-15-s390x"},{"autorefresh":false,"distro_target":"sle-15-s390x","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP1/s390x/product_source/","enabled":false,"id":3280,"description":"SLE-Module-Desktop-Applications15-SP1-Source-Pool for sle-15-s390x","name":"SLE-Module-Desktop-Applications15-SP1-Source-Pool","installer_updates":false}],"online_predecessor_ids":[1593],"product_class":"MODULE","predecessor_ids":[1593],"product_type":"module","cpe":"cpe:/o:suse:sle-module-desktop-applications:15:sp1"},{"friendly_version":"15 SP1","extensions":[{"release_stage":"released","id":1784,"identifier":"sle-ha","extensions":[],"friendly_version":"15 SP1","migration_extra":false,"friendly_name":"SUSE Linux Enterprise High Availability Extension 15 SP1 s390x","release_type":null,"former_identifier":"sle-ha","name":"SUSE Linux Enterprise High Availability Extension","offline_predecessor_ids":[1080,1082,1084,1086,1109,1110,1257,1287,1434,1436,1636,1638,1883,1885],"version":"15.1","recommended":false,"cpe":"cpe:/o:suse:sle-ha:15:sp1","product_type":"extension","repositories":[{"name":"SLE-Product-HA15-SP1-Updates","installer_updates":false,"description":"SLE-Product-HA15-SP1-Updates for sle-15-s390x","id":3321,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-HA/15-SP1/s390x/update/","autorefresh":true,"distro_target":"sle-15-s390x"},{"description":"SLE-Product-HA15-SP1-Debuginfo-Updates for sle-15-s390x","name":"SLE-Product-HA15-SP1-Debuginfo-Updates","installer_updates":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-HA/15-SP1/s390x/update_debug/","autorefresh":true,"distro_target":"sle-15-s390x","id":3322,"enabled":false},{"name":"SLE-Product-HA15-SP1-Pool","installer_updates":false,"description":"SLE-Product-HA15-SP1-Pool for sle-15-s390x","id":3323,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP1/s390x/product/","autorefresh":false,"distro_target":"sle-15-s390x"},{"name":"SLE-Product-HA15-SP1-Debuginfo-Pool","installer_updates":false,"description":"SLE-Product-HA15-SP1-Debuginfo-Pool for sle-15-s390x","enabled":false,"id":3324,"autorefresh":false,"distro_target":"sle-15-s390x","url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP1/s390x/product_debug/"},{"installer_updates":false,"name":"SLE-Product-HA15-SP1-Source-Pool","description":"SLE-Product-HA15-SP1-Source-Pool for sle-15-s390x","enabled":false,"id":3325,"distro_target":"sle-15-s390x","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP1/s390x/product_source/"}],"online_predecessor_ids":[1605],"product_class":"SLE-HAE-Z","predecessor_ids":[1605],"arch":"s390x","eula_url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP1/s390x/product.license/","shortname":"SLEHA15-SP1","description":"SUSE Linux High Availability Extension provides mature, industry-leading open-source high-availability clustering technologies that are easy to set up and use. It can be deployed in physical and/or virtual environments, and can cluster physical servers, virtual servers, or any combination of the two to suit your business’ needs.","free":false},{"description":"

The SUSE Linux Enterprise Web and Scripting Module should contains additional packages that are helpful when running a webserver.

Access to the Web and Scripting Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself: Package versions in this module are usually supported for at most three years. We are planning to release more recent versions on a schedule of approximately 18 month; the exact dates may differ per package.

","shortname":"Web-Scripting-Module","free":true,"arch":"s390x","eula_url":"","online_predecessor_ids":[1720],"product_class":"MODULE","repositories":[{"name":"SLE-Module-Web-Scripting15-SP1-Updates","installer_updates":false,"description":"SLE-Module-Web-Scripting15-SP1-Updates for sle-15-s390x","id":3386,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/15-SP1/s390x/update/","autorefresh":true,"distro_target":"sle-15-s390x"},{"description":"SLE-Module-Web-Scripting15-SP1-Debuginfo-Updates for sle-15-s390x","installer_updates":false,"name":"SLE-Module-Web-Scripting15-SP1-Debuginfo-Updates","distro_target":"sle-15-s390x","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/15-SP1/s390x/update_debug/","enabled":false,"id":3387},{"autorefresh":false,"distro_target":"sle-15-s390x","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP1/s390x/product/","enabled":true,"id":3388,"description":"SLE-Module-Web-Scripting15-SP1-Pool for sle-15-s390x","name":"SLE-Module-Web-Scripting15-SP1-Pool","installer_updates":false},{"id":3389,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP1/s390x/product_debug/","autorefresh":false,"distro_target":"sle-15-s390x","name":"SLE-Module-Web-Scripting15-SP1-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-Web-Scripting15-SP1-Debuginfo-Pool for sle-15-s390x"},{"id":3390,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP1/s390x/product_source/","distro_target":"sle-15-s390x","autorefresh":false,"installer_updates":false,"name":"SLE-Module-Web-Scripting15-SP1-Source-Pool","description":"SLE-Module-Web-Scripting15-SP1-Source-Pool for sle-15-s390x"}],"predecessor_ids":[1720],"cpe":"cpe:/o:suse:sle-module-web-scripting:15:sp1","product_type":"module","version":"15.1","recommended":true,"friendly_name":"Web and Scripting Module 15 SP1 s390x","migration_extra":false,"former_identifier":"sle-module-web-scripting","release_type":null,"name":"Web and Scripting Module","offline_predecessor_ids":[1152],"friendly_version":"15 SP1","release_stage":"released","identifier":"sle-module-web-scripting","id":1797,"extensions":[{"free":true,"description":"SUSE Manager lets you efficiently manage physical, virtual, and cloud-based Linux systems. It provides automated and cost-effective configuration and software management, asset management, and system provisioning.","shortname":"SUSE Manager Server 4.0 Module","arch":"s390x","eula_url":"","product_class":"MODULE","online_predecessor_ids":[],"repositories":[{"enabled":true,"id":3818,"autorefresh":true,"distro_target":"sle-15-s390x","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-SUSE-Manager-Server/4.0/s390x/update/","name":"SLE-Module-SUSE-Manager-Server-4.0-Updates","installer_updates":false,"description":"SLE-Module-SUSE-Manager-Server-4.0-Updates for sle-15-s390x"},{"name":"SLE-Module-SUSE-Manager-Server-4.0-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-SUSE-Manager-Server-4.0-Debuginfo-Updates for sle-15-s390x","id":3819,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-SUSE-Manager-Server/4.0/s390x/update_debug/","autorefresh":true,"distro_target":"sle-15-s390x"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-SUSE-Manager-Server/4.0/s390x/product/","autorefresh":false,"distro_target":"sle-15-s390x","id":3820,"enabled":true,"description":"SLE-Module-SUSE-Manager-Server-4.0-Pool for sle-15-s390x","name":"SLE-Module-SUSE-Manager-Server-4.0-Pool","installer_updates":false},{"description":"SLE-Module-SUSE-Manager-Server-4.0-Debuginfo-Pool for sle-15-s390x","installer_updates":false,"name":"SLE-Module-SUSE-Manager-Server-4.0-Debuginfo-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-SUSE-Manager-Server/4.0/s390x/product_debug/","distro_target":"sle-15-s390x","autorefresh":false,"id":3821,"enabled":false},{"id":3822,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-SUSE-Manager-Server/4.0/s390x/product_source/","distro_target":"sle-15-s390x","autorefresh":false,"installer_updates":false,"name":"SLE-Module-SUSE-Manager-Server-4.0-Source-Pool","description":"SLE-Module-SUSE-Manager-Server-4.0-Source-Pool for sle-15-s390x"}],"predecessor_ids":[],"product_type":"module","cpe":"cpe:/o:suse:sle-module-suse-manager-server:4.0","version":"4.0","recommended":true,"former_identifier":"sle-module-suse-manager-server","release_type":null,"migration_extra":false,"friendly_name":"SUSE Manager Server Module 4.0 s390x","offline_predecessor_ids":[],"name":"SUSE Manager Server Module","friendly_version":"4.0","id":1904,"release_stage":"released","identifier":"sle-module-suse-manager-server","extensions":[]}]},{"arch":"s390x","eula_url":"","shortname":"Legacy-Module","description":"

The Legacy Module helps you migrating applications from SUSE Linux Enterprise 12 and other systems to SUSE Linux Enterprise 15, by providing packages which are discontinued on SUSE Linux Enterprise Server, such as: ntp, IBM Java 8, and a number of libraries.

Access to the Legacy Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself. Packages in the this module are usually supported for at most three years.

","free":true,"cpe":"cpe:/o:suse:sle-module-legacy:15:sp1","product_type":"module","online_predecessor_ids":[1602],"product_class":"MODULE","repositories":[{"installer_updates":false,"name":"SLE-Module-Legacy15-SP1-Updates","description":"SLE-Module-Legacy15-SP1-Updates for sle-15-s390x","id":3416,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/15-SP1/s390x/update/","distro_target":"sle-15-s390x","autorefresh":true},{"enabled":false,"id":3417,"autorefresh":true,"distro_target":"sle-15-s390x","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/15-SP1/s390x/update_debug/","name":"SLE-Module-Legacy15-SP1-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-Legacy15-SP1-Debuginfo-Updates for sle-15-s390x"},{"description":"SLE-Module-Legacy15-SP1-Pool for sle-15-s390x","installer_updates":false,"name":"SLE-Module-Legacy15-SP1-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15-SP1/s390x/product/","distro_target":"sle-15-s390x","autorefresh":false,"id":3418,"enabled":true},{"autorefresh":false,"distro_target":"sle-15-s390x","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15-SP1/s390x/product_debug/","enabled":false,"id":3419,"description":"SLE-Module-Legacy15-SP1-Debuginfo-Pool for sle-15-s390x","name":"SLE-Module-Legacy15-SP1-Debuginfo-Pool","installer_updates":false},{"id":3420,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15-SP1/s390x/product_source/","autorefresh":false,"distro_target":"sle-15-s390x","name":"SLE-Module-Legacy15-SP1-Source-Pool","installer_updates":false,"description":"SLE-Module-Legacy15-SP1-Source-Pool for sle-15-s390x"}],"predecessor_ids":[1602],"migration_extra":false,"friendly_name":"Legacy Module 15 SP1 s390x","former_identifier":"sle-module-legacy","release_type":null,"name":"Legacy Module","offline_predecessor_ids":[1149],"version":"15.1","recommended":false,"release_stage":"released","id":1803,"identifier":"sle-module-legacy","extensions":[],"friendly_version":"15 SP1"},{"recommended":false,"version":"15.1","name":"Public Cloud Module","offline_predecessor_ids":[1219],"friendly_name":"Public Cloud Module 15 SP1 s390x","migration_extra":false,"release_type":null,"former_identifier":"sle-module-public-cloud","friendly_version":"15 SP1","extensions":[],"identifier":"sle-module-public-cloud","release_stage":"released","id":1807,"description":"

The Public Cloud Module is a collection of tools that enables you to create and manage cloud images from the commandline on SUSE Linux Enterprise Server. When building your own images with KIWI or SUSE Studio, initialization code specific to the target cloud is included in that image.

Access to the Public Cloud Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself; please check the Release Notes for further details.

","shortname":"Public-Cloud-Module","free":true,"eula_url":"","arch":"s390x","predecessor_ids":[1646],"online_predecessor_ids":[1646],"product_class":"MODULE","repositories":[{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/15-SP1/s390x/update/","distro_target":"sle-15-s390x","autorefresh":true,"id":3436,"enabled":true,"description":"SLE-Module-Public-Cloud15-SP1-Updates for sle-15-s390x","installer_updates":false,"name":"SLE-Module-Public-Cloud15-SP1-Updates"},{"name":"SLE-Module-Public-Cloud15-SP1-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-Public-Cloud15-SP1-Debuginfo-Updates for sle-15-s390x","enabled":false,"id":3437,"autorefresh":true,"distro_target":"sle-15-s390x","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/15-SP1/s390x/update_debug/"},{"name":"SLE-Module-Public-Cloud15-SP1-Pool","installer_updates":false,"description":"SLE-Module-Public-Cloud15-SP1-Pool for sle-15-s390x","id":3438,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP1/s390x/product/","autorefresh":false,"distro_target":"sle-15-s390x"},{"enabled":false,"id":3439,"autorefresh":false,"distro_target":"sle-15-s390x","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP1/s390x/product_debug/","name":"SLE-Module-Public-Cloud15-SP1-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-Public-Cloud15-SP1-Debuginfo-Pool for sle-15-s390x"},{"description":"SLE-Module-Public-Cloud15-SP1-Source-Pool for sle-15-s390x","installer_updates":false,"name":"SLE-Module-Public-Cloud15-SP1-Source-Pool","distro_target":"sle-15-s390x","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP1/s390x/product_source/","enabled":false,"id":3440}],"cpe":"cpe:/o:suse:sle-module-public-cloud:15:sp1","product_type":"module"}],"release_stage":"released","id":1779,"identifier":"sle-module-server-applications","recommended":true,"version":"15.1","name":"Server Applications Module","offline_predecessor_ids":[],"friendly_name":"Server Applications Module 15 SP1 s390x","migration_extra":false,"former_identifier":"sle-module-server-applications","release_type":null,"predecessor_ids":[1599],"product_class":"MODULE","online_predecessor_ids":[1599],"repositories":[{"name":"SLE-Module-Server-Applications15-SP1-Updates","installer_updates":false,"description":"SLE-Module-Server-Applications15-SP1-Updates for sle-15-s390x","id":3296,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15-SP1/s390x/update/","autorefresh":true,"distro_target":"sle-15-s390x"},{"distro_target":"sle-15-s390x","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15-SP1/s390x/update_debug/","enabled":false,"id":3297,"description":"SLE-Module-Server-Applications15-SP1-Debuginfo-Updates for sle-15-s390x","installer_updates":false,"name":"SLE-Module-Server-Applications15-SP1-Debuginfo-Updates"},{"id":3298,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP1/s390x/product/","distro_target":"sle-15-s390x","autorefresh":false,"installer_updates":false,"name":"SLE-Module-Server-Applications15-SP1-Pool","description":"SLE-Module-Server-Applications15-SP1-Pool for sle-15-s390x"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP1/s390x/product_debug/","distro_target":"sle-15-s390x","autorefresh":false,"id":3299,"enabled":false,"description":"SLE-Module-Server-Applications15-SP1-Debuginfo-Pool for sle-15-s390x","installer_updates":false,"name":"SLE-Module-Server-Applications15-SP1-Debuginfo-Pool"},{"installer_updates":false,"name":"SLE-Module-Server-Applications15-SP1-Source-Pool","description":"SLE-Module-Server-Applications15-SP1-Source-Pool for sle-15-s390x","enabled":false,"id":3300,"distro_target":"sle-15-s390x","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP1/s390x/product_source/"}],"cpe":"cpe:/o:suse:sle-module-server-applications:15:sp1","product_type":"module","description":"

The SUSE Linux Enterprise Server Applications Module delivers a basic set of Server functionality.

Access to the Server Applications Module is included in your SUSE Linux Enterprise Server subscription.

","shortname":"Server-Applications-Module","free":true,"eula_url":"","arch":"s390x"},{"product_type":"module","cpe":"cpe:/o:suse:sle-module-containers:15:sp1","product_class":"MODULE","online_predecessor_ids":[1641],"repositories":[{"description":"SLE-Module-Containers15-SP1-Updates for sle-15-s390x","installer_updates":false,"name":"SLE-Module-Containers15-SP1-Updates","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/15-SP1/s390x/update/","distro_target":"sle-15-s390x","autorefresh":true,"id":3346,"enabled":true},{"description":"SLE-Module-Containers15-SP1-Debuginfo-Updates for sle-15-s390x","installer_updates":false,"name":"SLE-Module-Containers15-SP1-Debuginfo-Updates","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/15-SP1/s390x/update_debug/","distro_target":"sle-15-s390x","autorefresh":true,"id":3347,"enabled":false},{"id":3348,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP1/s390x/product/","distro_target":"sle-15-s390x","autorefresh":false,"installer_updates":false,"name":"SLE-Module-Containers15-SP1-Pool","description":"SLE-Module-Containers15-SP1-Pool for sle-15-s390x"},{"enabled":false,"id":3349,"autorefresh":false,"distro_target":"sle-15-s390x","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP1/s390x/product_debug/","name":"SLE-Module-Containers15-SP1-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-Containers15-SP1-Debuginfo-Pool for sle-15-s390x"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP1/s390x/product_source/","distro_target":"sle-15-s390x","autorefresh":false,"id":3350,"enabled":false,"description":"SLE-Module-Containers15-SP1-Source-Pool for sle-15-s390x","installer_updates":false,"name":"SLE-Module-Containers15-SP1-Source-Pool"}],"predecessor_ids":[1641],"arch":"s390x","eula_url":"","free":true,"shortname":"Containers-Module","description":"

This Module contains several packages revolving around containers and related tools.

","release_stage":"released","id":1789,"identifier":"sle-module-containers","extensions":[],"friendly_version":"15 SP1","former_identifier":"sle-module-containers","release_type":null,"friendly_name":"Containers Module 15 SP1 s390x","migration_extra":false,"offline_predecessor_ids":[1354],"name":"Containers Module","version":"15.1","recommended":false},{"predecessor_ids":[],"product_class":"MODULE","online_predecessor_ids":[],"repositories":[{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Python2/15-SP1/s390x/update/","distro_target":"sle-15-s390x","autorefresh":true,"id":3593,"enabled":true,"description":"SLE-Module-Python2-15-SP1-Updates for sle-15-s390x","installer_updates":false,"name":"SLE-Module-Python2-15-SP1-Updates"},{"description":"SLE-Module-Python2-15-SP1-Debuginfo-Updates for sle-15-s390x","installer_updates":false,"name":"SLE-Module-Python2-15-SP1-Debuginfo-Updates","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Python2/15-SP1/s390x/update_debug/","distro_target":"sle-15-s390x","autorefresh":true,"id":3594,"enabled":false},{"description":"SLE-Module-Python2-15-SP1-Pool for sle-15-s390x","name":"SLE-Module-Python2-15-SP1-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Python2/15-SP1/s390x/product/","autorefresh":false,"distro_target":"sle-15-s390x","id":3595,"enabled":true},{"description":"SLE-Module-Python2-15-SP1-Debuginfo-Pool for sle-15-s390x","installer_updates":false,"name":"SLE-Module-Python2-15-SP1-Debuginfo-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Python2/15-SP1/s390x/product_debug/","distro_target":"sle-15-s390x","autorefresh":false,"id":3596,"enabled":false},{"enabled":false,"id":3597,"autorefresh":false,"distro_target":"sle-15-s390x","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Python2/15-SP1/s390x/product_source/","name":"SLE-Module-Python2-15-SP1-Source-Pool","installer_updates":false,"description":"SLE-Module-Python2-15-SP1-Source-Pool for sle-15-s390x"}],"cpe":"cpe:/o:suse:sle-module-python2:15:sp1","product_type":"module","description":"

This module contains the python 2 packages.

Access to the Python 2 Module is included in your SUSE Linux Enterprise subscription. The module has a different lifecycle than SUSE Linux Enterprise itself. Packages in the this module are usually supported for at most three years.

","shortname":"Python2-Module","free":true,"eula_url":"","arch":"s390x","friendly_version":"15 SP1","extensions":[],"identifier":"sle-module-python2","release_stage":"released","id":1866,"recommended":true,"version":"15.1","name":"Python 2 Module","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"Python 2 Module 15 SP1 s390x","former_identifier":"sle-module-python2","release_type":null},{"extensions":[],"release_stage":"released","identifier":"PackageHub","id":1870,"friendly_version":"15 SP1","name":"SUSE Package Hub","offline_predecessor_ids":[1530,1812,1914],"migration_extra":false,"friendly_name":"SUSE Package Hub 15 SP1 s390x","release_type":null,"former_identifier":"PackageHub","recommended":false,"version":"15.1","cpe":"cpe:/o:suse:packagehub:15:sp1","product_type":"extension","predecessor_ids":[1742],"online_predecessor_ids":[1742],"repositories":[{"name":"SUSE-PackageHub-15-SP1-Backports-Pool","installer_updates":false,"description":"SUSE-PackageHub-15-SP1-Backports-Pool for sle-15-s390x","id":3619,"enabled":true,"url":"https://updates.suse.com/SUSE/Backports/SLE-15-SP1_s390x/standard/","autorefresh":false,"distro_target":"sle-15-s390x"},{"description":"SUSE-PackageHub-15-SP1-Backports-Debuginfo for sle-15-s390x","name":"SUSE-PackageHub-15-SP1-Backports-Debuginfo","installer_updates":false,"url":"https://updates.suse.com/SUSE/Backports/SLE-15-SP1_s390x/standard_debug/","autorefresh":true,"distro_target":"sle-15-s390x","id":3620,"enabled":false},{"installer_updates":false,"name":"SLE-Module-Packagehub-Subpackages15-SP1-Updates","description":"SLE-Module-Packagehub-Subpackages15-SP1-Updates for sle-15-s390x","id":3621,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP1/s390x/update/","distro_target":"sle-15-s390x","autorefresh":true},{"enabled":false,"id":3622,"distro_target":"sle-15-s390x","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP1/s390x/update_debug/","installer_updates":false,"name":"SLE-Module-Packagehub-Subpackages15-SP1-Debuginfo-Updates","description":"SLE-Module-Packagehub-Subpackages15-SP1-Debuginfo-Updates for sle-15-s390x"},{"id":3623,"enabled":true,"url":"https://updates.suse.com/SUSE/Backports/SLE-15-SP1_s390x/product/","autorefresh":false,"distro_target":"sle-15-s390x","name":"SUSE-PackageHub-15-SP1-Pool","installer_updates":false,"description":"SUSE-PackageHub-15-SP1-Pool for sle-15-s390x"},{"distro_target":"sle-15-s390x","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP1/s390x/product/","enabled":true,"id":3624,"description":"SLE-Module-Packagehub-Subpackages15-SP1-Pool for sle-15-s390x","installer_updates":false,"name":"SLE-Module-Packagehub-Subpackages15-SP1-Pool"},{"description":"SLE-Module-Packagehub-Subpackages15-SP1-Debuginfo-Pool for sle-15-s390x","name":"SLE-Module-Packagehub-Subpackages15-SP1-Debuginfo-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-15-s390x","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP1/s390x/product_debug/","enabled":false,"id":3625},{"name":"SLE-Module-Packagehub-Subpackages15-SP1-Source-Pool","installer_updates":false,"description":"SLE-Module-Packagehub-Subpackages15-SP1-Source-Pool for sle-15-s390x","enabled":false,"id":3626,"autorefresh":false,"distro_target":"sle-15-s390x","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP1/s390x/product_source/"}],"product_class":"MODULE","eula_url":"","arch":"s390x","shortname":"SUSE-PackageHub-15","description":"SUSE Package Hub is a free of charge extension providing access to community maintained packages built to run on SUSE Linux Enterprise Server. Built from the same sources used in the openSUSE distributions, these quality packages provide additional software to what is found in the SUSE Linux Enterprise Server product. Packages from the Package Hub are delivered without L3 support from SUSE. General updates and fixes to the packages in SUSE Package Hub are provided by the openSUSE community based on their discretion, though SUSE will monitor and ensure that any known critical security issues will be addressed. Packages in the Package Hub are approved by SUSE for use with SUSE Linux Enterprise Server 15-SP1 and to not interfere with the supportability of SUSE Linux Enterprise Server, its modules and extensions. For more information about SUSE Package Hub please visit https://packagehub.suse.com.","free":true}],"friendly_version":"15 SP1","former_identifier":"sle-module-basesystem","release_type":null,"migration_extra":false,"friendly_name":"Basesystem Module 15 SP1 s390x","offline_predecessor_ids":[1295,1367],"name":"Basesystem Module","version":"15.1","recommended":true,"product_type":"module","cpe":"cpe:/o:suse:sle-module-basesystem:15:sp1","repositories":[{"installer_updates":false,"name":"SLE-Module-Basesystem15-SP1-Updates","description":"SLE-Module-Basesystem15-SP1-Updates for sle-15-s390x","enabled":true,"id":3256,"distro_target":"sle-15-s390x","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15-SP1/s390x/update/"},{"description":"SLE-Module-Basesystem15-SP1-Debuginfo-Updates for sle-15-s390x","installer_updates":false,"name":"SLE-Module-Basesystem15-SP1-Debuginfo-Updates","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15-SP1/s390x/update_debug/","distro_target":"sle-15-s390x","autorefresh":true,"id":3257,"enabled":false},{"description":"SLE-Module-Basesystem15-SP1-Pool for sle-15-s390x","name":"SLE-Module-Basesystem15-SP1-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-15-s390x","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP1/s390x/product/","enabled":true,"id":3258},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP1/s390x/product_debug/","distro_target":"sle-15-s390x","autorefresh":false,"id":3259,"enabled":false,"description":"SLE-Module-Basesystem15-SP1-Debuginfo-Pool for sle-15-s390x","installer_updates":false,"name":"SLE-Module-Basesystem15-SP1-Debuginfo-Pool"},{"description":"SLE-Module-Basesystem15-SP1-Source-Pool for sle-15-s390x","installer_updates":false,"name":"SLE-Module-Basesystem15-SP1-Source-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP1/s390x/product_source/","distro_target":"sle-15-s390x","autorefresh":false,"id":3260,"enabled":false}],"online_predecessor_ids":[1587],"product_class":"MODULE","predecessor_ids":[1587],"arch":"s390x","eula_url":"","free":true,"description":"

The SUSE Linux Enterprise Basesystem Module delivers the base system of the product.

","shortname":"Basesystem-Module"}],"friendly_version":"4.0","former_identifier":"SUSE-Manager-Server","release_type":null,"friendly_name":"SUSE Manager Server 4.0 s390x","migration_extra":false,"offline_predecessor_ids":[],"name":"SUSE Manager Server","version":"4.0","recommended":false},{"identifier":"SUSE-Manager-Server","release_stage":"released","id":1899,"extensions":[{"offline_predecessor_ids":[1212,1368,1440,1618],"name":"Basesystem Module","former_identifier":"sle-module-basesystem","release_type":null,"friendly_name":"Basesystem Module 15 SP1 x86_64","migration_extra":false,"recommended":true,"version":"15.1","extensions":[{"release_stage":"released","id":1776,"identifier":"sle-module-desktop-applications","extensions":[{"recommended":false,"version":"15.1","offline_predecessor_ids":[1223,1323,1341,1366,1427,1630,1892],"name":"Development Tools Module","release_type":null,"former_identifier":"sle-sdk","migration_extra":false,"friendly_name":"Development Tools Module 15 SP1 x86_64","friendly_version":"15 SP1","extensions":[],"identifier":"sle-module-development-tools","release_stage":"released","id":1794,"free":true,"description":"

The Development Tools Module helps you developing applications for SUSE Linux Enterprise 15.

Access to the Development Tools Module is included in your SUSE Linux Enterprise product subscription. The module has a different lifecycle than SUSE Linux Enterprise itself.

","shortname":"Development-Tools-Module","eula_url":"","arch":"x86_64","predecessor_ids":[1579],"product_class":"MODULE","online_predecessor_ids":[1579],"repositories":[{"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15-SP1/x86_64/update/","enabled":true,"id":3371,"description":"SLE-Module-DevTools15-SP1-Updates for sle-15-x86_64","name":"SLE-Module-DevTools15-SP1-Updates","installer_updates":false},{"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15-SP1/x86_64/update_debug/","enabled":false,"id":3372,"description":"SLE-Module-DevTools15-SP1-Debuginfo-Updates for sle-15-x86_64","name":"SLE-Module-DevTools15-SP1-Debuginfo-Updates","installer_updates":false},{"description":"SLE-Module-DevTools15-SP1-Pool for sle-15-x86_64","name":"SLE-Module-DevTools15-SP1-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP1/x86_64/product/","autorefresh":false,"distro_target":"sle-15-x86_64","id":3373,"enabled":true},{"enabled":false,"id":3374,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP1/x86_64/product_debug/","name":"SLE-Module-DevTools15-SP1-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-DevTools15-SP1-Debuginfo-Pool for sle-15-x86_64"},{"id":3375,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP1/x86_64/product_source/","autorefresh":false,"distro_target":"sle-15-x86_64","name":"SLE-Module-DevTools15-SP1-Source-Pool","installer_updates":false,"description":"SLE-Module-DevTools15-SP1-Source-Pool for sle-15-x86_64"}],"product_type":"module","cpe":"cpe:/o:suse:sle-module-development-tools:15:sp1"}],"friendly_version":"15 SP1","friendly_name":"Desktop Applications Module 15 SP1 x86_64","migration_extra":false,"release_type":null,"former_identifier":"sle-module-desktop-applications","name":"Desktop Applications Module","offline_predecessor_ids":[],"version":"15.1","recommended":false,"cpe":"cpe:/o:suse:sle-module-desktop-applications:15:sp1","product_type":"module","online_predecessor_ids":[1578],"repositories":[{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15-SP1/x86_64/update/","autorefresh":true,"distro_target":"sle-15-x86_64","id":3281,"enabled":true,"description":"SLE-Module-Desktop-Applications15-SP1-Updates for sle-15-x86_64","name":"SLE-Module-Desktop-Applications15-SP1-Updates","installer_updates":false},{"installer_updates":false,"name":"SLE-Module-Desktop-Applications15-SP1-Debuginfo-Updates","description":"SLE-Module-Desktop-Applications15-SP1-Debuginfo-Updates for sle-15-x86_64","enabled":false,"id":3282,"distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15-SP1/x86_64/update_debug/"},{"description":"SLE-Module-Desktop-Applications15-SP1-Pool for sle-15-x86_64","name":"SLE-Module-Desktop-Applications15-SP1-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP1/x86_64/product/","autorefresh":false,"distro_target":"sle-15-x86_64","id":3283,"enabled":true},{"installer_updates":false,"name":"SLE-Module-Desktop-Applications15-SP1-Debuginfo-Pool","description":"SLE-Module-Desktop-Applications15-SP1-Debuginfo-Pool for sle-15-x86_64","enabled":false,"id":3284,"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP1/x86_64/product_debug/"},{"description":"SLE-Module-Desktop-Applications15-SP1-Source-Pool for sle-15-x86_64","name":"SLE-Module-Desktop-Applications15-SP1-Source-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP1/x86_64/product_source/","autorefresh":false,"distro_target":"sle-15-x86_64","id":3285,"enabled":false}],"product_class":"MODULE","predecessor_ids":[1578],"arch":"x86_64","eula_url":"","shortname":"Desktop-Applications-Module","description":"

The SUSE Linux Enterprise Desktop Applications Module delivers a basic set of Desktop functionality.

Access to the Desktop Applications Module is included in your SUSE Linux Enterprise product subscription.

","free":true},{"release_type":null,"former_identifier":"sle-module-server-applications","migration_extra":false,"friendly_name":"Server Applications Module 15 SP1 x86_64","offline_predecessor_ids":[],"name":"Server Applications Module","version":"15.1","recommended":true,"identifier":"sle-module-server-applications","release_stage":"released","id":1780,"extensions":[{"friendly_name":"SUSE Linux Enterprise High Availability Extension 15 SP1 x86_64","migration_extra":false,"release_type":null,"former_identifier":"sle-ha","name":"SUSE Linux Enterprise High Availability Extension","offline_predecessor_ids":[958,961,967,971,1101,1107,1256,1286,1432,1435,1634,1637,1884,1886],"version":"15.1","recommended":false,"identifier":"sle-ha","release_stage":"released","id":1785,"extensions":[],"friendly_version":"15 SP1","arch":"x86_64","eula_url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP1/x86_64/product.license/","description":"SUSE Linux High Availability Extension provides mature, industry-leading open-source high-availability clustering technologies that are easy to set up and use. It can be deployed in physical and/or virtual environments, and can cluster physical servers, virtual servers, or any combination of the two to suit your business’ needs.","shortname":"SLEHA15-SP1","free":false,"cpe":"cpe:/o:suse:sle-ha:15:sp1","product_type":"extension","product_class":"SLE-HAE-X86","online_predecessor_ids":[1582],"repositories":[{"description":"SLE-Product-HA15-SP1-Updates for sle-15-x86_64","name":"SLE-Product-HA15-SP1-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Product-HA/15-SP1/x86_64/update/","enabled":true,"id":3326},{"distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-HA/15-SP1/x86_64/update_debug/","enabled":false,"id":3327,"description":"SLE-Product-HA15-SP1-Debuginfo-Updates for sle-15-x86_64","installer_updates":false,"name":"SLE-Product-HA15-SP1-Debuginfo-Updates"},{"enabled":true,"id":3328,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP1/x86_64/product/","name":"SLE-Product-HA15-SP1-Pool","installer_updates":false,"description":"SLE-Product-HA15-SP1-Pool for sle-15-x86_64"},{"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP1/x86_64/product_debug/","enabled":false,"id":3329,"description":"SLE-Product-HA15-SP1-Debuginfo-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Product-HA15-SP1-Debuginfo-Pool"},{"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP1/x86_64/product_source/","enabled":false,"id":3330,"description":"SLE-Product-HA15-SP1-Source-Pool for sle-15-x86_64","name":"SLE-Product-HA15-SP1-Source-Pool","installer_updates":false}],"predecessor_ids":[1582]},{"release_stage":"released","identifier":"sle-module-web-scripting","id":1798,"extensions":[{"friendly_version":"4.0","extensions":[],"release_stage":"released","id":1905,"identifier":"sle-module-suse-manager-server","recommended":true,"version":"4.0","offline_predecessor_ids":[],"name":"SUSE Manager Server Module","former_identifier":"sle-module-suse-manager-server","release_type":null,"migration_extra":false,"friendly_name":"SUSE Manager Server Module 4.0 x86_64","predecessor_ids":[],"repositories":[{"name":"SLE-Module-SUSE-Manager-Server-4.0-Updates","installer_updates":false,"description":"SLE-Module-SUSE-Manager-Server-4.0-Updates for sle-15-x86_64","enabled":true,"id":3823,"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-SUSE-Manager-Server/4.0/x86_64/update/"},{"name":"SLE-Module-SUSE-Manager-Server-4.0-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-SUSE-Manager-Server-4.0-Debuginfo-Updates for sle-15-x86_64","id":3824,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-SUSE-Manager-Server/4.0/x86_64/update_debug/","autorefresh":true,"distro_target":"sle-15-x86_64"},{"name":"SLE-Module-SUSE-Manager-Server-4.0-Pool","installer_updates":false,"description":"SLE-Module-SUSE-Manager-Server-4.0-Pool for sle-15-x86_64","enabled":true,"id":3825,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-SUSE-Manager-Server/4.0/x86_64/product/"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-SUSE-Manager-Server/4.0/x86_64/product_debug/","distro_target":"sle-15-x86_64","autorefresh":false,"id":3826,"enabled":false,"description":"SLE-Module-SUSE-Manager-Server-4.0-Debuginfo-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-SUSE-Manager-Server-4.0-Debuginfo-Pool"},{"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-SUSE-Manager-Server/4.0/x86_64/product_source/","enabled":false,"id":3827,"description":"SLE-Module-SUSE-Manager-Server-4.0-Source-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-SUSE-Manager-Server-4.0-Source-Pool"}],"online_predecessor_ids":[],"product_class":"MODULE","product_type":"module","cpe":"cpe:/o:suse:sle-module-suse-manager-server:4.0","free":true,"description":"SUSE Manager lets you efficiently manage physical, virtual, and cloud-based Linux systems. It provides automated and cost-effective configuration and software management, asset management, and system provisioning.","shortname":"SUSE Manager Server 4.0 Module","eula_url":"","arch":"x86_64"}],"friendly_version":"15 SP1","migration_extra":false,"friendly_name":"Web and Scripting Module 15 SP1 x86_64","release_type":null,"former_identifier":"sle-module-web-scripting","name":"Web and Scripting Module","offline_predecessor_ids":[1153],"version":"15.1","recommended":true,"cpe":"cpe:/o:suse:sle-module-web-scripting:15:sp1","product_type":"module","online_predecessor_ids":[1721],"product_class":"MODULE","repositories":[{"description":"SLE-Module-Web-Scripting15-SP1-Updates for sle-15-x86_64","name":"SLE-Module-Web-Scripting15-SP1-Updates","installer_updates":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/15-SP1/x86_64/update/","autorefresh":true,"distro_target":"sle-15-x86_64","id":3391,"enabled":true},{"installer_updates":false,"name":"SLE-Module-Web-Scripting15-SP1-Debuginfo-Updates","description":"SLE-Module-Web-Scripting15-SP1-Debuginfo-Updates for sle-15-x86_64","id":3392,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/15-SP1/x86_64/update_debug/","distro_target":"sle-15-x86_64","autorefresh":true},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP1/x86_64/product/","autorefresh":false,"distro_target":"sle-15-x86_64","id":3393,"enabled":true,"description":"SLE-Module-Web-Scripting15-SP1-Pool for sle-15-x86_64","name":"SLE-Module-Web-Scripting15-SP1-Pool","installer_updates":false},{"name":"SLE-Module-Web-Scripting15-SP1-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-Web-Scripting15-SP1-Debuginfo-Pool for sle-15-x86_64","id":3394,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP1/x86_64/product_debug/","autorefresh":false,"distro_target":"sle-15-x86_64"},{"id":3395,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP1/x86_64/product_source/","autorefresh":false,"distro_target":"sle-15-x86_64","name":"SLE-Module-Web-Scripting15-SP1-Source-Pool","installer_updates":false,"description":"SLE-Module-Web-Scripting15-SP1-Source-Pool for sle-15-x86_64"}],"predecessor_ids":[1721],"arch":"x86_64","eula_url":"","description":"

The SUSE Linux Enterprise Web and Scripting Module should contains additional packages that are helpful when running a webserver.

Access to the Web and Scripting Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself: Package versions in this module are usually supported for at most three years. We are planning to release more recent versions on a schedule of approximately 18 month; the exact dates may differ per package.

","shortname":"Web-Scripting-Module","free":true},{"cpe":"cpe:/o:suse:sle-module-legacy:15:sp1","product_type":"module","product_class":"MODULE","online_predecessor_ids":[1581],"repositories":[{"name":"SLE-Module-Legacy15-SP1-Updates","installer_updates":false,"description":"SLE-Module-Legacy15-SP1-Updates for sle-15-x86_64","enabled":true,"id":3421,"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/15-SP1/x86_64/update/"},{"description":"SLE-Module-Legacy15-SP1-Debuginfo-Updates for sle-15-x86_64","name":"SLE-Module-Legacy15-SP1-Debuginfo-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/15-SP1/x86_64/update_debug/","enabled":false,"id":3422},{"installer_updates":false,"name":"SLE-Module-Legacy15-SP1-Pool","description":"SLE-Module-Legacy15-SP1-Pool for sle-15-x86_64","id":3423,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15-SP1/x86_64/product/","distro_target":"sle-15-x86_64","autorefresh":false},{"id":3424,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15-SP1/x86_64/product_debug/","autorefresh":false,"distro_target":"sle-15-x86_64","name":"SLE-Module-Legacy15-SP1-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-Legacy15-SP1-Debuginfo-Pool for sle-15-x86_64"},{"name":"SLE-Module-Legacy15-SP1-Source-Pool","installer_updates":false,"description":"SLE-Module-Legacy15-SP1-Source-Pool for sle-15-x86_64","id":3425,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15-SP1/x86_64/product_source/","autorefresh":false,"distro_target":"sle-15-x86_64"}],"predecessor_ids":[1581],"arch":"x86_64","eula_url":"","description":"

The Legacy Module helps you migrating applications from SUSE Linux Enterprise 12 and other systems to SUSE Linux Enterprise 15, by providing packages which are discontinued on SUSE Linux Enterprise Server, such as: ntp, IBM Java 8, and a number of libraries.

Access to the Legacy Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself. Packages in the this module are usually supported for at most three years.

","shortname":"Legacy-Module","free":true,"release_stage":"released","identifier":"sle-module-legacy","id":1804,"extensions":[],"friendly_version":"15 SP1","friendly_name":"Legacy Module 15 SP1 x86_64","migration_extra":false,"release_type":null,"former_identifier":"sle-module-legacy","name":"Legacy Module","offline_predecessor_ids":[1150],"version":"15.1","recommended":false},{"predecessor_ids":[1611],"product_class":"MODULE","online_predecessor_ids":[1611],"repositories":[{"installer_updates":false,"name":"SLE-Module-Public-Cloud15-SP1-Updates","description":"SLE-Module-Public-Cloud15-SP1-Updates for sle-15-x86_64","enabled":true,"id":3441,"distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/15-SP1/x86_64/update/"},{"id":3442,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/15-SP1/x86_64/update_debug/","autorefresh":true,"distro_target":"sle-15-x86_64","name":"SLE-Module-Public-Cloud15-SP1-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-Public-Cloud15-SP1-Debuginfo-Updates for sle-15-x86_64"},{"name":"SLE-Module-Public-Cloud15-SP1-Pool","installer_updates":false,"description":"SLE-Module-Public-Cloud15-SP1-Pool for sle-15-x86_64","enabled":true,"id":3443,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP1/x86_64/product/"},{"enabled":false,"id":3444,"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP1/x86_64/product_debug/","installer_updates":false,"name":"SLE-Module-Public-Cloud15-SP1-Debuginfo-Pool","description":"SLE-Module-Public-Cloud15-SP1-Debuginfo-Pool for sle-15-x86_64"},{"installer_updates":false,"name":"SLE-Module-Public-Cloud15-SP1-Source-Pool","description":"SLE-Module-Public-Cloud15-SP1-Source-Pool for sle-15-x86_64","id":3445,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP1/x86_64/product_source/","distro_target":"sle-15-x86_64","autorefresh":false}],"cpe":"cpe:/o:suse:sle-module-public-cloud:15:sp1","product_type":"module","description":"

The Public Cloud Module is a collection of tools that enables you to create and manage cloud images from the commandline on SUSE Linux Enterprise Server. When building your own images with KIWI or SUSE Studio, initialization code specific to the target cloud is included in that image.

Access to the Public Cloud Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself; please check the Release Notes for further details.

","shortname":"Public-Cloud-Module","free":true,"eula_url":"","arch":"x86_64","friendly_version":"15 SP1","extensions":[],"release_stage":"released","id":1808,"identifier":"sle-module-public-cloud","recommended":false,"version":"15.1","name":"Public Cloud Module","offline_predecessor_ids":[1220],"friendly_name":"Public Cloud Module 15 SP1 x86_64","migration_extra":false,"release_type":null,"former_identifier":"sle-module-public-cloud"}],"friendly_version":"15 SP1","arch":"x86_64","eula_url":"","free":true,"description":"

The SUSE Linux Enterprise Server Applications Module delivers a basic set of Server functionality.

Access to the Server Applications Module is included in your SUSE Linux Enterprise Server subscription.

","shortname":"Server-Applications-Module","product_type":"module","cpe":"cpe:/o:suse:sle-module-server-applications:15:sp1","online_predecessor_ids":[1580],"product_class":"MODULE","repositories":[{"installer_updates":false,"name":"SLE-Module-Server-Applications15-SP1-Updates","description":"SLE-Module-Server-Applications15-SP1-Updates for sle-15-x86_64","enabled":true,"id":3301,"distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15-SP1/x86_64/update/"},{"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15-SP1/x86_64/update_debug/","enabled":false,"id":3302,"description":"SLE-Module-Server-Applications15-SP1-Debuginfo-Updates for sle-15-x86_64","name":"SLE-Module-Server-Applications15-SP1-Debuginfo-Updates","installer_updates":false},{"name":"SLE-Module-Server-Applications15-SP1-Pool","installer_updates":false,"description":"SLE-Module-Server-Applications15-SP1-Pool for sle-15-x86_64","id":3303,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP1/x86_64/product/","autorefresh":false,"distro_target":"sle-15-x86_64"},{"description":"SLE-Module-Server-Applications15-SP1-Debuginfo-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Server-Applications15-SP1-Debuginfo-Pool","distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP1/x86_64/product_debug/","enabled":false,"id":3304},{"description":"SLE-Module-Server-Applications15-SP1-Source-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Server-Applications15-SP1-Source-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP1/x86_64/product_source/","distro_target":"sle-15-x86_64","autorefresh":false,"id":3305,"enabled":false}],"predecessor_ids":[1580]},{"online_predecessor_ids":[1642],"repositories":[{"description":"SLE-Module-Containers15-SP1-Updates for sle-15-x86_64","name":"SLE-Module-Containers15-SP1-Updates","installer_updates":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/15-SP1/x86_64/update/","autorefresh":true,"distro_target":"sle-15-x86_64","id":3351,"enabled":true},{"id":3352,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/15-SP1/x86_64/update_debug/","distro_target":"sle-15-x86_64","autorefresh":true,"installer_updates":false,"name":"SLE-Module-Containers15-SP1-Debuginfo-Updates","description":"SLE-Module-Containers15-SP1-Debuginfo-Updates for sle-15-x86_64"},{"description":"SLE-Module-Containers15-SP1-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Containers15-SP1-Pool","distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP1/x86_64/product/","enabled":true,"id":3353},{"id":3354,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP1/x86_64/product_debug/","distro_target":"sle-15-x86_64","autorefresh":false,"installer_updates":false,"name":"SLE-Module-Containers15-SP1-Debuginfo-Pool","description":"SLE-Module-Containers15-SP1-Debuginfo-Pool for sle-15-x86_64"},{"enabled":false,"id":3355,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP1/x86_64/product_source/","name":"SLE-Module-Containers15-SP1-Source-Pool","installer_updates":false,"description":"SLE-Module-Containers15-SP1-Source-Pool for sle-15-x86_64"}],"product_class":"MODULE","predecessor_ids":[1642],"product_type":"module","cpe":"cpe:/o:suse:sle-module-containers:15:sp1","free":true,"description":"

This Module contains several packages revolving around containers and related tools.

","shortname":"Containers-Module","arch":"x86_64","eula_url":"","friendly_version":"15 SP1","release_stage":"released","id":1790,"identifier":"sle-module-containers","extensions":[],"version":"15.1","recommended":false,"former_identifier":"sle-module-containers","release_type":null,"friendly_name":"Containers Module 15 SP1 x86_64","migration_extra":false,"offline_predecessor_ids":[1332],"name":"Containers Module"},{"version":"15.1","recommended":true,"release_type":null,"former_identifier":"sle-module-python2","migration_extra":false,"friendly_name":"Python 2 Module 15 SP1 x86_64","offline_predecessor_ids":[],"name":"Python 2 Module","friendly_version":"15 SP1","identifier":"sle-module-python2","release_stage":"released","id":1867,"extensions":[],"free":true,"shortname":"Python2-Module","description":"

This module contains the python 2 packages.

Access to the Python 2 Module is included in your SUSE Linux Enterprise subscription. The module has a different lifecycle than SUSE Linux Enterprise itself. Packages in the this module are usually supported for at most three years.

","arch":"x86_64","eula_url":"","online_predecessor_ids":[],"repositories":[{"name":"SLE-Module-Python2-15-SP1-Updates","installer_updates":false,"description":"SLE-Module-Python2-15-SP1-Updates for sle-15-x86_64","enabled":true,"id":3598,"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Python2/15-SP1/x86_64/update/"},{"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Python2/15-SP1/x86_64/update_debug/","enabled":false,"id":3599,"description":"SLE-Module-Python2-15-SP1-Debuginfo-Updates for sle-15-x86_64","name":"SLE-Module-Python2-15-SP1-Debuginfo-Updates","installer_updates":false},{"name":"SLE-Module-Python2-15-SP1-Pool","installer_updates":false,"description":"SLE-Module-Python2-15-SP1-Pool for sle-15-x86_64","id":3600,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Python2/15-SP1/x86_64/product/","autorefresh":false,"distro_target":"sle-15-x86_64"},{"description":"SLE-Module-Python2-15-SP1-Debuginfo-Pool for sle-15-x86_64","name":"SLE-Module-Python2-15-SP1-Debuginfo-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Python2/15-SP1/x86_64/product_debug/","autorefresh":false,"distro_target":"sle-15-x86_64","id":3601,"enabled":false},{"description":"SLE-Module-Python2-15-SP1-Source-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Python2-15-SP1-Source-Pool","distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Python2/15-SP1/x86_64/product_source/","enabled":false,"id":3602}],"product_class":"MODULE","predecessor_ids":[],"product_type":"module","cpe":"cpe:/o:suse:sle-module-python2:15:sp1"},{"name":"SUSE Package Hub","offline_predecessor_ids":[1529,1813,1915],"migration_extra":false,"friendly_name":"SUSE Package Hub 15 SP1 x86_64","former_identifier":"PackageHub","release_type":null,"recommended":false,"version":"15.1","extensions":[],"release_stage":"released","id":1871,"identifier":"PackageHub","friendly_version":"15 SP1","eula_url":"","arch":"x86_64","shortname":"SUSE-PackageHub-15","description":"SUSE Package Hub is a free of charge extension providing access to community maintained packages built to run on SUSE Linux Enterprise Server. Built from the same sources used in the openSUSE distributions, these quality packages provide additional software to what is found in the SUSE Linux Enterprise Server product. Packages from the Package Hub are delivered without L3 support from SUSE. General updates and fixes to the packages in SUSE Package Hub are provided by the openSUSE community based on their discretion, though SUSE will monitor and ensure that any known critical security issues will be addressed. Packages in the Package Hub are approved by SUSE for use with SUSE Linux Enterprise Server 15-SP1 and to not interfere with the supportability of SUSE Linux Enterprise Server, its modules and extensions. For more information about SUSE Package Hub please visit https://packagehub.suse.com.","free":true,"cpe":"cpe:/o:suse:packagehub:15:sp1","product_type":"extension","predecessor_ids":[1743],"online_predecessor_ids":[1743],"repositories":[{"name":"SUSE-PackageHub-15-SP1-Backports-Pool","installer_updates":false,"description":"SUSE-PackageHub-15-SP1-Backports-Pool for sle-15-x86_64","enabled":true,"id":3627,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Backports/SLE-15-SP1_x86_64/standard/"},{"enabled":false,"id":3628,"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Backports/SLE-15-SP1_x86_64/standard_debug/","name":"SUSE-PackageHub-15-SP1-Backports-Debuginfo","installer_updates":false,"description":"SUSE-PackageHub-15-SP1-Backports-Debuginfo for sle-15-x86_64"},{"distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP1/x86_64/update/","enabled":true,"id":3629,"description":"SLE-Module-Packagehub-Subpackages15-SP1-Updates for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Packagehub-Subpackages15-SP1-Updates"},{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP1/x86_64/update_debug/","autorefresh":true,"distro_target":"sle-15-x86_64","id":3630,"enabled":false,"description":"SLE-Module-Packagehub-Subpackages15-SP1-Debuginfo-Updates for sle-15-x86_64","name":"SLE-Module-Packagehub-Subpackages15-SP1-Debuginfo-Updates","installer_updates":false},{"id":3631,"enabled":true,"url":"https://updates.suse.com/SUSE/Backports/SLE-15-SP1_x86_64/product/","autorefresh":false,"distro_target":"sle-15-x86_64","name":"SUSE-PackageHub-15-SP1-Pool","installer_updates":false,"description":"SUSE-PackageHub-15-SP1-Pool for sle-15-x86_64"},{"description":"SLE-Module-Packagehub-Subpackages15-SP1-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Packagehub-Subpackages15-SP1-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP1/x86_64/product/","distro_target":"sle-15-x86_64","autorefresh":false,"id":3632,"enabled":true},{"name":"SLE-Module-Packagehub-Subpackages15-SP1-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-Packagehub-Subpackages15-SP1-Debuginfo-Pool for sle-15-x86_64","id":3633,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP1/x86_64/product_debug/","autorefresh":false,"distro_target":"sle-15-x86_64"},{"name":"SLE-Module-Packagehub-Subpackages15-SP1-Source-Pool","installer_updates":false,"description":"SLE-Module-Packagehub-Subpackages15-SP1-Source-Pool for sle-15-x86_64","id":3634,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP1/x86_64/product_source/","autorefresh":false,"distro_target":"sle-15-x86_64"}],"product_class":"MODULE"}],"release_stage":"released","id":1772,"identifier":"sle-module-basesystem","friendly_version":"15 SP1","eula_url":"","arch":"x86_64","free":true,"shortname":"Basesystem-Module","description":"

The SUSE Linux Enterprise Basesystem Module delivers the base system of the product.

","product_type":"module","cpe":"cpe:/o:suse:sle-module-basesystem:15:sp1","predecessor_ids":[1576],"product_class":"MODULE","online_predecessor_ids":[1576],"repositories":[{"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15-SP1/x86_64/update/","enabled":true,"id":3261,"description":"SLE-Module-Basesystem15-SP1-Updates for sle-15-x86_64","name":"SLE-Module-Basesystem15-SP1-Updates","installer_updates":false},{"name":"SLE-Module-Basesystem15-SP1-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-Basesystem15-SP1-Debuginfo-Updates for sle-15-x86_64","enabled":false,"id":3262,"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15-SP1/x86_64/update_debug/"},{"id":3263,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP1/x86_64/product/","distro_target":"sle-15-x86_64","autorefresh":false,"installer_updates":false,"name":"SLE-Module-Basesystem15-SP1-Pool","description":"SLE-Module-Basesystem15-SP1-Pool for sle-15-x86_64"},{"description":"SLE-Module-Basesystem15-SP1-Debuginfo-Pool for sle-15-x86_64","name":"SLE-Module-Basesystem15-SP1-Debuginfo-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP1/x86_64/product_debug/","autorefresh":false,"distro_target":"sle-15-x86_64","id":3264,"enabled":false},{"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP1/x86_64/product_source/","enabled":false,"id":3265,"description":"SLE-Module-Basesystem15-SP1-Source-Pool for sle-15-x86_64","name":"SLE-Module-Basesystem15-SP1-Source-Pool","installer_updates":false}]}],"friendly_version":"4.0","friendly_name":"SUSE Manager Server 4.0 x86_64","migration_extra":false,"release_type":null,"former_identifier":"SUSE-Manager-Server","name":"SUSE Manager Server","offline_predecessor_ids":[],"version":"4.0","recommended":false,"cpe":"cpe:/o:suse:suse-manager-server:4.0","product_type":"base","online_predecessor_ids":[],"product_class":"SMS-X86","repositories":[{"name":"SLE-Product-SUSE-Manager-Server-4.0-Updates","installer_updates":false,"description":"SLE-Product-SUSE-Manager-Server-4.0-Updates for sle-15-x86_64","enabled":true,"id":3808,"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Product-SUSE-Manager-Server/4.0/x86_64/update/"},{"description":"SLE-Product-SUSE-Manager-Server-4.0-Debuginfo-Updates for sle-15-x86_64","installer_updates":false,"name":"SLE-Product-SUSE-Manager-Server-4.0-Debuginfo-Updates","distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-SUSE-Manager-Server/4.0/x86_64/update_debug/","enabled":false,"id":3809},{"id":3810,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-SUSE-Manager-Server/4.0/x86_64/product/","autorefresh":false,"distro_target":"sle-15-x86_64","name":"SLE-Product-SUSE-Manager-Server-4.0-Pool","installer_updates":false,"description":"SLE-Product-SUSE-Manager-Server-4.0-Pool for sle-15-x86_64"},{"installer_updates":false,"name":"SLE-Product-SUSE-Manager-Server-4.0-Debuginfo-Pool","description":"SLE-Product-SUSE-Manager-Server-4.0-Debuginfo-Pool for sle-15-x86_64","enabled":false,"id":3811,"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-SUSE-Manager-Server/4.0/x86_64/product_debug/"},{"installer_updates":false,"name":"SLE-Product-SUSE-Manager-Server-4.0-Source-Pool","description":"SLE-Product-SUSE-Manager-Server-4.0-Source-Pool for sle-15-x86_64","enabled":false,"id":3812,"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-SUSE-Manager-Server/4.0/x86_64/product_source/"}],"predecessor_ids":[],"arch":"x86_64","eula_url":"https://updates.suse.com/SUSE/Products/SLE-Product-SUSE-Manager-Server/4.0/x86_64/product.license/","description":"SUSE Manager lets you efficiently manage physical, virtual, and cloud-based Linux systems. It provides automated and cost-effective configuration and software management, asset management, and system provisioning.","shortname":"SUSE Manager Server 4.0","free":false},{"free":false,"shortname":"SUSE Manager Proxy 4.0","description":"SUSE Manager Proxies extend large and/or geographically dispersed SUSE Manager environments to reduce load on the SUSE Manager Server, lower bandwidth needs, and provide faster local updates.","eula_url":"https://updates.suse.com/SUSE/Products/SLE-Product-SUSE-Manager-Proxy/4.0/x86_64/product.license/","arch":"x86_64","predecessor_ids":[],"online_predecessor_ids":[],"repositories":[{"description":"SLE-Product-SUSE-Manager-Proxy-4.0-Updates for sle-15-x86_64","installer_updates":false,"name":"SLE-Product-SUSE-Manager-Proxy-4.0-Updates","distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-SUSE-Manager-Proxy/4.0/x86_64/update/","enabled":true,"id":3828},{"description":"SLE-Product-SUSE-Manager-Proxy-4.0-Debuginfo-Updates for sle-15-x86_64","name":"SLE-Product-SUSE-Manager-Proxy-4.0-Debuginfo-Updates","installer_updates":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-SUSE-Manager-Proxy/4.0/x86_64/update_debug/","autorefresh":true,"distro_target":"sle-15-x86_64","id":3829,"enabled":false},{"name":"SLE-Product-SUSE-Manager-Proxy-4.0-Pool","installer_updates":false,"description":"SLE-Product-SUSE-Manager-Proxy-4.0-Pool for sle-15-x86_64","enabled":true,"id":3830,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Product-SUSE-Manager-Proxy/4.0/x86_64/product/"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Product-SUSE-Manager-Proxy/4.0/x86_64/product_debug/","distro_target":"sle-15-x86_64","autorefresh":false,"id":3831,"enabled":false,"description":"SLE-Product-SUSE-Manager-Proxy-4.0-Debuginfo-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Product-SUSE-Manager-Proxy-4.0-Debuginfo-Pool"},{"installer_updates":false,"name":"SLE-Product-SUSE-Manager-Proxy-4.0-Source-Pool","description":"SLE-Product-SUSE-Manager-Proxy-4.0-Source-Pool for sle-15-x86_64","enabled":false,"id":3832,"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-SUSE-Manager-Proxy/4.0/x86_64/product_source/"}],"product_class":"SMP","product_type":"base","cpe":"cpe:/o:suse:suse-manager-proxy:4.0","recommended":false,"version":"4.0","offline_predecessor_ids":[1725],"name":"SUSE Manager Proxy","release_type":null,"former_identifier":"SUSE-Manager-Proxy","migration_extra":false,"friendly_name":"SUSE Manager Proxy 4.0 x86_64","friendly_version":"4.0","extensions":[{"cpe":"cpe:/o:suse:sle-module-basesystem:15:sp1","product_type":"module","predecessor_ids":[1576],"product_class":"MODULE","online_predecessor_ids":[1576],"repositories":[{"distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15-SP1/x86_64/update/","enabled":true,"id":3261,"description":"SLE-Module-Basesystem15-SP1-Updates for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Basesystem15-SP1-Updates"},{"description":"SLE-Module-Basesystem15-SP1-Debuginfo-Updates for sle-15-x86_64","name":"SLE-Module-Basesystem15-SP1-Debuginfo-Updates","installer_updates":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15-SP1/x86_64/update_debug/","autorefresh":true,"distro_target":"sle-15-x86_64","id":3262,"enabled":false},{"description":"SLE-Module-Basesystem15-SP1-Pool for sle-15-x86_64","name":"SLE-Module-Basesystem15-SP1-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP1/x86_64/product/","autorefresh":false,"distro_target":"sle-15-x86_64","id":3263,"enabled":true},{"installer_updates":false,"name":"SLE-Module-Basesystem15-SP1-Debuginfo-Pool","description":"SLE-Module-Basesystem15-SP1-Debuginfo-Pool for sle-15-x86_64","id":3264,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP1/x86_64/product_debug/","distro_target":"sle-15-x86_64","autorefresh":false},{"description":"SLE-Module-Basesystem15-SP1-Source-Pool for sle-15-x86_64","name":"SLE-Module-Basesystem15-SP1-Source-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP1/x86_64/product_source/","autorefresh":false,"distro_target":"sle-15-x86_64","id":3265,"enabled":false}],"eula_url":"","arch":"x86_64","description":"

The SUSE Linux Enterprise Basesystem Module delivers the base system of the product.

","shortname":"Basesystem-Module","free":true,"extensions":[{"arch":"x86_64","eula_url":"","description":"

The SUSE Linux Enterprise Desktop Applications Module delivers a basic set of Desktop functionality.

Access to the Desktop Applications Module is included in your SUSE Linux Enterprise product subscription.

","shortname":"Desktop-Applications-Module","free":true,"cpe":"cpe:/o:suse:sle-module-desktop-applications:15:sp1","product_type":"module","repositories":[{"id":3281,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15-SP1/x86_64/update/","autorefresh":true,"distro_target":"sle-15-x86_64","name":"SLE-Module-Desktop-Applications15-SP1-Updates","installer_updates":false,"description":"SLE-Module-Desktop-Applications15-SP1-Updates for sle-15-x86_64"},{"description":"SLE-Module-Desktop-Applications15-SP1-Debuginfo-Updates for sle-15-x86_64","name":"SLE-Module-Desktop-Applications15-SP1-Debuginfo-Updates","installer_updates":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15-SP1/x86_64/update_debug/","autorefresh":true,"distro_target":"sle-15-x86_64","id":3282,"enabled":false},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP1/x86_64/product/","autorefresh":false,"distro_target":"sle-15-x86_64","id":3283,"enabled":true,"description":"SLE-Module-Desktop-Applications15-SP1-Pool for sle-15-x86_64","name":"SLE-Module-Desktop-Applications15-SP1-Pool","installer_updates":false},{"enabled":false,"id":3284,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP1/x86_64/product_debug/","name":"SLE-Module-Desktop-Applications15-SP1-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-Desktop-Applications15-SP1-Debuginfo-Pool for sle-15-x86_64"},{"installer_updates":false,"name":"SLE-Module-Desktop-Applications15-SP1-Source-Pool","description":"SLE-Module-Desktop-Applications15-SP1-Source-Pool for sle-15-x86_64","id":3285,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP1/x86_64/product_source/","distro_target":"sle-15-x86_64","autorefresh":false}],"online_predecessor_ids":[1578],"product_class":"MODULE","predecessor_ids":[1578],"friendly_name":"Desktop Applications Module 15 SP1 x86_64","migration_extra":false,"former_identifier":"sle-module-desktop-applications","release_type":null,"name":"Desktop Applications Module","offline_predecessor_ids":[],"version":"15.1","recommended":false,"release_stage":"released","identifier":"sle-module-desktop-applications","id":1776,"extensions":[{"recommended":false,"version":"15.1","offline_predecessor_ids":[1223,1323,1341,1366,1427,1630,1892],"name":"Development Tools Module","release_type":null,"former_identifier":"sle-sdk","migration_extra":false,"friendly_name":"Development Tools Module 15 SP1 x86_64","friendly_version":"15 SP1","extensions":[],"release_stage":"released","id":1794,"identifier":"sle-module-development-tools","free":true,"description":"

The Development Tools Module helps you developing applications for SUSE Linux Enterprise 15.

Access to the Development Tools Module is included in your SUSE Linux Enterprise product subscription. The module has a different lifecycle than SUSE Linux Enterprise itself.

","shortname":"Development-Tools-Module","eula_url":"","arch":"x86_64","predecessor_ids":[1579],"repositories":[{"description":"SLE-Module-DevTools15-SP1-Updates for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-DevTools15-SP1-Updates","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15-SP1/x86_64/update/","distro_target":"sle-15-x86_64","autorefresh":true,"id":3371,"enabled":true},{"id":3372,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15-SP1/x86_64/update_debug/","autorefresh":true,"distro_target":"sle-15-x86_64","name":"SLE-Module-DevTools15-SP1-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-DevTools15-SP1-Debuginfo-Updates for sle-15-x86_64"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP1/x86_64/product/","autorefresh":false,"distro_target":"sle-15-x86_64","id":3373,"enabled":true,"description":"SLE-Module-DevTools15-SP1-Pool for sle-15-x86_64","name":"SLE-Module-DevTools15-SP1-Pool","installer_updates":false},{"name":"SLE-Module-DevTools15-SP1-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-DevTools15-SP1-Debuginfo-Pool for sle-15-x86_64","id":3374,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP1/x86_64/product_debug/","autorefresh":false,"distro_target":"sle-15-x86_64"},{"name":"SLE-Module-DevTools15-SP1-Source-Pool","installer_updates":false,"description":"SLE-Module-DevTools15-SP1-Source-Pool for sle-15-x86_64","enabled":false,"id":3375,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP1/x86_64/product_source/"}],"online_predecessor_ids":[1579],"product_class":"MODULE","product_type":"module","cpe":"cpe:/o:suse:sle-module-development-tools:15:sp1"}],"friendly_version":"15 SP1"},{"recommended":true,"version":"15.1","name":"Server Applications Module","offline_predecessor_ids":[],"friendly_name":"Server Applications Module 15 SP1 x86_64","migration_extra":false,"release_type":null,"former_identifier":"sle-module-server-applications","friendly_version":"15 SP1","extensions":[{"eula_url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP1/x86_64/product.license/","arch":"x86_64","free":false,"description":"SUSE Linux High Availability Extension provides mature, industry-leading open-source high-availability clustering technologies that are easy to set up and use. It can be deployed in physical and/or virtual environments, and can cluster physical servers, virtual servers, or any combination of the two to suit your business’ needs.","shortname":"SLEHA15-SP1","product_type":"extension","cpe":"cpe:/o:suse:sle-ha:15:sp1","predecessor_ids":[1582],"repositories":[{"description":"SLE-Product-HA15-SP1-Updates for sle-15-x86_64","installer_updates":false,"name":"SLE-Product-HA15-SP1-Updates","url":"https://updates.suse.com/SUSE/Updates/SLE-Product-HA/15-SP1/x86_64/update/","distro_target":"sle-15-x86_64","autorefresh":true,"id":3326,"enabled":true},{"id":3327,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-HA/15-SP1/x86_64/update_debug/","autorefresh":true,"distro_target":"sle-15-x86_64","name":"SLE-Product-HA15-SP1-Debuginfo-Updates","installer_updates":false,"description":"SLE-Product-HA15-SP1-Debuginfo-Updates for sle-15-x86_64"},{"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP1/x86_64/product/","enabled":true,"id":3328,"description":"SLE-Product-HA15-SP1-Pool for sle-15-x86_64","name":"SLE-Product-HA15-SP1-Pool","installer_updates":false},{"enabled":false,"id":3329,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP1/x86_64/product_debug/","name":"SLE-Product-HA15-SP1-Debuginfo-Pool","installer_updates":false,"description":"SLE-Product-HA15-SP1-Debuginfo-Pool for sle-15-x86_64"},{"description":"SLE-Product-HA15-SP1-Source-Pool for sle-15-x86_64","name":"SLE-Product-HA15-SP1-Source-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP1/x86_64/product_source/","enabled":false,"id":3330}],"online_predecessor_ids":[1582],"product_class":"SLE-HAE-X86","offline_predecessor_ids":[958,961,967,971,1101,1107,1256,1286,1432,1435,1634,1637,1884,1886],"name":"SUSE Linux Enterprise High Availability Extension","release_type":null,"former_identifier":"sle-ha","friendly_name":"SUSE Linux Enterprise High Availability Extension 15 SP1 x86_64","migration_extra":false,"recommended":false,"version":"15.1","extensions":[],"release_stage":"released","id":1785,"identifier":"sle-ha","friendly_version":"15 SP1"},{"recommended":false,"version":"15.1","offline_predecessor_ids":[1153],"name":"Web and Scripting Module","former_identifier":"sle-module-web-scripting","release_type":null,"migration_extra":false,"friendly_name":"Web and Scripting Module 15 SP1 x86_64","friendly_version":"15 SP1","extensions":[],"identifier":"sle-module-web-scripting","release_stage":"released","id":1798,"free":true,"description":"

The SUSE Linux Enterprise Web and Scripting Module should contains additional packages that are helpful when running a webserver.

Access to the Web and Scripting Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself: Package versions in this module are usually supported for at most three years. We are planning to release more recent versions on a schedule of approximately 18 month; the exact dates may differ per package.

","shortname":"Web-Scripting-Module","eula_url":"","arch":"x86_64","predecessor_ids":[1721],"product_class":"MODULE","online_predecessor_ids":[1721],"repositories":[{"enabled":true,"id":3391,"distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/15-SP1/x86_64/update/","installer_updates":false,"name":"SLE-Module-Web-Scripting15-SP1-Updates","description":"SLE-Module-Web-Scripting15-SP1-Updates for sle-15-x86_64"},{"enabled":false,"id":3392,"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/15-SP1/x86_64/update_debug/","name":"SLE-Module-Web-Scripting15-SP1-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-Web-Scripting15-SP1-Debuginfo-Updates for sle-15-x86_64"},{"installer_updates":false,"name":"SLE-Module-Web-Scripting15-SP1-Pool","description":"SLE-Module-Web-Scripting15-SP1-Pool for sle-15-x86_64","enabled":true,"id":3393,"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP1/x86_64/product/"},{"description":"SLE-Module-Web-Scripting15-SP1-Debuginfo-Pool for sle-15-x86_64","name":"SLE-Module-Web-Scripting15-SP1-Debuginfo-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP1/x86_64/product_debug/","autorefresh":false,"distro_target":"sle-15-x86_64","id":3394,"enabled":false},{"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP1/x86_64/product_source/","enabled":false,"id":3395,"description":"SLE-Module-Web-Scripting15-SP1-Source-Pool for sle-15-x86_64","name":"SLE-Module-Web-Scripting15-SP1-Source-Pool","installer_updates":false}],"product_type":"module","cpe":"cpe:/o:suse:sle-module-web-scripting:15:sp1"},{"cpe":"cpe:/o:suse:sle-module-legacy:15:sp1","product_type":"module","online_predecessor_ids":[1581],"product_class":"MODULE","repositories":[{"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/15-SP1/x86_64/update/","enabled":true,"id":3421,"description":"SLE-Module-Legacy15-SP1-Updates for sle-15-x86_64","name":"SLE-Module-Legacy15-SP1-Updates","installer_updates":false},{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/15-SP1/x86_64/update_debug/","autorefresh":true,"distro_target":"sle-15-x86_64","id":3422,"enabled":false,"description":"SLE-Module-Legacy15-SP1-Debuginfo-Updates for sle-15-x86_64","name":"SLE-Module-Legacy15-SP1-Debuginfo-Updates","installer_updates":false},{"description":"SLE-Module-Legacy15-SP1-Pool for sle-15-x86_64","name":"SLE-Module-Legacy15-SP1-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15-SP1/x86_64/product/","autorefresh":false,"distro_target":"sle-15-x86_64","id":3423,"enabled":true},{"installer_updates":false,"name":"SLE-Module-Legacy15-SP1-Debuginfo-Pool","description":"SLE-Module-Legacy15-SP1-Debuginfo-Pool for sle-15-x86_64","enabled":false,"id":3424,"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15-SP1/x86_64/product_debug/"},{"description":"SLE-Module-Legacy15-SP1-Source-Pool for sle-15-x86_64","name":"SLE-Module-Legacy15-SP1-Source-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15-SP1/x86_64/product_source/","autorefresh":false,"distro_target":"sle-15-x86_64","id":3425,"enabled":false}],"predecessor_ids":[1581],"arch":"x86_64","eula_url":"","shortname":"Legacy-Module","description":"

The Legacy Module helps you migrating applications from SUSE Linux Enterprise 12 and other systems to SUSE Linux Enterprise 15, by providing packages which are discontinued on SUSE Linux Enterprise Server, such as: ntp, IBM Java 8, and a number of libraries.

Access to the Legacy Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself. Packages in the this module are usually supported for at most three years.

","free":true,"release_stage":"released","identifier":"sle-module-legacy","id":1804,"extensions":[],"friendly_version":"15 SP1","friendly_name":"Legacy Module 15 SP1 x86_64","migration_extra":false,"former_identifier":"sle-module-legacy","release_type":null,"name":"Legacy Module","offline_predecessor_ids":[1150],"version":"15.1","recommended":false},{"free":true,"shortname":"Public-Cloud-Module","description":"

The Public Cloud Module is a collection of tools that enables you to create and manage cloud images from the commandline on SUSE Linux Enterprise Server. When building your own images with KIWI or SUSE Studio, initialization code specific to the target cloud is included in that image.

Access to the Public Cloud Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself; please check the Release Notes for further details.

","eula_url":"","arch":"x86_64","predecessor_ids":[1611],"online_predecessor_ids":[1611],"product_class":"MODULE","repositories":[{"description":"SLE-Module-Public-Cloud15-SP1-Updates for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Public-Cloud15-SP1-Updates","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/15-SP1/x86_64/update/","distro_target":"sle-15-x86_64","autorefresh":true,"id":3441,"enabled":true},{"id":3442,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/15-SP1/x86_64/update_debug/","distro_target":"sle-15-x86_64","autorefresh":true,"installer_updates":false,"name":"SLE-Module-Public-Cloud15-SP1-Debuginfo-Updates","description":"SLE-Module-Public-Cloud15-SP1-Debuginfo-Updates for sle-15-x86_64"},{"description":"SLE-Module-Public-Cloud15-SP1-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Public-Cloud15-SP1-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP1/x86_64/product/","distro_target":"sle-15-x86_64","autorefresh":false,"id":3443,"enabled":true},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP1/x86_64/product_debug/","distro_target":"sle-15-x86_64","autorefresh":false,"id":3444,"enabled":false,"description":"SLE-Module-Public-Cloud15-SP1-Debuginfo-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Public-Cloud15-SP1-Debuginfo-Pool"},{"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP1/x86_64/product_source/","enabled":false,"id":3445,"description":"SLE-Module-Public-Cloud15-SP1-Source-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Public-Cloud15-SP1-Source-Pool"}],"product_type":"module","cpe":"cpe:/o:suse:sle-module-public-cloud:15:sp1","recommended":false,"version":"15.1","offline_predecessor_ids":[1220],"name":"Public Cloud Module","former_identifier":"sle-module-public-cloud","release_type":null,"friendly_name":"Public Cloud Module 15 SP1 x86_64","migration_extra":false,"friendly_version":"15 SP1","extensions":[],"identifier":"sle-module-public-cloud","release_stage":"released","id":1808},{"product_class":"MODULE","online_predecessor_ids":[],"repositories":[{"installer_updates":false,"name":"SLE-Module-SUSE-Manager-Proxy-4.0-Updates","description":"SLE-Module-SUSE-Manager-Proxy-4.0-Updates for sle-15-x86_64","enabled":true,"id":3843,"distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-SUSE-Manager-Proxy/4.0/x86_64/update/"},{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-SUSE-Manager-Proxy/4.0/x86_64/update_debug/","autorefresh":true,"distro_target":"sle-15-x86_64","id":3844,"enabled":false,"description":"SLE-Module-SUSE-Manager-Proxy-4.0-Debuginfo-Updates for sle-15-x86_64","name":"SLE-Module-SUSE-Manager-Proxy-4.0-Debuginfo-Updates","installer_updates":false},{"installer_updates":false,"name":"SLE-Module-SUSE-Manager-Proxy-4.0-Pool","description":"SLE-Module-SUSE-Manager-Proxy-4.0-Pool for sle-15-x86_64","id":3845,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-SUSE-Manager-Proxy/4.0/x86_64/product/","distro_target":"sle-15-x86_64","autorefresh":false},{"description":"SLE-Module-SUSE-Manager-Proxy-4.0-Debuginfo-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-SUSE-Manager-Proxy-4.0-Debuginfo-Pool","distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-SUSE-Manager-Proxy/4.0/x86_64/product_debug/","enabled":false,"id":3846},{"id":3847,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-SUSE-Manager-Proxy/4.0/x86_64/product_source/","autorefresh":false,"distro_target":"sle-15-x86_64","name":"SLE-Module-SUSE-Manager-Proxy-4.0-Source-Pool","installer_updates":false,"description":"SLE-Module-SUSE-Manager-Proxy-4.0-Source-Pool for sle-15-x86_64"}],"predecessor_ids":[],"cpe":"cpe:/o:suse:sle-module-suse-manager-proxy:4.0","product_type":"module","description":"SUSE Manager Proxies extend large and/or geographically dispersed SUSE Manager environments to reduce load on the SUSE Manager Server, lower bandwidth needs, and provide faster local updates.","shortname":"SUSE Manager Proxy 4.0 Module","free":true,"arch":"x86_64","eula_url":"","friendly_version":"4.0","release_stage":"released","id":1908,"identifier":"sle-module-suse-manager-proxy","extensions":[],"version":"4.0","recommended":true,"migration_extra":false,"friendly_name":"SUSE Manager Proxy Module 4.0 x86_64","former_identifier":"sle-module-suse-manager-proxy","release_type":null,"name":"SUSE Manager Proxy Module","offline_predecessor_ids":[]}],"id":1780,"release_stage":"released","identifier":"sle-module-server-applications","shortname":"Server-Applications-Module","description":"

The SUSE Linux Enterprise Server Applications Module delivers a basic set of Server functionality.

Access to the Server Applications Module is included in your SUSE Linux Enterprise Server subscription.

","free":true,"eula_url":"","arch":"x86_64","predecessor_ids":[1580],"product_class":"MODULE","online_predecessor_ids":[1580],"repositories":[{"name":"SLE-Module-Server-Applications15-SP1-Updates","installer_updates":false,"description":"SLE-Module-Server-Applications15-SP1-Updates for sle-15-x86_64","id":3301,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15-SP1/x86_64/update/","autorefresh":true,"distro_target":"sle-15-x86_64"},{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15-SP1/x86_64/update_debug/","distro_target":"sle-15-x86_64","autorefresh":true,"id":3302,"enabled":false,"description":"SLE-Module-Server-Applications15-SP1-Debuginfo-Updates for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Server-Applications15-SP1-Debuginfo-Updates"},{"description":"SLE-Module-Server-Applications15-SP1-Pool for sle-15-x86_64","name":"SLE-Module-Server-Applications15-SP1-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP1/x86_64/product/","autorefresh":false,"distro_target":"sle-15-x86_64","id":3303,"enabled":true},{"installer_updates":false,"name":"SLE-Module-Server-Applications15-SP1-Debuginfo-Pool","description":"SLE-Module-Server-Applications15-SP1-Debuginfo-Pool for sle-15-x86_64","enabled":false,"id":3304,"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP1/x86_64/product_debug/"},{"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP1/x86_64/product_source/","enabled":false,"id":3305,"description":"SLE-Module-Server-Applications15-SP1-Source-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Server-Applications15-SP1-Source-Pool"}],"cpe":"cpe:/o:suse:sle-module-server-applications:15:sp1","product_type":"module"},{"identifier":"sle-module-containers","release_stage":"released","id":1790,"extensions":[],"friendly_version":"15 SP1","former_identifier":"sle-module-containers","release_type":null,"migration_extra":false,"friendly_name":"Containers Module 15 SP1 x86_64","offline_predecessor_ids":[1332],"name":"Containers Module","version":"15.1","recommended":false,"product_type":"module","cpe":"cpe:/o:suse:sle-module-containers:15:sp1","online_predecessor_ids":[1642],"product_class":"MODULE","repositories":[{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/15-SP1/x86_64/update/","autorefresh":true,"distro_target":"sle-15-x86_64","id":3351,"enabled":true,"description":"SLE-Module-Containers15-SP1-Updates for sle-15-x86_64","name":"SLE-Module-Containers15-SP1-Updates","installer_updates":false},{"description":"SLE-Module-Containers15-SP1-Debuginfo-Updates for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Containers15-SP1-Debuginfo-Updates","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/15-SP1/x86_64/update_debug/","distro_target":"sle-15-x86_64","autorefresh":true,"id":3352,"enabled":false},{"description":"SLE-Module-Containers15-SP1-Pool for sle-15-x86_64","name":"SLE-Module-Containers15-SP1-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP1/x86_64/product/","enabled":true,"id":3353},{"id":3354,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP1/x86_64/product_debug/","autorefresh":false,"distro_target":"sle-15-x86_64","name":"SLE-Module-Containers15-SP1-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-Containers15-SP1-Debuginfo-Pool for sle-15-x86_64"},{"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP1/x86_64/product_source/","enabled":false,"id":3355,"description":"SLE-Module-Containers15-SP1-Source-Pool for sle-15-x86_64","name":"SLE-Module-Containers15-SP1-Source-Pool","installer_updates":false}],"predecessor_ids":[1642],"arch":"x86_64","eula_url":"","free":true,"description":"

This Module contains several packages revolving around containers and related tools.

","shortname":"Containers-Module"},{"offline_predecessor_ids":[],"name":"Python 2 Module","release_type":null,"former_identifier":"sle-module-python2","friendly_name":"Python 2 Module 15 SP1 x86_64","migration_extra":false,"recommended":false,"version":"15.1","extensions":[],"release_stage":"released","id":1867,"identifier":"sle-module-python2","friendly_version":"15 SP1","eula_url":"","arch":"x86_64","free":true,"description":"

This module contains the python 2 packages.

Access to the Python 2 Module is included in your SUSE Linux Enterprise subscription. The module has a different lifecycle than SUSE Linux Enterprise itself. Packages in the this module are usually supported for at most three years.

","shortname":"Python2-Module","product_type":"module","cpe":"cpe:/o:suse:sle-module-python2:15:sp1","predecessor_ids":[],"online_predecessor_ids":[],"repositories":[{"name":"SLE-Module-Python2-15-SP1-Updates","installer_updates":false,"description":"SLE-Module-Python2-15-SP1-Updates for sle-15-x86_64","enabled":true,"id":3598,"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Python2/15-SP1/x86_64/update/"},{"name":"SLE-Module-Python2-15-SP1-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-Python2-15-SP1-Debuginfo-Updates for sle-15-x86_64","enabled":false,"id":3599,"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Python2/15-SP1/x86_64/update_debug/"},{"description":"SLE-Module-Python2-15-SP1-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Python2-15-SP1-Pool","distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Python2/15-SP1/x86_64/product/","enabled":true,"id":3600},{"name":"SLE-Module-Python2-15-SP1-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-Python2-15-SP1-Debuginfo-Pool for sle-15-x86_64","id":3601,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Python2/15-SP1/x86_64/product_debug/","autorefresh":false,"distro_target":"sle-15-x86_64"},{"description":"SLE-Module-Python2-15-SP1-Source-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Python2-15-SP1-Source-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Python2/15-SP1/x86_64/product_source/","distro_target":"sle-15-x86_64","autorefresh":false,"id":3602,"enabled":false}],"product_class":"MODULE"},{"shortname":"SUSE-PackageHub-15","description":"SUSE Package Hub is a free of charge extension providing access to community maintained packages built to run on SUSE Linux Enterprise Server. Built from the same sources used in the openSUSE distributions, these quality packages provide additional software to what is found in the SUSE Linux Enterprise Server product. Packages from the Package Hub are delivered without L3 support from SUSE. General updates and fixes to the packages in SUSE Package Hub are provided by the openSUSE community based on their discretion, though SUSE will monitor and ensure that any known critical security issues will be addressed. Packages in the Package Hub are approved by SUSE for use with SUSE Linux Enterprise Server 15-SP1 and to not interfere with the supportability of SUSE Linux Enterprise Server, its modules and extensions. For more information about SUSE Package Hub please visit https://packagehub.suse.com.","free":true,"eula_url":"","arch":"x86_64","predecessor_ids":[1743],"product_class":"MODULE","online_predecessor_ids":[1743],"repositories":[{"description":"SUSE-PackageHub-15-SP1-Backports-Pool for sle-15-x86_64","name":"SUSE-PackageHub-15-SP1-Backports-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Backports/SLE-15-SP1_x86_64/standard/","enabled":true,"id":3627},{"enabled":false,"id":3628,"distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Backports/SLE-15-SP1_x86_64/standard_debug/","installer_updates":false,"name":"SUSE-PackageHub-15-SP1-Backports-Debuginfo","description":"SUSE-PackageHub-15-SP1-Backports-Debuginfo for sle-15-x86_64"},{"description":"SLE-Module-Packagehub-Subpackages15-SP1-Updates for sle-15-x86_64","name":"SLE-Module-Packagehub-Subpackages15-SP1-Updates","installer_updates":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP1/x86_64/update/","autorefresh":true,"distro_target":"sle-15-x86_64","id":3629,"enabled":true},{"id":3630,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP1/x86_64/update_debug/","distro_target":"sle-15-x86_64","autorefresh":true,"installer_updates":false,"name":"SLE-Module-Packagehub-Subpackages15-SP1-Debuginfo-Updates","description":"SLE-Module-Packagehub-Subpackages15-SP1-Debuginfo-Updates for sle-15-x86_64"},{"description":"SUSE-PackageHub-15-SP1-Pool for sle-15-x86_64","installer_updates":false,"name":"SUSE-PackageHub-15-SP1-Pool","distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Backports/SLE-15-SP1_x86_64/product/","enabled":true,"id":3631},{"installer_updates":false,"name":"SLE-Module-Packagehub-Subpackages15-SP1-Pool","description":"SLE-Module-Packagehub-Subpackages15-SP1-Pool for sle-15-x86_64","enabled":true,"id":3632,"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP1/x86_64/product/"},{"description":"SLE-Module-Packagehub-Subpackages15-SP1-Debuginfo-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Packagehub-Subpackages15-SP1-Debuginfo-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP1/x86_64/product_debug/","distro_target":"sle-15-x86_64","autorefresh":false,"id":3633,"enabled":false},{"description":"SLE-Module-Packagehub-Subpackages15-SP1-Source-Pool for sle-15-x86_64","name":"SLE-Module-Packagehub-Subpackages15-SP1-Source-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP1/x86_64/product_source/","autorefresh":false,"distro_target":"sle-15-x86_64","id":3634,"enabled":false}],"cpe":"cpe:/o:suse:packagehub:15:sp1","product_type":"extension","recommended":false,"version":"15.1","name":"SUSE Package Hub","offline_predecessor_ids":[1529,1813,1915],"friendly_name":"SUSE Package Hub 15 SP1 x86_64","migration_extra":false,"release_type":null,"former_identifier":"PackageHub","friendly_version":"15 SP1","extensions":[],"release_stage":"released","id":1871,"identifier":"PackageHub"}],"identifier":"sle-module-basesystem","release_stage":"released","id":1772,"friendly_version":"15 SP1","name":"Basesystem Module","offline_predecessor_ids":[1212,1368,1440,1618],"friendly_name":"Basesystem Module 15 SP1 x86_64","migration_extra":false,"release_type":null,"former_identifier":"sle-module-basesystem","recommended":true,"version":"15.1"}],"release_stage":"released","id":1900,"identifier":"SUSE-Manager-Proxy"},{"online_predecessor_ids":[],"product_class":"BCL-X86","repositories":[{"enabled":true,"id":3793,"distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-SLES/15-SP1-BCL/x86_64/update/","installer_updates":false,"name":"SLE-Product-SLES-BCL15-SP1-Updates","description":"SLE-Product-SLES-BCL15-SP1-Updates for sle-15-x86_64"},{"description":"SLE-Product-SLES-BCL15-SP1-Debuginfo-Updates for sle-15-x86_64","name":"SLE-Product-SLES-BCL15-SP1-Debuginfo-Updates","installer_updates":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-SLES/15-SP1-BCL/x86_64/update_debug/","autorefresh":true,"distro_target":"sle-15-x86_64","id":3794,"enabled":false},{"description":"SLE-Product-SLES-BCL15-SP1-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Product-SLES-BCL15-SP1-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Product-SLES/15-SP1-BCL/x86_64/product/","distro_target":"sle-15-x86_64","autorefresh":false,"id":3795,"enabled":true},{"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-SLES/15-SP1-BCL/x86_64/product_debug/","enabled":false,"id":3796,"description":"SLE-Product-SLES-BCL15-SP1-Debuginfo-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Product-SLES-BCL15-SP1-Debuginfo-Pool"},{"id":3797,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-SLES/15-SP1-BCL/x86_64/product_source/","autorefresh":false,"distro_target":"sle-15-x86_64","name":"SLE-Product-SLES-BCL15-SP1-Source-Pool","installer_updates":false,"description":"SLE-Product-SLES-BCL15-SP1-Source-Pool for sle-15-x86_64"}],"predecessor_ids":[],"product_type":"base","cpe":"cpe:/o:suse:sles_bcl:15:sp1","free":false,"description":"SUSE Linux Enterprise offers a comprehensive suite of products built on a single code base. The platform addresses business needs from the smallest thin-client devices to the world's most powerful high-performance computing and mainframe servers. SUSE Linux Enterprise offers common management tools and technology certifications across the platform, and each product is enterprise-class.","shortname":"SLE-15-SP1-BCL","arch":"x86_64","eula_url":"","friendly_version":"15 SP1","identifier":"SLES_BCL","release_stage":"released","id":1902,"extensions":[{"former_identifier":"sle-module-basesystem","release_type":null,"migration_extra":false,"friendly_name":"Basesystem Module 15 SP1 x86_64","offline_predecessor_ids":[1212,1368,1440,1618],"name":"Basesystem Module","version":"15.1","recommended":true,"release_stage":"released","identifier":"sle-module-basesystem","id":1772,"extensions":[{"predecessor_ids":[1578],"online_predecessor_ids":[1578],"product_class":"MODULE","repositories":[{"name":"SLE-Module-Desktop-Applications15-SP1-Updates","installer_updates":false,"description":"SLE-Module-Desktop-Applications15-SP1-Updates for sle-15-x86_64","enabled":true,"id":3281,"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15-SP1/x86_64/update/"},{"enabled":false,"id":3282,"distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15-SP1/x86_64/update_debug/","installer_updates":false,"name":"SLE-Module-Desktop-Applications15-SP1-Debuginfo-Updates","description":"SLE-Module-Desktop-Applications15-SP1-Debuginfo-Updates for sle-15-x86_64"},{"name":"SLE-Module-Desktop-Applications15-SP1-Pool","installer_updates":false,"description":"SLE-Module-Desktop-Applications15-SP1-Pool for sle-15-x86_64","enabled":true,"id":3283,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP1/x86_64/product/"},{"description":"SLE-Module-Desktop-Applications15-SP1-Debuginfo-Pool for sle-15-x86_64","name":"SLE-Module-Desktop-Applications15-SP1-Debuginfo-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP1/x86_64/product_debug/","enabled":false,"id":3284},{"name":"SLE-Module-Desktop-Applications15-SP1-Source-Pool","installer_updates":false,"description":"SLE-Module-Desktop-Applications15-SP1-Source-Pool for sle-15-x86_64","id":3285,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP1/x86_64/product_source/","autorefresh":false,"distro_target":"sle-15-x86_64"}],"product_type":"module","cpe":"cpe:/o:suse:sle-module-desktop-applications:15:sp1","free":true,"shortname":"Desktop-Applications-Module","description":"

The SUSE Linux Enterprise Desktop Applications Module delivers a basic set of Desktop functionality.

Access to the Desktop Applications Module is included in your SUSE Linux Enterprise product subscription.

","eula_url":"","arch":"x86_64","friendly_version":"15 SP1","extensions":[{"arch":"x86_64","eula_url":"","description":"

The Development Tools Module helps you developing applications for SUSE Linux Enterprise 15.

Access to the Development Tools Module is included in your SUSE Linux Enterprise product subscription. The module has a different lifecycle than SUSE Linux Enterprise itself.

","shortname":"Development-Tools-Module","free":true,"cpe":"cpe:/o:suse:sle-module-development-tools:15:sp1","product_type":"module","online_predecessor_ids":[1579],"product_class":"MODULE","repositories":[{"name":"SLE-Module-DevTools15-SP1-Updates","installer_updates":false,"description":"SLE-Module-DevTools15-SP1-Updates for sle-15-x86_64","id":3371,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15-SP1/x86_64/update/","autorefresh":true,"distro_target":"sle-15-x86_64"},{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15-SP1/x86_64/update_debug/","autorefresh":true,"distro_target":"sle-15-x86_64","id":3372,"enabled":false,"description":"SLE-Module-DevTools15-SP1-Debuginfo-Updates for sle-15-x86_64","name":"SLE-Module-DevTools15-SP1-Debuginfo-Updates","installer_updates":false},{"enabled":true,"id":3373,"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP1/x86_64/product/","installer_updates":false,"name":"SLE-Module-DevTools15-SP1-Pool","description":"SLE-Module-DevTools15-SP1-Pool for sle-15-x86_64"},{"description":"SLE-Module-DevTools15-SP1-Debuginfo-Pool for sle-15-x86_64","name":"SLE-Module-DevTools15-SP1-Debuginfo-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP1/x86_64/product_debug/","enabled":false,"id":3374},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP1/x86_64/product_source/","autorefresh":false,"distro_target":"sle-15-x86_64","id":3375,"enabled":false,"description":"SLE-Module-DevTools15-SP1-Source-Pool for sle-15-x86_64","name":"SLE-Module-DevTools15-SP1-Source-Pool","installer_updates":false}],"predecessor_ids":[1579],"migration_extra":false,"friendly_name":"Development Tools Module 15 SP1 x86_64","release_type":null,"former_identifier":"sle-sdk","name":"Development Tools Module","offline_predecessor_ids":[1223,1323,1341,1366,1427,1630,1892],"version":"15.1","recommended":false,"release_stage":"released","id":1794,"identifier":"sle-module-development-tools","extensions":[],"friendly_version":"15 SP1"}],"id":1776,"release_stage":"released","identifier":"sle-module-desktop-applications","recommended":false,"version":"15.1","offline_predecessor_ids":[],"name":"Desktop Applications Module","release_type":null,"former_identifier":"sle-module-desktop-applications","migration_extra":false,"friendly_name":"Desktop Applications Module 15 SP1 x86_64"},{"name":"Server Applications Module","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"Server Applications Module 15 SP1 x86_64","release_type":null,"former_identifier":"sle-module-server-applications","recommended":true,"version":"15.1","extensions":[{"extensions":[],"identifier":"sle-ha","release_stage":"released","id":1785,"friendly_version":"15 SP1","name":"SUSE Linux Enterprise High Availability Extension","offline_predecessor_ids":[958,961,967,971,1101,1107,1256,1286,1432,1435,1634,1637,1884,1886],"friendly_name":"SUSE Linux Enterprise High Availability Extension 15 SP1 x86_64","migration_extra":false,"former_identifier":"sle-ha","release_type":null,"recommended":true,"version":"15.1","cpe":"cpe:/o:suse:sle-ha:15:sp1","product_type":"extension","predecessor_ids":[1582],"repositories":[{"description":"SLE-Product-HA15-SP1-Updates for sle-15-x86_64","installer_updates":false,"name":"SLE-Product-HA15-SP1-Updates","distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-HA/15-SP1/x86_64/update/","enabled":true,"id":3326},{"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Product-HA/15-SP1/x86_64/update_debug/","enabled":false,"id":3327,"description":"SLE-Product-HA15-SP1-Debuginfo-Updates for sle-15-x86_64","name":"SLE-Product-HA15-SP1-Debuginfo-Updates","installer_updates":false},{"description":"SLE-Product-HA15-SP1-Pool for sle-15-x86_64","name":"SLE-Product-HA15-SP1-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP1/x86_64/product/","autorefresh":false,"distro_target":"sle-15-x86_64","id":3328,"enabled":true},{"id":3329,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP1/x86_64/product_debug/","autorefresh":false,"distro_target":"sle-15-x86_64","name":"SLE-Product-HA15-SP1-Debuginfo-Pool","installer_updates":false,"description":"SLE-Product-HA15-SP1-Debuginfo-Pool for sle-15-x86_64"},{"installer_updates":false,"name":"SLE-Product-HA15-SP1-Source-Pool","description":"SLE-Product-HA15-SP1-Source-Pool for sle-15-x86_64","id":3330,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP1/x86_64/product_source/","distro_target":"sle-15-x86_64","autorefresh":false}],"online_predecessor_ids":[1582],"product_class":"SLE-HAE-X86","eula_url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP1/x86_64/product.license/","arch":"x86_64","description":"SUSE Linux High Availability Extension provides mature, industry-leading open-source high-availability clustering technologies that are easy to set up and use. It can be deployed in physical and/or virtual environments, and can cluster physical servers, virtual servers, or any combination of the two to suit your business’ needs.","shortname":"SLEHA15-SP1","free":false},{"arch":"x86_64","eula_url":"","free":true,"description":"

The SUSE Linux Enterprise Web and Scripting Module should contains additional packages that are helpful when running a webserver.

Access to the Web and Scripting Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself: Package versions in this module are usually supported for at most three years. We are planning to release more recent versions on a schedule of approximately 18 month; the exact dates may differ per package.

","shortname":"Web-Scripting-Module","product_type":"module","cpe":"cpe:/o:suse:sle-module-web-scripting:15:sp1","online_predecessor_ids":[1721],"product_class":"MODULE","repositories":[{"name":"SLE-Module-Web-Scripting15-SP1-Updates","installer_updates":false,"description":"SLE-Module-Web-Scripting15-SP1-Updates for sle-15-x86_64","enabled":true,"id":3391,"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/15-SP1/x86_64/update/"},{"enabled":false,"id":3392,"distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/15-SP1/x86_64/update_debug/","installer_updates":false,"name":"SLE-Module-Web-Scripting15-SP1-Debuginfo-Updates","description":"SLE-Module-Web-Scripting15-SP1-Debuginfo-Updates for sle-15-x86_64"},{"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP1/x86_64/product/","enabled":true,"id":3393,"description":"SLE-Module-Web-Scripting15-SP1-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Web-Scripting15-SP1-Pool"},{"installer_updates":false,"name":"SLE-Module-Web-Scripting15-SP1-Debuginfo-Pool","description":"SLE-Module-Web-Scripting15-SP1-Debuginfo-Pool for sle-15-x86_64","enabled":false,"id":3394,"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP1/x86_64/product_debug/"},{"name":"SLE-Module-Web-Scripting15-SP1-Source-Pool","installer_updates":false,"description":"SLE-Module-Web-Scripting15-SP1-Source-Pool for sle-15-x86_64","enabled":false,"id":3395,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP1/x86_64/product_source/"}],"predecessor_ids":[1721],"former_identifier":"sle-module-web-scripting","release_type":null,"friendly_name":"Web and Scripting Module 15 SP1 x86_64","migration_extra":false,"offline_predecessor_ids":[1153],"name":"Web and Scripting Module","version":"15.1","recommended":false,"id":1798,"release_stage":"released","identifier":"sle-module-web-scripting","extensions":[],"friendly_version":"15 SP1"}],"release_stage":"released","identifier":"sle-module-server-applications","id":1780,"friendly_version":"15 SP1","eula_url":"","arch":"x86_64","description":"

The SUSE Linux Enterprise Server Applications Module delivers a basic set of Server functionality.

Access to the Server Applications Module is included in your SUSE Linux Enterprise Server subscription.

","shortname":"Server-Applications-Module","free":true,"cpe":"cpe:/o:suse:sle-module-server-applications:15:sp1","product_type":"module","predecessor_ids":[1580],"product_class":"MODULE","online_predecessor_ids":[1580],"repositories":[{"enabled":true,"id":3301,"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15-SP1/x86_64/update/","name":"SLE-Module-Server-Applications15-SP1-Updates","installer_updates":false,"description":"SLE-Module-Server-Applications15-SP1-Updates for sle-15-x86_64"},{"installer_updates":false,"name":"SLE-Module-Server-Applications15-SP1-Debuginfo-Updates","description":"SLE-Module-Server-Applications15-SP1-Debuginfo-Updates for sle-15-x86_64","id":3302,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15-SP1/x86_64/update_debug/","distro_target":"sle-15-x86_64","autorefresh":true},{"enabled":true,"id":3303,"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP1/x86_64/product/","installer_updates":false,"name":"SLE-Module-Server-Applications15-SP1-Pool","description":"SLE-Module-Server-Applications15-SP1-Pool for sle-15-x86_64"},{"description":"SLE-Module-Server-Applications15-SP1-Debuginfo-Pool for sle-15-x86_64","name":"SLE-Module-Server-Applications15-SP1-Debuginfo-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP1/x86_64/product_debug/","enabled":false,"id":3304},{"installer_updates":false,"name":"SLE-Module-Server-Applications15-SP1-Source-Pool","description":"SLE-Module-Server-Applications15-SP1-Source-Pool for sle-15-x86_64","enabled":false,"id":3305,"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP1/x86_64/product_source/"}]},{"version":"15.1","recommended":false,"former_identifier":"sle-module-containers","release_type":null,"migration_extra":false,"friendly_name":"Containers Module 15 SP1 x86_64","offline_predecessor_ids":[1332],"name":"Containers Module","friendly_version":"15 SP1","id":1790,"release_stage":"released","identifier":"sle-module-containers","extensions":[],"free":true,"description":"

This Module contains several packages revolving around containers and related tools.

","shortname":"Containers-Module","arch":"x86_64","eula_url":"","repositories":[{"enabled":true,"id":3351,"distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/15-SP1/x86_64/update/","installer_updates":false,"name":"SLE-Module-Containers15-SP1-Updates","description":"SLE-Module-Containers15-SP1-Updates for sle-15-x86_64"},{"installer_updates":false,"name":"SLE-Module-Containers15-SP1-Debuginfo-Updates","description":"SLE-Module-Containers15-SP1-Debuginfo-Updates for sle-15-x86_64","enabled":false,"id":3352,"distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/15-SP1/x86_64/update_debug/"},{"description":"SLE-Module-Containers15-SP1-Pool for sle-15-x86_64","name":"SLE-Module-Containers15-SP1-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP1/x86_64/product/","autorefresh":false,"distro_target":"sle-15-x86_64","id":3353,"enabled":true},{"id":3354,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP1/x86_64/product_debug/","autorefresh":false,"distro_target":"sle-15-x86_64","name":"SLE-Module-Containers15-SP1-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-Containers15-SP1-Debuginfo-Pool for sle-15-x86_64"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP1/x86_64/product_source/","autorefresh":false,"distro_target":"sle-15-x86_64","id":3355,"enabled":false,"description":"SLE-Module-Containers15-SP1-Source-Pool for sle-15-x86_64","name":"SLE-Module-Containers15-SP1-Source-Pool","installer_updates":false}],"online_predecessor_ids":[1642],"product_class":"MODULE","predecessor_ids":[1642],"product_type":"module","cpe":"cpe:/o:suse:sle-module-containers:15:sp1"},{"name":"SUSE Cloud Application Platform Tools Module","offline_predecessor_ids":[1678],"friendly_name":"SUSE Cloud Application Platform Tools Module 15 SP1 x86_64","migration_extra":false,"release_type":null,"former_identifier":"sle-module-cap-tools","recommended":false,"version":"15.1","extensions":[],"identifier":"sle-module-cap-tools","release_stage":"released","id":1809,"friendly_version":"15 SP1","eula_url":"","arch":"x86_64","shortname":"SUSE-CAP-Tools-Module","description":"

The SUSE Cloud Application Platform Tools Module is a collection of tools that enables you to interact with the SUSE Cloud Application Platform product itself, providing the commandline client for instance.

Access to the SUSE Cloud Application Platform Tools Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself; please check the Release Notes for further details.

","free":true,"cpe":"cpe:/o:suse:sle-module-cap-tools:15:sp1","product_type":"module","predecessor_ids":[1728],"product_class":"MODULE","online_predecessor_ids":[1728],"repositories":[{"description":"SLE-Module-CAP-Tools15-SP1-Updates for sle-15-x86_64","name":"SLE-Module-CAP-Tools15-SP1-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-CAP-Tools/15-SP1/x86_64/update/","enabled":true,"id":3446},{"id":3447,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-CAP-Tools/15-SP1/x86_64/update_debug/","autorefresh":true,"distro_target":"sle-15-x86_64","name":"SLE-Module-CAP-Tools15-SP1-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-CAP-Tools15-SP1-Debuginfo-Updates for sle-15-x86_64"},{"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-CAP-Tools/15-SP1/x86_64/product/","enabled":true,"id":3448,"description":"SLE-Module-CAP-Tools15-SP1-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-CAP-Tools15-SP1-Pool"},{"installer_updates":false,"name":"SLE-Module-CAP-Tools15-SP1-Debuginfo-Pool","description":"SLE-Module-CAP-Tools15-SP1-Debuginfo-Pool for sle-15-x86_64","id":3449,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-CAP-Tools/15-SP1/x86_64/product_debug/","distro_target":"sle-15-x86_64","autorefresh":false},{"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-CAP-Tools/15-SP1/x86_64/product_source/","enabled":false,"id":3450,"description":"SLE-Module-CAP-Tools15-SP1-Source-Pool for sle-15-x86_64","name":"SLE-Module-CAP-Tools15-SP1-Source-Pool","installer_updates":false}]},{"release_type":null,"former_identifier":"sle-module-transactional-server","friendly_name":"Transactional Server Module 15 SP1 x86_64","migration_extra":false,"offline_predecessor_ids":[],"name":"Transactional Server Module","version":"15.1","recommended":false,"release_stage":"released","id":1825,"identifier":"sle-module-transactional-server","extensions":[],"friendly_version":"15 SP1","arch":"x86_64","eula_url":"","free":true,"description":"

Transactional Updates provide SUSE Linux Enterprise systems with a method of updating the operating system and its packages in an entirely ‘atomic’ way. Updates are either applied to the system all together in a single transaction, or not at all. This happens without influencing the running system. If an update fails, or if the successful update is deemed to be incompatible or otherwise incorrect, it can be discarded to immediately return the system to its previous functioning state.

Access to theTransactional Server Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself: Package versions in the this module are usually supported for at most three years. We are planning to release more recent versions on a schedule of approximately 18 month; the exact dates may differ per package.

","shortname":"Transactional-Server-Module","product_type":"module","cpe":"cpe:/o:suse:sle-module-transactional-server:15:sp1","product_class":"MODULE","online_predecessor_ids":[],"repositories":[{"installer_updates":false,"name":"SLE-Module-Transactional-Server15-SP1-Updates","description":"SLE-Module-Transactional-Server15-SP1-Updates for sle-15-x86_64","id":3512,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Transactional-Server/15-SP1/x86_64/update/","distro_target":"sle-15-x86_64","autorefresh":true},{"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Transactional-Server/15-SP1/x86_64/update_debug/","enabled":false,"id":3513,"description":"SLE-Module-Transactional-Server15-SP1-Debuginfo-Updates for sle-15-x86_64","name":"SLE-Module-Transactional-Server15-SP1-Debuginfo-Updates","installer_updates":false},{"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Transactional-Server/15-SP1/x86_64/product/","enabled":true,"id":3514,"description":"SLE-Module-Transactional-Server15-SP1-Pool for sle-15-x86_64","name":"SLE-Module-Transactional-Server15-SP1-Pool","installer_updates":false},{"description":"SLE-Module-Transactional-Server15-SP1-Debuginfo-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Transactional-Server15-SP1-Debuginfo-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Transactional-Server/15-SP1/x86_64/product_debug/","distro_target":"sle-15-x86_64","autorefresh":false,"id":3515,"enabled":false},{"id":3516,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Transactional-Server/15-SP1/x86_64/product_source/","distro_target":"sle-15-x86_64","autorefresh":false,"installer_updates":false,"name":"SLE-Module-Transactional-Server15-SP1-Source-Pool","description":"SLE-Module-Transactional-Server15-SP1-Source-Pool for sle-15-x86_64"}],"predecessor_ids":[]}],"friendly_version":"15 SP1","arch":"x86_64","eula_url":"","free":true,"shortname":"Basesystem-Module","description":"

The SUSE Linux Enterprise Basesystem Module delivers the base system of the product.

","product_type":"module","cpe":"cpe:/o:suse:sle-module-basesystem:15:sp1","online_predecessor_ids":[1576],"product_class":"MODULE","repositories":[{"enabled":true,"id":3261,"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15-SP1/x86_64/update/","name":"SLE-Module-Basesystem15-SP1-Updates","installer_updates":false,"description":"SLE-Module-Basesystem15-SP1-Updates for sle-15-x86_64"},{"installer_updates":false,"name":"SLE-Module-Basesystem15-SP1-Debuginfo-Updates","description":"SLE-Module-Basesystem15-SP1-Debuginfo-Updates for sle-15-x86_64","enabled":false,"id":3262,"distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15-SP1/x86_64/update_debug/"},{"description":"SLE-Module-Basesystem15-SP1-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Basesystem15-SP1-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP1/x86_64/product/","distro_target":"sle-15-x86_64","autorefresh":false,"id":3263,"enabled":true},{"name":"SLE-Module-Basesystem15-SP1-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-Basesystem15-SP1-Debuginfo-Pool for sle-15-x86_64","enabled":false,"id":3264,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP1/x86_64/product_debug/"},{"enabled":false,"id":3265,"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP1/x86_64/product_source/","installer_updates":false,"name":"SLE-Module-Basesystem15-SP1-Source-Pool","description":"SLE-Module-Basesystem15-SP1-Source-Pool for sle-15-x86_64"}],"predecessor_ids":[1576]}],"version":"15.1","recommended":false,"former_identifier":"SUSE_SLES_BCL","release_type":null,"friendly_name":"SUSE Linux Enterprise Server Business Critical Linux 15 SP1 x86_64","migration_extra":false,"offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Server Business Critical Linux"},{"eula_url":"","arch":"ppc64le","shortname":"SUSE Manager Server 4.0 Module","description":"SUSE Manager lets you efficiently manage physical, virtual, and cloud-based Linux systems. It provides automated and cost-effective configuration and software management, asset management, and system provisioning.","free":true,"cpe":"cpe:/o:suse:sle-module-suse-manager-server:4.0","product_type":"module","predecessor_ids":[],"repositories":[{"distro_target":"sle-15-ppc64le","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-SUSE-Manager-Server/4.0/ppc64le/update/","enabled":true,"id":3813,"description":"SLE-Module-SUSE-Manager-Server-4.0-Updates for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-SUSE-Manager-Server-4.0-Updates"},{"installer_updates":false,"name":"SLE-Module-SUSE-Manager-Server-4.0-Debuginfo-Updates","description":"SLE-Module-SUSE-Manager-Server-4.0-Debuginfo-Updates for sle-15-ppc64le","enabled":false,"id":3814,"distro_target":"sle-15-ppc64le","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-SUSE-Manager-Server/4.0/ppc64le/update_debug/"},{"description":"SLE-Module-SUSE-Manager-Server-4.0-Pool for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-SUSE-Manager-Server-4.0-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-SUSE-Manager-Server/4.0/ppc64le/product/","distro_target":"sle-15-ppc64le","autorefresh":false,"id":3815,"enabled":true},{"name":"SLE-Module-SUSE-Manager-Server-4.0-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-SUSE-Manager-Server-4.0-Debuginfo-Pool for sle-15-ppc64le","enabled":false,"id":3816,"autorefresh":false,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Products/SLE-Module-SUSE-Manager-Server/4.0/ppc64le/product_debug/"},{"id":3817,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-SUSE-Manager-Server/4.0/ppc64le/product_source/","autorefresh":false,"distro_target":"sle-15-ppc64le","name":"SLE-Module-SUSE-Manager-Server-4.0-Source-Pool","installer_updates":false,"description":"SLE-Module-SUSE-Manager-Server-4.0-Source-Pool for sle-15-ppc64le"}],"online_predecessor_ids":[],"product_class":"MODULE","name":"SUSE Manager Server Module","offline_predecessor_ids":[],"friendly_name":"SUSE Manager Server Module 4.0 ppc64le","migration_extra":false,"former_identifier":"sle-module-suse-manager-server","release_type":null,"recommended":false,"version":"4.0","extensions":[],"id":1903,"release_stage":"released","identifier":"sle-module-suse-manager-server","friendly_version":"4.0"},{"friendly_version":"4.0","id":1904,"release_stage":"released","identifier":"sle-module-suse-manager-server","extensions":[],"version":"4.0","recommended":false,"friendly_name":"SUSE Manager Server Module 4.0 s390x","migration_extra":false,"former_identifier":"sle-module-suse-manager-server","release_type":null,"name":"SUSE Manager Server Module","offline_predecessor_ids":[],"online_predecessor_ids":[],"repositories":[{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-SUSE-Manager-Server/4.0/s390x/update/","autorefresh":true,"distro_target":"sle-15-s390x","id":3818,"enabled":true,"description":"SLE-Module-SUSE-Manager-Server-4.0-Updates for sle-15-s390x","name":"SLE-Module-SUSE-Manager-Server-4.0-Updates","installer_updates":false},{"enabled":false,"id":3819,"autorefresh":true,"distro_target":"sle-15-s390x","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-SUSE-Manager-Server/4.0/s390x/update_debug/","name":"SLE-Module-SUSE-Manager-Server-4.0-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-SUSE-Manager-Server-4.0-Debuginfo-Updates for sle-15-s390x"},{"name":"SLE-Module-SUSE-Manager-Server-4.0-Pool","installer_updates":false,"description":"SLE-Module-SUSE-Manager-Server-4.0-Pool for sle-15-s390x","id":3820,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-SUSE-Manager-Server/4.0/s390x/product/","autorefresh":false,"distro_target":"sle-15-s390x"},{"id":3821,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-SUSE-Manager-Server/4.0/s390x/product_debug/","distro_target":"sle-15-s390x","autorefresh":false,"installer_updates":false,"name":"SLE-Module-SUSE-Manager-Server-4.0-Debuginfo-Pool","description":"SLE-Module-SUSE-Manager-Server-4.0-Debuginfo-Pool for sle-15-s390x"},{"description":"SLE-Module-SUSE-Manager-Server-4.0-Source-Pool for sle-15-s390x","installer_updates":false,"name":"SLE-Module-SUSE-Manager-Server-4.0-Source-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-SUSE-Manager-Server/4.0/s390x/product_source/","distro_target":"sle-15-s390x","autorefresh":false,"id":3822,"enabled":false}],"product_class":"MODULE","predecessor_ids":[],"cpe":"cpe:/o:suse:sle-module-suse-manager-server:4.0","product_type":"module","shortname":"SUSE Manager Server 4.0 Module","description":"SUSE Manager lets you efficiently manage physical, virtual, and cloud-based Linux systems. It provides automated and cost-effective configuration and software management, asset management, and system provisioning.","free":true,"arch":"s390x","eula_url":""},{"extensions":[],"id":1905,"release_stage":"released","identifier":"sle-module-suse-manager-server","friendly_version":"4.0","offline_predecessor_ids":[],"name":"SUSE Manager Server Module","former_identifier":"sle-module-suse-manager-server","release_type":null,"migration_extra":false,"friendly_name":"SUSE Manager Server Module 4.0 x86_64","recommended":false,"version":"4.0","product_type":"module","cpe":"cpe:/o:suse:sle-module-suse-manager-server:4.0","predecessor_ids":[],"repositories":[{"description":"SLE-Module-SUSE-Manager-Server-4.0-Updates for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-SUSE-Manager-Server-4.0-Updates","distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-SUSE-Manager-Server/4.0/x86_64/update/","enabled":true,"id":3823},{"description":"SLE-Module-SUSE-Manager-Server-4.0-Debuginfo-Updates for sle-15-x86_64","name":"SLE-Module-SUSE-Manager-Server-4.0-Debuginfo-Updates","installer_updates":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-SUSE-Manager-Server/4.0/x86_64/update_debug/","autorefresh":true,"distro_target":"sle-15-x86_64","id":3824,"enabled":false},{"id":3825,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-SUSE-Manager-Server/4.0/x86_64/product/","distro_target":"sle-15-x86_64","autorefresh":false,"installer_updates":false,"name":"SLE-Module-SUSE-Manager-Server-4.0-Pool","description":"SLE-Module-SUSE-Manager-Server-4.0-Pool for sle-15-x86_64"},{"description":"SLE-Module-SUSE-Manager-Server-4.0-Debuginfo-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-SUSE-Manager-Server-4.0-Debuginfo-Pool","distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-SUSE-Manager-Server/4.0/x86_64/product_debug/","enabled":false,"id":3826},{"description":"SLE-Module-SUSE-Manager-Server-4.0-Source-Pool for sle-15-x86_64","name":"SLE-Module-SUSE-Manager-Server-4.0-Source-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-SUSE-Manager-Server/4.0/x86_64/product_source/","autorefresh":false,"distro_target":"sle-15-x86_64","id":3827,"enabled":false}],"online_predecessor_ids":[],"product_class":"MODULE","eula_url":"","arch":"x86_64","free":true,"description":"SUSE Manager lets you efficiently manage physical, virtual, and cloud-based Linux systems. It provides automated and cost-effective configuration and software management, asset management, and system provisioning.","shortname":"SUSE Manager Server 4.0 Module"},{"version":"4.0","recommended":false,"former_identifier":"SUSE-Manager-Retail-Branch-Server","release_type":null,"friendly_name":"SUSE Manager Retail Branch Server 4.0 x86_64","migration_extra":false,"offline_predecessor_ids":[1826],"name":"SUSE Manager Retail Branch Server","friendly_version":"4.0","identifier":"SUSE-Manager-Retail-Branch-Server","release_stage":"released","id":1907,"extensions":[{"free":true,"description":"

The SUSE Linux Enterprise Basesystem Module delivers the base system of the product.

","shortname":"Basesystem-Module","eula_url":"","arch":"x86_64","predecessor_ids":[1576],"product_class":"MODULE","online_predecessor_ids":[1576],"repositories":[{"id":3261,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15-SP1/x86_64/update/","distro_target":"sle-15-x86_64","autorefresh":true,"installer_updates":false,"name":"SLE-Module-Basesystem15-SP1-Updates","description":"SLE-Module-Basesystem15-SP1-Updates for sle-15-x86_64"},{"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15-SP1/x86_64/update_debug/","enabled":false,"id":3262,"description":"SLE-Module-Basesystem15-SP1-Debuginfo-Updates for sle-15-x86_64","name":"SLE-Module-Basesystem15-SP1-Debuginfo-Updates","installer_updates":false},{"description":"SLE-Module-Basesystem15-SP1-Pool for sle-15-x86_64","name":"SLE-Module-Basesystem15-SP1-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP1/x86_64/product/","autorefresh":false,"distro_target":"sle-15-x86_64","id":3263,"enabled":true},{"description":"SLE-Module-Basesystem15-SP1-Debuginfo-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Basesystem15-SP1-Debuginfo-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP1/x86_64/product_debug/","distro_target":"sle-15-x86_64","autorefresh":false,"id":3264,"enabled":false},{"name":"SLE-Module-Basesystem15-SP1-Source-Pool","installer_updates":false,"description":"SLE-Module-Basesystem15-SP1-Source-Pool for sle-15-x86_64","enabled":false,"id":3265,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP1/x86_64/product_source/"}],"product_type":"module","cpe":"cpe:/o:suse:sle-module-basesystem:15:sp1","recommended":true,"version":"15.1","offline_predecessor_ids":[1212,1368,1440,1618],"name":"Basesystem Module","former_identifier":"sle-module-basesystem","release_type":null,"migration_extra":false,"friendly_name":"Basesystem Module 15 SP1 x86_64","friendly_version":"15 SP1","extensions":[{"recommended":false,"version":"15.1","offline_predecessor_ids":[],"name":"Desktop Applications Module","former_identifier":"sle-module-desktop-applications","release_type":null,"migration_extra":false,"friendly_name":"Desktop Applications Module 15 SP1 x86_64","friendly_version":"15 SP1","extensions":[{"free":true,"description":"

The Development Tools Module helps you developing applications for SUSE Linux Enterprise 15.

Access to the Development Tools Module is included in your SUSE Linux Enterprise product subscription. The module has a different lifecycle than SUSE Linux Enterprise itself.

","shortname":"Development-Tools-Module","eula_url":"","arch":"x86_64","predecessor_ids":[1579],"online_predecessor_ids":[1579],"product_class":"MODULE","repositories":[{"enabled":true,"id":3371,"distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15-SP1/x86_64/update/","installer_updates":false,"name":"SLE-Module-DevTools15-SP1-Updates","description":"SLE-Module-DevTools15-SP1-Updates for sle-15-x86_64"},{"description":"SLE-Module-DevTools15-SP1-Debuginfo-Updates for sle-15-x86_64","name":"SLE-Module-DevTools15-SP1-Debuginfo-Updates","installer_updates":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15-SP1/x86_64/update_debug/","autorefresh":true,"distro_target":"sle-15-x86_64","id":3372,"enabled":false},{"enabled":true,"id":3373,"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP1/x86_64/product/","installer_updates":false,"name":"SLE-Module-DevTools15-SP1-Pool","description":"SLE-Module-DevTools15-SP1-Pool for sle-15-x86_64"},{"description":"SLE-Module-DevTools15-SP1-Debuginfo-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-DevTools15-SP1-Debuginfo-Pool","distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP1/x86_64/product_debug/","enabled":false,"id":3374},{"description":"SLE-Module-DevTools15-SP1-Source-Pool for sle-15-x86_64","name":"SLE-Module-DevTools15-SP1-Source-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP1/x86_64/product_source/","enabled":false,"id":3375}],"product_type":"module","cpe":"cpe:/o:suse:sle-module-development-tools:15:sp1","recommended":false,"version":"15.1","offline_predecessor_ids":[1223,1323,1341,1366,1427,1630,1892],"name":"Development Tools Module","former_identifier":"sle-sdk","release_type":null,"migration_extra":false,"friendly_name":"Development Tools Module 15 SP1 x86_64","friendly_version":"15 SP1","extensions":[],"release_stage":"released","id":1794,"identifier":"sle-module-development-tools"}],"release_stage":"released","identifier":"sle-module-desktop-applications","id":1776,"free":true,"description":"

The SUSE Linux Enterprise Desktop Applications Module delivers a basic set of Desktop functionality.

Access to the Desktop Applications Module is included in your SUSE Linux Enterprise product subscription.

","shortname":"Desktop-Applications-Module","eula_url":"","arch":"x86_64","predecessor_ids":[1578],"online_predecessor_ids":[1578],"product_class":"MODULE","repositories":[{"description":"SLE-Module-Desktop-Applications15-SP1-Updates for sle-15-x86_64","name":"SLE-Module-Desktop-Applications15-SP1-Updates","installer_updates":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15-SP1/x86_64/update/","autorefresh":true,"distro_target":"sle-15-x86_64","id":3281,"enabled":true},{"name":"SLE-Module-Desktop-Applications15-SP1-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-Desktop-Applications15-SP1-Debuginfo-Updates for sle-15-x86_64","id":3282,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15-SP1/x86_64/update_debug/","autorefresh":true,"distro_target":"sle-15-x86_64"},{"description":"SLE-Module-Desktop-Applications15-SP1-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Desktop-Applications15-SP1-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP1/x86_64/product/","distro_target":"sle-15-x86_64","autorefresh":false,"id":3283,"enabled":true},{"name":"SLE-Module-Desktop-Applications15-SP1-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-Desktop-Applications15-SP1-Debuginfo-Pool for sle-15-x86_64","id":3284,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP1/x86_64/product_debug/","autorefresh":false,"distro_target":"sle-15-x86_64"},{"description":"SLE-Module-Desktop-Applications15-SP1-Source-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Desktop-Applications15-SP1-Source-Pool","distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP1/x86_64/product_source/","enabled":false,"id":3285}],"product_type":"module","cpe":"cpe:/o:suse:sle-module-desktop-applications:15:sp1"},{"release_stage":"released","id":1780,"identifier":"sle-module-server-applications","extensions":[{"extensions":[],"identifier":"sle-ha","release_stage":"released","id":1785,"friendly_version":"15 SP1","offline_predecessor_ids":[958,961,967,971,1101,1107,1256,1286,1432,1435,1634,1637,1884,1886],"name":"SUSE Linux Enterprise High Availability Extension","former_identifier":"sle-ha","release_type":null,"friendly_name":"SUSE Linux Enterprise High Availability Extension 15 SP1 x86_64","migration_extra":false,"recommended":false,"version":"15.1","product_type":"extension","cpe":"cpe:/o:suse:sle-ha:15:sp1","predecessor_ids":[1582],"repositories":[{"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-HA/15-SP1/x86_64/update/","autorefresh":true,"distro_target":"sle-15-x86_64","id":3326,"enabled":true,"description":"SLE-Product-HA15-SP1-Updates for sle-15-x86_64","name":"SLE-Product-HA15-SP1-Updates","installer_updates":false},{"id":3327,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-HA/15-SP1/x86_64/update_debug/","autorefresh":true,"distro_target":"sle-15-x86_64","name":"SLE-Product-HA15-SP1-Debuginfo-Updates","installer_updates":false,"description":"SLE-Product-HA15-SP1-Debuginfo-Updates for sle-15-x86_64"},{"description":"SLE-Product-HA15-SP1-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Product-HA15-SP1-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP1/x86_64/product/","distro_target":"sle-15-x86_64","autorefresh":false,"id":3328,"enabled":true},{"enabled":false,"id":3329,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP1/x86_64/product_debug/","name":"SLE-Product-HA15-SP1-Debuginfo-Pool","installer_updates":false,"description":"SLE-Product-HA15-SP1-Debuginfo-Pool for sle-15-x86_64"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP1/x86_64/product_source/","distro_target":"sle-15-x86_64","autorefresh":false,"id":3330,"enabled":false,"description":"SLE-Product-HA15-SP1-Source-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Product-HA15-SP1-Source-Pool"}],"online_predecessor_ids":[1582],"product_class":"SLE-HAE-X86","eula_url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP1/x86_64/product.license/","arch":"x86_64","free":false,"shortname":"SLEHA15-SP1","description":"SUSE Linux High Availability Extension provides mature, industry-leading open-source high-availability clustering technologies that are easy to set up and use. It can be deployed in physical and/or virtual environments, and can cluster physical servers, virtual servers, or any combination of the two to suit your business’ needs."},{"arch":"x86_64","eula_url":"","free":true,"description":"

The SUSE Linux Enterprise Web and Scripting Module should contains additional packages that are helpful when running a webserver.

Access to the Web and Scripting Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself: Package versions in this module are usually supported for at most three years. We are planning to release more recent versions on a schedule of approximately 18 month; the exact dates may differ per package.

","shortname":"Web-Scripting-Module","product_type":"module","cpe":"cpe:/o:suse:sle-module-web-scripting:15:sp1","repositories":[{"installer_updates":false,"name":"SLE-Module-Web-Scripting15-SP1-Updates","description":"SLE-Module-Web-Scripting15-SP1-Updates for sle-15-x86_64","id":3391,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/15-SP1/x86_64/update/","distro_target":"sle-15-x86_64","autorefresh":true},{"description":"SLE-Module-Web-Scripting15-SP1-Debuginfo-Updates for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Web-Scripting15-SP1-Debuginfo-Updates","distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/15-SP1/x86_64/update_debug/","enabled":false,"id":3392},{"installer_updates":false,"name":"SLE-Module-Web-Scripting15-SP1-Pool","description":"SLE-Module-Web-Scripting15-SP1-Pool for sle-15-x86_64","enabled":true,"id":3393,"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP1/x86_64/product/"},{"id":3394,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP1/x86_64/product_debug/","distro_target":"sle-15-x86_64","autorefresh":false,"installer_updates":false,"name":"SLE-Module-Web-Scripting15-SP1-Debuginfo-Pool","description":"SLE-Module-Web-Scripting15-SP1-Debuginfo-Pool for sle-15-x86_64"},{"description":"SLE-Module-Web-Scripting15-SP1-Source-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Web-Scripting15-SP1-Source-Pool","distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP1/x86_64/product_source/","enabled":false,"id":3395}],"online_predecessor_ids":[1721],"product_class":"MODULE","predecessor_ids":[1721],"release_type":null,"former_identifier":"sle-module-web-scripting","migration_extra":false,"friendly_name":"Web and Scripting Module 15 SP1 x86_64","offline_predecessor_ids":[1153],"name":"Web and Scripting Module","version":"15.1","recommended":false,"id":1798,"release_stage":"released","identifier":"sle-module-web-scripting","extensions":[],"friendly_version":"15 SP1"},{"product_class":"MODULE","online_predecessor_ids":[1581],"repositories":[{"description":"SLE-Module-Legacy15-SP1-Updates for sle-15-x86_64","name":"SLE-Module-Legacy15-SP1-Updates","installer_updates":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/15-SP1/x86_64/update/","autorefresh":true,"distro_target":"sle-15-x86_64","id":3421,"enabled":true},{"description":"SLE-Module-Legacy15-SP1-Debuginfo-Updates for sle-15-x86_64","name":"SLE-Module-Legacy15-SP1-Debuginfo-Updates","installer_updates":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/15-SP1/x86_64/update_debug/","autorefresh":true,"distro_target":"sle-15-x86_64","id":3422,"enabled":false},{"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15-SP1/x86_64/product/","enabled":true,"id":3423,"description":"SLE-Module-Legacy15-SP1-Pool for sle-15-x86_64","name":"SLE-Module-Legacy15-SP1-Pool","installer_updates":false},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15-SP1/x86_64/product_debug/","distro_target":"sle-15-x86_64","autorefresh":false,"id":3424,"enabled":false,"description":"SLE-Module-Legacy15-SP1-Debuginfo-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Legacy15-SP1-Debuginfo-Pool"},{"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15-SP1/x86_64/product_source/","enabled":false,"id":3425,"description":"SLE-Module-Legacy15-SP1-Source-Pool for sle-15-x86_64","name":"SLE-Module-Legacy15-SP1-Source-Pool","installer_updates":false}],"predecessor_ids":[1581],"cpe":"cpe:/o:suse:sle-module-legacy:15:sp1","product_type":"module","description":"

The Legacy Module helps you migrating applications from SUSE Linux Enterprise 12 and other systems to SUSE Linux Enterprise 15, by providing packages which are discontinued on SUSE Linux Enterprise Server, such as: ntp, IBM Java 8, and a number of libraries.

Access to the Legacy Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself. Packages in the this module are usually supported for at most three years.

","shortname":"Legacy-Module","free":true,"arch":"x86_64","eula_url":"","friendly_version":"15 SP1","identifier":"sle-module-legacy","release_stage":"released","id":1804,"extensions":[],"version":"15.1","recommended":false,"migration_extra":false,"friendly_name":"Legacy Module 15 SP1 x86_64","release_type":null,"former_identifier":"sle-module-legacy","name":"Legacy Module","offline_predecessor_ids":[1150]},{"predecessor_ids":[1611],"online_predecessor_ids":[1611],"product_class":"MODULE","repositories":[{"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/15-SP1/x86_64/update/","enabled":true,"id":3441,"description":"SLE-Module-Public-Cloud15-SP1-Updates for sle-15-x86_64","name":"SLE-Module-Public-Cloud15-SP1-Updates","installer_updates":false},{"description":"SLE-Module-Public-Cloud15-SP1-Debuginfo-Updates for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Public-Cloud15-SP1-Debuginfo-Updates","distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/15-SP1/x86_64/update_debug/","enabled":false,"id":3442},{"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP1/x86_64/product/","enabled":true,"id":3443,"description":"SLE-Module-Public-Cloud15-SP1-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Public-Cloud15-SP1-Pool"},{"enabled":false,"id":3444,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP1/x86_64/product_debug/","name":"SLE-Module-Public-Cloud15-SP1-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-Public-Cloud15-SP1-Debuginfo-Pool for sle-15-x86_64"},{"name":"SLE-Module-Public-Cloud15-SP1-Source-Pool","installer_updates":false,"description":"SLE-Module-Public-Cloud15-SP1-Source-Pool for sle-15-x86_64","id":3445,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP1/x86_64/product_source/","autorefresh":false,"distro_target":"sle-15-x86_64"}],"cpe":"cpe:/o:suse:sle-module-public-cloud:15:sp1","product_type":"module","description":"

The Public Cloud Module is a collection of tools that enables you to create and manage cloud images from the commandline on SUSE Linux Enterprise Server. When building your own images with KIWI or SUSE Studio, initialization code specific to the target cloud is included in that image.

Access to the Public Cloud Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself; please check the Release Notes for further details.

","shortname":"Public-Cloud-Module","free":true,"eula_url":"","arch":"x86_64","friendly_version":"15 SP1","extensions":[],"release_stage":"released","identifier":"sle-module-public-cloud","id":1808,"recommended":false,"version":"15.1","name":"Public Cloud Module","offline_predecessor_ids":[1220],"friendly_name":"Public Cloud Module 15 SP1 x86_64","migration_extra":false,"former_identifier":"sle-module-public-cloud","release_type":null},{"extensions":[{"friendly_version":"4.0","extensions":[],"release_stage":"released","id":1909,"identifier":"sle-module-suse-manager-retail-branch-server","recommended":true,"version":"4.0","name":"SUSE Manager Retail Branch Server Module","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"SUSE Manager Retail Branch Server Module 4.0 x86_64","release_type":null,"former_identifier":"sle-module-suse-manager-retail-branch-server","predecessor_ids":[],"product_class":"MODULE","online_predecessor_ids":[],"repositories":[{"description":"SLE-Module-SUSE-Manager-Retail-Branch-Server-4.0-Updates for sle-15-x86_64","name":"SLE-Module-SUSE-Manager-Retail-Branch-Server-4.0-Updates","installer_updates":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-SUSE-Manager-Retail-Branch-Server/4.0/x86_64/update/","autorefresh":true,"distro_target":"sle-15-x86_64","id":3848,"enabled":true},{"enabled":false,"id":3849,"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-SUSE-Manager-Retail-Branch-Server/4.0/x86_64/update_debug/","name":"SLE-Module-SUSE-Manager-Retail-Branch-Server-4.0-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-SUSE-Manager-Retail-Branch-Server-4.0-Debuginfo-Updates for sle-15-x86_64"},{"description":"SLE-Module-SUSE-Manager-Retail-Branch-Server-4.0-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-SUSE-Manager-Retail-Branch-Server-4.0-Pool","distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-SUSE-Manager-Retail-Branch-Server/4.0/x86_64/product/","enabled":true,"id":3850},{"installer_updates":false,"name":"SLE-Module-SUSE-Manager-Retail-Branch-Server-4.0-Debuginfo-Pool","description":"SLE-Module-SUSE-Manager-Retail-Branch-Server-4.0-Debuginfo-Pool for sle-15-x86_64","id":3851,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-SUSE-Manager-Retail-Branch-Server/4.0/x86_64/product_debug/","distro_target":"sle-15-x86_64","autorefresh":false},{"enabled":false,"id":3852,"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-SUSE-Manager-Retail-Branch-Server/4.0/x86_64/product_source/","installer_updates":false,"name":"SLE-Module-SUSE-Manager-Retail-Branch-Server-4.0-Source-Pool","description":"SLE-Module-SUSE-Manager-Retail-Branch-Server-4.0-Source-Pool for sle-15-x86_64"}],"cpe":"cpe:/o:suse:sle-module-suse-manager-retail-branch-server:4.0","product_type":"module","description":"The SUSE Manager for Retail Branch Server supports large and/or geographically dispersed SUSE Manager for Retail environments by reducing the load on the SUSE Manager Server, lowering bandwidth needs, and providing faster local updates.","shortname":"SUSE Manager Retail Branch Server 4.0 Module","free":true,"eula_url":"","arch":"x86_64"}],"release_stage":"released","id":1908,"identifier":"sle-module-suse-manager-proxy","friendly_version":"4.0","offline_predecessor_ids":[],"name":"SUSE Manager Proxy Module","release_type":null,"former_identifier":"sle-module-suse-manager-proxy","migration_extra":false,"friendly_name":"SUSE Manager Proxy Module 4.0 x86_64","recommended":true,"version":"4.0","product_type":"module","cpe":"cpe:/o:suse:sle-module-suse-manager-proxy:4.0","predecessor_ids":[],"repositories":[{"installer_updates":false,"name":"SLE-Module-SUSE-Manager-Proxy-4.0-Updates","description":"SLE-Module-SUSE-Manager-Proxy-4.0-Updates for sle-15-x86_64","enabled":true,"id":3843,"distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-SUSE-Manager-Proxy/4.0/x86_64/update/"},{"id":3844,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-SUSE-Manager-Proxy/4.0/x86_64/update_debug/","autorefresh":true,"distro_target":"sle-15-x86_64","name":"SLE-Module-SUSE-Manager-Proxy-4.0-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-SUSE-Manager-Proxy-4.0-Debuginfo-Updates for sle-15-x86_64"},{"installer_updates":false,"name":"SLE-Module-SUSE-Manager-Proxy-4.0-Pool","description":"SLE-Module-SUSE-Manager-Proxy-4.0-Pool for sle-15-x86_64","enabled":true,"id":3845,"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-SUSE-Manager-Proxy/4.0/x86_64/product/"},{"description":"SLE-Module-SUSE-Manager-Proxy-4.0-Debuginfo-Pool for sle-15-x86_64","name":"SLE-Module-SUSE-Manager-Proxy-4.0-Debuginfo-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-SUSE-Manager-Proxy/4.0/x86_64/product_debug/","autorefresh":false,"distro_target":"sle-15-x86_64","id":3846,"enabled":false},{"description":"SLE-Module-SUSE-Manager-Proxy-4.0-Source-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-SUSE-Manager-Proxy-4.0-Source-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-SUSE-Manager-Proxy/4.0/x86_64/product_source/","distro_target":"sle-15-x86_64","autorefresh":false,"id":3847,"enabled":false}],"online_predecessor_ids":[],"product_class":"MODULE","eula_url":"","arch":"x86_64","free":true,"description":"SUSE Manager Proxies extend large and/or geographically dispersed SUSE Manager environments to reduce load on the SUSE Manager Server, lower bandwidth needs, and provide faster local updates.","shortname":"SUSE Manager Proxy 4.0 Module"}],"friendly_version":"15 SP1","friendly_name":"Server Applications Module 15 SP1 x86_64","migration_extra":false,"former_identifier":"sle-module-server-applications","release_type":null,"name":"Server Applications Module","offline_predecessor_ids":[],"version":"15.1","recommended":true,"cpe":"cpe:/o:suse:sle-module-server-applications:15:sp1","product_type":"module","online_predecessor_ids":[1580],"product_class":"MODULE","repositories":[{"name":"SLE-Module-Server-Applications15-SP1-Updates","installer_updates":false,"description":"SLE-Module-Server-Applications15-SP1-Updates for sle-15-x86_64","enabled":true,"id":3301,"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15-SP1/x86_64/update/"},{"enabled":false,"id":3302,"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15-SP1/x86_64/update_debug/","name":"SLE-Module-Server-Applications15-SP1-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-Server-Applications15-SP1-Debuginfo-Updates for sle-15-x86_64"},{"description":"SLE-Module-Server-Applications15-SP1-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Server-Applications15-SP1-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP1/x86_64/product/","distro_target":"sle-15-x86_64","autorefresh":false,"id":3303,"enabled":true},{"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP1/x86_64/product_debug/","enabled":false,"id":3304,"description":"SLE-Module-Server-Applications15-SP1-Debuginfo-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Server-Applications15-SP1-Debuginfo-Pool"},{"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP1/x86_64/product_source/","enabled":false,"id":3305,"description":"SLE-Module-Server-Applications15-SP1-Source-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Server-Applications15-SP1-Source-Pool"}],"predecessor_ids":[1580],"arch":"x86_64","eula_url":"","shortname":"Server-Applications-Module","description":"

The SUSE Linux Enterprise Server Applications Module delivers a basic set of Server functionality.

Access to the Server Applications Module is included in your SUSE Linux Enterprise Server subscription.

","free":true},{"identifier":"sle-module-containers","release_stage":"released","id":1790,"extensions":[],"friendly_version":"15 SP1","former_identifier":"sle-module-containers","release_type":null,"friendly_name":"Containers Module 15 SP1 x86_64","migration_extra":false,"offline_predecessor_ids":[1332],"name":"Containers Module","version":"15.1","recommended":false,"product_type":"module","cpe":"cpe:/o:suse:sle-module-containers:15:sp1","online_predecessor_ids":[1642],"product_class":"MODULE","repositories":[{"description":"SLE-Module-Containers15-SP1-Updates for sle-15-x86_64","name":"SLE-Module-Containers15-SP1-Updates","installer_updates":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/15-SP1/x86_64/update/","autorefresh":true,"distro_target":"sle-15-x86_64","id":3351,"enabled":true},{"id":3352,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/15-SP1/x86_64/update_debug/","distro_target":"sle-15-x86_64","autorefresh":true,"installer_updates":false,"name":"SLE-Module-Containers15-SP1-Debuginfo-Updates","description":"SLE-Module-Containers15-SP1-Debuginfo-Updates for sle-15-x86_64"},{"description":"SLE-Module-Containers15-SP1-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Containers15-SP1-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP1/x86_64/product/","distro_target":"sle-15-x86_64","autorefresh":false,"id":3353,"enabled":true},{"description":"SLE-Module-Containers15-SP1-Debuginfo-Pool for sle-15-x86_64","name":"SLE-Module-Containers15-SP1-Debuginfo-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP1/x86_64/product_debug/","autorefresh":false,"distro_target":"sle-15-x86_64","id":3354,"enabled":false},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP1/x86_64/product_source/","distro_target":"sle-15-x86_64","autorefresh":false,"id":3355,"enabled":false,"description":"SLE-Module-Containers15-SP1-Source-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Containers15-SP1-Source-Pool"}],"predecessor_ids":[1642],"arch":"x86_64","eula_url":"","free":true,"shortname":"Containers-Module","description":"

This Module contains several packages revolving around containers and related tools.

"},{"extensions":[],"release_stage":"released","identifier":"sle-module-python2","id":1867,"friendly_version":"15 SP1","offline_predecessor_ids":[],"name":"Python 2 Module","former_identifier":"sle-module-python2","release_type":null,"friendly_name":"Python 2 Module 15 SP1 x86_64","migration_extra":false,"recommended":false,"version":"15.1","product_type":"module","cpe":"cpe:/o:suse:sle-module-python2:15:sp1","predecessor_ids":[],"repositories":[{"enabled":true,"id":3598,"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Python2/15-SP1/x86_64/update/","name":"SLE-Module-Python2-15-SP1-Updates","installer_updates":false,"description":"SLE-Module-Python2-15-SP1-Updates for sle-15-x86_64"},{"description":"SLE-Module-Python2-15-SP1-Debuginfo-Updates for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Python2-15-SP1-Debuginfo-Updates","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Python2/15-SP1/x86_64/update_debug/","distro_target":"sle-15-x86_64","autorefresh":true,"id":3599,"enabled":false},{"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Python2/15-SP1/x86_64/product/","enabled":true,"id":3600,"description":"SLE-Module-Python2-15-SP1-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Python2-15-SP1-Pool"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Python2/15-SP1/x86_64/product_debug/","distro_target":"sle-15-x86_64","autorefresh":false,"id":3601,"enabled":false,"description":"SLE-Module-Python2-15-SP1-Debuginfo-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Python2-15-SP1-Debuginfo-Pool"},{"name":"SLE-Module-Python2-15-SP1-Source-Pool","installer_updates":false,"description":"SLE-Module-Python2-15-SP1-Source-Pool for sle-15-x86_64","enabled":false,"id":3602,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Python2/15-SP1/x86_64/product_source/"}],"online_predecessor_ids":[],"product_class":"MODULE","eula_url":"","arch":"x86_64","free":true,"description":"

This module contains the python 2 packages.

Access to the Python 2 Module is included in your SUSE Linux Enterprise subscription. The module has a different lifecycle than SUSE Linux Enterprise itself. Packages in the this module are usually supported for at most three years.

","shortname":"Python2-Module"},{"eula_url":"","arch":"x86_64","free":true,"description":"SUSE Package Hub is a free of charge extension providing access to community maintained packages built to run on SUSE Linux Enterprise Server. Built from the same sources used in the openSUSE distributions, these quality packages provide additional software to what is found in the SUSE Linux Enterprise Server product. Packages from the Package Hub are delivered without L3 support from SUSE. General updates and fixes to the packages in SUSE Package Hub are provided by the openSUSE community based on their discretion, though SUSE will monitor and ensure that any known critical security issues will be addressed. Packages in the Package Hub are approved by SUSE for use with SUSE Linux Enterprise Server 15-SP1 and to not interfere with the supportability of SUSE Linux Enterprise Server, its modules and extensions. For more information about SUSE Package Hub please visit https://packagehub.suse.com.","shortname":"SUSE-PackageHub-15","product_type":"extension","cpe":"cpe:/o:suse:packagehub:15:sp1","predecessor_ids":[1743],"product_class":"MODULE","online_predecessor_ids":[1743],"repositories":[{"installer_updates":false,"name":"SUSE-PackageHub-15-SP1-Backports-Pool","description":"SUSE-PackageHub-15-SP1-Backports-Pool for sle-15-x86_64","enabled":true,"id":3627,"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Backports/SLE-15-SP1_x86_64/standard/"},{"description":"SUSE-PackageHub-15-SP1-Backports-Debuginfo for sle-15-x86_64","installer_updates":false,"name":"SUSE-PackageHub-15-SP1-Backports-Debuginfo","distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Backports/SLE-15-SP1_x86_64/standard_debug/","enabled":false,"id":3628},{"description":"SLE-Module-Packagehub-Subpackages15-SP1-Updates for sle-15-x86_64","name":"SLE-Module-Packagehub-Subpackages15-SP1-Updates","installer_updates":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP1/x86_64/update/","autorefresh":true,"distro_target":"sle-15-x86_64","id":3629,"enabled":true},{"id":3630,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP1/x86_64/update_debug/","autorefresh":true,"distro_target":"sle-15-x86_64","name":"SLE-Module-Packagehub-Subpackages15-SP1-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-Packagehub-Subpackages15-SP1-Debuginfo-Updates for sle-15-x86_64"},{"description":"SUSE-PackageHub-15-SP1-Pool for sle-15-x86_64","name":"SUSE-PackageHub-15-SP1-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Backports/SLE-15-SP1_x86_64/product/","enabled":true,"id":3631},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP1/x86_64/product/","distro_target":"sle-15-x86_64","autorefresh":false,"id":3632,"enabled":true,"description":"SLE-Module-Packagehub-Subpackages15-SP1-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Packagehub-Subpackages15-SP1-Pool"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP1/x86_64/product_debug/","distro_target":"sle-15-x86_64","autorefresh":false,"id":3633,"enabled":false,"description":"SLE-Module-Packagehub-Subpackages15-SP1-Debuginfo-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Packagehub-Subpackages15-SP1-Debuginfo-Pool"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP1/x86_64/product_source/","autorefresh":false,"distro_target":"sle-15-x86_64","id":3634,"enabled":false,"description":"SLE-Module-Packagehub-Subpackages15-SP1-Source-Pool for sle-15-x86_64","name":"SLE-Module-Packagehub-Subpackages15-SP1-Source-Pool","installer_updates":false}],"offline_predecessor_ids":[1529,1813,1915],"name":"SUSE Package Hub","former_identifier":"PackageHub","release_type":null,"migration_extra":false,"friendly_name":"SUSE Package Hub 15 SP1 x86_64","recommended":false,"version":"15.1","extensions":[],"identifier":"PackageHub","release_stage":"released","id":1871,"friendly_version":"15 SP1"}],"release_stage":"released","id":1772,"identifier":"sle-module-basesystem"}],"free":false,"description":"The SUSE Manager for Retail Branch Server supports large and/or geographically dispersed SUSE Manager for Retail environments by reducing the load on the SUSE Manager Server, lowering bandwidth needs, and providing faster local updates.","shortname":"SUSE Manager Retail Branch Server 4.0","arch":"x86_64","eula_url":"https://updates.suse.com/SUSE/Products/SLE-Product-SUSE-Manager-Retail-Branch-Server/4.0/x86_64/product.license/","repositories":[{"description":"SLE-Product-SUSE-Manager-Retail-Branch-Server-4.0-Updates for sle-15-x86_64","name":"SLE-Product-SUSE-Manager-Retail-Branch-Server-4.0-Updates","installer_updates":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-SUSE-Manager-Retail-Branch-Server/4.0/x86_64/update/","autorefresh":true,"distro_target":"sle-15-x86_64","id":3838,"enabled":true},{"description":"SLE-Product-SUSE-Manager-Retail-Branch-Server-4.0-Debuginfo-Updates for sle-15-x86_64","name":"SLE-Product-SUSE-Manager-Retail-Branch-Server-4.0-Debuginfo-Updates","installer_updates":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-SUSE-Manager-Retail-Branch-Server/4.0/x86_64/update_debug/","autorefresh":true,"distro_target":"sle-15-x86_64","id":3839,"enabled":false},{"url":"https://updates.suse.com/SUSE/Products/SLE-Product-SUSE-Manager-Retail-Branch-Server/4.0/x86_64/product/","distro_target":"sle-15-x86_64","autorefresh":false,"id":3840,"enabled":true,"description":"SLE-Product-SUSE-Manager-Retail-Branch-Server-4.0-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Product-SUSE-Manager-Retail-Branch-Server-4.0-Pool"},{"enabled":false,"id":3841,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Product-SUSE-Manager-Retail-Branch-Server/4.0/x86_64/product_debug/","name":"SLE-Product-SUSE-Manager-Retail-Branch-Server-4.0-Debuginfo-Pool","installer_updates":false,"description":"SLE-Product-SUSE-Manager-Retail-Branch-Server-4.0-Debuginfo-Pool for sle-15-x86_64"},{"description":"SLE-Product-SUSE-Manager-Retail-Branch-Server-4.0-Source-Pool for sle-15-x86_64","name":"SLE-Product-SUSE-Manager-Retail-Branch-Server-4.0-Source-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Product-SUSE-Manager-Retail-Branch-Server/4.0/x86_64/product_source/","enabled":false,"id":3842}],"online_predecessor_ids":[],"product_class":"SMRBS","predecessor_ids":[],"product_type":"base","cpe":"cpe:/o:suse:suse-manager-retail-branch-server:4.0"},{"eula_url":"","arch":"x86_64","free":true,"description":"SUSE Manager Proxies extend large and/or geographically dispersed SUSE Manager environments to reduce load on the SUSE Manager Server, lower bandwidth needs, and provide faster local updates.","shortname":"SUSE Manager Proxy 4.0 Module","product_type":"module","cpe":"cpe:/o:suse:sle-module-suse-manager-proxy:4.0","predecessor_ids":[],"repositories":[{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-SUSE-Manager-Proxy/4.0/x86_64/update/","distro_target":"sle-15-x86_64","autorefresh":true,"id":3843,"enabled":true,"description":"SLE-Module-SUSE-Manager-Proxy-4.0-Updates for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-SUSE-Manager-Proxy-4.0-Updates"},{"installer_updates":false,"name":"SLE-Module-SUSE-Manager-Proxy-4.0-Debuginfo-Updates","description":"SLE-Module-SUSE-Manager-Proxy-4.0-Debuginfo-Updates for sle-15-x86_64","enabled":false,"id":3844,"distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-SUSE-Manager-Proxy/4.0/x86_64/update_debug/"},{"installer_updates":false,"name":"SLE-Module-SUSE-Manager-Proxy-4.0-Pool","description":"SLE-Module-SUSE-Manager-Proxy-4.0-Pool for sle-15-x86_64","id":3845,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-SUSE-Manager-Proxy/4.0/x86_64/product/","distro_target":"sle-15-x86_64","autorefresh":false},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-SUSE-Manager-Proxy/4.0/x86_64/product_debug/","autorefresh":false,"distro_target":"sle-15-x86_64","id":3846,"enabled":false,"description":"SLE-Module-SUSE-Manager-Proxy-4.0-Debuginfo-Pool for sle-15-x86_64","name":"SLE-Module-SUSE-Manager-Proxy-4.0-Debuginfo-Pool","installer_updates":false},{"id":3847,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-SUSE-Manager-Proxy/4.0/x86_64/product_source/","autorefresh":false,"distro_target":"sle-15-x86_64","name":"SLE-Module-SUSE-Manager-Proxy-4.0-Source-Pool","installer_updates":false,"description":"SLE-Module-SUSE-Manager-Proxy-4.0-Source-Pool for sle-15-x86_64"}],"online_predecessor_ids":[],"product_class":"MODULE","offline_predecessor_ids":[],"name":"SUSE Manager Proxy Module","release_type":null,"former_identifier":"sle-module-suse-manager-proxy","migration_extra":false,"friendly_name":"SUSE Manager Proxy Module 4.0 x86_64","recommended":false,"version":"4.0","extensions":[],"id":1908,"release_stage":"released","identifier":"sle-module-suse-manager-proxy","friendly_version":"4.0"},{"arch":"x86_64","eula_url":"","free":true,"shortname":"SUSE Manager Retail Branch Server 4.0 Module","description":"The SUSE Manager for Retail Branch Server supports large and/or geographically dispersed SUSE Manager for Retail environments by reducing the load on the SUSE Manager Server, lowering bandwidth needs, and providing faster local updates.","product_type":"module","cpe":"cpe:/o:suse:sle-module-suse-manager-retail-branch-server:4.0","online_predecessor_ids":[],"repositories":[{"description":"SLE-Module-SUSE-Manager-Retail-Branch-Server-4.0-Updates for sle-15-x86_64","name":"SLE-Module-SUSE-Manager-Retail-Branch-Server-4.0-Updates","installer_updates":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-SUSE-Manager-Retail-Branch-Server/4.0/x86_64/update/","autorefresh":true,"distro_target":"sle-15-x86_64","id":3848,"enabled":true},{"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-SUSE-Manager-Retail-Branch-Server/4.0/x86_64/update_debug/","enabled":false,"id":3849,"description":"SLE-Module-SUSE-Manager-Retail-Branch-Server-4.0-Debuginfo-Updates for sle-15-x86_64","name":"SLE-Module-SUSE-Manager-Retail-Branch-Server-4.0-Debuginfo-Updates","installer_updates":false},{"id":3850,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-SUSE-Manager-Retail-Branch-Server/4.0/x86_64/product/","distro_target":"sle-15-x86_64","autorefresh":false,"installer_updates":false,"name":"SLE-Module-SUSE-Manager-Retail-Branch-Server-4.0-Pool","description":"SLE-Module-SUSE-Manager-Retail-Branch-Server-4.0-Pool for sle-15-x86_64"},{"description":"SLE-Module-SUSE-Manager-Retail-Branch-Server-4.0-Debuginfo-Pool for sle-15-x86_64","name":"SLE-Module-SUSE-Manager-Retail-Branch-Server-4.0-Debuginfo-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-SUSE-Manager-Retail-Branch-Server/4.0/x86_64/product_debug/","autorefresh":false,"distro_target":"sle-15-x86_64","id":3851,"enabled":false},{"installer_updates":false,"name":"SLE-Module-SUSE-Manager-Retail-Branch-Server-4.0-Source-Pool","description":"SLE-Module-SUSE-Manager-Retail-Branch-Server-4.0-Source-Pool for sle-15-x86_64","id":3852,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-SUSE-Manager-Retail-Branch-Server/4.0/x86_64/product_source/","distro_target":"sle-15-x86_64","autorefresh":false}],"product_class":"MODULE","predecessor_ids":[],"release_type":null,"former_identifier":"sle-module-suse-manager-retail-branch-server","friendly_name":"SUSE Manager Retail Branch Server Module 4.0 x86_64","migration_extra":false,"offline_predecessor_ids":[],"name":"SUSE Manager Retail Branch Server Module","version":"4.0","recommended":false,"id":1909,"release_stage":"released","identifier":"sle-module-suse-manager-retail-branch-server","extensions":[],"friendly_version":"4.0"},{"description":"SUSE Package Hub is a free of charge extension providing access to community maintained packages built to run on SUSE Linux Enterprise Server. Built from the same sources used in the openSUSE distributions, these quality packages provide additional software to what is found in the SUSE Linux Enterprise Server product. Packages from the Package Hub are delivered without L3 support from SUSE. General updates and fixes to the packages in SUSE Package Hub are provided by the openSUSE community based on their discretion though SUSE will monitor and ensure that any known critical security issues will be addressed. Packages in the Package Hub are approved by SUSE for use with SUSE Linux Enterprise Server 12 and to not interfere with the supportability of SUSE Linux Enterprise Server it's modules and extensions. For more information about SUSE Package Hub please visit https://packagehub.suse.com.","shortname":"SUSE-PackageHub-12-SP5","free":true,"arch":"aarch64","eula_url":"","online_predecessor_ids":[1482,1532,1810],"repositories":[{"id":3855,"enabled":true,"url":"https://updates.suse.com/SUSE/Backports/SLE-12-SP5_aarch64/standard/","autorefresh":false,"distro_target":"sle-12-aarch64","name":"SUSE-PackageHub-12-SP5-Standard-Pool","installer_updates":false,"description":"SUSE-PackageHub-12-SP5-Standard-Pool for sle-12-aarch64"},{"url":"https://updates.suse.com/SUSE/Backports/SLE-12-SP5_aarch64/standard_debug/","autorefresh":true,"distro_target":"sle-12-aarch64","id":3856,"enabled":false,"description":"SUSE-PackageHub-12-SP5-Debuginfo for sle-12-aarch64","name":"SUSE-PackageHub-12-SP5-Debuginfo","installer_updates":false},{"enabled":true,"id":3857,"distro_target":"sle-12-aarch64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Backports/SLE-12-SP5_aarch64/product/","installer_updates":false,"name":"SUSE-PackageHub-12-SP5-Pool","description":"SUSE-PackageHub-12-SP5-Pool for sle-12-aarch64"}],"product_class":"MODULE","predecessor_ids":[1482,1532,1810],"cpe":"cpe:/o:suse:packagehub:12:sp5","product_type":"extension","version":"12.5","recommended":false,"migration_extra":false,"friendly_name":"SUSE Package Hub 12 SP5 aarch64","former_identifier":"PackageHub","release_type":null,"name":"SUSE Package Hub","offline_predecessor_ids":[],"friendly_version":"12 SP5","identifier":"PackageHub","release_stage":"released","id":1912,"extensions":[]},{"online_predecessor_ids":[1475,1478,1481,1531,1811],"repositories":[{"installer_updates":false,"name":"SUSE-PackageHub-12-SP5-Standard-Pool","description":"SUSE-PackageHub-12-SP5-Standard-Pool for sle-12-ppc64le","enabled":true,"id":3858,"distro_target":"sle-12-ppc64le","autorefresh":false,"url":"https://updates.suse.com/SUSE/Backports/SLE-12-SP5_ppc64le/standard/"},{"description":"SUSE-PackageHub-12-SP5-Debuginfo for sle-12-ppc64le","name":"SUSE-PackageHub-12-SP5-Debuginfo","installer_updates":false,"autorefresh":true,"distro_target":"sle-12-ppc64le","url":"https://updates.suse.com/SUSE/Backports/SLE-12-SP5_ppc64le/standard_debug/","enabled":false,"id":3859},{"url":"https://updates.suse.com/SUSE/Backports/SLE-12-SP5_ppc64le/product/","autorefresh":false,"distro_target":"sle-12-ppc64le","id":3860,"enabled":true,"description":"SUSE-PackageHub-12-SP5-Pool for sle-12-ppc64le","name":"SUSE-PackageHub-12-SP5-Pool","installer_updates":false}],"product_class":"MODULE","predecessor_ids":[1475,1478,1481,1531,1811],"cpe":"cpe:/o:suse:packagehub:12:sp5","product_type":"extension","shortname":"SUSE-PackageHub-12-SP5","description":"SUSE Package Hub is a free of charge extension providing access to community maintained packages built to run on SUSE Linux Enterprise Server. Built from the same sources used in the openSUSE distributions, these quality packages provide additional software to what is found in the SUSE Linux Enterprise Server product. Packages from the Package Hub are delivered without L3 support from SUSE. General updates and fixes to the packages in SUSE Package Hub are provided by the openSUSE community based on their discretion though SUSE will monitor and ensure that any known critical security issues will be addressed. Packages in the Package Hub are approved by SUSE for use with SUSE Linux Enterprise Server 12 and to not interfere with the supportability of SUSE Linux Enterprise Server it's modules and extensions. For more information about SUSE Package Hub please visit https://packagehub.suse.com.","free":true,"arch":"ppc64le","eula_url":"","friendly_version":"12 SP5","identifier":"PackageHub","release_stage":"released","id":1913,"extensions":[],"version":"12.5","recommended":false,"migration_extra":false,"friendly_name":"SUSE Package Hub 12 SP5 ppc64le","release_type":null,"former_identifier":"PackageHub","name":"SUSE Package Hub","offline_predecessor_ids":[]},{"eula_url":"","arch":"s390x","free":true,"description":"SUSE Package Hub is a free of charge extension providing access to community maintained packages built to run on SUSE Linux Enterprise Server. Built from the same sources used in the openSUSE distributions, these quality packages provide additional software to what is found in the SUSE Linux Enterprise Server product. Packages from the Package Hub are delivered without L3 support from SUSE. General updates and fixes to the packages in SUSE Package Hub are provided by the openSUSE community based on their discretion though SUSE will monitor and ensure that any known critical security issues will be addressed. Packages in the Package Hub are approved by SUSE for use with SUSE Linux Enterprise Server 12 and to not interfere with the supportability of SUSE Linux Enterprise Server it's modules and extensions. For more information about SUSE Package Hub please visit https://packagehub.suse.com.","shortname":"SUSE-PackageHub-12-SP5","product_type":"extension","cpe":"cpe:/o:suse:packagehub:12:sp5","predecessor_ids":[1474,1477,1480,1530,1812],"product_class":"MODULE","online_predecessor_ids":[1474,1477,1480,1530,1812],"repositories":[{"url":"https://updates.suse.com/SUSE/Backports/SLE-12-SP5_s390x/standard/","distro_target":"sle-12-s390x","autorefresh":false,"id":3861,"enabled":true,"description":"SUSE-PackageHub-12-SP5-Standard-Pool for sle-12-s390x","installer_updates":false,"name":"SUSE-PackageHub-12-SP5-Standard-Pool"},{"autorefresh":true,"distro_target":"sle-12-s390x","url":"https://updates.suse.com/SUSE/Backports/SLE-12-SP5_s390x/standard_debug/","enabled":false,"id":3862,"description":"SUSE-PackageHub-12-SP5-Debuginfo for sle-12-s390x","name":"SUSE-PackageHub-12-SP5-Debuginfo","installer_updates":false},{"id":3863,"enabled":true,"url":"https://updates.suse.com/SUSE/Backports/SLE-12-SP5_s390x/product/","distro_target":"sle-12-s390x","autorefresh":false,"installer_updates":false,"name":"SUSE-PackageHub-12-SP5-Pool","description":"SUSE-PackageHub-12-SP5-Pool for sle-12-s390x"}],"offline_predecessor_ids":[],"name":"SUSE Package Hub","former_identifier":"PackageHub","release_type":null,"friendly_name":"SUSE Package Hub 12 SP5 s390x","migration_extra":false,"recommended":false,"version":"12.5","extensions":[],"release_stage":"released","identifier":"PackageHub","id":1914,"friendly_version":"12 SP5"},{"extensions":[],"release_stage":"released","id":1915,"identifier":"PackageHub","friendly_version":"12 SP5","name":"SUSE Package Hub","offline_predecessor_ids":[],"friendly_name":"SUSE Package Hub 12 SP5 x86_64","migration_extra":false,"release_type":null,"former_identifier":"PackageHub","recommended":false,"version":"12.5","cpe":"cpe:/o:suse:packagehub:12:sp5","product_type":"extension","predecessor_ids":[1473,1476,1479,1529,1813],"online_predecessor_ids":[1473,1476,1479,1529,1813],"product_class":"MODULE","repositories":[{"id":3864,"enabled":true,"url":"https://updates.suse.com/SUSE/Backports/SLE-12-SP5_x86_64/standard/","autorefresh":false,"distro_target":"sle-12-x86_64","name":"SUSE-PackageHub-12-SP5-Standard-Pool","installer_updates":false,"description":"SUSE-PackageHub-12-SP5-Standard-Pool for sle-12-x86_64"},{"url":"https://updates.suse.com/SUSE/Backports/SLE-12-SP5_x86_64/standard_debug/","autorefresh":true,"distro_target":"sle-12-x86_64","id":3865,"enabled":false,"description":"SUSE-PackageHub-12-SP5-Debuginfo for sle-12-x86_64","name":"SUSE-PackageHub-12-SP5-Debuginfo","installer_updates":false},{"description":"SUSE-PackageHub-12-SP5-Pool for sle-12-x86_64","installer_updates":false,"name":"SUSE-PackageHub-12-SP5-Pool","distro_target":"sle-12-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Backports/SLE-12-SP5_x86_64/product/","enabled":true,"id":3866}],"eula_url":"","arch":"x86_64","description":"SUSE Package Hub is a free of charge extension providing access to community maintained packages built to run on SUSE Linux Enterprise Server. Built from the same sources used in the openSUSE distributions, these quality packages provide additional software to what is found in the SUSE Linux Enterprise Server product. Packages from the Package Hub are delivered without L3 support from SUSE. General updates and fixes to the packages in SUSE Package Hub are provided by the openSUSE community based on their discretion though SUSE will monitor and ensure that any known critical security issues will be addressed. Packages in the Package Hub are approved by SUSE for use with SUSE Linux Enterprise Server 12 and to not interfere with the supportability of SUSE Linux Enterprise Server it's modules and extensions. For more information about SUSE Package Hub please visit https://packagehub.suse.com.","shortname":"SUSE-PackageHub-12-SP5","free":true},{"product_type":"extension","cpe":"cpe:/o:suse:ubuntu-manager-client:1604","online_predecessor_ids":[],"product_class":"SLE-M-T","repositories":[{"name":"Ubuntu-16.04-SUSE-Manager-Tools","installer_updates":false,"description":"Ubuntu-16.04-SUSE-Manager-Tools for amd64","enabled":true,"id":3869,"autorefresh":true,"distro_target":"amd64","url":"https://updates.suse.com/SUSE/Updates/Ubuntu/16.04-CLIENT-TOOLS/x86_64/update/"}],"predecessor_ids":[],"arch":"amd64","eula_url":"","free":false,"shortname":"Manager-Tools","description":"SUSE Manager Client Tools for Ubuntu 16.04","release_stage":"released","id":1917,"identifier":"ubuntu-manager-client","extensions":[],"friendly_version":"1604","former_identifier":"ubuntu-manager-client","release_type":null,"migration_extra":false,"friendly_name":"SUSE Manager Client Tools for Ubuntu 1604 amd64","offline_predecessor_ids":[],"name":"SUSE Manager Client Tools for Ubuntu","version":"1604","recommended":false},{"recommended":false,"version":"1804","offline_predecessor_ids":[],"name":"SUSE Manager Client Tools for Ubuntu","former_identifier":"ubuntu-manager-client","release_type":null,"migration_extra":false,"friendly_name":"SUSE Manager Client Tools for Ubuntu 1804 amd64","friendly_version":"1804","extensions":[],"identifier":"ubuntu-manager-client","release_stage":"released","id":1918,"free":false,"description":"SUSE Manager Client Tools for Ubuntu 18.04","shortname":"Manager-Tools","eula_url":"","arch":"amd64","predecessor_ids":[],"repositories":[{"installer_updates":false,"name":"Ubuntu-18.04-SUSE-Manager-Tools","description":"Ubuntu-18.04-SUSE-Manager-Tools for amd64","enabled":true,"id":3870,"distro_target":"amd64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/Ubuntu/18.04-CLIENT-TOOLS/x86_64/update/"}],"online_predecessor_ids":[],"product_class":"SLE-M-T","product_type":"extension","cpe":"cpe:/o:suse:ubuntu-manager-client:1804"},{"online_predecessor_ids":[],"repositories":[{"installer_updates":false,"name":"SUSE-CAP-2.0-Updates","description":"SUSE-CAP-2.0-Updates for sle-12-x86_64","id":3871,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/CAP/2.0/x86_64/update/","distro_target":"sle-12-x86_64","autorefresh":true},{"name":"SUSE-CAP-2.0-Pool","installer_updates":false,"description":"SUSE-CAP-2.0-Pool for sle-12-x86_64","enabled":true,"id":3872,"autorefresh":false,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Products/CAP/2.0/x86_64/product/"}],"product_class":"CAP-X86","predecessor_ids":[],"cpe":"cpe:/o:suse:cap:2.0","product_type":"extension","description":"SUSE Cloud Application Platform is a modern application delivery platform that brings an advanced cloud native developer experience to Kubernetes. SUSE Cloud Application Platform boosts developer productivity with easy one step deployment of cloud native applications using the language and framework most appropriate for the task. It’s a lean, containerized, implementation of the Cloud Foundry Application Runtime that runs inside Kubernetes and uses 100% open source and enterprise-ready technologies.","shortname":"SUSE Cloud Application Platform 2.0","free":false,"arch":"x86_64","eula_url":"https://updates.suse.com/SUSE/Products/CAP/2.0/x86_64/product.license/","friendly_version":"2.0","release_stage":"released","id":1919,"identifier":"CAP","extensions":[],"version":"2.0","recommended":false,"migration_extra":false,"friendly_name":"SUSE Cloud Application Platform 2.0 x86_64","release_type":null,"former_identifier":"CAP","name":"SUSE Cloud Application Platform","offline_predecessor_ids":[]},{"offline_predecessor_ids":[],"name":"Containers Module","former_identifier":"sle-module-containers","release_type":null,"migration_extra":false,"friendly_name":"Containers Module 15 SP1 aarch64","recommended":false,"version":"15.1","extensions":[],"identifier":"sle-module-containers","release_stage":"released","id":1920,"friendly_version":"15 SP1","eula_url":"","arch":"aarch64","free":true,"shortname":"Containers-Module","description":"

This Module contains several packages revolving around containers and related tools.

","product_type":"module","cpe":"cpe:/o:suse:sle-module-containers:15:sp1","predecessor_ids":[],"online_predecessor_ids":[],"repositories":[{"name":"SLE-Module-Containers15-SP1-Updates","installer_updates":false,"description":"SLE-Module-Containers15-SP1-Updates for sle-15-aarch64","enabled":true,"id":3873,"autorefresh":true,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/15-SP1/aarch64/update/"},{"name":"SLE-Module-Containers15-SP1-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-Containers15-SP1-Debuginfo-Updates for sle-15-aarch64","id":3874,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/15-SP1/aarch64/update_debug/","autorefresh":true,"distro_target":"sle-15-aarch64"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP1/aarch64/product/","distro_target":"sle-15-aarch64","autorefresh":false,"id":3875,"enabled":true,"description":"SLE-Module-Containers15-SP1-Pool for sle-15-aarch64","installer_updates":false,"name":"SLE-Module-Containers15-SP1-Pool"},{"installer_updates":false,"name":"SLE-Module-Containers15-SP1-Debuginfo-Pool","description":"SLE-Module-Containers15-SP1-Debuginfo-Pool for sle-15-aarch64","enabled":false,"id":3876,"distro_target":"sle-15-aarch64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP1/aarch64/product_debug/"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP1/aarch64/product_source/","distro_target":"sle-15-aarch64","autorefresh":false,"id":3877,"enabled":false,"description":"SLE-Module-Containers15-SP1-Source-Pool for sle-15-aarch64","installer_updates":false,"name":"SLE-Module-Containers15-SP1-Source-Pool"}],"product_class":"MODULE"},{"eula_url":"","arch":"x86_64","description":"SUSE Linux Enterprise Server with Expanded Support 8","shortname":"RES8","free":false,"cpe":"cpe:/o:suse:res:8","product_type":"base","predecessor_ids":[],"online_predecessor_ids":[],"repositories":[{"installer_updates":false,"name":"RES-8-Updates","description":"RES-8-Updates for x86_64","enabled":true,"id":3878,"distro_target":"x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/RES/8/x86_64/update/"},{"description":"RES-8-Source-Updates for x86_64","installer_updates":false,"name":"RES-8-Source-Updates","distro_target":"x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/RES/8/src/update/","enabled":false,"id":3879},{"url":"https://updates.suse.com/SUSE/Updates/RES/8/debug/update/","distro_target":"x86_64","autorefresh":true,"id":3881,"enabled":false,"description":"RES-8-Debug-Updates for x86_64","installer_updates":false,"name":"RES-8-Debug-Updates"},{"name":"RES-AS-8-Updates","installer_updates":false,"description":"RES-AS-8-Updates for x86_64","id":3921,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/RES-AS/8/x86_64/update/","autorefresh":true,"distro_target":"x86_64"},{"installer_updates":false,"name":"RES-AS-8-Source-Updates","description":"RES-AS-8-Source-Updates for x86_64","id":3922,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/RES-AS/8/src/update/","distro_target":"x86_64","autorefresh":true},{"description":"RES-AS-8-Debug-Updates for x86_64","installer_updates":false,"name":"RES-AS-8-Debug-Updates","url":"https://updates.suse.com/SUSE/Updates/RES-AS/8/debug/update/","distro_target":"x86_64","autorefresh":true,"id":3923,"enabled":false},{"installer_updates":false,"name":"RES-CB-8-Updates","description":"RES-CB-8-Updates for x86_64","id":3924,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/RES-CB/8/x86_64/update/","distro_target":"x86_64","autorefresh":true},{"enabled":false,"id":3925,"autorefresh":true,"distro_target":"x86_64","url":"https://updates.suse.com/SUSE/Updates/RES-CB/8/src/update/","name":"RES-CB-8-Source-Updates","installer_updates":false,"description":"RES-CB-8-Source-Updates for x86_64"},{"description":"RES-CB-8-Debug-Updates for x86_64","name":"RES-CB-8-Debug-Updates","installer_updates":false,"autorefresh":true,"distro_target":"x86_64","url":"https://updates.suse.com/SUSE/Updates/RES-CB/8/debug/update/","enabled":false,"id":3926}],"product_class":"RES","name":"SUSE Linux Enterprise Server with Expanded Support","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Server with Expanded Support 8 x86_64","release_type":null,"former_identifier":"RES","recommended":false,"version":"8","extensions":[{"cpe":"cpe:/o:suse:res-ha:8","product_type":"extension","product_class":"RES-HA","online_predecessor_ids":[],"repositories":[{"name":"RES-8-HA-Updates","installer_updates":false,"description":"RES-8-HA-Updates for x86_64","id":3882,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/RES-HA/8/x86_64/update/","autorefresh":true,"distro_target":"x86_64"},{"name":"RES-8-HA-Source-Updates","installer_updates":false,"description":"RES-8-HA-Source-Updates for x86_64","id":3883,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/RES-HA/8/src/update/","autorefresh":true,"distro_target":"x86_64"},{"description":"RES-8-HA-Debug-Updates for x86_64","name":"RES-8-HA-Debug-Updates","installer_updates":false,"url":"https://updates.suse.com/SUSE/Updates/RES-HA/8/debug/update/","autorefresh":true,"distro_target":"x86_64","id":3884,"enabled":false}],"predecessor_ids":[],"arch":"x86_64","eula_url":"","shortname":"RES HA 8","description":"SUSE Linux Enterprise High Availability Extension with Expanded Support 8","free":false,"release_stage":"released","identifier":"RES-HA","id":1922,"extensions":[],"friendly_version":"8","migration_extra":false,"friendly_name":"SUSE Linux Enterprise High Availability Extension with Expanded Support 8 x86_64","former_identifier":"RES-HA","release_type":null,"name":"SUSE Linux Enterprise High Availability Extension with Expanded Support","offline_predecessor_ids":[],"version":"8","recommended":false}],"release_stage":"released","identifier":"RES","id":1921,"friendly_version":"8"},{"product_type":"extension","cpe":"cpe:/o:suse:res-ha:8","online_predecessor_ids":[],"repositories":[{"url":"https://updates.suse.com/SUSE/Updates/RES-HA/8/x86_64/update/","autorefresh":true,"distro_target":"x86_64","id":3882,"enabled":true,"description":"RES-8-HA-Updates for x86_64","name":"RES-8-HA-Updates","installer_updates":false},{"id":3883,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/RES-HA/8/src/update/","autorefresh":true,"distro_target":"x86_64","name":"RES-8-HA-Source-Updates","installer_updates":false,"description":"RES-8-HA-Source-Updates for x86_64"},{"installer_updates":false,"name":"RES-8-HA-Debug-Updates","description":"RES-8-HA-Debug-Updates for x86_64","id":3884,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/RES-HA/8/debug/update/","distro_target":"x86_64","autorefresh":true}],"product_class":"RES-HA","predecessor_ids":[],"arch":"x86_64","eula_url":"","free":false,"description":"SUSE Linux Enterprise High Availability Extension with Expanded Support 8","shortname":"RES HA 8","release_stage":"released","id":1922,"identifier":"RES-HA","extensions":[],"friendly_version":"8","release_type":null,"former_identifier":"RES-HA","friendly_name":"SUSE Linux Enterprise High Availability Extension with Expanded Support 8 x86_64","migration_extra":false,"offline_predecessor_ids":[],"name":"SUSE Linux Enterprise High Availability Extension with Expanded Support","version":"8","recommended":false},{"product_class":"CAP-X86","online_predecessor_ids":[],"repositories":[{"distro_target":"sle-12-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/CAP/1.0/x86_64/update/","enabled":true,"id":3885,"description":"SUSE-CAP-1.0-Updates for sle-12-x86_64","installer_updates":false,"name":"SUSE-CAP-1.0-Updates"},{"distro_target":"sle-12-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/CAP/1.0/x86_64/product/","enabled":true,"id":3886,"description":"SUSE-CAP-1.0-Pool for sle-12-x86_64","installer_updates":false,"name":"SUSE-CAP-1.0-Pool"}],"predecessor_ids":[],"cpe":"cpe:/o:suse:cap:1.0","product_type":"extension","shortname":"SUSE Cloud Application Platform 1.0","description":"SUSE Cloud Application Platform is a modern application delivery platform that brings an advanced cloud native developer experience to Kubernetes. SUSE Cloud Application Platform boosts developer productivity with easy one step deployment of cloud native applications using the language and framework most appropriate for the task. It’s a lean, containerized, implementation of the Cloud Foundry Application Runtime that runs inside Kubernetes and uses 100% open source and enterprise-ready technologies.","free":false,"arch":"x86_64","eula_url":"","friendly_version":"1.0","release_stage":"released","identifier":"CAP","id":1923,"extensions":[],"version":"1.0","recommended":false,"migration_extra":false,"friendly_name":"SUSE Cloud Application Platform 1.0 x86_64","former_identifier":"CAP","release_type":null,"name":"SUSE Cloud Application Platform","offline_predecessor_ids":[]},{"friendly_version":"12 SP4","extensions":[],"id":1924,"release_stage":"released","identifier":"SUSE-Linux-Enterprise-RT","recommended":false,"version":"12.4","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Real Time","release_type":null,"former_identifier":"SUSE-Linux-Enterprise-RT","friendly_name":"SUSE Linux Enterprise Real Time 12 SP4 x86_64","migration_extra":false,"predecessor_ids":[1619],"online_predecessor_ids":[1619],"product_class":"SUSE_RT","repositories":[{"distro_target":"sle-12-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-RT/12-SP4/x86_64/update/","enabled":true,"id":3887,"description":"SLE-RT12-SP4-Updates for sle-12-x86_64","installer_updates":false,"name":"SLE-RT12-SP4-Updates"},{"description":"SLE-RT12-SP4-Debuginfo-Updates for sle-12-x86_64","installer_updates":false,"name":"SLE-RT12-SP4-Debuginfo-Updates","url":"https://updates.suse.com/SUSE/Updates/SLE-RT/12-SP4/x86_64/update_debug/","distro_target":"sle-12-x86_64","autorefresh":true,"id":3888,"enabled":false},{"enabled":true,"id":3889,"autorefresh":false,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-RT/12-SP4/x86_64/product/","name":"SLE-RT12-SP4-Pool","installer_updates":false,"description":"SLE-RT12-SP4-Pool for sle-12-x86_64"},{"id":3890,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-RT/12-SP4/x86_64/product_debug/","autorefresh":false,"distro_target":"sle-12-x86_64","name":"SLE-RT12-SP4-Debuginfo-Pool","installer_updates":false,"description":"SLE-RT12-SP4-Debuginfo-Pool for sle-12-x86_64"}],"product_type":"extension","cpe":"cpe:/o:suse:suse-linux-enterprise-rt:12:sp4","free":false,"shortname":"SLERT12 SP4","description":"SUSE Linux Enterprise Real Time 12 SP4.","eula_url":"https://updates.suse.com/SUSE/Products/SLE-RT/12-SP4/x86_64/product.license/","arch":"x86_64"},{"friendly_version":"15","extensions":[],"release_stage":"beta","id":1925,"identifier":"sle-manager-tools-beta","recommended":false,"version":"15","name":"SUSE Manager Client Tools Beta for SLE","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"SUSE Manager Client Tools Beta for SLE 15 aarch64 (BETA)","former_identifier":"sle-manager-tools-beta","release_type":null,"predecessor_ids":[],"repositories":[{"id":3891,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/15-BETA/aarch64/update/","autorefresh":true,"distro_target":"sle-15-aarch64","name":"SLE-Manager-Tools15-BETA-Updates","installer_updates":false,"description":"SLE-Manager-Tools15-BETA-Updates for sle-15-aarch64"},{"enabled":false,"id":3892,"autorefresh":true,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/15-BETA/aarch64/update_debug/","name":"SLE-Manager-Tools15-BETA-Debuginfo-Updates","installer_updates":false,"description":"SLE-Manager-Tools15-BETA-Debuginfo-Updates for sle-15-aarch64"},{"description":"SLE-Manager-Tools15-BETA-Pool for sle-15-aarch64","name":"SLE-Manager-Tools15-BETA-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/15-BETA/aarch64/product/","enabled":true,"id":3899},{"enabled":false,"id":3900,"autorefresh":false,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/15-BETA/aarch64/product_debug/","name":"SLE-Manager-Tools15-BETA-Debuginfo-Pool","installer_updates":false,"description":"SLE-Manager-Tools15-BETA-Debuginfo-Pool for sle-15-aarch64"},{"name":"SLE-Manager-Tools15-BETA-Source-Pool","installer_updates":false,"description":"SLE-Manager-Tools15-BETA-Source-Pool for sle-15-aarch64","enabled":false,"id":3901,"autorefresh":false,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/15-BETA/aarch64/product_source/"}],"online_predecessor_ids":[],"product_class":"SLE-M-T-BETA","cpe":"cpe:/o:suse:sle-manager-tools-beta:15","product_type":"extension","description":"SUSE Manager Tools provide packages required to connect to a SUSE Manager Server for Beta testing.","shortname":"Manager-Tools-Beta","free":false,"eula_url":"https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/15-BETA/aarch64/product.license/","arch":"aarch64"},{"friendly_name":"SUSE Manager Client Tools Beta for SLE 15 ppc64le (BETA)","migration_extra":false,"release_type":null,"former_identifier":"sle-manager-tools-beta","name":"SUSE Manager Client Tools Beta for SLE","offline_predecessor_ids":[],"version":"15","recommended":false,"release_stage":"beta","id":1926,"identifier":"sle-manager-tools-beta","extensions":[],"friendly_version":"15","arch":"ppc64le","eula_url":"https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/15-BETA/ppc64le/product.license/","shortname":"Manager-Tools-Beta","description":"SUSE Manager Tools provide packages required to connect to a SUSE Manager Server for Beta testing.","free":false,"cpe":"cpe:/o:suse:sle-manager-tools-beta:15","product_type":"extension","repositories":[{"description":"SLE-Manager-Tools15-BETA-Updates for sle-15-ppc64le","installer_updates":false,"name":"SLE-Manager-Tools15-BETA-Updates","distro_target":"sle-15-ppc64le","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/15-BETA/ppc64le/update/","enabled":true,"id":3893},{"url":"https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/15-BETA/ppc64le/update_debug/","autorefresh":true,"distro_target":"sle-15-ppc64le","id":3894,"enabled":false,"description":"SLE-Manager-Tools15-BETA-Debuginfo-Updates for sle-15-ppc64le","name":"SLE-Manager-Tools15-BETA-Debuginfo-Updates","installer_updates":false},{"distro_target":"sle-15-ppc64le","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/15-BETA/ppc64le/product/","enabled":true,"id":3902,"description":"SLE-Manager-Tools15-BETA-Pool for sle-15-ppc64le","installer_updates":false,"name":"SLE-Manager-Tools15-BETA-Pool"},{"enabled":false,"id":3903,"distro_target":"sle-15-ppc64le","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/15-BETA/ppc64le/product_debug/","installer_updates":false,"name":"SLE-Manager-Tools15-BETA-Debuginfo-Pool","description":"SLE-Manager-Tools15-BETA-Debuginfo-Pool for sle-15-ppc64le"},{"installer_updates":false,"name":"SLE-Manager-Tools15-BETA-Source-Pool","description":"SLE-Manager-Tools15-BETA-Source-Pool for sle-15-ppc64le","id":3904,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/15-BETA/ppc64le/product_source/","distro_target":"sle-15-ppc64le","autorefresh":false}],"online_predecessor_ids":[],"product_class":"SLE-M-T-BETA","predecessor_ids":[]},{"friendly_version":"15","identifier":"sle-manager-tools-beta","release_stage":"beta","id":1927,"extensions":[],"version":"15","recommended":false,"former_identifier":"sle-manager-tools-beta","release_type":null,"friendly_name":"SUSE Manager Client Tools Beta for SLE 15 s390x (BETA)","migration_extra":false,"offline_predecessor_ids":[],"name":"SUSE Manager Client Tools Beta for SLE","product_class":"SLE-M-T-BETA","online_predecessor_ids":[],"repositories":[{"id":3895,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/15-BETA/s390x/update/","distro_target":"sle-15-s390x","autorefresh":true,"installer_updates":false,"name":"SLE-Manager-Tools15-BETA-Updates","description":"SLE-Manager-Tools15-BETA-Updates for sle-15-s390x"},{"name":"SLE-Manager-Tools15-BETA-Debuginfo-Updates","installer_updates":false,"description":"SLE-Manager-Tools15-BETA-Debuginfo-Updates for sle-15-s390x","enabled":false,"id":3896,"autorefresh":true,"distro_target":"sle-15-s390x","url":"https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/15-BETA/s390x/update_debug/"},{"distro_target":"sle-15-s390x","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/15-BETA/s390x/product/","enabled":true,"id":3905,"description":"SLE-Manager-Tools15-BETA-Pool for sle-15-s390x","installer_updates":false,"name":"SLE-Manager-Tools15-BETA-Pool"},{"name":"SLE-Manager-Tools15-BETA-Debuginfo-Pool","installer_updates":false,"description":"SLE-Manager-Tools15-BETA-Debuginfo-Pool for sle-15-s390x","id":3906,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/15-BETA/s390x/product_debug/","autorefresh":false,"distro_target":"sle-15-s390x"},{"enabled":false,"id":3907,"autorefresh":false,"distro_target":"sle-15-s390x","url":"https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/15-BETA/s390x/product_source/","name":"SLE-Manager-Tools15-BETA-Source-Pool","installer_updates":false,"description":"SLE-Manager-Tools15-BETA-Source-Pool for sle-15-s390x"}],"predecessor_ids":[],"product_type":"extension","cpe":"cpe:/o:suse:sle-manager-tools-beta:15","free":false,"description":"SUSE Manager Tools provide packages required to connect to a SUSE Manager Server for Beta testing.","shortname":"Manager-Tools-Beta","arch":"s390x","eula_url":"https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/15-BETA/s390x/product.license/"},{"eula_url":"https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/15-BETA/x86_64/product.license/","arch":"x86_64","free":false,"description":"SUSE Manager Tools provide packages required to connect to a SUSE Manager Server for Beta testing.","shortname":"Manager-Tools-Beta","product_type":"extension","cpe":"cpe:/o:suse:sle-manager-tools-beta:15","predecessor_ids":[],"product_class":"SLE-M-T-BETA","online_predecessor_ids":[],"repositories":[{"id":3897,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/15-BETA/x86_64/update/","distro_target":"sle-15-x86_64","autorefresh":true,"installer_updates":false,"name":"SLE-Manager-Tools15-BETA-Updates","description":"SLE-Manager-Tools15-BETA-Updates for sle-15-x86_64"},{"url":"https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/15-BETA/x86_64/update_debug/","distro_target":"sle-15-x86_64","autorefresh":true,"id":3898,"enabled":false,"description":"SLE-Manager-Tools15-BETA-Debuginfo-Updates for sle-15-x86_64","installer_updates":false,"name":"SLE-Manager-Tools15-BETA-Debuginfo-Updates"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/15-BETA/x86_64/product/","autorefresh":false,"distro_target":"sle-15-x86_64","id":3908,"enabled":true,"description":"SLE-Manager-Tools15-BETA-Pool for sle-15-x86_64","name":"SLE-Manager-Tools15-BETA-Pool","installer_updates":false},{"id":3909,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/15-BETA/x86_64/product_debug/","distro_target":"sle-15-x86_64","autorefresh":false,"installer_updates":false,"name":"SLE-Manager-Tools15-BETA-Debuginfo-Pool","description":"SLE-Manager-Tools15-BETA-Debuginfo-Pool for sle-15-x86_64"},{"installer_updates":false,"name":"SLE-Manager-Tools15-BETA-Source-Pool","description":"SLE-Manager-Tools15-BETA-Source-Pool for sle-15-x86_64","id":3910,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/15-BETA/x86_64/product_source/","distro_target":"sle-15-x86_64","autorefresh":false}],"offline_predecessor_ids":[],"name":"SUSE Manager Client Tools Beta for SLE","release_type":null,"former_identifier":"sle-manager-tools-beta","migration_extra":false,"friendly_name":"SUSE Manager Client Tools Beta for SLE 15 x86_64 (BETA)","recommended":false,"version":"15","extensions":[],"identifier":"sle-manager-tools-beta","release_stage":"beta","id":1928,"friendly_version":"15"},{"free":false,"description":"openSUSE Leap 15.1","shortname":"openSUSE Leap","eula_url":"","arch":"x86_64","predecessor_ids":[],"repositories":[{"description":"openSUSE-Leap-15.1-Updates","installer_updates":false,"name":"openSUSE-Leap-15.1-Updates","url":"http://download.opensuse.org/update/leap/15.1/oss/","distro_target":null,"autorefresh":true,"id":3911,"enabled":true},{"id":3912,"enabled":false,"url":"http://download.opensuse.org/update/leap/15.1/non-oss/","autorefresh":true,"distro_target":null,"name":"openSUSE-Leap-15.1-NonOss-Updates","installer_updates":false,"description":"openSUSE-Leap-15.1-NonOss-Updates"},{"name":"openSUSE-Leap-15.1-Pool","installer_updates":false,"description":"openSUSE-Leap-15.1-Pool","id":3913,"enabled":true,"url":"http://download.opensuse.org/distribution/leap/15.1/repo/oss/","autorefresh":false,"distro_target":null},{"id":3914,"enabled":false,"url":"http://download.opensuse.org/distribution/leap/15.1/repo/non-oss/","autorefresh":false,"distro_target":null,"name":"openSUSE-Leap-15.1-NonOss-Pool","installer_updates":false,"description":"openSUSE-Leap-15.1-NonOss-Pool"}],"online_predecessor_ids":[],"product_class":"OPENSUSE","product_type":"base","cpe":"cpe:/o:opensuse:leap:15.1","recommended":false,"version":"15.1","offline_predecessor_ids":[],"name":"openSUSE Leap","former_identifier":"openSUSE","release_type":null,"migration_extra":false,"friendly_name":"openSUSE Leap 15.1 x86_64","friendly_version":"15.1","extensions":[],"identifier":"openSUSE","release_stage":"released","id":1929},{"free":false,"shortname":"SLES12-SP3 LTSS","description":"SUSE Linux Enterprise offers a comprehensive suite of products built on a single code base. The platform addresses business needs from the smallest thin-client devices to the world's most powerful high-performance computing and mainframe servers. SUSE Linux Enterprise offers common management tools and technology certifications across the platform, and each product is enterprise-class.","eula_url":"","arch":"ppc64le","predecessor_ids":[],"online_predecessor_ids":[],"repositories":[{"id":3915,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-SP3-LTSS/ppc64le/update/","autorefresh":true,"distro_target":"sle-12-ppc64le","name":"SLES12-SP3-LTSS-Updates","installer_updates":false,"description":"SLES12-SP3-LTSS-Updates for sle-12-ppc64le"},{"name":"SLES12-SP3-LTSS-Debuginfo-Updates","installer_updates":false,"description":"SLES12-SP3-LTSS-Debuginfo-Updates for sle-12-ppc64le","id":3916,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-SP3-LTSS/ppc64le/update_debug/","autorefresh":true,"distro_target":"sle-12-ppc64le"}],"product_class":"SLES12-SP3-LTSS-PPC","product_type":"extension","cpe":"cpe:/o:suse:sles-ltss:12:sp3","recommended":false,"version":"12.3","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Server LTSS","former_identifier":"SLES-LTSS","release_type":null,"friendly_name":"SUSE Linux Enterprise Server LTSS 12 SP3 ppc64le","migration_extra":false,"friendly_version":"12 SP3","extensions":[],"id":1930,"release_stage":"released","identifier":"SLES-LTSS"},{"cpe":"cpe:/o:suse:sles-ltss:12:sp3","product_type":"extension","predecessor_ids":[],"product_class":"SLES12-SP3-LTSS-Z","online_predecessor_ids":[],"repositories":[{"id":3917,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-SP3-LTSS/s390x/update/","autorefresh":true,"distro_target":"sle-12-s390x","name":"SLES12-SP3-LTSS-Updates","installer_updates":false,"description":"SLES12-SP3-LTSS-Updates for sle-12-s390x"},{"url":"https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-SP3-LTSS/s390x/update_debug/","autorefresh":true,"distro_target":"sle-12-s390x","id":3918,"enabled":false,"description":"SLES12-SP3-LTSS-Debuginfo-Updates for sle-12-s390x","name":"SLES12-SP3-LTSS-Debuginfo-Updates","installer_updates":false}],"eula_url":"","arch":"s390x","shortname":"SLES12-SP3 LTSS","description":"SUSE Linux Enterprise offers a comprehensive suite of products built on a single code base. The platform addresses business needs from the smallest thin-client devices to the world's most powerful high-performance computing and mainframe servers. SUSE Linux Enterprise offers common management tools and technology certifications across the platform, and each product is enterprise-class.","free":false,"extensions":[],"release_stage":"released","identifier":"SLES-LTSS","id":1931,"friendly_version":"12 SP3","name":"SUSE Linux Enterprise Server LTSS","offline_predecessor_ids":[],"friendly_name":"SUSE Linux Enterprise Server LTSS 12 SP3 s390x","migration_extra":false,"release_type":null,"former_identifier":"SLES-LTSS","recommended":false,"version":"12.3"},{"free":false,"shortname":"SLES12-SP3 LTSS","description":"SUSE Linux Enterprise offers a comprehensive suite of products built on a single code base. The platform addresses business needs from the smallest thin-client devices to the world's most powerful high-performance computing and mainframe servers. SUSE Linux Enterprise offers common management tools and technology certifications across the platform, and each product is enterprise-class.","arch":"x86_64","eula_url":"","repositories":[{"url":"https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-SP3-LTSS/x86_64/update/","autorefresh":true,"distro_target":"sle-12-x86_64","id":3919,"enabled":true,"description":"SLES12-SP3-LTSS-Updates for sle-12-x86_64","name":"SLES12-SP3-LTSS-Updates","installer_updates":false},{"enabled":false,"id":3920,"autorefresh":true,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-SP3-LTSS/x86_64/update_debug/","name":"SLES12-SP3-LTSS-Debuginfo-Updates","installer_updates":false,"description":"SLES12-SP3-LTSS-Debuginfo-Updates for sle-12-x86_64"}],"online_predecessor_ids":[],"product_class":"SLES12-SP3-LTSS-X86","predecessor_ids":[],"product_type":"extension","cpe":"cpe:/o:suse:sles-ltss:12:sp3","version":"12.3","recommended":false,"former_identifier":"SLES-LTSS","release_type":null,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Server LTSS 12 SP3 x86_64","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Server LTSS","friendly_version":"12 SP3","identifier":"SLES-LTSS","release_stage":"released","id":1932,"extensions":[]},{"shortname":"SLE-15-SP2-HPC","description":"

SUSE Linux Enterprise High Performance Computing is a highly scalable, high performance open source operating system designed to utilize the power of parallel computing for modeling, simulation and advanced analytics workloads.

","free":false,"arch":"aarch64","eula_url":"https://updates.suse.com/SUSE/Products/SLE-Product-HPC/15-SP2/aarch64/product.license/","product_class":"HPC-ARM64","online_predecessor_ids":[1731,1767],"repositories":[{"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-HPC/15-SP2/aarch64/update/","autorefresh":true,"distro_target":"sle-15-aarch64","id":3927,"enabled":true,"description":"SLE-Product-HPC-15-SP2-Updates for sle-15-aarch64","name":"SLE-Product-HPC-15-SP2-Updates","installer_updates":false},{"id":3928,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-HPC/15-SP2/aarch64/update_debug/","distro_target":"sle-15-aarch64","autorefresh":true,"installer_updates":false,"name":"SLE-Product-HPC15-SP2-Debuginfo-Updates","description":"SLE-Product-HPC15-SP2-Debuginfo-Updates for sle-15-aarch64"},{"id":3929,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-HPC/15-SP2/aarch64/product/","distro_target":"sle-15-aarch64","autorefresh":false,"installer_updates":false,"name":"SLE-Product-HPC-15-SP2-Pool","description":"SLE-Product-HPC-15-SP2-Pool for sle-15-aarch64"},{"description":"SLE-Product-HPC15-SP2-Debuginfo-Pool for sle-15-aarch64","name":"SLE-Product-HPC15-SP2-Debuginfo-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-HPC/15-SP2/aarch64/product_debug/","autorefresh":false,"distro_target":"sle-15-aarch64","id":3930,"enabled":false},{"description":"SLE-Product-HPC15-SP2-Source-Pool for sle-15-aarch64","name":"SLE-Product-HPC15-SP2-Source-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Products/SLE-Product-HPC/15-SP2/aarch64/product_source/","enabled":false,"id":3931}],"predecessor_ids":[1731,1767],"cpe":"cpe:/o:suse:sle_hpc:15:sp2","product_type":"base","version":"15.2","recommended":false,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise High Performance Computing 15 SP2 aarch64","release_type":null,"former_identifier":"SLE_HPC","name":"SUSE Linux Enterprise High Performance Computing","offline_predecessor_ids":[1628,1758,1872,1875],"friendly_version":"15 SP2","release_stage":"released","id":1933,"identifier":"SLE_HPC","extensions":[{"offline_predecessor_ids":[1522],"name":"Basesystem Module","former_identifier":"sle-module-basesystem","release_type":null,"friendly_name":"Basesystem Module 15 SP2 aarch64","migration_extra":false,"recommended":true,"version":"15.2","extensions":[{"predecessor_ids":[1740,1868],"online_predecessor_ids":[1740,1868],"product_class":"MODULE","repositories":[{"installer_updates":false,"name":"SUSE-PackageHub-15-SP2-Backports-Pool","description":"SUSE-PackageHub-15-SP2-Backports-Pool for sle-15-aarch64","id":4004,"enabled":true,"url":"https://updates.suse.com/SUSE/Backports/SLE-15-SP2_aarch64/standard/","distro_target":"sle-15-aarch64","autorefresh":false},{"description":"SUSE-PackageHub-15-SP2-Backports-Debuginfo for sle-15-aarch64","name":"SUSE-PackageHub-15-SP2-Backports-Debuginfo","installer_updates":false,"url":"https://updates.suse.com/SUSE/Backports/SLE-15-SP2_aarch64/standard_debug/","autorefresh":true,"distro_target":"sle-15-aarch64","id":4005,"enabled":false},{"enabled":true,"id":4006,"distro_target":"sle-15-aarch64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP2/aarch64/update/","installer_updates":false,"name":"SLE-Module-Packagehub-Subpackages15-SP2-Updates","description":"SLE-Module-Packagehub-Subpackages15-SP2-Updates for sle-15-aarch64"},{"autorefresh":true,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP2/aarch64/update_debug/","enabled":false,"id":4007,"description":"SLE-Module-Packagehub-Subpackages15-SP2-Debuginfo-Updates for sle-15-aarch64","name":"SLE-Module-Packagehub-Subpackages15-SP2-Debuginfo-Updates","installer_updates":false},{"name":"SUSE-PackageHub-15-SP2-Pool","installer_updates":false,"description":"SUSE-PackageHub-15-SP2-Pool for sle-15-aarch64","id":4008,"enabled":true,"url":"https://updates.suse.com/SUSE/Backports/SLE-15-SP2_aarch64/product/","autorefresh":false,"distro_target":"sle-15-aarch64"},{"enabled":true,"id":4009,"distro_target":"sle-15-aarch64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP2/aarch64/product/","installer_updates":false,"name":"SLE-Module-Packagehub-Subpackages15-SP2-Pool","description":"SLE-Module-Packagehub-Subpackages15-SP2-Pool for sle-15-aarch64"},{"enabled":false,"id":4010,"autorefresh":false,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP2/aarch64/product_debug/","name":"SLE-Module-Packagehub-Subpackages15-SP2-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-Packagehub-Subpackages15-SP2-Debuginfo-Pool for sle-15-aarch64"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP2/aarch64/product_source/","distro_target":"sle-15-aarch64","autorefresh":false,"id":4011,"enabled":false,"description":"SLE-Module-Packagehub-Subpackages15-SP2-Source-Pool for sle-15-aarch64","installer_updates":false,"name":"SLE-Module-Packagehub-Subpackages15-SP2-Source-Pool"}],"product_type":"extension","cpe":"cpe:/o:suse:packagehub:15:sp2","free":true,"shortname":"SUSE-PackageHub-15","description":"SUSE Package Hub is a free of charge extension providing access to community maintained packages built to run on SUSE Linux Enterprise Server. Built from the same sources used in the openSUSE distributions, these quality packages provide additional software to what is found in the SUSE Linux Enterprise Server product. Packages from the Package Hub are delivered without L3 support from SUSE. General updates and fixes to the packages in SUSE Package Hub are provided by the openSUSE community based on their discretion, though SUSE will monitor and ensure that any known critical security issues will be addressed. Packages in the Package Hub are approved by SUSE for use with SUSE Linux Enterprise Server 15-SP2 and to not interfere with the supportability of SUSE Linux Enterprise Server, its modules and extensions. For more information about SUSE Package Hub please visit https://packagehub.suse.com.","eula_url":"","arch":"aarch64","friendly_version":"15 SP2","extensions":[],"release_stage":"released","id":1947,"identifier":"PackageHub","recommended":false,"version":"15.2","offline_predecessor_ids":[1810,1912],"name":"SUSE Package Hub","release_type":null,"former_identifier":"PackageHub","friendly_name":"SUSE Package Hub 15 SP2 aarch64","migration_extra":false},{"offline_predecessor_ids":[],"name":"Server Applications Module","release_type":null,"former_identifier":"sle-module-server-applications","migration_extra":false,"friendly_name":"Server Applications Module 15 SP2 aarch64","recommended":true,"version":"15.2","extensions":[{"shortname":"SLEHA15-SP2","description":"SUSE Linux High Availability Extension provides mature, industry-leading open-source high-availability clustering technologies that are easy to set up and use. It can be deployed in physical and/or virtual environments, and can cluster physical servers, virtual servers, or any combination of the two to suit your business’ needs.","free":false,"eula_url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP2/aarch64/product.license/","arch":"aarch64","predecessor_ids":[1608,1782],"online_predecessor_ids":[1608,1782],"product_class":"SLE-HAE-ARM64","repositories":[{"description":"SLE-Product-HA15-SP2-Updates for sle-15-aarch64","name":"SLE-Product-HA15-SP2-Updates","installer_updates":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-HA/15-SP2/aarch64/update/","autorefresh":true,"distro_target":"sle-15-aarch64","id":4061,"enabled":true},{"installer_updates":false,"name":"SLE-Product-HA15-SP2-Debuginfo-Updates","description":"SLE-Product-HA15-SP2-Debuginfo-Updates for sle-15-aarch64","enabled":false,"id":4062,"distro_target":"sle-15-aarch64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-HA/15-SP2/aarch64/update_debug/"},{"distro_target":"sle-15-aarch64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP2/aarch64/product/","enabled":true,"id":4063,"description":"SLE-Product-HA15-SP2-Pool for sle-15-aarch64","installer_updates":false,"name":"SLE-Product-HA15-SP2-Pool"},{"installer_updates":false,"name":"SLE-Product-HA15-SP2-Debuginfo-Pool","description":"SLE-Product-HA15-SP2-Debuginfo-Pool for sle-15-aarch64","enabled":false,"id":4064,"distro_target":"sle-15-aarch64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP2/aarch64/product_debug/"},{"description":"SLE-Product-HA15-SP2-Source-Pool for sle-15-aarch64","name":"SLE-Product-HA15-SP2-Source-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP2/aarch64/product_source/","autorefresh":false,"distro_target":"sle-15-aarch64","id":4065,"enabled":false}],"cpe":"cpe:/o:suse:sle-ha:15:sp2","product_type":"extension","recommended":false,"version":"15.2","name":"SUSE Linux Enterprise High Availability Extension","offline_predecessor_ids":[],"friendly_name":"SUSE Linux Enterprise High Availability Extension 15 SP2 aarch64","migration_extra":false,"release_type":null,"former_identifier":"sle-ha","friendly_version":"15 SP2","extensions":[],"id":1956,"release_stage":"released","identifier":"sle-ha"},{"id":1973,"release_stage":"released","identifier":"sle-module-web-scripting","extensions":[{"online_predecessor_ids":[1733,1799],"repositories":[{"autorefresh":true,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-HPC/15-SP2/aarch64/update/","enabled":true,"id":4166,"description":"SLE-Module-HPC15-SP2-Updates for sle-15-aarch64","name":"SLE-Module-HPC15-SP2-Updates","installer_updates":false},{"id":4167,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-HPC/15-SP2/aarch64/update_debug/","distro_target":"sle-15-aarch64","autorefresh":true,"installer_updates":false,"name":"SLE-Module-HPC15-SP2-Debuginfo-Updates","description":"SLE-Module-HPC15-SP2-Debuginfo-Updates for sle-15-aarch64"},{"enabled":true,"id":4168,"autorefresh":false,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-HPC/15-SP2/aarch64/product/","name":"SLE-Module-HPC15-SP2-Pool","installer_updates":false,"description":"SLE-Module-HPC15-SP2-Pool for sle-15-aarch64"},{"description":"SLE-Module-HPC15-SP2-Debuginfo-Pool for sle-15-aarch64","name":"SLE-Module-HPC15-SP2-Debuginfo-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-HPC/15-SP2/aarch64/product_debug/","autorefresh":false,"distro_target":"sle-15-aarch64","id":4169,"enabled":false},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-HPC/15-SP2/aarch64/product_source/","distro_target":"sle-15-aarch64","autorefresh":false,"id":4170,"enabled":false,"description":"SLE-Module-HPC15-SP2-Source-Pool for sle-15-aarch64","installer_updates":false,"name":"SLE-Module-HPC15-SP2-Source-Pool"}],"product_class":"MODULE","predecessor_ids":[1733,1799],"product_type":"module","cpe":"cpe:/o:suse:sle-module-hpc:15:sp2","free":true,"shortname":"HPC-Module","description":"

The SUSE Linux Enterprise Server High Performance Computing (HPC) module delivers specific tools commonly used for high performance, numerically intensive workloads.

SUSE packages these tools in the SLES HPC Module to provide greater flexibility to deliver new versions or new tools more rapidly than the standard SUSE Linux Enterprise lifecycle would permit.

Packages in this module are generally supported until a newer version of the package is released or the package is dropped from the module.

","arch":"aarch64","eula_url":"","friendly_version":"15 SP2","release_stage":"released","id":1977,"identifier":"sle-module-hpc","extensions":[],"version":"15.2","recommended":true,"release_type":null,"former_identifier":"sle-module-hpc","friendly_name":"HPC Module 15 SP2 aarch64","migration_extra":false,"offline_predecessor_ids":[1522],"name":"HPC Module"}],"friendly_version":"15 SP2","migration_extra":false,"friendly_name":"Web and Scripting Module 15 SP2 aarch64","release_type":null,"former_identifier":"sle-module-web-scripting","name":"Web and Scripting Module","offline_predecessor_ids":[1539],"version":"15.2","recommended":true,"cpe":"cpe:/o:suse:sle-module-web-scripting:15:sp2","product_type":"module","product_class":"MODULE","online_predecessor_ids":[1718,1795],"repositories":[{"id":4146,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/15-SP2/aarch64/update/","distro_target":"sle-15-aarch64","autorefresh":true,"installer_updates":false,"name":"SLE-Module-Web-Scripting15-SP2-Updates","description":"SLE-Module-Web-Scripting15-SP2-Updates for sle-15-aarch64"},{"description":"SLE-Module-Web-Scripting15-SP2-Debuginfo-Updates for sle-15-aarch64","name":"SLE-Module-Web-Scripting15-SP2-Debuginfo-Updates","installer_updates":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/15-SP2/aarch64/update_debug/","autorefresh":true,"distro_target":"sle-15-aarch64","id":4147,"enabled":false},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP2/aarch64/product/","distro_target":"sle-15-aarch64","autorefresh":false,"id":4148,"enabled":true,"description":"SLE-Module-Web-Scripting15-SP2-Pool for sle-15-aarch64","installer_updates":false,"name":"SLE-Module-Web-Scripting15-SP2-Pool"},{"autorefresh":false,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP2/aarch64/product_debug/","enabled":false,"id":4149,"description":"SLE-Module-Web-Scripting15-SP2-Debuginfo-Pool for sle-15-aarch64","name":"SLE-Module-Web-Scripting15-SP2-Debuginfo-Pool","installer_updates":false},{"id":4150,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP2/aarch64/product_source/","distro_target":"sle-15-aarch64","autorefresh":false,"installer_updates":false,"name":"SLE-Module-Web-Scripting15-SP2-Source-Pool","description":"SLE-Module-Web-Scripting15-SP2-Source-Pool for sle-15-aarch64"}],"predecessor_ids":[1718,1795],"arch":"aarch64","eula_url":"","shortname":"Web-Scripting-Module","description":"

The SUSE Linux Enterprise Web and Scripting Module should contains additional packages that are helpful when running a webserver.

Access to the Web and Scripting Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself: Package versions in this module are usually supported for at most three years. We are planning to release more recent versions on a schedule of approximately 18 month; the exact dates may differ per package.

","free":true},{"eula_url":"","arch":"aarch64","shortname":"Legacy-Module","description":"

The Legacy Module helps you migrating applications from SUSE Linux Enterprise 12 and other systems to SUSE Linux Enterprise 15, by providing packages which are discontinued on SUSE Linux Enterprise Server, such as: ntp, IBM Java 8, and a number of libraries.

Access to the Legacy Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself. Packages in the this module are usually supported for at most three years.

","free":true,"cpe":"cpe:/o:suse:sle-module-legacy:15:sp2","product_type":"module","predecessor_ids":[1604,1801],"online_predecessor_ids":[1604,1801],"repositories":[{"id":4176,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/15-SP2/aarch64/update/","distro_target":"sle-15-aarch64","autorefresh":true,"installer_updates":false,"name":"SLE-Module-Legacy15-SP2-Updates","description":"SLE-Module-Legacy15-SP2-Updates for sle-15-aarch64"},{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/15-SP2/aarch64/update_debug/","distro_target":"sle-15-aarch64","autorefresh":true,"id":4177,"enabled":false,"description":"SLE-Module-Legacy15-SP2-Debuginfo-Updates for sle-15-aarch64","installer_updates":false,"name":"SLE-Module-Legacy15-SP2-Debuginfo-Updates"},{"description":"SLE-Module-Legacy15-SP2-Pool for sle-15-aarch64","installer_updates":false,"name":"SLE-Module-Legacy15-SP2-Pool","distro_target":"sle-15-aarch64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15-SP2/aarch64/product/","enabled":true,"id":4178},{"id":4179,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15-SP2/aarch64/product_debug/","autorefresh":false,"distro_target":"sle-15-aarch64","name":"SLE-Module-Legacy15-SP2-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-Legacy15-SP2-Debuginfo-Pool for sle-15-aarch64"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15-SP2/aarch64/product_source/","autorefresh":false,"distro_target":"sle-15-aarch64","id":4180,"enabled":false,"description":"SLE-Module-Legacy15-SP2-Source-Pool for sle-15-aarch64","name":"SLE-Module-Legacy15-SP2-Source-Pool","installer_updates":false}],"product_class":"MODULE","name":"Legacy Module","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"Legacy Module 15 SP2 aarch64","release_type":null,"former_identifier":"sle-module-legacy","recommended":false,"version":"15.2","extensions":[],"identifier":"sle-module-legacy","release_stage":"released","id":1979,"friendly_version":"15 SP2"},{"cpe":"cpe:/o:suse:sle-module-public-cloud:15:sp2","product_type":"module","predecessor_ids":[1645,1805],"product_class":"MODULE","online_predecessor_ids":[1645,1805],"repositories":[{"id":4206,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/15-SP2/aarch64/update/","autorefresh":true,"distro_target":"sle-15-aarch64","name":"SLE-Module-Public-Cloud15-SP2-Updates","installer_updates":false,"description":"SLE-Module-Public-Cloud15-SP2-Updates for sle-15-aarch64"},{"description":"SLE-Module-Public-Cloud15-SP2-Debuginfo-Updates for sle-15-aarch64","installer_updates":false,"name":"SLE-Module-Public-Cloud15-SP2-Debuginfo-Updates","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/15-SP2/aarch64/update_debug/","distro_target":"sle-15-aarch64","autorefresh":true,"id":4207,"enabled":false},{"description":"SLE-Module-Public-Cloud15-SP2-Pool for sle-15-aarch64","name":"SLE-Module-Public-Cloud15-SP2-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP2/aarch64/product/","autorefresh":false,"distro_target":"sle-15-aarch64","id":4208,"enabled":true},{"id":4209,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP2/aarch64/product_debug/","distro_target":"sle-15-aarch64","autorefresh":false,"installer_updates":false,"name":"SLE-Module-Public-Cloud15-SP2-Debuginfo-Pool","description":"SLE-Module-Public-Cloud15-SP2-Debuginfo-Pool for sle-15-aarch64"},{"distro_target":"sle-15-aarch64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP2/aarch64/product_source/","enabled":false,"id":4210,"description":"SLE-Module-Public-Cloud15-SP2-Source-Pool for sle-15-aarch64","installer_updates":false,"name":"SLE-Module-Public-Cloud15-SP2-Source-Pool"}],"eula_url":"","arch":"aarch64","description":"

The Public Cloud Module is a collection of tools that enables you to create and manage cloud images from the commandline on SUSE Linux Enterprise Server. When building your own images with KIWI or SUSE Studio, initialization code specific to the target cloud is included in that image.

Access to the Public Cloud Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself; please check the Release Notes for further details.

","shortname":"Public-Cloud-Module","free":true,"extensions":[],"identifier":"sle-module-public-cloud","release_stage":"released","id":1985,"friendly_version":"15 SP2","name":"Public Cloud Module","offline_predecessor_ids":[1528],"migration_extra":false,"friendly_name":"Public Cloud Module 15 SP2 aarch64","former_identifier":"sle-module-public-cloud","release_type":null,"recommended":false,"version":"15.2"}],"release_stage":"released","identifier":"sle-module-server-applications","id":1952,"friendly_version":"15 SP2","eula_url":"","arch":"aarch64","free":true,"description":"

The SUSE Linux Enterprise Server Applications Module delivers a basic set of Server functionality.

Access to the Server Applications Module is included in your SUSE Linux Enterprise Server subscription.

","shortname":"Server-Applications-Module","product_type":"module","cpe":"cpe:/o:suse:sle-module-server-applications:15:sp2","predecessor_ids":[1601,1777],"online_predecessor_ids":[1601,1777],"repositories":[{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15-SP2/aarch64/update/","distro_target":"sle-15-aarch64","autorefresh":true,"id":4041,"enabled":true,"description":"SLE-Module-Server-Applications15-SP2-Updates for sle-15-aarch64","installer_updates":false,"name":"SLE-Module-Server-Applications15-SP2-Updates"},{"enabled":false,"id":4042,"autorefresh":true,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15-SP2/aarch64/update_debug/","name":"SLE-Module-Server-Applications15-SP2-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-Server-Applications15-SP2-Debuginfo-Updates for sle-15-aarch64"},{"description":"SLE-Module-Server-Applications15-SP2-Pool for sle-15-aarch64","name":"SLE-Module-Server-Applications15-SP2-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP2/aarch64/product/","enabled":true,"id":4043},{"id":4044,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP2/aarch64/product_debug/","distro_target":"sle-15-aarch64","autorefresh":false,"installer_updates":false,"name":"SLE-Module-Server-Applications15-SP2-Debuginfo-Pool","description":"SLE-Module-Server-Applications15-SP2-Debuginfo-Pool for sle-15-aarch64"},{"description":"SLE-Module-Server-Applications15-SP2-Source-Pool for sle-15-aarch64","name":"SLE-Module-Server-Applications15-SP2-Source-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP2/aarch64/product_source/","autorefresh":false,"distro_target":"sle-15-aarch64","id":4045,"enabled":false}],"product_class":"MODULE"},{"eula_url":"","arch":"aarch64","shortname":"Containers-Module","description":"

This Module contains several packages revolving around containers and related tools.

","free":true,"cpe":"cpe:/o:suse:sle-module-containers:15:sp2","product_type":"module","predecessor_ids":[1920],"online_predecessor_ids":[1920],"product_class":"MODULE","repositories":[{"description":"SLE-Module-Containers15-SP2-Updates for sle-15-aarch64","installer_updates":false,"name":"SLE-Module-Containers15-SP2-Updates","distro_target":"sle-15-aarch64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/15-SP2/aarch64/update/","enabled":true,"id":4081},{"installer_updates":false,"name":"SLE-Module-Containers15-SP2-Debuginfo-Updates","description":"SLE-Module-Containers15-SP2-Debuginfo-Updates for sle-15-aarch64","enabled":false,"id":4082,"distro_target":"sle-15-aarch64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/15-SP2/aarch64/update_debug/"},{"description":"SLE-Module-Containers15-SP2-Pool for sle-15-aarch64","name":"SLE-Module-Containers15-SP2-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP2/aarch64/product/","enabled":true,"id":4083},{"name":"SLE-Module-Containers15-SP2-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-Containers15-SP2-Debuginfo-Pool for sle-15-aarch64","id":4084,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP2/aarch64/product_debug/","autorefresh":false,"distro_target":"sle-15-aarch64"},{"autorefresh":false,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP2/aarch64/product_source/","enabled":false,"id":4085,"description":"SLE-Module-Containers15-SP2-Source-Pool for sle-15-aarch64","name":"SLE-Module-Containers15-SP2-Source-Pool","installer_updates":false}],"name":"Containers Module","offline_predecessor_ids":[],"friendly_name":"Containers Module 15 SP2 aarch64","migration_extra":false,"release_type":null,"former_identifier":"sle-module-containers","recommended":false,"version":"15.2","extensions":[],"release_stage":"released","id":1960,"identifier":"sle-module-containers","friendly_version":"15 SP2"},{"eula_url":"","arch":"aarch64","free":true,"description":"

The SUSE Linux Enterprise Desktop Applications Module delivers a basic set of Desktop functionality.

Access to the Desktop Applications Module is included in your SUSE Linux Enterprise product subscription.

","shortname":"Desktop-Applications-Module","product_type":"module","cpe":"cpe:/o:suse:sle-module-desktop-applications:15:sp2","predecessor_ids":[1595,1773],"online_predecessor_ids":[1595,1773],"product_class":"MODULE","repositories":[{"description":"SLE-Module-Desktop-Applications15-SP2-Updates for sle-15-aarch64","name":"SLE-Module-Desktop-Applications15-SP2-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15-SP2/aarch64/update/","enabled":true,"id":4101},{"id":4102,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15-SP2/aarch64/update_debug/","distro_target":"sle-15-aarch64","autorefresh":true,"installer_updates":false,"name":"SLE-Module-Desktop-Applications15-SP2-Debuginfo-Updates","description":"SLE-Module-Desktop-Applications15-SP2-Debuginfo-Updates for sle-15-aarch64"},{"description":"SLE-Module-Desktop-Applications15-SP2-Pool for sle-15-aarch64","installer_updates":false,"name":"SLE-Module-Desktop-Applications15-SP2-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP2/aarch64/product/","distro_target":"sle-15-aarch64","autorefresh":false,"id":4103,"enabled":true},{"description":"SLE-Module-Desktop-Applications15-SP2-Debuginfo-Pool for sle-15-aarch64","name":"SLE-Module-Desktop-Applications15-SP2-Debuginfo-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP2/aarch64/product_debug/","autorefresh":false,"distro_target":"sle-15-aarch64","id":4104,"enabled":false},{"description":"SLE-Module-Desktop-Applications15-SP2-Source-Pool for sle-15-aarch64","name":"SLE-Module-Desktop-Applications15-SP2-Source-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP2/aarch64/product_source/","autorefresh":false,"distro_target":"sle-15-aarch64","id":4105,"enabled":false}],"offline_predecessor_ids":[],"name":"Desktop Applications Module","former_identifier":"sle-module-desktop-applications","release_type":null,"friendly_name":"Desktop Applications Module 15 SP2 aarch64","migration_extra":false,"recommended":true,"version":"15.2","extensions":[{"online_predecessor_ids":[1598,1791],"repositories":[{"description":"SLE-Module-DevTools15-SP2-Updates for sle-15-aarch64","installer_updates":false,"name":"SLE-Module-DevTools15-SP2-Updates","distro_target":"sle-15-aarch64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15-SP2/aarch64/update/","enabled":true,"id":4121},{"installer_updates":false,"name":"SLE-Module-DevTools15-SP2-Debuginfo-Updates","description":"SLE-Module-DevTools15-SP2-Debuginfo-Updates for sle-15-aarch64","id":4122,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15-SP2/aarch64/update_debug/","distro_target":"sle-15-aarch64","autorefresh":true},{"enabled":true,"id":4123,"distro_target":"sle-15-aarch64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP2/aarch64/product/","installer_updates":false,"name":"SLE-Module-DevTools15-SP2-Pool","description":"SLE-Module-DevTools15-SP2-Pool for sle-15-aarch64"},{"installer_updates":false,"name":"SLE-Module-DevTools15-SP2-Debuginfo-Pool","description":"SLE-Module-DevTools15-SP2-Debuginfo-Pool for sle-15-aarch64","enabled":false,"id":4124,"distro_target":"sle-15-aarch64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP2/aarch64/product_debug/"},{"description":"SLE-Module-DevTools15-SP2-Source-Pool for sle-15-aarch64","installer_updates":false,"name":"SLE-Module-DevTools15-SP2-Source-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP2/aarch64/product_source/","distro_target":"sle-15-aarch64","autorefresh":false,"id":4125,"enabled":false}],"product_class":"MODULE","predecessor_ids":[1598,1791],"cpe":"cpe:/o:suse:sle-module-development-tools:15:sp2","product_type":"module","description":"

The Development Tools Module helps you developing applications for SUSE Linux Enterprise 15.

Access to the Development Tools Module is included in your SUSE Linux Enterprise product subscription. The module has a different lifecycle than SUSE Linux Enterprise itself.

","shortname":"Development-Tools-Module","free":true,"arch":"aarch64","eula_url":"","friendly_version":"15 SP2","identifier":"sle-module-development-tools","release_stage":"released","id":1968,"extensions":[{"recommended":false,"version":"15","offline_predecessor_ids":[],"name":"NVIDIA Compute Module","former_identifier":"sle-module-NVIDIA-compute","release_type":null,"friendly_name":"NVIDIA Compute Module 15 aarch64","migration_extra":false,"friendly_version":"15","extensions":[],"release_stage":"released","id":2130,"identifier":"sle-module-NVIDIA-compute","free":true,"description":"NVIDIA Compute Drivers - NVIDIA CUDA This Module contains software under the terms and conditions of a 3rd party EULA (End User License Agreement). The EULA can be found at https://docs.nvidia.com/cuda/eula/index.html. By using this software you agree to fully comply with the terms and conditions of the EULA. If you do not agree to the terms and conditions of the EULA, do not use the software.","shortname":"NVIDIA-Compute-Module","eula_url":"https://updates.suse.com/SUSE/Products/SLE-Module-NVIDIA-Compute/15/aarch64/product.license/","arch":"aarch64","predecessor_ids":[],"repositories":[{"id":4560,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-NVIDIA-Compute/15/aarch64/update/","distro_target":"sle-15-aarch64","autorefresh":true,"installer_updates":false,"name":"SLE-Module-NVIDIA-Compute-15-Updates","description":"SLE-Module-NVIDIA-Compute-15-Updates for sle-15-aarch64"},{"id":4561,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-NVIDIA-Compute/15/aarch64/product/","distro_target":"sle-15-aarch64","autorefresh":false,"installer_updates":false,"name":"SLE-Module-NVIDIA-Compute-15-Pool","description":"SLE-Module-NVIDIA-Compute-15-Pool for sle-15-aarch64"},{"name":"NVIDIA-Compute-SLE-15","installer_updates":false,"description":"NVIDIA-Compute-SLE-15","enabled":true,"id":4562,"autorefresh":true,"distro_target":null,"url":"https://developer.download.nvidia.com/compute/cuda/repos/sles15/sbsa/"}],"online_predecessor_ids":[],"product_class":"MODULE","product_type":"module","cpe":"cpe:/o:suse:sle-module-nvidia-compute:15"}],"version":"15.2","recommended":true,"friendly_name":"Development Tools Module 15 SP2 aarch64","migration_extra":false,"release_type":null,"former_identifier":"sle-sdk","name":"Development Tools Module","offline_predecessor_ids":[1376,1633,1889]}],"id":1964,"release_stage":"released","identifier":"sle-module-desktop-applications","friendly_version":"15 SP2"},{"eula_url":"","arch":"aarch64","free":true,"description":"

This module contains the python 2 packages.

Access to the Python 2 Module is included in your SUSE Linux Enterprise subscription. The module has a different lifecycle than SUSE Linux Enterprise itself. Packages in the this module are usually supported for at most three years.

","shortname":"Python2-Module","product_type":"module","cpe":"cpe:/o:suse:sle-module-python2:15:sp2","predecessor_ids":[1864],"online_predecessor_ids":[1864],"repositories":[{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Python2/15-SP2/aarch64/update/","autorefresh":true,"distro_target":"sle-15-aarch64","id":4226,"enabled":true,"description":"SLE-Module-Python2-15-SP2-Updates for sle-15-aarch64","name":"SLE-Module-Python2-15-SP2-Updates","installer_updates":false},{"id":4227,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Python2/15-SP2/aarch64/update_debug/","autorefresh":true,"distro_target":"sle-15-aarch64","name":"SLE-Module-Python2-15-SP2-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-Python2-15-SP2-Debuginfo-Updates for sle-15-aarch64"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Python2/15-SP2/aarch64/product/","distro_target":"sle-15-aarch64","autorefresh":false,"id":4228,"enabled":true,"description":"SLE-Module-Python2-15-SP2-Pool for sle-15-aarch64","installer_updates":false,"name":"SLE-Module-Python2-15-SP2-Pool"},{"description":"SLE-Module-Python2-15-SP2-Debuginfo-Pool for sle-15-aarch64","installer_updates":false,"name":"SLE-Module-Python2-15-SP2-Debuginfo-Pool","distro_target":"sle-15-aarch64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Python2/15-SP2/aarch64/product_debug/","enabled":false,"id":4229},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Python2/15-SP2/aarch64/product_source/","autorefresh":false,"distro_target":"sle-15-aarch64","id":4230,"enabled":false,"description":"SLE-Module-Python2-15-SP2-Source-Pool for sle-15-aarch64","name":"SLE-Module-Python2-15-SP2-Source-Pool","installer_updates":false}],"product_class":"MODULE","offline_predecessor_ids":[],"name":"Python 2 Module","former_identifier":"sle-module-python2","release_type":null,"migration_extra":true,"friendly_name":"Python 2 Module 15 SP2 aarch64","recommended":true,"version":"15.2","extensions":[],"identifier":"sle-module-python2","release_stage":"released","id":1989,"friendly_version":"15 SP2"}],"id":1943,"release_stage":"released","identifier":"sle-module-basesystem","friendly_version":"15 SP2","eula_url":"","arch":"aarch64","free":true,"shortname":"Basesystem-Module","description":"

The SUSE Linux Enterprise Basesystem Module delivers the base system of the product.

","product_type":"module","cpe":"cpe:/o:suse:sle-module-basesystem:15:sp2","predecessor_ids":[1589,1769],"product_class":"MODULE","online_predecessor_ids":[1589,1769],"repositories":[{"enabled":true,"id":3984,"distro_target":"sle-15-aarch64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15-SP2/aarch64/update/","installer_updates":false,"name":"SLE-Module-Basesystem15-SP2-Updates","description":"SLE-Module-Basesystem15-SP2-Updates for sle-15-aarch64"},{"installer_updates":false,"name":"SLE-Module-Basesystem15-SP2-Debuginfo-Updates","description":"SLE-Module-Basesystem15-SP2-Debuginfo-Updates for sle-15-aarch64","enabled":false,"id":3985,"distro_target":"sle-15-aarch64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15-SP2/aarch64/update_debug/"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP2/aarch64/product/","distro_target":"sle-15-aarch64","autorefresh":false,"id":3986,"enabled":true,"description":"SLE-Module-Basesystem15-SP2-Pool for sle-15-aarch64","installer_updates":false,"name":"SLE-Module-Basesystem15-SP2-Pool"},{"id":3987,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP2/aarch64/product_debug/","distro_target":"sle-15-aarch64","autorefresh":false,"installer_updates":false,"name":"SLE-Module-Basesystem15-SP2-Debuginfo-Pool","description":"SLE-Module-Basesystem15-SP2-Debuginfo-Pool for sle-15-aarch64"},{"description":"SLE-Module-Basesystem15-SP2-Source-Pool for sle-15-aarch64","name":"SLE-Module-Basesystem15-SP2-Source-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP2/aarch64/product_source/","autorefresh":false,"distro_target":"sle-15-aarch64","id":3988,"enabled":false}]},{"online_predecessor_ids":[],"repositories":[{"distro_target":"sle-15-aarch64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-HPC/15-SP2-LTSS/aarch64/update/","enabled":true,"id":4524,"description":"SLE-Product-HPC-15-SP2-LTSS-Updates for sle-15-aarch64","installer_updates":false,"name":"SLE-Product-HPC-15-SP2-LTSS-Updates"},{"id":4525,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-HPC/15-SP2-LTSS/aarch64/update_debug/","autorefresh":true,"distro_target":"sle-15-aarch64","name":"SLE-Product-HPC-15-SP2-LTSS-Debuginfo-Updates","installer_updates":false,"description":"SLE-Product-HPC-15-SP2-LTSS-Debuginfo-Updates for sle-15-aarch64"},{"autorefresh":false,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Products/SLE-Product-HPC/15-SP2-LTSS/aarch64/product/","enabled":true,"id":4526,"description":"SLE-Product-HPC-15-SP2-LTSS-Pool for sle-15-aarch64","name":"SLE-Product-HPC-15-SP2-LTSS-Pool","installer_updates":false},{"installer_updates":false,"name":"SLE-Product-HPC-15-SP2-LTSS-Debuginfo-Pool","description":"SLE-Product-HPC-15-SP2-LTSS-Debuginfo-Pool for sle-15-aarch64","id":4527,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-HPC/15-SP2-LTSS/aarch64/product_debug/","distro_target":"sle-15-aarch64","autorefresh":false},{"description":"SLE-Product-HPC-15-SP2-LTSS-Source-Pool for sle-15-aarch64","installer_updates":false,"name":"SLE-Product-HPC-15-SP2-LTSS-Source-Pool","distro_target":"sle-15-aarch64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-HPC/15-SP2-LTSS/aarch64/product_source/","enabled":false,"id":4528}],"product_class":"HPC15-SP2-LTSS-ARM64","predecessor_ids":[],"cpe":"cpe:/o:suse:sle_hpc-ltss:15:sp2","product_type":"extension","shortname":"SLE_HPC-15-SP2-LTSS","description":"

SUSE Linux Enterprise High Performance Computing is a highly scalable, high performance open source operating system designed to utilize the power of parallel computing for modeling, simulation and advanced analytics workloads.

","free":false,"arch":"aarch64","eula_url":"","friendly_version":"15 SP2","release_stage":"released","id":2124,"identifier":"SLE_HPC-LTSS","extensions":[],"version":"15.2","recommended":false,"friendly_name":"SUSE Linux Enterprise High Performance Computing LTSS 15 SP2 aarch64","migration_extra":false,"release_type":null,"former_identifier":"SLE_HPC-LTSS","name":"SUSE Linux Enterprise High Performance Computing LTSS","offline_predecessor_ids":[]},{"product_type":"extension","cpe":"cpe:/o:suse:sle_hpc-espos:15:sp2","online_predecessor_ids":[],"product_class":"SLE-ESPOS-ARM64","repositories":[{"name":"SLE-Product-HPC-15-SP2-ESPOS-Updates","installer_updates":false,"description":"SLE-Product-HPC-15-SP2-ESPOS-Updates for sle-15-aarch64","id":4544,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-HPC/15-SP2-ESPOS/aarch64/update/","autorefresh":true,"distro_target":"sle-15-aarch64"},{"description":"SLE-Product-HPC-15-SP2-ESPOS-Debuginfo-Updates for sle-15-aarch64","name":"SLE-Product-HPC-15-SP2-ESPOS-Debuginfo-Updates","installer_updates":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-HPC/15-SP2-ESPOS/aarch64/update_debug/","autorefresh":true,"distro_target":"sle-15-aarch64","id":4545,"enabled":false},{"autorefresh":false,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Products/SLE-Product-HPC/15-SP2-ESPOS/aarch64/product/","enabled":true,"id":4546,"description":"SLE-Product-HPC-15-SP2-ESPOS-Pool for sle-15-aarch64","name":"SLE-Product-HPC-15-SP2-ESPOS-Pool","installer_updates":false},{"installer_updates":false,"name":"SLE-Product-HPC-15-SP2-ESPOS-Debuginfo-Pool","description":"SLE-Product-HPC-15-SP2-ESPOS-Debuginfo-Pool for sle-15-aarch64","id":4547,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-HPC/15-SP2-ESPOS/aarch64/product_debug/","distro_target":"sle-15-aarch64","autorefresh":false},{"enabled":false,"id":4548,"autorefresh":false,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Products/SLE-Product-HPC/15-SP2-ESPOS/aarch64/product_source/","name":"SLE-Product-HPC-15-SP2-ESPOS-Source-Pool","installer_updates":false,"description":"SLE-Product-HPC-15-SP2-ESPOS-Source-Pool for sle-15-aarch64"}],"predecessor_ids":[],"arch":"aarch64","eula_url":"","free":false,"shortname":"SLE_HPC-15-SP2-ESPOS","description":"

SUSE Linux Enterprise High Performance Computing is a highly scalable, high performance open source operating system designed to utilize the power of parallel computing for modeling, simulation and advanced analytics workloads.

","identifier":"SLE_HPC-ESPOS","release_stage":"released","id":2128,"extensions":[],"friendly_version":"15 SP2","former_identifier":"SLE_HPC-ESPOS","release_type":null,"friendly_name":"SUSE Linux Enterprise High Performance Computing ESPOS 15 SP2 aarch64","migration_extra":false,"offline_predecessor_ids":[],"name":"SUSE Linux Enterprise High Performance Computing ESPOS","version":"15.2","recommended":false}]},{"shortname":"SLE-15-SP2-HPC","description":"

SUSE Linux Enterprise High Performance Computing is a highly scalable, high performance open source operating system designed to utilize the power of parallel computing for modeling, simulation and advanced analytics workloads.

","free":false,"arch":"x86_64","eula_url":"https://updates.suse.com/SUSE/Products/SLE-Product-HPC/15-SP2/x86_64/product.license/","online_predecessor_ids":[1732,1768],"repositories":[{"description":"SLE-Product-HPC-15-SP2-Updates for sle-15-x86_64","installer_updates":false,"name":"SLE-Product-HPC-15-SP2-Updates","distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-HPC/15-SP2/x86_64/update/","enabled":true,"id":3932},{"description":"SLE-Product-HPC15-SP2-Debuginfo-Updates for sle-15-x86_64","installer_updates":false,"name":"SLE-Product-HPC15-SP2-Debuginfo-Updates","url":"https://updates.suse.com/SUSE/Updates/SLE-Product-HPC/15-SP2/x86_64/update_debug/","distro_target":"sle-15-x86_64","autorefresh":true,"id":3933,"enabled":false},{"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-HPC/15-SP2/x86_64/product/","enabled":true,"id":3934,"description":"SLE-Product-HPC-15-SP2-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Product-HPC-15-SP2-Pool"},{"name":"SLE-Product-HPC15-SP2-Debuginfo-Pool","installer_updates":false,"description":"SLE-Product-HPC15-SP2-Debuginfo-Pool for sle-15-x86_64","id":3935,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-HPC/15-SP2/x86_64/product_debug/","autorefresh":false,"distro_target":"sle-15-x86_64"},{"id":3936,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-HPC/15-SP2/x86_64/product_source/","autorefresh":false,"distro_target":"sle-15-x86_64","name":"SLE-Product-HPC15-SP2-Source-Pool","installer_updates":false,"description":"SLE-Product-HPC15-SP2-Source-Pool for sle-15-x86_64"}],"product_class":"HPC-X86","predecessor_ids":[1732,1768],"cpe":"cpe:/o:suse:sle_hpc:15:sp2","product_type":"base","version":"15.2","recommended":false,"friendly_name":"SUSE Linux Enterprise High Performance Computing 15 SP2 x86_64","migration_extra":false,"former_identifier":"SLE_HPC","release_type":null,"name":"SUSE Linux Enterprise High Performance Computing","offline_predecessor_ids":[1625,1759,1873,1878],"friendly_version":"15 SP2","release_stage":"released","id":1934,"identifier":"SLE_HPC","extensions":[{"friendly_version":"15 SP2","extensions":[{"id":1950,"release_stage":"released","identifier":"PackageHub","extensions":[],"friendly_version":"15 SP2","migration_extra":false,"friendly_name":"SUSE Package Hub 15 SP2 x86_64","former_identifier":"PackageHub","release_type":null,"name":"SUSE Package Hub","offline_predecessor_ids":[1813,1915],"version":"15.2","recommended":false,"cpe":"cpe:/o:suse:packagehub:15:sp2","product_type":"extension","online_predecessor_ids":[1743,1871],"product_class":"MODULE","repositories":[{"installer_updates":false,"name":"SUSE-PackageHub-15-SP2-Backports-Pool","description":"SUSE-PackageHub-15-SP2-Backports-Pool for sle-15-x86_64","id":4028,"enabled":true,"url":"https://updates.suse.com/SUSE/Backports/SLE-15-SP2_x86_64/standard/","distro_target":"sle-15-x86_64","autorefresh":false},{"description":"SUSE-PackageHub-15-SP2-Backports-Debuginfo for sle-15-x86_64","installer_updates":false,"name":"SUSE-PackageHub-15-SP2-Backports-Debuginfo","url":"https://updates.suse.com/SUSE/Backports/SLE-15-SP2_x86_64/standard_debug/","distro_target":"sle-15-x86_64","autorefresh":true,"id":4029,"enabled":false},{"description":"SLE-Module-Packagehub-Subpackages15-SP2-Updates for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Packagehub-Subpackages15-SP2-Updates","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP2/x86_64/update/","distro_target":"sle-15-x86_64","autorefresh":true,"id":4030,"enabled":true},{"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP2/x86_64/update_debug/","enabled":false,"id":4031,"description":"SLE-Module-Packagehub-Subpackages15-SP2-Debuginfo-Updates for sle-15-x86_64","name":"SLE-Module-Packagehub-Subpackages15-SP2-Debuginfo-Updates","installer_updates":false},{"id":4032,"enabled":true,"url":"https://updates.suse.com/SUSE/Backports/SLE-15-SP2_x86_64/product/","distro_target":"sle-15-x86_64","autorefresh":false,"installer_updates":false,"name":"SUSE-PackageHub-15-SP2-Pool","description":"SUSE-PackageHub-15-SP2-Pool for sle-15-x86_64"},{"description":"SLE-Module-Packagehub-Subpackages15-SP2-Pool for sle-15-x86_64","name":"SLE-Module-Packagehub-Subpackages15-SP2-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP2/x86_64/product/","enabled":true,"id":4033},{"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP2/x86_64/product_debug/","enabled":false,"id":4034,"description":"SLE-Module-Packagehub-Subpackages15-SP2-Debuginfo-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Packagehub-Subpackages15-SP2-Debuginfo-Pool"},{"description":"SLE-Module-Packagehub-Subpackages15-SP2-Source-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Packagehub-Subpackages15-SP2-Source-Pool","distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP2/x86_64/product_source/","enabled":false,"id":4035}],"predecessor_ids":[1743,1871],"arch":"x86_64","eula_url":"","shortname":"SUSE-PackageHub-15","description":"SUSE Package Hub is a free of charge extension providing access to community maintained packages built to run on SUSE Linux Enterprise Server. Built from the same sources used in the openSUSE distributions, these quality packages provide additional software to what is found in the SUSE Linux Enterprise Server product. Packages from the Package Hub are delivered without L3 support from SUSE. General updates and fixes to the packages in SUSE Package Hub are provided by the openSUSE community based on their discretion, though SUSE will monitor and ensure that any known critical security issues will be addressed. Packages in the Package Hub are approved by SUSE for use with SUSE Linux Enterprise Server 15-SP2 and to not interfere with the supportability of SUSE Linux Enterprise Server, its modules and extensions. For more information about SUSE Package Hub please visit https://packagehub.suse.com.","free":true},{"online_predecessor_ids":[1580,1780],"product_class":"MODULE","repositories":[{"description":"SLE-Module-Server-Applications15-SP2-Updates for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Server-Applications15-SP2-Updates","distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15-SP2/x86_64/update/","enabled":true,"id":4056},{"distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15-SP2/x86_64/update_debug/","enabled":false,"id":4057,"description":"SLE-Module-Server-Applications15-SP2-Debuginfo-Updates for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Server-Applications15-SP2-Debuginfo-Updates"},{"description":"SLE-Module-Server-Applications15-SP2-Pool for sle-15-x86_64","name":"SLE-Module-Server-Applications15-SP2-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP2/x86_64/product/","autorefresh":false,"distro_target":"sle-15-x86_64","id":4058,"enabled":true},{"description":"SLE-Module-Server-Applications15-SP2-Debuginfo-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Server-Applications15-SP2-Debuginfo-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP2/x86_64/product_debug/","distro_target":"sle-15-x86_64","autorefresh":false,"id":4059,"enabled":false},{"description":"SLE-Module-Server-Applications15-SP2-Source-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Server-Applications15-SP2-Source-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP2/x86_64/product_source/","distro_target":"sle-15-x86_64","autorefresh":false,"id":4060,"enabled":false}],"predecessor_ids":[1580,1780],"cpe":"cpe:/o:suse:sle-module-server-applications:15:sp2","product_type":"module","shortname":"Server-Applications-Module","description":"

The SUSE Linux Enterprise Server Applications Module delivers a basic set of Server functionality.

Access to the Server Applications Module is included in your SUSE Linux Enterprise Server subscription.

","free":true,"arch":"x86_64","eula_url":"","friendly_version":"15 SP2","release_stage":"released","identifier":"sle-module-server-applications","id":1955,"extensions":[{"friendly_version":"15 SP2","extensions":[],"identifier":"sle-ha","release_stage":"released","id":1959,"recommended":false,"version":"15.2","name":"SUSE Linux Enterprise High Availability Extension","offline_predecessor_ids":[958,961,967,971,1101,1107,1256,1286,1634,1637,1884,1886],"migration_extra":false,"friendly_name":"SUSE Linux Enterprise High Availability Extension 15 SP2 x86_64","release_type":null,"former_identifier":"sle-ha","predecessor_ids":[1582,1785],"repositories":[{"description":"SLE-Product-HA15-SP2-Updates for sle-15-x86_64","installer_updates":false,"name":"SLE-Product-HA15-SP2-Updates","distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-HA/15-SP2/x86_64/update/","enabled":true,"id":4076},{"id":4077,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-HA/15-SP2/x86_64/update_debug/","autorefresh":true,"distro_target":"sle-15-x86_64","name":"SLE-Product-HA15-SP2-Debuginfo-Updates","installer_updates":false,"description":"SLE-Product-HA15-SP2-Debuginfo-Updates for sle-15-x86_64"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP2/x86_64/product/","autorefresh":false,"distro_target":"sle-15-x86_64","id":4078,"enabled":true,"description":"SLE-Product-HA15-SP2-Pool for sle-15-x86_64","name":"SLE-Product-HA15-SP2-Pool","installer_updates":false},{"id":4079,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP2/x86_64/product_debug/","autorefresh":false,"distro_target":"sle-15-x86_64","name":"SLE-Product-HA15-SP2-Debuginfo-Pool","installer_updates":false,"description":"SLE-Product-HA15-SP2-Debuginfo-Pool for sle-15-x86_64"},{"description":"SLE-Product-HA15-SP2-Source-Pool for sle-15-x86_64","name":"SLE-Product-HA15-SP2-Source-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP2/x86_64/product_source/","autorefresh":false,"distro_target":"sle-15-x86_64","id":4080,"enabled":false}],"online_predecessor_ids":[1582,1785],"product_class":"SLE-HAE-X86","cpe":"cpe:/o:suse:sle-ha:15:sp2","product_type":"extension","shortname":"SLEHA15-SP2","description":"SUSE Linux High Availability Extension provides mature, industry-leading open-source high-availability clustering technologies that are easy to set up and use. It can be deployed in physical and/or virtual environments, and can cluster physical servers, virtual servers, or any combination of the two to suit your business’ needs.","free":false,"eula_url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP2/x86_64/product.license/","arch":"x86_64"},{"shortname":"Web-Scripting-Module","description":"

The SUSE Linux Enterprise Web and Scripting Module should contains additional packages that are helpful when running a webserver.

Access to the Web and Scripting Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself: Package versions in this module are usually supported for at most three years. We are planning to release more recent versions on a schedule of approximately 18 month; the exact dates may differ per package.

","free":true,"eula_url":"","arch":"x86_64","predecessor_ids":[1721,1798],"product_class":"MODULE","online_predecessor_ids":[1721,1798],"repositories":[{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/15-SP2/x86_64/update/","autorefresh":true,"distro_target":"sle-15-x86_64","id":4161,"enabled":true,"description":"SLE-Module-Web-Scripting15-SP2-Updates for sle-15-x86_64","name":"SLE-Module-Web-Scripting15-SP2-Updates","installer_updates":false},{"installer_updates":false,"name":"SLE-Module-Web-Scripting15-SP2-Debuginfo-Updates","description":"SLE-Module-Web-Scripting15-SP2-Debuginfo-Updates for sle-15-x86_64","enabled":false,"id":4162,"distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/15-SP2/x86_64/update_debug/"},{"name":"SLE-Module-Web-Scripting15-SP2-Pool","installer_updates":false,"description":"SLE-Module-Web-Scripting15-SP2-Pool for sle-15-x86_64","enabled":true,"id":4163,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP2/x86_64/product/"},{"description":"SLE-Module-Web-Scripting15-SP2-Debuginfo-Pool for sle-15-x86_64","name":"SLE-Module-Web-Scripting15-SP2-Debuginfo-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP2/x86_64/product_debug/","autorefresh":false,"distro_target":"sle-15-x86_64","id":4164,"enabled":false},{"enabled":false,"id":4165,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP2/x86_64/product_source/","name":"SLE-Module-Web-Scripting15-SP2-Source-Pool","installer_updates":false,"description":"SLE-Module-Web-Scripting15-SP2-Source-Pool for sle-15-x86_64"}],"cpe":"cpe:/o:suse:sle-module-web-scripting:15:sp2","product_type":"module","recommended":true,"version":"15.2","name":"Web and Scripting Module","offline_predecessor_ids":[1153],"migration_extra":false,"friendly_name":"Web and Scripting Module 15 SP2 x86_64","former_identifier":"sle-module-web-scripting","release_type":null,"friendly_version":"15 SP2","extensions":[{"description":"

The SUSE Linux Enterprise Server High Performance Computing (HPC) module delivers specific tools commonly used for high performance, numerically intensive workloads.

SUSE packages these tools in the SLES HPC Module to provide greater flexibility to deliver new versions or new tools more rapidly than the standard SUSE Linux Enterprise lifecycle would permit.

Packages in this module are generally supported until a newer version of the package is released or the package is dropped from the module.

","shortname":"HPC-Module","free":true,"eula_url":"","arch":"x86_64","predecessor_ids":[1734,1800],"product_class":"MODULE","online_predecessor_ids":[1734,1800],"repositories":[{"id":4171,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-HPC/15-SP2/x86_64/update/","autorefresh":true,"distro_target":"sle-15-x86_64","name":"SLE-Module-HPC15-SP2-Updates","installer_updates":false,"description":"SLE-Module-HPC15-SP2-Updates for sle-15-x86_64"},{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-HPC/15-SP2/x86_64/update_debug/","autorefresh":true,"distro_target":"sle-15-x86_64","id":4172,"enabled":false,"description":"SLE-Module-HPC15-SP2-Debuginfo-Updates for sle-15-x86_64","name":"SLE-Module-HPC15-SP2-Debuginfo-Updates","installer_updates":false},{"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-HPC/15-SP2/x86_64/product/","enabled":true,"id":4173,"description":"SLE-Module-HPC15-SP2-Pool for sle-15-x86_64","name":"SLE-Module-HPC15-SP2-Pool","installer_updates":false},{"name":"SLE-Module-HPC15-SP2-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-HPC15-SP2-Debuginfo-Pool for sle-15-x86_64","id":4174,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-HPC/15-SP2/x86_64/product_debug/","autorefresh":false,"distro_target":"sle-15-x86_64"},{"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-HPC/15-SP2/x86_64/product_source/","enabled":false,"id":4175,"description":"SLE-Module-HPC15-SP2-Source-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-HPC15-SP2-Source-Pool"}],"cpe":"cpe:/o:suse:sle-module-hpc:15:sp2","product_type":"module","recommended":true,"version":"15.2","name":"HPC Module","offline_predecessor_ids":[1440],"friendly_name":"HPC Module 15 SP2 x86_64","migration_extra":false,"release_type":null,"former_identifier":"sle-module-hpc","friendly_version":"15 SP2","extensions":[],"id":1978,"release_stage":"released","identifier":"sle-module-hpc"}],"identifier":"sle-module-web-scripting","release_stage":"released","id":1976},{"shortname":"Legacy-Module","description":"

The Legacy Module helps you migrating applications from SUSE Linux Enterprise 12 and other systems to SUSE Linux Enterprise 15, by providing packages which are discontinued on SUSE Linux Enterprise Server, such as: ntp, IBM Java 8, and a number of libraries.

Access to the Legacy Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself. Packages in the this module are usually supported for at most three years.

","free":true,"arch":"x86_64","eula_url":"","online_predecessor_ids":[1581,1804],"repositories":[{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/15-SP2/x86_64/update/","distro_target":"sle-15-x86_64","autorefresh":true,"id":4191,"enabled":true,"description":"SLE-Module-Legacy15-SP2-Updates for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Legacy15-SP2-Updates"},{"description":"SLE-Module-Legacy15-SP2-Debuginfo-Updates for sle-15-x86_64","name":"SLE-Module-Legacy15-SP2-Debuginfo-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/15-SP2/x86_64/update_debug/","enabled":false,"id":4192},{"description":"SLE-Module-Legacy15-SP2-Pool for sle-15-x86_64","name":"SLE-Module-Legacy15-SP2-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15-SP2/x86_64/product/","enabled":true,"id":4193},{"id":4194,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15-SP2/x86_64/product_debug/","autorefresh":false,"distro_target":"sle-15-x86_64","name":"SLE-Module-Legacy15-SP2-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-Legacy15-SP2-Debuginfo-Pool for sle-15-x86_64"},{"description":"SLE-Module-Legacy15-SP2-Source-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Legacy15-SP2-Source-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15-SP2/x86_64/product_source/","distro_target":"sle-15-x86_64","autorefresh":false,"id":4195,"enabled":false}],"product_class":"MODULE","predecessor_ids":[1581,1804],"cpe":"cpe:/o:suse:sle-module-legacy:15:sp2","product_type":"module","version":"15.2","recommended":false,"migration_extra":false,"friendly_name":"Legacy Module 15 SP2 x86_64","release_type":null,"former_identifier":"sle-module-legacy","name":"Legacy Module","offline_predecessor_ids":[1150],"friendly_version":"15 SP2","release_stage":"released","identifier":"sle-module-legacy","id":1982,"extensions":[]},{"release_stage":"released","id":1988,"identifier":"sle-module-public-cloud","extensions":[],"friendly_version":"15 SP2","migration_extra":false,"friendly_name":"Public Cloud Module 15 SP2 x86_64","former_identifier":"sle-module-public-cloud","release_type":null,"name":"Public Cloud Module","offline_predecessor_ids":[1220],"version":"15.2","recommended":false,"cpe":"cpe:/o:suse:sle-module-public-cloud:15:sp2","product_type":"module","online_predecessor_ids":[1611,1808],"product_class":"MODULE","repositories":[{"description":"SLE-Module-Public-Cloud15-SP2-Updates for sle-15-x86_64","name":"SLE-Module-Public-Cloud15-SP2-Updates","installer_updates":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/15-SP2/x86_64/update/","autorefresh":true,"distro_target":"sle-15-x86_64","id":4221,"enabled":true},{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/15-SP2/x86_64/update_debug/","distro_target":"sle-15-x86_64","autorefresh":true,"id":4222,"enabled":false,"description":"SLE-Module-Public-Cloud15-SP2-Debuginfo-Updates for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Public-Cloud15-SP2-Debuginfo-Updates"},{"name":"SLE-Module-Public-Cloud15-SP2-Pool","installer_updates":false,"description":"SLE-Module-Public-Cloud15-SP2-Pool for sle-15-x86_64","enabled":true,"id":4223,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP2/x86_64/product/"},{"description":"SLE-Module-Public-Cloud15-SP2-Debuginfo-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Public-Cloud15-SP2-Debuginfo-Pool","distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP2/x86_64/product_debug/","enabled":false,"id":4224},{"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP2/x86_64/product_source/","enabled":false,"id":4225,"description":"SLE-Module-Public-Cloud15-SP2-Source-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Public-Cloud15-SP2-Source-Pool"}],"predecessor_ids":[1611,1808],"arch":"x86_64","eula_url":"","shortname":"Public-Cloud-Module","description":"

The Public Cloud Module is a collection of tools that enables you to create and manage cloud images from the commandline on SUSE Linux Enterprise Server. When building your own images with KIWI or SUSE Studio, initialization code specific to the target cloud is included in that image.

Access to the Public Cloud Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself; please check the Release Notes for further details.

","free":true}],"version":"15.2","recommended":true,"migration_extra":false,"friendly_name":"Server Applications Module 15 SP2 x86_64","former_identifier":"sle-module-server-applications","release_type":null,"name":"Server Applications Module","offline_predecessor_ids":[]},{"eula_url":"","arch":"x86_64","description":"

This Module contains several packages revolving around containers and related tools.

","shortname":"Containers-Module","free":true,"cpe":"cpe:/o:suse:sle-module-containers:15:sp2","product_type":"module","predecessor_ids":[1642,1790],"online_predecessor_ids":[1642,1790],"repositories":[{"id":4096,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/15-SP2/x86_64/update/","autorefresh":true,"distro_target":"sle-15-x86_64","name":"SLE-Module-Containers15-SP2-Updates","installer_updates":false,"description":"SLE-Module-Containers15-SP2-Updates for sle-15-x86_64"},{"id":4097,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/15-SP2/x86_64/update_debug/","distro_target":"sle-15-x86_64","autorefresh":true,"installer_updates":false,"name":"SLE-Module-Containers15-SP2-Debuginfo-Updates","description":"SLE-Module-Containers15-SP2-Debuginfo-Updates for sle-15-x86_64"},{"name":"SLE-Module-Containers15-SP2-Pool","installer_updates":false,"description":"SLE-Module-Containers15-SP2-Pool for sle-15-x86_64","enabled":true,"id":4098,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP2/x86_64/product/"},{"description":"SLE-Module-Containers15-SP2-Debuginfo-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Containers15-SP2-Debuginfo-Pool","distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP2/x86_64/product_debug/","enabled":false,"id":4099},{"enabled":false,"id":4100,"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP2/x86_64/product_source/","installer_updates":false,"name":"SLE-Module-Containers15-SP2-Source-Pool","description":"SLE-Module-Containers15-SP2-Source-Pool for sle-15-x86_64"}],"product_class":"MODULE","name":"Containers Module","offline_predecessor_ids":[1332],"migration_extra":false,"friendly_name":"Containers Module 15 SP2 x86_64","former_identifier":"sle-module-containers","release_type":null,"recommended":false,"version":"15.2","extensions":[],"identifier":"sle-module-containers","release_stage":"released","id":1963,"friendly_version":"15 SP2"},{"recommended":true,"version":"15.2","name":"Desktop Applications Module","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"Desktop Applications Module 15 SP2 x86_64","former_identifier":"sle-module-desktop-applications","release_type":null,"friendly_version":"15 SP2","extensions":[{"predecessor_ids":[1579,1794],"repositories":[{"description":"SLE-Module-DevTools15-SP2-Updates for sle-15-x86_64","name":"SLE-Module-DevTools15-SP2-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15-SP2/x86_64/update/","enabled":true,"id":4136},{"enabled":false,"id":4137,"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15-SP2/x86_64/update_debug/","name":"SLE-Module-DevTools15-SP2-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-DevTools15-SP2-Debuginfo-Updates for sle-15-x86_64"},{"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP2/x86_64/product/","enabled":true,"id":4138,"description":"SLE-Module-DevTools15-SP2-Pool for sle-15-x86_64","name":"SLE-Module-DevTools15-SP2-Pool","installer_updates":false},{"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP2/x86_64/product_debug/","enabled":false,"id":4139,"description":"SLE-Module-DevTools15-SP2-Debuginfo-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-DevTools15-SP2-Debuginfo-Pool"},{"installer_updates":false,"name":"SLE-Module-DevTools15-SP2-Source-Pool","description":"SLE-Module-DevTools15-SP2-Source-Pool for sle-15-x86_64","enabled":false,"id":4140,"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP2/x86_64/product_source/"}],"online_predecessor_ids":[1579,1794],"product_class":"MODULE","cpe":"cpe:/o:suse:sle-module-development-tools:15:sp2","product_type":"module","description":"

The Development Tools Module helps you developing applications for SUSE Linux Enterprise 15.

Access to the Development Tools Module is included in your SUSE Linux Enterprise product subscription. The module has a different lifecycle than SUSE Linux Enterprise itself.

","shortname":"Development-Tools-Module","free":true,"eula_url":"","arch":"x86_64","friendly_version":"15 SP2","extensions":[{"description":"NVIDIA Compute Drivers - NVIDIA CUDA This Module contains software under the terms and conditions of a 3rd party EULA (End User License Agreement). The EULA can be found at https://docs.nvidia.com/cuda/eula/index.html. By using this software you agree to fully comply with the terms and conditions of the EULA. If you do not agree to the terms and conditions of the EULA, do not use the software.","shortname":"NVIDIA-Compute-Module","free":true,"arch":"x86_64","eula_url":"https://updates.suse.com/SUSE/Products/SLE-Module-NVIDIA-Compute/15/x86_64/product.license/","online_predecessor_ids":[],"product_class":"MODULE","repositories":[{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-NVIDIA-Compute/15/x86_64/update/","autorefresh":true,"distro_target":"sle-15-x86_64","id":4554,"enabled":true,"description":"SLE-Module-NVIDIA-Compute-15-Updates for sle-15-x86_64","name":"SLE-Module-NVIDIA-Compute-15-Updates","installer_updates":false},{"description":"SLE-Module-NVIDIA-Compute-15-Pool for sle-15-x86_64","name":"SLE-Module-NVIDIA-Compute-15-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-NVIDIA-Compute/15/x86_64/product/","autorefresh":false,"distro_target":"sle-15-x86_64","id":4556,"enabled":true},{"enabled":true,"id":4563,"distro_target":null,"autorefresh":true,"url":"https://developer.download.nvidia.com/compute/cuda/repos/sles15/x86_64/","installer_updates":false,"name":"NVIDIA-Compute-SLE-15","description":"NVIDIA-Compute-SLE-15"}],"predecessor_ids":[],"cpe":"cpe:/o:suse:sle-module-nvidia-compute:15","product_type":"module","version":"15","recommended":false,"friendly_name":"NVIDIA Compute Module 15 x86_64","migration_extra":false,"release_type":null,"former_identifier":"sle-module-NVIDIA-compute","name":"NVIDIA Compute Module","offline_predecessor_ids":[],"friendly_version":"15","identifier":"sle-module-NVIDIA-compute","release_stage":"released","id":2131,"extensions":[]}],"release_stage":"released","id":1971,"identifier":"sle-module-development-tools","recommended":true,"version":"15.2","name":"Development Tools Module","offline_predecessor_ids":[1341,1630,1892],"friendly_name":"Development Tools Module 15 SP2 x86_64","migration_extra":false,"former_identifier":"sle-sdk","release_type":null}],"id":1967,"release_stage":"released","identifier":"sle-module-desktop-applications","shortname":"Desktop-Applications-Module","description":"

The SUSE Linux Enterprise Desktop Applications Module delivers a basic set of Desktop functionality.

Access to the Desktop Applications Module is included in your SUSE Linux Enterprise product subscription.

","free":true,"eula_url":"","arch":"x86_64","predecessor_ids":[1578,1776],"product_class":"MODULE","online_predecessor_ids":[1578,1776],"repositories":[{"distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15-SP2/x86_64/update/","enabled":true,"id":4116,"description":"SLE-Module-Desktop-Applications15-SP2-Updates for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Desktop-Applications15-SP2-Updates"},{"description":"SLE-Module-Desktop-Applications15-SP2-Debuginfo-Updates for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Desktop-Applications15-SP2-Debuginfo-Updates","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15-SP2/x86_64/update_debug/","distro_target":"sle-15-x86_64","autorefresh":true,"id":4117,"enabled":false},{"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP2/x86_64/product/","enabled":true,"id":4118,"description":"SLE-Module-Desktop-Applications15-SP2-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Desktop-Applications15-SP2-Pool"},{"id":4119,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP2/x86_64/product_debug/","autorefresh":false,"distro_target":"sle-15-x86_64","name":"SLE-Module-Desktop-Applications15-SP2-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-Desktop-Applications15-SP2-Debuginfo-Pool for sle-15-x86_64"},{"enabled":false,"id":4120,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP2/x86_64/product_source/","name":"SLE-Module-Desktop-Applications15-SP2-Source-Pool","installer_updates":false,"description":"SLE-Module-Desktop-Applications15-SP2-Source-Pool for sle-15-x86_64"}],"cpe":"cpe:/o:suse:sle-module-desktop-applications:15:sp2","product_type":"module"},{"predecessor_ids":[1736,1828],"online_predecessor_ids":[1736,1828],"product_class":"SLE-LP","repositories":[{"name":"SLE-Module-Live-Patching15-SP2-Updates","installer_updates":false,"description":"SLE-Module-Live-Patching15-SP2-Updates for sle-15-x86_64","enabled":true,"id":4201,"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Live-Patching/15-SP2/x86_64/update/"},{"distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Live-Patching/15-SP2/x86_64/update_debug/","enabled":false,"id":4202,"description":"SLE-Module-Live-Patching15-SP2-Debuginfo-Updates for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Live-Patching15-SP2-Debuginfo-Updates"},{"name":"SLE-Module-Live-Patching15-SP2-Pool","installer_updates":false,"description":"SLE-Module-Live-Patching15-SP2-Pool for sle-15-x86_64","id":4203,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Live-Patching/15-SP2/x86_64/product/","autorefresh":false,"distro_target":"sle-15-x86_64"},{"enabled":false,"id":4204,"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Live-Patching/15-SP2/x86_64/product_debug/","installer_updates":false,"name":"SLE-Module-Live-Patching15-SP2-Debuginfo-Pool","description":"SLE-Module-Live-Patching15-SP2-Debuginfo-Pool for sle-15-x86_64"},{"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Live-Patching/15-SP2/x86_64/product_source/","enabled":false,"id":4205,"description":"SLE-Module-Live-Patching15-SP2-Source-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Live-Patching15-SP2-Source-Pool"}],"cpe":"cpe:/o:suse:sle-module-live-patching:15:sp2","product_type":"extension","description":"

SUSE Linux Enterprise Live Patching provides packages to update critical components in SUSE Linux Enterprise. With SUSE Linux Enterprise Live Patching, you can perform critical patching without shutting down your system, reducing the need for planned downtime and increasing service availability.

","shortname":"Live-Patching","free":false,"eula_url":"","arch":"x86_64","friendly_version":"15 SP2","extensions":[],"id":1984,"release_stage":"released","identifier":"sle-module-live-patching","recommended":false,"version":"15.2","name":"SUSE Linux Enterprise Live Patching","offline_predecessor_ids":[1757,1888],"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Live Patching 15 SP2 x86_64","former_identifier":"sle-module-live-patching","release_type":null},{"free":true,"description":"

This module contains the python 2 packages.

Access to the Python 2 Module is included in your SUSE Linux Enterprise subscription. The module has a different lifecycle than SUSE Linux Enterprise itself. Packages in the this module are usually supported for at most three years.

","shortname":"Python2-Module","eula_url":"","arch":"x86_64","predecessor_ids":[1867],"product_class":"MODULE","online_predecessor_ids":[1867],"repositories":[{"name":"SLE-Module-Python2-15-SP2-Updates","installer_updates":false,"description":"SLE-Module-Python2-15-SP2-Updates for sle-15-x86_64","id":4241,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Python2/15-SP2/x86_64/update/","autorefresh":true,"distro_target":"sle-15-x86_64"},{"distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Python2/15-SP2/x86_64/update_debug/","enabled":false,"id":4242,"description":"SLE-Module-Python2-15-SP2-Debuginfo-Updates for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Python2-15-SP2-Debuginfo-Updates"},{"enabled":true,"id":4243,"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Python2/15-SP2/x86_64/product/","installer_updates":false,"name":"SLE-Module-Python2-15-SP2-Pool","description":"SLE-Module-Python2-15-SP2-Pool for sle-15-x86_64"},{"description":"SLE-Module-Python2-15-SP2-Debuginfo-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Python2-15-SP2-Debuginfo-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Python2/15-SP2/x86_64/product_debug/","distro_target":"sle-15-x86_64","autorefresh":false,"id":4244,"enabled":false},{"id":4245,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Python2/15-SP2/x86_64/product_source/","distro_target":"sle-15-x86_64","autorefresh":false,"installer_updates":false,"name":"SLE-Module-Python2-15-SP2-Source-Pool","description":"SLE-Module-Python2-15-SP2-Source-Pool for sle-15-x86_64"}],"product_type":"module","cpe":"cpe:/o:suse:sle-module-python2:15:sp2","recommended":true,"version":"15.2","offline_predecessor_ids":[],"name":"Python 2 Module","former_identifier":"sle-module-python2","release_type":null,"migration_extra":true,"friendly_name":"Python 2 Module 15 SP2 x86_64","friendly_version":"15 SP2","extensions":[],"release_stage":"released","id":1992,"identifier":"sle-module-python2"}],"release_stage":"released","identifier":"sle-module-basesystem","id":1946,"recommended":true,"version":"15.2","name":"Basesystem Module","offline_predecessor_ids":[1212,1368,1440],"migration_extra":false,"friendly_name":"Basesystem Module 15 SP2 x86_64","release_type":null,"former_identifier":"sle-module-basesystem","predecessor_ids":[1576,1772],"product_class":"MODULE","online_predecessor_ids":[1576,1772],"repositories":[{"id":3999,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15-SP2/x86_64/update/","autorefresh":true,"distro_target":"sle-15-x86_64","name":"SLE-Module-Basesystem15-SP2-Updates","installer_updates":false,"description":"SLE-Module-Basesystem15-SP2-Updates for sle-15-x86_64"},{"installer_updates":false,"name":"SLE-Module-Basesystem15-SP2-Debuginfo-Updates","description":"SLE-Module-Basesystem15-SP2-Debuginfo-Updates for sle-15-x86_64","enabled":false,"id":4000,"distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15-SP2/x86_64/update_debug/"},{"description":"SLE-Module-Basesystem15-SP2-Pool for sle-15-x86_64","name":"SLE-Module-Basesystem15-SP2-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP2/x86_64/product/","autorefresh":false,"distro_target":"sle-15-x86_64","id":4001,"enabled":true},{"enabled":false,"id":4002,"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP2/x86_64/product_debug/","installer_updates":false,"name":"SLE-Module-Basesystem15-SP2-Debuginfo-Pool","description":"SLE-Module-Basesystem15-SP2-Debuginfo-Pool for sle-15-x86_64"},{"description":"SLE-Module-Basesystem15-SP2-Source-Pool for sle-15-x86_64","name":"SLE-Module-Basesystem15-SP2-Source-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP2/x86_64/product_source/","autorefresh":false,"distro_target":"sle-15-x86_64","id":4003,"enabled":false}],"cpe":"cpe:/o:suse:sle-module-basesystem:15:sp2","product_type":"module","description":"

The SUSE Linux Enterprise Basesystem Module delivers the base system of the product.

","shortname":"Basesystem-Module","free":true,"eula_url":"","arch":"x86_64"},{"product_type":"extension","cpe":"cpe:/o:suse:sle_hpc-ltss:15:sp2","predecessor_ids":[],"online_predecessor_ids":[],"repositories":[{"id":4529,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-HPC/15-SP2-LTSS/x86_64/update/","distro_target":"sle-15-x86_64","autorefresh":true,"installer_updates":false,"name":"SLE-Product-HPC-15-SP2-LTSS-Updates","description":"SLE-Product-HPC-15-SP2-LTSS-Updates for sle-15-x86_64"},{"description":"SLE-Product-HPC-15-SP2-LTSS-Debuginfo-Updates for sle-15-x86_64","installer_updates":false,"name":"SLE-Product-HPC-15-SP2-LTSS-Debuginfo-Updates","distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-HPC/15-SP2-LTSS/x86_64/update_debug/","enabled":false,"id":4530},{"installer_updates":false,"name":"SLE-Product-HPC-15-SP2-LTSS-Pool","description":"SLE-Product-HPC-15-SP2-LTSS-Pool for sle-15-x86_64","id":4531,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-HPC/15-SP2-LTSS/x86_64/product/","distro_target":"sle-15-x86_64","autorefresh":false},{"description":"SLE-Product-HPC-15-SP2-LTSS-Debuginfo-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Product-HPC-15-SP2-LTSS-Debuginfo-Pool","distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-HPC/15-SP2-LTSS/x86_64/product_debug/","enabled":false,"id":4532},{"url":"https://updates.suse.com/SUSE/Products/SLE-Product-HPC/15-SP2-LTSS/x86_64/product_source/","distro_target":"sle-15-x86_64","autorefresh":false,"id":4533,"enabled":false,"description":"SLE-Product-HPC-15-SP2-LTSS-Source-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Product-HPC-15-SP2-LTSS-Source-Pool"}],"product_class":"HPC15-SP2-LTSS-X86","eula_url":"","arch":"x86_64","free":false,"description":"

SUSE Linux Enterprise High Performance Computing is a highly scalable, high performance open source operating system designed to utilize the power of parallel computing for modeling, simulation and advanced analytics workloads.

","shortname":"SLE_HPC-15-SP2-LTSS","extensions":[],"id":2125,"release_stage":"released","identifier":"SLE_HPC-LTSS","friendly_version":"15 SP2","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise High Performance Computing LTSS","former_identifier":"SLE_HPC-LTSS","release_type":null,"friendly_name":"SUSE Linux Enterprise High Performance Computing LTSS 15 SP2 x86_64","migration_extra":false,"recommended":false,"version":"15.2"},{"description":"

SUSE Linux Enterprise High Performance Computing is a highly scalable, high performance open source operating system designed to utilize the power of parallel computing for modeling, simulation and advanced analytics workloads.

","shortname":"SLE_HPC-15-SP2-ESPOS","free":false,"eula_url":"","arch":"x86_64","predecessor_ids":[],"repositories":[{"id":4549,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-HPC/15-SP2-ESPOS/x86_64/update/","autorefresh":true,"distro_target":"sle-15-x86_64","name":"SLE-Product-HPC-15-SP2-ESPOS-Updates","installer_updates":false,"description":"SLE-Product-HPC-15-SP2-ESPOS-Updates for sle-15-x86_64"},{"description":"SLE-Product-HPC-15-SP2-ESPOS-Debuginfo-Updates for sle-15-x86_64","name":"SLE-Product-HPC-15-SP2-ESPOS-Debuginfo-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Product-HPC/15-SP2-ESPOS/x86_64/update_debug/","enabled":false,"id":4550},{"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Product-HPC/15-SP2-ESPOS/x86_64/product/","enabled":true,"id":4551,"description":"SLE-Product-HPC-15-SP2-ESPOS-Pool for sle-15-x86_64","name":"SLE-Product-HPC-15-SP2-ESPOS-Pool","installer_updates":false},{"installer_updates":false,"name":"SLE-Product-HPC-15-SP2-ESPOS-Debuginfo-Pool","description":"SLE-Product-HPC-15-SP2-ESPOS-Debuginfo-Pool for sle-15-x86_64","id":4552,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-HPC/15-SP2-ESPOS/x86_64/product_debug/","distro_target":"sle-15-x86_64","autorefresh":false},{"url":"https://updates.suse.com/SUSE/Products/SLE-Product-HPC/15-SP2-ESPOS/x86_64/product_source/","distro_target":"sle-15-x86_64","autorefresh":false,"id":4553,"enabled":false,"description":"SLE-Product-HPC-15-SP2-ESPOS-Source-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Product-HPC-15-SP2-ESPOS-Source-Pool"}],"online_predecessor_ids":[],"product_class":"SLE-ESPOS-X86","cpe":"cpe:/o:suse:sle_hpc-espos:15:sp2","product_type":"extension","recommended":false,"version":"15.2","name":"SUSE Linux Enterprise High Performance Computing ESPOS","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"SUSE Linux Enterprise High Performance Computing ESPOS 15 SP2 x86_64","release_type":null,"former_identifier":"SLE_HPC-ESPOS","friendly_version":"15 SP2","extensions":[],"release_stage":"released","identifier":"SLE_HPC-ESPOS","id":2129}]},{"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Desktop 15 SP2 x86_64","release_type":null,"former_identifier":"SLED","name":"SUSE Linux Enterprise Desktop","offline_predecessor_ids":[1629],"version":"15.2","recommended":false,"release_stage":"released","id":1935,"identifier":"SLED","extensions":[{"version":"15.2","recommended":true,"friendly_name":"Basesystem Module 15 SP2 x86_64","migration_extra":false,"release_type":null,"former_identifier":"sle-module-basesystem","name":"Basesystem Module","offline_predecessor_ids":[1212,1368,1440],"friendly_version":"15 SP2","release_stage":"released","identifier":"sle-module-basesystem","id":1946,"extensions":[{"extensions":[],"release_stage":"released","id":1950,"identifier":"PackageHub","friendly_version":"15 SP2","offline_predecessor_ids":[1813,1915],"name":"SUSE Package Hub","former_identifier":"PackageHub","release_type":null,"friendly_name":"SUSE Package Hub 15 SP2 x86_64","migration_extra":false,"recommended":false,"version":"15.2","product_type":"extension","cpe":"cpe:/o:suse:packagehub:15:sp2","predecessor_ids":[1743,1871],"product_class":"MODULE","online_predecessor_ids":[1743,1871],"repositories":[{"name":"SUSE-PackageHub-15-SP2-Backports-Pool","installer_updates":false,"description":"SUSE-PackageHub-15-SP2-Backports-Pool for sle-15-x86_64","enabled":true,"id":4028,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Backports/SLE-15-SP2_x86_64/standard/"},{"name":"SUSE-PackageHub-15-SP2-Backports-Debuginfo","installer_updates":false,"description":"SUSE-PackageHub-15-SP2-Backports-Debuginfo for sle-15-x86_64","enabled":false,"id":4029,"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Backports/SLE-15-SP2_x86_64/standard_debug/"},{"description":"SLE-Module-Packagehub-Subpackages15-SP2-Updates for sle-15-x86_64","name":"SLE-Module-Packagehub-Subpackages15-SP2-Updates","installer_updates":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP2/x86_64/update/","autorefresh":true,"distro_target":"sle-15-x86_64","id":4030,"enabled":true},{"description":"SLE-Module-Packagehub-Subpackages15-SP2-Debuginfo-Updates for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Packagehub-Subpackages15-SP2-Debuginfo-Updates","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP2/x86_64/update_debug/","distro_target":"sle-15-x86_64","autorefresh":true,"id":4031,"enabled":false},{"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Backports/SLE-15-SP2_x86_64/product/","enabled":true,"id":4032,"description":"SUSE-PackageHub-15-SP2-Pool for sle-15-x86_64","installer_updates":false,"name":"SUSE-PackageHub-15-SP2-Pool"},{"description":"SLE-Module-Packagehub-Subpackages15-SP2-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Packagehub-Subpackages15-SP2-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP2/x86_64/product/","distro_target":"sle-15-x86_64","autorefresh":false,"id":4033,"enabled":true},{"id":4034,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP2/x86_64/product_debug/","autorefresh":false,"distro_target":"sle-15-x86_64","name":"SLE-Module-Packagehub-Subpackages15-SP2-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-Packagehub-Subpackages15-SP2-Debuginfo-Pool for sle-15-x86_64"},{"id":4035,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP2/x86_64/product_source/","distro_target":"sle-15-x86_64","autorefresh":false,"installer_updates":false,"name":"SLE-Module-Packagehub-Subpackages15-SP2-Source-Pool","description":"SLE-Module-Packagehub-Subpackages15-SP2-Source-Pool for sle-15-x86_64"}],"eula_url":"","arch":"x86_64","free":true,"shortname":"SUSE-PackageHub-15","description":"SUSE Package Hub is a free of charge extension providing access to community maintained packages built to run on SUSE Linux Enterprise Server. Built from the same sources used in the openSUSE distributions, these quality packages provide additional software to what is found in the SUSE Linux Enterprise Server product. Packages from the Package Hub are delivered without L3 support from SUSE. General updates and fixes to the packages in SUSE Package Hub are provided by the openSUSE community based on their discretion, though SUSE will monitor and ensure that any known critical security issues will be addressed. Packages in the Package Hub are approved by SUSE for use with SUSE Linux Enterprise Server 15-SP2 and to not interfere with the supportability of SUSE Linux Enterprise Server, its modules and extensions. For more information about SUSE Package Hub please visit https://packagehub.suse.com."},{"migration_extra":false,"friendly_name":"Desktop Applications Module 15 SP2 x86_64","release_type":null,"former_identifier":"sle-module-desktop-applications","name":"Desktop Applications Module","offline_predecessor_ids":[],"version":"15.2","recommended":true,"release_stage":"released","id":1967,"identifier":"sle-module-desktop-applications","extensions":[{"product_type":"module","cpe":"cpe:/o:suse:sle-module-development-tools:15:sp2","predecessor_ids":[1579,1794],"online_predecessor_ids":[1579,1794],"product_class":"MODULE","repositories":[{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15-SP2/x86_64/update/","autorefresh":true,"distro_target":"sle-15-x86_64","id":4136,"enabled":true,"description":"SLE-Module-DevTools15-SP2-Updates for sle-15-x86_64","name":"SLE-Module-DevTools15-SP2-Updates","installer_updates":false},{"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15-SP2/x86_64/update_debug/","enabled":false,"id":4137,"description":"SLE-Module-DevTools15-SP2-Debuginfo-Updates for sle-15-x86_64","name":"SLE-Module-DevTools15-SP2-Debuginfo-Updates","installer_updates":false},{"description":"SLE-Module-DevTools15-SP2-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-DevTools15-SP2-Pool","distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP2/x86_64/product/","enabled":true,"id":4138},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP2/x86_64/product_debug/","distro_target":"sle-15-x86_64","autorefresh":false,"id":4139,"enabled":false,"description":"SLE-Module-DevTools15-SP2-Debuginfo-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-DevTools15-SP2-Debuginfo-Pool"},{"enabled":false,"id":4140,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP2/x86_64/product_source/","name":"SLE-Module-DevTools15-SP2-Source-Pool","installer_updates":false,"description":"SLE-Module-DevTools15-SP2-Source-Pool for sle-15-x86_64"}],"eula_url":"","arch":"x86_64","free":true,"shortname":"Development-Tools-Module","description":"

The Development Tools Module helps you developing applications for SUSE Linux Enterprise 15.

Access to the Development Tools Module is included in your SUSE Linux Enterprise product subscription. The module has a different lifecycle than SUSE Linux Enterprise itself.

","extensions":[],"release_stage":"released","id":1971,"identifier":"sle-module-development-tools","friendly_version":"15 SP2","offline_predecessor_ids":[1341,1630,1892],"name":"Development Tools Module","release_type":null,"former_identifier":"sle-sdk","friendly_name":"Development Tools Module 15 SP2 x86_64","migration_extra":false,"recommended":false,"version":"15.2"},{"free":false,"shortname":"SLEWE15-SP2","description":"SUSE Linux Enterprise Workstation Extension adds additional functionality to a base SUSE Linux Enterprise installation. The Workstation Extension offers additional desktop applications (office suite, email client, graphical editor, multimedia tools) and libraries. Workstation Extension is enabled and installed by default on SUSE Linux Enterprise Desktop installation. Adding the Workstation Extension to a SUSE Linux Enterprise Server installation allows to seamlessly combine both products to create a full featured server workstation.","eula_url":"https://updates.suse.com/SUSE/Products/SLE-Product-WE/15-SP2/x86_64/product.license/","arch":"x86_64","predecessor_ids":[1583,1781],"repositories":[{"description":"SLE-Product-WE15-SP2-Updates for sle-15-x86_64","name":"SLE-Product-WE15-SP2-Updates","installer_updates":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-WE/15-SP2/x86_64/update/","autorefresh":true,"distro_target":"sle-15-x86_64","id":4276,"enabled":true},{"distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-WE/15-SP2/x86_64/update_debug/","enabled":false,"id":4277,"description":"SLE-Product-WE15-SP2-Debuginfo-Updates for sle-15-x86_64","installer_updates":false,"name":"SLE-Product-WE15-SP2-Debuginfo-Updates"},{"name":"SLE-Product-WE15-SP2-Pool","installer_updates":false,"description":"SLE-Product-WE15-SP2-Pool for sle-15-x86_64","id":4278,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-WE/15-SP2/x86_64/product/","autorefresh":false,"distro_target":"sle-15-x86_64"},{"enabled":false,"id":4279,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Product-WE/15-SP2/x86_64/product_debug/","name":"SLE-Product-WE15-SP2-Debuginfo-Pool","installer_updates":false,"description":"SLE-Product-WE15-SP2-Debuginfo-Pool for sle-15-x86_64"},{"id":4280,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-WE/15-SP2/x86_64/product_source/","autorefresh":false,"distro_target":"sle-15-x86_64","name":"SLE-Product-WE15-SP2-Source-Pool","installer_updates":false,"description":"SLE-Product-WE15-SP2-Source-Pool for sle-15-x86_64"},{"name":"SLE-15-SP2-Desktop-NVIDIA-Driver","installer_updates":false,"description":"SLE-15-SP2-Desktop-NVIDIA-Driver","id":4450,"enabled":true,"url":"https://download.nvidia.com/suse/sle15sp2/","autorefresh":true,"distro_target":null}],"online_predecessor_ids":[1583,1781],"product_class":"SLE-WE","product_type":"extension","cpe":"cpe:/o:suse:sle-we:15:sp2","recommended":true,"version":"15.2","offline_predecessor_ids":[1639,1893],"name":"SUSE Linux Enterprise Workstation Extension","release_type":null,"former_identifier":"sle-we","migration_extra":false,"friendly_name":"SUSE Linux Enterprise Workstation Extension 15 SP2 x86_64","friendly_version":"15 SP2","extensions":[],"release_stage":"released","identifier":"sle-we","id":1999}],"friendly_version":"15 SP2","arch":"x86_64","eula_url":"","shortname":"Desktop-Applications-Module","description":"

The SUSE Linux Enterprise Desktop Applications Module delivers a basic set of Desktop functionality.

Access to the Desktop Applications Module is included in your SUSE Linux Enterprise product subscription.

","free":true,"cpe":"cpe:/o:suse:sle-module-desktop-applications:15:sp2","product_type":"module","repositories":[{"name":"SLE-Module-Desktop-Applications15-SP2-Updates","installer_updates":false,"description":"SLE-Module-Desktop-Applications15-SP2-Updates for sle-15-x86_64","id":4116,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15-SP2/x86_64/update/","autorefresh":true,"distro_target":"sle-15-x86_64"},{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15-SP2/x86_64/update_debug/","distro_target":"sle-15-x86_64","autorefresh":true,"id":4117,"enabled":false,"description":"SLE-Module-Desktop-Applications15-SP2-Debuginfo-Updates for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Desktop-Applications15-SP2-Debuginfo-Updates"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP2/x86_64/product/","distro_target":"sle-15-x86_64","autorefresh":false,"id":4118,"enabled":true,"description":"SLE-Module-Desktop-Applications15-SP2-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Desktop-Applications15-SP2-Pool"},{"installer_updates":false,"name":"SLE-Module-Desktop-Applications15-SP2-Debuginfo-Pool","description":"SLE-Module-Desktop-Applications15-SP2-Debuginfo-Pool for sle-15-x86_64","id":4119,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP2/x86_64/product_debug/","distro_target":"sle-15-x86_64","autorefresh":false},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP2/x86_64/product_source/","distro_target":"sle-15-x86_64","autorefresh":false,"id":4120,"enabled":false,"description":"SLE-Module-Desktop-Applications15-SP2-Source-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Desktop-Applications15-SP2-Source-Pool"}],"online_predecessor_ids":[1578,1776],"product_class":"MODULE","predecessor_ids":[1578,1776]},{"migration_extra":true,"friendly_name":"Python 2 Module 15 SP2 x86_64","release_type":null,"former_identifier":"sle-module-python2","name":"Python 2 Module","offline_predecessor_ids":[],"version":"15.2","recommended":true,"id":1992,"release_stage":"released","identifier":"sle-module-python2","extensions":[],"friendly_version":"15 SP2","arch":"x86_64","eula_url":"","description":"

This module contains the python 2 packages.

Access to the Python 2 Module is included in your SUSE Linux Enterprise subscription. The module has a different lifecycle than SUSE Linux Enterprise itself. Packages in the this module are usually supported for at most three years.

","shortname":"Python2-Module","free":true,"cpe":"cpe:/o:suse:sle-module-python2:15:sp2","product_type":"module","product_class":"MODULE","online_predecessor_ids":[1867],"repositories":[{"enabled":true,"id":4241,"distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Python2/15-SP2/x86_64/update/","installer_updates":false,"name":"SLE-Module-Python2-15-SP2-Updates","description":"SLE-Module-Python2-15-SP2-Updates for sle-15-x86_64"},{"description":"SLE-Module-Python2-15-SP2-Debuginfo-Updates for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Python2-15-SP2-Debuginfo-Updates","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Python2/15-SP2/x86_64/update_debug/","distro_target":"sle-15-x86_64","autorefresh":true,"id":4242,"enabled":false},{"description":"SLE-Module-Python2-15-SP2-Pool for sle-15-x86_64","name":"SLE-Module-Python2-15-SP2-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Python2/15-SP2/x86_64/product/","autorefresh":false,"distro_target":"sle-15-x86_64","id":4243,"enabled":true},{"enabled":false,"id":4244,"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Python2/15-SP2/x86_64/product_debug/","installer_updates":false,"name":"SLE-Module-Python2-15-SP2-Debuginfo-Pool","description":"SLE-Module-Python2-15-SP2-Debuginfo-Pool for sle-15-x86_64"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Python2/15-SP2/x86_64/product_source/","autorefresh":false,"distro_target":"sle-15-x86_64","id":4245,"enabled":false,"description":"SLE-Module-Python2-15-SP2-Source-Pool for sle-15-x86_64","name":"SLE-Module-Python2-15-SP2-Source-Pool","installer_updates":false}],"predecessor_ids":[1867]},{"shortname":"SUSE-CAP-Tools-Module","description":"

The SUSE Cloud Application Platform Tools Module is a collection of tools that enables you to interact with the SUSE Cloud Application Platform product itself, providing the commandline client for instance.

Access to the SUSE Cloud Application Platform Tools Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself; please check the Release Notes for further details.

","free":true,"eula_url":"","arch":"x86_64","predecessor_ids":[1728,1809],"online_predecessor_ids":[1728,1809],"repositories":[{"installer_updates":false,"name":"SLE-Module-CAP-Tools15-SP2-Updates","description":"SLE-Module-CAP-Tools15-SP2-Updates for sle-15-x86_64","enabled":true,"id":4424,"distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-CAP-Tools/15-SP2/x86_64/update/"},{"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-CAP-Tools/15-SP2/x86_64/update_debug/","enabled":false,"id":4425,"description":"SLE-Module-CAP-Tools15-SP2-Debuginfo-Updates for sle-15-x86_64","name":"SLE-Module-CAP-Tools15-SP2-Debuginfo-Updates","installer_updates":false},{"id":4426,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-CAP-Tools/15-SP2/x86_64/product/","autorefresh":false,"distro_target":"sle-15-x86_64","name":"SLE-Module-CAP-Tools15-SP2-Pool","installer_updates":false,"description":"SLE-Module-CAP-Tools15-SP2-Pool for sle-15-x86_64"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-CAP-Tools/15-SP2/x86_64/product_debug/","distro_target":"sle-15-x86_64","autorefresh":false,"id":4427,"enabled":false,"description":"SLE-Module-CAP-Tools15-SP2-Debuginfo-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-CAP-Tools15-SP2-Debuginfo-Pool"},{"installer_updates":false,"name":"SLE-Module-CAP-Tools15-SP2-Source-Pool","description":"SLE-Module-CAP-Tools15-SP2-Source-Pool for sle-15-x86_64","enabled":false,"id":4428,"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-CAP-Tools/15-SP2/x86_64/product_source/"}],"product_class":"MODULE","cpe":"cpe:/o:suse:sle-module-cap-tools:15:sp2","product_type":"module","recommended":false,"version":"15.2","name":"SUSE Cloud Application Platform Tools Module","offline_predecessor_ids":[1678],"friendly_name":"SUSE Cloud Application Platform Tools Module 15 SP2 x86_64","migration_extra":false,"release_type":null,"former_identifier":"sle-module-cap-tools","friendly_version":"15 SP2","extensions":[],"release_stage":"released","id":2075,"identifier":"sle-module-cap-tools"}],"shortname":"Basesystem-Module","description":"

The SUSE Linux Enterprise Basesystem Module delivers the base system of the product.

","free":true,"arch":"x86_64","eula_url":"","product_class":"MODULE","online_predecessor_ids":[1576,1772],"repositories":[{"name":"SLE-Module-Basesystem15-SP2-Updates","installer_updates":false,"description":"SLE-Module-Basesystem15-SP2-Updates for sle-15-x86_64","enabled":true,"id":3999,"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15-SP2/x86_64/update/"},{"installer_updates":false,"name":"SLE-Module-Basesystem15-SP2-Debuginfo-Updates","description":"SLE-Module-Basesystem15-SP2-Debuginfo-Updates for sle-15-x86_64","id":4000,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15-SP2/x86_64/update_debug/","distro_target":"sle-15-x86_64","autorefresh":true},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP2/x86_64/product/","autorefresh":false,"distro_target":"sle-15-x86_64","id":4001,"enabled":true,"description":"SLE-Module-Basesystem15-SP2-Pool for sle-15-x86_64","name":"SLE-Module-Basesystem15-SP2-Pool","installer_updates":false},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP2/x86_64/product_debug/","distro_target":"sle-15-x86_64","autorefresh":false,"id":4002,"enabled":false,"description":"SLE-Module-Basesystem15-SP2-Debuginfo-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Basesystem15-SP2-Debuginfo-Pool"},{"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP2/x86_64/product_source/","enabled":false,"id":4003,"description":"SLE-Module-Basesystem15-SP2-Source-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Basesystem15-SP2-Source-Pool"}],"predecessor_ids":[1576,1772],"cpe":"cpe:/o:suse:sle-module-basesystem:15:sp2","product_type":"module"}],"friendly_version":"15 SP2","arch":"x86_64","eula_url":"https://updates.suse.com/SUSE/Products/SLE-Product-SLED/15-SP2/x86_64/product.license/","shortname":"SLED15-SP2","description":"SUSE Linux Enterprise offers a comprehensive suite of products built on a single code base. The platform addresses business needs from the smallest thin-client devices to the world's most powerful high-performance computing and mainframe servers. SUSE Linux Enterprise offers common management tools and technology certifications across the platform, and each product is enterprise-class. SUSE Linux Enterprise provides more than a cute desktop product or a basic server offering. It is the only Linux platform for enterprise computing, and it is now replacing UNIX* and Windows* as well.","free":false,"cpe":"cpe:/o:suse:sled:15:sp2","product_type":"base","online_predecessor_ids":[1609,1764],"repositories":[{"name":"SLE-Product-SLED15-SP2-Updates","installer_updates":false,"description":"SLE-Product-SLED15-SP2-Updates for sle-15-x86_64","enabled":true,"id":3937,"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Product-SLED/15-SP2/x86_64/update/"},{"enabled":false,"id":3938,"distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-SLED/15-SP2/x86_64/update_debug/","installer_updates":false,"name":"SLE-Product-SLED15-SP2-Debuginfo-Updates","description":"SLE-Product-SLED15-SP2-Debuginfo-Updates for sle-15-x86_64"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Product-SLED/15-SP2/x86_64/product/","autorefresh":false,"distro_target":"sle-15-x86_64","id":3939,"enabled":true,"description":"SLE-Product-SLED15-SP2-Pool for sle-15-x86_64","name":"SLE-Product-SLED15-SP2-Pool","installer_updates":false},{"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Product-SLED/15-SP2/x86_64/product_debug/","enabled":false,"id":3940,"description":"SLE-Product-SLED15-SP2-Debuginfo-Pool for sle-15-x86_64","name":"SLE-Product-SLED15-SP2-Debuginfo-Pool","installer_updates":false},{"url":"https://updates.suse.com/SUSE/Products/SLE-Product-SLED/15-SP2/x86_64/product_source/","autorefresh":false,"distro_target":"sle-15-x86_64","id":3941,"enabled":false,"description":"SLE-Product-SLED15-SP2-Source-Pool for sle-15-x86_64","name":"SLE-Product-SLED15-SP2-Source-Pool","installer_updates":false},{"name":"SLE-15-SP2-Desktop-NVIDIA-Driver","installer_updates":false,"description":"SLE-15-SP2-Desktop-NVIDIA-Driver","id":4450,"enabled":true,"url":"https://download.nvidia.com/suse/sle15sp2/","autorefresh":true,"distro_target":null}],"product_class":"7260","predecessor_ids":[1609,1764]},{"eula_url":"https://updates.suse.com/SUSE/Products/SLE-Product-SLES/15-SP2/aarch64/product.license/","arch":"aarch64","free":false,"shortname":"SLES15-SP2","description":"SUSE Linux Enterprise offers a comprehensive suite of products built on a single code base. The platform addresses business needs from the smallest thin-client devices to the world's most powerful high-performance computing and mainframe servers. SUSE Linux Enterprise offers common management tools and technology certifications across the platform, and each product is enterprise-class.","product_type":"base","cpe":"cpe:/o:suse:sles:15:sp2","predecessor_ids":[1586,1760],"repositories":[{"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-SLES/15-SP2/aarch64/update/","distro_target":"sle-15-aarch64","autorefresh":true,"id":3942,"enabled":true,"description":"SLE-Product-SLES15-SP2-Updates for sle-15-aarch64","installer_updates":false,"name":"SLE-Product-SLES15-SP2-Updates"},{"id":3943,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-SLES/15-SP2/aarch64/update_debug/","distro_target":"sle-15-aarch64","autorefresh":true,"installer_updates":false,"name":"SLE-Product-SLES15-SP2-Debuginfo-Updates","description":"SLE-Product-SLES15-SP2-Debuginfo-Updates for sle-15-aarch64"},{"id":3944,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-INSTALLER/15-SP2/aarch64/update/","distro_target":"sle-15-aarch64","autorefresh":true,"installer_updates":true,"name":"SLE15-SP2-Installer-Updates","description":"SLE15-SP2-Installer-Updates for sle-15-aarch64"},{"id":3945,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-SLES/15-SP2/aarch64/product/","distro_target":"sle-15-aarch64","autorefresh":false,"installer_updates":false,"name":"SLE-Product-SLES15-SP2-Pool","description":"SLE-Product-SLES15-SP2-Pool for sle-15-aarch64"},{"name":"SLE-Product-SLES15-SP2-Debuginfo-Pool","installer_updates":false,"description":"SLE-Product-SLES15-SP2-Debuginfo-Pool for sle-15-aarch64","id":3946,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-SLES/15-SP2/aarch64/product_debug/","autorefresh":false,"distro_target":"sle-15-aarch64"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Product-SLES/15-SP2/aarch64/product_source/","distro_target":"sle-15-aarch64","autorefresh":false,"id":3947,"enabled":false,"description":"SLE-Product-SLES15-SP2-Source-Pool for sle-15-aarch64","installer_updates":false,"name":"SLE-Product-SLES15-SP2-Source-Pool"}],"online_predecessor_ids":[1586,1760],"product_class":"SLES-ARM64","offline_predecessor_ids":[1628,1875],"name":"SUSE Linux Enterprise Server","release_type":null,"former_identifier":"SLES","friendly_name":"SUSE Linux Enterprise Server 15 SP2 aarch64","migration_extra":false,"recommended":false,"version":"15.2","extensions":[{"product_type":"module","cpe":"cpe:/o:suse:sle-module-basesystem:15:sp2","predecessor_ids":[1589,1769],"repositories":[{"description":"SLE-Module-Basesystem15-SP2-Updates for sle-15-aarch64","name":"SLE-Module-Basesystem15-SP2-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15-SP2/aarch64/update/","enabled":true,"id":3984},{"enabled":false,"id":3985,"distro_target":"sle-15-aarch64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15-SP2/aarch64/update_debug/","installer_updates":false,"name":"SLE-Module-Basesystem15-SP2-Debuginfo-Updates","description":"SLE-Module-Basesystem15-SP2-Debuginfo-Updates for sle-15-aarch64"},{"name":"SLE-Module-Basesystem15-SP2-Pool","installer_updates":false,"description":"SLE-Module-Basesystem15-SP2-Pool for sle-15-aarch64","id":3986,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP2/aarch64/product/","autorefresh":false,"distro_target":"sle-15-aarch64"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP2/aarch64/product_debug/","distro_target":"sle-15-aarch64","autorefresh":false,"id":3987,"enabled":false,"description":"SLE-Module-Basesystem15-SP2-Debuginfo-Pool for sle-15-aarch64","installer_updates":false,"name":"SLE-Module-Basesystem15-SP2-Debuginfo-Pool"},{"description":"SLE-Module-Basesystem15-SP2-Source-Pool for sle-15-aarch64","name":"SLE-Module-Basesystem15-SP2-Source-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP2/aarch64/product_source/","enabled":false,"id":3988}],"online_predecessor_ids":[1589,1769],"product_class":"MODULE","eula_url":"","arch":"aarch64","free":true,"description":"

The SUSE Linux Enterprise Basesystem Module delivers the base system of the product.

","shortname":"Basesystem-Module","extensions":[{"shortname":"SUSE-PackageHub-15","description":"SUSE Package Hub is a free of charge extension providing access to community maintained packages built to run on SUSE Linux Enterprise Server. Built from the same sources used in the openSUSE distributions, these quality packages provide additional software to what is found in the SUSE Linux Enterprise Server product. Packages from the Package Hub are delivered without L3 support from SUSE. General updates and fixes to the packages in SUSE Package Hub are provided by the openSUSE community based on their discretion, though SUSE will monitor and ensure that any known critical security issues will be addressed. Packages in the Package Hub are approved by SUSE for use with SUSE Linux Enterprise Server 15-SP2 and to not interfere with the supportability of SUSE Linux Enterprise Server, its modules and extensions. For more information about SUSE Package Hub please visit https://packagehub.suse.com.","free":true,"arch":"aarch64","eula_url":"","product_class":"MODULE","online_predecessor_ids":[1740,1868],"repositories":[{"id":4004,"enabled":true,"url":"https://updates.suse.com/SUSE/Backports/SLE-15-SP2_aarch64/standard/","distro_target":"sle-15-aarch64","autorefresh":false,"installer_updates":false,"name":"SUSE-PackageHub-15-SP2-Backports-Pool","description":"SUSE-PackageHub-15-SP2-Backports-Pool for sle-15-aarch64"},{"description":"SUSE-PackageHub-15-SP2-Backports-Debuginfo for sle-15-aarch64","installer_updates":false,"name":"SUSE-PackageHub-15-SP2-Backports-Debuginfo","distro_target":"sle-15-aarch64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Backports/SLE-15-SP2_aarch64/standard_debug/","enabled":false,"id":4005},{"enabled":true,"id":4006,"autorefresh":true,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP2/aarch64/update/","name":"SLE-Module-Packagehub-Subpackages15-SP2-Updates","installer_updates":false,"description":"SLE-Module-Packagehub-Subpackages15-SP2-Updates for sle-15-aarch64"},{"installer_updates":false,"name":"SLE-Module-Packagehub-Subpackages15-SP2-Debuginfo-Updates","description":"SLE-Module-Packagehub-Subpackages15-SP2-Debuginfo-Updates for sle-15-aarch64","id":4007,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP2/aarch64/update_debug/","distro_target":"sle-15-aarch64","autorefresh":true},{"enabled":true,"id":4008,"distro_target":"sle-15-aarch64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Backports/SLE-15-SP2_aarch64/product/","installer_updates":false,"name":"SUSE-PackageHub-15-SP2-Pool","description":"SUSE-PackageHub-15-SP2-Pool for sle-15-aarch64"},{"name":"SLE-Module-Packagehub-Subpackages15-SP2-Pool","installer_updates":false,"description":"SLE-Module-Packagehub-Subpackages15-SP2-Pool for sle-15-aarch64","id":4009,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP2/aarch64/product/","autorefresh":false,"distro_target":"sle-15-aarch64"},{"distro_target":"sle-15-aarch64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP2/aarch64/product_debug/","enabled":false,"id":4010,"description":"SLE-Module-Packagehub-Subpackages15-SP2-Debuginfo-Pool for sle-15-aarch64","installer_updates":false,"name":"SLE-Module-Packagehub-Subpackages15-SP2-Debuginfo-Pool"},{"description":"SLE-Module-Packagehub-Subpackages15-SP2-Source-Pool for sle-15-aarch64","installer_updates":false,"name":"SLE-Module-Packagehub-Subpackages15-SP2-Source-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP2/aarch64/product_source/","distro_target":"sle-15-aarch64","autorefresh":false,"id":4011,"enabled":false}],"predecessor_ids":[1740,1868],"cpe":"cpe:/o:suse:packagehub:15:sp2","product_type":"extension","version":"15.2","recommended":false,"migration_extra":false,"friendly_name":"SUSE Package Hub 15 SP2 aarch64","former_identifier":"PackageHub","release_type":null,"name":"SUSE Package Hub","offline_predecessor_ids":[1810,1912],"friendly_version":"15 SP2","release_stage":"released","id":1947,"identifier":"PackageHub","extensions":[]},{"free":true,"shortname":"Server-Applications-Module","description":"

The SUSE Linux Enterprise Server Applications Module delivers a basic set of Server functionality.

Access to the Server Applications Module is included in your SUSE Linux Enterprise Server subscription.

","arch":"aarch64","eula_url":"","online_predecessor_ids":[1601,1777],"product_class":"MODULE","repositories":[{"name":"SLE-Module-Server-Applications15-SP2-Updates","installer_updates":false,"description":"SLE-Module-Server-Applications15-SP2-Updates for sle-15-aarch64","id":4041,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15-SP2/aarch64/update/","autorefresh":true,"distro_target":"sle-15-aarch64"},{"enabled":false,"id":4042,"distro_target":"sle-15-aarch64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15-SP2/aarch64/update_debug/","installer_updates":false,"name":"SLE-Module-Server-Applications15-SP2-Debuginfo-Updates","description":"SLE-Module-Server-Applications15-SP2-Debuginfo-Updates for sle-15-aarch64"},{"installer_updates":false,"name":"SLE-Module-Server-Applications15-SP2-Pool","description":"SLE-Module-Server-Applications15-SP2-Pool for sle-15-aarch64","id":4043,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP2/aarch64/product/","distro_target":"sle-15-aarch64","autorefresh":false},{"enabled":false,"id":4044,"autorefresh":false,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP2/aarch64/product_debug/","name":"SLE-Module-Server-Applications15-SP2-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-Server-Applications15-SP2-Debuginfo-Pool for sle-15-aarch64"},{"enabled":false,"id":4045,"distro_target":"sle-15-aarch64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP2/aarch64/product_source/","installer_updates":false,"name":"SLE-Module-Server-Applications15-SP2-Source-Pool","description":"SLE-Module-Server-Applications15-SP2-Source-Pool for sle-15-aarch64"}],"predecessor_ids":[1601,1777],"product_type":"module","cpe":"cpe:/o:suse:sle-module-server-applications:15:sp2","version":"15.2","recommended":true,"release_type":null,"former_identifier":"sle-module-server-applications","friendly_name":"Server Applications Module 15 SP2 aarch64","migration_extra":false,"offline_predecessor_ids":[],"name":"Server Applications Module","friendly_version":"15 SP2","release_stage":"released","identifier":"sle-module-server-applications","id":1952,"extensions":[{"name":"SUSE Linux Enterprise High Availability Extension","offline_predecessor_ids":[],"friendly_name":"SUSE Linux Enterprise High Availability Extension 15 SP2 aarch64","migration_extra":false,"former_identifier":"sle-ha","release_type":null,"recommended":false,"version":"15.2","extensions":[],"release_stage":"released","identifier":"sle-ha","id":1956,"friendly_version":"15 SP2","eula_url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP2/aarch64/product.license/","arch":"aarch64","description":"SUSE Linux High Availability Extension provides mature, industry-leading open-source high-availability clustering technologies that are easy to set up and use. It can be deployed in physical and/or virtual environments, and can cluster physical servers, virtual servers, or any combination of the two to suit your business’ needs.","shortname":"SLEHA15-SP2","free":false,"cpe":"cpe:/o:suse:sle-ha:15:sp2","product_type":"extension","predecessor_ids":[1608,1782],"online_predecessor_ids":[1608,1782],"repositories":[{"autorefresh":true,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Updates/SLE-Product-HA/15-SP2/aarch64/update/","enabled":true,"id":4061,"description":"SLE-Product-HA15-SP2-Updates for sle-15-aarch64","name":"SLE-Product-HA15-SP2-Updates","installer_updates":false},{"autorefresh":true,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Updates/SLE-Product-HA/15-SP2/aarch64/update_debug/","enabled":false,"id":4062,"description":"SLE-Product-HA15-SP2-Debuginfo-Updates for sle-15-aarch64","name":"SLE-Product-HA15-SP2-Debuginfo-Updates","installer_updates":false},{"description":"SLE-Product-HA15-SP2-Pool for sle-15-aarch64","name":"SLE-Product-HA15-SP2-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP2/aarch64/product/","autorefresh":false,"distro_target":"sle-15-aarch64","id":4063,"enabled":true},{"installer_updates":false,"name":"SLE-Product-HA15-SP2-Debuginfo-Pool","description":"SLE-Product-HA15-SP2-Debuginfo-Pool for sle-15-aarch64","id":4064,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP2/aarch64/product_debug/","distro_target":"sle-15-aarch64","autorefresh":false},{"description":"SLE-Product-HA15-SP2-Source-Pool for sle-15-aarch64","name":"SLE-Product-HA15-SP2-Source-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP2/aarch64/product_source/","enabled":false,"id":4065}],"product_class":"SLE-HAE-ARM64"},{"free":true,"shortname":"Web-Scripting-Module","description":"

The SUSE Linux Enterprise Web and Scripting Module should contains additional packages that are helpful when running a webserver.

Access to the Web and Scripting Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself: Package versions in this module are usually supported for at most three years. We are planning to release more recent versions on a schedule of approximately 18 month; the exact dates may differ per package.

","eula_url":"","arch":"aarch64","predecessor_ids":[1718,1795],"product_class":"MODULE","online_predecessor_ids":[1718,1795],"repositories":[{"description":"SLE-Module-Web-Scripting15-SP2-Updates for sle-15-aarch64","name":"SLE-Module-Web-Scripting15-SP2-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/15-SP2/aarch64/update/","enabled":true,"id":4146},{"name":"SLE-Module-Web-Scripting15-SP2-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-Web-Scripting15-SP2-Debuginfo-Updates for sle-15-aarch64","id":4147,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/15-SP2/aarch64/update_debug/","autorefresh":true,"distro_target":"sle-15-aarch64"},{"id":4148,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP2/aarch64/product/","autorefresh":false,"distro_target":"sle-15-aarch64","name":"SLE-Module-Web-Scripting15-SP2-Pool","installer_updates":false,"description":"SLE-Module-Web-Scripting15-SP2-Pool for sle-15-aarch64"},{"id":4149,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP2/aarch64/product_debug/","distro_target":"sle-15-aarch64","autorefresh":false,"installer_updates":false,"name":"SLE-Module-Web-Scripting15-SP2-Debuginfo-Pool","description":"SLE-Module-Web-Scripting15-SP2-Debuginfo-Pool for sle-15-aarch64"},{"description":"SLE-Module-Web-Scripting15-SP2-Source-Pool for sle-15-aarch64","name":"SLE-Module-Web-Scripting15-SP2-Source-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP2/aarch64/product_source/","enabled":false,"id":4150}],"product_type":"module","cpe":"cpe:/o:suse:sle-module-web-scripting:15:sp2","recommended":false,"version":"15.2","offline_predecessor_ids":[1539],"name":"Web and Scripting Module","release_type":null,"former_identifier":"sle-module-web-scripting","friendly_name":"Web and Scripting Module 15 SP2 aarch64","migration_extra":true,"friendly_version":"15 SP2","extensions":[],"id":1973,"release_stage":"released","identifier":"sle-module-web-scripting"},{"friendly_name":"Legacy Module 15 SP2 aarch64","migration_extra":true,"former_identifier":"sle-module-legacy","release_type":null,"name":"Legacy Module","offline_predecessor_ids":[],"version":"15.2","recommended":false,"release_stage":"released","id":1979,"identifier":"sle-module-legacy","extensions":[],"friendly_version":"15 SP2","arch":"aarch64","eula_url":"","shortname":"Legacy-Module","description":"

The Legacy Module helps you migrating applications from SUSE Linux Enterprise 12 and other systems to SUSE Linux Enterprise 15, by providing packages which are discontinued on SUSE Linux Enterprise Server, such as: ntp, IBM Java 8, and a number of libraries.

Access to the Legacy Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself. Packages in the this module are usually supported for at most three years.

","free":true,"cpe":"cpe:/o:suse:sle-module-legacy:15:sp2","product_type":"module","online_predecessor_ids":[1604,1801],"product_class":"MODULE","repositories":[{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/15-SP2/aarch64/update/","autorefresh":true,"distro_target":"sle-15-aarch64","id":4176,"enabled":true,"description":"SLE-Module-Legacy15-SP2-Updates for sle-15-aarch64","name":"SLE-Module-Legacy15-SP2-Updates","installer_updates":false},{"installer_updates":false,"name":"SLE-Module-Legacy15-SP2-Debuginfo-Updates","description":"SLE-Module-Legacy15-SP2-Debuginfo-Updates for sle-15-aarch64","enabled":false,"id":4177,"distro_target":"sle-15-aarch64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/15-SP2/aarch64/update_debug/"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15-SP2/aarch64/product/","autorefresh":false,"distro_target":"sle-15-aarch64","id":4178,"enabled":true,"description":"SLE-Module-Legacy15-SP2-Pool for sle-15-aarch64","name":"SLE-Module-Legacy15-SP2-Pool","installer_updates":false},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15-SP2/aarch64/product_debug/","distro_target":"sle-15-aarch64","autorefresh":false,"id":4179,"enabled":false,"description":"SLE-Module-Legacy15-SP2-Debuginfo-Pool for sle-15-aarch64","installer_updates":false,"name":"SLE-Module-Legacy15-SP2-Debuginfo-Pool"},{"id":4180,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15-SP2/aarch64/product_source/","distro_target":"sle-15-aarch64","autorefresh":false,"installer_updates":false,"name":"SLE-Module-Legacy15-SP2-Source-Pool","description":"SLE-Module-Legacy15-SP2-Source-Pool for sle-15-aarch64"}],"predecessor_ids":[1604,1801]},{"product_type":"module","cpe":"cpe:/o:suse:sle-module-public-cloud:15:sp2","predecessor_ids":[1645,1805],"online_predecessor_ids":[1645,1805],"product_class":"MODULE","repositories":[{"description":"SLE-Module-Public-Cloud15-SP2-Updates for sle-15-aarch64","name":"SLE-Module-Public-Cloud15-SP2-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/15-SP2/aarch64/update/","enabled":true,"id":4206},{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/15-SP2/aarch64/update_debug/","distro_target":"sle-15-aarch64","autorefresh":true,"id":4207,"enabled":false,"description":"SLE-Module-Public-Cloud15-SP2-Debuginfo-Updates for sle-15-aarch64","installer_updates":false,"name":"SLE-Module-Public-Cloud15-SP2-Debuginfo-Updates"},{"enabled":true,"id":4208,"autorefresh":false,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP2/aarch64/product/","name":"SLE-Module-Public-Cloud15-SP2-Pool","installer_updates":false,"description":"SLE-Module-Public-Cloud15-SP2-Pool for sle-15-aarch64"},{"autorefresh":false,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP2/aarch64/product_debug/","enabled":false,"id":4209,"description":"SLE-Module-Public-Cloud15-SP2-Debuginfo-Pool for sle-15-aarch64","name":"SLE-Module-Public-Cloud15-SP2-Debuginfo-Pool","installer_updates":false},{"description":"SLE-Module-Public-Cloud15-SP2-Source-Pool for sle-15-aarch64","name":"SLE-Module-Public-Cloud15-SP2-Source-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP2/aarch64/product_source/","autorefresh":false,"distro_target":"sle-15-aarch64","id":4210,"enabled":false}],"eula_url":"","arch":"aarch64","free":true,"description":"

The Public Cloud Module is a collection of tools that enables you to create and manage cloud images from the commandline on SUSE Linux Enterprise Server. When building your own images with KIWI or SUSE Studio, initialization code specific to the target cloud is included in that image.

Access to the Public Cloud Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself; please check the Release Notes for further details.

","shortname":"Public-Cloud-Module","extensions":[],"id":1985,"release_stage":"released","identifier":"sle-module-public-cloud","friendly_version":"15 SP2","offline_predecessor_ids":[1528],"name":"Public Cloud Module","release_type":null,"former_identifier":"sle-module-public-cloud","friendly_name":"Public Cloud Module 15 SP2 aarch64","migration_extra":false,"recommended":false,"version":"15.2"},{"cpe":"cpe:/o:suse:ses:7","product_type":"extension","product_class":"SES-ARM64","online_predecessor_ids":[],"repositories":[{"name":"SUSE-Enterprise-Storage-7-Updates","installer_updates":false,"description":"SUSE-Enterprise-Storage-7-Updates for sle-15-aarch64","enabled":true,"id":4504,"autorefresh":true,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Updates/Storage/7/aarch64/update/"},{"installer_updates":false,"name":"SUSE-Enterprise-Storage-7-Debuginfo-Updates","description":"SUSE-Enterprise-Storage-7-Debuginfo-Updates for sle-15-aarch64","enabled":false,"id":4505,"distro_target":"sle-15-aarch64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/Storage/7/aarch64/update_debug/"},{"id":4506,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/Storage/7/aarch64/product/","autorefresh":false,"distro_target":"sle-15-aarch64","name":"SUSE-Enterprise-Storage-7-Pool","installer_updates":false,"description":"SUSE-Enterprise-Storage-7-Pool for sle-15-aarch64"},{"id":4507,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/Storage/7/aarch64/product_debug/","distro_target":"sle-15-aarch64","autorefresh":false,"installer_updates":false,"name":"SUSE-Enterprise-Storage-7-Debuginfo-Pool","description":"SUSE-Enterprise-Storage-7-Debuginfo-Pool for sle-15-aarch64"},{"enabled":false,"id":4508,"distro_target":"sle-15-aarch64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/Storage/7/aarch64/product_source/","installer_updates":false,"name":"SUSE-Enterprise-Storage-7-Source-Pool","description":"SUSE-Enterprise-Storage-7-Source-Pool for sle-15-aarch64"}],"predecessor_ids":[],"arch":"aarch64","eula_url":"https://updates.suse.com/SUSE/Products/Storage/7/aarch64/product.license/","shortname":"SES7","description":"SUSE Enterprise Storage 7 for SUSE Linux Enterprise Server 15 SP2, powered by Ceph.","free":false,"release_stage":"released","identifier":"ses","id":2120,"extensions":[],"friendly_version":"7","friendly_name":"SUSE Enterprise Storage 7 aarch64","migration_extra":false,"release_type":null,"former_identifier":"ses","name":"SUSE Enterprise Storage","offline_predecessor_ids":[],"version":"7","recommended":false}]},{"arch":"aarch64","eula_url":"","description":"

This Module contains several packages revolving around containers and related tools.

","shortname":"Containers-Module","free":true,"cpe":"cpe:/o:suse:sle-module-containers:15:sp2","product_type":"module","online_predecessor_ids":[1920],"repositories":[{"description":"SLE-Module-Containers15-SP2-Updates for sle-15-aarch64","name":"SLE-Module-Containers15-SP2-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/15-SP2/aarch64/update/","enabled":true,"id":4081},{"id":4082,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/15-SP2/aarch64/update_debug/","autorefresh":true,"distro_target":"sle-15-aarch64","name":"SLE-Module-Containers15-SP2-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-Containers15-SP2-Debuginfo-Updates for sle-15-aarch64"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP2/aarch64/product/","autorefresh":false,"distro_target":"sle-15-aarch64","id":4083,"enabled":true,"description":"SLE-Module-Containers15-SP2-Pool for sle-15-aarch64","name":"SLE-Module-Containers15-SP2-Pool","installer_updates":false},{"name":"SLE-Module-Containers15-SP2-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-Containers15-SP2-Debuginfo-Pool for sle-15-aarch64","enabled":false,"id":4084,"autorefresh":false,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP2/aarch64/product_debug/"},{"description":"SLE-Module-Containers15-SP2-Source-Pool for sle-15-aarch64","name":"SLE-Module-Containers15-SP2-Source-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP2/aarch64/product_source/","autorefresh":false,"distro_target":"sle-15-aarch64","id":4085,"enabled":false}],"product_class":"MODULE","predecessor_ids":[1920],"migration_extra":false,"friendly_name":"Containers Module 15 SP2 aarch64","release_type":null,"former_identifier":"sle-module-containers","name":"Containers Module","offline_predecessor_ids":[],"version":"15.2","recommended":false,"id":1960,"release_stage":"released","identifier":"sle-module-containers","extensions":[{"predecessor_ids":[],"repositories":[{"installer_updates":false,"name":"SUSE-CAASP-4.5-Updates","description":"SUSE-CAASP-4.5-Updates for sle-15-aarch64","enabled":true,"id":4916,"distro_target":"sle-15-aarch64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SUSE-CAASP/4.5/aarch64/update/"},{"description":"SUSE-CAASP-4.5-Debuginfo-Updates for sle-15-aarch64","installer_updates":false,"name":"SUSE-CAASP-4.5-Debuginfo-Updates","url":"https://updates.suse.com/SUSE/Updates/SUSE-CAASP/4.5/aarch64/update_debug/","distro_target":"sle-15-aarch64","autorefresh":true,"id":4917,"enabled":false},{"autorefresh":false,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Products/SUSE-CAASP/4.5/aarch64/product/","enabled":true,"id":4918,"description":"SUSE-CAASP-4.5-Pool for sle-15-aarch64","name":"SUSE-CAASP-4.5-Pool","installer_updates":false},{"description":"SUSE-CAASP-4.5-Debuginfo-Pool for sle-15-aarch64","installer_updates":false,"name":"SUSE-CAASP-4.5-Debuginfo-Pool","url":"https://updates.suse.com/SUSE/Products/SUSE-CAASP/4.5/aarch64/product_debug/","distro_target":"sle-15-aarch64","autorefresh":false,"id":4919,"enabled":false},{"description":"SUSE-CAASP-4.5-Source-Pool for sle-15-aarch64","name":"SUSE-CAASP-4.5-Source-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SUSE-CAASP/4.5/aarch64/product_source/","autorefresh":false,"distro_target":"sle-15-aarch64","id":4920,"enabled":false}],"online_predecessor_ids":[],"product_class":"CAASP_ARM64","cpe":"cpe:/o:suse:caasp:4.5","product_type":"extension","description":"SUSE CaaS Platform is a Kubernetes-based container management solution used by application development and DevOps teams to more easily and efficiently deploy and manage containerized applications and services. Enterprises use SUSE CaaS Platform to reduce application delivery cycle times and improve business agility. Focused on providing an exceptional platform operator experience, SUSE CaaS Platform delivers Kubernetes innovations in a complete, enterprise grade solution that enables IT to deliver the power of Kubernetes to users more quickly, consistently, and cost-effectively.","shortname":"SUSE CaaS Platform 4.5","free":false,"eula_url":"","arch":"aarch64","friendly_version":"4.5","extensions":[],"id":2199,"release_stage":"released","identifier":"caasp","recommended":false,"version":"4.5","name":"SUSE CaaS Platform","offline_predecessor_ids":[],"friendly_name":"SUSE CaaS Platform 4.5 aarch64","migration_extra":false,"release_type":null,"former_identifier":"caasp"}],"friendly_version":"15 SP2"},{"offline_predecessor_ids":[],"name":"Desktop Applications Module","release_type":null,"former_identifier":"sle-module-desktop-applications","friendly_name":"Desktop Applications Module 15 SP2 aarch64","migration_extra":true,"recommended":false,"version":"15.2","extensions":[{"predecessor_ids":[1598,1791],"product_class":"MODULE","online_predecessor_ids":[1598,1791],"repositories":[{"installer_updates":false,"name":"SLE-Module-DevTools15-SP2-Updates","description":"SLE-Module-DevTools15-SP2-Updates for sle-15-aarch64","enabled":true,"id":4121,"distro_target":"sle-15-aarch64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15-SP2/aarch64/update/"},{"description":"SLE-Module-DevTools15-SP2-Debuginfo-Updates for sle-15-aarch64","installer_updates":false,"name":"SLE-Module-DevTools15-SP2-Debuginfo-Updates","distro_target":"sle-15-aarch64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15-SP2/aarch64/update_debug/","enabled":false,"id":4122},{"description":"SLE-Module-DevTools15-SP2-Pool for sle-15-aarch64","name":"SLE-Module-DevTools15-SP2-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP2/aarch64/product/","autorefresh":false,"distro_target":"sle-15-aarch64","id":4123,"enabled":true},{"installer_updates":false,"name":"SLE-Module-DevTools15-SP2-Debuginfo-Pool","description":"SLE-Module-DevTools15-SP2-Debuginfo-Pool for sle-15-aarch64","enabled":false,"id":4124,"distro_target":"sle-15-aarch64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP2/aarch64/product_debug/"},{"installer_updates":false,"name":"SLE-Module-DevTools15-SP2-Source-Pool","description":"SLE-Module-DevTools15-SP2-Source-Pool for sle-15-aarch64","enabled":false,"id":4125,"distro_target":"sle-15-aarch64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP2/aarch64/product_source/"}],"cpe":"cpe:/o:suse:sle-module-development-tools:15:sp2","product_type":"module","shortname":"Development-Tools-Module","description":"

The Development Tools Module helps you developing applications for SUSE Linux Enterprise 15.

Access to the Development Tools Module is included in your SUSE Linux Enterprise product subscription. The module has a different lifecycle than SUSE Linux Enterprise itself.

","free":true,"eula_url":"","arch":"aarch64","friendly_version":"15 SP2","extensions":[{"shortname":"NVIDIA-Compute-Module","description":"NVIDIA Compute Drivers - NVIDIA CUDA This Module contains software under the terms and conditions of a 3rd party EULA (End User License Agreement). The EULA can be found at https://docs.nvidia.com/cuda/eula/index.html. By using this software you agree to fully comply with the terms and conditions of the EULA. If you do not agree to the terms and conditions of the EULA, do not use the software.","free":true,"arch":"aarch64","eula_url":"https://updates.suse.com/SUSE/Products/SLE-Module-NVIDIA-Compute/15/aarch64/product.license/","online_predecessor_ids":[],"product_class":"MODULE","repositories":[{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-NVIDIA-Compute/15/aarch64/update/","autorefresh":true,"distro_target":"sle-15-aarch64","id":4560,"enabled":true,"description":"SLE-Module-NVIDIA-Compute-15-Updates for sle-15-aarch64","name":"SLE-Module-NVIDIA-Compute-15-Updates","installer_updates":false},{"description":"SLE-Module-NVIDIA-Compute-15-Pool for sle-15-aarch64","installer_updates":false,"name":"SLE-Module-NVIDIA-Compute-15-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-NVIDIA-Compute/15/aarch64/product/","distro_target":"sle-15-aarch64","autorefresh":false,"id":4561,"enabled":true},{"id":4562,"enabled":true,"url":"https://developer.download.nvidia.com/compute/cuda/repos/sles15/sbsa/","distro_target":null,"autorefresh":true,"installer_updates":false,"name":"NVIDIA-Compute-SLE-15","description":"NVIDIA-Compute-SLE-15"}],"predecessor_ids":[],"cpe":"cpe:/o:suse:sle-module-nvidia-compute:15","product_type":"module","version":"15","recommended":false,"friendly_name":"NVIDIA Compute Module 15 aarch64","migration_extra":false,"release_type":null,"former_identifier":"sle-module-NVIDIA-compute","name":"NVIDIA Compute Module","offline_predecessor_ids":[],"friendly_version":"15","identifier":"sle-module-NVIDIA-compute","release_stage":"released","id":2130,"extensions":[]}],"release_stage":"released","identifier":"sle-module-development-tools","id":1968,"recommended":false,"version":"15.2","name":"Development Tools Module","offline_predecessor_ids":[1376,1633,1889],"migration_extra":true,"friendly_name":"Development Tools Module 15 SP2 aarch64","former_identifier":"sle-sdk","release_type":null}],"id":1964,"release_stage":"released","identifier":"sle-module-desktop-applications","friendly_version":"15 SP2","eula_url":"","arch":"aarch64","free":true,"description":"

The SUSE Linux Enterprise Desktop Applications Module delivers a basic set of Desktop functionality.

Access to the Desktop Applications Module is included in your SUSE Linux Enterprise product subscription.

","shortname":"Desktop-Applications-Module","product_type":"module","cpe":"cpe:/o:suse:sle-module-desktop-applications:15:sp2","predecessor_ids":[1595,1773],"repositories":[{"autorefresh":true,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15-SP2/aarch64/update/","enabled":true,"id":4101,"description":"SLE-Module-Desktop-Applications15-SP2-Updates for sle-15-aarch64","name":"SLE-Module-Desktop-Applications15-SP2-Updates","installer_updates":false},{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15-SP2/aarch64/update_debug/","distro_target":"sle-15-aarch64","autorefresh":true,"id":4102,"enabled":false,"description":"SLE-Module-Desktop-Applications15-SP2-Debuginfo-Updates for sle-15-aarch64","installer_updates":false,"name":"SLE-Module-Desktop-Applications15-SP2-Debuginfo-Updates"},{"name":"SLE-Module-Desktop-Applications15-SP2-Pool","installer_updates":false,"description":"SLE-Module-Desktop-Applications15-SP2-Pool for sle-15-aarch64","enabled":true,"id":4103,"autorefresh":false,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP2/aarch64/product/"},{"enabled":false,"id":4104,"distro_target":"sle-15-aarch64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP2/aarch64/product_debug/","installer_updates":false,"name":"SLE-Module-Desktop-Applications15-SP2-Debuginfo-Pool","description":"SLE-Module-Desktop-Applications15-SP2-Debuginfo-Pool for sle-15-aarch64"},{"autorefresh":false,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP2/aarch64/product_source/","enabled":false,"id":4105,"description":"SLE-Module-Desktop-Applications15-SP2-Source-Pool for sle-15-aarch64","name":"SLE-Module-Desktop-Applications15-SP2-Source-Pool","installer_updates":false}],"online_predecessor_ids":[1595,1773],"product_class":"MODULE"},{"online_predecessor_ids":[1864],"product_class":"MODULE","repositories":[{"id":4226,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Python2/15-SP2/aarch64/update/","distro_target":"sle-15-aarch64","autorefresh":true,"installer_updates":false,"name":"SLE-Module-Python2-15-SP2-Updates","description":"SLE-Module-Python2-15-SP2-Updates for sle-15-aarch64"},{"name":"SLE-Module-Python2-15-SP2-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-Python2-15-SP2-Debuginfo-Updates for sle-15-aarch64","id":4227,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Python2/15-SP2/aarch64/update_debug/","autorefresh":true,"distro_target":"sle-15-aarch64"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Python2/15-SP2/aarch64/product/","autorefresh":false,"distro_target":"sle-15-aarch64","id":4228,"enabled":true,"description":"SLE-Module-Python2-15-SP2-Pool for sle-15-aarch64","name":"SLE-Module-Python2-15-SP2-Pool","installer_updates":false},{"enabled":false,"id":4229,"distro_target":"sle-15-aarch64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Python2/15-SP2/aarch64/product_debug/","installer_updates":false,"name":"SLE-Module-Python2-15-SP2-Debuginfo-Pool","description":"SLE-Module-Python2-15-SP2-Debuginfo-Pool for sle-15-aarch64"},{"name":"SLE-Module-Python2-15-SP2-Source-Pool","installer_updates":false,"description":"SLE-Module-Python2-15-SP2-Source-Pool for sle-15-aarch64","id":4230,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Python2/15-SP2/aarch64/product_source/","autorefresh":false,"distro_target":"sle-15-aarch64"}],"predecessor_ids":[1864],"cpe":"cpe:/o:suse:sle-module-python2:15:sp2","product_type":"module","shortname":"Python2-Module","description":"

This module contains the python 2 packages.

Access to the Python 2 Module is included in your SUSE Linux Enterprise subscription. The module has a different lifecycle than SUSE Linux Enterprise itself. Packages in the this module are usually supported for at most three years.

","free":true,"arch":"aarch64","eula_url":"","friendly_version":"15 SP2","release_stage":"released","identifier":"sle-module-python2","id":1989,"extensions":[],"version":"15.2","recommended":false,"friendly_name":"Python 2 Module 15 SP2 aarch64","migration_extra":false,"release_type":null,"former_identifier":"sle-module-python2","name":"Python 2 Module","offline_predecessor_ids":[]},{"friendly_version":"15 SP2","extensions":[],"release_stage":"released","id":1995,"identifier":"sle-module-transactional-server","recommended":false,"version":"15.2","name":"Transactional Server Module","offline_predecessor_ids":[],"friendly_name":"Transactional Server Module 15 SP2 aarch64","migration_extra":false,"former_identifier":"sle-module-transactional-server","release_type":null,"predecessor_ids":[1822],"online_predecessor_ids":[1822],"repositories":[{"id":4256,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Transactional-Server/15-SP2/aarch64/update/","distro_target":"sle-15-aarch64","autorefresh":true,"installer_updates":false,"name":"SLE-Module-Transactional-Server15-SP2-Updates","description":"SLE-Module-Transactional-Server15-SP2-Updates for sle-15-aarch64"},{"description":"SLE-Module-Transactional-Server15-SP2-Debuginfo-Updates for sle-15-aarch64","name":"SLE-Module-Transactional-Server15-SP2-Debuginfo-Updates","installer_updates":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Transactional-Server/15-SP2/aarch64/update_debug/","autorefresh":true,"distro_target":"sle-15-aarch64","id":4257,"enabled":false},{"name":"SLE-Module-Transactional-Server15-SP2-Pool","installer_updates":false,"description":"SLE-Module-Transactional-Server15-SP2-Pool for sle-15-aarch64","id":4258,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Transactional-Server/15-SP2/aarch64/product/","autorefresh":false,"distro_target":"sle-15-aarch64"},{"installer_updates":false,"name":"SLE-Module-Transactional-Server15-SP2-Debuginfo-Pool","description":"SLE-Module-Transactional-Server15-SP2-Debuginfo-Pool for sle-15-aarch64","id":4259,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Transactional-Server/15-SP2/aarch64/product_debug/","distro_target":"sle-15-aarch64","autorefresh":false},{"id":4260,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Transactional-Server/15-SP2/aarch64/product_source/","autorefresh":false,"distro_target":"sle-15-aarch64","name":"SLE-Module-Transactional-Server15-SP2-Source-Pool","installer_updates":false,"description":"SLE-Module-Transactional-Server15-SP2-Source-Pool for sle-15-aarch64"}],"product_class":"MODULE","cpe":"cpe:/o:suse:sle-module-transactional-server:15:sp2","product_type":"module","description":"

Transactional Updates provide SUSE Linux Enterprise systems with a method of updating the operating system and its packages in an entirely ‘atomic’ way. Updates are either applied to the system all together in a single transaction, or not at all. This happens without influencing the running system. If an update fails, or if the successful update is deemed to be incompatible or otherwise incorrect, it can be discarded to immediately return the system to its previous functioning state.

Access to theTransactional Server Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself: Package versions in the this module are usually supported for at most three years. We are planning to release more recent versions on a schedule of approximately 18 month; the exact dates may differ per package.

","shortname":"Transactional-Server-Module","free":true,"eula_url":"","arch":"aarch64"}],"release_stage":"released","identifier":"sle-module-basesystem","id":1943,"friendly_version":"15 SP2","offline_predecessor_ids":[1522],"name":"Basesystem Module","former_identifier":"sle-module-basesystem","release_type":null,"friendly_name":"Basesystem Module 15 SP2 aarch64","migration_extra":false,"recommended":true,"version":"15.2"},{"predecessor_ids":[],"online_predecessor_ids":[],"repositories":[{"id":5452,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-SLES/15-SP2-LTSS/aarch64/update/","autorefresh":true,"distro_target":"sle-15-aarch64","name":"SLE-Product-SLES15-SP2-LTSS-Updates","installer_updates":false,"description":"SLE-Product-SLES15-SP2-LTSS-Updates for sle-15-aarch64"},{"name":"SLE-Product-SLES15-SP2-Debuginfo-LTSS-Updates","installer_updates":false,"description":"SLE-Product-SLES15-SP2-Debuginfo-LTSS-Updates for sle-15-aarch64","enabled":false,"id":5453,"autorefresh":true,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Updates/SLE-Product-SLES/15-SP2-LTSS/aarch64/update_debug/"}],"product_class":"SLES15-SP2-LTSS-ARM64","cpe":"cpe:/o:suse:sles-ltss:15:sp2","product_type":"extension","shortname":"SLES15-SP2-LTSS","description":"SUSE Linux Enterprise offers a comprehensive suite of products built on a single code base. The platform addresses business needs from the smallest thin-client devices to the world's most powerful high-performance computing and mainframe servers. SUSE Linux Enterprise offers common management tools and technology certifications across the platform, and each product is enterprise-class.","free":false,"eula_url":"","arch":"aarch64","friendly_version":"15 SP2","extensions":[],"identifier":"SLES-LTSS","release_stage":"released","id":2372,"recommended":false,"version":"15.2","name":"SUSE Linux Enterprise Server LTSS","offline_predecessor_ids":[],"friendly_name":"SUSE Linux Enterprise Server LTSS 15 SP2 aarch64","migration_extra":false,"former_identifier":"SLES-LTSS","release_type":null}],"release_stage":"released","id":1936,"identifier":"SLES","friendly_version":"15 SP2"},{"friendly_version":"15 SP2","release_stage":"released","id":1937,"identifier":"SLES","extensions":[{"cpe":"cpe:/o:suse:sle-module-basesystem:15:sp2","product_type":"module","predecessor_ids":[1588,1770],"online_predecessor_ids":[1588,1770],"repositories":[{"name":"SLE-Module-Basesystem15-SP2-Updates","installer_updates":false,"description":"SLE-Module-Basesystem15-SP2-Updates for sle-15-ppc64le","id":3989,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15-SP2/ppc64le/update/","autorefresh":true,"distro_target":"sle-15-ppc64le"},{"name":"SLE-Module-Basesystem15-SP2-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-Basesystem15-SP2-Debuginfo-Updates for sle-15-ppc64le","enabled":false,"id":3990,"autorefresh":true,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15-SP2/ppc64le/update_debug/"},{"description":"SLE-Module-Basesystem15-SP2-Pool for sle-15-ppc64le","name":"SLE-Module-Basesystem15-SP2-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP2/ppc64le/product/","enabled":true,"id":3991},{"installer_updates":false,"name":"SLE-Module-Basesystem15-SP2-Debuginfo-Pool","description":"SLE-Module-Basesystem15-SP2-Debuginfo-Pool for sle-15-ppc64le","id":3992,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP2/ppc64le/product_debug/","distro_target":"sle-15-ppc64le","autorefresh":false},{"description":"SLE-Module-Basesystem15-SP2-Source-Pool for sle-15-ppc64le","name":"SLE-Module-Basesystem15-SP2-Source-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP2/ppc64le/product_source/","autorefresh":false,"distro_target":"sle-15-ppc64le","id":3993,"enabled":false}],"product_class":"MODULE","eula_url":"","arch":"ppc64le","shortname":"Basesystem-Module","description":"

The SUSE Linux Enterprise Basesystem Module delivers the base system of the product.

","free":true,"extensions":[{"release_stage":"released","id":1948,"identifier":"PackageHub","extensions":[],"friendly_version":"15 SP2","migration_extra":false,"friendly_name":"SUSE Package Hub 15 SP2 ppc64le","former_identifier":"PackageHub","release_type":null,"name":"SUSE Package Hub","offline_predecessor_ids":[1811,1913],"version":"15.2","recommended":false,"cpe":"cpe:/o:suse:packagehub:15:sp2","product_type":"extension","online_predecessor_ids":[1741,1869],"product_class":"MODULE","repositories":[{"enabled":true,"id":4012,"autorefresh":false,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Backports/SLE-15-SP2_ppc64le/standard/","name":"SUSE-PackageHub-15-SP2-Backports-Pool","installer_updates":false,"description":"SUSE-PackageHub-15-SP2-Backports-Pool for sle-15-ppc64le"},{"description":"SUSE-PackageHub-15-SP2-Backports-Debuginfo for sle-15-ppc64le","name":"SUSE-PackageHub-15-SP2-Backports-Debuginfo","installer_updates":false,"url":"https://updates.suse.com/SUSE/Backports/SLE-15-SP2_ppc64le/standard_debug/","autorefresh":true,"distro_target":"sle-15-ppc64le","id":4013,"enabled":false},{"description":"SLE-Module-Packagehub-Subpackages15-SP2-Updates for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-Packagehub-Subpackages15-SP2-Updates","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP2/ppc64le/update/","distro_target":"sle-15-ppc64le","autorefresh":true,"id":4014,"enabled":true},{"installer_updates":false,"name":"SLE-Module-Packagehub-Subpackages15-SP2-Debuginfo-Updates","description":"SLE-Module-Packagehub-Subpackages15-SP2-Debuginfo-Updates for sle-15-ppc64le","enabled":false,"id":4015,"distro_target":"sle-15-ppc64le","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP2/ppc64le/update_debug/"},{"description":"SUSE-PackageHub-15-SP2-Pool for sle-15-ppc64le","installer_updates":false,"name":"SUSE-PackageHub-15-SP2-Pool","url":"https://updates.suse.com/SUSE/Backports/SLE-15-SP2_ppc64le/product/","distro_target":"sle-15-ppc64le","autorefresh":false,"id":4016,"enabled":true},{"name":"SLE-Module-Packagehub-Subpackages15-SP2-Pool","installer_updates":false,"description":"SLE-Module-Packagehub-Subpackages15-SP2-Pool for sle-15-ppc64le","enabled":true,"id":4017,"autorefresh":false,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP2/ppc64le/product/"},{"enabled":false,"id":4018,"autorefresh":false,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP2/ppc64le/product_debug/","name":"SLE-Module-Packagehub-Subpackages15-SP2-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-Packagehub-Subpackages15-SP2-Debuginfo-Pool for sle-15-ppc64le"},{"installer_updates":false,"name":"SLE-Module-Packagehub-Subpackages15-SP2-Source-Pool","description":"SLE-Module-Packagehub-Subpackages15-SP2-Source-Pool for sle-15-ppc64le","enabled":false,"id":4019,"distro_target":"sle-15-ppc64le","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP2/ppc64le/product_source/"}],"predecessor_ids":[1741,1869],"arch":"ppc64le","eula_url":"","description":"SUSE Package Hub is a free of charge extension providing access to community maintained packages built to run on SUSE Linux Enterprise Server. Built from the same sources used in the openSUSE distributions, these quality packages provide additional software to what is found in the SUSE Linux Enterprise Server product. Packages from the Package Hub are delivered without L3 support from SUSE. General updates and fixes to the packages in SUSE Package Hub are provided by the openSUSE community based on their discretion, though SUSE will monitor and ensure that any known critical security issues will be addressed. Packages in the Package Hub are approved by SUSE for use with SUSE Linux Enterprise Server 15-SP2 and to not interfere with the supportability of SUSE Linux Enterprise Server, its modules and extensions. For more information about SUSE Package Hub please visit https://packagehub.suse.com.","shortname":"SUSE-PackageHub-15","free":true},{"online_predecessor_ids":[1600,1778],"product_class":"MODULE","repositories":[{"installer_updates":false,"name":"SLE-Module-Server-Applications15-SP2-Updates","description":"SLE-Module-Server-Applications15-SP2-Updates for sle-15-ppc64le","id":4046,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15-SP2/ppc64le/update/","distro_target":"sle-15-ppc64le","autorefresh":true},{"id":4047,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15-SP2/ppc64le/update_debug/","distro_target":"sle-15-ppc64le","autorefresh":true,"installer_updates":false,"name":"SLE-Module-Server-Applications15-SP2-Debuginfo-Updates","description":"SLE-Module-Server-Applications15-SP2-Debuginfo-Updates for sle-15-ppc64le"},{"description":"SLE-Module-Server-Applications15-SP2-Pool for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-Server-Applications15-SP2-Pool","distro_target":"sle-15-ppc64le","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP2/ppc64le/product/","enabled":true,"id":4048},{"name":"SLE-Module-Server-Applications15-SP2-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-Server-Applications15-SP2-Debuginfo-Pool for sle-15-ppc64le","id":4049,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP2/ppc64le/product_debug/","autorefresh":false,"distro_target":"sle-15-ppc64le"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP2/ppc64le/product_source/","distro_target":"sle-15-ppc64le","autorefresh":false,"id":4050,"enabled":false,"description":"SLE-Module-Server-Applications15-SP2-Source-Pool for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-Server-Applications15-SP2-Source-Pool"}],"predecessor_ids":[1600,1778],"product_type":"module","cpe":"cpe:/o:suse:sle-module-server-applications:15:sp2","free":true,"shortname":"Server-Applications-Module","description":"

The SUSE Linux Enterprise Server Applications Module delivers a basic set of Server functionality.

Access to the Server Applications Module is included in your SUSE Linux Enterprise Server subscription.

","arch":"ppc64le","eula_url":"","friendly_version":"15 SP2","identifier":"sle-module-server-applications","release_stage":"released","id":1953,"extensions":[{"former_identifier":"sle-ha","release_type":null,"friendly_name":"SUSE Linux Enterprise High Availability Extension 15 SP2 ppc64le","migration_extra":false,"offline_predecessor_ids":[1635,1882],"name":"SUSE Linux Enterprise High Availability Extension","version":"15.2","recommended":false,"identifier":"sle-ha","release_stage":"released","id":1957,"extensions":[],"friendly_version":"15 SP2","arch":"ppc64le","eula_url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP2/ppc64le/product.license/","free":false,"shortname":"SLEHA15-SP2","description":"SUSE Linux High Availability Extension provides mature, industry-leading open-source high-availability clustering technologies that are easy to set up and use. It can be deployed in physical and/or virtual environments, and can cluster physical servers, virtual servers, or any combination of the two to suit your business’ needs.","product_type":"extension","cpe":"cpe:/o:suse:sle-ha:15:sp2","repositories":[{"installer_updates":false,"name":"SLE-Product-HA15-SP2-Updates","description":"SLE-Product-HA15-SP2-Updates for sle-15-ppc64le","enabled":true,"id":4066,"distro_target":"sle-15-ppc64le","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-HA/15-SP2/ppc64le/update/"},{"description":"SLE-Product-HA15-SP2-Debuginfo-Updates for sle-15-ppc64le","name":"SLE-Product-HA15-SP2-Debuginfo-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Updates/SLE-Product-HA/15-SP2/ppc64le/update_debug/","enabled":false,"id":4067},{"description":"SLE-Product-HA15-SP2-Pool for sle-15-ppc64le","installer_updates":false,"name":"SLE-Product-HA15-SP2-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP2/ppc64le/product/","distro_target":"sle-15-ppc64le","autorefresh":false,"id":4068,"enabled":true},{"description":"SLE-Product-HA15-SP2-Debuginfo-Pool for sle-15-ppc64le","name":"SLE-Product-HA15-SP2-Debuginfo-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP2/ppc64le/product_debug/","autorefresh":false,"distro_target":"sle-15-ppc64le","id":4069,"enabled":false},{"installer_updates":false,"name":"SLE-Product-HA15-SP2-Source-Pool","description":"SLE-Product-HA15-SP2-Source-Pool for sle-15-ppc64le","id":4070,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP2/ppc64le/product_source/","distro_target":"sle-15-ppc64le","autorefresh":false}],"online_predecessor_ids":[1606,1783],"product_class":"SLE-HAE-PPC","predecessor_ids":[1606,1783]},{"recommended":false,"version":"15.2","name":"Web and Scripting Module","offline_predecessor_ids":[1151],"friendly_name":"Web and Scripting Module 15 SP2 ppc64le","migration_extra":true,"release_type":null,"former_identifier":"sle-module-web-scripting","friendly_version":"15 SP2","extensions":[],"release_stage":"released","identifier":"sle-module-web-scripting","id":1974,"shortname":"Web-Scripting-Module","description":"

The SUSE Linux Enterprise Web and Scripting Module should contains additional packages that are helpful when running a webserver.

Access to the Web and Scripting Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself: Package versions in this module are usually supported for at most three years. We are planning to release more recent versions on a schedule of approximately 18 month; the exact dates may differ per package.

","free":true,"eula_url":"","arch":"ppc64le","predecessor_ids":[1719,1796],"online_predecessor_ids":[1719,1796],"repositories":[{"autorefresh":true,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/15-SP2/ppc64le/update/","enabled":true,"id":4151,"description":"SLE-Module-Web-Scripting15-SP2-Updates for sle-15-ppc64le","name":"SLE-Module-Web-Scripting15-SP2-Updates","installer_updates":false},{"installer_updates":false,"name":"SLE-Module-Web-Scripting15-SP2-Debuginfo-Updates","description":"SLE-Module-Web-Scripting15-SP2-Debuginfo-Updates for sle-15-ppc64le","id":4152,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/15-SP2/ppc64le/update_debug/","distro_target":"sle-15-ppc64le","autorefresh":true},{"description":"SLE-Module-Web-Scripting15-SP2-Pool for sle-15-ppc64le","name":"SLE-Module-Web-Scripting15-SP2-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP2/ppc64le/product/","enabled":true,"id":4153},{"id":4154,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP2/ppc64le/product_debug/","autorefresh":false,"distro_target":"sle-15-ppc64le","name":"SLE-Module-Web-Scripting15-SP2-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-Web-Scripting15-SP2-Debuginfo-Pool for sle-15-ppc64le"},{"id":4155,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP2/ppc64le/product_source/","autorefresh":false,"distro_target":"sle-15-ppc64le","name":"SLE-Module-Web-Scripting15-SP2-Source-Pool","installer_updates":false,"description":"SLE-Module-Web-Scripting15-SP2-Source-Pool for sle-15-ppc64le"}],"product_class":"MODULE","cpe":"cpe:/o:suse:sle-module-web-scripting:15:sp2","product_type":"module"},{"identifier":"sle-module-legacy","release_stage":"released","id":1980,"extensions":[],"friendly_version":"15 SP2","release_type":null,"former_identifier":"sle-module-legacy","migration_extra":true,"friendly_name":"Legacy Module 15 SP2 ppc64le","offline_predecessor_ids":[1148],"name":"Legacy Module","version":"15.2","recommended":false,"product_type":"module","cpe":"cpe:/o:suse:sle-module-legacy:15:sp2","repositories":[{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/15-SP2/ppc64le/update/","autorefresh":true,"distro_target":"sle-15-ppc64le","id":4181,"enabled":true,"description":"SLE-Module-Legacy15-SP2-Updates for sle-15-ppc64le","name":"SLE-Module-Legacy15-SP2-Updates","installer_updates":false},{"name":"SLE-Module-Legacy15-SP2-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-Legacy15-SP2-Debuginfo-Updates for sle-15-ppc64le","enabled":false,"id":4182,"autorefresh":true,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/15-SP2/ppc64le/update_debug/"},{"enabled":true,"id":4183,"distro_target":"sle-15-ppc64le","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15-SP2/ppc64le/product/","installer_updates":false,"name":"SLE-Module-Legacy15-SP2-Pool","description":"SLE-Module-Legacy15-SP2-Pool for sle-15-ppc64le"},{"installer_updates":false,"name":"SLE-Module-Legacy15-SP2-Debuginfo-Pool","description":"SLE-Module-Legacy15-SP2-Debuginfo-Pool for sle-15-ppc64le","id":4184,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15-SP2/ppc64le/product_debug/","distro_target":"sle-15-ppc64le","autorefresh":false},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15-SP2/ppc64le/product_source/","autorefresh":false,"distro_target":"sle-15-ppc64le","id":4185,"enabled":false,"description":"SLE-Module-Legacy15-SP2-Source-Pool for sle-15-ppc64le","name":"SLE-Module-Legacy15-SP2-Source-Pool","installer_updates":false}],"online_predecessor_ids":[1603,1802],"product_class":"MODULE","predecessor_ids":[1603,1802],"arch":"ppc64le","eula_url":"","free":true,"description":"

The Legacy Module helps you migrating applications from SUSE Linux Enterprise 12 and other systems to SUSE Linux Enterprise 15, by providing packages which are discontinued on SUSE Linux Enterprise Server, such as: ntp, IBM Java 8, and a number of libraries.

Access to the Legacy Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself. Packages in the this module are usually supported for at most three years.

","shortname":"Legacy-Module"},{"identifier":"sle-module-public-cloud","release_stage":"released","id":1986,"extensions":[],"friendly_version":"15 SP2","migration_extra":false,"friendly_name":"Public Cloud Module 15 SP2 ppc64le","release_type":null,"former_identifier":"sle-module-public-cloud","name":"Public Cloud Module","offline_predecessor_ids":[1218],"version":"15.2","recommended":false,"cpe":"cpe:/o:suse:sle-module-public-cloud:15:sp2","product_type":"module","product_class":"MODULE","online_predecessor_ids":[1616,1806],"repositories":[{"autorefresh":true,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/15-SP2/ppc64le/update/","enabled":true,"id":4211,"description":"SLE-Module-Public-Cloud15-SP2-Updates for sle-15-ppc64le","name":"SLE-Module-Public-Cloud15-SP2-Updates","installer_updates":false},{"id":4212,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/15-SP2/ppc64le/update_debug/","distro_target":"sle-15-ppc64le","autorefresh":true,"installer_updates":false,"name":"SLE-Module-Public-Cloud15-SP2-Debuginfo-Updates","description":"SLE-Module-Public-Cloud15-SP2-Debuginfo-Updates for sle-15-ppc64le"},{"installer_updates":false,"name":"SLE-Module-Public-Cloud15-SP2-Pool","description":"SLE-Module-Public-Cloud15-SP2-Pool for sle-15-ppc64le","enabled":true,"id":4213,"distro_target":"sle-15-ppc64le","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP2/ppc64le/product/"},{"distro_target":"sle-15-ppc64le","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP2/ppc64le/product_debug/","enabled":false,"id":4214,"description":"SLE-Module-Public-Cloud15-SP2-Debuginfo-Pool for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-Public-Cloud15-SP2-Debuginfo-Pool"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP2/ppc64le/product_source/","distro_target":"sle-15-ppc64le","autorefresh":false,"id":4215,"enabled":false,"description":"SLE-Module-Public-Cloud15-SP2-Source-Pool for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-Public-Cloud15-SP2-Source-Pool"}],"predecessor_ids":[1616,1806],"arch":"ppc64le","eula_url":"","description":"

The Public Cloud Module is a collection of tools that enables you to create and manage cloud images from the commandline on SUSE Linux Enterprise Server. When building your own images with KIWI or SUSE Studio, initialization code specific to the target cloud is included in that image.

Access to the Public Cloud Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself; please check the Release Notes for further details.

","shortname":"Public-Cloud-Module","free":true},{"predecessor_ids":[],"online_predecessor_ids":[],"product_class":"MODULE","repositories":[{"installer_updates":false,"name":"IBM-POWER-Adv-Toolchain","description":"IBM-POWER-Adv-Toolchain","id":4430,"enabled":true,"url":"https://public.dhe.ibm.com/software/server/POWER/Linux/toolchain/at/suse/SLES_15/","distro_target":null,"autorefresh":true}],"product_type":"extension","cpe":"cpe:/o:suse:ibm-power-advance-toolchain:15","free":true,"description":"IBM POWER Advance Toolchain for SLE 15","shortname":"IBMPWAT15","eula_url":"","arch":"ppc64le","friendly_version":"15","extensions":[],"release_stage":"released","identifier":"ibm-power-advance-toolchain","id":2076,"recommended":false,"version":"15","offline_predecessor_ids":[1249],"name":"IBM POWER Advance Toolchain for SLE","release_type":null,"former_identifier":"ibm-power-advance-toolchain","migration_extra":false,"friendly_name":"IBM POWER Advance Toolchain for SLE 15 ppc64le"},{"description":"IBM POWER Tools for SLE 15","shortname":"IBMPWUT15","free":true,"arch":"ppc64le","eula_url":"https://public.dhe.ibm.com/software/server/POWER/Linux/yum/OSS/SLES/15/ppc64le.license/","repositories":[{"distro_target":null,"autorefresh":true,"url":"https://public.dhe.ibm.com/software/server/POWER/Linux/yum/OSS/SLES/15/ppc64le/","enabled":true,"id":4431,"description":"IBM-POWER-Tools","installer_updates":false,"name":"IBM-POWER-Tools"}],"online_predecessor_ids":[],"product_class":"MODULE","predecessor_ids":[],"cpe":"cpe:/o:suse:ibm-power-tools:15","product_type":"extension","version":"15","recommended":false,"friendly_name":"IBM POWER Tools for SLE 15 ppc64le","migration_extra":false,"former_identifier":"ibm-power-tools","release_type":null,"name":"IBM POWER Tools for SLE","offline_predecessor_ids":[1250],"friendly_version":"15","id":2077,"release_stage":"released","identifier":"ibm-power-tools","extensions":[]}],"version":"15.2","recommended":true,"release_type":null,"former_identifier":"sle-module-server-applications","migration_extra":false,"friendly_name":"Server Applications Module 15 SP2 ppc64le","offline_predecessor_ids":[],"name":"Server Applications Module"},{"friendly_version":"15 SP2","release_stage":"released","identifier":"sle-module-containers","id":1961,"extensions":[],"version":"15.2","recommended":false,"friendly_name":"Containers Module 15 SP2 ppc64le","migration_extra":false,"former_identifier":"sle-module-containers","release_type":null,"name":"Containers Module","offline_predecessor_ids":[1353],"online_predecessor_ids":[1640,1788],"product_class":"MODULE","repositories":[{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/15-SP2/ppc64le/update/","autorefresh":true,"distro_target":"sle-15-ppc64le","id":4086,"enabled":true,"description":"SLE-Module-Containers15-SP2-Updates for sle-15-ppc64le","name":"SLE-Module-Containers15-SP2-Updates","installer_updates":false},{"description":"SLE-Module-Containers15-SP2-Debuginfo-Updates for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-Containers15-SP2-Debuginfo-Updates","distro_target":"sle-15-ppc64le","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/15-SP2/ppc64le/update_debug/","enabled":false,"id":4087},{"autorefresh":false,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP2/ppc64le/product/","enabled":true,"id":4088,"description":"SLE-Module-Containers15-SP2-Pool for sle-15-ppc64le","name":"SLE-Module-Containers15-SP2-Pool","installer_updates":false},{"description":"SLE-Module-Containers15-SP2-Debuginfo-Pool for sle-15-ppc64le","name":"SLE-Module-Containers15-SP2-Debuginfo-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP2/ppc64le/product_debug/","enabled":false,"id":4089},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP2/ppc64le/product_source/","distro_target":"sle-15-ppc64le","autorefresh":false,"id":4090,"enabled":false,"description":"SLE-Module-Containers15-SP2-Source-Pool for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-Containers15-SP2-Source-Pool"}],"predecessor_ids":[1640,1788],"cpe":"cpe:/o:suse:sle-module-containers:15:sp2","product_type":"module","description":"

This Module contains several packages revolving around containers and related tools.

","shortname":"Containers-Module","free":true,"arch":"ppc64le","eula_url":""},{"name":"Desktop Applications Module","offline_predecessor_ids":[],"migration_extra":true,"friendly_name":"Desktop Applications Module 15 SP2 ppc64le","release_type":null,"former_identifier":"sle-module-desktop-applications","recommended":false,"version":"15.2","extensions":[{"name":"Development Tools Module","offline_predecessor_ids":[1339,1631,1890],"migration_extra":true,"friendly_name":"Development Tools Module 15 SP2 ppc64le","former_identifier":"sle-sdk","release_type":null,"recommended":false,"version":"15.2","extensions":[],"id":1969,"release_stage":"released","identifier":"sle-module-development-tools","friendly_version":"15 SP2","eula_url":"","arch":"ppc64le","shortname":"Development-Tools-Module","description":"

The Development Tools Module helps you developing applications for SUSE Linux Enterprise 15.

Access to the Development Tools Module is included in your SUSE Linux Enterprise product subscription. The module has a different lifecycle than SUSE Linux Enterprise itself.

","free":true,"cpe":"cpe:/o:suse:sle-module-development-tools:15:sp2","product_type":"module","predecessor_ids":[1597,1792],"product_class":"MODULE","online_predecessor_ids":[1597,1792],"repositories":[{"id":4126,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15-SP2/ppc64le/update/","autorefresh":true,"distro_target":"sle-15-ppc64le","name":"SLE-Module-DevTools15-SP2-Updates","installer_updates":false,"description":"SLE-Module-DevTools15-SP2-Updates for sle-15-ppc64le"},{"enabled":false,"id":4127,"autorefresh":true,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15-SP2/ppc64le/update_debug/","name":"SLE-Module-DevTools15-SP2-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-DevTools15-SP2-Debuginfo-Updates for sle-15-ppc64le"},{"distro_target":"sle-15-ppc64le","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP2/ppc64le/product/","enabled":true,"id":4128,"description":"SLE-Module-DevTools15-SP2-Pool for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-DevTools15-SP2-Pool"},{"id":4129,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP2/ppc64le/product_debug/","autorefresh":false,"distro_target":"sle-15-ppc64le","name":"SLE-Module-DevTools15-SP2-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-DevTools15-SP2-Debuginfo-Pool for sle-15-ppc64le"},{"enabled":false,"id":4130,"autorefresh":false,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP2/ppc64le/product_source/","name":"SLE-Module-DevTools15-SP2-Source-Pool","installer_updates":false,"description":"SLE-Module-DevTools15-SP2-Source-Pool for sle-15-ppc64le"}]}],"identifier":"sle-module-desktop-applications","release_stage":"released","id":1965,"friendly_version":"15 SP2","eula_url":"","arch":"ppc64le","description":"

The SUSE Linux Enterprise Desktop Applications Module delivers a basic set of Desktop functionality.

Access to the Desktop Applications Module is included in your SUSE Linux Enterprise product subscription.

","shortname":"Desktop-Applications-Module","free":true,"cpe":"cpe:/o:suse:sle-module-desktop-applications:15:sp2","product_type":"module","predecessor_ids":[1594,1774],"online_predecessor_ids":[1594,1774],"product_class":"MODULE","repositories":[{"enabled":true,"id":4106,"distro_target":"sle-15-ppc64le","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15-SP2/ppc64le/update/","installer_updates":false,"name":"SLE-Module-Desktop-Applications15-SP2-Updates","description":"SLE-Module-Desktop-Applications15-SP2-Updates for sle-15-ppc64le"},{"id":4107,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15-SP2/ppc64le/update_debug/","autorefresh":true,"distro_target":"sle-15-ppc64le","name":"SLE-Module-Desktop-Applications15-SP2-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-Desktop-Applications15-SP2-Debuginfo-Updates for sle-15-ppc64le"},{"distro_target":"sle-15-ppc64le","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP2/ppc64le/product/","enabled":true,"id":4108,"description":"SLE-Module-Desktop-Applications15-SP2-Pool for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-Desktop-Applications15-SP2-Pool"},{"id":4109,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP2/ppc64le/product_debug/","autorefresh":false,"distro_target":"sle-15-ppc64le","name":"SLE-Module-Desktop-Applications15-SP2-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-Desktop-Applications15-SP2-Debuginfo-Pool for sle-15-ppc64le"},{"installer_updates":false,"name":"SLE-Module-Desktop-Applications15-SP2-Source-Pool","description":"SLE-Module-Desktop-Applications15-SP2-Source-Pool for sle-15-ppc64le","enabled":false,"id":4110,"distro_target":"sle-15-ppc64le","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP2/ppc64le/product_source/"}]},{"arch":"ppc64le","eula_url":"","free":false,"description":"

SUSE Linux Enterprise Live Patching provides packages to update critical components in SUSE Linux Enterprise. With SUSE Linux Enterprise Live Patching, you can perform critical patching without shutting down your system, reducing the need for planned downtime and increasing service availability.

","shortname":"Live-Patching","product_type":"extension","cpe":"cpe:/o:suse:sle-module-live-patching:15:sp2","product_class":"SLE-LP-PPC","online_predecessor_ids":[1735,1827],"repositories":[{"description":"SLE-Module-Live-Patching15-SP2-Updates for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-Live-Patching15-SP2-Updates","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Live-Patching/15-SP2/ppc64le/update/","distro_target":"sle-15-ppc64le","autorefresh":true,"id":4196,"enabled":true},{"description":"SLE-Module-Live-Patching15-SP2-Debuginfo-Updates for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-Live-Patching15-SP2-Debuginfo-Updates","distro_target":"sle-15-ppc64le","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Live-Patching/15-SP2/ppc64le/update_debug/","enabled":false,"id":4197},{"enabled":true,"id":4198,"distro_target":"sle-15-ppc64le","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Live-Patching/15-SP2/ppc64le/product/","installer_updates":false,"name":"SLE-Module-Live-Patching15-SP2-Pool","description":"SLE-Module-Live-Patching15-SP2-Pool for sle-15-ppc64le"},{"description":"SLE-Module-Live-Patching15-SP2-Debuginfo-Pool for sle-15-ppc64le","name":"SLE-Module-Live-Patching15-SP2-Debuginfo-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Live-Patching/15-SP2/ppc64le/product_debug/","autorefresh":false,"distro_target":"sle-15-ppc64le","id":4199,"enabled":false},{"id":4200,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Live-Patching/15-SP2/ppc64le/product_source/","distro_target":"sle-15-ppc64le","autorefresh":false,"installer_updates":false,"name":"SLE-Module-Live-Patching15-SP2-Source-Pool","description":"SLE-Module-Live-Patching15-SP2-Source-Pool for sle-15-ppc64le"}],"predecessor_ids":[1735,1827],"release_type":null,"former_identifier":"sle-module-live-patching","migration_extra":false,"friendly_name":"SUSE Linux Enterprise Live Patching 15 SP2 ppc64le","offline_predecessor_ids":[1756,1887],"name":"SUSE Linux Enterprise Live Patching","version":"15.2","recommended":false,"identifier":"sle-module-live-patching","release_stage":"released","id":1983,"extensions":[],"friendly_version":"15 SP2"},{"repositories":[{"enabled":true,"id":4231,"autorefresh":true,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Python2/15-SP2/ppc64le/update/","name":"SLE-Module-Python2-15-SP2-Updates","installer_updates":false,"description":"SLE-Module-Python2-15-SP2-Updates for sle-15-ppc64le"},{"autorefresh":true,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Python2/15-SP2/ppc64le/update_debug/","enabled":false,"id":4232,"description":"SLE-Module-Python2-15-SP2-Debuginfo-Updates for sle-15-ppc64le","name":"SLE-Module-Python2-15-SP2-Debuginfo-Updates","installer_updates":false},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Python2/15-SP2/ppc64le/product/","distro_target":"sle-15-ppc64le","autorefresh":false,"id":4233,"enabled":true,"description":"SLE-Module-Python2-15-SP2-Pool for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-Python2-15-SP2-Pool"},{"autorefresh":false,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Python2/15-SP2/ppc64le/product_debug/","enabled":false,"id":4234,"description":"SLE-Module-Python2-15-SP2-Debuginfo-Pool for sle-15-ppc64le","name":"SLE-Module-Python2-15-SP2-Debuginfo-Pool","installer_updates":false},{"enabled":false,"id":4235,"autorefresh":false,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Python2/15-SP2/ppc64le/product_source/","name":"SLE-Module-Python2-15-SP2-Source-Pool","installer_updates":false,"description":"SLE-Module-Python2-15-SP2-Source-Pool for sle-15-ppc64le"}],"online_predecessor_ids":[1865],"product_class":"MODULE","predecessor_ids":[1865],"cpe":"cpe:/o:suse:sle-module-python2:15:sp2","product_type":"module","shortname":"Python2-Module","description":"

This module contains the python 2 packages.

Access to the Python 2 Module is included in your SUSE Linux Enterprise subscription. The module has a different lifecycle than SUSE Linux Enterprise itself. Packages in the this module are usually supported for at most three years.

","free":true,"arch":"ppc64le","eula_url":"","friendly_version":"15 SP2","id":1990,"release_stage":"released","identifier":"sle-module-python2","extensions":[],"version":"15.2","recommended":false,"friendly_name":"Python 2 Module 15 SP2 ppc64le","migration_extra":false,"release_type":null,"former_identifier":"sle-module-python2","name":"Python 2 Module","offline_predecessor_ids":[]},{"arch":"ppc64le","eula_url":"","free":true,"shortname":"Transactional-Server-Module","description":"

Transactional Updates provide SUSE Linux Enterprise systems with a method of updating the operating system and its packages in an entirely ‘atomic’ way. Updates are either applied to the system all together in a single transaction, or not at all. This happens without influencing the running system. If an update fails, or if the successful update is deemed to be incompatible or otherwise incorrect, it can be discarded to immediately return the system to its previous functioning state.

Access to theTransactional Server Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself: Package versions in the this module are usually supported for at most three years. We are planning to release more recent versions on a schedule of approximately 18 month; the exact dates may differ per package.

","product_type":"module","cpe":"cpe:/o:suse:sle-module-transactional-server:15:sp2","product_class":"MODULE","online_predecessor_ids":[1823],"repositories":[{"enabled":true,"id":4261,"autorefresh":true,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Transactional-Server/15-SP2/ppc64le/update/","name":"SLE-Module-Transactional-Server15-SP2-Updates","installer_updates":false,"description":"SLE-Module-Transactional-Server15-SP2-Updates for sle-15-ppc64le"},{"description":"SLE-Module-Transactional-Server15-SP2-Debuginfo-Updates for sle-15-ppc64le","name":"SLE-Module-Transactional-Server15-SP2-Debuginfo-Updates","installer_updates":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Transactional-Server/15-SP2/ppc64le/update_debug/","autorefresh":true,"distro_target":"sle-15-ppc64le","id":4262,"enabled":false},{"description":"SLE-Module-Transactional-Server15-SP2-Pool for sle-15-ppc64le","name":"SLE-Module-Transactional-Server15-SP2-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Transactional-Server/15-SP2/ppc64le/product/","autorefresh":false,"distro_target":"sle-15-ppc64le","id":4263,"enabled":true},{"installer_updates":false,"name":"SLE-Module-Transactional-Server15-SP2-Debuginfo-Pool","description":"SLE-Module-Transactional-Server15-SP2-Debuginfo-Pool for sle-15-ppc64le","id":4264,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Transactional-Server/15-SP2/ppc64le/product_debug/","distro_target":"sle-15-ppc64le","autorefresh":false},{"installer_updates":false,"name":"SLE-Module-Transactional-Server15-SP2-Source-Pool","description":"SLE-Module-Transactional-Server15-SP2-Source-Pool for sle-15-ppc64le","id":4265,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Transactional-Server/15-SP2/ppc64le/product_source/","distro_target":"sle-15-ppc64le","autorefresh":false}],"predecessor_ids":[1823],"release_type":null,"former_identifier":"sle-module-transactional-server","migration_extra":false,"friendly_name":"Transactional Server Module 15 SP2 ppc64le","offline_predecessor_ids":[],"name":"Transactional Server Module","version":"15.2","recommended":false,"release_stage":"released","id":1996,"identifier":"sle-module-transactional-server","extensions":[],"friendly_version":"15 SP2"}],"release_stage":"released","identifier":"sle-module-basesystem","id":1944,"friendly_version":"15 SP2","name":"Basesystem Module","offline_predecessor_ids":[1294],"migration_extra":false,"friendly_name":"Basesystem Module 15 SP2 ppc64le","release_type":null,"former_identifier":"sle-module-basesystem","recommended":true,"version":"15.2"},{"product_type":"extension","cpe":"cpe:/o:suse:sles-ltss:15:sp2","product_class":"SLES15-SP2-LTSS-PPC","online_predecessor_ids":[],"repositories":[{"name":"SLE-Product-SLES15-SP2-LTSS-Updates","installer_updates":false,"description":"SLE-Product-SLES15-SP2-LTSS-Updates for sle-15-ppc64le","id":5454,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-SLES/15-SP2-LTSS/ppc64le/update/","autorefresh":true,"distro_target":"sle-15-ppc64le"},{"name":"SLE-Product-SLES15-SP2-Debuginfo-LTSS-Updates","installer_updates":false,"description":"SLE-Product-SLES15-SP2-Debuginfo-LTSS-Updates for sle-15-ppc64le","enabled":false,"id":5455,"autorefresh":true,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Updates/SLE-Product-SLES/15-SP2-LTSS/ppc64le/update_debug/"}],"predecessor_ids":[],"arch":"ppc64le","eula_url":"","free":false,"description":"SUSE Linux Enterprise offers a comprehensive suite of products built on a single code base. The platform addresses business needs from the smallest thin-client devices to the world's most powerful high-performance computing and mainframe servers. SUSE Linux Enterprise offers common management tools and technology certifications across the platform, and each product is enterprise-class.","shortname":"SLES15-SP2-LTSS","release_stage":"released","id":2373,"identifier":"SLES-LTSS","extensions":[],"friendly_version":"15 SP2","release_type":null,"former_identifier":"SLES-LTSS","migration_extra":false,"friendly_name":"SUSE Linux Enterprise Server LTSS 15 SP2 ppc64le","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Server LTSS","version":"15.2","recommended":false}],"version":"15.2","recommended":false,"release_type":null,"former_identifier":"SLES","friendly_name":"SUSE Linux Enterprise Server 15 SP2 ppc64le","migration_extra":false,"offline_predecessor_ids":[1626,1876],"name":"SUSE Linux Enterprise Server","online_predecessor_ids":[1585,1761],"product_class":"SLES-PPC","repositories":[{"autorefresh":true,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Updates/SLE-Product-SLES/15-SP2/ppc64le/update/","enabled":true,"id":3948,"description":"SLE-Product-SLES15-SP2-Updates for sle-15-ppc64le","name":"SLE-Product-SLES15-SP2-Updates","installer_updates":false},{"description":"SLE-Product-SLES15-SP2-Debuginfo-Updates for sle-15-ppc64le","name":"SLE-Product-SLES15-SP2-Debuginfo-Updates","installer_updates":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-SLES/15-SP2/ppc64le/update_debug/","autorefresh":true,"distro_target":"sle-15-ppc64le","id":3949,"enabled":false},{"url":"https://updates.suse.com/SUSE/Updates/SLE-INSTALLER/15-SP2/ppc64le/update/","autorefresh":true,"distro_target":"sle-15-ppc64le","id":3950,"enabled":false,"description":"SLE15-SP2-Installer-Updates for sle-15-ppc64le","name":"SLE15-SP2-Installer-Updates","installer_updates":true},{"description":"SLE-Product-SLES15-SP2-Pool for sle-15-ppc64le","name":"SLE-Product-SLES15-SP2-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Products/SLE-Product-SLES/15-SP2/ppc64le/product/","enabled":true,"id":3951},{"id":3952,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-SLES/15-SP2/ppc64le/product_debug/","distro_target":"sle-15-ppc64le","autorefresh":false,"installer_updates":false,"name":"SLE-Product-SLES15-SP2-Debuginfo-Pool","description":"SLE-Product-SLES15-SP2-Debuginfo-Pool for sle-15-ppc64le"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Product-SLES/15-SP2/ppc64le/product_source/","distro_target":"sle-15-ppc64le","autorefresh":false,"id":3953,"enabled":false,"description":"SLE-Product-SLES15-SP2-Source-Pool for sle-15-ppc64le","installer_updates":false,"name":"SLE-Product-SLES15-SP2-Source-Pool"}],"predecessor_ids":[1585,1761],"product_type":"base","cpe":"cpe:/o:suse:sles:15:sp2","free":false,"shortname":"SLES15-SP2","description":"SUSE Linux Enterprise offers a comprehensive suite of products built on a single code base. The platform addresses business needs from the smallest thin-client devices to the world's most powerful high-performance computing and mainframe servers. SUSE Linux Enterprise offers common management tools and technology certifications across the platform, and each product is enterprise-class.","arch":"ppc64le","eula_url":"https://updates.suse.com/SUSE/Products/SLE-Product-SLES/15-SP2/ppc64le/product.license/"},{"predecessor_ids":[1584,1762],"online_predecessor_ids":[1584,1762],"repositories":[{"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-SLES/15-SP2/s390x/update/","distro_target":"sle-15-s390x","autorefresh":true,"id":3954,"enabled":true,"description":"SLE-Product-SLES15-SP2-Updates for sle-15-s390x","installer_updates":false,"name":"SLE-Product-SLES15-SP2-Updates"},{"name":"SLE-Product-SLES15-SP2-Debuginfo-Updates","installer_updates":false,"description":"SLE-Product-SLES15-SP2-Debuginfo-Updates for sle-15-s390x","id":3955,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-SLES/15-SP2/s390x/update_debug/","autorefresh":true,"distro_target":"sle-15-s390x"},{"installer_updates":true,"name":"SLE15-SP2-Installer-Updates","description":"SLE15-SP2-Installer-Updates for sle-15-s390x","id":3956,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-INSTALLER/15-SP2/s390x/update/","distro_target":"sle-15-s390x","autorefresh":true},{"url":"https://updates.suse.com/SUSE/Products/SLE-Product-SLES/15-SP2/s390x/product/","autorefresh":false,"distro_target":"sle-15-s390x","id":3957,"enabled":true,"description":"SLE-Product-SLES15-SP2-Pool for sle-15-s390x","name":"SLE-Product-SLES15-SP2-Pool","installer_updates":false},{"url":"https://updates.suse.com/SUSE/Products/SLE-Product-SLES/15-SP2/s390x/product_debug/","distro_target":"sle-15-s390x","autorefresh":false,"id":3958,"enabled":false,"description":"SLE-Product-SLES15-SP2-Debuginfo-Pool for sle-15-s390x","installer_updates":false,"name":"SLE-Product-SLES15-SP2-Debuginfo-Pool"},{"installer_updates":false,"name":"SLE-Product-SLES15-SP2-Source-Pool","description":"SLE-Product-SLES15-SP2-Source-Pool for sle-15-s390x","enabled":false,"id":3959,"distro_target":"sle-15-s390x","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-SLES/15-SP2/s390x/product_source/"}],"product_class":"SLES-Z","product_type":"base","cpe":"cpe:/o:suse:sles:15:sp2","free":false,"description":"SUSE Linux Enterprise offers a comprehensive suite of products built on a single code base. The platform addresses business needs from the smallest thin-client devices to the world's most powerful high-performance computing and mainframe servers. SUSE Linux Enterprise offers common management tools and technology certifications across the platform, and each product is enterprise-class.","shortname":"SLES15-SP2","eula_url":"https://updates.suse.com/SUSE/Products/SLE-Product-SLES/15-SP2/s390x/product.license/","arch":"s390x","friendly_version":"15 SP2","extensions":[{"friendly_version":"15 SP2","extensions":[{"extensions":[],"release_stage":"released","id":1949,"identifier":"PackageHub","friendly_version":"15 SP2","name":"SUSE Package Hub","offline_predecessor_ids":[1812,1914],"migration_extra":false,"friendly_name":"SUSE Package Hub 15 SP2 s390x","former_identifier":"PackageHub","release_type":null,"recommended":false,"version":"15.2","cpe":"cpe:/o:suse:packagehub:15:sp2","product_type":"extension","predecessor_ids":[1742,1870],"product_class":"MODULE","online_predecessor_ids":[1742,1870],"repositories":[{"id":4020,"enabled":true,"url":"https://updates.suse.com/SUSE/Backports/SLE-15-SP2_s390x/standard/","distro_target":"sle-15-s390x","autorefresh":false,"installer_updates":false,"name":"SUSE-PackageHub-15-SP2-Backports-Pool","description":"SUSE-PackageHub-15-SP2-Backports-Pool for sle-15-s390x"},{"autorefresh":true,"distro_target":"sle-15-s390x","url":"https://updates.suse.com/SUSE/Backports/SLE-15-SP2_s390x/standard_debug/","enabled":false,"id":4021,"description":"SUSE-PackageHub-15-SP2-Backports-Debuginfo for sle-15-s390x","name":"SUSE-PackageHub-15-SP2-Backports-Debuginfo","installer_updates":false},{"autorefresh":true,"distro_target":"sle-15-s390x","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP2/s390x/update/","enabled":true,"id":4022,"description":"SLE-Module-Packagehub-Subpackages15-SP2-Updates for sle-15-s390x","name":"SLE-Module-Packagehub-Subpackages15-SP2-Updates","installer_updates":false},{"description":"SLE-Module-Packagehub-Subpackages15-SP2-Debuginfo-Updates for sle-15-s390x","name":"SLE-Module-Packagehub-Subpackages15-SP2-Debuginfo-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-15-s390x","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP2/s390x/update_debug/","enabled":false,"id":4023},{"id":4024,"enabled":true,"url":"https://updates.suse.com/SUSE/Backports/SLE-15-SP2_s390x/product/","autorefresh":false,"distro_target":"sle-15-s390x","name":"SUSE-PackageHub-15-SP2-Pool","installer_updates":false,"description":"SUSE-PackageHub-15-SP2-Pool for sle-15-s390x"},{"description":"SLE-Module-Packagehub-Subpackages15-SP2-Pool for sle-15-s390x","name":"SLE-Module-Packagehub-Subpackages15-SP2-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP2/s390x/product/","autorefresh":false,"distro_target":"sle-15-s390x","id":4025,"enabled":true},{"description":"SLE-Module-Packagehub-Subpackages15-SP2-Debuginfo-Pool for sle-15-s390x","name":"SLE-Module-Packagehub-Subpackages15-SP2-Debuginfo-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP2/s390x/product_debug/","autorefresh":false,"distro_target":"sle-15-s390x","id":4026,"enabled":false},{"installer_updates":false,"name":"SLE-Module-Packagehub-Subpackages15-SP2-Source-Pool","description":"SLE-Module-Packagehub-Subpackages15-SP2-Source-Pool for sle-15-s390x","enabled":false,"id":4027,"distro_target":"sle-15-s390x","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP2/s390x/product_source/"}],"eula_url":"","arch":"s390x","description":"SUSE Package Hub is a free of charge extension providing access to community maintained packages built to run on SUSE Linux Enterprise Server. Built from the same sources used in the openSUSE distributions, these quality packages provide additional software to what is found in the SUSE Linux Enterprise Server product. Packages from the Package Hub are delivered without L3 support from SUSE. General updates and fixes to the packages in SUSE Package Hub are provided by the openSUSE community based on their discretion, though SUSE will monitor and ensure that any known critical security issues will be addressed. Packages in the Package Hub are approved by SUSE for use with SUSE Linux Enterprise Server 15-SP2 and to not interfere with the supportability of SUSE Linux Enterprise Server, its modules and extensions. For more information about SUSE Package Hub please visit https://packagehub.suse.com.","shortname":"SUSE-PackageHub-15","free":true},{"repositories":[{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15-SP2/s390x/update/","distro_target":"sle-15-s390x","autorefresh":true,"id":4051,"enabled":true,"description":"SLE-Module-Server-Applications15-SP2-Updates for sle-15-s390x","installer_updates":false,"name":"SLE-Module-Server-Applications15-SP2-Updates"},{"enabled":false,"id":4052,"autorefresh":true,"distro_target":"sle-15-s390x","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15-SP2/s390x/update_debug/","name":"SLE-Module-Server-Applications15-SP2-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-Server-Applications15-SP2-Debuginfo-Updates for sle-15-s390x"},{"enabled":true,"id":4053,"distro_target":"sle-15-s390x","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP2/s390x/product/","installer_updates":false,"name":"SLE-Module-Server-Applications15-SP2-Pool","description":"SLE-Module-Server-Applications15-SP2-Pool for sle-15-s390x"},{"id":4054,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP2/s390x/product_debug/","distro_target":"sle-15-s390x","autorefresh":false,"installer_updates":false,"name":"SLE-Module-Server-Applications15-SP2-Debuginfo-Pool","description":"SLE-Module-Server-Applications15-SP2-Debuginfo-Pool for sle-15-s390x"},{"enabled":false,"id":4055,"distro_target":"sle-15-s390x","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP2/s390x/product_source/","installer_updates":false,"name":"SLE-Module-Server-Applications15-SP2-Source-Pool","description":"SLE-Module-Server-Applications15-SP2-Source-Pool for sle-15-s390x"}],"online_predecessor_ids":[1599,1779],"product_class":"MODULE","predecessor_ids":[1599,1779],"product_type":"module","cpe":"cpe:/o:suse:sle-module-server-applications:15:sp2","free":true,"shortname":"Server-Applications-Module","description":"

The SUSE Linux Enterprise Server Applications Module delivers a basic set of Server functionality.

Access to the Server Applications Module is included in your SUSE Linux Enterprise Server subscription.

","arch":"s390x","eula_url":"","friendly_version":"15 SP2","id":1954,"release_stage":"released","identifier":"sle-module-server-applications","extensions":[{"description":"SUSE Linux High Availability Extension provides mature, industry-leading open-source high-availability clustering technologies that are easy to set up and use. It can be deployed in physical and/or virtual environments, and can cluster physical servers, virtual servers, or any combination of the two to suit your business’ needs.","shortname":"SLEHA15-SP2","free":false,"arch":"s390x","eula_url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP2/s390x/product.license/","repositories":[{"name":"SLE-Product-HA15-SP2-Updates","installer_updates":false,"description":"SLE-Product-HA15-SP2-Updates for sle-15-s390x","enabled":true,"id":4071,"autorefresh":true,"distro_target":"sle-15-s390x","url":"https://updates.suse.com/SUSE/Updates/SLE-Product-HA/15-SP2/s390x/update/"},{"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-HA/15-SP2/s390x/update_debug/","distro_target":"sle-15-s390x","autorefresh":true,"id":4072,"enabled":false,"description":"SLE-Product-HA15-SP2-Debuginfo-Updates for sle-15-s390x","installer_updates":false,"name":"SLE-Product-HA15-SP2-Debuginfo-Updates"},{"enabled":true,"id":4073,"autorefresh":false,"distro_target":"sle-15-s390x","url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP2/s390x/product/","name":"SLE-Product-HA15-SP2-Pool","installer_updates":false,"description":"SLE-Product-HA15-SP2-Pool for sle-15-s390x"},{"installer_updates":false,"name":"SLE-Product-HA15-SP2-Debuginfo-Pool","description":"SLE-Product-HA15-SP2-Debuginfo-Pool for sle-15-s390x","enabled":false,"id":4074,"distro_target":"sle-15-s390x","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP2/s390x/product_debug/"},{"autorefresh":false,"distro_target":"sle-15-s390x","url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP2/s390x/product_source/","enabled":false,"id":4075,"description":"SLE-Product-HA15-SP2-Source-Pool for sle-15-s390x","name":"SLE-Product-HA15-SP2-Source-Pool","installer_updates":false}],"online_predecessor_ids":[1605,1784],"product_class":"SLE-HAE-Z","predecessor_ids":[1605,1784],"cpe":"cpe:/o:suse:sle-ha:15:sp2","product_type":"extension","version":"15.2","recommended":false,"friendly_name":"SUSE Linux Enterprise High Availability Extension 15 SP2 s390x","migration_extra":false,"former_identifier":"sle-ha","release_type":null,"name":"SUSE Linux Enterprise High Availability Extension","offline_predecessor_ids":[1080,1082,1084,1086,1109,1110,1257,1287,1636,1638,1883,1885],"friendly_version":"15 SP2","release_stage":"released","identifier":"sle-ha","id":1958,"extensions":[]},{"free":true,"description":"

The SUSE Linux Enterprise Web and Scripting Module should contains additional packages that are helpful when running a webserver.

Access to the Web and Scripting Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself: Package versions in this module are usually supported for at most three years. We are planning to release more recent versions on a schedule of approximately 18 month; the exact dates may differ per package.

","shortname":"Web-Scripting-Module","arch":"s390x","eula_url":"","online_predecessor_ids":[1720,1797],"product_class":"MODULE","repositories":[{"distro_target":"sle-15-s390x","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/15-SP2/s390x/update/","enabled":true,"id":4156,"description":"SLE-Module-Web-Scripting15-SP2-Updates for sle-15-s390x","installer_updates":false,"name":"SLE-Module-Web-Scripting15-SP2-Updates"},{"name":"SLE-Module-Web-Scripting15-SP2-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-Web-Scripting15-SP2-Debuginfo-Updates for sle-15-s390x","id":4157,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/15-SP2/s390x/update_debug/","autorefresh":true,"distro_target":"sle-15-s390x"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP2/s390x/product/","autorefresh":false,"distro_target":"sle-15-s390x","id":4158,"enabled":true,"description":"SLE-Module-Web-Scripting15-SP2-Pool for sle-15-s390x","name":"SLE-Module-Web-Scripting15-SP2-Pool","installer_updates":false},{"enabled":false,"id":4159,"distro_target":"sle-15-s390x","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP2/s390x/product_debug/","installer_updates":false,"name":"SLE-Module-Web-Scripting15-SP2-Debuginfo-Pool","description":"SLE-Module-Web-Scripting15-SP2-Debuginfo-Pool for sle-15-s390x"},{"autorefresh":false,"distro_target":"sle-15-s390x","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP2/s390x/product_source/","enabled":false,"id":4160,"description":"SLE-Module-Web-Scripting15-SP2-Source-Pool for sle-15-s390x","name":"SLE-Module-Web-Scripting15-SP2-Source-Pool","installer_updates":false}],"predecessor_ids":[1720,1797],"product_type":"module","cpe":"cpe:/o:suse:sle-module-web-scripting:15:sp2","version":"15.2","recommended":false,"former_identifier":"sle-module-web-scripting","release_type":null,"friendly_name":"Web and Scripting Module 15 SP2 s390x","migration_extra":true,"offline_predecessor_ids":[1152],"name":"Web and Scripting Module","friendly_version":"15 SP2","release_stage":"released","id":1975,"identifier":"sle-module-web-scripting","extensions":[]},{"online_predecessor_ids":[1602,1803],"product_class":"MODULE","repositories":[{"distro_target":"sle-15-s390x","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/15-SP2/s390x/update/","enabled":true,"id":4186,"description":"SLE-Module-Legacy15-SP2-Updates for sle-15-s390x","installer_updates":false,"name":"SLE-Module-Legacy15-SP2-Updates"},{"distro_target":"sle-15-s390x","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/15-SP2/s390x/update_debug/","enabled":false,"id":4187,"description":"SLE-Module-Legacy15-SP2-Debuginfo-Updates for sle-15-s390x","installer_updates":false,"name":"SLE-Module-Legacy15-SP2-Debuginfo-Updates"},{"description":"SLE-Module-Legacy15-SP2-Pool for sle-15-s390x","installer_updates":false,"name":"SLE-Module-Legacy15-SP2-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15-SP2/s390x/product/","distro_target":"sle-15-s390x","autorefresh":false,"id":4188,"enabled":true},{"description":"SLE-Module-Legacy15-SP2-Debuginfo-Pool for sle-15-s390x","installer_updates":false,"name":"SLE-Module-Legacy15-SP2-Debuginfo-Pool","distro_target":"sle-15-s390x","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15-SP2/s390x/product_debug/","enabled":false,"id":4189},{"id":4190,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15-SP2/s390x/product_source/","distro_target":"sle-15-s390x","autorefresh":false,"installer_updates":false,"name":"SLE-Module-Legacy15-SP2-Source-Pool","description":"SLE-Module-Legacy15-SP2-Source-Pool for sle-15-s390x"}],"predecessor_ids":[1602,1803],"cpe":"cpe:/o:suse:sle-module-legacy:15:sp2","product_type":"module","description":"

The Legacy Module helps you migrating applications from SUSE Linux Enterprise 12 and other systems to SUSE Linux Enterprise 15, by providing packages which are discontinued on SUSE Linux Enterprise Server, such as: ntp, IBM Java 8, and a number of libraries.

Access to the Legacy Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself. Packages in the this module are usually supported for at most three years.

","shortname":"Legacy-Module","free":true,"arch":"s390x","eula_url":"","friendly_version":"15 SP2","release_stage":"released","id":1981,"identifier":"sle-module-legacy","extensions":[],"version":"15.2","recommended":false,"friendly_name":"Legacy Module 15 SP2 s390x","migration_extra":true,"former_identifier":"sle-module-legacy","release_type":null,"name":"Legacy Module","offline_predecessor_ids":[1149]},{"repositories":[{"description":"SLE-Module-Public-Cloud15-SP2-Updates for sle-15-s390x","installer_updates":false,"name":"SLE-Module-Public-Cloud15-SP2-Updates","distro_target":"sle-15-s390x","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/15-SP2/s390x/update/","enabled":true,"id":4216},{"installer_updates":false,"name":"SLE-Module-Public-Cloud15-SP2-Debuginfo-Updates","description":"SLE-Module-Public-Cloud15-SP2-Debuginfo-Updates for sle-15-s390x","id":4217,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/15-SP2/s390x/update_debug/","distro_target":"sle-15-s390x","autorefresh":true},{"id":4218,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP2/s390x/product/","autorefresh":false,"distro_target":"sle-15-s390x","name":"SLE-Module-Public-Cloud15-SP2-Pool","installer_updates":false,"description":"SLE-Module-Public-Cloud15-SP2-Pool for sle-15-s390x"},{"description":"SLE-Module-Public-Cloud15-SP2-Debuginfo-Pool for sle-15-s390x","name":"SLE-Module-Public-Cloud15-SP2-Debuginfo-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP2/s390x/product_debug/","autorefresh":false,"distro_target":"sle-15-s390x","id":4219,"enabled":false},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP2/s390x/product_source/","distro_target":"sle-15-s390x","autorefresh":false,"id":4220,"enabled":false,"description":"SLE-Module-Public-Cloud15-SP2-Source-Pool for sle-15-s390x","installer_updates":false,"name":"SLE-Module-Public-Cloud15-SP2-Source-Pool"}],"online_predecessor_ids":[1646,1807],"product_class":"MODULE","predecessor_ids":[1646,1807],"product_type":"module","cpe":"cpe:/o:suse:sle-module-public-cloud:15:sp2","free":true,"description":"

The Public Cloud Module is a collection of tools that enables you to create and manage cloud images from the commandline on SUSE Linux Enterprise Server. When building your own images with KIWI or SUSE Studio, initialization code specific to the target cloud is included in that image.

Access to the Public Cloud Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself; please check the Release Notes for further details.

","shortname":"Public-Cloud-Module","arch":"s390x","eula_url":"","friendly_version":"15 SP2","release_stage":"released","identifier":"sle-module-public-cloud","id":1987,"extensions":[],"version":"15.2","recommended":false,"former_identifier":"sle-module-public-cloud","release_type":null,"migration_extra":false,"friendly_name":"Public Cloud Module 15 SP2 s390x","offline_predecessor_ids":[1219],"name":"Public Cloud Module"}],"version":"15.2","recommended":true,"release_type":null,"former_identifier":"sle-module-server-applications","migration_extra":false,"friendly_name":"Server Applications Module 15 SP2 s390x","offline_predecessor_ids":[],"name":"Server Applications Module"},{"product_class":"MODULE","online_predecessor_ids":[1641,1789],"repositories":[{"autorefresh":true,"distro_target":"sle-15-s390x","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/15-SP2/s390x/update/","enabled":true,"id":4091,"description":"SLE-Module-Containers15-SP2-Updates for sle-15-s390x","name":"SLE-Module-Containers15-SP2-Updates","installer_updates":false},{"enabled":false,"id":4092,"distro_target":"sle-15-s390x","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/15-SP2/s390x/update_debug/","installer_updates":false,"name":"SLE-Module-Containers15-SP2-Debuginfo-Updates","description":"SLE-Module-Containers15-SP2-Debuginfo-Updates for sle-15-s390x"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP2/s390x/product/","autorefresh":false,"distro_target":"sle-15-s390x","id":4093,"enabled":true,"description":"SLE-Module-Containers15-SP2-Pool for sle-15-s390x","name":"SLE-Module-Containers15-SP2-Pool","installer_updates":false},{"description":"SLE-Module-Containers15-SP2-Debuginfo-Pool for sle-15-s390x","installer_updates":false,"name":"SLE-Module-Containers15-SP2-Debuginfo-Pool","distro_target":"sle-15-s390x","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP2/s390x/product_debug/","enabled":false,"id":4094},{"id":4095,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP2/s390x/product_source/","distro_target":"sle-15-s390x","autorefresh":false,"installer_updates":false,"name":"SLE-Module-Containers15-SP2-Source-Pool","description":"SLE-Module-Containers15-SP2-Source-Pool for sle-15-s390x"}],"predecessor_ids":[1641,1789],"cpe":"cpe:/o:suse:sle-module-containers:15:sp2","product_type":"module","description":"

This Module contains several packages revolving around containers and related tools.

","shortname":"Containers-Module","free":true,"arch":"s390x","eula_url":"","friendly_version":"15 SP2","release_stage":"released","id":1962,"identifier":"sle-module-containers","extensions":[],"version":"15.2","recommended":false,"friendly_name":"Containers Module 15 SP2 s390x","migration_extra":false,"former_identifier":"sle-module-containers","release_type":null,"name":"Containers Module","offline_predecessor_ids":[1354]},{"arch":"s390x","eula_url":"","free":true,"description":"

The SUSE Linux Enterprise Desktop Applications Module delivers a basic set of Desktop functionality.

Access to the Desktop Applications Module is included in your SUSE Linux Enterprise product subscription.

","shortname":"Desktop-Applications-Module","product_type":"module","cpe":"cpe:/o:suse:sle-module-desktop-applications:15:sp2","repositories":[{"id":4111,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15-SP2/s390x/update/","distro_target":"sle-15-s390x","autorefresh":true,"installer_updates":false,"name":"SLE-Module-Desktop-Applications15-SP2-Updates","description":"SLE-Module-Desktop-Applications15-SP2-Updates for sle-15-s390x"},{"name":"SLE-Module-Desktop-Applications15-SP2-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-Desktop-Applications15-SP2-Debuginfo-Updates for sle-15-s390x","id":4112,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15-SP2/s390x/update_debug/","autorefresh":true,"distro_target":"sle-15-s390x"},{"installer_updates":false,"name":"SLE-Module-Desktop-Applications15-SP2-Pool","description":"SLE-Module-Desktop-Applications15-SP2-Pool for sle-15-s390x","enabled":true,"id":4113,"distro_target":"sle-15-s390x","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP2/s390x/product/"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP2/s390x/product_debug/","autorefresh":false,"distro_target":"sle-15-s390x","id":4114,"enabled":false,"description":"SLE-Module-Desktop-Applications15-SP2-Debuginfo-Pool for sle-15-s390x","name":"SLE-Module-Desktop-Applications15-SP2-Debuginfo-Pool","installer_updates":false},{"name":"SLE-Module-Desktop-Applications15-SP2-Source-Pool","installer_updates":false,"description":"SLE-Module-Desktop-Applications15-SP2-Source-Pool for sle-15-s390x","enabled":false,"id":4115,"autorefresh":false,"distro_target":"sle-15-s390x","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP2/s390x/product_source/"}],"online_predecessor_ids":[1593,1775],"product_class":"MODULE","predecessor_ids":[1593,1775],"former_identifier":"sle-module-desktop-applications","release_type":null,"migration_extra":true,"friendly_name":"Desktop Applications Module 15 SP2 s390x","offline_predecessor_ids":[],"name":"Desktop Applications Module","version":"15.2","recommended":false,"id":1966,"release_stage":"released","identifier":"sle-module-desktop-applications","extensions":[{"arch":"s390x","eula_url":"","free":true,"shortname":"Development-Tools-Module","description":"

The Development Tools Module helps you developing applications for SUSE Linux Enterprise 15.

Access to the Development Tools Module is included in your SUSE Linux Enterprise product subscription. The module has a different lifecycle than SUSE Linux Enterprise itself.

","product_type":"module","cpe":"cpe:/o:suse:sle-module-development-tools:15:sp2","product_class":"MODULE","online_predecessor_ids":[1596,1793],"repositories":[{"autorefresh":true,"distro_target":"sle-15-s390x","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15-SP2/s390x/update/","enabled":true,"id":4131,"description":"SLE-Module-DevTools15-SP2-Updates for sle-15-s390x","name":"SLE-Module-DevTools15-SP2-Updates","installer_updates":false},{"description":"SLE-Module-DevTools15-SP2-Debuginfo-Updates for sle-15-s390x","installer_updates":false,"name":"SLE-Module-DevTools15-SP2-Debuginfo-Updates","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15-SP2/s390x/update_debug/","distro_target":"sle-15-s390x","autorefresh":true,"id":4132,"enabled":false},{"name":"SLE-Module-DevTools15-SP2-Pool","installer_updates":false,"description":"SLE-Module-DevTools15-SP2-Pool for sle-15-s390x","id":4133,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP2/s390x/product/","autorefresh":false,"distro_target":"sle-15-s390x"},{"description":"SLE-Module-DevTools15-SP2-Debuginfo-Pool for sle-15-s390x","installer_updates":false,"name":"SLE-Module-DevTools15-SP2-Debuginfo-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP2/s390x/product_debug/","distro_target":"sle-15-s390x","autorefresh":false,"id":4134,"enabled":false},{"installer_updates":false,"name":"SLE-Module-DevTools15-SP2-Source-Pool","description":"SLE-Module-DevTools15-SP2-Source-Pool for sle-15-s390x","enabled":false,"id":4135,"distro_target":"sle-15-s390x","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP2/s390x/product_source/"}],"predecessor_ids":[1596,1793],"release_type":null,"former_identifier":"sle-sdk","friendly_name":"Development Tools Module 15 SP2 s390x","migration_extra":true,"offline_predecessor_ids":[1340,1632,1891],"name":"Development Tools Module","version":"15.2","recommended":false,"release_stage":"released","id":1970,"identifier":"sle-module-development-tools","extensions":[],"friendly_version":"15 SP2"}],"friendly_version":"15 SP2"},{"friendly_version":"15 SP2","id":1991,"release_stage":"released","identifier":"sle-module-python2","extensions":[],"version":"15.2","recommended":false,"release_type":null,"former_identifier":"sle-module-python2","migration_extra":false,"friendly_name":"Python 2 Module 15 SP2 s390x","offline_predecessor_ids":[],"name":"Python 2 Module","product_class":"MODULE","online_predecessor_ids":[1866],"repositories":[{"installer_updates":false,"name":"SLE-Module-Python2-15-SP2-Updates","description":"SLE-Module-Python2-15-SP2-Updates for sle-15-s390x","enabled":true,"id":4236,"distro_target":"sle-15-s390x","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Python2/15-SP2/s390x/update/"},{"enabled":false,"id":4237,"autorefresh":true,"distro_target":"sle-15-s390x","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Python2/15-SP2/s390x/update_debug/","name":"SLE-Module-Python2-15-SP2-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-Python2-15-SP2-Debuginfo-Updates for sle-15-s390x"},{"autorefresh":false,"distro_target":"sle-15-s390x","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Python2/15-SP2/s390x/product/","enabled":true,"id":4238,"description":"SLE-Module-Python2-15-SP2-Pool for sle-15-s390x","name":"SLE-Module-Python2-15-SP2-Pool","installer_updates":false},{"description":"SLE-Module-Python2-15-SP2-Debuginfo-Pool for sle-15-s390x","installer_updates":false,"name":"SLE-Module-Python2-15-SP2-Debuginfo-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Python2/15-SP2/s390x/product_debug/","distro_target":"sle-15-s390x","autorefresh":false,"id":4239,"enabled":false},{"id":4240,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Python2/15-SP2/s390x/product_source/","autorefresh":false,"distro_target":"sle-15-s390x","name":"SLE-Module-Python2-15-SP2-Source-Pool","installer_updates":false,"description":"SLE-Module-Python2-15-SP2-Source-Pool for sle-15-s390x"}],"predecessor_ids":[1866],"product_type":"module","cpe":"cpe:/o:suse:sle-module-python2:15:sp2","free":true,"description":"

This module contains the python 2 packages.

Access to the Python 2 Module is included in your SUSE Linux Enterprise subscription. The module has a different lifecycle than SUSE Linux Enterprise itself. Packages in the this module are usually supported for at most three years.

","shortname":"Python2-Module","arch":"s390x","eula_url":""},{"friendly_version":"15 SP2","extensions":[],"id":1997,"release_stage":"released","identifier":"sle-module-transactional-server","recommended":false,"version":"15.2","name":"Transactional Server Module","offline_predecessor_ids":[],"friendly_name":"Transactional Server Module 15 SP2 s390x","migration_extra":false,"release_type":null,"former_identifier":"sle-module-transactional-server","predecessor_ids":[1824],"online_predecessor_ids":[1824],"repositories":[{"installer_updates":false,"name":"SLE-Module-Transactional-Server15-SP2-Updates","description":"SLE-Module-Transactional-Server15-SP2-Updates for sle-15-s390x","enabled":true,"id":4266,"distro_target":"sle-15-s390x","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Transactional-Server/15-SP2/s390x/update/"},{"id":4267,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Transactional-Server/15-SP2/s390x/update_debug/","distro_target":"sle-15-s390x","autorefresh":true,"installer_updates":false,"name":"SLE-Module-Transactional-Server15-SP2-Debuginfo-Updates","description":"SLE-Module-Transactional-Server15-SP2-Debuginfo-Updates for sle-15-s390x"},{"description":"SLE-Module-Transactional-Server15-SP2-Pool for sle-15-s390x","installer_updates":false,"name":"SLE-Module-Transactional-Server15-SP2-Pool","distro_target":"sle-15-s390x","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Transactional-Server/15-SP2/s390x/product/","enabled":true,"id":4268},{"id":4269,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Transactional-Server/15-SP2/s390x/product_debug/","distro_target":"sle-15-s390x","autorefresh":false,"installer_updates":false,"name":"SLE-Module-Transactional-Server15-SP2-Debuginfo-Pool","description":"SLE-Module-Transactional-Server15-SP2-Debuginfo-Pool for sle-15-s390x"},{"description":"SLE-Module-Transactional-Server15-SP2-Source-Pool for sle-15-s390x","installer_updates":false,"name":"SLE-Module-Transactional-Server15-SP2-Source-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Transactional-Server/15-SP2/s390x/product_source/","distro_target":"sle-15-s390x","autorefresh":false,"id":4270,"enabled":false}],"product_class":"MODULE","cpe":"cpe:/o:suse:sle-module-transactional-server:15:sp2","product_type":"module","shortname":"Transactional-Server-Module","description":"

Transactional Updates provide SUSE Linux Enterprise systems with a method of updating the operating system and its packages in an entirely ‘atomic’ way. Updates are either applied to the system all together in a single transaction, or not at all. This happens without influencing the running system. If an update fails, or if the successful update is deemed to be incompatible or otherwise incorrect, it can be discarded to immediately return the system to its previous functioning state.

Access to theTransactional Server Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself: Package versions in the this module are usually supported for at most three years. We are planning to release more recent versions on a schedule of approximately 18 month; the exact dates may differ per package.

","free":true,"eula_url":"","arch":"s390x"},{"extensions":[],"release_stage":"released","identifier":"sle-module-live-patching","id":2081,"friendly_version":"15 SP2","offline_predecessor_ids":[2079,2080],"name":"SUSE Linux Enterprise Live Patching","release_type":null,"former_identifier":"sle-module-live-patching","migration_extra":false,"friendly_name":"SUSE Linux Enterprise Live Patching 15 SP2 s390x","recommended":false,"version":"15.2","product_type":"extension","cpe":"cpe:/o:suse:sle-module-live-patching:15:sp2","predecessor_ids":[],"product_class":"SLE-LP-Z","online_predecessor_ids":[],"repositories":[{"name":"SLE-Module-Live-Patching15-SP2-Updates","installer_updates":false,"description":"SLE-Module-Live-Patching15-SP2-Updates for sle-15-s390x","enabled":true,"id":4445,"autorefresh":true,"distro_target":"sle-15-s390x","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Live-Patching/15-SP2/s390x/update/"},{"installer_updates":false,"name":"SLE-Module-Live-Patching15-SP2-Debuginfo-Updates","description":"SLE-Module-Live-Patching15-SP2-Debuginfo-Updates for sle-15-s390x","id":4446,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Live-Patching/15-SP2/s390x/update_debug/","distro_target":"sle-15-s390x","autorefresh":true},{"distro_target":"sle-15-s390x","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Live-Patching/15-SP2/s390x/product/","enabled":true,"id":4447,"description":"SLE-Module-Live-Patching15-SP2-Pool for sle-15-s390x","installer_updates":false,"name":"SLE-Module-Live-Patching15-SP2-Pool"},{"installer_updates":false,"name":"SLE-Module-Live-Patching15-SP2-Debuginfo-Pool","description":"SLE-Module-Live-Patching15-SP2-Debuginfo-Pool for sle-15-s390x","enabled":false,"id":4448,"distro_target":"sle-15-s390x","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Live-Patching/15-SP2/s390x/product_debug/"},{"enabled":false,"id":4449,"autorefresh":false,"distro_target":"sle-15-s390x","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Live-Patching/15-SP2/s390x/product_source/","name":"SLE-Module-Live-Patching15-SP2-Source-Pool","installer_updates":false,"description":"SLE-Module-Live-Patching15-SP2-Source-Pool for sle-15-s390x"}],"eula_url":"","arch":"s390x","free":false,"shortname":"Live-Patching","description":"

SUSE Linux Enterprise Live Patching provides packages to update critical components in SUSE Linux Enterprise. With SUSE Linux Enterprise Live Patching, you can perform critical patching without shutting down your system, reducing the need for planned downtime and increasing service availability.

"}],"identifier":"sle-module-basesystem","release_stage":"released","id":1945,"recommended":true,"version":"15.2","offline_predecessor_ids":[1295,1367],"name":"Basesystem Module","release_type":null,"former_identifier":"sle-module-basesystem","friendly_name":"Basesystem Module 15 SP2 s390x","migration_extra":false,"predecessor_ids":[1587,1771],"online_predecessor_ids":[1587,1771],"product_class":"MODULE","repositories":[{"id":3994,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15-SP2/s390x/update/","distro_target":"sle-15-s390x","autorefresh":true,"installer_updates":false,"name":"SLE-Module-Basesystem15-SP2-Updates","description":"SLE-Module-Basesystem15-SP2-Updates for sle-15-s390x"},{"installer_updates":false,"name":"SLE-Module-Basesystem15-SP2-Debuginfo-Updates","description":"SLE-Module-Basesystem15-SP2-Debuginfo-Updates for sle-15-s390x","id":3995,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15-SP2/s390x/update_debug/","distro_target":"sle-15-s390x","autorefresh":true},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP2/s390x/product/","autorefresh":false,"distro_target":"sle-15-s390x","id":3996,"enabled":true,"description":"SLE-Module-Basesystem15-SP2-Pool for sle-15-s390x","name":"SLE-Module-Basesystem15-SP2-Pool","installer_updates":false},{"distro_target":"sle-15-s390x","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP2/s390x/product_debug/","enabled":false,"id":3997,"description":"SLE-Module-Basesystem15-SP2-Debuginfo-Pool for sle-15-s390x","installer_updates":false,"name":"SLE-Module-Basesystem15-SP2-Debuginfo-Pool"},{"autorefresh":false,"distro_target":"sle-15-s390x","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP2/s390x/product_source/","enabled":false,"id":3998,"description":"SLE-Module-Basesystem15-SP2-Source-Pool for sle-15-s390x","name":"SLE-Module-Basesystem15-SP2-Source-Pool","installer_updates":false}],"product_type":"module","cpe":"cpe:/o:suse:sle-module-basesystem:15:sp2","free":true,"description":"

The SUSE Linux Enterprise Basesystem Module delivers the base system of the product.

","shortname":"Basesystem-Module","eula_url":"","arch":"s390x"},{"product_class":"SLES15-SP2-LTSS-Z","online_predecessor_ids":[],"repositories":[{"autorefresh":true,"distro_target":"sle-15-s390x","url":"https://updates.suse.com/SUSE/Updates/SLE-Product-SLES/15-SP2-LTSS/s390x/update/","enabled":true,"id":5456,"description":"SLE-Product-SLES15-SP2-LTSS-Updates for sle-15-s390x","name":"SLE-Product-SLES15-SP2-LTSS-Updates","installer_updates":false},{"description":"SLE-Product-SLES15-SP2-Debuginfo-LTSS-Updates for sle-15-s390x","installer_updates":false,"name":"SLE-Product-SLES15-SP2-Debuginfo-LTSS-Updates","distro_target":"sle-15-s390x","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-SLES/15-SP2-LTSS/s390x/update_debug/","enabled":false,"id":5457}],"predecessor_ids":[],"product_type":"extension","cpe":"cpe:/o:suse:sles-ltss:15:sp2","free":false,"shortname":"SLES15-SP2-LTSS","description":"SUSE Linux Enterprise offers a comprehensive suite of products built on a single code base. The platform addresses business needs from the smallest thin-client devices to the world's most powerful high-performance computing and mainframe servers. SUSE Linux Enterprise offers common management tools and technology certifications across the platform, and each product is enterprise-class.","arch":"s390x","eula_url":"","friendly_version":"15 SP2","id":2374,"release_stage":"released","identifier":"SLES-LTSS","extensions":[],"version":"15.2","recommended":false,"former_identifier":"SLES-LTSS","release_type":null,"friendly_name":"SUSE Linux Enterprise Server LTSS 15 SP2 s390x","migration_extra":false,"offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Server LTSS"}],"identifier":"SLES","release_stage":"released","id":1938,"recommended":false,"version":"15.2","offline_predecessor_ids":[1627,1877],"name":"SUSE Linux Enterprise Server","former_identifier":"SLES","release_type":null,"friendly_name":"SUSE Linux Enterprise Server 15 SP2 s390x","migration_extra":false},{"release_stage":"released","identifier":"SLES","id":1939,"extensions":[{"friendly_version":"15 SP2","extensions":[{"cpe":"cpe:/o:suse:packagehub:15:sp2","product_type":"extension","predecessor_ids":[1743,1871],"online_predecessor_ids":[1743,1871],"repositories":[{"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Backports/SLE-15-SP2_x86_64/standard/","enabled":true,"id":4028,"description":"SUSE-PackageHub-15-SP2-Backports-Pool for sle-15-x86_64","installer_updates":false,"name":"SUSE-PackageHub-15-SP2-Backports-Pool"},{"enabled":false,"id":4029,"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Backports/SLE-15-SP2_x86_64/standard_debug/","name":"SUSE-PackageHub-15-SP2-Backports-Debuginfo","installer_updates":false,"description":"SUSE-PackageHub-15-SP2-Backports-Debuginfo for sle-15-x86_64"},{"description":"SLE-Module-Packagehub-Subpackages15-SP2-Updates for sle-15-x86_64","name":"SLE-Module-Packagehub-Subpackages15-SP2-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP2/x86_64/update/","enabled":true,"id":4030},{"description":"SLE-Module-Packagehub-Subpackages15-SP2-Debuginfo-Updates for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Packagehub-Subpackages15-SP2-Debuginfo-Updates","distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP2/x86_64/update_debug/","enabled":false,"id":4031},{"name":"SUSE-PackageHub-15-SP2-Pool","installer_updates":false,"description":"SUSE-PackageHub-15-SP2-Pool for sle-15-x86_64","id":4032,"enabled":true,"url":"https://updates.suse.com/SUSE/Backports/SLE-15-SP2_x86_64/product/","autorefresh":false,"distro_target":"sle-15-x86_64"},{"name":"SLE-Module-Packagehub-Subpackages15-SP2-Pool","installer_updates":false,"description":"SLE-Module-Packagehub-Subpackages15-SP2-Pool for sle-15-x86_64","enabled":true,"id":4033,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP2/x86_64/product/"},{"description":"SLE-Module-Packagehub-Subpackages15-SP2-Debuginfo-Pool for sle-15-x86_64","name":"SLE-Module-Packagehub-Subpackages15-SP2-Debuginfo-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP2/x86_64/product_debug/","autorefresh":false,"distro_target":"sle-15-x86_64","id":4034,"enabled":false},{"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP2/x86_64/product_source/","enabled":false,"id":4035,"description":"SLE-Module-Packagehub-Subpackages15-SP2-Source-Pool for sle-15-x86_64","name":"SLE-Module-Packagehub-Subpackages15-SP2-Source-Pool","installer_updates":false}],"product_class":"MODULE","eula_url":"","arch":"x86_64","description":"SUSE Package Hub is a free of charge extension providing access to community maintained packages built to run on SUSE Linux Enterprise Server. Built from the same sources used in the openSUSE distributions, these quality packages provide additional software to what is found in the SUSE Linux Enterprise Server product. Packages from the Package Hub are delivered without L3 support from SUSE. General updates and fixes to the packages in SUSE Package Hub are provided by the openSUSE community based on their discretion, though SUSE will monitor and ensure that any known critical security issues will be addressed. Packages in the Package Hub are approved by SUSE for use with SUSE Linux Enterprise Server 15-SP2 and to not interfere with the supportability of SUSE Linux Enterprise Server, its modules and extensions. For more information about SUSE Package Hub please visit https://packagehub.suse.com.","shortname":"SUSE-PackageHub-15","free":true,"extensions":[],"identifier":"PackageHub","release_stage":"released","id":1950,"friendly_version":"15 SP2","name":"SUSE Package Hub","offline_predecessor_ids":[1813,1915],"friendly_name":"SUSE Package Hub 15 SP2 x86_64","migration_extra":false,"release_type":null,"former_identifier":"PackageHub","recommended":false,"version":"15.2"},{"recommended":true,"version":"15.2","offline_predecessor_ids":[],"name":"Server Applications Module","release_type":null,"former_identifier":"sle-module-server-applications","friendly_name":"Server Applications Module 15 SP2 x86_64","migration_extra":false,"friendly_version":"15 SP2","extensions":[{"version":"15.2","recommended":false,"release_type":null,"former_identifier":"sle-ha","migration_extra":false,"friendly_name":"SUSE Linux Enterprise High Availability Extension 15 SP2 x86_64","offline_predecessor_ids":[958,961,967,971,1101,1107,1256,1286,1634,1637,1884,1886],"name":"SUSE Linux Enterprise High Availability Extension","friendly_version":"15 SP2","release_stage":"released","id":1959,"identifier":"sle-ha","extensions":[],"free":false,"shortname":"SLEHA15-SP2","description":"SUSE Linux High Availability Extension provides mature, industry-leading open-source high-availability clustering technologies that are easy to set up and use. It can be deployed in physical and/or virtual environments, and can cluster physical servers, virtual servers, or any combination of the two to suit your business’ needs.","arch":"x86_64","eula_url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP2/x86_64/product.license/","product_class":"SLE-HAE-X86","online_predecessor_ids":[1582,1785],"repositories":[{"installer_updates":false,"name":"SLE-Product-HA15-SP2-Updates","description":"SLE-Product-HA15-SP2-Updates for sle-15-x86_64","id":4076,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-HA/15-SP2/x86_64/update/","distro_target":"sle-15-x86_64","autorefresh":true},{"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-HA/15-SP2/x86_64/update_debug/","autorefresh":true,"distro_target":"sle-15-x86_64","id":4077,"enabled":false,"description":"SLE-Product-HA15-SP2-Debuginfo-Updates for sle-15-x86_64","name":"SLE-Product-HA15-SP2-Debuginfo-Updates","installer_updates":false},{"installer_updates":false,"name":"SLE-Product-HA15-SP2-Pool","description":"SLE-Product-HA15-SP2-Pool for sle-15-x86_64","enabled":true,"id":4078,"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP2/x86_64/product/"},{"description":"SLE-Product-HA15-SP2-Debuginfo-Pool for sle-15-x86_64","name":"SLE-Product-HA15-SP2-Debuginfo-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP2/x86_64/product_debug/","autorefresh":false,"distro_target":"sle-15-x86_64","id":4079,"enabled":false},{"id":4080,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP2/x86_64/product_source/","autorefresh":false,"distro_target":"sle-15-x86_64","name":"SLE-Product-HA15-SP2-Source-Pool","installer_updates":false,"description":"SLE-Product-HA15-SP2-Source-Pool for sle-15-x86_64"}],"predecessor_ids":[1582,1785],"product_type":"extension","cpe":"cpe:/o:suse:sle-ha:15:sp2"},{"predecessor_ids":[1721,1798],"repositories":[{"id":4161,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/15-SP2/x86_64/update/","distro_target":"sle-15-x86_64","autorefresh":true,"installer_updates":false,"name":"SLE-Module-Web-Scripting15-SP2-Updates","description":"SLE-Module-Web-Scripting15-SP2-Updates for sle-15-x86_64"},{"description":"SLE-Module-Web-Scripting15-SP2-Debuginfo-Updates for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Web-Scripting15-SP2-Debuginfo-Updates","distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/15-SP2/x86_64/update_debug/","enabled":false,"id":4162},{"id":4163,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP2/x86_64/product/","autorefresh":false,"distro_target":"sle-15-x86_64","name":"SLE-Module-Web-Scripting15-SP2-Pool","installer_updates":false,"description":"SLE-Module-Web-Scripting15-SP2-Pool for sle-15-x86_64"},{"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP2/x86_64/product_debug/","enabled":false,"id":4164,"description":"SLE-Module-Web-Scripting15-SP2-Debuginfo-Pool for sle-15-x86_64","name":"SLE-Module-Web-Scripting15-SP2-Debuginfo-Pool","installer_updates":false},{"description":"SLE-Module-Web-Scripting15-SP2-Source-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Web-Scripting15-SP2-Source-Pool","distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP2/x86_64/product_source/","enabled":false,"id":4165}],"online_predecessor_ids":[1721,1798],"product_class":"MODULE","cpe":"cpe:/o:suse:sle-module-web-scripting:15:sp2","product_type":"module","description":"

The SUSE Linux Enterprise Web and Scripting Module should contains additional packages that are helpful when running a webserver.

Access to the Web and Scripting Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself: Package versions in this module are usually supported for at most three years. We are planning to release more recent versions on a schedule of approximately 18 month; the exact dates may differ per package.

","shortname":"Web-Scripting-Module","free":true,"eula_url":"","arch":"x86_64","friendly_version":"15 SP2","extensions":[],"release_stage":"released","identifier":"sle-module-web-scripting","id":1976,"recommended":false,"version":"15.2","name":"Web and Scripting Module","offline_predecessor_ids":[1153],"migration_extra":true,"friendly_name":"Web and Scripting Module 15 SP2 x86_64","former_identifier":"sle-module-web-scripting","release_type":null},{"recommended":false,"version":"15.2","offline_predecessor_ids":[1150],"name":"Legacy Module","release_type":null,"former_identifier":"sle-module-legacy","friendly_name":"Legacy Module 15 SP2 x86_64","migration_extra":true,"friendly_version":"15 SP2","extensions":[],"identifier":"sle-module-legacy","release_stage":"released","id":1982,"free":true,"shortname":"Legacy-Module","description":"

The Legacy Module helps you migrating applications from SUSE Linux Enterprise 12 and other systems to SUSE Linux Enterprise 15, by providing packages which are discontinued on SUSE Linux Enterprise Server, such as: ntp, IBM Java 8, and a number of libraries.

Access to the Legacy Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself. Packages in the this module are usually supported for at most three years.

","eula_url":"","arch":"x86_64","predecessor_ids":[1581,1804],"product_class":"MODULE","online_predecessor_ids":[1581,1804],"repositories":[{"description":"SLE-Module-Legacy15-SP2-Updates for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Legacy15-SP2-Updates","distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/15-SP2/x86_64/update/","enabled":true,"id":4191},{"description":"SLE-Module-Legacy15-SP2-Debuginfo-Updates for sle-15-x86_64","name":"SLE-Module-Legacy15-SP2-Debuginfo-Updates","installer_updates":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/15-SP2/x86_64/update_debug/","autorefresh":true,"distro_target":"sle-15-x86_64","id":4192,"enabled":false},{"installer_updates":false,"name":"SLE-Module-Legacy15-SP2-Pool","description":"SLE-Module-Legacy15-SP2-Pool for sle-15-x86_64","enabled":true,"id":4193,"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15-SP2/x86_64/product/"},{"description":"SLE-Module-Legacy15-SP2-Debuginfo-Pool for sle-15-x86_64","name":"SLE-Module-Legacy15-SP2-Debuginfo-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15-SP2/x86_64/product_debug/","autorefresh":false,"distro_target":"sle-15-x86_64","id":4194,"enabled":false},{"installer_updates":false,"name":"SLE-Module-Legacy15-SP2-Source-Pool","description":"SLE-Module-Legacy15-SP2-Source-Pool for sle-15-x86_64","enabled":false,"id":4195,"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15-SP2/x86_64/product_source/"}],"product_type":"module","cpe":"cpe:/o:suse:sle-module-legacy:15:sp2"},{"product_type":"module","cpe":"cpe:/o:suse:sle-module-public-cloud:15:sp2","predecessor_ids":[1611,1808],"repositories":[{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/15-SP2/x86_64/update/","autorefresh":true,"distro_target":"sle-15-x86_64","id":4221,"enabled":true,"description":"SLE-Module-Public-Cloud15-SP2-Updates for sle-15-x86_64","name":"SLE-Module-Public-Cloud15-SP2-Updates","installer_updates":false},{"name":"SLE-Module-Public-Cloud15-SP2-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-Public-Cloud15-SP2-Debuginfo-Updates for sle-15-x86_64","enabled":false,"id":4222,"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/15-SP2/x86_64/update_debug/"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP2/x86_64/product/","distro_target":"sle-15-x86_64","autorefresh":false,"id":4223,"enabled":true,"description":"SLE-Module-Public-Cloud15-SP2-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Public-Cloud15-SP2-Pool"},{"description":"SLE-Module-Public-Cloud15-SP2-Debuginfo-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Public-Cloud15-SP2-Debuginfo-Pool","distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP2/x86_64/product_debug/","enabled":false,"id":4224},{"installer_updates":false,"name":"SLE-Module-Public-Cloud15-SP2-Source-Pool","description":"SLE-Module-Public-Cloud15-SP2-Source-Pool for sle-15-x86_64","id":4225,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP2/x86_64/product_source/","distro_target":"sle-15-x86_64","autorefresh":false}],"online_predecessor_ids":[1611,1808],"product_class":"MODULE","eula_url":"","arch":"x86_64","free":true,"description":"

The Public Cloud Module is a collection of tools that enables you to create and manage cloud images from the commandline on SUSE Linux Enterprise Server. When building your own images with KIWI or SUSE Studio, initialization code specific to the target cloud is included in that image.

Access to the Public Cloud Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself; please check the Release Notes for further details.

","shortname":"Public-Cloud-Module","extensions":[],"release_stage":"released","id":1988,"identifier":"sle-module-public-cloud","friendly_version":"15 SP2","offline_predecessor_ids":[1220],"name":"Public Cloud Module","former_identifier":"sle-module-public-cloud","release_type":null,"migration_extra":false,"friendly_name":"Public Cloud Module 15 SP2 x86_64","recommended":false,"version":"15.2"},{"release_stage":"released","id":2121,"identifier":"ses","extensions":[],"friendly_version":"7","friendly_name":"SUSE Enterprise Storage 7 x86_64","migration_extra":false,"release_type":null,"former_identifier":"ses","name":"SUSE Enterprise Storage","offline_predecessor_ids":[],"version":"7","recommended":false,"cpe":"cpe:/o:suse:ses:7","product_type":"extension","repositories":[{"installer_updates":false,"name":"SUSE-Enterprise-Storage-7-Updates","description":"SUSE-Enterprise-Storage-7-Updates for sle-15-x86_64","enabled":true,"id":4509,"distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/Storage/7/x86_64/update/"},{"enabled":false,"id":4510,"distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/Storage/7/x86_64/update_debug/","installer_updates":false,"name":"SUSE-Enterprise-Storage-7-Debuginfo-Updates","description":"SUSE-Enterprise-Storage-7-Debuginfo-Updates for sle-15-x86_64"},{"id":4511,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/Storage/7/x86_64/product/","autorefresh":false,"distro_target":"sle-15-x86_64","name":"SUSE-Enterprise-Storage-7-Pool","installer_updates":false,"description":"SUSE-Enterprise-Storage-7-Pool for sle-15-x86_64"},{"description":"SUSE-Enterprise-Storage-7-Debuginfo-Pool for sle-15-x86_64","installer_updates":false,"name":"SUSE-Enterprise-Storage-7-Debuginfo-Pool","distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/Storage/7/x86_64/product_debug/","enabled":false,"id":4512},{"id":4513,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/Storage/7/x86_64/product_source/","distro_target":"sle-15-x86_64","autorefresh":false,"installer_updates":false,"name":"SUSE-Enterprise-Storage-7-Source-Pool","description":"SUSE-Enterprise-Storage-7-Source-Pool for sle-15-x86_64"}],"online_predecessor_ids":[],"product_class":"SES","predecessor_ids":[],"arch":"x86_64","eula_url":"https://updates.suse.com/SUSE/Products/Storage/7/x86_64/product.license/","description":"SUSE Enterprise Storage 7 for SUSE Linux Enterprise Server 15 SP2, powered by Ceph.","shortname":"SES7","free":false}],"identifier":"sle-module-server-applications","release_stage":"released","id":1955,"free":true,"description":"

The SUSE Linux Enterprise Server Applications Module delivers a basic set of Server functionality.

Access to the Server Applications Module is included in your SUSE Linux Enterprise Server subscription.

","shortname":"Server-Applications-Module","eula_url":"","arch":"x86_64","predecessor_ids":[1580,1780],"online_predecessor_ids":[1580,1780],"repositories":[{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15-SP2/x86_64/update/","distro_target":"sle-15-x86_64","autorefresh":true,"id":4056,"enabled":true,"description":"SLE-Module-Server-Applications15-SP2-Updates for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Server-Applications15-SP2-Updates"},{"installer_updates":false,"name":"SLE-Module-Server-Applications15-SP2-Debuginfo-Updates","description":"SLE-Module-Server-Applications15-SP2-Debuginfo-Updates for sle-15-x86_64","id":4057,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15-SP2/x86_64/update_debug/","distro_target":"sle-15-x86_64","autorefresh":true},{"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP2/x86_64/product/","enabled":true,"id":4058,"description":"SLE-Module-Server-Applications15-SP2-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Server-Applications15-SP2-Pool"},{"enabled":false,"id":4059,"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP2/x86_64/product_debug/","installer_updates":false,"name":"SLE-Module-Server-Applications15-SP2-Debuginfo-Pool","description":"SLE-Module-Server-Applications15-SP2-Debuginfo-Pool for sle-15-x86_64"},{"description":"SLE-Module-Server-Applications15-SP2-Source-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Server-Applications15-SP2-Source-Pool","distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP2/x86_64/product_source/","enabled":false,"id":4060}],"product_class":"MODULE","product_type":"module","cpe":"cpe:/o:suse:sle-module-server-applications:15:sp2"},{"recommended":false,"version":"15.2","name":"Containers Module","offline_predecessor_ids":[1332],"migration_extra":false,"friendly_name":"Containers Module 15 SP2 x86_64","former_identifier":"sle-module-containers","release_type":null,"friendly_version":"15 SP2","extensions":[{"version":"4.5","recommended":false,"former_identifier":"caasp","release_type":null,"friendly_name":"SUSE CaaS Platform 4.5 x86_64","migration_extra":false,"offline_predecessor_ids":[],"name":"SUSE CaaS Platform","friendly_version":"4.5","identifier":"caasp","release_stage":"released","id":2200,"extensions":[],"free":false,"description":"SUSE CaaS Platform is a Kubernetes-based container management solution used by application development and DevOps teams to more easily and efficiently deploy and manage containerized applications and services. Enterprises use SUSE CaaS Platform to reduce application delivery cycle times and improve business agility. Focused on providing an exceptional platform operator experience, SUSE CaaS Platform delivers Kubernetes innovations in a complete, enterprise grade solution that enables IT to deliver the power of Kubernetes to users more quickly, consistently, and cost-effectively.","shortname":"SUSE CaaS Platform 4.5","arch":"x86_64","eula_url":"","online_predecessor_ids":[1863],"repositories":[{"url":"https://updates.suse.com/SUSE/Updates/SUSE-CAASP/4.5/x86_64/update/","autorefresh":true,"distro_target":"sle-15-x86_64","id":4921,"enabled":true,"description":"SUSE-CAASP-4.5-Updates for sle-15-x86_64","name":"SUSE-CAASP-4.5-Updates","installer_updates":false},{"id":4922,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SUSE-CAASP/4.5/x86_64/update_debug/","autorefresh":true,"distro_target":"sle-15-x86_64","name":"SUSE-CAASP-4.5-Debuginfo-Updates","installer_updates":false,"description":"SUSE-CAASP-4.5-Debuginfo-Updates for sle-15-x86_64"},{"url":"https://updates.suse.com/SUSE/Products/SUSE-CAASP/4.5/x86_64/product/","autorefresh":false,"distro_target":"sle-15-x86_64","id":4923,"enabled":true,"description":"SUSE-CAASP-4.5-Pool for sle-15-x86_64","name":"SUSE-CAASP-4.5-Pool","installer_updates":false},{"url":"https://updates.suse.com/SUSE/Products/SUSE-CAASP/4.5/x86_64/product_debug/","autorefresh":false,"distro_target":"sle-15-x86_64","id":4924,"enabled":false,"description":"SUSE-CAASP-4.5-Debuginfo-Pool for sle-15-x86_64","name":"SUSE-CAASP-4.5-Debuginfo-Pool","installer_updates":false},{"url":"https://updates.suse.com/SUSE/Products/SUSE-CAASP/4.5/x86_64/product_source/","autorefresh":false,"distro_target":"sle-15-x86_64","id":4925,"enabled":false,"description":"SUSE-CAASP-4.5-Source-Pool for sle-15-x86_64","name":"SUSE-CAASP-4.5-Source-Pool","installer_updates":false}],"product_class":"CAASP_X86","predecessor_ids":[1863],"product_type":"extension","cpe":"cpe:/o:suse:caasp:4.5"}],"identifier":"sle-module-containers","release_stage":"released","id":1963,"description":"

This Module contains several packages revolving around containers and related tools.

","shortname":"Containers-Module","free":true,"eula_url":"","arch":"x86_64","predecessor_ids":[1642,1790],"repositories":[{"name":"SLE-Module-Containers15-SP2-Updates","installer_updates":false,"description":"SLE-Module-Containers15-SP2-Updates for sle-15-x86_64","enabled":true,"id":4096,"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/15-SP2/x86_64/update/"},{"id":4097,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/15-SP2/x86_64/update_debug/","distro_target":"sle-15-x86_64","autorefresh":true,"installer_updates":false,"name":"SLE-Module-Containers15-SP2-Debuginfo-Updates","description":"SLE-Module-Containers15-SP2-Debuginfo-Updates for sle-15-x86_64"},{"name":"SLE-Module-Containers15-SP2-Pool","installer_updates":false,"description":"SLE-Module-Containers15-SP2-Pool for sle-15-x86_64","id":4098,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP2/x86_64/product/","autorefresh":false,"distro_target":"sle-15-x86_64"},{"enabled":false,"id":4099,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP2/x86_64/product_debug/","name":"SLE-Module-Containers15-SP2-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-Containers15-SP2-Debuginfo-Pool for sle-15-x86_64"},{"id":4100,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP2/x86_64/product_source/","distro_target":"sle-15-x86_64","autorefresh":false,"installer_updates":false,"name":"SLE-Module-Containers15-SP2-Source-Pool","description":"SLE-Module-Containers15-SP2-Source-Pool for sle-15-x86_64"}],"online_predecessor_ids":[1642,1790],"product_class":"MODULE","cpe":"cpe:/o:suse:sle-module-containers:15:sp2","product_type":"module"},{"extensions":[{"product_type":"module","cpe":"cpe:/o:suse:sle-module-development-tools:15:sp2","predecessor_ids":[1579,1794],"online_predecessor_ids":[1579,1794],"repositories":[{"description":"SLE-Module-DevTools15-SP2-Updates for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-DevTools15-SP2-Updates","distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15-SP2/x86_64/update/","enabled":true,"id":4136},{"installer_updates":false,"name":"SLE-Module-DevTools15-SP2-Debuginfo-Updates","description":"SLE-Module-DevTools15-SP2-Debuginfo-Updates for sle-15-x86_64","enabled":false,"id":4137,"distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15-SP2/x86_64/update_debug/"},{"description":"SLE-Module-DevTools15-SP2-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-DevTools15-SP2-Pool","distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP2/x86_64/product/","enabled":true,"id":4138},{"description":"SLE-Module-DevTools15-SP2-Debuginfo-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-DevTools15-SP2-Debuginfo-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP2/x86_64/product_debug/","distro_target":"sle-15-x86_64","autorefresh":false,"id":4139,"enabled":false},{"description":"SLE-Module-DevTools15-SP2-Source-Pool for sle-15-x86_64","name":"SLE-Module-DevTools15-SP2-Source-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP2/x86_64/product_source/","enabled":false,"id":4140}],"product_class":"MODULE","eula_url":"","arch":"x86_64","free":true,"shortname":"Development-Tools-Module","description":"

The Development Tools Module helps you developing applications for SUSE Linux Enterprise 15.

Access to the Development Tools Module is included in your SUSE Linux Enterprise product subscription. The module has a different lifecycle than SUSE Linux Enterprise itself.

","extensions":[{"friendly_version":"15","extensions":[],"id":2131,"release_stage":"released","identifier":"sle-module-NVIDIA-compute","recommended":false,"version":"15","offline_predecessor_ids":[],"name":"NVIDIA Compute Module","former_identifier":"sle-module-NVIDIA-compute","release_type":null,"migration_extra":false,"friendly_name":"NVIDIA Compute Module 15 x86_64","predecessor_ids":[],"online_predecessor_ids":[],"repositories":[{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-NVIDIA-Compute/15/x86_64/update/","distro_target":"sle-15-x86_64","autorefresh":true,"id":4554,"enabled":true,"description":"SLE-Module-NVIDIA-Compute-15-Updates for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-NVIDIA-Compute-15-Updates"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-NVIDIA-Compute/15/x86_64/product/","distro_target":"sle-15-x86_64","autorefresh":false,"id":4556,"enabled":true,"description":"SLE-Module-NVIDIA-Compute-15-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-NVIDIA-Compute-15-Pool"},{"installer_updates":false,"name":"NVIDIA-Compute-SLE-15","description":"NVIDIA-Compute-SLE-15","enabled":true,"id":4563,"distro_target":null,"autorefresh":true,"url":"https://developer.download.nvidia.com/compute/cuda/repos/sles15/x86_64/"}],"product_class":"MODULE","product_type":"module","cpe":"cpe:/o:suse:sle-module-nvidia-compute:15","free":true,"shortname":"NVIDIA-Compute-Module","description":"NVIDIA Compute Drivers - NVIDIA CUDA This Module contains software under the terms and conditions of a 3rd party EULA (End User License Agreement). The EULA can be found at https://docs.nvidia.com/cuda/eula/index.html. By using this software you agree to fully comply with the terms and conditions of the EULA. If you do not agree to the terms and conditions of the EULA, do not use the software.","eula_url":"https://updates.suse.com/SUSE/Products/SLE-Module-NVIDIA-Compute/15/x86_64/product.license/","arch":"x86_64"}],"release_stage":"released","identifier":"sle-module-development-tools","id":1971,"friendly_version":"15 SP2","offline_predecessor_ids":[1341,1630,1892],"name":"Development Tools Module","release_type":null,"former_identifier":"sle-sdk","migration_extra":true,"friendly_name":"Development Tools Module 15 SP2 x86_64","recommended":false,"version":"15.2"},{"version":"15.2","recommended":false,"release_type":null,"former_identifier":"sle-we","friendly_name":"SUSE Linux Enterprise Workstation Extension 15 SP2 x86_64","migration_extra":false,"offline_predecessor_ids":[1639,1893],"name":"SUSE Linux Enterprise Workstation Extension","friendly_version":"15 SP2","identifier":"sle-we","release_stage":"released","id":1999,"extensions":[],"free":false,"shortname":"SLEWE15-SP2","description":"SUSE Linux Enterprise Workstation Extension adds additional functionality to a base SUSE Linux Enterprise installation. The Workstation Extension offers additional desktop applications (office suite, email client, graphical editor, multimedia tools) and libraries. Workstation Extension is enabled and installed by default on SUSE Linux Enterprise Desktop installation. Adding the Workstation Extension to a SUSE Linux Enterprise Server installation allows to seamlessly combine both products to create a full featured server workstation.","arch":"x86_64","eula_url":"https://updates.suse.com/SUSE/Products/SLE-Product-WE/15-SP2/x86_64/product.license/","online_predecessor_ids":[1583,1781],"product_class":"SLE-WE","repositories":[{"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-WE/15-SP2/x86_64/update/","autorefresh":true,"distro_target":"sle-15-x86_64","id":4276,"enabled":true,"description":"SLE-Product-WE15-SP2-Updates for sle-15-x86_64","name":"SLE-Product-WE15-SP2-Updates","installer_updates":false},{"distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-WE/15-SP2/x86_64/update_debug/","enabled":false,"id":4277,"description":"SLE-Product-WE15-SP2-Debuginfo-Updates for sle-15-x86_64","installer_updates":false,"name":"SLE-Product-WE15-SP2-Debuginfo-Updates"},{"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-WE/15-SP2/x86_64/product/","enabled":true,"id":4278,"description":"SLE-Product-WE15-SP2-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Product-WE15-SP2-Pool"},{"installer_updates":false,"name":"SLE-Product-WE15-SP2-Debuginfo-Pool","description":"SLE-Product-WE15-SP2-Debuginfo-Pool for sle-15-x86_64","id":4279,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-WE/15-SP2/x86_64/product_debug/","distro_target":"sle-15-x86_64","autorefresh":false},{"name":"SLE-Product-WE15-SP2-Source-Pool","installer_updates":false,"description":"SLE-Product-WE15-SP2-Source-Pool for sle-15-x86_64","enabled":false,"id":4280,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Product-WE/15-SP2/x86_64/product_source/"},{"name":"SLE-15-SP2-Desktop-NVIDIA-Driver","installer_updates":false,"description":"SLE-15-SP2-Desktop-NVIDIA-Driver","id":4450,"enabled":true,"url":"https://download.nvidia.com/suse/sle15sp2/","autorefresh":true,"distro_target":null}],"predecessor_ids":[1583,1781],"product_type":"extension","cpe":"cpe:/o:suse:sle-we:15:sp2"}],"release_stage":"released","identifier":"sle-module-desktop-applications","id":1967,"friendly_version":"15 SP2","offline_predecessor_ids":[],"name":"Desktop Applications Module","former_identifier":"sle-module-desktop-applications","release_type":null,"friendly_name":"Desktop Applications Module 15 SP2 x86_64","migration_extra":true,"recommended":false,"version":"15.2","product_type":"module","cpe":"cpe:/o:suse:sle-module-desktop-applications:15:sp2","predecessor_ids":[1578,1776],"online_predecessor_ids":[1578,1776],"product_class":"MODULE","repositories":[{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15-SP2/x86_64/update/","distro_target":"sle-15-x86_64","autorefresh":true,"id":4116,"enabled":true,"description":"SLE-Module-Desktop-Applications15-SP2-Updates for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Desktop-Applications15-SP2-Updates"},{"distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15-SP2/x86_64/update_debug/","enabled":false,"id":4117,"description":"SLE-Module-Desktop-Applications15-SP2-Debuginfo-Updates for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Desktop-Applications15-SP2-Debuginfo-Updates"},{"installer_updates":false,"name":"SLE-Module-Desktop-Applications15-SP2-Pool","description":"SLE-Module-Desktop-Applications15-SP2-Pool for sle-15-x86_64","id":4118,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP2/x86_64/product/","distro_target":"sle-15-x86_64","autorefresh":false},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP2/x86_64/product_debug/","distro_target":"sle-15-x86_64","autorefresh":false,"id":4119,"enabled":false,"description":"SLE-Module-Desktop-Applications15-SP2-Debuginfo-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Desktop-Applications15-SP2-Debuginfo-Pool"},{"enabled":false,"id":4120,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP2/x86_64/product_source/","name":"SLE-Module-Desktop-Applications15-SP2-Source-Pool","installer_updates":false,"description":"SLE-Module-Desktop-Applications15-SP2-Source-Pool for sle-15-x86_64"}],"eula_url":"","arch":"x86_64","free":true,"description":"

The SUSE Linux Enterprise Desktop Applications Module delivers a basic set of Desktop functionality.

Access to the Desktop Applications Module is included in your SUSE Linux Enterprise product subscription.

","shortname":"Desktop-Applications-Module"},{"eula_url":"","arch":"x86_64","shortname":"Live-Patching","description":"

SUSE Linux Enterprise Live Patching provides packages to update critical components in SUSE Linux Enterprise. With SUSE Linux Enterprise Live Patching, you can perform critical patching without shutting down your system, reducing the need for planned downtime and increasing service availability.

","free":false,"cpe":"cpe:/o:suse:sle-module-live-patching:15:sp2","product_type":"extension","predecessor_ids":[1736,1828],"repositories":[{"name":"SLE-Module-Live-Patching15-SP2-Updates","installer_updates":false,"description":"SLE-Module-Live-Patching15-SP2-Updates for sle-15-x86_64","enabled":true,"id":4201,"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Live-Patching/15-SP2/x86_64/update/"},{"enabled":false,"id":4202,"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Live-Patching/15-SP2/x86_64/update_debug/","name":"SLE-Module-Live-Patching15-SP2-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-Live-Patching15-SP2-Debuginfo-Updates for sle-15-x86_64"},{"name":"SLE-Module-Live-Patching15-SP2-Pool","installer_updates":false,"description":"SLE-Module-Live-Patching15-SP2-Pool for sle-15-x86_64","id":4203,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Live-Patching/15-SP2/x86_64/product/","autorefresh":false,"distro_target":"sle-15-x86_64"},{"name":"SLE-Module-Live-Patching15-SP2-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-Live-Patching15-SP2-Debuginfo-Pool for sle-15-x86_64","id":4204,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Live-Patching/15-SP2/x86_64/product_debug/","autorefresh":false,"distro_target":"sle-15-x86_64"},{"description":"SLE-Module-Live-Patching15-SP2-Source-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Live-Patching15-SP2-Source-Pool","distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Live-Patching/15-SP2/x86_64/product_source/","enabled":false,"id":4205}],"online_predecessor_ids":[1736,1828],"product_class":"SLE-LP","name":"SUSE Linux Enterprise Live Patching","offline_predecessor_ids":[1757,1888],"friendly_name":"SUSE Linux Enterprise Live Patching 15 SP2 x86_64","migration_extra":false,"former_identifier":"sle-module-live-patching","release_type":null,"recommended":false,"version":"15.2","extensions":[],"id":1984,"release_stage":"released","identifier":"sle-module-live-patching","friendly_version":"15 SP2"},{"online_predecessor_ids":[1867],"product_class":"MODULE","repositories":[{"name":"SLE-Module-Python2-15-SP2-Updates","installer_updates":false,"description":"SLE-Module-Python2-15-SP2-Updates for sle-15-x86_64","enabled":true,"id":4241,"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Python2/15-SP2/x86_64/update/"},{"enabled":false,"id":4242,"distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Python2/15-SP2/x86_64/update_debug/","installer_updates":false,"name":"SLE-Module-Python2-15-SP2-Debuginfo-Updates","description":"SLE-Module-Python2-15-SP2-Debuginfo-Updates for sle-15-x86_64"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Python2/15-SP2/x86_64/product/","distro_target":"sle-15-x86_64","autorefresh":false,"id":4243,"enabled":true,"description":"SLE-Module-Python2-15-SP2-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Python2-15-SP2-Pool"},{"description":"SLE-Module-Python2-15-SP2-Debuginfo-Pool for sle-15-x86_64","name":"SLE-Module-Python2-15-SP2-Debuginfo-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Python2/15-SP2/x86_64/product_debug/","enabled":false,"id":4244},{"description":"SLE-Module-Python2-15-SP2-Source-Pool for sle-15-x86_64","name":"SLE-Module-Python2-15-SP2-Source-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Python2/15-SP2/x86_64/product_source/","enabled":false,"id":4245}],"predecessor_ids":[1867],"product_type":"module","cpe":"cpe:/o:suse:sle-module-python2:15:sp2","free":true,"shortname":"Python2-Module","description":"

This module contains the python 2 packages.

Access to the Python 2 Module is included in your SUSE Linux Enterprise subscription. The module has a different lifecycle than SUSE Linux Enterprise itself. Packages in the this module are usually supported for at most three years.

","arch":"x86_64","eula_url":"","friendly_version":"15 SP2","identifier":"sle-module-python2","release_stage":"released","id":1992,"extensions":[],"version":"15.2","recommended":false,"release_type":null,"former_identifier":"sle-module-python2","migration_extra":true,"friendly_name":"Python 2 Module 15 SP2 x86_64","offline_predecessor_ids":[],"name":"Python 2 Module"},{"description":"

Transactional Updates provide SUSE Linux Enterprise systems with a method of updating the operating system and its packages in an entirely ‘atomic’ way. Updates are either applied to the system all together in a single transaction, or not at all. This happens without influencing the running system. If an update fails, or if the successful update is deemed to be incompatible or otherwise incorrect, it can be discarded to immediately return the system to its previous functioning state.

Access to theTransactional Server Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself: Package versions in the this module are usually supported for at most three years. We are planning to release more recent versions on a schedule of approximately 18 month; the exact dates may differ per package.

","shortname":"Transactional-Server-Module","free":true,"eula_url":"","arch":"x86_64","predecessor_ids":[1825],"online_predecessor_ids":[1825],"repositories":[{"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Transactional-Server/15-SP2/x86_64/update/","enabled":true,"id":4271,"description":"SLE-Module-Transactional-Server15-SP2-Updates for sle-15-x86_64","name":"SLE-Module-Transactional-Server15-SP2-Updates","installer_updates":false},{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Transactional-Server/15-SP2/x86_64/update_debug/","autorefresh":true,"distro_target":"sle-15-x86_64","id":4272,"enabled":false,"description":"SLE-Module-Transactional-Server15-SP2-Debuginfo-Updates for sle-15-x86_64","name":"SLE-Module-Transactional-Server15-SP2-Debuginfo-Updates","installer_updates":false},{"enabled":true,"id":4273,"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Transactional-Server/15-SP2/x86_64/product/","installer_updates":false,"name":"SLE-Module-Transactional-Server15-SP2-Pool","description":"SLE-Module-Transactional-Server15-SP2-Pool for sle-15-x86_64"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Transactional-Server/15-SP2/x86_64/product_debug/","autorefresh":false,"distro_target":"sle-15-x86_64","id":4274,"enabled":false,"description":"SLE-Module-Transactional-Server15-SP2-Debuginfo-Pool for sle-15-x86_64","name":"SLE-Module-Transactional-Server15-SP2-Debuginfo-Pool","installer_updates":false},{"id":4275,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Transactional-Server/15-SP2/x86_64/product_source/","distro_target":"sle-15-x86_64","autorefresh":false,"installer_updates":false,"name":"SLE-Module-Transactional-Server15-SP2-Source-Pool","description":"SLE-Module-Transactional-Server15-SP2-Source-Pool for sle-15-x86_64"}],"product_class":"MODULE","cpe":"cpe:/o:suse:sle-module-transactional-server:15:sp2","product_type":"module","recommended":false,"version":"15.2","name":"Transactional Server Module","offline_predecessor_ids":[],"friendly_name":"Transactional Server Module 15 SP2 x86_64","migration_extra":false,"release_type":null,"former_identifier":"sle-module-transactional-server","friendly_version":"15 SP2","extensions":[],"id":1998,"release_stage":"released","identifier":"sle-module-transactional-server"},{"offline_predecessor_ids":[1678],"name":"SUSE Cloud Application Platform Tools Module","former_identifier":"sle-module-cap-tools","release_type":null,"friendly_name":"SUSE Cloud Application Platform Tools Module 15 SP2 x86_64","migration_extra":false,"recommended":false,"version":"15.2","extensions":[],"release_stage":"released","id":2075,"identifier":"sle-module-cap-tools","friendly_version":"15 SP2","eula_url":"","arch":"x86_64","free":true,"description":"

The SUSE Cloud Application Platform Tools Module is a collection of tools that enables you to interact with the SUSE Cloud Application Platform product itself, providing the commandline client for instance.

Access to the SUSE Cloud Application Platform Tools Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself; please check the Release Notes for further details.

","shortname":"SUSE-CAP-Tools-Module","product_type":"module","cpe":"cpe:/o:suse:sle-module-cap-tools:15:sp2","predecessor_ids":[1728,1809],"repositories":[{"description":"SLE-Module-CAP-Tools15-SP2-Updates for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-CAP-Tools15-SP2-Updates","distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-CAP-Tools/15-SP2/x86_64/update/","enabled":true,"id":4424},{"name":"SLE-Module-CAP-Tools15-SP2-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-CAP-Tools15-SP2-Debuginfo-Updates for sle-15-x86_64","id":4425,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-CAP-Tools/15-SP2/x86_64/update_debug/","autorefresh":true,"distro_target":"sle-15-x86_64"},{"description":"SLE-Module-CAP-Tools15-SP2-Pool for sle-15-x86_64","name":"SLE-Module-CAP-Tools15-SP2-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-CAP-Tools/15-SP2/x86_64/product/","enabled":true,"id":4426},{"description":"SLE-Module-CAP-Tools15-SP2-Debuginfo-Pool for sle-15-x86_64","name":"SLE-Module-CAP-Tools15-SP2-Debuginfo-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-CAP-Tools/15-SP2/x86_64/product_debug/","autorefresh":false,"distro_target":"sle-15-x86_64","id":4427,"enabled":false},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-CAP-Tools/15-SP2/x86_64/product_source/","autorefresh":false,"distro_target":"sle-15-x86_64","id":4428,"enabled":false,"description":"SLE-Module-CAP-Tools15-SP2-Source-Pool for sle-15-x86_64","name":"SLE-Module-CAP-Tools15-SP2-Source-Pool","installer_updates":false}],"online_predecessor_ids":[1728,1809],"product_class":"MODULE"}],"identifier":"sle-module-basesystem","release_stage":"released","id":1946,"recommended":true,"version":"15.2","offline_predecessor_ids":[1212,1368,1440],"name":"Basesystem Module","former_identifier":"sle-module-basesystem","release_type":null,"migration_extra":false,"friendly_name":"Basesystem Module 15 SP2 x86_64","predecessor_ids":[1576,1772],"repositories":[{"id":3999,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15-SP2/x86_64/update/","distro_target":"sle-15-x86_64","autorefresh":true,"installer_updates":false,"name":"SLE-Module-Basesystem15-SP2-Updates","description":"SLE-Module-Basesystem15-SP2-Updates for sle-15-x86_64"},{"name":"SLE-Module-Basesystem15-SP2-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-Basesystem15-SP2-Debuginfo-Updates for sle-15-x86_64","enabled":false,"id":4000,"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15-SP2/x86_64/update_debug/"},{"description":"SLE-Module-Basesystem15-SP2-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Basesystem15-SP2-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP2/x86_64/product/","distro_target":"sle-15-x86_64","autorefresh":false,"id":4001,"enabled":true},{"description":"SLE-Module-Basesystem15-SP2-Debuginfo-Pool for sle-15-x86_64","name":"SLE-Module-Basesystem15-SP2-Debuginfo-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP2/x86_64/product_debug/","autorefresh":false,"distro_target":"sle-15-x86_64","id":4002,"enabled":false},{"description":"SLE-Module-Basesystem15-SP2-Source-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Basesystem15-SP2-Source-Pool","distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP2/x86_64/product_source/","enabled":false,"id":4003}],"online_predecessor_ids":[1576,1772],"product_class":"MODULE","product_type":"module","cpe":"cpe:/o:suse:sle-module-basesystem:15:sp2","free":true,"description":"

The SUSE Linux Enterprise Basesystem Module delivers the base system of the product.

","shortname":"Basesystem-Module","eula_url":"","arch":"x86_64"},{"predecessor_ids":[],"online_predecessor_ids":[],"product_class":"SLES15-SP2-LTSS-X86","repositories":[{"distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-SLES/15-SP2-LTSS/x86_64/update/","enabled":true,"id":5458,"description":"SLE-Product-SLES15-SP2-LTSS-Updates for sle-15-x86_64","installer_updates":false,"name":"SLE-Product-SLES15-SP2-LTSS-Updates"},{"name":"SLE-Product-SLES15-SP2-Debuginfo-LTSS-Updates","installer_updates":false,"description":"SLE-Product-SLES15-SP2-Debuginfo-LTSS-Updates for sle-15-x86_64","enabled":false,"id":5459,"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Product-SLES/15-SP2-LTSS/x86_64/update_debug/"}],"cpe":"cpe:/o:suse:sles-ltss:15:sp2","product_type":"extension","shortname":"SLES15-SP2-LTSS","description":"SUSE Linux Enterprise offers a comprehensive suite of products built on a single code base. The platform addresses business needs from the smallest thin-client devices to the world's most powerful high-performance computing and mainframe servers. SUSE Linux Enterprise offers common management tools and technology certifications across the platform, and each product is enterprise-class.","free":false,"eula_url":"","arch":"x86_64","friendly_version":"15 SP2","extensions":[],"release_stage":"released","identifier":"SLES-LTSS","id":2375,"recommended":false,"version":"15.2","name":"SUSE Linux Enterprise Server LTSS","offline_predecessor_ids":[],"friendly_name":"SUSE Linux Enterprise Server LTSS 15 SP2 x86_64","migration_extra":false,"former_identifier":"SLES-LTSS","release_type":null}],"friendly_version":"15 SP2","release_type":null,"former_identifier":"SLES","migration_extra":false,"friendly_name":"SUSE Linux Enterprise Server 15 SP2 x86_64","offline_predecessor_ids":[1625,1878],"name":"SUSE Linux Enterprise Server","version":"15.2","recommended":false,"product_type":"base","cpe":"cpe:/o:suse:sles:15:sp2","online_predecessor_ids":[1575,1763,2001],"product_class":"7261","repositories":[{"description":"SLE-Product-SLES15-SP2-Updates for sle-15-x86_64","name":"SLE-Product-SLES15-SP2-Updates","installer_updates":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-SLES/15-SP2/x86_64/update/","autorefresh":true,"distro_target":"sle-15-x86_64","id":3960,"enabled":true},{"enabled":false,"id":3961,"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Product-SLES/15-SP2/x86_64/update_debug/","name":"SLE-Product-SLES15-SP2-Debuginfo-Updates","installer_updates":false,"description":"SLE-Product-SLES15-SP2-Debuginfo-Updates for sle-15-x86_64"},{"url":"https://updates.suse.com/SUSE/Updates/SLE-INSTALLER/15-SP2/x86_64/update/","distro_target":"sle-15-x86_64","autorefresh":true,"id":3962,"enabled":false,"description":"SLE15-SP2-Installer-Updates for sle-15-x86_64","installer_updates":true,"name":"SLE15-SP2-Installer-Updates"},{"installer_updates":false,"name":"SLE-Product-SLES15-SP2-Pool","description":"SLE-Product-SLES15-SP2-Pool for sle-15-x86_64","enabled":true,"id":3963,"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-SLES/15-SP2/x86_64/product/"},{"description":"SLE-Product-SLES15-SP2-Debuginfo-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Product-SLES15-SP2-Debuginfo-Pool","distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-SLES/15-SP2/x86_64/product_debug/","enabled":false,"id":3964},{"description":"SLE-Product-SLES15-SP2-Source-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Product-SLES15-SP2-Source-Pool","distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-SLES/15-SP2/x86_64/product_source/","enabled":false,"id":3965}],"predecessor_ids":[1575,1763,2001],"arch":"x86_64","eula_url":"https://updates.suse.com/SUSE/Products/SLE-Product-SLES/15-SP2/x86_64/product.license/","free":false,"description":"SUSE Linux Enterprise offers a comprehensive suite of products built on a single code base. The platform addresses business needs from the smallest thin-client devices to the world's most powerful high-performance computing and mainframe servers. SUSE Linux Enterprise offers common management tools and technology certifications across the platform, and each product is enterprise-class.","shortname":"SLES15-SP2"},{"free":false,"shortname":"SLE-15-SP2-SAP","description":"SUSE Linux Enterprise offers a comprehensive suite of products built on a single code base. The platform addresses business needs from the smallest thin-client devices to the world's most powerful high-performance computing and mainframe servers. SUSE Linux Enterprise offers common management tools and technology certifications across the platform, and each product is enterprise-class.","arch":"ppc64le","eula_url":"https://updates.suse.com/SUSE/Products/SLE-Product-SLES_SAP/15-SP2/ppc64le/product.license/","product_class":"AiO-PPC","online_predecessor_ids":[1613,1765],"repositories":[{"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-SLES_SAP/15-SP2/ppc64le/update/","autorefresh":true,"distro_target":"sle-15-ppc64le","id":3966,"enabled":true,"description":"SLE-Product-SLES_SAP15-SP2-Updates for sle-15-ppc64le","name":"SLE-Product-SLES_SAP15-SP2-Updates","installer_updates":false},{"description":"SLE-Product-SLES_SAP15-SP2-Debuginfo-Updates for sle-15-ppc64le","name":"SLE-Product-SLES_SAP15-SP2-Debuginfo-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Updates/SLE-Product-SLES_SAP/15-SP2/ppc64le/update_debug/","enabled":false,"id":3967},{"installer_updates":false,"name":"SLE-Product-SLES_SAP15-SP2-Pool","description":"SLE-Product-SLES_SAP15-SP2-Pool for sle-15-ppc64le","enabled":true,"id":3968,"distro_target":"sle-15-ppc64le","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-SLES_SAP/15-SP2/ppc64le/product/"},{"autorefresh":false,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Products/SLE-Product-SLES_SAP/15-SP2/ppc64le/product_debug/","enabled":false,"id":3969,"description":"SLE-Product-SLES_SAP15-SP2-Debuginfo-Pool for sle-15-ppc64le","name":"SLE-Product-SLES_SAP15-SP2-Debuginfo-Pool","installer_updates":false},{"enabled":false,"id":3970,"distro_target":"sle-15-ppc64le","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-SLES_SAP/15-SP2/ppc64le/product_source/","installer_updates":false,"name":"SLE-Product-SLES_SAP15-SP2-Source-Pool","description":"SLE-Product-SLES_SAP15-SP2-Source-Pool for sle-15-ppc64le"}],"predecessor_ids":[1613,1765],"product_type":"base","cpe":"cpe:/o:suse:sles_sap:15:sp2","version":"15.2","recommended":false,"release_type":null,"former_identifier":"SUSE_SLES_SAP","migration_extra":false,"friendly_name":"SUSE Linux Enterprise Server for SAP Applications 15 SP2 ppc64le","offline_predecessor_ids":[1754,1879],"name":"SUSE Linux Enterprise Server for SAP Applications","friendly_version":"15 SP2","id":1940,"release_stage":"released","identifier":"SLES_SAP","extensions":[{"release_stage":"released","id":1944,"identifier":"sle-module-basesystem","extensions":[{"former_identifier":"PackageHub","release_type":null,"migration_extra":false,"friendly_name":"SUSE Package Hub 15 SP2 ppc64le","offline_predecessor_ids":[1811,1913],"name":"SUSE Package Hub","version":"15.2","recommended":false,"identifier":"PackageHub","release_stage":"released","id":1948,"extensions":[],"friendly_version":"15 SP2","arch":"ppc64le","eula_url":"","free":true,"shortname":"SUSE-PackageHub-15","description":"SUSE Package Hub is a free of charge extension providing access to community maintained packages built to run on SUSE Linux Enterprise Server. Built from the same sources used in the openSUSE distributions, these quality packages provide additional software to what is found in the SUSE Linux Enterprise Server product. Packages from the Package Hub are delivered without L3 support from SUSE. General updates and fixes to the packages in SUSE Package Hub are provided by the openSUSE community based on their discretion, though SUSE will monitor and ensure that any known critical security issues will be addressed. Packages in the Package Hub are approved by SUSE for use with SUSE Linux Enterprise Server 15-SP2 and to not interfere with the supportability of SUSE Linux Enterprise Server, its modules and extensions. For more information about SUSE Package Hub please visit https://packagehub.suse.com.","product_type":"extension","cpe":"cpe:/o:suse:packagehub:15:sp2","online_predecessor_ids":[1741,1869],"product_class":"MODULE","repositories":[{"description":"SUSE-PackageHub-15-SP2-Backports-Pool for sle-15-ppc64le","installer_updates":false,"name":"SUSE-PackageHub-15-SP2-Backports-Pool","distro_target":"sle-15-ppc64le","autorefresh":false,"url":"https://updates.suse.com/SUSE/Backports/SLE-15-SP2_ppc64le/standard/","enabled":true,"id":4012},{"autorefresh":true,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Backports/SLE-15-SP2_ppc64le/standard_debug/","enabled":false,"id":4013,"description":"SUSE-PackageHub-15-SP2-Backports-Debuginfo for sle-15-ppc64le","name":"SUSE-PackageHub-15-SP2-Backports-Debuginfo","installer_updates":false},{"name":"SLE-Module-Packagehub-Subpackages15-SP2-Updates","installer_updates":false,"description":"SLE-Module-Packagehub-Subpackages15-SP2-Updates for sle-15-ppc64le","id":4014,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP2/ppc64le/update/","autorefresh":true,"distro_target":"sle-15-ppc64le"},{"autorefresh":true,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP2/ppc64le/update_debug/","enabled":false,"id":4015,"description":"SLE-Module-Packagehub-Subpackages15-SP2-Debuginfo-Updates for sle-15-ppc64le","name":"SLE-Module-Packagehub-Subpackages15-SP2-Debuginfo-Updates","installer_updates":false},{"id":4016,"enabled":true,"url":"https://updates.suse.com/SUSE/Backports/SLE-15-SP2_ppc64le/product/","autorefresh":false,"distro_target":"sle-15-ppc64le","name":"SUSE-PackageHub-15-SP2-Pool","installer_updates":false,"description":"SUSE-PackageHub-15-SP2-Pool for sle-15-ppc64le"},{"description":"SLE-Module-Packagehub-Subpackages15-SP2-Pool for sle-15-ppc64le","name":"SLE-Module-Packagehub-Subpackages15-SP2-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP2/ppc64le/product/","enabled":true,"id":4017},{"description":"SLE-Module-Packagehub-Subpackages15-SP2-Debuginfo-Pool for sle-15-ppc64le","name":"SLE-Module-Packagehub-Subpackages15-SP2-Debuginfo-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP2/ppc64le/product_debug/","enabled":false,"id":4018},{"installer_updates":false,"name":"SLE-Module-Packagehub-Subpackages15-SP2-Source-Pool","description":"SLE-Module-Packagehub-Subpackages15-SP2-Source-Pool for sle-15-ppc64le","id":4019,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP2/ppc64le/product_source/","distro_target":"sle-15-ppc64le","autorefresh":false}],"predecessor_ids":[1741,1869]},{"migration_extra":false,"friendly_name":"Server Applications Module 15 SP2 ppc64le","former_identifier":"sle-module-server-applications","release_type":null,"name":"Server Applications Module","offline_predecessor_ids":[],"version":"15.2","recommended":true,"id":1953,"release_stage":"released","identifier":"sle-module-server-applications","extensions":[{"version":"15.2","recommended":true,"former_identifier":"sle-ha","release_type":null,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise High Availability Extension 15 SP2 ppc64le","offline_predecessor_ids":[1635,1882],"name":"SUSE Linux Enterprise High Availability Extension","friendly_version":"15 SP2","id":1957,"release_stage":"released","identifier":"sle-ha","extensions":[{"eula_url":"","arch":"ppc64le","free":true,"shortname":"SAP-Applications-Module","description":"

The SAP Applications module contains the specialized tools for SAP Applications administration.

The module is maintained and supported by the SUSE Linux Enterprise Server for SAP Applications product subscription.

","product_type":"module","cpe":"cpe:/o:suse:sle-module-sap-applications:15:sp2","predecessor_ids":[1726,1786],"repositories":[{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-SAP-Applications/15-SP2/ppc64le/update/","autorefresh":true,"distro_target":"sle-15-ppc64le","id":4246,"enabled":true,"description":"SLE-Module-SAP-Applications15-SP2-Updates for sle-15-ppc64le","name":"SLE-Module-SAP-Applications15-SP2-Updates","installer_updates":false},{"id":4247,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-SAP-Applications/15-SP2/ppc64le/update_debug/","autorefresh":true,"distro_target":"sle-15-ppc64le","name":"SLE-Module-SAP-Applications15-SP2-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-SAP-Applications15-SP2-Debuginfo-Updates for sle-15-ppc64le"},{"description":"SLE-Module-SAP-Applications15-SP2-Pool for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-SAP-Applications15-SP2-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-SAP-Applications/15-SP2/ppc64le/product/","distro_target":"sle-15-ppc64le","autorefresh":false,"id":4248,"enabled":true},{"name":"SLE-Module-SAP-Applications15-SP2-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-SAP-Applications15-SP2-Debuginfo-Pool for sle-15-ppc64le","id":4249,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-SAP-Applications/15-SP2/ppc64le/product_debug/","autorefresh":false,"distro_target":"sle-15-ppc64le"},{"description":"SLE-Module-SAP-Applications15-SP2-Source-Pool for sle-15-ppc64le","name":"SLE-Module-SAP-Applications15-SP2-Source-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Products/SLE-Module-SAP-Applications/15-SP2/ppc64le/product_source/","enabled":false,"id":4250}],"online_predecessor_ids":[1726,1786],"product_class":"MODULE","offline_predecessor_ids":[],"name":"SAP Applications Module","release_type":null,"former_identifier":"sle-module-sap-applications","friendly_name":"SAP Applications Module 15 SP2 ppc64le","migration_extra":false,"recommended":true,"version":"15.2","extensions":[],"id":1993,"release_stage":"released","identifier":"sle-module-sap-applications","friendly_version":"15 SP2"}],"free":false,"description":"SUSE Linux High Availability Extension provides mature, industry-leading open-source high-availability clustering technologies that are easy to set up and use. It can be deployed in physical and/or virtual environments, and can cluster physical servers, virtual servers, or any combination of the two to suit your business’ needs.","shortname":"SLEHA15-SP2","arch":"ppc64le","eula_url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP2/ppc64le/product.license/","repositories":[{"enabled":true,"id":4066,"autorefresh":true,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Updates/SLE-Product-HA/15-SP2/ppc64le/update/","name":"SLE-Product-HA15-SP2-Updates","installer_updates":false,"description":"SLE-Product-HA15-SP2-Updates for sle-15-ppc64le"},{"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-HA/15-SP2/ppc64le/update_debug/","distro_target":"sle-15-ppc64le","autorefresh":true,"id":4067,"enabled":false,"description":"SLE-Product-HA15-SP2-Debuginfo-Updates for sle-15-ppc64le","installer_updates":false,"name":"SLE-Product-HA15-SP2-Debuginfo-Updates"},{"installer_updates":false,"name":"SLE-Product-HA15-SP2-Pool","description":"SLE-Product-HA15-SP2-Pool for sle-15-ppc64le","id":4068,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP2/ppc64le/product/","distro_target":"sle-15-ppc64le","autorefresh":false},{"name":"SLE-Product-HA15-SP2-Debuginfo-Pool","installer_updates":false,"description":"SLE-Product-HA15-SP2-Debuginfo-Pool for sle-15-ppc64le","enabled":false,"id":4069,"autorefresh":false,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP2/ppc64le/product_debug/"},{"distro_target":"sle-15-ppc64le","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP2/ppc64le/product_source/","enabled":false,"id":4070,"description":"SLE-Product-HA15-SP2-Source-Pool for sle-15-ppc64le","installer_updates":false,"name":"SLE-Product-HA15-SP2-Source-Pool"}],"online_predecessor_ids":[1606,1783],"product_class":"SLE-HAE-PPC","predecessor_ids":[1606,1783],"product_type":"extension","cpe":"cpe:/o:suse:sle-ha:15:sp2"},{"recommended":false,"version":"15.2","name":"Web and Scripting Module","offline_predecessor_ids":[1151],"migration_extra":false,"friendly_name":"Web and Scripting Module 15 SP2 ppc64le","release_type":null,"former_identifier":"sle-module-web-scripting","friendly_version":"15 SP2","extensions":[],"release_stage":"released","id":1974,"identifier":"sle-module-web-scripting","description":"

The SUSE Linux Enterprise Web and Scripting Module should contains additional packages that are helpful when running a webserver.

Access to the Web and Scripting Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself: Package versions in this module are usually supported for at most three years. We are planning to release more recent versions on a schedule of approximately 18 month; the exact dates may differ per package.

","shortname":"Web-Scripting-Module","free":true,"eula_url":"","arch":"ppc64le","predecessor_ids":[1719,1796],"product_class":"MODULE","online_predecessor_ids":[1719,1796],"repositories":[{"installer_updates":false,"name":"SLE-Module-Web-Scripting15-SP2-Updates","description":"SLE-Module-Web-Scripting15-SP2-Updates for sle-15-ppc64le","id":4151,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/15-SP2/ppc64le/update/","distro_target":"sle-15-ppc64le","autorefresh":true},{"description":"SLE-Module-Web-Scripting15-SP2-Debuginfo-Updates for sle-15-ppc64le","name":"SLE-Module-Web-Scripting15-SP2-Debuginfo-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/15-SP2/ppc64le/update_debug/","enabled":false,"id":4152},{"description":"SLE-Module-Web-Scripting15-SP2-Pool for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-Web-Scripting15-SP2-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP2/ppc64le/product/","distro_target":"sle-15-ppc64le","autorefresh":false,"id":4153,"enabled":true},{"distro_target":"sle-15-ppc64le","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP2/ppc64le/product_debug/","enabled":false,"id":4154,"description":"SLE-Module-Web-Scripting15-SP2-Debuginfo-Pool for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-Web-Scripting15-SP2-Debuginfo-Pool"},{"description":"SLE-Module-Web-Scripting15-SP2-Source-Pool for sle-15-ppc64le","name":"SLE-Module-Web-Scripting15-SP2-Source-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP2/ppc64le/product_source/","autorefresh":false,"distro_target":"sle-15-ppc64le","id":4155,"enabled":false}],"cpe":"cpe:/o:suse:sle-module-web-scripting:15:sp2","product_type":"module"},{"online_predecessor_ids":[1603,1802],"repositories":[{"description":"SLE-Module-Legacy15-SP2-Updates for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-Legacy15-SP2-Updates","distro_target":"sle-15-ppc64le","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/15-SP2/ppc64le/update/","enabled":true,"id":4181},{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/15-SP2/ppc64le/update_debug/","distro_target":"sle-15-ppc64le","autorefresh":true,"id":4182,"enabled":false,"description":"SLE-Module-Legacy15-SP2-Debuginfo-Updates for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-Legacy15-SP2-Debuginfo-Updates"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15-SP2/ppc64le/product/","distro_target":"sle-15-ppc64le","autorefresh":false,"id":4183,"enabled":true,"description":"SLE-Module-Legacy15-SP2-Pool for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-Legacy15-SP2-Pool"},{"name":"SLE-Module-Legacy15-SP2-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-Legacy15-SP2-Debuginfo-Pool for sle-15-ppc64le","enabled":false,"id":4184,"autorefresh":false,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15-SP2/ppc64le/product_debug/"},{"installer_updates":false,"name":"SLE-Module-Legacy15-SP2-Source-Pool","description":"SLE-Module-Legacy15-SP2-Source-Pool for sle-15-ppc64le","enabled":false,"id":4185,"distro_target":"sle-15-ppc64le","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15-SP2/ppc64le/product_source/"}],"product_class":"MODULE","predecessor_ids":[1603,1802],"cpe":"cpe:/o:suse:sle-module-legacy:15:sp2","product_type":"module","description":"

The Legacy Module helps you migrating applications from SUSE Linux Enterprise 12 and other systems to SUSE Linux Enterprise 15, by providing packages which are discontinued on SUSE Linux Enterprise Server, such as: ntp, IBM Java 8, and a number of libraries.

Access to the Legacy Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself. Packages in the this module are usually supported for at most three years.

","shortname":"Legacy-Module","free":true,"arch":"ppc64le","eula_url":"","friendly_version":"15 SP2","id":1980,"release_stage":"released","identifier":"sle-module-legacy","extensions":[],"version":"15.2","recommended":false,"friendly_name":"Legacy Module 15 SP2 ppc64le","migration_extra":true,"release_type":null,"former_identifier":"sle-module-legacy","name":"Legacy Module","offline_predecessor_ids":[1148]},{"cpe":"cpe:/o:suse:sle-module-public-cloud:15:sp2","product_type":"module","predecessor_ids":[1616,1806],"repositories":[{"description":"SLE-Module-Public-Cloud15-SP2-Updates for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-Public-Cloud15-SP2-Updates","distro_target":"sle-15-ppc64le","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/15-SP2/ppc64le/update/","enabled":true,"id":4211},{"autorefresh":true,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/15-SP2/ppc64le/update_debug/","enabled":false,"id":4212,"description":"SLE-Module-Public-Cloud15-SP2-Debuginfo-Updates for sle-15-ppc64le","name":"SLE-Module-Public-Cloud15-SP2-Debuginfo-Updates","installer_updates":false},{"description":"SLE-Module-Public-Cloud15-SP2-Pool for sle-15-ppc64le","name":"SLE-Module-Public-Cloud15-SP2-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP2/ppc64le/product/","enabled":true,"id":4213},{"name":"SLE-Module-Public-Cloud15-SP2-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-Public-Cloud15-SP2-Debuginfo-Pool for sle-15-ppc64le","id":4214,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP2/ppc64le/product_debug/","autorefresh":false,"distro_target":"sle-15-ppc64le"},{"enabled":false,"id":4215,"distro_target":"sle-15-ppc64le","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP2/ppc64le/product_source/","installer_updates":false,"name":"SLE-Module-Public-Cloud15-SP2-Source-Pool","description":"SLE-Module-Public-Cloud15-SP2-Source-Pool for sle-15-ppc64le"}],"online_predecessor_ids":[1616,1806],"product_class":"MODULE","eula_url":"","arch":"ppc64le","shortname":"Public-Cloud-Module","description":"

The Public Cloud Module is a collection of tools that enables you to create and manage cloud images from the commandline on SUSE Linux Enterprise Server. When building your own images with KIWI or SUSE Studio, initialization code specific to the target cloud is included in that image.

Access to the Public Cloud Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself; please check the Release Notes for further details.

","free":true,"extensions":[],"id":1986,"release_stage":"released","identifier":"sle-module-public-cloud","friendly_version":"15 SP2","name":"Public Cloud Module","offline_predecessor_ids":[1218],"friendly_name":"Public Cloud Module 15 SP2 ppc64le","migration_extra":false,"release_type":null,"former_identifier":"sle-module-public-cloud","recommended":false,"version":"15.2"},{"arch":"ppc64le","eula_url":"","shortname":"IBMPWAT15","description":"IBM POWER Advance Toolchain for SLE 15","free":true,"cpe":"cpe:/o:suse:ibm-power-advance-toolchain:15","product_type":"extension","product_class":"MODULE","online_predecessor_ids":[],"repositories":[{"distro_target":null,"autorefresh":true,"url":"https://public.dhe.ibm.com/software/server/POWER/Linux/toolchain/at/suse/SLES_15/","enabled":true,"id":4430,"description":"IBM-POWER-Adv-Toolchain","installer_updates":false,"name":"IBM-POWER-Adv-Toolchain"}],"predecessor_ids":[],"migration_extra":false,"friendly_name":"IBM POWER Advance Toolchain for SLE 15 ppc64le","former_identifier":"ibm-power-advance-toolchain","release_type":null,"name":"IBM POWER Advance Toolchain for SLE","offline_predecessor_ids":[1249],"version":"15","recommended":false,"id":2076,"release_stage":"released","identifier":"ibm-power-advance-toolchain","extensions":[],"friendly_version":"15"},{"product_class":"MODULE","online_predecessor_ids":[],"repositories":[{"name":"IBM-POWER-Tools","installer_updates":false,"description":"IBM-POWER-Tools","id":4431,"enabled":true,"url":"https://public.dhe.ibm.com/software/server/POWER/Linux/yum/OSS/SLES/15/ppc64le/","autorefresh":true,"distro_target":null}],"predecessor_ids":[],"product_type":"extension","cpe":"cpe:/o:suse:ibm-power-tools:15","free":true,"shortname":"IBMPWUT15","description":"IBM POWER Tools for SLE 15","arch":"ppc64le","eula_url":"https://public.dhe.ibm.com/software/server/POWER/Linux/yum/OSS/SLES/15/ppc64le.license/","friendly_version":"15","identifier":"ibm-power-tools","release_stage":"released","id":2077,"extensions":[],"version":"15","recommended":false,"former_identifier":"ibm-power-tools","release_type":null,"migration_extra":false,"friendly_name":"IBM POWER Tools for SLE 15 ppc64le","offline_predecessor_ids":[1250],"name":"IBM POWER Tools for SLE"}],"friendly_version":"15 SP2","arch":"ppc64le","eula_url":"","description":"

The SUSE Linux Enterprise Server Applications Module delivers a basic set of Server functionality.

Access to the Server Applications Module is included in your SUSE Linux Enterprise Server subscription.

","shortname":"Server-Applications-Module","free":true,"cpe":"cpe:/o:suse:sle-module-server-applications:15:sp2","product_type":"module","repositories":[{"description":"SLE-Module-Server-Applications15-SP2-Updates for sle-15-ppc64le","name":"SLE-Module-Server-Applications15-SP2-Updates","installer_updates":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15-SP2/ppc64le/update/","autorefresh":true,"distro_target":"sle-15-ppc64le","id":4046,"enabled":true},{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15-SP2/ppc64le/update_debug/","autorefresh":true,"distro_target":"sle-15-ppc64le","id":4047,"enabled":false,"description":"SLE-Module-Server-Applications15-SP2-Debuginfo-Updates for sle-15-ppc64le","name":"SLE-Module-Server-Applications15-SP2-Debuginfo-Updates","installer_updates":false},{"description":"SLE-Module-Server-Applications15-SP2-Pool for sle-15-ppc64le","name":"SLE-Module-Server-Applications15-SP2-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP2/ppc64le/product/","autorefresh":false,"distro_target":"sle-15-ppc64le","id":4048,"enabled":true},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP2/ppc64le/product_debug/","distro_target":"sle-15-ppc64le","autorefresh":false,"id":4049,"enabled":false,"description":"SLE-Module-Server-Applications15-SP2-Debuginfo-Pool for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-Server-Applications15-SP2-Debuginfo-Pool"},{"installer_updates":false,"name":"SLE-Module-Server-Applications15-SP2-Source-Pool","description":"SLE-Module-Server-Applications15-SP2-Source-Pool for sle-15-ppc64le","id":4050,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP2/ppc64le/product_source/","distro_target":"sle-15-ppc64le","autorefresh":false}],"online_predecessor_ids":[1600,1778],"product_class":"MODULE","predecessor_ids":[1600,1778]},{"release_stage":"released","identifier":"sle-module-containers","id":1961,"extensions":[],"friendly_version":"15 SP2","former_identifier":"sle-module-containers","release_type":null,"friendly_name":"Containers Module 15 SP2 ppc64le","migration_extra":false,"offline_predecessor_ids":[1353],"name":"Containers Module","version":"15.2","recommended":false,"product_type":"module","cpe":"cpe:/o:suse:sle-module-containers:15:sp2","repositories":[{"description":"SLE-Module-Containers15-SP2-Updates for sle-15-ppc64le","name":"SLE-Module-Containers15-SP2-Updates","installer_updates":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/15-SP2/ppc64le/update/","autorefresh":true,"distro_target":"sle-15-ppc64le","id":4086,"enabled":true},{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/15-SP2/ppc64le/update_debug/","distro_target":"sle-15-ppc64le","autorefresh":true,"id":4087,"enabled":false,"description":"SLE-Module-Containers15-SP2-Debuginfo-Updates for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-Containers15-SP2-Debuginfo-Updates"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP2/ppc64le/product/","autorefresh":false,"distro_target":"sle-15-ppc64le","id":4088,"enabled":true,"description":"SLE-Module-Containers15-SP2-Pool for sle-15-ppc64le","name":"SLE-Module-Containers15-SP2-Pool","installer_updates":false},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP2/ppc64le/product_debug/","distro_target":"sle-15-ppc64le","autorefresh":false,"id":4089,"enabled":false,"description":"SLE-Module-Containers15-SP2-Debuginfo-Pool for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-Containers15-SP2-Debuginfo-Pool"},{"installer_updates":false,"name":"SLE-Module-Containers15-SP2-Source-Pool","description":"SLE-Module-Containers15-SP2-Source-Pool for sle-15-ppc64le","id":4090,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP2/ppc64le/product_source/","distro_target":"sle-15-ppc64le","autorefresh":false}],"online_predecessor_ids":[1640,1788],"product_class":"MODULE","predecessor_ids":[1640,1788],"arch":"ppc64le","eula_url":"","free":true,"shortname":"Containers-Module","description":"

This Module contains several packages revolving around containers and related tools.

"},{"version":"15.2","recommended":true,"former_identifier":"sle-module-desktop-applications","release_type":null,"migration_extra":false,"friendly_name":"Desktop Applications Module 15 SP2 ppc64le","offline_predecessor_ids":[],"name":"Desktop Applications Module","friendly_version":"15 SP2","identifier":"sle-module-desktop-applications","release_stage":"released","id":1965,"extensions":[{"friendly_version":"15 SP2","release_stage":"released","identifier":"sle-module-development-tools","id":1969,"extensions":[],"version":"15.2","recommended":false,"former_identifier":"sle-sdk","release_type":null,"migration_extra":false,"friendly_name":"Development Tools Module 15 SP2 ppc64le","offline_predecessor_ids":[1339,1631,1890],"name":"Development Tools Module","online_predecessor_ids":[1597,1792],"repositories":[{"id":4126,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15-SP2/ppc64le/update/","distro_target":"sle-15-ppc64le","autorefresh":true,"installer_updates":false,"name":"SLE-Module-DevTools15-SP2-Updates","description":"SLE-Module-DevTools15-SP2-Updates for sle-15-ppc64le"},{"description":"SLE-Module-DevTools15-SP2-Debuginfo-Updates for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-DevTools15-SP2-Debuginfo-Updates","distro_target":"sle-15-ppc64le","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15-SP2/ppc64le/update_debug/","enabled":false,"id":4127},{"installer_updates":false,"name":"SLE-Module-DevTools15-SP2-Pool","description":"SLE-Module-DevTools15-SP2-Pool for sle-15-ppc64le","id":4128,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP2/ppc64le/product/","distro_target":"sle-15-ppc64le","autorefresh":false},{"description":"SLE-Module-DevTools15-SP2-Debuginfo-Pool for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-DevTools15-SP2-Debuginfo-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP2/ppc64le/product_debug/","distro_target":"sle-15-ppc64le","autorefresh":false,"id":4129,"enabled":false},{"id":4130,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP2/ppc64le/product_source/","autorefresh":false,"distro_target":"sle-15-ppc64le","name":"SLE-Module-DevTools15-SP2-Source-Pool","installer_updates":false,"description":"SLE-Module-DevTools15-SP2-Source-Pool for sle-15-ppc64le"}],"product_class":"MODULE","predecessor_ids":[1597,1792],"product_type":"module","cpe":"cpe:/o:suse:sle-module-development-tools:15:sp2","free":true,"shortname":"Development-Tools-Module","description":"

The Development Tools Module helps you developing applications for SUSE Linux Enterprise 15.

Access to the Development Tools Module is included in your SUSE Linux Enterprise product subscription. The module has a different lifecycle than SUSE Linux Enterprise itself.

","arch":"ppc64le","eula_url":""}],"free":true,"description":"

The SUSE Linux Enterprise Desktop Applications Module delivers a basic set of Desktop functionality.

Access to the Desktop Applications Module is included in your SUSE Linux Enterprise product subscription.

","shortname":"Desktop-Applications-Module","arch":"ppc64le","eula_url":"","online_predecessor_ids":[1594,1774],"repositories":[{"distro_target":"sle-15-ppc64le","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15-SP2/ppc64le/update/","enabled":true,"id":4106,"description":"SLE-Module-Desktop-Applications15-SP2-Updates for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-Desktop-Applications15-SP2-Updates"},{"enabled":false,"id":4107,"autorefresh":true,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15-SP2/ppc64le/update_debug/","name":"SLE-Module-Desktop-Applications15-SP2-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-Desktop-Applications15-SP2-Debuginfo-Updates for sle-15-ppc64le"},{"installer_updates":false,"name":"SLE-Module-Desktop-Applications15-SP2-Pool","description":"SLE-Module-Desktop-Applications15-SP2-Pool for sle-15-ppc64le","id":4108,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP2/ppc64le/product/","distro_target":"sle-15-ppc64le","autorefresh":false},{"description":"SLE-Module-Desktop-Applications15-SP2-Debuginfo-Pool for sle-15-ppc64le","name":"SLE-Module-Desktop-Applications15-SP2-Debuginfo-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP2/ppc64le/product_debug/","enabled":false,"id":4109},{"description":"SLE-Module-Desktop-Applications15-SP2-Source-Pool for sle-15-ppc64le","name":"SLE-Module-Desktop-Applications15-SP2-Source-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP2/ppc64le/product_source/","autorefresh":false,"distro_target":"sle-15-ppc64le","id":4110,"enabled":false}],"product_class":"MODULE","predecessor_ids":[1594,1774],"product_type":"module","cpe":"cpe:/o:suse:sle-module-desktop-applications:15:sp2"},{"former_identifier":"sle-module-live-patching","release_type":null,"friendly_name":"SUSE Linux Enterprise Live Patching 15 SP2 ppc64le","migration_extra":false,"offline_predecessor_ids":[1756,1887],"name":"SUSE Linux Enterprise Live Patching","version":"15.2","recommended":false,"release_stage":"released","id":1983,"identifier":"sle-module-live-patching","extensions":[],"friendly_version":"15 SP2","arch":"ppc64le","eula_url":"","free":false,"shortname":"Live-Patching","description":"

SUSE Linux Enterprise Live Patching provides packages to update critical components in SUSE Linux Enterprise. With SUSE Linux Enterprise Live Patching, you can perform critical patching without shutting down your system, reducing the need for planned downtime and increasing service availability.

","product_type":"extension","cpe":"cpe:/o:suse:sle-module-live-patching:15:sp2","repositories":[{"installer_updates":false,"name":"SLE-Module-Live-Patching15-SP2-Updates","description":"SLE-Module-Live-Patching15-SP2-Updates for sle-15-ppc64le","id":4196,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Live-Patching/15-SP2/ppc64le/update/","distro_target":"sle-15-ppc64le","autorefresh":true},{"installer_updates":false,"name":"SLE-Module-Live-Patching15-SP2-Debuginfo-Updates","description":"SLE-Module-Live-Patching15-SP2-Debuginfo-Updates for sle-15-ppc64le","id":4197,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Live-Patching/15-SP2/ppc64le/update_debug/","distro_target":"sle-15-ppc64le","autorefresh":true},{"distro_target":"sle-15-ppc64le","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Live-Patching/15-SP2/ppc64le/product/","enabled":true,"id":4198,"description":"SLE-Module-Live-Patching15-SP2-Pool for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-Live-Patching15-SP2-Pool"},{"description":"SLE-Module-Live-Patching15-SP2-Debuginfo-Pool for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-Live-Patching15-SP2-Debuginfo-Pool","distro_target":"sle-15-ppc64le","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Live-Patching/15-SP2/ppc64le/product_debug/","enabled":false,"id":4199},{"enabled":false,"id":4200,"distro_target":"sle-15-ppc64le","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Live-Patching/15-SP2/ppc64le/product_source/","installer_updates":false,"name":"SLE-Module-Live-Patching15-SP2-Source-Pool","description":"SLE-Module-Live-Patching15-SP2-Source-Pool for sle-15-ppc64le"}],"online_predecessor_ids":[1735,1827],"product_class":"SLE-LP-PPC","predecessor_ids":[1735,1827]},{"offline_predecessor_ids":[],"name":"Python 2 Module","release_type":null,"former_identifier":"sle-module-python2","migration_extra":false,"friendly_name":"Python 2 Module 15 SP2 ppc64le","recommended":false,"version":"15.2","extensions":[],"release_stage":"released","id":1990,"identifier":"sle-module-python2","friendly_version":"15 SP2","eula_url":"","arch":"ppc64le","free":true,"description":"

This module contains the python 2 packages.

Access to the Python 2 Module is included in your SUSE Linux Enterprise subscription. The module has a different lifecycle than SUSE Linux Enterprise itself. Packages in the this module are usually supported for at most three years.

","shortname":"Python2-Module","product_type":"module","cpe":"cpe:/o:suse:sle-module-python2:15:sp2","predecessor_ids":[1865],"online_predecessor_ids":[1865],"product_class":"MODULE","repositories":[{"description":"SLE-Module-Python2-15-SP2-Updates for sle-15-ppc64le","name":"SLE-Module-Python2-15-SP2-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Python2/15-SP2/ppc64le/update/","enabled":true,"id":4231},{"description":"SLE-Module-Python2-15-SP2-Debuginfo-Updates for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-Python2-15-SP2-Debuginfo-Updates","distro_target":"sle-15-ppc64le","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Python2/15-SP2/ppc64le/update_debug/","enabled":false,"id":4232},{"autorefresh":false,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Python2/15-SP2/ppc64le/product/","enabled":true,"id":4233,"description":"SLE-Module-Python2-15-SP2-Pool for sle-15-ppc64le","name":"SLE-Module-Python2-15-SP2-Pool","installer_updates":false},{"description":"SLE-Module-Python2-15-SP2-Debuginfo-Pool for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-Python2-15-SP2-Debuginfo-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Python2/15-SP2/ppc64le/product_debug/","distro_target":"sle-15-ppc64le","autorefresh":false,"id":4234,"enabled":false},{"id":4235,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Python2/15-SP2/ppc64le/product_source/","distro_target":"sle-15-ppc64le","autorefresh":false,"installer_updates":false,"name":"SLE-Module-Python2-15-SP2-Source-Pool","description":"SLE-Module-Python2-15-SP2-Source-Pool for sle-15-ppc64le"}]}],"friendly_version":"15 SP2","migration_extra":false,"friendly_name":"Basesystem Module 15 SP2 ppc64le","former_identifier":"sle-module-basesystem","release_type":null,"name":"Basesystem Module","offline_predecessor_ids":[1294],"version":"15.2","recommended":true,"cpe":"cpe:/o:suse:sle-module-basesystem:15:sp2","product_type":"module","online_predecessor_ids":[1588,1770],"repositories":[{"installer_updates":false,"name":"SLE-Module-Basesystem15-SP2-Updates","description":"SLE-Module-Basesystem15-SP2-Updates for sle-15-ppc64le","id":3989,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15-SP2/ppc64le/update/","distro_target":"sle-15-ppc64le","autorefresh":true},{"enabled":false,"id":3990,"autorefresh":true,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15-SP2/ppc64le/update_debug/","name":"SLE-Module-Basesystem15-SP2-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-Basesystem15-SP2-Debuginfo-Updates for sle-15-ppc64le"},{"name":"SLE-Module-Basesystem15-SP2-Pool","installer_updates":false,"description":"SLE-Module-Basesystem15-SP2-Pool for sle-15-ppc64le","enabled":true,"id":3991,"autorefresh":false,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP2/ppc64le/product/"},{"id":3992,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP2/ppc64le/product_debug/","distro_target":"sle-15-ppc64le","autorefresh":false,"installer_updates":false,"name":"SLE-Module-Basesystem15-SP2-Debuginfo-Pool","description":"SLE-Module-Basesystem15-SP2-Debuginfo-Pool for sle-15-ppc64le"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP2/ppc64le/product_source/","autorefresh":false,"distro_target":"sle-15-ppc64le","id":3993,"enabled":false,"description":"SLE-Module-Basesystem15-SP2-Source-Pool for sle-15-ppc64le","name":"SLE-Module-Basesystem15-SP2-Source-Pool","installer_updates":false}],"product_class":"MODULE","predecessor_ids":[1588,1770],"arch":"ppc64le","eula_url":"","description":"

The SUSE Linux Enterprise Basesystem Module delivers the base system of the product.

","shortname":"Basesystem-Module","free":true}]},{"product_type":"base","cpe":"cpe:/o:suse:sles_sap:15:sp2","predecessor_ids":[1612,1766],"online_predecessor_ids":[1612,1766],"repositories":[{"enabled":true,"id":3971,"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Product-SLES_SAP/15-SP2/x86_64/update/","name":"SLE-Product-SLES_SAP15-SP2-Updates","installer_updates":false,"description":"SLE-Product-SLES_SAP15-SP2-Updates for sle-15-x86_64"},{"enabled":false,"id":3972,"distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-SLES_SAP/15-SP2/x86_64/update_debug/","installer_updates":false,"name":"SLE-Product-SLES_SAP15-SP2-Debuginfo-Updates","description":"SLE-Product-SLES_SAP15-SP2-Debuginfo-Updates for sle-15-x86_64"},{"id":3973,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-SLES_SAP/15-SP2/x86_64/product/","distro_target":"sle-15-x86_64","autorefresh":false,"installer_updates":false,"name":"SLE-Product-SLES_SAP15-SP2-Pool","description":"SLE-Product-SLES_SAP15-SP2-Pool for sle-15-x86_64"},{"id":3974,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-SLES_SAP/15-SP2/x86_64/product_debug/","autorefresh":false,"distro_target":"sle-15-x86_64","name":"SLE-Product-SLES_SAP15-SP2-Debuginfo-Pool","installer_updates":false,"description":"SLE-Product-SLES_SAP15-SP2-Debuginfo-Pool for sle-15-x86_64"},{"description":"SLE-Product-SLES_SAP15-SP2-Source-Pool for sle-15-x86_64","name":"SLE-Product-SLES_SAP15-SP2-Source-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Product-SLES_SAP/15-SP2/x86_64/product_source/","enabled":false,"id":3975}],"product_class":"AiO","eula_url":"https://updates.suse.com/SUSE/Products/SLE-Product-SLES_SAP/15-SP2/x86_64/product.license/","arch":"x86_64","free":false,"description":"SUSE Linux Enterprise offers a comprehensive suite of products built on a single code base. The platform addresses business needs from the smallest thin-client devices to the world's most powerful high-performance computing and mainframe servers. SUSE Linux Enterprise offers common management tools and technology certifications across the platform, and each product is enterprise-class.","shortname":"SLE-15-SP2-SAP","extensions":[{"product_type":"module","cpe":"cpe:/o:suse:sle-module-basesystem:15:sp2","product_class":"MODULE","online_predecessor_ids":[1576,1772],"repositories":[{"enabled":true,"id":3999,"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15-SP2/x86_64/update/","name":"SLE-Module-Basesystem15-SP2-Updates","installer_updates":false,"description":"SLE-Module-Basesystem15-SP2-Updates for sle-15-x86_64"},{"description":"SLE-Module-Basesystem15-SP2-Debuginfo-Updates for sle-15-x86_64","name":"SLE-Module-Basesystem15-SP2-Debuginfo-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15-SP2/x86_64/update_debug/","enabled":false,"id":4000},{"enabled":true,"id":4001,"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP2/x86_64/product/","installer_updates":false,"name":"SLE-Module-Basesystem15-SP2-Pool","description":"SLE-Module-Basesystem15-SP2-Pool for sle-15-x86_64"},{"description":"SLE-Module-Basesystem15-SP2-Debuginfo-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Basesystem15-SP2-Debuginfo-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP2/x86_64/product_debug/","distro_target":"sle-15-x86_64","autorefresh":false,"id":4002,"enabled":false},{"description":"SLE-Module-Basesystem15-SP2-Source-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Basesystem15-SP2-Source-Pool","distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP2/x86_64/product_source/","enabled":false,"id":4003}],"predecessor_ids":[1576,1772],"arch":"x86_64","eula_url":"","free":true,"shortname":"Basesystem-Module","description":"

The SUSE Linux Enterprise Basesystem Module delivers the base system of the product.

","release_stage":"released","id":1946,"identifier":"sle-module-basesystem","extensions":[{"version":"15.2","recommended":false,"migration_extra":false,"friendly_name":"SUSE Package Hub 15 SP2 x86_64","former_identifier":"PackageHub","release_type":null,"name":"SUSE Package Hub","offline_predecessor_ids":[1813,1915],"friendly_version":"15 SP2","release_stage":"released","identifier":"PackageHub","id":1950,"extensions":[],"description":"SUSE Package Hub is a free of charge extension providing access to community maintained packages built to run on SUSE Linux Enterprise Server. Built from the same sources used in the openSUSE distributions, these quality packages provide additional software to what is found in the SUSE Linux Enterprise Server product. Packages from the Package Hub are delivered without L3 support from SUSE. General updates and fixes to the packages in SUSE Package Hub are provided by the openSUSE community based on their discretion, though SUSE will monitor and ensure that any known critical security issues will be addressed. Packages in the Package Hub are approved by SUSE for use with SUSE Linux Enterprise Server 15-SP2 and to not interfere with the supportability of SUSE Linux Enterprise Server, its modules and extensions. For more information about SUSE Package Hub please visit https://packagehub.suse.com.","shortname":"SUSE-PackageHub-15","free":true,"arch":"x86_64","eula_url":"","repositories":[{"installer_updates":false,"name":"SUSE-PackageHub-15-SP2-Backports-Pool","description":"SUSE-PackageHub-15-SP2-Backports-Pool for sle-15-x86_64","id":4028,"enabled":true,"url":"https://updates.suse.com/SUSE/Backports/SLE-15-SP2_x86_64/standard/","distro_target":"sle-15-x86_64","autorefresh":false},{"description":"SUSE-PackageHub-15-SP2-Backports-Debuginfo for sle-15-x86_64","installer_updates":false,"name":"SUSE-PackageHub-15-SP2-Backports-Debuginfo","url":"https://updates.suse.com/SUSE/Backports/SLE-15-SP2_x86_64/standard_debug/","distro_target":"sle-15-x86_64","autorefresh":true,"id":4029,"enabled":false},{"id":4030,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP2/x86_64/update/","autorefresh":true,"distro_target":"sle-15-x86_64","name":"SLE-Module-Packagehub-Subpackages15-SP2-Updates","installer_updates":false,"description":"SLE-Module-Packagehub-Subpackages15-SP2-Updates for sle-15-x86_64"},{"id":4031,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP2/x86_64/update_debug/","autorefresh":true,"distro_target":"sle-15-x86_64","name":"SLE-Module-Packagehub-Subpackages15-SP2-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-Packagehub-Subpackages15-SP2-Debuginfo-Updates for sle-15-x86_64"},{"description":"SUSE-PackageHub-15-SP2-Pool for sle-15-x86_64","name":"SUSE-PackageHub-15-SP2-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Backports/SLE-15-SP2_x86_64/product/","autorefresh":false,"distro_target":"sle-15-x86_64","id":4032,"enabled":true},{"description":"SLE-Module-Packagehub-Subpackages15-SP2-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Packagehub-Subpackages15-SP2-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP2/x86_64/product/","distro_target":"sle-15-x86_64","autorefresh":false,"id":4033,"enabled":true},{"installer_updates":false,"name":"SLE-Module-Packagehub-Subpackages15-SP2-Debuginfo-Pool","description":"SLE-Module-Packagehub-Subpackages15-SP2-Debuginfo-Pool for sle-15-x86_64","id":4034,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP2/x86_64/product_debug/","distro_target":"sle-15-x86_64","autorefresh":false},{"id":4035,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP2/x86_64/product_source/","autorefresh":false,"distro_target":"sle-15-x86_64","name":"SLE-Module-Packagehub-Subpackages15-SP2-Source-Pool","installer_updates":false,"description":"SLE-Module-Packagehub-Subpackages15-SP2-Source-Pool for sle-15-x86_64"}],"online_predecessor_ids":[1743,1871],"product_class":"MODULE","predecessor_ids":[1743,1871],"cpe":"cpe:/o:suse:packagehub:15:sp2","product_type":"extension"},{"product_type":"module","cpe":"cpe:/o:suse:sle-module-server-applications:15:sp2","predecessor_ids":[1580,1780],"repositories":[{"id":4056,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15-SP2/x86_64/update/","distro_target":"sle-15-x86_64","autorefresh":true,"installer_updates":false,"name":"SLE-Module-Server-Applications15-SP2-Updates","description":"SLE-Module-Server-Applications15-SP2-Updates for sle-15-x86_64"},{"installer_updates":false,"name":"SLE-Module-Server-Applications15-SP2-Debuginfo-Updates","description":"SLE-Module-Server-Applications15-SP2-Debuginfo-Updates for sle-15-x86_64","enabled":false,"id":4057,"distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15-SP2/x86_64/update_debug/"},{"id":4058,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP2/x86_64/product/","autorefresh":false,"distro_target":"sle-15-x86_64","name":"SLE-Module-Server-Applications15-SP2-Pool","installer_updates":false,"description":"SLE-Module-Server-Applications15-SP2-Pool for sle-15-x86_64"},{"id":4059,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP2/x86_64/product_debug/","distro_target":"sle-15-x86_64","autorefresh":false,"installer_updates":false,"name":"SLE-Module-Server-Applications15-SP2-Debuginfo-Pool","description":"SLE-Module-Server-Applications15-SP2-Debuginfo-Pool for sle-15-x86_64"},{"description":"SLE-Module-Server-Applications15-SP2-Source-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Server-Applications15-SP2-Source-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP2/x86_64/product_source/","distro_target":"sle-15-x86_64","autorefresh":false,"id":4060,"enabled":false}],"online_predecessor_ids":[1580,1780],"product_class":"MODULE","eula_url":"","arch":"x86_64","free":true,"description":"

The SUSE Linux Enterprise Server Applications Module delivers a basic set of Server functionality.

Access to the Server Applications Module is included in your SUSE Linux Enterprise Server subscription.

","shortname":"Server-Applications-Module","extensions":[{"name":"SUSE Linux Enterprise High Availability Extension","offline_predecessor_ids":[958,961,967,971,1101,1107,1256,1286,1634,1637,1884,1886],"migration_extra":false,"friendly_name":"SUSE Linux Enterprise High Availability Extension 15 SP2 x86_64","former_identifier":"sle-ha","release_type":null,"recommended":true,"version":"15.2","extensions":[{"cpe":"cpe:/o:suse:sle-module-sap-applications:15:sp2","product_type":"module","repositories":[{"description":"SLE-Module-SAP-Applications15-SP2-Updates for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-SAP-Applications15-SP2-Updates","distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-SAP-Applications/15-SP2/x86_64/update/","enabled":true,"id":4251},{"installer_updates":false,"name":"SLE-Module-SAP-Applications15-SP2-Debuginfo-Updates","description":"SLE-Module-SAP-Applications15-SP2-Debuginfo-Updates for sle-15-x86_64","enabled":false,"id":4252,"distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-SAP-Applications/15-SP2/x86_64/update_debug/"},{"description":"SLE-Module-SAP-Applications15-SP2-Pool for sle-15-x86_64","name":"SLE-Module-SAP-Applications15-SP2-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-SAP-Applications/15-SP2/x86_64/product/","autorefresh":false,"distro_target":"sle-15-x86_64","id":4253,"enabled":true},{"enabled":false,"id":4254,"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-SAP-Applications/15-SP2/x86_64/product_debug/","installer_updates":false,"name":"SLE-Module-SAP-Applications15-SP2-Debuginfo-Pool","description":"SLE-Module-SAP-Applications15-SP2-Debuginfo-Pool for sle-15-x86_64"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-SAP-Applications/15-SP2/x86_64/product_source/","autorefresh":false,"distro_target":"sle-15-x86_64","id":4255,"enabled":false,"description":"SLE-Module-SAP-Applications15-SP2-Source-Pool for sle-15-x86_64","name":"SLE-Module-SAP-Applications15-SP2-Source-Pool","installer_updates":false}],"online_predecessor_ids":[1727,1787],"product_class":"MODULE","predecessor_ids":[1727,1787],"arch":"x86_64","eula_url":"","shortname":"SAP-Applications-Module","description":"

The SAP Applications module contains the specialized tools for SAP Applications administration.

The module is maintained and supported by the SUSE Linux Enterprise Server for SAP Applications product subscription.

","free":true,"id":1994,"release_stage":"released","identifier":"sle-module-sap-applications","extensions":[],"friendly_version":"15 SP2","friendly_name":"SAP Applications Module 15 SP2 x86_64","migration_extra":false,"release_type":null,"former_identifier":"sle-module-sap-applications","name":"SAP Applications Module","offline_predecessor_ids":[],"version":"15.2","recommended":true}],"release_stage":"released","id":1959,"identifier":"sle-ha","friendly_version":"15 SP2","eula_url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP2/x86_64/product.license/","arch":"x86_64","description":"SUSE Linux High Availability Extension provides mature, industry-leading open-source high-availability clustering technologies that are easy to set up and use. It can be deployed in physical and/or virtual environments, and can cluster physical servers, virtual servers, or any combination of the two to suit your business’ needs.","shortname":"SLEHA15-SP2","free":false,"cpe":"cpe:/o:suse:sle-ha:15:sp2","product_type":"extension","predecessor_ids":[1582,1785],"online_predecessor_ids":[1582,1785],"repositories":[{"name":"SLE-Product-HA15-SP2-Updates","installer_updates":false,"description":"SLE-Product-HA15-SP2-Updates for sle-15-x86_64","id":4076,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-HA/15-SP2/x86_64/update/","autorefresh":true,"distro_target":"sle-15-x86_64"},{"enabled":false,"id":4077,"distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-HA/15-SP2/x86_64/update_debug/","installer_updates":false,"name":"SLE-Product-HA15-SP2-Debuginfo-Updates","description":"SLE-Product-HA15-SP2-Debuginfo-Updates for sle-15-x86_64"},{"description":"SLE-Product-HA15-SP2-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Product-HA15-SP2-Pool","distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP2/x86_64/product/","enabled":true,"id":4078},{"enabled":false,"id":4079,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP2/x86_64/product_debug/","name":"SLE-Product-HA15-SP2-Debuginfo-Pool","installer_updates":false,"description":"SLE-Product-HA15-SP2-Debuginfo-Pool for sle-15-x86_64"},{"enabled":false,"id":4080,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP2/x86_64/product_source/","name":"SLE-Product-HA15-SP2-Source-Pool","installer_updates":false,"description":"SLE-Product-HA15-SP2-Source-Pool for sle-15-x86_64"}],"product_class":"SLE-HAE-X86"},{"offline_predecessor_ids":[1153],"name":"Web and Scripting Module","release_type":null,"former_identifier":"sle-module-web-scripting","friendly_name":"Web and Scripting Module 15 SP2 x86_64","migration_extra":false,"recommended":false,"version":"15.2","extensions":[],"release_stage":"released","id":1976,"identifier":"sle-module-web-scripting","friendly_version":"15 SP2","eula_url":"","arch":"x86_64","free":true,"description":"

The SUSE Linux Enterprise Web and Scripting Module should contains additional packages that are helpful when running a webserver.

Access to the Web and Scripting Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself: Package versions in this module are usually supported for at most three years. We are planning to release more recent versions on a schedule of approximately 18 month; the exact dates may differ per package.

","shortname":"Web-Scripting-Module","product_type":"module","cpe":"cpe:/o:suse:sle-module-web-scripting:15:sp2","predecessor_ids":[1721,1798],"online_predecessor_ids":[1721,1798],"product_class":"MODULE","repositories":[{"installer_updates":false,"name":"SLE-Module-Web-Scripting15-SP2-Updates","description":"SLE-Module-Web-Scripting15-SP2-Updates for sle-15-x86_64","enabled":true,"id":4161,"distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/15-SP2/x86_64/update/"},{"installer_updates":false,"name":"SLE-Module-Web-Scripting15-SP2-Debuginfo-Updates","description":"SLE-Module-Web-Scripting15-SP2-Debuginfo-Updates for sle-15-x86_64","id":4162,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/15-SP2/x86_64/update_debug/","distro_target":"sle-15-x86_64","autorefresh":true},{"description":"SLE-Module-Web-Scripting15-SP2-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Web-Scripting15-SP2-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP2/x86_64/product/","distro_target":"sle-15-x86_64","autorefresh":false,"id":4163,"enabled":true},{"id":4164,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP2/x86_64/product_debug/","autorefresh":false,"distro_target":"sle-15-x86_64","name":"SLE-Module-Web-Scripting15-SP2-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-Web-Scripting15-SP2-Debuginfo-Pool for sle-15-x86_64"},{"id":4165,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP2/x86_64/product_source/","distro_target":"sle-15-x86_64","autorefresh":false,"installer_updates":false,"name":"SLE-Module-Web-Scripting15-SP2-Source-Pool","description":"SLE-Module-Web-Scripting15-SP2-Source-Pool for sle-15-x86_64"}]},{"online_predecessor_ids":[1581,1804],"repositories":[{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/15-SP2/x86_64/update/","autorefresh":true,"distro_target":"sle-15-x86_64","id":4191,"enabled":true,"description":"SLE-Module-Legacy15-SP2-Updates for sle-15-x86_64","name":"SLE-Module-Legacy15-SP2-Updates","installer_updates":false},{"description":"SLE-Module-Legacy15-SP2-Debuginfo-Updates for sle-15-x86_64","name":"SLE-Module-Legacy15-SP2-Debuginfo-Updates","installer_updates":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/15-SP2/x86_64/update_debug/","autorefresh":true,"distro_target":"sle-15-x86_64","id":4192,"enabled":false},{"enabled":true,"id":4193,"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15-SP2/x86_64/product/","installer_updates":false,"name":"SLE-Module-Legacy15-SP2-Pool","description":"SLE-Module-Legacy15-SP2-Pool for sle-15-x86_64"},{"description":"SLE-Module-Legacy15-SP2-Debuginfo-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Legacy15-SP2-Debuginfo-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15-SP2/x86_64/product_debug/","distro_target":"sle-15-x86_64","autorefresh":false,"id":4194,"enabled":false},{"installer_updates":false,"name":"SLE-Module-Legacy15-SP2-Source-Pool","description":"SLE-Module-Legacy15-SP2-Source-Pool for sle-15-x86_64","enabled":false,"id":4195,"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15-SP2/x86_64/product_source/"}],"product_class":"MODULE","predecessor_ids":[1581,1804],"product_type":"module","cpe":"cpe:/o:suse:sle-module-legacy:15:sp2","free":true,"description":"

The Legacy Module helps you migrating applications from SUSE Linux Enterprise 12 and other systems to SUSE Linux Enterprise 15, by providing packages which are discontinued on SUSE Linux Enterprise Server, such as: ntp, IBM Java 8, and a number of libraries.

Access to the Legacy Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself. Packages in the this module are usually supported for at most three years.

","shortname":"Legacy-Module","arch":"x86_64","eula_url":"","friendly_version":"15 SP2","identifier":"sle-module-legacy","release_stage":"released","id":1982,"extensions":[],"version":"15.2","recommended":false,"former_identifier":"sle-module-legacy","release_type":null,"migration_extra":true,"friendly_name":"Legacy Module 15 SP2 x86_64","offline_predecessor_ids":[1150],"name":"Legacy Module"},{"release_stage":"released","identifier":"sle-module-public-cloud","id":1988,"extensions":[],"friendly_version":"15 SP2","friendly_name":"Public Cloud Module 15 SP2 x86_64","migration_extra":false,"former_identifier":"sle-module-public-cloud","release_type":null,"name":"Public Cloud Module","offline_predecessor_ids":[1220],"version":"15.2","recommended":false,"cpe":"cpe:/o:suse:sle-module-public-cloud:15:sp2","product_type":"module","repositories":[{"installer_updates":false,"name":"SLE-Module-Public-Cloud15-SP2-Updates","description":"SLE-Module-Public-Cloud15-SP2-Updates for sle-15-x86_64","id":4221,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/15-SP2/x86_64/update/","distro_target":"sle-15-x86_64","autorefresh":true},{"description":"SLE-Module-Public-Cloud15-SP2-Debuginfo-Updates for sle-15-x86_64","name":"SLE-Module-Public-Cloud15-SP2-Debuginfo-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/15-SP2/x86_64/update_debug/","enabled":false,"id":4222},{"description":"SLE-Module-Public-Cloud15-SP2-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Public-Cloud15-SP2-Pool","distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP2/x86_64/product/","enabled":true,"id":4223},{"name":"SLE-Module-Public-Cloud15-SP2-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-Public-Cloud15-SP2-Debuginfo-Pool for sle-15-x86_64","enabled":false,"id":4224,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP2/x86_64/product_debug/"},{"name":"SLE-Module-Public-Cloud15-SP2-Source-Pool","installer_updates":false,"description":"SLE-Module-Public-Cloud15-SP2-Source-Pool for sle-15-x86_64","enabled":false,"id":4225,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP2/x86_64/product_source/"}],"online_predecessor_ids":[1611,1808],"product_class":"MODULE","predecessor_ids":[1611,1808],"arch":"x86_64","eula_url":"","description":"

The Public Cloud Module is a collection of tools that enables you to create and manage cloud images from the commandline on SUSE Linux Enterprise Server. When building your own images with KIWI or SUSE Studio, initialization code specific to the target cloud is included in that image.

Access to the Public Cloud Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself; please check the Release Notes for further details.

","shortname":"Public-Cloud-Module","free":true}],"id":1955,"release_stage":"released","identifier":"sle-module-server-applications","friendly_version":"15 SP2","offline_predecessor_ids":[],"name":"Server Applications Module","release_type":null,"former_identifier":"sle-module-server-applications","friendly_name":"Server Applications Module 15 SP2 x86_64","migration_extra":false,"recommended":true,"version":"15.2"},{"product_class":"MODULE","online_predecessor_ids":[1642,1790],"repositories":[{"description":"SLE-Module-Containers15-SP2-Updates for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Containers15-SP2-Updates","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/15-SP2/x86_64/update/","distro_target":"sle-15-x86_64","autorefresh":true,"id":4096,"enabled":true},{"description":"SLE-Module-Containers15-SP2-Debuginfo-Updates for sle-15-x86_64","name":"SLE-Module-Containers15-SP2-Debuginfo-Updates","installer_updates":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/15-SP2/x86_64/update_debug/","autorefresh":true,"distro_target":"sle-15-x86_64","id":4097,"enabled":false},{"name":"SLE-Module-Containers15-SP2-Pool","installer_updates":false,"description":"SLE-Module-Containers15-SP2-Pool for sle-15-x86_64","id":4098,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP2/x86_64/product/","autorefresh":false,"distro_target":"sle-15-x86_64"},{"installer_updates":false,"name":"SLE-Module-Containers15-SP2-Debuginfo-Pool","description":"SLE-Module-Containers15-SP2-Debuginfo-Pool for sle-15-x86_64","enabled":false,"id":4099,"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP2/x86_64/product_debug/"},{"enabled":false,"id":4100,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP2/x86_64/product_source/","name":"SLE-Module-Containers15-SP2-Source-Pool","installer_updates":false,"description":"SLE-Module-Containers15-SP2-Source-Pool for sle-15-x86_64"}],"predecessor_ids":[1642,1790],"product_type":"module","cpe":"cpe:/o:suse:sle-module-containers:15:sp2","free":true,"description":"

This Module contains several packages revolving around containers and related tools.

","shortname":"Containers-Module","arch":"x86_64","eula_url":"","friendly_version":"15 SP2","identifier":"sle-module-containers","release_stage":"released","id":1963,"extensions":[],"version":"15.2","recommended":false,"release_type":null,"former_identifier":"sle-module-containers","friendly_name":"Containers Module 15 SP2 x86_64","migration_extra":false,"offline_predecessor_ids":[1332],"name":"Containers Module"},{"version":"15.2","recommended":true,"former_identifier":"sle-module-desktop-applications","release_type":null,"migration_extra":false,"friendly_name":"Desktop Applications Module 15 SP2 x86_64","offline_predecessor_ids":[],"name":"Desktop Applications Module","friendly_version":"15 SP2","id":1967,"release_stage":"released","identifier":"sle-module-desktop-applications","extensions":[{"shortname":"Development-Tools-Module","description":"

The Development Tools Module helps you developing applications for SUSE Linux Enterprise 15.

Access to the Development Tools Module is included in your SUSE Linux Enterprise product subscription. The module has a different lifecycle than SUSE Linux Enterprise itself.

","free":true,"arch":"x86_64","eula_url":"","product_class":"MODULE","online_predecessor_ids":[1579,1794],"repositories":[{"description":"SLE-Module-DevTools15-SP2-Updates for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-DevTools15-SP2-Updates","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15-SP2/x86_64/update/","distro_target":"sle-15-x86_64","autorefresh":true,"id":4136,"enabled":true},{"description":"SLE-Module-DevTools15-SP2-Debuginfo-Updates for sle-15-x86_64","name":"SLE-Module-DevTools15-SP2-Debuginfo-Updates","installer_updates":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15-SP2/x86_64/update_debug/","autorefresh":true,"distro_target":"sle-15-x86_64","id":4137,"enabled":false},{"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP2/x86_64/product/","enabled":true,"id":4138,"description":"SLE-Module-DevTools15-SP2-Pool for sle-15-x86_64","name":"SLE-Module-DevTools15-SP2-Pool","installer_updates":false},{"installer_updates":false,"name":"SLE-Module-DevTools15-SP2-Debuginfo-Pool","description":"SLE-Module-DevTools15-SP2-Debuginfo-Pool for sle-15-x86_64","id":4139,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP2/x86_64/product_debug/","distro_target":"sle-15-x86_64","autorefresh":false},{"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP2/x86_64/product_source/","enabled":false,"id":4140,"description":"SLE-Module-DevTools15-SP2-Source-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-DevTools15-SP2-Source-Pool"}],"predecessor_ids":[1579,1794],"cpe":"cpe:/o:suse:sle-module-development-tools:15:sp2","product_type":"module","version":"15.2","recommended":false,"migration_extra":false,"friendly_name":"Development Tools Module 15 SP2 x86_64","release_type":null,"former_identifier":"sle-sdk","name":"Development Tools Module","offline_predecessor_ids":[1341,1630,1892],"friendly_version":"15 SP2","id":1971,"release_stage":"released","identifier":"sle-module-development-tools","extensions":[]},{"product_type":"extension","cpe":"cpe:/o:suse:sle-we:15:sp2","predecessor_ids":[1583,1781],"online_predecessor_ids":[1583,1781],"product_class":"SLE-WE","repositories":[{"installer_updates":false,"name":"SLE-Product-WE15-SP2-Updates","description":"SLE-Product-WE15-SP2-Updates for sle-15-x86_64","id":4276,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-WE/15-SP2/x86_64/update/","distro_target":"sle-15-x86_64","autorefresh":true},{"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-WE/15-SP2/x86_64/update_debug/","autorefresh":true,"distro_target":"sle-15-x86_64","id":4277,"enabled":false,"description":"SLE-Product-WE15-SP2-Debuginfo-Updates for sle-15-x86_64","name":"SLE-Product-WE15-SP2-Debuginfo-Updates","installer_updates":false},{"enabled":true,"id":4278,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Product-WE/15-SP2/x86_64/product/","name":"SLE-Product-WE15-SP2-Pool","installer_updates":false,"description":"SLE-Product-WE15-SP2-Pool for sle-15-x86_64"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Product-WE/15-SP2/x86_64/product_debug/","autorefresh":false,"distro_target":"sle-15-x86_64","id":4279,"enabled":false,"description":"SLE-Product-WE15-SP2-Debuginfo-Pool for sle-15-x86_64","name":"SLE-Product-WE15-SP2-Debuginfo-Pool","installer_updates":false},{"enabled":false,"id":4280,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Product-WE/15-SP2/x86_64/product_source/","name":"SLE-Product-WE15-SP2-Source-Pool","installer_updates":false,"description":"SLE-Product-WE15-SP2-Source-Pool for sle-15-x86_64"},{"enabled":true,"id":4450,"distro_target":null,"autorefresh":true,"url":"https://download.nvidia.com/suse/sle15sp2/","installer_updates":false,"name":"SLE-15-SP2-Desktop-NVIDIA-Driver","description":"SLE-15-SP2-Desktop-NVIDIA-Driver"}],"eula_url":"https://updates.suse.com/SUSE/Products/SLE-Product-WE/15-SP2/x86_64/product.license/","arch":"x86_64","free":false,"description":"SUSE Linux Enterprise Workstation Extension adds additional functionality to a base SUSE Linux Enterprise installation. The Workstation Extension offers additional desktop applications (office suite, email client, graphical editor, multimedia tools) and libraries. Workstation Extension is enabled and installed by default on SUSE Linux Enterprise Desktop installation. Adding the Workstation Extension to a SUSE Linux Enterprise Server installation allows to seamlessly combine both products to create a full featured server workstation.","shortname":"SLEWE15-SP2","extensions":[],"id":1999,"release_stage":"released","identifier":"sle-we","friendly_version":"15 SP2","offline_predecessor_ids":[1639,1893],"name":"SUSE Linux Enterprise Workstation Extension","former_identifier":"sle-we","release_type":null,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Workstation Extension 15 SP2 x86_64","recommended":false,"version":"15.2"}],"free":true,"shortname":"Desktop-Applications-Module","description":"

The SUSE Linux Enterprise Desktop Applications Module delivers a basic set of Desktop functionality.

Access to the Desktop Applications Module is included in your SUSE Linux Enterprise product subscription.

","arch":"x86_64","eula_url":"","online_predecessor_ids":[1578,1776],"product_class":"MODULE","repositories":[{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15-SP2/x86_64/update/","distro_target":"sle-15-x86_64","autorefresh":true,"id":4116,"enabled":true,"description":"SLE-Module-Desktop-Applications15-SP2-Updates for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Desktop-Applications15-SP2-Updates"},{"distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15-SP2/x86_64/update_debug/","enabled":false,"id":4117,"description":"SLE-Module-Desktop-Applications15-SP2-Debuginfo-Updates for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Desktop-Applications15-SP2-Debuginfo-Updates"},{"description":"SLE-Module-Desktop-Applications15-SP2-Pool for sle-15-x86_64","name":"SLE-Module-Desktop-Applications15-SP2-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP2/x86_64/product/","autorefresh":false,"distro_target":"sle-15-x86_64","id":4118,"enabled":true},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP2/x86_64/product_debug/","autorefresh":false,"distro_target":"sle-15-x86_64","id":4119,"enabled":false,"description":"SLE-Module-Desktop-Applications15-SP2-Debuginfo-Pool for sle-15-x86_64","name":"SLE-Module-Desktop-Applications15-SP2-Debuginfo-Pool","installer_updates":false},{"name":"SLE-Module-Desktop-Applications15-SP2-Source-Pool","installer_updates":false,"description":"SLE-Module-Desktop-Applications15-SP2-Source-Pool for sle-15-x86_64","id":4120,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP2/x86_64/product_source/","autorefresh":false,"distro_target":"sle-15-x86_64"}],"predecessor_ids":[1578,1776],"product_type":"module","cpe":"cpe:/o:suse:sle-module-desktop-applications:15:sp2"},{"description":"

SUSE Linux Enterprise Live Patching provides packages to update critical components in SUSE Linux Enterprise. With SUSE Linux Enterprise Live Patching, you can perform critical patching without shutting down your system, reducing the need for planned downtime and increasing service availability.

","shortname":"Live-Patching","free":false,"arch":"x86_64","eula_url":"","online_predecessor_ids":[1736,1828],"product_class":"SLE-LP","repositories":[{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Live-Patching/15-SP2/x86_64/update/","autorefresh":true,"distro_target":"sle-15-x86_64","id":4201,"enabled":true,"description":"SLE-Module-Live-Patching15-SP2-Updates for sle-15-x86_64","name":"SLE-Module-Live-Patching15-SP2-Updates","installer_updates":false},{"installer_updates":false,"name":"SLE-Module-Live-Patching15-SP2-Debuginfo-Updates","description":"SLE-Module-Live-Patching15-SP2-Debuginfo-Updates for sle-15-x86_64","id":4202,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Live-Patching/15-SP2/x86_64/update_debug/","distro_target":"sle-15-x86_64","autorefresh":true},{"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Live-Patching/15-SP2/x86_64/product/","enabled":true,"id":4203,"description":"SLE-Module-Live-Patching15-SP2-Pool for sle-15-x86_64","name":"SLE-Module-Live-Patching15-SP2-Pool","installer_updates":false},{"installer_updates":false,"name":"SLE-Module-Live-Patching15-SP2-Debuginfo-Pool","description":"SLE-Module-Live-Patching15-SP2-Debuginfo-Pool for sle-15-x86_64","id":4204,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Live-Patching/15-SP2/x86_64/product_debug/","distro_target":"sle-15-x86_64","autorefresh":false},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Live-Patching/15-SP2/x86_64/product_source/","autorefresh":false,"distro_target":"sle-15-x86_64","id":4205,"enabled":false,"description":"SLE-Module-Live-Patching15-SP2-Source-Pool for sle-15-x86_64","name":"SLE-Module-Live-Patching15-SP2-Source-Pool","installer_updates":false}],"predecessor_ids":[1736,1828],"cpe":"cpe:/o:suse:sle-module-live-patching:15:sp2","product_type":"extension","version":"15.2","recommended":false,"friendly_name":"SUSE Linux Enterprise Live Patching 15 SP2 x86_64","migration_extra":false,"former_identifier":"sle-module-live-patching","release_type":null,"name":"SUSE Linux Enterprise Live Patching","offline_predecessor_ids":[1757,1888],"friendly_version":"15 SP2","release_stage":"released","id":1984,"identifier":"sle-module-live-patching","extensions":[]},{"id":1992,"release_stage":"released","identifier":"sle-module-python2","extensions":[],"friendly_version":"15 SP2","migration_extra":true,"friendly_name":"Python 2 Module 15 SP2 x86_64","release_type":null,"former_identifier":"sle-module-python2","name":"Python 2 Module","offline_predecessor_ids":[],"version":"15.2","recommended":false,"cpe":"cpe:/o:suse:sle-module-python2:15:sp2","product_type":"module","repositories":[{"distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Python2/15-SP2/x86_64/update/","enabled":true,"id":4241,"description":"SLE-Module-Python2-15-SP2-Updates for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Python2-15-SP2-Updates"},{"enabled":false,"id":4242,"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Python2/15-SP2/x86_64/update_debug/","name":"SLE-Module-Python2-15-SP2-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-Python2-15-SP2-Debuginfo-Updates for sle-15-x86_64"},{"enabled":true,"id":4243,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Python2/15-SP2/x86_64/product/","name":"SLE-Module-Python2-15-SP2-Pool","installer_updates":false,"description":"SLE-Module-Python2-15-SP2-Pool for sle-15-x86_64"},{"enabled":false,"id":4244,"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Python2/15-SP2/x86_64/product_debug/","installer_updates":false,"name":"SLE-Module-Python2-15-SP2-Debuginfo-Pool","description":"SLE-Module-Python2-15-SP2-Debuginfo-Pool for sle-15-x86_64"},{"description":"SLE-Module-Python2-15-SP2-Source-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Python2-15-SP2-Source-Pool","distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Python2/15-SP2/x86_64/product_source/","enabled":false,"id":4245}],"online_predecessor_ids":[1867],"product_class":"MODULE","predecessor_ids":[1867],"arch":"x86_64","eula_url":"","description":"

This module contains the python 2 packages.

Access to the Python 2 Module is included in your SUSE Linux Enterprise subscription. The module has a different lifecycle than SUSE Linux Enterprise itself. Packages in the this module are usually supported for at most three years.

","shortname":"Python2-Module","free":true},{"cpe":"cpe:/o:suse:sle-module-cap-tools:15:sp2","product_type":"module","predecessor_ids":[1728,1809],"online_predecessor_ids":[1728,1809],"repositories":[{"enabled":true,"id":4424,"distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-CAP-Tools/15-SP2/x86_64/update/","installer_updates":false,"name":"SLE-Module-CAP-Tools15-SP2-Updates","description":"SLE-Module-CAP-Tools15-SP2-Updates for sle-15-x86_64"},{"enabled":false,"id":4425,"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-CAP-Tools/15-SP2/x86_64/update_debug/","name":"SLE-Module-CAP-Tools15-SP2-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-CAP-Tools15-SP2-Debuginfo-Updates for sle-15-x86_64"},{"installer_updates":false,"name":"SLE-Module-CAP-Tools15-SP2-Pool","description":"SLE-Module-CAP-Tools15-SP2-Pool for sle-15-x86_64","enabled":true,"id":4426,"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-CAP-Tools/15-SP2/x86_64/product/"},{"id":4427,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-CAP-Tools/15-SP2/x86_64/product_debug/","autorefresh":false,"distro_target":"sle-15-x86_64","name":"SLE-Module-CAP-Tools15-SP2-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-CAP-Tools15-SP2-Debuginfo-Pool for sle-15-x86_64"},{"installer_updates":false,"name":"SLE-Module-CAP-Tools15-SP2-Source-Pool","description":"SLE-Module-CAP-Tools15-SP2-Source-Pool for sle-15-x86_64","enabled":false,"id":4428,"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-CAP-Tools/15-SP2/x86_64/product_source/"}],"product_class":"MODULE","eula_url":"","arch":"x86_64","shortname":"SUSE-CAP-Tools-Module","description":"

The SUSE Cloud Application Platform Tools Module is a collection of tools that enables you to interact with the SUSE Cloud Application Platform product itself, providing the commandline client for instance.

Access to the SUSE Cloud Application Platform Tools Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself; please check the Release Notes for further details.

","free":true,"extensions":[],"release_stage":"released","identifier":"sle-module-cap-tools","id":2075,"friendly_version":"15 SP2","name":"SUSE Cloud Application Platform Tools Module","offline_predecessor_ids":[1678],"friendly_name":"SUSE Cloud Application Platform Tools Module 15 SP2 x86_64","migration_extra":false,"release_type":null,"former_identifier":"sle-module-cap-tools","recommended":false,"version":"15.2"}],"friendly_version":"15 SP2","former_identifier":"sle-module-basesystem","release_type":null,"friendly_name":"Basesystem Module 15 SP2 x86_64","migration_extra":false,"offline_predecessor_ids":[1212,1368,1440],"name":"Basesystem Module","version":"15.2","recommended":true}],"identifier":"SLES_SAP","release_stage":"released","id":1941,"friendly_version":"15 SP2","offline_predecessor_ids":[1329,1755,1880],"name":"SUSE Linux Enterprise Server for SAP Applications","former_identifier":"SUSE_SLES_SAP","release_type":null,"friendly_name":"SUSE Linux Enterprise Server for SAP Applications 15 SP2 x86_64","migration_extra":false,"recommended":false,"version":"15.2"},{"arch":"aarch64","eula_url":"","free":true,"shortname":"Basesystem-Module","description":"

The SUSE Linux Enterprise Basesystem Module delivers the base system of the product.

","product_type":"module","cpe":"cpe:/o:suse:sle-module-basesystem:15:sp2","online_predecessor_ids":[1589,1769],"product_class":"MODULE","repositories":[{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15-SP2/aarch64/update/","autorefresh":true,"distro_target":"sle-15-aarch64","id":3984,"enabled":true,"description":"SLE-Module-Basesystem15-SP2-Updates for sle-15-aarch64","name":"SLE-Module-Basesystem15-SP2-Updates","installer_updates":false},{"installer_updates":false,"name":"SLE-Module-Basesystem15-SP2-Debuginfo-Updates","description":"SLE-Module-Basesystem15-SP2-Debuginfo-Updates for sle-15-aarch64","enabled":false,"id":3985,"distro_target":"sle-15-aarch64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15-SP2/aarch64/update_debug/"},{"enabled":true,"id":3986,"autorefresh":false,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP2/aarch64/product/","name":"SLE-Module-Basesystem15-SP2-Pool","installer_updates":false,"description":"SLE-Module-Basesystem15-SP2-Pool for sle-15-aarch64"},{"enabled":false,"id":3987,"autorefresh":false,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP2/aarch64/product_debug/","name":"SLE-Module-Basesystem15-SP2-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-Basesystem15-SP2-Debuginfo-Pool for sle-15-aarch64"},{"enabled":false,"id":3988,"distro_target":"sle-15-aarch64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP2/aarch64/product_source/","installer_updates":false,"name":"SLE-Module-Basesystem15-SP2-Source-Pool","description":"SLE-Module-Basesystem15-SP2-Source-Pool for sle-15-aarch64"}],"predecessor_ids":[1589,1769],"release_type":null,"former_identifier":"sle-module-basesystem","friendly_name":"Basesystem Module 15 SP2 aarch64","migration_extra":false,"offline_predecessor_ids":[1522],"name":"Basesystem Module","version":"15.2","recommended":false,"release_stage":"released","id":1943,"identifier":"sle-module-basesystem","extensions":[],"friendly_version":"15 SP2"},{"friendly_version":"15 SP2","release_stage":"released","id":1944,"identifier":"sle-module-basesystem","extensions":[],"version":"15.2","recommended":false,"former_identifier":"sle-module-basesystem","release_type":null,"migration_extra":false,"friendly_name":"Basesystem Module 15 SP2 ppc64le","offline_predecessor_ids":[1294],"name":"Basesystem Module","online_predecessor_ids":[1588,1770],"repositories":[{"distro_target":"sle-15-ppc64le","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15-SP2/ppc64le/update/","enabled":true,"id":3989,"description":"SLE-Module-Basesystem15-SP2-Updates for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-Basesystem15-SP2-Updates"},{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15-SP2/ppc64le/update_debug/","autorefresh":true,"distro_target":"sle-15-ppc64le","id":3990,"enabled":false,"description":"SLE-Module-Basesystem15-SP2-Debuginfo-Updates for sle-15-ppc64le","name":"SLE-Module-Basesystem15-SP2-Debuginfo-Updates","installer_updates":false},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP2/ppc64le/product/","autorefresh":false,"distro_target":"sle-15-ppc64le","id":3991,"enabled":true,"description":"SLE-Module-Basesystem15-SP2-Pool for sle-15-ppc64le","name":"SLE-Module-Basesystem15-SP2-Pool","installer_updates":false},{"description":"SLE-Module-Basesystem15-SP2-Debuginfo-Pool for sle-15-ppc64le","name":"SLE-Module-Basesystem15-SP2-Debuginfo-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP2/ppc64le/product_debug/","autorefresh":false,"distro_target":"sle-15-ppc64le","id":3992,"enabled":false},{"description":"SLE-Module-Basesystem15-SP2-Source-Pool for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-Basesystem15-SP2-Source-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP2/ppc64le/product_source/","distro_target":"sle-15-ppc64le","autorefresh":false,"id":3993,"enabled":false}],"product_class":"MODULE","predecessor_ids":[1588,1770],"product_type":"module","cpe":"cpe:/o:suse:sle-module-basesystem:15:sp2","free":true,"shortname":"Basesystem-Module","description":"

The SUSE Linux Enterprise Basesystem Module delivers the base system of the product.

","arch":"ppc64le","eula_url":""},{"product_class":"MODULE","online_predecessor_ids":[1587,1771],"repositories":[{"enabled":true,"id":3994,"distro_target":"sle-15-s390x","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15-SP2/s390x/update/","installer_updates":false,"name":"SLE-Module-Basesystem15-SP2-Updates","description":"SLE-Module-Basesystem15-SP2-Updates for sle-15-s390x"},{"autorefresh":true,"distro_target":"sle-15-s390x","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15-SP2/s390x/update_debug/","enabled":false,"id":3995,"description":"SLE-Module-Basesystem15-SP2-Debuginfo-Updates for sle-15-s390x","name":"SLE-Module-Basesystem15-SP2-Debuginfo-Updates","installer_updates":false},{"enabled":true,"id":3996,"autorefresh":false,"distro_target":"sle-15-s390x","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP2/s390x/product/","name":"SLE-Module-Basesystem15-SP2-Pool","installer_updates":false,"description":"SLE-Module-Basesystem15-SP2-Pool for sle-15-s390x"},{"description":"SLE-Module-Basesystem15-SP2-Debuginfo-Pool for sle-15-s390x","installer_updates":false,"name":"SLE-Module-Basesystem15-SP2-Debuginfo-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP2/s390x/product_debug/","distro_target":"sle-15-s390x","autorefresh":false,"id":3997,"enabled":false},{"name":"SLE-Module-Basesystem15-SP2-Source-Pool","installer_updates":false,"description":"SLE-Module-Basesystem15-SP2-Source-Pool for sle-15-s390x","id":3998,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP2/s390x/product_source/","autorefresh":false,"distro_target":"sle-15-s390x"}],"predecessor_ids":[1587,1771],"product_type":"module","cpe":"cpe:/o:suse:sle-module-basesystem:15:sp2","free":true,"description":"

The SUSE Linux Enterprise Basesystem Module delivers the base system of the product.

","shortname":"Basesystem-Module","arch":"s390x","eula_url":"","friendly_version":"15 SP2","id":1945,"release_stage":"released","identifier":"sle-module-basesystem","extensions":[],"version":"15.2","recommended":false,"release_type":null,"former_identifier":"sle-module-basesystem","migration_extra":false,"friendly_name":"Basesystem Module 15 SP2 s390x","offline_predecessor_ids":[1295,1367],"name":"Basesystem Module"},{"free":true,"shortname":"Basesystem-Module","description":"

The SUSE Linux Enterprise Basesystem Module delivers the base system of the product.

","eula_url":"","arch":"x86_64","predecessor_ids":[1576,1772],"product_class":"MODULE","online_predecessor_ids":[1576,1772],"repositories":[{"description":"SLE-Module-Basesystem15-SP2-Updates for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Basesystem15-SP2-Updates","distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15-SP2/x86_64/update/","enabled":true,"id":3999},{"name":"SLE-Module-Basesystem15-SP2-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-Basesystem15-SP2-Debuginfo-Updates for sle-15-x86_64","enabled":false,"id":4000,"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15-SP2/x86_64/update_debug/"},{"installer_updates":false,"name":"SLE-Module-Basesystem15-SP2-Pool","description":"SLE-Module-Basesystem15-SP2-Pool for sle-15-x86_64","id":4001,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP2/x86_64/product/","distro_target":"sle-15-x86_64","autorefresh":false},{"installer_updates":false,"name":"SLE-Module-Basesystem15-SP2-Debuginfo-Pool","description":"SLE-Module-Basesystem15-SP2-Debuginfo-Pool for sle-15-x86_64","enabled":false,"id":4002,"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP2/x86_64/product_debug/"},{"id":4003,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP2/x86_64/product_source/","autorefresh":false,"distro_target":"sle-15-x86_64","name":"SLE-Module-Basesystem15-SP2-Source-Pool","installer_updates":false,"description":"SLE-Module-Basesystem15-SP2-Source-Pool for sle-15-x86_64"}],"product_type":"module","cpe":"cpe:/o:suse:sle-module-basesystem:15:sp2","recommended":false,"version":"15.2","offline_predecessor_ids":[1212,1368,1440],"name":"Basesystem Module","former_identifier":"sle-module-basesystem","release_type":null,"migration_extra":false,"friendly_name":"Basesystem Module 15 SP2 x86_64","friendly_version":"15 SP2","extensions":[],"release_stage":"released","identifier":"sle-module-basesystem","id":1946},{"name":"SUSE Package Hub","offline_predecessor_ids":[1810,1912],"migration_extra":false,"friendly_name":"SUSE Package Hub 15 SP2 aarch64","release_type":null,"former_identifier":"PackageHub","recommended":false,"version":"15.2","extensions":[],"id":1947,"release_stage":"released","identifier":"PackageHub","friendly_version":"15 SP2","eula_url":"","arch":"aarch64","shortname":"SUSE-PackageHub-15","description":"SUSE Package Hub is a free of charge extension providing access to community maintained packages built to run on SUSE Linux Enterprise Server. Built from the same sources used in the openSUSE distributions, these quality packages provide additional software to what is found in the SUSE Linux Enterprise Server product. Packages from the Package Hub are delivered without L3 support from SUSE. General updates and fixes to the packages in SUSE Package Hub are provided by the openSUSE community based on their discretion, though SUSE will monitor and ensure that any known critical security issues will be addressed. Packages in the Package Hub are approved by SUSE for use with SUSE Linux Enterprise Server 15-SP2 and to not interfere with the supportability of SUSE Linux Enterprise Server, its modules and extensions. For more information about SUSE Package Hub please visit https://packagehub.suse.com.","free":true,"cpe":"cpe:/o:suse:packagehub:15:sp2","product_type":"extension","predecessor_ids":[1740,1868],"repositories":[{"distro_target":"sle-15-aarch64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Backports/SLE-15-SP2_aarch64/standard/","enabled":true,"id":4004,"description":"SUSE-PackageHub-15-SP2-Backports-Pool for sle-15-aarch64","installer_updates":false,"name":"SUSE-PackageHub-15-SP2-Backports-Pool"},{"installer_updates":false,"name":"SUSE-PackageHub-15-SP2-Backports-Debuginfo","description":"SUSE-PackageHub-15-SP2-Backports-Debuginfo for sle-15-aarch64","enabled":false,"id":4005,"distro_target":"sle-15-aarch64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Backports/SLE-15-SP2_aarch64/standard_debug/"},{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP2/aarch64/update/","distro_target":"sle-15-aarch64","autorefresh":true,"id":4006,"enabled":true,"description":"SLE-Module-Packagehub-Subpackages15-SP2-Updates for sle-15-aarch64","installer_updates":false,"name":"SLE-Module-Packagehub-Subpackages15-SP2-Updates"},{"distro_target":"sle-15-aarch64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP2/aarch64/update_debug/","enabled":false,"id":4007,"description":"SLE-Module-Packagehub-Subpackages15-SP2-Debuginfo-Updates for sle-15-aarch64","installer_updates":false,"name":"SLE-Module-Packagehub-Subpackages15-SP2-Debuginfo-Updates"},{"description":"SUSE-PackageHub-15-SP2-Pool for sle-15-aarch64","installer_updates":false,"name":"SUSE-PackageHub-15-SP2-Pool","distro_target":"sle-15-aarch64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Backports/SLE-15-SP2_aarch64/product/","enabled":true,"id":4008},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP2/aarch64/product/","distro_target":"sle-15-aarch64","autorefresh":false,"id":4009,"enabled":true,"description":"SLE-Module-Packagehub-Subpackages15-SP2-Pool for sle-15-aarch64","installer_updates":false,"name":"SLE-Module-Packagehub-Subpackages15-SP2-Pool"},{"name":"SLE-Module-Packagehub-Subpackages15-SP2-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-Packagehub-Subpackages15-SP2-Debuginfo-Pool for sle-15-aarch64","enabled":false,"id":4010,"autorefresh":false,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP2/aarch64/product_debug/"},{"enabled":false,"id":4011,"distro_target":"sle-15-aarch64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP2/aarch64/product_source/","installer_updates":false,"name":"SLE-Module-Packagehub-Subpackages15-SP2-Source-Pool","description":"SLE-Module-Packagehub-Subpackages15-SP2-Source-Pool for sle-15-aarch64"}],"online_predecessor_ids":[1740,1868],"product_class":"MODULE"},{"arch":"ppc64le","eula_url":"","free":true,"description":"SUSE Package Hub is a free of charge extension providing access to community maintained packages built to run on SUSE Linux Enterprise Server. Built from the same sources used in the openSUSE distributions, these quality packages provide additional software to what is found in the SUSE Linux Enterprise Server product. Packages from the Package Hub are delivered without L3 support from SUSE. General updates and fixes to the packages in SUSE Package Hub are provided by the openSUSE community based on their discretion, though SUSE will monitor and ensure that any known critical security issues will be addressed. Packages in the Package Hub are approved by SUSE for use with SUSE Linux Enterprise Server 15-SP2 and to not interfere with the supportability of SUSE Linux Enterprise Server, its modules and extensions. For more information about SUSE Package Hub please visit https://packagehub.suse.com.","shortname":"SUSE-PackageHub-15","product_type":"extension","cpe":"cpe:/o:suse:packagehub:15:sp2","online_predecessor_ids":[1741,1869],"product_class":"MODULE","repositories":[{"autorefresh":false,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Backports/SLE-15-SP2_ppc64le/standard/","enabled":true,"id":4012,"description":"SUSE-PackageHub-15-SP2-Backports-Pool for sle-15-ppc64le","name":"SUSE-PackageHub-15-SP2-Backports-Pool","installer_updates":false},{"url":"https://updates.suse.com/SUSE/Backports/SLE-15-SP2_ppc64le/standard_debug/","autorefresh":true,"distro_target":"sle-15-ppc64le","id":4013,"enabled":false,"description":"SUSE-PackageHub-15-SP2-Backports-Debuginfo for sle-15-ppc64le","name":"SUSE-PackageHub-15-SP2-Backports-Debuginfo","installer_updates":false},{"autorefresh":true,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP2/ppc64le/update/","enabled":true,"id":4014,"description":"SLE-Module-Packagehub-Subpackages15-SP2-Updates for sle-15-ppc64le","name":"SLE-Module-Packagehub-Subpackages15-SP2-Updates","installer_updates":false},{"distro_target":"sle-15-ppc64le","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP2/ppc64le/update_debug/","enabled":false,"id":4015,"description":"SLE-Module-Packagehub-Subpackages15-SP2-Debuginfo-Updates for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-Packagehub-Subpackages15-SP2-Debuginfo-Updates"},{"autorefresh":false,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Backports/SLE-15-SP2_ppc64le/product/","enabled":true,"id":4016,"description":"SUSE-PackageHub-15-SP2-Pool for sle-15-ppc64le","name":"SUSE-PackageHub-15-SP2-Pool","installer_updates":false},{"installer_updates":false,"name":"SLE-Module-Packagehub-Subpackages15-SP2-Pool","description":"SLE-Module-Packagehub-Subpackages15-SP2-Pool for sle-15-ppc64le","id":4017,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP2/ppc64le/product/","distro_target":"sle-15-ppc64le","autorefresh":false},{"installer_updates":false,"name":"SLE-Module-Packagehub-Subpackages15-SP2-Debuginfo-Pool","description":"SLE-Module-Packagehub-Subpackages15-SP2-Debuginfo-Pool for sle-15-ppc64le","enabled":false,"id":4018,"distro_target":"sle-15-ppc64le","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP2/ppc64le/product_debug/"},{"id":4019,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP2/ppc64le/product_source/","distro_target":"sle-15-ppc64le","autorefresh":false,"installer_updates":false,"name":"SLE-Module-Packagehub-Subpackages15-SP2-Source-Pool","description":"SLE-Module-Packagehub-Subpackages15-SP2-Source-Pool for sle-15-ppc64le"}],"predecessor_ids":[1741,1869],"release_type":null,"former_identifier":"PackageHub","migration_extra":false,"friendly_name":"SUSE Package Hub 15 SP2 ppc64le","offline_predecessor_ids":[1811,1913],"name":"SUSE Package Hub","version":"15.2","recommended":false,"release_stage":"released","identifier":"PackageHub","id":1948,"extensions":[],"friendly_version":"15 SP2"},{"release_type":null,"former_identifier":"PackageHub","friendly_name":"SUSE Package Hub 15 SP2 s390x","migration_extra":false,"offline_predecessor_ids":[1812,1914],"name":"SUSE Package Hub","version":"15.2","recommended":false,"id":1949,"release_stage":"released","identifier":"PackageHub","extensions":[],"friendly_version":"15 SP2","arch":"s390x","eula_url":"","free":true,"description":"SUSE Package Hub is a free of charge extension providing access to community maintained packages built to run on SUSE Linux Enterprise Server. Built from the same sources used in the openSUSE distributions, these quality packages provide additional software to what is found in the SUSE Linux Enterprise Server product. Packages from the Package Hub are delivered without L3 support from SUSE. General updates and fixes to the packages in SUSE Package Hub are provided by the openSUSE community based on their discretion, though SUSE will monitor and ensure that any known critical security issues will be addressed. Packages in the Package Hub are approved by SUSE for use with SUSE Linux Enterprise Server 15-SP2 and to not interfere with the supportability of SUSE Linux Enterprise Server, its modules and extensions. For more information about SUSE Package Hub please visit https://packagehub.suse.com.","shortname":"SUSE-PackageHub-15","product_type":"extension","cpe":"cpe:/o:suse:packagehub:15:sp2","repositories":[{"url":"https://updates.suse.com/SUSE/Backports/SLE-15-SP2_s390x/standard/","distro_target":"sle-15-s390x","autorefresh":false,"id":4020,"enabled":true,"description":"SUSE-PackageHub-15-SP2-Backports-Pool for sle-15-s390x","installer_updates":false,"name":"SUSE-PackageHub-15-SP2-Backports-Pool"},{"autorefresh":true,"distro_target":"sle-15-s390x","url":"https://updates.suse.com/SUSE/Backports/SLE-15-SP2_s390x/standard_debug/","enabled":false,"id":4021,"description":"SUSE-PackageHub-15-SP2-Backports-Debuginfo for sle-15-s390x","name":"SUSE-PackageHub-15-SP2-Backports-Debuginfo","installer_updates":false},{"id":4022,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP2/s390x/update/","autorefresh":true,"distro_target":"sle-15-s390x","name":"SLE-Module-Packagehub-Subpackages15-SP2-Updates","installer_updates":false,"description":"SLE-Module-Packagehub-Subpackages15-SP2-Updates for sle-15-s390x"},{"enabled":false,"id":4023,"autorefresh":true,"distro_target":"sle-15-s390x","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP2/s390x/update_debug/","name":"SLE-Module-Packagehub-Subpackages15-SP2-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-Packagehub-Subpackages15-SP2-Debuginfo-Updates for sle-15-s390x"},{"autorefresh":false,"distro_target":"sle-15-s390x","url":"https://updates.suse.com/SUSE/Backports/SLE-15-SP2_s390x/product/","enabled":true,"id":4024,"description":"SUSE-PackageHub-15-SP2-Pool for sle-15-s390x","name":"SUSE-PackageHub-15-SP2-Pool","installer_updates":false},{"distro_target":"sle-15-s390x","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP2/s390x/product/","enabled":true,"id":4025,"description":"SLE-Module-Packagehub-Subpackages15-SP2-Pool for sle-15-s390x","installer_updates":false,"name":"SLE-Module-Packagehub-Subpackages15-SP2-Pool"},{"distro_target":"sle-15-s390x","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP2/s390x/product_debug/","enabled":false,"id":4026,"description":"SLE-Module-Packagehub-Subpackages15-SP2-Debuginfo-Pool for sle-15-s390x","installer_updates":false,"name":"SLE-Module-Packagehub-Subpackages15-SP2-Debuginfo-Pool"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP2/s390x/product_source/","distro_target":"sle-15-s390x","autorefresh":false,"id":4027,"enabled":false,"description":"SLE-Module-Packagehub-Subpackages15-SP2-Source-Pool for sle-15-s390x","installer_updates":false,"name":"SLE-Module-Packagehub-Subpackages15-SP2-Source-Pool"}],"online_predecessor_ids":[1742,1870],"product_class":"MODULE","predecessor_ids":[1742,1870]},{"extensions":[],"release_stage":"released","id":1950,"identifier":"PackageHub","friendly_version":"15 SP2","name":"SUSE Package Hub","offline_predecessor_ids":[1813,1915],"friendly_name":"SUSE Package Hub 15 SP2 x86_64","migration_extra":false,"release_type":null,"former_identifier":"PackageHub","recommended":false,"version":"15.2","cpe":"cpe:/o:suse:packagehub:15:sp2","product_type":"extension","predecessor_ids":[1743,1871],"online_predecessor_ids":[1743,1871],"repositories":[{"url":"https://updates.suse.com/SUSE/Backports/SLE-15-SP2_x86_64/standard/","autorefresh":false,"distro_target":"sle-15-x86_64","id":4028,"enabled":true,"description":"SUSE-PackageHub-15-SP2-Backports-Pool for sle-15-x86_64","name":"SUSE-PackageHub-15-SP2-Backports-Pool","installer_updates":false},{"installer_updates":false,"name":"SUSE-PackageHub-15-SP2-Backports-Debuginfo","description":"SUSE-PackageHub-15-SP2-Backports-Debuginfo for sle-15-x86_64","id":4029,"enabled":false,"url":"https://updates.suse.com/SUSE/Backports/SLE-15-SP2_x86_64/standard_debug/","distro_target":"sle-15-x86_64","autorefresh":true},{"installer_updates":false,"name":"SLE-Module-Packagehub-Subpackages15-SP2-Updates","description":"SLE-Module-Packagehub-Subpackages15-SP2-Updates for sle-15-x86_64","id":4030,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP2/x86_64/update/","distro_target":"sle-15-x86_64","autorefresh":true},{"distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP2/x86_64/update_debug/","enabled":false,"id":4031,"description":"SLE-Module-Packagehub-Subpackages15-SP2-Debuginfo-Updates for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Packagehub-Subpackages15-SP2-Debuginfo-Updates"},{"name":"SUSE-PackageHub-15-SP2-Pool","installer_updates":false,"description":"SUSE-PackageHub-15-SP2-Pool for sle-15-x86_64","enabled":true,"id":4032,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Backports/SLE-15-SP2_x86_64/product/"},{"description":"SLE-Module-Packagehub-Subpackages15-SP2-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Packagehub-Subpackages15-SP2-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP2/x86_64/product/","distro_target":"sle-15-x86_64","autorefresh":false,"id":4033,"enabled":true},{"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP2/x86_64/product_debug/","enabled":false,"id":4034,"description":"SLE-Module-Packagehub-Subpackages15-SP2-Debuginfo-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Packagehub-Subpackages15-SP2-Debuginfo-Pool"},{"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP2/x86_64/product_source/","enabled":false,"id":4035,"description":"SLE-Module-Packagehub-Subpackages15-SP2-Source-Pool for sle-15-x86_64","name":"SLE-Module-Packagehub-Subpackages15-SP2-Source-Pool","installer_updates":false}],"product_class":"MODULE","eula_url":"","arch":"x86_64","shortname":"SUSE-PackageHub-15","description":"SUSE Package Hub is a free of charge extension providing access to community maintained packages built to run on SUSE Linux Enterprise Server. Built from the same sources used in the openSUSE distributions, these quality packages provide additional software to what is found in the SUSE Linux Enterprise Server product. Packages from the Package Hub are delivered without L3 support from SUSE. General updates and fixes to the packages in SUSE Package Hub are provided by the openSUSE community based on their discretion, though SUSE will monitor and ensure that any known critical security issues will be addressed. Packages in the Package Hub are approved by SUSE for use with SUSE Linux Enterprise Server 15-SP2 and to not interfere with the supportability of SUSE Linux Enterprise Server, its modules and extensions. For more information about SUSE Package Hub please visit https://packagehub.suse.com.","free":true},{"arch":"aarch64","eula_url":"","free":true,"description":"

The SUSE Linux Enterprise Server Applications Module delivers a basic set of Server functionality.

Access to the Server Applications Module is included in your SUSE Linux Enterprise Server subscription.

","shortname":"Server-Applications-Module","product_type":"module","cpe":"cpe:/o:suse:sle-module-server-applications:15:sp2","online_predecessor_ids":[1601,1777],"repositories":[{"name":"SLE-Module-Server-Applications15-SP2-Updates","installer_updates":false,"description":"SLE-Module-Server-Applications15-SP2-Updates for sle-15-aarch64","id":4041,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15-SP2/aarch64/update/","autorefresh":true,"distro_target":"sle-15-aarch64"},{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15-SP2/aarch64/update_debug/","autorefresh":true,"distro_target":"sle-15-aarch64","id":4042,"enabled":false,"description":"SLE-Module-Server-Applications15-SP2-Debuginfo-Updates for sle-15-aarch64","name":"SLE-Module-Server-Applications15-SP2-Debuginfo-Updates","installer_updates":false},{"description":"SLE-Module-Server-Applications15-SP2-Pool for sle-15-aarch64","name":"SLE-Module-Server-Applications15-SP2-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP2/aarch64/product/","enabled":true,"id":4043},{"id":4044,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP2/aarch64/product_debug/","autorefresh":false,"distro_target":"sle-15-aarch64","name":"SLE-Module-Server-Applications15-SP2-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-Server-Applications15-SP2-Debuginfo-Pool for sle-15-aarch64"},{"id":4045,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP2/aarch64/product_source/","autorefresh":false,"distro_target":"sle-15-aarch64","name":"SLE-Module-Server-Applications15-SP2-Source-Pool","installer_updates":false,"description":"SLE-Module-Server-Applications15-SP2-Source-Pool for sle-15-aarch64"}],"product_class":"MODULE","predecessor_ids":[1601,1777],"release_type":null,"former_identifier":"sle-module-server-applications","friendly_name":"Server Applications Module 15 SP2 aarch64","migration_extra":false,"offline_predecessor_ids":[],"name":"Server Applications Module","version":"15.2","recommended":false,"id":1952,"release_stage":"released","identifier":"sle-module-server-applications","extensions":[],"friendly_version":"15 SP2"},{"offline_predecessor_ids":[],"name":"Server Applications Module","former_identifier":"sle-module-server-applications","release_type":null,"migration_extra":false,"friendly_name":"Server Applications Module 15 SP2 ppc64le","recommended":false,"version":"15.2","extensions":[],"release_stage":"released","id":1953,"identifier":"sle-module-server-applications","friendly_version":"15 SP2","eula_url":"","arch":"ppc64le","free":true,"shortname":"Server-Applications-Module","description":"

The SUSE Linux Enterprise Server Applications Module delivers a basic set of Server functionality.

Access to the Server Applications Module is included in your SUSE Linux Enterprise Server subscription.

","product_type":"module","cpe":"cpe:/o:suse:sle-module-server-applications:15:sp2","predecessor_ids":[1600,1778],"online_predecessor_ids":[1600,1778],"product_class":"MODULE","repositories":[{"id":4046,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15-SP2/ppc64le/update/","autorefresh":true,"distro_target":"sle-15-ppc64le","name":"SLE-Module-Server-Applications15-SP2-Updates","installer_updates":false,"description":"SLE-Module-Server-Applications15-SP2-Updates for sle-15-ppc64le"},{"description":"SLE-Module-Server-Applications15-SP2-Debuginfo-Updates for sle-15-ppc64le","name":"SLE-Module-Server-Applications15-SP2-Debuginfo-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15-SP2/ppc64le/update_debug/","enabled":false,"id":4047},{"description":"SLE-Module-Server-Applications15-SP2-Pool for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-Server-Applications15-SP2-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP2/ppc64le/product/","distro_target":"sle-15-ppc64le","autorefresh":false,"id":4048,"enabled":true},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP2/ppc64le/product_debug/","autorefresh":false,"distro_target":"sle-15-ppc64le","id":4049,"enabled":false,"description":"SLE-Module-Server-Applications15-SP2-Debuginfo-Pool for sle-15-ppc64le","name":"SLE-Module-Server-Applications15-SP2-Debuginfo-Pool","installer_updates":false},{"id":4050,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP2/ppc64le/product_source/","distro_target":"sle-15-ppc64le","autorefresh":false,"installer_updates":false,"name":"SLE-Module-Server-Applications15-SP2-Source-Pool","description":"SLE-Module-Server-Applications15-SP2-Source-Pool for sle-15-ppc64le"}]},{"friendly_version":"15 SP2","release_stage":"released","id":1954,"identifier":"sle-module-server-applications","extensions":[],"version":"15.2","recommended":false,"release_type":null,"former_identifier":"sle-module-server-applications","friendly_name":"Server Applications Module 15 SP2 s390x","migration_extra":false,"offline_predecessor_ids":[],"name":"Server Applications Module","product_class":"MODULE","online_predecessor_ids":[1599,1779],"repositories":[{"id":4051,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15-SP2/s390x/update/","distro_target":"sle-15-s390x","autorefresh":true,"installer_updates":false,"name":"SLE-Module-Server-Applications15-SP2-Updates","description":"SLE-Module-Server-Applications15-SP2-Updates for sle-15-s390x"},{"autorefresh":true,"distro_target":"sle-15-s390x","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15-SP2/s390x/update_debug/","enabled":false,"id":4052,"description":"SLE-Module-Server-Applications15-SP2-Debuginfo-Updates for sle-15-s390x","name":"SLE-Module-Server-Applications15-SP2-Debuginfo-Updates","installer_updates":false},{"description":"SLE-Module-Server-Applications15-SP2-Pool for sle-15-s390x","name":"SLE-Module-Server-Applications15-SP2-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-15-s390x","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP2/s390x/product/","enabled":true,"id":4053},{"name":"SLE-Module-Server-Applications15-SP2-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-Server-Applications15-SP2-Debuginfo-Pool for sle-15-s390x","id":4054,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP2/s390x/product_debug/","autorefresh":false,"distro_target":"sle-15-s390x"},{"installer_updates":false,"name":"SLE-Module-Server-Applications15-SP2-Source-Pool","description":"SLE-Module-Server-Applications15-SP2-Source-Pool for sle-15-s390x","id":4055,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP2/s390x/product_source/","distro_target":"sle-15-s390x","autorefresh":false}],"predecessor_ids":[1599,1779],"product_type":"module","cpe":"cpe:/o:suse:sle-module-server-applications:15:sp2","free":true,"shortname":"Server-Applications-Module","description":"

The SUSE Linux Enterprise Server Applications Module delivers a basic set of Server functionality.

Access to the Server Applications Module is included in your SUSE Linux Enterprise Server subscription.

","arch":"s390x","eula_url":""},{"eula_url":"","arch":"x86_64","free":true,"description":"

The SUSE Linux Enterprise Server Applications Module delivers a basic set of Server functionality.

Access to the Server Applications Module is included in your SUSE Linux Enterprise Server subscription.

","shortname":"Server-Applications-Module","product_type":"module","cpe":"cpe:/o:suse:sle-module-server-applications:15:sp2","predecessor_ids":[1580,1780],"online_predecessor_ids":[1580,1780],"product_class":"MODULE","repositories":[{"description":"SLE-Module-Server-Applications15-SP2-Updates for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Server-Applications15-SP2-Updates","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15-SP2/x86_64/update/","distro_target":"sle-15-x86_64","autorefresh":true,"id":4056,"enabled":true},{"description":"SLE-Module-Server-Applications15-SP2-Debuginfo-Updates for sle-15-x86_64","name":"SLE-Module-Server-Applications15-SP2-Debuginfo-Updates","installer_updates":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15-SP2/x86_64/update_debug/","autorefresh":true,"distro_target":"sle-15-x86_64","id":4057,"enabled":false},{"enabled":true,"id":4058,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP2/x86_64/product/","name":"SLE-Module-Server-Applications15-SP2-Pool","installer_updates":false,"description":"SLE-Module-Server-Applications15-SP2-Pool for sle-15-x86_64"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP2/x86_64/product_debug/","distro_target":"sle-15-x86_64","autorefresh":false,"id":4059,"enabled":false,"description":"SLE-Module-Server-Applications15-SP2-Debuginfo-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Server-Applications15-SP2-Debuginfo-Pool"},{"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP2/x86_64/product_source/","enabled":false,"id":4060,"description":"SLE-Module-Server-Applications15-SP2-Source-Pool for sle-15-x86_64","name":"SLE-Module-Server-Applications15-SP2-Source-Pool","installer_updates":false}],"offline_predecessor_ids":[],"name":"Server Applications Module","former_identifier":"sle-module-server-applications","release_type":null,"migration_extra":false,"friendly_name":"Server Applications Module 15 SP2 x86_64","recommended":false,"version":"15.2","extensions":[],"release_stage":"released","id":1955,"identifier":"sle-module-server-applications","friendly_version":"15 SP2"},{"online_predecessor_ids":[1608,1782],"product_class":"SLE-HAE-ARM64","repositories":[{"name":"SLE-Product-HA15-SP2-Updates","installer_updates":false,"description":"SLE-Product-HA15-SP2-Updates for sle-15-aarch64","enabled":true,"id":4061,"autorefresh":true,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Updates/SLE-Product-HA/15-SP2/aarch64/update/"},{"description":"SLE-Product-HA15-SP2-Debuginfo-Updates for sle-15-aarch64","name":"SLE-Product-HA15-SP2-Debuginfo-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Updates/SLE-Product-HA/15-SP2/aarch64/update_debug/","enabled":false,"id":4062},{"url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP2/aarch64/product/","autorefresh":false,"distro_target":"sle-15-aarch64","id":4063,"enabled":true,"description":"SLE-Product-HA15-SP2-Pool for sle-15-aarch64","name":"SLE-Product-HA15-SP2-Pool","installer_updates":false},{"id":4064,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP2/aarch64/product_debug/","distro_target":"sle-15-aarch64","autorefresh":false,"installer_updates":false,"name":"SLE-Product-HA15-SP2-Debuginfo-Pool","description":"SLE-Product-HA15-SP2-Debuginfo-Pool for sle-15-aarch64"},{"enabled":false,"id":4065,"distro_target":"sle-15-aarch64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP2/aarch64/product_source/","installer_updates":false,"name":"SLE-Product-HA15-SP2-Source-Pool","description":"SLE-Product-HA15-SP2-Source-Pool for sle-15-aarch64"}],"predecessor_ids":[1608,1782],"cpe":"cpe:/o:suse:sle-ha:15:sp2","product_type":"extension","description":"SUSE Linux High Availability Extension provides mature, industry-leading open-source high-availability clustering technologies that are easy to set up and use. It can be deployed in physical and/or virtual environments, and can cluster physical servers, virtual servers, or any combination of the two to suit your business’ needs.","shortname":"SLEHA15-SP2","free":false,"arch":"aarch64","eula_url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP2/aarch64/product.license/","friendly_version":"15 SP2","release_stage":"released","id":1956,"identifier":"sle-ha","extensions":[],"version":"15.2","recommended":false,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise High Availability Extension 15 SP2 aarch64","former_identifier":"sle-ha","release_type":null,"name":"SUSE Linux Enterprise High Availability Extension","offline_predecessor_ids":[]},{"eula_url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP2/ppc64le/product.license/","arch":"ppc64le","description":"SUSE Linux High Availability Extension provides mature, industry-leading open-source high-availability clustering technologies that are easy to set up and use. It can be deployed in physical and/or virtual environments, and can cluster physical servers, virtual servers, or any combination of the two to suit your business’ needs.","shortname":"SLEHA15-SP2","free":false,"cpe":"cpe:/o:suse:sle-ha:15:sp2","product_type":"extension","predecessor_ids":[1606,1783],"repositories":[{"description":"SLE-Product-HA15-SP2-Updates for sle-15-ppc64le","name":"SLE-Product-HA15-SP2-Updates","installer_updates":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-HA/15-SP2/ppc64le/update/","autorefresh":true,"distro_target":"sle-15-ppc64le","id":4066,"enabled":true},{"enabled":false,"id":4067,"distro_target":"sle-15-ppc64le","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-HA/15-SP2/ppc64le/update_debug/","installer_updates":false,"name":"SLE-Product-HA15-SP2-Debuginfo-Updates","description":"SLE-Product-HA15-SP2-Debuginfo-Updates for sle-15-ppc64le"},{"enabled":true,"id":4068,"distro_target":"sle-15-ppc64le","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP2/ppc64le/product/","installer_updates":false,"name":"SLE-Product-HA15-SP2-Pool","description":"SLE-Product-HA15-SP2-Pool for sle-15-ppc64le"},{"description":"SLE-Product-HA15-SP2-Debuginfo-Pool for sle-15-ppc64le","name":"SLE-Product-HA15-SP2-Debuginfo-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP2/ppc64le/product_debug/","autorefresh":false,"distro_target":"sle-15-ppc64le","id":4069,"enabled":false},{"distro_target":"sle-15-ppc64le","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP2/ppc64le/product_source/","enabled":false,"id":4070,"description":"SLE-Product-HA15-SP2-Source-Pool for sle-15-ppc64le","installer_updates":false,"name":"SLE-Product-HA15-SP2-Source-Pool"}],"online_predecessor_ids":[1606,1783],"product_class":"SLE-HAE-PPC","name":"SUSE Linux Enterprise High Availability Extension","offline_predecessor_ids":[1635,1882],"migration_extra":false,"friendly_name":"SUSE Linux Enterprise High Availability Extension 15 SP2 ppc64le","release_type":null,"former_identifier":"sle-ha","recommended":false,"version":"15.2","extensions":[],"release_stage":"released","identifier":"sle-ha","id":1957,"friendly_version":"15 SP2"},{"recommended":false,"version":"15.2","offline_predecessor_ids":[1080,1082,1084,1086,1109,1110,1257,1287,1636,1638,1883,1885],"name":"SUSE Linux Enterprise High Availability Extension","release_type":null,"former_identifier":"sle-ha","migration_extra":false,"friendly_name":"SUSE Linux Enterprise High Availability Extension 15 SP2 s390x","friendly_version":"15 SP2","extensions":[],"identifier":"sle-ha","release_stage":"released","id":1958,"free":false,"description":"SUSE Linux High Availability Extension provides mature, industry-leading open-source high-availability clustering technologies that are easy to set up and use. It can be deployed in physical and/or virtual environments, and can cluster physical servers, virtual servers, or any combination of the two to suit your business’ needs.","shortname":"SLEHA15-SP2","eula_url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP2/s390x/product.license/","arch":"s390x","predecessor_ids":[1605,1784],"online_predecessor_ids":[1605,1784],"product_class":"SLE-HAE-Z","repositories":[{"enabled":true,"id":4071,"distro_target":"sle-15-s390x","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-HA/15-SP2/s390x/update/","installer_updates":false,"name":"SLE-Product-HA15-SP2-Updates","description":"SLE-Product-HA15-SP2-Updates for sle-15-s390x"},{"installer_updates":false,"name":"SLE-Product-HA15-SP2-Debuginfo-Updates","description":"SLE-Product-HA15-SP2-Debuginfo-Updates for sle-15-s390x","id":4072,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-HA/15-SP2/s390x/update_debug/","distro_target":"sle-15-s390x","autorefresh":true},{"enabled":true,"id":4073,"distro_target":"sle-15-s390x","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP2/s390x/product/","installer_updates":false,"name":"SLE-Product-HA15-SP2-Pool","description":"SLE-Product-HA15-SP2-Pool for sle-15-s390x"},{"description":"SLE-Product-HA15-SP2-Debuginfo-Pool for sle-15-s390x","installer_updates":false,"name":"SLE-Product-HA15-SP2-Debuginfo-Pool","distro_target":"sle-15-s390x","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP2/s390x/product_debug/","enabled":false,"id":4074},{"url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP2/s390x/product_source/","distro_target":"sle-15-s390x","autorefresh":false,"id":4075,"enabled":false,"description":"SLE-Product-HA15-SP2-Source-Pool for sle-15-s390x","installer_updates":false,"name":"SLE-Product-HA15-SP2-Source-Pool"}],"product_type":"extension","cpe":"cpe:/o:suse:sle-ha:15:sp2"},{"recommended":false,"version":"15.2","name":"SUSE Linux Enterprise High Availability Extension","offline_predecessor_ids":[958,961,967,971,1101,1107,1256,1286,1634,1637,1884,1886],"migration_extra":false,"friendly_name":"SUSE Linux Enterprise High Availability Extension 15 SP2 x86_64","former_identifier":"sle-ha","release_type":null,"friendly_version":"15 SP2","extensions":[],"identifier":"sle-ha","release_stage":"released","id":1959,"description":"SUSE Linux High Availability Extension provides mature, industry-leading open-source high-availability clustering technologies that are easy to set up and use. It can be deployed in physical and/or virtual environments, and can cluster physical servers, virtual servers, or any combination of the two to suit your business’ needs.","shortname":"SLEHA15-SP2","free":false,"eula_url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP2/x86_64/product.license/","arch":"x86_64","predecessor_ids":[1582,1785],"online_predecessor_ids":[1582,1785],"repositories":[{"name":"SLE-Product-HA15-SP2-Updates","installer_updates":false,"description":"SLE-Product-HA15-SP2-Updates for sle-15-x86_64","enabled":true,"id":4076,"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Product-HA/15-SP2/x86_64/update/"},{"id":4077,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-HA/15-SP2/x86_64/update_debug/","distro_target":"sle-15-x86_64","autorefresh":true,"installer_updates":false,"name":"SLE-Product-HA15-SP2-Debuginfo-Updates","description":"SLE-Product-HA15-SP2-Debuginfo-Updates for sle-15-x86_64"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP2/x86_64/product/","autorefresh":false,"distro_target":"sle-15-x86_64","id":4078,"enabled":true,"description":"SLE-Product-HA15-SP2-Pool for sle-15-x86_64","name":"SLE-Product-HA15-SP2-Pool","installer_updates":false},{"description":"SLE-Product-HA15-SP2-Debuginfo-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Product-HA15-SP2-Debuginfo-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP2/x86_64/product_debug/","distro_target":"sle-15-x86_64","autorefresh":false,"id":4079,"enabled":false},{"description":"SLE-Product-HA15-SP2-Source-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Product-HA15-SP2-Source-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP2/x86_64/product_source/","distro_target":"sle-15-x86_64","autorefresh":false,"id":4080,"enabled":false}],"product_class":"SLE-HAE-X86","cpe":"cpe:/o:suse:sle-ha:15:sp2","product_type":"extension"},{"friendly_version":"15 SP2","identifier":"sle-module-containers","release_stage":"released","id":1960,"extensions":[],"version":"15.2","recommended":false,"release_type":null,"former_identifier":"sle-module-containers","friendly_name":"Containers Module 15 SP2 aarch64","migration_extra":false,"offline_predecessor_ids":[],"name":"Containers Module","online_predecessor_ids":[1920],"product_class":"MODULE","repositories":[{"installer_updates":false,"name":"SLE-Module-Containers15-SP2-Updates","description":"SLE-Module-Containers15-SP2-Updates for sle-15-aarch64","enabled":true,"id":4081,"distro_target":"sle-15-aarch64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/15-SP2/aarch64/update/"},{"description":"SLE-Module-Containers15-SP2-Debuginfo-Updates for sle-15-aarch64","name":"SLE-Module-Containers15-SP2-Debuginfo-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/15-SP2/aarch64/update_debug/","enabled":false,"id":4082},{"distro_target":"sle-15-aarch64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP2/aarch64/product/","enabled":true,"id":4083,"description":"SLE-Module-Containers15-SP2-Pool for sle-15-aarch64","installer_updates":false,"name":"SLE-Module-Containers15-SP2-Pool"},{"description":"SLE-Module-Containers15-SP2-Debuginfo-Pool for sle-15-aarch64","name":"SLE-Module-Containers15-SP2-Debuginfo-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP2/aarch64/product_debug/","enabled":false,"id":4084},{"description":"SLE-Module-Containers15-SP2-Source-Pool for sle-15-aarch64","name":"SLE-Module-Containers15-SP2-Source-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP2/aarch64/product_source/","autorefresh":false,"distro_target":"sle-15-aarch64","id":4085,"enabled":false}],"predecessor_ids":[1920],"product_type":"module","cpe":"cpe:/o:suse:sle-module-containers:15:sp2","free":true,"description":"

This Module contains several packages revolving around containers and related tools.

","shortname":"Containers-Module","arch":"aarch64","eula_url":""},{"predecessor_ids":[1640,1788],"repositories":[{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/15-SP2/ppc64le/update/","distro_target":"sle-15-ppc64le","autorefresh":true,"id":4086,"enabled":true,"description":"SLE-Module-Containers15-SP2-Updates for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-Containers15-SP2-Updates"},{"description":"SLE-Module-Containers15-SP2-Debuginfo-Updates for sle-15-ppc64le","name":"SLE-Module-Containers15-SP2-Debuginfo-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/15-SP2/ppc64le/update_debug/","enabled":false,"id":4087},{"id":4088,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP2/ppc64le/product/","distro_target":"sle-15-ppc64le","autorefresh":false,"installer_updates":false,"name":"SLE-Module-Containers15-SP2-Pool","description":"SLE-Module-Containers15-SP2-Pool for sle-15-ppc64le"},{"description":"SLE-Module-Containers15-SP2-Debuginfo-Pool for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-Containers15-SP2-Debuginfo-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP2/ppc64le/product_debug/","distro_target":"sle-15-ppc64le","autorefresh":false,"id":4089,"enabled":false},{"id":4090,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP2/ppc64le/product_source/","autorefresh":false,"distro_target":"sle-15-ppc64le","name":"SLE-Module-Containers15-SP2-Source-Pool","installer_updates":false,"description":"SLE-Module-Containers15-SP2-Source-Pool for sle-15-ppc64le"}],"online_predecessor_ids":[1640,1788],"product_class":"MODULE","cpe":"cpe:/o:suse:sle-module-containers:15:sp2","product_type":"module","description":"

This Module contains several packages revolving around containers and related tools.

","shortname":"Containers-Module","free":true,"eula_url":"","arch":"ppc64le","friendly_version":"15 SP2","extensions":[],"release_stage":"released","id":1961,"identifier":"sle-module-containers","recommended":false,"version":"15.2","name":"Containers Module","offline_predecessor_ids":[1353],"migration_extra":false,"friendly_name":"Containers Module 15 SP2 ppc64le","former_identifier":"sle-module-containers","release_type":null},{"version":"15.2","recommended":false,"migration_extra":false,"friendly_name":"Containers Module 15 SP2 s390x","former_identifier":"sle-module-containers","release_type":null,"name":"Containers Module","offline_predecessor_ids":[1354],"friendly_version":"15 SP2","release_stage":"released","id":1962,"identifier":"sle-module-containers","extensions":[],"description":"

This Module contains several packages revolving around containers and related tools.

","shortname":"Containers-Module","free":true,"arch":"s390x","eula_url":"","product_class":"MODULE","online_predecessor_ids":[1641,1789],"repositories":[{"description":"SLE-Module-Containers15-SP2-Updates for sle-15-s390x","installer_updates":false,"name":"SLE-Module-Containers15-SP2-Updates","distro_target":"sle-15-s390x","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/15-SP2/s390x/update/","enabled":true,"id":4091},{"description":"SLE-Module-Containers15-SP2-Debuginfo-Updates for sle-15-s390x","installer_updates":false,"name":"SLE-Module-Containers15-SP2-Debuginfo-Updates","distro_target":"sle-15-s390x","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/15-SP2/s390x/update_debug/","enabled":false,"id":4092},{"name":"SLE-Module-Containers15-SP2-Pool","installer_updates":false,"description":"SLE-Module-Containers15-SP2-Pool for sle-15-s390x","enabled":true,"id":4093,"autorefresh":false,"distro_target":"sle-15-s390x","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP2/s390x/product/"},{"id":4094,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP2/s390x/product_debug/","autorefresh":false,"distro_target":"sle-15-s390x","name":"SLE-Module-Containers15-SP2-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-Containers15-SP2-Debuginfo-Pool for sle-15-s390x"},{"installer_updates":false,"name":"SLE-Module-Containers15-SP2-Source-Pool","description":"SLE-Module-Containers15-SP2-Source-Pool for sle-15-s390x","enabled":false,"id":4095,"distro_target":"sle-15-s390x","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP2/s390x/product_source/"}],"predecessor_ids":[1641,1789],"cpe":"cpe:/o:suse:sle-module-containers:15:sp2","product_type":"module"},{"version":"15.2","recommended":false,"migration_extra":false,"friendly_name":"Containers Module 15 SP2 x86_64","release_type":null,"former_identifier":"sle-module-containers","name":"Containers Module","offline_predecessor_ids":[1332],"friendly_version":"15 SP2","release_stage":"released","identifier":"sle-module-containers","id":1963,"extensions":[],"shortname":"Containers-Module","description":"

This Module contains several packages revolving around containers and related tools.

","free":true,"arch":"x86_64","eula_url":"","online_predecessor_ids":[1642,1790],"repositories":[{"enabled":true,"id":4096,"distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/15-SP2/x86_64/update/","installer_updates":false,"name":"SLE-Module-Containers15-SP2-Updates","description":"SLE-Module-Containers15-SP2-Updates for sle-15-x86_64"},{"name":"SLE-Module-Containers15-SP2-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-Containers15-SP2-Debuginfo-Updates for sle-15-x86_64","enabled":false,"id":4097,"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/15-SP2/x86_64/update_debug/"},{"installer_updates":false,"name":"SLE-Module-Containers15-SP2-Pool","description":"SLE-Module-Containers15-SP2-Pool for sle-15-x86_64","enabled":true,"id":4098,"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP2/x86_64/product/"},{"enabled":false,"id":4099,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP2/x86_64/product_debug/","name":"SLE-Module-Containers15-SP2-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-Containers15-SP2-Debuginfo-Pool for sle-15-x86_64"},{"enabled":false,"id":4100,"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP2/x86_64/product_source/","installer_updates":false,"name":"SLE-Module-Containers15-SP2-Source-Pool","description":"SLE-Module-Containers15-SP2-Source-Pool for sle-15-x86_64"}],"product_class":"MODULE","predecessor_ids":[1642,1790],"cpe":"cpe:/o:suse:sle-module-containers:15:sp2","product_type":"module"},{"version":"15.2","recommended":false,"release_type":null,"former_identifier":"sle-module-desktop-applications","migration_extra":false,"friendly_name":"Desktop Applications Module 15 SP2 aarch64","offline_predecessor_ids":[],"name":"Desktop Applications Module","friendly_version":"15 SP2","release_stage":"released","identifier":"sle-module-desktop-applications","id":1964,"extensions":[],"free":true,"description":"

The SUSE Linux Enterprise Desktop Applications Module delivers a basic set of Desktop functionality.

Access to the Desktop Applications Module is included in your SUSE Linux Enterprise product subscription.

","shortname":"Desktop-Applications-Module","arch":"aarch64","eula_url":"","online_predecessor_ids":[1595,1773],"repositories":[{"id":4101,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15-SP2/aarch64/update/","autorefresh":true,"distro_target":"sle-15-aarch64","name":"SLE-Module-Desktop-Applications15-SP2-Updates","installer_updates":false,"description":"SLE-Module-Desktop-Applications15-SP2-Updates for sle-15-aarch64"},{"description":"SLE-Module-Desktop-Applications15-SP2-Debuginfo-Updates for sle-15-aarch64","name":"SLE-Module-Desktop-Applications15-SP2-Debuginfo-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15-SP2/aarch64/update_debug/","enabled":false,"id":4102},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP2/aarch64/product/","autorefresh":false,"distro_target":"sle-15-aarch64","id":4103,"enabled":true,"description":"SLE-Module-Desktop-Applications15-SP2-Pool for sle-15-aarch64","name":"SLE-Module-Desktop-Applications15-SP2-Pool","installer_updates":false},{"installer_updates":false,"name":"SLE-Module-Desktop-Applications15-SP2-Debuginfo-Pool","description":"SLE-Module-Desktop-Applications15-SP2-Debuginfo-Pool for sle-15-aarch64","enabled":false,"id":4104,"distro_target":"sle-15-aarch64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP2/aarch64/product_debug/"},{"description":"SLE-Module-Desktop-Applications15-SP2-Source-Pool for sle-15-aarch64","installer_updates":false,"name":"SLE-Module-Desktop-Applications15-SP2-Source-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP2/aarch64/product_source/","distro_target":"sle-15-aarch64","autorefresh":false,"id":4105,"enabled":false}],"product_class":"MODULE","predecessor_ids":[1595,1773],"product_type":"module","cpe":"cpe:/o:suse:sle-module-desktop-applications:15:sp2"},{"eula_url":"","arch":"ppc64le","description":"

The SUSE Linux Enterprise Desktop Applications Module delivers a basic set of Desktop functionality.

Access to the Desktop Applications Module is included in your SUSE Linux Enterprise product subscription.

","shortname":"Desktop-Applications-Module","free":true,"cpe":"cpe:/o:suse:sle-module-desktop-applications:15:sp2","product_type":"module","predecessor_ids":[1594,1774],"online_predecessor_ids":[1594,1774],"repositories":[{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15-SP2/ppc64le/update/","autorefresh":true,"distro_target":"sle-15-ppc64le","id":4106,"enabled":true,"description":"SLE-Module-Desktop-Applications15-SP2-Updates for sle-15-ppc64le","name":"SLE-Module-Desktop-Applications15-SP2-Updates","installer_updates":false},{"description":"SLE-Module-Desktop-Applications15-SP2-Debuginfo-Updates for sle-15-ppc64le","name":"SLE-Module-Desktop-Applications15-SP2-Debuginfo-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15-SP2/ppc64le/update_debug/","enabled":false,"id":4107},{"name":"SLE-Module-Desktop-Applications15-SP2-Pool","installer_updates":false,"description":"SLE-Module-Desktop-Applications15-SP2-Pool for sle-15-ppc64le","enabled":true,"id":4108,"autorefresh":false,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP2/ppc64le/product/"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP2/ppc64le/product_debug/","autorefresh":false,"distro_target":"sle-15-ppc64le","id":4109,"enabled":false,"description":"SLE-Module-Desktop-Applications15-SP2-Debuginfo-Pool for sle-15-ppc64le","name":"SLE-Module-Desktop-Applications15-SP2-Debuginfo-Pool","installer_updates":false},{"autorefresh":false,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP2/ppc64le/product_source/","enabled":false,"id":4110,"description":"SLE-Module-Desktop-Applications15-SP2-Source-Pool for sle-15-ppc64le","name":"SLE-Module-Desktop-Applications15-SP2-Source-Pool","installer_updates":false}],"product_class":"MODULE","name":"Desktop Applications Module","offline_predecessor_ids":[],"friendly_name":"Desktop Applications Module 15 SP2 ppc64le","migration_extra":false,"release_type":null,"former_identifier":"sle-module-desktop-applications","recommended":false,"version":"15.2","extensions":[],"identifier":"sle-module-desktop-applications","release_stage":"released","id":1965,"friendly_version":"15 SP2"},{"product_class":"MODULE","online_predecessor_ids":[1593,1775],"repositories":[{"description":"SLE-Module-Desktop-Applications15-SP2-Updates for sle-15-s390x","name":"SLE-Module-Desktop-Applications15-SP2-Updates","installer_updates":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15-SP2/s390x/update/","autorefresh":true,"distro_target":"sle-15-s390x","id":4111,"enabled":true},{"description":"SLE-Module-Desktop-Applications15-SP2-Debuginfo-Updates for sle-15-s390x","name":"SLE-Module-Desktop-Applications15-SP2-Debuginfo-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-15-s390x","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15-SP2/s390x/update_debug/","enabled":false,"id":4112},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP2/s390x/product/","distro_target":"sle-15-s390x","autorefresh":false,"id":4113,"enabled":true,"description":"SLE-Module-Desktop-Applications15-SP2-Pool for sle-15-s390x","installer_updates":false,"name":"SLE-Module-Desktop-Applications15-SP2-Pool"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP2/s390x/product_debug/","autorefresh":false,"distro_target":"sle-15-s390x","id":4114,"enabled":false,"description":"SLE-Module-Desktop-Applications15-SP2-Debuginfo-Pool for sle-15-s390x","name":"SLE-Module-Desktop-Applications15-SP2-Debuginfo-Pool","installer_updates":false},{"description":"SLE-Module-Desktop-Applications15-SP2-Source-Pool for sle-15-s390x","name":"SLE-Module-Desktop-Applications15-SP2-Source-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP2/s390x/product_source/","autorefresh":false,"distro_target":"sle-15-s390x","id":4115,"enabled":false}],"predecessor_ids":[1593,1775],"product_type":"module","cpe":"cpe:/o:suse:sle-module-desktop-applications:15:sp2","free":true,"description":"

The SUSE Linux Enterprise Desktop Applications Module delivers a basic set of Desktop functionality.

Access to the Desktop Applications Module is included in your SUSE Linux Enterprise product subscription.

","shortname":"Desktop-Applications-Module","arch":"s390x","eula_url":"","friendly_version":"15 SP2","release_stage":"released","identifier":"sle-module-desktop-applications","id":1966,"extensions":[],"version":"15.2","recommended":false,"release_type":null,"former_identifier":"sle-module-desktop-applications","friendly_name":"Desktop Applications Module 15 SP2 s390x","migration_extra":false,"offline_predecessor_ids":[],"name":"Desktop Applications Module"},{"recommended":false,"version":"15.2","name":"Desktop Applications Module","offline_predecessor_ids":[],"friendly_name":"Desktop Applications Module 15 SP2 x86_64","migration_extra":false,"release_type":null,"former_identifier":"sle-module-desktop-applications","friendly_version":"15 SP2","extensions":[],"release_stage":"released","id":1967,"identifier":"sle-module-desktop-applications","description":"

The SUSE Linux Enterprise Desktop Applications Module delivers a basic set of Desktop functionality.

Access to the Desktop Applications Module is included in your SUSE Linux Enterprise product subscription.

","shortname":"Desktop-Applications-Module","free":true,"eula_url":"","arch":"x86_64","predecessor_ids":[1578,1776],"product_class":"MODULE","online_predecessor_ids":[1578,1776],"repositories":[{"installer_updates":false,"name":"SLE-Module-Desktop-Applications15-SP2-Updates","description":"SLE-Module-Desktop-Applications15-SP2-Updates for sle-15-x86_64","enabled":true,"id":4116,"distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15-SP2/x86_64/update/"},{"name":"SLE-Module-Desktop-Applications15-SP2-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-Desktop-Applications15-SP2-Debuginfo-Updates for sle-15-x86_64","id":4117,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15-SP2/x86_64/update_debug/","autorefresh":true,"distro_target":"sle-15-x86_64"},{"installer_updates":false,"name":"SLE-Module-Desktop-Applications15-SP2-Pool","description":"SLE-Module-Desktop-Applications15-SP2-Pool for sle-15-x86_64","enabled":true,"id":4118,"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP2/x86_64/product/"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP2/x86_64/product_debug/","autorefresh":false,"distro_target":"sle-15-x86_64","id":4119,"enabled":false,"description":"SLE-Module-Desktop-Applications15-SP2-Debuginfo-Pool for sle-15-x86_64","name":"SLE-Module-Desktop-Applications15-SP2-Debuginfo-Pool","installer_updates":false},{"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP2/x86_64/product_source/","enabled":false,"id":4120,"description":"SLE-Module-Desktop-Applications15-SP2-Source-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Desktop-Applications15-SP2-Source-Pool"}],"cpe":"cpe:/o:suse:sle-module-desktop-applications:15:sp2","product_type":"module"},{"identifier":"sle-module-development-tools","release_stage":"released","id":1968,"extensions":[],"friendly_version":"15 SP2","friendly_name":"Development Tools Module 15 SP2 aarch64","migration_extra":false,"former_identifier":"sle-sdk","release_type":null,"name":"Development Tools Module","offline_predecessor_ids":[1376,1633,1889],"version":"15.2","recommended":false,"cpe":"cpe:/o:suse:sle-module-development-tools:15:sp2","product_type":"module","repositories":[{"enabled":true,"id":4121,"autorefresh":true,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15-SP2/aarch64/update/","name":"SLE-Module-DevTools15-SP2-Updates","installer_updates":false,"description":"SLE-Module-DevTools15-SP2-Updates for sle-15-aarch64"},{"id":4122,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15-SP2/aarch64/update_debug/","autorefresh":true,"distro_target":"sle-15-aarch64","name":"SLE-Module-DevTools15-SP2-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-DevTools15-SP2-Debuginfo-Updates for sle-15-aarch64"},{"description":"SLE-Module-DevTools15-SP2-Pool for sle-15-aarch64","installer_updates":false,"name":"SLE-Module-DevTools15-SP2-Pool","distro_target":"sle-15-aarch64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP2/aarch64/product/","enabled":true,"id":4123},{"id":4124,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP2/aarch64/product_debug/","distro_target":"sle-15-aarch64","autorefresh":false,"installer_updates":false,"name":"SLE-Module-DevTools15-SP2-Debuginfo-Pool","description":"SLE-Module-DevTools15-SP2-Debuginfo-Pool for sle-15-aarch64"},{"installer_updates":false,"name":"SLE-Module-DevTools15-SP2-Source-Pool","description":"SLE-Module-DevTools15-SP2-Source-Pool for sle-15-aarch64","enabled":false,"id":4125,"distro_target":"sle-15-aarch64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP2/aarch64/product_source/"}],"online_predecessor_ids":[1598,1791],"product_class":"MODULE","predecessor_ids":[1598,1791],"arch":"aarch64","eula_url":"","description":"

The Development Tools Module helps you developing applications for SUSE Linux Enterprise 15.

Access to the Development Tools Module is included in your SUSE Linux Enterprise product subscription. The module has a different lifecycle than SUSE Linux Enterprise itself.

","shortname":"Development-Tools-Module","free":true},{"eula_url":"","arch":"ppc64le","description":"

The Development Tools Module helps you developing applications for SUSE Linux Enterprise 15.

Access to the Development Tools Module is included in your SUSE Linux Enterprise product subscription. The module has a different lifecycle than SUSE Linux Enterprise itself.

","shortname":"Development-Tools-Module","free":true,"cpe":"cpe:/o:suse:sle-module-development-tools:15:sp2","product_type":"module","predecessor_ids":[1597,1792],"online_predecessor_ids":[1597,1792],"repositories":[{"enabled":true,"id":4126,"autorefresh":true,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15-SP2/ppc64le/update/","name":"SLE-Module-DevTools15-SP2-Updates","installer_updates":false,"description":"SLE-Module-DevTools15-SP2-Updates for sle-15-ppc64le"},{"id":4127,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15-SP2/ppc64le/update_debug/","distro_target":"sle-15-ppc64le","autorefresh":true,"installer_updates":false,"name":"SLE-Module-DevTools15-SP2-Debuginfo-Updates","description":"SLE-Module-DevTools15-SP2-Debuginfo-Updates for sle-15-ppc64le"},{"installer_updates":false,"name":"SLE-Module-DevTools15-SP2-Pool","description":"SLE-Module-DevTools15-SP2-Pool for sle-15-ppc64le","id":4128,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP2/ppc64le/product/","distro_target":"sle-15-ppc64le","autorefresh":false},{"id":4129,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP2/ppc64le/product_debug/","distro_target":"sle-15-ppc64le","autorefresh":false,"installer_updates":false,"name":"SLE-Module-DevTools15-SP2-Debuginfo-Pool","description":"SLE-Module-DevTools15-SP2-Debuginfo-Pool for sle-15-ppc64le"},{"description":"SLE-Module-DevTools15-SP2-Source-Pool for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-DevTools15-SP2-Source-Pool","distro_target":"sle-15-ppc64le","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP2/ppc64le/product_source/","enabled":false,"id":4130}],"product_class":"MODULE","name":"Development Tools Module","offline_predecessor_ids":[1339,1631,1890],"migration_extra":false,"friendly_name":"Development Tools Module 15 SP2 ppc64le","release_type":null,"former_identifier":"sle-sdk","recommended":false,"version":"15.2","extensions":[],"release_stage":"released","id":1969,"identifier":"sle-module-development-tools","friendly_version":"15 SP2"},{"description":"

The Development Tools Module helps you developing applications for SUSE Linux Enterprise 15.

Access to the Development Tools Module is included in your SUSE Linux Enterprise product subscription. The module has a different lifecycle than SUSE Linux Enterprise itself.

","shortname":"Development-Tools-Module","free":true,"eula_url":"","arch":"s390x","predecessor_ids":[1596,1793],"product_class":"MODULE","online_predecessor_ids":[1596,1793],"repositories":[{"enabled":true,"id":4131,"autorefresh":true,"distro_target":"sle-15-s390x","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15-SP2/s390x/update/","name":"SLE-Module-DevTools15-SP2-Updates","installer_updates":false,"description":"SLE-Module-DevTools15-SP2-Updates for sle-15-s390x"},{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15-SP2/s390x/update_debug/","autorefresh":true,"distro_target":"sle-15-s390x","id":4132,"enabled":false,"description":"SLE-Module-DevTools15-SP2-Debuginfo-Updates for sle-15-s390x","name":"SLE-Module-DevTools15-SP2-Debuginfo-Updates","installer_updates":false},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP2/s390x/product/","distro_target":"sle-15-s390x","autorefresh":false,"id":4133,"enabled":true,"description":"SLE-Module-DevTools15-SP2-Pool for sle-15-s390x","installer_updates":false,"name":"SLE-Module-DevTools15-SP2-Pool"},{"enabled":false,"id":4134,"distro_target":"sle-15-s390x","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP2/s390x/product_debug/","installer_updates":false,"name":"SLE-Module-DevTools15-SP2-Debuginfo-Pool","description":"SLE-Module-DevTools15-SP2-Debuginfo-Pool for sle-15-s390x"},{"installer_updates":false,"name":"SLE-Module-DevTools15-SP2-Source-Pool","description":"SLE-Module-DevTools15-SP2-Source-Pool for sle-15-s390x","enabled":false,"id":4135,"distro_target":"sle-15-s390x","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP2/s390x/product_source/"}],"cpe":"cpe:/o:suse:sle-module-development-tools:15:sp2","product_type":"module","recommended":false,"version":"15.2","name":"Development Tools Module","offline_predecessor_ids":[1340,1632,1891],"friendly_name":"Development Tools Module 15 SP2 s390x","migration_extra":false,"former_identifier":"sle-sdk","release_type":null,"friendly_version":"15 SP2","extensions":[],"release_stage":"released","id":1970,"identifier":"sle-module-development-tools"},{"arch":"x86_64","eula_url":"","free":true,"description":"

The Development Tools Module helps you developing applications for SUSE Linux Enterprise 15.

Access to the Development Tools Module is included in your SUSE Linux Enterprise product subscription. The module has a different lifecycle than SUSE Linux Enterprise itself.

","shortname":"Development-Tools-Module","product_type":"module","cpe":"cpe:/o:suse:sle-module-development-tools:15:sp2","repositories":[{"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15-SP2/x86_64/update/","enabled":true,"id":4136,"description":"SLE-Module-DevTools15-SP2-Updates for sle-15-x86_64","name":"SLE-Module-DevTools15-SP2-Updates","installer_updates":false},{"id":4137,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15-SP2/x86_64/update_debug/","autorefresh":true,"distro_target":"sle-15-x86_64","name":"SLE-Module-DevTools15-SP2-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-DevTools15-SP2-Debuginfo-Updates for sle-15-x86_64"},{"description":"SLE-Module-DevTools15-SP2-Pool for sle-15-x86_64","name":"SLE-Module-DevTools15-SP2-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP2/x86_64/product/","enabled":true,"id":4138},{"installer_updates":false,"name":"SLE-Module-DevTools15-SP2-Debuginfo-Pool","description":"SLE-Module-DevTools15-SP2-Debuginfo-Pool for sle-15-x86_64","id":4139,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP2/x86_64/product_debug/","distro_target":"sle-15-x86_64","autorefresh":false},{"description":"SLE-Module-DevTools15-SP2-Source-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-DevTools15-SP2-Source-Pool","distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP2/x86_64/product_source/","enabled":false,"id":4140}],"online_predecessor_ids":[1579,1794],"product_class":"MODULE","predecessor_ids":[1579,1794],"release_type":null,"former_identifier":"sle-sdk","friendly_name":"Development Tools Module 15 SP2 x86_64","migration_extra":false,"offline_predecessor_ids":[1341,1630,1892],"name":"Development Tools Module","version":"15.2","recommended":false,"identifier":"sle-module-development-tools","release_stage":"released","id":1971,"extensions":[],"friendly_version":"15 SP2"},{"release_stage":"released","id":1973,"identifier":"sle-module-web-scripting","extensions":[],"friendly_version":"15 SP2","former_identifier":"sle-module-web-scripting","release_type":null,"migration_extra":false,"friendly_name":"Web and Scripting Module 15 SP2 aarch64","offline_predecessor_ids":[1539],"name":"Web and Scripting Module","version":"15.2","recommended":false,"product_type":"module","cpe":"cpe:/o:suse:sle-module-web-scripting:15:sp2","repositories":[{"enabled":true,"id":4146,"distro_target":"sle-15-aarch64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/15-SP2/aarch64/update/","installer_updates":false,"name":"SLE-Module-Web-Scripting15-SP2-Updates","description":"SLE-Module-Web-Scripting15-SP2-Updates for sle-15-aarch64"},{"name":"SLE-Module-Web-Scripting15-SP2-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-Web-Scripting15-SP2-Debuginfo-Updates for sle-15-aarch64","enabled":false,"id":4147,"autorefresh":true,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/15-SP2/aarch64/update_debug/"},{"installer_updates":false,"name":"SLE-Module-Web-Scripting15-SP2-Pool","description":"SLE-Module-Web-Scripting15-SP2-Pool for sle-15-aarch64","id":4148,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP2/aarch64/product/","distro_target":"sle-15-aarch64","autorefresh":false},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP2/aarch64/product_debug/","autorefresh":false,"distro_target":"sle-15-aarch64","id":4149,"enabled":false,"description":"SLE-Module-Web-Scripting15-SP2-Debuginfo-Pool for sle-15-aarch64","name":"SLE-Module-Web-Scripting15-SP2-Debuginfo-Pool","installer_updates":false},{"installer_updates":false,"name":"SLE-Module-Web-Scripting15-SP2-Source-Pool","description":"SLE-Module-Web-Scripting15-SP2-Source-Pool for sle-15-aarch64","id":4150,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP2/aarch64/product_source/","distro_target":"sle-15-aarch64","autorefresh":false}],"online_predecessor_ids":[1718,1795],"product_class":"MODULE","predecessor_ids":[1718,1795],"arch":"aarch64","eula_url":"","free":true,"description":"

The SUSE Linux Enterprise Web and Scripting Module should contains additional packages that are helpful when running a webserver.

Access to the Web and Scripting Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself: Package versions in this module are usually supported for at most three years. We are planning to release more recent versions on a schedule of approximately 18 month; the exact dates may differ per package.

","shortname":"Web-Scripting-Module"},{"cpe":"cpe:/o:suse:sle-module-web-scripting:15:sp2","product_type":"module","predecessor_ids":[1719,1796],"product_class":"MODULE","online_predecessor_ids":[1719,1796],"repositories":[{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/15-SP2/ppc64le/update/","distro_target":"sle-15-ppc64le","autorefresh":true,"id":4151,"enabled":true,"description":"SLE-Module-Web-Scripting15-SP2-Updates for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-Web-Scripting15-SP2-Updates"},{"description":"SLE-Module-Web-Scripting15-SP2-Debuginfo-Updates for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-Web-Scripting15-SP2-Debuginfo-Updates","distro_target":"sle-15-ppc64le","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/15-SP2/ppc64le/update_debug/","enabled":false,"id":4152},{"description":"SLE-Module-Web-Scripting15-SP2-Pool for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-Web-Scripting15-SP2-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP2/ppc64le/product/","distro_target":"sle-15-ppc64le","autorefresh":false,"id":4153,"enabled":true},{"enabled":false,"id":4154,"distro_target":"sle-15-ppc64le","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP2/ppc64le/product_debug/","installer_updates":false,"name":"SLE-Module-Web-Scripting15-SP2-Debuginfo-Pool","description":"SLE-Module-Web-Scripting15-SP2-Debuginfo-Pool for sle-15-ppc64le"},{"description":"SLE-Module-Web-Scripting15-SP2-Source-Pool for sle-15-ppc64le","name":"SLE-Module-Web-Scripting15-SP2-Source-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP2/ppc64le/product_source/","autorefresh":false,"distro_target":"sle-15-ppc64le","id":4155,"enabled":false}],"eula_url":"","arch":"ppc64le","description":"

The SUSE Linux Enterprise Web and Scripting Module should contains additional packages that are helpful when running a webserver.

Access to the Web and Scripting Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself: Package versions in this module are usually supported for at most three years. We are planning to release more recent versions on a schedule of approximately 18 month; the exact dates may differ per package.

","shortname":"Web-Scripting-Module","free":true,"extensions":[],"release_stage":"released","identifier":"sle-module-web-scripting","id":1974,"friendly_version":"15 SP2","name":"Web and Scripting Module","offline_predecessor_ids":[1151],"friendly_name":"Web and Scripting Module 15 SP2 ppc64le","migration_extra":false,"former_identifier":"sle-module-web-scripting","release_type":null,"recommended":false,"version":"15.2"},{"predecessor_ids":[1720,1797],"repositories":[{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/15-SP2/s390x/update/","distro_target":"sle-15-s390x","autorefresh":true,"id":4156,"enabled":true,"description":"SLE-Module-Web-Scripting15-SP2-Updates for sle-15-s390x","installer_updates":false,"name":"SLE-Module-Web-Scripting15-SP2-Updates"},{"distro_target":"sle-15-s390x","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/15-SP2/s390x/update_debug/","enabled":false,"id":4157,"description":"SLE-Module-Web-Scripting15-SP2-Debuginfo-Updates for sle-15-s390x","installer_updates":false,"name":"SLE-Module-Web-Scripting15-SP2-Debuginfo-Updates"},{"name":"SLE-Module-Web-Scripting15-SP2-Pool","installer_updates":false,"description":"SLE-Module-Web-Scripting15-SP2-Pool for sle-15-s390x","id":4158,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP2/s390x/product/","autorefresh":false,"distro_target":"sle-15-s390x"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP2/s390x/product_debug/","distro_target":"sle-15-s390x","autorefresh":false,"id":4159,"enabled":false,"description":"SLE-Module-Web-Scripting15-SP2-Debuginfo-Pool for sle-15-s390x","installer_updates":false,"name":"SLE-Module-Web-Scripting15-SP2-Debuginfo-Pool"},{"id":4160,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP2/s390x/product_source/","autorefresh":false,"distro_target":"sle-15-s390x","name":"SLE-Module-Web-Scripting15-SP2-Source-Pool","installer_updates":false,"description":"SLE-Module-Web-Scripting15-SP2-Source-Pool for sle-15-s390x"}],"online_predecessor_ids":[1720,1797],"product_class":"MODULE","product_type":"module","cpe":"cpe:/o:suse:sle-module-web-scripting:15:sp2","free":true,"shortname":"Web-Scripting-Module","description":"

The SUSE Linux Enterprise Web and Scripting Module should contains additional packages that are helpful when running a webserver.

Access to the Web and Scripting Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself: Package versions in this module are usually supported for at most three years. We are planning to release more recent versions on a schedule of approximately 18 month; the exact dates may differ per package.

","eula_url":"","arch":"s390x","friendly_version":"15 SP2","extensions":[],"release_stage":"released","id":1975,"identifier":"sle-module-web-scripting","recommended":false,"version":"15.2","offline_predecessor_ids":[1152],"name":"Web and Scripting Module","former_identifier":"sle-module-web-scripting","release_type":null,"migration_extra":false,"friendly_name":"Web and Scripting Module 15 SP2 s390x"},{"arch":"x86_64","eula_url":"","free":true,"description":"

The SUSE Linux Enterprise Web and Scripting Module should contains additional packages that are helpful when running a webserver.

Access to the Web and Scripting Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself: Package versions in this module are usually supported for at most three years. We are planning to release more recent versions on a schedule of approximately 18 month; the exact dates may differ per package.

","shortname":"Web-Scripting-Module","product_type":"module","cpe":"cpe:/o:suse:sle-module-web-scripting:15:sp2","product_class":"MODULE","online_predecessor_ids":[1721,1798],"repositories":[{"name":"SLE-Module-Web-Scripting15-SP2-Updates","installer_updates":false,"description":"SLE-Module-Web-Scripting15-SP2-Updates for sle-15-x86_64","enabled":true,"id":4161,"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/15-SP2/x86_64/update/"},{"name":"SLE-Module-Web-Scripting15-SP2-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-Web-Scripting15-SP2-Debuginfo-Updates for sle-15-x86_64","id":4162,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/15-SP2/x86_64/update_debug/","autorefresh":true,"distro_target":"sle-15-x86_64"},{"description":"SLE-Module-Web-Scripting15-SP2-Pool for sle-15-x86_64","name":"SLE-Module-Web-Scripting15-SP2-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP2/x86_64/product/","autorefresh":false,"distro_target":"sle-15-x86_64","id":4163,"enabled":true},{"id":4164,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP2/x86_64/product_debug/","autorefresh":false,"distro_target":"sle-15-x86_64","name":"SLE-Module-Web-Scripting15-SP2-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-Web-Scripting15-SP2-Debuginfo-Pool for sle-15-x86_64"},{"id":4165,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP2/x86_64/product_source/","distro_target":"sle-15-x86_64","autorefresh":false,"installer_updates":false,"name":"SLE-Module-Web-Scripting15-SP2-Source-Pool","description":"SLE-Module-Web-Scripting15-SP2-Source-Pool for sle-15-x86_64"}],"predecessor_ids":[1721,1798],"release_type":null,"former_identifier":"sle-module-web-scripting","friendly_name":"Web and Scripting Module 15 SP2 x86_64","migration_extra":false,"offline_predecessor_ids":[1153],"name":"Web and Scripting Module","version":"15.2","recommended":false,"release_stage":"released","id":1976,"identifier":"sle-module-web-scripting","extensions":[],"friendly_version":"15 SP2"},{"version":"15.2","recommended":false,"former_identifier":"sle-module-hpc","release_type":null,"migration_extra":false,"friendly_name":"HPC Module 15 SP2 aarch64","offline_predecessor_ids":[1522],"name":"HPC Module","friendly_version":"15 SP2","release_stage":"released","identifier":"sle-module-hpc","id":1977,"extensions":[],"free":true,"description":"

The SUSE Linux Enterprise Server High Performance Computing (HPC) module delivers specific tools commonly used for high performance, numerically intensive workloads.

SUSE packages these tools in the SLES HPC Module to provide greater flexibility to deliver new versions or new tools more rapidly than the standard SUSE Linux Enterprise lifecycle would permit.

Packages in this module are generally supported until a newer version of the package is released or the package is dropped from the module.

","shortname":"HPC-Module","arch":"aarch64","eula_url":"","repositories":[{"enabled":true,"id":4166,"distro_target":"sle-15-aarch64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-HPC/15-SP2/aarch64/update/","installer_updates":false,"name":"SLE-Module-HPC15-SP2-Updates","description":"SLE-Module-HPC15-SP2-Updates for sle-15-aarch64"},{"installer_updates":false,"name":"SLE-Module-HPC15-SP2-Debuginfo-Updates","description":"SLE-Module-HPC15-SP2-Debuginfo-Updates for sle-15-aarch64","id":4167,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-HPC/15-SP2/aarch64/update_debug/","distro_target":"sle-15-aarch64","autorefresh":true},{"description":"SLE-Module-HPC15-SP2-Pool for sle-15-aarch64","installer_updates":false,"name":"SLE-Module-HPC15-SP2-Pool","distro_target":"sle-15-aarch64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-HPC/15-SP2/aarch64/product/","enabled":true,"id":4168},{"description":"SLE-Module-HPC15-SP2-Debuginfo-Pool for sle-15-aarch64","installer_updates":false,"name":"SLE-Module-HPC15-SP2-Debuginfo-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-HPC/15-SP2/aarch64/product_debug/","distro_target":"sle-15-aarch64","autorefresh":false,"id":4169,"enabled":false},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-HPC/15-SP2/aarch64/product_source/","autorefresh":false,"distro_target":"sle-15-aarch64","id":4170,"enabled":false,"description":"SLE-Module-HPC15-SP2-Source-Pool for sle-15-aarch64","name":"SLE-Module-HPC15-SP2-Source-Pool","installer_updates":false}],"online_predecessor_ids":[1733,1799],"product_class":"MODULE","predecessor_ids":[1733,1799],"product_type":"module","cpe":"cpe:/o:suse:sle-module-hpc:15:sp2"},{"name":"HPC Module","offline_predecessor_ids":[1440],"friendly_name":"HPC Module 15 SP2 x86_64","migration_extra":false,"release_type":null,"former_identifier":"sle-module-hpc","recommended":false,"version":"15.2","extensions":[],"release_stage":"released","identifier":"sle-module-hpc","id":1978,"friendly_version":"15 SP2","eula_url":"","arch":"x86_64","description":"

The SUSE Linux Enterprise Server High Performance Computing (HPC) module delivers specific tools commonly used for high performance, numerically intensive workloads.

SUSE packages these tools in the SLES HPC Module to provide greater flexibility to deliver new versions or new tools more rapidly than the standard SUSE Linux Enterprise lifecycle would permit.

Packages in this module are generally supported until a newer version of the package is released or the package is dropped from the module.

","shortname":"HPC-Module","free":true,"cpe":"cpe:/o:suse:sle-module-hpc:15:sp2","product_type":"module","predecessor_ids":[1734,1800],"product_class":"MODULE","online_predecessor_ids":[1734,1800],"repositories":[{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-HPC/15-SP2/x86_64/update/","autorefresh":true,"distro_target":"sle-15-x86_64","id":4171,"enabled":true,"description":"SLE-Module-HPC15-SP2-Updates for sle-15-x86_64","name":"SLE-Module-HPC15-SP2-Updates","installer_updates":false},{"name":"SLE-Module-HPC15-SP2-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-HPC15-SP2-Debuginfo-Updates for sle-15-x86_64","id":4172,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-HPC/15-SP2/x86_64/update_debug/","autorefresh":true,"distro_target":"sle-15-x86_64"},{"enabled":true,"id":4173,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-HPC/15-SP2/x86_64/product/","name":"SLE-Module-HPC15-SP2-Pool","installer_updates":false,"description":"SLE-Module-HPC15-SP2-Pool for sle-15-x86_64"},{"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-HPC/15-SP2/x86_64/product_debug/","enabled":false,"id":4174,"description":"SLE-Module-HPC15-SP2-Debuginfo-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-HPC15-SP2-Debuginfo-Pool"},{"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-HPC/15-SP2/x86_64/product_source/","enabled":false,"id":4175,"description":"SLE-Module-HPC15-SP2-Source-Pool for sle-15-x86_64","name":"SLE-Module-HPC15-SP2-Source-Pool","installer_updates":false}]},{"identifier":"sle-module-legacy","release_stage":"released","id":1979,"extensions":[],"friendly_version":"15 SP2","friendly_name":"Legacy Module 15 SP2 aarch64","migration_extra":false,"release_type":null,"former_identifier":"sle-module-legacy","name":"Legacy Module","offline_predecessor_ids":[],"version":"15.2","recommended":false,"cpe":"cpe:/o:suse:sle-module-legacy:15:sp2","product_type":"module","repositories":[{"id":4176,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/15-SP2/aarch64/update/","autorefresh":true,"distro_target":"sle-15-aarch64","name":"SLE-Module-Legacy15-SP2-Updates","installer_updates":false,"description":"SLE-Module-Legacy15-SP2-Updates for sle-15-aarch64"},{"description":"SLE-Module-Legacy15-SP2-Debuginfo-Updates for sle-15-aarch64","name":"SLE-Module-Legacy15-SP2-Debuginfo-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/15-SP2/aarch64/update_debug/","enabled":false,"id":4177},{"autorefresh":false,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15-SP2/aarch64/product/","enabled":true,"id":4178,"description":"SLE-Module-Legacy15-SP2-Pool for sle-15-aarch64","name":"SLE-Module-Legacy15-SP2-Pool","installer_updates":false},{"installer_updates":false,"name":"SLE-Module-Legacy15-SP2-Debuginfo-Pool","description":"SLE-Module-Legacy15-SP2-Debuginfo-Pool for sle-15-aarch64","id":4179,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15-SP2/aarch64/product_debug/","distro_target":"sle-15-aarch64","autorefresh":false},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15-SP2/aarch64/product_source/","distro_target":"sle-15-aarch64","autorefresh":false,"id":4180,"enabled":false,"description":"SLE-Module-Legacy15-SP2-Source-Pool for sle-15-aarch64","installer_updates":false,"name":"SLE-Module-Legacy15-SP2-Source-Pool"}],"online_predecessor_ids":[1604,1801],"product_class":"MODULE","predecessor_ids":[1604,1801],"arch":"aarch64","eula_url":"","shortname":"Legacy-Module","description":"

The Legacy Module helps you migrating applications from SUSE Linux Enterprise 12 and other systems to SUSE Linux Enterprise 15, by providing packages which are discontinued on SUSE Linux Enterprise Server, such as: ntp, IBM Java 8, and a number of libraries.

Access to the Legacy Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself. Packages in the this module are usually supported for at most three years.

","free":true},{"offline_predecessor_ids":[1148],"name":"Legacy Module","former_identifier":"sle-module-legacy","release_type":null,"friendly_name":"Legacy Module 15 SP2 ppc64le","migration_extra":false,"recommended":false,"version":"15.2","extensions":[],"identifier":"sle-module-legacy","release_stage":"released","id":1980,"friendly_version":"15 SP2","eula_url":"","arch":"ppc64le","free":true,"shortname":"Legacy-Module","description":"

The Legacy Module helps you migrating applications from SUSE Linux Enterprise 12 and other systems to SUSE Linux Enterprise 15, by providing packages which are discontinued on SUSE Linux Enterprise Server, such as: ntp, IBM Java 8, and a number of libraries.

Access to the Legacy Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself. Packages in the this module are usually supported for at most three years.

","product_type":"module","cpe":"cpe:/o:suse:sle-module-legacy:15:sp2","predecessor_ids":[1603,1802],"online_predecessor_ids":[1603,1802],"repositories":[{"description":"SLE-Module-Legacy15-SP2-Updates for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-Legacy15-SP2-Updates","distro_target":"sle-15-ppc64le","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/15-SP2/ppc64le/update/","enabled":true,"id":4181},{"installer_updates":false,"name":"SLE-Module-Legacy15-SP2-Debuginfo-Updates","description":"SLE-Module-Legacy15-SP2-Debuginfo-Updates for sle-15-ppc64le","enabled":false,"id":4182,"distro_target":"sle-15-ppc64le","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/15-SP2/ppc64le/update_debug/"},{"enabled":true,"id":4183,"autorefresh":false,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15-SP2/ppc64le/product/","name":"SLE-Module-Legacy15-SP2-Pool","installer_updates":false,"description":"SLE-Module-Legacy15-SP2-Pool for sle-15-ppc64le"},{"description":"SLE-Module-Legacy15-SP2-Debuginfo-Pool for sle-15-ppc64le","name":"SLE-Module-Legacy15-SP2-Debuginfo-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15-SP2/ppc64le/product_debug/","enabled":false,"id":4184},{"description":"SLE-Module-Legacy15-SP2-Source-Pool for sle-15-ppc64le","name":"SLE-Module-Legacy15-SP2-Source-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15-SP2/ppc64le/product_source/","enabled":false,"id":4185}],"product_class":"MODULE"},{"eula_url":"","arch":"s390x","description":"

The Legacy Module helps you migrating applications from SUSE Linux Enterprise 12 and other systems to SUSE Linux Enterprise 15, by providing packages which are discontinued on SUSE Linux Enterprise Server, such as: ntp, IBM Java 8, and a number of libraries.

Access to the Legacy Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself. Packages in the this module are usually supported for at most three years.

","shortname":"Legacy-Module","free":true,"cpe":"cpe:/o:suse:sle-module-legacy:15:sp2","product_type":"module","predecessor_ids":[1602,1803],"online_predecessor_ids":[1602,1803],"repositories":[{"description":"SLE-Module-Legacy15-SP2-Updates for sle-15-s390x","name":"SLE-Module-Legacy15-SP2-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-15-s390x","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/15-SP2/s390x/update/","enabled":true,"id":4186},{"enabled":false,"id":4187,"autorefresh":true,"distro_target":"sle-15-s390x","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/15-SP2/s390x/update_debug/","name":"SLE-Module-Legacy15-SP2-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-Legacy15-SP2-Debuginfo-Updates for sle-15-s390x"},{"enabled":true,"id":4188,"distro_target":"sle-15-s390x","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15-SP2/s390x/product/","installer_updates":false,"name":"SLE-Module-Legacy15-SP2-Pool","description":"SLE-Module-Legacy15-SP2-Pool for sle-15-s390x"},{"installer_updates":false,"name":"SLE-Module-Legacy15-SP2-Debuginfo-Pool","description":"SLE-Module-Legacy15-SP2-Debuginfo-Pool for sle-15-s390x","id":4189,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15-SP2/s390x/product_debug/","distro_target":"sle-15-s390x","autorefresh":false},{"autorefresh":false,"distro_target":"sle-15-s390x","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15-SP2/s390x/product_source/","enabled":false,"id":4190,"description":"SLE-Module-Legacy15-SP2-Source-Pool for sle-15-s390x","name":"SLE-Module-Legacy15-SP2-Source-Pool","installer_updates":false}],"product_class":"MODULE","name":"Legacy Module","offline_predecessor_ids":[1149],"friendly_name":"Legacy Module 15 SP2 s390x","migration_extra":false,"release_type":null,"former_identifier":"sle-module-legacy","recommended":false,"version":"15.2","extensions":[],"release_stage":"released","identifier":"sle-module-legacy","id":1981,"friendly_version":"15 SP2"},{"cpe":"cpe:/o:suse:sle-module-legacy:15:sp2","product_type":"module","predecessor_ids":[1581,1804],"online_predecessor_ids":[1581,1804],"repositories":[{"installer_updates":false,"name":"SLE-Module-Legacy15-SP2-Updates","description":"SLE-Module-Legacy15-SP2-Updates for sle-15-x86_64","id":4191,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/15-SP2/x86_64/update/","distro_target":"sle-15-x86_64","autorefresh":true},{"id":4192,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/15-SP2/x86_64/update_debug/","autorefresh":true,"distro_target":"sle-15-x86_64","name":"SLE-Module-Legacy15-SP2-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-Legacy15-SP2-Debuginfo-Updates for sle-15-x86_64"},{"enabled":true,"id":4193,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15-SP2/x86_64/product/","name":"SLE-Module-Legacy15-SP2-Pool","installer_updates":false,"description":"SLE-Module-Legacy15-SP2-Pool for sle-15-x86_64"},{"description":"SLE-Module-Legacy15-SP2-Debuginfo-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Legacy15-SP2-Debuginfo-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15-SP2/x86_64/product_debug/","distro_target":"sle-15-x86_64","autorefresh":false,"id":4194,"enabled":false},{"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15-SP2/x86_64/product_source/","enabled":false,"id":4195,"description":"SLE-Module-Legacy15-SP2-Source-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Legacy15-SP2-Source-Pool"}],"product_class":"MODULE","eula_url":"","arch":"x86_64","shortname":"Legacy-Module","description":"

The Legacy Module helps you migrating applications from SUSE Linux Enterprise 12 and other systems to SUSE Linux Enterprise 15, by providing packages which are discontinued on SUSE Linux Enterprise Server, such as: ntp, IBM Java 8, and a number of libraries.

Access to the Legacy Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself. Packages in the this module are usually supported for at most three years.

","free":true,"extensions":[],"id":1982,"release_stage":"released","identifier":"sle-module-legacy","friendly_version":"15 SP2","name":"Legacy Module","offline_predecessor_ids":[1150],"migration_extra":false,"friendly_name":"Legacy Module 15 SP2 x86_64","release_type":null,"former_identifier":"sle-module-legacy","recommended":false,"version":"15.2"},{"friendly_version":"15 SP2","extensions":[],"identifier":"sle-module-live-patching","release_stage":"released","id":1983,"recommended":false,"version":"15.2","name":"SUSE Linux Enterprise Live Patching","offline_predecessor_ids":[1756,1887],"friendly_name":"SUSE Linux Enterprise Live Patching 15 SP2 ppc64le","migration_extra":false,"release_type":null,"former_identifier":"sle-module-live-patching","predecessor_ids":[1735,1827],"repositories":[{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Live-Patching/15-SP2/ppc64le/update/","distro_target":"sle-15-ppc64le","autorefresh":true,"id":4196,"enabled":true,"description":"SLE-Module-Live-Patching15-SP2-Updates for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-Live-Patching15-SP2-Updates"},{"installer_updates":false,"name":"SLE-Module-Live-Patching15-SP2-Debuginfo-Updates","description":"SLE-Module-Live-Patching15-SP2-Debuginfo-Updates for sle-15-ppc64le","enabled":false,"id":4197,"distro_target":"sle-15-ppc64le","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Live-Patching/15-SP2/ppc64le/update_debug/"},{"distro_target":"sle-15-ppc64le","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Live-Patching/15-SP2/ppc64le/product/","enabled":true,"id":4198,"description":"SLE-Module-Live-Patching15-SP2-Pool for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-Live-Patching15-SP2-Pool"},{"distro_target":"sle-15-ppc64le","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Live-Patching/15-SP2/ppc64le/product_debug/","enabled":false,"id":4199,"description":"SLE-Module-Live-Patching15-SP2-Debuginfo-Pool for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-Live-Patching15-SP2-Debuginfo-Pool"},{"description":"SLE-Module-Live-Patching15-SP2-Source-Pool for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-Live-Patching15-SP2-Source-Pool","distro_target":"sle-15-ppc64le","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Live-Patching/15-SP2/ppc64le/product_source/","enabled":false,"id":4200}],"online_predecessor_ids":[1735,1827],"product_class":"SLE-LP-PPC","cpe":"cpe:/o:suse:sle-module-live-patching:15:sp2","product_type":"extension","shortname":"Live-Patching","description":"

SUSE Linux Enterprise Live Patching provides packages to update critical components in SUSE Linux Enterprise. With SUSE Linux Enterprise Live Patching, you can perform critical patching without shutting down your system, reducing the need for planned downtime and increasing service availability.

","free":false,"eula_url":"","arch":"ppc64le"},{"cpe":"cpe:/o:suse:sle-module-live-patching:15:sp2","product_type":"extension","predecessor_ids":[1736,1828],"repositories":[{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Live-Patching/15-SP2/x86_64/update/","autorefresh":true,"distro_target":"sle-15-x86_64","id":4201,"enabled":true,"description":"SLE-Module-Live-Patching15-SP2-Updates for sle-15-x86_64","name":"SLE-Module-Live-Patching15-SP2-Updates","installer_updates":false},{"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Live-Patching/15-SP2/x86_64/update_debug/","enabled":false,"id":4202,"description":"SLE-Module-Live-Patching15-SP2-Debuginfo-Updates for sle-15-x86_64","name":"SLE-Module-Live-Patching15-SP2-Debuginfo-Updates","installer_updates":false},{"description":"SLE-Module-Live-Patching15-SP2-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Live-Patching15-SP2-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Live-Patching/15-SP2/x86_64/product/","distro_target":"sle-15-x86_64","autorefresh":false,"id":4203,"enabled":true},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Live-Patching/15-SP2/x86_64/product_debug/","distro_target":"sle-15-x86_64","autorefresh":false,"id":4204,"enabled":false,"description":"SLE-Module-Live-Patching15-SP2-Debuginfo-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Live-Patching15-SP2-Debuginfo-Pool"},{"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Live-Patching/15-SP2/x86_64/product_source/","enabled":false,"id":4205,"description":"SLE-Module-Live-Patching15-SP2-Source-Pool for sle-15-x86_64","name":"SLE-Module-Live-Patching15-SP2-Source-Pool","installer_updates":false}],"online_predecessor_ids":[1736,1828],"product_class":"SLE-LP","eula_url":"","arch":"x86_64","shortname":"Live-Patching","description":"

SUSE Linux Enterprise Live Patching provides packages to update critical components in SUSE Linux Enterprise. With SUSE Linux Enterprise Live Patching, you can perform critical patching without shutting down your system, reducing the need for planned downtime and increasing service availability.

","free":false,"extensions":[],"release_stage":"released","identifier":"sle-module-live-patching","id":1984,"friendly_version":"15 SP2","name":"SUSE Linux Enterprise Live Patching","offline_predecessor_ids":[1757,1888],"friendly_name":"SUSE Linux Enterprise Live Patching 15 SP2 x86_64","migration_extra":false,"former_identifier":"sle-module-live-patching","release_type":null,"recommended":false,"version":"15.2"},{"free":true,"shortname":"Public-Cloud-Module","description":"

The Public Cloud Module is a collection of tools that enables you to create and manage cloud images from the commandline on SUSE Linux Enterprise Server. When building your own images with KIWI or SUSE Studio, initialization code specific to the target cloud is included in that image.

Access to the Public Cloud Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself; please check the Release Notes for further details.

","eula_url":"","arch":"aarch64","predecessor_ids":[1645,1805],"online_predecessor_ids":[1645,1805],"product_class":"MODULE","repositories":[{"description":"SLE-Module-Public-Cloud15-SP2-Updates for sle-15-aarch64","installer_updates":false,"name":"SLE-Module-Public-Cloud15-SP2-Updates","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/15-SP2/aarch64/update/","distro_target":"sle-15-aarch64","autorefresh":true,"id":4206,"enabled":true},{"enabled":false,"id":4207,"distro_target":"sle-15-aarch64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/15-SP2/aarch64/update_debug/","installer_updates":false,"name":"SLE-Module-Public-Cloud15-SP2-Debuginfo-Updates","description":"SLE-Module-Public-Cloud15-SP2-Debuginfo-Updates for sle-15-aarch64"},{"id":4208,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP2/aarch64/product/","autorefresh":false,"distro_target":"sle-15-aarch64","name":"SLE-Module-Public-Cloud15-SP2-Pool","installer_updates":false,"description":"SLE-Module-Public-Cloud15-SP2-Pool for sle-15-aarch64"},{"description":"SLE-Module-Public-Cloud15-SP2-Debuginfo-Pool for sle-15-aarch64","name":"SLE-Module-Public-Cloud15-SP2-Debuginfo-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP2/aarch64/product_debug/","enabled":false,"id":4209},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP2/aarch64/product_source/","distro_target":"sle-15-aarch64","autorefresh":false,"id":4210,"enabled":false,"description":"SLE-Module-Public-Cloud15-SP2-Source-Pool for sle-15-aarch64","installer_updates":false,"name":"SLE-Module-Public-Cloud15-SP2-Source-Pool"}],"product_type":"module","cpe":"cpe:/o:suse:sle-module-public-cloud:15:sp2","recommended":false,"version":"15.2","offline_predecessor_ids":[1528],"name":"Public Cloud Module","release_type":null,"former_identifier":"sle-module-public-cloud","friendly_name":"Public Cloud Module 15 SP2 aarch64","migration_extra":false,"friendly_version":"15 SP2","extensions":[],"release_stage":"released","identifier":"sle-module-public-cloud","id":1985},{"recommended":false,"version":"15.2","offline_predecessor_ids":[1218],"name":"Public Cloud Module","former_identifier":"sle-module-public-cloud","release_type":null,"migration_extra":false,"friendly_name":"Public Cloud Module 15 SP2 ppc64le","friendly_version":"15 SP2","extensions":[],"id":1986,"release_stage":"released","identifier":"sle-module-public-cloud","free":true,"description":"

The Public Cloud Module is a collection of tools that enables you to create and manage cloud images from the commandline on SUSE Linux Enterprise Server. When building your own images with KIWI or SUSE Studio, initialization code specific to the target cloud is included in that image.

Access to the Public Cloud Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself; please check the Release Notes for further details.

","shortname":"Public-Cloud-Module","eula_url":"","arch":"ppc64le","predecessor_ids":[1616,1806],"product_class":"MODULE","online_predecessor_ids":[1616,1806],"repositories":[{"name":"SLE-Module-Public-Cloud15-SP2-Updates","installer_updates":false,"description":"SLE-Module-Public-Cloud15-SP2-Updates for sle-15-ppc64le","id":4211,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/15-SP2/ppc64le/update/","autorefresh":true,"distro_target":"sle-15-ppc64le"},{"description":"SLE-Module-Public-Cloud15-SP2-Debuginfo-Updates for sle-15-ppc64le","name":"SLE-Module-Public-Cloud15-SP2-Debuginfo-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/15-SP2/ppc64le/update_debug/","enabled":false,"id":4212},{"enabled":true,"id":4213,"distro_target":"sle-15-ppc64le","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP2/ppc64le/product/","installer_updates":false,"name":"SLE-Module-Public-Cloud15-SP2-Pool","description":"SLE-Module-Public-Cloud15-SP2-Pool for sle-15-ppc64le"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP2/ppc64le/product_debug/","distro_target":"sle-15-ppc64le","autorefresh":false,"id":4214,"enabled":false,"description":"SLE-Module-Public-Cloud15-SP2-Debuginfo-Pool for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-Public-Cloud15-SP2-Debuginfo-Pool"},{"name":"SLE-Module-Public-Cloud15-SP2-Source-Pool","installer_updates":false,"description":"SLE-Module-Public-Cloud15-SP2-Source-Pool for sle-15-ppc64le","id":4215,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP2/ppc64le/product_source/","autorefresh":false,"distro_target":"sle-15-ppc64le"}],"product_type":"module","cpe":"cpe:/o:suse:sle-module-public-cloud:15:sp2"},{"friendly_version":"15 SP2","extensions":[],"id":1987,"release_stage":"released","identifier":"sle-module-public-cloud","recommended":false,"version":"15.2","name":"Public Cloud Module","offline_predecessor_ids":[1219],"friendly_name":"Public Cloud Module 15 SP2 s390x","migration_extra":false,"former_identifier":"sle-module-public-cloud","release_type":null,"predecessor_ids":[1646,1807],"online_predecessor_ids":[1646,1807],"product_class":"MODULE","repositories":[{"enabled":true,"id":4216,"distro_target":"sle-15-s390x","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/15-SP2/s390x/update/","installer_updates":false,"name":"SLE-Module-Public-Cloud15-SP2-Updates","description":"SLE-Module-Public-Cloud15-SP2-Updates for sle-15-s390x"},{"enabled":false,"id":4217,"distro_target":"sle-15-s390x","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/15-SP2/s390x/update_debug/","installer_updates":false,"name":"SLE-Module-Public-Cloud15-SP2-Debuginfo-Updates","description":"SLE-Module-Public-Cloud15-SP2-Debuginfo-Updates for sle-15-s390x"},{"description":"SLE-Module-Public-Cloud15-SP2-Pool for sle-15-s390x","installer_updates":false,"name":"SLE-Module-Public-Cloud15-SP2-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP2/s390x/product/","distro_target":"sle-15-s390x","autorefresh":false,"id":4218,"enabled":true},{"description":"SLE-Module-Public-Cloud15-SP2-Debuginfo-Pool for sle-15-s390x","installer_updates":false,"name":"SLE-Module-Public-Cloud15-SP2-Debuginfo-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP2/s390x/product_debug/","distro_target":"sle-15-s390x","autorefresh":false,"id":4219,"enabled":false},{"description":"SLE-Module-Public-Cloud15-SP2-Source-Pool for sle-15-s390x","name":"SLE-Module-Public-Cloud15-SP2-Source-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-15-s390x","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP2/s390x/product_source/","enabled":false,"id":4220}],"cpe":"cpe:/o:suse:sle-module-public-cloud:15:sp2","product_type":"module","description":"

The Public Cloud Module is a collection of tools that enables you to create and manage cloud images from the commandline on SUSE Linux Enterprise Server. When building your own images with KIWI or SUSE Studio, initialization code specific to the target cloud is included in that image.

Access to the Public Cloud Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself; please check the Release Notes for further details.

","shortname":"Public-Cloud-Module","free":true,"eula_url":"","arch":"s390x"},{"eula_url":"","arch":"x86_64","shortname":"Public-Cloud-Module","description":"

The Public Cloud Module is a collection of tools that enables you to create and manage cloud images from the commandline on SUSE Linux Enterprise Server. When building your own images with KIWI or SUSE Studio, initialization code specific to the target cloud is included in that image.

Access to the Public Cloud Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself; please check the Release Notes for further details.

","free":true,"cpe":"cpe:/o:suse:sle-module-public-cloud:15:sp2","product_type":"module","predecessor_ids":[1611,1808],"online_predecessor_ids":[1611,1808],"product_class":"MODULE","repositories":[{"id":4221,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/15-SP2/x86_64/update/","autorefresh":true,"distro_target":"sle-15-x86_64","name":"SLE-Module-Public-Cloud15-SP2-Updates","installer_updates":false,"description":"SLE-Module-Public-Cloud15-SP2-Updates for sle-15-x86_64"},{"enabled":false,"id":4222,"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/15-SP2/x86_64/update_debug/","name":"SLE-Module-Public-Cloud15-SP2-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-Public-Cloud15-SP2-Debuginfo-Updates for sle-15-x86_64"},{"description":"SLE-Module-Public-Cloud15-SP2-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Public-Cloud15-SP2-Pool","distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP2/x86_64/product/","enabled":true,"id":4223},{"id":4224,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP2/x86_64/product_debug/","autorefresh":false,"distro_target":"sle-15-x86_64","name":"SLE-Module-Public-Cloud15-SP2-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-Public-Cloud15-SP2-Debuginfo-Pool for sle-15-x86_64"},{"description":"SLE-Module-Public-Cloud15-SP2-Source-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Public-Cloud15-SP2-Source-Pool","distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP2/x86_64/product_source/","enabled":false,"id":4225}],"name":"Public Cloud Module","offline_predecessor_ids":[1220],"friendly_name":"Public Cloud Module 15 SP2 x86_64","migration_extra":false,"release_type":null,"former_identifier":"sle-module-public-cloud","recommended":false,"version":"15.2","extensions":[],"identifier":"sle-module-public-cloud","release_stage":"released","id":1988,"friendly_version":"15 SP2"},{"free":true,"shortname":"Python2-Module","description":"

This module contains the python 2 packages.

Access to the Python 2 Module is included in your SUSE Linux Enterprise subscription. The module has a different lifecycle than SUSE Linux Enterprise itself. Packages in the this module are usually supported for at most three years.

","eula_url":"","arch":"aarch64","predecessor_ids":[1864],"online_predecessor_ids":[1864],"repositories":[{"id":4226,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Python2/15-SP2/aarch64/update/","distro_target":"sle-15-aarch64","autorefresh":true,"installer_updates":false,"name":"SLE-Module-Python2-15-SP2-Updates","description":"SLE-Module-Python2-15-SP2-Updates for sle-15-aarch64"},{"name":"SLE-Module-Python2-15-SP2-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-Python2-15-SP2-Debuginfo-Updates for sle-15-aarch64","enabled":false,"id":4227,"autorefresh":true,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Python2/15-SP2/aarch64/update_debug/"},{"installer_updates":false,"name":"SLE-Module-Python2-15-SP2-Pool","description":"SLE-Module-Python2-15-SP2-Pool for sle-15-aarch64","enabled":true,"id":4228,"distro_target":"sle-15-aarch64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Python2/15-SP2/aarch64/product/"},{"name":"SLE-Module-Python2-15-SP2-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-Python2-15-SP2-Debuginfo-Pool for sle-15-aarch64","id":4229,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Python2/15-SP2/aarch64/product_debug/","autorefresh":false,"distro_target":"sle-15-aarch64"},{"id":4230,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Python2/15-SP2/aarch64/product_source/","autorefresh":false,"distro_target":"sle-15-aarch64","name":"SLE-Module-Python2-15-SP2-Source-Pool","installer_updates":false,"description":"SLE-Module-Python2-15-SP2-Source-Pool for sle-15-aarch64"}],"product_class":"MODULE","product_type":"module","cpe":"cpe:/o:suse:sle-module-python2:15:sp2","recommended":false,"version":"15.2","offline_predecessor_ids":[],"name":"Python 2 Module","former_identifier":"sle-module-python2","release_type":null,"friendly_name":"Python 2 Module 15 SP2 aarch64","migration_extra":false,"friendly_version":"15 SP2","extensions":[],"identifier":"sle-module-python2","release_stage":"released","id":1989},{"cpe":"cpe:/o:suse:sle-module-python2:15:sp2","product_type":"module","predecessor_ids":[1865],"online_predecessor_ids":[1865],"product_class":"MODULE","repositories":[{"autorefresh":true,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Python2/15-SP2/ppc64le/update/","enabled":true,"id":4231,"description":"SLE-Module-Python2-15-SP2-Updates for sle-15-ppc64le","name":"SLE-Module-Python2-15-SP2-Updates","installer_updates":false},{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Python2/15-SP2/ppc64le/update_debug/","autorefresh":true,"distro_target":"sle-15-ppc64le","id":4232,"enabled":false,"description":"SLE-Module-Python2-15-SP2-Debuginfo-Updates for sle-15-ppc64le","name":"SLE-Module-Python2-15-SP2-Debuginfo-Updates","installer_updates":false},{"installer_updates":false,"name":"SLE-Module-Python2-15-SP2-Pool","description":"SLE-Module-Python2-15-SP2-Pool for sle-15-ppc64le","id":4233,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Python2/15-SP2/ppc64le/product/","distro_target":"sle-15-ppc64le","autorefresh":false},{"description":"SLE-Module-Python2-15-SP2-Debuginfo-Pool for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-Python2-15-SP2-Debuginfo-Pool","distro_target":"sle-15-ppc64le","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Python2/15-SP2/ppc64le/product_debug/","enabled":false,"id":4234},{"autorefresh":false,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Python2/15-SP2/ppc64le/product_source/","enabled":false,"id":4235,"description":"SLE-Module-Python2-15-SP2-Source-Pool for sle-15-ppc64le","name":"SLE-Module-Python2-15-SP2-Source-Pool","installer_updates":false}],"eula_url":"","arch":"ppc64le","description":"

This module contains the python 2 packages.

Access to the Python 2 Module is included in your SUSE Linux Enterprise subscription. The module has a different lifecycle than SUSE Linux Enterprise itself. Packages in the this module are usually supported for at most three years.

","shortname":"Python2-Module","free":true,"extensions":[],"release_stage":"released","id":1990,"identifier":"sle-module-python2","friendly_version":"15 SP2","name":"Python 2 Module","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"Python 2 Module 15 SP2 ppc64le","release_type":null,"former_identifier":"sle-module-python2","recommended":false,"version":"15.2"},{"predecessor_ids":[1866],"online_predecessor_ids":[1866],"repositories":[{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Python2/15-SP2/s390x/update/","autorefresh":true,"distro_target":"sle-15-s390x","id":4236,"enabled":true,"description":"SLE-Module-Python2-15-SP2-Updates for sle-15-s390x","name":"SLE-Module-Python2-15-SP2-Updates","installer_updates":false},{"description":"SLE-Module-Python2-15-SP2-Debuginfo-Updates for sle-15-s390x","installer_updates":false,"name":"SLE-Module-Python2-15-SP2-Debuginfo-Updates","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Python2/15-SP2/s390x/update_debug/","distro_target":"sle-15-s390x","autorefresh":true,"id":4237,"enabled":false},{"autorefresh":false,"distro_target":"sle-15-s390x","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Python2/15-SP2/s390x/product/","enabled":true,"id":4238,"description":"SLE-Module-Python2-15-SP2-Pool for sle-15-s390x","name":"SLE-Module-Python2-15-SP2-Pool","installer_updates":false},{"id":4239,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Python2/15-SP2/s390x/product_debug/","distro_target":"sle-15-s390x","autorefresh":false,"installer_updates":false,"name":"SLE-Module-Python2-15-SP2-Debuginfo-Pool","description":"SLE-Module-Python2-15-SP2-Debuginfo-Pool for sle-15-s390x"},{"enabled":false,"id":4240,"autorefresh":false,"distro_target":"sle-15-s390x","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Python2/15-SP2/s390x/product_source/","name":"SLE-Module-Python2-15-SP2-Source-Pool","installer_updates":false,"description":"SLE-Module-Python2-15-SP2-Source-Pool for sle-15-s390x"}],"product_class":"MODULE","product_type":"module","cpe":"cpe:/o:suse:sle-module-python2:15:sp2","free":true,"description":"

This module contains the python 2 packages.

Access to the Python 2 Module is included in your SUSE Linux Enterprise subscription. The module has a different lifecycle than SUSE Linux Enterprise itself. Packages in the this module are usually supported for at most three years.

","shortname":"Python2-Module","eula_url":"","arch":"s390x","friendly_version":"15 SP2","extensions":[],"id":1991,"release_stage":"released","identifier":"sle-module-python2","recommended":false,"version":"15.2","offline_predecessor_ids":[],"name":"Python 2 Module","release_type":null,"former_identifier":"sle-module-python2","migration_extra":false,"friendly_name":"Python 2 Module 15 SP2 s390x"},{"shortname":"Python2-Module","description":"

This module contains the python 2 packages.

Access to the Python 2 Module is included in your SUSE Linux Enterprise subscription. The module has a different lifecycle than SUSE Linux Enterprise itself. Packages in the this module are usually supported for at most three years.

","free":true,"arch":"x86_64","eula_url":"","repositories":[{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Python2/15-SP2/x86_64/update/","distro_target":"sle-15-x86_64","autorefresh":true,"id":4241,"enabled":true,"description":"SLE-Module-Python2-15-SP2-Updates for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Python2-15-SP2-Updates"},{"enabled":false,"id":4242,"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Python2/15-SP2/x86_64/update_debug/","name":"SLE-Module-Python2-15-SP2-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-Python2-15-SP2-Debuginfo-Updates for sle-15-x86_64"},{"description":"SLE-Module-Python2-15-SP2-Pool for sle-15-x86_64","name":"SLE-Module-Python2-15-SP2-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Python2/15-SP2/x86_64/product/","autorefresh":false,"distro_target":"sle-15-x86_64","id":4243,"enabled":true},{"id":4244,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Python2/15-SP2/x86_64/product_debug/","autorefresh":false,"distro_target":"sle-15-x86_64","name":"SLE-Module-Python2-15-SP2-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-Python2-15-SP2-Debuginfo-Pool for sle-15-x86_64"},{"installer_updates":false,"name":"SLE-Module-Python2-15-SP2-Source-Pool","description":"SLE-Module-Python2-15-SP2-Source-Pool for sle-15-x86_64","id":4245,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Python2/15-SP2/x86_64/product_source/","distro_target":"sle-15-x86_64","autorefresh":false}],"online_predecessor_ids":[1867],"product_class":"MODULE","predecessor_ids":[1867],"cpe":"cpe:/o:suse:sle-module-python2:15:sp2","product_type":"module","version":"15.2","recommended":false,"friendly_name":"Python 2 Module 15 SP2 x86_64","migration_extra":false,"release_type":null,"former_identifier":"sle-module-python2","name":"Python 2 Module","offline_predecessor_ids":[],"friendly_version":"15 SP2","release_stage":"released","identifier":"sle-module-python2","id":1992,"extensions":[]},{"friendly_version":"15 SP2","identifier":"sle-module-sap-applications","release_stage":"released","id":1993,"extensions":[],"version":"15.2","recommended":false,"former_identifier":"sle-module-sap-applications","release_type":null,"migration_extra":false,"friendly_name":"SAP Applications Module 15 SP2 ppc64le","offline_predecessor_ids":[],"name":"SAP Applications Module","repositories":[{"distro_target":"sle-15-ppc64le","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-SAP-Applications/15-SP2/ppc64le/update/","enabled":true,"id":4246,"description":"SLE-Module-SAP-Applications15-SP2-Updates for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-SAP-Applications15-SP2-Updates"},{"id":4247,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-SAP-Applications/15-SP2/ppc64le/update_debug/","distro_target":"sle-15-ppc64le","autorefresh":true,"installer_updates":false,"name":"SLE-Module-SAP-Applications15-SP2-Debuginfo-Updates","description":"SLE-Module-SAP-Applications15-SP2-Debuginfo-Updates for sle-15-ppc64le"},{"description":"SLE-Module-SAP-Applications15-SP2-Pool for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-SAP-Applications15-SP2-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-SAP-Applications/15-SP2/ppc64le/product/","distro_target":"sle-15-ppc64le","autorefresh":false,"id":4248,"enabled":true},{"installer_updates":false,"name":"SLE-Module-SAP-Applications15-SP2-Debuginfo-Pool","description":"SLE-Module-SAP-Applications15-SP2-Debuginfo-Pool for sle-15-ppc64le","enabled":false,"id":4249,"distro_target":"sle-15-ppc64le","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-SAP-Applications/15-SP2/ppc64le/product_debug/"},{"id":4250,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-SAP-Applications/15-SP2/ppc64le/product_source/","autorefresh":false,"distro_target":"sle-15-ppc64le","name":"SLE-Module-SAP-Applications15-SP2-Source-Pool","installer_updates":false,"description":"SLE-Module-SAP-Applications15-SP2-Source-Pool for sle-15-ppc64le"}],"online_predecessor_ids":[1726,1786],"product_class":"MODULE","predecessor_ids":[1726,1786],"product_type":"module","cpe":"cpe:/o:suse:sle-module-sap-applications:15:sp2","free":true,"description":"

The SAP Applications module contains the specialized tools for SAP Applications administration.

The module is maintained and supported by the SUSE Linux Enterprise Server for SAP Applications product subscription.

","shortname":"SAP-Applications-Module","arch":"ppc64le","eula_url":""},{"product_type":"module","cpe":"cpe:/o:suse:sle-module-sap-applications:15:sp2","online_predecessor_ids":[1727,1787],"repositories":[{"description":"SLE-Module-SAP-Applications15-SP2-Updates for sle-15-x86_64","name":"SLE-Module-SAP-Applications15-SP2-Updates","installer_updates":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-SAP-Applications/15-SP2/x86_64/update/","autorefresh":true,"distro_target":"sle-15-x86_64","id":4251,"enabled":true},{"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-SAP-Applications/15-SP2/x86_64/update_debug/","enabled":false,"id":4252,"description":"SLE-Module-SAP-Applications15-SP2-Debuginfo-Updates for sle-15-x86_64","name":"SLE-Module-SAP-Applications15-SP2-Debuginfo-Updates","installer_updates":false},{"description":"SLE-Module-SAP-Applications15-SP2-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-SAP-Applications15-SP2-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-SAP-Applications/15-SP2/x86_64/product/","distro_target":"sle-15-x86_64","autorefresh":false,"id":4253,"enabled":true},{"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-SAP-Applications/15-SP2/x86_64/product_debug/","enabled":false,"id":4254,"description":"SLE-Module-SAP-Applications15-SP2-Debuginfo-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-SAP-Applications15-SP2-Debuginfo-Pool"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-SAP-Applications/15-SP2/x86_64/product_source/","autorefresh":false,"distro_target":"sle-15-x86_64","id":4255,"enabled":false,"description":"SLE-Module-SAP-Applications15-SP2-Source-Pool for sle-15-x86_64","name":"SLE-Module-SAP-Applications15-SP2-Source-Pool","installer_updates":false}],"product_class":"MODULE","predecessor_ids":[1727,1787],"arch":"x86_64","eula_url":"","free":true,"shortname":"SAP-Applications-Module","description":"

The SAP Applications module contains the specialized tools for SAP Applications administration.

The module is maintained and supported by the SUSE Linux Enterprise Server for SAP Applications product subscription.

","id":1994,"release_stage":"released","identifier":"sle-module-sap-applications","extensions":[],"friendly_version":"15 SP2","former_identifier":"sle-module-sap-applications","release_type":null,"migration_extra":false,"friendly_name":"SAP Applications Module 15 SP2 x86_64","offline_predecessor_ids":[],"name":"SAP Applications Module","version":"15.2","recommended":false},{"repositories":[{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Transactional-Server/15-SP2/aarch64/update/","distro_target":"sle-15-aarch64","autorefresh":true,"id":4256,"enabled":true,"description":"SLE-Module-Transactional-Server15-SP2-Updates for sle-15-aarch64","installer_updates":false,"name":"SLE-Module-Transactional-Server15-SP2-Updates"},{"id":4257,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Transactional-Server/15-SP2/aarch64/update_debug/","autorefresh":true,"distro_target":"sle-15-aarch64","name":"SLE-Module-Transactional-Server15-SP2-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-Transactional-Server15-SP2-Debuginfo-Updates for sle-15-aarch64"},{"name":"SLE-Module-Transactional-Server15-SP2-Pool","installer_updates":false,"description":"SLE-Module-Transactional-Server15-SP2-Pool for sle-15-aarch64","enabled":true,"id":4258,"autorefresh":false,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Transactional-Server/15-SP2/aarch64/product/"},{"installer_updates":false,"name":"SLE-Module-Transactional-Server15-SP2-Debuginfo-Pool","description":"SLE-Module-Transactional-Server15-SP2-Debuginfo-Pool for sle-15-aarch64","id":4259,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Transactional-Server/15-SP2/aarch64/product_debug/","distro_target":"sle-15-aarch64","autorefresh":false},{"distro_target":"sle-15-aarch64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Transactional-Server/15-SP2/aarch64/product_source/","enabled":false,"id":4260,"description":"SLE-Module-Transactional-Server15-SP2-Source-Pool for sle-15-aarch64","installer_updates":false,"name":"SLE-Module-Transactional-Server15-SP2-Source-Pool"}],"online_predecessor_ids":[1822],"product_class":"MODULE","predecessor_ids":[1822],"cpe":"cpe:/o:suse:sle-module-transactional-server:15:sp2","product_type":"module","shortname":"Transactional-Server-Module","description":"

Transactional Updates provide SUSE Linux Enterprise systems with a method of updating the operating system and its packages in an entirely ‘atomic’ way. Updates are either applied to the system all together in a single transaction, or not at all. This happens without influencing the running system. If an update fails, or if the successful update is deemed to be incompatible or otherwise incorrect, it can be discarded to immediately return the system to its previous functioning state.

Access to theTransactional Server Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself: Package versions in the this module are usually supported for at most three years. We are planning to release more recent versions on a schedule of approximately 18 month; the exact dates may differ per package.

","free":true,"arch":"aarch64","eula_url":"","friendly_version":"15 SP2","identifier":"sle-module-transactional-server","release_stage":"released","id":1995,"extensions":[],"version":"15.2","recommended":false,"friendly_name":"Transactional Server Module 15 SP2 aarch64","migration_extra":false,"release_type":null,"former_identifier":"sle-module-transactional-server","name":"Transactional Server Module","offline_predecessor_ids":[]},{"friendly_version":"15 SP2","extensions":[],"identifier":"sle-module-transactional-server","release_stage":"released","id":1996,"recommended":false,"version":"15.2","offline_predecessor_ids":[],"name":"Transactional Server Module","former_identifier":"sle-module-transactional-server","release_type":null,"friendly_name":"Transactional Server Module 15 SP2 ppc64le","migration_extra":false,"predecessor_ids":[1823],"online_predecessor_ids":[1823],"repositories":[{"description":"SLE-Module-Transactional-Server15-SP2-Updates for sle-15-ppc64le","name":"SLE-Module-Transactional-Server15-SP2-Updates","installer_updates":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Transactional-Server/15-SP2/ppc64le/update/","autorefresh":true,"distro_target":"sle-15-ppc64le","id":4261,"enabled":true},{"id":4262,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Transactional-Server/15-SP2/ppc64le/update_debug/","distro_target":"sle-15-ppc64le","autorefresh":true,"installer_updates":false,"name":"SLE-Module-Transactional-Server15-SP2-Debuginfo-Updates","description":"SLE-Module-Transactional-Server15-SP2-Debuginfo-Updates for sle-15-ppc64le"},{"description":"SLE-Module-Transactional-Server15-SP2-Pool for sle-15-ppc64le","name":"SLE-Module-Transactional-Server15-SP2-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Transactional-Server/15-SP2/ppc64le/product/","enabled":true,"id":4263},{"installer_updates":false,"name":"SLE-Module-Transactional-Server15-SP2-Debuginfo-Pool","description":"SLE-Module-Transactional-Server15-SP2-Debuginfo-Pool for sle-15-ppc64le","enabled":false,"id":4264,"distro_target":"sle-15-ppc64le","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Transactional-Server/15-SP2/ppc64le/product_debug/"},{"name":"SLE-Module-Transactional-Server15-SP2-Source-Pool","installer_updates":false,"description":"SLE-Module-Transactional-Server15-SP2-Source-Pool for sle-15-ppc64le","enabled":false,"id":4265,"autorefresh":false,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Transactional-Server/15-SP2/ppc64le/product_source/"}],"product_class":"MODULE","product_type":"module","cpe":"cpe:/o:suse:sle-module-transactional-server:15:sp2","free":true,"shortname":"Transactional-Server-Module","description":"

Transactional Updates provide SUSE Linux Enterprise systems with a method of updating the operating system and its packages in an entirely ‘atomic’ way. Updates are either applied to the system all together in a single transaction, or not at all. This happens without influencing the running system. If an update fails, or if the successful update is deemed to be incompatible or otherwise incorrect, it can be discarded to immediately return the system to its previous functioning state.

Access to theTransactional Server Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself: Package versions in the this module are usually supported for at most three years. We are planning to release more recent versions on a schedule of approximately 18 month; the exact dates may differ per package.

","eula_url":"","arch":"ppc64le"},{"eula_url":"","arch":"s390x","free":true,"shortname":"Transactional-Server-Module","description":"

Transactional Updates provide SUSE Linux Enterprise systems with a method of updating the operating system and its packages in an entirely ‘atomic’ way. Updates are either applied to the system all together in a single transaction, or not at all. This happens without influencing the running system. If an update fails, or if the successful update is deemed to be incompatible or otherwise incorrect, it can be discarded to immediately return the system to its previous functioning state.

Access to theTransactional Server Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself: Package versions in the this module are usually supported for at most three years. We are planning to release more recent versions on a schedule of approximately 18 month; the exact dates may differ per package.

","product_type":"module","cpe":"cpe:/o:suse:sle-module-transactional-server:15:sp2","predecessor_ids":[1824],"online_predecessor_ids":[1824],"repositories":[{"description":"SLE-Module-Transactional-Server15-SP2-Updates for sle-15-s390x","installer_updates":false,"name":"SLE-Module-Transactional-Server15-SP2-Updates","distro_target":"sle-15-s390x","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Transactional-Server/15-SP2/s390x/update/","enabled":true,"id":4266},{"description":"SLE-Module-Transactional-Server15-SP2-Debuginfo-Updates for sle-15-s390x","name":"SLE-Module-Transactional-Server15-SP2-Debuginfo-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-15-s390x","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Transactional-Server/15-SP2/s390x/update_debug/","enabled":false,"id":4267},{"name":"SLE-Module-Transactional-Server15-SP2-Pool","installer_updates":false,"description":"SLE-Module-Transactional-Server15-SP2-Pool for sle-15-s390x","id":4268,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Transactional-Server/15-SP2/s390x/product/","autorefresh":false,"distro_target":"sle-15-s390x"},{"name":"SLE-Module-Transactional-Server15-SP2-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-Transactional-Server15-SP2-Debuginfo-Pool for sle-15-s390x","enabled":false,"id":4269,"autorefresh":false,"distro_target":"sle-15-s390x","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Transactional-Server/15-SP2/s390x/product_debug/"},{"installer_updates":false,"name":"SLE-Module-Transactional-Server15-SP2-Source-Pool","description":"SLE-Module-Transactional-Server15-SP2-Source-Pool for sle-15-s390x","enabled":false,"id":4270,"distro_target":"sle-15-s390x","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Transactional-Server/15-SP2/s390x/product_source/"}],"product_class":"MODULE","offline_predecessor_ids":[],"name":"Transactional Server Module","release_type":null,"former_identifier":"sle-module-transactional-server","friendly_name":"Transactional Server Module 15 SP2 s390x","migration_extra":false,"recommended":false,"version":"15.2","extensions":[],"id":1997,"release_stage":"released","identifier":"sle-module-transactional-server","friendly_version":"15 SP2"},{"online_predecessor_ids":[1825],"product_class":"MODULE","repositories":[{"enabled":true,"id":4271,"distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Transactional-Server/15-SP2/x86_64/update/","installer_updates":false,"name":"SLE-Module-Transactional-Server15-SP2-Updates","description":"SLE-Module-Transactional-Server15-SP2-Updates for sle-15-x86_64"},{"name":"SLE-Module-Transactional-Server15-SP2-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-Transactional-Server15-SP2-Debuginfo-Updates for sle-15-x86_64","id":4272,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Transactional-Server/15-SP2/x86_64/update_debug/","autorefresh":true,"distro_target":"sle-15-x86_64"},{"id":4273,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Transactional-Server/15-SP2/x86_64/product/","autorefresh":false,"distro_target":"sle-15-x86_64","name":"SLE-Module-Transactional-Server15-SP2-Pool","installer_updates":false,"description":"SLE-Module-Transactional-Server15-SP2-Pool for sle-15-x86_64"},{"id":4274,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Transactional-Server/15-SP2/x86_64/product_debug/","distro_target":"sle-15-x86_64","autorefresh":false,"installer_updates":false,"name":"SLE-Module-Transactional-Server15-SP2-Debuginfo-Pool","description":"SLE-Module-Transactional-Server15-SP2-Debuginfo-Pool for sle-15-x86_64"},{"description":"SLE-Module-Transactional-Server15-SP2-Source-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Transactional-Server15-SP2-Source-Pool","distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Transactional-Server/15-SP2/x86_64/product_source/","enabled":false,"id":4275}],"predecessor_ids":[1825],"product_type":"module","cpe":"cpe:/o:suse:sle-module-transactional-server:15:sp2","free":true,"description":"

Transactional Updates provide SUSE Linux Enterprise systems with a method of updating the operating system and its packages in an entirely ‘atomic’ way. Updates are either applied to the system all together in a single transaction, or not at all. This happens without influencing the running system. If an update fails, or if the successful update is deemed to be incompatible or otherwise incorrect, it can be discarded to immediately return the system to its previous functioning state.

Access to theTransactional Server Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself: Package versions in the this module are usually supported for at most three years. We are planning to release more recent versions on a schedule of approximately 18 month; the exact dates may differ per package.

","shortname":"Transactional-Server-Module","arch":"x86_64","eula_url":"","friendly_version":"15 SP2","id":1998,"release_stage":"released","identifier":"sle-module-transactional-server","extensions":[],"version":"15.2","recommended":false,"release_type":null,"former_identifier":"sle-module-transactional-server","migration_extra":false,"friendly_name":"Transactional Server Module 15 SP2 x86_64","offline_predecessor_ids":[],"name":"Transactional Server Module"},{"friendly_version":"15 SP2","id":1999,"release_stage":"released","identifier":"sle-we","extensions":[],"version":"15.2","recommended":false,"friendly_name":"SUSE Linux Enterprise Workstation Extension 15 SP2 x86_64","migration_extra":false,"release_type":null,"former_identifier":"sle-we","name":"SUSE Linux Enterprise Workstation Extension","offline_predecessor_ids":[1639,1893],"online_predecessor_ids":[1583,1781],"repositories":[{"enabled":true,"id":4276,"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Product-WE/15-SP2/x86_64/update/","name":"SLE-Product-WE15-SP2-Updates","installer_updates":false,"description":"SLE-Product-WE15-SP2-Updates for sle-15-x86_64"},{"enabled":false,"id":4277,"distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-WE/15-SP2/x86_64/update_debug/","installer_updates":false,"name":"SLE-Product-WE15-SP2-Debuginfo-Updates","description":"SLE-Product-WE15-SP2-Debuginfo-Updates for sle-15-x86_64"},{"name":"SLE-Product-WE15-SP2-Pool","installer_updates":false,"description":"SLE-Product-WE15-SP2-Pool for sle-15-x86_64","enabled":true,"id":4278,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Product-WE/15-SP2/x86_64/product/"},{"description":"SLE-Product-WE15-SP2-Debuginfo-Pool for sle-15-x86_64","name":"SLE-Product-WE15-SP2-Debuginfo-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Product-WE/15-SP2/x86_64/product_debug/","enabled":false,"id":4279},{"name":"SLE-Product-WE15-SP2-Source-Pool","installer_updates":false,"description":"SLE-Product-WE15-SP2-Source-Pool for sle-15-x86_64","id":4280,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-WE/15-SP2/x86_64/product_source/","autorefresh":false,"distro_target":"sle-15-x86_64"},{"url":"https://download.nvidia.com/suse/sle15sp2/","autorefresh":true,"distro_target":null,"id":4450,"enabled":true,"description":"SLE-15-SP2-Desktop-NVIDIA-Driver","name":"SLE-15-SP2-Desktop-NVIDIA-Driver","installer_updates":false}],"product_class":"SLE-WE","predecessor_ids":[1583,1781],"cpe":"cpe:/o:suse:sle-we:15:sp2","product_type":"extension","description":"SUSE Linux Enterprise Workstation Extension adds additional functionality to a base SUSE Linux Enterprise installation. The Workstation Extension offers additional desktop applications (office suite, email client, graphical editor, multimedia tools) and libraries. Workstation Extension is enabled and installed by default on SUSE Linux Enterprise Desktop installation. Adding the Workstation Extension to a SUSE Linux Enterprise Server installation allows to seamlessly combine both products to create a full featured server workstation.","shortname":"SLEWE15-SP2","free":false,"arch":"x86_64","eula_url":"https://updates.suse.com/SUSE/Products/SLE-Product-WE/15-SP2/x86_64/product.license/"},{"description":"SUSE Linux Enterprise offers a comprehensive suite of products built on a single code base. The platform addresses business needs from the smallest thin-client devices to the world's most powerful high-performance computing and mainframe servers. SUSE Linux Enterprise offers common management tools and technology certifications across the platform, and each product is enterprise-class.","shortname":"SLES12-SP5 BCL","free":false,"arch":"x86_64","eula_url":"","online_predecessor_ids":[],"repositories":[{"url":"https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-SP5-BCL/x86_64/update/","autorefresh":true,"distro_target":"sle-12-x86_64","id":4281,"enabled":true,"description":"SLES12-SP5-BCL-Updates for sle-12-x86_64","name":"SLES12-SP5-BCL-Updates","installer_updates":false},{"id":4282,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-SP5-BCL/x86_64/update_debug/","autorefresh":true,"distro_target":"sle-12-x86_64","name":"SLES12-SP5-BCL-Debuginfo-Updates","installer_updates":false,"description":"SLES12-SP5-BCL-Debuginfo-Updates for sle-12-x86_64"},{"enabled":true,"id":4283,"distro_target":"sle-12-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-SERVER/12-SP5-BCL/x86_64/product/","installer_updates":false,"name":"SLES12-SP5-BCL-Pool","description":"SLES12-SP5-BCL-Pool for sle-12-x86_64"},{"description":"SLES12-SP5-BCL-Debuginfo-Pool for sle-12-x86_64","installer_updates":false,"name":"SLES12-SP5-BCL-Debuginfo-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-SERVER/12-SP5-BCL/x86_64/product_debug/","distro_target":"sle-12-x86_64","autorefresh":false,"id":4284,"enabled":false},{"description":"SLES12-SP5-BCL-Source-Pool for sle-12-x86_64","installer_updates":false,"name":"SLES12-SP5-BCL-Source-Pool","distro_target":"sle-12-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-SERVER/12-SP5-BCL/x86_64/product_source/","enabled":false,"id":4285}],"product_class":"BCL-X86","predecessor_ids":[],"cpe":"cpe:/o:suse:sles-bcl:12:sp5","product_type":"extension","version":"12.5","recommended":false,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Server BCL 12 SP5 x86_64","former_identifier":"SLES-BCL","release_type":null,"name":"SUSE Linux Enterprise Server BCL","offline_predecessor_ids":[],"friendly_version":"12 SP5","release_stage":"released","id":2000,"identifier":"SLES-BCL","extensions":[]},{"identifier":"openSUSE","release_stage":"released","id":2001,"extensions":[],"friendly_version":"15.2","former_identifier":"openSUSE","release_type":null,"migration_extra":false,"friendly_name":"openSUSE Leap 15.2 x86_64","offline_predecessor_ids":[],"name":"openSUSE Leap","version":"15.2","recommended":false,"product_type":"base","cpe":"cpe:/o:opensuse:leap:15.2","repositories":[{"id":4286,"enabled":true,"url":"http://download.opensuse.org/update/leap/15.2/oss/","autorefresh":true,"distro_target":null,"name":"openSUSE-Leap-15.2-Updates","installer_updates":false,"description":"openSUSE-Leap-15.2-Updates"},{"description":"openSUSE-Leap-15.2-NonOss-Updates","installer_updates":false,"name":"openSUSE-Leap-15.2-NonOss-Updates","url":"http://download.opensuse.org/update/leap/15.2/non-oss/","distro_target":null,"autorefresh":true,"id":4287,"enabled":false},{"id":4288,"enabled":true,"url":"http://download.opensuse.org/distribution/leap/15.2/repo/oss/","distro_target":null,"autorefresh":false,"installer_updates":false,"name":"openSUSE-Leap-15.2-Pool","description":"openSUSE-Leap-15.2-Pool"},{"description":"openSUSE-Leap-15.2-NonOss-Pool","installer_updates":false,"name":"openSUSE-Leap-15.2-NonOss-Pool","distro_target":null,"autorefresh":false,"url":"http://download.opensuse.org/distribution/leap/15.2/repo/non-oss/","enabled":false,"id":4289}],"online_predecessor_ids":[1929],"product_class":"OPENSUSE","predecessor_ids":[1929],"arch":"x86_64","eula_url":"","free":false,"description":"openSUSE Leap 15.2","shortname":"openSUSE Leap"},{"online_predecessor_ids":[],"product_class":"SLES12-SP3-LTSS-ARM64","repositories":[{"name":"SLES12-SP3-LTSS-Updates","installer_updates":false,"description":"SLES12-SP3-LTSS-Updates for sle-12-aarch64","enabled":true,"id":4290,"autorefresh":true,"distro_target":"sle-12-aarch64","url":"https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-SP3-LTSS/aarch64/update/"},{"name":"SLES12-SP3-LTSS-Debuginfo-Updates","installer_updates":false,"description":"SLES12-SP3-LTSS-Debuginfo-Updates for sle-12-aarch64","enabled":false,"id":4291,"autorefresh":true,"distro_target":"sle-12-aarch64","url":"https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-SP3-LTSS/aarch64/update_debug/"}],"predecessor_ids":[],"cpe":"cpe:/o:suse:sles-ltss:12:sp3","product_type":"extension","shortname":"SLES12-SP3 LTSS","description":"SUSE Linux Enterprise offers a comprehensive suite of products built on a single code base. The platform addresses business needs from the smallest thin-client devices to the world's most powerful high-performance computing and mainframe servers. SUSE Linux Enterprise offers common management tools and technology certifications across the platform, and each product is enterprise-class.","free":false,"arch":"aarch64","eula_url":"","friendly_version":"12 SP3","release_stage":"released","id":2002,"identifier":"SLES-LTSS","extensions":[],"version":"12.3","recommended":false,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Server LTSS 12 SP3 aarch64","former_identifier":"SLES-LTSS","release_type":null,"name":"SUSE Linux Enterprise Server LTSS","offline_predecessor_ids":[]},{"eula_url":"https://updates.suse.com/SUSE/Products/SLE-Product-RT/15-SP2/x86_64/product.license/","arch":"x86_64","shortname":"SLE-15-SP2-RT","description":"

The SUSE Linux Enterprise Real Time aims to reduce the latency and increase the predictability and reliability of time-sensitive mission-critical applications.

","free":false,"cpe":"cpe:/o:suse:sle_rt:15:sp2","product_type":"base","predecessor_ids":[1861],"online_predecessor_ids":[1861],"product_class":"SUSE_RT","repositories":[{"id":4292,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-RT/15-SP2/x86_64/update/","distro_target":"sle-15-x86_64","autorefresh":true,"installer_updates":false,"name":"SLE-Product-RT-15-SP2-Updates","description":"SLE-Product-RT-15-SP2-Updates for sle-15-x86_64"},{"id":4293,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-RT/15-SP2/x86_64/update_debug/","distro_target":"sle-15-x86_64","autorefresh":true,"installer_updates":false,"name":"SLE-Product-RT15-SP2-Debuginfo-Updates","description":"SLE-Product-RT15-SP2-Debuginfo-Updates for sle-15-x86_64"},{"installer_updates":false,"name":"SLE-Product-RT-15-SP2-Pool","description":"SLE-Product-RT-15-SP2-Pool for sle-15-x86_64","enabled":true,"id":4294,"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-RT/15-SP2/x86_64/product/"},{"enabled":false,"id":4295,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Product-RT/15-SP2/x86_64/product_debug/","name":"SLE-Product-RT15-SP2-Debuginfo-Pool","installer_updates":false,"description":"SLE-Product-RT15-SP2-Debuginfo-Pool for sle-15-x86_64"},{"enabled":false,"id":4296,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Product-RT/15-SP2/x86_64/product_source/","name":"SLE-Product-RT15-SP2-Source-Pool","installer_updates":false,"description":"SLE-Product-RT15-SP2-Source-Pool for sle-15-x86_64"}],"name":"SUSE Linux Enterprise Real Time","offline_predecessor_ids":[],"friendly_name":"SUSE Linux Enterprise Real Time 15 SP2 x86_64","migration_extra":false,"former_identifier":"SLE_RT","release_type":null,"recommended":false,"version":"15.2","extensions":[{"eula_url":"","arch":"x86_64","description":"

The SUSE Linux Enterprise Basesystem Module delivers the base system of the product.

","shortname":"Basesystem-Module","free":true,"cpe":"cpe:/o:suse:sle-module-basesystem:15:sp2","product_type":"module","predecessor_ids":[1576,1772],"product_class":"MODULE","online_predecessor_ids":[1576,1772],"repositories":[{"id":3999,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15-SP2/x86_64/update/","distro_target":"sle-15-x86_64","autorefresh":true,"installer_updates":false,"name":"SLE-Module-Basesystem15-SP2-Updates","description":"SLE-Module-Basesystem15-SP2-Updates for sle-15-x86_64"},{"distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15-SP2/x86_64/update_debug/","enabled":false,"id":4000,"description":"SLE-Module-Basesystem15-SP2-Debuginfo-Updates for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Basesystem15-SP2-Debuginfo-Updates"},{"enabled":true,"id":4001,"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP2/x86_64/product/","installer_updates":false,"name":"SLE-Module-Basesystem15-SP2-Pool","description":"SLE-Module-Basesystem15-SP2-Pool for sle-15-x86_64"},{"installer_updates":false,"name":"SLE-Module-Basesystem15-SP2-Debuginfo-Pool","description":"SLE-Module-Basesystem15-SP2-Debuginfo-Pool for sle-15-x86_64","enabled":false,"id":4002,"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP2/x86_64/product_debug/"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP2/x86_64/product_source/","distro_target":"sle-15-x86_64","autorefresh":false,"id":4003,"enabled":false,"description":"SLE-Module-Basesystem15-SP2-Source-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Basesystem15-SP2-Source-Pool"}],"name":"Basesystem Module","offline_predecessor_ids":[1212,1368,1440],"friendly_name":"Basesystem Module 15 SP2 x86_64","migration_extra":false,"release_type":null,"former_identifier":"sle-module-basesystem","recommended":true,"version":"15.2","extensions":[{"product_class":"MODULE","online_predecessor_ids":[1580,1780],"repositories":[{"installer_updates":false,"name":"SLE-Module-Server-Applications15-SP2-Updates","description":"SLE-Module-Server-Applications15-SP2-Updates for sle-15-x86_64","enabled":true,"id":4056,"distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15-SP2/x86_64/update/"},{"id":4057,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15-SP2/x86_64/update_debug/","distro_target":"sle-15-x86_64","autorefresh":true,"installer_updates":false,"name":"SLE-Module-Server-Applications15-SP2-Debuginfo-Updates","description":"SLE-Module-Server-Applications15-SP2-Debuginfo-Updates for sle-15-x86_64"},{"installer_updates":false,"name":"SLE-Module-Server-Applications15-SP2-Pool","description":"SLE-Module-Server-Applications15-SP2-Pool for sle-15-x86_64","id":4058,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP2/x86_64/product/","distro_target":"sle-15-x86_64","autorefresh":false},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP2/x86_64/product_debug/","autorefresh":false,"distro_target":"sle-15-x86_64","id":4059,"enabled":false,"description":"SLE-Module-Server-Applications15-SP2-Debuginfo-Pool for sle-15-x86_64","name":"SLE-Module-Server-Applications15-SP2-Debuginfo-Pool","installer_updates":false},{"description":"SLE-Module-Server-Applications15-SP2-Source-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Server-Applications15-SP2-Source-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP2/x86_64/product_source/","distro_target":"sle-15-x86_64","autorefresh":false,"id":4060,"enabled":false}],"predecessor_ids":[1580,1780],"product_type":"module","cpe":"cpe:/o:suse:sle-module-server-applications:15:sp2","free":true,"description":"

The SUSE Linux Enterprise Server Applications Module delivers a basic set of Server functionality.

Access to the Server Applications Module is included in your SUSE Linux Enterprise Server subscription.

","shortname":"Server-Applications-Module","arch":"x86_64","eula_url":"","friendly_version":"15 SP2","release_stage":"released","identifier":"sle-module-server-applications","id":1955,"extensions":[{"version":"15.2","recommended":true,"friendly_name":"SUSE Real Time Module 15 SP2 x86_64","migration_extra":false,"release_type":null,"former_identifier":"sle-module-rt","name":"SUSE Real Time Module","offline_predecessor_ids":[],"friendly_version":"15 SP2","release_stage":"released","id":2005,"identifier":"sle-module-rt","extensions":[],"description":"

The SUSE Linux Enterprise Real Time aims to reduce the latency and increase the predictability and reliability of time-sensitive mission-critical applications.

Packages in this module are generally supported until a newer version of the package is released or the package is dropped from the module.

","shortname":"SUSE-Real-Time-Module","free":true,"arch":"x86_64","eula_url":"","online_predecessor_ids":[1862],"product_class":"MODULE","repositories":[{"id":4302,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-RT/15-SP2/x86_64/update/","distro_target":"sle-15-x86_64","autorefresh":true,"installer_updates":false,"name":"SLE-Module-RT15-SP2-Updates","description":"SLE-Module-RT15-SP2-Updates for sle-15-x86_64"},{"name":"SLE-Module-RT15-SP2-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-RT15-SP2-Debuginfo-Updates for sle-15-x86_64","id":4303,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-RT/15-SP2/x86_64/update_debug/","autorefresh":true,"distro_target":"sle-15-x86_64"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-RT/15-SP2/x86_64/product/","distro_target":"sle-15-x86_64","autorefresh":false,"id":4304,"enabled":true,"description":"SLE-Module-RT15-SP2-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-RT15-SP2-Pool"},{"description":"SLE-Module-RT15-SP2-Debuginfo-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-RT15-SP2-Debuginfo-Pool","distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-RT/15-SP2/x86_64/product_debug/","enabled":false,"id":4305},{"id":4306,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-RT/15-SP2/x86_64/product_source/","autorefresh":false,"distro_target":"sle-15-x86_64","name":"SLE-Module-RT15-SP2-Source-Pool","installer_updates":false,"description":"SLE-Module-RT15-SP2-Source-Pool for sle-15-x86_64"}],"predecessor_ids":[1862],"cpe":"cpe:/o:suse:sle-module-rt:15:sp2","product_type":"module"}],"version":"15.2","recommended":true,"former_identifier":"sle-module-server-applications","release_type":null,"migration_extra":false,"friendly_name":"Server Applications Module 15 SP2 x86_64","offline_predecessor_ids":[],"name":"Server Applications Module"},{"friendly_version":"15 SP2","identifier":"sle-module-desktop-applications","release_stage":"released","id":1967,"extensions":[{"predecessor_ids":[1579,1794],"online_predecessor_ids":[1579,1794],"product_class":"MODULE","repositories":[{"enabled":true,"id":4136,"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15-SP2/x86_64/update/","name":"SLE-Module-DevTools15-SP2-Updates","installer_updates":false,"description":"SLE-Module-DevTools15-SP2-Updates for sle-15-x86_64"},{"description":"SLE-Module-DevTools15-SP2-Debuginfo-Updates for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-DevTools15-SP2-Debuginfo-Updates","distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15-SP2/x86_64/update_debug/","enabled":false,"id":4137},{"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP2/x86_64/product/","enabled":true,"id":4138,"description":"SLE-Module-DevTools15-SP2-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-DevTools15-SP2-Pool"},{"installer_updates":false,"name":"SLE-Module-DevTools15-SP2-Debuginfo-Pool","description":"SLE-Module-DevTools15-SP2-Debuginfo-Pool for sle-15-x86_64","enabled":false,"id":4139,"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP2/x86_64/product_debug/"},{"id":4140,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP2/x86_64/product_source/","autorefresh":false,"distro_target":"sle-15-x86_64","name":"SLE-Module-DevTools15-SP2-Source-Pool","installer_updates":false,"description":"SLE-Module-DevTools15-SP2-Source-Pool for sle-15-x86_64"}],"product_type":"module","cpe":"cpe:/o:suse:sle-module-development-tools:15:sp2","free":true,"shortname":"Development-Tools-Module","description":"

The Development Tools Module helps you developing applications for SUSE Linux Enterprise 15.

Access to the Development Tools Module is included in your SUSE Linux Enterprise product subscription. The module has a different lifecycle than SUSE Linux Enterprise itself.

","eula_url":"","arch":"x86_64","friendly_version":"15 SP2","extensions":[],"id":1971,"release_stage":"released","identifier":"sle-module-development-tools","recommended":true,"version":"15.2","offline_predecessor_ids":[1341,1630,1892],"name":"Development Tools Module","release_type":null,"former_identifier":"sle-sdk","migration_extra":false,"friendly_name":"Development Tools Module 15 SP2 x86_64"}],"version":"15.2","recommended":true,"friendly_name":"Desktop Applications Module 15 SP2 x86_64","migration_extra":false,"former_identifier":"sle-module-desktop-applications","release_type":null,"name":"Desktop Applications Module","offline_predecessor_ids":[],"repositories":[{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15-SP2/x86_64/update/","distro_target":"sle-15-x86_64","autorefresh":true,"id":4116,"enabled":true,"description":"SLE-Module-Desktop-Applications15-SP2-Updates for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Desktop-Applications15-SP2-Updates"},{"enabled":false,"id":4117,"distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15-SP2/x86_64/update_debug/","installer_updates":false,"name":"SLE-Module-Desktop-Applications15-SP2-Debuginfo-Updates","description":"SLE-Module-Desktop-Applications15-SP2-Debuginfo-Updates for sle-15-x86_64"},{"enabled":true,"id":4118,"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP2/x86_64/product/","installer_updates":false,"name":"SLE-Module-Desktop-Applications15-SP2-Pool","description":"SLE-Module-Desktop-Applications15-SP2-Pool for sle-15-x86_64"},{"installer_updates":false,"name":"SLE-Module-Desktop-Applications15-SP2-Debuginfo-Pool","description":"SLE-Module-Desktop-Applications15-SP2-Debuginfo-Pool for sle-15-x86_64","enabled":false,"id":4119,"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP2/x86_64/product_debug/"},{"id":4120,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP2/x86_64/product_source/","distro_target":"sle-15-x86_64","autorefresh":false,"installer_updates":false,"name":"SLE-Module-Desktop-Applications15-SP2-Source-Pool","description":"SLE-Module-Desktop-Applications15-SP2-Source-Pool for sle-15-x86_64"}],"online_predecessor_ids":[1578,1776],"product_class":"MODULE","predecessor_ids":[1578,1776],"cpe":"cpe:/o:suse:sle-module-desktop-applications:15:sp2","product_type":"module","description":"

The SUSE Linux Enterprise Desktop Applications Module delivers a basic set of Desktop functionality.

Access to the Desktop Applications Module is included in your SUSE Linux Enterprise product subscription.

","shortname":"Desktop-Applications-Module","free":true,"arch":"x86_64","eula_url":""}],"identifier":"sle-module-basesystem","release_stage":"released","id":1946,"friendly_version":"15 SP2"}],"identifier":"SLE_RT","release_stage":"released","id":2003,"friendly_version":"15 SP2"},{"version":"15.2","recommended":false,"former_identifier":"SUSE_SLES_BCL","release_type":null,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Server Business Critical Linux 15 SP2 x86_64","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Server Business Critical Linux","friendly_version":"15 SP2","identifier":"SLES_BCL","release_stage":"released","id":2004,"extensions":[{"shortname":"Basesystem-Module","description":"

The SUSE Linux Enterprise Basesystem Module delivers the base system of the product.

","free":true,"arch":"x86_64","eula_url":"","product_class":"MODULE","online_predecessor_ids":[1576,1772],"repositories":[{"description":"SLE-Module-Basesystem15-SP2-Updates for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Basesystem15-SP2-Updates","distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15-SP2/x86_64/update/","enabled":true,"id":3999},{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15-SP2/x86_64/update_debug/","autorefresh":true,"distro_target":"sle-15-x86_64","id":4000,"enabled":false,"description":"SLE-Module-Basesystem15-SP2-Debuginfo-Updates for sle-15-x86_64","name":"SLE-Module-Basesystem15-SP2-Debuginfo-Updates","installer_updates":false},{"description":"SLE-Module-Basesystem15-SP2-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Basesystem15-SP2-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP2/x86_64/product/","distro_target":"sle-15-x86_64","autorefresh":false,"id":4001,"enabled":true},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP2/x86_64/product_debug/","autorefresh":false,"distro_target":"sle-15-x86_64","id":4002,"enabled":false,"description":"SLE-Module-Basesystem15-SP2-Debuginfo-Pool for sle-15-x86_64","name":"SLE-Module-Basesystem15-SP2-Debuginfo-Pool","installer_updates":false},{"installer_updates":false,"name":"SLE-Module-Basesystem15-SP2-Source-Pool","description":"SLE-Module-Basesystem15-SP2-Source-Pool for sle-15-x86_64","id":4003,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP2/x86_64/product_source/","distro_target":"sle-15-x86_64","autorefresh":false}],"predecessor_ids":[1576,1772],"cpe":"cpe:/o:suse:sle-module-basesystem:15:sp2","product_type":"module","version":"15.2","recommended":true,"migration_extra":false,"friendly_name":"Basesystem Module 15 SP2 x86_64","release_type":null,"former_identifier":"sle-module-basesystem","name":"Basesystem Module","offline_predecessor_ids":[1212,1368,1440],"friendly_version":"15 SP2","release_stage":"released","id":1946,"identifier":"sle-module-basesystem","extensions":[{"online_predecessor_ids":[1580,1780],"product_class":"MODULE","repositories":[{"installer_updates":false,"name":"SLE-Module-Server-Applications15-SP2-Updates","description":"SLE-Module-Server-Applications15-SP2-Updates for sle-15-x86_64","id":4056,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15-SP2/x86_64/update/","distro_target":"sle-15-x86_64","autorefresh":true},{"enabled":false,"id":4057,"distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15-SP2/x86_64/update_debug/","installer_updates":false,"name":"SLE-Module-Server-Applications15-SP2-Debuginfo-Updates","description":"SLE-Module-Server-Applications15-SP2-Debuginfo-Updates for sle-15-x86_64"},{"enabled":true,"id":4058,"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP2/x86_64/product/","installer_updates":false,"name":"SLE-Module-Server-Applications15-SP2-Pool","description":"SLE-Module-Server-Applications15-SP2-Pool for sle-15-x86_64"},{"installer_updates":false,"name":"SLE-Module-Server-Applications15-SP2-Debuginfo-Pool","description":"SLE-Module-Server-Applications15-SP2-Debuginfo-Pool for sle-15-x86_64","enabled":false,"id":4059,"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP2/x86_64/product_debug/"},{"description":"SLE-Module-Server-Applications15-SP2-Source-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Server-Applications15-SP2-Source-Pool","distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP2/x86_64/product_source/","enabled":false,"id":4060}],"predecessor_ids":[1580,1780],"cpe":"cpe:/o:suse:sle-module-server-applications:15:sp2","product_type":"module","description":"

The SUSE Linux Enterprise Server Applications Module delivers a basic set of Server functionality.

Access to the Server Applications Module is included in your SUSE Linux Enterprise Server subscription.

","shortname":"Server-Applications-Module","free":true,"arch":"x86_64","eula_url":"","friendly_version":"15 SP2","id":1955,"release_stage":"released","identifier":"sle-module-server-applications","extensions":[{"migration_extra":false,"friendly_name":"SUSE Linux Enterprise High Availability Extension 15 SP2 x86_64","former_identifier":"sle-ha","release_type":null,"name":"SUSE Linux Enterprise High Availability Extension","offline_predecessor_ids":[958,961,967,971,1101,1107,1256,1286,1634,1637,1884,1886],"version":"15.2","recommended":true,"identifier":"sle-ha","release_stage":"released","id":1959,"extensions":[],"friendly_version":"15 SP2","arch":"x86_64","eula_url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP2/x86_64/product.license/","shortname":"SLEHA15-SP2","description":"SUSE Linux High Availability Extension provides mature, industry-leading open-source high-availability clustering technologies that are easy to set up and use. It can be deployed in physical and/or virtual environments, and can cluster physical servers, virtual servers, or any combination of the two to suit your business’ needs.","free":false,"cpe":"cpe:/o:suse:sle-ha:15:sp2","product_type":"extension","online_predecessor_ids":[1582,1785],"product_class":"SLE-HAE-X86","repositories":[{"installer_updates":false,"name":"SLE-Product-HA15-SP2-Updates","description":"SLE-Product-HA15-SP2-Updates for sle-15-x86_64","id":4076,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-HA/15-SP2/x86_64/update/","distro_target":"sle-15-x86_64","autorefresh":true},{"name":"SLE-Product-HA15-SP2-Debuginfo-Updates","installer_updates":false,"description":"SLE-Product-HA15-SP2-Debuginfo-Updates for sle-15-x86_64","enabled":false,"id":4077,"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Product-HA/15-SP2/x86_64/update_debug/"},{"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP2/x86_64/product/","enabled":true,"id":4078,"description":"SLE-Product-HA15-SP2-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Product-HA15-SP2-Pool"},{"description":"SLE-Product-HA15-SP2-Debuginfo-Pool for sle-15-x86_64","name":"SLE-Product-HA15-SP2-Debuginfo-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP2/x86_64/product_debug/","autorefresh":false,"distro_target":"sle-15-x86_64","id":4079,"enabled":false},{"id":4080,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP2/x86_64/product_source/","autorefresh":false,"distro_target":"sle-15-x86_64","name":"SLE-Product-HA15-SP2-Source-Pool","installer_updates":false,"description":"SLE-Product-HA15-SP2-Source-Pool for sle-15-x86_64"}],"predecessor_ids":[1582,1785]},{"product_type":"module","cpe":"cpe:/o:suse:sle-module-web-scripting:15:sp2","online_predecessor_ids":[1721,1798],"repositories":[{"enabled":true,"id":4161,"distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/15-SP2/x86_64/update/","installer_updates":false,"name":"SLE-Module-Web-Scripting15-SP2-Updates","description":"SLE-Module-Web-Scripting15-SP2-Updates for sle-15-x86_64"},{"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/15-SP2/x86_64/update_debug/","enabled":false,"id":4162,"description":"SLE-Module-Web-Scripting15-SP2-Debuginfo-Updates for sle-15-x86_64","name":"SLE-Module-Web-Scripting15-SP2-Debuginfo-Updates","installer_updates":false},{"id":4163,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP2/x86_64/product/","autorefresh":false,"distro_target":"sle-15-x86_64","name":"SLE-Module-Web-Scripting15-SP2-Pool","installer_updates":false,"description":"SLE-Module-Web-Scripting15-SP2-Pool for sle-15-x86_64"},{"enabled":false,"id":4164,"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP2/x86_64/product_debug/","installer_updates":false,"name":"SLE-Module-Web-Scripting15-SP2-Debuginfo-Pool","description":"SLE-Module-Web-Scripting15-SP2-Debuginfo-Pool for sle-15-x86_64"},{"installer_updates":false,"name":"SLE-Module-Web-Scripting15-SP2-Source-Pool","description":"SLE-Module-Web-Scripting15-SP2-Source-Pool for sle-15-x86_64","enabled":false,"id":4165,"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP2/x86_64/product_source/"}],"product_class":"MODULE","predecessor_ids":[1721,1798],"arch":"x86_64","eula_url":"","free":true,"description":"

The SUSE Linux Enterprise Web and Scripting Module should contains additional packages that are helpful when running a webserver.

Access to the Web and Scripting Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself: Package versions in this module are usually supported for at most three years. We are planning to release more recent versions on a schedule of approximately 18 month; the exact dates may differ per package.

","shortname":"Web-Scripting-Module","release_stage":"released","identifier":"sle-module-web-scripting","id":1976,"extensions":[],"friendly_version":"15 SP2","release_type":null,"former_identifier":"sle-module-web-scripting","migration_extra":false,"friendly_name":"Web and Scripting Module 15 SP2 x86_64","offline_predecessor_ids":[1153],"name":"Web and Scripting Module","version":"15.2","recommended":false}],"version":"15.2","recommended":true,"migration_extra":false,"friendly_name":"Server Applications Module 15 SP2 x86_64","former_identifier":"sle-module-server-applications","release_type":null,"name":"Server Applications Module","offline_predecessor_ids":[]},{"eula_url":"","arch":"x86_64","free":true,"description":"

This Module contains several packages revolving around containers and related tools.

","shortname":"Containers-Module","product_type":"module","cpe":"cpe:/o:suse:sle-module-containers:15:sp2","predecessor_ids":[1642,1790],"online_predecessor_ids":[1642,1790],"product_class":"MODULE","repositories":[{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/15-SP2/x86_64/update/","distro_target":"sle-15-x86_64","autorefresh":true,"id":4096,"enabled":true,"description":"SLE-Module-Containers15-SP2-Updates for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Containers15-SP2-Updates"},{"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/15-SP2/x86_64/update_debug/","enabled":false,"id":4097,"description":"SLE-Module-Containers15-SP2-Debuginfo-Updates for sle-15-x86_64","name":"SLE-Module-Containers15-SP2-Debuginfo-Updates","installer_updates":false},{"id":4098,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP2/x86_64/product/","autorefresh":false,"distro_target":"sle-15-x86_64","name":"SLE-Module-Containers15-SP2-Pool","installer_updates":false,"description":"SLE-Module-Containers15-SP2-Pool for sle-15-x86_64"},{"description":"SLE-Module-Containers15-SP2-Debuginfo-Pool for sle-15-x86_64","name":"SLE-Module-Containers15-SP2-Debuginfo-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP2/x86_64/product_debug/","autorefresh":false,"distro_target":"sle-15-x86_64","id":4099,"enabled":false},{"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP2/x86_64/product_source/","enabled":false,"id":4100,"description":"SLE-Module-Containers15-SP2-Source-Pool for sle-15-x86_64","name":"SLE-Module-Containers15-SP2-Source-Pool","installer_updates":false}],"offline_predecessor_ids":[1332],"name":"Containers Module","former_identifier":"sle-module-containers","release_type":null,"migration_extra":false,"friendly_name":"Containers Module 15 SP2 x86_64","recommended":false,"version":"15.2","extensions":[],"release_stage":"released","identifier":"sle-module-containers","id":1963,"friendly_version":"15 SP2"},{"release_stage":"released","id":1967,"identifier":"sle-module-desktop-applications","extensions":[{"product_class":"MODULE","online_predecessor_ids":[1579,1794],"repositories":[{"enabled":true,"id":4136,"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15-SP2/x86_64/update/","name":"SLE-Module-DevTools15-SP2-Updates","installer_updates":false,"description":"SLE-Module-DevTools15-SP2-Updates for sle-15-x86_64"},{"description":"SLE-Module-DevTools15-SP2-Debuginfo-Updates for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-DevTools15-SP2-Debuginfo-Updates","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15-SP2/x86_64/update_debug/","distro_target":"sle-15-x86_64","autorefresh":true,"id":4137,"enabled":false},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP2/x86_64/product/","distro_target":"sle-15-x86_64","autorefresh":false,"id":4138,"enabled":true,"description":"SLE-Module-DevTools15-SP2-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-DevTools15-SP2-Pool"},{"id":4139,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP2/x86_64/product_debug/","distro_target":"sle-15-x86_64","autorefresh":false,"installer_updates":false,"name":"SLE-Module-DevTools15-SP2-Debuginfo-Pool","description":"SLE-Module-DevTools15-SP2-Debuginfo-Pool for sle-15-x86_64"},{"enabled":false,"id":4140,"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP2/x86_64/product_source/","installer_updates":false,"name":"SLE-Module-DevTools15-SP2-Source-Pool","description":"SLE-Module-DevTools15-SP2-Source-Pool for sle-15-x86_64"}],"predecessor_ids":[1579,1794],"product_type":"module","cpe":"cpe:/o:suse:sle-module-development-tools:15:sp2","free":true,"description":"

The Development Tools Module helps you developing applications for SUSE Linux Enterprise 15.

Access to the Development Tools Module is included in your SUSE Linux Enterprise product subscription. The module has a different lifecycle than SUSE Linux Enterprise itself.

","shortname":"Development-Tools-Module","arch":"x86_64","eula_url":"","friendly_version":"15 SP2","release_stage":"released","id":1971,"identifier":"sle-module-development-tools","extensions":[],"version":"15.2","recommended":false,"former_identifier":"sle-sdk","release_type":null,"migration_extra":false,"friendly_name":"Development Tools Module 15 SP2 x86_64","offline_predecessor_ids":[1341,1630,1892],"name":"Development Tools Module"}],"friendly_version":"15 SP2","release_type":null,"former_identifier":"sle-module-desktop-applications","migration_extra":false,"friendly_name":"Desktop Applications Module 15 SP2 x86_64","offline_predecessor_ids":[],"name":"Desktop Applications Module","version":"15.2","recommended":false,"product_type":"module","cpe":"cpe:/o:suse:sle-module-desktop-applications:15:sp2","product_class":"MODULE","online_predecessor_ids":[1578,1776],"repositories":[{"description":"SLE-Module-Desktop-Applications15-SP2-Updates for sle-15-x86_64","name":"SLE-Module-Desktop-Applications15-SP2-Updates","installer_updates":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15-SP2/x86_64/update/","autorefresh":true,"distro_target":"sle-15-x86_64","id":4116,"enabled":true},{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15-SP2/x86_64/update_debug/","autorefresh":true,"distro_target":"sle-15-x86_64","id":4117,"enabled":false,"description":"SLE-Module-Desktop-Applications15-SP2-Debuginfo-Updates for sle-15-x86_64","name":"SLE-Module-Desktop-Applications15-SP2-Debuginfo-Updates","installer_updates":false},{"name":"SLE-Module-Desktop-Applications15-SP2-Pool","installer_updates":false,"description":"SLE-Module-Desktop-Applications15-SP2-Pool for sle-15-x86_64","enabled":true,"id":4118,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP2/x86_64/product/"},{"installer_updates":false,"name":"SLE-Module-Desktop-Applications15-SP2-Debuginfo-Pool","description":"SLE-Module-Desktop-Applications15-SP2-Debuginfo-Pool for sle-15-x86_64","id":4119,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP2/x86_64/product_debug/","distro_target":"sle-15-x86_64","autorefresh":false},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP2/x86_64/product_source/","autorefresh":false,"distro_target":"sle-15-x86_64","id":4120,"enabled":false,"description":"SLE-Module-Desktop-Applications15-SP2-Source-Pool for sle-15-x86_64","name":"SLE-Module-Desktop-Applications15-SP2-Source-Pool","installer_updates":false}],"predecessor_ids":[1578,1776],"arch":"x86_64","eula_url":"","free":true,"shortname":"Desktop-Applications-Module","description":"

The SUSE Linux Enterprise Desktop Applications Module delivers a basic set of Desktop functionality.

Access to the Desktop Applications Module is included in your SUSE Linux Enterprise product subscription.

"},{"migration_extra":false,"friendly_name":"Transactional Server Module 15 SP2 x86_64","release_type":null,"former_identifier":"sle-module-transactional-server","name":"Transactional Server Module","offline_predecessor_ids":[],"version":"15.2","recommended":false,"release_stage":"released","identifier":"sle-module-transactional-server","id":1998,"extensions":[],"friendly_version":"15 SP2","arch":"x86_64","eula_url":"","description":"

Transactional Updates provide SUSE Linux Enterprise systems with a method of updating the operating system and its packages in an entirely ‘atomic’ way. Updates are either applied to the system all together in a single transaction, or not at all. This happens without influencing the running system. If an update fails, or if the successful update is deemed to be incompatible or otherwise incorrect, it can be discarded to immediately return the system to its previous functioning state.

Access to theTransactional Server Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself: Package versions in the this module are usually supported for at most three years. We are planning to release more recent versions on a schedule of approximately 18 month; the exact dates may differ per package.

","shortname":"Transactional-Server-Module","free":true,"cpe":"cpe:/o:suse:sle-module-transactional-server:15:sp2","product_type":"module","online_predecessor_ids":[1825],"repositories":[{"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Transactional-Server/15-SP2/x86_64/update/","enabled":true,"id":4271,"description":"SLE-Module-Transactional-Server15-SP2-Updates for sle-15-x86_64","name":"SLE-Module-Transactional-Server15-SP2-Updates","installer_updates":false},{"description":"SLE-Module-Transactional-Server15-SP2-Debuginfo-Updates for sle-15-x86_64","name":"SLE-Module-Transactional-Server15-SP2-Debuginfo-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Transactional-Server/15-SP2/x86_64/update_debug/","enabled":false,"id":4272},{"id":4273,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Transactional-Server/15-SP2/x86_64/product/","autorefresh":false,"distro_target":"sle-15-x86_64","name":"SLE-Module-Transactional-Server15-SP2-Pool","installer_updates":false,"description":"SLE-Module-Transactional-Server15-SP2-Pool for sle-15-x86_64"},{"id":4274,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Transactional-Server/15-SP2/x86_64/product_debug/","autorefresh":false,"distro_target":"sle-15-x86_64","name":"SLE-Module-Transactional-Server15-SP2-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-Transactional-Server15-SP2-Debuginfo-Pool for sle-15-x86_64"},{"id":4275,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Transactional-Server/15-SP2/x86_64/product_source/","autorefresh":false,"distro_target":"sle-15-x86_64","name":"SLE-Module-Transactional-Server15-SP2-Source-Pool","installer_updates":false,"description":"SLE-Module-Transactional-Server15-SP2-Source-Pool for sle-15-x86_64"}],"product_class":"MODULE","predecessor_ids":[1825]},{"offline_predecessor_ids":[1678],"name":"SUSE Cloud Application Platform Tools Module","release_type":null,"former_identifier":"sle-module-cap-tools","migration_extra":false,"friendly_name":"SUSE Cloud Application Platform Tools Module 15 SP2 x86_64","recommended":false,"version":"15.2","extensions":[],"id":2075,"release_stage":"released","identifier":"sle-module-cap-tools","friendly_version":"15 SP2","eula_url":"","arch":"x86_64","free":true,"shortname":"SUSE-CAP-Tools-Module","description":"

The SUSE Cloud Application Platform Tools Module is a collection of tools that enables you to interact with the SUSE Cloud Application Platform product itself, providing the commandline client for instance.

Access to the SUSE Cloud Application Platform Tools Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself; please check the Release Notes for further details.

","product_type":"module","cpe":"cpe:/o:suse:sle-module-cap-tools:15:sp2","predecessor_ids":[1728,1809],"repositories":[{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-CAP-Tools/15-SP2/x86_64/update/","distro_target":"sle-15-x86_64","autorefresh":true,"id":4424,"enabled":true,"description":"SLE-Module-CAP-Tools15-SP2-Updates for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-CAP-Tools15-SP2-Updates"},{"description":"SLE-Module-CAP-Tools15-SP2-Debuginfo-Updates for sle-15-x86_64","name":"SLE-Module-CAP-Tools15-SP2-Debuginfo-Updates","installer_updates":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-CAP-Tools/15-SP2/x86_64/update_debug/","autorefresh":true,"distro_target":"sle-15-x86_64","id":4425,"enabled":false},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-CAP-Tools/15-SP2/x86_64/product/","distro_target":"sle-15-x86_64","autorefresh":false,"id":4426,"enabled":true,"description":"SLE-Module-CAP-Tools15-SP2-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-CAP-Tools15-SP2-Pool"},{"description":"SLE-Module-CAP-Tools15-SP2-Debuginfo-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-CAP-Tools15-SP2-Debuginfo-Pool","distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-CAP-Tools/15-SP2/x86_64/product_debug/","enabled":false,"id":4427},{"description":"SLE-Module-CAP-Tools15-SP2-Source-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-CAP-Tools15-SP2-Source-Pool","distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-CAP-Tools/15-SP2/x86_64/product_source/","enabled":false,"id":4428}],"online_predecessor_ids":[1728,1809],"product_class":"MODULE"}]}],"free":false,"description":"SUSE Linux Enterprise offers a comprehensive suite of products built on a single code base. The platform addresses business needs from the smallest thin-client devices to the world's most powerful high-performance computing and mainframe servers. SUSE Linux Enterprise offers common management tools and technology certifications across the platform, and each product is enterprise-class.","shortname":"SLE-15-SP2-BCL","arch":"x86_64","eula_url":"https://updates.suse.com/SUSE/Products/SLE-Product-SLES/15-SP2-BCL/x86_64/product.license/","repositories":[{"installer_updates":false,"name":"SLE-Product-SLES-BCL15-SP2-Updates","description":"SLE-Product-SLES-BCL15-SP2-Updates for sle-15-x86_64","enabled":true,"id":4926,"distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-SLES/15-SP2-BCL/x86_64/update/"},{"name":"SLE-Product-SLES-BCL15-SP2-Debuginfo-Updates","installer_updates":false,"description":"SLE-Product-SLES-BCL15-SP2-Debuginfo-Updates for sle-15-x86_64","enabled":false,"id":4927,"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Product-SLES/15-SP2-BCL/x86_64/update_debug/"},{"enabled":true,"id":4928,"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-SLES/15-SP2-BCL/x86_64/product/","installer_updates":false,"name":"SLE-Product-SLES-BCL15-SP2-Pool","description":"SLE-Product-SLES-BCL15-SP2-Pool for sle-15-x86_64"},{"installer_updates":false,"name":"SLE-Product-SLES-BCL15-SP2-Debuginfo-Pool","description":"SLE-Product-SLES-BCL15-SP2-Debuginfo-Pool for sle-15-x86_64","id":4929,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-SLES/15-SP2-BCL/x86_64/product_debug/","distro_target":"sle-15-x86_64","autorefresh":false},{"installer_updates":false,"name":"SLE-Product-SLES-BCL15-SP2-Source-Pool","description":"SLE-Product-SLES-BCL15-SP2-Source-Pool for sle-15-x86_64","enabled":false,"id":4930,"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-SLES/15-SP2-BCL/x86_64/product_source/"}],"online_predecessor_ids":[1902],"product_class":"BCL-X86","predecessor_ids":[1902],"product_type":"base","cpe":"cpe:/o:suse:sles_bcl:15:sp2"},{"product_type":"module","cpe":"cpe:/o:suse:sle-module-rt:15:sp2","predecessor_ids":[1862],"repositories":[{"name":"SLE-Module-RT15-SP2-Updates","installer_updates":false,"description":"SLE-Module-RT15-SP2-Updates for sle-15-x86_64","enabled":true,"id":4302,"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-RT/15-SP2/x86_64/update/"},{"name":"SLE-Module-RT15-SP2-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-RT15-SP2-Debuginfo-Updates for sle-15-x86_64","id":4303,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-RT/15-SP2/x86_64/update_debug/","autorefresh":true,"distro_target":"sle-15-x86_64"},{"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-RT/15-SP2/x86_64/product/","enabled":true,"id":4304,"description":"SLE-Module-RT15-SP2-Pool for sle-15-x86_64","name":"SLE-Module-RT15-SP2-Pool","installer_updates":false},{"enabled":false,"id":4305,"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-RT/15-SP2/x86_64/product_debug/","installer_updates":false,"name":"SLE-Module-RT15-SP2-Debuginfo-Pool","description":"SLE-Module-RT15-SP2-Debuginfo-Pool for sle-15-x86_64"},{"description":"SLE-Module-RT15-SP2-Source-Pool for sle-15-x86_64","name":"SLE-Module-RT15-SP2-Source-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-RT/15-SP2/x86_64/product_source/","enabled":false,"id":4306}],"online_predecessor_ids":[1862],"product_class":"MODULE","eula_url":"","arch":"x86_64","free":true,"description":"

The SUSE Linux Enterprise Real Time aims to reduce the latency and increase the predictability and reliability of time-sensitive mission-critical applications.

Packages in this module are generally supported until a newer version of the package is released or the package is dropped from the module.

","shortname":"SUSE-Real-Time-Module","extensions":[],"id":2005,"release_stage":"released","identifier":"sle-module-rt","friendly_version":"15 SP2","offline_predecessor_ids":[],"name":"SUSE Real Time Module","former_identifier":"sle-module-rt","release_type":null,"migration_extra":false,"friendly_name":"SUSE Real Time Module 15 SP2 x86_64","recommended":false,"version":"15.2"},{"name":"SUSE Linux Enterprise Real Time","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Real Time 12 SP5 x86_64","release_type":null,"former_identifier":"SUSE-Linux-Enterprise-RT","recommended":false,"version":"12.5","extensions":[],"id":2006,"release_stage":"released","identifier":"SUSE-Linux-Enterprise-RT","friendly_version":"12 SP5","eula_url":"https://updates.suse.com/SUSE/Products/SLE-RT/12-SP5/x86_64/product.license/","arch":"x86_64","description":"SUSE Linux Enterprise Real Time 12 SP5.","shortname":"SLERT12 SP5","free":false,"cpe":"cpe:/o:suse:suse-linux-enterprise-rt:12:sp5","product_type":"extension","predecessor_ids":[1924],"online_predecessor_ids":[1924],"product_class":"SUSE_RT","repositories":[{"installer_updates":false,"name":"SLE-RT12-SP5-Updates","description":"SLE-RT12-SP5-Updates for sle-12-x86_64","enabled":true,"id":4307,"distro_target":"sle-12-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-RT/12-SP5/x86_64/update/"},{"name":"SLE-RT12-SP5-Debuginfo-Updates","installer_updates":false,"description":"SLE-RT12-SP5-Debuginfo-Updates for sle-12-x86_64","id":4308,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-RT/12-SP5/x86_64/update_debug/","autorefresh":true,"distro_target":"sle-12-x86_64"},{"id":4309,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-RT/12-SP5/x86_64/product/","autorefresh":false,"distro_target":"sle-12-x86_64","name":"SLE-RT12-SP5-Pool","installer_updates":false,"description":"SLE-RT12-SP5-Pool for sle-12-x86_64"},{"autorefresh":false,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-RT/12-SP5/x86_64/product_debug/","enabled":false,"id":4310,"description":"SLE-RT12-SP5-Debuginfo-Pool for sle-12-x86_64","name":"SLE-RT12-SP5-Debuginfo-Pool","installer_updates":false}]},{"offline_predecessor_ids":[],"name":"SUSE Manager Client Tools for RHEL, Liberty and Clones","release_type":null,"former_identifier":"res-managertools","friendly_name":"SUSE Manager Client Tools for RHEL, Liberty and Clones 8 x86_64","migration_extra":false,"recommended":false,"version":"8","extensions":[],"release_stage":"released","id":2007,"identifier":"res-managertools","friendly_version":"8","eula_url":"","arch":"x86_64","free":false,"description":"SUSE Manager Client Tools for RHEL, Liberty and Clones 8","shortname":"Manager-Tools","product_type":"extension","cpe":"cpe:/o:suse:res-managertools:8","predecessor_ids":[],"repositories":[{"name":"RES8-Manager-Tools-Updates","installer_updates":false,"description":"RES8-Manager-Tools-Updates for x86_64","id":4311,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/RES/8-CLIENT-TOOLS/x86_64/update/","autorefresh":true,"distro_target":"x86_64"},{"name":"RES8-Manager-Tools-Debuginfo-Updates","installer_updates":false,"description":"RES8-Manager-Tools-Debuginfo-Updates for x86_64","id":4312,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/RES/8-CLIENT-TOOLS/x86_64/update_debug/","autorefresh":true,"distro_target":"x86_64"},{"distro_target":"x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/RES/8-CLIENT-TOOLS/x86_64/product/","enabled":true,"id":4313,"description":"RES8-Manager-Tools-Pool for x86_64","installer_updates":false,"name":"RES8-Manager-Tools-Pool"},{"enabled":false,"id":4314,"distro_target":"x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/RES/8-CLIENT-TOOLS/x86_64/product_debug/","installer_updates":false,"name":"RES8-Manager-Tools-Debuginfo-Pool","description":"RES8-Manager-Tools-Debuginfo-Pool for x86_64"},{"name":"RES8-Manager-Tools-Source-Pool","installer_updates":false,"description":"RES8-Manager-Tools-Source-Pool for x86_64","id":4315,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/RES/8-CLIENT-TOOLS/x86_64/product_source/","autorefresh":false,"distro_target":"x86_64"}],"online_predecessor_ids":[],"product_class":"SLE-M-T"},{"friendly_name":"SUSE Manager Proxy 4.1 x86_64","migration_extra":false,"release_type":null,"former_identifier":"SUSE-Manager-Proxy","name":"SUSE Manager Proxy","offline_predecessor_ids":[],"version":"4.1","recommended":false,"release_stage":"released","identifier":"SUSE-Manager-Proxy","id":2009,"extensions":[{"name":"Basesystem Module","offline_predecessor_ids":[1212,1368,1440],"migration_extra":false,"friendly_name":"Basesystem Module 15 SP2 x86_64","release_type":null,"former_identifier":"sle-module-basesystem","recommended":true,"version":"15.2","extensions":[{"recommended":false,"version":"15.2","offline_predecessor_ids":[1813,1915],"name":"SUSE Package Hub","release_type":null,"former_identifier":"PackageHub","migration_extra":false,"friendly_name":"SUSE Package Hub 15 SP2 x86_64","friendly_version":"15 SP2","extensions":[],"release_stage":"released","id":1950,"identifier":"PackageHub","free":true,"description":"SUSE Package Hub is a free of charge extension providing access to community maintained packages built to run on SUSE Linux Enterprise Server. Built from the same sources used in the openSUSE distributions, these quality packages provide additional software to what is found in the SUSE Linux Enterprise Server product. Packages from the Package Hub are delivered without L3 support from SUSE. General updates and fixes to the packages in SUSE Package Hub are provided by the openSUSE community based on their discretion, though SUSE will monitor and ensure that any known critical security issues will be addressed. Packages in the Package Hub are approved by SUSE for use with SUSE Linux Enterprise Server 15-SP2 and to not interfere with the supportability of SUSE Linux Enterprise Server, its modules and extensions. For more information about SUSE Package Hub please visit https://packagehub.suse.com.","shortname":"SUSE-PackageHub-15","eula_url":"","arch":"x86_64","predecessor_ids":[1743,1871],"repositories":[{"id":4028,"enabled":true,"url":"https://updates.suse.com/SUSE/Backports/SLE-15-SP2_x86_64/standard/","distro_target":"sle-15-x86_64","autorefresh":false,"installer_updates":false,"name":"SUSE-PackageHub-15-SP2-Backports-Pool","description":"SUSE-PackageHub-15-SP2-Backports-Pool for sle-15-x86_64"},{"enabled":false,"id":4029,"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Backports/SLE-15-SP2_x86_64/standard_debug/","name":"SUSE-PackageHub-15-SP2-Backports-Debuginfo","installer_updates":false,"description":"SUSE-PackageHub-15-SP2-Backports-Debuginfo for sle-15-x86_64"},{"description":"SLE-Module-Packagehub-Subpackages15-SP2-Updates for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Packagehub-Subpackages15-SP2-Updates","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP2/x86_64/update/","distro_target":"sle-15-x86_64","autorefresh":true,"id":4030,"enabled":true},{"distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP2/x86_64/update_debug/","enabled":false,"id":4031,"description":"SLE-Module-Packagehub-Subpackages15-SP2-Debuginfo-Updates for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Packagehub-Subpackages15-SP2-Debuginfo-Updates"},{"enabled":true,"id":4032,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Backports/SLE-15-SP2_x86_64/product/","name":"SUSE-PackageHub-15-SP2-Pool","installer_updates":false,"description":"SUSE-PackageHub-15-SP2-Pool for sle-15-x86_64"},{"id":4033,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP2/x86_64/product/","autorefresh":false,"distro_target":"sle-15-x86_64","name":"SLE-Module-Packagehub-Subpackages15-SP2-Pool","installer_updates":false,"description":"SLE-Module-Packagehub-Subpackages15-SP2-Pool for sle-15-x86_64"},{"id":4034,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP2/x86_64/product_debug/","autorefresh":false,"distro_target":"sle-15-x86_64","name":"SLE-Module-Packagehub-Subpackages15-SP2-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-Packagehub-Subpackages15-SP2-Debuginfo-Pool for sle-15-x86_64"},{"installer_updates":false,"name":"SLE-Module-Packagehub-Subpackages15-SP2-Source-Pool","description":"SLE-Module-Packagehub-Subpackages15-SP2-Source-Pool for sle-15-x86_64","enabled":false,"id":4035,"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP2/x86_64/product_source/"}],"online_predecessor_ids":[1743,1871],"product_class":"MODULE","product_type":"extension","cpe":"cpe:/o:suse:packagehub:15:sp2"},{"arch":"x86_64","eula_url":"","description":"

The SUSE Linux Enterprise Server Applications Module delivers a basic set of Server functionality.

Access to the Server Applications Module is included in your SUSE Linux Enterprise Server subscription.

","shortname":"Server-Applications-Module","free":true,"cpe":"cpe:/o:suse:sle-module-server-applications:15:sp2","product_type":"module","product_class":"MODULE","online_predecessor_ids":[1580,1780],"repositories":[{"distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15-SP2/x86_64/update/","enabled":true,"id":4056,"description":"SLE-Module-Server-Applications15-SP2-Updates for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Server-Applications15-SP2-Updates"},{"installer_updates":false,"name":"SLE-Module-Server-Applications15-SP2-Debuginfo-Updates","description":"SLE-Module-Server-Applications15-SP2-Debuginfo-Updates for sle-15-x86_64","enabled":false,"id":4057,"distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15-SP2/x86_64/update_debug/"},{"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP2/x86_64/product/","enabled":true,"id":4058,"description":"SLE-Module-Server-Applications15-SP2-Pool for sle-15-x86_64","name":"SLE-Module-Server-Applications15-SP2-Pool","installer_updates":false},{"installer_updates":false,"name":"SLE-Module-Server-Applications15-SP2-Debuginfo-Pool","description":"SLE-Module-Server-Applications15-SP2-Debuginfo-Pool for sle-15-x86_64","id":4059,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP2/x86_64/product_debug/","distro_target":"sle-15-x86_64","autorefresh":false},{"id":4060,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP2/x86_64/product_source/","autorefresh":false,"distro_target":"sle-15-x86_64","name":"SLE-Module-Server-Applications15-SP2-Source-Pool","installer_updates":false,"description":"SLE-Module-Server-Applications15-SP2-Source-Pool for sle-15-x86_64"}],"predecessor_ids":[1580,1780],"migration_extra":false,"friendly_name":"Server Applications Module 15 SP2 x86_64","release_type":null,"former_identifier":"sle-module-server-applications","name":"Server Applications Module","offline_predecessor_ids":[],"version":"15.2","recommended":true,"id":1955,"release_stage":"released","identifier":"sle-module-server-applications","extensions":[{"arch":"x86_64","eula_url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP2/x86_64/product.license/","free":false,"description":"SUSE Linux High Availability Extension provides mature, industry-leading open-source high-availability clustering technologies that are easy to set up and use. It can be deployed in physical and/or virtual environments, and can cluster physical servers, virtual servers, or any combination of the two to suit your business’ needs.","shortname":"SLEHA15-SP2","product_type":"extension","cpe":"cpe:/o:suse:sle-ha:15:sp2","online_predecessor_ids":[1582,1785],"product_class":"SLE-HAE-X86","repositories":[{"id":4076,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-HA/15-SP2/x86_64/update/","distro_target":"sle-15-x86_64","autorefresh":true,"installer_updates":false,"name":"SLE-Product-HA15-SP2-Updates","description":"SLE-Product-HA15-SP2-Updates for sle-15-x86_64"},{"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-HA/15-SP2/x86_64/update_debug/","autorefresh":true,"distro_target":"sle-15-x86_64","id":4077,"enabled":false,"description":"SLE-Product-HA15-SP2-Debuginfo-Updates for sle-15-x86_64","name":"SLE-Product-HA15-SP2-Debuginfo-Updates","installer_updates":false},{"id":4078,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP2/x86_64/product/","autorefresh":false,"distro_target":"sle-15-x86_64","name":"SLE-Product-HA15-SP2-Pool","installer_updates":false,"description":"SLE-Product-HA15-SP2-Pool for sle-15-x86_64"},{"description":"SLE-Product-HA15-SP2-Debuginfo-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Product-HA15-SP2-Debuginfo-Pool","distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP2/x86_64/product_debug/","enabled":false,"id":4079},{"enabled":false,"id":4080,"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP2/x86_64/product_source/","installer_updates":false,"name":"SLE-Product-HA15-SP2-Source-Pool","description":"SLE-Product-HA15-SP2-Source-Pool for sle-15-x86_64"}],"predecessor_ids":[1582,1785],"former_identifier":"sle-ha","release_type":null,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise High Availability Extension 15 SP2 x86_64","offline_predecessor_ids":[958,961,967,971,1101,1107,1256,1286,1634,1637,1884,1886],"name":"SUSE Linux Enterprise High Availability Extension","version":"15.2","recommended":false,"release_stage":"released","identifier":"sle-ha","id":1959,"extensions":[],"friendly_version":"15 SP2"},{"predecessor_ids":[1721,1798],"online_predecessor_ids":[1721,1798],"repositories":[{"installer_updates":false,"name":"SLE-Module-Web-Scripting15-SP2-Updates","description":"SLE-Module-Web-Scripting15-SP2-Updates for sle-15-x86_64","enabled":true,"id":4161,"distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/15-SP2/x86_64/update/"},{"name":"SLE-Module-Web-Scripting15-SP2-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-Web-Scripting15-SP2-Debuginfo-Updates for sle-15-x86_64","id":4162,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/15-SP2/x86_64/update_debug/","autorefresh":true,"distro_target":"sle-15-x86_64"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP2/x86_64/product/","autorefresh":false,"distro_target":"sle-15-x86_64","id":4163,"enabled":true,"description":"SLE-Module-Web-Scripting15-SP2-Pool for sle-15-x86_64","name":"SLE-Module-Web-Scripting15-SP2-Pool","installer_updates":false},{"installer_updates":false,"name":"SLE-Module-Web-Scripting15-SP2-Debuginfo-Pool","description":"SLE-Module-Web-Scripting15-SP2-Debuginfo-Pool for sle-15-x86_64","id":4164,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP2/x86_64/product_debug/","distro_target":"sle-15-x86_64","autorefresh":false},{"enabled":false,"id":4165,"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP2/x86_64/product_source/","installer_updates":false,"name":"SLE-Module-Web-Scripting15-SP2-Source-Pool","description":"SLE-Module-Web-Scripting15-SP2-Source-Pool for sle-15-x86_64"}],"product_class":"MODULE","cpe":"cpe:/o:suse:sle-module-web-scripting:15:sp2","product_type":"module","shortname":"Web-Scripting-Module","description":"

The SUSE Linux Enterprise Web and Scripting Module should contains additional packages that are helpful when running a webserver.

Access to the Web and Scripting Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself: Package versions in this module are usually supported for at most three years. We are planning to release more recent versions on a schedule of approximately 18 month; the exact dates may differ per package.

","free":true,"eula_url":"","arch":"x86_64","friendly_version":"15 SP2","extensions":[],"id":1976,"release_stage":"released","identifier":"sle-module-web-scripting","recommended":false,"version":"15.2","name":"Web and Scripting Module","offline_predecessor_ids":[1153],"migration_extra":false,"friendly_name":"Web and Scripting Module 15 SP2 x86_64","release_type":null,"former_identifier":"sle-module-web-scripting"},{"recommended":false,"version":"15.2","name":"Legacy Module","offline_predecessor_ids":[1150],"friendly_name":"Legacy Module 15 SP2 x86_64","migration_extra":false,"release_type":null,"former_identifier":"sle-module-legacy","friendly_version":"15 SP2","extensions":[],"identifier":"sle-module-legacy","release_stage":"released","id":1982,"shortname":"Legacy-Module","description":"

The Legacy Module helps you migrating applications from SUSE Linux Enterprise 12 and other systems to SUSE Linux Enterprise 15, by providing packages which are discontinued on SUSE Linux Enterprise Server, such as: ntp, IBM Java 8, and a number of libraries.

Access to the Legacy Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself. Packages in the this module are usually supported for at most three years.

","free":true,"eula_url":"","arch":"x86_64","predecessor_ids":[1581,1804],"product_class":"MODULE","online_predecessor_ids":[1581,1804],"repositories":[{"description":"SLE-Module-Legacy15-SP2-Updates for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Legacy15-SP2-Updates","distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/15-SP2/x86_64/update/","enabled":true,"id":4191},{"id":4192,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/15-SP2/x86_64/update_debug/","distro_target":"sle-15-x86_64","autorefresh":true,"installer_updates":false,"name":"SLE-Module-Legacy15-SP2-Debuginfo-Updates","description":"SLE-Module-Legacy15-SP2-Debuginfo-Updates for sle-15-x86_64"},{"enabled":true,"id":4193,"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15-SP2/x86_64/product/","installer_updates":false,"name":"SLE-Module-Legacy15-SP2-Pool","description":"SLE-Module-Legacy15-SP2-Pool for sle-15-x86_64"},{"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15-SP2/x86_64/product_debug/","enabled":false,"id":4194,"description":"SLE-Module-Legacy15-SP2-Debuginfo-Pool for sle-15-x86_64","name":"SLE-Module-Legacy15-SP2-Debuginfo-Pool","installer_updates":false},{"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15-SP2/x86_64/product_source/","enabled":false,"id":4195,"description":"SLE-Module-Legacy15-SP2-Source-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Legacy15-SP2-Source-Pool"}],"cpe":"cpe:/o:suse:sle-module-legacy:15:sp2","product_type":"module"},{"friendly_version":"15 SP2","extensions":[],"id":1988,"release_stage":"released","identifier":"sle-module-public-cloud","recommended":false,"version":"15.2","name":"Public Cloud Module","offline_predecessor_ids":[1220],"friendly_name":"Public Cloud Module 15 SP2 x86_64","migration_extra":false,"former_identifier":"sle-module-public-cloud","release_type":null,"predecessor_ids":[1611,1808],"online_predecessor_ids":[1611,1808],"product_class":"MODULE","repositories":[{"description":"SLE-Module-Public-Cloud15-SP2-Updates for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Public-Cloud15-SP2-Updates","distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/15-SP2/x86_64/update/","enabled":true,"id":4221},{"enabled":false,"id":4222,"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/15-SP2/x86_64/update_debug/","name":"SLE-Module-Public-Cloud15-SP2-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-Public-Cloud15-SP2-Debuginfo-Updates for sle-15-x86_64"},{"description":"SLE-Module-Public-Cloud15-SP2-Pool for sle-15-x86_64","name":"SLE-Module-Public-Cloud15-SP2-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP2/x86_64/product/","enabled":true,"id":4223},{"description":"SLE-Module-Public-Cloud15-SP2-Debuginfo-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Public-Cloud15-SP2-Debuginfo-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP2/x86_64/product_debug/","distro_target":"sle-15-x86_64","autorefresh":false,"id":4224,"enabled":false},{"name":"SLE-Module-Public-Cloud15-SP2-Source-Pool","installer_updates":false,"description":"SLE-Module-Public-Cloud15-SP2-Source-Pool for sle-15-x86_64","enabled":false,"id":4225,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP2/x86_64/product_source/"}],"cpe":"cpe:/o:suse:sle-module-public-cloud:15:sp2","product_type":"module","description":"

The Public Cloud Module is a collection of tools that enables you to create and manage cloud images from the commandline on SUSE Linux Enterprise Server. When building your own images with KIWI or SUSE Studio, initialization code specific to the target cloud is included in that image.

Access to the Public Cloud Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself; please check the Release Notes for further details.

","shortname":"Public-Cloud-Module","free":true,"eula_url":"","arch":"x86_64"},{"product_type":"module","cpe":"cpe:/o:suse:sle-module-suse-manager-proxy:4.1","predecessor_ids":[1908],"online_predecessor_ids":[1908],"repositories":[{"description":"SLE-Module-SUSE-Manager-Proxy-4.1-Updates for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-SUSE-Manager-Proxy-4.1-Updates","distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-SUSE-Manager-Proxy/4.1/x86_64/update/","enabled":true,"id":4351},{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-SUSE-Manager-Proxy/4.1/x86_64/update_debug/","autorefresh":true,"distro_target":"sle-15-x86_64","id":4352,"enabled":false,"description":"SLE-Module-SUSE-Manager-Proxy-4.1-Debuginfo-Updates for sle-15-x86_64","name":"SLE-Module-SUSE-Manager-Proxy-4.1-Debuginfo-Updates","installer_updates":false},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-SUSE-Manager-Proxy/4.1/x86_64/product/","distro_target":"sle-15-x86_64","autorefresh":false,"id":4353,"enabled":true,"description":"SLE-Module-SUSE-Manager-Proxy-4.1-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-SUSE-Manager-Proxy-4.1-Pool"},{"installer_updates":false,"name":"SLE-Module-SUSE-Manager-Proxy-4.1-Debuginfo-Pool","description":"SLE-Module-SUSE-Manager-Proxy-4.1-Debuginfo-Pool for sle-15-x86_64","enabled":false,"id":4354,"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-SUSE-Manager-Proxy/4.1/x86_64/product_debug/"},{"name":"SLE-Module-SUSE-Manager-Proxy-4.1-Source-Pool","installer_updates":false,"description":"SLE-Module-SUSE-Manager-Proxy-4.1-Source-Pool for sle-15-x86_64","id":4355,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-SUSE-Manager-Proxy/4.1/x86_64/product_source/","autorefresh":false,"distro_target":"sle-15-x86_64"}],"product_class":"MODULE","eula_url":"","arch":"x86_64","free":true,"description":"SUSE Manager Proxies extend large and/or geographically dispersed SUSE Manager environments to reduce load on the SUSE Manager Server, lower bandwidth needs, and provide faster local updates.","shortname":"SUSE Manager Proxy 4.1 Module","extensions":[],"release_stage":"released","id":2015,"identifier":"sle-module-suse-manager-proxy","friendly_version":"4.1","offline_predecessor_ids":[],"name":"SUSE Manager Proxy Module","release_type":null,"former_identifier":"sle-module-suse-manager-proxy","friendly_name":"SUSE Manager Proxy Module 4.1 x86_64","migration_extra":false,"recommended":true,"version":"4.1"}],"friendly_version":"15 SP2"},{"product_type":"module","cpe":"cpe:/o:suse:sle-module-containers:15:sp2","predecessor_ids":[1642,1790],"product_class":"MODULE","online_predecessor_ids":[1642,1790],"repositories":[{"installer_updates":false,"name":"SLE-Module-Containers15-SP2-Updates","description":"SLE-Module-Containers15-SP2-Updates for sle-15-x86_64","enabled":true,"id":4096,"distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/15-SP2/x86_64/update/"},{"description":"SLE-Module-Containers15-SP2-Debuginfo-Updates for sle-15-x86_64","name":"SLE-Module-Containers15-SP2-Debuginfo-Updates","installer_updates":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/15-SP2/x86_64/update_debug/","autorefresh":true,"distro_target":"sle-15-x86_64","id":4097,"enabled":false},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP2/x86_64/product/","distro_target":"sle-15-x86_64","autorefresh":false,"id":4098,"enabled":true,"description":"SLE-Module-Containers15-SP2-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Containers15-SP2-Pool"},{"enabled":false,"id":4099,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP2/x86_64/product_debug/","name":"SLE-Module-Containers15-SP2-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-Containers15-SP2-Debuginfo-Pool for sle-15-x86_64"},{"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP2/x86_64/product_source/","enabled":false,"id":4100,"description":"SLE-Module-Containers15-SP2-Source-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Containers15-SP2-Source-Pool"}],"eula_url":"","arch":"x86_64","free":true,"shortname":"Containers-Module","description":"

This Module contains several packages revolving around containers and related tools.

","extensions":[],"release_stage":"released","identifier":"sle-module-containers","id":1963,"friendly_version":"15 SP2","offline_predecessor_ids":[1332],"name":"Containers Module","former_identifier":"sle-module-containers","release_type":null,"friendly_name":"Containers Module 15 SP2 x86_64","migration_extra":false,"recommended":false,"version":"15.2"},{"identifier":"sle-module-desktop-applications","release_stage":"released","id":1967,"extensions":[{"name":"Development Tools Module","offline_predecessor_ids":[1341,1630,1892],"friendly_name":"Development Tools Module 15 SP2 x86_64","migration_extra":false,"release_type":null,"former_identifier":"sle-sdk","recommended":false,"version":"15.2","extensions":[],"release_stage":"released","identifier":"sle-module-development-tools","id":1971,"friendly_version":"15 SP2","eula_url":"","arch":"x86_64","shortname":"Development-Tools-Module","description":"

The Development Tools Module helps you developing applications for SUSE Linux Enterprise 15.

Access to the Development Tools Module is included in your SUSE Linux Enterprise product subscription. The module has a different lifecycle than SUSE Linux Enterprise itself.

","free":true,"cpe":"cpe:/o:suse:sle-module-development-tools:15:sp2","product_type":"module","predecessor_ids":[1579,1794],"online_predecessor_ids":[1579,1794],"product_class":"MODULE","repositories":[{"installer_updates":false,"name":"SLE-Module-DevTools15-SP2-Updates","description":"SLE-Module-DevTools15-SP2-Updates for sle-15-x86_64","enabled":true,"id":4136,"distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15-SP2/x86_64/update/"},{"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15-SP2/x86_64/update_debug/","enabled":false,"id":4137,"description":"SLE-Module-DevTools15-SP2-Debuginfo-Updates for sle-15-x86_64","name":"SLE-Module-DevTools15-SP2-Debuginfo-Updates","installer_updates":false},{"description":"SLE-Module-DevTools15-SP2-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-DevTools15-SP2-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP2/x86_64/product/","distro_target":"sle-15-x86_64","autorefresh":false,"id":4138,"enabled":true},{"installer_updates":false,"name":"SLE-Module-DevTools15-SP2-Debuginfo-Pool","description":"SLE-Module-DevTools15-SP2-Debuginfo-Pool for sle-15-x86_64","enabled":false,"id":4139,"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP2/x86_64/product_debug/"},{"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP2/x86_64/product_source/","enabled":false,"id":4140,"description":"SLE-Module-DevTools15-SP2-Source-Pool for sle-15-x86_64","name":"SLE-Module-DevTools15-SP2-Source-Pool","installer_updates":false}]}],"friendly_version":"15 SP2","friendly_name":"Desktop Applications Module 15 SP2 x86_64","migration_extra":false,"release_type":null,"former_identifier":"sle-module-desktop-applications","name":"Desktop Applications Module","offline_predecessor_ids":[],"version":"15.2","recommended":false,"cpe":"cpe:/o:suse:sle-module-desktop-applications:15:sp2","product_type":"module","online_predecessor_ids":[1578,1776],"product_class":"MODULE","repositories":[{"description":"SLE-Module-Desktop-Applications15-SP2-Updates for sle-15-x86_64","name":"SLE-Module-Desktop-Applications15-SP2-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15-SP2/x86_64/update/","enabled":true,"id":4116},{"enabled":false,"id":4117,"distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15-SP2/x86_64/update_debug/","installer_updates":false,"name":"SLE-Module-Desktop-Applications15-SP2-Debuginfo-Updates","description":"SLE-Module-Desktop-Applications15-SP2-Debuginfo-Updates for sle-15-x86_64"},{"description":"SLE-Module-Desktop-Applications15-SP2-Pool for sle-15-x86_64","name":"SLE-Module-Desktop-Applications15-SP2-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP2/x86_64/product/","enabled":true,"id":4118},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP2/x86_64/product_debug/","distro_target":"sle-15-x86_64","autorefresh":false,"id":4119,"enabled":false,"description":"SLE-Module-Desktop-Applications15-SP2-Debuginfo-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Desktop-Applications15-SP2-Debuginfo-Pool"},{"id":4120,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP2/x86_64/product_source/","distro_target":"sle-15-x86_64","autorefresh":false,"installer_updates":false,"name":"SLE-Module-Desktop-Applications15-SP2-Source-Pool","description":"SLE-Module-Desktop-Applications15-SP2-Source-Pool for sle-15-x86_64"}],"predecessor_ids":[1578,1776],"arch":"x86_64","eula_url":"","shortname":"Desktop-Applications-Module","description":"

The SUSE Linux Enterprise Desktop Applications Module delivers a basic set of Desktop functionality.

Access to the Desktop Applications Module is included in your SUSE Linux Enterprise product subscription.

","free":true},{"extensions":[],"release_stage":"released","id":1992,"identifier":"sle-module-python2","friendly_version":"15 SP2","name":"Python 2 Module","offline_predecessor_ids":[],"friendly_name":"Python 2 Module 15 SP2 x86_64","migration_extra":false,"former_identifier":"sle-module-python2","release_type":null,"recommended":false,"version":"15.2","cpe":"cpe:/o:suse:sle-module-python2:15:sp2","product_type":"module","predecessor_ids":[1867],"product_class":"MODULE","online_predecessor_ids":[1867],"repositories":[{"description":"SLE-Module-Python2-15-SP2-Updates for sle-15-x86_64","name":"SLE-Module-Python2-15-SP2-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Python2/15-SP2/x86_64/update/","enabled":true,"id":4241},{"description":"SLE-Module-Python2-15-SP2-Debuginfo-Updates for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Python2-15-SP2-Debuginfo-Updates","distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Python2/15-SP2/x86_64/update_debug/","enabled":false,"id":4242},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Python2/15-SP2/x86_64/product/","autorefresh":false,"distro_target":"sle-15-x86_64","id":4243,"enabled":true,"description":"SLE-Module-Python2-15-SP2-Pool for sle-15-x86_64","name":"SLE-Module-Python2-15-SP2-Pool","installer_updates":false},{"id":4244,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Python2/15-SP2/x86_64/product_debug/","autorefresh":false,"distro_target":"sle-15-x86_64","name":"SLE-Module-Python2-15-SP2-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-Python2-15-SP2-Debuginfo-Pool for sle-15-x86_64"},{"id":4245,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Python2/15-SP2/x86_64/product_source/","autorefresh":false,"distro_target":"sle-15-x86_64","name":"SLE-Module-Python2-15-SP2-Source-Pool","installer_updates":false,"description":"SLE-Module-Python2-15-SP2-Source-Pool for sle-15-x86_64"}],"eula_url":"","arch":"x86_64","description":"

This module contains the python 2 packages.

Access to the Python 2 Module is included in your SUSE Linux Enterprise subscription. The module has a different lifecycle than SUSE Linux Enterprise itself. Packages in the this module are usually supported for at most three years.

","shortname":"Python2-Module","free":true}],"identifier":"sle-module-basesystem","release_stage":"released","id":1946,"friendly_version":"15 SP2","eula_url":"","arch":"x86_64","description":"

The SUSE Linux Enterprise Basesystem Module delivers the base system of the product.

","shortname":"Basesystem-Module","free":true,"cpe":"cpe:/o:suse:sle-module-basesystem:15:sp2","product_type":"module","predecessor_ids":[1576,1772],"product_class":"MODULE","online_predecessor_ids":[1576,1772],"repositories":[{"distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15-SP2/x86_64/update/","enabled":true,"id":3999,"description":"SLE-Module-Basesystem15-SP2-Updates for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Basesystem15-SP2-Updates"},{"installer_updates":false,"name":"SLE-Module-Basesystem15-SP2-Debuginfo-Updates","description":"SLE-Module-Basesystem15-SP2-Debuginfo-Updates for sle-15-x86_64","id":4000,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15-SP2/x86_64/update_debug/","distro_target":"sle-15-x86_64","autorefresh":true},{"id":4001,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP2/x86_64/product/","distro_target":"sle-15-x86_64","autorefresh":false,"installer_updates":false,"name":"SLE-Module-Basesystem15-SP2-Pool","description":"SLE-Module-Basesystem15-SP2-Pool for sle-15-x86_64"},{"name":"SLE-Module-Basesystem15-SP2-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-Basesystem15-SP2-Debuginfo-Pool for sle-15-x86_64","id":4002,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP2/x86_64/product_debug/","autorefresh":false,"distro_target":"sle-15-x86_64"},{"enabled":false,"id":4003,"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP2/x86_64/product_source/","installer_updates":false,"name":"SLE-Module-Basesystem15-SP2-Source-Pool","description":"SLE-Module-Basesystem15-SP2-Source-Pool for sle-15-x86_64"}]}],"friendly_version":"4.1","arch":"x86_64","eula_url":"https://updates.suse.com/SUSE/Products/SLE-Product-SUSE-Manager-Proxy/4.1/x86_64/product.license/","shortname":"SUSE Manager Proxy 4.1","description":"SUSE Manager Proxies extend large and/or geographically dispersed SUSE Manager environments to reduce load on the SUSE Manager Server, lower bandwidth needs, and provide faster local updates.","free":false,"cpe":"cpe:/o:suse:suse-manager-proxy:4.1","product_type":"base","online_predecessor_ids":[1900],"repositories":[{"distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-SUSE-Manager-Proxy/4.1/x86_64/update/","enabled":true,"id":4321,"description":"SLE-Product-SUSE-Manager-Proxy-4.1-Updates for sle-15-x86_64","installer_updates":false,"name":"SLE-Product-SUSE-Manager-Proxy-4.1-Updates"},{"name":"SLE-Product-SUSE-Manager-Proxy-4.1-Debuginfo-Updates","installer_updates":false,"description":"SLE-Product-SUSE-Manager-Proxy-4.1-Debuginfo-Updates for sle-15-x86_64","id":4322,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-SUSE-Manager-Proxy/4.1/x86_64/update_debug/","autorefresh":true,"distro_target":"sle-15-x86_64"},{"enabled":true,"id":4323,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Product-SUSE-Manager-Proxy/4.1/x86_64/product/","name":"SLE-Product-SUSE-Manager-Proxy-4.1-Pool","installer_updates":false,"description":"SLE-Product-SUSE-Manager-Proxy-4.1-Pool for sle-15-x86_64"},{"name":"SLE-Product-SUSE-Manager-Proxy-4.1-Debuginfo-Pool","installer_updates":false,"description":"SLE-Product-SUSE-Manager-Proxy-4.1-Debuginfo-Pool for sle-15-x86_64","id":4324,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-SUSE-Manager-Proxy/4.1/x86_64/product_debug/","autorefresh":false,"distro_target":"sle-15-x86_64"},{"name":"SLE-Product-SUSE-Manager-Proxy-4.1-Source-Pool","installer_updates":false,"description":"SLE-Product-SUSE-Manager-Proxy-4.1-Source-Pool for sle-15-x86_64","id":4325,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-SUSE-Manager-Proxy/4.1/x86_64/product_source/","autorefresh":false,"distro_target":"sle-15-x86_64"}],"product_class":"SMP","predecessor_ids":[1900]},{"recommended":false,"version":"4.1","offline_predecessor_ids":[],"name":"SUSE Manager Server","release_type":null,"former_identifier":"SUSE-Manager-Server","migration_extra":false,"friendly_name":"SUSE Manager Server 4.1 ppc64le","friendly_version":"4.1","extensions":[{"former_identifier":"sle-module-basesystem","release_type":null,"friendly_name":"Basesystem Module 15 SP2 ppc64le","migration_extra":false,"offline_predecessor_ids":[1294],"name":"Basesystem Module","version":"15.2","recommended":true,"identifier":"sle-module-basesystem","release_stage":"released","id":1944,"extensions":[{"friendly_name":"SUSE Package Hub 15 SP2 ppc64le","migration_extra":false,"former_identifier":"PackageHub","release_type":null,"name":"SUSE Package Hub","offline_predecessor_ids":[1811,1913],"version":"15.2","recommended":false,"release_stage":"released","identifier":"PackageHub","id":1948,"extensions":[],"friendly_version":"15 SP2","arch":"ppc64le","eula_url":"","shortname":"SUSE-PackageHub-15","description":"SUSE Package Hub is a free of charge extension providing access to community maintained packages built to run on SUSE Linux Enterprise Server. Built from the same sources used in the openSUSE distributions, these quality packages provide additional software to what is found in the SUSE Linux Enterprise Server product. Packages from the Package Hub are delivered without L3 support from SUSE. General updates and fixes to the packages in SUSE Package Hub are provided by the openSUSE community based on their discretion, though SUSE will monitor and ensure that any known critical security issues will be addressed. Packages in the Package Hub are approved by SUSE for use with SUSE Linux Enterprise Server 15-SP2 and to not interfere with the supportability of SUSE Linux Enterprise Server, its modules and extensions. For more information about SUSE Package Hub please visit https://packagehub.suse.com.","free":true,"cpe":"cpe:/o:suse:packagehub:15:sp2","product_type":"extension","online_predecessor_ids":[1741,1869],"product_class":"MODULE","repositories":[{"name":"SUSE-PackageHub-15-SP2-Backports-Pool","installer_updates":false,"description":"SUSE-PackageHub-15-SP2-Backports-Pool for sle-15-ppc64le","enabled":true,"id":4012,"autorefresh":false,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Backports/SLE-15-SP2_ppc64le/standard/"},{"enabled":false,"id":4013,"autorefresh":true,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Backports/SLE-15-SP2_ppc64le/standard_debug/","name":"SUSE-PackageHub-15-SP2-Backports-Debuginfo","installer_updates":false,"description":"SUSE-PackageHub-15-SP2-Backports-Debuginfo for sle-15-ppc64le"},{"enabled":true,"id":4014,"distro_target":"sle-15-ppc64le","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP2/ppc64le/update/","installer_updates":false,"name":"SLE-Module-Packagehub-Subpackages15-SP2-Updates","description":"SLE-Module-Packagehub-Subpackages15-SP2-Updates for sle-15-ppc64le"},{"installer_updates":false,"name":"SLE-Module-Packagehub-Subpackages15-SP2-Debuginfo-Updates","description":"SLE-Module-Packagehub-Subpackages15-SP2-Debuginfo-Updates for sle-15-ppc64le","id":4015,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP2/ppc64le/update_debug/","distro_target":"sle-15-ppc64le","autorefresh":true},{"installer_updates":false,"name":"SUSE-PackageHub-15-SP2-Pool","description":"SUSE-PackageHub-15-SP2-Pool for sle-15-ppc64le","enabled":true,"id":4016,"distro_target":"sle-15-ppc64le","autorefresh":false,"url":"https://updates.suse.com/SUSE/Backports/SLE-15-SP2_ppc64le/product/"},{"enabled":true,"id":4017,"autorefresh":false,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP2/ppc64le/product/","name":"SLE-Module-Packagehub-Subpackages15-SP2-Pool","installer_updates":false,"description":"SLE-Module-Packagehub-Subpackages15-SP2-Pool for sle-15-ppc64le"},{"id":4018,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP2/ppc64le/product_debug/","distro_target":"sle-15-ppc64le","autorefresh":false,"installer_updates":false,"name":"SLE-Module-Packagehub-Subpackages15-SP2-Debuginfo-Pool","description":"SLE-Module-Packagehub-Subpackages15-SP2-Debuginfo-Pool for sle-15-ppc64le"},{"description":"SLE-Module-Packagehub-Subpackages15-SP2-Source-Pool for sle-15-ppc64le","name":"SLE-Module-Packagehub-Subpackages15-SP2-Source-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP2/ppc64le/product_source/","autorefresh":false,"distro_target":"sle-15-ppc64le","id":4019,"enabled":false}],"predecessor_ids":[1741,1869]},{"free":true,"shortname":"Server-Applications-Module","description":"

The SUSE Linux Enterprise Server Applications Module delivers a basic set of Server functionality.

Access to the Server Applications Module is included in your SUSE Linux Enterprise Server subscription.

","eula_url":"","arch":"ppc64le","predecessor_ids":[1600,1778],"product_class":"MODULE","online_predecessor_ids":[1600,1778],"repositories":[{"description":"SLE-Module-Server-Applications15-SP2-Updates for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-Server-Applications15-SP2-Updates","distro_target":"sle-15-ppc64le","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15-SP2/ppc64le/update/","enabled":true,"id":4046},{"description":"SLE-Module-Server-Applications15-SP2-Debuginfo-Updates for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-Server-Applications15-SP2-Debuginfo-Updates","distro_target":"sle-15-ppc64le","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15-SP2/ppc64le/update_debug/","enabled":false,"id":4047},{"description":"SLE-Module-Server-Applications15-SP2-Pool for sle-15-ppc64le","name":"SLE-Module-Server-Applications15-SP2-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP2/ppc64le/product/","enabled":true,"id":4048},{"installer_updates":false,"name":"SLE-Module-Server-Applications15-SP2-Debuginfo-Pool","description":"SLE-Module-Server-Applications15-SP2-Debuginfo-Pool for sle-15-ppc64le","id":4049,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP2/ppc64le/product_debug/","distro_target":"sle-15-ppc64le","autorefresh":false},{"id":4050,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP2/ppc64le/product_source/","distro_target":"sle-15-ppc64le","autorefresh":false,"installer_updates":false,"name":"SLE-Module-Server-Applications15-SP2-Source-Pool","description":"SLE-Module-Server-Applications15-SP2-Source-Pool for sle-15-ppc64le"}],"product_type":"module","cpe":"cpe:/o:suse:sle-module-server-applications:15:sp2","recommended":true,"version":"15.2","offline_predecessor_ids":[],"name":"Server Applications Module","former_identifier":"sle-module-server-applications","release_type":null,"friendly_name":"Server Applications Module 15 SP2 ppc64le","migration_extra":false,"friendly_version":"15 SP2","extensions":[{"online_predecessor_ids":[1606,1783],"product_class":"SLE-HAE-PPC","repositories":[{"description":"SLE-Product-HA15-SP2-Updates for sle-15-ppc64le","name":"SLE-Product-HA15-SP2-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Updates/SLE-Product-HA/15-SP2/ppc64le/update/","enabled":true,"id":4066},{"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-HA/15-SP2/ppc64le/update_debug/","autorefresh":true,"distro_target":"sle-15-ppc64le","id":4067,"enabled":false,"description":"SLE-Product-HA15-SP2-Debuginfo-Updates for sle-15-ppc64le","name":"SLE-Product-HA15-SP2-Debuginfo-Updates","installer_updates":false},{"name":"SLE-Product-HA15-SP2-Pool","installer_updates":false,"description":"SLE-Product-HA15-SP2-Pool for sle-15-ppc64le","id":4068,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP2/ppc64le/product/","autorefresh":false,"distro_target":"sle-15-ppc64le"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP2/ppc64le/product_debug/","distro_target":"sle-15-ppc64le","autorefresh":false,"id":4069,"enabled":false,"description":"SLE-Product-HA15-SP2-Debuginfo-Pool for sle-15-ppc64le","installer_updates":false,"name":"SLE-Product-HA15-SP2-Debuginfo-Pool"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP2/ppc64le/product_source/","autorefresh":false,"distro_target":"sle-15-ppc64le","id":4070,"enabled":false,"description":"SLE-Product-HA15-SP2-Source-Pool for sle-15-ppc64le","name":"SLE-Product-HA15-SP2-Source-Pool","installer_updates":false}],"predecessor_ids":[1606,1783],"product_type":"extension","cpe":"cpe:/o:suse:sle-ha:15:sp2","free":false,"shortname":"SLEHA15-SP2","description":"SUSE Linux High Availability Extension provides mature, industry-leading open-source high-availability clustering technologies that are easy to set up and use. It can be deployed in physical and/or virtual environments, and can cluster physical servers, virtual servers, or any combination of the two to suit your business’ needs.","arch":"ppc64le","eula_url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP2/ppc64le/product.license/","friendly_version":"15 SP2","identifier":"sle-ha","release_stage":"released","id":1957,"extensions":[],"version":"15.2","recommended":false,"release_type":null,"former_identifier":"sle-ha","migration_extra":false,"friendly_name":"SUSE Linux Enterprise High Availability Extension 15 SP2 ppc64le","offline_predecessor_ids":[1635,1882],"name":"SUSE Linux Enterprise High Availability Extension"},{"online_predecessor_ids":[1719,1796],"product_class":"MODULE","repositories":[{"description":"SLE-Module-Web-Scripting15-SP2-Updates for sle-15-ppc64le","name":"SLE-Module-Web-Scripting15-SP2-Updates","installer_updates":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/15-SP2/ppc64le/update/","autorefresh":true,"distro_target":"sle-15-ppc64le","id":4151,"enabled":true},{"distro_target":"sle-15-ppc64le","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/15-SP2/ppc64le/update_debug/","enabled":false,"id":4152,"description":"SLE-Module-Web-Scripting15-SP2-Debuginfo-Updates for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-Web-Scripting15-SP2-Debuginfo-Updates"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP2/ppc64le/product/","autorefresh":false,"distro_target":"sle-15-ppc64le","id":4153,"enabled":true,"description":"SLE-Module-Web-Scripting15-SP2-Pool for sle-15-ppc64le","name":"SLE-Module-Web-Scripting15-SP2-Pool","installer_updates":false},{"description":"SLE-Module-Web-Scripting15-SP2-Debuginfo-Pool for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-Web-Scripting15-SP2-Debuginfo-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP2/ppc64le/product_debug/","distro_target":"sle-15-ppc64le","autorefresh":false,"id":4154,"enabled":false},{"description":"SLE-Module-Web-Scripting15-SP2-Source-Pool for sle-15-ppc64le","name":"SLE-Module-Web-Scripting15-SP2-Source-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP2/ppc64le/product_source/","autorefresh":false,"distro_target":"sle-15-ppc64le","id":4155,"enabled":false}],"predecessor_ids":[1719,1796],"product_type":"module","cpe":"cpe:/o:suse:sle-module-web-scripting:15:sp2","free":true,"description":"

The SUSE Linux Enterprise Web and Scripting Module should contains additional packages that are helpful when running a webserver.

Access to the Web and Scripting Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself: Package versions in this module are usually supported for at most three years. We are planning to release more recent versions on a schedule of approximately 18 month; the exact dates may differ per package.

","shortname":"Web-Scripting-Module","arch":"ppc64le","eula_url":"","friendly_version":"15 SP2","release_stage":"released","identifier":"sle-module-web-scripting","id":1974,"extensions":[{"arch":"ppc64le","eula_url":"","description":"SUSE Manager lets you efficiently manage physical, virtual, and cloud-based Linux systems. It provides automated and cost-effective configuration and software management, asset management, and system provisioning.","shortname":"SUSE Manager Server 4.1 Module","free":true,"cpe":"cpe:/o:suse:sle-module-suse-manager-server:4.1","product_type":"module","repositories":[{"description":"SLE-Module-SUSE-Manager-Server-4.1-Updates for sle-15-ppc64le","name":"SLE-Module-SUSE-Manager-Server-4.1-Updates","installer_updates":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-SUSE-Manager-Server/4.1/ppc64le/update/","autorefresh":true,"distro_target":"sle-15-ppc64le","id":4361,"enabled":true},{"name":"SLE-Module-SUSE-Manager-Server-4.1-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-SUSE-Manager-Server-4.1-Debuginfo-Updates for sle-15-ppc64le","enabled":false,"id":4362,"autorefresh":true,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-SUSE-Manager-Server/4.1/ppc64le/update_debug/"},{"installer_updates":false,"name":"SLE-Module-SUSE-Manager-Server-4.1-Pool","description":"SLE-Module-SUSE-Manager-Server-4.1-Pool for sle-15-ppc64le","id":4363,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-SUSE-Manager-Server/4.1/ppc64le/product/","distro_target":"sle-15-ppc64le","autorefresh":false},{"name":"SLE-Module-SUSE-Manager-Server-4.1-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-SUSE-Manager-Server-4.1-Debuginfo-Pool for sle-15-ppc64le","id":4364,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-SUSE-Manager-Server/4.1/ppc64le/product_debug/","autorefresh":false,"distro_target":"sle-15-ppc64le"},{"id":4365,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-SUSE-Manager-Server/4.1/ppc64le/product_source/","distro_target":"sle-15-ppc64le","autorefresh":false,"installer_updates":false,"name":"SLE-Module-SUSE-Manager-Server-4.1-Source-Pool","description":"SLE-Module-SUSE-Manager-Server-4.1-Source-Pool for sle-15-ppc64le"}],"online_predecessor_ids":[1903],"product_class":"MODULE","predecessor_ids":[1903],"friendly_name":"SUSE Manager Server Module 4.1 ppc64le","migration_extra":false,"release_type":null,"former_identifier":"sle-module-suse-manager-server","name":"SUSE Manager Server Module","offline_predecessor_ids":[],"version":"4.1","recommended":true,"release_stage":"released","identifier":"sle-module-suse-manager-server","id":2017,"extensions":[],"friendly_version":"4.1"}],"version":"15.2","recommended":true,"former_identifier":"sle-module-web-scripting","release_type":null,"migration_extra":false,"friendly_name":"Web and Scripting Module 15 SP2 ppc64le","offline_predecessor_ids":[1151],"name":"Web and Scripting Module"},{"description":"

The Legacy Module helps you migrating applications from SUSE Linux Enterprise 12 and other systems to SUSE Linux Enterprise 15, by providing packages which are discontinued on SUSE Linux Enterprise Server, such as: ntp, IBM Java 8, and a number of libraries.

Access to the Legacy Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself. Packages in the this module are usually supported for at most three years.

","shortname":"Legacy-Module","free":true,"arch":"ppc64le","eula_url":"","repositories":[{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/15-SP2/ppc64le/update/","autorefresh":true,"distro_target":"sle-15-ppc64le","id":4181,"enabled":true,"description":"SLE-Module-Legacy15-SP2-Updates for sle-15-ppc64le","name":"SLE-Module-Legacy15-SP2-Updates","installer_updates":false},{"description":"SLE-Module-Legacy15-SP2-Debuginfo-Updates for sle-15-ppc64le","name":"SLE-Module-Legacy15-SP2-Debuginfo-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/15-SP2/ppc64le/update_debug/","enabled":false,"id":4182},{"name":"SLE-Module-Legacy15-SP2-Pool","installer_updates":false,"description":"SLE-Module-Legacy15-SP2-Pool for sle-15-ppc64le","enabled":true,"id":4183,"autorefresh":false,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15-SP2/ppc64le/product/"},{"description":"SLE-Module-Legacy15-SP2-Debuginfo-Pool for sle-15-ppc64le","name":"SLE-Module-Legacy15-SP2-Debuginfo-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15-SP2/ppc64le/product_debug/","autorefresh":false,"distro_target":"sle-15-ppc64le","id":4184,"enabled":false},{"description":"SLE-Module-Legacy15-SP2-Source-Pool for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-Legacy15-SP2-Source-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15-SP2/ppc64le/product_source/","distro_target":"sle-15-ppc64le","autorefresh":false,"id":4185,"enabled":false}],"online_predecessor_ids":[1603,1802],"product_class":"MODULE","predecessor_ids":[1603,1802],"cpe":"cpe:/o:suse:sle-module-legacy:15:sp2","product_type":"module","version":"15.2","recommended":false,"migration_extra":false,"friendly_name":"Legacy Module 15 SP2 ppc64le","former_identifier":"sle-module-legacy","release_type":null,"name":"Legacy Module","offline_predecessor_ids":[1148],"friendly_version":"15 SP2","id":1980,"release_stage":"released","identifier":"sle-module-legacy","extensions":[]},{"product_type":"module","cpe":"cpe:/o:suse:sle-module-public-cloud:15:sp2","online_predecessor_ids":[1616,1806],"repositories":[{"description":"SLE-Module-Public-Cloud15-SP2-Updates for sle-15-ppc64le","name":"SLE-Module-Public-Cloud15-SP2-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/15-SP2/ppc64le/update/","enabled":true,"id":4211},{"name":"SLE-Module-Public-Cloud15-SP2-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-Public-Cloud15-SP2-Debuginfo-Updates for sle-15-ppc64le","enabled":false,"id":4212,"autorefresh":true,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/15-SP2/ppc64le/update_debug/"},{"distro_target":"sle-15-ppc64le","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP2/ppc64le/product/","enabled":true,"id":4213,"description":"SLE-Module-Public-Cloud15-SP2-Pool for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-Public-Cloud15-SP2-Pool"},{"description":"SLE-Module-Public-Cloud15-SP2-Debuginfo-Pool for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-Public-Cloud15-SP2-Debuginfo-Pool","distro_target":"sle-15-ppc64le","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP2/ppc64le/product_debug/","enabled":false,"id":4214},{"description":"SLE-Module-Public-Cloud15-SP2-Source-Pool for sle-15-ppc64le","name":"SLE-Module-Public-Cloud15-SP2-Source-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP2/ppc64le/product_source/","autorefresh":false,"distro_target":"sle-15-ppc64le","id":4215,"enabled":false}],"product_class":"MODULE","predecessor_ids":[1616,1806],"arch":"ppc64le","eula_url":"","free":true,"shortname":"Public-Cloud-Module","description":"

The Public Cloud Module is a collection of tools that enables you to create and manage cloud images from the commandline on SUSE Linux Enterprise Server. When building your own images with KIWI or SUSE Studio, initialization code specific to the target cloud is included in that image.

Access to the Public Cloud Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself; please check the Release Notes for further details.

","release_stage":"released","id":1986,"identifier":"sle-module-public-cloud","extensions":[],"friendly_version":"15 SP2","release_type":null,"former_identifier":"sle-module-public-cloud","friendly_name":"Public Cloud Module 15 SP2 ppc64le","migration_extra":false,"offline_predecessor_ids":[1218],"name":"Public Cloud Module","version":"15.2","recommended":false}],"identifier":"sle-module-server-applications","release_stage":"released","id":1953},{"friendly_version":"15 SP2","extensions":[],"release_stage":"released","id":1961,"identifier":"sle-module-containers","recommended":false,"version":"15.2","offline_predecessor_ids":[1353],"name":"Containers Module","release_type":null,"former_identifier":"sle-module-containers","migration_extra":false,"friendly_name":"Containers Module 15 SP2 ppc64le","predecessor_ids":[1640,1788],"online_predecessor_ids":[1640,1788],"product_class":"MODULE","repositories":[{"distro_target":"sle-15-ppc64le","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/15-SP2/ppc64le/update/","enabled":true,"id":4086,"description":"SLE-Module-Containers15-SP2-Updates for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-Containers15-SP2-Updates"},{"id":4087,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/15-SP2/ppc64le/update_debug/","autorefresh":true,"distro_target":"sle-15-ppc64le","name":"SLE-Module-Containers15-SP2-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-Containers15-SP2-Debuginfo-Updates for sle-15-ppc64le"},{"description":"SLE-Module-Containers15-SP2-Pool for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-Containers15-SP2-Pool","distro_target":"sle-15-ppc64le","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP2/ppc64le/product/","enabled":true,"id":4088},{"id":4089,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP2/ppc64le/product_debug/","distro_target":"sle-15-ppc64le","autorefresh":false,"installer_updates":false,"name":"SLE-Module-Containers15-SP2-Debuginfo-Pool","description":"SLE-Module-Containers15-SP2-Debuginfo-Pool for sle-15-ppc64le"},{"id":4090,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP2/ppc64le/product_source/","autorefresh":false,"distro_target":"sle-15-ppc64le","name":"SLE-Module-Containers15-SP2-Source-Pool","installer_updates":false,"description":"SLE-Module-Containers15-SP2-Source-Pool for sle-15-ppc64le"}],"product_type":"module","cpe":"cpe:/o:suse:sle-module-containers:15:sp2","free":true,"description":"

This Module contains several packages revolving around containers and related tools.

","shortname":"Containers-Module","eula_url":"","arch":"ppc64le"},{"repositories":[{"installer_updates":false,"name":"SLE-Module-Desktop-Applications15-SP2-Updates","description":"SLE-Module-Desktop-Applications15-SP2-Updates for sle-15-ppc64le","enabled":true,"id":4106,"distro_target":"sle-15-ppc64le","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15-SP2/ppc64le/update/"},{"name":"SLE-Module-Desktop-Applications15-SP2-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-Desktop-Applications15-SP2-Debuginfo-Updates for sle-15-ppc64le","id":4107,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15-SP2/ppc64le/update_debug/","autorefresh":true,"distro_target":"sle-15-ppc64le"},{"description":"SLE-Module-Desktop-Applications15-SP2-Pool for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-Desktop-Applications15-SP2-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP2/ppc64le/product/","distro_target":"sle-15-ppc64le","autorefresh":false,"id":4108,"enabled":true},{"enabled":false,"id":4109,"distro_target":"sle-15-ppc64le","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP2/ppc64le/product_debug/","installer_updates":false,"name":"SLE-Module-Desktop-Applications15-SP2-Debuginfo-Pool","description":"SLE-Module-Desktop-Applications15-SP2-Debuginfo-Pool for sle-15-ppc64le"},{"description":"SLE-Module-Desktop-Applications15-SP2-Source-Pool for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-Desktop-Applications15-SP2-Source-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP2/ppc64le/product_source/","distro_target":"sle-15-ppc64le","autorefresh":false,"id":4110,"enabled":false}],"online_predecessor_ids":[1594,1774],"product_class":"MODULE","predecessor_ids":[1594,1774],"product_type":"module","cpe":"cpe:/o:suse:sle-module-desktop-applications:15:sp2","free":true,"description":"

The SUSE Linux Enterprise Desktop Applications Module delivers a basic set of Desktop functionality.

Access to the Desktop Applications Module is included in your SUSE Linux Enterprise product subscription.

","shortname":"Desktop-Applications-Module","arch":"ppc64le","eula_url":"","friendly_version":"15 SP2","release_stage":"released","identifier":"sle-module-desktop-applications","id":1965,"extensions":[{"arch":"ppc64le","eula_url":"","shortname":"Development-Tools-Module","description":"

The Development Tools Module helps you developing applications for SUSE Linux Enterprise 15.

Access to the Development Tools Module is included in your SUSE Linux Enterprise product subscription. The module has a different lifecycle than SUSE Linux Enterprise itself.

","free":true,"cpe":"cpe:/o:suse:sle-module-development-tools:15:sp2","product_type":"module","online_predecessor_ids":[1597,1792],"product_class":"MODULE","repositories":[{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15-SP2/ppc64le/update/","autorefresh":true,"distro_target":"sle-15-ppc64le","id":4126,"enabled":true,"description":"SLE-Module-DevTools15-SP2-Updates for sle-15-ppc64le","name":"SLE-Module-DevTools15-SP2-Updates","installer_updates":false},{"autorefresh":true,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15-SP2/ppc64le/update_debug/","enabled":false,"id":4127,"description":"SLE-Module-DevTools15-SP2-Debuginfo-Updates for sle-15-ppc64le","name":"SLE-Module-DevTools15-SP2-Debuginfo-Updates","installer_updates":false},{"distro_target":"sle-15-ppc64le","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP2/ppc64le/product/","enabled":true,"id":4128,"description":"SLE-Module-DevTools15-SP2-Pool for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-DevTools15-SP2-Pool"},{"installer_updates":false,"name":"SLE-Module-DevTools15-SP2-Debuginfo-Pool","description":"SLE-Module-DevTools15-SP2-Debuginfo-Pool for sle-15-ppc64le","enabled":false,"id":4129,"distro_target":"sle-15-ppc64le","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP2/ppc64le/product_debug/"},{"name":"SLE-Module-DevTools15-SP2-Source-Pool","installer_updates":false,"description":"SLE-Module-DevTools15-SP2-Source-Pool for sle-15-ppc64le","enabled":false,"id":4130,"autorefresh":false,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP2/ppc64le/product_source/"}],"predecessor_ids":[1597,1792],"migration_extra":false,"friendly_name":"Development Tools Module 15 SP2 ppc64le","former_identifier":"sle-sdk","release_type":null,"name":"Development Tools Module","offline_predecessor_ids":[1339,1631,1890],"version":"15.2","recommended":false,"id":1969,"release_stage":"released","identifier":"sle-module-development-tools","extensions":[],"friendly_version":"15 SP2"}],"version":"15.2","recommended":false,"former_identifier":"sle-module-desktop-applications","release_type":null,"friendly_name":"Desktop Applications Module 15 SP2 ppc64le","migration_extra":false,"offline_predecessor_ids":[],"name":"Desktop Applications Module"},{"product_type":"module","cpe":"cpe:/o:suse:sle-module-python2:15:sp2","predecessor_ids":[1865],"repositories":[{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Python2/15-SP2/ppc64le/update/","distro_target":"sle-15-ppc64le","autorefresh":true,"id":4231,"enabled":true,"description":"SLE-Module-Python2-15-SP2-Updates for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-Python2-15-SP2-Updates"},{"enabled":false,"id":4232,"autorefresh":true,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Python2/15-SP2/ppc64le/update_debug/","name":"SLE-Module-Python2-15-SP2-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-Python2-15-SP2-Debuginfo-Updates for sle-15-ppc64le"},{"distro_target":"sle-15-ppc64le","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Python2/15-SP2/ppc64le/product/","enabled":true,"id":4233,"description":"SLE-Module-Python2-15-SP2-Pool for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-Python2-15-SP2-Pool"},{"name":"SLE-Module-Python2-15-SP2-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-Python2-15-SP2-Debuginfo-Pool for sle-15-ppc64le","id":4234,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Python2/15-SP2/ppc64le/product_debug/","autorefresh":false,"distro_target":"sle-15-ppc64le"},{"description":"SLE-Module-Python2-15-SP2-Source-Pool for sle-15-ppc64le","name":"SLE-Module-Python2-15-SP2-Source-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Python2/15-SP2/ppc64le/product_source/","enabled":false,"id":4235}],"online_predecessor_ids":[1865],"product_class":"MODULE","eula_url":"","arch":"ppc64le","free":true,"shortname":"Python2-Module","description":"

This module contains the python 2 packages.

Access to the Python 2 Module is included in your SUSE Linux Enterprise subscription. The module has a different lifecycle than SUSE Linux Enterprise itself. Packages in the this module are usually supported for at most three years.

","extensions":[],"release_stage":"released","identifier":"sle-module-python2","id":1990,"friendly_version":"15 SP2","offline_predecessor_ids":[],"name":"Python 2 Module","former_identifier":"sle-module-python2","release_type":null,"migration_extra":false,"friendly_name":"Python 2 Module 15 SP2 ppc64le","recommended":true,"version":"15.2"}],"friendly_version":"15 SP2","arch":"ppc64le","eula_url":"","free":true,"shortname":"Basesystem-Module","description":"

The SUSE Linux Enterprise Basesystem Module delivers the base system of the product.

","product_type":"module","cpe":"cpe:/o:suse:sle-module-basesystem:15:sp2","online_predecessor_ids":[1588,1770],"repositories":[{"name":"SLE-Module-Basesystem15-SP2-Updates","installer_updates":false,"description":"SLE-Module-Basesystem15-SP2-Updates for sle-15-ppc64le","id":3989,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15-SP2/ppc64le/update/","autorefresh":true,"distro_target":"sle-15-ppc64le"},{"enabled":false,"id":3990,"distro_target":"sle-15-ppc64le","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15-SP2/ppc64le/update_debug/","installer_updates":false,"name":"SLE-Module-Basesystem15-SP2-Debuginfo-Updates","description":"SLE-Module-Basesystem15-SP2-Debuginfo-Updates for sle-15-ppc64le"},{"description":"SLE-Module-Basesystem15-SP2-Pool for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-Basesystem15-SP2-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP2/ppc64le/product/","distro_target":"sle-15-ppc64le","autorefresh":false,"id":3991,"enabled":true},{"name":"SLE-Module-Basesystem15-SP2-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-Basesystem15-SP2-Debuginfo-Pool for sle-15-ppc64le","id":3992,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP2/ppc64le/product_debug/","autorefresh":false,"distro_target":"sle-15-ppc64le"},{"id":3993,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP2/ppc64le/product_source/","autorefresh":false,"distro_target":"sle-15-ppc64le","name":"SLE-Module-Basesystem15-SP2-Source-Pool","installer_updates":false,"description":"SLE-Module-Basesystem15-SP2-Source-Pool for sle-15-ppc64le"}],"product_class":"MODULE","predecessor_ids":[1588,1770]}],"release_stage":"released","identifier":"SUSE-Manager-Server","id":2010,"free":false,"description":"SUSE Manager lets you efficiently manage physical, virtual, and cloud-based Linux systems. It provides automated and cost-effective configuration and software management, asset management, and system provisioning.","shortname":"SUSE Manager Server 4.1","eula_url":"https://updates.suse.com/SUSE/Products/SLE-Product-SUSE-Manager-Server/4.1/ppc64le/product.license/","arch":"ppc64le","predecessor_ids":[1897],"online_predecessor_ids":[1897],"product_class":"SMS-PPC","repositories":[{"id":4326,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-SUSE-Manager-Server/4.1/ppc64le/update/","autorefresh":true,"distro_target":"sle-15-ppc64le","name":"SLE-Product-SUSE-Manager-Server-4.1-Updates","installer_updates":false,"description":"SLE-Product-SUSE-Manager-Server-4.1-Updates for sle-15-ppc64le"},{"id":4327,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-SUSE-Manager-Server/4.1/ppc64le/update_debug/","distro_target":"sle-15-ppc64le","autorefresh":true,"installer_updates":false,"name":"SLE-Product-SUSE-Manager-Server-4.1-Debuginfo-Updates","description":"SLE-Product-SUSE-Manager-Server-4.1-Debuginfo-Updates for sle-15-ppc64le"},{"name":"SLE-Product-SUSE-Manager-Server-4.1-Pool","installer_updates":false,"description":"SLE-Product-SUSE-Manager-Server-4.1-Pool for sle-15-ppc64le","enabled":true,"id":4328,"autorefresh":false,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Products/SLE-Product-SUSE-Manager-Server/4.1/ppc64le/product/"},{"id":4329,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-SUSE-Manager-Server/4.1/ppc64le/product_debug/","autorefresh":false,"distro_target":"sle-15-ppc64le","name":"SLE-Product-SUSE-Manager-Server-4.1-Debuginfo-Pool","installer_updates":false,"description":"SLE-Product-SUSE-Manager-Server-4.1-Debuginfo-Pool for sle-15-ppc64le"},{"enabled":false,"id":4330,"autorefresh":false,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Products/SLE-Product-SUSE-Manager-Server/4.1/ppc64le/product_source/","name":"SLE-Product-SUSE-Manager-Server-4.1-Source-Pool","installer_updates":false,"description":"SLE-Product-SUSE-Manager-Server-4.1-Source-Pool for sle-15-ppc64le"}],"product_type":"base","cpe":"cpe:/o:suse:suse-manager-server:4.1"},{"id":2011,"release_stage":"released","identifier":"SUSE-Manager-Server","extensions":[{"extensions":[{"friendly_name":"SUSE Package Hub 15 SP2 s390x","migration_extra":false,"release_type":null,"former_identifier":"PackageHub","name":"SUSE Package Hub","offline_predecessor_ids":[1812,1914],"version":"15.2","recommended":false,"release_stage":"released","identifier":"PackageHub","id":1949,"extensions":[],"friendly_version":"15 SP2","arch":"s390x","eula_url":"","shortname":"SUSE-PackageHub-15","description":"SUSE Package Hub is a free of charge extension providing access to community maintained packages built to run on SUSE Linux Enterprise Server. Built from the same sources used in the openSUSE distributions, these quality packages provide additional software to what is found in the SUSE Linux Enterprise Server product. Packages from the Package Hub are delivered without L3 support from SUSE. General updates and fixes to the packages in SUSE Package Hub are provided by the openSUSE community based on their discretion, though SUSE will monitor and ensure that any known critical security issues will be addressed. Packages in the Package Hub are approved by SUSE for use with SUSE Linux Enterprise Server 15-SP2 and to not interfere with the supportability of SUSE Linux Enterprise Server, its modules and extensions. For more information about SUSE Package Hub please visit https://packagehub.suse.com.","free":true,"cpe":"cpe:/o:suse:packagehub:15:sp2","product_type":"extension","repositories":[{"url":"https://updates.suse.com/SUSE/Backports/SLE-15-SP2_s390x/standard/","distro_target":"sle-15-s390x","autorefresh":false,"id":4020,"enabled":true,"description":"SUSE-PackageHub-15-SP2-Backports-Pool for sle-15-s390x","installer_updates":false,"name":"SUSE-PackageHub-15-SP2-Backports-Pool"},{"enabled":false,"id":4021,"distro_target":"sle-15-s390x","autorefresh":true,"url":"https://updates.suse.com/SUSE/Backports/SLE-15-SP2_s390x/standard_debug/","installer_updates":false,"name":"SUSE-PackageHub-15-SP2-Backports-Debuginfo","description":"SUSE-PackageHub-15-SP2-Backports-Debuginfo for sle-15-s390x"},{"id":4022,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP2/s390x/update/","autorefresh":true,"distro_target":"sle-15-s390x","name":"SLE-Module-Packagehub-Subpackages15-SP2-Updates","installer_updates":false,"description":"SLE-Module-Packagehub-Subpackages15-SP2-Updates for sle-15-s390x"},{"description":"SLE-Module-Packagehub-Subpackages15-SP2-Debuginfo-Updates for sle-15-s390x","installer_updates":false,"name":"SLE-Module-Packagehub-Subpackages15-SP2-Debuginfo-Updates","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP2/s390x/update_debug/","distro_target":"sle-15-s390x","autorefresh":true,"id":4023,"enabled":false},{"name":"SUSE-PackageHub-15-SP2-Pool","installer_updates":false,"description":"SUSE-PackageHub-15-SP2-Pool for sle-15-s390x","id":4024,"enabled":true,"url":"https://updates.suse.com/SUSE/Backports/SLE-15-SP2_s390x/product/","autorefresh":false,"distro_target":"sle-15-s390x"},{"enabled":true,"id":4025,"autorefresh":false,"distro_target":"sle-15-s390x","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP2/s390x/product/","name":"SLE-Module-Packagehub-Subpackages15-SP2-Pool","installer_updates":false,"description":"SLE-Module-Packagehub-Subpackages15-SP2-Pool for sle-15-s390x"},{"description":"SLE-Module-Packagehub-Subpackages15-SP2-Debuginfo-Pool for sle-15-s390x","name":"SLE-Module-Packagehub-Subpackages15-SP2-Debuginfo-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-15-s390x","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP2/s390x/product_debug/","enabled":false,"id":4026},{"id":4027,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP2/s390x/product_source/","autorefresh":false,"distro_target":"sle-15-s390x","name":"SLE-Module-Packagehub-Subpackages15-SP2-Source-Pool","installer_updates":false,"description":"SLE-Module-Packagehub-Subpackages15-SP2-Source-Pool for sle-15-s390x"}],"online_predecessor_ids":[1742,1870],"product_class":"MODULE","predecessor_ids":[1742,1870]},{"description":"

The SUSE Linux Enterprise Server Applications Module delivers a basic set of Server functionality.

Access to the Server Applications Module is included in your SUSE Linux Enterprise Server subscription.

","shortname":"Server-Applications-Module","free":true,"arch":"s390x","eula_url":"","product_class":"MODULE","online_predecessor_ids":[1599,1779],"repositories":[{"id":4051,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15-SP2/s390x/update/","autorefresh":true,"distro_target":"sle-15-s390x","name":"SLE-Module-Server-Applications15-SP2-Updates","installer_updates":false,"description":"SLE-Module-Server-Applications15-SP2-Updates for sle-15-s390x"},{"enabled":false,"id":4052,"distro_target":"sle-15-s390x","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15-SP2/s390x/update_debug/","installer_updates":false,"name":"SLE-Module-Server-Applications15-SP2-Debuginfo-Updates","description":"SLE-Module-Server-Applications15-SP2-Debuginfo-Updates for sle-15-s390x"},{"description":"SLE-Module-Server-Applications15-SP2-Pool for sle-15-s390x","installer_updates":false,"name":"SLE-Module-Server-Applications15-SP2-Pool","distro_target":"sle-15-s390x","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP2/s390x/product/","enabled":true,"id":4053},{"enabled":false,"id":4054,"autorefresh":false,"distro_target":"sle-15-s390x","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP2/s390x/product_debug/","name":"SLE-Module-Server-Applications15-SP2-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-Server-Applications15-SP2-Debuginfo-Pool for sle-15-s390x"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP2/s390x/product_source/","distro_target":"sle-15-s390x","autorefresh":false,"id":4055,"enabled":false,"description":"SLE-Module-Server-Applications15-SP2-Source-Pool for sle-15-s390x","installer_updates":false,"name":"SLE-Module-Server-Applications15-SP2-Source-Pool"}],"predecessor_ids":[1599,1779],"cpe":"cpe:/o:suse:sle-module-server-applications:15:sp2","product_type":"module","version":"15.2","recommended":true,"friendly_name":"Server Applications Module 15 SP2 s390x","migration_extra":false,"release_type":null,"former_identifier":"sle-module-server-applications","name":"Server Applications Module","offline_predecessor_ids":[],"friendly_version":"15 SP2","id":1954,"release_stage":"released","identifier":"sle-module-server-applications","extensions":[{"predecessor_ids":[1605,1784],"online_predecessor_ids":[1605,1784],"repositories":[{"name":"SLE-Product-HA15-SP2-Updates","installer_updates":false,"description":"SLE-Product-HA15-SP2-Updates for sle-15-s390x","id":4071,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-HA/15-SP2/s390x/update/","autorefresh":true,"distro_target":"sle-15-s390x"},{"enabled":false,"id":4072,"autorefresh":true,"distro_target":"sle-15-s390x","url":"https://updates.suse.com/SUSE/Updates/SLE-Product-HA/15-SP2/s390x/update_debug/","name":"SLE-Product-HA15-SP2-Debuginfo-Updates","installer_updates":false,"description":"SLE-Product-HA15-SP2-Debuginfo-Updates for sle-15-s390x"},{"description":"SLE-Product-HA15-SP2-Pool for sle-15-s390x","name":"SLE-Product-HA15-SP2-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP2/s390x/product/","autorefresh":false,"distro_target":"sle-15-s390x","id":4073,"enabled":true},{"id":4074,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP2/s390x/product_debug/","autorefresh":false,"distro_target":"sle-15-s390x","name":"SLE-Product-HA15-SP2-Debuginfo-Pool","installer_updates":false,"description":"SLE-Product-HA15-SP2-Debuginfo-Pool for sle-15-s390x"},{"id":4075,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP2/s390x/product_source/","autorefresh":false,"distro_target":"sle-15-s390x","name":"SLE-Product-HA15-SP2-Source-Pool","installer_updates":false,"description":"SLE-Product-HA15-SP2-Source-Pool for sle-15-s390x"}],"product_class":"SLE-HAE-Z","product_type":"extension","cpe":"cpe:/o:suse:sle-ha:15:sp2","free":false,"description":"SUSE Linux High Availability Extension provides mature, industry-leading open-source high-availability clustering technologies that are easy to set up and use. It can be deployed in physical and/or virtual environments, and can cluster physical servers, virtual servers, or any combination of the two to suit your business’ needs.","shortname":"SLEHA15-SP2","eula_url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP2/s390x/product.license/","arch":"s390x","friendly_version":"15 SP2","extensions":[],"identifier":"sle-ha","release_stage":"released","id":1958,"recommended":false,"version":"15.2","offline_predecessor_ids":[1080,1082,1084,1086,1109,1110,1257,1287,1636,1638,1883,1885],"name":"SUSE Linux Enterprise High Availability Extension","former_identifier":"sle-ha","release_type":null,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise High Availability Extension 15 SP2 s390x"},{"recommended":true,"version":"15.2","name":"Web and Scripting Module","offline_predecessor_ids":[1152],"migration_extra":false,"friendly_name":"Web and Scripting Module 15 SP2 s390x","former_identifier":"sle-module-web-scripting","release_type":null,"friendly_version":"15 SP2","extensions":[{"release_stage":"released","identifier":"sle-module-suse-manager-server","id":2018,"extensions":[],"friendly_version":"4.1","friendly_name":"SUSE Manager Server Module 4.1 s390x","migration_extra":false,"former_identifier":"sle-module-suse-manager-server","release_type":null,"name":"SUSE Manager Server Module","offline_predecessor_ids":[],"version":"4.1","recommended":true,"cpe":"cpe:/o:suse:sle-module-suse-manager-server:4.1","product_type":"module","online_predecessor_ids":[1904],"product_class":"MODULE","repositories":[{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-SUSE-Manager-Server/4.1/s390x/update/","autorefresh":true,"distro_target":"sle-15-s390x","id":4366,"enabled":true,"description":"SLE-Module-SUSE-Manager-Server-4.1-Updates for sle-15-s390x","name":"SLE-Module-SUSE-Manager-Server-4.1-Updates","installer_updates":false},{"installer_updates":false,"name":"SLE-Module-SUSE-Manager-Server-4.1-Debuginfo-Updates","description":"SLE-Module-SUSE-Manager-Server-4.1-Debuginfo-Updates for sle-15-s390x","id":4367,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-SUSE-Manager-Server/4.1/s390x/update_debug/","distro_target":"sle-15-s390x","autorefresh":true},{"description":"SLE-Module-SUSE-Manager-Server-4.1-Pool for sle-15-s390x","name":"SLE-Module-SUSE-Manager-Server-4.1-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-SUSE-Manager-Server/4.1/s390x/product/","autorefresh":false,"distro_target":"sle-15-s390x","id":4368,"enabled":true},{"distro_target":"sle-15-s390x","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-SUSE-Manager-Server/4.1/s390x/product_debug/","enabled":false,"id":4369,"description":"SLE-Module-SUSE-Manager-Server-4.1-Debuginfo-Pool for sle-15-s390x","installer_updates":false,"name":"SLE-Module-SUSE-Manager-Server-4.1-Debuginfo-Pool"},{"distro_target":"sle-15-s390x","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-SUSE-Manager-Server/4.1/s390x/product_source/","enabled":false,"id":4370,"description":"SLE-Module-SUSE-Manager-Server-4.1-Source-Pool for sle-15-s390x","installer_updates":false,"name":"SLE-Module-SUSE-Manager-Server-4.1-Source-Pool"}],"predecessor_ids":[1904],"arch":"s390x","eula_url":"","description":"SUSE Manager lets you efficiently manage physical, virtual, and cloud-based Linux systems. It provides automated and cost-effective configuration and software management, asset management, and system provisioning.","shortname":"SUSE Manager Server 4.1 Module","free":true}],"release_stage":"released","id":1975,"identifier":"sle-module-web-scripting","description":"

The SUSE Linux Enterprise Web and Scripting Module should contains additional packages that are helpful when running a webserver.

Access to the Web and Scripting Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself: Package versions in this module are usually supported for at most three years. We are planning to release more recent versions on a schedule of approximately 18 month; the exact dates may differ per package.

","shortname":"Web-Scripting-Module","free":true,"eula_url":"","arch":"s390x","predecessor_ids":[1720,1797],"online_predecessor_ids":[1720,1797],"product_class":"MODULE","repositories":[{"description":"SLE-Module-Web-Scripting15-SP2-Updates for sle-15-s390x","installer_updates":false,"name":"SLE-Module-Web-Scripting15-SP2-Updates","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/15-SP2/s390x/update/","distro_target":"sle-15-s390x","autorefresh":true,"id":4156,"enabled":true},{"name":"SLE-Module-Web-Scripting15-SP2-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-Web-Scripting15-SP2-Debuginfo-Updates for sle-15-s390x","id":4157,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/15-SP2/s390x/update_debug/","autorefresh":true,"distro_target":"sle-15-s390x"},{"description":"SLE-Module-Web-Scripting15-SP2-Pool for sle-15-s390x","installer_updates":false,"name":"SLE-Module-Web-Scripting15-SP2-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP2/s390x/product/","distro_target":"sle-15-s390x","autorefresh":false,"id":4158,"enabled":true},{"installer_updates":false,"name":"SLE-Module-Web-Scripting15-SP2-Debuginfo-Pool","description":"SLE-Module-Web-Scripting15-SP2-Debuginfo-Pool for sle-15-s390x","id":4159,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP2/s390x/product_debug/","distro_target":"sle-15-s390x","autorefresh":false},{"autorefresh":false,"distro_target":"sle-15-s390x","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP2/s390x/product_source/","enabled":false,"id":4160,"description":"SLE-Module-Web-Scripting15-SP2-Source-Pool for sle-15-s390x","name":"SLE-Module-Web-Scripting15-SP2-Source-Pool","installer_updates":false}],"cpe":"cpe:/o:suse:sle-module-web-scripting:15:sp2","product_type":"module"},{"product_type":"module","cpe":"cpe:/o:suse:sle-module-legacy:15:sp2","repositories":[{"name":"SLE-Module-Legacy15-SP2-Updates","installer_updates":false,"description":"SLE-Module-Legacy15-SP2-Updates for sle-15-s390x","id":4186,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/15-SP2/s390x/update/","autorefresh":true,"distro_target":"sle-15-s390x"},{"id":4187,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/15-SP2/s390x/update_debug/","autorefresh":true,"distro_target":"sle-15-s390x","name":"SLE-Module-Legacy15-SP2-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-Legacy15-SP2-Debuginfo-Updates for sle-15-s390x"},{"id":4188,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15-SP2/s390x/product/","autorefresh":false,"distro_target":"sle-15-s390x","name":"SLE-Module-Legacy15-SP2-Pool","installer_updates":false,"description":"SLE-Module-Legacy15-SP2-Pool for sle-15-s390x"},{"installer_updates":false,"name":"SLE-Module-Legacy15-SP2-Debuginfo-Pool","description":"SLE-Module-Legacy15-SP2-Debuginfo-Pool for sle-15-s390x","id":4189,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15-SP2/s390x/product_debug/","distro_target":"sle-15-s390x","autorefresh":false},{"name":"SLE-Module-Legacy15-SP2-Source-Pool","installer_updates":false,"description":"SLE-Module-Legacy15-SP2-Source-Pool for sle-15-s390x","id":4190,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15-SP2/s390x/product_source/","autorefresh":false,"distro_target":"sle-15-s390x"}],"online_predecessor_ids":[1602,1803],"product_class":"MODULE","predecessor_ids":[1602,1803],"arch":"s390x","eula_url":"","free":true,"shortname":"Legacy-Module","description":"

The Legacy Module helps you migrating applications from SUSE Linux Enterprise 12 and other systems to SUSE Linux Enterprise 15, by providing packages which are discontinued on SUSE Linux Enterprise Server, such as: ntp, IBM Java 8, and a number of libraries.

Access to the Legacy Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself. Packages in the this module are usually supported for at most three years.

","release_stage":"released","identifier":"sle-module-legacy","id":1981,"extensions":[],"friendly_version":"15 SP2","release_type":null,"former_identifier":"sle-module-legacy","friendly_name":"Legacy Module 15 SP2 s390x","migration_extra":false,"offline_predecessor_ids":[1149],"name":"Legacy Module","version":"15.2","recommended":false},{"recommended":false,"version":"15.2","name":"Public Cloud Module","offline_predecessor_ids":[1219],"friendly_name":"Public Cloud Module 15 SP2 s390x","migration_extra":false,"release_type":null,"former_identifier":"sle-module-public-cloud","friendly_version":"15 SP2","extensions":[],"release_stage":"released","identifier":"sle-module-public-cloud","id":1987,"description":"

The Public Cloud Module is a collection of tools that enables you to create and manage cloud images from the commandline on SUSE Linux Enterprise Server. When building your own images with KIWI or SUSE Studio, initialization code specific to the target cloud is included in that image.

Access to the Public Cloud Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself; please check the Release Notes for further details.

","shortname":"Public-Cloud-Module","free":true,"eula_url":"","arch":"s390x","predecessor_ids":[1646,1807],"repositories":[{"installer_updates":false,"name":"SLE-Module-Public-Cloud15-SP2-Updates","description":"SLE-Module-Public-Cloud15-SP2-Updates for sle-15-s390x","id":4216,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/15-SP2/s390x/update/","distro_target":"sle-15-s390x","autorefresh":true},{"description":"SLE-Module-Public-Cloud15-SP2-Debuginfo-Updates for sle-15-s390x","installer_updates":false,"name":"SLE-Module-Public-Cloud15-SP2-Debuginfo-Updates","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/15-SP2/s390x/update_debug/","distro_target":"sle-15-s390x","autorefresh":true,"id":4217,"enabled":false},{"description":"SLE-Module-Public-Cloud15-SP2-Pool for sle-15-s390x","name":"SLE-Module-Public-Cloud15-SP2-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-15-s390x","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP2/s390x/product/","enabled":true,"id":4218},{"enabled":false,"id":4219,"autorefresh":false,"distro_target":"sle-15-s390x","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP2/s390x/product_debug/","name":"SLE-Module-Public-Cloud15-SP2-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-Public-Cloud15-SP2-Debuginfo-Pool for sle-15-s390x"},{"autorefresh":false,"distro_target":"sle-15-s390x","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP2/s390x/product_source/","enabled":false,"id":4220,"description":"SLE-Module-Public-Cloud15-SP2-Source-Pool for sle-15-s390x","name":"SLE-Module-Public-Cloud15-SP2-Source-Pool","installer_updates":false}],"online_predecessor_ids":[1646,1807],"product_class":"MODULE","cpe":"cpe:/o:suse:sle-module-public-cloud:15:sp2","product_type":"module"}]},{"online_predecessor_ids":[1641,1789],"product_class":"MODULE","repositories":[{"description":"SLE-Module-Containers15-SP2-Updates for sle-15-s390x","installer_updates":false,"name":"SLE-Module-Containers15-SP2-Updates","distro_target":"sle-15-s390x","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/15-SP2/s390x/update/","enabled":true,"id":4091},{"autorefresh":true,"distro_target":"sle-15-s390x","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/15-SP2/s390x/update_debug/","enabled":false,"id":4092,"description":"SLE-Module-Containers15-SP2-Debuginfo-Updates for sle-15-s390x","name":"SLE-Module-Containers15-SP2-Debuginfo-Updates","installer_updates":false},{"description":"SLE-Module-Containers15-SP2-Pool for sle-15-s390x","name":"SLE-Module-Containers15-SP2-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP2/s390x/product/","autorefresh":false,"distro_target":"sle-15-s390x","id":4093,"enabled":true},{"enabled":false,"id":4094,"distro_target":"sle-15-s390x","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP2/s390x/product_debug/","installer_updates":false,"name":"SLE-Module-Containers15-SP2-Debuginfo-Pool","description":"SLE-Module-Containers15-SP2-Debuginfo-Pool for sle-15-s390x"},{"name":"SLE-Module-Containers15-SP2-Source-Pool","installer_updates":false,"description":"SLE-Module-Containers15-SP2-Source-Pool for sle-15-s390x","enabled":false,"id":4095,"autorefresh":false,"distro_target":"sle-15-s390x","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP2/s390x/product_source/"}],"predecessor_ids":[1641,1789],"cpe":"cpe:/o:suse:sle-module-containers:15:sp2","product_type":"module","shortname":"Containers-Module","description":"

This Module contains several packages revolving around containers and related tools.

","free":true,"arch":"s390x","eula_url":"","friendly_version":"15 SP2","identifier":"sle-module-containers","release_stage":"released","id":1962,"extensions":[],"version":"15.2","recommended":false,"migration_extra":false,"friendly_name":"Containers Module 15 SP2 s390x","release_type":null,"former_identifier":"sle-module-containers","name":"Containers Module","offline_predecessor_ids":[1354]},{"product_type":"module","cpe":"cpe:/o:suse:sle-module-desktop-applications:15:sp2","predecessor_ids":[1593,1775],"product_class":"MODULE","online_predecessor_ids":[1593,1775],"repositories":[{"description":"SLE-Module-Desktop-Applications15-SP2-Updates for sle-15-s390x","installer_updates":false,"name":"SLE-Module-Desktop-Applications15-SP2-Updates","distro_target":"sle-15-s390x","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15-SP2/s390x/update/","enabled":true,"id":4111},{"enabled":false,"id":4112,"autorefresh":true,"distro_target":"sle-15-s390x","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15-SP2/s390x/update_debug/","name":"SLE-Module-Desktop-Applications15-SP2-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-Desktop-Applications15-SP2-Debuginfo-Updates for sle-15-s390x"},{"description":"SLE-Module-Desktop-Applications15-SP2-Pool for sle-15-s390x","name":"SLE-Module-Desktop-Applications15-SP2-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP2/s390x/product/","autorefresh":false,"distro_target":"sle-15-s390x","id":4113,"enabled":true},{"installer_updates":false,"name":"SLE-Module-Desktop-Applications15-SP2-Debuginfo-Pool","description":"SLE-Module-Desktop-Applications15-SP2-Debuginfo-Pool for sle-15-s390x","id":4114,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP2/s390x/product_debug/","distro_target":"sle-15-s390x","autorefresh":false},{"name":"SLE-Module-Desktop-Applications15-SP2-Source-Pool","installer_updates":false,"description":"SLE-Module-Desktop-Applications15-SP2-Source-Pool for sle-15-s390x","enabled":false,"id":4115,"autorefresh":false,"distro_target":"sle-15-s390x","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP2/s390x/product_source/"}],"eula_url":"","arch":"s390x","free":true,"shortname":"Desktop-Applications-Module","description":"

The SUSE Linux Enterprise Desktop Applications Module delivers a basic set of Desktop functionality.

Access to the Desktop Applications Module is included in your SUSE Linux Enterprise product subscription.

","extensions":[{"offline_predecessor_ids":[1340,1632,1891],"name":"Development Tools Module","former_identifier":"sle-sdk","release_type":null,"migration_extra":false,"friendly_name":"Development Tools Module 15 SP2 s390x","recommended":false,"version":"15.2","extensions":[],"release_stage":"released","identifier":"sle-module-development-tools","id":1970,"friendly_version":"15 SP2","eula_url":"","arch":"s390x","free":true,"shortname":"Development-Tools-Module","description":"

The Development Tools Module helps you developing applications for SUSE Linux Enterprise 15.

Access to the Development Tools Module is included in your SUSE Linux Enterprise product subscription. The module has a different lifecycle than SUSE Linux Enterprise itself.

","product_type":"module","cpe":"cpe:/o:suse:sle-module-development-tools:15:sp2","predecessor_ids":[1596,1793],"online_predecessor_ids":[1596,1793],"product_class":"MODULE","repositories":[{"name":"SLE-Module-DevTools15-SP2-Updates","installer_updates":false,"description":"SLE-Module-DevTools15-SP2-Updates for sle-15-s390x","enabled":true,"id":4131,"autorefresh":true,"distro_target":"sle-15-s390x","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15-SP2/s390x/update/"},{"description":"SLE-Module-DevTools15-SP2-Debuginfo-Updates for sle-15-s390x","installer_updates":false,"name":"SLE-Module-DevTools15-SP2-Debuginfo-Updates","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15-SP2/s390x/update_debug/","distro_target":"sle-15-s390x","autorefresh":true,"id":4132,"enabled":false},{"name":"SLE-Module-DevTools15-SP2-Pool","installer_updates":false,"description":"SLE-Module-DevTools15-SP2-Pool for sle-15-s390x","id":4133,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP2/s390x/product/","autorefresh":false,"distro_target":"sle-15-s390x"},{"enabled":false,"id":4134,"autorefresh":false,"distro_target":"sle-15-s390x","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP2/s390x/product_debug/","name":"SLE-Module-DevTools15-SP2-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-DevTools15-SP2-Debuginfo-Pool for sle-15-s390x"},{"name":"SLE-Module-DevTools15-SP2-Source-Pool","installer_updates":false,"description":"SLE-Module-DevTools15-SP2-Source-Pool for sle-15-s390x","id":4135,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP2/s390x/product_source/","autorefresh":false,"distro_target":"sle-15-s390x"}]}],"identifier":"sle-module-desktop-applications","release_stage":"released","id":1966,"friendly_version":"15 SP2","offline_predecessor_ids":[],"name":"Desktop Applications Module","former_identifier":"sle-module-desktop-applications","release_type":null,"migration_extra":false,"friendly_name":"Desktop Applications Module 15 SP2 s390x","recommended":false,"version":"15.2"},{"product_type":"module","cpe":"cpe:/o:suse:sle-module-python2:15:sp2","online_predecessor_ids":[1866],"product_class":"MODULE","repositories":[{"description":"SLE-Module-Python2-15-SP2-Updates for sle-15-s390x","name":"SLE-Module-Python2-15-SP2-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-15-s390x","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Python2/15-SP2/s390x/update/","enabled":true,"id":4236},{"autorefresh":true,"distro_target":"sle-15-s390x","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Python2/15-SP2/s390x/update_debug/","enabled":false,"id":4237,"description":"SLE-Module-Python2-15-SP2-Debuginfo-Updates for sle-15-s390x","name":"SLE-Module-Python2-15-SP2-Debuginfo-Updates","installer_updates":false},{"autorefresh":false,"distro_target":"sle-15-s390x","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Python2/15-SP2/s390x/product/","enabled":true,"id":4238,"description":"SLE-Module-Python2-15-SP2-Pool for sle-15-s390x","name":"SLE-Module-Python2-15-SP2-Pool","installer_updates":false},{"autorefresh":false,"distro_target":"sle-15-s390x","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Python2/15-SP2/s390x/product_debug/","enabled":false,"id":4239,"description":"SLE-Module-Python2-15-SP2-Debuginfo-Pool for sle-15-s390x","name":"SLE-Module-Python2-15-SP2-Debuginfo-Pool","installer_updates":false},{"distro_target":"sle-15-s390x","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Python2/15-SP2/s390x/product_source/","enabled":false,"id":4240,"description":"SLE-Module-Python2-15-SP2-Source-Pool for sle-15-s390x","installer_updates":false,"name":"SLE-Module-Python2-15-SP2-Source-Pool"}],"predecessor_ids":[1866],"arch":"s390x","eula_url":"","free":true,"description":"

This module contains the python 2 packages.

Access to the Python 2 Module is included in your SUSE Linux Enterprise subscription. The module has a different lifecycle than SUSE Linux Enterprise itself. Packages in the this module are usually supported for at most three years.

","shortname":"Python2-Module","id":1991,"release_stage":"released","identifier":"sle-module-python2","extensions":[],"friendly_version":"15 SP2","release_type":null,"former_identifier":"sle-module-python2","friendly_name":"Python 2 Module 15 SP2 s390x","migration_extra":false,"offline_predecessor_ids":[],"name":"Python 2 Module","version":"15.2","recommended":true}],"release_stage":"released","identifier":"sle-module-basesystem","id":1945,"friendly_version":"15 SP2","offline_predecessor_ids":[1295,1367],"name":"Basesystem Module","release_type":null,"former_identifier":"sle-module-basesystem","friendly_name":"Basesystem Module 15 SP2 s390x","migration_extra":false,"recommended":true,"version":"15.2","product_type":"module","cpe":"cpe:/o:suse:sle-module-basesystem:15:sp2","predecessor_ids":[1587,1771],"online_predecessor_ids":[1587,1771],"product_class":"MODULE","repositories":[{"description":"SLE-Module-Basesystem15-SP2-Updates for sle-15-s390x","name":"SLE-Module-Basesystem15-SP2-Updates","installer_updates":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15-SP2/s390x/update/","autorefresh":true,"distro_target":"sle-15-s390x","id":3994,"enabled":true},{"description":"SLE-Module-Basesystem15-SP2-Debuginfo-Updates for sle-15-s390x","name":"SLE-Module-Basesystem15-SP2-Debuginfo-Updates","installer_updates":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15-SP2/s390x/update_debug/","autorefresh":true,"distro_target":"sle-15-s390x","id":3995,"enabled":false},{"id":3996,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP2/s390x/product/","autorefresh":false,"distro_target":"sle-15-s390x","name":"SLE-Module-Basesystem15-SP2-Pool","installer_updates":false,"description":"SLE-Module-Basesystem15-SP2-Pool for sle-15-s390x"},{"name":"SLE-Module-Basesystem15-SP2-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-Basesystem15-SP2-Debuginfo-Pool for sle-15-s390x","enabled":false,"id":3997,"autorefresh":false,"distro_target":"sle-15-s390x","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP2/s390x/product_debug/"},{"id":3998,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP2/s390x/product_source/","distro_target":"sle-15-s390x","autorefresh":false,"installer_updates":false,"name":"SLE-Module-Basesystem15-SP2-Source-Pool","description":"SLE-Module-Basesystem15-SP2-Source-Pool for sle-15-s390x"}],"eula_url":"","arch":"s390x","free":true,"shortname":"Basesystem-Module","description":"

The SUSE Linux Enterprise Basesystem Module delivers the base system of the product.

"}],"friendly_version":"4.1","migration_extra":false,"friendly_name":"SUSE Manager Server 4.1 s390x","former_identifier":"SUSE-Manager-Server","release_type":null,"name":"SUSE Manager Server","offline_predecessor_ids":[],"version":"4.1","recommended":false,"cpe":"cpe:/o:suse:suse-manager-server:4.1","product_type":"base","online_predecessor_ids":[1898],"repositories":[{"description":"SLE-Product-SUSE-Manager-Server-4.1-Updates for sle-15-s390x","name":"SLE-Product-SUSE-Manager-Server-4.1-Updates","installer_updates":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-SUSE-Manager-Server/4.1/s390x/update/","autorefresh":true,"distro_target":"sle-15-s390x","id":4331,"enabled":true},{"name":"SLE-Product-SUSE-Manager-Server-4.1-Debuginfo-Updates","installer_updates":false,"description":"SLE-Product-SUSE-Manager-Server-4.1-Debuginfo-Updates for sle-15-s390x","enabled":false,"id":4332,"autorefresh":true,"distro_target":"sle-15-s390x","url":"https://updates.suse.com/SUSE/Updates/SLE-Product-SUSE-Manager-Server/4.1/s390x/update_debug/"},{"id":4333,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-SUSE-Manager-Server/4.1/s390x/product/","distro_target":"sle-15-s390x","autorefresh":false,"installer_updates":false,"name":"SLE-Product-SUSE-Manager-Server-4.1-Pool","description":"SLE-Product-SUSE-Manager-Server-4.1-Pool for sle-15-s390x"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Product-SUSE-Manager-Server/4.1/s390x/product_debug/","autorefresh":false,"distro_target":"sle-15-s390x","id":4334,"enabled":false,"description":"SLE-Product-SUSE-Manager-Server-4.1-Debuginfo-Pool for sle-15-s390x","name":"SLE-Product-SUSE-Manager-Server-4.1-Debuginfo-Pool","installer_updates":false},{"description":"SLE-Product-SUSE-Manager-Server-4.1-Source-Pool for sle-15-s390x","installer_updates":false,"name":"SLE-Product-SUSE-Manager-Server-4.1-Source-Pool","distro_target":"sle-15-s390x","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-SUSE-Manager-Server/4.1/s390x/product_source/","enabled":false,"id":4335}],"product_class":"SMS-Z","predecessor_ids":[1898],"arch":"s390x","eula_url":"https://updates.suse.com/SUSE/Products/SLE-Product-SUSE-Manager-Server/4.1/s390x/product.license/","shortname":"SUSE Manager Server 4.1","description":"SUSE Manager lets you efficiently manage physical, virtual, and cloud-based Linux systems. It provides automated and cost-effective configuration and software management, asset management, and system provisioning.","free":false},{"eula_url":"https://updates.suse.com/SUSE/Products/SLE-Product-SUSE-Manager-Server/4.1/x86_64/product.license/","arch":"x86_64","free":false,"shortname":"SUSE Manager Server 4.1","description":"SUSE Manager lets you efficiently manage physical, virtual, and cloud-based Linux systems. It provides automated and cost-effective configuration and software management, asset management, and system provisioning.","product_type":"base","cpe":"cpe:/o:suse:suse-manager-server:4.1","predecessor_ids":[1899],"product_class":"SMS-X86","online_predecessor_ids":[1899],"repositories":[{"distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-SUSE-Manager-Server/4.1/x86_64/update/","enabled":true,"id":4336,"description":"SLE-Product-SUSE-Manager-Server-4.1-Updates for sle-15-x86_64","installer_updates":false,"name":"SLE-Product-SUSE-Manager-Server-4.1-Updates"},{"enabled":false,"id":4337,"distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-SUSE-Manager-Server/4.1/x86_64/update_debug/","installer_updates":false,"name":"SLE-Product-SUSE-Manager-Server-4.1-Debuginfo-Updates","description":"SLE-Product-SUSE-Manager-Server-4.1-Debuginfo-Updates for sle-15-x86_64"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Product-SUSE-Manager-Server/4.1/x86_64/product/","distro_target":"sle-15-x86_64","autorefresh":false,"id":4338,"enabled":true,"description":"SLE-Product-SUSE-Manager-Server-4.1-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Product-SUSE-Manager-Server-4.1-Pool"},{"installer_updates":false,"name":"SLE-Product-SUSE-Manager-Server-4.1-Debuginfo-Pool","description":"SLE-Product-SUSE-Manager-Server-4.1-Debuginfo-Pool for sle-15-x86_64","enabled":false,"id":4339,"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-SUSE-Manager-Server/4.1/x86_64/product_debug/"},{"id":4340,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-SUSE-Manager-Server/4.1/x86_64/product_source/","autorefresh":false,"distro_target":"sle-15-x86_64","name":"SLE-Product-SUSE-Manager-Server-4.1-Source-Pool","installer_updates":false,"description":"SLE-Product-SUSE-Manager-Server-4.1-Source-Pool for sle-15-x86_64"}],"offline_predecessor_ids":[],"name":"SUSE Manager Server","former_identifier":"SUSE-Manager-Server","release_type":null,"migration_extra":false,"friendly_name":"SUSE Manager Server 4.1 x86_64","recommended":false,"version":"4.1","extensions":[{"arch":"x86_64","eula_url":"","free":true,"shortname":"Basesystem-Module","description":"

The SUSE Linux Enterprise Basesystem Module delivers the base system of the product.

","product_type":"module","cpe":"cpe:/o:suse:sle-module-basesystem:15:sp2","product_class":"MODULE","online_predecessor_ids":[1576,1772],"repositories":[{"description":"SLE-Module-Basesystem15-SP2-Updates for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Basesystem15-SP2-Updates","distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15-SP2/x86_64/update/","enabled":true,"id":3999},{"id":4000,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15-SP2/x86_64/update_debug/","autorefresh":true,"distro_target":"sle-15-x86_64","name":"SLE-Module-Basesystem15-SP2-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-Basesystem15-SP2-Debuginfo-Updates for sle-15-x86_64"},{"description":"SLE-Module-Basesystem15-SP2-Pool for sle-15-x86_64","name":"SLE-Module-Basesystem15-SP2-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP2/x86_64/product/","autorefresh":false,"distro_target":"sle-15-x86_64","id":4001,"enabled":true},{"installer_updates":false,"name":"SLE-Module-Basesystem15-SP2-Debuginfo-Pool","description":"SLE-Module-Basesystem15-SP2-Debuginfo-Pool for sle-15-x86_64","id":4002,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP2/x86_64/product_debug/","distro_target":"sle-15-x86_64","autorefresh":false},{"description":"SLE-Module-Basesystem15-SP2-Source-Pool for sle-15-x86_64","name":"SLE-Module-Basesystem15-SP2-Source-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP2/x86_64/product_source/","enabled":false,"id":4003}],"predecessor_ids":[1576,1772],"former_identifier":"sle-module-basesystem","release_type":null,"friendly_name":"Basesystem Module 15 SP2 x86_64","migration_extra":false,"offline_predecessor_ids":[1212,1368,1440],"name":"Basesystem Module","version":"15.2","recommended":true,"release_stage":"released","identifier":"sle-module-basesystem","id":1946,"extensions":[{"cpe":"cpe:/o:suse:packagehub:15:sp2","product_type":"extension","predecessor_ids":[1743,1871],"online_predecessor_ids":[1743,1871],"product_class":"MODULE","repositories":[{"installer_updates":false,"name":"SUSE-PackageHub-15-SP2-Backports-Pool","description":"SUSE-PackageHub-15-SP2-Backports-Pool for sle-15-x86_64","id":4028,"enabled":true,"url":"https://updates.suse.com/SUSE/Backports/SLE-15-SP2_x86_64/standard/","distro_target":"sle-15-x86_64","autorefresh":false},{"enabled":false,"id":4029,"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Backports/SLE-15-SP2_x86_64/standard_debug/","name":"SUSE-PackageHub-15-SP2-Backports-Debuginfo","installer_updates":false,"description":"SUSE-PackageHub-15-SP2-Backports-Debuginfo for sle-15-x86_64"},{"installer_updates":false,"name":"SLE-Module-Packagehub-Subpackages15-SP2-Updates","description":"SLE-Module-Packagehub-Subpackages15-SP2-Updates for sle-15-x86_64","id":4030,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP2/x86_64/update/","distro_target":"sle-15-x86_64","autorefresh":true},{"enabled":false,"id":4031,"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP2/x86_64/update_debug/","name":"SLE-Module-Packagehub-Subpackages15-SP2-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-Packagehub-Subpackages15-SP2-Debuginfo-Updates for sle-15-x86_64"},{"installer_updates":false,"name":"SUSE-PackageHub-15-SP2-Pool","description":"SUSE-PackageHub-15-SP2-Pool for sle-15-x86_64","id":4032,"enabled":true,"url":"https://updates.suse.com/SUSE/Backports/SLE-15-SP2_x86_64/product/","distro_target":"sle-15-x86_64","autorefresh":false},{"installer_updates":false,"name":"SLE-Module-Packagehub-Subpackages15-SP2-Pool","description":"SLE-Module-Packagehub-Subpackages15-SP2-Pool for sle-15-x86_64","id":4033,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP2/x86_64/product/","distro_target":"sle-15-x86_64","autorefresh":false},{"description":"SLE-Module-Packagehub-Subpackages15-SP2-Debuginfo-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Packagehub-Subpackages15-SP2-Debuginfo-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP2/x86_64/product_debug/","distro_target":"sle-15-x86_64","autorefresh":false,"id":4034,"enabled":false},{"id":4035,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP2/x86_64/product_source/","distro_target":"sle-15-x86_64","autorefresh":false,"installer_updates":false,"name":"SLE-Module-Packagehub-Subpackages15-SP2-Source-Pool","description":"SLE-Module-Packagehub-Subpackages15-SP2-Source-Pool for sle-15-x86_64"}],"eula_url":"","arch":"x86_64","description":"SUSE Package Hub is a free of charge extension providing access to community maintained packages built to run on SUSE Linux Enterprise Server. Built from the same sources used in the openSUSE distributions, these quality packages provide additional software to what is found in the SUSE Linux Enterprise Server product. Packages from the Package Hub are delivered without L3 support from SUSE. General updates and fixes to the packages in SUSE Package Hub are provided by the openSUSE community based on their discretion, though SUSE will monitor and ensure that any known critical security issues will be addressed. Packages in the Package Hub are approved by SUSE for use with SUSE Linux Enterprise Server 15-SP2 and to not interfere with the supportability of SUSE Linux Enterprise Server, its modules and extensions. For more information about SUSE Package Hub please visit https://packagehub.suse.com.","shortname":"SUSE-PackageHub-15","free":true,"extensions":[],"release_stage":"released","id":1950,"identifier":"PackageHub","friendly_version":"15 SP2","name":"SUSE Package Hub","offline_predecessor_ids":[1813,1915],"migration_extra":false,"friendly_name":"SUSE Package Hub 15 SP2 x86_64","release_type":null,"former_identifier":"PackageHub","recommended":false,"version":"15.2"},{"product_type":"module","cpe":"cpe:/o:suse:sle-module-server-applications:15:sp2","repositories":[{"description":"SLE-Module-Server-Applications15-SP2-Updates for sle-15-x86_64","name":"SLE-Module-Server-Applications15-SP2-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15-SP2/x86_64/update/","enabled":true,"id":4056},{"description":"SLE-Module-Server-Applications15-SP2-Debuginfo-Updates for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Server-Applications15-SP2-Debuginfo-Updates","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15-SP2/x86_64/update_debug/","distro_target":"sle-15-x86_64","autorefresh":true,"id":4057,"enabled":false},{"description":"SLE-Module-Server-Applications15-SP2-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Server-Applications15-SP2-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP2/x86_64/product/","distro_target":"sle-15-x86_64","autorefresh":false,"id":4058,"enabled":true},{"enabled":false,"id":4059,"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP2/x86_64/product_debug/","installer_updates":false,"name":"SLE-Module-Server-Applications15-SP2-Debuginfo-Pool","description":"SLE-Module-Server-Applications15-SP2-Debuginfo-Pool for sle-15-x86_64"},{"enabled":false,"id":4060,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP2/x86_64/product_source/","name":"SLE-Module-Server-Applications15-SP2-Source-Pool","installer_updates":false,"description":"SLE-Module-Server-Applications15-SP2-Source-Pool for sle-15-x86_64"}],"online_predecessor_ids":[1580,1780],"product_class":"MODULE","predecessor_ids":[1580,1780],"arch":"x86_64","eula_url":"","free":true,"shortname":"Server-Applications-Module","description":"

The SUSE Linux Enterprise Server Applications Module delivers a basic set of Server functionality.

Access to the Server Applications Module is included in your SUSE Linux Enterprise Server subscription.

","release_stage":"released","identifier":"sle-module-server-applications","id":1955,"extensions":[{"arch":"x86_64","eula_url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP2/x86_64/product.license/","free":false,"description":"SUSE Linux High Availability Extension provides mature, industry-leading open-source high-availability clustering technologies that are easy to set up and use. It can be deployed in physical and/or virtual environments, and can cluster physical servers, virtual servers, or any combination of the two to suit your business’ needs.","shortname":"SLEHA15-SP2","product_type":"extension","cpe":"cpe:/o:suse:sle-ha:15:sp2","online_predecessor_ids":[1582,1785],"product_class":"SLE-HAE-X86","repositories":[{"enabled":true,"id":4076,"distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-HA/15-SP2/x86_64/update/","installer_updates":false,"name":"SLE-Product-HA15-SP2-Updates","description":"SLE-Product-HA15-SP2-Updates for sle-15-x86_64"},{"description":"SLE-Product-HA15-SP2-Debuginfo-Updates for sle-15-x86_64","installer_updates":false,"name":"SLE-Product-HA15-SP2-Debuginfo-Updates","url":"https://updates.suse.com/SUSE/Updates/SLE-Product-HA/15-SP2/x86_64/update_debug/","distro_target":"sle-15-x86_64","autorefresh":true,"id":4077,"enabled":false},{"description":"SLE-Product-HA15-SP2-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Product-HA15-SP2-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP2/x86_64/product/","distro_target":"sle-15-x86_64","autorefresh":false,"id":4078,"enabled":true},{"name":"SLE-Product-HA15-SP2-Debuginfo-Pool","installer_updates":false,"description":"SLE-Product-HA15-SP2-Debuginfo-Pool for sle-15-x86_64","enabled":false,"id":4079,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP2/x86_64/product_debug/"},{"installer_updates":false,"name":"SLE-Product-HA15-SP2-Source-Pool","description":"SLE-Product-HA15-SP2-Source-Pool for sle-15-x86_64","enabled":false,"id":4080,"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP2/x86_64/product_source/"}],"predecessor_ids":[1582,1785],"release_type":null,"former_identifier":"sle-ha","migration_extra":false,"friendly_name":"SUSE Linux Enterprise High Availability Extension 15 SP2 x86_64","offline_predecessor_ids":[958,961,967,971,1101,1107,1256,1286,1634,1637,1884,1886],"name":"SUSE Linux Enterprise High Availability Extension","version":"15.2","recommended":false,"release_stage":"released","id":1959,"identifier":"sle-ha","extensions":[],"friendly_version":"15 SP2"},{"friendly_name":"Web and Scripting Module 15 SP2 x86_64","migration_extra":false,"release_type":null,"former_identifier":"sle-module-web-scripting","name":"Web and Scripting Module","offline_predecessor_ids":[1153],"version":"15.2","recommended":true,"release_stage":"released","identifier":"sle-module-web-scripting","id":1976,"extensions":[{"product_type":"module","cpe":"cpe:/o:suse:sle-module-suse-manager-server:4.1","predecessor_ids":[1905],"repositories":[{"description":"SLE-Module-SUSE-Manager-Server-4.1-Updates for sle-15-x86_64","name":"SLE-Module-SUSE-Manager-Server-4.1-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-SUSE-Manager-Server/4.1/x86_64/update/","enabled":true,"id":4371},{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-SUSE-Manager-Server/4.1/x86_64/update_debug/","distro_target":"sle-15-x86_64","autorefresh":true,"id":4372,"enabled":false,"description":"SLE-Module-SUSE-Manager-Server-4.1-Debuginfo-Updates for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-SUSE-Manager-Server-4.1-Debuginfo-Updates"},{"id":4373,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-SUSE-Manager-Server/4.1/x86_64/product/","autorefresh":false,"distro_target":"sle-15-x86_64","name":"SLE-Module-SUSE-Manager-Server-4.1-Pool","installer_updates":false,"description":"SLE-Module-SUSE-Manager-Server-4.1-Pool for sle-15-x86_64"},{"name":"SLE-Module-SUSE-Manager-Server-4.1-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-SUSE-Manager-Server-4.1-Debuginfo-Pool for sle-15-x86_64","id":4374,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-SUSE-Manager-Server/4.1/x86_64/product_debug/","autorefresh":false,"distro_target":"sle-15-x86_64"},{"enabled":false,"id":4375,"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-SUSE-Manager-Server/4.1/x86_64/product_source/","installer_updates":false,"name":"SLE-Module-SUSE-Manager-Server-4.1-Source-Pool","description":"SLE-Module-SUSE-Manager-Server-4.1-Source-Pool for sle-15-x86_64"}],"online_predecessor_ids":[1905],"product_class":"MODULE","eula_url":"","arch":"x86_64","free":true,"description":"SUSE Manager lets you efficiently manage physical, virtual, and cloud-based Linux systems. It provides automated and cost-effective configuration and software management, asset management, and system provisioning.","shortname":"SUSE Manager Server 4.1 Module","extensions":[],"release_stage":"released","id":2019,"identifier":"sle-module-suse-manager-server","friendly_version":"4.1","offline_predecessor_ids":[],"name":"SUSE Manager Server Module","release_type":null,"former_identifier":"sle-module-suse-manager-server","migration_extra":false,"friendly_name":"SUSE Manager Server Module 4.1 x86_64","recommended":true,"version":"4.1"}],"friendly_version":"15 SP2","arch":"x86_64","eula_url":"","description":"

The SUSE Linux Enterprise Web and Scripting Module should contains additional packages that are helpful when running a webserver.

Access to the Web and Scripting Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself: Package versions in this module are usually supported for at most three years. We are planning to release more recent versions on a schedule of approximately 18 month; the exact dates may differ per package.

","shortname":"Web-Scripting-Module","free":true,"cpe":"cpe:/o:suse:sle-module-web-scripting:15:sp2","product_type":"module","online_predecessor_ids":[1721,1798],"product_class":"MODULE","repositories":[{"description":"SLE-Module-Web-Scripting15-SP2-Updates for sle-15-x86_64","name":"SLE-Module-Web-Scripting15-SP2-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/15-SP2/x86_64/update/","enabled":true,"id":4161},{"installer_updates":false,"name":"SLE-Module-Web-Scripting15-SP2-Debuginfo-Updates","description":"SLE-Module-Web-Scripting15-SP2-Debuginfo-Updates for sle-15-x86_64","enabled":false,"id":4162,"distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/15-SP2/x86_64/update_debug/"},{"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP2/x86_64/product/","enabled":true,"id":4163,"description":"SLE-Module-Web-Scripting15-SP2-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Web-Scripting15-SP2-Pool"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP2/x86_64/product_debug/","autorefresh":false,"distro_target":"sle-15-x86_64","id":4164,"enabled":false,"description":"SLE-Module-Web-Scripting15-SP2-Debuginfo-Pool for sle-15-x86_64","name":"SLE-Module-Web-Scripting15-SP2-Debuginfo-Pool","installer_updates":false},{"id":4165,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP2/x86_64/product_source/","distro_target":"sle-15-x86_64","autorefresh":false,"installer_updates":false,"name":"SLE-Module-Web-Scripting15-SP2-Source-Pool","description":"SLE-Module-Web-Scripting15-SP2-Source-Pool for sle-15-x86_64"}],"predecessor_ids":[1721,1798]},{"recommended":false,"version":"15.2","offline_predecessor_ids":[1150],"name":"Legacy Module","release_type":null,"former_identifier":"sle-module-legacy","friendly_name":"Legacy Module 15 SP2 x86_64","migration_extra":false,"friendly_version":"15 SP2","extensions":[],"identifier":"sle-module-legacy","release_stage":"released","id":1982,"free":true,"description":"

The Legacy Module helps you migrating applications from SUSE Linux Enterprise 12 and other systems to SUSE Linux Enterprise 15, by providing packages which are discontinued on SUSE Linux Enterprise Server, such as: ntp, IBM Java 8, and a number of libraries.

Access to the Legacy Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself. Packages in the this module are usually supported for at most three years.

","shortname":"Legacy-Module","eula_url":"","arch":"x86_64","predecessor_ids":[1581,1804],"repositories":[{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/15-SP2/x86_64/update/","distro_target":"sle-15-x86_64","autorefresh":true,"id":4191,"enabled":true,"description":"SLE-Module-Legacy15-SP2-Updates for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Legacy15-SP2-Updates"},{"installer_updates":false,"name":"SLE-Module-Legacy15-SP2-Debuginfo-Updates","description":"SLE-Module-Legacy15-SP2-Debuginfo-Updates for sle-15-x86_64","id":4192,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/15-SP2/x86_64/update_debug/","distro_target":"sle-15-x86_64","autorefresh":true},{"enabled":true,"id":4193,"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15-SP2/x86_64/product/","installer_updates":false,"name":"SLE-Module-Legacy15-SP2-Pool","description":"SLE-Module-Legacy15-SP2-Pool for sle-15-x86_64"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15-SP2/x86_64/product_debug/","distro_target":"sle-15-x86_64","autorefresh":false,"id":4194,"enabled":false,"description":"SLE-Module-Legacy15-SP2-Debuginfo-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Legacy15-SP2-Debuginfo-Pool"},{"description":"SLE-Module-Legacy15-SP2-Source-Pool for sle-15-x86_64","name":"SLE-Module-Legacy15-SP2-Source-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15-SP2/x86_64/product_source/","autorefresh":false,"distro_target":"sle-15-x86_64","id":4195,"enabled":false}],"online_predecessor_ids":[1581,1804],"product_class":"MODULE","product_type":"module","cpe":"cpe:/o:suse:sle-module-legacy:15:sp2"},{"id":1988,"release_stage":"released","identifier":"sle-module-public-cloud","extensions":[],"friendly_version":"15 SP2","release_type":null,"former_identifier":"sle-module-public-cloud","migration_extra":false,"friendly_name":"Public Cloud Module 15 SP2 x86_64","offline_predecessor_ids":[1220],"name":"Public Cloud Module","version":"15.2","recommended":false,"product_type":"module","cpe":"cpe:/o:suse:sle-module-public-cloud:15:sp2","repositories":[{"description":"SLE-Module-Public-Cloud15-SP2-Updates for sle-15-x86_64","name":"SLE-Module-Public-Cloud15-SP2-Updates","installer_updates":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/15-SP2/x86_64/update/","autorefresh":true,"distro_target":"sle-15-x86_64","id":4221,"enabled":true},{"enabled":false,"id":4222,"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/15-SP2/x86_64/update_debug/","name":"SLE-Module-Public-Cloud15-SP2-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-Public-Cloud15-SP2-Debuginfo-Updates for sle-15-x86_64"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP2/x86_64/product/","autorefresh":false,"distro_target":"sle-15-x86_64","id":4223,"enabled":true,"description":"SLE-Module-Public-Cloud15-SP2-Pool for sle-15-x86_64","name":"SLE-Module-Public-Cloud15-SP2-Pool","installer_updates":false},{"enabled":false,"id":4224,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP2/x86_64/product_debug/","name":"SLE-Module-Public-Cloud15-SP2-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-Public-Cloud15-SP2-Debuginfo-Pool for sle-15-x86_64"},{"id":4225,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP2/x86_64/product_source/","distro_target":"sle-15-x86_64","autorefresh":false,"installer_updates":false,"name":"SLE-Module-Public-Cloud15-SP2-Source-Pool","description":"SLE-Module-Public-Cloud15-SP2-Source-Pool for sle-15-x86_64"}],"online_predecessor_ids":[1611,1808],"product_class":"MODULE","predecessor_ids":[1611,1808],"arch":"x86_64","eula_url":"","free":true,"description":"

The Public Cloud Module is a collection of tools that enables you to create and manage cloud images from the commandline on SUSE Linux Enterprise Server. When building your own images with KIWI or SUSE Studio, initialization code specific to the target cloud is included in that image.

Access to the Public Cloud Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself; please check the Release Notes for further details.

","shortname":"Public-Cloud-Module"}],"friendly_version":"15 SP2","former_identifier":"sle-module-server-applications","release_type":null,"friendly_name":"Server Applications Module 15 SP2 x86_64","migration_extra":false,"offline_predecessor_ids":[],"name":"Server Applications Module","version":"15.2","recommended":true},{"friendly_version":"15 SP2","release_stage":"released","id":1963,"identifier":"sle-module-containers","extensions":[],"version":"15.2","recommended":false,"release_type":null,"former_identifier":"sle-module-containers","friendly_name":"Containers Module 15 SP2 x86_64","migration_extra":false,"offline_predecessor_ids":[1332],"name":"Containers Module","online_predecessor_ids":[1642,1790],"repositories":[{"description":"SLE-Module-Containers15-SP2-Updates for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Containers15-SP2-Updates","distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/15-SP2/x86_64/update/","enabled":true,"id":4096},{"name":"SLE-Module-Containers15-SP2-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-Containers15-SP2-Debuginfo-Updates for sle-15-x86_64","enabled":false,"id":4097,"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/15-SP2/x86_64/update_debug/"},{"enabled":true,"id":4098,"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP2/x86_64/product/","installer_updates":false,"name":"SLE-Module-Containers15-SP2-Pool","description":"SLE-Module-Containers15-SP2-Pool for sle-15-x86_64"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP2/x86_64/product_debug/","autorefresh":false,"distro_target":"sle-15-x86_64","id":4099,"enabled":false,"description":"SLE-Module-Containers15-SP2-Debuginfo-Pool for sle-15-x86_64","name":"SLE-Module-Containers15-SP2-Debuginfo-Pool","installer_updates":false},{"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP2/x86_64/product_source/","enabled":false,"id":4100,"description":"SLE-Module-Containers15-SP2-Source-Pool for sle-15-x86_64","name":"SLE-Module-Containers15-SP2-Source-Pool","installer_updates":false}],"product_class":"MODULE","predecessor_ids":[1642,1790],"product_type":"module","cpe":"cpe:/o:suse:sle-module-containers:15:sp2","free":true,"description":"

This Module contains several packages revolving around containers and related tools.

","shortname":"Containers-Module","arch":"x86_64","eula_url":""},{"product_type":"module","cpe":"cpe:/o:suse:sle-module-desktop-applications:15:sp2","predecessor_ids":[1578,1776],"product_class":"MODULE","online_predecessor_ids":[1578,1776],"repositories":[{"enabled":true,"id":4116,"distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15-SP2/x86_64/update/","installer_updates":false,"name":"SLE-Module-Desktop-Applications15-SP2-Updates","description":"SLE-Module-Desktop-Applications15-SP2-Updates for sle-15-x86_64"},{"name":"SLE-Module-Desktop-Applications15-SP2-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-Desktop-Applications15-SP2-Debuginfo-Updates for sle-15-x86_64","id":4117,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15-SP2/x86_64/update_debug/","autorefresh":true,"distro_target":"sle-15-x86_64"},{"installer_updates":false,"name":"SLE-Module-Desktop-Applications15-SP2-Pool","description":"SLE-Module-Desktop-Applications15-SP2-Pool for sle-15-x86_64","id":4118,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP2/x86_64/product/","distro_target":"sle-15-x86_64","autorefresh":false},{"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP2/x86_64/product_debug/","enabled":false,"id":4119,"description":"SLE-Module-Desktop-Applications15-SP2-Debuginfo-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Desktop-Applications15-SP2-Debuginfo-Pool"},{"name":"SLE-Module-Desktop-Applications15-SP2-Source-Pool","installer_updates":false,"description":"SLE-Module-Desktop-Applications15-SP2-Source-Pool for sle-15-x86_64","id":4120,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP2/x86_64/product_source/","autorefresh":false,"distro_target":"sle-15-x86_64"}],"eula_url":"","arch":"x86_64","free":true,"shortname":"Desktop-Applications-Module","description":"

The SUSE Linux Enterprise Desktop Applications Module delivers a basic set of Desktop functionality.

Access to the Desktop Applications Module is included in your SUSE Linux Enterprise product subscription.

","extensions":[{"free":true,"shortname":"Development-Tools-Module","description":"

The Development Tools Module helps you developing applications for SUSE Linux Enterprise 15.

Access to the Development Tools Module is included in your SUSE Linux Enterprise product subscription. The module has a different lifecycle than SUSE Linux Enterprise itself.

","eula_url":"","arch":"x86_64","predecessor_ids":[1579,1794],"online_predecessor_ids":[1579,1794],"product_class":"MODULE","repositories":[{"installer_updates":false,"name":"SLE-Module-DevTools15-SP2-Updates","description":"SLE-Module-DevTools15-SP2-Updates for sle-15-x86_64","id":4136,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15-SP2/x86_64/update/","distro_target":"sle-15-x86_64","autorefresh":true},{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15-SP2/x86_64/update_debug/","autorefresh":true,"distro_target":"sle-15-x86_64","id":4137,"enabled":false,"description":"SLE-Module-DevTools15-SP2-Debuginfo-Updates for sle-15-x86_64","name":"SLE-Module-DevTools15-SP2-Debuginfo-Updates","installer_updates":false},{"description":"SLE-Module-DevTools15-SP2-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-DevTools15-SP2-Pool","distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP2/x86_64/product/","enabled":true,"id":4138},{"name":"SLE-Module-DevTools15-SP2-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-DevTools15-SP2-Debuginfo-Pool for sle-15-x86_64","id":4139,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP2/x86_64/product_debug/","autorefresh":false,"distro_target":"sle-15-x86_64"},{"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP2/x86_64/product_source/","enabled":false,"id":4140,"description":"SLE-Module-DevTools15-SP2-Source-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-DevTools15-SP2-Source-Pool"}],"product_type":"module","cpe":"cpe:/o:suse:sle-module-development-tools:15:sp2","recommended":false,"version":"15.2","offline_predecessor_ids":[1341,1630,1892],"name":"Development Tools Module","former_identifier":"sle-sdk","release_type":null,"friendly_name":"Development Tools Module 15 SP2 x86_64","migration_extra":false,"friendly_version":"15 SP2","extensions":[],"id":1971,"release_stage":"released","identifier":"sle-module-development-tools"}],"release_stage":"released","id":1967,"identifier":"sle-module-desktop-applications","friendly_version":"15 SP2","offline_predecessor_ids":[],"name":"Desktop Applications Module","former_identifier":"sle-module-desktop-applications","release_type":null,"friendly_name":"Desktop Applications Module 15 SP2 x86_64","migration_extra":false,"recommended":false,"version":"15.2"},{"online_predecessor_ids":[1867],"product_class":"MODULE","repositories":[{"description":"SLE-Module-Python2-15-SP2-Updates for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Python2-15-SP2-Updates","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Python2/15-SP2/x86_64/update/","distro_target":"sle-15-x86_64","autorefresh":true,"id":4241,"enabled":true},{"description":"SLE-Module-Python2-15-SP2-Debuginfo-Updates for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Python2-15-SP2-Debuginfo-Updates","distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Python2/15-SP2/x86_64/update_debug/","enabled":false,"id":4242},{"description":"SLE-Module-Python2-15-SP2-Pool for sle-15-x86_64","name":"SLE-Module-Python2-15-SP2-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Python2/15-SP2/x86_64/product/","autorefresh":false,"distro_target":"sle-15-x86_64","id":4243,"enabled":true},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Python2/15-SP2/x86_64/product_debug/","autorefresh":false,"distro_target":"sle-15-x86_64","id":4244,"enabled":false,"description":"SLE-Module-Python2-15-SP2-Debuginfo-Pool for sle-15-x86_64","name":"SLE-Module-Python2-15-SP2-Debuginfo-Pool","installer_updates":false},{"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Python2/15-SP2/x86_64/product_source/","enabled":false,"id":4245,"description":"SLE-Module-Python2-15-SP2-Source-Pool for sle-15-x86_64","name":"SLE-Module-Python2-15-SP2-Source-Pool","installer_updates":false}],"predecessor_ids":[1867],"product_type":"module","cpe":"cpe:/o:suse:sle-module-python2:15:sp2","free":true,"shortname":"Python2-Module","description":"

This module contains the python 2 packages.

Access to the Python 2 Module is included in your SUSE Linux Enterprise subscription. The module has a different lifecycle than SUSE Linux Enterprise itself. Packages in the this module are usually supported for at most three years.

","arch":"x86_64","eula_url":"","friendly_version":"15 SP2","release_stage":"released","id":1992,"identifier":"sle-module-python2","extensions":[],"version":"15.2","recommended":true,"release_type":null,"former_identifier":"sle-module-python2","friendly_name":"Python 2 Module 15 SP2 x86_64","migration_extra":false,"offline_predecessor_ids":[],"name":"Python 2 Module"}],"friendly_version":"15 SP2"}],"identifier":"SUSE-Manager-Server","release_stage":"released","id":2012,"friendly_version":"4.1"},{"offline_predecessor_ids":[],"name":"SUSE Manager Retail Branch Server","release_type":null,"former_identifier":"SUSE-Manager-Retail-Branch-Server","migration_extra":false,"friendly_name":"SUSE Manager Retail Branch Server 4.1 x86_64","recommended":false,"version":"4.1","extensions":[{"release_stage":"released","identifier":"sle-module-basesystem","id":1946,"extensions":[{"eula_url":"","arch":"x86_64","shortname":"SUSE-PackageHub-15","description":"SUSE Package Hub is a free of charge extension providing access to community maintained packages built to run on SUSE Linux Enterprise Server. Built from the same sources used in the openSUSE distributions, these quality packages provide additional software to what is found in the SUSE Linux Enterprise Server product. Packages from the Package Hub are delivered without L3 support from SUSE. General updates and fixes to the packages in SUSE Package Hub are provided by the openSUSE community based on their discretion, though SUSE will monitor and ensure that any known critical security issues will be addressed. Packages in the Package Hub are approved by SUSE for use with SUSE Linux Enterprise Server 15-SP2 and to not interfere with the supportability of SUSE Linux Enterprise Server, its modules and extensions. For more information about SUSE Package Hub please visit https://packagehub.suse.com.","free":true,"cpe":"cpe:/o:suse:packagehub:15:sp2","product_type":"extension","predecessor_ids":[1743,1871],"product_class":"MODULE","online_predecessor_ids":[1743,1871],"repositories":[{"description":"SUSE-PackageHub-15-SP2-Backports-Pool for sle-15-x86_64","installer_updates":false,"name":"SUSE-PackageHub-15-SP2-Backports-Pool","distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Backports/SLE-15-SP2_x86_64/standard/","enabled":true,"id":4028},{"enabled":false,"id":4029,"distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Backports/SLE-15-SP2_x86_64/standard_debug/","installer_updates":false,"name":"SUSE-PackageHub-15-SP2-Backports-Debuginfo","description":"SUSE-PackageHub-15-SP2-Backports-Debuginfo for sle-15-x86_64"},{"installer_updates":false,"name":"SLE-Module-Packagehub-Subpackages15-SP2-Updates","description":"SLE-Module-Packagehub-Subpackages15-SP2-Updates for sle-15-x86_64","enabled":true,"id":4030,"distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP2/x86_64/update/"},{"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP2/x86_64/update_debug/","enabled":false,"id":4031,"description":"SLE-Module-Packagehub-Subpackages15-SP2-Debuginfo-Updates for sle-15-x86_64","name":"SLE-Module-Packagehub-Subpackages15-SP2-Debuginfo-Updates","installer_updates":false},{"installer_updates":false,"name":"SUSE-PackageHub-15-SP2-Pool","description":"SUSE-PackageHub-15-SP2-Pool for sle-15-x86_64","enabled":true,"id":4032,"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Backports/SLE-15-SP2_x86_64/product/"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP2/x86_64/product/","distro_target":"sle-15-x86_64","autorefresh":false,"id":4033,"enabled":true,"description":"SLE-Module-Packagehub-Subpackages15-SP2-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Packagehub-Subpackages15-SP2-Pool"},{"description":"SLE-Module-Packagehub-Subpackages15-SP2-Debuginfo-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Packagehub-Subpackages15-SP2-Debuginfo-Pool","distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP2/x86_64/product_debug/","enabled":false,"id":4034},{"description":"SLE-Module-Packagehub-Subpackages15-SP2-Source-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Packagehub-Subpackages15-SP2-Source-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP2/x86_64/product_source/","distro_target":"sle-15-x86_64","autorefresh":false,"id":4035,"enabled":false}],"name":"SUSE Package Hub","offline_predecessor_ids":[1813,1915],"migration_extra":false,"friendly_name":"SUSE Package Hub 15 SP2 x86_64","release_type":null,"former_identifier":"PackageHub","recommended":false,"version":"15.2","extensions":[],"identifier":"PackageHub","release_stage":"released","id":1950,"friendly_version":"15 SP2"},{"product_type":"module","cpe":"cpe:/o:suse:sle-module-server-applications:15:sp2","repositories":[{"installer_updates":false,"name":"SLE-Module-Server-Applications15-SP2-Updates","description":"SLE-Module-Server-Applications15-SP2-Updates for sle-15-x86_64","enabled":true,"id":4056,"distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15-SP2/x86_64/update/"},{"id":4057,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15-SP2/x86_64/update_debug/","distro_target":"sle-15-x86_64","autorefresh":true,"installer_updates":false,"name":"SLE-Module-Server-Applications15-SP2-Debuginfo-Updates","description":"SLE-Module-Server-Applications15-SP2-Debuginfo-Updates for sle-15-x86_64"},{"enabled":true,"id":4058,"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP2/x86_64/product/","installer_updates":false,"name":"SLE-Module-Server-Applications15-SP2-Pool","description":"SLE-Module-Server-Applications15-SP2-Pool for sle-15-x86_64"},{"installer_updates":false,"name":"SLE-Module-Server-Applications15-SP2-Debuginfo-Pool","description":"SLE-Module-Server-Applications15-SP2-Debuginfo-Pool for sle-15-x86_64","id":4059,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP2/x86_64/product_debug/","distro_target":"sle-15-x86_64","autorefresh":false},{"installer_updates":false,"name":"SLE-Module-Server-Applications15-SP2-Source-Pool","description":"SLE-Module-Server-Applications15-SP2-Source-Pool for sle-15-x86_64","enabled":false,"id":4060,"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP2/x86_64/product_source/"}],"online_predecessor_ids":[1580,1780],"product_class":"MODULE","predecessor_ids":[1580,1780],"arch":"x86_64","eula_url":"","free":true,"shortname":"Server-Applications-Module","description":"

The SUSE Linux Enterprise Server Applications Module delivers a basic set of Server functionality.

Access to the Server Applications Module is included in your SUSE Linux Enterprise Server subscription.

","release_stage":"released","identifier":"sle-module-server-applications","id":1955,"extensions":[{"extensions":[],"release_stage":"released","identifier":"sle-ha","id":1959,"friendly_version":"15 SP2","offline_predecessor_ids":[958,961,967,971,1101,1107,1256,1286,1634,1637,1884,1886],"name":"SUSE Linux Enterprise High Availability Extension","release_type":null,"former_identifier":"sle-ha","migration_extra":false,"friendly_name":"SUSE Linux Enterprise High Availability Extension 15 SP2 x86_64","recommended":false,"version":"15.2","product_type":"extension","cpe":"cpe:/o:suse:sle-ha:15:sp2","predecessor_ids":[1582,1785],"online_predecessor_ids":[1582,1785],"repositories":[{"distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-HA/15-SP2/x86_64/update/","enabled":true,"id":4076,"description":"SLE-Product-HA15-SP2-Updates for sle-15-x86_64","installer_updates":false,"name":"SLE-Product-HA15-SP2-Updates"},{"description":"SLE-Product-HA15-SP2-Debuginfo-Updates for sle-15-x86_64","installer_updates":false,"name":"SLE-Product-HA15-SP2-Debuginfo-Updates","url":"https://updates.suse.com/SUSE/Updates/SLE-Product-HA/15-SP2/x86_64/update_debug/","distro_target":"sle-15-x86_64","autorefresh":true,"id":4077,"enabled":false},{"description":"SLE-Product-HA15-SP2-Pool for sle-15-x86_64","name":"SLE-Product-HA15-SP2-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP2/x86_64/product/","autorefresh":false,"distro_target":"sle-15-x86_64","id":4078,"enabled":true},{"url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP2/x86_64/product_debug/","autorefresh":false,"distro_target":"sle-15-x86_64","id":4079,"enabled":false,"description":"SLE-Product-HA15-SP2-Debuginfo-Pool for sle-15-x86_64","name":"SLE-Product-HA15-SP2-Debuginfo-Pool","installer_updates":false},{"id":4080,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP2/x86_64/product_source/","distro_target":"sle-15-x86_64","autorefresh":false,"installer_updates":false,"name":"SLE-Product-HA15-SP2-Source-Pool","description":"SLE-Product-HA15-SP2-Source-Pool for sle-15-x86_64"}],"product_class":"SLE-HAE-X86","eula_url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP2/x86_64/product.license/","arch":"x86_64","free":false,"shortname":"SLEHA15-SP2","description":"SUSE Linux High Availability Extension provides mature, industry-leading open-source high-availability clustering technologies that are easy to set up and use. It can be deployed in physical and/or virtual environments, and can cluster physical servers, virtual servers, or any combination of the two to suit your business’ needs."},{"friendly_version":"15 SP2","id":1976,"release_stage":"released","identifier":"sle-module-web-scripting","extensions":[],"version":"15.2","recommended":false,"release_type":null,"former_identifier":"sle-module-web-scripting","migration_extra":false,"friendly_name":"Web and Scripting Module 15 SP2 x86_64","offline_predecessor_ids":[1153],"name":"Web and Scripting Module","product_class":"MODULE","online_predecessor_ids":[1721,1798],"repositories":[{"id":4161,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/15-SP2/x86_64/update/","autorefresh":true,"distro_target":"sle-15-x86_64","name":"SLE-Module-Web-Scripting15-SP2-Updates","installer_updates":false,"description":"SLE-Module-Web-Scripting15-SP2-Updates for sle-15-x86_64"},{"enabled":false,"id":4162,"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/15-SP2/x86_64/update_debug/","name":"SLE-Module-Web-Scripting15-SP2-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-Web-Scripting15-SP2-Debuginfo-Updates for sle-15-x86_64"},{"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP2/x86_64/product/","enabled":true,"id":4163,"description":"SLE-Module-Web-Scripting15-SP2-Pool for sle-15-x86_64","name":"SLE-Module-Web-Scripting15-SP2-Pool","installer_updates":false},{"name":"SLE-Module-Web-Scripting15-SP2-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-Web-Scripting15-SP2-Debuginfo-Pool for sle-15-x86_64","enabled":false,"id":4164,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP2/x86_64/product_debug/"},{"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP2/x86_64/product_source/","enabled":false,"id":4165,"description":"SLE-Module-Web-Scripting15-SP2-Source-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Web-Scripting15-SP2-Source-Pool"}],"predecessor_ids":[1721,1798],"product_type":"module","cpe":"cpe:/o:suse:sle-module-web-scripting:15:sp2","free":true,"shortname":"Web-Scripting-Module","description":"

The SUSE Linux Enterprise Web and Scripting Module should contains additional packages that are helpful when running a webserver.

Access to the Web and Scripting Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself: Package versions in this module are usually supported for at most three years. We are planning to release more recent versions on a schedule of approximately 18 month; the exact dates may differ per package.

","arch":"x86_64","eula_url":""},{"release_stage":"released","identifier":"sle-module-legacy","id":1982,"extensions":[],"friendly_version":"15 SP2","migration_extra":false,"friendly_name":"Legacy Module 15 SP2 x86_64","release_type":null,"former_identifier":"sle-module-legacy","name":"Legacy Module","offline_predecessor_ids":[1150],"version":"15.2","recommended":false,"cpe":"cpe:/o:suse:sle-module-legacy:15:sp2","product_type":"module","repositories":[{"installer_updates":false,"name":"SLE-Module-Legacy15-SP2-Updates","description":"SLE-Module-Legacy15-SP2-Updates for sle-15-x86_64","enabled":true,"id":4191,"distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/15-SP2/x86_64/update/"},{"installer_updates":false,"name":"SLE-Module-Legacy15-SP2-Debuginfo-Updates","description":"SLE-Module-Legacy15-SP2-Debuginfo-Updates for sle-15-x86_64","enabled":false,"id":4192,"distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/15-SP2/x86_64/update_debug/"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15-SP2/x86_64/product/","distro_target":"sle-15-x86_64","autorefresh":false,"id":4193,"enabled":true,"description":"SLE-Module-Legacy15-SP2-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Legacy15-SP2-Pool"},{"name":"SLE-Module-Legacy15-SP2-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-Legacy15-SP2-Debuginfo-Pool for sle-15-x86_64","id":4194,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15-SP2/x86_64/product_debug/","autorefresh":false,"distro_target":"sle-15-x86_64"},{"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15-SP2/x86_64/product_source/","enabled":false,"id":4195,"description":"SLE-Module-Legacy15-SP2-Source-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Legacy15-SP2-Source-Pool"}],"online_predecessor_ids":[1581,1804],"product_class":"MODULE","predecessor_ids":[1581,1804],"arch":"x86_64","eula_url":"","description":"

The Legacy Module helps you migrating applications from SUSE Linux Enterprise 12 and other systems to SUSE Linux Enterprise 15, by providing packages which are discontinued on SUSE Linux Enterprise Server, such as: ntp, IBM Java 8, and a number of libraries.

Access to the Legacy Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself. Packages in the this module are usually supported for at most three years.

","shortname":"Legacy-Module","free":true},{"eula_url":"","arch":"x86_64","shortname":"Public-Cloud-Module","description":"

The Public Cloud Module is a collection of tools that enables you to create and manage cloud images from the commandline on SUSE Linux Enterprise Server. When building your own images with KIWI or SUSE Studio, initialization code specific to the target cloud is included in that image.

Access to the Public Cloud Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself; please check the Release Notes for further details.

","free":true,"cpe":"cpe:/o:suse:sle-module-public-cloud:15:sp2","product_type":"module","predecessor_ids":[1611,1808],"online_predecessor_ids":[1611,1808],"product_class":"MODULE","repositories":[{"enabled":true,"id":4221,"distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/15-SP2/x86_64/update/","installer_updates":false,"name":"SLE-Module-Public-Cloud15-SP2-Updates","description":"SLE-Module-Public-Cloud15-SP2-Updates for sle-15-x86_64"},{"distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/15-SP2/x86_64/update_debug/","enabled":false,"id":4222,"description":"SLE-Module-Public-Cloud15-SP2-Debuginfo-Updates for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Public-Cloud15-SP2-Debuginfo-Updates"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP2/x86_64/product/","autorefresh":false,"distro_target":"sle-15-x86_64","id":4223,"enabled":true,"description":"SLE-Module-Public-Cloud15-SP2-Pool for sle-15-x86_64","name":"SLE-Module-Public-Cloud15-SP2-Pool","installer_updates":false},{"description":"SLE-Module-Public-Cloud15-SP2-Debuginfo-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Public-Cloud15-SP2-Debuginfo-Pool","distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP2/x86_64/product_debug/","enabled":false,"id":4224},{"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP2/x86_64/product_source/","enabled":false,"id":4225,"description":"SLE-Module-Public-Cloud15-SP2-Source-Pool for sle-15-x86_64","name":"SLE-Module-Public-Cloud15-SP2-Source-Pool","installer_updates":false}],"name":"Public Cloud Module","offline_predecessor_ids":[1220],"migration_extra":false,"friendly_name":"Public Cloud Module 15 SP2 x86_64","former_identifier":"sle-module-public-cloud","release_type":null,"recommended":false,"version":"15.2","extensions":[],"identifier":"sle-module-public-cloud","release_stage":"released","id":1988,"friendly_version":"15 SP2"},{"recommended":true,"version":"4.1","offline_predecessor_ids":[],"name":"SUSE Manager Proxy Module","release_type":null,"former_identifier":"sle-module-suse-manager-proxy","migration_extra":false,"friendly_name":"SUSE Manager Proxy Module 4.1 x86_64","friendly_version":"4.1","extensions":[{"repositories":[{"distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-SUSE-Manager-Retail-Branch-Server/4.1/x86_64/update/","enabled":true,"id":4356,"description":"SLE-Module-SUSE-Manager-Retail-Branch-Server-4.1-Updates for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-SUSE-Manager-Retail-Branch-Server-4.1-Updates"},{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-SUSE-Manager-Retail-Branch-Server/4.1/x86_64/update_debug/","autorefresh":true,"distro_target":"sle-15-x86_64","id":4357,"enabled":false,"description":"SLE-Module-SUSE-Manager-Retail-Branch-Server-4.1-Debuginfo-Updates for sle-15-x86_64","name":"SLE-Module-SUSE-Manager-Retail-Branch-Server-4.1-Debuginfo-Updates","installer_updates":false},{"description":"SLE-Module-SUSE-Manager-Retail-Branch-Server-4.1-Pool for sle-15-x86_64","name":"SLE-Module-SUSE-Manager-Retail-Branch-Server-4.1-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-SUSE-Manager-Retail-Branch-Server/4.1/x86_64/product/","autorefresh":false,"distro_target":"sle-15-x86_64","id":4358,"enabled":true},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-SUSE-Manager-Retail-Branch-Server/4.1/x86_64/product_debug/","distro_target":"sle-15-x86_64","autorefresh":false,"id":4359,"enabled":false,"description":"SLE-Module-SUSE-Manager-Retail-Branch-Server-4.1-Debuginfo-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-SUSE-Manager-Retail-Branch-Server-4.1-Debuginfo-Pool"},{"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-SUSE-Manager-Retail-Branch-Server/4.1/x86_64/product_source/","enabled":false,"id":4360,"description":"SLE-Module-SUSE-Manager-Retail-Branch-Server-4.1-Source-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-SUSE-Manager-Retail-Branch-Server-4.1-Source-Pool"}],"online_predecessor_ids":[1909],"product_class":"MODULE","predecessor_ids":[1909],"cpe":"cpe:/o:suse:sle-module-suse-manager-retail-branch-server:4.1","product_type":"module","description":"The SUSE Manager for Retail Branch Server supports large and/or geographically dispersed SUSE Manager for Retail environments by reducing the load on the SUSE Manager Server, lowering bandwidth needs, and providing faster local updates.","shortname":"SUSE Manager Retail Branch Server 4.1 Module","free":true,"arch":"x86_64","eula_url":"","friendly_version":"4.1","release_stage":"released","id":2016,"identifier":"sle-module-suse-manager-retail-branch-server","extensions":[],"version":"4.1","recommended":true,"migration_extra":false,"friendly_name":"SUSE Manager Retail Branch Server Module 4.1 x86_64","release_type":null,"former_identifier":"sle-module-suse-manager-retail-branch-server","name":"SUSE Manager Retail Branch Server Module","offline_predecessor_ids":[]}],"release_stage":"released","id":2015,"identifier":"sle-module-suse-manager-proxy","free":true,"shortname":"SUSE Manager Proxy 4.1 Module","description":"SUSE Manager Proxies extend large and/or geographically dispersed SUSE Manager environments to reduce load on the SUSE Manager Server, lower bandwidth needs, and provide faster local updates.","eula_url":"","arch":"x86_64","predecessor_ids":[1908],"online_predecessor_ids":[1908],"product_class":"MODULE","repositories":[{"installer_updates":false,"name":"SLE-Module-SUSE-Manager-Proxy-4.1-Updates","description":"SLE-Module-SUSE-Manager-Proxy-4.1-Updates for sle-15-x86_64","enabled":true,"id":4351,"distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-SUSE-Manager-Proxy/4.1/x86_64/update/"},{"id":4352,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-SUSE-Manager-Proxy/4.1/x86_64/update_debug/","autorefresh":true,"distro_target":"sle-15-x86_64","name":"SLE-Module-SUSE-Manager-Proxy-4.1-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-SUSE-Manager-Proxy-4.1-Debuginfo-Updates for sle-15-x86_64"},{"installer_updates":false,"name":"SLE-Module-SUSE-Manager-Proxy-4.1-Pool","description":"SLE-Module-SUSE-Manager-Proxy-4.1-Pool for sle-15-x86_64","enabled":true,"id":4353,"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-SUSE-Manager-Proxy/4.1/x86_64/product/"},{"id":4354,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-SUSE-Manager-Proxy/4.1/x86_64/product_debug/","distro_target":"sle-15-x86_64","autorefresh":false,"installer_updates":false,"name":"SLE-Module-SUSE-Manager-Proxy-4.1-Debuginfo-Pool","description":"SLE-Module-SUSE-Manager-Proxy-4.1-Debuginfo-Pool for sle-15-x86_64"},{"installer_updates":false,"name":"SLE-Module-SUSE-Manager-Proxy-4.1-Source-Pool","description":"SLE-Module-SUSE-Manager-Proxy-4.1-Source-Pool for sle-15-x86_64","id":4355,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-SUSE-Manager-Proxy/4.1/x86_64/product_source/","distro_target":"sle-15-x86_64","autorefresh":false}],"product_type":"module","cpe":"cpe:/o:suse:sle-module-suse-manager-proxy:4.1"}],"friendly_version":"15 SP2","release_type":null,"former_identifier":"sle-module-server-applications","friendly_name":"Server Applications Module 15 SP2 x86_64","migration_extra":false,"offline_predecessor_ids":[],"name":"Server Applications Module","version":"15.2","recommended":true},{"recommended":false,"version":"15.2","name":"Containers Module","offline_predecessor_ids":[1332],"friendly_name":"Containers Module 15 SP2 x86_64","migration_extra":false,"former_identifier":"sle-module-containers","release_type":null,"friendly_version":"15 SP2","extensions":[],"release_stage":"released","identifier":"sle-module-containers","id":1963,"shortname":"Containers-Module","description":"

This Module contains several packages revolving around containers and related tools.

","free":true,"eula_url":"","arch":"x86_64","predecessor_ids":[1642,1790],"repositories":[{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/15-SP2/x86_64/update/","autorefresh":true,"distro_target":"sle-15-x86_64","id":4096,"enabled":true,"description":"SLE-Module-Containers15-SP2-Updates for sle-15-x86_64","name":"SLE-Module-Containers15-SP2-Updates","installer_updates":false},{"description":"SLE-Module-Containers15-SP2-Debuginfo-Updates for sle-15-x86_64","name":"SLE-Module-Containers15-SP2-Debuginfo-Updates","installer_updates":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/15-SP2/x86_64/update_debug/","autorefresh":true,"distro_target":"sle-15-x86_64","id":4097,"enabled":false},{"name":"SLE-Module-Containers15-SP2-Pool","installer_updates":false,"description":"SLE-Module-Containers15-SP2-Pool for sle-15-x86_64","id":4098,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP2/x86_64/product/","autorefresh":false,"distro_target":"sle-15-x86_64"},{"installer_updates":false,"name":"SLE-Module-Containers15-SP2-Debuginfo-Pool","description":"SLE-Module-Containers15-SP2-Debuginfo-Pool for sle-15-x86_64","id":4099,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP2/x86_64/product_debug/","distro_target":"sle-15-x86_64","autorefresh":false},{"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP2/x86_64/product_source/","enabled":false,"id":4100,"description":"SLE-Module-Containers15-SP2-Source-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Containers15-SP2-Source-Pool"}],"online_predecessor_ids":[1642,1790],"product_class":"MODULE","cpe":"cpe:/o:suse:sle-module-containers:15:sp2","product_type":"module"},{"arch":"x86_64","eula_url":"","description":"

The SUSE Linux Enterprise Desktop Applications Module delivers a basic set of Desktop functionality.

Access to the Desktop Applications Module is included in your SUSE Linux Enterprise product subscription.

","shortname":"Desktop-Applications-Module","free":true,"cpe":"cpe:/o:suse:sle-module-desktop-applications:15:sp2","product_type":"module","product_class":"MODULE","online_predecessor_ids":[1578,1776],"repositories":[{"description":"SLE-Module-Desktop-Applications15-SP2-Updates for sle-15-x86_64","name":"SLE-Module-Desktop-Applications15-SP2-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15-SP2/x86_64/update/","enabled":true,"id":4116},{"name":"SLE-Module-Desktop-Applications15-SP2-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-Desktop-Applications15-SP2-Debuginfo-Updates for sle-15-x86_64","id":4117,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15-SP2/x86_64/update_debug/","autorefresh":true,"distro_target":"sle-15-x86_64"},{"id":4118,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP2/x86_64/product/","distro_target":"sle-15-x86_64","autorefresh":false,"installer_updates":false,"name":"SLE-Module-Desktop-Applications15-SP2-Pool","description":"SLE-Module-Desktop-Applications15-SP2-Pool for sle-15-x86_64"},{"name":"SLE-Module-Desktop-Applications15-SP2-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-Desktop-Applications15-SP2-Debuginfo-Pool for sle-15-x86_64","enabled":false,"id":4119,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP2/x86_64/product_debug/"},{"enabled":false,"id":4120,"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP2/x86_64/product_source/","installer_updates":false,"name":"SLE-Module-Desktop-Applications15-SP2-Source-Pool","description":"SLE-Module-Desktop-Applications15-SP2-Source-Pool for sle-15-x86_64"}],"predecessor_ids":[1578,1776],"friendly_name":"Desktop Applications Module 15 SP2 x86_64","migration_extra":false,"release_type":null,"former_identifier":"sle-module-desktop-applications","name":"Desktop Applications Module","offline_predecessor_ids":[],"version":"15.2","recommended":false,"id":1967,"release_stage":"released","identifier":"sle-module-desktop-applications","extensions":[{"arch":"x86_64","eula_url":"","free":true,"shortname":"Development-Tools-Module","description":"

The Development Tools Module helps you developing applications for SUSE Linux Enterprise 15.

Access to the Development Tools Module is included in your SUSE Linux Enterprise product subscription. The module has a different lifecycle than SUSE Linux Enterprise itself.

","product_type":"module","cpe":"cpe:/o:suse:sle-module-development-tools:15:sp2","repositories":[{"name":"SLE-Module-DevTools15-SP2-Updates","installer_updates":false,"description":"SLE-Module-DevTools15-SP2-Updates for sle-15-x86_64","id":4136,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15-SP2/x86_64/update/","autorefresh":true,"distro_target":"sle-15-x86_64"},{"description":"SLE-Module-DevTools15-SP2-Debuginfo-Updates for sle-15-x86_64","name":"SLE-Module-DevTools15-SP2-Debuginfo-Updates","installer_updates":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15-SP2/x86_64/update_debug/","autorefresh":true,"distro_target":"sle-15-x86_64","id":4137,"enabled":false},{"description":"SLE-Module-DevTools15-SP2-Pool for sle-15-x86_64","name":"SLE-Module-DevTools15-SP2-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP2/x86_64/product/","enabled":true,"id":4138},{"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP2/x86_64/product_debug/","enabled":false,"id":4139,"description":"SLE-Module-DevTools15-SP2-Debuginfo-Pool for sle-15-x86_64","name":"SLE-Module-DevTools15-SP2-Debuginfo-Pool","installer_updates":false},{"installer_updates":false,"name":"SLE-Module-DevTools15-SP2-Source-Pool","description":"SLE-Module-DevTools15-SP2-Source-Pool for sle-15-x86_64","enabled":false,"id":4140,"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP2/x86_64/product_source/"}],"online_predecessor_ids":[1579,1794],"product_class":"MODULE","predecessor_ids":[1579,1794],"release_type":null,"former_identifier":"sle-sdk","friendly_name":"Development Tools Module 15 SP2 x86_64","migration_extra":false,"offline_predecessor_ids":[1341,1630,1892],"name":"Development Tools Module","version":"15.2","recommended":false,"release_stage":"released","identifier":"sle-module-development-tools","id":1971,"extensions":[],"friendly_version":"15 SP2"}],"friendly_version":"15 SP2"},{"friendly_version":"15 SP2","extensions":[],"release_stage":"released","identifier":"sle-module-python2","id":1992,"recommended":false,"version":"15.2","offline_predecessor_ids":[],"name":"Python 2 Module","release_type":null,"former_identifier":"sle-module-python2","friendly_name":"Python 2 Module 15 SP2 x86_64","migration_extra":false,"predecessor_ids":[1867],"repositories":[{"installer_updates":false,"name":"SLE-Module-Python2-15-SP2-Updates","description":"SLE-Module-Python2-15-SP2-Updates for sle-15-x86_64","enabled":true,"id":4241,"distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Python2/15-SP2/x86_64/update/"},{"installer_updates":false,"name":"SLE-Module-Python2-15-SP2-Debuginfo-Updates","description":"SLE-Module-Python2-15-SP2-Debuginfo-Updates for sle-15-x86_64","id":4242,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Python2/15-SP2/x86_64/update_debug/","distro_target":"sle-15-x86_64","autorefresh":true},{"description":"SLE-Module-Python2-15-SP2-Pool for sle-15-x86_64","name":"SLE-Module-Python2-15-SP2-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Python2/15-SP2/x86_64/product/","enabled":true,"id":4243},{"installer_updates":false,"name":"SLE-Module-Python2-15-SP2-Debuginfo-Pool","description":"SLE-Module-Python2-15-SP2-Debuginfo-Pool for sle-15-x86_64","enabled":false,"id":4244,"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Python2/15-SP2/x86_64/product_debug/"},{"enabled":false,"id":4245,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Python2/15-SP2/x86_64/product_source/","name":"SLE-Module-Python2-15-SP2-Source-Pool","installer_updates":false,"description":"SLE-Module-Python2-15-SP2-Source-Pool for sle-15-x86_64"}],"online_predecessor_ids":[1867],"product_class":"MODULE","product_type":"module","cpe":"cpe:/o:suse:sle-module-python2:15:sp2","free":true,"shortname":"Python2-Module","description":"

This module contains the python 2 packages.

Access to the Python 2 Module is included in your SUSE Linux Enterprise subscription. The module has a different lifecycle than SUSE Linux Enterprise itself. Packages in the this module are usually supported for at most three years.

","eula_url":"","arch":"x86_64"}],"friendly_version":"15 SP2","former_identifier":"sle-module-basesystem","release_type":null,"friendly_name":"Basesystem Module 15 SP2 x86_64","migration_extra":false,"offline_predecessor_ids":[1212,1368,1440],"name":"Basesystem Module","version":"15.2","recommended":true,"product_type":"module","cpe":"cpe:/o:suse:sle-module-basesystem:15:sp2","repositories":[{"id":3999,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15-SP2/x86_64/update/","distro_target":"sle-15-x86_64","autorefresh":true,"installer_updates":false,"name":"SLE-Module-Basesystem15-SP2-Updates","description":"SLE-Module-Basesystem15-SP2-Updates for sle-15-x86_64"},{"enabled":false,"id":4000,"distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15-SP2/x86_64/update_debug/","installer_updates":false,"name":"SLE-Module-Basesystem15-SP2-Debuginfo-Updates","description":"SLE-Module-Basesystem15-SP2-Debuginfo-Updates for sle-15-x86_64"},{"description":"SLE-Module-Basesystem15-SP2-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Basesystem15-SP2-Pool","distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP2/x86_64/product/","enabled":true,"id":4001},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP2/x86_64/product_debug/","distro_target":"sle-15-x86_64","autorefresh":false,"id":4002,"enabled":false,"description":"SLE-Module-Basesystem15-SP2-Debuginfo-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Basesystem15-SP2-Debuginfo-Pool"},{"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP2/x86_64/product_source/","enabled":false,"id":4003,"description":"SLE-Module-Basesystem15-SP2-Source-Pool for sle-15-x86_64","name":"SLE-Module-Basesystem15-SP2-Source-Pool","installer_updates":false}],"online_predecessor_ids":[1576,1772],"product_class":"MODULE","predecessor_ids":[1576,1772],"arch":"x86_64","eula_url":"","free":true,"description":"

The SUSE Linux Enterprise Basesystem Module delivers the base system of the product.

","shortname":"Basesystem-Module"}],"identifier":"SUSE-Manager-Retail-Branch-Server","release_stage":"released","id":2014,"friendly_version":"4.1","eula_url":"https://updates.suse.com/SUSE/Products/SLE-Product-SUSE-Manager-Retail-Branch-Server/4.1/x86_64/product.license/","arch":"x86_64","free":false,"description":"The SUSE Manager for Retail Branch Server supports large and/or geographically dispersed SUSE Manager for Retail environments by reducing the load on the SUSE Manager Server, lowering bandwidth needs, and providing faster local updates.","shortname":"SUSE Manager Retail Branch Server 4.1","product_type":"base","cpe":"cpe:/o:suse:suse-manager-retail-branch-server:4.1","predecessor_ids":[1907],"product_class":"SMRBS","online_predecessor_ids":[1907],"repositories":[{"enabled":true,"id":4346,"distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-SUSE-Manager-Retail-Branch-Server/4.1/x86_64/update/","installer_updates":false,"name":"SLE-Product-SUSE-Manager-Retail-Branch-Server-4.1-Updates","description":"SLE-Product-SUSE-Manager-Retail-Branch-Server-4.1-Updates for sle-15-x86_64"},{"distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-SUSE-Manager-Retail-Branch-Server/4.1/x86_64/update_debug/","enabled":false,"id":4347,"description":"SLE-Product-SUSE-Manager-Retail-Branch-Server-4.1-Debuginfo-Updates for sle-15-x86_64","installer_updates":false,"name":"SLE-Product-SUSE-Manager-Retail-Branch-Server-4.1-Debuginfo-Updates"},{"installer_updates":false,"name":"SLE-Product-SUSE-Manager-Retail-Branch-Server-4.1-Pool","description":"SLE-Product-SUSE-Manager-Retail-Branch-Server-4.1-Pool for sle-15-x86_64","id":4348,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-SUSE-Manager-Retail-Branch-Server/4.1/x86_64/product/","distro_target":"sle-15-x86_64","autorefresh":false},{"url":"https://updates.suse.com/SUSE/Products/SLE-Product-SUSE-Manager-Retail-Branch-Server/4.1/x86_64/product_debug/","distro_target":"sle-15-x86_64","autorefresh":false,"id":4349,"enabled":false,"description":"SLE-Product-SUSE-Manager-Retail-Branch-Server-4.1-Debuginfo-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Product-SUSE-Manager-Retail-Branch-Server-4.1-Debuginfo-Pool"},{"name":"SLE-Product-SUSE-Manager-Retail-Branch-Server-4.1-Source-Pool","installer_updates":false,"description":"SLE-Product-SUSE-Manager-Retail-Branch-Server-4.1-Source-Pool for sle-15-x86_64","id":4350,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-SUSE-Manager-Retail-Branch-Server/4.1/x86_64/product_source/","autorefresh":false,"distro_target":"sle-15-x86_64"}]},{"product_type":"module","cpe":"cpe:/o:suse:sle-module-suse-manager-proxy:4.1","product_class":"MODULE","online_predecessor_ids":[1908],"repositories":[{"description":"SLE-Module-SUSE-Manager-Proxy-4.1-Updates for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-SUSE-Manager-Proxy-4.1-Updates","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-SUSE-Manager-Proxy/4.1/x86_64/update/","distro_target":"sle-15-x86_64","autorefresh":true,"id":4351,"enabled":true},{"id":4352,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-SUSE-Manager-Proxy/4.1/x86_64/update_debug/","autorefresh":true,"distro_target":"sle-15-x86_64","name":"SLE-Module-SUSE-Manager-Proxy-4.1-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-SUSE-Manager-Proxy-4.1-Debuginfo-Updates for sle-15-x86_64"},{"description":"SLE-Module-SUSE-Manager-Proxy-4.1-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-SUSE-Manager-Proxy-4.1-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-SUSE-Manager-Proxy/4.1/x86_64/product/","distro_target":"sle-15-x86_64","autorefresh":false,"id":4353,"enabled":true},{"description":"SLE-Module-SUSE-Manager-Proxy-4.1-Debuginfo-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-SUSE-Manager-Proxy-4.1-Debuginfo-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-SUSE-Manager-Proxy/4.1/x86_64/product_debug/","distro_target":"sle-15-x86_64","autorefresh":false,"id":4354,"enabled":false},{"description":"SLE-Module-SUSE-Manager-Proxy-4.1-Source-Pool for sle-15-x86_64","name":"SLE-Module-SUSE-Manager-Proxy-4.1-Source-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-SUSE-Manager-Proxy/4.1/x86_64/product_source/","enabled":false,"id":4355}],"predecessor_ids":[1908],"arch":"x86_64","eula_url":"","free":true,"shortname":"SUSE Manager Proxy 4.1 Module","description":"SUSE Manager Proxies extend large and/or geographically dispersed SUSE Manager environments to reduce load on the SUSE Manager Server, lower bandwidth needs, and provide faster local updates.","id":2015,"release_stage":"released","identifier":"sle-module-suse-manager-proxy","extensions":[],"friendly_version":"4.1","release_type":null,"former_identifier":"sle-module-suse-manager-proxy","friendly_name":"SUSE Manager Proxy Module 4.1 x86_64","migration_extra":false,"offline_predecessor_ids":[],"name":"SUSE Manager Proxy Module","version":"4.1","recommended":false},{"eula_url":"","arch":"x86_64","free":true,"shortname":"SUSE Manager Retail Branch Server 4.1 Module","description":"The SUSE Manager for Retail Branch Server supports large and/or geographically dispersed SUSE Manager for Retail environments by reducing the load on the SUSE Manager Server, lowering bandwidth needs, and providing faster local updates.","product_type":"module","cpe":"cpe:/o:suse:sle-module-suse-manager-retail-branch-server:4.1","predecessor_ids":[1909],"online_predecessor_ids":[1909],"product_class":"MODULE","repositories":[{"name":"SLE-Module-SUSE-Manager-Retail-Branch-Server-4.1-Updates","installer_updates":false,"description":"SLE-Module-SUSE-Manager-Retail-Branch-Server-4.1-Updates for sle-15-x86_64","enabled":true,"id":4356,"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-SUSE-Manager-Retail-Branch-Server/4.1/x86_64/update/"},{"description":"SLE-Module-SUSE-Manager-Retail-Branch-Server-4.1-Debuginfo-Updates for sle-15-x86_64","name":"SLE-Module-SUSE-Manager-Retail-Branch-Server-4.1-Debuginfo-Updates","installer_updates":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-SUSE-Manager-Retail-Branch-Server/4.1/x86_64/update_debug/","autorefresh":true,"distro_target":"sle-15-x86_64","id":4357,"enabled":false},{"installer_updates":false,"name":"SLE-Module-SUSE-Manager-Retail-Branch-Server-4.1-Pool","description":"SLE-Module-SUSE-Manager-Retail-Branch-Server-4.1-Pool for sle-15-x86_64","id":4358,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-SUSE-Manager-Retail-Branch-Server/4.1/x86_64/product/","distro_target":"sle-15-x86_64","autorefresh":false},{"description":"SLE-Module-SUSE-Manager-Retail-Branch-Server-4.1-Debuginfo-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-SUSE-Manager-Retail-Branch-Server-4.1-Debuginfo-Pool","distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-SUSE-Manager-Retail-Branch-Server/4.1/x86_64/product_debug/","enabled":false,"id":4359},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-SUSE-Manager-Retail-Branch-Server/4.1/x86_64/product_source/","distro_target":"sle-15-x86_64","autorefresh":false,"id":4360,"enabled":false,"description":"SLE-Module-SUSE-Manager-Retail-Branch-Server-4.1-Source-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-SUSE-Manager-Retail-Branch-Server-4.1-Source-Pool"}],"offline_predecessor_ids":[],"name":"SUSE Manager Retail Branch Server Module","release_type":null,"former_identifier":"sle-module-suse-manager-retail-branch-server","friendly_name":"SUSE Manager Retail Branch Server Module 4.1 x86_64","migration_extra":false,"recommended":false,"version":"4.1","extensions":[],"release_stage":"released","identifier":"sle-module-suse-manager-retail-branch-server","id":2016,"friendly_version":"4.1"},{"extensions":[],"identifier":"sle-module-suse-manager-server","release_stage":"released","id":2017,"friendly_version":"4.1","name":"SUSE Manager Server Module","offline_predecessor_ids":[],"friendly_name":"SUSE Manager Server Module 4.1 ppc64le","migration_extra":false,"release_type":null,"former_identifier":"sle-module-suse-manager-server","recommended":false,"version":"4.1","cpe":"cpe:/o:suse:sle-module-suse-manager-server:4.1","product_type":"module","predecessor_ids":[1903],"repositories":[{"installer_updates":false,"name":"SLE-Module-SUSE-Manager-Server-4.1-Updates","description":"SLE-Module-SUSE-Manager-Server-4.1-Updates for sle-15-ppc64le","id":4361,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-SUSE-Manager-Server/4.1/ppc64le/update/","distro_target":"sle-15-ppc64le","autorefresh":true},{"description":"SLE-Module-SUSE-Manager-Server-4.1-Debuginfo-Updates for sle-15-ppc64le","name":"SLE-Module-SUSE-Manager-Server-4.1-Debuginfo-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-SUSE-Manager-Server/4.1/ppc64le/update_debug/","enabled":false,"id":4362},{"installer_updates":false,"name":"SLE-Module-SUSE-Manager-Server-4.1-Pool","description":"SLE-Module-SUSE-Manager-Server-4.1-Pool for sle-15-ppc64le","id":4363,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-SUSE-Manager-Server/4.1/ppc64le/product/","distro_target":"sle-15-ppc64le","autorefresh":false},{"enabled":false,"id":4364,"autorefresh":false,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Products/SLE-Module-SUSE-Manager-Server/4.1/ppc64le/product_debug/","name":"SLE-Module-SUSE-Manager-Server-4.1-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-SUSE-Manager-Server-4.1-Debuginfo-Pool for sle-15-ppc64le"},{"installer_updates":false,"name":"SLE-Module-SUSE-Manager-Server-4.1-Source-Pool","description":"SLE-Module-SUSE-Manager-Server-4.1-Source-Pool for sle-15-ppc64le","id":4365,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-SUSE-Manager-Server/4.1/ppc64le/product_source/","distro_target":"sle-15-ppc64le","autorefresh":false}],"online_predecessor_ids":[1903],"product_class":"MODULE","eula_url":"","arch":"ppc64le","shortname":"SUSE Manager Server 4.1 Module","description":"SUSE Manager lets you efficiently manage physical, virtual, and cloud-based Linux systems. It provides automated and cost-effective configuration and software management, asset management, and system provisioning.","free":true},{"free":true,"description":"SUSE Manager lets you efficiently manage physical, virtual, and cloud-based Linux systems. It provides automated and cost-effective configuration and software management, asset management, and system provisioning.","shortname":"SUSE Manager Server 4.1 Module","eula_url":"","arch":"s390x","predecessor_ids":[1904],"product_class":"MODULE","online_predecessor_ids":[1904],"repositories":[{"description":"SLE-Module-SUSE-Manager-Server-4.1-Updates for sle-15-s390x","name":"SLE-Module-SUSE-Manager-Server-4.1-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-15-s390x","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-SUSE-Manager-Server/4.1/s390x/update/","enabled":true,"id":4366},{"autorefresh":true,"distro_target":"sle-15-s390x","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-SUSE-Manager-Server/4.1/s390x/update_debug/","enabled":false,"id":4367,"description":"SLE-Module-SUSE-Manager-Server-4.1-Debuginfo-Updates for sle-15-s390x","name":"SLE-Module-SUSE-Manager-Server-4.1-Debuginfo-Updates","installer_updates":false},{"installer_updates":false,"name":"SLE-Module-SUSE-Manager-Server-4.1-Pool","description":"SLE-Module-SUSE-Manager-Server-4.1-Pool for sle-15-s390x","id":4368,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-SUSE-Manager-Server/4.1/s390x/product/","distro_target":"sle-15-s390x","autorefresh":false},{"description":"SLE-Module-SUSE-Manager-Server-4.1-Debuginfo-Pool for sle-15-s390x","name":"SLE-Module-SUSE-Manager-Server-4.1-Debuginfo-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-15-s390x","url":"https://updates.suse.com/SUSE/Products/SLE-Module-SUSE-Manager-Server/4.1/s390x/product_debug/","enabled":false,"id":4369},{"description":"SLE-Module-SUSE-Manager-Server-4.1-Source-Pool for sle-15-s390x","name":"SLE-Module-SUSE-Manager-Server-4.1-Source-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-15-s390x","url":"https://updates.suse.com/SUSE/Products/SLE-Module-SUSE-Manager-Server/4.1/s390x/product_source/","enabled":false,"id":4370}],"product_type":"module","cpe":"cpe:/o:suse:sle-module-suse-manager-server:4.1","recommended":false,"version":"4.1","offline_predecessor_ids":[],"name":"SUSE Manager Server Module","release_type":null,"former_identifier":"sle-module-suse-manager-server","friendly_name":"SUSE Manager Server Module 4.1 s390x","migration_extra":false,"friendly_version":"4.1","extensions":[],"release_stage":"released","id":2018,"identifier":"sle-module-suse-manager-server"},{"release_type":null,"former_identifier":"sle-module-suse-manager-server","migration_extra":false,"friendly_name":"SUSE Manager Server Module 4.1 x86_64","offline_predecessor_ids":[],"name":"SUSE Manager Server Module","version":"4.1","recommended":false,"id":2019,"release_stage":"released","identifier":"sle-module-suse-manager-server","extensions":[],"friendly_version":"4.1","arch":"x86_64","eula_url":"","free":true,"description":"SUSE Manager lets you efficiently manage physical, virtual, and cloud-based Linux systems. It provides automated and cost-effective configuration and software management, asset management, and system provisioning.","shortname":"SUSE Manager Server 4.1 Module","product_type":"module","cpe":"cpe:/o:suse:sle-module-suse-manager-server:4.1","product_class":"MODULE","online_predecessor_ids":[1905],"repositories":[{"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-SUSE-Manager-Server/4.1/x86_64/update/","enabled":true,"id":4371,"description":"SLE-Module-SUSE-Manager-Server-4.1-Updates for sle-15-x86_64","name":"SLE-Module-SUSE-Manager-Server-4.1-Updates","installer_updates":false},{"distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-SUSE-Manager-Server/4.1/x86_64/update_debug/","enabled":false,"id":4372,"description":"SLE-Module-SUSE-Manager-Server-4.1-Debuginfo-Updates for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-SUSE-Manager-Server-4.1-Debuginfo-Updates"},{"enabled":true,"id":4373,"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-SUSE-Manager-Server/4.1/x86_64/product/","installer_updates":false,"name":"SLE-Module-SUSE-Manager-Server-4.1-Pool","description":"SLE-Module-SUSE-Manager-Server-4.1-Pool for sle-15-x86_64"},{"id":4374,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-SUSE-Manager-Server/4.1/x86_64/product_debug/","distro_target":"sle-15-x86_64","autorefresh":false,"installer_updates":false,"name":"SLE-Module-SUSE-Manager-Server-4.1-Debuginfo-Pool","description":"SLE-Module-SUSE-Manager-Server-4.1-Debuginfo-Pool for sle-15-x86_64"},{"name":"SLE-Module-SUSE-Manager-Server-4.1-Source-Pool","installer_updates":false,"description":"SLE-Module-SUSE-Manager-Server-4.1-Source-Pool for sle-15-x86_64","enabled":false,"id":4375,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-SUSE-Manager-Server/4.1/x86_64/product_source/"}],"predecessor_ids":[1905]},{"online_predecessor_ids":[],"repositories":[{"description":"SLE-Product-SLES15-LTSS-Updates for sle-15-aarch64","installer_updates":false,"name":"SLE-Product-SLES15-LTSS-Updates","distro_target":"sle-15-aarch64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-SLES/15-LTSS/aarch64/update/","enabled":true,"id":4384},{"enabled":false,"id":4385,"autorefresh":true,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Updates/SLE-Product-SLES/15-LTSS/aarch64/update_debug/","name":"SLE-Product-SLES15-Debuginfo-LTSS-Updates","installer_updates":false,"description":"SLE-Product-SLES15-Debuginfo-LTSS-Updates for sle-15-aarch64"}],"product_class":"SLES15-LTSS-ARM64","predecessor_ids":[],"cpe":"cpe:/o:suse:sles-ltss:15","product_type":"extension","description":"SUSE Linux Enterprise offers a comprehensive suite of products built on a single code base. The platform addresses business needs from the smallest thin-client devices to the world's most powerful high-performance computing and mainframe servers. SUSE Linux Enterprise offers common management tools and technology certifications across the platform, and each product is enterprise-class.","shortname":"SLES15-LTSS","free":false,"arch":"aarch64","eula_url":"","friendly_version":"15","identifier":"SLES-LTSS","release_stage":"released","id":2053,"extensions":[],"version":"15","recommended":false,"friendly_name":"SUSE Linux Enterprise Server LTSS 15 aarch64","migration_extra":false,"former_identifier":"SLES-LTSS","release_type":null,"name":"SUSE Linux Enterprise Server LTSS","offline_predecessor_ids":[]},{"description":"SUSE Linux Enterprise offers a comprehensive suite of products built on a single code base. The platform addresses business needs from the smallest thin-client devices to the world's most powerful high-performance computing and mainframe servers. SUSE Linux Enterprise offers common management tools and technology certifications across the platform, and each product is enterprise-class.","shortname":"SLES15-LTSS","free":false,"arch":"ppc64le","eula_url":"","online_predecessor_ids":[],"product_class":"SLES15-GA-LTSS-PPC","repositories":[{"enabled":true,"id":4386,"distro_target":"sle-15-ppc64le","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-SLES/15-LTSS/ppc64le/update/","installer_updates":false,"name":"SLE-Product-SLES15-LTSS-Updates","description":"SLE-Product-SLES15-LTSS-Updates for sle-15-ppc64le"},{"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-SLES/15-LTSS/ppc64le/update_debug/","distro_target":"sle-15-ppc64le","autorefresh":true,"id":4387,"enabled":false,"description":"SLE-Product-SLES15-Debuginfo-LTSS-Updates for sle-15-ppc64le","installer_updates":false,"name":"SLE-Product-SLES15-Debuginfo-LTSS-Updates"}],"predecessor_ids":[],"cpe":"cpe:/o:suse:sles-ltss:15","product_type":"extension","version":"15","recommended":false,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Server LTSS 15 ppc64le","former_identifier":"SLES-LTSS","release_type":null,"name":"SUSE Linux Enterprise Server LTSS","offline_predecessor_ids":[],"friendly_version":"15","id":2054,"release_stage":"released","identifier":"SLES-LTSS","extensions":[]},{"product_type":"extension","cpe":"cpe:/o:suse:sles-ltss:15","predecessor_ids":[],"repositories":[{"name":"SLE-Product-SLES15-LTSS-Updates","installer_updates":false,"description":"SLE-Product-SLES15-LTSS-Updates for sle-15-s390x","id":4388,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-SLES/15-LTSS/s390x/update/","autorefresh":true,"distro_target":"sle-15-s390x"},{"installer_updates":false,"name":"SLE-Product-SLES15-Debuginfo-LTSS-Updates","description":"SLE-Product-SLES15-Debuginfo-LTSS-Updates for sle-15-s390x","enabled":false,"id":4389,"distro_target":"sle-15-s390x","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-SLES/15-LTSS/s390x/update_debug/"}],"online_predecessor_ids":[],"product_class":"SLES15-GA-LTSS-Z","eula_url":"","arch":"s390x","free":false,"shortname":"SLES15-LTSS","description":"SUSE Linux Enterprise offers a comprehensive suite of products built on a single code base. The platform addresses business needs from the smallest thin-client devices to the world's most powerful high-performance computing and mainframe servers. SUSE Linux Enterprise offers common management tools and technology certifications across the platform, and each product is enterprise-class.","extensions":[],"release_stage":"released","id":2055,"identifier":"SLES-LTSS","friendly_version":"15","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Server LTSS","release_type":null,"former_identifier":"SLES-LTSS","friendly_name":"SUSE Linux Enterprise Server LTSS 15 s390x","migration_extra":false,"recommended":false,"version":"15"},{"recommended":false,"version":"15","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Server LTSS","former_identifier":"SLES-LTSS","release_type":null,"friendly_name":"SUSE Linux Enterprise Server LTSS 15 x86_64","migration_extra":false,"friendly_version":"15","extensions":[],"release_stage":"released","identifier":"SLES-LTSS","id":2056,"free":false,"shortname":"SLES15-LTSS","description":"SUSE Linux Enterprise offers a comprehensive suite of products built on a single code base. The platform addresses business needs from the smallest thin-client devices to the world's most powerful high-performance computing and mainframe servers. SUSE Linux Enterprise offers common management tools and technology certifications across the platform, and each product is enterprise-class.","eula_url":"","arch":"x86_64","predecessor_ids":[],"repositories":[{"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-SLES/15-LTSS/x86_64/update/","autorefresh":true,"distro_target":"sle-15-x86_64","id":4390,"enabled":true,"description":"SLE-Product-SLES15-LTSS-Updates for sle-15-x86_64","name":"SLE-Product-SLES15-LTSS-Updates","installer_updates":false},{"description":"SLE-Product-SLES15-Debuginfo-LTSS-Updates for sle-15-x86_64","installer_updates":false,"name":"SLE-Product-SLES15-Debuginfo-LTSS-Updates","url":"https://updates.suse.com/SUSE/Updates/SLE-Product-SLES/15-LTSS/x86_64/update_debug/","distro_target":"sle-15-x86_64","autorefresh":true,"id":4391,"enabled":false}],"online_predecessor_ids":[],"product_class":"SLES15-GA-LTSS-X86","product_type":"extension","cpe":"cpe:/o:suse:sles-ltss:15"},{"extensions":[],"id":2057,"release_stage":"released","identifier":"SLE_HPC-LTSS","friendly_version":"15","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise High Performance Computing LTSS","former_identifier":"SLE_HPC-LTSS","release_type":null,"friendly_name":"SUSE Linux Enterprise High Performance Computing LTSS 15 aarch64","migration_extra":false,"recommended":false,"version":"15","product_type":"extension","cpe":"cpe:/o:suse:sle_hpc-ltss:15","predecessor_ids":[],"repositories":[{"description":"SLE-Product-HPC-15-LTSS-Updates for sle-15-aarch64","name":"SLE-Product-HPC-15-LTSS-Updates","installer_updates":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-HPC/15-LTSS/aarch64/update/","autorefresh":true,"distro_target":"sle-15-aarch64","id":4392,"enabled":true},{"installer_updates":false,"name":"SLE-Product-HPC15-Debuginfo-LTSS-Updates","description":"SLE-Product-HPC15-Debuginfo-LTSS-Updates for sle-15-aarch64","id":4393,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-HPC/15-LTSS/aarch64/update_debug/","distro_target":"sle-15-aarch64","autorefresh":true}],"online_predecessor_ids":[],"product_class":"HPC15-LTSS-ARM64","eula_url":"","arch":"aarch64","free":false,"shortname":"SLE-15-HPC-LTSS","description":"

SUSE Linux Enterprise High Performance Computing is a highly scalable, high performance open source operating system designed to utilize the power of parallel computing for modeling, simulation and advanced analytics workloads.

"},{"eula_url":"","arch":"x86_64","free":false,"description":"

SUSE Linux Enterprise High Performance Computing is a highly scalable, high performance open source operating system designed to utilize the power of parallel computing for modeling, simulation and advanced analytics workloads.

","shortname":"SLE-15-HPC-LTSS","product_type":"extension","cpe":"cpe:/o:suse:sle_hpc-ltss:15","predecessor_ids":[],"repositories":[{"id":4394,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-HPC/15-LTSS/x86_64/update/","autorefresh":true,"distro_target":"sle-15-x86_64","name":"SLE-Product-HPC-15-LTSS-Updates","installer_updates":false,"description":"SLE-Product-HPC-15-LTSS-Updates for sle-15-x86_64"},{"id":4395,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-HPC/15-LTSS/x86_64/update_debug/","autorefresh":true,"distro_target":"sle-15-x86_64","name":"SLE-Product-HPC15-Debuginfo-LTSS-Updates","installer_updates":false,"description":"SLE-Product-HPC15-Debuginfo-LTSS-Updates for sle-15-x86_64"}],"online_predecessor_ids":[],"product_class":"HPC15-LTSS-X86","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise High Performance Computing LTSS","release_type":null,"former_identifier":"SLE_HPC-LTSS","migration_extra":false,"friendly_name":"SUSE Linux Enterprise High Performance Computing LTSS 15 x86_64","recommended":false,"version":"15","extensions":[],"release_stage":"released","identifier":"SLE_HPC-LTSS","id":2058,"friendly_version":"15"},{"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Server ESPOS 15 aarch64","release_type":null,"former_identifier":"SLE_HPC-ESPOS","name":"SUSE Linux Enterprise Server ESPOS","offline_predecessor_ids":[],"version":"15","recommended":false,"release_stage":"released","id":2059,"identifier":"SLE_HPC-ESPOS","extensions":[],"friendly_version":"15","arch":"aarch64","eula_url":"","description":"SUSE Linux Enterprise offers a comprehensive suite of products built on a single code base. The platform addresses business needs from the smallest thin-client devices to the world's most powerful high-performance computing and mainframe servers. SUSE Linux Enterprise offers common management tools and technology certifications across the platform, and each product is enterprise-class.","shortname":"SLE-15-ESPOS","free":false,"cpe":"cpe:/o:suse:sle_hpc-espos:15","product_type":"extension","online_predecessor_ids":[],"product_class":"SLE-ESPOS-ARM64","repositories":[{"description":"SLE-Product-HPC-ESPOS15-Updates for sle-15-aarch64","name":"SLE-Product-HPC-ESPOS15-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Updates/SLE-Product-HPC/15-ESPOS/aarch64/update/","enabled":true,"id":4396},{"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-HPC/15-ESPOS/aarch64/update_debug/","autorefresh":true,"distro_target":"sle-15-aarch64","id":4397,"enabled":false,"description":"SLE-Product-HPC-ESPOS15-Debuginfo-Updates for sle-15-aarch64","name":"SLE-Product-HPC-ESPOS15-Debuginfo-Updates","installer_updates":false},{"description":"SLE-Product-HPC-ESPOS15-Pool for sle-15-aarch64","name":"SLE-Product-HPC-ESPOS15-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-HPC/15-ESPOS/aarch64/product/","autorefresh":false,"distro_target":"sle-15-aarch64","id":4398,"enabled":true},{"enabled":false,"id":4399,"autorefresh":false,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Products/SLE-Product-HPC/15-ESPOS/aarch64/product_debug/","name":"SLE-Product-HPC-ESPOS15-Debuginfo-Pool","installer_updates":false,"description":"SLE-Product-HPC-ESPOS15-Debuginfo-Pool for sle-15-aarch64"},{"id":4400,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-HPC/15-ESPOS/aarch64/product_source/","distro_target":"sle-15-aarch64","autorefresh":false,"installer_updates":false,"name":"SLE-Product-HPC-ESPOS15-Source-Pool","description":"SLE-Product-HPC-ESPOS15-Source-Pool for sle-15-aarch64"}],"predecessor_ids":[]},{"cpe":"cpe:/o:suse:sle_hpc-espos:15","product_type":"extension","predecessor_ids":[],"online_predecessor_ids":[],"product_class":"SLE-ESPOS-X86","repositories":[{"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-HPC/15-ESPOS/x86_64/update/","autorefresh":true,"distro_target":"sle-15-x86_64","id":4401,"enabled":true,"description":"SLE-Product-HPC-ESPOS15-Updates for sle-15-x86_64","name":"SLE-Product-HPC-ESPOS15-Updates","installer_updates":false},{"id":4402,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-HPC/15-ESPOS/x86_64/update_debug/","autorefresh":true,"distro_target":"sle-15-x86_64","name":"SLE-Product-HPC-ESPOS15-Debuginfo-Updates","installer_updates":false,"description":"SLE-Product-HPC-ESPOS15-Debuginfo-Updates for sle-15-x86_64"},{"description":"SLE-Product-HPC-ESPOS15-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Product-HPC-ESPOS15-Pool","distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-HPC/15-ESPOS/x86_64/product/","enabled":true,"id":4403},{"url":"https://updates.suse.com/SUSE/Products/SLE-Product-HPC/15-ESPOS/x86_64/product_debug/","distro_target":"sle-15-x86_64","autorefresh":false,"id":4404,"enabled":false,"description":"SLE-Product-HPC-ESPOS15-Debuginfo-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Product-HPC-ESPOS15-Debuginfo-Pool"},{"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-HPC/15-ESPOS/x86_64/product_source/","enabled":false,"id":4405,"description":"SLE-Product-HPC-ESPOS15-Source-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Product-HPC-ESPOS15-Source-Pool"}],"eula_url":"","arch":"x86_64","shortname":"SLE-15-ESPOS","description":"SUSE Linux Enterprise offers a comprehensive suite of products built on a single code base. The platform addresses business needs from the smallest thin-client devices to the world's most powerful high-performance computing and mainframe servers. SUSE Linux Enterprise offers common management tools and technology certifications across the platform, and each product is enterprise-class.","free":false,"extensions":[],"release_stage":"released","id":2060,"identifier":"SLE_HPC-ESPOS","friendly_version":"15","name":"SUSE Linux Enterprise Server ESPOS","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Server ESPOS 15 x86_64","release_type":null,"former_identifier":"SLE_HPC-ESPOS","recommended":false,"version":"15"},{"shortname":"Manager-Tools-Beta","description":"SUSE Manager Client Tools Beta for Ubuntu 16.04","free":false,"eula_url":"","arch":"amd64","predecessor_ids":[],"online_predecessor_ids":[],"product_class":"SLE-M-T-BETA","repositories":[{"enabled":true,"id":4406,"autorefresh":true,"distro_target":"amd64","url":"https://updates.suse.com/SUSE/Updates/Ubuntu/16.04-CLIENT-TOOLS-BETA/x86_64/update/","name":"Ubuntu-16.04-SUSE-Manager-Tools-Beta","installer_updates":false,"description":"Ubuntu-16.04-SUSE-Manager-Tools-Beta for amd64"}],"cpe":"cpe:/o:suse:ubuntu-manager-client-beta:1604","product_type":"extension","recommended":false,"version":"1604","name":"SUSE Manager Client Tools Beta for Ubuntu","offline_predecessor_ids":[],"friendly_name":"SUSE Manager Client Tools Beta for Ubuntu 1604 amd64 (BETA)","migration_extra":false,"release_type":null,"former_identifier":"ubuntu-manager-client-beta","friendly_version":"1604","extensions":[],"identifier":"ubuntu-manager-client-beta","release_stage":"beta","id":2061},{"product_type":"extension","cpe":"cpe:/o:suse:ubuntu-manager-client-beta:1804","predecessor_ids":[],"online_predecessor_ids":[],"product_class":"SLE-M-T-BETA","repositories":[{"autorefresh":true,"distro_target":"amd64","url":"https://updates.suse.com/SUSE/Updates/Ubuntu/18.04-CLIENT-TOOLS-BETA/x86_64/update/","enabled":true,"id":4407,"description":"Ubuntu-18.04-SUSE-Manager-Tools-Beta for amd64","name":"Ubuntu-18.04-SUSE-Manager-Tools-Beta","installer_updates":false}],"eula_url":"","arch":"amd64","free":false,"shortname":"Manager-Tools-Beta","description":"SUSE Manager Client Tools Beta for Ubuntu 18.04","extensions":[],"release_stage":"beta","identifier":"ubuntu-manager-client-beta","id":2062,"friendly_version":"1804","offline_predecessor_ids":[],"name":"SUSE Manager Client Tools Beta for Ubuntu","former_identifier":"ubuntu-manager-client-beta","release_type":null,"migration_extra":false,"friendly_name":"SUSE Manager Client Tools Beta for Ubuntu 1804 amd64 (BETA)","recommended":false,"version":"1804"},{"eula_url":"","arch":"i386","description":"SUSE Manager Client Tools Beta for RHEL, Liberty and Clones 6","shortname":"RES6-Tools-Beta","free":false,"cpe":"cpe:/o:suse:res-manager-client-beta:6","product_type":"base","predecessor_ids":[],"product_class":"SLE-M-T-BETA","online_predecessor_ids":[],"repositories":[{"installer_updates":false,"name":"RES-6-SUSE-Manager-Tools-Beta","description":"RES-6-SUSE-Manager-Tools-Beta for i386","enabled":true,"id":4408,"distro_target":"i386","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/RES6-SUSE-Manager-Tools-Beta/i386/"}],"name":"SUSE Manager Client Tools Beta for RHEL, Liberty and Clones","offline_predecessor_ids":[],"friendly_name":"SUSE Manager Client Tools Beta for RHEL, Liberty and Clones 6 i386 (BETA)","migration_extra":false,"release_type":null,"former_identifier":"res-manager-client-beta","recommended":false,"version":"6","extensions":[],"id":2063,"release_stage":"beta","identifier":"res-manager-client-beta","friendly_version":"6"},{"name":"SUSE Manager Client Tools Beta for RHEL, Liberty and Clones","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"SUSE Manager Client Tools Beta for RHEL, Liberty and Clones 6 x86_64 (BETA)","former_identifier":"res-manager-client-beta","release_type":null,"recommended":false,"version":"6","extensions":[],"release_stage":"beta","id":2064,"identifier":"res-manager-client-beta","friendly_version":"6","eula_url":"","arch":"x86_64","shortname":"RES6-Tools-Beta","description":"SUSE Manager Client Tools Beta for RHEL, Liberty and Clones 6","free":false,"cpe":"cpe:/o:suse:res-manager-client-beta:6","product_type":"base","predecessor_ids":[],"online_predecessor_ids":[],"product_class":"SLE-M-T-BETA","repositories":[{"description":"RES-6-SUSE-Manager-Tools-Beta for x86_64","installer_updates":false,"name":"RES-6-SUSE-Manager-Tools-Beta","url":"https://updates.suse.com/repo/$RCE/RES6-SUSE-Manager-Tools-Beta/x86_64/","distro_target":"x86_64","autorefresh":true,"id":4409,"enabled":true}]},{"recommended":false,"version":"7","offline_predecessor_ids":[],"name":"SUSE Manager Client Tools Beta for RHEL, Liberty and Clones","release_type":null,"former_identifier":"res-manager-client-beta","migration_extra":false,"friendly_name":"SUSE Manager Client Tools Beta for RHEL, Liberty and Clones 7 x86_64 (BETA)","friendly_version":"7","extensions":[],"release_stage":"beta","identifier":"res-manager-client-beta","id":2065,"free":false,"description":"SUSE Manager Client Tools Beta for RHEL, Liberty and Clones 7","shortname":"Manager-Tools-Beta","eula_url":"","arch":"x86_64","predecessor_ids":[],"repositories":[{"url":"https://updates.suse.com/repo/$RCE/RES7-SUSE-Manager-Tools-Beta/x86_64/","distro_target":"x86_64","autorefresh":true,"id":4410,"enabled":true,"description":"RES-7-SUSE-Manager-Tools-Beta for x86_64","installer_updates":false,"name":"RES-7-SUSE-Manager-Tools-Beta"}],"online_predecessor_ids":[],"product_class":"SLE-M-T-BETA","product_type":"base","cpe":"cpe:/o:suse:res-manager-client-beta:7"},{"recommended":false,"version":"8","offline_predecessor_ids":[],"name":"SUSE Manager Client Tools Beta for RHEL, Liberty and Clones","former_identifier":"res-managertools-beta","release_type":null,"migration_extra":false,"friendly_name":"SUSE Manager Client Tools Beta for RHEL, Liberty and Clones 8 x86_64 (BETA)","friendly_version":"8","extensions":[],"release_stage":"beta","identifier":"res-managertools-beta","id":2066,"free":false,"description":"SUSE Manager Client Tools Beta for RHEL, Liberty and Clones 8","shortname":"Manager-Tools-Beta","eula_url":"","arch":"x86_64","predecessor_ids":[],"online_predecessor_ids":[],"product_class":"SLE-M-T-BETA","repositories":[{"installer_updates":false,"name":"RES8-Manager-Tools-Beta-Updates","description":"RES8-Manager-Tools-Beta-Updates for x86_64","id":4411,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/RES/8-CLIENT-TOOLS-BETA/x86_64/update/","distro_target":"x86_64","autorefresh":true},{"url":"https://updates.suse.com/SUSE/Updates/RES/8-CLIENT-TOOLS-BETA/x86_64/update_debug/","autorefresh":true,"distro_target":"x86_64","id":4412,"enabled":false,"description":"RES8-Manager-Tools-Beta-Debuginfo-Updates for x86_64","name":"RES8-Manager-Tools-Beta-Debuginfo-Updates","installer_updates":false},{"enabled":true,"id":4413,"distro_target":"x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/RES/8-CLIENT-TOOLS-BETA/x86_64/product/","installer_updates":false,"name":"RES8-Manager-Tools-Beta-Pool","description":"RES8-Manager-Tools-Beta-Pool for x86_64"},{"name":"RES8-Manager-Tools-Beta-Debuginfo-Pool","installer_updates":false,"description":"RES8-Manager-Tools-Beta-Debuginfo-Pool for x86_64","enabled":false,"id":4414,"autorefresh":false,"distro_target":"x86_64","url":"https://updates.suse.com/SUSE/Products/RES/8-CLIENT-TOOLS-BETA/x86_64/product_debug/"},{"url":"https://updates.suse.com/SUSE/Products/RES/8-CLIENT-TOOLS-BETA/x86_64/product_source/","autorefresh":false,"distro_target":"x86_64","id":4415,"enabled":false,"description":"RES8-Manager-Tools-Beta-Source-Pool for x86_64","name":"RES8-Manager-Tools-Beta-Source-Pool","installer_updates":false}],"product_type":"extension","cpe":"cpe:/o:suse:res-managertools-beta:8"},{"product_type":"base","cpe":"cpe:/a:suse:sle-clienttools-beta:11:sp3","predecessor_ids":[],"repositories":[{"id":4416,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP3-SUSE-Manager-Tools-Beta/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","name":"SLES11-SP3-SUSE-Manager-Tools-Beta","installer_updates":false,"description":"SLES11-SP3-SUSE-Manager-Tools-Beta for sle-11-i586"}],"online_predecessor_ids":[],"product_class":"SLE-M-T-BETA","eula_url":"","arch":"i586","free":false,"description":"SUSE Manager Client Tools Beta for SLE 11 SP3","shortname":"Manager-Tools-Beta","extensions":[],"release_stage":"beta","id":2067,"identifier":"sle-clienttools-beta","friendly_version":"11 SP3","offline_predecessor_ids":[],"name":"SUSE Manager Client Tools Beta for SLE","release_type":null,"former_identifier":"sle-clienttools-beta","migration_extra":false,"friendly_name":"SUSE Manager Client Tools Beta for SLE 11 SP3 i586 (BETA)","recommended":false,"version":"11.3"},{"extensions":[],"id":2068,"release_stage":"beta","identifier":"sle-clienttools-beta","friendly_version":"11 SP3","offline_predecessor_ids":[],"name":"SUSE Manager Client Tools Beta for SLE","release_type":null,"former_identifier":"sle-clienttools-beta","friendly_name":"SUSE Manager Client Tools Beta for SLE 11 SP3 ppc64 (BETA)","migration_extra":false,"recommended":false,"version":"11.3","product_type":"base","cpe":"cpe:/a:suse:sle-clienttools-beta:11:sp3","predecessor_ids":[],"online_predecessor_ids":[],"repositories":[{"enabled":true,"id":4417,"distro_target":"sle-11-ppc64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP3-SUSE-Manager-Tools-Beta/sle-11-ppc64/","installer_updates":false,"name":"SLES11-SP3-SUSE-Manager-Tools-Beta","description":"SLES11-SP3-SUSE-Manager-Tools-Beta for sle-11-ppc64"}],"product_class":"SLE-M-T-BETA","eula_url":"","arch":"ppc64","free":false,"shortname":"Manager-Tools-Beta","description":"SUSE Manager Client Tools Beta for SLE 11 SP3"},{"version":"11.3","recommended":false,"release_type":null,"former_identifier":"sle-clienttools-beta","migration_extra":false,"friendly_name":"SUSE Manager Client Tools Beta for SLE 11 SP3 s390x (BETA)","offline_predecessor_ids":[],"name":"SUSE Manager Client Tools Beta for SLE","friendly_version":"11 SP3","id":2069,"release_stage":"beta","identifier":"sle-clienttools-beta","extensions":[],"free":false,"shortname":"Manager-Tools-Beta","description":"SUSE Manager Client Tools Beta for SLE 11 SP3","arch":"s390x","eula_url":"","repositories":[{"enabled":true,"id":4418,"autorefresh":true,"distro_target":"sle-11-s390x","url":"https://updates.suse.com/repo/$RCE/SLES11-SP3-SUSE-Manager-Tools-Beta/sle-11-s390x/","name":"SLES11-SP3-SUSE-Manager-Tools-Beta","installer_updates":false,"description":"SLES11-SP3-SUSE-Manager-Tools-Beta for sle-11-s390x"}],"online_predecessor_ids":[],"product_class":"SLE-M-T-BETA","predecessor_ids":[],"product_type":"base","cpe":"cpe:/a:suse:sle-clienttools-beta:11:sp3"},{"online_predecessor_ids":[],"product_class":"SLE-M-T-BETA","repositories":[{"installer_updates":false,"name":"SLES11-SP3-SUSE-Manager-Tools-Beta","description":"SLES11-SP3-SUSE-Manager-Tools-Beta for sle-11-x86_64","enabled":true,"id":4419,"distro_target":"sle-11-x86_64","autorefresh":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP3-SUSE-Manager-Tools-Beta/sle-11-x86_64/"}],"predecessor_ids":[],"product_type":"base","cpe":"cpe:/a:suse:sle-clienttools-beta:11:sp3","free":false,"description":"SUSE Manager Client Tools Beta for SLE 11 SP3","shortname":"Manager-Tools-Beta","arch":"x86_64","eula_url":"","friendly_version":"11 SP3","release_stage":"beta","id":2070,"identifier":"sle-clienttools-beta","extensions":[],"version":"11.3","recommended":false,"release_type":null,"former_identifier":"sle-clienttools-beta","migration_extra":false,"friendly_name":"SUSE Manager Client Tools Beta for SLE 11 SP3 x86_64 (BETA)","offline_predecessor_ids":[],"name":"SUSE Manager Client Tools Beta for SLE"},{"friendly_version":"11 SP4","id":2071,"release_stage":"beta","identifier":"sle-clienttools-beta","extensions":[],"version":"11.4","recommended":false,"migration_extra":false,"friendly_name":"SUSE Manager Client Tools Beta for SLE 11 SP4 i586 (BETA)","former_identifier":"sle-clienttools-beta","release_type":null,"name":"SUSE Manager Client Tools Beta for SLE","offline_predecessor_ids":[],"product_class":"SLE-M-T-BETA","online_predecessor_ids":[],"repositories":[{"description":"SLES11-SP4-SUSE-Manager-Tools-Beta for sle-11-i586","name":"SLES11-SP4-SUSE-Manager-Tools-Beta","installer_updates":false,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP4-SUSE-Manager-Tools-Beta/sle-11-i586/","autorefresh":true,"distro_target":"sle-11-i586","id":4420,"enabled":true}],"predecessor_ids":[],"cpe":"cpe:/a:suse:sle-clienttools-beta:11:sp4","product_type":"base","description":"SUSE Manager Client Tools Beta for SLE 11 SP4","shortname":"Manager-Tools-Beta","free":false,"arch":"i586","eula_url":""},{"id":2072,"release_stage":"beta","identifier":"sle-clienttools-beta","extensions":[],"friendly_version":"11 SP4","former_identifier":"sle-clienttools-beta","release_type":null,"migration_extra":false,"friendly_name":"SUSE Manager Client Tools Beta for SLE 11 SP4 ppc64 (BETA)","offline_predecessor_ids":[],"name":"SUSE Manager Client Tools Beta for SLE","version":"11.4","recommended":false,"product_type":"base","cpe":"cpe:/a:suse:sle-clienttools-beta:11:sp4","online_predecessor_ids":[],"repositories":[{"id":4421,"enabled":true,"url":"https://updates.suse.com/repo/$RCE/SLES11-SP4-SUSE-Manager-Tools-Beta/sle-11-ppc64/","distro_target":"sle-11-ppc64","autorefresh":true,"installer_updates":false,"name":"SLES11-SP4-SUSE-Manager-Tools-Beta","description":"SLES11-SP4-SUSE-Manager-Tools-Beta for sle-11-ppc64"}],"product_class":"SLE-M-T-BETA","predecessor_ids":[],"arch":"ppc64","eula_url":"","free":false,"shortname":"Manager-Tools-Beta","description":"SUSE Manager Client Tools Beta for SLE 11 SP4"},{"friendly_name":"SUSE Manager Client Tools Beta for SLE 11 SP4 s390x (BETA)","migration_extra":false,"release_type":null,"former_identifier":"sle-clienttools-beta","name":"SUSE Manager Client Tools Beta for SLE","offline_predecessor_ids":[],"version":"11.4","recommended":false,"id":2073,"release_stage":"beta","identifier":"sle-clienttools-beta","extensions":[],"friendly_version":"11 SP4","arch":"s390x","eula_url":"","shortname":"Manager-Tools-Beta","description":"SUSE Manager Client Tools Beta for SLE 11 SP4","free":false,"cpe":"cpe:/a:suse:sle-clienttools-beta:11:sp4","product_type":"base","product_class":"SLE-M-T-BETA","online_predecessor_ids":[],"repositories":[{"name":"SLES11-SP4-SUSE-Manager-Tools-Beta","installer_updates":false,"description":"SLES11-SP4-SUSE-Manager-Tools-Beta for sle-11-s390x","enabled":true,"id":4422,"autorefresh":true,"distro_target":"sle-11-s390x","url":"https://updates.suse.com/repo/$RCE/SLES11-SP4-SUSE-Manager-Tools-Beta/sle-11-s390x/"}],"predecessor_ids":[]},{"product_class":"SLE-M-T-BETA","online_predecessor_ids":[],"repositories":[{"description":"SLES11-SP4-SUSE-Manager-Tools-Beta for sle-11-x86_64","name":"SLES11-SP4-SUSE-Manager-Tools-Beta","installer_updates":false,"autorefresh":true,"distro_target":"sle-11-x86_64","url":"https://updates.suse.com/repo/$RCE/SLES11-SP4-SUSE-Manager-Tools-Beta/sle-11-x86_64/","enabled":true,"id":4423}],"predecessor_ids":[],"product_type":"base","cpe":"cpe:/a:suse:sle-clienttools-beta:11:sp4","free":false,"description":"SUSE Manager Client Tools Beta for SLE 11 SP4","shortname":"Manager-Tools-Beta","arch":"x86_64","eula_url":"","friendly_version":"11 SP4","identifier":"sle-clienttools-beta","release_stage":"beta","id":2074,"extensions":[],"version":"11.4","recommended":false,"release_type":null,"former_identifier":"sle-clienttools-beta","friendly_name":"SUSE Manager Client Tools Beta for SLE 11 SP4 x86_64 (BETA)","migration_extra":false,"offline_predecessor_ids":[],"name":"SUSE Manager Client Tools Beta for SLE"},{"product_type":"module","cpe":"cpe:/o:suse:sle-module-cap-tools:15:sp2","predecessor_ids":[1728,1809],"online_predecessor_ids":[1728,1809],"product_class":"MODULE","repositories":[{"name":"SLE-Module-CAP-Tools15-SP2-Updates","installer_updates":false,"description":"SLE-Module-CAP-Tools15-SP2-Updates for sle-15-x86_64","id":4424,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-CAP-Tools/15-SP2/x86_64/update/","autorefresh":true,"distro_target":"sle-15-x86_64"},{"description":"SLE-Module-CAP-Tools15-SP2-Debuginfo-Updates for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-CAP-Tools15-SP2-Debuginfo-Updates","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-CAP-Tools/15-SP2/x86_64/update_debug/","distro_target":"sle-15-x86_64","autorefresh":true,"id":4425,"enabled":false},{"name":"SLE-Module-CAP-Tools15-SP2-Pool","installer_updates":false,"description":"SLE-Module-CAP-Tools15-SP2-Pool for sle-15-x86_64","id":4426,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-CAP-Tools/15-SP2/x86_64/product/","autorefresh":false,"distro_target":"sle-15-x86_64"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-CAP-Tools/15-SP2/x86_64/product_debug/","autorefresh":false,"distro_target":"sle-15-x86_64","id":4427,"enabled":false,"description":"SLE-Module-CAP-Tools15-SP2-Debuginfo-Pool for sle-15-x86_64","name":"SLE-Module-CAP-Tools15-SP2-Debuginfo-Pool","installer_updates":false},{"enabled":false,"id":4428,"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-CAP-Tools/15-SP2/x86_64/product_source/","installer_updates":false,"name":"SLE-Module-CAP-Tools15-SP2-Source-Pool","description":"SLE-Module-CAP-Tools15-SP2-Source-Pool for sle-15-x86_64"}],"eula_url":"","arch":"x86_64","free":true,"shortname":"SUSE-CAP-Tools-Module","description":"

The SUSE Cloud Application Platform Tools Module is a collection of tools that enables you to interact with the SUSE Cloud Application Platform product itself, providing the commandline client for instance.

Access to the SUSE Cloud Application Platform Tools Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself; please check the Release Notes for further details.

","extensions":[],"id":2075,"release_stage":"released","identifier":"sle-module-cap-tools","friendly_version":"15 SP2","offline_predecessor_ids":[1678],"name":"SUSE Cloud Application Platform Tools Module","release_type":null,"former_identifier":"sle-module-cap-tools","migration_extra":false,"friendly_name":"SUSE Cloud Application Platform Tools Module 15 SP2 x86_64","recommended":false,"version":"15.2"},{"eula_url":"","arch":"ppc64le","free":true,"description":"IBM POWER Advance Toolchain for SLE 15","shortname":"IBMPWAT15","product_type":"extension","cpe":"cpe:/o:suse:ibm-power-advance-toolchain:15","predecessor_ids":[],"product_class":"MODULE","online_predecessor_ids":[],"repositories":[{"name":"IBM-POWER-Adv-Toolchain","installer_updates":false,"description":"IBM-POWER-Adv-Toolchain","id":4430,"enabled":true,"url":"https://public.dhe.ibm.com/software/server/POWER/Linux/toolchain/at/suse/SLES_15/","autorefresh":true,"distro_target":null}],"offline_predecessor_ids":[1249],"name":"IBM POWER Advance Toolchain for SLE","release_type":null,"former_identifier":"ibm-power-advance-toolchain","migration_extra":false,"friendly_name":"IBM POWER Advance Toolchain for SLE 15 ppc64le","recommended":false,"version":"15","extensions":[],"id":2076,"release_stage":"released","identifier":"ibm-power-advance-toolchain","friendly_version":"15"},{"extensions":[],"release_stage":"released","identifier":"ibm-power-tools","id":2077,"friendly_version":"15","name":"IBM POWER Tools for SLE","offline_predecessor_ids":[1250],"friendly_name":"IBM POWER Tools for SLE 15 ppc64le","migration_extra":false,"release_type":null,"former_identifier":"ibm-power-tools","recommended":false,"version":"15","cpe":"cpe:/o:suse:ibm-power-tools:15","product_type":"extension","predecessor_ids":[],"online_predecessor_ids":[],"product_class":"MODULE","repositories":[{"id":4431,"enabled":true,"url":"https://public.dhe.ibm.com/software/server/POWER/Linux/yum/OSS/SLES/15/ppc64le/","distro_target":null,"autorefresh":true,"installer_updates":false,"name":"IBM-POWER-Tools","description":"IBM-POWER-Tools"}],"eula_url":"https://public.dhe.ibm.com/software/server/POWER/Linux/yum/OSS/SLES/15/ppc64le.license/","arch":"ppc64le","description":"IBM POWER Tools for SLE 15","shortname":"IBMPWUT15","free":true},{"offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Live Patching","release_type":null,"former_identifier":"sle-live-patching","friendly_name":"SUSE Linux Enterprise Live Patching 12 SP4 s390x","migration_extra":false,"recommended":false,"version":"12.4","extensions":[],"release_stage":"released","id":2079,"identifier":"sle-live-patching","friendly_version":"12 SP4","eula_url":"https://updates.suse.com/SUSE/Products/SLE-Live-Patching/12-SP4/s390x/product.license/","arch":"s390x","free":false,"description":"

SUSE Linux Enterprise Live Patching provides packages to update critical kernel modules live in SUSE Linux Enterprise. With SUSE Linux Enterprise Live Patching, you can perform critical kernel patching without shutting down your system, reducing the need for planned downtime and increasing service availability.

","shortname":"Live-Patching","product_type":"extension","cpe":"cpe:/o:suse:sle-live-patching:12:sp4","predecessor_ids":[],"repositories":[{"enabled":true,"id":4437,"autorefresh":true,"distro_target":"sle-12-s390x","url":"https://updates.suse.com/SUSE/Updates/SLE-Live-Patching/12-SP4/s390x/update/","name":"SLE-Live-Patching12-SP4-Updates","installer_updates":false,"description":"SLE-Live-Patching12-SP4-Updates for sle-12-s390x"},{"installer_updates":false,"name":"SLE-Live-Patching12-SP4-Debuginfo-Updates","description":"SLE-Live-Patching12-SP4-Debuginfo-Updates for sle-12-s390x","enabled":false,"id":4438,"distro_target":"sle-12-s390x","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Live-Patching/12-SP4/s390x/update_debug/"},{"name":"SLE-Live-Patching12-SP4-Pool","installer_updates":false,"description":"SLE-Live-Patching12-SP4-Pool for sle-12-s390x","id":4439,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Live-Patching/12-SP4/s390x/product/","autorefresh":false,"distro_target":"sle-12-s390x"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Live-Patching/12-SP4/s390x/product_debug/","distro_target":"sle-12-s390x","autorefresh":false,"id":4440,"enabled":false,"description":"SLE-Live-Patching12-SP4-Debuginfo-Pool for sle-12-s390x","installer_updates":false,"name":"SLE-Live-Patching12-SP4-Debuginfo-Pool"}],"online_predecessor_ids":[],"product_class":"SLE-LP-Z"},{"friendly_version":"12 SP5","extensions":[],"id":2080,"release_stage":"released","identifier":"sle-live-patching","recommended":false,"version":"12.5","name":"SUSE Linux Enterprise Live Patching","offline_predecessor_ids":[],"friendly_name":"SUSE Linux Enterprise Live Patching 12 SP5 s390x","migration_extra":false,"release_type":null,"former_identifier":"sle-live-patching","predecessor_ids":[2079],"repositories":[{"description":"SLE-Live-Patching12-SP5-Updates for sle-12-s390x","installer_updates":false,"name":"SLE-Live-Patching12-SP5-Updates","distro_target":"sle-12-s390x","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Live-Patching/12-SP5/s390x/update/","enabled":true,"id":4441},{"id":4442,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Live-Patching/12-SP5/s390x/update_debug/","distro_target":"sle-12-s390x","autorefresh":true,"installer_updates":false,"name":"SLE-Live-Patching12-SP5-Debuginfo-Updates","description":"SLE-Live-Patching12-SP5-Debuginfo-Updates for sle-12-s390x"},{"installer_updates":false,"name":"SLE-Live-Patching12-SP5-Pool","description":"SLE-Live-Patching12-SP5-Pool for sle-12-s390x","id":4443,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Live-Patching/12-SP5/s390x/product/","distro_target":"sle-12-s390x","autorefresh":false},{"autorefresh":false,"distro_target":"sle-12-s390x","url":"https://updates.suse.com/SUSE/Products/SLE-Live-Patching/12-SP5/s390x/product_debug/","enabled":false,"id":4444,"description":"SLE-Live-Patching12-SP5-Debuginfo-Pool for sle-12-s390x","name":"SLE-Live-Patching12-SP5-Debuginfo-Pool","installer_updates":false}],"online_predecessor_ids":[2079],"product_class":"SLE-LP-Z","cpe":"cpe:/o:suse:sle-live-patching:12:sp5","product_type":"extension","description":"

SUSE Linux Enterprise Live Patching provides packages to update critical kernel modules live in SUSE Linux Enterprise. With SUSE Linux Enterprise Live Patching, you can perform critical kernel patching without shutting down your system, reducing the need for planned downtime and increasing service availability.

","shortname":"Live-Patching","free":false,"eula_url":"https://updates.suse.com/SUSE/Products/SLE-Live-Patching/12-SP5/s390x/product.license/","arch":"s390x"},{"eula_url":"","arch":"s390x","free":false,"description":"

SUSE Linux Enterprise Live Patching provides packages to update critical components in SUSE Linux Enterprise. With SUSE Linux Enterprise Live Patching, you can perform critical patching without shutting down your system, reducing the need for planned downtime and increasing service availability.

","shortname":"Live-Patching","product_type":"extension","cpe":"cpe:/o:suse:sle-module-live-patching:15:sp2","predecessor_ids":[],"product_class":"SLE-LP-Z","online_predecessor_ids":[],"repositories":[{"name":"SLE-Module-Live-Patching15-SP2-Updates","installer_updates":false,"description":"SLE-Module-Live-Patching15-SP2-Updates for sle-15-s390x","id":4445,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Live-Patching/15-SP2/s390x/update/","autorefresh":true,"distro_target":"sle-15-s390x"},{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Live-Patching/15-SP2/s390x/update_debug/","autorefresh":true,"distro_target":"sle-15-s390x","id":4446,"enabled":false,"description":"SLE-Module-Live-Patching15-SP2-Debuginfo-Updates for sle-15-s390x","name":"SLE-Module-Live-Patching15-SP2-Debuginfo-Updates","installer_updates":false},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Live-Patching/15-SP2/s390x/product/","autorefresh":false,"distro_target":"sle-15-s390x","id":4447,"enabled":true,"description":"SLE-Module-Live-Patching15-SP2-Pool for sle-15-s390x","name":"SLE-Module-Live-Patching15-SP2-Pool","installer_updates":false},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Live-Patching/15-SP2/s390x/product_debug/","autorefresh":false,"distro_target":"sle-15-s390x","id":4448,"enabled":false,"description":"SLE-Module-Live-Patching15-SP2-Debuginfo-Pool for sle-15-s390x","name":"SLE-Module-Live-Patching15-SP2-Debuginfo-Pool","installer_updates":false},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Live-Patching/15-SP2/s390x/product_source/","distro_target":"sle-15-s390x","autorefresh":false,"id":4449,"enabled":false,"description":"SLE-Module-Live-Patching15-SP2-Source-Pool for sle-15-s390x","installer_updates":false,"name":"SLE-Module-Live-Patching15-SP2-Source-Pool"}],"offline_predecessor_ids":[2079,2080],"name":"SUSE Linux Enterprise Live Patching","former_identifier":"sle-module-live-patching","release_type":null,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Live Patching 15 SP2 s390x","recommended":false,"version":"15.2","extensions":[],"id":2081,"release_stage":"released","identifier":"sle-module-live-patching","friendly_version":"15 SP2"},{"cpe":"cpe:/o:suse:ubuntu-manager-client-beta:2004","product_type":"extension","predecessor_ids":[],"online_predecessor_ids":[],"repositories":[{"name":"Ubuntu-20.04-SUSE-Manager-Tools-Beta","installer_updates":false,"description":"Ubuntu-20.04-SUSE-Manager-Tools-Beta for amd64","id":4483,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/Ubuntu/20.04-CLIENT-TOOLS-BETA/x86_64/update/","autorefresh":true,"distro_target":"amd64"}],"product_class":"SLE-M-T-BETA","eula_url":"","arch":"amd64","shortname":"Manager-Tools-Beta","description":"SUSE Manager Client Tools Beta for Ubuntu 20.04","free":false,"extensions":[],"identifier":"ubuntu-manager-client-beta","release_stage":"beta","id":2112,"friendly_version":"2004","name":"SUSE Manager Client Tools Beta for Ubuntu","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"SUSE Manager Client Tools Beta for Ubuntu 2004 amd64 (BETA)","release_type":null,"former_identifier":"ubuntu-manager-client-beta","recommended":false,"version":"2004"},{"version":"2004","recommended":false,"friendly_name":"SUSE Manager Client Tools for Ubuntu 2004 amd64","migration_extra":false,"release_type":null,"former_identifier":"ubuntu-manager-client","name":"SUSE Manager Client Tools for Ubuntu","offline_predecessor_ids":[],"friendly_version":"2004","id":2113,"release_stage":"released","identifier":"ubuntu-manager-client","extensions":[],"shortname":"Manager-Tools","description":"SUSE Manager Client Tools for Ubuntu 20.04","free":false,"arch":"amd64","eula_url":"","repositories":[{"description":"Ubuntu-20.04-SUSE-Manager-Tools for amd64","installer_updates":false,"name":"Ubuntu-20.04-SUSE-Manager-Tools","url":"https://updates.suse.com/SUSE/Updates/Ubuntu/20.04-CLIENT-TOOLS/x86_64/update/","distro_target":"amd64","autorefresh":true,"id":4485,"enabled":true}],"online_predecessor_ids":[],"product_class":"SLE-M-T","predecessor_ids":[],"cpe":"cpe:/o:suse:ubuntu-manager-client:2004","product_type":"extension"},{"product_type":"extension","cpe":"cpe:/o:suse:sles-ltss:12:sp4","predecessor_ids":[],"online_predecessor_ids":[],"repositories":[{"description":"SLES12-SP4-LTSS-Updates for sle-12-aarch64","installer_updates":false,"name":"SLES12-SP4-LTSS-Updates","distro_target":"sle-12-aarch64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-SP4-LTSS/aarch64/update/","enabled":true,"id":4486},{"installer_updates":false,"name":"SLES12-SP4-LTSS-Debuginfo-Updates","description":"SLES12-SP4-LTSS-Debuginfo-Updates for sle-12-aarch64","enabled":false,"id":4487,"distro_target":"sle-12-aarch64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-SP4-LTSS/aarch64/update_debug/"}],"product_class":"SLES12-SP4-LTSS-ARM64","eula_url":"","arch":"aarch64","free":false,"description":"SUSE Linux Enterprise offers a comprehensive suite of products built on a single code base. The platform addresses business needs from the smallest thin-client devices to the world's most powerful high-performance computing and mainframe servers. SUSE Linux Enterprise offers common management tools and technology certifications across the platform, and each product is enterprise-class.","shortname":"SLES12-SP4 LTSS","extensions":[],"release_stage":"released","identifier":"SLES-LTSS","id":2114,"friendly_version":"12 SP4","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Server LTSS","former_identifier":"SLES-LTSS","release_type":null,"friendly_name":"SUSE Linux Enterprise Server LTSS 12 SP4 aarch64","migration_extra":false,"recommended":false,"version":"12.4"},{"shortname":"SLES12-SP4 LTSS","description":"SUSE Linux Enterprise offers a comprehensive suite of products built on a single code base. The platform addresses business needs from the smallest thin-client devices to the world's most powerful high-performance computing and mainframe servers. SUSE Linux Enterprise offers common management tools and technology certifications across the platform, and each product is enterprise-class.","free":false,"arch":"ppc64le","eula_url":"","online_predecessor_ids":[],"product_class":"SLES12-SP4-LTSS-PPC","repositories":[{"url":"https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-SP4-LTSS/ppc64le/update/","autorefresh":true,"distro_target":"sle-12-ppc64le","id":4488,"enabled":true,"description":"SLES12-SP4-LTSS-Updates for sle-12-ppc64le","name":"SLES12-SP4-LTSS-Updates","installer_updates":false},{"installer_updates":false,"name":"SLES12-SP4-LTSS-Debuginfo-Updates","description":"SLES12-SP4-LTSS-Debuginfo-Updates for sle-12-ppc64le","id":4489,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-SP4-LTSS/ppc64le/update_debug/","distro_target":"sle-12-ppc64le","autorefresh":true}],"predecessor_ids":[],"cpe":"cpe:/o:suse:sles-ltss:12:sp4","product_type":"extension","version":"12.4","recommended":false,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Server LTSS 12 SP4 ppc64le","former_identifier":"SLES-LTSS","release_type":null,"name":"SUSE Linux Enterprise Server LTSS","offline_predecessor_ids":[],"friendly_version":"12 SP4","release_stage":"released","id":2115,"identifier":"SLES-LTSS","extensions":[]},{"predecessor_ids":[],"repositories":[{"name":"SLES12-SP4-LTSS-Updates","installer_updates":false,"description":"SLES12-SP4-LTSS-Updates for sle-12-s390x","enabled":true,"id":4490,"autorefresh":true,"distro_target":"sle-12-s390x","url":"https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-SP4-LTSS/s390x/update/"},{"autorefresh":true,"distro_target":"sle-12-s390x","url":"https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-SP4-LTSS/s390x/update_debug/","enabled":false,"id":4491,"description":"SLES12-SP4-LTSS-Debuginfo-Updates for sle-12-s390x","name":"SLES12-SP4-LTSS-Debuginfo-Updates","installer_updates":false}],"online_predecessor_ids":[],"product_class":"SLES12-SP4-LTSS-Z","cpe":"cpe:/o:suse:sles-ltss:12:sp4","product_type":"extension","shortname":"SLES12-SP4 LTSS","description":"SUSE Linux Enterprise offers a comprehensive suite of products built on a single code base. The platform addresses business needs from the smallest thin-client devices to the world's most powerful high-performance computing and mainframe servers. SUSE Linux Enterprise offers common management tools and technology certifications across the platform, and each product is enterprise-class.","free":false,"eula_url":"","arch":"s390x","friendly_version":"12 SP4","extensions":[],"identifier":"SLES-LTSS","release_stage":"released","id":2116,"recommended":false,"version":"12.4","name":"SUSE Linux Enterprise Server LTSS","offline_predecessor_ids":[],"friendly_name":"SUSE Linux Enterprise Server LTSS 12 SP4 s390x","migration_extra":false,"release_type":null,"former_identifier":"SLES-LTSS"},{"name":"SUSE Linux Enterprise Server LTSS","offline_predecessor_ids":[],"friendly_name":"SUSE Linux Enterprise Server LTSS 12 SP4 x86_64","migration_extra":false,"former_identifier":"SLES-LTSS","release_type":null,"recommended":false,"version":"12.4","extensions":[],"release_stage":"released","identifier":"SLES-LTSS","id":2117,"friendly_version":"12 SP4","eula_url":"","arch":"x86_64","description":"SUSE Linux Enterprise offers a comprehensive suite of products built on a single code base. The platform addresses business needs from the smallest thin-client devices to the world's most powerful high-performance computing and mainframe servers. SUSE Linux Enterprise offers common management tools and technology certifications across the platform, and each product is enterprise-class.","shortname":"SLES12-SP4 LTSS","free":false,"cpe":"cpe:/o:suse:sles-ltss:12:sp4","product_type":"extension","predecessor_ids":[],"product_class":"SLES12-SP4-LTSS-X86","online_predecessor_ids":[],"repositories":[{"url":"https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-SP4-LTSS/x86_64/update/","autorefresh":true,"distro_target":"sle-12-x86_64","id":4492,"enabled":true,"description":"SLES12-SP4-LTSS-Updates for sle-12-x86_64","name":"SLES12-SP4-LTSS-Updates","installer_updates":false},{"name":"SLES12-SP4-LTSS-Debuginfo-Updates","installer_updates":false,"description":"SLES12-SP4-LTSS-Debuginfo-Updates for sle-12-x86_64","enabled":false,"id":4493,"autorefresh":true,"distro_target":"sle-12-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-SP4-LTSS/x86_64/update_debug/"}]},{"release_stage":"released","identifier":"ses","id":2120,"extensions":[],"friendly_version":"7","former_identifier":"ses","release_type":null,"friendly_name":"SUSE Enterprise Storage 7 aarch64","migration_extra":false,"offline_predecessor_ids":[],"name":"SUSE Enterprise Storage","version":"7","recommended":false,"product_type":"extension","cpe":"cpe:/o:suse:ses:7","online_predecessor_ids":[],"product_class":"SES-ARM64","repositories":[{"enabled":true,"id":4504,"autorefresh":true,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Updates/Storage/7/aarch64/update/","name":"SUSE-Enterprise-Storage-7-Updates","installer_updates":false,"description":"SUSE-Enterprise-Storage-7-Updates for sle-15-aarch64"},{"description":"SUSE-Enterprise-Storage-7-Debuginfo-Updates for sle-15-aarch64","name":"SUSE-Enterprise-Storage-7-Debuginfo-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Updates/Storage/7/aarch64/update_debug/","enabled":false,"id":4505},{"description":"SUSE-Enterprise-Storage-7-Pool for sle-15-aarch64","name":"SUSE-Enterprise-Storage-7-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Products/Storage/7/aarch64/product/","enabled":true,"id":4506},{"enabled":false,"id":4507,"autorefresh":false,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Products/Storage/7/aarch64/product_debug/","name":"SUSE-Enterprise-Storage-7-Debuginfo-Pool","installer_updates":false,"description":"SUSE-Enterprise-Storage-7-Debuginfo-Pool for sle-15-aarch64"},{"name":"SUSE-Enterprise-Storage-7-Source-Pool","installer_updates":false,"description":"SUSE-Enterprise-Storage-7-Source-Pool for sle-15-aarch64","enabled":false,"id":4508,"autorefresh":false,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Products/Storage/7/aarch64/product_source/"}],"predecessor_ids":[],"arch":"aarch64","eula_url":"https://updates.suse.com/SUSE/Products/Storage/7/aarch64/product.license/","free":false,"shortname":"SES7","description":"SUSE Enterprise Storage 7 for SUSE Linux Enterprise Server 15 SP2, powered by Ceph."},{"friendly_version":"7","extensions":[],"id":2121,"release_stage":"released","identifier":"ses","recommended":false,"version":"7","name":"SUSE Enterprise Storage","offline_predecessor_ids":[],"friendly_name":"SUSE Enterprise Storage 7 x86_64","migration_extra":false,"former_identifier":"ses","release_type":null,"predecessor_ids":[],"product_class":"SES","online_predecessor_ids":[],"repositories":[{"url":"https://updates.suse.com/SUSE/Updates/Storage/7/x86_64/update/","autorefresh":true,"distro_target":"sle-15-x86_64","id":4509,"enabled":true,"description":"SUSE-Enterprise-Storage-7-Updates for sle-15-x86_64","name":"SUSE-Enterprise-Storage-7-Updates","installer_updates":false},{"enabled":false,"id":4510,"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/Storage/7/x86_64/update_debug/","name":"SUSE-Enterprise-Storage-7-Debuginfo-Updates","installer_updates":false,"description":"SUSE-Enterprise-Storage-7-Debuginfo-Updates for sle-15-x86_64"},{"description":"SUSE-Enterprise-Storage-7-Pool for sle-15-x86_64","name":"SUSE-Enterprise-Storage-7-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/Storage/7/x86_64/product/","enabled":true,"id":4511},{"installer_updates":false,"name":"SUSE-Enterprise-Storage-7-Debuginfo-Pool","description":"SUSE-Enterprise-Storage-7-Debuginfo-Pool for sle-15-x86_64","enabled":false,"id":4512,"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/Storage/7/x86_64/product_debug/"},{"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/Storage/7/x86_64/product_source/","enabled":false,"id":4513,"description":"SUSE-Enterprise-Storage-7-Source-Pool for sle-15-x86_64","name":"SUSE-Enterprise-Storage-7-Source-Pool","installer_updates":false}],"cpe":"cpe:/o:suse:ses:7","product_type":"extension","description":"SUSE Enterprise Storage 7 for SUSE Linux Enterprise Server 15 SP2, powered by Ceph.","shortname":"SES7","free":false,"eula_url":"https://updates.suse.com/SUSE/Products/Storage/7/x86_64/product.license/","arch":"x86_64"},{"arch":"aarch64","eula_url":"","free":false,"shortname":"SLE_HPC-15-SP1-LTSS","description":"

SUSE Linux Enterprise High Performance Computing is a highly scalable, high performance open source operating system designed to utilize the power of parallel computing for modeling, simulation and advanced analytics workloads.

","product_type":"extension","cpe":"cpe:/o:suse:sle_hpc-ltss:15:sp1","online_predecessor_ids":[],"repositories":[{"id":4514,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-HPC/15-SP1-LTSS/aarch64/update/","distro_target":"sle-15-aarch64","autorefresh":true,"installer_updates":false,"name":"SLE-Product-HPC-15-SP1-LTSS-Updates","description":"SLE-Product-HPC-15-SP1-LTSS-Updates for sle-15-aarch64"},{"installer_updates":false,"name":"SLE-Product-HPC-15-SP1-LTSS-Debuginfo-Updates","description":"SLE-Product-HPC-15-SP1-LTSS-Debuginfo-Updates for sle-15-aarch64","enabled":false,"id":4515,"distro_target":"sle-15-aarch64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-HPC/15-SP1-LTSS/aarch64/update_debug/"},{"name":"SLE-Product-HPC-15-SP1-LTSS-Pool","installer_updates":false,"description":"SLE-Product-HPC-15-SP1-LTSS-Pool for sle-15-aarch64","id":4516,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-HPC/15-SP1-LTSS/aarch64/product/","autorefresh":false,"distro_target":"sle-15-aarch64"},{"distro_target":"sle-15-aarch64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-HPC/15-SP1-LTSS/aarch64/product_debug/","enabled":false,"id":4517,"description":"SLE-Product-HPC-15-SP1-LTSS-Debuginfo-Pool for sle-15-aarch64","installer_updates":false,"name":"SLE-Product-HPC-15-SP1-LTSS-Debuginfo-Pool"},{"autorefresh":false,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Products/SLE-Product-HPC/15-SP1-LTSS/aarch64/product_source/","enabled":false,"id":4518,"description":"SLE-Product-HPC-15-SP1-LTSS-Source-Pool for sle-15-aarch64","name":"SLE-Product-HPC-15-SP1-LTSS-Source-Pool","installer_updates":false}],"product_class":"HPC15-SP1-LTSS-ARM64","predecessor_ids":[],"release_type":null,"former_identifier":"SLE_HPC-LTSS","migration_extra":false,"friendly_name":"SUSE Linux Enterprise High Performance Computing LTSS 15 SP1 aarch64","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise High Performance Computing LTSS","version":"15.1","recommended":false,"identifier":"SLE_HPC-LTSS","release_stage":"released","id":2122,"extensions":[],"friendly_version":"15 SP1"},{"cpe":"cpe:/o:suse:sle_hpc-ltss:15:sp1","product_type":"extension","predecessor_ids":[],"repositories":[{"distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-HPC/15-SP1-LTSS/x86_64/update/","enabled":true,"id":4519,"description":"SLE-Product-HPC-15-SP1-LTSS-Updates for sle-15-x86_64","installer_updates":false,"name":"SLE-Product-HPC-15-SP1-LTSS-Updates"},{"installer_updates":false,"name":"SLE-Product-HPC-15-SP1-LTSS-Debuginfo-Updates","description":"SLE-Product-HPC-15-SP1-LTSS-Debuginfo-Updates for sle-15-x86_64","enabled":false,"id":4520,"distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-HPC/15-SP1-LTSS/x86_64/update_debug/"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Product-HPC/15-SP1-LTSS/x86_64/product/","distro_target":"sle-15-x86_64","autorefresh":false,"id":4521,"enabled":true,"description":"SLE-Product-HPC-15-SP1-LTSS-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Product-HPC-15-SP1-LTSS-Pool"},{"id":4522,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-HPC/15-SP1-LTSS/x86_64/product_debug/","distro_target":"sle-15-x86_64","autorefresh":false,"installer_updates":false,"name":"SLE-Product-HPC-15-SP1-LTSS-Debuginfo-Pool","description":"SLE-Product-HPC-15-SP1-LTSS-Debuginfo-Pool for sle-15-x86_64"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Product-HPC/15-SP1-LTSS/x86_64/product_source/","autorefresh":false,"distro_target":"sle-15-x86_64","id":4523,"enabled":false,"description":"SLE-Product-HPC-15-SP1-LTSS-Source-Pool for sle-15-x86_64","name":"SLE-Product-HPC-15-SP1-LTSS-Source-Pool","installer_updates":false}],"online_predecessor_ids":[],"product_class":"HPC15-SP1-LTSS-X86","eula_url":"","arch":"x86_64","shortname":"SLE_HPC-15-SP1-LTSS","description":"

SUSE Linux Enterprise High Performance Computing is a highly scalable, high performance open source operating system designed to utilize the power of parallel computing for modeling, simulation and advanced analytics workloads.

","free":false,"extensions":[],"id":2123,"release_stage":"released","identifier":"SLE_HPC-LTSS","friendly_version":"15 SP1","name":"SUSE Linux Enterprise High Performance Computing LTSS","offline_predecessor_ids":[],"friendly_name":"SUSE Linux Enterprise High Performance Computing LTSS 15 SP1 x86_64","migration_extra":false,"release_type":null,"former_identifier":"SLE_HPC-LTSS","recommended":false,"version":"15.1"},{"cpe":"cpe:/o:suse:sle_hpc-ltss:15:sp2","product_type":"extension","predecessor_ids":[],"online_predecessor_ids":[],"product_class":"HPC15-SP2-LTSS-ARM64","repositories":[{"name":"SLE-Product-HPC-15-SP2-LTSS-Updates","installer_updates":false,"description":"SLE-Product-HPC-15-SP2-LTSS-Updates for sle-15-aarch64","enabled":true,"id":4524,"autorefresh":true,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Updates/SLE-Product-HPC/15-SP2-LTSS/aarch64/update/"},{"enabled":false,"id":4525,"distro_target":"sle-15-aarch64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-HPC/15-SP2-LTSS/aarch64/update_debug/","installer_updates":false,"name":"SLE-Product-HPC-15-SP2-LTSS-Debuginfo-Updates","description":"SLE-Product-HPC-15-SP2-LTSS-Debuginfo-Updates for sle-15-aarch64"},{"installer_updates":false,"name":"SLE-Product-HPC-15-SP2-LTSS-Pool","description":"SLE-Product-HPC-15-SP2-LTSS-Pool for sle-15-aarch64","enabled":true,"id":4526,"distro_target":"sle-15-aarch64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-HPC/15-SP2-LTSS/aarch64/product/"},{"description":"SLE-Product-HPC-15-SP2-LTSS-Debuginfo-Pool for sle-15-aarch64","name":"SLE-Product-HPC-15-SP2-LTSS-Debuginfo-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-HPC/15-SP2-LTSS/aarch64/product_debug/","autorefresh":false,"distro_target":"sle-15-aarch64","id":4527,"enabled":false},{"id":4528,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-HPC/15-SP2-LTSS/aarch64/product_source/","autorefresh":false,"distro_target":"sle-15-aarch64","name":"SLE-Product-HPC-15-SP2-LTSS-Source-Pool","installer_updates":false,"description":"SLE-Product-HPC-15-SP2-LTSS-Source-Pool for sle-15-aarch64"}],"eula_url":"","arch":"aarch64","shortname":"SLE_HPC-15-SP2-LTSS","description":"

SUSE Linux Enterprise High Performance Computing is a highly scalable, high performance open source operating system designed to utilize the power of parallel computing for modeling, simulation and advanced analytics workloads.

","free":false,"extensions":[],"id":2124,"release_stage":"released","identifier":"SLE_HPC-LTSS","friendly_version":"15 SP2","name":"SUSE Linux Enterprise High Performance Computing LTSS","offline_predecessor_ids":[],"friendly_name":"SUSE Linux Enterprise High Performance Computing LTSS 15 SP2 aarch64","migration_extra":false,"release_type":null,"former_identifier":"SLE_HPC-LTSS","recommended":false,"version":"15.2"},{"name":"SUSE Linux Enterprise High Performance Computing LTSS","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"SUSE Linux Enterprise High Performance Computing LTSS 15 SP2 x86_64","release_type":null,"former_identifier":"SLE_HPC-LTSS","recommended":false,"version":"15.2","extensions":[],"release_stage":"released","identifier":"SLE_HPC-LTSS","id":2125,"friendly_version":"15 SP2","eula_url":"","arch":"x86_64","shortname":"SLE_HPC-15-SP2-LTSS","description":"

SUSE Linux Enterprise High Performance Computing is a highly scalable, high performance open source operating system designed to utilize the power of parallel computing for modeling, simulation and advanced analytics workloads.

","free":false,"cpe":"cpe:/o:suse:sle_hpc-ltss:15:sp2","product_type":"extension","predecessor_ids":[],"online_predecessor_ids":[],"product_class":"HPC15-SP2-LTSS-X86","repositories":[{"description":"SLE-Product-HPC-15-SP2-LTSS-Updates for sle-15-x86_64","installer_updates":false,"name":"SLE-Product-HPC-15-SP2-LTSS-Updates","url":"https://updates.suse.com/SUSE/Updates/SLE-Product-HPC/15-SP2-LTSS/x86_64/update/","distro_target":"sle-15-x86_64","autorefresh":true,"id":4529,"enabled":true},{"id":4530,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-HPC/15-SP2-LTSS/x86_64/update_debug/","distro_target":"sle-15-x86_64","autorefresh":true,"installer_updates":false,"name":"SLE-Product-HPC-15-SP2-LTSS-Debuginfo-Updates","description":"SLE-Product-HPC-15-SP2-LTSS-Debuginfo-Updates for sle-15-x86_64"},{"id":4531,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-HPC/15-SP2-LTSS/x86_64/product/","distro_target":"sle-15-x86_64","autorefresh":false,"installer_updates":false,"name":"SLE-Product-HPC-15-SP2-LTSS-Pool","description":"SLE-Product-HPC-15-SP2-LTSS-Pool for sle-15-x86_64"},{"installer_updates":false,"name":"SLE-Product-HPC-15-SP2-LTSS-Debuginfo-Pool","description":"SLE-Product-HPC-15-SP2-LTSS-Debuginfo-Pool for sle-15-x86_64","id":4532,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-HPC/15-SP2-LTSS/x86_64/product_debug/","distro_target":"sle-15-x86_64","autorefresh":false},{"name":"SLE-Product-HPC-15-SP2-LTSS-Source-Pool","installer_updates":false,"description":"SLE-Product-HPC-15-SP2-LTSS-Source-Pool for sle-15-x86_64","id":4533,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-HPC/15-SP2-LTSS/x86_64/product_source/","autorefresh":false,"distro_target":"sle-15-x86_64"}]},{"product_type":"extension","cpe":"cpe:/o:suse:sle_hpc-espos:15:sp1","product_class":"SLE-ESPOS-ARM64","online_predecessor_ids":[],"repositories":[{"id":4534,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-HPC/15-SP1-ESPOS/aarch64/update/","distro_target":"sle-15-aarch64","autorefresh":true,"installer_updates":false,"name":"SLE-Product-HPC-15-SP1-ESPOS-Updates","description":"SLE-Product-HPC-15-SP1-ESPOS-Updates for sle-15-aarch64"},{"distro_target":"sle-15-aarch64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-HPC/15-SP1-ESPOS/aarch64/update_debug/","enabled":false,"id":4535,"description":"SLE-Product-HPC-15-SP1-ESPOS-Debuginfo-Updates for sle-15-aarch64","installer_updates":false,"name":"SLE-Product-HPC-15-SP1-ESPOS-Debuginfo-Updates"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Product-HPC/15-SP1-ESPOS/aarch64/product/","distro_target":"sle-15-aarch64","autorefresh":false,"id":4536,"enabled":true,"description":"SLE-Product-HPC-15-SP1-ESPOS-Pool for sle-15-aarch64","installer_updates":false,"name":"SLE-Product-HPC-15-SP1-ESPOS-Pool"},{"description":"SLE-Product-HPC-15-SP1-ESPOS-Debuginfo-Pool for sle-15-aarch64","installer_updates":false,"name":"SLE-Product-HPC-15-SP1-ESPOS-Debuginfo-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Product-HPC/15-SP1-ESPOS/aarch64/product_debug/","distro_target":"sle-15-aarch64","autorefresh":false,"id":4537,"enabled":false},{"description":"SLE-Product-HPC-15-SP1-ESPOS-Source-Pool for sle-15-aarch64","installer_updates":false,"name":"SLE-Product-HPC-15-SP1-ESPOS-Source-Pool","distro_target":"sle-15-aarch64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-HPC/15-SP1-ESPOS/aarch64/product_source/","enabled":false,"id":4538}],"predecessor_ids":[],"arch":"aarch64","eula_url":"","free":false,"description":"

SUSE Linux Enterprise High Performance Computing is a highly scalable, high performance open source operating system designed to utilize the power of parallel computing for modeling, simulation and advanced analytics workloads.

","shortname":"SLE_HPC-15-SP1-ESPOS","release_stage":"released","id":2126,"identifier":"SLE_HPC-ESPOS","extensions":[],"friendly_version":"15 SP1","release_type":null,"former_identifier":"SLE_HPC-ESPOS","migration_extra":false,"friendly_name":"SUSE Linux Enterprise High Performance Computing ESPOS 15 SP1 aarch64","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise High Performance Computing ESPOS","version":"15.1","recommended":false},{"arch":"x86_64","eula_url":"","description":"

SUSE Linux Enterprise High Performance Computing is a highly scalable, high performance open source operating system designed to utilize the power of parallel computing for modeling, simulation and advanced analytics workloads.

","shortname":"SLE_HPC-15-SP1-ESPOS","free":false,"cpe":"cpe:/o:suse:sle_hpc-espos:15:sp1","product_type":"extension","repositories":[{"enabled":true,"id":4539,"distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-HPC/15-SP1-ESPOS/x86_64/update/","installer_updates":false,"name":"SLE-Product-HPC-15-SP1-ESPOS-Updates","description":"SLE-Product-HPC-15-SP1-ESPOS-Updates for sle-15-x86_64"},{"installer_updates":false,"name":"SLE-Product-HPC-15-SP1-ESPOS-Debuginfo-Updates","description":"SLE-Product-HPC-15-SP1-ESPOS-Debuginfo-Updates for sle-15-x86_64","id":4540,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-HPC/15-SP1-ESPOS/x86_64/update_debug/","distro_target":"sle-15-x86_64","autorefresh":true},{"description":"SLE-Product-HPC-15-SP1-ESPOS-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Product-HPC-15-SP1-ESPOS-Pool","distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-HPC/15-SP1-ESPOS/x86_64/product/","enabled":true,"id":4541},{"url":"https://updates.suse.com/SUSE/Products/SLE-Product-HPC/15-SP1-ESPOS/x86_64/product_debug/","autorefresh":false,"distro_target":"sle-15-x86_64","id":4542,"enabled":false,"description":"SLE-Product-HPC-15-SP1-ESPOS-Debuginfo-Pool for sle-15-x86_64","name":"SLE-Product-HPC-15-SP1-ESPOS-Debuginfo-Pool","installer_updates":false},{"enabled":false,"id":4543,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Product-HPC/15-SP1-ESPOS/x86_64/product_source/","name":"SLE-Product-HPC-15-SP1-ESPOS-Source-Pool","installer_updates":false,"description":"SLE-Product-HPC-15-SP1-ESPOS-Source-Pool for sle-15-x86_64"}],"online_predecessor_ids":[],"product_class":"SLE-ESPOS-X86","predecessor_ids":[],"migration_extra":false,"friendly_name":"SUSE Linux Enterprise High Performance Computing ESPOS 15 SP1 x86_64","release_type":null,"former_identifier":"SLE_HPC-ESPOS","name":"SUSE Linux Enterprise High Performance Computing ESPOS","offline_predecessor_ids":[],"version":"15.1","recommended":false,"id":2127,"release_stage":"released","identifier":"SLE_HPC-ESPOS","extensions":[],"friendly_version":"15 SP1"},{"offline_predecessor_ids":[],"name":"SUSE Linux Enterprise High Performance Computing ESPOS","release_type":null,"former_identifier":"SLE_HPC-ESPOS","migration_extra":false,"friendly_name":"SUSE Linux Enterprise High Performance Computing ESPOS 15 SP2 aarch64","recommended":false,"version":"15.2","extensions":[],"release_stage":"released","identifier":"SLE_HPC-ESPOS","id":2128,"friendly_version":"15 SP2","eula_url":"","arch":"aarch64","free":false,"shortname":"SLE_HPC-15-SP2-ESPOS","description":"

SUSE Linux Enterprise High Performance Computing is a highly scalable, high performance open source operating system designed to utilize the power of parallel computing for modeling, simulation and advanced analytics workloads.

","product_type":"extension","cpe":"cpe:/o:suse:sle_hpc-espos:15:sp2","predecessor_ids":[],"online_predecessor_ids":[],"repositories":[{"distro_target":"sle-15-aarch64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-HPC/15-SP2-ESPOS/aarch64/update/","enabled":true,"id":4544,"description":"SLE-Product-HPC-15-SP2-ESPOS-Updates for sle-15-aarch64","installer_updates":false,"name":"SLE-Product-HPC-15-SP2-ESPOS-Updates"},{"id":4545,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-HPC/15-SP2-ESPOS/aarch64/update_debug/","distro_target":"sle-15-aarch64","autorefresh":true,"installer_updates":false,"name":"SLE-Product-HPC-15-SP2-ESPOS-Debuginfo-Updates","description":"SLE-Product-HPC-15-SP2-ESPOS-Debuginfo-Updates for sle-15-aarch64"},{"installer_updates":false,"name":"SLE-Product-HPC-15-SP2-ESPOS-Pool","description":"SLE-Product-HPC-15-SP2-ESPOS-Pool for sle-15-aarch64","id":4546,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-HPC/15-SP2-ESPOS/aarch64/product/","distro_target":"sle-15-aarch64","autorefresh":false},{"url":"https://updates.suse.com/SUSE/Products/SLE-Product-HPC/15-SP2-ESPOS/aarch64/product_debug/","distro_target":"sle-15-aarch64","autorefresh":false,"id":4547,"enabled":false,"description":"SLE-Product-HPC-15-SP2-ESPOS-Debuginfo-Pool for sle-15-aarch64","installer_updates":false,"name":"SLE-Product-HPC-15-SP2-ESPOS-Debuginfo-Pool"},{"description":"SLE-Product-HPC-15-SP2-ESPOS-Source-Pool for sle-15-aarch64","name":"SLE-Product-HPC-15-SP2-ESPOS-Source-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Products/SLE-Product-HPC/15-SP2-ESPOS/aarch64/product_source/","enabled":false,"id":4548}],"product_class":"SLE-ESPOS-ARM64"},{"arch":"x86_64","eula_url":"","free":false,"shortname":"SLE_HPC-15-SP2-ESPOS","description":"

SUSE Linux Enterprise High Performance Computing is a highly scalable, high performance open source operating system designed to utilize the power of parallel computing for modeling, simulation and advanced analytics workloads.

","product_type":"extension","cpe":"cpe:/o:suse:sle_hpc-espos:15:sp2","repositories":[{"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Product-HPC/15-SP2-ESPOS/x86_64/update/","enabled":true,"id":4549,"description":"SLE-Product-HPC-15-SP2-ESPOS-Updates for sle-15-x86_64","name":"SLE-Product-HPC-15-SP2-ESPOS-Updates","installer_updates":false},{"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-HPC/15-SP2-ESPOS/x86_64/update_debug/","autorefresh":true,"distro_target":"sle-15-x86_64","id":4550,"enabled":false,"description":"SLE-Product-HPC-15-SP2-ESPOS-Debuginfo-Updates for sle-15-x86_64","name":"SLE-Product-HPC-15-SP2-ESPOS-Debuginfo-Updates","installer_updates":false},{"installer_updates":false,"name":"SLE-Product-HPC-15-SP2-ESPOS-Pool","description":"SLE-Product-HPC-15-SP2-ESPOS-Pool for sle-15-x86_64","enabled":true,"id":4551,"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-HPC/15-SP2-ESPOS/x86_64/product/"},{"installer_updates":false,"name":"SLE-Product-HPC-15-SP2-ESPOS-Debuginfo-Pool","description":"SLE-Product-HPC-15-SP2-ESPOS-Debuginfo-Pool for sle-15-x86_64","enabled":false,"id":4552,"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-HPC/15-SP2-ESPOS/x86_64/product_debug/"},{"description":"SLE-Product-HPC-15-SP2-ESPOS-Source-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Product-HPC-15-SP2-ESPOS-Source-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Product-HPC/15-SP2-ESPOS/x86_64/product_source/","distro_target":"sle-15-x86_64","autorefresh":false,"id":4553,"enabled":false}],"online_predecessor_ids":[],"product_class":"SLE-ESPOS-X86","predecessor_ids":[],"release_type":null,"former_identifier":"SLE_HPC-ESPOS","migration_extra":false,"friendly_name":"SUSE Linux Enterprise High Performance Computing ESPOS 15 SP2 x86_64","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise High Performance Computing ESPOS","version":"15.2","recommended":false,"identifier":"SLE_HPC-ESPOS","release_stage":"released","id":2129,"extensions":[],"friendly_version":"15 SP2"},{"migration_extra":false,"friendly_name":"NVIDIA Compute Module 15 aarch64","release_type":null,"former_identifier":"sle-module-NVIDIA-compute","name":"NVIDIA Compute Module","offline_predecessor_ids":[],"version":"15","recommended":false,"release_stage":"released","identifier":"sle-module-NVIDIA-compute","id":2130,"extensions":[],"friendly_version":"15","arch":"aarch64","eula_url":"https://updates.suse.com/SUSE/Products/SLE-Module-NVIDIA-Compute/15/aarch64/product.license/","description":"NVIDIA Compute Drivers - NVIDIA CUDA This Module contains software under the terms and conditions of a 3rd party EULA (End User License Agreement). The EULA can be found at https://docs.nvidia.com/cuda/eula/index.html. By using this software you agree to fully comply with the terms and conditions of the EULA. If you do not agree to the terms and conditions of the EULA, do not use the software.","shortname":"NVIDIA-Compute-Module","free":true,"cpe":"cpe:/o:suse:sle-module-nvidia-compute:15","product_type":"module","repositories":[{"enabled":true,"id":4560,"distro_target":"sle-15-aarch64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-NVIDIA-Compute/15/aarch64/update/","installer_updates":false,"name":"SLE-Module-NVIDIA-Compute-15-Updates","description":"SLE-Module-NVIDIA-Compute-15-Updates for sle-15-aarch64"},{"description":"SLE-Module-NVIDIA-Compute-15-Pool for sle-15-aarch64","name":"SLE-Module-NVIDIA-Compute-15-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-NVIDIA-Compute/15/aarch64/product/","enabled":true,"id":4561},{"description":"NVIDIA-Compute-SLE-15","installer_updates":false,"name":"NVIDIA-Compute-SLE-15","url":"https://developer.download.nvidia.com/compute/cuda/repos/sles15/sbsa/","distro_target":null,"autorefresh":true,"id":4562,"enabled":true}],"online_predecessor_ids":[],"product_class":"MODULE","predecessor_ids":[]},{"release_stage":"released","id":2131,"identifier":"sle-module-NVIDIA-compute","extensions":[],"friendly_version":"15","release_type":null,"former_identifier":"sle-module-NVIDIA-compute","migration_extra":false,"friendly_name":"NVIDIA Compute Module 15 x86_64","offline_predecessor_ids":[],"name":"NVIDIA Compute Module","version":"15","recommended":false,"product_type":"module","cpe":"cpe:/o:suse:sle-module-nvidia-compute:15","online_predecessor_ids":[],"product_class":"MODULE","repositories":[{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-NVIDIA-Compute/15/x86_64/update/","autorefresh":true,"distro_target":"sle-15-x86_64","id":4554,"enabled":true,"description":"SLE-Module-NVIDIA-Compute-15-Updates for sle-15-x86_64","name":"SLE-Module-NVIDIA-Compute-15-Updates","installer_updates":false},{"name":"SLE-Module-NVIDIA-Compute-15-Pool","installer_updates":false,"description":"SLE-Module-NVIDIA-Compute-15-Pool for sle-15-x86_64","id":4556,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-NVIDIA-Compute/15/x86_64/product/","autorefresh":false,"distro_target":"sle-15-x86_64"},{"installer_updates":false,"name":"NVIDIA-Compute-SLE-15","description":"NVIDIA-Compute-SLE-15","id":4563,"enabled":true,"url":"https://developer.download.nvidia.com/compute/cuda/repos/sles15/x86_64/","distro_target":null,"autorefresh":true}],"predecessor_ids":[],"arch":"x86_64","eula_url":"https://updates.suse.com/SUSE/Products/SLE-Module-NVIDIA-Compute/15/x86_64/product.license/","free":true,"description":"NVIDIA Compute Drivers - NVIDIA CUDA This Module contains software under the terms and conditions of a 3rd party EULA (End User License Agreement). The EULA can be found at https://docs.nvidia.com/cuda/eula/index.html. By using this software you agree to fully comply with the terms and conditions of the EULA. If you do not agree to the terms and conditions of the EULA, do not use the software.","shortname":"NVIDIA-Compute-Module"},{"description":"

SUSE Linux Enterprise High Performance Computing is a highly scalable, high performance open source operating system designed to utilize the power of parallel computing for modeling, simulation and advanced analytics workloads.

","shortname":"SLE-15-SP3-HPC","free":false,"arch":"aarch64","eula_url":"","repositories":[{"name":"SLE-Product-HPC-15-SP3-Updates","installer_updates":false,"description":"SLE-Product-HPC-15-SP3-Updates for sle-15-aarch64","enabled":true,"id":4564,"autorefresh":true,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Updates/SLE-Product-HPC/15-SP3/aarch64/update/"},{"installer_updates":false,"name":"SLE-Product-HPC15-SP3-Debuginfo-Updates","description":"SLE-Product-HPC15-SP3-Debuginfo-Updates for sle-15-aarch64","id":4565,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-HPC/15-SP3/aarch64/update_debug/","distro_target":"sle-15-aarch64","autorefresh":true},{"url":"https://updates.suse.com/SUSE/Products/SLE-Product-HPC/15-SP3/aarch64/product/","distro_target":"sle-15-aarch64","autorefresh":false,"id":4566,"enabled":true,"description":"SLE-Product-HPC-15-SP3-Pool for sle-15-aarch64","installer_updates":false,"name":"SLE-Product-HPC-15-SP3-Pool"},{"name":"SLE-Product-HPC15-SP3-Debuginfo-Pool","installer_updates":false,"description":"SLE-Product-HPC15-SP3-Debuginfo-Pool for sle-15-aarch64","enabled":false,"id":4567,"autorefresh":false,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Products/SLE-Product-HPC/15-SP3/aarch64/product_debug/"},{"installer_updates":false,"name":"SLE-Product-HPC15-SP3-Source-Pool","description":"SLE-Product-HPC15-SP3-Source-Pool for sle-15-aarch64","id":4568,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-HPC/15-SP3/aarch64/product_source/","distro_target":"sle-15-aarch64","autorefresh":false}],"online_predecessor_ids":[1731,1767,1933],"product_class":"HPC-ARM64","predecessor_ids":[1731,1767,1933],"cpe":"cpe:/o:suse:sle_hpc:15:sp3","product_type":"base","version":"15.3","recommended":false,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise High Performance Computing 15 SP3 aarch64","former_identifier":"SLE_HPC","release_type":null,"name":"SUSE Linux Enterprise High Performance Computing","offline_predecessor_ids":[1628,1758,1872,1875],"friendly_version":"15 SP3","identifier":"SLE_HPC","release_stage":"released","id":2132,"extensions":[{"version":"15.3","recommended":true,"former_identifier":"sle-module-basesystem","release_type":null,"friendly_name":"Basesystem Module 15 SP3 aarch64","migration_extra":false,"offline_predecessor_ids":[1522],"name":"Basesystem Module","friendly_version":"15 SP3","release_stage":"released","identifier":"sle-module-basesystem","id":2142,"extensions":[{"product_type":"module","cpe":"cpe:/o:suse:sle-module-desktop-applications:15:sp3","product_class":"MODULE","online_predecessor_ids":[1595,1773,1964],"repositories":[{"name":"SLE-Module-Desktop-Applications15-SP3-Updates","installer_updates":false,"description":"SLE-Module-Desktop-Applications15-SP3-Updates for sle-15-aarch64","id":4639,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15-SP3/aarch64/update/","autorefresh":true,"distro_target":"sle-15-aarch64"},{"id":4640,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15-SP3/aarch64/update_debug/","autorefresh":true,"distro_target":"sle-15-aarch64","name":"SLE-Module-Desktop-Applications15-SP3-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-Desktop-Applications15-SP3-Debuginfo-Updates for sle-15-aarch64"},{"enabled":true,"id":4641,"autorefresh":false,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP3/aarch64/product/","name":"SLE-Module-Desktop-Applications15-SP3-Pool","installer_updates":false,"description":"SLE-Module-Desktop-Applications15-SP3-Pool for sle-15-aarch64"},{"description":"SLE-Module-Desktop-Applications15-SP3-Debuginfo-Pool for sle-15-aarch64","name":"SLE-Module-Desktop-Applications15-SP3-Debuginfo-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP3/aarch64/product_debug/","autorefresh":false,"distro_target":"sle-15-aarch64","id":4642,"enabled":false},{"autorefresh":false,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP3/aarch64/product_source/","enabled":false,"id":4643,"description":"SLE-Module-Desktop-Applications15-SP3-Source-Pool for sle-15-aarch64","name":"SLE-Module-Desktop-Applications15-SP3-Source-Pool","installer_updates":false}],"predecessor_ids":[1595,1773,1964],"arch":"aarch64","eula_url":"","free":true,"description":"

The SUSE Linux Enterprise Desktop Applications Module delivers a basic set of Desktop functionality.

Access to the Desktop Applications Module is included in your SUSE Linux Enterprise product subscription.

","shortname":"Desktop-Applications-Module","id":2146,"release_stage":"released","identifier":"sle-module-desktop-applications","extensions":[{"product_type":"module","cpe":"cpe:/o:suse:sle-module-development-tools:15:sp3","predecessor_ids":[1598,1791,1968],"online_predecessor_ids":[1598,1791,1968],"product_class":"MODULE","repositories":[{"enabled":true,"id":4699,"autorefresh":true,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15-SP3/aarch64/update/","name":"SLE-Module-DevTools15-SP3-Updates","installer_updates":false,"description":"SLE-Module-DevTools15-SP3-Updates for sle-15-aarch64"},{"installer_updates":false,"name":"SLE-Module-DevTools15-SP3-Debuginfo-Updates","description":"SLE-Module-DevTools15-SP3-Debuginfo-Updates for sle-15-aarch64","id":4700,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15-SP3/aarch64/update_debug/","distro_target":"sle-15-aarch64","autorefresh":true},{"distro_target":"sle-15-aarch64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP3/aarch64/product/","enabled":true,"id":4701,"description":"SLE-Module-DevTools15-SP3-Pool for sle-15-aarch64","installer_updates":false,"name":"SLE-Module-DevTools15-SP3-Pool"},{"description":"SLE-Module-DevTools15-SP3-Debuginfo-Pool for sle-15-aarch64","installer_updates":false,"name":"SLE-Module-DevTools15-SP3-Debuginfo-Pool","distro_target":"sle-15-aarch64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP3/aarch64/product_debug/","enabled":false,"id":4702},{"name":"SLE-Module-DevTools15-SP3-Source-Pool","installer_updates":false,"description":"SLE-Module-DevTools15-SP3-Source-Pool for sle-15-aarch64","id":4703,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP3/aarch64/product_source/","autorefresh":false,"distro_target":"sle-15-aarch64"}],"eula_url":"","arch":"aarch64","free":true,"shortname":"Development-Tools-Module","description":"

The Development Tools Module helps you developing applications for SUSE Linux Enterprise 15.

Access to the Development Tools Module is included in your SUSE Linux Enterprise product subscription. The module has a different lifecycle than SUSE Linux Enterprise itself.

","extensions":[{"cpe":"cpe:/o:suse:sle-module-nvidia-compute:15","product_type":"module","online_predecessor_ids":[],"repositories":[{"description":"SLE-Module-NVIDIA-Compute-15-Updates for sle-15-aarch64","installer_updates":false,"name":"SLE-Module-NVIDIA-Compute-15-Updates","distro_target":"sle-15-aarch64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-NVIDIA-Compute/15/aarch64/update/","enabled":true,"id":4560},{"installer_updates":false,"name":"SLE-Module-NVIDIA-Compute-15-Pool","description":"SLE-Module-NVIDIA-Compute-15-Pool for sle-15-aarch64","enabled":true,"id":4561,"distro_target":"sle-15-aarch64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-NVIDIA-Compute/15/aarch64/product/"},{"name":"NVIDIA-Compute-SLE-15","installer_updates":false,"description":"NVIDIA-Compute-SLE-15","enabled":true,"id":4562,"autorefresh":true,"distro_target":null,"url":"https://developer.download.nvidia.com/compute/cuda/repos/sles15/sbsa/"}],"product_class":"MODULE","predecessor_ids":[],"arch":"aarch64","eula_url":"https://updates.suse.com/SUSE/Products/SLE-Module-NVIDIA-Compute/15/aarch64/product.license/","shortname":"NVIDIA-Compute-Module","description":"NVIDIA Compute Drivers - NVIDIA CUDA This Module contains software under the terms and conditions of a 3rd party EULA (End User License Agreement). The EULA can be found at https://docs.nvidia.com/cuda/eula/index.html. By using this software you agree to fully comply with the terms and conditions of the EULA. If you do not agree to the terms and conditions of the EULA, do not use the software.","free":true,"release_stage":"released","id":2130,"identifier":"sle-module-NVIDIA-compute","extensions":[],"friendly_version":"15","friendly_name":"NVIDIA Compute Module 15 aarch64","migration_extra":false,"former_identifier":"sle-module-NVIDIA-compute","release_type":null,"name":"NVIDIA Compute Module","offline_predecessor_ids":[],"version":"15","recommended":false}],"release_stage":"released","id":2158,"identifier":"sle-module-development-tools","friendly_version":"15 SP3","offline_predecessor_ids":[1376,1430,1633,1889],"name":"Development Tools Module","former_identifier":"sle-sdk","release_type":null,"friendly_name":"Development Tools Module 15 SP3 aarch64","migration_extra":false,"recommended":true,"version":"15.3"}],"friendly_version":"15 SP3","former_identifier":"sle-module-desktop-applications","release_type":null,"friendly_name":"Desktop Applications Module 15 SP3 aarch64","migration_extra":false,"offline_predecessor_ids":[],"name":"Desktop Applications Module","version":"15.3","recommended":true},{"recommended":true,"version":"15.3","name":"Server Applications Module","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"Server Applications Module 15 SP3 aarch64","former_identifier":"sle-module-server-applications","release_type":null,"friendly_version":"15 SP3","extensions":[{"free":true,"description":"

The SUSE Linux Enterprise Web and Scripting Module should contains additional packages that are helpful when running a webserver.

Access to the Web and Scripting Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself: Package versions in this module are usually supported for at most three years. We are planning to release more recent versions on a schedule of approximately 18 month; the exact dates may differ per package.

","shortname":"Web-Scripting-Module","arch":"aarch64","eula_url":"","online_predecessor_ids":[1718,1795,1973],"product_class":"MODULE","repositories":[{"id":4719,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/15-SP3/aarch64/update/","autorefresh":true,"distro_target":"sle-15-aarch64","name":"SLE-Module-Web-Scripting15-SP3-Updates","installer_updates":false,"description":"SLE-Module-Web-Scripting15-SP3-Updates for sle-15-aarch64"},{"enabled":false,"id":4720,"autorefresh":true,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/15-SP3/aarch64/update_debug/","name":"SLE-Module-Web-Scripting15-SP3-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-Web-Scripting15-SP3-Debuginfo-Updates for sle-15-aarch64"},{"autorefresh":false,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP3/aarch64/product/","enabled":true,"id":4721,"description":"SLE-Module-Web-Scripting15-SP3-Pool for sle-15-aarch64","name":"SLE-Module-Web-Scripting15-SP3-Pool","installer_updates":false},{"installer_updates":false,"name":"SLE-Module-Web-Scripting15-SP3-Debuginfo-Pool","description":"SLE-Module-Web-Scripting15-SP3-Debuginfo-Pool for sle-15-aarch64","id":4722,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP3/aarch64/product_debug/","distro_target":"sle-15-aarch64","autorefresh":false},{"distro_target":"sle-15-aarch64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP3/aarch64/product_source/","enabled":false,"id":4723,"description":"SLE-Module-Web-Scripting15-SP3-Source-Pool for sle-15-aarch64","installer_updates":false,"name":"SLE-Module-Web-Scripting15-SP3-Source-Pool"}],"predecessor_ids":[1718,1795,1973],"product_type":"module","cpe":"cpe:/o:suse:sle-module-web-scripting:15:sp3","version":"15.3","recommended":true,"release_type":null,"former_identifier":"sle-module-web-scripting","friendly_name":"Web and Scripting Module 15 SP3 aarch64","migration_extra":false,"offline_predecessor_ids":[1539],"name":"Web and Scripting Module","friendly_version":"15 SP3","release_stage":"released","id":2162,"identifier":"sle-module-web-scripting","extensions":[{"shortname":"HPC-Module","description":"

The SUSE Linux Enterprise Server High Performance Computing (HPC) module delivers specific tools commonly used for high performance, numerically intensive workloads.

SUSE packages these tools in the SLES HPC Module to provide greater flexibility to deliver new versions or new tools more rapidly than the standard SUSE Linux Enterprise lifecycle would permit.

Packages in this module are generally supported until a newer version of the package is released or the package is dropped from the module.

","free":true,"arch":"aarch64","eula_url":"","product_class":"MODULE","online_predecessor_ids":[1733,1799,1977],"repositories":[{"description":"SLE-Module-HPC15-SP3-Updates for sle-15-aarch64","name":"SLE-Module-HPC15-SP3-Updates","installer_updates":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-HPC/15-SP3/aarch64/update/","autorefresh":true,"distro_target":"sle-15-aarch64","id":4739,"enabled":true},{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-HPC/15-SP3/aarch64/update_debug/","distro_target":"sle-15-aarch64","autorefresh":true,"id":4740,"enabled":false,"description":"SLE-Module-HPC15-SP3-Debuginfo-Updates for sle-15-aarch64","installer_updates":false,"name":"SLE-Module-HPC15-SP3-Debuginfo-Updates"},{"id":4741,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-HPC/15-SP3/aarch64/product/","autorefresh":false,"distro_target":"sle-15-aarch64","name":"SLE-Module-HPC15-SP3-Pool","installer_updates":false,"description":"SLE-Module-HPC15-SP3-Pool for sle-15-aarch64"},{"name":"SLE-Module-HPC15-SP3-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-HPC15-SP3-Debuginfo-Pool for sle-15-aarch64","enabled":false,"id":4742,"autorefresh":false,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-HPC/15-SP3/aarch64/product_debug/"},{"id":4743,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-HPC/15-SP3/aarch64/product_source/","autorefresh":false,"distro_target":"sle-15-aarch64","name":"SLE-Module-HPC15-SP3-Source-Pool","installer_updates":false,"description":"SLE-Module-HPC15-SP3-Source-Pool for sle-15-aarch64"}],"predecessor_ids":[1733,1799,1977],"cpe":"cpe:/o:suse:sle-module-hpc:15:sp3","product_type":"module","version":"15.3","recommended":true,"friendly_name":"HPC Module 15 SP3 aarch64","migration_extra":false,"former_identifier":"sle-module-hpc","release_type":null,"name":"HPC Module","offline_predecessor_ids":[1522],"friendly_version":"15 SP3","release_stage":"released","id":2166,"identifier":"sle-module-hpc","extensions":[]}]},{"predecessor_ids":[1604,1801,1979],"online_predecessor_ids":[1604,1801,1979],"product_class":"MODULE","repositories":[{"name":"SLE-Module-Legacy15-SP3-Updates","installer_updates":false,"description":"SLE-Module-Legacy15-SP3-Updates for sle-15-aarch64","id":4749,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/15-SP3/aarch64/update/","autorefresh":true,"distro_target":"sle-15-aarch64"},{"enabled":false,"id":4750,"autorefresh":true,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/15-SP3/aarch64/update_debug/","name":"SLE-Module-Legacy15-SP3-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-Legacy15-SP3-Debuginfo-Updates for sle-15-aarch64"},{"enabled":true,"id":4751,"autorefresh":false,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15-SP3/aarch64/product/","name":"SLE-Module-Legacy15-SP3-Pool","installer_updates":false,"description":"SLE-Module-Legacy15-SP3-Pool for sle-15-aarch64"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15-SP3/aarch64/product_debug/","autorefresh":false,"distro_target":"sle-15-aarch64","id":4752,"enabled":false,"description":"SLE-Module-Legacy15-SP3-Debuginfo-Pool for sle-15-aarch64","name":"SLE-Module-Legacy15-SP3-Debuginfo-Pool","installer_updates":false},{"id":4753,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15-SP3/aarch64/product_source/","distro_target":"sle-15-aarch64","autorefresh":false,"installer_updates":false,"name":"SLE-Module-Legacy15-SP3-Source-Pool","description":"SLE-Module-Legacy15-SP3-Source-Pool for sle-15-aarch64"}],"product_type":"module","cpe":"cpe:/o:suse:sle-module-legacy:15:sp3","free":true,"shortname":"Legacy-Module","description":"

The Legacy Module helps you migrating applications from SUSE Linux Enterprise 12 and other systems to SUSE Linux Enterprise 15, by providing packages which are discontinued on SUSE Linux Enterprise Server, such as: ntp, IBM Java 8, and a number of libraries.

Access to the Legacy Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself. Packages in the this module are usually supported for at most three years.

","eula_url":"","arch":"aarch64","friendly_version":"15 SP3","extensions":[],"id":2168,"release_stage":"released","identifier":"sle-module-legacy","recommended":false,"version":"15.3","offline_predecessor_ids":[],"name":"Legacy Module","release_type":null,"former_identifier":"sle-module-legacy","friendly_name":"Legacy Module 15 SP3 aarch64","migration_extra":false},{"eula_url":"","arch":"aarch64","free":true,"shortname":"Public-Cloud-Module","description":"

The Public Cloud Module is a collection of tools that enables you to create and manage cloud images from the commandline on SUSE Linux Enterprise Server. When building your own images with KIWI or SUSE Studio, initialization code specific to the target cloud is included in that image.

Access to the Public Cloud Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself; please check the Release Notes for further details.

","product_type":"module","cpe":"cpe:/o:suse:sle-module-public-cloud:15:sp3","predecessor_ids":[1645,1805,1985],"repositories":[{"description":"SLE-Module-Public-Cloud15-SP3-Updates for sle-15-aarch64","name":"SLE-Module-Public-Cloud15-SP3-Updates","installer_updates":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/15-SP3/aarch64/update/","autorefresh":true,"distro_target":"sle-15-aarch64","id":4769,"enabled":true},{"description":"SLE-Module-Public-Cloud15-SP3-Debuginfo-Updates for sle-15-aarch64","name":"SLE-Module-Public-Cloud15-SP3-Debuginfo-Updates","installer_updates":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/15-SP3/aarch64/update_debug/","autorefresh":true,"distro_target":"sle-15-aarch64","id":4770,"enabled":false},{"enabled":true,"id":4771,"distro_target":"sle-15-aarch64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP3/aarch64/product/","installer_updates":false,"name":"SLE-Module-Public-Cloud15-SP3-Pool","description":"SLE-Module-Public-Cloud15-SP3-Pool for sle-15-aarch64"},{"autorefresh":false,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP3/aarch64/product_debug/","enabled":false,"id":4772,"description":"SLE-Module-Public-Cloud15-SP3-Debuginfo-Pool for sle-15-aarch64","name":"SLE-Module-Public-Cloud15-SP3-Debuginfo-Pool","installer_updates":false},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP3/aarch64/product_source/","distro_target":"sle-15-aarch64","autorefresh":false,"id":4773,"enabled":false,"description":"SLE-Module-Public-Cloud15-SP3-Source-Pool for sle-15-aarch64","installer_updates":false,"name":"SLE-Module-Public-Cloud15-SP3-Source-Pool"}],"online_predecessor_ids":[1645,1805,1985],"product_class":"MODULE","offline_predecessor_ids":[1528],"name":"Public Cloud Module","release_type":null,"former_identifier":"sle-module-public-cloud","friendly_name":"Public Cloud Module 15 SP3 aarch64","migration_extra":false,"recommended":false,"version":"15.3","extensions":[],"identifier":"sle-module-public-cloud","release_stage":"released","id":2172,"friendly_version":"15 SP3"},{"arch":"aarch64","eula_url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP3/aarch64/product.license/","free":false,"shortname":"SLEHA15-SP3","description":"SUSE Linux High Availability Extension provides mature, industry-leading open-source high-availability clustering technologies that are easy to set up and use. It can be deployed in physical and/or virtual environments, and can cluster physical servers, virtual servers, or any combination of the two to suit your business’ needs.","product_type":"extension","cpe":"cpe:/o:suse:sle-ha:15:sp3","online_predecessor_ids":[1608,1782,1956],"repositories":[{"description":"SLE-Product-HA15-SP3-Updates for sle-15-aarch64","name":"SLE-Product-HA15-SP3-Updates","installer_updates":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-HA/15-SP3/aarch64/update/","autorefresh":true,"distro_target":"sle-15-aarch64","id":4881,"enabled":true},{"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-HA/15-SP3/aarch64/update_debug/","distro_target":"sle-15-aarch64","autorefresh":true,"id":4882,"enabled":false,"description":"SLE-Product-HA15-SP3-Debuginfo-Updates for sle-15-aarch64","installer_updates":false,"name":"SLE-Product-HA15-SP3-Debuginfo-Updates"},{"description":"SLE-Product-HA15-SP3-Pool for sle-15-aarch64","installer_updates":false,"name":"SLE-Product-HA15-SP3-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP3/aarch64/product/","distro_target":"sle-15-aarch64","autorefresh":false,"id":4883,"enabled":true},{"installer_updates":false,"name":"SLE-Product-HA15-SP3-Debuginfo-Pool","description":"SLE-Product-HA15-SP3-Debuginfo-Pool for sle-15-aarch64","enabled":false,"id":4884,"distro_target":"sle-15-aarch64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP3/aarch64/product_debug/"},{"distro_target":"sle-15-aarch64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP3/aarch64/product_source/","enabled":false,"id":4885,"description":"SLE-Product-HA15-SP3-Source-Pool for sle-15-aarch64","installer_updates":false,"name":"SLE-Product-HA15-SP3-Source-Pool"}],"product_class":"SLE-HAE-ARM64","predecessor_ids":[1608,1782,1956],"former_identifier":"sle-ha","release_type":null,"friendly_name":"SUSE Linux Enterprise High Availability Extension 15 SP3 aarch64","migration_extra":false,"offline_predecessor_ids":[],"name":"SUSE Linux Enterprise High Availability Extension","version":"15.3","recommended":false,"id":2192,"release_stage":"released","identifier":"sle-ha","extensions":[],"friendly_version":"15 SP3"}],"id":2150,"release_stage":"released","identifier":"sle-module-server-applications","shortname":"Server-Applications-Module","description":"

The SUSE Linux Enterprise Server Applications Module delivers a basic set of Server functionality.

Access to the Server Applications Module is included in your SUSE Linux Enterprise Server subscription.

","free":true,"eula_url":"","arch":"aarch64","predecessor_ids":[1601,1777,1952],"online_predecessor_ids":[1601,1777,1952],"product_class":"MODULE","repositories":[{"description":"SLE-Module-Server-Applications15-SP3-Updates for sle-15-aarch64","name":"SLE-Module-Server-Applications15-SP3-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15-SP3/aarch64/update/","enabled":true,"id":4659},{"description":"SLE-Module-Server-Applications15-SP3-Debuginfo-Updates for sle-15-aarch64","installer_updates":false,"name":"SLE-Module-Server-Applications15-SP3-Debuginfo-Updates","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15-SP3/aarch64/update_debug/","distro_target":"sle-15-aarch64","autorefresh":true,"id":4660,"enabled":false},{"name":"SLE-Module-Server-Applications15-SP3-Pool","installer_updates":false,"description":"SLE-Module-Server-Applications15-SP3-Pool for sle-15-aarch64","id":4661,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP3/aarch64/product/","autorefresh":false,"distro_target":"sle-15-aarch64"},{"description":"SLE-Module-Server-Applications15-SP3-Debuginfo-Pool for sle-15-aarch64","installer_updates":false,"name":"SLE-Module-Server-Applications15-SP3-Debuginfo-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP3/aarch64/product_debug/","distro_target":"sle-15-aarch64","autorefresh":false,"id":4662,"enabled":false},{"enabled":false,"id":4663,"distro_target":"sle-15-aarch64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP3/aarch64/product_source/","installer_updates":false,"name":"SLE-Module-Server-Applications15-SP3-Source-Pool","description":"SLE-Module-Server-Applications15-SP3-Source-Pool for sle-15-aarch64"}],"cpe":"cpe:/o:suse:sle-module-server-applications:15:sp3","product_type":"module"},{"arch":"aarch64","eula_url":"","free":true,"description":"

This Module contains several packages revolving around containers and related tools.

","shortname":"Containers-Module","product_type":"module","cpe":"cpe:/o:suse:sle-module-containers:15:sp3","online_predecessor_ids":[1920,1960],"product_class":"MODULE","repositories":[{"description":"SLE-Module-Containers15-SP3-Updates for sle-15-aarch64","installer_updates":false,"name":"SLE-Module-Containers15-SP3-Updates","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/15-SP3/aarch64/update/","distro_target":"sle-15-aarch64","autorefresh":true,"id":4679,"enabled":true},{"description":"SLE-Module-Containers15-SP3-Debuginfo-Updates for sle-15-aarch64","installer_updates":false,"name":"SLE-Module-Containers15-SP3-Debuginfo-Updates","distro_target":"sle-15-aarch64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/15-SP3/aarch64/update_debug/","enabled":false,"id":4680},{"autorefresh":false,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP3/aarch64/product/","enabled":true,"id":4681,"description":"SLE-Module-Containers15-SP3-Pool for sle-15-aarch64","name":"SLE-Module-Containers15-SP3-Pool","installer_updates":false},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP3/aarch64/product_debug/","autorefresh":false,"distro_target":"sle-15-aarch64","id":4682,"enabled":false,"description":"SLE-Module-Containers15-SP3-Debuginfo-Pool for sle-15-aarch64","name":"SLE-Module-Containers15-SP3-Debuginfo-Pool","installer_updates":false},{"enabled":false,"id":4683,"distro_target":"sle-15-aarch64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP3/aarch64/product_source/","installer_updates":false,"name":"SLE-Module-Containers15-SP3-Source-Pool","description":"SLE-Module-Containers15-SP3-Source-Pool for sle-15-aarch64"}],"predecessor_ids":[1920,1960],"former_identifier":"sle-module-containers","release_type":null,"migration_extra":false,"friendly_name":"Containers Module 15 SP3 aarch64","offline_predecessor_ids":[],"name":"Containers Module","version":"15.3","recommended":false,"release_stage":"released","id":2154,"identifier":"sle-module-containers","extensions":[],"friendly_version":"15 SP3"},{"product_type":"module","cpe":"cpe:/o:suse:sle-module-python2:15:sp3","predecessor_ids":[1864,1989],"repositories":[{"name":"SLE-Module-Python2-15-SP3-Updates","installer_updates":false,"description":"SLE-Module-Python2-15-SP3-Updates for sle-15-aarch64","enabled":true,"id":4814,"autorefresh":true,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Python2/15-SP3/aarch64/update/"},{"description":"SLE-Module-Python2-15-SP3-Debuginfo-Updates for sle-15-aarch64","name":"SLE-Module-Python2-15-SP3-Debuginfo-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Python2/15-SP3/aarch64/update_debug/","enabled":false,"id":4815},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Python2/15-SP3/aarch64/product/","autorefresh":false,"distro_target":"sle-15-aarch64","id":4816,"enabled":true,"description":"SLE-Module-Python2-15-SP3-Pool for sle-15-aarch64","name":"SLE-Module-Python2-15-SP3-Pool","installer_updates":false},{"enabled":false,"id":4817,"autorefresh":false,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Python2/15-SP3/aarch64/product_debug/","name":"SLE-Module-Python2-15-SP3-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-Python2-15-SP3-Debuginfo-Pool for sle-15-aarch64"},{"distro_target":"sle-15-aarch64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Python2/15-SP3/aarch64/product_source/","enabled":false,"id":4818,"description":"SLE-Module-Python2-15-SP3-Source-Pool for sle-15-aarch64","installer_updates":false,"name":"SLE-Module-Python2-15-SP3-Source-Pool"}],"online_predecessor_ids":[1864,1989],"product_class":"MODULE","eula_url":"","arch":"aarch64","free":true,"shortname":"Python2-Module","description":"

This module contains the python 2 packages.

Access to the Python 2 Module is included in your SUSE Linux Enterprise subscription. The module has a different lifecycle than SUSE Linux Enterprise itself. Packages in the this module are usually supported for at most three years.

","extensions":[],"release_stage":"released","identifier":"sle-module-python2","id":2181,"friendly_version":"15 SP3","offline_predecessor_ids":[],"name":"Python 2 Module","former_identifier":"sle-module-python2","release_type":null,"migration_extra":true,"friendly_name":"Python 2 Module 15 SP3 aarch64","recommended":true,"version":"15.3"},{"arch":"aarch64","eula_url":"","shortname":"SUSE-PackageHub-15","description":"SUSE Package Hub is a free of charge module providing access to community maintained packages built to run on SUSE Linux Enterprise Server. Built from the same sources used in the openSUSE distributions, these quality packages provide additional software to what is found in the SUSE Linux Enterprise Server product. Packages from the Package Hub are delivered without L3 support from SUSE. General updates and fixes to the packages in SUSE Package Hub are provided by the openSUSE community based on their discretion, though SUSE will monitor and ensure that any known critical security issues will be addressed. Packages in the Package Hub are approved by SUSE for use with SUSE Linux Enterprise Server 15-SP3 and to not interfere with the supportability of SUSE Linux Enterprise Server, its modules and extensions. For more information about SUSE Package Hub please visit https://packagehub.suse.com.","free":true,"cpe":"cpe:/o:suse:packagehub:15:sp3","product_type":"module","online_predecessor_ids":[1740,1868,1947],"product_class":"MODULE","repositories":[{"name":"SUSE-PackageHub-15-SP3-Backports-Pool","installer_updates":false,"description":"SUSE-PackageHub-15-SP3-Backports-Pool for sle-15-aarch64","id":4849,"enabled":true,"url":"https://updates.suse.com/SUSE/Backports/SLE-15-SP3_aarch64/standard/","autorefresh":false,"distro_target":"sle-15-aarch64"},{"installer_updates":false,"name":"SUSE-PackageHub-15-SP3-Backports-Debuginfo","description":"SUSE-PackageHub-15-SP3-Backports-Debuginfo for sle-15-aarch64","id":4850,"enabled":false,"url":"https://updates.suse.com/SUSE/Backports/SLE-15-SP3_aarch64/standard_debug/","distro_target":"sle-15-aarch64","autorefresh":true},{"description":"SLE-Module-Packagehub-Subpackages15-SP3-Updates for sle-15-aarch64","name":"SLE-Module-Packagehub-Subpackages15-SP3-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP3/aarch64/update/","enabled":true,"id":4851},{"distro_target":"sle-15-aarch64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP3/aarch64/update_debug/","enabled":false,"id":4852,"description":"SLE-Module-Packagehub-Subpackages15-SP3-Debuginfo-Updates for sle-15-aarch64","installer_updates":false,"name":"SLE-Module-Packagehub-Subpackages15-SP3-Debuginfo-Updates"},{"enabled":true,"id":4853,"autorefresh":false,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Backports/SLE-15-SP3_aarch64/product/","name":"SUSE-PackageHub-15-SP3-Pool","installer_updates":false,"description":"SUSE-PackageHub-15-SP3-Pool for sle-15-aarch64"},{"description":"SLE-Module-Packagehub-Subpackages15-SP3-Pool for sle-15-aarch64","name":"SLE-Module-Packagehub-Subpackages15-SP3-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP3/aarch64/product/","enabled":true,"id":4854},{"description":"SLE-Module-Packagehub-Subpackages15-SP3-Debuginfo-Pool for sle-15-aarch64","name":"SLE-Module-Packagehub-Subpackages15-SP3-Debuginfo-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP3/aarch64/product_debug/","autorefresh":false,"distro_target":"sle-15-aarch64","id":4855,"enabled":false},{"installer_updates":false,"name":"SLE-Module-Packagehub-Subpackages15-SP3-Source-Pool","description":"SLE-Module-Packagehub-Subpackages15-SP3-Source-Pool for sle-15-aarch64","id":4856,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP3/aarch64/product_source/","distro_target":"sle-15-aarch64","autorefresh":false}],"predecessor_ids":[1740,1868,1947],"migration_extra":false,"friendly_name":"SUSE Package Hub 15 SP3 aarch64","former_identifier":"PackageHub","release_type":null,"name":"SUSE Package Hub","offline_predecessor_ids":[1532,1810,1912],"version":"15.3","recommended":false,"identifier":"PackageHub","release_stage":"released","id":2188,"extensions":[],"friendly_version":"15 SP3"}],"free":true,"description":"

The SUSE Linux Enterprise Basesystem Module delivers the base system of the product.

","shortname":"Basesystem-Module","arch":"aarch64","eula_url":"","product_class":"MODULE","online_predecessor_ids":[1589,1769,1943],"repositories":[{"installer_updates":false,"name":"SLE-Module-Basesystem15-SP3-Updates","description":"SLE-Module-Basesystem15-SP3-Updates for sle-15-aarch64","enabled":true,"id":4619,"distro_target":"sle-15-aarch64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15-SP3/aarch64/update/"},{"name":"SLE-Module-Basesystem15-SP3-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-Basesystem15-SP3-Debuginfo-Updates for sle-15-aarch64","enabled":false,"id":4620,"autorefresh":true,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15-SP3/aarch64/update_debug/"},{"description":"SLE-Module-Basesystem15-SP3-Pool for sle-15-aarch64","installer_updates":false,"name":"SLE-Module-Basesystem15-SP3-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP3/aarch64/product/","distro_target":"sle-15-aarch64","autorefresh":false,"id":4621,"enabled":true},{"installer_updates":false,"name":"SLE-Module-Basesystem15-SP3-Debuginfo-Pool","description":"SLE-Module-Basesystem15-SP3-Debuginfo-Pool for sle-15-aarch64","enabled":false,"id":4622,"distro_target":"sle-15-aarch64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP3/aarch64/product_debug/"},{"description":"SLE-Module-Basesystem15-SP3-Source-Pool for sle-15-aarch64","name":"SLE-Module-Basesystem15-SP3-Source-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP3/aarch64/product_source/","enabled":false,"id":4623}],"predecessor_ids":[1589,1769,1943],"product_type":"module","cpe":"cpe:/o:suse:sle-module-basesystem:15:sp3"},{"arch":"aarch64","eula_url":"","description":"

SUSE Linux Enterprise High Performance Computing is a highly scalable, high performance open source operating system designed to utilize the power of parallel computing for modeling, simulation and advanced analytics workloads.

","shortname":"SLE_HPC-LTSS-15-SP3","free":false,"cpe":"cpe:/o:suse:sle_hpc-ltss:15:sp3","product_type":"extension","repositories":[{"enabled":true,"id":4951,"autorefresh":true,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Updates/SLE-Product-HPC/15-SP3-LTSS/aarch64/update/","name":"SLE-Product-HPC-15-SP3-LTSS-Updates","installer_updates":false,"description":"SLE-Product-HPC-15-SP3-LTSS-Updates for sle-15-aarch64"},{"id":4952,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-HPC/15-SP3-LTSS/aarch64/update_debug/","distro_target":"sle-15-aarch64","autorefresh":true,"installer_updates":false,"name":"SLE-Product-HPC-15-SP3-LTSS-Debuginfo-Updates","description":"SLE-Product-HPC-15-SP3-LTSS-Debuginfo-Updates for sle-15-aarch64"},{"description":"SLE-Product-HPC-15-SP3-LTSS-Pool for sle-15-aarch64","installer_updates":false,"name":"SLE-Product-HPC-15-SP3-LTSS-Pool","distro_target":"sle-15-aarch64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-HPC/15-SP3-LTSS/aarch64/product/","enabled":true,"id":4953},{"enabled":false,"id":4954,"distro_target":"sle-15-aarch64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-HPC/15-SP3-LTSS/aarch64/product_debug/","installer_updates":false,"name":"SLE-Product-HPC-15-SP3-LTSS-Debuginfo-Pool","description":"SLE-Product-HPC-15-SP3-LTSS-Debuginfo-Pool for sle-15-aarch64"},{"autorefresh":false,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Products/SLE-Product-HPC/15-SP3-LTSS/aarch64/product_source/","enabled":false,"id":4955,"description":"SLE-Product-HPC-15-SP3-LTSS-Source-Pool for sle-15-aarch64","name":"SLE-Product-HPC-15-SP3-LTSS-Source-Pool","installer_updates":false}],"online_predecessor_ids":[],"product_class":"HPC15-SP3-LTSS-ARM64","predecessor_ids":[],"friendly_name":"SUSE Linux Enterprise High Performance Computing LTSS 15 SP3 aarch64","migration_extra":false,"release_type":null,"former_identifier":"SLE_HPC-LTSS","name":"SUSE Linux Enterprise High Performance Computing LTSS","offline_predecessor_ids":[],"version":"15.3","recommended":false,"release_stage":"released","identifier":"SLE_HPC-LTSS","id":2212,"extensions":[],"friendly_version":"15 SP3"},{"online_predecessor_ids":[2126,2128],"product_class":"SLE-ESPOS-ARM64","repositories":[{"name":"SLE-Product-HPC-15-SP3-ESPOS-Updates","installer_updates":false,"description":"SLE-Product-HPC-15-SP3-ESPOS-Updates for sle-15-aarch64","id":4961,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-HPC/15-SP3-ESPOS/aarch64/update/","autorefresh":true,"distro_target":"sle-15-aarch64"},{"distro_target":"sle-15-aarch64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-HPC/15-SP3-ESPOS/aarch64/update_debug/","enabled":false,"id":4962,"description":"SLE-Product-HPC-15-SP3-ESPOS-Debuginfo-Updates for sle-15-aarch64","installer_updates":false,"name":"SLE-Product-HPC-15-SP3-ESPOS-Debuginfo-Updates"},{"description":"SLE-Product-HPC-15-SP3-ESPOS-Pool for sle-15-aarch64","installer_updates":false,"name":"SLE-Product-HPC-15-SP3-ESPOS-Pool","distro_target":"sle-15-aarch64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-HPC/15-SP3-ESPOS/aarch64/product/","enabled":true,"id":4963},{"description":"SLE-Product-HPC-15-SP3-ESPOS-Debuginfo-Pool for sle-15-aarch64","name":"SLE-Product-HPC-15-SP3-ESPOS-Debuginfo-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Products/SLE-Product-HPC/15-SP3-ESPOS/aarch64/product_debug/","enabled":false,"id":4964},{"url":"https://updates.suse.com/SUSE/Products/SLE-Product-HPC/15-SP3-ESPOS/aarch64/product_source/","autorefresh":false,"distro_target":"sle-15-aarch64","id":4965,"enabled":false,"description":"SLE-Product-HPC-15-SP3-ESPOS-Source-Pool for sle-15-aarch64","name":"SLE-Product-HPC-15-SP3-ESPOS-Source-Pool","installer_updates":false}],"predecessor_ids":[2126,2128],"product_type":"extension","cpe":"cpe:/o:suse:sle_hpc-espos:15:sp3","free":false,"shortname":"SLE_HPC-ESPOS-15-SP3","description":"

SUSE Linux Enterprise High Performance Computing is a highly scalable, high performance open source operating system designed to utilize the power of parallel computing for modeling, simulation and advanced analytics workloads.

","arch":"aarch64","eula_url":"","friendly_version":"15 SP3","release_stage":"released","id":2214,"identifier":"SLE_HPC-ESPOS","extensions":[],"version":"15.3","recommended":false,"former_identifier":"SLE_HPC-ESPOS","release_type":null,"friendly_name":"SUSE Linux Enterprise High Performance Computing ESPOS 15 SP3 aarch64","migration_extra":false,"offline_predecessor_ids":[],"name":"SUSE Linux Enterprise High Performance Computing ESPOS"},{"friendly_version":"15 SP3","release_stage":"released","id":2386,"identifier":"sle-module-certifications","extensions":[],"version":"15.3","recommended":false,"friendly_name":"Certifications Module 15 SP3 aarch64","migration_extra":false,"former_identifier":"sle-module-certifications","release_type":null,"name":"Certifications Module","offline_predecessor_ids":[],"repositories":[{"name":"SLE-Module-Certifications-15-SP3-Updates","installer_updates":false,"description":"SLE-Module-Certifications-15-SP3-Updates for sle-15-aarch64","id":5512,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Certifications/15-SP3/aarch64/update/","autorefresh":true,"distro_target":"sle-15-aarch64"},{"autorefresh":true,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Certifications/15-SP3/aarch64/update_debug/","enabled":false,"id":5513,"description":"SLE-Module-Certifications-15-SP3-Debuginfo-Updates for sle-15-aarch64","name":"SLE-Module-Certifications-15-SP3-Debuginfo-Updates","installer_updates":false},{"distro_target":"sle-15-aarch64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Certifications/15-SP3/aarch64/product/","enabled":true,"id":5514,"description":"SLE-Module-Certifications-15-SP3-Pool for sle-15-aarch64","installer_updates":false,"name":"SLE-Module-Certifications-15-SP3-Pool"},{"installer_updates":false,"name":"SLE-Module-Certifications-15-SP3-Debuginfo-Pool","description":"SLE-Module-Certifications-15-SP3-Debuginfo-Pool for sle-15-aarch64","enabled":false,"id":5515,"distro_target":"sle-15-aarch64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Certifications/15-SP3/aarch64/product_debug/"},{"name":"SLE-Module-Certifications-15-SP3-Source-Pool","installer_updates":false,"description":"SLE-Module-Certifications-15-SP3-Source-Pool for sle-15-aarch64","id":5516,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Certifications/15-SP3/aarch64/product_source/","autorefresh":false,"distro_target":"sle-15-aarch64"}],"online_predecessor_ids":[],"product_class":"MODULE","predecessor_ids":[],"cpe":"cpe:/o:suse:sle-module-certifications:15:sp3","product_type":"module","shortname":"Certifications-Module","description":"

This module contains the certification packages.

Access to the Certifications Module is included in your SUSE Linux Enterprise subscription. The module has a different lifecycle than SUSE Linux Enterprise itself; please check the Release Notes for further details.

","free":true,"arch":"aarch64","eula_url":""}]},{"friendly_version":"15 SP3","release_stage":"released","id":2133,"identifier":"SLE_HPC","extensions":[{"eula_url":"","arch":"x86_64","shortname":"Basesystem-Module","description":"

The SUSE Linux Enterprise Basesystem Module delivers the base system of the product.

","free":true,"cpe":"cpe:/o:suse:sle-module-basesystem:15:sp3","product_type":"module","predecessor_ids":[1576,1772,1946],"online_predecessor_ids":[1576,1772,1946],"product_class":"MODULE","repositories":[{"description":"SLE-Module-Basesystem15-SP3-Updates for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Basesystem15-SP3-Updates","distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15-SP3/x86_64/update/","enabled":true,"id":4634},{"description":"SLE-Module-Basesystem15-SP3-Debuginfo-Updates for sle-15-x86_64","name":"SLE-Module-Basesystem15-SP3-Debuginfo-Updates","installer_updates":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15-SP3/x86_64/update_debug/","autorefresh":true,"distro_target":"sle-15-x86_64","id":4635,"enabled":false},{"name":"SLE-Module-Basesystem15-SP3-Pool","installer_updates":false,"description":"SLE-Module-Basesystem15-SP3-Pool for sle-15-x86_64","enabled":true,"id":4636,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP3/x86_64/product/"},{"description":"SLE-Module-Basesystem15-SP3-Debuginfo-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Basesystem15-SP3-Debuginfo-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP3/x86_64/product_debug/","distro_target":"sle-15-x86_64","autorefresh":false,"id":4637,"enabled":false},{"description":"SLE-Module-Basesystem15-SP3-Source-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Basesystem15-SP3-Source-Pool","distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP3/x86_64/product_source/","enabled":false,"id":4638}],"name":"Basesystem Module","offline_predecessor_ids":[1212,1368,1440],"friendly_name":"Basesystem Module 15 SP3 x86_64","migration_extra":false,"release_type":null,"former_identifier":"sle-module-basesystem","recommended":true,"version":"15.3","extensions":[{"eula_url":"","arch":"x86_64","free":true,"description":"

The SUSE Linux Enterprise Desktop Applications Module delivers a basic set of Desktop functionality.

Access to the Desktop Applications Module is included in your SUSE Linux Enterprise product subscription.

","shortname":"Desktop-Applications-Module","product_type":"module","cpe":"cpe:/o:suse:sle-module-desktop-applications:15:sp3","predecessor_ids":[1578,1776,1967],"online_predecessor_ids":[1578,1776,1967],"repositories":[{"id":4654,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15-SP3/x86_64/update/","autorefresh":true,"distro_target":"sle-15-x86_64","name":"SLE-Module-Desktop-Applications15-SP3-Updates","installer_updates":false,"description":"SLE-Module-Desktop-Applications15-SP3-Updates for sle-15-x86_64"},{"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15-SP3/x86_64/update_debug/","enabled":false,"id":4655,"description":"SLE-Module-Desktop-Applications15-SP3-Debuginfo-Updates for sle-15-x86_64","name":"SLE-Module-Desktop-Applications15-SP3-Debuginfo-Updates","installer_updates":false},{"enabled":true,"id":4656,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP3/x86_64/product/","name":"SLE-Module-Desktop-Applications15-SP3-Pool","installer_updates":false,"description":"SLE-Module-Desktop-Applications15-SP3-Pool for sle-15-x86_64"},{"installer_updates":false,"name":"SLE-Module-Desktop-Applications15-SP3-Debuginfo-Pool","description":"SLE-Module-Desktop-Applications15-SP3-Debuginfo-Pool for sle-15-x86_64","enabled":false,"id":4657,"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP3/x86_64/product_debug/"},{"installer_updates":false,"name":"SLE-Module-Desktop-Applications15-SP3-Source-Pool","description":"SLE-Module-Desktop-Applications15-SP3-Source-Pool for sle-15-x86_64","enabled":false,"id":4658,"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP3/x86_64/product_source/"}],"product_class":"MODULE","offline_predecessor_ids":[],"name":"Desktop Applications Module","former_identifier":"sle-module-desktop-applications","release_type":null,"friendly_name":"Desktop Applications Module 15 SP3 x86_64","migration_extra":false,"recommended":true,"version":"15.3","extensions":[{"version":"15.3","recommended":true,"release_type":null,"former_identifier":"sle-sdk","migration_extra":false,"friendly_name":"Development Tools Module 15 SP3 x86_64","offline_predecessor_ids":[1341,1427,1630,1892],"name":"Development Tools Module","friendly_version":"15 SP3","release_stage":"released","id":2161,"identifier":"sle-module-development-tools","extensions":[{"friendly_version":"15","release_stage":"released","id":2131,"identifier":"sle-module-NVIDIA-compute","extensions":[],"version":"15","recommended":false,"friendly_name":"NVIDIA Compute Module 15 x86_64","migration_extra":false,"release_type":null,"former_identifier":"sle-module-NVIDIA-compute","name":"NVIDIA Compute Module","offline_predecessor_ids":[],"online_predecessor_ids":[],"product_class":"MODULE","repositories":[{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-NVIDIA-Compute/15/x86_64/update/","autorefresh":true,"distro_target":"sle-15-x86_64","id":4554,"enabled":true,"description":"SLE-Module-NVIDIA-Compute-15-Updates for sle-15-x86_64","name":"SLE-Module-NVIDIA-Compute-15-Updates","installer_updates":false},{"id":4556,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-NVIDIA-Compute/15/x86_64/product/","autorefresh":false,"distro_target":"sle-15-x86_64","name":"SLE-Module-NVIDIA-Compute-15-Pool","installer_updates":false,"description":"SLE-Module-NVIDIA-Compute-15-Pool for sle-15-x86_64"},{"id":4563,"enabled":true,"url":"https://developer.download.nvidia.com/compute/cuda/repos/sles15/x86_64/","distro_target":null,"autorefresh":true,"installer_updates":false,"name":"NVIDIA-Compute-SLE-15","description":"NVIDIA-Compute-SLE-15"}],"predecessor_ids":[],"cpe":"cpe:/o:suse:sle-module-nvidia-compute:15","product_type":"module","description":"NVIDIA Compute Drivers - NVIDIA CUDA This Module contains software under the terms and conditions of a 3rd party EULA (End User License Agreement). The EULA can be found at https://docs.nvidia.com/cuda/eula/index.html. By using this software you agree to fully comply with the terms and conditions of the EULA. If you do not agree to the terms and conditions of the EULA, do not use the software.","shortname":"NVIDIA-Compute-Module","free":true,"arch":"x86_64","eula_url":"https://updates.suse.com/SUSE/Products/SLE-Module-NVIDIA-Compute/15/x86_64/product.license/"}],"free":true,"description":"

The Development Tools Module helps you developing applications for SUSE Linux Enterprise 15.

Access to the Development Tools Module is included in your SUSE Linux Enterprise product subscription. The module has a different lifecycle than SUSE Linux Enterprise itself.

","shortname":"Development-Tools-Module","arch":"x86_64","eula_url":"","product_class":"MODULE","online_predecessor_ids":[1579,1794,1971],"repositories":[{"distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15-SP3/x86_64/update/","enabled":true,"id":4714,"description":"SLE-Module-DevTools15-SP3-Updates for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-DevTools15-SP3-Updates"},{"description":"SLE-Module-DevTools15-SP3-Debuginfo-Updates for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-DevTools15-SP3-Debuginfo-Updates","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15-SP3/x86_64/update_debug/","distro_target":"sle-15-x86_64","autorefresh":true,"id":4715,"enabled":false},{"description":"SLE-Module-DevTools15-SP3-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-DevTools15-SP3-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP3/x86_64/product/","distro_target":"sle-15-x86_64","autorefresh":false,"id":4716,"enabled":true},{"enabled":false,"id":4717,"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP3/x86_64/product_debug/","installer_updates":false,"name":"SLE-Module-DevTools15-SP3-Debuginfo-Pool","description":"SLE-Module-DevTools15-SP3-Debuginfo-Pool for sle-15-x86_64"},{"description":"SLE-Module-DevTools15-SP3-Source-Pool for sle-15-x86_64","name":"SLE-Module-DevTools15-SP3-Source-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP3/x86_64/product_source/","enabled":false,"id":4718}],"predecessor_ids":[1579,1794,1971],"product_type":"module","cpe":"cpe:/o:suse:sle-module-development-tools:15:sp3"}],"release_stage":"released","id":2149,"identifier":"sle-module-desktop-applications","friendly_version":"15 SP3"},{"extensions":[{"extensions":[{"product_type":"module","cpe":"cpe:/o:suse:sle-module-hpc:15:sp3","predecessor_ids":[1734,1800,1978],"online_predecessor_ids":[1734,1800,1978],"product_class":"MODULE","repositories":[{"enabled":true,"id":4744,"distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-HPC/15-SP3/x86_64/update/","installer_updates":false,"name":"SLE-Module-HPC15-SP3-Updates","description":"SLE-Module-HPC15-SP3-Updates for sle-15-x86_64"},{"installer_updates":false,"name":"SLE-Module-HPC15-SP3-Debuginfo-Updates","description":"SLE-Module-HPC15-SP3-Debuginfo-Updates for sle-15-x86_64","id":4745,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-HPC/15-SP3/x86_64/update_debug/","distro_target":"sle-15-x86_64","autorefresh":true},{"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-HPC/15-SP3/x86_64/product/","enabled":true,"id":4746,"description":"SLE-Module-HPC15-SP3-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-HPC15-SP3-Pool"},{"enabled":false,"id":4747,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-HPC/15-SP3/x86_64/product_debug/","name":"SLE-Module-HPC15-SP3-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-HPC15-SP3-Debuginfo-Pool for sle-15-x86_64"},{"installer_updates":false,"name":"SLE-Module-HPC15-SP3-Source-Pool","description":"SLE-Module-HPC15-SP3-Source-Pool for sle-15-x86_64","id":4748,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-HPC/15-SP3/x86_64/product_source/","distro_target":"sle-15-x86_64","autorefresh":false}],"eula_url":"","arch":"x86_64","free":true,"shortname":"HPC-Module","description":"

The SUSE Linux Enterprise Server High Performance Computing (HPC) module delivers specific tools commonly used for high performance, numerically intensive workloads.

SUSE packages these tools in the SLES HPC Module to provide greater flexibility to deliver new versions or new tools more rapidly than the standard SUSE Linux Enterprise lifecycle would permit.

Packages in this module are generally supported until a newer version of the package is released or the package is dropped from the module.

","extensions":[],"identifier":"sle-module-hpc","release_stage":"released","id":2167,"friendly_version":"15 SP3","offline_predecessor_ids":[1440],"name":"HPC Module","former_identifier":"sle-module-hpc","release_type":null,"migration_extra":false,"friendly_name":"HPC Module 15 SP3 x86_64","recommended":true,"version":"15.3"}],"id":2165,"release_stage":"released","identifier":"sle-module-web-scripting","friendly_version":"15 SP3","name":"Web and Scripting Module","offline_predecessor_ids":[1153],"migration_extra":false,"friendly_name":"Web and Scripting Module 15 SP3 x86_64","release_type":null,"former_identifier":"sle-module-web-scripting","recommended":true,"version":"15.3","cpe":"cpe:/o:suse:sle-module-web-scripting:15:sp3","product_type":"module","predecessor_ids":[1721,1798,1976],"online_predecessor_ids":[1721,1798,1976],"repositories":[{"installer_updates":false,"name":"SLE-Module-Web-Scripting15-SP3-Updates","description":"SLE-Module-Web-Scripting15-SP3-Updates for sle-15-x86_64","enabled":true,"id":4734,"distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/15-SP3/x86_64/update/"},{"installer_updates":false,"name":"SLE-Module-Web-Scripting15-SP3-Debuginfo-Updates","description":"SLE-Module-Web-Scripting15-SP3-Debuginfo-Updates for sle-15-x86_64","id":4735,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/15-SP3/x86_64/update_debug/","distro_target":"sle-15-x86_64","autorefresh":true},{"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP3/x86_64/product/","enabled":true,"id":4736,"description":"SLE-Module-Web-Scripting15-SP3-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Web-Scripting15-SP3-Pool"},{"description":"SLE-Module-Web-Scripting15-SP3-Debuginfo-Pool for sle-15-x86_64","name":"SLE-Module-Web-Scripting15-SP3-Debuginfo-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP3/x86_64/product_debug/","enabled":false,"id":4737},{"name":"SLE-Module-Web-Scripting15-SP3-Source-Pool","installer_updates":false,"description":"SLE-Module-Web-Scripting15-SP3-Source-Pool for sle-15-x86_64","id":4738,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP3/x86_64/product_source/","autorefresh":false,"distro_target":"sle-15-x86_64"}],"product_class":"MODULE","eula_url":"","arch":"x86_64","description":"

The SUSE Linux Enterprise Web and Scripting Module should contains additional packages that are helpful when running a webserver.

Access to the Web and Scripting Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself: Package versions in this module are usually supported for at most three years. We are planning to release more recent versions on a schedule of approximately 18 month; the exact dates may differ per package.

","shortname":"Web-Scripting-Module","free":true},{"recommended":false,"version":"15.3","offline_predecessor_ids":[1150],"name":"Legacy Module","release_type":null,"former_identifier":"sle-module-legacy","friendly_name":"Legacy Module 15 SP3 x86_64","migration_extra":false,"friendly_version":"15 SP3","extensions":[],"id":2171,"release_stage":"released","identifier":"sle-module-legacy","free":true,"description":"

The Legacy Module helps you migrating applications from SUSE Linux Enterprise 12 and other systems to SUSE Linux Enterprise 15, by providing packages which are discontinued on SUSE Linux Enterprise Server, such as: ntp, IBM Java 8, and a number of libraries.

Access to the Legacy Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself. Packages in the this module are usually supported for at most three years.

","shortname":"Legacy-Module","eula_url":"","arch":"x86_64","predecessor_ids":[1581,1804,1982],"online_predecessor_ids":[1581,1804,1982],"repositories":[{"enabled":true,"id":4764,"distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/15-SP3/x86_64/update/","installer_updates":false,"name":"SLE-Module-Legacy15-SP3-Updates","description":"SLE-Module-Legacy15-SP3-Updates for sle-15-x86_64"},{"enabled":false,"id":4765,"distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/15-SP3/x86_64/update_debug/","installer_updates":false,"name":"SLE-Module-Legacy15-SP3-Debuginfo-Updates","description":"SLE-Module-Legacy15-SP3-Debuginfo-Updates for sle-15-x86_64"},{"description":"SLE-Module-Legacy15-SP3-Pool for sle-15-x86_64","name":"SLE-Module-Legacy15-SP3-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15-SP3/x86_64/product/","enabled":true,"id":4766},{"description":"SLE-Module-Legacy15-SP3-Debuginfo-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Legacy15-SP3-Debuginfo-Pool","distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15-SP3/x86_64/product_debug/","enabled":false,"id":4767},{"description":"SLE-Module-Legacy15-SP3-Source-Pool for sle-15-x86_64","name":"SLE-Module-Legacy15-SP3-Source-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15-SP3/x86_64/product_source/","enabled":false,"id":4768}],"product_class":"MODULE","product_type":"module","cpe":"cpe:/o:suse:sle-module-legacy:15:sp3"},{"version":"15.3","recommended":false,"release_type":null,"former_identifier":"sle-module-public-cloud","friendly_name":"Public Cloud Module 15 SP3 x86_64","migration_extra":false,"offline_predecessor_ids":[1220],"name":"Public Cloud Module","friendly_version":"15 SP3","id":2175,"release_stage":"released","identifier":"sle-module-public-cloud","extensions":[],"free":true,"shortname":"Public-Cloud-Module","description":"

The Public Cloud Module is a collection of tools that enables you to create and manage cloud images from the commandline on SUSE Linux Enterprise Server. When building your own images with KIWI or SUSE Studio, initialization code specific to the target cloud is included in that image.

Access to the Public Cloud Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself; please check the Release Notes for further details.

","arch":"x86_64","eula_url":"","product_class":"MODULE","online_predecessor_ids":[1611,1808,1988],"repositories":[{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/15-SP3/x86_64/update/","autorefresh":true,"distro_target":"sle-15-x86_64","id":4784,"enabled":true,"description":"SLE-Module-Public-Cloud15-SP3-Updates for sle-15-x86_64","name":"SLE-Module-Public-Cloud15-SP3-Updates","installer_updates":false},{"description":"SLE-Module-Public-Cloud15-SP3-Debuginfo-Updates for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Public-Cloud15-SP3-Debuginfo-Updates","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/15-SP3/x86_64/update_debug/","distro_target":"sle-15-x86_64","autorefresh":true,"id":4785,"enabled":false},{"description":"SLE-Module-Public-Cloud15-SP3-Pool for sle-15-x86_64","name":"SLE-Module-Public-Cloud15-SP3-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP3/x86_64/product/","enabled":true,"id":4786},{"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP3/x86_64/product_debug/","enabled":false,"id":4787,"description":"SLE-Module-Public-Cloud15-SP3-Debuginfo-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Public-Cloud15-SP3-Debuginfo-Pool"},{"description":"SLE-Module-Public-Cloud15-SP3-Source-Pool for sle-15-x86_64","name":"SLE-Module-Public-Cloud15-SP3-Source-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP3/x86_64/product_source/","enabled":false,"id":4788}],"predecessor_ids":[1611,1808,1988],"product_type":"module","cpe":"cpe:/o:suse:sle-module-public-cloud:15:sp3"},{"friendly_version":"15 SP3","extensions":[],"id":2195,"release_stage":"released","identifier":"sle-ha","recommended":false,"version":"15.3","offline_predecessor_ids":[958,961,967,971,1101,1107,1256,1286,1432,1435,1634,1637,1884,1886],"name":"SUSE Linux Enterprise High Availability Extension","release_type":null,"former_identifier":"sle-ha","friendly_name":"SUSE Linux Enterprise High Availability Extension 15 SP3 x86_64","migration_extra":false,"predecessor_ids":[1582,1785,1959],"repositories":[{"enabled":true,"id":4896,"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Product-HA/15-SP3/x86_64/update/","name":"SLE-Product-HA15-SP3-Updates","installer_updates":false,"description":"SLE-Product-HA15-SP3-Updates for sle-15-x86_64"},{"enabled":false,"id":4897,"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Product-HA/15-SP3/x86_64/update_debug/","name":"SLE-Product-HA15-SP3-Debuginfo-Updates","installer_updates":false,"description":"SLE-Product-HA15-SP3-Debuginfo-Updates for sle-15-x86_64"},{"enabled":true,"id":4898,"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP3/x86_64/product/","installer_updates":false,"name":"SLE-Product-HA15-SP3-Pool","description":"SLE-Product-HA15-SP3-Pool for sle-15-x86_64"},{"description":"SLE-Product-HA15-SP3-Debuginfo-Pool for sle-15-x86_64","name":"SLE-Product-HA15-SP3-Debuginfo-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP3/x86_64/product_debug/","enabled":false,"id":4899},{"url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP3/x86_64/product_source/","autorefresh":false,"distro_target":"sle-15-x86_64","id":4900,"enabled":false,"description":"SLE-Product-HA15-SP3-Source-Pool for sle-15-x86_64","name":"SLE-Product-HA15-SP3-Source-Pool","installer_updates":false}],"online_predecessor_ids":[1582,1785,1959],"product_class":"SLE-HAE-X86","product_type":"extension","cpe":"cpe:/o:suse:sle-ha:15:sp3","free":false,"shortname":"SLEHA15-SP3","description":"SUSE Linux High Availability Extension provides mature, industry-leading open-source high-availability clustering technologies that are easy to set up and use. It can be deployed in physical and/or virtual environments, and can cluster physical servers, virtual servers, or any combination of the two to suit your business’ needs.","eula_url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP3/x86_64/product.license/","arch":"x86_64"}],"release_stage":"released","id":2153,"identifier":"sle-module-server-applications","friendly_version":"15 SP3","offline_predecessor_ids":[],"name":"Server Applications Module","release_type":null,"former_identifier":"sle-module-server-applications","migration_extra":false,"friendly_name":"Server Applications Module 15 SP3 x86_64","recommended":true,"version":"15.3","product_type":"module","cpe":"cpe:/o:suse:sle-module-server-applications:15:sp3","predecessor_ids":[1580,1780,1955],"online_predecessor_ids":[1580,1780,1955],"repositories":[{"installer_updates":false,"name":"SLE-Module-Server-Applications15-SP3-Updates","description":"SLE-Module-Server-Applications15-SP3-Updates for sle-15-x86_64","id":4674,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15-SP3/x86_64/update/","distro_target":"sle-15-x86_64","autorefresh":true},{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15-SP3/x86_64/update_debug/","autorefresh":true,"distro_target":"sle-15-x86_64","id":4675,"enabled":false,"description":"SLE-Module-Server-Applications15-SP3-Debuginfo-Updates for sle-15-x86_64","name":"SLE-Module-Server-Applications15-SP3-Debuginfo-Updates","installer_updates":false},{"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP3/x86_64/product/","enabled":true,"id":4676,"description":"SLE-Module-Server-Applications15-SP3-Pool for sle-15-x86_64","name":"SLE-Module-Server-Applications15-SP3-Pool","installer_updates":false},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP3/x86_64/product_debug/","autorefresh":false,"distro_target":"sle-15-x86_64","id":4677,"enabled":false,"description":"SLE-Module-Server-Applications15-SP3-Debuginfo-Pool for sle-15-x86_64","name":"SLE-Module-Server-Applications15-SP3-Debuginfo-Pool","installer_updates":false},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP3/x86_64/product_source/","autorefresh":false,"distro_target":"sle-15-x86_64","id":4678,"enabled":false,"description":"SLE-Module-Server-Applications15-SP3-Source-Pool for sle-15-x86_64","name":"SLE-Module-Server-Applications15-SP3-Source-Pool","installer_updates":false}],"product_class":"MODULE","eula_url":"","arch":"x86_64","free":true,"description":"

The SUSE Linux Enterprise Server Applications Module delivers a basic set of Server functionality.

Access to the Server Applications Module is included in your SUSE Linux Enterprise Server subscription.

","shortname":"Server-Applications-Module"},{"recommended":false,"version":"15.3","name":"Containers Module","offline_predecessor_ids":[1332],"friendly_name":"Containers Module 15 SP3 x86_64","migration_extra":false,"former_identifier":"sle-module-containers","release_type":null,"friendly_version":"15 SP3","extensions":[],"release_stage":"released","id":2157,"identifier":"sle-module-containers","description":"

This Module contains several packages revolving around containers and related tools.

","shortname":"Containers-Module","free":true,"eula_url":"","arch":"x86_64","predecessor_ids":[1642,1790,1963],"product_class":"MODULE","online_predecessor_ids":[1642,1790,1963],"repositories":[{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/15-SP3/x86_64/update/","distro_target":"sle-15-x86_64","autorefresh":true,"id":4694,"enabled":true,"description":"SLE-Module-Containers15-SP3-Updates for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Containers15-SP3-Updates"},{"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/15-SP3/x86_64/update_debug/","enabled":false,"id":4695,"description":"SLE-Module-Containers15-SP3-Debuginfo-Updates for sle-15-x86_64","name":"SLE-Module-Containers15-SP3-Debuginfo-Updates","installer_updates":false},{"id":4696,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP3/x86_64/product/","autorefresh":false,"distro_target":"sle-15-x86_64","name":"SLE-Module-Containers15-SP3-Pool","installer_updates":false,"description":"SLE-Module-Containers15-SP3-Pool for sle-15-x86_64"},{"installer_updates":false,"name":"SLE-Module-Containers15-SP3-Debuginfo-Pool","description":"SLE-Module-Containers15-SP3-Debuginfo-Pool for sle-15-x86_64","id":4697,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP3/x86_64/product_debug/","distro_target":"sle-15-x86_64","autorefresh":false},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP3/x86_64/product_source/","autorefresh":false,"distro_target":"sle-15-x86_64","id":4698,"enabled":false,"description":"SLE-Module-Containers15-SP3-Source-Pool for sle-15-x86_64","name":"SLE-Module-Containers15-SP3-Source-Pool","installer_updates":false}],"cpe":"cpe:/o:suse:sle-module-containers:15:sp3","product_type":"module"},{"arch":"x86_64","eula_url":"","free":true,"description":"

This module contains the python 2 packages.

Access to the Python 2 Module is included in your SUSE Linux Enterprise subscription. The module has a different lifecycle than SUSE Linux Enterprise itself. Packages in the this module are usually supported for at most three years.

","shortname":"Python2-Module","product_type":"module","cpe":"cpe:/o:suse:sle-module-python2:15:sp3","repositories":[{"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Python2/15-SP3/x86_64/update/","enabled":true,"id":4829,"description":"SLE-Module-Python2-15-SP3-Updates for sle-15-x86_64","name":"SLE-Module-Python2-15-SP3-Updates","installer_updates":false},{"description":"SLE-Module-Python2-15-SP3-Debuginfo-Updates for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Python2-15-SP3-Debuginfo-Updates","distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Python2/15-SP3/x86_64/update_debug/","enabled":false,"id":4830},{"name":"SLE-Module-Python2-15-SP3-Pool","installer_updates":false,"description":"SLE-Module-Python2-15-SP3-Pool for sle-15-x86_64","id":4831,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Python2/15-SP3/x86_64/product/","autorefresh":false,"distro_target":"sle-15-x86_64"},{"id":4832,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Python2/15-SP3/x86_64/product_debug/","distro_target":"sle-15-x86_64","autorefresh":false,"installer_updates":false,"name":"SLE-Module-Python2-15-SP3-Debuginfo-Pool","description":"SLE-Module-Python2-15-SP3-Debuginfo-Pool for sle-15-x86_64"},{"description":"SLE-Module-Python2-15-SP3-Source-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Python2-15-SP3-Source-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Python2/15-SP3/x86_64/product_source/","distro_target":"sle-15-x86_64","autorefresh":false,"id":4833,"enabled":false}],"online_predecessor_ids":[1867,1992],"product_class":"MODULE","predecessor_ids":[1867,1992],"release_type":null,"former_identifier":"sle-module-python2","migration_extra":true,"friendly_name":"Python 2 Module 15 SP3 x86_64","offline_predecessor_ids":[],"name":"Python 2 Module","version":"15.3","recommended":true,"id":2184,"release_stage":"released","identifier":"sle-module-python2","extensions":[],"friendly_version":"15 SP3"},{"cpe":"cpe:/o:suse:sle-module-live-patching:15:sp3","product_type":"extension","predecessor_ids":[1736,1828,1984],"online_predecessor_ids":[1736,1828,1984],"product_class":"SLE-LP","repositories":[{"name":"SLE-Module-Live-Patching15-SP3-Updates","installer_updates":false,"description":"SLE-Module-Live-Patching15-SP3-Updates for sle-15-x86_64","enabled":true,"id":4844,"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Live-Patching/15-SP3/x86_64/update/"},{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Live-Patching/15-SP3/x86_64/update_debug/","distro_target":"sle-15-x86_64","autorefresh":true,"id":4845,"enabled":false,"description":"SLE-Module-Live-Patching15-SP3-Debuginfo-Updates for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Live-Patching15-SP3-Debuginfo-Updates"},{"installer_updates":false,"name":"SLE-Module-Live-Patching15-SP3-Pool","description":"SLE-Module-Live-Patching15-SP3-Pool for sle-15-x86_64","enabled":true,"id":4846,"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Live-Patching/15-SP3/x86_64/product/"},{"name":"SLE-Module-Live-Patching15-SP3-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-Live-Patching15-SP3-Debuginfo-Pool for sle-15-x86_64","id":4847,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Live-Patching/15-SP3/x86_64/product_debug/","autorefresh":false,"distro_target":"sle-15-x86_64"},{"description":"SLE-Module-Live-Patching15-SP3-Source-Pool for sle-15-x86_64","name":"SLE-Module-Live-Patching15-SP3-Source-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Live-Patching/15-SP3/x86_64/product_source/","enabled":false,"id":4848}],"eula_url":"","arch":"x86_64","description":"

SUSE Linux Enterprise Live Patching provides packages to update critical components in SUSE Linux Enterprise. With SUSE Linux Enterprise Live Patching, you can perform critical patching without shutting down your system, reducing the need for planned downtime and increasing service availability.

","shortname":"Live-Patching","free":false,"extensions":[],"identifier":"sle-module-live-patching","release_stage":"released","id":2187,"friendly_version":"15 SP3","name":"SUSE Linux Enterprise Live Patching","offline_predecessor_ids":[1536,1757,1888],"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Live Patching 15 SP3 x86_64","release_type":null,"former_identifier":"sle-module-live-patching","recommended":false,"version":"15.3"},{"friendly_version":"15 SP3","extensions":[],"identifier":"PackageHub","release_stage":"released","id":2191,"recommended":false,"version":"15.3","name":"SUSE Package Hub","offline_predecessor_ids":[1529,1813,1915],"migration_extra":false,"friendly_name":"SUSE Package Hub 15 SP3 x86_64","release_type":null,"former_identifier":"PackageHub","predecessor_ids":[1743,1871,1950],"online_predecessor_ids":[1743,1871,1950],"repositories":[{"description":"SUSE-PackageHub-15-SP3-Backports-Pool for sle-15-x86_64","installer_updates":false,"name":"SUSE-PackageHub-15-SP3-Backports-Pool","distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Backports/SLE-15-SP3_x86_64/standard/","enabled":true,"id":4873},{"installer_updates":false,"name":"SUSE-PackageHub-15-SP3-Backports-Debuginfo","description":"SUSE-PackageHub-15-SP3-Backports-Debuginfo for sle-15-x86_64","enabled":false,"id":4874,"distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Backports/SLE-15-SP3_x86_64/standard_debug/"},{"installer_updates":false,"name":"SLE-Module-Packagehub-Subpackages15-SP3-Updates","description":"SLE-Module-Packagehub-Subpackages15-SP3-Updates for sle-15-x86_64","enabled":true,"id":4875,"distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP3/x86_64/update/"},{"name":"SLE-Module-Packagehub-Subpackages15-SP3-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-Packagehub-Subpackages15-SP3-Debuginfo-Updates for sle-15-x86_64","id":4876,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP3/x86_64/update_debug/","autorefresh":true,"distro_target":"sle-15-x86_64"},{"description":"SUSE-PackageHub-15-SP3-Pool for sle-15-x86_64","name":"SUSE-PackageHub-15-SP3-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Backports/SLE-15-SP3_x86_64/product/","autorefresh":false,"distro_target":"sle-15-x86_64","id":4877,"enabled":true},{"description":"SLE-Module-Packagehub-Subpackages15-SP3-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Packagehub-Subpackages15-SP3-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP3/x86_64/product/","distro_target":"sle-15-x86_64","autorefresh":false,"id":4878,"enabled":true},{"name":"SLE-Module-Packagehub-Subpackages15-SP3-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-Packagehub-Subpackages15-SP3-Debuginfo-Pool for sle-15-x86_64","enabled":false,"id":4879,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP3/x86_64/product_debug/"},{"installer_updates":false,"name":"SLE-Module-Packagehub-Subpackages15-SP3-Source-Pool","description":"SLE-Module-Packagehub-Subpackages15-SP3-Source-Pool for sle-15-x86_64","id":4880,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP3/x86_64/product_source/","distro_target":"sle-15-x86_64","autorefresh":false}],"product_class":"MODULE","cpe":"cpe:/o:suse:packagehub:15:sp3","product_type":"module","description":"SUSE Package Hub is a free of charge module providing access to community maintained packages built to run on SUSE Linux Enterprise Server. Built from the same sources used in the openSUSE distributions, these quality packages provide additional software to what is found in the SUSE Linux Enterprise Server product. Packages from the Package Hub are delivered without L3 support from SUSE. General updates and fixes to the packages in SUSE Package Hub are provided by the openSUSE community based on their discretion, though SUSE will monitor and ensure that any known critical security issues will be addressed. Packages in the Package Hub are approved by SUSE for use with SUSE Linux Enterprise Server 15-SP3 and to not interfere with the supportability of SUSE Linux Enterprise Server, its modules and extensions. For more information about SUSE Package Hub please visit https://packagehub.suse.com.","shortname":"SUSE-PackageHub-15","free":true,"eula_url":"","arch":"x86_64"}],"release_stage":"released","id":2145,"identifier":"sle-module-basesystem","friendly_version":"15 SP3"},{"friendly_version":"15 SP3","extensions":[],"id":2213,"release_stage":"released","identifier":"SLE_HPC-LTSS","recommended":false,"version":"15.3","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise High Performance Computing LTSS","former_identifier":"SLE_HPC-LTSS","release_type":null,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise High Performance Computing LTSS 15 SP3 x86_64","predecessor_ids":[],"online_predecessor_ids":[],"repositories":[{"name":"SLE-Product-HPC-15-SP3-LTSS-Updates","installer_updates":false,"description":"SLE-Product-HPC-15-SP3-LTSS-Updates for sle-15-x86_64","enabled":true,"id":4956,"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Product-HPC/15-SP3-LTSS/x86_64/update/"},{"description":"SLE-Product-HPC-15-SP3-LTSS-Debuginfo-Updates for sle-15-x86_64","name":"SLE-Product-HPC-15-SP3-LTSS-Debuginfo-Updates","installer_updates":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-HPC/15-SP3-LTSS/x86_64/update_debug/","autorefresh":true,"distro_target":"sle-15-x86_64","id":4957,"enabled":false},{"description":"SLE-Product-HPC-15-SP3-LTSS-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Product-HPC-15-SP3-LTSS-Pool","distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-HPC/15-SP3-LTSS/x86_64/product/","enabled":true,"id":4958},{"enabled":false,"id":4959,"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-HPC/15-SP3-LTSS/x86_64/product_debug/","installer_updates":false,"name":"SLE-Product-HPC-15-SP3-LTSS-Debuginfo-Pool","description":"SLE-Product-HPC-15-SP3-LTSS-Debuginfo-Pool for sle-15-x86_64"},{"id":4960,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-HPC/15-SP3-LTSS/x86_64/product_source/","autorefresh":false,"distro_target":"sle-15-x86_64","name":"SLE-Product-HPC-15-SP3-LTSS-Source-Pool","installer_updates":false,"description":"SLE-Product-HPC-15-SP3-LTSS-Source-Pool for sle-15-x86_64"}],"product_class":"HPC15-SP3-LTSS-X86","product_type":"extension","cpe":"cpe:/o:suse:sle_hpc-ltss:15:sp3","free":false,"shortname":"SLE_HPC-LTSS-15-SP3","description":"

SUSE Linux Enterprise High Performance Computing is a highly scalable, high performance open source operating system designed to utilize the power of parallel computing for modeling, simulation and advanced analytics workloads.

","eula_url":"","arch":"x86_64"},{"version":"15.3","recommended":false,"friendly_name":"SUSE Linux Enterprise High Performance Computing ESPOS 15 SP3 x86_64","migration_extra":false,"former_identifier":"SLE_HPC-ESPOS","release_type":null,"name":"SUSE Linux Enterprise High Performance Computing ESPOS","offline_predecessor_ids":[],"friendly_version":"15 SP3","release_stage":"released","id":2215,"identifier":"SLE_HPC-ESPOS","extensions":[],"description":"

SUSE Linux Enterprise High Performance Computing is a highly scalable, high performance open source operating system designed to utilize the power of parallel computing for modeling, simulation and advanced analytics workloads.

","shortname":"SLE_HPC-ESPOS-15-SP3","free":false,"arch":"x86_64","eula_url":"","online_predecessor_ids":[2127,2129],"product_class":"SLE-ESPOS-X86","repositories":[{"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Product-HPC/15-SP3-ESPOS/x86_64/update/","enabled":true,"id":4966,"description":"SLE-Product-HPC-15-SP3-ESPOS-Updates for sle-15-x86_64","name":"SLE-Product-HPC-15-SP3-ESPOS-Updates","installer_updates":false},{"description":"SLE-Product-HPC-15-SP3-ESPOS-Debuginfo-Updates for sle-15-x86_64","name":"SLE-Product-HPC-15-SP3-ESPOS-Debuginfo-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Product-HPC/15-SP3-ESPOS/x86_64/update_debug/","enabled":false,"id":4967},{"name":"SLE-Product-HPC-15-SP3-ESPOS-Pool","installer_updates":false,"description":"SLE-Product-HPC-15-SP3-ESPOS-Pool for sle-15-x86_64","id":4968,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-HPC/15-SP3-ESPOS/x86_64/product/","autorefresh":false,"distro_target":"sle-15-x86_64"},{"enabled":false,"id":4969,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Product-HPC/15-SP3-ESPOS/x86_64/product_debug/","name":"SLE-Product-HPC-15-SP3-ESPOS-Debuginfo-Pool","installer_updates":false,"description":"SLE-Product-HPC-15-SP3-ESPOS-Debuginfo-Pool for sle-15-x86_64"},{"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-HPC/15-SP3-ESPOS/x86_64/product_source/","enabled":false,"id":4970,"description":"SLE-Product-HPC-15-SP3-ESPOS-Source-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Product-HPC-15-SP3-ESPOS-Source-Pool"}],"predecessor_ids":[2127,2129],"cpe":"cpe:/o:suse:sle_hpc-espos:15:sp3","product_type":"extension"},{"recommended":false,"version":"15.3","offline_predecessor_ids":[],"name":"Certifications Module","former_identifier":"sle-module-certifications","release_type":null,"migration_extra":false,"friendly_name":"Certifications Module 15 SP3 x86_64","friendly_version":"15 SP3","extensions":[],"identifier":"sle-module-certifications","release_stage":"released","id":2389,"free":true,"shortname":"Certifications-Module","description":"

This module contains the certification packages.

Access to the Certifications Module is included in your SUSE Linux Enterprise subscription. The module has a different lifecycle than SUSE Linux Enterprise itself; please check the Release Notes for further details.

","eula_url":"","arch":"x86_64","predecessor_ids":[],"repositories":[{"description":"SLE-Module-Certifications-15-SP3-Updates for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Certifications-15-SP3-Updates","distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Certifications/15-SP3/x86_64/update/","enabled":true,"id":5527},{"enabled":false,"id":5528,"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Certifications/15-SP3/x86_64/update_debug/","name":"SLE-Module-Certifications-15-SP3-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-Certifications-15-SP3-Debuginfo-Updates for sle-15-x86_64"},{"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Certifications/15-SP3/x86_64/product/","enabled":true,"id":5529,"description":"SLE-Module-Certifications-15-SP3-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Certifications-15-SP3-Pool"},{"description":"SLE-Module-Certifications-15-SP3-Debuginfo-Pool for sle-15-x86_64","name":"SLE-Module-Certifications-15-SP3-Debuginfo-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Certifications/15-SP3/x86_64/product_debug/","enabled":false,"id":5530},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Certifications/15-SP3/x86_64/product_source/","autorefresh":false,"distro_target":"sle-15-x86_64","id":5531,"enabled":false,"description":"SLE-Module-Certifications-15-SP3-Source-Pool for sle-15-x86_64","name":"SLE-Module-Certifications-15-SP3-Source-Pool","installer_updates":false}],"online_predecessor_ids":[],"product_class":"MODULE","product_type":"module","cpe":"cpe:/o:suse:sle-module-certifications:15:sp3"}],"version":"15.3","recommended":false,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise High Performance Computing 15 SP3 x86_64","former_identifier":"SLE_HPC","release_type":null,"name":"SUSE Linux Enterprise High Performance Computing","offline_predecessor_ids":[1625,1759,1873,1878],"repositories":[{"name":"SLE-Product-HPC-15-SP3-Updates","installer_updates":false,"description":"SLE-Product-HPC-15-SP3-Updates for sle-15-x86_64","enabled":true,"id":4569,"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Product-HPC/15-SP3/x86_64/update/"},{"enabled":false,"id":4570,"distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-HPC/15-SP3/x86_64/update_debug/","installer_updates":false,"name":"SLE-Product-HPC15-SP3-Debuginfo-Updates","description":"SLE-Product-HPC15-SP3-Debuginfo-Updates for sle-15-x86_64"},{"enabled":true,"id":4571,"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-HPC/15-SP3/x86_64/product/","installer_updates":false,"name":"SLE-Product-HPC-15-SP3-Pool","description":"SLE-Product-HPC-15-SP3-Pool for sle-15-x86_64"},{"description":"SLE-Product-HPC15-SP3-Debuginfo-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Product-HPC15-SP3-Debuginfo-Pool","distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-HPC/15-SP3/x86_64/product_debug/","enabled":false,"id":4572},{"description":"SLE-Product-HPC15-SP3-Source-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Product-HPC15-SP3-Source-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Product-HPC/15-SP3/x86_64/product_source/","distro_target":"sle-15-x86_64","autorefresh":false,"id":4573,"enabled":false}],"online_predecessor_ids":[1732,1768,1934],"product_class":"HPC-X86","predecessor_ids":[1732,1768,1934],"cpe":"cpe:/o:suse:sle_hpc:15:sp3","product_type":"base","shortname":"SLE-15-SP3-HPC","description":"

SUSE Linux Enterprise High Performance Computing is a highly scalable, high performance open source operating system designed to utilize the power of parallel computing for modeling, simulation and advanced analytics workloads.

","free":false,"arch":"x86_64","eula_url":""},{"recommended":false,"version":"15.3","offline_predecessor_ids":[1629],"name":"SUSE Linux Enterprise Desktop","release_type":null,"former_identifier":"SLED","friendly_name":"SUSE Linux Enterprise Desktop 15 SP3 x86_64","migration_extra":false,"friendly_version":"15 SP3","extensions":[{"friendly_version":"15 SP3","identifier":"sle-module-basesystem","release_stage":"released","id":2145,"extensions":[{"recommended":true,"version":"15.3","offline_predecessor_ids":[],"name":"Desktop Applications Module","former_identifier":"sle-module-desktop-applications","release_type":null,"migration_extra":false,"friendly_name":"Desktop Applications Module 15 SP3 x86_64","friendly_version":"15 SP3","extensions":[{"eula_url":"","arch":"x86_64","description":"

The Development Tools Module helps you developing applications for SUSE Linux Enterprise 15.

Access to the Development Tools Module is included in your SUSE Linux Enterprise product subscription. The module has a different lifecycle than SUSE Linux Enterprise itself.

","shortname":"Development-Tools-Module","free":true,"cpe":"cpe:/o:suse:sle-module-development-tools:15:sp3","product_type":"module","predecessor_ids":[1579,1794,1971],"repositories":[{"description":"SLE-Module-DevTools15-SP3-Updates for sle-15-x86_64","name":"SLE-Module-DevTools15-SP3-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15-SP3/x86_64/update/","enabled":true,"id":4714},{"description":"SLE-Module-DevTools15-SP3-Debuginfo-Updates for sle-15-x86_64","name":"SLE-Module-DevTools15-SP3-Debuginfo-Updates","installer_updates":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15-SP3/x86_64/update_debug/","autorefresh":true,"distro_target":"sle-15-x86_64","id":4715,"enabled":false},{"name":"SLE-Module-DevTools15-SP3-Pool","installer_updates":false,"description":"SLE-Module-DevTools15-SP3-Pool for sle-15-x86_64","id":4716,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP3/x86_64/product/","autorefresh":false,"distro_target":"sle-15-x86_64"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP3/x86_64/product_debug/","autorefresh":false,"distro_target":"sle-15-x86_64","id":4717,"enabled":false,"description":"SLE-Module-DevTools15-SP3-Debuginfo-Pool for sle-15-x86_64","name":"SLE-Module-DevTools15-SP3-Debuginfo-Pool","installer_updates":false},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP3/x86_64/product_source/","distro_target":"sle-15-x86_64","autorefresh":false,"id":4718,"enabled":false,"description":"SLE-Module-DevTools15-SP3-Source-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-DevTools15-SP3-Source-Pool"}],"online_predecessor_ids":[1579,1794,1971],"product_class":"MODULE","name":"Development Tools Module","offline_predecessor_ids":[1341,1427,1630,1892],"migration_extra":false,"friendly_name":"Development Tools Module 15 SP3 x86_64","former_identifier":"sle-sdk","release_type":null,"recommended":false,"version":"15.3","extensions":[],"release_stage":"released","identifier":"sle-module-development-tools","id":2161,"friendly_version":"15 SP3"},{"online_predecessor_ids":[1583,1781,1999],"repositories":[{"installer_updates":false,"name":"SLE-15-SP3-Desktop-NVIDIA-Driver","description":"SLE-15-SP3-Desktop-NVIDIA-Driver","enabled":true,"id":4577,"distro_target":null,"autorefresh":true,"url":"https://download.nvidia.com/suse/sle15sp3/"},{"id":4901,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-WE/15-SP3/x86_64/update/","autorefresh":true,"distro_target":"sle-15-x86_64","name":"SLE-Product-WE15-SP3-Updates","installer_updates":false,"description":"SLE-Product-WE15-SP3-Updates for sle-15-x86_64"},{"description":"SLE-Product-WE15-SP3-Debuginfo-Updates for sle-15-x86_64","installer_updates":false,"name":"SLE-Product-WE15-SP3-Debuginfo-Updates","distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-WE/15-SP3/x86_64/update_debug/","enabled":false,"id":4902},{"description":"SLE-Product-WE15-SP3-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Product-WE15-SP3-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Product-WE/15-SP3/x86_64/product/","distro_target":"sle-15-x86_64","autorefresh":false,"id":4903,"enabled":true},{"id":4904,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-WE/15-SP3/x86_64/product_debug/","distro_target":"sle-15-x86_64","autorefresh":false,"installer_updates":false,"name":"SLE-Product-WE15-SP3-Debuginfo-Pool","description":"SLE-Product-WE15-SP3-Debuginfo-Pool for sle-15-x86_64"},{"name":"SLE-Product-WE15-SP3-Source-Pool","installer_updates":false,"description":"SLE-Product-WE15-SP3-Source-Pool for sle-15-x86_64","enabled":false,"id":4905,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Product-WE/15-SP3/x86_64/product_source/"}],"product_class":"SLE-WE","predecessor_ids":[1583,1781,1999],"product_type":"extension","cpe":"cpe:/o:suse:sle-we:15:sp3","free":false,"shortname":"SLEWE15-SP3","description":"SUSE Linux Enterprise Workstation Extension adds additional functionality to a base SUSE Linux Enterprise installation. The Workstation Extension offers additional desktop applications (office suite, email client, graphical editor, multimedia tools) and libraries. Workstation Extension is enabled and installed by default on SUSE Linux Enterprise Desktop installation. Adding the Workstation Extension to a SUSE Linux Enterprise Server installation allows to seamlessly combine both products to create a full featured server workstation.","arch":"x86_64","eula_url":"https://updates.suse.com/SUSE/Products/SLE-Product-WE/15-SP3/x86_64/product.license/","friendly_version":"15 SP3","release_stage":"released","identifier":"sle-we","id":2196,"extensions":[],"version":"15.3","recommended":true,"release_type":null,"former_identifier":"sle-we","friendly_name":"SUSE Linux Enterprise Workstation Extension 15 SP3 x86_64","migration_extra":false,"offline_predecessor_ids":[1431,1639,1893],"name":"SUSE Linux Enterprise Workstation Extension"}],"identifier":"sle-module-desktop-applications","release_stage":"released","id":2149,"free":true,"description":"

The SUSE Linux Enterprise Desktop Applications Module delivers a basic set of Desktop functionality.

Access to the Desktop Applications Module is included in your SUSE Linux Enterprise product subscription.

","shortname":"Desktop-Applications-Module","eula_url":"","arch":"x86_64","predecessor_ids":[1578,1776,1967],"repositories":[{"description":"SLE-Module-Desktop-Applications15-SP3-Updates for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Desktop-Applications15-SP3-Updates","distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15-SP3/x86_64/update/","enabled":true,"id":4654},{"id":4655,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15-SP3/x86_64/update_debug/","distro_target":"sle-15-x86_64","autorefresh":true,"installer_updates":false,"name":"SLE-Module-Desktop-Applications15-SP3-Debuginfo-Updates","description":"SLE-Module-Desktop-Applications15-SP3-Debuginfo-Updates for sle-15-x86_64"},{"name":"SLE-Module-Desktop-Applications15-SP3-Pool","installer_updates":false,"description":"SLE-Module-Desktop-Applications15-SP3-Pool for sle-15-x86_64","id":4656,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP3/x86_64/product/","autorefresh":false,"distro_target":"sle-15-x86_64"},{"id":4657,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP3/x86_64/product_debug/","autorefresh":false,"distro_target":"sle-15-x86_64","name":"SLE-Module-Desktop-Applications15-SP3-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-Desktop-Applications15-SP3-Debuginfo-Pool for sle-15-x86_64"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP3/x86_64/product_source/","autorefresh":false,"distro_target":"sle-15-x86_64","id":4658,"enabled":false,"description":"SLE-Module-Desktop-Applications15-SP3-Source-Pool for sle-15-x86_64","name":"SLE-Module-Desktop-Applications15-SP3-Source-Pool","installer_updates":false}],"online_predecessor_ids":[1578,1776,1967],"product_class":"MODULE","product_type":"module","cpe":"cpe:/o:suse:sle-module-desktop-applications:15:sp3"},{"recommended":false,"version":"15.3","offline_predecessor_ids":[1678],"name":"SUSE Cloud Application Platform Tools Module","release_type":null,"former_identifier":"sle-module-cap-tools","migration_extra":false,"friendly_name":"SUSE Cloud Application Platform Tools Module 15 SP3 x86_64","friendly_version":"15 SP3","extensions":[],"identifier":"sle-module-cap-tools","release_stage":"released","id":2176,"free":true,"shortname":"SUSE-CAP-Tools-Module","description":"

The SUSE Cloud Application Platform Tools Module is a collection of tools that enables you to interact with the SUSE Cloud Application Platform product itself, providing the commandline client for instance.

Access to the SUSE Cloud Application Platform Tools Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself; please check the Release Notes for further details.

","eula_url":"","arch":"x86_64","predecessor_ids":[1728,1809,2075],"repositories":[{"enabled":true,"id":4789,"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-CAP-Tools/15-SP3/x86_64/update/","name":"SLE-Module-CAP-Tools15-SP3-Updates","installer_updates":false,"description":"SLE-Module-CAP-Tools15-SP3-Updates for sle-15-x86_64"},{"id":4790,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-CAP-Tools/15-SP3/x86_64/update_debug/","autorefresh":true,"distro_target":"sle-15-x86_64","name":"SLE-Module-CAP-Tools15-SP3-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-CAP-Tools15-SP3-Debuginfo-Updates for sle-15-x86_64"},{"installer_updates":false,"name":"SLE-Module-CAP-Tools15-SP3-Pool","description":"SLE-Module-CAP-Tools15-SP3-Pool for sle-15-x86_64","enabled":true,"id":4791,"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-CAP-Tools/15-SP3/x86_64/product/"},{"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-CAP-Tools/15-SP3/x86_64/product_debug/","enabled":false,"id":4792,"description":"SLE-Module-CAP-Tools15-SP3-Debuginfo-Pool for sle-15-x86_64","name":"SLE-Module-CAP-Tools15-SP3-Debuginfo-Pool","installer_updates":false},{"description":"SLE-Module-CAP-Tools15-SP3-Source-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-CAP-Tools15-SP3-Source-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-CAP-Tools/15-SP3/x86_64/product_source/","distro_target":"sle-15-x86_64","autorefresh":false,"id":4793,"enabled":false}],"online_predecessor_ids":[1728,1809,2075],"product_class":"MODULE","product_type":"module","cpe":"cpe:/o:suse:sle-module-cap-tools:15:sp3"},{"product_class":"MODULE","online_predecessor_ids":[1867,1992],"repositories":[{"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Python2/15-SP3/x86_64/update/","enabled":true,"id":4829,"description":"SLE-Module-Python2-15-SP3-Updates for sle-15-x86_64","name":"SLE-Module-Python2-15-SP3-Updates","installer_updates":false},{"description":"SLE-Module-Python2-15-SP3-Debuginfo-Updates for sle-15-x86_64","name":"SLE-Module-Python2-15-SP3-Debuginfo-Updates","installer_updates":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Python2/15-SP3/x86_64/update_debug/","autorefresh":true,"distro_target":"sle-15-x86_64","id":4830,"enabled":false},{"name":"SLE-Module-Python2-15-SP3-Pool","installer_updates":false,"description":"SLE-Module-Python2-15-SP3-Pool for sle-15-x86_64","id":4831,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Python2/15-SP3/x86_64/product/","autorefresh":false,"distro_target":"sle-15-x86_64"},{"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Python2/15-SP3/x86_64/product_debug/","enabled":false,"id":4832,"description":"SLE-Module-Python2-15-SP3-Debuginfo-Pool for sle-15-x86_64","name":"SLE-Module-Python2-15-SP3-Debuginfo-Pool","installer_updates":false},{"description":"SLE-Module-Python2-15-SP3-Source-Pool for sle-15-x86_64","name":"SLE-Module-Python2-15-SP3-Source-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Python2/15-SP3/x86_64/product_source/","autorefresh":false,"distro_target":"sle-15-x86_64","id":4833,"enabled":false}],"predecessor_ids":[1867,1992],"product_type":"module","cpe":"cpe:/o:suse:sle-module-python2:15:sp3","free":true,"shortname":"Python2-Module","description":"

This module contains the python 2 packages.

Access to the Python 2 Module is included in your SUSE Linux Enterprise subscription. The module has a different lifecycle than SUSE Linux Enterprise itself. Packages in the this module are usually supported for at most three years.

","arch":"x86_64","eula_url":"","friendly_version":"15 SP3","release_stage":"released","identifier":"sle-module-python2","id":2184,"extensions":[],"version":"15.3","recommended":true,"former_identifier":"sle-module-python2","release_type":null,"migration_extra":true,"friendly_name":"Python 2 Module 15 SP3 x86_64","offline_predecessor_ids":[],"name":"Python 2 Module"},{"product_type":"module","cpe":"cpe:/o:suse:packagehub:15:sp3","online_predecessor_ids":[1743,1871,1950],"repositories":[{"installer_updates":false,"name":"SUSE-PackageHub-15-SP3-Backports-Pool","description":"SUSE-PackageHub-15-SP3-Backports-Pool for sle-15-x86_64","enabled":true,"id":4873,"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Backports/SLE-15-SP3_x86_64/standard/"},{"installer_updates":false,"name":"SUSE-PackageHub-15-SP3-Backports-Debuginfo","description":"SUSE-PackageHub-15-SP3-Backports-Debuginfo for sle-15-x86_64","enabled":false,"id":4874,"distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Backports/SLE-15-SP3_x86_64/standard_debug/"},{"description":"SLE-Module-Packagehub-Subpackages15-SP3-Updates for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Packagehub-Subpackages15-SP3-Updates","distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP3/x86_64/update/","enabled":true,"id":4875},{"description":"SLE-Module-Packagehub-Subpackages15-SP3-Debuginfo-Updates for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Packagehub-Subpackages15-SP3-Debuginfo-Updates","distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP3/x86_64/update_debug/","enabled":false,"id":4876},{"enabled":true,"id":4877,"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Backports/SLE-15-SP3_x86_64/product/","installer_updates":false,"name":"SUSE-PackageHub-15-SP3-Pool","description":"SUSE-PackageHub-15-SP3-Pool for sle-15-x86_64"},{"enabled":true,"id":4878,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP3/x86_64/product/","name":"SLE-Module-Packagehub-Subpackages15-SP3-Pool","installer_updates":false,"description":"SLE-Module-Packagehub-Subpackages15-SP3-Pool for sle-15-x86_64"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP3/x86_64/product_debug/","autorefresh":false,"distro_target":"sle-15-x86_64","id":4879,"enabled":false,"description":"SLE-Module-Packagehub-Subpackages15-SP3-Debuginfo-Pool for sle-15-x86_64","name":"SLE-Module-Packagehub-Subpackages15-SP3-Debuginfo-Pool","installer_updates":false},{"description":"SLE-Module-Packagehub-Subpackages15-SP3-Source-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Packagehub-Subpackages15-SP3-Source-Pool","distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP3/x86_64/product_source/","enabled":false,"id":4880}],"product_class":"MODULE","predecessor_ids":[1743,1871,1950],"arch":"x86_64","eula_url":"","free":true,"shortname":"SUSE-PackageHub-15","description":"SUSE Package Hub is a free of charge module providing access to community maintained packages built to run on SUSE Linux Enterprise Server. Built from the same sources used in the openSUSE distributions, these quality packages provide additional software to what is found in the SUSE Linux Enterprise Server product. Packages from the Package Hub are delivered without L3 support from SUSE. General updates and fixes to the packages in SUSE Package Hub are provided by the openSUSE community based on their discretion, though SUSE will monitor and ensure that any known critical security issues will be addressed. Packages in the Package Hub are approved by SUSE for use with SUSE Linux Enterprise Server 15-SP3 and to not interfere with the supportability of SUSE Linux Enterprise Server, its modules and extensions. For more information about SUSE Package Hub please visit https://packagehub.suse.com.","release_stage":"released","identifier":"PackageHub","id":2191,"extensions":[],"friendly_version":"15 SP3","former_identifier":"PackageHub","release_type":null,"friendly_name":"SUSE Package Hub 15 SP3 x86_64","migration_extra":false,"offline_predecessor_ids":[1529,1813,1915],"name":"SUSE Package Hub","version":"15.3","recommended":false}],"version":"15.3","recommended":true,"release_type":null,"former_identifier":"sle-module-basesystem","migration_extra":false,"friendly_name":"Basesystem Module 15 SP3 x86_64","offline_predecessor_ids":[1212,1368,1440],"name":"Basesystem Module","online_predecessor_ids":[1576,1772,1946],"product_class":"MODULE","repositories":[{"installer_updates":false,"name":"SLE-Module-Basesystem15-SP3-Updates","description":"SLE-Module-Basesystem15-SP3-Updates for sle-15-x86_64","id":4634,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15-SP3/x86_64/update/","distro_target":"sle-15-x86_64","autorefresh":true},{"enabled":false,"id":4635,"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15-SP3/x86_64/update_debug/","name":"SLE-Module-Basesystem15-SP3-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-Basesystem15-SP3-Debuginfo-Updates for sle-15-x86_64"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP3/x86_64/product/","autorefresh":false,"distro_target":"sle-15-x86_64","id":4636,"enabled":true,"description":"SLE-Module-Basesystem15-SP3-Pool for sle-15-x86_64","name":"SLE-Module-Basesystem15-SP3-Pool","installer_updates":false},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP3/x86_64/product_debug/","autorefresh":false,"distro_target":"sle-15-x86_64","id":4637,"enabled":false,"description":"SLE-Module-Basesystem15-SP3-Debuginfo-Pool for sle-15-x86_64","name":"SLE-Module-Basesystem15-SP3-Debuginfo-Pool","installer_updates":false},{"name":"SLE-Module-Basesystem15-SP3-Source-Pool","installer_updates":false,"description":"SLE-Module-Basesystem15-SP3-Source-Pool for sle-15-x86_64","enabled":false,"id":4638,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP3/x86_64/product_source/"}],"predecessor_ids":[1576,1772,1946],"product_type":"module","cpe":"cpe:/o:suse:sle-module-basesystem:15:sp3","free":true,"description":"

The SUSE Linux Enterprise Basesystem Module delivers the base system of the product.

","shortname":"Basesystem-Module","arch":"x86_64","eula_url":""},{"extensions":[],"release_stage":"released","id":2389,"identifier":"sle-module-certifications","friendly_version":"15 SP3","offline_predecessor_ids":[],"name":"Certifications Module","release_type":null,"former_identifier":"sle-module-certifications","migration_extra":false,"friendly_name":"Certifications Module 15 SP3 x86_64","recommended":false,"version":"15.3","product_type":"module","cpe":"cpe:/o:suse:sle-module-certifications:15:sp3","predecessor_ids":[],"online_predecessor_ids":[],"repositories":[{"name":"SLE-Module-Certifications-15-SP3-Updates","installer_updates":false,"description":"SLE-Module-Certifications-15-SP3-Updates for sle-15-x86_64","id":5527,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Certifications/15-SP3/x86_64/update/","autorefresh":true,"distro_target":"sle-15-x86_64"},{"id":5528,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Certifications/15-SP3/x86_64/update_debug/","autorefresh":true,"distro_target":"sle-15-x86_64","name":"SLE-Module-Certifications-15-SP3-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-Certifications-15-SP3-Debuginfo-Updates for sle-15-x86_64"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Certifications/15-SP3/x86_64/product/","autorefresh":false,"distro_target":"sle-15-x86_64","id":5529,"enabled":true,"description":"SLE-Module-Certifications-15-SP3-Pool for sle-15-x86_64","name":"SLE-Module-Certifications-15-SP3-Pool","installer_updates":false},{"id":5530,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Certifications/15-SP3/x86_64/product_debug/","distro_target":"sle-15-x86_64","autorefresh":false,"installer_updates":false,"name":"SLE-Module-Certifications-15-SP3-Debuginfo-Pool","description":"SLE-Module-Certifications-15-SP3-Debuginfo-Pool for sle-15-x86_64"},{"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Certifications/15-SP3/x86_64/product_source/","enabled":false,"id":5531,"description":"SLE-Module-Certifications-15-SP3-Source-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Certifications-15-SP3-Source-Pool"}],"product_class":"MODULE","eula_url":"","arch":"x86_64","free":true,"description":"

This module contains the certification packages.

Access to the Certifications Module is included in your SUSE Linux Enterprise subscription. The module has a different lifecycle than SUSE Linux Enterprise itself; please check the Release Notes for further details.

","shortname":"Certifications-Module"}],"identifier":"SLED","release_stage":"released","id":2134,"free":false,"description":"SUSE Linux Enterprise offers a comprehensive suite of products built on a single code base. The platform addresses business needs from the smallest thin-client devices to the world's most powerful high-performance computing and mainframe servers. SUSE Linux Enterprise offers common management tools and technology certifications across the platform, and each product is enterprise-class. SUSE Linux Enterprise provides more than a cute desktop product or a basic server offering. It is the only Linux platform for enterprise computing, and it is now replacing UNIX* and Windows* as well.","shortname":"SLED15-SP3","eula_url":"","arch":"x86_64","predecessor_ids":[1609,1764,1935],"online_predecessor_ids":[1609,1764,1935],"repositories":[{"id":4574,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-SLED/15-SP3/x86_64/update/","autorefresh":true,"distro_target":"sle-15-x86_64","name":"SLE-Product-SLED15-SP3-Updates","installer_updates":false,"description":"SLE-Product-SLED15-SP3-Updates for sle-15-x86_64"},{"name":"SLE-Product-SLED15-SP3-Debuginfo-Updates","installer_updates":false,"description":"SLE-Product-SLED15-SP3-Debuginfo-Updates for sle-15-x86_64","enabled":false,"id":4575,"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Product-SLED/15-SP3/x86_64/update_debug/"},{"description":"SLE-Product-SLED15-SP3-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Product-SLED15-SP3-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Product-SLED/15-SP3/x86_64/product/","distro_target":"sle-15-x86_64","autorefresh":false,"id":4576,"enabled":true},{"enabled":true,"id":4577,"autorefresh":true,"distro_target":null,"url":"https://download.nvidia.com/suse/sle15sp3/","name":"SLE-15-SP3-Desktop-NVIDIA-Driver","installer_updates":false,"description":"SLE-15-SP3-Desktop-NVIDIA-Driver"},{"description":"SLE-Product-SLED15-SP3-Debuginfo-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Product-SLED15-SP3-Debuginfo-Pool","distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-SLED/15-SP3/x86_64/product_debug/","enabled":false,"id":4578},{"id":4579,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-SLED/15-SP3/x86_64/product_source/","autorefresh":false,"distro_target":"sle-15-x86_64","name":"SLE-Product-SLED15-SP3-Source-Pool","installer_updates":false,"description":"SLE-Product-SLED15-SP3-Source-Pool for sle-15-x86_64"}],"product_class":"7260","product_type":"base","cpe":"cpe:/o:suse:sled:15:sp3"},{"offline_predecessor_ids":[1572,1754,1879],"name":"SUSE Linux Enterprise Server for SAP Applications","release_type":null,"former_identifier":"SUSE_SLES_SAP","migration_extra":false,"friendly_name":"SUSE Linux Enterprise Server for SAP Applications 15 SP3 ppc64le","recommended":false,"version":"15.3","extensions":[{"eula_url":"","arch":"ppc64le","shortname":"Basesystem-Module","description":"

The SUSE Linux Enterprise Basesystem Module delivers the base system of the product.

","free":true,"cpe":"cpe:/o:suse:sle-module-basesystem:15:sp3","product_type":"module","predecessor_ids":[1588,1770,1944],"product_class":"MODULE","online_predecessor_ids":[1588,1770,1944],"repositories":[{"description":"SLE-Module-Basesystem15-SP3-Updates for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-Basesystem15-SP3-Updates","distro_target":"sle-15-ppc64le","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15-SP3/ppc64le/update/","enabled":true,"id":4624},{"installer_updates":false,"name":"SLE-Module-Basesystem15-SP3-Debuginfo-Updates","description":"SLE-Module-Basesystem15-SP3-Debuginfo-Updates for sle-15-ppc64le","id":4625,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15-SP3/ppc64le/update_debug/","distro_target":"sle-15-ppc64le","autorefresh":true},{"description":"SLE-Module-Basesystem15-SP3-Pool for sle-15-ppc64le","name":"SLE-Module-Basesystem15-SP3-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP3/ppc64le/product/","enabled":true,"id":4626},{"description":"SLE-Module-Basesystem15-SP3-Debuginfo-Pool for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-Basesystem15-SP3-Debuginfo-Pool","distro_target":"sle-15-ppc64le","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP3/ppc64le/product_debug/","enabled":false,"id":4627},{"distro_target":"sle-15-ppc64le","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP3/ppc64le/product_source/","enabled":false,"id":4628,"description":"SLE-Module-Basesystem15-SP3-Source-Pool for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-Basesystem15-SP3-Source-Pool"}],"name":"Basesystem Module","offline_predecessor_ids":[1294],"migration_extra":false,"friendly_name":"Basesystem Module 15 SP3 ppc64le","former_identifier":"sle-module-basesystem","release_type":null,"recommended":true,"version":"15.3","extensions":[{"extensions":[{"extensions":[],"release_stage":"released","id":2159,"identifier":"sle-module-development-tools","friendly_version":"15 SP3","offline_predecessor_ids":[1339,1428,1631,1890],"name":"Development Tools Module","former_identifier":"sle-sdk","release_type":null,"friendly_name":"Development Tools Module 15 SP3 ppc64le","migration_extra":false,"recommended":false,"version":"15.3","product_type":"module","cpe":"cpe:/o:suse:sle-module-development-tools:15:sp3","predecessor_ids":[1597,1792,1969],"online_predecessor_ids":[1597,1792,1969],"product_class":"MODULE","repositories":[{"installer_updates":false,"name":"SLE-Module-DevTools15-SP3-Updates","description":"SLE-Module-DevTools15-SP3-Updates for sle-15-ppc64le","enabled":true,"id":4704,"distro_target":"sle-15-ppc64le","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15-SP3/ppc64le/update/"},{"description":"SLE-Module-DevTools15-SP3-Debuginfo-Updates for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-DevTools15-SP3-Debuginfo-Updates","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15-SP3/ppc64le/update_debug/","distro_target":"sle-15-ppc64le","autorefresh":true,"id":4705,"enabled":false},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP3/ppc64le/product/","autorefresh":false,"distro_target":"sle-15-ppc64le","id":4706,"enabled":true,"description":"SLE-Module-DevTools15-SP3-Pool for sle-15-ppc64le","name":"SLE-Module-DevTools15-SP3-Pool","installer_updates":false},{"description":"SLE-Module-DevTools15-SP3-Debuginfo-Pool for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-DevTools15-SP3-Debuginfo-Pool","distro_target":"sle-15-ppc64le","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP3/ppc64le/product_debug/","enabled":false,"id":4707},{"installer_updates":false,"name":"SLE-Module-DevTools15-SP3-Source-Pool","description":"SLE-Module-DevTools15-SP3-Source-Pool for sle-15-ppc64le","enabled":false,"id":4708,"distro_target":"sle-15-ppc64le","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP3/ppc64le/product_source/"}],"eula_url":"","arch":"ppc64le","free":true,"shortname":"Development-Tools-Module","description":"

The Development Tools Module helps you developing applications for SUSE Linux Enterprise 15.

Access to the Development Tools Module is included in your SUSE Linux Enterprise product subscription. The module has a different lifecycle than SUSE Linux Enterprise itself.

"}],"release_stage":"released","id":2147,"identifier":"sle-module-desktop-applications","friendly_version":"15 SP3","offline_predecessor_ids":[],"name":"Desktop Applications Module","former_identifier":"sle-module-desktop-applications","release_type":null,"friendly_name":"Desktop Applications Module 15 SP3 ppc64le","migration_extra":false,"recommended":true,"version":"15.3","product_type":"module","cpe":"cpe:/o:suse:sle-module-desktop-applications:15:sp3","predecessor_ids":[1594,1774,1965],"online_predecessor_ids":[1594,1774,1965],"product_class":"MODULE","repositories":[{"installer_updates":false,"name":"SLE-Module-Desktop-Applications15-SP3-Updates","description":"SLE-Module-Desktop-Applications15-SP3-Updates for sle-15-ppc64le","enabled":true,"id":4644,"distro_target":"sle-15-ppc64le","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15-SP3/ppc64le/update/"},{"installer_updates":false,"name":"SLE-Module-Desktop-Applications15-SP3-Debuginfo-Updates","description":"SLE-Module-Desktop-Applications15-SP3-Debuginfo-Updates for sle-15-ppc64le","enabled":false,"id":4645,"distro_target":"sle-15-ppc64le","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15-SP3/ppc64le/update_debug/"},{"description":"SLE-Module-Desktop-Applications15-SP3-Pool for sle-15-ppc64le","name":"SLE-Module-Desktop-Applications15-SP3-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP3/ppc64le/product/","autorefresh":false,"distro_target":"sle-15-ppc64le","id":4646,"enabled":true},{"installer_updates":false,"name":"SLE-Module-Desktop-Applications15-SP3-Debuginfo-Pool","description":"SLE-Module-Desktop-Applications15-SP3-Debuginfo-Pool for sle-15-ppc64le","enabled":false,"id":4647,"distro_target":"sle-15-ppc64le","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP3/ppc64le/product_debug/"},{"distro_target":"sle-15-ppc64le","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP3/ppc64le/product_source/","enabled":false,"id":4648,"description":"SLE-Module-Desktop-Applications15-SP3-Source-Pool for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-Desktop-Applications15-SP3-Source-Pool"}],"eula_url":"","arch":"ppc64le","free":true,"description":"

The SUSE Linux Enterprise Desktop Applications Module delivers a basic set of Desktop functionality.

Access to the Desktop Applications Module is included in your SUSE Linux Enterprise product subscription.

","shortname":"Desktop-Applications-Module"},{"extensions":[{"extensions":[],"release_stage":"released","id":2076,"identifier":"ibm-power-advance-toolchain","friendly_version":"15","name":"IBM POWER Advance Toolchain for SLE","offline_predecessor_ids":[1249],"friendly_name":"IBM POWER Advance Toolchain for SLE 15 ppc64le","migration_extra":false,"release_type":null,"former_identifier":"ibm-power-advance-toolchain","recommended":false,"version":"15","cpe":"cpe:/o:suse:ibm-power-advance-toolchain:15","product_type":"extension","predecessor_ids":[],"online_predecessor_ids":[],"product_class":"MODULE","repositories":[{"description":"IBM-POWER-Adv-Toolchain","installer_updates":false,"name":"IBM-POWER-Adv-Toolchain","url":"https://public.dhe.ibm.com/software/server/POWER/Linux/toolchain/at/suse/SLES_15/","distro_target":null,"autorefresh":true,"id":4430,"enabled":true}],"eula_url":"","arch":"ppc64le","shortname":"IBMPWAT15","description":"IBM POWER Advance Toolchain for SLE 15","free":true},{"arch":"ppc64le","eula_url":"https://public.dhe.ibm.com/software/server/POWER/Linux/yum/OSS/SLES/15/ppc64le.license/","free":true,"shortname":"IBMPWUT15","description":"IBM POWER Tools for SLE 15","product_type":"extension","cpe":"cpe:/o:suse:ibm-power-tools:15","product_class":"MODULE","online_predecessor_ids":[],"repositories":[{"id":4431,"enabled":true,"url":"https://public.dhe.ibm.com/software/server/POWER/Linux/yum/OSS/SLES/15/ppc64le/","distro_target":null,"autorefresh":true,"installer_updates":false,"name":"IBM-POWER-Tools","description":"IBM-POWER-Tools"}],"predecessor_ids":[],"release_type":null,"former_identifier":"ibm-power-tools","friendly_name":"IBM POWER Tools for SLE 15 ppc64le","migration_extra":false,"offline_predecessor_ids":[1250],"name":"IBM POWER Tools for SLE","version":"15","recommended":false,"id":2077,"release_stage":"released","identifier":"ibm-power-tools","extensions":[],"friendly_version":"15"},{"version":"15.3","recommended":false,"release_type":null,"former_identifier":"sle-module-web-scripting","friendly_name":"Web and Scripting Module 15 SP3 ppc64le","migration_extra":false,"offline_predecessor_ids":[1151],"name":"Web and Scripting Module","friendly_version":"15 SP3","release_stage":"released","identifier":"sle-module-web-scripting","id":2163,"extensions":[],"free":true,"shortname":"Web-Scripting-Module","description":"

The SUSE Linux Enterprise Web and Scripting Module should contains additional packages that are helpful when running a webserver.

Access to the Web and Scripting Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself: Package versions in this module are usually supported for at most three years. We are planning to release more recent versions on a schedule of approximately 18 month; the exact dates may differ per package.

","arch":"ppc64le","eula_url":"","online_predecessor_ids":[1719,1796,1974],"product_class":"MODULE","repositories":[{"enabled":true,"id":4724,"distro_target":"sle-15-ppc64le","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/15-SP3/ppc64le/update/","installer_updates":false,"name":"SLE-Module-Web-Scripting15-SP3-Updates","description":"SLE-Module-Web-Scripting15-SP3-Updates for sle-15-ppc64le"},{"id":4725,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/15-SP3/ppc64le/update_debug/","distro_target":"sle-15-ppc64le","autorefresh":true,"installer_updates":false,"name":"SLE-Module-Web-Scripting15-SP3-Debuginfo-Updates","description":"SLE-Module-Web-Scripting15-SP3-Debuginfo-Updates for sle-15-ppc64le"},{"distro_target":"sle-15-ppc64le","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP3/ppc64le/product/","enabled":true,"id":4726,"description":"SLE-Module-Web-Scripting15-SP3-Pool for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-Web-Scripting15-SP3-Pool"},{"id":4727,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP3/ppc64le/product_debug/","distro_target":"sle-15-ppc64le","autorefresh":false,"installer_updates":false,"name":"SLE-Module-Web-Scripting15-SP3-Debuginfo-Pool","description":"SLE-Module-Web-Scripting15-SP3-Debuginfo-Pool for sle-15-ppc64le"},{"name":"SLE-Module-Web-Scripting15-SP3-Source-Pool","installer_updates":false,"description":"SLE-Module-Web-Scripting15-SP3-Source-Pool for sle-15-ppc64le","enabled":false,"id":4728,"autorefresh":false,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP3/ppc64le/product_source/"}],"predecessor_ids":[1719,1796,1974],"product_type":"module","cpe":"cpe:/o:suse:sle-module-web-scripting:15:sp3"},{"offline_predecessor_ids":[1148],"name":"Legacy Module","former_identifier":"sle-module-legacy","release_type":null,"friendly_name":"Legacy Module 15 SP3 ppc64le","migration_extra":true,"recommended":false,"version":"15.3","extensions":[],"release_stage":"released","identifier":"sle-module-legacy","id":2169,"friendly_version":"15 SP3","eula_url":"","arch":"ppc64le","free":true,"description":"

The Legacy Module helps you migrating applications from SUSE Linux Enterprise 12 and other systems to SUSE Linux Enterprise 15, by providing packages which are discontinued on SUSE Linux Enterprise Server, such as: ntp, IBM Java 8, and a number of libraries.

Access to the Legacy Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself. Packages in the this module are usually supported for at most three years.

","shortname":"Legacy-Module","product_type":"module","cpe":"cpe:/o:suse:sle-module-legacy:15:sp3","predecessor_ids":[1603,1802,1980],"product_class":"MODULE","online_predecessor_ids":[1603,1802,1980],"repositories":[{"installer_updates":false,"name":"SLE-Module-Legacy15-SP3-Updates","description":"SLE-Module-Legacy15-SP3-Updates for sle-15-ppc64le","enabled":true,"id":4754,"distro_target":"sle-15-ppc64le","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/15-SP3/ppc64le/update/"},{"description":"SLE-Module-Legacy15-SP3-Debuginfo-Updates for sle-15-ppc64le","name":"SLE-Module-Legacy15-SP3-Debuginfo-Updates","installer_updates":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/15-SP3/ppc64le/update_debug/","autorefresh":true,"distro_target":"sle-15-ppc64le","id":4755,"enabled":false},{"name":"SLE-Module-Legacy15-SP3-Pool","installer_updates":false,"description":"SLE-Module-Legacy15-SP3-Pool for sle-15-ppc64le","id":4756,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15-SP3/ppc64le/product/","autorefresh":false,"distro_target":"sle-15-ppc64le"},{"id":4757,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15-SP3/ppc64le/product_debug/","autorefresh":false,"distro_target":"sle-15-ppc64le","name":"SLE-Module-Legacy15-SP3-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-Legacy15-SP3-Debuginfo-Pool for sle-15-ppc64le"},{"enabled":false,"id":4758,"distro_target":"sle-15-ppc64le","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15-SP3/ppc64le/product_source/","installer_updates":false,"name":"SLE-Module-Legacy15-SP3-Source-Pool","description":"SLE-Module-Legacy15-SP3-Source-Pool for sle-15-ppc64le"}]},{"friendly_version":"15 SP3","identifier":"sle-module-public-cloud","release_stage":"released","id":2173,"extensions":[],"version":"15.3","recommended":false,"former_identifier":"sle-module-public-cloud","release_type":null,"friendly_name":"Public Cloud Module 15 SP3 ppc64le","migration_extra":false,"offline_predecessor_ids":[1218],"name":"Public Cloud Module","repositories":[{"id":4774,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/15-SP3/ppc64le/update/","distro_target":"sle-15-ppc64le","autorefresh":true,"installer_updates":false,"name":"SLE-Module-Public-Cloud15-SP3-Updates","description":"SLE-Module-Public-Cloud15-SP3-Updates for sle-15-ppc64le"},{"autorefresh":true,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/15-SP3/ppc64le/update_debug/","enabled":false,"id":4775,"description":"SLE-Module-Public-Cloud15-SP3-Debuginfo-Updates for sle-15-ppc64le","name":"SLE-Module-Public-Cloud15-SP3-Debuginfo-Updates","installer_updates":false},{"enabled":true,"id":4776,"autorefresh":false,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP3/ppc64le/product/","name":"SLE-Module-Public-Cloud15-SP3-Pool","installer_updates":false,"description":"SLE-Module-Public-Cloud15-SP3-Pool for sle-15-ppc64le"},{"id":4777,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP3/ppc64le/product_debug/","autorefresh":false,"distro_target":"sle-15-ppc64le","name":"SLE-Module-Public-Cloud15-SP3-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-Public-Cloud15-SP3-Debuginfo-Pool for sle-15-ppc64le"},{"name":"SLE-Module-Public-Cloud15-SP3-Source-Pool","installer_updates":false,"description":"SLE-Module-Public-Cloud15-SP3-Source-Pool for sle-15-ppc64le","id":4778,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP3/ppc64le/product_source/","autorefresh":false,"distro_target":"sle-15-ppc64le"}],"online_predecessor_ids":[1616,1806,1986],"product_class":"MODULE","predecessor_ids":[1616,1806,1986],"product_type":"module","cpe":"cpe:/o:suse:sle-module-public-cloud:15:sp3","free":true,"shortname":"Public-Cloud-Module","description":"

The Public Cloud Module is a collection of tools that enables you to create and manage cloud images from the commandline on SUSE Linux Enterprise Server. When building your own images with KIWI or SUSE Studio, initialization code specific to the target cloud is included in that image.

Access to the Public Cloud Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself; please check the Release Notes for further details.

","arch":"ppc64le","eula_url":""},{"recommended":true,"version":"15.3","offline_predecessor_ids":[1433,1635,1882],"name":"SUSE Linux Enterprise High Availability Extension","release_type":null,"former_identifier":"sle-ha","friendly_name":"SUSE Linux Enterprise High Availability Extension 15 SP3 ppc64le","migration_extra":false,"friendly_version":"15 SP3","extensions":[{"cpe":"cpe:/o:suse:sle-module-sap-applications:15:sp3","product_type":"module","predecessor_ids":[1726,1786,1993],"product_class":"MODULE","online_predecessor_ids":[1726,1786,1993],"repositories":[{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-SAP-Applications/15-SP3/ppc64le/update/","autorefresh":true,"distro_target":"sle-15-ppc64le","id":4906,"enabled":true,"description":"SLE-Module-SAP-Applications15-SP3-Updates for sle-15-ppc64le","name":"SLE-Module-SAP-Applications15-SP3-Updates","installer_updates":false},{"description":"SLE-Module-SAP-Applications15-SP3-Debuginfo-Updates for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-SAP-Applications15-SP3-Debuginfo-Updates","distro_target":"sle-15-ppc64le","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-SAP-Applications/15-SP3/ppc64le/update_debug/","enabled":false,"id":4907},{"description":"SLE-Module-SAP-Applications15-SP3-Pool for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-SAP-Applications15-SP3-Pool","distro_target":"sle-15-ppc64le","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-SAP-Applications/15-SP3/ppc64le/product/","enabled":true,"id":4908},{"name":"SLE-Module-SAP-Applications15-SP3-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-SAP-Applications15-SP3-Debuginfo-Pool for sle-15-ppc64le","enabled":false,"id":4909,"autorefresh":false,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Products/SLE-Module-SAP-Applications/15-SP3/ppc64le/product_debug/"},{"name":"SLE-Module-SAP-Applications15-SP3-Source-Pool","installer_updates":false,"description":"SLE-Module-SAP-Applications15-SP3-Source-Pool for sle-15-ppc64le","id":4910,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-SAP-Applications/15-SP3/ppc64le/product_source/","autorefresh":false,"distro_target":"sle-15-ppc64le"}],"eula_url":"","arch":"ppc64le","shortname":"SAP-Applications-Module","description":"

The SAP Applications module contains the specialized tools for SAP Applications administration.

The module is maintained and supported by the SUSE Linux Enterprise Server for SAP Applications product subscription.

","free":true,"extensions":[],"release_stage":"released","identifier":"sle-module-sap-applications","id":2197,"friendly_version":"15 SP3","name":"SAP Applications Module","offline_predecessor_ids":[],"friendly_name":"SAP Applications Module 15 SP3 ppc64le","migration_extra":false,"former_identifier":"sle-module-sap-applications","release_type":null,"recommended":true,"version":"15.3"}],"release_stage":"released","id":2193,"identifier":"sle-ha","free":false,"description":"SUSE Linux High Availability Extension provides mature, industry-leading open-source high-availability clustering technologies that are easy to set up and use. It can be deployed in physical and/or virtual environments, and can cluster physical servers, virtual servers, or any combination of the two to suit your business’ needs.","shortname":"SLEHA15-SP3","eula_url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP3/ppc64le/product.license/","arch":"ppc64le","predecessor_ids":[1606,1783,1957],"product_class":"SLE-HAE-PPC","online_predecessor_ids":[1606,1783,1957],"repositories":[{"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-HA/15-SP3/ppc64le/update/","autorefresh":true,"distro_target":"sle-15-ppc64le","id":4886,"enabled":true,"description":"SLE-Product-HA15-SP3-Updates for sle-15-ppc64le","name":"SLE-Product-HA15-SP3-Updates","installer_updates":false},{"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-HA/15-SP3/ppc64le/update_debug/","distro_target":"sle-15-ppc64le","autorefresh":true,"id":4887,"enabled":false,"description":"SLE-Product-HA15-SP3-Debuginfo-Updates for sle-15-ppc64le","installer_updates":false,"name":"SLE-Product-HA15-SP3-Debuginfo-Updates"},{"enabled":true,"id":4888,"autorefresh":false,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP3/ppc64le/product/","name":"SLE-Product-HA15-SP3-Pool","installer_updates":false,"description":"SLE-Product-HA15-SP3-Pool for sle-15-ppc64le"},{"name":"SLE-Product-HA15-SP3-Debuginfo-Pool","installer_updates":false,"description":"SLE-Product-HA15-SP3-Debuginfo-Pool for sle-15-ppc64le","id":4889,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP3/ppc64le/product_debug/","autorefresh":false,"distro_target":"sle-15-ppc64le"},{"description":"SLE-Product-HA15-SP3-Source-Pool for sle-15-ppc64le","installer_updates":false,"name":"SLE-Product-HA15-SP3-Source-Pool","distro_target":"sle-15-ppc64le","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP3/ppc64le/product_source/","enabled":false,"id":4890}],"product_type":"extension","cpe":"cpe:/o:suse:sle-ha:15:sp3"}],"release_stage":"released","identifier":"sle-module-server-applications","id":2151,"friendly_version":"15 SP3","name":"Server Applications Module","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"Server Applications Module 15 SP3 ppc64le","former_identifier":"sle-module-server-applications","release_type":null,"recommended":true,"version":"15.3","cpe":"cpe:/o:suse:sle-module-server-applications:15:sp3","product_type":"module","predecessor_ids":[1600,1778,1953],"repositories":[{"installer_updates":false,"name":"SLE-Module-Server-Applications15-SP3-Updates","description":"SLE-Module-Server-Applications15-SP3-Updates for sle-15-ppc64le","id":4664,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15-SP3/ppc64le/update/","distro_target":"sle-15-ppc64le","autorefresh":true},{"enabled":false,"id":4665,"distro_target":"sle-15-ppc64le","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15-SP3/ppc64le/update_debug/","installer_updates":false,"name":"SLE-Module-Server-Applications15-SP3-Debuginfo-Updates","description":"SLE-Module-Server-Applications15-SP3-Debuginfo-Updates for sle-15-ppc64le"},{"id":4666,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP3/ppc64le/product/","autorefresh":false,"distro_target":"sle-15-ppc64le","name":"SLE-Module-Server-Applications15-SP3-Pool","installer_updates":false,"description":"SLE-Module-Server-Applications15-SP3-Pool for sle-15-ppc64le"},{"installer_updates":false,"name":"SLE-Module-Server-Applications15-SP3-Debuginfo-Pool","description":"SLE-Module-Server-Applications15-SP3-Debuginfo-Pool for sle-15-ppc64le","enabled":false,"id":4667,"distro_target":"sle-15-ppc64le","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP3/ppc64le/product_debug/"},{"description":"SLE-Module-Server-Applications15-SP3-Source-Pool for sle-15-ppc64le","name":"SLE-Module-Server-Applications15-SP3-Source-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP3/ppc64le/product_source/","autorefresh":false,"distro_target":"sle-15-ppc64le","id":4668,"enabled":false}],"online_predecessor_ids":[1600,1778,1953],"product_class":"MODULE","eula_url":"","arch":"ppc64le","shortname":"Server-Applications-Module","description":"

The SUSE Linux Enterprise Server Applications Module delivers a basic set of Server functionality.

Access to the Server Applications Module is included in your SUSE Linux Enterprise Server subscription.

","free":true},{"extensions":[],"release_stage":"released","id":2155,"identifier":"sle-module-containers","friendly_version":"15 SP3","name":"Containers Module","offline_predecessor_ids":[1353],"friendly_name":"Containers Module 15 SP3 ppc64le","migration_extra":false,"release_type":null,"former_identifier":"sle-module-containers","recommended":false,"version":"15.3","cpe":"cpe:/o:suse:sle-module-containers:15:sp3","product_type":"module","predecessor_ids":[1640,1788,1961],"product_class":"MODULE","online_predecessor_ids":[1640,1788,1961],"repositories":[{"autorefresh":true,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/15-SP3/ppc64le/update/","enabled":true,"id":4684,"description":"SLE-Module-Containers15-SP3-Updates for sle-15-ppc64le","name":"SLE-Module-Containers15-SP3-Updates","installer_updates":false},{"autorefresh":true,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/15-SP3/ppc64le/update_debug/","enabled":false,"id":4685,"description":"SLE-Module-Containers15-SP3-Debuginfo-Updates for sle-15-ppc64le","name":"SLE-Module-Containers15-SP3-Debuginfo-Updates","installer_updates":false},{"description":"SLE-Module-Containers15-SP3-Pool for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-Containers15-SP3-Pool","distro_target":"sle-15-ppc64le","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP3/ppc64le/product/","enabled":true,"id":4686},{"installer_updates":false,"name":"SLE-Module-Containers15-SP3-Debuginfo-Pool","description":"SLE-Module-Containers15-SP3-Debuginfo-Pool for sle-15-ppc64le","enabled":false,"id":4687,"distro_target":"sle-15-ppc64le","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP3/ppc64le/product_debug/"},{"description":"SLE-Module-Containers15-SP3-Source-Pool for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-Containers15-SP3-Source-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP3/ppc64le/product_source/","distro_target":"sle-15-ppc64le","autorefresh":false,"id":4688,"enabled":false}],"eula_url":"","arch":"ppc64le","shortname":"Containers-Module","description":"

This Module contains several packages revolving around containers and related tools.

","free":true},{"recommended":false,"version":"15.3","name":"Python 2 Module","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"Python 2 Module 15 SP3 ppc64le","former_identifier":"sle-module-python2","release_type":null,"friendly_version":"15 SP3","extensions":[],"release_stage":"released","identifier":"sle-module-python2","id":2182,"shortname":"Python2-Module","description":"

This module contains the python 2 packages.

Access to the Python 2 Module is included in your SUSE Linux Enterprise subscription. The module has a different lifecycle than SUSE Linux Enterprise itself. Packages in the this module are usually supported for at most three years.

","free":true,"eula_url":"","arch":"ppc64le","predecessor_ids":[1865,1990],"repositories":[{"installer_updates":false,"name":"SLE-Module-Python2-15-SP3-Updates","description":"SLE-Module-Python2-15-SP3-Updates for sle-15-ppc64le","enabled":true,"id":4819,"distro_target":"sle-15-ppc64le","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Python2/15-SP3/ppc64le/update/"},{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Python2/15-SP3/ppc64le/update_debug/","distro_target":"sle-15-ppc64le","autorefresh":true,"id":4820,"enabled":false,"description":"SLE-Module-Python2-15-SP3-Debuginfo-Updates for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-Python2-15-SP3-Debuginfo-Updates"},{"name":"SLE-Module-Python2-15-SP3-Pool","installer_updates":false,"description":"SLE-Module-Python2-15-SP3-Pool for sle-15-ppc64le","enabled":true,"id":4821,"autorefresh":false,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Python2/15-SP3/ppc64le/product/"},{"enabled":false,"id":4822,"autorefresh":false,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Python2/15-SP3/ppc64le/product_debug/","name":"SLE-Module-Python2-15-SP3-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-Python2-15-SP3-Debuginfo-Pool for sle-15-ppc64le"},{"description":"SLE-Module-Python2-15-SP3-Source-Pool for sle-15-ppc64le","name":"SLE-Module-Python2-15-SP3-Source-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Python2/15-SP3/ppc64le/product_source/","autorefresh":false,"distro_target":"sle-15-ppc64le","id":4823,"enabled":false}],"online_predecessor_ids":[1865,1990],"product_class":"MODULE","cpe":"cpe:/o:suse:sle-module-python2:15:sp3","product_type":"module"},{"product_class":"SLE-LP-PPC","online_predecessor_ids":[1735,1827,1983],"repositories":[{"distro_target":"sle-15-ppc64le","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Live-Patching/15-SP3/ppc64le/update/","enabled":true,"id":4834,"description":"SLE-Module-Live-Patching15-SP3-Updates for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-Live-Patching15-SP3-Updates"},{"enabled":false,"id":4835,"distro_target":"sle-15-ppc64le","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Live-Patching/15-SP3/ppc64le/update_debug/","installer_updates":false,"name":"SLE-Module-Live-Patching15-SP3-Debuginfo-Updates","description":"SLE-Module-Live-Patching15-SP3-Debuginfo-Updates for sle-15-ppc64le"},{"description":"SLE-Module-Live-Patching15-SP3-Pool for sle-15-ppc64le","name":"SLE-Module-Live-Patching15-SP3-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Live-Patching/15-SP3/ppc64le/product/","autorefresh":false,"distro_target":"sle-15-ppc64le","id":4836,"enabled":true},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Live-Patching/15-SP3/ppc64le/product_debug/","autorefresh":false,"distro_target":"sle-15-ppc64le","id":4837,"enabled":false,"description":"SLE-Module-Live-Patching15-SP3-Debuginfo-Pool for sle-15-ppc64le","name":"SLE-Module-Live-Patching15-SP3-Debuginfo-Pool","installer_updates":false},{"name":"SLE-Module-Live-Patching15-SP3-Source-Pool","installer_updates":false,"description":"SLE-Module-Live-Patching15-SP3-Source-Pool for sle-15-ppc64le","enabled":false,"id":4838,"autorefresh":false,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Live-Patching/15-SP3/ppc64le/product_source/"}],"predecessor_ids":[1735,1827,1983],"product_type":"extension","cpe":"cpe:/o:suse:sle-module-live-patching:15:sp3","free":false,"description":"

SUSE Linux Enterprise Live Patching provides packages to update critical components in SUSE Linux Enterprise. With SUSE Linux Enterprise Live Patching, you can perform critical patching without shutting down your system, reducing the need for planned downtime and increasing service availability.

","shortname":"Live-Patching","arch":"ppc64le","eula_url":"","friendly_version":"15 SP3","release_stage":"released","id":2185,"identifier":"sle-module-live-patching","extensions":[],"version":"15.3","recommended":false,"release_type":null,"former_identifier":"sle-module-live-patching","migration_extra":false,"friendly_name":"SUSE Linux Enterprise Live Patching 15 SP3 ppc64le","offline_predecessor_ids":[1537,1756,1887],"name":"SUSE Linux Enterprise Live Patching"},{"former_identifier":"PackageHub","release_type":null,"migration_extra":false,"friendly_name":"SUSE Package Hub 15 SP3 ppc64le","offline_predecessor_ids":[1531,1811,1913],"name":"SUSE Package Hub","version":"15.3","recommended":false,"release_stage":"released","identifier":"PackageHub","id":2189,"extensions":[],"friendly_version":"15 SP3","arch":"ppc64le","eula_url":"","free":true,"shortname":"SUSE-PackageHub-15","description":"SUSE Package Hub is a free of charge module providing access to community maintained packages built to run on SUSE Linux Enterprise Server. Built from the same sources used in the openSUSE distributions, these quality packages provide additional software to what is found in the SUSE Linux Enterprise Server product. Packages from the Package Hub are delivered without L3 support from SUSE. General updates and fixes to the packages in SUSE Package Hub are provided by the openSUSE community based on their discretion, though SUSE will monitor and ensure that any known critical security issues will be addressed. Packages in the Package Hub are approved by SUSE for use with SUSE Linux Enterprise Server 15-SP3 and to not interfere with the supportability of SUSE Linux Enterprise Server, its modules and extensions. For more information about SUSE Package Hub please visit https://packagehub.suse.com.","product_type":"module","cpe":"cpe:/o:suse:packagehub:15:sp3","online_predecessor_ids":[1741,1869,1948],"repositories":[{"url":"https://updates.suse.com/SUSE/Backports/SLE-15-SP3_ppc64le/standard/","autorefresh":false,"distro_target":"sle-15-ppc64le","id":4857,"enabled":true,"description":"SUSE-PackageHub-15-SP3-Backports-Pool for sle-15-ppc64le","name":"SUSE-PackageHub-15-SP3-Backports-Pool","installer_updates":false},{"installer_updates":false,"name":"SUSE-PackageHub-15-SP3-Backports-Debuginfo","description":"SUSE-PackageHub-15-SP3-Backports-Debuginfo for sle-15-ppc64le","enabled":false,"id":4858,"distro_target":"sle-15-ppc64le","autorefresh":true,"url":"https://updates.suse.com/SUSE/Backports/SLE-15-SP3_ppc64le/standard_debug/"},{"distro_target":"sle-15-ppc64le","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP3/ppc64le/update/","enabled":true,"id":4859,"description":"SLE-Module-Packagehub-Subpackages15-SP3-Updates for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-Packagehub-Subpackages15-SP3-Updates"},{"enabled":false,"id":4860,"distro_target":"sle-15-ppc64le","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP3/ppc64le/update_debug/","installer_updates":false,"name":"SLE-Module-Packagehub-Subpackages15-SP3-Debuginfo-Updates","description":"SLE-Module-Packagehub-Subpackages15-SP3-Debuginfo-Updates for sle-15-ppc64le"},{"description":"SUSE-PackageHub-15-SP3-Pool for sle-15-ppc64le","installer_updates":false,"name":"SUSE-PackageHub-15-SP3-Pool","url":"https://updates.suse.com/SUSE/Backports/SLE-15-SP3_ppc64le/product/","distro_target":"sle-15-ppc64le","autorefresh":false,"id":4861,"enabled":true},{"description":"SLE-Module-Packagehub-Subpackages15-SP3-Pool for sle-15-ppc64le","name":"SLE-Module-Packagehub-Subpackages15-SP3-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP3/ppc64le/product/","autorefresh":false,"distro_target":"sle-15-ppc64le","id":4862,"enabled":true},{"name":"SLE-Module-Packagehub-Subpackages15-SP3-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-Packagehub-Subpackages15-SP3-Debuginfo-Pool for sle-15-ppc64le","enabled":false,"id":4863,"autorefresh":false,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP3/ppc64le/product_debug/"},{"autorefresh":false,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP3/ppc64le/product_source/","enabled":false,"id":4864,"description":"SLE-Module-Packagehub-Subpackages15-SP3-Source-Pool for sle-15-ppc64le","name":"SLE-Module-Packagehub-Subpackages15-SP3-Source-Pool","installer_updates":false}],"product_class":"MODULE","predecessor_ids":[1741,1869,1948]}],"id":2143,"release_stage":"released","identifier":"sle-module-basesystem","friendly_version":"15 SP3"},{"name":"Certifications Module","offline_predecessor_ids":[],"friendly_name":"Certifications Module 15 SP3 ppc64le","migration_extra":false,"former_identifier":"sle-module-certifications","release_type":null,"recommended":false,"version":"15.3","extensions":[],"release_stage":"released","identifier":"sle-module-certifications","id":2387,"friendly_version":"15 SP3","eula_url":"","arch":"ppc64le","shortname":"Certifications-Module","description":"

This module contains the certification packages.

Access to the Certifications Module is included in your SUSE Linux Enterprise subscription. The module has a different lifecycle than SUSE Linux Enterprise itself; please check the Release Notes for further details.

","free":true,"cpe":"cpe:/o:suse:sle-module-certifications:15:sp3","product_type":"module","predecessor_ids":[],"online_predecessor_ids":[],"repositories":[{"enabled":true,"id":5517,"autorefresh":true,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Certifications/15-SP3/ppc64le/update/","name":"SLE-Module-Certifications-15-SP3-Updates","installer_updates":false,"description":"SLE-Module-Certifications-15-SP3-Updates for sle-15-ppc64le"},{"id":5518,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Certifications/15-SP3/ppc64le/update_debug/","distro_target":"sle-15-ppc64le","autorefresh":true,"installer_updates":false,"name":"SLE-Module-Certifications-15-SP3-Debuginfo-Updates","description":"SLE-Module-Certifications-15-SP3-Debuginfo-Updates for sle-15-ppc64le"},{"enabled":true,"id":5519,"distro_target":"sle-15-ppc64le","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Certifications/15-SP3/ppc64le/product/","installer_updates":false,"name":"SLE-Module-Certifications-15-SP3-Pool","description":"SLE-Module-Certifications-15-SP3-Pool for sle-15-ppc64le"},{"installer_updates":false,"name":"SLE-Module-Certifications-15-SP3-Debuginfo-Pool","description":"SLE-Module-Certifications-15-SP3-Debuginfo-Pool for sle-15-ppc64le","enabled":false,"id":5520,"distro_target":"sle-15-ppc64le","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Certifications/15-SP3/ppc64le/product_debug/"},{"description":"SLE-Module-Certifications-15-SP3-Source-Pool for sle-15-ppc64le","name":"SLE-Module-Certifications-15-SP3-Source-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Certifications/15-SP3/ppc64le/product_source/","autorefresh":false,"distro_target":"sle-15-ppc64le","id":5521,"enabled":false}],"product_class":"MODULE"}],"release_stage":"released","identifier":"SLES_SAP","id":2135,"friendly_version":"15 SP3","eula_url":"https://updates.suse.com/SUSE/Products/SLE-Product-SLES_SAP/15-SP3/ppc64le/product.license/","arch":"ppc64le","free":false,"shortname":"SLE-15-SP3-SAP","description":"SUSE Linux Enterprise offers a comprehensive suite of products built on a single code base. The platform addresses business needs from the smallest thin-client devices to the world's most powerful high-performance computing and mainframe servers. SUSE Linux Enterprise offers common management tools and technology certifications across the platform, and each product is enterprise-class.","product_type":"base","cpe":"cpe:/o:suse:sles_sap:15:sp3","predecessor_ids":[1613,1765,1940],"repositories":[{"installer_updates":false,"name":"SLE-Product-SLES_SAP15-SP3-Updates","description":"SLE-Product-SLES_SAP15-SP3-Updates for sle-15-ppc64le","enabled":true,"id":4580,"distro_target":"sle-15-ppc64le","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-SLES_SAP/15-SP3/ppc64le/update/"},{"enabled":false,"id":4581,"distro_target":"sle-15-ppc64le","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-SLES_SAP/15-SP3/ppc64le/update_debug/","installer_updates":false,"name":"SLE-Product-SLES_SAP15-SP3-Debuginfo-Updates","description":"SLE-Product-SLES_SAP15-SP3-Debuginfo-Updates for sle-15-ppc64le"},{"enabled":true,"id":4582,"distro_target":"sle-15-ppc64le","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-SLES_SAP/15-SP3/ppc64le/product/","installer_updates":false,"name":"SLE-Product-SLES_SAP15-SP3-Pool","description":"SLE-Product-SLES_SAP15-SP3-Pool for sle-15-ppc64le"},{"description":"SLE-Product-SLES_SAP15-SP3-Debuginfo-Pool for sle-15-ppc64le","name":"SLE-Product-SLES_SAP15-SP3-Debuginfo-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Products/SLE-Product-SLES_SAP/15-SP3/ppc64le/product_debug/","enabled":false,"id":4583},{"enabled":false,"id":4584,"distro_target":"sle-15-ppc64le","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-SLES_SAP/15-SP3/ppc64le/product_source/","installer_updates":false,"name":"SLE-Product-SLES_SAP15-SP3-Source-Pool","description":"SLE-Product-SLES_SAP15-SP3-Source-Pool for sle-15-ppc64le"}],"online_predecessor_ids":[1613,1765,1940],"product_class":"AiO-PPC"},{"recommended":false,"version":"15.3","name":"SUSE Linux Enterprise Server for SAP Applications","offline_predecessor_ids":[1329,1426,1755,1880],"friendly_name":"SUSE Linux Enterprise Server for SAP Applications 15 SP3 x86_64","migration_extra":false,"former_identifier":"SUSE_SLES_SAP","release_type":null,"friendly_version":"15 SP3","extensions":[{"product_type":"module","cpe":"cpe:/o:suse:sle-module-basesystem:15:sp3","repositories":[{"description":"SLE-Module-Basesystem15-SP3-Updates for sle-15-x86_64","name":"SLE-Module-Basesystem15-SP3-Updates","installer_updates":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15-SP3/x86_64/update/","autorefresh":true,"distro_target":"sle-15-x86_64","id":4634,"enabled":true},{"id":4635,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15-SP3/x86_64/update_debug/","autorefresh":true,"distro_target":"sle-15-x86_64","name":"SLE-Module-Basesystem15-SP3-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-Basesystem15-SP3-Debuginfo-Updates for sle-15-x86_64"},{"description":"SLE-Module-Basesystem15-SP3-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Basesystem15-SP3-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP3/x86_64/product/","distro_target":"sle-15-x86_64","autorefresh":false,"id":4636,"enabled":true},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP3/x86_64/product_debug/","distro_target":"sle-15-x86_64","autorefresh":false,"id":4637,"enabled":false,"description":"SLE-Module-Basesystem15-SP3-Debuginfo-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Basesystem15-SP3-Debuginfo-Pool"},{"installer_updates":false,"name":"SLE-Module-Basesystem15-SP3-Source-Pool","description":"SLE-Module-Basesystem15-SP3-Source-Pool for sle-15-x86_64","id":4638,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP3/x86_64/product_source/","distro_target":"sle-15-x86_64","autorefresh":false}],"online_predecessor_ids":[1576,1772,1946],"product_class":"MODULE","predecessor_ids":[1576,1772,1946],"arch":"x86_64","eula_url":"","free":true,"description":"

The SUSE Linux Enterprise Basesystem Module delivers the base system of the product.

","shortname":"Basesystem-Module","id":2145,"release_stage":"released","identifier":"sle-module-basesystem","extensions":[{"friendly_version":"15 SP3","extensions":[{"repositories":[{"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15-SP3/x86_64/update/","enabled":true,"id":4714,"description":"SLE-Module-DevTools15-SP3-Updates for sle-15-x86_64","name":"SLE-Module-DevTools15-SP3-Updates","installer_updates":false},{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15-SP3/x86_64/update_debug/","distro_target":"sle-15-x86_64","autorefresh":true,"id":4715,"enabled":false,"description":"SLE-Module-DevTools15-SP3-Debuginfo-Updates for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-DevTools15-SP3-Debuginfo-Updates"},{"description":"SLE-Module-DevTools15-SP3-Pool for sle-15-x86_64","name":"SLE-Module-DevTools15-SP3-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP3/x86_64/product/","enabled":true,"id":4716},{"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP3/x86_64/product_debug/","enabled":false,"id":4717,"description":"SLE-Module-DevTools15-SP3-Debuginfo-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-DevTools15-SP3-Debuginfo-Pool"},{"id":4718,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP3/x86_64/product_source/","autorefresh":false,"distro_target":"sle-15-x86_64","name":"SLE-Module-DevTools15-SP3-Source-Pool","installer_updates":false,"description":"SLE-Module-DevTools15-SP3-Source-Pool for sle-15-x86_64"}],"online_predecessor_ids":[1579,1794,1971],"product_class":"MODULE","predecessor_ids":[1579,1794,1971],"product_type":"module","cpe":"cpe:/o:suse:sle-module-development-tools:15:sp3","free":true,"shortname":"Development-Tools-Module","description":"

The Development Tools Module helps you developing applications for SUSE Linux Enterprise 15.

Access to the Development Tools Module is included in your SUSE Linux Enterprise product subscription. The module has a different lifecycle than SUSE Linux Enterprise itself.

","arch":"x86_64","eula_url":"","friendly_version":"15 SP3","release_stage":"released","identifier":"sle-module-development-tools","id":2161,"extensions":[],"version":"15.3","recommended":false,"release_type":null,"former_identifier":"sle-sdk","friendly_name":"Development Tools Module 15 SP3 x86_64","migration_extra":false,"offline_predecessor_ids":[1341,1427,1630,1892],"name":"Development Tools Module"},{"eula_url":"https://updates.suse.com/SUSE/Products/SLE-Product-WE/15-SP3/x86_64/product.license/","arch":"x86_64","description":"SUSE Linux Enterprise Workstation Extension adds additional functionality to a base SUSE Linux Enterprise installation. The Workstation Extension offers additional desktop applications (office suite, email client, graphical editor, multimedia tools) and libraries. Workstation Extension is enabled and installed by default on SUSE Linux Enterprise Desktop installation. Adding the Workstation Extension to a SUSE Linux Enterprise Server installation allows to seamlessly combine both products to create a full featured server workstation.","shortname":"SLEWE15-SP3","free":false,"cpe":"cpe:/o:suse:sle-we:15:sp3","product_type":"extension","predecessor_ids":[1583,1781,1999],"online_predecessor_ids":[1583,1781,1999],"repositories":[{"description":"SLE-15-SP3-Desktop-NVIDIA-Driver","installer_updates":false,"name":"SLE-15-SP3-Desktop-NVIDIA-Driver","url":"https://download.nvidia.com/suse/sle15sp3/","distro_target":null,"autorefresh":true,"id":4577,"enabled":true},{"installer_updates":false,"name":"SLE-Product-WE15-SP3-Updates","description":"SLE-Product-WE15-SP3-Updates for sle-15-x86_64","enabled":true,"id":4901,"distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-WE/15-SP3/x86_64/update/"},{"id":4902,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-WE/15-SP3/x86_64/update_debug/","autorefresh":true,"distro_target":"sle-15-x86_64","name":"SLE-Product-WE15-SP3-Debuginfo-Updates","installer_updates":false,"description":"SLE-Product-WE15-SP3-Debuginfo-Updates for sle-15-x86_64"},{"description":"SLE-Product-WE15-SP3-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Product-WE15-SP3-Pool","distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-WE/15-SP3/x86_64/product/","enabled":true,"id":4903},{"description":"SLE-Product-WE15-SP3-Debuginfo-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Product-WE15-SP3-Debuginfo-Pool","distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-WE/15-SP3/x86_64/product_debug/","enabled":false,"id":4904},{"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Product-WE/15-SP3/x86_64/product_source/","enabled":false,"id":4905,"description":"SLE-Product-WE15-SP3-Source-Pool for sle-15-x86_64","name":"SLE-Product-WE15-SP3-Source-Pool","installer_updates":false}],"product_class":"SLE-WE","name":"SUSE Linux Enterprise Workstation Extension","offline_predecessor_ids":[1431,1639,1893],"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Workstation Extension 15 SP3 x86_64","release_type":null,"former_identifier":"sle-we","recommended":false,"version":"15.3","extensions":[],"id":2196,"release_stage":"released","identifier":"sle-we","friendly_version":"15 SP3"}],"id":2149,"release_stage":"released","identifier":"sle-module-desktop-applications","recommended":true,"version":"15.3","name":"Desktop Applications Module","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"Desktop Applications Module 15 SP3 x86_64","former_identifier":"sle-module-desktop-applications","release_type":null,"predecessor_ids":[1578,1776,1967],"online_predecessor_ids":[1578,1776,1967],"product_class":"MODULE","repositories":[{"enabled":true,"id":4654,"distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15-SP3/x86_64/update/","installer_updates":false,"name":"SLE-Module-Desktop-Applications15-SP3-Updates","description":"SLE-Module-Desktop-Applications15-SP3-Updates for sle-15-x86_64"},{"id":4655,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15-SP3/x86_64/update_debug/","autorefresh":true,"distro_target":"sle-15-x86_64","name":"SLE-Module-Desktop-Applications15-SP3-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-Desktop-Applications15-SP3-Debuginfo-Updates for sle-15-x86_64"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP3/x86_64/product/","autorefresh":false,"distro_target":"sle-15-x86_64","id":4656,"enabled":true,"description":"SLE-Module-Desktop-Applications15-SP3-Pool for sle-15-x86_64","name":"SLE-Module-Desktop-Applications15-SP3-Pool","installer_updates":false},{"description":"SLE-Module-Desktop-Applications15-SP3-Debuginfo-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Desktop-Applications15-SP3-Debuginfo-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP3/x86_64/product_debug/","distro_target":"sle-15-x86_64","autorefresh":false,"id":4657,"enabled":false},{"description":"SLE-Module-Desktop-Applications15-SP3-Source-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Desktop-Applications15-SP3-Source-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP3/x86_64/product_source/","distro_target":"sle-15-x86_64","autorefresh":false,"id":4658,"enabled":false}],"cpe":"cpe:/o:suse:sle-module-desktop-applications:15:sp3","product_type":"module","shortname":"Desktop-Applications-Module","description":"

The SUSE Linux Enterprise Desktop Applications Module delivers a basic set of Desktop functionality.

Access to the Desktop Applications Module is included in your SUSE Linux Enterprise product subscription.

","free":true,"eula_url":"","arch":"x86_64"},{"product_class":"MODULE","online_predecessor_ids":[1580,1780,1955],"repositories":[{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15-SP3/x86_64/update/","autorefresh":true,"distro_target":"sle-15-x86_64","id":4674,"enabled":true,"description":"SLE-Module-Server-Applications15-SP3-Updates for sle-15-x86_64","name":"SLE-Module-Server-Applications15-SP3-Updates","installer_updates":false},{"description":"SLE-Module-Server-Applications15-SP3-Debuginfo-Updates for sle-15-x86_64","name":"SLE-Module-Server-Applications15-SP3-Debuginfo-Updates","installer_updates":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15-SP3/x86_64/update_debug/","autorefresh":true,"distro_target":"sle-15-x86_64","id":4675,"enabled":false},{"description":"SLE-Module-Server-Applications15-SP3-Pool for sle-15-x86_64","name":"SLE-Module-Server-Applications15-SP3-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP3/x86_64/product/","enabled":true,"id":4676},{"description":"SLE-Module-Server-Applications15-SP3-Debuginfo-Pool for sle-15-x86_64","name":"SLE-Module-Server-Applications15-SP3-Debuginfo-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP3/x86_64/product_debug/","enabled":false,"id":4677},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP3/x86_64/product_source/","distro_target":"sle-15-x86_64","autorefresh":false,"id":4678,"enabled":false,"description":"SLE-Module-Server-Applications15-SP3-Source-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Server-Applications15-SP3-Source-Pool"}],"predecessor_ids":[1580,1780,1955],"cpe":"cpe:/o:suse:sle-module-server-applications:15:sp3","product_type":"module","description":"

The SUSE Linux Enterprise Server Applications Module delivers a basic set of Server functionality.

Access to the Server Applications Module is included in your SUSE Linux Enterprise Server subscription.

","shortname":"Server-Applications-Module","free":true,"arch":"x86_64","eula_url":"","friendly_version":"15 SP3","release_stage":"released","identifier":"sle-module-server-applications","id":2153,"extensions":[{"friendly_version":"15 SP3","extensions":[],"identifier":"sle-module-web-scripting","release_stage":"released","id":2165,"recommended":false,"version":"15.3","offline_predecessor_ids":[1153],"name":"Web and Scripting Module","release_type":null,"former_identifier":"sle-module-web-scripting","migration_extra":false,"friendly_name":"Web and Scripting Module 15 SP3 x86_64","predecessor_ids":[1721,1798,1976],"repositories":[{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/15-SP3/x86_64/update/","autorefresh":true,"distro_target":"sle-15-x86_64","id":4734,"enabled":true,"description":"SLE-Module-Web-Scripting15-SP3-Updates for sle-15-x86_64","name":"SLE-Module-Web-Scripting15-SP3-Updates","installer_updates":false},{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/15-SP3/x86_64/update_debug/","distro_target":"sle-15-x86_64","autorefresh":true,"id":4735,"enabled":false,"description":"SLE-Module-Web-Scripting15-SP3-Debuginfo-Updates for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Web-Scripting15-SP3-Debuginfo-Updates"},{"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP3/x86_64/product/","enabled":true,"id":4736,"description":"SLE-Module-Web-Scripting15-SP3-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Web-Scripting15-SP3-Pool"},{"enabled":false,"id":4737,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP3/x86_64/product_debug/","name":"SLE-Module-Web-Scripting15-SP3-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-Web-Scripting15-SP3-Debuginfo-Pool for sle-15-x86_64"},{"id":4738,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP3/x86_64/product_source/","autorefresh":false,"distro_target":"sle-15-x86_64","name":"SLE-Module-Web-Scripting15-SP3-Source-Pool","installer_updates":false,"description":"SLE-Module-Web-Scripting15-SP3-Source-Pool for sle-15-x86_64"}],"online_predecessor_ids":[1721,1798,1976],"product_class":"MODULE","product_type":"module","cpe":"cpe:/o:suse:sle-module-web-scripting:15:sp3","free":true,"description":"

The SUSE Linux Enterprise Web and Scripting Module should contains additional packages that are helpful when running a webserver.

Access to the Web and Scripting Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself: Package versions in this module are usually supported for at most three years. We are planning to release more recent versions on a schedule of approximately 18 month; the exact dates may differ per package.

","shortname":"Web-Scripting-Module","eula_url":"","arch":"x86_64"},{"product_type":"module","cpe":"cpe:/o:suse:sle-module-legacy:15:sp3","predecessor_ids":[1581,1804,1982],"online_predecessor_ids":[1581,1804,1982],"repositories":[{"description":"SLE-Module-Legacy15-SP3-Updates for sle-15-x86_64","name":"SLE-Module-Legacy15-SP3-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/15-SP3/x86_64/update/","enabled":true,"id":4764},{"installer_updates":false,"name":"SLE-Module-Legacy15-SP3-Debuginfo-Updates","description":"SLE-Module-Legacy15-SP3-Debuginfo-Updates for sle-15-x86_64","id":4765,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/15-SP3/x86_64/update_debug/","distro_target":"sle-15-x86_64","autorefresh":true},{"description":"SLE-Module-Legacy15-SP3-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Legacy15-SP3-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15-SP3/x86_64/product/","distro_target":"sle-15-x86_64","autorefresh":false,"id":4766,"enabled":true},{"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15-SP3/x86_64/product_debug/","enabled":false,"id":4767,"description":"SLE-Module-Legacy15-SP3-Debuginfo-Pool for sle-15-x86_64","name":"SLE-Module-Legacy15-SP3-Debuginfo-Pool","installer_updates":false},{"description":"SLE-Module-Legacy15-SP3-Source-Pool for sle-15-x86_64","name":"SLE-Module-Legacy15-SP3-Source-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15-SP3/x86_64/product_source/","autorefresh":false,"distro_target":"sle-15-x86_64","id":4768,"enabled":false}],"product_class":"MODULE","eula_url":"","arch":"x86_64","free":true,"shortname":"Legacy-Module","description":"

The Legacy Module helps you migrating applications from SUSE Linux Enterprise 12 and other systems to SUSE Linux Enterprise 15, by providing packages which are discontinued on SUSE Linux Enterprise Server, such as: ntp, IBM Java 8, and a number of libraries.

Access to the Legacy Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself. Packages in the this module are usually supported for at most three years.

","extensions":[],"release_stage":"released","id":2171,"identifier":"sle-module-legacy","friendly_version":"15 SP3","offline_predecessor_ids":[1150],"name":"Legacy Module","release_type":null,"former_identifier":"sle-module-legacy","migration_extra":true,"friendly_name":"Legacy Module 15 SP3 x86_64","recommended":false,"version":"15.3"},{"arch":"x86_64","eula_url":"","free":true,"description":"

The Public Cloud Module is a collection of tools that enables you to create and manage cloud images from the commandline on SUSE Linux Enterprise Server. When building your own images with KIWI or SUSE Studio, initialization code specific to the target cloud is included in that image.

Access to the Public Cloud Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself; please check the Release Notes for further details.

","shortname":"Public-Cloud-Module","product_type":"module","cpe":"cpe:/o:suse:sle-module-public-cloud:15:sp3","repositories":[{"installer_updates":false,"name":"SLE-Module-Public-Cloud15-SP3-Updates","description":"SLE-Module-Public-Cloud15-SP3-Updates for sle-15-x86_64","id":4784,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/15-SP3/x86_64/update/","distro_target":"sle-15-x86_64","autorefresh":true},{"description":"SLE-Module-Public-Cloud15-SP3-Debuginfo-Updates for sle-15-x86_64","name":"SLE-Module-Public-Cloud15-SP3-Debuginfo-Updates","installer_updates":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/15-SP3/x86_64/update_debug/","autorefresh":true,"distro_target":"sle-15-x86_64","id":4785,"enabled":false},{"description":"SLE-Module-Public-Cloud15-SP3-Pool for sle-15-x86_64","name":"SLE-Module-Public-Cloud15-SP3-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP3/x86_64/product/","autorefresh":false,"distro_target":"sle-15-x86_64","id":4786,"enabled":true},{"enabled":false,"id":4787,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP3/x86_64/product_debug/","name":"SLE-Module-Public-Cloud15-SP3-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-Public-Cloud15-SP3-Debuginfo-Pool for sle-15-x86_64"},{"description":"SLE-Module-Public-Cloud15-SP3-Source-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Public-Cloud15-SP3-Source-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP3/x86_64/product_source/","distro_target":"sle-15-x86_64","autorefresh":false,"id":4788,"enabled":false}],"online_predecessor_ids":[1611,1808,1988],"product_class":"MODULE","predecessor_ids":[1611,1808,1988],"release_type":null,"former_identifier":"sle-module-public-cloud","friendly_name":"Public Cloud Module 15 SP3 x86_64","migration_extra":false,"offline_predecessor_ids":[1220],"name":"Public Cloud Module","version":"15.3","recommended":false,"release_stage":"released","id":2175,"identifier":"sle-module-public-cloud","extensions":[],"friendly_version":"15 SP3"},{"extensions":[{"free":true,"shortname":"SAP-Applications-Module","description":"

The SAP Applications module contains the specialized tools for SAP Applications administration.

The module is maintained and supported by the SUSE Linux Enterprise Server for SAP Applications product subscription.

","arch":"x86_64","eula_url":"","repositories":[{"description":"SLE-Module-SAP-Applications15-SP3-Updates for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-SAP-Applications15-SP3-Updates","distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-SAP-Applications/15-SP3/x86_64/update/","enabled":true,"id":4911},{"description":"SLE-Module-SAP-Applications15-SP3-Debuginfo-Updates for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-SAP-Applications15-SP3-Debuginfo-Updates","distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-SAP-Applications/15-SP3/x86_64/update_debug/","enabled":false,"id":4912},{"installer_updates":false,"name":"SLE-Module-SAP-Applications15-SP3-Pool","description":"SLE-Module-SAP-Applications15-SP3-Pool for sle-15-x86_64","id":4913,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-SAP-Applications/15-SP3/x86_64/product/","distro_target":"sle-15-x86_64","autorefresh":false},{"enabled":false,"id":4914,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-SAP-Applications/15-SP3/x86_64/product_debug/","name":"SLE-Module-SAP-Applications15-SP3-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-SAP-Applications15-SP3-Debuginfo-Pool for sle-15-x86_64"},{"id":4915,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-SAP-Applications/15-SP3/x86_64/product_source/","autorefresh":false,"distro_target":"sle-15-x86_64","name":"SLE-Module-SAP-Applications15-SP3-Source-Pool","installer_updates":false,"description":"SLE-Module-SAP-Applications15-SP3-Source-Pool for sle-15-x86_64"}],"online_predecessor_ids":[1727,1787,1994],"product_class":"MODULE","predecessor_ids":[1727,1787,1994],"product_type":"module","cpe":"cpe:/o:suse:sle-module-sap-applications:15:sp3","version":"15.3","recommended":true,"release_type":null,"former_identifier":"sle-module-sap-applications","migration_extra":false,"friendly_name":"SAP Applications Module 15 SP3 x86_64","offline_predecessor_ids":[],"name":"SAP Applications Module","friendly_version":"15 SP3","id":2198,"release_stage":"released","identifier":"sle-module-sap-applications","extensions":[]}],"id":2195,"release_stage":"released","identifier":"sle-ha","friendly_version":"15 SP3","name":"SUSE Linux Enterprise High Availability Extension","offline_predecessor_ids":[958,961,967,971,1101,1107,1256,1286,1432,1435,1634,1637,1884,1886],"friendly_name":"SUSE Linux Enterprise High Availability Extension 15 SP3 x86_64","migration_extra":false,"release_type":null,"former_identifier":"sle-ha","recommended":true,"version":"15.3","cpe":"cpe:/o:suse:sle-ha:15:sp3","product_type":"extension","predecessor_ids":[1582,1785,1959],"repositories":[{"name":"SLE-Product-HA15-SP3-Updates","installer_updates":false,"description":"SLE-Product-HA15-SP3-Updates for sle-15-x86_64","id":4896,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-HA/15-SP3/x86_64/update/","autorefresh":true,"distro_target":"sle-15-x86_64"},{"id":4897,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-HA/15-SP3/x86_64/update_debug/","distro_target":"sle-15-x86_64","autorefresh":true,"installer_updates":false,"name":"SLE-Product-HA15-SP3-Debuginfo-Updates","description":"SLE-Product-HA15-SP3-Debuginfo-Updates for sle-15-x86_64"},{"description":"SLE-Product-HA15-SP3-Pool for sle-15-x86_64","name":"SLE-Product-HA15-SP3-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP3/x86_64/product/","enabled":true,"id":4898},{"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP3/x86_64/product_debug/","enabled":false,"id":4899,"description":"SLE-Product-HA15-SP3-Debuginfo-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Product-HA15-SP3-Debuginfo-Pool"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP3/x86_64/product_source/","distro_target":"sle-15-x86_64","autorefresh":false,"id":4900,"enabled":false,"description":"SLE-Product-HA15-SP3-Source-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Product-HA15-SP3-Source-Pool"}],"online_predecessor_ids":[1582,1785,1959],"product_class":"SLE-HAE-X86","eula_url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP3/x86_64/product.license/","arch":"x86_64","shortname":"SLEHA15-SP3","description":"SUSE Linux High Availability Extension provides mature, industry-leading open-source high-availability clustering technologies that are easy to set up and use. It can be deployed in physical and/or virtual environments, and can cluster physical servers, virtual servers, or any combination of the two to suit your business’ needs.","free":false}],"version":"15.3","recommended":true,"friendly_name":"Server Applications Module 15 SP3 x86_64","migration_extra":false,"former_identifier":"sle-module-server-applications","release_type":null,"name":"Server Applications Module","offline_predecessor_ids":[]},{"version":"15.3","recommended":false,"release_type":null,"former_identifier":"sle-module-containers","friendly_name":"Containers Module 15 SP3 x86_64","migration_extra":false,"offline_predecessor_ids":[1332],"name":"Containers Module","friendly_version":"15 SP3","release_stage":"released","identifier":"sle-module-containers","id":2157,"extensions":[],"free":true,"shortname":"Containers-Module","description":"

This Module contains several packages revolving around containers and related tools.

","arch":"x86_64","eula_url":"","online_predecessor_ids":[1642,1790,1963],"repositories":[{"name":"SLE-Module-Containers15-SP3-Updates","installer_updates":false,"description":"SLE-Module-Containers15-SP3-Updates for sle-15-x86_64","enabled":true,"id":4694,"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/15-SP3/x86_64/update/"},{"description":"SLE-Module-Containers15-SP3-Debuginfo-Updates for sle-15-x86_64","name":"SLE-Module-Containers15-SP3-Debuginfo-Updates","installer_updates":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/15-SP3/x86_64/update_debug/","autorefresh":true,"distro_target":"sle-15-x86_64","id":4695,"enabled":false},{"id":4696,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP3/x86_64/product/","autorefresh":false,"distro_target":"sle-15-x86_64","name":"SLE-Module-Containers15-SP3-Pool","installer_updates":false,"description":"SLE-Module-Containers15-SP3-Pool for sle-15-x86_64"},{"name":"SLE-Module-Containers15-SP3-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-Containers15-SP3-Debuginfo-Pool for sle-15-x86_64","id":4697,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP3/x86_64/product_debug/","autorefresh":false,"distro_target":"sle-15-x86_64"},{"installer_updates":false,"name":"SLE-Module-Containers15-SP3-Source-Pool","description":"SLE-Module-Containers15-SP3-Source-Pool for sle-15-x86_64","enabled":false,"id":4698,"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP3/x86_64/product_source/"}],"product_class":"MODULE","predecessor_ids":[1642,1790,1963],"product_type":"module","cpe":"cpe:/o:suse:sle-module-containers:15:sp3"},{"product_class":"MODULE","online_predecessor_ids":[1728,1809,2075],"repositories":[{"distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-CAP-Tools/15-SP3/x86_64/update/","enabled":true,"id":4789,"description":"SLE-Module-CAP-Tools15-SP3-Updates for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-CAP-Tools15-SP3-Updates"},{"installer_updates":false,"name":"SLE-Module-CAP-Tools15-SP3-Debuginfo-Updates","description":"SLE-Module-CAP-Tools15-SP3-Debuginfo-Updates for sle-15-x86_64","enabled":false,"id":4790,"distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-CAP-Tools/15-SP3/x86_64/update_debug/"},{"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-CAP-Tools/15-SP3/x86_64/product/","enabled":true,"id":4791,"description":"SLE-Module-CAP-Tools15-SP3-Pool for sle-15-x86_64","name":"SLE-Module-CAP-Tools15-SP3-Pool","installer_updates":false},{"name":"SLE-Module-CAP-Tools15-SP3-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-CAP-Tools15-SP3-Debuginfo-Pool for sle-15-x86_64","enabled":false,"id":4792,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-CAP-Tools/15-SP3/x86_64/product_debug/"},{"installer_updates":false,"name":"SLE-Module-CAP-Tools15-SP3-Source-Pool","description":"SLE-Module-CAP-Tools15-SP3-Source-Pool for sle-15-x86_64","enabled":false,"id":4793,"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-CAP-Tools/15-SP3/x86_64/product_source/"}],"predecessor_ids":[1728,1809,2075],"cpe":"cpe:/o:suse:sle-module-cap-tools:15:sp3","product_type":"module","description":"

The SUSE Cloud Application Platform Tools Module is a collection of tools that enables you to interact with the SUSE Cloud Application Platform product itself, providing the commandline client for instance.

Access to the SUSE Cloud Application Platform Tools Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself; please check the Release Notes for further details.

","shortname":"SUSE-CAP-Tools-Module","free":true,"arch":"x86_64","eula_url":"","friendly_version":"15 SP3","release_stage":"released","id":2176,"identifier":"sle-module-cap-tools","extensions":[],"version":"15.3","recommended":false,"migration_extra":false,"friendly_name":"SUSE Cloud Application Platform Tools Module 15 SP3 x86_64","former_identifier":"sle-module-cap-tools","release_type":null,"name":"SUSE Cloud Application Platform Tools Module","offline_predecessor_ids":[1678]},{"recommended":false,"version":"15.3","offline_predecessor_ids":[],"name":"Python 2 Module","release_type":null,"former_identifier":"sle-module-python2","migration_extra":true,"friendly_name":"Python 2 Module 15 SP3 x86_64","friendly_version":"15 SP3","extensions":[],"id":2184,"release_stage":"released","identifier":"sle-module-python2","free":true,"shortname":"Python2-Module","description":"

This module contains the python 2 packages.

Access to the Python 2 Module is included in your SUSE Linux Enterprise subscription. The module has a different lifecycle than SUSE Linux Enterprise itself. Packages in the this module are usually supported for at most three years.

","eula_url":"","arch":"x86_64","predecessor_ids":[1867,1992],"repositories":[{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Python2/15-SP3/x86_64/update/","distro_target":"sle-15-x86_64","autorefresh":true,"id":4829,"enabled":true,"description":"SLE-Module-Python2-15-SP3-Updates for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Python2-15-SP3-Updates"},{"id":4830,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Python2/15-SP3/x86_64/update_debug/","autorefresh":true,"distro_target":"sle-15-x86_64","name":"SLE-Module-Python2-15-SP3-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-Python2-15-SP3-Debuginfo-Updates for sle-15-x86_64"},{"description":"SLE-Module-Python2-15-SP3-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Python2-15-SP3-Pool","distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Python2/15-SP3/x86_64/product/","enabled":true,"id":4831},{"enabled":false,"id":4832,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Python2/15-SP3/x86_64/product_debug/","name":"SLE-Module-Python2-15-SP3-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-Python2-15-SP3-Debuginfo-Pool for sle-15-x86_64"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Python2/15-SP3/x86_64/product_source/","distro_target":"sle-15-x86_64","autorefresh":false,"id":4833,"enabled":false,"description":"SLE-Module-Python2-15-SP3-Source-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Python2-15-SP3-Source-Pool"}],"online_predecessor_ids":[1867,1992],"product_class":"MODULE","product_type":"module","cpe":"cpe:/o:suse:sle-module-python2:15:sp3"},{"version":"15.3","recommended":false,"release_type":null,"former_identifier":"sle-module-live-patching","migration_extra":false,"friendly_name":"SUSE Linux Enterprise Live Patching 15 SP3 x86_64","offline_predecessor_ids":[1536,1757,1888],"name":"SUSE Linux Enterprise Live Patching","friendly_version":"15 SP3","release_stage":"released","id":2187,"identifier":"sle-module-live-patching","extensions":[],"free":false,"description":"

SUSE Linux Enterprise Live Patching provides packages to update critical components in SUSE Linux Enterprise. With SUSE Linux Enterprise Live Patching, you can perform critical patching without shutting down your system, reducing the need for planned downtime and increasing service availability.

","shortname":"Live-Patching","arch":"x86_64","eula_url":"","repositories":[{"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Live-Patching/15-SP3/x86_64/update/","enabled":true,"id":4844,"description":"SLE-Module-Live-Patching15-SP3-Updates for sle-15-x86_64","name":"SLE-Module-Live-Patching15-SP3-Updates","installer_updates":false},{"enabled":false,"id":4845,"distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Live-Patching/15-SP3/x86_64/update_debug/","installer_updates":false,"name":"SLE-Module-Live-Patching15-SP3-Debuginfo-Updates","description":"SLE-Module-Live-Patching15-SP3-Debuginfo-Updates for sle-15-x86_64"},{"id":4846,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Live-Patching/15-SP3/x86_64/product/","distro_target":"sle-15-x86_64","autorefresh":false,"installer_updates":false,"name":"SLE-Module-Live-Patching15-SP3-Pool","description":"SLE-Module-Live-Patching15-SP3-Pool for sle-15-x86_64"},{"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Live-Patching/15-SP3/x86_64/product_debug/","enabled":false,"id":4847,"description":"SLE-Module-Live-Patching15-SP3-Debuginfo-Pool for sle-15-x86_64","name":"SLE-Module-Live-Patching15-SP3-Debuginfo-Pool","installer_updates":false},{"description":"SLE-Module-Live-Patching15-SP3-Source-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Live-Patching15-SP3-Source-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Live-Patching/15-SP3/x86_64/product_source/","distro_target":"sle-15-x86_64","autorefresh":false,"id":4848,"enabled":false}],"online_predecessor_ids":[1736,1828,1984],"product_class":"SLE-LP","predecessor_ids":[1736,1828,1984],"product_type":"extension","cpe":"cpe:/o:suse:sle-module-live-patching:15:sp3"},{"online_predecessor_ids":[1743,1871,1950],"repositories":[{"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Backports/SLE-15-SP3_x86_64/standard/","enabled":true,"id":4873,"description":"SUSE-PackageHub-15-SP3-Backports-Pool for sle-15-x86_64","name":"SUSE-PackageHub-15-SP3-Backports-Pool","installer_updates":false},{"name":"SUSE-PackageHub-15-SP3-Backports-Debuginfo","installer_updates":false,"description":"SUSE-PackageHub-15-SP3-Backports-Debuginfo for sle-15-x86_64","id":4874,"enabled":false,"url":"https://updates.suse.com/SUSE/Backports/SLE-15-SP3_x86_64/standard_debug/","autorefresh":true,"distro_target":"sle-15-x86_64"},{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP3/x86_64/update/","autorefresh":true,"distro_target":"sle-15-x86_64","id":4875,"enabled":true,"description":"SLE-Module-Packagehub-Subpackages15-SP3-Updates for sle-15-x86_64","name":"SLE-Module-Packagehub-Subpackages15-SP3-Updates","installer_updates":false},{"installer_updates":false,"name":"SLE-Module-Packagehub-Subpackages15-SP3-Debuginfo-Updates","description":"SLE-Module-Packagehub-Subpackages15-SP3-Debuginfo-Updates for sle-15-x86_64","id":4876,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP3/x86_64/update_debug/","distro_target":"sle-15-x86_64","autorefresh":true},{"url":"https://updates.suse.com/SUSE/Backports/SLE-15-SP3_x86_64/product/","distro_target":"sle-15-x86_64","autorefresh":false,"id":4877,"enabled":true,"description":"SUSE-PackageHub-15-SP3-Pool for sle-15-x86_64","installer_updates":false,"name":"SUSE-PackageHub-15-SP3-Pool"},{"name":"SLE-Module-Packagehub-Subpackages15-SP3-Pool","installer_updates":false,"description":"SLE-Module-Packagehub-Subpackages15-SP3-Pool for sle-15-x86_64","id":4878,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP3/x86_64/product/","autorefresh":false,"distro_target":"sle-15-x86_64"},{"description":"SLE-Module-Packagehub-Subpackages15-SP3-Debuginfo-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Packagehub-Subpackages15-SP3-Debuginfo-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP3/x86_64/product_debug/","distro_target":"sle-15-x86_64","autorefresh":false,"id":4879,"enabled":false},{"enabled":false,"id":4880,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP3/x86_64/product_source/","name":"SLE-Module-Packagehub-Subpackages15-SP3-Source-Pool","installer_updates":false,"description":"SLE-Module-Packagehub-Subpackages15-SP3-Source-Pool for sle-15-x86_64"}],"product_class":"MODULE","predecessor_ids":[1743,1871,1950],"product_type":"module","cpe":"cpe:/o:suse:packagehub:15:sp3","free":true,"description":"SUSE Package Hub is a free of charge module providing access to community maintained packages built to run on SUSE Linux Enterprise Server. Built from the same sources used in the openSUSE distributions, these quality packages provide additional software to what is found in the SUSE Linux Enterprise Server product. Packages from the Package Hub are delivered without L3 support from SUSE. General updates and fixes to the packages in SUSE Package Hub are provided by the openSUSE community based on their discretion, though SUSE will monitor and ensure that any known critical security issues will be addressed. Packages in the Package Hub are approved by SUSE for use with SUSE Linux Enterprise Server 15-SP3 and to not interfere with the supportability of SUSE Linux Enterprise Server, its modules and extensions. For more information about SUSE Package Hub please visit https://packagehub.suse.com.","shortname":"SUSE-PackageHub-15","arch":"x86_64","eula_url":"","friendly_version":"15 SP3","identifier":"PackageHub","release_stage":"released","id":2191,"extensions":[],"version":"15.3","recommended":false,"release_type":null,"former_identifier":"PackageHub","friendly_name":"SUSE Package Hub 15 SP3 x86_64","migration_extra":false,"offline_predecessor_ids":[1529,1813,1915],"name":"SUSE Package Hub"}],"friendly_version":"15 SP3","release_type":null,"former_identifier":"sle-module-basesystem","migration_extra":false,"friendly_name":"Basesystem Module 15 SP3 x86_64","offline_predecessor_ids":[1212,1368,1440],"name":"Basesystem Module","version":"15.3","recommended":true},{"friendly_version":"15 SP3","extensions":[],"release_stage":"released","id":2389,"identifier":"sle-module-certifications","recommended":false,"version":"15.3","name":"Certifications Module","offline_predecessor_ids":[],"friendly_name":"Certifications Module 15 SP3 x86_64","migration_extra":false,"former_identifier":"sle-module-certifications","release_type":null,"predecessor_ids":[],"online_predecessor_ids":[],"repositories":[{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Certifications/15-SP3/x86_64/update/","autorefresh":true,"distro_target":"sle-15-x86_64","id":5527,"enabled":true,"description":"SLE-Module-Certifications-15-SP3-Updates for sle-15-x86_64","name":"SLE-Module-Certifications-15-SP3-Updates","installer_updates":false},{"name":"SLE-Module-Certifications-15-SP3-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-Certifications-15-SP3-Debuginfo-Updates for sle-15-x86_64","enabled":false,"id":5528,"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Certifications/15-SP3/x86_64/update_debug/"},{"description":"SLE-Module-Certifications-15-SP3-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Certifications-15-SP3-Pool","distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Certifications/15-SP3/x86_64/product/","enabled":true,"id":5529},{"id":5530,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Certifications/15-SP3/x86_64/product_debug/","autorefresh":false,"distro_target":"sle-15-x86_64","name":"SLE-Module-Certifications-15-SP3-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-Certifications-15-SP3-Debuginfo-Pool for sle-15-x86_64"},{"description":"SLE-Module-Certifications-15-SP3-Source-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Certifications-15-SP3-Source-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Certifications/15-SP3/x86_64/product_source/","distro_target":"sle-15-x86_64","autorefresh":false,"id":5531,"enabled":false}],"product_class":"MODULE","cpe":"cpe:/o:suse:sle-module-certifications:15:sp3","product_type":"module","description":"

This module contains the certification packages.

Access to the Certifications Module is included in your SUSE Linux Enterprise subscription. The module has a different lifecycle than SUSE Linux Enterprise itself; please check the Release Notes for further details.

","shortname":"Certifications-Module","free":true,"eula_url":"","arch":"x86_64"}],"release_stage":"released","identifier":"SLES_SAP","id":2136,"shortname":"SLE-15-SP3-SAP","description":"SUSE Linux Enterprise offers a comprehensive suite of products built on a single code base. The platform addresses business needs from the smallest thin-client devices to the world's most powerful high-performance computing and mainframe servers. SUSE Linux Enterprise offers common management tools and technology certifications across the platform, and each product is enterprise-class.","free":false,"eula_url":"https://updates.suse.com/SUSE/Products/SLE-Product-SLES_SAP/15-SP3/x86_64/product.license/","arch":"x86_64","predecessor_ids":[1612,1766,1941],"product_class":"AiO","online_predecessor_ids":[1612,1766,1941],"repositories":[{"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Product-SLES_SAP/15-SP3/x86_64/update/","enabled":true,"id":4585,"description":"SLE-Product-SLES_SAP15-SP3-Updates for sle-15-x86_64","name":"SLE-Product-SLES_SAP15-SP3-Updates","installer_updates":false},{"id":4586,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-SLES_SAP/15-SP3/x86_64/update_debug/","distro_target":"sle-15-x86_64","autorefresh":true,"installer_updates":false,"name":"SLE-Product-SLES_SAP15-SP3-Debuginfo-Updates","description":"SLE-Product-SLES_SAP15-SP3-Debuginfo-Updates for sle-15-x86_64"},{"id":4587,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-SLES_SAP/15-SP3/x86_64/product/","autorefresh":false,"distro_target":"sle-15-x86_64","name":"SLE-Product-SLES_SAP15-SP3-Pool","installer_updates":false,"description":"SLE-Product-SLES_SAP15-SP3-Pool for sle-15-x86_64"},{"installer_updates":false,"name":"SLE-Product-SLES_SAP15-SP3-Debuginfo-Pool","description":"SLE-Product-SLES_SAP15-SP3-Debuginfo-Pool for sle-15-x86_64","id":4588,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-SLES_SAP/15-SP3/x86_64/product_debug/","distro_target":"sle-15-x86_64","autorefresh":false},{"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Product-SLES_SAP/15-SP3/x86_64/product_source/","enabled":false,"id":4589,"description":"SLE-Product-SLES_SAP15-SP3-Source-Pool for sle-15-x86_64","name":"SLE-Product-SLES_SAP15-SP3-Source-Pool","installer_updates":false}],"cpe":"cpe:/o:suse:sles_sap:15:sp3","product_type":"base"},{"version":"15.3","recommended":false,"release_type":null,"former_identifier":"SLES","friendly_name":"SUSE Linux Enterprise Server 15 SP3 aarch64","migration_extra":false,"offline_predecessor_ids":[1628,1875],"name":"SUSE Linux Enterprise Server","friendly_version":"15 SP3","id":2137,"release_stage":"released","identifier":"SLES","extensions":[{"release_stage":"released","identifier":"sle-module-basesystem","id":2142,"extensions":[{"recommended":false,"version":"15.3","offline_predecessor_ids":[],"name":"Desktop Applications Module","former_identifier":"sle-module-desktop-applications","release_type":null,"migration_extra":true,"friendly_name":"Desktop Applications Module 15 SP3 aarch64","friendly_version":"15 SP3","extensions":[{"friendly_version":"15 SP3","release_stage":"released","identifier":"sle-module-development-tools","id":2158,"extensions":[{"release_stage":"released","id":2130,"identifier":"sle-module-NVIDIA-compute","extensions":[],"friendly_version":"15","release_type":null,"former_identifier":"sle-module-NVIDIA-compute","migration_extra":false,"friendly_name":"NVIDIA Compute Module 15 aarch64","offline_predecessor_ids":[],"name":"NVIDIA Compute Module","version":"15","recommended":false,"product_type":"module","cpe":"cpe:/o:suse:sle-module-nvidia-compute:15","online_predecessor_ids":[],"product_class":"MODULE","repositories":[{"name":"SLE-Module-NVIDIA-Compute-15-Updates","installer_updates":false,"description":"SLE-Module-NVIDIA-Compute-15-Updates for sle-15-aarch64","enabled":true,"id":4560,"autorefresh":true,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-NVIDIA-Compute/15/aarch64/update/"},{"description":"SLE-Module-NVIDIA-Compute-15-Pool for sle-15-aarch64","name":"SLE-Module-NVIDIA-Compute-15-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-NVIDIA-Compute/15/aarch64/product/","autorefresh":false,"distro_target":"sle-15-aarch64","id":4561,"enabled":true},{"description":"NVIDIA-Compute-SLE-15","installer_updates":false,"name":"NVIDIA-Compute-SLE-15","url":"https://developer.download.nvidia.com/compute/cuda/repos/sles15/sbsa/","distro_target":null,"autorefresh":true,"id":4562,"enabled":true}],"predecessor_ids":[],"arch":"aarch64","eula_url":"https://updates.suse.com/SUSE/Products/SLE-Module-NVIDIA-Compute/15/aarch64/product.license/","free":true,"shortname":"NVIDIA-Compute-Module","description":"NVIDIA Compute Drivers - NVIDIA CUDA This Module contains software under the terms and conditions of a 3rd party EULA (End User License Agreement). The EULA can be found at https://docs.nvidia.com/cuda/eula/index.html. By using this software you agree to fully comply with the terms and conditions of the EULA. If you do not agree to the terms and conditions of the EULA, do not use the software."}],"version":"15.3","recommended":false,"release_type":null,"former_identifier":"sle-sdk","friendly_name":"Development Tools Module 15 SP3 aarch64","migration_extra":true,"offline_predecessor_ids":[1376,1430,1633,1889],"name":"Development Tools Module","online_predecessor_ids":[1598,1791,1968],"repositories":[{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15-SP3/aarch64/update/","distro_target":"sle-15-aarch64","autorefresh":true,"id":4699,"enabled":true,"description":"SLE-Module-DevTools15-SP3-Updates for sle-15-aarch64","installer_updates":false,"name":"SLE-Module-DevTools15-SP3-Updates"},{"id":4700,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15-SP3/aarch64/update_debug/","distro_target":"sle-15-aarch64","autorefresh":true,"installer_updates":false,"name":"SLE-Module-DevTools15-SP3-Debuginfo-Updates","description":"SLE-Module-DevTools15-SP3-Debuginfo-Updates for sle-15-aarch64"},{"distro_target":"sle-15-aarch64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP3/aarch64/product/","enabled":true,"id":4701,"description":"SLE-Module-DevTools15-SP3-Pool for sle-15-aarch64","installer_updates":false,"name":"SLE-Module-DevTools15-SP3-Pool"},{"description":"SLE-Module-DevTools15-SP3-Debuginfo-Pool for sle-15-aarch64","name":"SLE-Module-DevTools15-SP3-Debuginfo-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP3/aarch64/product_debug/","autorefresh":false,"distro_target":"sle-15-aarch64","id":4702,"enabled":false},{"description":"SLE-Module-DevTools15-SP3-Source-Pool for sle-15-aarch64","installer_updates":false,"name":"SLE-Module-DevTools15-SP3-Source-Pool","distro_target":"sle-15-aarch64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP3/aarch64/product_source/","enabled":false,"id":4703}],"product_class":"MODULE","predecessor_ids":[1598,1791,1968],"product_type":"module","cpe":"cpe:/o:suse:sle-module-development-tools:15:sp3","free":true,"shortname":"Development-Tools-Module","description":"

The Development Tools Module helps you developing applications for SUSE Linux Enterprise 15.

Access to the Development Tools Module is included in your SUSE Linux Enterprise product subscription. The module has a different lifecycle than SUSE Linux Enterprise itself.

","arch":"aarch64","eula_url":""}],"identifier":"sle-module-desktop-applications","release_stage":"released","id":2146,"free":true,"description":"

The SUSE Linux Enterprise Desktop Applications Module delivers a basic set of Desktop functionality.

Access to the Desktop Applications Module is included in your SUSE Linux Enterprise product subscription.

","shortname":"Desktop-Applications-Module","eula_url":"","arch":"aarch64","predecessor_ids":[1595,1773,1964],"product_class":"MODULE","online_predecessor_ids":[1595,1773,1964],"repositories":[{"enabled":true,"id":4639,"distro_target":"sle-15-aarch64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15-SP3/aarch64/update/","installer_updates":false,"name":"SLE-Module-Desktop-Applications15-SP3-Updates","description":"SLE-Module-Desktop-Applications15-SP3-Updates for sle-15-aarch64"},{"description":"SLE-Module-Desktop-Applications15-SP3-Debuginfo-Updates for sle-15-aarch64","installer_updates":false,"name":"SLE-Module-Desktop-Applications15-SP3-Debuginfo-Updates","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15-SP3/aarch64/update_debug/","distro_target":"sle-15-aarch64","autorefresh":true,"id":4640,"enabled":false},{"description":"SLE-Module-Desktop-Applications15-SP3-Pool for sle-15-aarch64","name":"SLE-Module-Desktop-Applications15-SP3-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP3/aarch64/product/","autorefresh":false,"distro_target":"sle-15-aarch64","id":4641,"enabled":true},{"enabled":false,"id":4642,"autorefresh":false,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP3/aarch64/product_debug/","name":"SLE-Module-Desktop-Applications15-SP3-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-Desktop-Applications15-SP3-Debuginfo-Pool for sle-15-aarch64"},{"description":"SLE-Module-Desktop-Applications15-SP3-Source-Pool for sle-15-aarch64","installer_updates":false,"name":"SLE-Module-Desktop-Applications15-SP3-Source-Pool","distro_target":"sle-15-aarch64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP3/aarch64/product_source/","enabled":false,"id":4643}],"product_type":"module","cpe":"cpe:/o:suse:sle-module-desktop-applications:15:sp3"},{"product_type":"module","cpe":"cpe:/o:suse:sle-module-server-applications:15:sp3","product_class":"MODULE","online_predecessor_ids":[1601,1777,1952],"repositories":[{"installer_updates":false,"name":"SLE-Module-Server-Applications15-SP3-Updates","description":"SLE-Module-Server-Applications15-SP3-Updates for sle-15-aarch64","id":4659,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15-SP3/aarch64/update/","distro_target":"sle-15-aarch64","autorefresh":true},{"description":"SLE-Module-Server-Applications15-SP3-Debuginfo-Updates for sle-15-aarch64","installer_updates":false,"name":"SLE-Module-Server-Applications15-SP3-Debuginfo-Updates","distro_target":"sle-15-aarch64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15-SP3/aarch64/update_debug/","enabled":false,"id":4660},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP3/aarch64/product/","distro_target":"sle-15-aarch64","autorefresh":false,"id":4661,"enabled":true,"description":"SLE-Module-Server-Applications15-SP3-Pool for sle-15-aarch64","installer_updates":false,"name":"SLE-Module-Server-Applications15-SP3-Pool"},{"description":"SLE-Module-Server-Applications15-SP3-Debuginfo-Pool for sle-15-aarch64","installer_updates":false,"name":"SLE-Module-Server-Applications15-SP3-Debuginfo-Pool","distro_target":"sle-15-aarch64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP3/aarch64/product_debug/","enabled":false,"id":4662},{"name":"SLE-Module-Server-Applications15-SP3-Source-Pool","installer_updates":false,"description":"SLE-Module-Server-Applications15-SP3-Source-Pool for sle-15-aarch64","id":4663,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP3/aarch64/product_source/","autorefresh":false,"distro_target":"sle-15-aarch64"}],"predecessor_ids":[1601,1777,1952],"arch":"aarch64","eula_url":"","free":true,"shortname":"Server-Applications-Module","description":"

The SUSE Linux Enterprise Server Applications Module delivers a basic set of Server functionality.

Access to the Server Applications Module is included in your SUSE Linux Enterprise Server subscription.

","id":2150,"release_stage":"released","identifier":"sle-module-server-applications","extensions":[{"offline_predecessor_ids":[1539],"name":"Web and Scripting Module","former_identifier":"sle-module-web-scripting","release_type":null,"friendly_name":"Web and Scripting Module 15 SP3 aarch64","migration_extra":true,"recommended":false,"version":"15.3","extensions":[],"identifier":"sle-module-web-scripting","release_stage":"released","id":2162,"friendly_version":"15 SP3","eula_url":"","arch":"aarch64","free":true,"description":"

The SUSE Linux Enterprise Web and Scripting Module should contains additional packages that are helpful when running a webserver.

Access to the Web and Scripting Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself: Package versions in this module are usually supported for at most three years. We are planning to release more recent versions on a schedule of approximately 18 month; the exact dates may differ per package.

","shortname":"Web-Scripting-Module","product_type":"module","cpe":"cpe:/o:suse:sle-module-web-scripting:15:sp3","predecessor_ids":[1718,1795,1973],"online_predecessor_ids":[1718,1795,1973],"product_class":"MODULE","repositories":[{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/15-SP3/aarch64/update/","autorefresh":true,"distro_target":"sle-15-aarch64","id":4719,"enabled":true,"description":"SLE-Module-Web-Scripting15-SP3-Updates for sle-15-aarch64","name":"SLE-Module-Web-Scripting15-SP3-Updates","installer_updates":false},{"enabled":false,"id":4720,"autorefresh":true,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/15-SP3/aarch64/update_debug/","name":"SLE-Module-Web-Scripting15-SP3-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-Web-Scripting15-SP3-Debuginfo-Updates for sle-15-aarch64"},{"enabled":true,"id":4721,"autorefresh":false,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP3/aarch64/product/","name":"SLE-Module-Web-Scripting15-SP3-Pool","installer_updates":false,"description":"SLE-Module-Web-Scripting15-SP3-Pool for sle-15-aarch64"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP3/aarch64/product_debug/","autorefresh":false,"distro_target":"sle-15-aarch64","id":4722,"enabled":false,"description":"SLE-Module-Web-Scripting15-SP3-Debuginfo-Pool for sle-15-aarch64","name":"SLE-Module-Web-Scripting15-SP3-Debuginfo-Pool","installer_updates":false},{"name":"SLE-Module-Web-Scripting15-SP3-Source-Pool","installer_updates":false,"description":"SLE-Module-Web-Scripting15-SP3-Source-Pool for sle-15-aarch64","enabled":false,"id":4723,"autorefresh":false,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP3/aarch64/product_source/"}]},{"recommended":false,"version":"15.3","name":"Legacy Module","offline_predecessor_ids":[],"friendly_name":"Legacy Module 15 SP3 aarch64","migration_extra":true,"former_identifier":"sle-module-legacy","release_type":null,"friendly_version":"15 SP3","extensions":[],"release_stage":"released","identifier":"sle-module-legacy","id":2168,"description":"

The Legacy Module helps you migrating applications from SUSE Linux Enterprise 12 and other systems to SUSE Linux Enterprise 15, by providing packages which are discontinued on SUSE Linux Enterprise Server, such as: ntp, IBM Java 8, and a number of libraries.

Access to the Legacy Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself. Packages in the this module are usually supported for at most three years.

","shortname":"Legacy-Module","free":true,"eula_url":"","arch":"aarch64","predecessor_ids":[1604,1801,1979],"repositories":[{"name":"SLE-Module-Legacy15-SP3-Updates","installer_updates":false,"description":"SLE-Module-Legacy15-SP3-Updates for sle-15-aarch64","id":4749,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/15-SP3/aarch64/update/","autorefresh":true,"distro_target":"sle-15-aarch64"},{"description":"SLE-Module-Legacy15-SP3-Debuginfo-Updates for sle-15-aarch64","name":"SLE-Module-Legacy15-SP3-Debuginfo-Updates","installer_updates":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/15-SP3/aarch64/update_debug/","autorefresh":true,"distro_target":"sle-15-aarch64","id":4750,"enabled":false},{"description":"SLE-Module-Legacy15-SP3-Pool for sle-15-aarch64","name":"SLE-Module-Legacy15-SP3-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15-SP3/aarch64/product/","autorefresh":false,"distro_target":"sle-15-aarch64","id":4751,"enabled":true},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15-SP3/aarch64/product_debug/","distro_target":"sle-15-aarch64","autorefresh":false,"id":4752,"enabled":false,"description":"SLE-Module-Legacy15-SP3-Debuginfo-Pool for sle-15-aarch64","installer_updates":false,"name":"SLE-Module-Legacy15-SP3-Debuginfo-Pool"},{"description":"SLE-Module-Legacy15-SP3-Source-Pool for sle-15-aarch64","name":"SLE-Module-Legacy15-SP3-Source-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15-SP3/aarch64/product_source/","autorefresh":false,"distro_target":"sle-15-aarch64","id":4753,"enabled":false}],"online_predecessor_ids":[1604,1801,1979],"product_class":"MODULE","cpe":"cpe:/o:suse:sle-module-legacy:15:sp3","product_type":"module"},{"arch":"aarch64","eula_url":"","description":"

The Public Cloud Module is a collection of tools that enables you to create and manage cloud images from the commandline on SUSE Linux Enterprise Server. When building your own images with KIWI or SUSE Studio, initialization code specific to the target cloud is included in that image.

Access to the Public Cloud Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself; please check the Release Notes for further details.

","shortname":"Public-Cloud-Module","free":true,"cpe":"cpe:/o:suse:sle-module-public-cloud:15:sp3","product_type":"module","online_predecessor_ids":[1645,1805,1985],"product_class":"MODULE","repositories":[{"installer_updates":false,"name":"SLE-Module-Public-Cloud15-SP3-Updates","description":"SLE-Module-Public-Cloud15-SP3-Updates for sle-15-aarch64","id":4769,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/15-SP3/aarch64/update/","distro_target":"sle-15-aarch64","autorefresh":true},{"id":4770,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/15-SP3/aarch64/update_debug/","distro_target":"sle-15-aarch64","autorefresh":true,"installer_updates":false,"name":"SLE-Module-Public-Cloud15-SP3-Debuginfo-Updates","description":"SLE-Module-Public-Cloud15-SP3-Debuginfo-Updates for sle-15-aarch64"},{"description":"SLE-Module-Public-Cloud15-SP3-Pool for sle-15-aarch64","installer_updates":false,"name":"SLE-Module-Public-Cloud15-SP3-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP3/aarch64/product/","distro_target":"sle-15-aarch64","autorefresh":false,"id":4771,"enabled":true},{"description":"SLE-Module-Public-Cloud15-SP3-Debuginfo-Pool for sle-15-aarch64","installer_updates":false,"name":"SLE-Module-Public-Cloud15-SP3-Debuginfo-Pool","distro_target":"sle-15-aarch64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP3/aarch64/product_debug/","enabled":false,"id":4772},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP3/aarch64/product_source/","distro_target":"sle-15-aarch64","autorefresh":false,"id":4773,"enabled":false,"description":"SLE-Module-Public-Cloud15-SP3-Source-Pool for sle-15-aarch64","installer_updates":false,"name":"SLE-Module-Public-Cloud15-SP3-Source-Pool"}],"predecessor_ids":[1645,1805,1985],"friendly_name":"Public Cloud Module 15 SP3 aarch64","migration_extra":false,"former_identifier":"sle-module-public-cloud","release_type":null,"name":"Public Cloud Module","offline_predecessor_ids":[1528],"version":"15.3","recommended":false,"release_stage":"released","identifier":"sle-module-public-cloud","id":2172,"extensions":[],"friendly_version":"15 SP3"},{"free":false,"shortname":"SLEHA15-SP3","description":"SUSE Linux High Availability Extension provides mature, industry-leading open-source high-availability clustering technologies that are easy to set up and use. It can be deployed in physical and/or virtual environments, and can cluster physical servers, virtual servers, or any combination of the two to suit your business’ needs.","arch":"aarch64","eula_url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP3/aarch64/product.license/","product_class":"SLE-HAE-ARM64","online_predecessor_ids":[1608,1782,1956],"repositories":[{"enabled":true,"id":4881,"autorefresh":true,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Updates/SLE-Product-HA/15-SP3/aarch64/update/","name":"SLE-Product-HA15-SP3-Updates","installer_updates":false,"description":"SLE-Product-HA15-SP3-Updates for sle-15-aarch64"},{"enabled":false,"id":4882,"distro_target":"sle-15-aarch64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-HA/15-SP3/aarch64/update_debug/","installer_updates":false,"name":"SLE-Product-HA15-SP3-Debuginfo-Updates","description":"SLE-Product-HA15-SP3-Debuginfo-Updates for sle-15-aarch64"},{"description":"SLE-Product-HA15-SP3-Pool for sle-15-aarch64","name":"SLE-Product-HA15-SP3-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP3/aarch64/product/","enabled":true,"id":4883},{"id":4884,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP3/aarch64/product_debug/","distro_target":"sle-15-aarch64","autorefresh":false,"installer_updates":false,"name":"SLE-Product-HA15-SP3-Debuginfo-Pool","description":"SLE-Product-HA15-SP3-Debuginfo-Pool for sle-15-aarch64"},{"enabled":false,"id":4885,"distro_target":"sle-15-aarch64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP3/aarch64/product_source/","installer_updates":false,"name":"SLE-Product-HA15-SP3-Source-Pool","description":"SLE-Product-HA15-SP3-Source-Pool for sle-15-aarch64"}],"predecessor_ids":[1608,1782,1956],"product_type":"extension","cpe":"cpe:/o:suse:sle-ha:15:sp3","version":"15.3","recommended":false,"former_identifier":"sle-ha","release_type":null,"friendly_name":"SUSE Linux Enterprise High Availability Extension 15 SP3 aarch64","migration_extra":false,"offline_predecessor_ids":[],"name":"SUSE Linux Enterprise High Availability Extension","friendly_version":"15 SP3","release_stage":"released","id":2192,"identifier":"sle-ha","extensions":[]},{"version":"7.1","recommended":false,"migration_extra":false,"friendly_name":"SUSE Enterprise Storage 7.1 aarch64","release_type":null,"former_identifier":"ses","name":"SUSE Enterprise Storage","offline_predecessor_ids":[],"friendly_version":"7.1","release_stage":"released","id":2414,"identifier":"ses","extensions":[],"shortname":"SES7.1","description":"SUSE Enterprise Storage 7.1 Pacific for SUSE Linux Enterprise Server 15 SP3, powered by Ceph.","free":false,"arch":"aarch64","eula_url":"","online_predecessor_ids":[1643,2120],"repositories":[{"autorefresh":true,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Updates/Storage/7.1/aarch64/update/","enabled":true,"id":5598,"description":"SUSE-Enterprise-Storage-7.1-Updates for sle-15-aarch64","name":"SUSE-Enterprise-Storage-7.1-Updates","installer_updates":false},{"url":"https://updates.suse.com/SUSE/Updates/Storage/7.1/aarch64/update_debug/","distro_target":"sle-15-aarch64","autorefresh":true,"id":5599,"enabled":false,"description":"SUSE-Enterprise-Storage-7.1-Debuginfo-Updates for sle-15-aarch64","installer_updates":false,"name":"SUSE-Enterprise-Storage-7.1-Debuginfo-Updates"},{"distro_target":"sle-15-aarch64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/Storage/7.1/aarch64/product/","enabled":true,"id":5600,"description":"SUSE-Enterprise-Storage-7.1-Pool for sle-15-aarch64","installer_updates":false,"name":"SUSE-Enterprise-Storage-7.1-Pool"},{"enabled":false,"id":5601,"distro_target":"sle-15-aarch64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/Storage/7.1/aarch64/product_debug/","installer_updates":false,"name":"SUSE-Enterprise-Storage-7.1-Debuginfo-Pool","description":"SUSE-Enterprise-Storage-7.1-Debuginfo-Pool for sle-15-aarch64"},{"installer_updates":false,"name":"SUSE-Enterprise-Storage-7.1-Source-Pool","description":"SUSE-Enterprise-Storage-7.1-Source-Pool for sle-15-aarch64","enabled":false,"id":5602,"distro_target":"sle-15-aarch64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/Storage/7.1/aarch64/product_source/"}],"product_class":"SES-ARM64","predecessor_ids":[1643,2120],"cpe":"cpe:/o:suse:ses:7.1","product_type":"extension"}],"friendly_version":"15 SP3","former_identifier":"sle-module-server-applications","release_type":null,"migration_extra":false,"friendly_name":"Server Applications Module 15 SP3 aarch64","offline_predecessor_ids":[],"name":"Server Applications Module","version":"15.3","recommended":true},{"extensions":[],"id":2154,"release_stage":"released","identifier":"sle-module-containers","friendly_version":"15 SP3","name":"Containers Module","offline_predecessor_ids":[],"friendly_name":"Containers Module 15 SP3 aarch64","migration_extra":false,"former_identifier":"sle-module-containers","release_type":null,"recommended":false,"version":"15.3","cpe":"cpe:/o:suse:sle-module-containers:15:sp3","product_type":"module","predecessor_ids":[1920,1960],"product_class":"MODULE","online_predecessor_ids":[1920,1960],"repositories":[{"description":"SLE-Module-Containers15-SP3-Updates for sle-15-aarch64","installer_updates":false,"name":"SLE-Module-Containers15-SP3-Updates","distro_target":"sle-15-aarch64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/15-SP3/aarch64/update/","enabled":true,"id":4679},{"description":"SLE-Module-Containers15-SP3-Debuginfo-Updates for sle-15-aarch64","name":"SLE-Module-Containers15-SP3-Debuginfo-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/15-SP3/aarch64/update_debug/","enabled":false,"id":4680},{"id":4681,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP3/aarch64/product/","distro_target":"sle-15-aarch64","autorefresh":false,"installer_updates":false,"name":"SLE-Module-Containers15-SP3-Pool","description":"SLE-Module-Containers15-SP3-Pool for sle-15-aarch64"},{"id":4682,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP3/aarch64/product_debug/","distro_target":"sle-15-aarch64","autorefresh":false,"installer_updates":false,"name":"SLE-Module-Containers15-SP3-Debuginfo-Pool","description":"SLE-Module-Containers15-SP3-Debuginfo-Pool for sle-15-aarch64"},{"id":4683,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP3/aarch64/product_source/","autorefresh":false,"distro_target":"sle-15-aarch64","name":"SLE-Module-Containers15-SP3-Source-Pool","installer_updates":false,"description":"SLE-Module-Containers15-SP3-Source-Pool for sle-15-aarch64"}],"eula_url":"","arch":"aarch64","shortname":"Containers-Module","description":"

This Module contains several packages revolving around containers and related tools.

","free":true},{"extensions":[],"release_stage":"released","id":2177,"identifier":"sle-module-transactional-server","friendly_version":"15 SP3","offline_predecessor_ids":[],"name":"Transactional Server Module","former_identifier":"sle-module-transactional-server","release_type":null,"friendly_name":"Transactional Server Module 15 SP3 aarch64","migration_extra":false,"recommended":false,"version":"15.3","product_type":"module","cpe":"cpe:/o:suse:sle-module-transactional-server:15:sp3","predecessor_ids":[1822,1995],"online_predecessor_ids":[1822,1995],"product_class":"MODULE","repositories":[{"installer_updates":false,"name":"SLE-Module-Transactional-Server15-SP3-Updates","description":"SLE-Module-Transactional-Server15-SP3-Updates for sle-15-aarch64","enabled":true,"id":4794,"distro_target":"sle-15-aarch64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Transactional-Server/15-SP3/aarch64/update/"},{"enabled":false,"id":4795,"distro_target":"sle-15-aarch64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Transactional-Server/15-SP3/aarch64/update_debug/","installer_updates":false,"name":"SLE-Module-Transactional-Server15-SP3-Debuginfo-Updates","description":"SLE-Module-Transactional-Server15-SP3-Debuginfo-Updates for sle-15-aarch64"},{"autorefresh":false,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Transactional-Server/15-SP3/aarch64/product/","enabled":true,"id":4796,"description":"SLE-Module-Transactional-Server15-SP3-Pool for sle-15-aarch64","name":"SLE-Module-Transactional-Server15-SP3-Pool","installer_updates":false},{"description":"SLE-Module-Transactional-Server15-SP3-Debuginfo-Pool for sle-15-aarch64","name":"SLE-Module-Transactional-Server15-SP3-Debuginfo-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Transactional-Server/15-SP3/aarch64/product_debug/","autorefresh":false,"distro_target":"sle-15-aarch64","id":4797,"enabled":false},{"enabled":false,"id":4798,"distro_target":"sle-15-aarch64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Transactional-Server/15-SP3/aarch64/product_source/","installer_updates":false,"name":"SLE-Module-Transactional-Server15-SP3-Source-Pool","description":"SLE-Module-Transactional-Server15-SP3-Source-Pool for sle-15-aarch64"}],"eula_url":"","arch":"aarch64","free":true,"shortname":"Transactional-Server-Module","description":"

Transactional Updates provide SUSE Linux Enterprise systems with a method of updating the operating system and its packages in an entirely ‘atomic’ way. Updates are either applied to the system all together in a single transaction, or not at all. This happens without influencing the running system. If an update fails, or if the successful update is deemed to be incompatible or otherwise incorrect, it can be discarded to immediately return the system to its previous functioning state.

Access to theTransactional Server Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself: Package versions in the this module are usually supported for at most three years. We are planning to release more recent versions on a schedule of approximately 18 month; the exact dates may differ per package.

"},{"name":"Python 2 Module","offline_predecessor_ids":[],"friendly_name":"Python 2 Module 15 SP3 aarch64","migration_extra":false,"former_identifier":"sle-module-python2","release_type":null,"recommended":false,"version":"15.3","extensions":[],"release_stage":"released","identifier":"sle-module-python2","id":2181,"friendly_version":"15 SP3","eula_url":"","arch":"aarch64","description":"

This module contains the python 2 packages.

Access to the Python 2 Module is included in your SUSE Linux Enterprise subscription. The module has a different lifecycle than SUSE Linux Enterprise itself. Packages in the this module are usually supported for at most three years.

","shortname":"Python2-Module","free":true,"cpe":"cpe:/o:suse:sle-module-python2:15:sp3","product_type":"module","predecessor_ids":[1864,1989],"product_class":"MODULE","online_predecessor_ids":[1864,1989],"repositories":[{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Python2/15-SP3/aarch64/update/","distro_target":"sle-15-aarch64","autorefresh":true,"id":4814,"enabled":true,"description":"SLE-Module-Python2-15-SP3-Updates for sle-15-aarch64","installer_updates":false,"name":"SLE-Module-Python2-15-SP3-Updates"},{"installer_updates":false,"name":"SLE-Module-Python2-15-SP3-Debuginfo-Updates","description":"SLE-Module-Python2-15-SP3-Debuginfo-Updates for sle-15-aarch64","id":4815,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Python2/15-SP3/aarch64/update_debug/","distro_target":"sle-15-aarch64","autorefresh":true},{"enabled":true,"id":4816,"distro_target":"sle-15-aarch64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Python2/15-SP3/aarch64/product/","installer_updates":false,"name":"SLE-Module-Python2-15-SP3-Pool","description":"SLE-Module-Python2-15-SP3-Pool for sle-15-aarch64"},{"enabled":false,"id":4817,"autorefresh":false,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Python2/15-SP3/aarch64/product_debug/","name":"SLE-Module-Python2-15-SP3-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-Python2-15-SP3-Debuginfo-Pool for sle-15-aarch64"},{"enabled":false,"id":4818,"distro_target":"sle-15-aarch64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Python2/15-SP3/aarch64/product_source/","installer_updates":false,"name":"SLE-Module-Python2-15-SP3-Source-Pool","description":"SLE-Module-Python2-15-SP3-Source-Pool for sle-15-aarch64"}]},{"release_stage":"released","id":2188,"identifier":"PackageHub","extensions":[],"friendly_version":"15 SP3","migration_extra":false,"friendly_name":"SUSE Package Hub 15 SP3 aarch64","former_identifier":"PackageHub","release_type":null,"name":"SUSE Package Hub","offline_predecessor_ids":[1532,1810,1912],"version":"15.3","recommended":false,"cpe":"cpe:/o:suse:packagehub:15:sp3","product_type":"module","online_predecessor_ids":[1740,1868,1947],"product_class":"MODULE","repositories":[{"distro_target":"sle-15-aarch64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Backports/SLE-15-SP3_aarch64/standard/","enabled":true,"id":4849,"description":"SUSE-PackageHub-15-SP3-Backports-Pool for sle-15-aarch64","installer_updates":false,"name":"SUSE-PackageHub-15-SP3-Backports-Pool"},{"id":4850,"enabled":false,"url":"https://updates.suse.com/SUSE/Backports/SLE-15-SP3_aarch64/standard_debug/","autorefresh":true,"distro_target":"sle-15-aarch64","name":"SUSE-PackageHub-15-SP3-Backports-Debuginfo","installer_updates":false,"description":"SUSE-PackageHub-15-SP3-Backports-Debuginfo for sle-15-aarch64"},{"autorefresh":true,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP3/aarch64/update/","enabled":true,"id":4851,"description":"SLE-Module-Packagehub-Subpackages15-SP3-Updates for sle-15-aarch64","name":"SLE-Module-Packagehub-Subpackages15-SP3-Updates","installer_updates":false},{"installer_updates":false,"name":"SLE-Module-Packagehub-Subpackages15-SP3-Debuginfo-Updates","description":"SLE-Module-Packagehub-Subpackages15-SP3-Debuginfo-Updates for sle-15-aarch64","id":4852,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP3/aarch64/update_debug/","distro_target":"sle-15-aarch64","autorefresh":true},{"enabled":true,"id":4853,"distro_target":"sle-15-aarch64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Backports/SLE-15-SP3_aarch64/product/","installer_updates":false,"name":"SUSE-PackageHub-15-SP3-Pool","description":"SUSE-PackageHub-15-SP3-Pool for sle-15-aarch64"},{"id":4854,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP3/aarch64/product/","autorefresh":false,"distro_target":"sle-15-aarch64","name":"SLE-Module-Packagehub-Subpackages15-SP3-Pool","installer_updates":false,"description":"SLE-Module-Packagehub-Subpackages15-SP3-Pool for sle-15-aarch64"},{"name":"SLE-Module-Packagehub-Subpackages15-SP3-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-Packagehub-Subpackages15-SP3-Debuginfo-Pool for sle-15-aarch64","id":4855,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP3/aarch64/product_debug/","autorefresh":false,"distro_target":"sle-15-aarch64"},{"name":"SLE-Module-Packagehub-Subpackages15-SP3-Source-Pool","installer_updates":false,"description":"SLE-Module-Packagehub-Subpackages15-SP3-Source-Pool for sle-15-aarch64","id":4856,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP3/aarch64/product_source/","autorefresh":false,"distro_target":"sle-15-aarch64"}],"predecessor_ids":[1740,1868,1947],"arch":"aarch64","eula_url":"","shortname":"SUSE-PackageHub-15","description":"SUSE Package Hub is a free of charge module providing access to community maintained packages built to run on SUSE Linux Enterprise Server. Built from the same sources used in the openSUSE distributions, these quality packages provide additional software to what is found in the SUSE Linux Enterprise Server product. Packages from the Package Hub are delivered without L3 support from SUSE. General updates and fixes to the packages in SUSE Package Hub are provided by the openSUSE community based on their discretion, though SUSE will monitor and ensure that any known critical security issues will be addressed. Packages in the Package Hub are approved by SUSE for use with SUSE Linux Enterprise Server 15-SP3 and to not interfere with the supportability of SUSE Linux Enterprise Server, its modules and extensions. For more information about SUSE Package Hub please visit https://packagehub.suse.com.","free":true}],"friendly_version":"15 SP3","former_identifier":"sle-module-basesystem","release_type":null,"migration_extra":false,"friendly_name":"Basesystem Module 15 SP3 aarch64","offline_predecessor_ids":[1522],"name":"Basesystem Module","version":"15.3","recommended":true,"product_type":"module","cpe":"cpe:/o:suse:sle-module-basesystem:15:sp3","product_class":"MODULE","online_predecessor_ids":[1589,1769,1943],"repositories":[{"id":4619,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15-SP3/aarch64/update/","distro_target":"sle-15-aarch64","autorefresh":true,"installer_updates":false,"name":"SLE-Module-Basesystem15-SP3-Updates","description":"SLE-Module-Basesystem15-SP3-Updates for sle-15-aarch64"},{"installer_updates":false,"name":"SLE-Module-Basesystem15-SP3-Debuginfo-Updates","description":"SLE-Module-Basesystem15-SP3-Debuginfo-Updates for sle-15-aarch64","enabled":false,"id":4620,"distro_target":"sle-15-aarch64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15-SP3/aarch64/update_debug/"},{"enabled":true,"id":4621,"distro_target":"sle-15-aarch64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP3/aarch64/product/","installer_updates":false,"name":"SLE-Module-Basesystem15-SP3-Pool","description":"SLE-Module-Basesystem15-SP3-Pool for sle-15-aarch64"},{"enabled":false,"id":4622,"autorefresh":false,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP3/aarch64/product_debug/","name":"SLE-Module-Basesystem15-SP3-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-Basesystem15-SP3-Debuginfo-Pool for sle-15-aarch64"},{"id":4623,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP3/aarch64/product_source/","distro_target":"sle-15-aarch64","autorefresh":false,"installer_updates":false,"name":"SLE-Module-Basesystem15-SP3-Source-Pool","description":"SLE-Module-Basesystem15-SP3-Source-Pool for sle-15-aarch64"}],"predecessor_ids":[1589,1769,1943],"arch":"aarch64","eula_url":"","free":true,"description":"

The SUSE Linux Enterprise Basesystem Module delivers the base system of the product.

","shortname":"Basesystem-Module"},{"name":"Certifications Module","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"Certifications Module 15 SP3 aarch64","former_identifier":"sle-module-certifications","release_type":null,"recommended":false,"version":"15.3","extensions":[],"identifier":"sle-module-certifications","release_stage":"released","id":2386,"friendly_version":"15 SP3","eula_url":"","arch":"aarch64","description":"

This module contains the certification packages.

Access to the Certifications Module is included in your SUSE Linux Enterprise subscription. The module has a different lifecycle than SUSE Linux Enterprise itself; please check the Release Notes for further details.

","shortname":"Certifications-Module","free":true,"cpe":"cpe:/o:suse:sle-module-certifications:15:sp3","product_type":"module","predecessor_ids":[],"online_predecessor_ids":[],"repositories":[{"name":"SLE-Module-Certifications-15-SP3-Updates","installer_updates":false,"description":"SLE-Module-Certifications-15-SP3-Updates for sle-15-aarch64","id":5512,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Certifications/15-SP3/aarch64/update/","autorefresh":true,"distro_target":"sle-15-aarch64"},{"enabled":false,"id":5513,"autorefresh":true,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Certifications/15-SP3/aarch64/update_debug/","name":"SLE-Module-Certifications-15-SP3-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-Certifications-15-SP3-Debuginfo-Updates for sle-15-aarch64"},{"distro_target":"sle-15-aarch64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Certifications/15-SP3/aarch64/product/","enabled":true,"id":5514,"description":"SLE-Module-Certifications-15-SP3-Pool for sle-15-aarch64","installer_updates":false,"name":"SLE-Module-Certifications-15-SP3-Pool"},{"id":5515,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Certifications/15-SP3/aarch64/product_debug/","distro_target":"sle-15-aarch64","autorefresh":false,"installer_updates":false,"name":"SLE-Module-Certifications-15-SP3-Debuginfo-Pool","description":"SLE-Module-Certifications-15-SP3-Debuginfo-Pool for sle-15-aarch64"},{"description":"SLE-Module-Certifications-15-SP3-Source-Pool for sle-15-aarch64","name":"SLE-Module-Certifications-15-SP3-Source-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Certifications/15-SP3/aarch64/product_source/","enabled":false,"id":5516}],"product_class":"MODULE"},{"offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Server LTSS","release_type":null,"former_identifier":"SLES-LTSS","friendly_name":"SUSE Linux Enterprise Server LTSS 15 SP3 aarch64","migration_extra":false,"recommended":false,"version":"15.3","extensions":[],"release_stage":"released","id":2567,"identifier":"SLES-LTSS","friendly_version":"15 SP3","eula_url":"","arch":"aarch64","free":false,"shortname":"SLES15-SP3-LTSS","description":"SUSE Linux Enterprise offers a comprehensive suite of products built on a single code base. The platform addresses business needs from the smallest thin-client devices to the world's most powerful high-performance computing and mainframe servers. SUSE Linux Enterprise offers common management tools and technology certifications across the platform, and each product is enterprise-class.","product_type":"extension","cpe":"cpe:/o:suse:sles-ltss:15:sp3","predecessor_ids":[],"product_class":"SLES15-SP3-LTSS-ARM64","online_predecessor_ids":[],"repositories":[{"description":"SLE-Product-SLES15-SP3-LTSS-Updates for sle-15-aarch64","installer_updates":false,"name":"SLE-Product-SLES15-SP3-LTSS-Updates","distro_target":"sle-15-aarch64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-SLES/15-SP3-LTSS/aarch64/update/","enabled":true,"id":6129},{"description":"SLE-Product-SLES15-SP3-Debuginfo-LTSS-Updates for sle-15-aarch64","installer_updates":false,"name":"SLE-Product-SLES15-SP3-Debuginfo-LTSS-Updates","url":"https://updates.suse.com/SUSE/Updates/SLE-Product-SLES/15-SP3-LTSS/aarch64/update_debug/","distro_target":"sle-15-aarch64","autorefresh":true,"id":6130,"enabled":false}]}],"free":false,"shortname":"SLES15-SP3","description":"SUSE Linux Enterprise offers a comprehensive suite of products built on a single code base. The platform addresses business needs from the smallest thin-client devices to the world's most powerful high-performance computing and mainframe servers. SUSE Linux Enterprise offers common management tools and technology certifications across the platform, and each product is enterprise-class.","arch":"aarch64","eula_url":"https://updates.suse.com/SUSE/Products/SLE-Product-SLES/15-SP3/aarch64/product.license/","repositories":[{"enabled":true,"id":4590,"autorefresh":true,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Updates/SLE-Product-SLES/15-SP3/aarch64/update/","name":"SLE-Product-SLES15-SP3-Updates","installer_updates":false,"description":"SLE-Product-SLES15-SP3-Updates for sle-15-aarch64"},{"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-SLES/15-SP3/aarch64/update_debug/","distro_target":"sle-15-aarch64","autorefresh":true,"id":4591,"enabled":false,"description":"SLE-Product-SLES15-SP3-Debuginfo-Updates for sle-15-aarch64","installer_updates":false,"name":"SLE-Product-SLES15-SP3-Debuginfo-Updates"},{"description":"SLE15-SP3-Installer-Updates for sle-15-aarch64","installer_updates":true,"name":"SLE15-SP3-Installer-Updates","distro_target":"sle-15-aarch64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-INSTALLER/15-SP3/aarch64/update/","enabled":false,"id":4592},{"description":"SLE-Product-SLES15-SP3-Pool for sle-15-aarch64","installer_updates":false,"name":"SLE-Product-SLES15-SP3-Pool","distro_target":"sle-15-aarch64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-SLES/15-SP3/aarch64/product/","enabled":true,"id":4593},{"installer_updates":false,"name":"SLE-Product-SLES15-SP3-Debuginfo-Pool","description":"SLE-Product-SLES15-SP3-Debuginfo-Pool for sle-15-aarch64","id":4594,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-SLES/15-SP3/aarch64/product_debug/","distro_target":"sle-15-aarch64","autorefresh":false},{"url":"https://updates.suse.com/SUSE/Products/SLE-Product-SLES/15-SP3/aarch64/product_source/","distro_target":"sle-15-aarch64","autorefresh":false,"id":4595,"enabled":false,"description":"SLE-Product-SLES15-SP3-Source-Pool for sle-15-aarch64","installer_updates":false,"name":"SLE-Product-SLES15-SP3-Source-Pool"}],"online_predecessor_ids":[1586,1760,1936,2233],"product_class":"SLES-ARM64","predecessor_ids":[1586,1760,1936,2233],"product_type":"base","cpe":"cpe:/o:suse:sles:15:sp3"},{"eula_url":"https://updates.suse.com/SUSE/Products/SLE-Product-SLES/15-SP3/ppc64le/product.license/","arch":"ppc64le","free":false,"description":"SUSE Linux Enterprise offers a comprehensive suite of products built on a single code base. The platform addresses business needs from the smallest thin-client devices to the world's most powerful high-performance computing and mainframe servers. SUSE Linux Enterprise offers common management tools and technology certifications across the platform, and each product is enterprise-class.","shortname":"SLES15-SP3","product_type":"base","cpe":"cpe:/o:suse:sles:15:sp3","predecessor_ids":[1585,1761,1937,2234],"product_class":"SLES-PPC","online_predecessor_ids":[1585,1761,1937,2234],"repositories":[{"installer_updates":false,"name":"SLE-Product-SLES15-SP3-Updates","description":"SLE-Product-SLES15-SP3-Updates for sle-15-ppc64le","enabled":true,"id":4596,"distro_target":"sle-15-ppc64le","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-SLES/15-SP3/ppc64le/update/"},{"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-SLES/15-SP3/ppc64le/update_debug/","distro_target":"sle-15-ppc64le","autorefresh":true,"id":4597,"enabled":false,"description":"SLE-Product-SLES15-SP3-Debuginfo-Updates for sle-15-ppc64le","installer_updates":false,"name":"SLE-Product-SLES15-SP3-Debuginfo-Updates"},{"enabled":false,"id":4598,"autorefresh":true,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Updates/SLE-INSTALLER/15-SP3/ppc64le/update/","name":"SLE15-SP3-Installer-Updates","installer_updates":true,"description":"SLE15-SP3-Installer-Updates for sle-15-ppc64le"},{"description":"SLE-Product-SLES15-SP3-Pool for sle-15-ppc64le","installer_updates":false,"name":"SLE-Product-SLES15-SP3-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Product-SLES/15-SP3/ppc64le/product/","distro_target":"sle-15-ppc64le","autorefresh":false,"id":4599,"enabled":true},{"description":"SLE-Product-SLES15-SP3-Debuginfo-Pool for sle-15-ppc64le","name":"SLE-Product-SLES15-SP3-Debuginfo-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Products/SLE-Product-SLES/15-SP3/ppc64le/product_debug/","enabled":false,"id":4600},{"id":4601,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-SLES/15-SP3/ppc64le/product_source/","distro_target":"sle-15-ppc64le","autorefresh":false,"installer_updates":false,"name":"SLE-Product-SLES15-SP3-Source-Pool","description":"SLE-Product-SLES15-SP3-Source-Pool for sle-15-ppc64le"}],"offline_predecessor_ids":[1422,1626,1876],"name":"SUSE Linux Enterprise Server","release_type":null,"former_identifier":"SLES","migration_extra":false,"friendly_name":"SUSE Linux Enterprise Server 15 SP3 ppc64le","recommended":false,"version":"15.3","extensions":[{"product_type":"module","cpe":"cpe:/o:suse:sle-module-basesystem:15:sp3","predecessor_ids":[1588,1770,1944],"online_predecessor_ids":[1588,1770,1944],"product_class":"MODULE","repositories":[{"id":4624,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15-SP3/ppc64le/update/","distro_target":"sle-15-ppc64le","autorefresh":true,"installer_updates":false,"name":"SLE-Module-Basesystem15-SP3-Updates","description":"SLE-Module-Basesystem15-SP3-Updates for sle-15-ppc64le"},{"installer_updates":false,"name":"SLE-Module-Basesystem15-SP3-Debuginfo-Updates","description":"SLE-Module-Basesystem15-SP3-Debuginfo-Updates for sle-15-ppc64le","id":4625,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15-SP3/ppc64le/update_debug/","distro_target":"sle-15-ppc64le","autorefresh":true},{"description":"SLE-Module-Basesystem15-SP3-Pool for sle-15-ppc64le","name":"SLE-Module-Basesystem15-SP3-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP3/ppc64le/product/","enabled":true,"id":4626},{"description":"SLE-Module-Basesystem15-SP3-Debuginfo-Pool for sle-15-ppc64le","name":"SLE-Module-Basesystem15-SP3-Debuginfo-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP3/ppc64le/product_debug/","autorefresh":false,"distro_target":"sle-15-ppc64le","id":4627,"enabled":false},{"installer_updates":false,"name":"SLE-Module-Basesystem15-SP3-Source-Pool","description":"SLE-Module-Basesystem15-SP3-Source-Pool for sle-15-ppc64le","id":4628,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP3/ppc64le/product_source/","distro_target":"sle-15-ppc64le","autorefresh":false}],"eula_url":"","arch":"ppc64le","free":true,"shortname":"Basesystem-Module","description":"

The SUSE Linux Enterprise Basesystem Module delivers the base system of the product.

","extensions":[{"release_type":null,"former_identifier":"sle-module-desktop-applications","migration_extra":true,"friendly_name":"Desktop Applications Module 15 SP3 ppc64le","offline_predecessor_ids":[],"name":"Desktop Applications Module","version":"15.3","recommended":false,"id":2147,"release_stage":"released","identifier":"sle-module-desktop-applications","extensions":[{"description":"

The Development Tools Module helps you developing applications for SUSE Linux Enterprise 15.

Access to the Development Tools Module is included in your SUSE Linux Enterprise product subscription. The module has a different lifecycle than SUSE Linux Enterprise itself.

","shortname":"Development-Tools-Module","free":true,"eula_url":"","arch":"ppc64le","predecessor_ids":[1597,1792,1969],"online_predecessor_ids":[1597,1792,1969],"product_class":"MODULE","repositories":[{"distro_target":"sle-15-ppc64le","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15-SP3/ppc64le/update/","enabled":true,"id":4704,"description":"SLE-Module-DevTools15-SP3-Updates for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-DevTools15-SP3-Updates"},{"id":4705,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15-SP3/ppc64le/update_debug/","distro_target":"sle-15-ppc64le","autorefresh":true,"installer_updates":false,"name":"SLE-Module-DevTools15-SP3-Debuginfo-Updates","description":"SLE-Module-DevTools15-SP3-Debuginfo-Updates for sle-15-ppc64le"},{"id":4706,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP3/ppc64le/product/","autorefresh":false,"distro_target":"sle-15-ppc64le","name":"SLE-Module-DevTools15-SP3-Pool","installer_updates":false,"description":"SLE-Module-DevTools15-SP3-Pool for sle-15-ppc64le"},{"autorefresh":false,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP3/ppc64le/product_debug/","enabled":false,"id":4707,"description":"SLE-Module-DevTools15-SP3-Debuginfo-Pool for sle-15-ppc64le","name":"SLE-Module-DevTools15-SP3-Debuginfo-Pool","installer_updates":false},{"installer_updates":false,"name":"SLE-Module-DevTools15-SP3-Source-Pool","description":"SLE-Module-DevTools15-SP3-Source-Pool for sle-15-ppc64le","enabled":false,"id":4708,"distro_target":"sle-15-ppc64le","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP3/ppc64le/product_source/"}],"cpe":"cpe:/o:suse:sle-module-development-tools:15:sp3","product_type":"module","recommended":false,"version":"15.3","name":"Development Tools Module","offline_predecessor_ids":[1339,1428,1631,1890],"friendly_name":"Development Tools Module 15 SP3 ppc64le","migration_extra":true,"release_type":null,"former_identifier":"sle-sdk","friendly_version":"15 SP3","extensions":[],"release_stage":"released","identifier":"sle-module-development-tools","id":2159}],"friendly_version":"15 SP3","arch":"ppc64le","eula_url":"","free":true,"shortname":"Desktop-Applications-Module","description":"

The SUSE Linux Enterprise Desktop Applications Module delivers a basic set of Desktop functionality.

Access to the Desktop Applications Module is included in your SUSE Linux Enterprise product subscription.

","product_type":"module","cpe":"cpe:/o:suse:sle-module-desktop-applications:15:sp3","product_class":"MODULE","online_predecessor_ids":[1594,1774,1965],"repositories":[{"description":"SLE-Module-Desktop-Applications15-SP3-Updates for sle-15-ppc64le","name":"SLE-Module-Desktop-Applications15-SP3-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15-SP3/ppc64le/update/","enabled":true,"id":4644},{"name":"SLE-Module-Desktop-Applications15-SP3-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-Desktop-Applications15-SP3-Debuginfo-Updates for sle-15-ppc64le","id":4645,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15-SP3/ppc64le/update_debug/","autorefresh":true,"distro_target":"sle-15-ppc64le"},{"enabled":true,"id":4646,"autorefresh":false,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP3/ppc64le/product/","name":"SLE-Module-Desktop-Applications15-SP3-Pool","installer_updates":false,"description":"SLE-Module-Desktop-Applications15-SP3-Pool for sle-15-ppc64le"},{"autorefresh":false,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP3/ppc64le/product_debug/","enabled":false,"id":4647,"description":"SLE-Module-Desktop-Applications15-SP3-Debuginfo-Pool for sle-15-ppc64le","name":"SLE-Module-Desktop-Applications15-SP3-Debuginfo-Pool","installer_updates":false},{"enabled":false,"id":4648,"autorefresh":false,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP3/ppc64le/product_source/","name":"SLE-Module-Desktop-Applications15-SP3-Source-Pool","installer_updates":false,"description":"SLE-Module-Desktop-Applications15-SP3-Source-Pool for sle-15-ppc64le"}],"predecessor_ids":[1594,1774,1965]},{"shortname":"Server-Applications-Module","description":"

The SUSE Linux Enterprise Server Applications Module delivers a basic set of Server functionality.

Access to the Server Applications Module is included in your SUSE Linux Enterprise Server subscription.

","free":true,"eula_url":"","arch":"ppc64le","predecessor_ids":[1600,1778,1953],"online_predecessor_ids":[1600,1778,1953],"repositories":[{"enabled":true,"id":4664,"distro_target":"sle-15-ppc64le","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15-SP3/ppc64le/update/","installer_updates":false,"name":"SLE-Module-Server-Applications15-SP3-Updates","description":"SLE-Module-Server-Applications15-SP3-Updates for sle-15-ppc64le"},{"description":"SLE-Module-Server-Applications15-SP3-Debuginfo-Updates for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-Server-Applications15-SP3-Debuginfo-Updates","distro_target":"sle-15-ppc64le","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15-SP3/ppc64le/update_debug/","enabled":false,"id":4665},{"description":"SLE-Module-Server-Applications15-SP3-Pool for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-Server-Applications15-SP3-Pool","distro_target":"sle-15-ppc64le","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP3/ppc64le/product/","enabled":true,"id":4666},{"description":"SLE-Module-Server-Applications15-SP3-Debuginfo-Pool for sle-15-ppc64le","name":"SLE-Module-Server-Applications15-SP3-Debuginfo-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP3/ppc64le/product_debug/","autorefresh":false,"distro_target":"sle-15-ppc64le","id":4667,"enabled":false},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP3/ppc64le/product_source/","distro_target":"sle-15-ppc64le","autorefresh":false,"id":4668,"enabled":false,"description":"SLE-Module-Server-Applications15-SP3-Source-Pool for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-Server-Applications15-SP3-Source-Pool"}],"product_class":"MODULE","cpe":"cpe:/o:suse:sle-module-server-applications:15:sp3","product_type":"module","recommended":true,"version":"15.3","name":"Server Applications Module","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"Server Applications Module 15 SP3 ppc64le","former_identifier":"sle-module-server-applications","release_type":null,"friendly_version":"15 SP3","extensions":[{"extensions":[],"id":2076,"release_stage":"released","identifier":"ibm-power-advance-toolchain","friendly_version":"15","name":"IBM POWER Advance Toolchain for SLE","offline_predecessor_ids":[1249],"migration_extra":false,"friendly_name":"IBM POWER Advance Toolchain for SLE 15 ppc64le","release_type":null,"former_identifier":"ibm-power-advance-toolchain","recommended":false,"version":"15","cpe":"cpe:/o:suse:ibm-power-advance-toolchain:15","product_type":"extension","predecessor_ids":[],"product_class":"MODULE","online_predecessor_ids":[],"repositories":[{"id":4430,"enabled":true,"url":"https://public.dhe.ibm.com/software/server/POWER/Linux/toolchain/at/suse/SLES_15/","distro_target":null,"autorefresh":true,"installer_updates":false,"name":"IBM-POWER-Adv-Toolchain","description":"IBM-POWER-Adv-Toolchain"}],"eula_url":"","arch":"ppc64le","shortname":"IBMPWAT15","description":"IBM POWER Advance Toolchain for SLE 15","free":true},{"predecessor_ids":[],"repositories":[{"description":"IBM-POWER-Tools","name":"IBM-POWER-Tools","installer_updates":false,"url":"https://public.dhe.ibm.com/software/server/POWER/Linux/yum/OSS/SLES/15/ppc64le/","autorefresh":true,"distro_target":null,"id":4431,"enabled":true}],"online_predecessor_ids":[],"product_class":"MODULE","product_type":"extension","cpe":"cpe:/o:suse:ibm-power-tools:15","free":true,"shortname":"IBMPWUT15","description":"IBM POWER Tools for SLE 15","eula_url":"https://public.dhe.ibm.com/software/server/POWER/Linux/yum/OSS/SLES/15/ppc64le.license/","arch":"ppc64le","friendly_version":"15","extensions":[],"release_stage":"released","id":2077,"identifier":"ibm-power-tools","recommended":false,"version":"15","offline_predecessor_ids":[1250],"name":"IBM POWER Tools for SLE","former_identifier":"ibm-power-tools","release_type":null,"migration_extra":false,"friendly_name":"IBM POWER Tools for SLE 15 ppc64le"},{"identifier":"sle-module-web-scripting","release_stage":"released","id":2163,"extensions":[],"friendly_version":"15 SP3","migration_extra":true,"friendly_name":"Web and Scripting Module 15 SP3 ppc64le","release_type":null,"former_identifier":"sle-module-web-scripting","name":"Web and Scripting Module","offline_predecessor_ids":[1151],"version":"15.3","recommended":false,"cpe":"cpe:/o:suse:sle-module-web-scripting:15:sp3","product_type":"module","repositories":[{"installer_updates":false,"name":"SLE-Module-Web-Scripting15-SP3-Updates","description":"SLE-Module-Web-Scripting15-SP3-Updates for sle-15-ppc64le","enabled":true,"id":4724,"distro_target":"sle-15-ppc64le","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/15-SP3/ppc64le/update/"},{"id":4725,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/15-SP3/ppc64le/update_debug/","distro_target":"sle-15-ppc64le","autorefresh":true,"installer_updates":false,"name":"SLE-Module-Web-Scripting15-SP3-Debuginfo-Updates","description":"SLE-Module-Web-Scripting15-SP3-Debuginfo-Updates for sle-15-ppc64le"},{"installer_updates":false,"name":"SLE-Module-Web-Scripting15-SP3-Pool","description":"SLE-Module-Web-Scripting15-SP3-Pool for sle-15-ppc64le","id":4726,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP3/ppc64le/product/","distro_target":"sle-15-ppc64le","autorefresh":false},{"enabled":false,"id":4727,"distro_target":"sle-15-ppc64le","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP3/ppc64le/product_debug/","installer_updates":false,"name":"SLE-Module-Web-Scripting15-SP3-Debuginfo-Pool","description":"SLE-Module-Web-Scripting15-SP3-Debuginfo-Pool for sle-15-ppc64le"},{"id":4728,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP3/ppc64le/product_source/","distro_target":"sle-15-ppc64le","autorefresh":false,"installer_updates":false,"name":"SLE-Module-Web-Scripting15-SP3-Source-Pool","description":"SLE-Module-Web-Scripting15-SP3-Source-Pool for sle-15-ppc64le"}],"online_predecessor_ids":[1719,1796,1974],"product_class":"MODULE","predecessor_ids":[1719,1796,1974],"arch":"ppc64le","eula_url":"","shortname":"Web-Scripting-Module","description":"

The SUSE Linux Enterprise Web and Scripting Module should contains additional packages that are helpful when running a webserver.

Access to the Web and Scripting Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself: Package versions in this module are usually supported for at most three years. We are planning to release more recent versions on a schedule of approximately 18 month; the exact dates may differ per package.

","free":true},{"predecessor_ids":[1603,1802,1980],"online_predecessor_ids":[1603,1802,1980],"product_class":"MODULE","repositories":[{"name":"SLE-Module-Legacy15-SP3-Updates","installer_updates":false,"description":"SLE-Module-Legacy15-SP3-Updates for sle-15-ppc64le","enabled":true,"id":4754,"autorefresh":true,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/15-SP3/ppc64le/update/"},{"enabled":false,"id":4755,"autorefresh":true,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/15-SP3/ppc64le/update_debug/","name":"SLE-Module-Legacy15-SP3-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-Legacy15-SP3-Debuginfo-Updates for sle-15-ppc64le"},{"name":"SLE-Module-Legacy15-SP3-Pool","installer_updates":false,"description":"SLE-Module-Legacy15-SP3-Pool for sle-15-ppc64le","enabled":true,"id":4756,"autorefresh":false,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15-SP3/ppc64le/product/"},{"autorefresh":false,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15-SP3/ppc64le/product_debug/","enabled":false,"id":4757,"description":"SLE-Module-Legacy15-SP3-Debuginfo-Pool for sle-15-ppc64le","name":"SLE-Module-Legacy15-SP3-Debuginfo-Pool","installer_updates":false},{"id":4758,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15-SP3/ppc64le/product_source/","distro_target":"sle-15-ppc64le","autorefresh":false,"installer_updates":false,"name":"SLE-Module-Legacy15-SP3-Source-Pool","description":"SLE-Module-Legacy15-SP3-Source-Pool for sle-15-ppc64le"}],"product_type":"module","cpe":"cpe:/o:suse:sle-module-legacy:15:sp3","free":true,"description":"

The Legacy Module helps you migrating applications from SUSE Linux Enterprise 12 and other systems to SUSE Linux Enterprise 15, by providing packages which are discontinued on SUSE Linux Enterprise Server, such as: ntp, IBM Java 8, and a number of libraries.

Access to the Legacy Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself. Packages in the this module are usually supported for at most three years.

","shortname":"Legacy-Module","eula_url":"","arch":"ppc64le","friendly_version":"15 SP3","extensions":[],"release_stage":"released","identifier":"sle-module-legacy","id":2169,"recommended":false,"version":"15.3","offline_predecessor_ids":[1148],"name":"Legacy Module","former_identifier":"sle-module-legacy","release_type":null,"migration_extra":true,"friendly_name":"Legacy Module 15 SP3 ppc64le"},{"product_type":"module","cpe":"cpe:/o:suse:sle-module-public-cloud:15:sp3","product_class":"MODULE","online_predecessor_ids":[1616,1806,1986],"repositories":[{"description":"SLE-Module-Public-Cloud15-SP3-Updates for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-Public-Cloud15-SP3-Updates","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/15-SP3/ppc64le/update/","distro_target":"sle-15-ppc64le","autorefresh":true,"id":4774,"enabled":true},{"id":4775,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/15-SP3/ppc64le/update_debug/","distro_target":"sle-15-ppc64le","autorefresh":true,"installer_updates":false,"name":"SLE-Module-Public-Cloud15-SP3-Debuginfo-Updates","description":"SLE-Module-Public-Cloud15-SP3-Debuginfo-Updates for sle-15-ppc64le"},{"distro_target":"sle-15-ppc64le","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP3/ppc64le/product/","enabled":true,"id":4776,"description":"SLE-Module-Public-Cloud15-SP3-Pool for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-Public-Cloud15-SP3-Pool"},{"enabled":false,"id":4777,"distro_target":"sle-15-ppc64le","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP3/ppc64le/product_debug/","installer_updates":false,"name":"SLE-Module-Public-Cloud15-SP3-Debuginfo-Pool","description":"SLE-Module-Public-Cloud15-SP3-Debuginfo-Pool for sle-15-ppc64le"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP3/ppc64le/product_source/","distro_target":"sle-15-ppc64le","autorefresh":false,"id":4778,"enabled":false,"description":"SLE-Module-Public-Cloud15-SP3-Source-Pool for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-Public-Cloud15-SP3-Source-Pool"}],"predecessor_ids":[1616,1806,1986],"arch":"ppc64le","eula_url":"","free":true,"shortname":"Public-Cloud-Module","description":"

The Public Cloud Module is a collection of tools that enables you to create and manage cloud images from the commandline on SUSE Linux Enterprise Server. When building your own images with KIWI or SUSE Studio, initialization code specific to the target cloud is included in that image.

Access to the Public Cloud Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself; please check the Release Notes for further details.

","identifier":"sle-module-public-cloud","release_stage":"released","id":2173,"extensions":[],"friendly_version":"15 SP3","former_identifier":"sle-module-public-cloud","release_type":null,"friendly_name":"Public Cloud Module 15 SP3 ppc64le","migration_extra":false,"offline_predecessor_ids":[1218],"name":"Public Cloud Module","version":"15.3","recommended":false},{"release_stage":"released","id":2193,"identifier":"sle-ha","extensions":[],"friendly_version":"15 SP3","friendly_name":"SUSE Linux Enterprise High Availability Extension 15 SP3 ppc64le","migration_extra":false,"release_type":null,"former_identifier":"sle-ha","name":"SUSE Linux Enterprise High Availability Extension","offline_predecessor_ids":[1433,1635,1882],"version":"15.3","recommended":false,"cpe":"cpe:/o:suse:sle-ha:15:sp3","product_type":"extension","repositories":[{"autorefresh":true,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Updates/SLE-Product-HA/15-SP3/ppc64le/update/","enabled":true,"id":4886,"description":"SLE-Product-HA15-SP3-Updates for sle-15-ppc64le","name":"SLE-Product-HA15-SP3-Updates","installer_updates":false},{"installer_updates":false,"name":"SLE-Product-HA15-SP3-Debuginfo-Updates","description":"SLE-Product-HA15-SP3-Debuginfo-Updates for sle-15-ppc64le","id":4887,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-HA/15-SP3/ppc64le/update_debug/","distro_target":"sle-15-ppc64le","autorefresh":true},{"name":"SLE-Product-HA15-SP3-Pool","installer_updates":false,"description":"SLE-Product-HA15-SP3-Pool for sle-15-ppc64le","id":4888,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP3/ppc64le/product/","autorefresh":false,"distro_target":"sle-15-ppc64le"},{"autorefresh":false,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP3/ppc64le/product_debug/","enabled":false,"id":4889,"description":"SLE-Product-HA15-SP3-Debuginfo-Pool for sle-15-ppc64le","name":"SLE-Product-HA15-SP3-Debuginfo-Pool","installer_updates":false},{"url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP3/ppc64le/product_source/","distro_target":"sle-15-ppc64le","autorefresh":false,"id":4890,"enabled":false,"description":"SLE-Product-HA15-SP3-Source-Pool for sle-15-ppc64le","installer_updates":false,"name":"SLE-Product-HA15-SP3-Source-Pool"}],"online_predecessor_ids":[1606,1783,1957],"product_class":"SLE-HAE-PPC","predecessor_ids":[1606,1783,1957],"arch":"ppc64le","eula_url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP3/ppc64le/product.license/","description":"SUSE Linux High Availability Extension provides mature, industry-leading open-source high-availability clustering technologies that are easy to set up and use. It can be deployed in physical and/or virtual environments, and can cluster physical servers, virtual servers, or any combination of the two to suit your business’ needs.","shortname":"SLEHA15-SP3","free":false}],"release_stage":"released","identifier":"sle-module-server-applications","id":2151},{"name":"Containers Module","offline_predecessor_ids":[1353],"friendly_name":"Containers Module 15 SP3 ppc64le","migration_extra":false,"former_identifier":"sle-module-containers","release_type":null,"recommended":false,"version":"15.3","extensions":[],"release_stage":"released","identifier":"sle-module-containers","id":2155,"friendly_version":"15 SP3","eula_url":"","arch":"ppc64le","description":"

This Module contains several packages revolving around containers and related tools.

","shortname":"Containers-Module","free":true,"cpe":"cpe:/o:suse:sle-module-containers:15:sp3","product_type":"module","predecessor_ids":[1640,1788,1961],"product_class":"MODULE","online_predecessor_ids":[1640,1788,1961],"repositories":[{"installer_updates":false,"name":"SLE-Module-Containers15-SP3-Updates","description":"SLE-Module-Containers15-SP3-Updates for sle-15-ppc64le","enabled":true,"id":4684,"distro_target":"sle-15-ppc64le","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/15-SP3/ppc64le/update/"},{"name":"SLE-Module-Containers15-SP3-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-Containers15-SP3-Debuginfo-Updates for sle-15-ppc64le","id":4685,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/15-SP3/ppc64le/update_debug/","autorefresh":true,"distro_target":"sle-15-ppc64le"},{"description":"SLE-Module-Containers15-SP3-Pool for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-Containers15-SP3-Pool","distro_target":"sle-15-ppc64le","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP3/ppc64le/product/","enabled":true,"id":4686},{"autorefresh":false,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP3/ppc64le/product_debug/","enabled":false,"id":4687,"description":"SLE-Module-Containers15-SP3-Debuginfo-Pool for sle-15-ppc64le","name":"SLE-Module-Containers15-SP3-Debuginfo-Pool","installer_updates":false},{"id":4688,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP3/ppc64le/product_source/","distro_target":"sle-15-ppc64le","autorefresh":false,"installer_updates":false,"name":"SLE-Module-Containers15-SP3-Source-Pool","description":"SLE-Module-Containers15-SP3-Source-Pool for sle-15-ppc64le"}]},{"id":2178,"release_stage":"released","identifier":"sle-module-transactional-server","extensions":[],"friendly_version":"15 SP3","migration_extra":false,"friendly_name":"Transactional Server Module 15 SP3 ppc64le","release_type":null,"former_identifier":"sle-module-transactional-server","name":"Transactional Server Module","offline_predecessor_ids":[],"version":"15.3","recommended":false,"cpe":"cpe:/o:suse:sle-module-transactional-server:15:sp3","product_type":"module","repositories":[{"description":"SLE-Module-Transactional-Server15-SP3-Updates for sle-15-ppc64le","name":"SLE-Module-Transactional-Server15-SP3-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Transactional-Server/15-SP3/ppc64le/update/","enabled":true,"id":4799},{"id":4800,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Transactional-Server/15-SP3/ppc64le/update_debug/","distro_target":"sle-15-ppc64le","autorefresh":true,"installer_updates":false,"name":"SLE-Module-Transactional-Server15-SP3-Debuginfo-Updates","description":"SLE-Module-Transactional-Server15-SP3-Debuginfo-Updates for sle-15-ppc64le"},{"name":"SLE-Module-Transactional-Server15-SP3-Pool","installer_updates":false,"description":"SLE-Module-Transactional-Server15-SP3-Pool for sle-15-ppc64le","enabled":true,"id":4801,"autorefresh":false,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Transactional-Server/15-SP3/ppc64le/product/"},{"description":"SLE-Module-Transactional-Server15-SP3-Debuginfo-Pool for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-Transactional-Server15-SP3-Debuginfo-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Transactional-Server/15-SP3/ppc64le/product_debug/","distro_target":"sle-15-ppc64le","autorefresh":false,"id":4802,"enabled":false},{"id":4803,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Transactional-Server/15-SP3/ppc64le/product_source/","autorefresh":false,"distro_target":"sle-15-ppc64le","name":"SLE-Module-Transactional-Server15-SP3-Source-Pool","installer_updates":false,"description":"SLE-Module-Transactional-Server15-SP3-Source-Pool for sle-15-ppc64le"}],"online_predecessor_ids":[1823,1996],"product_class":"MODULE","predecessor_ids":[1823,1996],"arch":"ppc64le","eula_url":"","shortname":"Transactional-Server-Module","description":"

Transactional Updates provide SUSE Linux Enterprise systems with a method of updating the operating system and its packages in an entirely ‘atomic’ way. Updates are either applied to the system all together in a single transaction, or not at all. This happens without influencing the running system. If an update fails, or if the successful update is deemed to be incompatible or otherwise incorrect, it can be discarded to immediately return the system to its previous functioning state.

Access to theTransactional Server Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself: Package versions in the this module are usually supported for at most three years. We are planning to release more recent versions on a schedule of approximately 18 month; the exact dates may differ per package.

","free":true},{"version":"15.3","recommended":false,"migration_extra":false,"friendly_name":"Python 2 Module 15 SP3 ppc64le","former_identifier":"sle-module-python2","release_type":null,"name":"Python 2 Module","offline_predecessor_ids":[],"friendly_version":"15 SP3","id":2182,"release_stage":"released","identifier":"sle-module-python2","extensions":[],"description":"

This module contains the python 2 packages.

Access to the Python 2 Module is included in your SUSE Linux Enterprise subscription. The module has a different lifecycle than SUSE Linux Enterprise itself. Packages in the this module are usually supported for at most three years.

","shortname":"Python2-Module","free":true,"arch":"ppc64le","eula_url":"","product_class":"MODULE","online_predecessor_ids":[1865,1990],"repositories":[{"id":4819,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Python2/15-SP3/ppc64le/update/","autorefresh":true,"distro_target":"sle-15-ppc64le","name":"SLE-Module-Python2-15-SP3-Updates","installer_updates":false,"description":"SLE-Module-Python2-15-SP3-Updates for sle-15-ppc64le"},{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Python2/15-SP3/ppc64le/update_debug/","autorefresh":true,"distro_target":"sle-15-ppc64le","id":4820,"enabled":false,"description":"SLE-Module-Python2-15-SP3-Debuginfo-Updates for sle-15-ppc64le","name":"SLE-Module-Python2-15-SP3-Debuginfo-Updates","installer_updates":false},{"name":"SLE-Module-Python2-15-SP3-Pool","installer_updates":false,"description":"SLE-Module-Python2-15-SP3-Pool for sle-15-ppc64le","enabled":true,"id":4821,"autorefresh":false,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Python2/15-SP3/ppc64le/product/"},{"enabled":false,"id":4822,"autorefresh":false,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Python2/15-SP3/ppc64le/product_debug/","name":"SLE-Module-Python2-15-SP3-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-Python2-15-SP3-Debuginfo-Pool for sle-15-ppc64le"},{"description":"SLE-Module-Python2-15-SP3-Source-Pool for sle-15-ppc64le","name":"SLE-Module-Python2-15-SP3-Source-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Python2/15-SP3/ppc64le/product_source/","enabled":false,"id":4823}],"predecessor_ids":[1865,1990],"cpe":"cpe:/o:suse:sle-module-python2:15:sp3","product_type":"module"},{"offline_predecessor_ids":[1537,1756,1887],"name":"SUSE Linux Enterprise Live Patching","release_type":null,"former_identifier":"sle-module-live-patching","migration_extra":false,"friendly_name":"SUSE Linux Enterprise Live Patching 15 SP3 ppc64le","recommended":false,"version":"15.3","extensions":[],"identifier":"sle-module-live-patching","release_stage":"released","id":2185,"friendly_version":"15 SP3","eula_url":"","arch":"ppc64le","free":false,"description":"

SUSE Linux Enterprise Live Patching provides packages to update critical components in SUSE Linux Enterprise. With SUSE Linux Enterprise Live Patching, you can perform critical patching without shutting down your system, reducing the need for planned downtime and increasing service availability.

","shortname":"Live-Patching","product_type":"extension","cpe":"cpe:/o:suse:sle-module-live-patching:15:sp3","predecessor_ids":[1735,1827,1983],"online_predecessor_ids":[1735,1827,1983],"product_class":"SLE-LP-PPC","repositories":[{"name":"SLE-Module-Live-Patching15-SP3-Updates","installer_updates":false,"description":"SLE-Module-Live-Patching15-SP3-Updates for sle-15-ppc64le","id":4834,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Live-Patching/15-SP3/ppc64le/update/","autorefresh":true,"distro_target":"sle-15-ppc64le"},{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Live-Patching/15-SP3/ppc64le/update_debug/","distro_target":"sle-15-ppc64le","autorefresh":true,"id":4835,"enabled":false,"description":"SLE-Module-Live-Patching15-SP3-Debuginfo-Updates for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-Live-Patching15-SP3-Debuginfo-Updates"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Live-Patching/15-SP3/ppc64le/product/","distro_target":"sle-15-ppc64le","autorefresh":false,"id":4836,"enabled":true,"description":"SLE-Module-Live-Patching15-SP3-Pool for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-Live-Patching15-SP3-Pool"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Live-Patching/15-SP3/ppc64le/product_debug/","distro_target":"sle-15-ppc64le","autorefresh":false,"id":4837,"enabled":false,"description":"SLE-Module-Live-Patching15-SP3-Debuginfo-Pool for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-Live-Patching15-SP3-Debuginfo-Pool"},{"name":"SLE-Module-Live-Patching15-SP3-Source-Pool","installer_updates":false,"description":"SLE-Module-Live-Patching15-SP3-Source-Pool for sle-15-ppc64le","id":4838,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Live-Patching/15-SP3/ppc64le/product_source/","autorefresh":false,"distro_target":"sle-15-ppc64le"}]},{"release_stage":"released","id":2189,"identifier":"PackageHub","extensions":[],"friendly_version":"15 SP3","friendly_name":"SUSE Package Hub 15 SP3 ppc64le","migration_extra":false,"release_type":null,"former_identifier":"PackageHub","name":"SUSE Package Hub","offline_predecessor_ids":[1531,1811,1913],"version":"15.3","recommended":false,"cpe":"cpe:/o:suse:packagehub:15:sp3","product_type":"module","repositories":[{"url":"https://updates.suse.com/SUSE/Backports/SLE-15-SP3_ppc64le/standard/","distro_target":"sle-15-ppc64le","autorefresh":false,"id":4857,"enabled":true,"description":"SUSE-PackageHub-15-SP3-Backports-Pool for sle-15-ppc64le","installer_updates":false,"name":"SUSE-PackageHub-15-SP3-Backports-Pool"},{"description":"SUSE-PackageHub-15-SP3-Backports-Debuginfo for sle-15-ppc64le","installer_updates":false,"name":"SUSE-PackageHub-15-SP3-Backports-Debuginfo","url":"https://updates.suse.com/SUSE/Backports/SLE-15-SP3_ppc64le/standard_debug/","distro_target":"sle-15-ppc64le","autorefresh":true,"id":4858,"enabled":false},{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP3/ppc64le/update/","autorefresh":true,"distro_target":"sle-15-ppc64le","id":4859,"enabled":true,"description":"SLE-Module-Packagehub-Subpackages15-SP3-Updates for sle-15-ppc64le","name":"SLE-Module-Packagehub-Subpackages15-SP3-Updates","installer_updates":false},{"enabled":false,"id":4860,"autorefresh":true,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP3/ppc64le/update_debug/","name":"SLE-Module-Packagehub-Subpackages15-SP3-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-Packagehub-Subpackages15-SP3-Debuginfo-Updates for sle-15-ppc64le"},{"id":4861,"enabled":true,"url":"https://updates.suse.com/SUSE/Backports/SLE-15-SP3_ppc64le/product/","distro_target":"sle-15-ppc64le","autorefresh":false,"installer_updates":false,"name":"SUSE-PackageHub-15-SP3-Pool","description":"SUSE-PackageHub-15-SP3-Pool for sle-15-ppc64le"},{"description":"SLE-Module-Packagehub-Subpackages15-SP3-Pool for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-Packagehub-Subpackages15-SP3-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP3/ppc64le/product/","distro_target":"sle-15-ppc64le","autorefresh":false,"id":4862,"enabled":true},{"description":"SLE-Module-Packagehub-Subpackages15-SP3-Debuginfo-Pool for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-Packagehub-Subpackages15-SP3-Debuginfo-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP3/ppc64le/product_debug/","distro_target":"sle-15-ppc64le","autorefresh":false,"id":4863,"enabled":false},{"name":"SLE-Module-Packagehub-Subpackages15-SP3-Source-Pool","installer_updates":false,"description":"SLE-Module-Packagehub-Subpackages15-SP3-Source-Pool for sle-15-ppc64le","id":4864,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP3/ppc64le/product_source/","autorefresh":false,"distro_target":"sle-15-ppc64le"}],"online_predecessor_ids":[1741,1869,1948],"product_class":"MODULE","predecessor_ids":[1741,1869,1948],"arch":"ppc64le","eula_url":"","description":"SUSE Package Hub is a free of charge module providing access to community maintained packages built to run on SUSE Linux Enterprise Server. Built from the same sources used in the openSUSE distributions, these quality packages provide additional software to what is found in the SUSE Linux Enterprise Server product. Packages from the Package Hub are delivered without L3 support from SUSE. General updates and fixes to the packages in SUSE Package Hub are provided by the openSUSE community based on their discretion, though SUSE will monitor and ensure that any known critical security issues will be addressed. Packages in the Package Hub are approved by SUSE for use with SUSE Linux Enterprise Server 15-SP3 and to not interfere with the supportability of SUSE Linux Enterprise Server, its modules and extensions. For more information about SUSE Package Hub please visit https://packagehub.suse.com.","shortname":"SUSE-PackageHub-15","free":true}],"release_stage":"released","id":2143,"identifier":"sle-module-basesystem","friendly_version":"15 SP3","offline_predecessor_ids":[1294],"name":"Basesystem Module","former_identifier":"sle-module-basesystem","release_type":null,"migration_extra":false,"friendly_name":"Basesystem Module 15 SP3 ppc64le","recommended":true,"version":"15.3"},{"predecessor_ids":[],"product_class":"MODULE","online_predecessor_ids":[],"repositories":[{"id":5517,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Certifications/15-SP3/ppc64le/update/","distro_target":"sle-15-ppc64le","autorefresh":true,"installer_updates":false,"name":"SLE-Module-Certifications-15-SP3-Updates","description":"SLE-Module-Certifications-15-SP3-Updates for sle-15-ppc64le"},{"autorefresh":true,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Certifications/15-SP3/ppc64le/update_debug/","enabled":false,"id":5518,"description":"SLE-Module-Certifications-15-SP3-Debuginfo-Updates for sle-15-ppc64le","name":"SLE-Module-Certifications-15-SP3-Debuginfo-Updates","installer_updates":false},{"installer_updates":false,"name":"SLE-Module-Certifications-15-SP3-Pool","description":"SLE-Module-Certifications-15-SP3-Pool for sle-15-ppc64le","enabled":true,"id":5519,"distro_target":"sle-15-ppc64le","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Certifications/15-SP3/ppc64le/product/"},{"name":"SLE-Module-Certifications-15-SP3-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-Certifications-15-SP3-Debuginfo-Pool for sle-15-ppc64le","id":5520,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Certifications/15-SP3/ppc64le/product_debug/","autorefresh":false,"distro_target":"sle-15-ppc64le"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Certifications/15-SP3/ppc64le/product_source/","autorefresh":false,"distro_target":"sle-15-ppc64le","id":5521,"enabled":false,"description":"SLE-Module-Certifications-15-SP3-Source-Pool for sle-15-ppc64le","name":"SLE-Module-Certifications-15-SP3-Source-Pool","installer_updates":false}],"cpe":"cpe:/o:suse:sle-module-certifications:15:sp3","product_type":"module","shortname":"Certifications-Module","description":"

This module contains the certification packages.

Access to the Certifications Module is included in your SUSE Linux Enterprise subscription. The module has a different lifecycle than SUSE Linux Enterprise itself; please check the Release Notes for further details.

","free":true,"eula_url":"","arch":"ppc64le","friendly_version":"15 SP3","extensions":[],"release_stage":"released","id":2387,"identifier":"sle-module-certifications","recommended":false,"version":"15.3","name":"Certifications Module","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"Certifications Module 15 SP3 ppc64le","former_identifier":"sle-module-certifications","release_type":null},{"online_predecessor_ids":[],"product_class":"SLES15-SP3-LTSS-PPC","repositories":[{"name":"SLE-Product-SLES15-SP3-LTSS-Updates","installer_updates":false,"description":"SLE-Product-SLES15-SP3-LTSS-Updates for sle-15-ppc64le","id":6131,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-SLES/15-SP3-LTSS/ppc64le/update/","autorefresh":true,"distro_target":"sle-15-ppc64le"},{"distro_target":"sle-15-ppc64le","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-SLES/15-SP3-LTSS/ppc64le/update_debug/","enabled":false,"id":6132,"description":"SLE-Product-SLES15-SP3-Debuginfo-LTSS-Updates for sle-15-ppc64le","installer_updates":false,"name":"SLE-Product-SLES15-SP3-Debuginfo-LTSS-Updates"}],"predecessor_ids":[],"product_type":"extension","cpe":"cpe:/o:suse:sles-ltss:15:sp3","free":false,"shortname":"SLES15-SP3-LTSS","description":"SUSE Linux Enterprise offers a comprehensive suite of products built on a single code base. The platform addresses business needs from the smallest thin-client devices to the world's most powerful high-performance computing and mainframe servers. SUSE Linux Enterprise offers common management tools and technology certifications across the platform, and each product is enterprise-class.","arch":"ppc64le","eula_url":"","friendly_version":"15 SP3","release_stage":"released","identifier":"SLES-LTSS","id":2568,"extensions":[],"version":"15.3","recommended":false,"release_type":null,"former_identifier":"SLES-LTSS","friendly_name":"SUSE Linux Enterprise Server LTSS 15 SP3 ppc64le","migration_extra":false,"offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Server LTSS"}],"identifier":"SLES","release_stage":"released","id":2138,"friendly_version":"15 SP3"},{"repositories":[{"enabled":true,"id":4602,"autorefresh":true,"distro_target":"sle-15-s390x","url":"https://updates.suse.com/SUSE/Updates/SLE-Product-SLES/15-SP3/s390x/update/","name":"SLE-Product-SLES15-SP3-Updates","installer_updates":false,"description":"SLE-Product-SLES15-SP3-Updates for sle-15-s390x"},{"name":"SLE-Product-SLES15-SP3-Debuginfo-Updates","installer_updates":false,"description":"SLE-Product-SLES15-SP3-Debuginfo-Updates for sle-15-s390x","enabled":false,"id":4603,"autorefresh":true,"distro_target":"sle-15-s390x","url":"https://updates.suse.com/SUSE/Updates/SLE-Product-SLES/15-SP3/s390x/update_debug/"},{"enabled":false,"id":4604,"autorefresh":true,"distro_target":"sle-15-s390x","url":"https://updates.suse.com/SUSE/Updates/SLE-INSTALLER/15-SP3/s390x/update/","name":"SLE15-SP3-Installer-Updates","installer_updates":true,"description":"SLE15-SP3-Installer-Updates for sle-15-s390x"},{"description":"SLE-Product-SLES15-SP3-Pool for sle-15-s390x","name":"SLE-Product-SLES15-SP3-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-15-s390x","url":"https://updates.suse.com/SUSE/Products/SLE-Product-SLES/15-SP3/s390x/product/","enabled":true,"id":4605},{"url":"https://updates.suse.com/SUSE/Products/SLE-Product-SLES/15-SP3/s390x/product_debug/","distro_target":"sle-15-s390x","autorefresh":false,"id":4606,"enabled":false,"description":"SLE-Product-SLES15-SP3-Debuginfo-Pool for sle-15-s390x","installer_updates":false,"name":"SLE-Product-SLES15-SP3-Debuginfo-Pool"},{"installer_updates":false,"name":"SLE-Product-SLES15-SP3-Source-Pool","description":"SLE-Product-SLES15-SP3-Source-Pool for sle-15-s390x","id":4607,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-SLES/15-SP3/s390x/product_source/","distro_target":"sle-15-s390x","autorefresh":false}],"online_predecessor_ids":[1584,1762,1938,2235],"product_class":"SLES-Z","predecessor_ids":[1584,1762,1938,2235],"cpe":"cpe:/o:suse:sles:15:sp3","product_type":"base","shortname":"SLES15-SP3","description":"SUSE Linux Enterprise offers a comprehensive suite of products built on a single code base. The platform addresses business needs from the smallest thin-client devices to the world's most powerful high-performance computing and mainframe servers. SUSE Linux Enterprise offers common management tools and technology certifications across the platform, and each product is enterprise-class.","free":false,"arch":"s390x","eula_url":"https://updates.suse.com/SUSE/Products/SLE-Product-SLES/15-SP3/s390x/product.license/","friendly_version":"15 SP3","release_stage":"released","identifier":"SLES","id":2139,"extensions":[{"friendly_version":"15 SP3","release_stage":"released","id":2144,"identifier":"sle-module-basesystem","extensions":[{"cpe":"cpe:/o:suse:sle-module-desktop-applications:15:sp3","product_type":"module","online_predecessor_ids":[1593,1775,1966],"product_class":"MODULE","repositories":[{"name":"SLE-Module-Desktop-Applications15-SP3-Updates","installer_updates":false,"description":"SLE-Module-Desktop-Applications15-SP3-Updates for sle-15-s390x","enabled":true,"id":4649,"autorefresh":true,"distro_target":"sle-15-s390x","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15-SP3/s390x/update/"},{"description":"SLE-Module-Desktop-Applications15-SP3-Debuginfo-Updates for sle-15-s390x","name":"SLE-Module-Desktop-Applications15-SP3-Debuginfo-Updates","installer_updates":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15-SP3/s390x/update_debug/","autorefresh":true,"distro_target":"sle-15-s390x","id":4650,"enabled":false},{"installer_updates":false,"name":"SLE-Module-Desktop-Applications15-SP3-Pool","description":"SLE-Module-Desktop-Applications15-SP3-Pool for sle-15-s390x","enabled":true,"id":4651,"distro_target":"sle-15-s390x","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP3/s390x/product/"},{"name":"SLE-Module-Desktop-Applications15-SP3-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-Desktop-Applications15-SP3-Debuginfo-Pool for sle-15-s390x","enabled":false,"id":4652,"autorefresh":false,"distro_target":"sle-15-s390x","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP3/s390x/product_debug/"},{"installer_updates":false,"name":"SLE-Module-Desktop-Applications15-SP3-Source-Pool","description":"SLE-Module-Desktop-Applications15-SP3-Source-Pool for sle-15-s390x","enabled":false,"id":4653,"distro_target":"sle-15-s390x","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP3/s390x/product_source/"}],"predecessor_ids":[1593,1775,1966],"arch":"s390x","eula_url":"","description":"

The SUSE Linux Enterprise Desktop Applications Module delivers a basic set of Desktop functionality.

Access to the Desktop Applications Module is included in your SUSE Linux Enterprise product subscription.

","shortname":"Desktop-Applications-Module","free":true,"release_stage":"released","id":2148,"identifier":"sle-module-desktop-applications","extensions":[{"former_identifier":"sle-sdk","release_type":null,"migration_extra":true,"friendly_name":"Development Tools Module 15 SP3 s390x","offline_predecessor_ids":[1340,1429,1632,1891],"name":"Development Tools Module","version":"15.3","recommended":false,"release_stage":"released","identifier":"sle-module-development-tools","id":2160,"extensions":[],"friendly_version":"15 SP3","arch":"s390x","eula_url":"","free":true,"shortname":"Development-Tools-Module","description":"

The Development Tools Module helps you developing applications for SUSE Linux Enterprise 15.

Access to the Development Tools Module is included in your SUSE Linux Enterprise product subscription. The module has a different lifecycle than SUSE Linux Enterprise itself.

","product_type":"module","cpe":"cpe:/o:suse:sle-module-development-tools:15:sp3","product_class":"MODULE","online_predecessor_ids":[1596,1793,1970],"repositories":[{"name":"SLE-Module-DevTools15-SP3-Updates","installer_updates":false,"description":"SLE-Module-DevTools15-SP3-Updates for sle-15-s390x","id":4709,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15-SP3/s390x/update/","autorefresh":true,"distro_target":"sle-15-s390x"},{"name":"SLE-Module-DevTools15-SP3-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-DevTools15-SP3-Debuginfo-Updates for sle-15-s390x","enabled":false,"id":4710,"autorefresh":true,"distro_target":"sle-15-s390x","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15-SP3/s390x/update_debug/"},{"description":"SLE-Module-DevTools15-SP3-Pool for sle-15-s390x","name":"SLE-Module-DevTools15-SP3-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP3/s390x/product/","autorefresh":false,"distro_target":"sle-15-s390x","id":4711,"enabled":true},{"installer_updates":false,"name":"SLE-Module-DevTools15-SP3-Debuginfo-Pool","description":"SLE-Module-DevTools15-SP3-Debuginfo-Pool for sle-15-s390x","id":4712,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP3/s390x/product_debug/","distro_target":"sle-15-s390x","autorefresh":false},{"name":"SLE-Module-DevTools15-SP3-Source-Pool","installer_updates":false,"description":"SLE-Module-DevTools15-SP3-Source-Pool for sle-15-s390x","id":4713,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP3/s390x/product_source/","autorefresh":false,"distro_target":"sle-15-s390x"}],"predecessor_ids":[1596,1793,1970]}],"friendly_version":"15 SP3","friendly_name":"Desktop Applications Module 15 SP3 s390x","migration_extra":true,"release_type":null,"former_identifier":"sle-module-desktop-applications","name":"Desktop Applications Module","offline_predecessor_ids":[],"version":"15.3","recommended":false},{"version":"15.3","recommended":true,"former_identifier":"sle-module-server-applications","release_type":null,"friendly_name":"Server Applications Module 15 SP3 s390x","migration_extra":false,"offline_predecessor_ids":[],"name":"Server Applications Module","friendly_version":"15 SP3","release_stage":"released","identifier":"sle-module-server-applications","id":2152,"extensions":[{"friendly_version":"15 SP3","release_stage":"released","identifier":"sle-module-web-scripting","id":2164,"extensions":[],"version":"15.3","recommended":false,"former_identifier":"sle-module-web-scripting","release_type":null,"migration_extra":true,"friendly_name":"Web and Scripting Module 15 SP3 s390x","offline_predecessor_ids":[1152],"name":"Web and Scripting Module","online_predecessor_ids":[1720,1797,1975],"product_class":"MODULE","repositories":[{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/15-SP3/s390x/update/","autorefresh":true,"distro_target":"sle-15-s390x","id":4729,"enabled":true,"description":"SLE-Module-Web-Scripting15-SP3-Updates for sle-15-s390x","name":"SLE-Module-Web-Scripting15-SP3-Updates","installer_updates":false},{"autorefresh":true,"distro_target":"sle-15-s390x","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/15-SP3/s390x/update_debug/","enabled":false,"id":4730,"description":"SLE-Module-Web-Scripting15-SP3-Debuginfo-Updates for sle-15-s390x","name":"SLE-Module-Web-Scripting15-SP3-Debuginfo-Updates","installer_updates":false},{"autorefresh":false,"distro_target":"sle-15-s390x","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP3/s390x/product/","enabled":true,"id":4731,"description":"SLE-Module-Web-Scripting15-SP3-Pool for sle-15-s390x","name":"SLE-Module-Web-Scripting15-SP3-Pool","installer_updates":false},{"distro_target":"sle-15-s390x","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP3/s390x/product_debug/","enabled":false,"id":4732,"description":"SLE-Module-Web-Scripting15-SP3-Debuginfo-Pool for sle-15-s390x","installer_updates":false,"name":"SLE-Module-Web-Scripting15-SP3-Debuginfo-Pool"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP3/s390x/product_source/","autorefresh":false,"distro_target":"sle-15-s390x","id":4733,"enabled":false,"description":"SLE-Module-Web-Scripting15-SP3-Source-Pool for sle-15-s390x","name":"SLE-Module-Web-Scripting15-SP3-Source-Pool","installer_updates":false}],"predecessor_ids":[1720,1797,1975],"product_type":"module","cpe":"cpe:/o:suse:sle-module-web-scripting:15:sp3","free":true,"description":"

The SUSE Linux Enterprise Web and Scripting Module should contains additional packages that are helpful when running a webserver.

Access to the Web and Scripting Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself: Package versions in this module are usually supported for at most three years. We are planning to release more recent versions on a schedule of approximately 18 month; the exact dates may differ per package.

","shortname":"Web-Scripting-Module","arch":"s390x","eula_url":""},{"shortname":"Legacy-Module","description":"

The Legacy Module helps you migrating applications from SUSE Linux Enterprise 12 and other systems to SUSE Linux Enterprise 15, by providing packages which are discontinued on SUSE Linux Enterprise Server, such as: ntp, IBM Java 8, and a number of libraries.

Access to the Legacy Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself. Packages in the this module are usually supported for at most three years.

","free":true,"arch":"s390x","eula_url":"","product_class":"MODULE","online_predecessor_ids":[1602,1803,1981],"repositories":[{"description":"SLE-Module-Legacy15-SP3-Updates for sle-15-s390x","name":"SLE-Module-Legacy15-SP3-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-15-s390x","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/15-SP3/s390x/update/","enabled":true,"id":4759},{"enabled":false,"id":4760,"distro_target":"sle-15-s390x","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/15-SP3/s390x/update_debug/","installer_updates":false,"name":"SLE-Module-Legacy15-SP3-Debuginfo-Updates","description":"SLE-Module-Legacy15-SP3-Debuginfo-Updates for sle-15-s390x"},{"description":"SLE-Module-Legacy15-SP3-Pool for sle-15-s390x","name":"SLE-Module-Legacy15-SP3-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15-SP3/s390x/product/","autorefresh":false,"distro_target":"sle-15-s390x","id":4761,"enabled":true},{"description":"SLE-Module-Legacy15-SP3-Debuginfo-Pool for sle-15-s390x","installer_updates":false,"name":"SLE-Module-Legacy15-SP3-Debuginfo-Pool","distro_target":"sle-15-s390x","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15-SP3/s390x/product_debug/","enabled":false,"id":4762},{"id":4763,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15-SP3/s390x/product_source/","distro_target":"sle-15-s390x","autorefresh":false,"installer_updates":false,"name":"SLE-Module-Legacy15-SP3-Source-Pool","description":"SLE-Module-Legacy15-SP3-Source-Pool for sle-15-s390x"}],"predecessor_ids":[1602,1803,1981],"cpe":"cpe:/o:suse:sle-module-legacy:15:sp3","product_type":"module","version":"15.3","recommended":false,"friendly_name":"Legacy Module 15 SP3 s390x","migration_extra":true,"release_type":null,"former_identifier":"sle-module-legacy","name":"Legacy Module","offline_predecessor_ids":[1149],"friendly_version":"15 SP3","release_stage":"released","identifier":"sle-module-legacy","id":2170,"extensions":[]},{"predecessor_ids":[1646,1807,1987],"online_predecessor_ids":[1646,1807,1987],"repositories":[{"enabled":true,"id":4779,"distro_target":"sle-15-s390x","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/15-SP3/s390x/update/","installer_updates":false,"name":"SLE-Module-Public-Cloud15-SP3-Updates","description":"SLE-Module-Public-Cloud15-SP3-Updates for sle-15-s390x"},{"description":"SLE-Module-Public-Cloud15-SP3-Debuginfo-Updates for sle-15-s390x","installer_updates":false,"name":"SLE-Module-Public-Cloud15-SP3-Debuginfo-Updates","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/15-SP3/s390x/update_debug/","distro_target":"sle-15-s390x","autorefresh":true,"id":4780,"enabled":false},{"description":"SLE-Module-Public-Cloud15-SP3-Pool for sle-15-s390x","installer_updates":false,"name":"SLE-Module-Public-Cloud15-SP3-Pool","distro_target":"sle-15-s390x","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP3/s390x/product/","enabled":true,"id":4781},{"description":"SLE-Module-Public-Cloud15-SP3-Debuginfo-Pool for sle-15-s390x","name":"SLE-Module-Public-Cloud15-SP3-Debuginfo-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-15-s390x","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP3/s390x/product_debug/","enabled":false,"id":4782},{"description":"SLE-Module-Public-Cloud15-SP3-Source-Pool for sle-15-s390x","name":"SLE-Module-Public-Cloud15-SP3-Source-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP3/s390x/product_source/","autorefresh":false,"distro_target":"sle-15-s390x","id":4783,"enabled":false}],"product_class":"MODULE","cpe":"cpe:/o:suse:sle-module-public-cloud:15:sp3","product_type":"module","shortname":"Public-Cloud-Module","description":"

The Public Cloud Module is a collection of tools that enables you to create and manage cloud images from the commandline on SUSE Linux Enterprise Server. When building your own images with KIWI or SUSE Studio, initialization code specific to the target cloud is included in that image.

Access to the Public Cloud Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself; please check the Release Notes for further details.

","free":true,"eula_url":"","arch":"s390x","friendly_version":"15 SP3","extensions":[],"release_stage":"released","identifier":"sle-module-public-cloud","id":2174,"recommended":false,"version":"15.3","name":"Public Cloud Module","offline_predecessor_ids":[1219],"friendly_name":"Public Cloud Module 15 SP3 s390x","migration_extra":false,"former_identifier":"sle-module-public-cloud","release_type":null},{"recommended":false,"version":"15.3","name":"SUSE Linux Enterprise High Availability Extension","offline_predecessor_ids":[1080,1082,1084,1086,1109,1110,1257,1287,1434,1436,1636,1638,1883,1885],"friendly_name":"SUSE Linux Enterprise High Availability Extension 15 SP3 s390x","migration_extra":false,"release_type":null,"former_identifier":"sle-ha","friendly_version":"15 SP3","extensions":[],"release_stage":"released","id":2194,"identifier":"sle-ha","shortname":"SLEHA15-SP3","description":"SUSE Linux High Availability Extension provides mature, industry-leading open-source high-availability clustering technologies that are easy to set up and use. It can be deployed in physical and/or virtual environments, and can cluster physical servers, virtual servers, or any combination of the two to suit your business’ needs.","free":false,"eula_url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP3/s390x/product.license/","arch":"s390x","predecessor_ids":[1605,1784,1958],"product_class":"SLE-HAE-Z","online_predecessor_ids":[1605,1784,1958],"repositories":[{"description":"SLE-Product-HA15-SP3-Updates for sle-15-s390x","name":"SLE-Product-HA15-SP3-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-15-s390x","url":"https://updates.suse.com/SUSE/Updates/SLE-Product-HA/15-SP3/s390x/update/","enabled":true,"id":4891},{"description":"SLE-Product-HA15-SP3-Debuginfo-Updates for sle-15-s390x","name":"SLE-Product-HA15-SP3-Debuginfo-Updates","installer_updates":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-HA/15-SP3/s390x/update_debug/","autorefresh":true,"distro_target":"sle-15-s390x","id":4892,"enabled":false},{"autorefresh":false,"distro_target":"sle-15-s390x","url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP3/s390x/product/","enabled":true,"id":4893,"description":"SLE-Product-HA15-SP3-Pool for sle-15-s390x","name":"SLE-Product-HA15-SP3-Pool","installer_updates":false},{"installer_updates":false,"name":"SLE-Product-HA15-SP3-Debuginfo-Pool","description":"SLE-Product-HA15-SP3-Debuginfo-Pool for sle-15-s390x","id":4894,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP3/s390x/product_debug/","distro_target":"sle-15-s390x","autorefresh":false},{"description":"SLE-Product-HA15-SP3-Source-Pool for sle-15-s390x","installer_updates":false,"name":"SLE-Product-HA15-SP3-Source-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP3/s390x/product_source/","distro_target":"sle-15-s390x","autorefresh":false,"id":4895,"enabled":false}],"cpe":"cpe:/o:suse:sle-ha:15:sp3","product_type":"extension"}],"free":true,"description":"

The SUSE Linux Enterprise Server Applications Module delivers a basic set of Server functionality.

Access to the Server Applications Module is included in your SUSE Linux Enterprise Server subscription.

","shortname":"Server-Applications-Module","arch":"s390x","eula_url":"","online_predecessor_ids":[1599,1779,1954],"repositories":[{"description":"SLE-Module-Server-Applications15-SP3-Updates for sle-15-s390x","name":"SLE-Module-Server-Applications15-SP3-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-15-s390x","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15-SP3/s390x/update/","enabled":true,"id":4669},{"name":"SLE-Module-Server-Applications15-SP3-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-Server-Applications15-SP3-Debuginfo-Updates for sle-15-s390x","id":4670,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15-SP3/s390x/update_debug/","autorefresh":true,"distro_target":"sle-15-s390x"},{"installer_updates":false,"name":"SLE-Module-Server-Applications15-SP3-Pool","description":"SLE-Module-Server-Applications15-SP3-Pool for sle-15-s390x","enabled":true,"id":4671,"distro_target":"sle-15-s390x","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP3/s390x/product/"},{"id":4672,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP3/s390x/product_debug/","distro_target":"sle-15-s390x","autorefresh":false,"installer_updates":false,"name":"SLE-Module-Server-Applications15-SP3-Debuginfo-Pool","description":"SLE-Module-Server-Applications15-SP3-Debuginfo-Pool for sle-15-s390x"},{"id":4673,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP3/s390x/product_source/","distro_target":"sle-15-s390x","autorefresh":false,"installer_updates":false,"name":"SLE-Module-Server-Applications15-SP3-Source-Pool","description":"SLE-Module-Server-Applications15-SP3-Source-Pool for sle-15-s390x"}],"product_class":"MODULE","predecessor_ids":[1599,1779,1954],"product_type":"module","cpe":"cpe:/o:suse:sle-module-server-applications:15:sp3"},{"free":true,"shortname":"Containers-Module","description":"

This Module contains several packages revolving around containers and related tools.

","eula_url":"","arch":"s390x","predecessor_ids":[1641,1789,1962],"online_predecessor_ids":[1641,1789,1962],"product_class":"MODULE","repositories":[{"id":4689,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/15-SP3/s390x/update/","distro_target":"sle-15-s390x","autorefresh":true,"installer_updates":false,"name":"SLE-Module-Containers15-SP3-Updates","description":"SLE-Module-Containers15-SP3-Updates for sle-15-s390x"},{"enabled":false,"id":4690,"autorefresh":true,"distro_target":"sle-15-s390x","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/15-SP3/s390x/update_debug/","name":"SLE-Module-Containers15-SP3-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-Containers15-SP3-Debuginfo-Updates for sle-15-s390x"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP3/s390x/product/","autorefresh":false,"distro_target":"sle-15-s390x","id":4691,"enabled":true,"description":"SLE-Module-Containers15-SP3-Pool for sle-15-s390x","name":"SLE-Module-Containers15-SP3-Pool","installer_updates":false},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP3/s390x/product_debug/","autorefresh":false,"distro_target":"sle-15-s390x","id":4692,"enabled":false,"description":"SLE-Module-Containers15-SP3-Debuginfo-Pool for sle-15-s390x","name":"SLE-Module-Containers15-SP3-Debuginfo-Pool","installer_updates":false},{"installer_updates":false,"name":"SLE-Module-Containers15-SP3-Source-Pool","description":"SLE-Module-Containers15-SP3-Source-Pool for sle-15-s390x","id":4693,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP3/s390x/product_source/","distro_target":"sle-15-s390x","autorefresh":false}],"product_type":"module","cpe":"cpe:/o:suse:sle-module-containers:15:sp3","recommended":false,"version":"15.3","offline_predecessor_ids":[1354],"name":"Containers Module","former_identifier":"sle-module-containers","release_type":null,"friendly_name":"Containers Module 15 SP3 s390x","migration_extra":false,"friendly_version":"15 SP3","extensions":[],"identifier":"sle-module-containers","release_stage":"released","id":2156},{"version":"15.3","recommended":false,"friendly_name":"Transactional Server Module 15 SP3 s390x","migration_extra":false,"release_type":null,"former_identifier":"sle-module-transactional-server","name":"Transactional Server Module","offline_predecessor_ids":[],"friendly_version":"15 SP3","id":2179,"release_stage":"released","identifier":"sle-module-transactional-server","extensions":[],"shortname":"Transactional-Server-Module","description":"

Transactional Updates provide SUSE Linux Enterprise systems with a method of updating the operating system and its packages in an entirely ‘atomic’ way. Updates are either applied to the system all together in a single transaction, or not at all. This happens without influencing the running system. If an update fails, or if the successful update is deemed to be incompatible or otherwise incorrect, it can be discarded to immediately return the system to its previous functioning state.

Access to theTransactional Server Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself: Package versions in the this module are usually supported for at most three years. We are planning to release more recent versions on a schedule of approximately 18 month; the exact dates may differ per package.

","free":true,"arch":"s390x","eula_url":"","online_predecessor_ids":[1824,1997],"repositories":[{"description":"SLE-Module-Transactional-Server15-SP3-Updates for sle-15-s390x","installer_updates":false,"name":"SLE-Module-Transactional-Server15-SP3-Updates","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Transactional-Server/15-SP3/s390x/update/","distro_target":"sle-15-s390x","autorefresh":true,"id":4804,"enabled":true},{"id":4805,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Transactional-Server/15-SP3/s390x/update_debug/","autorefresh":true,"distro_target":"sle-15-s390x","name":"SLE-Module-Transactional-Server15-SP3-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-Transactional-Server15-SP3-Debuginfo-Updates for sle-15-s390x"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Transactional-Server/15-SP3/s390x/product/","distro_target":"sle-15-s390x","autorefresh":false,"id":4806,"enabled":true,"description":"SLE-Module-Transactional-Server15-SP3-Pool for sle-15-s390x","installer_updates":false,"name":"SLE-Module-Transactional-Server15-SP3-Pool"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Transactional-Server/15-SP3/s390x/product_debug/","distro_target":"sle-15-s390x","autorefresh":false,"id":4807,"enabled":false,"description":"SLE-Module-Transactional-Server15-SP3-Debuginfo-Pool for sle-15-s390x","installer_updates":false,"name":"SLE-Module-Transactional-Server15-SP3-Debuginfo-Pool"},{"id":4808,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Transactional-Server/15-SP3/s390x/product_source/","distro_target":"sle-15-s390x","autorefresh":false,"installer_updates":false,"name":"SLE-Module-Transactional-Server15-SP3-Source-Pool","description":"SLE-Module-Transactional-Server15-SP3-Source-Pool for sle-15-s390x"}],"product_class":"MODULE","predecessor_ids":[1824,1997],"cpe":"cpe:/o:suse:sle-module-transactional-server:15:sp3","product_type":"module"},{"migration_extra":false,"friendly_name":"Python 2 Module 15 SP3 s390x","release_type":null,"former_identifier":"sle-module-python2","name":"Python 2 Module","offline_predecessor_ids":[],"version":"15.3","recommended":false,"release_stage":"released","identifier":"sle-module-python2","id":2183,"extensions":[],"friendly_version":"15 SP3","arch":"s390x","eula_url":"","shortname":"Python2-Module","description":"

This module contains the python 2 packages.

Access to the Python 2 Module is included in your SUSE Linux Enterprise subscription. The module has a different lifecycle than SUSE Linux Enterprise itself. Packages in the this module are usually supported for at most three years.

","free":true,"cpe":"cpe:/o:suse:sle-module-python2:15:sp3","product_type":"module","product_class":"MODULE","online_predecessor_ids":[1866,1991],"repositories":[{"enabled":true,"id":4824,"autorefresh":true,"distro_target":"sle-15-s390x","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Python2/15-SP3/s390x/update/","name":"SLE-Module-Python2-15-SP3-Updates","installer_updates":false,"description":"SLE-Module-Python2-15-SP3-Updates for sle-15-s390x"},{"description":"SLE-Module-Python2-15-SP3-Debuginfo-Updates for sle-15-s390x","name":"SLE-Module-Python2-15-SP3-Debuginfo-Updates","installer_updates":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Python2/15-SP3/s390x/update_debug/","autorefresh":true,"distro_target":"sle-15-s390x","id":4825,"enabled":false},{"enabled":true,"id":4826,"distro_target":"sle-15-s390x","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Python2/15-SP3/s390x/product/","installer_updates":false,"name":"SLE-Module-Python2-15-SP3-Pool","description":"SLE-Module-Python2-15-SP3-Pool for sle-15-s390x"},{"autorefresh":false,"distro_target":"sle-15-s390x","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Python2/15-SP3/s390x/product_debug/","enabled":false,"id":4827,"description":"SLE-Module-Python2-15-SP3-Debuginfo-Pool for sle-15-s390x","name":"SLE-Module-Python2-15-SP3-Debuginfo-Pool","installer_updates":false},{"installer_updates":false,"name":"SLE-Module-Python2-15-SP3-Source-Pool","description":"SLE-Module-Python2-15-SP3-Source-Pool for sle-15-s390x","id":4828,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Python2/15-SP3/s390x/product_source/","distro_target":"sle-15-s390x","autorefresh":false}],"predecessor_ids":[1866,1991]},{"friendly_version":"15 SP3","release_stage":"released","identifier":"sle-module-live-patching","id":2186,"extensions":[],"version":"15.3","recommended":false,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Live Patching 15 SP3 s390x","release_type":null,"former_identifier":"sle-module-live-patching","name":"SUSE Linux Enterprise Live Patching","offline_predecessor_ids":[2079,2080],"online_predecessor_ids":[2081],"product_class":"SLE-LP-Z","repositories":[{"distro_target":"sle-15-s390x","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Live-Patching/15-SP3/s390x/update/","enabled":true,"id":4839,"description":"SLE-Module-Live-Patching15-SP3-Updates for sle-15-s390x","installer_updates":false,"name":"SLE-Module-Live-Patching15-SP3-Updates"},{"installer_updates":false,"name":"SLE-Module-Live-Patching15-SP3-Debuginfo-Updates","description":"SLE-Module-Live-Patching15-SP3-Debuginfo-Updates for sle-15-s390x","enabled":false,"id":4840,"distro_target":"sle-15-s390x","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Live-Patching/15-SP3/s390x/update_debug/"},{"name":"SLE-Module-Live-Patching15-SP3-Pool","installer_updates":false,"description":"SLE-Module-Live-Patching15-SP3-Pool for sle-15-s390x","id":4841,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Live-Patching/15-SP3/s390x/product/","autorefresh":false,"distro_target":"sle-15-s390x"},{"distro_target":"sle-15-s390x","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Live-Patching/15-SP3/s390x/product_debug/","enabled":false,"id":4842,"description":"SLE-Module-Live-Patching15-SP3-Debuginfo-Pool for sle-15-s390x","installer_updates":false,"name":"SLE-Module-Live-Patching15-SP3-Debuginfo-Pool"},{"autorefresh":false,"distro_target":"sle-15-s390x","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Live-Patching/15-SP3/s390x/product_source/","enabled":false,"id":4843,"description":"SLE-Module-Live-Patching15-SP3-Source-Pool for sle-15-s390x","name":"SLE-Module-Live-Patching15-SP3-Source-Pool","installer_updates":false}],"predecessor_ids":[2081],"cpe":"cpe:/o:suse:sle-module-live-patching:15:sp3","product_type":"extension","shortname":"Live-Patching","description":"

SUSE Linux Enterprise Live Patching provides packages to update critical components in SUSE Linux Enterprise. With SUSE Linux Enterprise Live Patching, you can perform critical patching without shutting down your system, reducing the need for planned downtime and increasing service availability.

","free":false,"arch":"s390x","eula_url":""},{"description":"SUSE Package Hub is a free of charge module providing access to community maintained packages built to run on SUSE Linux Enterprise Server. Built from the same sources used in the openSUSE distributions, these quality packages provide additional software to what is found in the SUSE Linux Enterprise Server product. Packages from the Package Hub are delivered without L3 support from SUSE. General updates and fixes to the packages in SUSE Package Hub are provided by the openSUSE community based on their discretion, though SUSE will monitor and ensure that any known critical security issues will be addressed. Packages in the Package Hub are approved by SUSE for use with SUSE Linux Enterprise Server 15-SP3 and to not interfere with the supportability of SUSE Linux Enterprise Server, its modules and extensions. For more information about SUSE Package Hub please visit https://packagehub.suse.com.","shortname":"SUSE-PackageHub-15","free":true,"arch":"s390x","eula_url":"","product_class":"MODULE","online_predecessor_ids":[1742,1870,1949],"repositories":[{"distro_target":"sle-15-s390x","autorefresh":false,"url":"https://updates.suse.com/SUSE/Backports/SLE-15-SP3_s390x/standard/","enabled":true,"id":4865,"description":"SUSE-PackageHub-15-SP3-Backports-Pool for sle-15-s390x","installer_updates":false,"name":"SUSE-PackageHub-15-SP3-Backports-Pool"},{"description":"SUSE-PackageHub-15-SP3-Backports-Debuginfo for sle-15-s390x","name":"SUSE-PackageHub-15-SP3-Backports-Debuginfo","installer_updates":false,"autorefresh":true,"distro_target":"sle-15-s390x","url":"https://updates.suse.com/SUSE/Backports/SLE-15-SP3_s390x/standard_debug/","enabled":false,"id":4866},{"installer_updates":false,"name":"SLE-Module-Packagehub-Subpackages15-SP3-Updates","description":"SLE-Module-Packagehub-Subpackages15-SP3-Updates for sle-15-s390x","id":4867,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP3/s390x/update/","distro_target":"sle-15-s390x","autorefresh":true},{"id":4868,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP3/s390x/update_debug/","distro_target":"sle-15-s390x","autorefresh":true,"installer_updates":false,"name":"SLE-Module-Packagehub-Subpackages15-SP3-Debuginfo-Updates","description":"SLE-Module-Packagehub-Subpackages15-SP3-Debuginfo-Updates for sle-15-s390x"},{"enabled":true,"id":4869,"distro_target":"sle-15-s390x","autorefresh":false,"url":"https://updates.suse.com/SUSE/Backports/SLE-15-SP3_s390x/product/","installer_updates":false,"name":"SUSE-PackageHub-15-SP3-Pool","description":"SUSE-PackageHub-15-SP3-Pool for sle-15-s390x"},{"distro_target":"sle-15-s390x","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP3/s390x/product/","enabled":true,"id":4870,"description":"SLE-Module-Packagehub-Subpackages15-SP3-Pool for sle-15-s390x","installer_updates":false,"name":"SLE-Module-Packagehub-Subpackages15-SP3-Pool"},{"description":"SLE-Module-Packagehub-Subpackages15-SP3-Debuginfo-Pool for sle-15-s390x","installer_updates":false,"name":"SLE-Module-Packagehub-Subpackages15-SP3-Debuginfo-Pool","distro_target":"sle-15-s390x","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP3/s390x/product_debug/","enabled":false,"id":4871},{"name":"SLE-Module-Packagehub-Subpackages15-SP3-Source-Pool","installer_updates":false,"description":"SLE-Module-Packagehub-Subpackages15-SP3-Source-Pool for sle-15-s390x","enabled":false,"id":4872,"autorefresh":false,"distro_target":"sle-15-s390x","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP3/s390x/product_source/"}],"predecessor_ids":[1742,1870,1949],"cpe":"cpe:/o:suse:packagehub:15:sp3","product_type":"module","version":"15.3","recommended":false,"migration_extra":false,"friendly_name":"SUSE Package Hub 15 SP3 s390x","release_type":null,"former_identifier":"PackageHub","name":"SUSE Package Hub","offline_predecessor_ids":[1530,1812,1914],"friendly_version":"15 SP3","identifier":"PackageHub","release_stage":"released","id":2190,"extensions":[]}],"version":"15.3","recommended":true,"release_type":null,"former_identifier":"sle-module-basesystem","friendly_name":"Basesystem Module 15 SP3 s390x","migration_extra":false,"offline_predecessor_ids":[1295,1367],"name":"Basesystem Module","repositories":[{"autorefresh":true,"distro_target":"sle-15-s390x","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15-SP3/s390x/update/","enabled":true,"id":4629,"description":"SLE-Module-Basesystem15-SP3-Updates for sle-15-s390x","name":"SLE-Module-Basesystem15-SP3-Updates","installer_updates":false},{"autorefresh":true,"distro_target":"sle-15-s390x","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15-SP3/s390x/update_debug/","enabled":false,"id":4630,"description":"SLE-Module-Basesystem15-SP3-Debuginfo-Updates for sle-15-s390x","name":"SLE-Module-Basesystem15-SP3-Debuginfo-Updates","installer_updates":false},{"description":"SLE-Module-Basesystem15-SP3-Pool for sle-15-s390x","installer_updates":false,"name":"SLE-Module-Basesystem15-SP3-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP3/s390x/product/","distro_target":"sle-15-s390x","autorefresh":false,"id":4631,"enabled":true},{"id":4632,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP3/s390x/product_debug/","autorefresh":false,"distro_target":"sle-15-s390x","name":"SLE-Module-Basesystem15-SP3-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-Basesystem15-SP3-Debuginfo-Pool for sle-15-s390x"},{"id":4633,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP3/s390x/product_source/","autorefresh":false,"distro_target":"sle-15-s390x","name":"SLE-Module-Basesystem15-SP3-Source-Pool","installer_updates":false,"description":"SLE-Module-Basesystem15-SP3-Source-Pool for sle-15-s390x"}],"online_predecessor_ids":[1587,1771,1945],"product_class":"MODULE","predecessor_ids":[1587,1771,1945],"product_type":"module","cpe":"cpe:/o:suse:sle-module-basesystem:15:sp3","free":true,"shortname":"Basesystem-Module","description":"

The SUSE Linux Enterprise Basesystem Module delivers the base system of the product.

","arch":"s390x","eula_url":""},{"friendly_version":"15 SP3","release_stage":"released","identifier":"sle-module-certifications","id":2388,"extensions":[],"version":"15.3","recommended":false,"release_type":null,"former_identifier":"sle-module-certifications","migration_extra":false,"friendly_name":"Certifications Module 15 SP3 s390x","offline_predecessor_ids":[],"name":"Certifications Module","online_predecessor_ids":[],"repositories":[{"enabled":true,"id":5522,"autorefresh":true,"distro_target":"sle-15-s390x","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Certifications/15-SP3/s390x/update/","name":"SLE-Module-Certifications-15-SP3-Updates","installer_updates":false,"description":"SLE-Module-Certifications-15-SP3-Updates for sle-15-s390x"},{"id":5523,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Certifications/15-SP3/s390x/update_debug/","autorefresh":true,"distro_target":"sle-15-s390x","name":"SLE-Module-Certifications-15-SP3-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-Certifications-15-SP3-Debuginfo-Updates for sle-15-s390x"},{"enabled":true,"id":5524,"autorefresh":false,"distro_target":"sle-15-s390x","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Certifications/15-SP3/s390x/product/","name":"SLE-Module-Certifications-15-SP3-Pool","installer_updates":false,"description":"SLE-Module-Certifications-15-SP3-Pool for sle-15-s390x"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Certifications/15-SP3/s390x/product_debug/","autorefresh":false,"distro_target":"sle-15-s390x","id":5525,"enabled":false,"description":"SLE-Module-Certifications-15-SP3-Debuginfo-Pool for sle-15-s390x","name":"SLE-Module-Certifications-15-SP3-Debuginfo-Pool","installer_updates":false},{"id":5526,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Certifications/15-SP3/s390x/product_source/","autorefresh":false,"distro_target":"sle-15-s390x","name":"SLE-Module-Certifications-15-SP3-Source-Pool","installer_updates":false,"description":"SLE-Module-Certifications-15-SP3-Source-Pool for sle-15-s390x"}],"product_class":"MODULE","predecessor_ids":[],"product_type":"module","cpe":"cpe:/o:suse:sle-module-certifications:15:sp3","free":true,"shortname":"Certifications-Module","description":"

This module contains the certification packages.

Access to the Certifications Module is included in your SUSE Linux Enterprise subscription. The module has a different lifecycle than SUSE Linux Enterprise itself; please check the Release Notes for further details.

","arch":"s390x","eula_url":""},{"release_stage":"released","identifier":"SLES-LTSS","id":2569,"extensions":[],"friendly_version":"15 SP3","release_type":null,"former_identifier":"SLES-LTSS","migration_extra":false,"friendly_name":"SUSE Linux Enterprise Server LTSS 15 SP3 s390x","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Server LTSS","version":"15.3","recommended":false,"product_type":"extension","cpe":"cpe:/o:suse:sles-ltss:15:sp3","product_class":"SLES15-SP3-LTSS-Z","online_predecessor_ids":[],"repositories":[{"description":"SLE-Product-SLES15-SP3-LTSS-Updates for sle-15-s390x","installer_updates":false,"name":"SLE-Product-SLES15-SP3-LTSS-Updates","url":"https://updates.suse.com/SUSE/Updates/SLE-Product-SLES/15-SP3-LTSS/s390x/update/","distro_target":"sle-15-s390x","autorefresh":true,"id":6133,"enabled":true},{"enabled":false,"id":6134,"distro_target":"sle-15-s390x","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-SLES/15-SP3-LTSS/s390x/update_debug/","installer_updates":false,"name":"SLE-Product-SLES15-SP3-Debuginfo-LTSS-Updates","description":"SLE-Product-SLES15-SP3-Debuginfo-LTSS-Updates for sle-15-s390x"}],"predecessor_ids":[],"arch":"s390x","eula_url":"","free":false,"shortname":"SLES15-SP3-LTSS","description":"SUSE Linux Enterprise offers a comprehensive suite of products built on a single code base. The platform addresses business needs from the smallest thin-client devices to the world's most powerful high-performance computing and mainframe servers. SUSE Linux Enterprise offers common management tools and technology certifications across the platform, and each product is enterprise-class."}],"version":"15.3","recommended":false,"friendly_name":"SUSE Linux Enterprise Server 15 SP3 s390x","migration_extra":false,"former_identifier":"SLES","release_type":null,"name":"SUSE Linux Enterprise Server","offline_predecessor_ids":[1303,1423,1627,1877]},{"predecessor_ids":[1575,1763,1939,2236],"online_predecessor_ids":[1575,1763,1939,2236],"repositories":[{"description":"SLE-Product-SLES15-SP3-Updates for sle-15-x86_64","name":"SLE-Product-SLES15-SP3-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Product-SLES/15-SP3/x86_64/update/","enabled":true,"id":4608},{"distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-SLES/15-SP3/x86_64/update_debug/","enabled":false,"id":4609,"description":"SLE-Product-SLES15-SP3-Debuginfo-Updates for sle-15-x86_64","installer_updates":false,"name":"SLE-Product-SLES15-SP3-Debuginfo-Updates"},{"description":"SLE15-SP3-Installer-Updates for sle-15-x86_64","name":"SLE15-SP3-Installer-Updates","installer_updates":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-INSTALLER/15-SP3/x86_64/update/","autorefresh":true,"distro_target":"sle-15-x86_64","id":4610,"enabled":false},{"id":4611,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-SLES/15-SP3/x86_64/product/","distro_target":"sle-15-x86_64","autorefresh":false,"installer_updates":false,"name":"SLE-Product-SLES15-SP3-Pool","description":"SLE-Product-SLES15-SP3-Pool for sle-15-x86_64"},{"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Product-SLES/15-SP3/x86_64/product_debug/","enabled":false,"id":4612,"description":"SLE-Product-SLES15-SP3-Debuginfo-Pool for sle-15-x86_64","name":"SLE-Product-SLES15-SP3-Debuginfo-Pool","installer_updates":false},{"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-SLES/15-SP3/x86_64/product_source/","enabled":false,"id":4613,"description":"SLE-Product-SLES15-SP3-Source-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Product-SLES15-SP3-Source-Pool"}],"product_class":"7261","product_type":"base","cpe":"cpe:/o:suse:sles:15:sp3","free":false,"description":"SUSE Linux Enterprise offers a comprehensive suite of products built on a single code base. The platform addresses business needs from the smallest thin-client devices to the world's most powerful high-performance computing and mainframe servers. SUSE Linux Enterprise offers common management tools and technology certifications across the platform, and each product is enterprise-class.","shortname":"SLES15-SP3","eula_url":"https://updates.suse.com/SUSE/Products/SLE-Product-SLES/15-SP3/x86_64/product.license/","arch":"x86_64","friendly_version":"15 SP3","extensions":[{"extensions":[{"online_predecessor_ids":[1578,1776,1967],"product_class":"MODULE","repositories":[{"distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15-SP3/x86_64/update/","enabled":true,"id":4654,"description":"SLE-Module-Desktop-Applications15-SP3-Updates for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Desktop-Applications15-SP3-Updates"},{"description":"SLE-Module-Desktop-Applications15-SP3-Debuginfo-Updates for sle-15-x86_64","name":"SLE-Module-Desktop-Applications15-SP3-Debuginfo-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15-SP3/x86_64/update_debug/","enabled":false,"id":4655},{"description":"SLE-Module-Desktop-Applications15-SP3-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Desktop-Applications15-SP3-Pool","distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP3/x86_64/product/","enabled":true,"id":4656},{"description":"SLE-Module-Desktop-Applications15-SP3-Debuginfo-Pool for sle-15-x86_64","name":"SLE-Module-Desktop-Applications15-SP3-Debuginfo-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP3/x86_64/product_debug/","enabled":false,"id":4657},{"description":"SLE-Module-Desktop-Applications15-SP3-Source-Pool for sle-15-x86_64","name":"SLE-Module-Desktop-Applications15-SP3-Source-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP3/x86_64/product_source/","autorefresh":false,"distro_target":"sle-15-x86_64","id":4658,"enabled":false}],"predecessor_ids":[1578,1776,1967],"cpe":"cpe:/o:suse:sle-module-desktop-applications:15:sp3","product_type":"module","description":"

The SUSE Linux Enterprise Desktop Applications Module delivers a basic set of Desktop functionality.

Access to the Desktop Applications Module is included in your SUSE Linux Enterprise product subscription.

","shortname":"Desktop-Applications-Module","free":true,"arch":"x86_64","eula_url":"","friendly_version":"15 SP3","identifier":"sle-module-desktop-applications","release_stage":"released","id":2149,"extensions":[{"friendly_version":"15 SP3","release_stage":"released","identifier":"sle-module-development-tools","id":2161,"extensions":[{"recommended":false,"version":"15","offline_predecessor_ids":[],"name":"NVIDIA Compute Module","release_type":null,"former_identifier":"sle-module-NVIDIA-compute","migration_extra":false,"friendly_name":"NVIDIA Compute Module 15 x86_64","friendly_version":"15","extensions":[],"release_stage":"released","identifier":"sle-module-NVIDIA-compute","id":2131,"free":true,"shortname":"NVIDIA-Compute-Module","description":"NVIDIA Compute Drivers - NVIDIA CUDA This Module contains software under the terms and conditions of a 3rd party EULA (End User License Agreement). The EULA can be found at https://docs.nvidia.com/cuda/eula/index.html. By using this software you agree to fully comply with the terms and conditions of the EULA. If you do not agree to the terms and conditions of the EULA, do not use the software.","eula_url":"https://updates.suse.com/SUSE/Products/SLE-Module-NVIDIA-Compute/15/x86_64/product.license/","arch":"x86_64","predecessor_ids":[],"repositories":[{"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-NVIDIA-Compute/15/x86_64/update/","enabled":true,"id":4554,"description":"SLE-Module-NVIDIA-Compute-15-Updates for sle-15-x86_64","name":"SLE-Module-NVIDIA-Compute-15-Updates","installer_updates":false},{"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-NVIDIA-Compute/15/x86_64/product/","enabled":true,"id":4556,"description":"SLE-Module-NVIDIA-Compute-15-Pool for sle-15-x86_64","name":"SLE-Module-NVIDIA-Compute-15-Pool","installer_updates":false},{"id":4563,"enabled":true,"url":"https://developer.download.nvidia.com/compute/cuda/repos/sles15/x86_64/","autorefresh":true,"distro_target":null,"name":"NVIDIA-Compute-SLE-15","installer_updates":false,"description":"NVIDIA-Compute-SLE-15"}],"online_predecessor_ids":[],"product_class":"MODULE","product_type":"module","cpe":"cpe:/o:suse:sle-module-nvidia-compute:15"}],"version":"15.3","recommended":false,"former_identifier":"sle-sdk","release_type":null,"migration_extra":true,"friendly_name":"Development Tools Module 15 SP3 x86_64","offline_predecessor_ids":[1341,1427,1630,1892],"name":"Development Tools Module","online_predecessor_ids":[1579,1794,1971],"repositories":[{"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15-SP3/x86_64/update/","enabled":true,"id":4714,"description":"SLE-Module-DevTools15-SP3-Updates for sle-15-x86_64","name":"SLE-Module-DevTools15-SP3-Updates","installer_updates":false},{"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15-SP3/x86_64/update_debug/","enabled":false,"id":4715,"description":"SLE-Module-DevTools15-SP3-Debuginfo-Updates for sle-15-x86_64","name":"SLE-Module-DevTools15-SP3-Debuginfo-Updates","installer_updates":false},{"name":"SLE-Module-DevTools15-SP3-Pool","installer_updates":false,"description":"SLE-Module-DevTools15-SP3-Pool for sle-15-x86_64","id":4716,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP3/x86_64/product/","autorefresh":false,"distro_target":"sle-15-x86_64"},{"name":"SLE-Module-DevTools15-SP3-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-DevTools15-SP3-Debuginfo-Pool for sle-15-x86_64","id":4717,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP3/x86_64/product_debug/","autorefresh":false,"distro_target":"sle-15-x86_64"},{"installer_updates":false,"name":"SLE-Module-DevTools15-SP3-Source-Pool","description":"SLE-Module-DevTools15-SP3-Source-Pool for sle-15-x86_64","enabled":false,"id":4718,"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP3/x86_64/product_source/"}],"product_class":"MODULE","predecessor_ids":[1579,1794,1971],"product_type":"module","cpe":"cpe:/o:suse:sle-module-development-tools:15:sp3","free":true,"shortname":"Development-Tools-Module","description":"

The Development Tools Module helps you developing applications for SUSE Linux Enterprise 15.

Access to the Development Tools Module is included in your SUSE Linux Enterprise product subscription. The module has a different lifecycle than SUSE Linux Enterprise itself.

","arch":"x86_64","eula_url":""},{"recommended":false,"version":"15.3","offline_predecessor_ids":[1431,1639,1893],"name":"SUSE Linux Enterprise Workstation Extension","release_type":null,"former_identifier":"sle-we","migration_extra":false,"friendly_name":"SUSE Linux Enterprise Workstation Extension 15 SP3 x86_64","friendly_version":"15 SP3","extensions":[],"release_stage":"released","id":2196,"identifier":"sle-we","free":false,"description":"SUSE Linux Enterprise Workstation Extension adds additional functionality to a base SUSE Linux Enterprise installation. The Workstation Extension offers additional desktop applications (office suite, email client, graphical editor, multimedia tools) and libraries. Workstation Extension is enabled and installed by default on SUSE Linux Enterprise Desktop installation. Adding the Workstation Extension to a SUSE Linux Enterprise Server installation allows to seamlessly combine both products to create a full featured server workstation.","shortname":"SLEWE15-SP3","eula_url":"https://updates.suse.com/SUSE/Products/SLE-Product-WE/15-SP3/x86_64/product.license/","arch":"x86_64","predecessor_ids":[1583,1781,1999],"product_class":"SLE-WE","online_predecessor_ids":[1583,1781,1999],"repositories":[{"description":"SLE-15-SP3-Desktop-NVIDIA-Driver","installer_updates":false,"name":"SLE-15-SP3-Desktop-NVIDIA-Driver","distro_target":null,"autorefresh":true,"url":"https://download.nvidia.com/suse/sle15sp3/","enabled":true,"id":4577},{"enabled":true,"id":4901,"distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-WE/15-SP3/x86_64/update/","installer_updates":false,"name":"SLE-Product-WE15-SP3-Updates","description":"SLE-Product-WE15-SP3-Updates for sle-15-x86_64"},{"description":"SLE-Product-WE15-SP3-Debuginfo-Updates for sle-15-x86_64","name":"SLE-Product-WE15-SP3-Debuginfo-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Product-WE/15-SP3/x86_64/update_debug/","enabled":false,"id":4902},{"id":4903,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-WE/15-SP3/x86_64/product/","distro_target":"sle-15-x86_64","autorefresh":false,"installer_updates":false,"name":"SLE-Product-WE15-SP3-Pool","description":"SLE-Product-WE15-SP3-Pool for sle-15-x86_64"},{"name":"SLE-Product-WE15-SP3-Debuginfo-Pool","installer_updates":false,"description":"SLE-Product-WE15-SP3-Debuginfo-Pool for sle-15-x86_64","id":4904,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-WE/15-SP3/x86_64/product_debug/","autorefresh":false,"distro_target":"sle-15-x86_64"},{"enabled":false,"id":4905,"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-WE/15-SP3/x86_64/product_source/","installer_updates":false,"name":"SLE-Product-WE15-SP3-Source-Pool","description":"SLE-Product-WE15-SP3-Source-Pool for sle-15-x86_64"}],"product_type":"extension","cpe":"cpe:/o:suse:sle-we:15:sp3"}],"version":"15.3","recommended":false,"friendly_name":"Desktop Applications Module 15 SP3 x86_64","migration_extra":true,"former_identifier":"sle-module-desktop-applications","release_type":null,"name":"Desktop Applications Module","offline_predecessor_ids":[]},{"extensions":[{"description":"

The SUSE Linux Enterprise Web and Scripting Module should contains additional packages that are helpful when running a webserver.

Access to the Web and Scripting Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself: Package versions in this module are usually supported for at most three years. We are planning to release more recent versions on a schedule of approximately 18 month; the exact dates may differ per package.

","shortname":"Web-Scripting-Module","free":true,"eula_url":"","arch":"x86_64","predecessor_ids":[1721,1798,1976],"online_predecessor_ids":[1721,1798,1976],"product_class":"MODULE","repositories":[{"installer_updates":false,"name":"SLE-Module-Web-Scripting15-SP3-Updates","description":"SLE-Module-Web-Scripting15-SP3-Updates for sle-15-x86_64","enabled":true,"id":4734,"distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/15-SP3/x86_64/update/"},{"installer_updates":false,"name":"SLE-Module-Web-Scripting15-SP3-Debuginfo-Updates","description":"SLE-Module-Web-Scripting15-SP3-Debuginfo-Updates for sle-15-x86_64","id":4735,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/15-SP3/x86_64/update_debug/","distro_target":"sle-15-x86_64","autorefresh":true},{"enabled":true,"id":4736,"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP3/x86_64/product/","installer_updates":false,"name":"SLE-Module-Web-Scripting15-SP3-Pool","description":"SLE-Module-Web-Scripting15-SP3-Pool for sle-15-x86_64"},{"description":"SLE-Module-Web-Scripting15-SP3-Debuginfo-Pool for sle-15-x86_64","name":"SLE-Module-Web-Scripting15-SP3-Debuginfo-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP3/x86_64/product_debug/","enabled":false,"id":4737},{"name":"SLE-Module-Web-Scripting15-SP3-Source-Pool","installer_updates":false,"description":"SLE-Module-Web-Scripting15-SP3-Source-Pool for sle-15-x86_64","enabled":false,"id":4738,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP3/x86_64/product_source/"}],"cpe":"cpe:/o:suse:sle-module-web-scripting:15:sp3","product_type":"module","recommended":false,"version":"15.3","name":"Web and Scripting Module","offline_predecessor_ids":[1153],"migration_extra":true,"friendly_name":"Web and Scripting Module 15 SP3 x86_64","former_identifier":"sle-module-web-scripting","release_type":null,"friendly_version":"15 SP3","extensions":[],"id":2165,"release_stage":"released","identifier":"sle-module-web-scripting"},{"cpe":"cpe:/o:suse:sle-module-legacy:15:sp3","product_type":"module","product_class":"MODULE","online_predecessor_ids":[1581,1804,1982],"repositories":[{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/15-SP3/x86_64/update/","autorefresh":true,"distro_target":"sle-15-x86_64","id":4764,"enabled":true,"description":"SLE-Module-Legacy15-SP3-Updates for sle-15-x86_64","name":"SLE-Module-Legacy15-SP3-Updates","installer_updates":false},{"description":"SLE-Module-Legacy15-SP3-Debuginfo-Updates for sle-15-x86_64","name":"SLE-Module-Legacy15-SP3-Debuginfo-Updates","installer_updates":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/15-SP3/x86_64/update_debug/","autorefresh":true,"distro_target":"sle-15-x86_64","id":4765,"enabled":false},{"installer_updates":false,"name":"SLE-Module-Legacy15-SP3-Pool","description":"SLE-Module-Legacy15-SP3-Pool for sle-15-x86_64","id":4766,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15-SP3/x86_64/product/","distro_target":"sle-15-x86_64","autorefresh":false},{"name":"SLE-Module-Legacy15-SP3-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-Legacy15-SP3-Debuginfo-Pool for sle-15-x86_64","enabled":false,"id":4767,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15-SP3/x86_64/product_debug/"},{"description":"SLE-Module-Legacy15-SP3-Source-Pool for sle-15-x86_64","name":"SLE-Module-Legacy15-SP3-Source-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15-SP3/x86_64/product_source/","enabled":false,"id":4768}],"predecessor_ids":[1581,1804,1982],"arch":"x86_64","eula_url":"","shortname":"Legacy-Module","description":"

The Legacy Module helps you migrating applications from SUSE Linux Enterprise 12 and other systems to SUSE Linux Enterprise 15, by providing packages which are discontinued on SUSE Linux Enterprise Server, such as: ntp, IBM Java 8, and a number of libraries.

Access to the Legacy Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself. Packages in the this module are usually supported for at most three years.

","free":true,"release_stage":"released","id":2171,"identifier":"sle-module-legacy","extensions":[],"friendly_version":"15 SP3","friendly_name":"Legacy Module 15 SP3 x86_64","migration_extra":true,"former_identifier":"sle-module-legacy","release_type":null,"name":"Legacy Module","offline_predecessor_ids":[1150],"version":"15.3","recommended":false},{"recommended":false,"version":"15.3","offline_predecessor_ids":[1220],"name":"Public Cloud Module","release_type":null,"former_identifier":"sle-module-public-cloud","migration_extra":false,"friendly_name":"Public Cloud Module 15 SP3 x86_64","friendly_version":"15 SP3","extensions":[],"release_stage":"released","identifier":"sle-module-public-cloud","id":2175,"free":true,"description":"

The Public Cloud Module is a collection of tools that enables you to create and manage cloud images from the commandline on SUSE Linux Enterprise Server. When building your own images with KIWI or SUSE Studio, initialization code specific to the target cloud is included in that image.

Access to the Public Cloud Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself; please check the Release Notes for further details.

","shortname":"Public-Cloud-Module","eula_url":"","arch":"x86_64","predecessor_ids":[1611,1808,1988],"repositories":[{"distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/15-SP3/x86_64/update/","enabled":true,"id":4784,"description":"SLE-Module-Public-Cloud15-SP3-Updates for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Public-Cloud15-SP3-Updates"},{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/15-SP3/x86_64/update_debug/","distro_target":"sle-15-x86_64","autorefresh":true,"id":4785,"enabled":false,"description":"SLE-Module-Public-Cloud15-SP3-Debuginfo-Updates for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Public-Cloud15-SP3-Debuginfo-Updates"},{"installer_updates":false,"name":"SLE-Module-Public-Cloud15-SP3-Pool","description":"SLE-Module-Public-Cloud15-SP3-Pool for sle-15-x86_64","id":4786,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP3/x86_64/product/","distro_target":"sle-15-x86_64","autorefresh":false},{"description":"SLE-Module-Public-Cloud15-SP3-Debuginfo-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Public-Cloud15-SP3-Debuginfo-Pool","distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP3/x86_64/product_debug/","enabled":false,"id":4787},{"description":"SLE-Module-Public-Cloud15-SP3-Source-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Public-Cloud15-SP3-Source-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP3/x86_64/product_source/","distro_target":"sle-15-x86_64","autorefresh":false,"id":4788,"enabled":false}],"online_predecessor_ids":[1611,1808,1988],"product_class":"MODULE","product_type":"module","cpe":"cpe:/o:suse:sle-module-public-cloud:15:sp3"},{"shortname":"SLEHA15-SP3","description":"SUSE Linux High Availability Extension provides mature, industry-leading open-source high-availability clustering technologies that are easy to set up and use. It can be deployed in physical and/or virtual environments, and can cluster physical servers, virtual servers, or any combination of the two to suit your business’ needs.","free":false,"arch":"x86_64","eula_url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP3/x86_64/product.license/","product_class":"SLE-HAE-X86","online_predecessor_ids":[1582,1785,1959],"repositories":[{"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-HA/15-SP3/x86_64/update/","distro_target":"sle-15-x86_64","autorefresh":true,"id":4896,"enabled":true,"description":"SLE-Product-HA15-SP3-Updates for sle-15-x86_64","installer_updates":false,"name":"SLE-Product-HA15-SP3-Updates"},{"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-HA/15-SP3/x86_64/update_debug/","autorefresh":true,"distro_target":"sle-15-x86_64","id":4897,"enabled":false,"description":"SLE-Product-HA15-SP3-Debuginfo-Updates for sle-15-x86_64","name":"SLE-Product-HA15-SP3-Debuginfo-Updates","installer_updates":false},{"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP3/x86_64/product/","enabled":true,"id":4898,"description":"SLE-Product-HA15-SP3-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Product-HA15-SP3-Pool"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP3/x86_64/product_debug/","distro_target":"sle-15-x86_64","autorefresh":false,"id":4899,"enabled":false,"description":"SLE-Product-HA15-SP3-Debuginfo-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Product-HA15-SP3-Debuginfo-Pool"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP3/x86_64/product_source/","autorefresh":false,"distro_target":"sle-15-x86_64","id":4900,"enabled":false,"description":"SLE-Product-HA15-SP3-Source-Pool for sle-15-x86_64","name":"SLE-Product-HA15-SP3-Source-Pool","installer_updates":false}],"predecessor_ids":[1582,1785,1959],"cpe":"cpe:/o:suse:sle-ha:15:sp3","product_type":"extension","version":"15.3","recommended":false,"friendly_name":"SUSE Linux Enterprise High Availability Extension 15 SP3 x86_64","migration_extra":false,"former_identifier":"sle-ha","release_type":null,"name":"SUSE Linux Enterprise High Availability Extension","offline_predecessor_ids":[958,961,967,971,1101,1107,1256,1286,1432,1435,1634,1637,1884,1886],"friendly_version":"15 SP3","release_stage":"released","id":2195,"identifier":"sle-ha","extensions":[]},{"recommended":false,"version":"7.1","offline_predecessor_ids":[],"name":"SUSE Enterprise Storage","former_identifier":"ses","release_type":null,"friendly_name":"SUSE Enterprise Storage 7.1 x86_64","migration_extra":false,"friendly_version":"7.1","extensions":[],"id":2415,"release_stage":"released","identifier":"ses","free":false,"shortname":"SES7.1","description":"SUSE Enterprise Storage 7.1 Pacific for SUSE Linux Enterprise Server 15 SP3, powered by Ceph.","eula_url":"","arch":"x86_64","predecessor_ids":[1644,2121],"online_predecessor_ids":[1644,2121],"repositories":[{"description":"SUSE-Enterprise-Storage-7.1-Updates for sle-15-x86_64","name":"SUSE-Enterprise-Storage-7.1-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/Storage/7.1/x86_64/update/","enabled":true,"id":5603},{"enabled":false,"id":5604,"distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/Storage/7.1/x86_64/update_debug/","installer_updates":false,"name":"SUSE-Enterprise-Storage-7.1-Debuginfo-Updates","description":"SUSE-Enterprise-Storage-7.1-Debuginfo-Updates for sle-15-x86_64"},{"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/Storage/7.1/x86_64/product/","enabled":true,"id":5605,"description":"SUSE-Enterprise-Storage-7.1-Pool for sle-15-x86_64","name":"SUSE-Enterprise-Storage-7.1-Pool","installer_updates":false},{"description":"SUSE-Enterprise-Storage-7.1-Debuginfo-Pool for sle-15-x86_64","name":"SUSE-Enterprise-Storage-7.1-Debuginfo-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/Storage/7.1/x86_64/product_debug/","autorefresh":false,"distro_target":"sle-15-x86_64","id":5606,"enabled":false},{"description":"SUSE-Enterprise-Storage-7.1-Source-Pool for sle-15-x86_64","installer_updates":false,"name":"SUSE-Enterprise-Storage-7.1-Source-Pool","distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/Storage/7.1/x86_64/product_source/","enabled":false,"id":5607}],"product_class":"SES","product_type":"extension","cpe":"cpe:/o:suse:ses:7.1"}],"identifier":"sle-module-server-applications","release_stage":"released","id":2153,"friendly_version":"15 SP3","offline_predecessor_ids":[],"name":"Server Applications Module","former_identifier":"sle-module-server-applications","release_type":null,"migration_extra":false,"friendly_name":"Server Applications Module 15 SP3 x86_64","recommended":true,"version":"15.3","product_type":"module","cpe":"cpe:/o:suse:sle-module-server-applications:15:sp3","predecessor_ids":[1580,1780,1955],"online_predecessor_ids":[1580,1780,1955],"repositories":[{"id":4674,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15-SP3/x86_64/update/","distro_target":"sle-15-x86_64","autorefresh":true,"installer_updates":false,"name":"SLE-Module-Server-Applications15-SP3-Updates","description":"SLE-Module-Server-Applications15-SP3-Updates for sle-15-x86_64"},{"name":"SLE-Module-Server-Applications15-SP3-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-Server-Applications15-SP3-Debuginfo-Updates for sle-15-x86_64","enabled":false,"id":4675,"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15-SP3/x86_64/update_debug/"},{"name":"SLE-Module-Server-Applications15-SP3-Pool","installer_updates":false,"description":"SLE-Module-Server-Applications15-SP3-Pool for sle-15-x86_64","enabled":true,"id":4676,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP3/x86_64/product/"},{"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP3/x86_64/product_debug/","enabled":false,"id":4677,"description":"SLE-Module-Server-Applications15-SP3-Debuginfo-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Server-Applications15-SP3-Debuginfo-Pool"},{"enabled":false,"id":4678,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP3/x86_64/product_source/","name":"SLE-Module-Server-Applications15-SP3-Source-Pool","installer_updates":false,"description":"SLE-Module-Server-Applications15-SP3-Source-Pool for sle-15-x86_64"}],"product_class":"MODULE","eula_url":"","arch":"x86_64","free":true,"description":"

The SUSE Linux Enterprise Server Applications Module delivers a basic set of Server functionality.

Access to the Server Applications Module is included in your SUSE Linux Enterprise Server subscription.

","shortname":"Server-Applications-Module"},{"cpe":"cpe:/o:suse:sle-module-containers:15:sp3","product_type":"module","predecessor_ids":[1642,1790,1963],"repositories":[{"description":"SLE-Module-Containers15-SP3-Updates for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Containers15-SP3-Updates","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/15-SP3/x86_64/update/","distro_target":"sle-15-x86_64","autorefresh":true,"id":4694,"enabled":true},{"id":4695,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/15-SP3/x86_64/update_debug/","distro_target":"sle-15-x86_64","autorefresh":true,"installer_updates":false,"name":"SLE-Module-Containers15-SP3-Debuginfo-Updates","description":"SLE-Module-Containers15-SP3-Debuginfo-Updates for sle-15-x86_64"},{"enabled":true,"id":4696,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP3/x86_64/product/","name":"SLE-Module-Containers15-SP3-Pool","installer_updates":false,"description":"SLE-Module-Containers15-SP3-Pool for sle-15-x86_64"},{"description":"SLE-Module-Containers15-SP3-Debuginfo-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Containers15-SP3-Debuginfo-Pool","distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP3/x86_64/product_debug/","enabled":false,"id":4697},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP3/x86_64/product_source/","distro_target":"sle-15-x86_64","autorefresh":false,"id":4698,"enabled":false,"description":"SLE-Module-Containers15-SP3-Source-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Containers15-SP3-Source-Pool"}],"online_predecessor_ids":[1642,1790,1963],"product_class":"MODULE","eula_url":"","arch":"x86_64","shortname":"Containers-Module","description":"

This Module contains several packages revolving around containers and related tools.

","free":true,"extensions":[],"release_stage":"released","identifier":"sle-module-containers","id":2157,"friendly_version":"15 SP3","name":"Containers Module","offline_predecessor_ids":[1332],"friendly_name":"Containers Module 15 SP3 x86_64","migration_extra":false,"release_type":null,"former_identifier":"sle-module-containers","recommended":false,"version":"15.3"},{"eula_url":"","arch":"x86_64","free":true,"shortname":"SUSE-CAP-Tools-Module","description":"

The SUSE Cloud Application Platform Tools Module is a collection of tools that enables you to interact with the SUSE Cloud Application Platform product itself, providing the commandline client for instance.

Access to the SUSE Cloud Application Platform Tools Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself; please check the Release Notes for further details.

","product_type":"module","cpe":"cpe:/o:suse:sle-module-cap-tools:15:sp3","predecessor_ids":[1728,1809,2075],"repositories":[{"description":"SLE-Module-CAP-Tools15-SP3-Updates for sle-15-x86_64","name":"SLE-Module-CAP-Tools15-SP3-Updates","installer_updates":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-CAP-Tools/15-SP3/x86_64/update/","autorefresh":true,"distro_target":"sle-15-x86_64","id":4789,"enabled":true},{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-CAP-Tools/15-SP3/x86_64/update_debug/","autorefresh":true,"distro_target":"sle-15-x86_64","id":4790,"enabled":false,"description":"SLE-Module-CAP-Tools15-SP3-Debuginfo-Updates for sle-15-x86_64","name":"SLE-Module-CAP-Tools15-SP3-Debuginfo-Updates","installer_updates":false},{"description":"SLE-Module-CAP-Tools15-SP3-Pool for sle-15-x86_64","name":"SLE-Module-CAP-Tools15-SP3-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-CAP-Tools/15-SP3/x86_64/product/","autorefresh":false,"distro_target":"sle-15-x86_64","id":4791,"enabled":true},{"enabled":false,"id":4792,"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-CAP-Tools/15-SP3/x86_64/product_debug/","installer_updates":false,"name":"SLE-Module-CAP-Tools15-SP3-Debuginfo-Pool","description":"SLE-Module-CAP-Tools15-SP3-Debuginfo-Pool for sle-15-x86_64"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-CAP-Tools/15-SP3/x86_64/product_source/","distro_target":"sle-15-x86_64","autorefresh":false,"id":4793,"enabled":false,"description":"SLE-Module-CAP-Tools15-SP3-Source-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-CAP-Tools15-SP3-Source-Pool"}],"online_predecessor_ids":[1728,1809,2075],"product_class":"MODULE","offline_predecessor_ids":[1678],"name":"SUSE Cloud Application Platform Tools Module","release_type":null,"former_identifier":"sle-module-cap-tools","migration_extra":false,"friendly_name":"SUSE Cloud Application Platform Tools Module 15 SP3 x86_64","recommended":false,"version":"15.3","extensions":[],"release_stage":"released","identifier":"sle-module-cap-tools","id":2176,"friendly_version":"15 SP3"},{"arch":"x86_64","eula_url":"","description":"

Transactional Updates provide SUSE Linux Enterprise systems with a method of updating the operating system and its packages in an entirely ‘atomic’ way. Updates are either applied to the system all together in a single transaction, or not at all. This happens without influencing the running system. If an update fails, or if the successful update is deemed to be incompatible or otherwise incorrect, it can be discarded to immediately return the system to its previous functioning state.

Access to theTransactional Server Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself: Package versions in the this module are usually supported for at most three years. We are planning to release more recent versions on a schedule of approximately 18 month; the exact dates may differ per package.

","shortname":"Transactional-Server-Module","free":true,"cpe":"cpe:/o:suse:sle-module-transactional-server:15:sp3","product_type":"module","online_predecessor_ids":[1825,1998],"product_class":"MODULE","repositories":[{"installer_updates":false,"name":"SLE-Module-Transactional-Server15-SP3-Updates","description":"SLE-Module-Transactional-Server15-SP3-Updates for sle-15-x86_64","id":4809,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Transactional-Server/15-SP3/x86_64/update/","distro_target":"sle-15-x86_64","autorefresh":true},{"enabled":false,"id":4810,"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Transactional-Server/15-SP3/x86_64/update_debug/","name":"SLE-Module-Transactional-Server15-SP3-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-Transactional-Server15-SP3-Debuginfo-Updates for sle-15-x86_64"},{"id":4811,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Transactional-Server/15-SP3/x86_64/product/","autorefresh":false,"distro_target":"sle-15-x86_64","name":"SLE-Module-Transactional-Server15-SP3-Pool","installer_updates":false,"description":"SLE-Module-Transactional-Server15-SP3-Pool for sle-15-x86_64"},{"description":"SLE-Module-Transactional-Server15-SP3-Debuginfo-Pool for sle-15-x86_64","name":"SLE-Module-Transactional-Server15-SP3-Debuginfo-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Transactional-Server/15-SP3/x86_64/product_debug/","autorefresh":false,"distro_target":"sle-15-x86_64","id":4812,"enabled":false},{"name":"SLE-Module-Transactional-Server15-SP3-Source-Pool","installer_updates":false,"description":"SLE-Module-Transactional-Server15-SP3-Source-Pool for sle-15-x86_64","id":4813,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Transactional-Server/15-SP3/x86_64/product_source/","autorefresh":false,"distro_target":"sle-15-x86_64"}],"predecessor_ids":[1825,1998],"friendly_name":"Transactional Server Module 15 SP3 x86_64","migration_extra":false,"former_identifier":"sle-module-transactional-server","release_type":null,"name":"Transactional Server Module","offline_predecessor_ids":[],"version":"15.3","recommended":false,"identifier":"sle-module-transactional-server","release_stage":"released","id":2180,"extensions":[],"friendly_version":"15 SP3"},{"id":2184,"release_stage":"released","identifier":"sle-module-python2","extensions":[],"friendly_version":"15 SP3","release_type":null,"former_identifier":"sle-module-python2","friendly_name":"Python 2 Module 15 SP3 x86_64","migration_extra":true,"offline_predecessor_ids":[],"name":"Python 2 Module","version":"15.3","recommended":false,"product_type":"module","cpe":"cpe:/o:suse:sle-module-python2:15:sp3","product_class":"MODULE","online_predecessor_ids":[1867,1992],"repositories":[{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Python2/15-SP3/x86_64/update/","distro_target":"sle-15-x86_64","autorefresh":true,"id":4829,"enabled":true,"description":"SLE-Module-Python2-15-SP3-Updates for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Python2-15-SP3-Updates"},{"name":"SLE-Module-Python2-15-SP3-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-Python2-15-SP3-Debuginfo-Updates for sle-15-x86_64","enabled":false,"id":4830,"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Python2/15-SP3/x86_64/update_debug/"},{"description":"SLE-Module-Python2-15-SP3-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Python2-15-SP3-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Python2/15-SP3/x86_64/product/","distro_target":"sle-15-x86_64","autorefresh":false,"id":4831,"enabled":true},{"description":"SLE-Module-Python2-15-SP3-Debuginfo-Pool for sle-15-x86_64","name":"SLE-Module-Python2-15-SP3-Debuginfo-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Python2/15-SP3/x86_64/product_debug/","enabled":false,"id":4832},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Python2/15-SP3/x86_64/product_source/","autorefresh":false,"distro_target":"sle-15-x86_64","id":4833,"enabled":false,"description":"SLE-Module-Python2-15-SP3-Source-Pool for sle-15-x86_64","name":"SLE-Module-Python2-15-SP3-Source-Pool","installer_updates":false}],"predecessor_ids":[1867,1992],"arch":"x86_64","eula_url":"","free":true,"description":"

This module contains the python 2 packages.

Access to the Python 2 Module is included in your SUSE Linux Enterprise subscription. The module has a different lifecycle than SUSE Linux Enterprise itself. Packages in the this module are usually supported for at most three years.

","shortname":"Python2-Module"},{"eula_url":"","arch":"x86_64","free":false,"shortname":"Live-Patching","description":"

SUSE Linux Enterprise Live Patching provides packages to update critical components in SUSE Linux Enterprise. With SUSE Linux Enterprise Live Patching, you can perform critical patching without shutting down your system, reducing the need for planned downtime and increasing service availability.

","product_type":"extension","cpe":"cpe:/o:suse:sle-module-live-patching:15:sp3","predecessor_ids":[1736,1828,1984],"repositories":[{"distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Live-Patching/15-SP3/x86_64/update/","enabled":true,"id":4844,"description":"SLE-Module-Live-Patching15-SP3-Updates for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Live-Patching15-SP3-Updates"},{"name":"SLE-Module-Live-Patching15-SP3-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-Live-Patching15-SP3-Debuginfo-Updates for sle-15-x86_64","id":4845,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Live-Patching/15-SP3/x86_64/update_debug/","autorefresh":true,"distro_target":"sle-15-x86_64"},{"description":"SLE-Module-Live-Patching15-SP3-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Live-Patching15-SP3-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Live-Patching/15-SP3/x86_64/product/","distro_target":"sle-15-x86_64","autorefresh":false,"id":4846,"enabled":true},{"id":4847,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Live-Patching/15-SP3/x86_64/product_debug/","distro_target":"sle-15-x86_64","autorefresh":false,"installer_updates":false,"name":"SLE-Module-Live-Patching15-SP3-Debuginfo-Pool","description":"SLE-Module-Live-Patching15-SP3-Debuginfo-Pool for sle-15-x86_64"},{"name":"SLE-Module-Live-Patching15-SP3-Source-Pool","installer_updates":false,"description":"SLE-Module-Live-Patching15-SP3-Source-Pool for sle-15-x86_64","enabled":false,"id":4848,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Live-Patching/15-SP3/x86_64/product_source/"}],"online_predecessor_ids":[1736,1828,1984],"product_class":"SLE-LP","offline_predecessor_ids":[1536,1757,1888],"name":"SUSE Linux Enterprise Live Patching","release_type":null,"former_identifier":"sle-module-live-patching","friendly_name":"SUSE Linux Enterprise Live Patching 15 SP3 x86_64","migration_extra":false,"recommended":false,"version":"15.3","extensions":[],"release_stage":"released","id":2187,"identifier":"sle-module-live-patching","friendly_version":"15 SP3"},{"product_class":"MODULE","online_predecessor_ids":[1743,1871,1950],"repositories":[{"id":4873,"enabled":true,"url":"https://updates.suse.com/SUSE/Backports/SLE-15-SP3_x86_64/standard/","distro_target":"sle-15-x86_64","autorefresh":false,"installer_updates":false,"name":"SUSE-PackageHub-15-SP3-Backports-Pool","description":"SUSE-PackageHub-15-SP3-Backports-Pool for sle-15-x86_64"},{"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Backports/SLE-15-SP3_x86_64/standard_debug/","enabled":false,"id":4874,"description":"SUSE-PackageHub-15-SP3-Backports-Debuginfo for sle-15-x86_64","name":"SUSE-PackageHub-15-SP3-Backports-Debuginfo","installer_updates":false},{"name":"SLE-Module-Packagehub-Subpackages15-SP3-Updates","installer_updates":false,"description":"SLE-Module-Packagehub-Subpackages15-SP3-Updates for sle-15-x86_64","id":4875,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP3/x86_64/update/","autorefresh":true,"distro_target":"sle-15-x86_64"},{"distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP3/x86_64/update_debug/","enabled":false,"id":4876,"description":"SLE-Module-Packagehub-Subpackages15-SP3-Debuginfo-Updates for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Packagehub-Subpackages15-SP3-Debuginfo-Updates"},{"id":4877,"enabled":true,"url":"https://updates.suse.com/SUSE/Backports/SLE-15-SP3_x86_64/product/","autorefresh":false,"distro_target":"sle-15-x86_64","name":"SUSE-PackageHub-15-SP3-Pool","installer_updates":false,"description":"SUSE-PackageHub-15-SP3-Pool for sle-15-x86_64"},{"description":"SLE-Module-Packagehub-Subpackages15-SP3-Pool for sle-15-x86_64","name":"SLE-Module-Packagehub-Subpackages15-SP3-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP3/x86_64/product/","enabled":true,"id":4878},{"description":"SLE-Module-Packagehub-Subpackages15-SP3-Debuginfo-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Packagehub-Subpackages15-SP3-Debuginfo-Pool","distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP3/x86_64/product_debug/","enabled":false,"id":4879},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP3/x86_64/product_source/","distro_target":"sle-15-x86_64","autorefresh":false,"id":4880,"enabled":false,"description":"SLE-Module-Packagehub-Subpackages15-SP3-Source-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Packagehub-Subpackages15-SP3-Source-Pool"}],"predecessor_ids":[1743,1871,1950],"product_type":"module","cpe":"cpe:/o:suse:packagehub:15:sp3","free":true,"description":"SUSE Package Hub is a free of charge module providing access to community maintained packages built to run on SUSE Linux Enterprise Server. Built from the same sources used in the openSUSE distributions, these quality packages provide additional software to what is found in the SUSE Linux Enterprise Server product. Packages from the Package Hub are delivered without L3 support from SUSE. General updates and fixes to the packages in SUSE Package Hub are provided by the openSUSE community based on their discretion, though SUSE will monitor and ensure that any known critical security issues will be addressed. Packages in the Package Hub are approved by SUSE for use with SUSE Linux Enterprise Server 15-SP3 and to not interfere with the supportability of SUSE Linux Enterprise Server, its modules and extensions. For more information about SUSE Package Hub please visit https://packagehub.suse.com.","shortname":"SUSE-PackageHub-15","arch":"x86_64","eula_url":"","friendly_version":"15 SP3","release_stage":"released","id":2191,"identifier":"PackageHub","extensions":[],"version":"15.3","recommended":false,"former_identifier":"PackageHub","release_type":null,"friendly_name":"SUSE Package Hub 15 SP3 x86_64","migration_extra":false,"offline_predecessor_ids":[1529,1813,1915],"name":"SUSE Package Hub"}],"id":2145,"release_stage":"released","identifier":"sle-module-basesystem","friendly_version":"15 SP3","offline_predecessor_ids":[1212,1368,1440],"name":"Basesystem Module","release_type":null,"former_identifier":"sle-module-basesystem","migration_extra":false,"friendly_name":"Basesystem Module 15 SP3 x86_64","recommended":true,"version":"15.3","product_type":"module","cpe":"cpe:/o:suse:sle-module-basesystem:15:sp3","predecessor_ids":[1576,1772,1946],"product_class":"MODULE","online_predecessor_ids":[1576,1772,1946],"repositories":[{"id":4634,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15-SP3/x86_64/update/","distro_target":"sle-15-x86_64","autorefresh":true,"installer_updates":false,"name":"SLE-Module-Basesystem15-SP3-Updates","description":"SLE-Module-Basesystem15-SP3-Updates for sle-15-x86_64"},{"distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15-SP3/x86_64/update_debug/","enabled":false,"id":4635,"description":"SLE-Module-Basesystem15-SP3-Debuginfo-Updates for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Basesystem15-SP3-Debuginfo-Updates"},{"enabled":true,"id":4636,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP3/x86_64/product/","name":"SLE-Module-Basesystem15-SP3-Pool","installer_updates":false,"description":"SLE-Module-Basesystem15-SP3-Pool for sle-15-x86_64"},{"name":"SLE-Module-Basesystem15-SP3-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-Basesystem15-SP3-Debuginfo-Pool for sle-15-x86_64","enabled":false,"id":4637,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP3/x86_64/product_debug/"},{"id":4638,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP3/x86_64/product_source/","distro_target":"sle-15-x86_64","autorefresh":false,"installer_updates":false,"name":"SLE-Module-Basesystem15-SP3-Source-Pool","description":"SLE-Module-Basesystem15-SP3-Source-Pool for sle-15-x86_64"}],"eula_url":"","arch":"x86_64","free":true,"shortname":"Basesystem-Module","description":"

The SUSE Linux Enterprise Basesystem Module delivers the base system of the product.

"},{"eula_url":"","arch":"x86_64","description":"

This module contains the certification packages.

Access to the Certifications Module is included in your SUSE Linux Enterprise subscription. The module has a different lifecycle than SUSE Linux Enterprise itself; please check the Release Notes for further details.

","shortname":"Certifications-Module","free":true,"cpe":"cpe:/o:suse:sle-module-certifications:15:sp3","product_type":"module","predecessor_ids":[],"repositories":[{"description":"SLE-Module-Certifications-15-SP3-Updates for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Certifications-15-SP3-Updates","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Certifications/15-SP3/x86_64/update/","distro_target":"sle-15-x86_64","autorefresh":true,"id":5527,"enabled":true},{"description":"SLE-Module-Certifications-15-SP3-Debuginfo-Updates for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Certifications-15-SP3-Debuginfo-Updates","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Certifications/15-SP3/x86_64/update_debug/","distro_target":"sle-15-x86_64","autorefresh":true,"id":5528,"enabled":false},{"name":"SLE-Module-Certifications-15-SP3-Pool","installer_updates":false,"description":"SLE-Module-Certifications-15-SP3-Pool for sle-15-x86_64","enabled":true,"id":5529,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Certifications/15-SP3/x86_64/product/"},{"description":"SLE-Module-Certifications-15-SP3-Debuginfo-Pool for sle-15-x86_64","name":"SLE-Module-Certifications-15-SP3-Debuginfo-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Certifications/15-SP3/x86_64/product_debug/","autorefresh":false,"distro_target":"sle-15-x86_64","id":5530,"enabled":false},{"description":"SLE-Module-Certifications-15-SP3-Source-Pool for sle-15-x86_64","name":"SLE-Module-Certifications-15-SP3-Source-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Certifications/15-SP3/x86_64/product_source/","enabled":false,"id":5531}],"online_predecessor_ids":[],"product_class":"MODULE","name":"Certifications Module","offline_predecessor_ids":[],"friendly_name":"Certifications Module 15 SP3 x86_64","migration_extra":false,"release_type":null,"former_identifier":"sle-module-certifications","recommended":false,"version":"15.3","extensions":[],"identifier":"sle-module-certifications","release_stage":"released","id":2389,"friendly_version":"15 SP3"},{"shortname":"SLES15-SP3-LTSS","description":"SUSE Linux Enterprise offers a comprehensive suite of products built on a single code base. The platform addresses business needs from the smallest thin-client devices to the world's most powerful high-performance computing and mainframe servers. SUSE Linux Enterprise offers common management tools and technology certifications across the platform, and each product is enterprise-class.","free":false,"eula_url":"","arch":"x86_64","predecessor_ids":[],"online_predecessor_ids":[],"repositories":[{"distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-SLES/15-SP3-LTSS/x86_64/update/","enabled":true,"id":6135,"description":"SLE-Product-SLES15-SP3-LTSS-Updates for sle-15-x86_64","installer_updates":false,"name":"SLE-Product-SLES15-SP3-LTSS-Updates"},{"name":"SLE-Product-SLES15-SP3-Debuginfo-LTSS-Updates","installer_updates":false,"description":"SLE-Product-SLES15-SP3-Debuginfo-LTSS-Updates for sle-15-x86_64","id":6136,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-SLES/15-SP3-LTSS/x86_64/update_debug/","autorefresh":true,"distro_target":"sle-15-x86_64"}],"product_class":"SLES15-SP3-LTSS-X86","cpe":"cpe:/o:suse:sles-ltss:15:sp3","product_type":"extension","recommended":false,"version":"15.3","name":"SUSE Linux Enterprise Server LTSS","offline_predecessor_ids":[],"friendly_name":"SUSE Linux Enterprise Server LTSS 15 SP3 x86_64","migration_extra":false,"former_identifier":"SLES-LTSS","release_type":null,"friendly_version":"15 SP3","extensions":[],"release_stage":"released","id":2570,"identifier":"SLES-LTSS"}],"release_stage":"released","id":2140,"identifier":"SLES","recommended":false,"version":"15.3","offline_predecessor_ids":[1300,1421,1625,1878],"name":"SUSE Linux Enterprise Server","former_identifier":"SLES","release_type":null,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Server 15 SP3 x86_64"},{"version":"15.3","recommended":false,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Server Business Critical Linux 15 SP3 x86_64","former_identifier":"SUSE_SLES_BCL","release_type":null,"name":"SUSE Linux Enterprise Server Business Critical Linux","offline_predecessor_ids":[],"friendly_version":"15 SP3","id":2141,"release_stage":"released","identifier":"SLES_BCL","extensions":[{"predecessor_ids":[1576,1772,1946],"repositories":[{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15-SP3/x86_64/update/","distro_target":"sle-15-x86_64","autorefresh":true,"id":4634,"enabled":true,"description":"SLE-Module-Basesystem15-SP3-Updates for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Basesystem15-SP3-Updates"},{"name":"SLE-Module-Basesystem15-SP3-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-Basesystem15-SP3-Debuginfo-Updates for sle-15-x86_64","id":4635,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15-SP3/x86_64/update_debug/","autorefresh":true,"distro_target":"sle-15-x86_64"},{"id":4636,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP3/x86_64/product/","distro_target":"sle-15-x86_64","autorefresh":false,"installer_updates":false,"name":"SLE-Module-Basesystem15-SP3-Pool","description":"SLE-Module-Basesystem15-SP3-Pool for sle-15-x86_64"},{"installer_updates":false,"name":"SLE-Module-Basesystem15-SP3-Debuginfo-Pool","description":"SLE-Module-Basesystem15-SP3-Debuginfo-Pool for sle-15-x86_64","id":4637,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP3/x86_64/product_debug/","distro_target":"sle-15-x86_64","autorefresh":false},{"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP3/x86_64/product_source/","enabled":false,"id":4638,"description":"SLE-Module-Basesystem15-SP3-Source-Pool for sle-15-x86_64","name":"SLE-Module-Basesystem15-SP3-Source-Pool","installer_updates":false}],"online_predecessor_ids":[1576,1772,1946],"product_class":"MODULE","product_type":"module","cpe":"cpe:/o:suse:sle-module-basesystem:15:sp3","free":true,"description":"

The SUSE Linux Enterprise Basesystem Module delivers the base system of the product.

","shortname":"Basesystem-Module","eula_url":"","arch":"x86_64","friendly_version":"15 SP3","extensions":[{"friendly_version":"15 SP3","extensions":[{"version":"15.3","recommended":false,"friendly_name":"Development Tools Module 15 SP3 x86_64","migration_extra":false,"release_type":null,"former_identifier":"sle-sdk","name":"Development Tools Module","offline_predecessor_ids":[1341,1427,1630,1892],"friendly_version":"15 SP3","release_stage":"released","identifier":"sle-module-development-tools","id":2161,"extensions":[],"description":"

The Development Tools Module helps you developing applications for SUSE Linux Enterprise 15.

Access to the Development Tools Module is included in your SUSE Linux Enterprise product subscription. The module has a different lifecycle than SUSE Linux Enterprise itself.

","shortname":"Development-Tools-Module","free":true,"arch":"x86_64","eula_url":"","online_predecessor_ids":[1579,1794,1971],"product_class":"MODULE","repositories":[{"enabled":true,"id":4714,"distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15-SP3/x86_64/update/","installer_updates":false,"name":"SLE-Module-DevTools15-SP3-Updates","description":"SLE-Module-DevTools15-SP3-Updates for sle-15-x86_64"},{"description":"SLE-Module-DevTools15-SP3-Debuginfo-Updates for sle-15-x86_64","name":"SLE-Module-DevTools15-SP3-Debuginfo-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15-SP3/x86_64/update_debug/","enabled":false,"id":4715},{"enabled":true,"id":4716,"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP3/x86_64/product/","installer_updates":false,"name":"SLE-Module-DevTools15-SP3-Pool","description":"SLE-Module-DevTools15-SP3-Pool for sle-15-x86_64"},{"id":4717,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP3/x86_64/product_debug/","distro_target":"sle-15-x86_64","autorefresh":false,"installer_updates":false,"name":"SLE-Module-DevTools15-SP3-Debuginfo-Pool","description":"SLE-Module-DevTools15-SP3-Debuginfo-Pool for sle-15-x86_64"},{"enabled":false,"id":4718,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP3/x86_64/product_source/","name":"SLE-Module-DevTools15-SP3-Source-Pool","installer_updates":false,"description":"SLE-Module-DevTools15-SP3-Source-Pool for sle-15-x86_64"}],"predecessor_ids":[1579,1794,1971],"cpe":"cpe:/o:suse:sle-module-development-tools:15:sp3","product_type":"module"}],"id":2149,"release_stage":"released","identifier":"sle-module-desktop-applications","recommended":false,"version":"15.3","name":"Desktop Applications Module","offline_predecessor_ids":[],"friendly_name":"Desktop Applications Module 15 SP3 x86_64","migration_extra":false,"release_type":null,"former_identifier":"sle-module-desktop-applications","predecessor_ids":[1578,1776,1967],"product_class":"MODULE","online_predecessor_ids":[1578,1776,1967],"repositories":[{"enabled":true,"id":4654,"distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15-SP3/x86_64/update/","installer_updates":false,"name":"SLE-Module-Desktop-Applications15-SP3-Updates","description":"SLE-Module-Desktop-Applications15-SP3-Updates for sle-15-x86_64"},{"description":"SLE-Module-Desktop-Applications15-SP3-Debuginfo-Updates for sle-15-x86_64","name":"SLE-Module-Desktop-Applications15-SP3-Debuginfo-Updates","installer_updates":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15-SP3/x86_64/update_debug/","autorefresh":true,"distro_target":"sle-15-x86_64","id":4655,"enabled":false},{"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP3/x86_64/product/","enabled":true,"id":4656,"description":"SLE-Module-Desktop-Applications15-SP3-Pool for sle-15-x86_64","name":"SLE-Module-Desktop-Applications15-SP3-Pool","installer_updates":false},{"description":"SLE-Module-Desktop-Applications15-SP3-Debuginfo-Pool for sle-15-x86_64","name":"SLE-Module-Desktop-Applications15-SP3-Debuginfo-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP3/x86_64/product_debug/","autorefresh":false,"distro_target":"sle-15-x86_64","id":4657,"enabled":false},{"name":"SLE-Module-Desktop-Applications15-SP3-Source-Pool","installer_updates":false,"description":"SLE-Module-Desktop-Applications15-SP3-Source-Pool for sle-15-x86_64","id":4658,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP3/x86_64/product_source/","autorefresh":false,"distro_target":"sle-15-x86_64"}],"cpe":"cpe:/o:suse:sle-module-desktop-applications:15:sp3","product_type":"module","description":"

The SUSE Linux Enterprise Desktop Applications Module delivers a basic set of Desktop functionality.

Access to the Desktop Applications Module is included in your SUSE Linux Enterprise product subscription.

","shortname":"Desktop-Applications-Module","free":true,"eula_url":"","arch":"x86_64"},{"eula_url":"","arch":"x86_64","free":true,"description":"

The SUSE Linux Enterprise Server Applications Module delivers a basic set of Server functionality.

Access to the Server Applications Module is included in your SUSE Linux Enterprise Server subscription.

","shortname":"Server-Applications-Module","product_type":"module","cpe":"cpe:/o:suse:sle-module-server-applications:15:sp3","predecessor_ids":[1580,1780,1955],"online_predecessor_ids":[1580,1780,1955],"repositories":[{"description":"SLE-Module-Server-Applications15-SP3-Updates for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Server-Applications15-SP3-Updates","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15-SP3/x86_64/update/","distro_target":"sle-15-x86_64","autorefresh":true,"id":4674,"enabled":true},{"name":"SLE-Module-Server-Applications15-SP3-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-Server-Applications15-SP3-Debuginfo-Updates for sle-15-x86_64","enabled":false,"id":4675,"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15-SP3/x86_64/update_debug/"},{"installer_updates":false,"name":"SLE-Module-Server-Applications15-SP3-Pool","description":"SLE-Module-Server-Applications15-SP3-Pool for sle-15-x86_64","id":4676,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP3/x86_64/product/","distro_target":"sle-15-x86_64","autorefresh":false},{"description":"SLE-Module-Server-Applications15-SP3-Debuginfo-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Server-Applications15-SP3-Debuginfo-Pool","distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP3/x86_64/product_debug/","enabled":false,"id":4677},{"description":"SLE-Module-Server-Applications15-SP3-Source-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Server-Applications15-SP3-Source-Pool","distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP3/x86_64/product_source/","enabled":false,"id":4678}],"product_class":"MODULE","offline_predecessor_ids":[],"name":"Server Applications Module","release_type":null,"former_identifier":"sle-module-server-applications","friendly_name":"Server Applications Module 15 SP3 x86_64","migration_extra":false,"recommended":true,"version":"15.3","extensions":[{"online_predecessor_ids":[1721,1798,1976],"product_class":"MODULE","repositories":[{"description":"SLE-Module-Web-Scripting15-SP3-Updates for sle-15-x86_64","name":"SLE-Module-Web-Scripting15-SP3-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/15-SP3/x86_64/update/","enabled":true,"id":4734},{"id":4735,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/15-SP3/x86_64/update_debug/","autorefresh":true,"distro_target":"sle-15-x86_64","name":"SLE-Module-Web-Scripting15-SP3-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-Web-Scripting15-SP3-Debuginfo-Updates for sle-15-x86_64"},{"name":"SLE-Module-Web-Scripting15-SP3-Pool","installer_updates":false,"description":"SLE-Module-Web-Scripting15-SP3-Pool for sle-15-x86_64","enabled":true,"id":4736,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP3/x86_64/product/"},{"description":"SLE-Module-Web-Scripting15-SP3-Debuginfo-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Web-Scripting15-SP3-Debuginfo-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP3/x86_64/product_debug/","distro_target":"sle-15-x86_64","autorefresh":false,"id":4737,"enabled":false},{"enabled":false,"id":4738,"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP3/x86_64/product_source/","installer_updates":false,"name":"SLE-Module-Web-Scripting15-SP3-Source-Pool","description":"SLE-Module-Web-Scripting15-SP3-Source-Pool for sle-15-x86_64"}],"predecessor_ids":[1721,1798,1976],"product_type":"module","cpe":"cpe:/o:suse:sle-module-web-scripting:15:sp3","free":true,"description":"

The SUSE Linux Enterprise Web and Scripting Module should contains additional packages that are helpful when running a webserver.

Access to the Web and Scripting Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself: Package versions in this module are usually supported for at most three years. We are planning to release more recent versions on a schedule of approximately 18 month; the exact dates may differ per package.

","shortname":"Web-Scripting-Module","arch":"x86_64","eula_url":"","friendly_version":"15 SP3","identifier":"sle-module-web-scripting","release_stage":"released","id":2165,"extensions":[],"version":"15.3","recommended":false,"former_identifier":"sle-module-web-scripting","release_type":null,"migration_extra":false,"friendly_name":"Web and Scripting Module 15 SP3 x86_64","offline_predecessor_ids":[1153],"name":"Web and Scripting Module"},{"product_type":"extension","cpe":"cpe:/o:suse:sle-ha:15:sp3","repositories":[{"id":4896,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-HA/15-SP3/x86_64/update/","distro_target":"sle-15-x86_64","autorefresh":true,"installer_updates":false,"name":"SLE-Product-HA15-SP3-Updates","description":"SLE-Product-HA15-SP3-Updates for sle-15-x86_64"},{"installer_updates":false,"name":"SLE-Product-HA15-SP3-Debuginfo-Updates","description":"SLE-Product-HA15-SP3-Debuginfo-Updates for sle-15-x86_64","id":4897,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-HA/15-SP3/x86_64/update_debug/","distro_target":"sle-15-x86_64","autorefresh":true},{"id":4898,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP3/x86_64/product/","autorefresh":false,"distro_target":"sle-15-x86_64","name":"SLE-Product-HA15-SP3-Pool","installer_updates":false,"description":"SLE-Product-HA15-SP3-Pool for sle-15-x86_64"},{"description":"SLE-Product-HA15-SP3-Debuginfo-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Product-HA15-SP3-Debuginfo-Pool","distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP3/x86_64/product_debug/","enabled":false,"id":4899},{"description":"SLE-Product-HA15-SP3-Source-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Product-HA15-SP3-Source-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP3/x86_64/product_source/","distro_target":"sle-15-x86_64","autorefresh":false,"id":4900,"enabled":false}],"online_predecessor_ids":[1582,1785,1959],"product_class":"SLE-HAE-X86","predecessor_ids":[1582,1785,1959],"arch":"x86_64","eula_url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP3/x86_64/product.license/","free":false,"description":"SUSE Linux High Availability Extension provides mature, industry-leading open-source high-availability clustering technologies that are easy to set up and use. It can be deployed in physical and/or virtual environments, and can cluster physical servers, virtual servers, or any combination of the two to suit your business’ needs.","shortname":"SLEHA15-SP3","id":2195,"release_stage":"released","identifier":"sle-ha","extensions":[],"friendly_version":"15 SP3","release_type":null,"former_identifier":"sle-ha","friendly_name":"SUSE Linux Enterprise High Availability Extension 15 SP3 x86_64","migration_extra":false,"offline_predecessor_ids":[958,961,967,971,1101,1107,1256,1286,1432,1435,1634,1637,1884,1886],"name":"SUSE Linux Enterprise High Availability Extension","version":"15.3","recommended":true}],"id":2153,"release_stage":"released","identifier":"sle-module-server-applications","friendly_version":"15 SP3"},{"recommended":false,"version":"15.3","name":"Containers Module","offline_predecessor_ids":[1332],"migration_extra":false,"friendly_name":"Containers Module 15 SP3 x86_64","former_identifier":"sle-module-containers","release_type":null,"friendly_version":"15 SP3","extensions":[],"id":2157,"release_stage":"released","identifier":"sle-module-containers","description":"

This Module contains several packages revolving around containers and related tools.

","shortname":"Containers-Module","free":true,"eula_url":"","arch":"x86_64","predecessor_ids":[1642,1790,1963],"product_class":"MODULE","online_predecessor_ids":[1642,1790,1963],"repositories":[{"name":"SLE-Module-Containers15-SP3-Updates","installer_updates":false,"description":"SLE-Module-Containers15-SP3-Updates for sle-15-x86_64","enabled":true,"id":4694,"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/15-SP3/x86_64/update/"},{"enabled":false,"id":4695,"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/15-SP3/x86_64/update_debug/","name":"SLE-Module-Containers15-SP3-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-Containers15-SP3-Debuginfo-Updates for sle-15-x86_64"},{"id":4696,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP3/x86_64/product/","autorefresh":false,"distro_target":"sle-15-x86_64","name":"SLE-Module-Containers15-SP3-Pool","installer_updates":false,"description":"SLE-Module-Containers15-SP3-Pool for sle-15-x86_64"},{"description":"SLE-Module-Containers15-SP3-Debuginfo-Pool for sle-15-x86_64","name":"SLE-Module-Containers15-SP3-Debuginfo-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP3/x86_64/product_debug/","enabled":false,"id":4697},{"id":4698,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP3/x86_64/product_source/","autorefresh":false,"distro_target":"sle-15-x86_64","name":"SLE-Module-Containers15-SP3-Source-Pool","installer_updates":false,"description":"SLE-Module-Containers15-SP3-Source-Pool for sle-15-x86_64"}],"cpe":"cpe:/o:suse:sle-module-containers:15:sp3","product_type":"module"},{"friendly_version":"15 SP3","extensions":[],"identifier":"sle-module-cap-tools","release_stage":"released","id":2176,"recommended":false,"version":"15.3","offline_predecessor_ids":[1678],"name":"SUSE Cloud Application Platform Tools Module","former_identifier":"sle-module-cap-tools","release_type":null,"friendly_name":"SUSE Cloud Application Platform Tools Module 15 SP3 x86_64","migration_extra":false,"predecessor_ids":[1728,1809,2075],"product_class":"MODULE","online_predecessor_ids":[1728,1809,2075],"repositories":[{"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-CAP-Tools/15-SP3/x86_64/update/","enabled":true,"id":4789,"description":"SLE-Module-CAP-Tools15-SP3-Updates for sle-15-x86_64","name":"SLE-Module-CAP-Tools15-SP3-Updates","installer_updates":false},{"distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-CAP-Tools/15-SP3/x86_64/update_debug/","enabled":false,"id":4790,"description":"SLE-Module-CAP-Tools15-SP3-Debuginfo-Updates for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-CAP-Tools15-SP3-Debuginfo-Updates"},{"id":4791,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-CAP-Tools/15-SP3/x86_64/product/","autorefresh":false,"distro_target":"sle-15-x86_64","name":"SLE-Module-CAP-Tools15-SP3-Pool","installer_updates":false,"description":"SLE-Module-CAP-Tools15-SP3-Pool for sle-15-x86_64"},{"installer_updates":false,"name":"SLE-Module-CAP-Tools15-SP3-Debuginfo-Pool","description":"SLE-Module-CAP-Tools15-SP3-Debuginfo-Pool for sle-15-x86_64","id":4792,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-CAP-Tools/15-SP3/x86_64/product_debug/","distro_target":"sle-15-x86_64","autorefresh":false},{"name":"SLE-Module-CAP-Tools15-SP3-Source-Pool","installer_updates":false,"description":"SLE-Module-CAP-Tools15-SP3-Source-Pool for sle-15-x86_64","id":4793,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-CAP-Tools/15-SP3/x86_64/product_source/","autorefresh":false,"distro_target":"sle-15-x86_64"}],"product_type":"module","cpe":"cpe:/o:suse:sle-module-cap-tools:15:sp3","free":true,"description":"

The SUSE Cloud Application Platform Tools Module is a collection of tools that enables you to interact with the SUSE Cloud Application Platform product itself, providing the commandline client for instance.

Access to the SUSE Cloud Application Platform Tools Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself; please check the Release Notes for further details.

","shortname":"SUSE-CAP-Tools-Module","eula_url":"","arch":"x86_64"},{"friendly_version":"15 SP3","id":2180,"release_stage":"released","identifier":"sle-module-transactional-server","extensions":[],"version":"15.3","recommended":false,"migration_extra":false,"friendly_name":"Transactional Server Module 15 SP3 x86_64","former_identifier":"sle-module-transactional-server","release_type":null,"name":"Transactional Server Module","offline_predecessor_ids":[],"repositories":[{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Transactional-Server/15-SP3/x86_64/update/","autorefresh":true,"distro_target":"sle-15-x86_64","id":4809,"enabled":true,"description":"SLE-Module-Transactional-Server15-SP3-Updates for sle-15-x86_64","name":"SLE-Module-Transactional-Server15-SP3-Updates","installer_updates":false},{"distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Transactional-Server/15-SP3/x86_64/update_debug/","enabled":false,"id":4810,"description":"SLE-Module-Transactional-Server15-SP3-Debuginfo-Updates for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Transactional-Server15-SP3-Debuginfo-Updates"},{"description":"SLE-Module-Transactional-Server15-SP3-Pool for sle-15-x86_64","name":"SLE-Module-Transactional-Server15-SP3-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Transactional-Server/15-SP3/x86_64/product/","autorefresh":false,"distro_target":"sle-15-x86_64","id":4811,"enabled":true},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Transactional-Server/15-SP3/x86_64/product_debug/","distro_target":"sle-15-x86_64","autorefresh":false,"id":4812,"enabled":false,"description":"SLE-Module-Transactional-Server15-SP3-Debuginfo-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Transactional-Server15-SP3-Debuginfo-Pool"},{"installer_updates":false,"name":"SLE-Module-Transactional-Server15-SP3-Source-Pool","description":"SLE-Module-Transactional-Server15-SP3-Source-Pool for sle-15-x86_64","id":4813,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Transactional-Server/15-SP3/x86_64/product_source/","distro_target":"sle-15-x86_64","autorefresh":false}],"online_predecessor_ids":[1825,1998],"product_class":"MODULE","predecessor_ids":[1825,1998],"cpe":"cpe:/o:suse:sle-module-transactional-server:15:sp3","product_type":"module","shortname":"Transactional-Server-Module","description":"

Transactional Updates provide SUSE Linux Enterprise systems with a method of updating the operating system and its packages in an entirely ‘atomic’ way. Updates are either applied to the system all together in a single transaction, or not at all. This happens without influencing the running system. If an update fails, or if the successful update is deemed to be incompatible or otherwise incorrect, it can be discarded to immediately return the system to its previous functioning state.

Access to theTransactional Server Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself: Package versions in the this module are usually supported for at most three years. We are planning to release more recent versions on a schedule of approximately 18 month; the exact dates may differ per package.

","free":true,"arch":"x86_64","eula_url":""}],"identifier":"sle-module-basesystem","release_stage":"released","id":2145,"recommended":true,"version":"15.3","offline_predecessor_ids":[1212,1368,1440],"name":"Basesystem Module","release_type":null,"former_identifier":"sle-module-basesystem","migration_extra":false,"friendly_name":"Basesystem Module 15 SP3 x86_64"}],"description":"SUSE Linux Enterprise offers a comprehensive suite of products built on a single code base. The platform addresses business needs from the smallest thin-client devices to the world's most powerful high-performance computing and mainframe servers. SUSE Linux Enterprise offers common management tools and technology certifications across the platform, and each product is enterprise-class.","shortname":"SLE-15-SP3-BCL","free":false,"arch":"x86_64","eula_url":"https://updates.suse.com/SUSE/Products/SLE-Product-SLES/15-SP3-BCL/x86_64/product.license/","product_class":"BCL-X86","online_predecessor_ids":[1902,2004],"repositories":[{"id":4614,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-SLES/15-SP3-BCL/x86_64/update/","autorefresh":true,"distro_target":"sle-15-x86_64","name":"SLE-Product-SLES-BCL15-SP3-Updates","installer_updates":false,"description":"SLE-Product-SLES-BCL15-SP3-Updates for sle-15-x86_64"},{"enabled":false,"id":4615,"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Product-SLES/15-SP3-BCL/x86_64/update_debug/","name":"SLE-Product-SLES-BCL15-SP3-Debuginfo-Updates","installer_updates":false,"description":"SLE-Product-SLES-BCL15-SP3-Debuginfo-Updates for sle-15-x86_64"},{"description":"SLE-Product-SLES-BCL15-SP3-Pool for sle-15-x86_64","name":"SLE-Product-SLES-BCL15-SP3-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Product-SLES/15-SP3-BCL/x86_64/product/","enabled":true,"id":4616},{"enabled":false,"id":4617,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Product-SLES/15-SP3-BCL/x86_64/product_debug/","name":"SLE-Product-SLES-BCL15-SP3-Debuginfo-Pool","installer_updates":false,"description":"SLE-Product-SLES-BCL15-SP3-Debuginfo-Pool for sle-15-x86_64"},{"name":"SLE-Product-SLES-BCL15-SP3-Source-Pool","installer_updates":false,"description":"SLE-Product-SLES-BCL15-SP3-Source-Pool for sle-15-x86_64","id":4618,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-SLES/15-SP3-BCL/x86_64/product_source/","autorefresh":false,"distro_target":"sle-15-x86_64"}],"predecessor_ids":[1902,2004],"cpe":"cpe:/o:suse:sles_bcl:15:sp3","product_type":"base"},{"predecessor_ids":[1589,1769,1943],"repositories":[{"name":"SLE-Module-Basesystem15-SP3-Updates","installer_updates":false,"description":"SLE-Module-Basesystem15-SP3-Updates for sle-15-aarch64","id":4619,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15-SP3/aarch64/update/","autorefresh":true,"distro_target":"sle-15-aarch64"},{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15-SP3/aarch64/update_debug/","autorefresh":true,"distro_target":"sle-15-aarch64","id":4620,"enabled":false,"description":"SLE-Module-Basesystem15-SP3-Debuginfo-Updates for sle-15-aarch64","name":"SLE-Module-Basesystem15-SP3-Debuginfo-Updates","installer_updates":false},{"name":"SLE-Module-Basesystem15-SP3-Pool","installer_updates":false,"description":"SLE-Module-Basesystem15-SP3-Pool for sle-15-aarch64","enabled":true,"id":4621,"autorefresh":false,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP3/aarch64/product/"},{"autorefresh":false,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP3/aarch64/product_debug/","enabled":false,"id":4622,"description":"SLE-Module-Basesystem15-SP3-Debuginfo-Pool for sle-15-aarch64","name":"SLE-Module-Basesystem15-SP3-Debuginfo-Pool","installer_updates":false},{"description":"SLE-Module-Basesystem15-SP3-Source-Pool for sle-15-aarch64","installer_updates":false,"name":"SLE-Module-Basesystem15-SP3-Source-Pool","distro_target":"sle-15-aarch64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP3/aarch64/product_source/","enabled":false,"id":4623}],"online_predecessor_ids":[1589,1769,1943],"product_class":"MODULE","product_type":"module","cpe":"cpe:/o:suse:sle-module-basesystem:15:sp3","free":true,"description":"

The SUSE Linux Enterprise Basesystem Module delivers the base system of the product.

","shortname":"Basesystem-Module","eula_url":"","arch":"aarch64","friendly_version":"15 SP3","extensions":[],"release_stage":"released","id":2142,"identifier":"sle-module-basesystem","recommended":false,"version":"15.3","offline_predecessor_ids":[1522],"name":"Basesystem Module","release_type":null,"former_identifier":"sle-module-basesystem","migration_extra":false,"friendly_name":"Basesystem Module 15 SP3 aarch64"},{"arch":"ppc64le","eula_url":"","shortname":"Basesystem-Module","description":"

The SUSE Linux Enterprise Basesystem Module delivers the base system of the product.

","free":true,"cpe":"cpe:/o:suse:sle-module-basesystem:15:sp3","product_type":"module","repositories":[{"id":4624,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15-SP3/ppc64le/update/","distro_target":"sle-15-ppc64le","autorefresh":true,"installer_updates":false,"name":"SLE-Module-Basesystem15-SP3-Updates","description":"SLE-Module-Basesystem15-SP3-Updates for sle-15-ppc64le"},{"id":4625,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15-SP3/ppc64le/update_debug/","distro_target":"sle-15-ppc64le","autorefresh":true,"installer_updates":false,"name":"SLE-Module-Basesystem15-SP3-Debuginfo-Updates","description":"SLE-Module-Basesystem15-SP3-Debuginfo-Updates for sle-15-ppc64le"},{"name":"SLE-Module-Basesystem15-SP3-Pool","installer_updates":false,"description":"SLE-Module-Basesystem15-SP3-Pool for sle-15-ppc64le","enabled":true,"id":4626,"autorefresh":false,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP3/ppc64le/product/"},{"description":"SLE-Module-Basesystem15-SP3-Debuginfo-Pool for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-Basesystem15-SP3-Debuginfo-Pool","distro_target":"sle-15-ppc64le","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP3/ppc64le/product_debug/","enabled":false,"id":4627},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP3/ppc64le/product_source/","autorefresh":false,"distro_target":"sle-15-ppc64le","id":4628,"enabled":false,"description":"SLE-Module-Basesystem15-SP3-Source-Pool for sle-15-ppc64le","name":"SLE-Module-Basesystem15-SP3-Source-Pool","installer_updates":false}],"online_predecessor_ids":[1588,1770,1944],"product_class":"MODULE","predecessor_ids":[1588,1770,1944],"migration_extra":false,"friendly_name":"Basesystem Module 15 SP3 ppc64le","release_type":null,"former_identifier":"sle-module-basesystem","name":"Basesystem Module","offline_predecessor_ids":[1294],"version":"15.3","recommended":false,"release_stage":"released","identifier":"sle-module-basesystem","id":2143,"extensions":[],"friendly_version":"15 SP3"},{"extensions":[],"id":2144,"release_stage":"released","identifier":"sle-module-basesystem","friendly_version":"15 SP3","offline_predecessor_ids":[1295,1367],"name":"Basesystem Module","former_identifier":"sle-module-basesystem","release_type":null,"migration_extra":false,"friendly_name":"Basesystem Module 15 SP3 s390x","recommended":false,"version":"15.3","product_type":"module","cpe":"cpe:/o:suse:sle-module-basesystem:15:sp3","predecessor_ids":[1587,1771,1945],"repositories":[{"id":4629,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15-SP3/s390x/update/","autorefresh":true,"distro_target":"sle-15-s390x","name":"SLE-Module-Basesystem15-SP3-Updates","installer_updates":false,"description":"SLE-Module-Basesystem15-SP3-Updates for sle-15-s390x"},{"autorefresh":true,"distro_target":"sle-15-s390x","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15-SP3/s390x/update_debug/","enabled":false,"id":4630,"description":"SLE-Module-Basesystem15-SP3-Debuginfo-Updates for sle-15-s390x","name":"SLE-Module-Basesystem15-SP3-Debuginfo-Updates","installer_updates":false},{"id":4631,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP3/s390x/product/","autorefresh":false,"distro_target":"sle-15-s390x","name":"SLE-Module-Basesystem15-SP3-Pool","installer_updates":false,"description":"SLE-Module-Basesystem15-SP3-Pool for sle-15-s390x"},{"name":"SLE-Module-Basesystem15-SP3-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-Basesystem15-SP3-Debuginfo-Pool for sle-15-s390x","enabled":false,"id":4632,"autorefresh":false,"distro_target":"sle-15-s390x","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP3/s390x/product_debug/"},{"id":4633,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP3/s390x/product_source/","autorefresh":false,"distro_target":"sle-15-s390x","name":"SLE-Module-Basesystem15-SP3-Source-Pool","installer_updates":false,"description":"SLE-Module-Basesystem15-SP3-Source-Pool for sle-15-s390x"}],"online_predecessor_ids":[1587,1771,1945],"product_class":"MODULE","eula_url":"","arch":"s390x","free":true,"shortname":"Basesystem-Module","description":"

The SUSE Linux Enterprise Basesystem Module delivers the base system of the product.

"},{"former_identifier":"sle-module-basesystem","release_type":null,"friendly_name":"Basesystem Module 15 SP3 x86_64","migration_extra":false,"offline_predecessor_ids":[1212,1368,1440],"name":"Basesystem Module","version":"15.3","recommended":false,"id":2145,"release_stage":"released","identifier":"sle-module-basesystem","extensions":[],"friendly_version":"15 SP3","arch":"x86_64","eula_url":"","free":true,"description":"

The SUSE Linux Enterprise Basesystem Module delivers the base system of the product.

","shortname":"Basesystem-Module","product_type":"module","cpe":"cpe:/o:suse:sle-module-basesystem:15:sp3","online_predecessor_ids":[1576,1772,1946],"product_class":"MODULE","repositories":[{"description":"SLE-Module-Basesystem15-SP3-Updates for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Basesystem15-SP3-Updates","distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15-SP3/x86_64/update/","enabled":true,"id":4634},{"id":4635,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15-SP3/x86_64/update_debug/","distro_target":"sle-15-x86_64","autorefresh":true,"installer_updates":false,"name":"SLE-Module-Basesystem15-SP3-Debuginfo-Updates","description":"SLE-Module-Basesystem15-SP3-Debuginfo-Updates for sle-15-x86_64"},{"id":4636,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP3/x86_64/product/","autorefresh":false,"distro_target":"sle-15-x86_64","name":"SLE-Module-Basesystem15-SP3-Pool","installer_updates":false,"description":"SLE-Module-Basesystem15-SP3-Pool for sle-15-x86_64"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP3/x86_64/product_debug/","autorefresh":false,"distro_target":"sle-15-x86_64","id":4637,"enabled":false,"description":"SLE-Module-Basesystem15-SP3-Debuginfo-Pool for sle-15-x86_64","name":"SLE-Module-Basesystem15-SP3-Debuginfo-Pool","installer_updates":false},{"description":"SLE-Module-Basesystem15-SP3-Source-Pool for sle-15-x86_64","name":"SLE-Module-Basesystem15-SP3-Source-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP3/x86_64/product_source/","autorefresh":false,"distro_target":"sle-15-x86_64","id":4638,"enabled":false}],"predecessor_ids":[1576,1772,1946]},{"friendly_version":"15 SP3","release_stage":"released","identifier":"sle-module-desktop-applications","id":2146,"extensions":[],"version":"15.3","recommended":false,"release_type":null,"former_identifier":"sle-module-desktop-applications","friendly_name":"Desktop Applications Module 15 SP3 aarch64","migration_extra":false,"offline_predecessor_ids":[],"name":"Desktop Applications Module","product_class":"MODULE","online_predecessor_ids":[1595,1773,1964],"repositories":[{"name":"SLE-Module-Desktop-Applications15-SP3-Updates","installer_updates":false,"description":"SLE-Module-Desktop-Applications15-SP3-Updates for sle-15-aarch64","enabled":true,"id":4639,"autorefresh":true,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15-SP3/aarch64/update/"},{"id":4640,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15-SP3/aarch64/update_debug/","distro_target":"sle-15-aarch64","autorefresh":true,"installer_updates":false,"name":"SLE-Module-Desktop-Applications15-SP3-Debuginfo-Updates","description":"SLE-Module-Desktop-Applications15-SP3-Debuginfo-Updates for sle-15-aarch64"},{"installer_updates":false,"name":"SLE-Module-Desktop-Applications15-SP3-Pool","description":"SLE-Module-Desktop-Applications15-SP3-Pool for sle-15-aarch64","id":4641,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP3/aarch64/product/","distro_target":"sle-15-aarch64","autorefresh":false},{"installer_updates":false,"name":"SLE-Module-Desktop-Applications15-SP3-Debuginfo-Pool","description":"SLE-Module-Desktop-Applications15-SP3-Debuginfo-Pool for sle-15-aarch64","id":4642,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP3/aarch64/product_debug/","distro_target":"sle-15-aarch64","autorefresh":false},{"name":"SLE-Module-Desktop-Applications15-SP3-Source-Pool","installer_updates":false,"description":"SLE-Module-Desktop-Applications15-SP3-Source-Pool for sle-15-aarch64","id":4643,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP3/aarch64/product_source/","autorefresh":false,"distro_target":"sle-15-aarch64"}],"predecessor_ids":[1595,1773,1964],"product_type":"module","cpe":"cpe:/o:suse:sle-module-desktop-applications:15:sp3","free":true,"shortname":"Desktop-Applications-Module","description":"

The SUSE Linux Enterprise Desktop Applications Module delivers a basic set of Desktop functionality.

Access to the Desktop Applications Module is included in your SUSE Linux Enterprise product subscription.

","arch":"aarch64","eula_url":""},{"version":"15.3","recommended":false,"former_identifier":"sle-module-desktop-applications","release_type":null,"migration_extra":false,"friendly_name":"Desktop Applications Module 15 SP3 ppc64le","offline_predecessor_ids":[],"name":"Desktop Applications Module","friendly_version":"15 SP3","id":2147,"release_stage":"released","identifier":"sle-module-desktop-applications","extensions":[],"free":true,"description":"

The SUSE Linux Enterprise Desktop Applications Module delivers a basic set of Desktop functionality.

Access to the Desktop Applications Module is included in your SUSE Linux Enterprise product subscription.

","shortname":"Desktop-Applications-Module","arch":"ppc64le","eula_url":"","online_predecessor_ids":[1594,1774,1965],"repositories":[{"installer_updates":false,"name":"SLE-Module-Desktop-Applications15-SP3-Updates","description":"SLE-Module-Desktop-Applications15-SP3-Updates for sle-15-ppc64le","enabled":true,"id":4644,"distro_target":"sle-15-ppc64le","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15-SP3/ppc64le/update/"},{"name":"SLE-Module-Desktop-Applications15-SP3-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-Desktop-Applications15-SP3-Debuginfo-Updates for sle-15-ppc64le","enabled":false,"id":4645,"autorefresh":true,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15-SP3/ppc64le/update_debug/"},{"description":"SLE-Module-Desktop-Applications15-SP3-Pool for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-Desktop-Applications15-SP3-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP3/ppc64le/product/","distro_target":"sle-15-ppc64le","autorefresh":false,"id":4646,"enabled":true},{"description":"SLE-Module-Desktop-Applications15-SP3-Debuginfo-Pool for sle-15-ppc64le","name":"SLE-Module-Desktop-Applications15-SP3-Debuginfo-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP3/ppc64le/product_debug/","enabled":false,"id":4647},{"autorefresh":false,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP3/ppc64le/product_source/","enabled":false,"id":4648,"description":"SLE-Module-Desktop-Applications15-SP3-Source-Pool for sle-15-ppc64le","name":"SLE-Module-Desktop-Applications15-SP3-Source-Pool","installer_updates":false}],"product_class":"MODULE","predecessor_ids":[1594,1774,1965],"product_type":"module","cpe":"cpe:/o:suse:sle-module-desktop-applications:15:sp3"},{"recommended":false,"version":"15.3","name":"Desktop Applications Module","offline_predecessor_ids":[],"friendly_name":"Desktop Applications Module 15 SP3 s390x","migration_extra":false,"former_identifier":"sle-module-desktop-applications","release_type":null,"friendly_version":"15 SP3","extensions":[],"id":2148,"release_stage":"released","identifier":"sle-module-desktop-applications","shortname":"Desktop-Applications-Module","description":"

The SUSE Linux Enterprise Desktop Applications Module delivers a basic set of Desktop functionality.

Access to the Desktop Applications Module is included in your SUSE Linux Enterprise product subscription.

","free":true,"eula_url":"","arch":"s390x","predecessor_ids":[1593,1775,1966],"product_class":"MODULE","online_predecessor_ids":[1593,1775,1966],"repositories":[{"enabled":true,"id":4649,"autorefresh":true,"distro_target":"sle-15-s390x","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15-SP3/s390x/update/","name":"SLE-Module-Desktop-Applications15-SP3-Updates","installer_updates":false,"description":"SLE-Module-Desktop-Applications15-SP3-Updates for sle-15-s390x"},{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15-SP3/s390x/update_debug/","autorefresh":true,"distro_target":"sle-15-s390x","id":4650,"enabled":false,"description":"SLE-Module-Desktop-Applications15-SP3-Debuginfo-Updates for sle-15-s390x","name":"SLE-Module-Desktop-Applications15-SP3-Debuginfo-Updates","installer_updates":false},{"name":"SLE-Module-Desktop-Applications15-SP3-Pool","installer_updates":false,"description":"SLE-Module-Desktop-Applications15-SP3-Pool for sle-15-s390x","id":4651,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP3/s390x/product/","autorefresh":false,"distro_target":"sle-15-s390x"},{"distro_target":"sle-15-s390x","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP3/s390x/product_debug/","enabled":false,"id":4652,"description":"SLE-Module-Desktop-Applications15-SP3-Debuginfo-Pool for sle-15-s390x","installer_updates":false,"name":"SLE-Module-Desktop-Applications15-SP3-Debuginfo-Pool"},{"id":4653,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP3/s390x/product_source/","autorefresh":false,"distro_target":"sle-15-s390x","name":"SLE-Module-Desktop-Applications15-SP3-Source-Pool","installer_updates":false,"description":"SLE-Module-Desktop-Applications15-SP3-Source-Pool for sle-15-s390x"}],"cpe":"cpe:/o:suse:sle-module-desktop-applications:15:sp3","product_type":"module"},{"identifier":"sle-module-desktop-applications","release_stage":"released","id":2149,"extensions":[],"friendly_version":"15 SP3","release_type":null,"former_identifier":"sle-module-desktop-applications","friendly_name":"Desktop Applications Module 15 SP3 x86_64","migration_extra":false,"offline_predecessor_ids":[],"name":"Desktop Applications Module","version":"15.3","recommended":false,"product_type":"module","cpe":"cpe:/o:suse:sle-module-desktop-applications:15:sp3","online_predecessor_ids":[1578,1776,1967],"repositories":[{"installer_updates":false,"name":"SLE-Module-Desktop-Applications15-SP3-Updates","description":"SLE-Module-Desktop-Applications15-SP3-Updates for sle-15-x86_64","enabled":true,"id":4654,"distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15-SP3/x86_64/update/"},{"description":"SLE-Module-Desktop-Applications15-SP3-Debuginfo-Updates for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Desktop-Applications15-SP3-Debuginfo-Updates","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15-SP3/x86_64/update_debug/","distro_target":"sle-15-x86_64","autorefresh":true,"id":4655,"enabled":false},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP3/x86_64/product/","autorefresh":false,"distro_target":"sle-15-x86_64","id":4656,"enabled":true,"description":"SLE-Module-Desktop-Applications15-SP3-Pool for sle-15-x86_64","name":"SLE-Module-Desktop-Applications15-SP3-Pool","installer_updates":false},{"id":4657,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP3/x86_64/product_debug/","distro_target":"sle-15-x86_64","autorefresh":false,"installer_updates":false,"name":"SLE-Module-Desktop-Applications15-SP3-Debuginfo-Pool","description":"SLE-Module-Desktop-Applications15-SP3-Debuginfo-Pool for sle-15-x86_64"},{"description":"SLE-Module-Desktop-Applications15-SP3-Source-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Desktop-Applications15-SP3-Source-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP3/x86_64/product_source/","distro_target":"sle-15-x86_64","autorefresh":false,"id":4658,"enabled":false}],"product_class":"MODULE","predecessor_ids":[1578,1776,1967],"arch":"x86_64","eula_url":"","free":true,"shortname":"Desktop-Applications-Module","description":"

The SUSE Linux Enterprise Desktop Applications Module delivers a basic set of Desktop functionality.

Access to the Desktop Applications Module is included in your SUSE Linux Enterprise product subscription.

"},{"recommended":false,"version":"15.3","offline_predecessor_ids":[],"name":"Server Applications Module","former_identifier":"sle-module-server-applications","release_type":null,"migration_extra":false,"friendly_name":"Server Applications Module 15 SP3 aarch64","friendly_version":"15 SP3","extensions":[],"release_stage":"released","identifier":"sle-module-server-applications","id":2150,"free":true,"description":"

The SUSE Linux Enterprise Server Applications Module delivers a basic set of Server functionality.

Access to the Server Applications Module is included in your SUSE Linux Enterprise Server subscription.

","shortname":"Server-Applications-Module","eula_url":"","arch":"aarch64","predecessor_ids":[1601,1777,1952],"repositories":[{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15-SP3/aarch64/update/","autorefresh":true,"distro_target":"sle-15-aarch64","id":4659,"enabled":true,"description":"SLE-Module-Server-Applications15-SP3-Updates for sle-15-aarch64","name":"SLE-Module-Server-Applications15-SP3-Updates","installer_updates":false},{"installer_updates":false,"name":"SLE-Module-Server-Applications15-SP3-Debuginfo-Updates","description":"SLE-Module-Server-Applications15-SP3-Debuginfo-Updates for sle-15-aarch64","id":4660,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15-SP3/aarch64/update_debug/","distro_target":"sle-15-aarch64","autorefresh":true},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP3/aarch64/product/","distro_target":"sle-15-aarch64","autorefresh":false,"id":4661,"enabled":true,"description":"SLE-Module-Server-Applications15-SP3-Pool for sle-15-aarch64","installer_updates":false,"name":"SLE-Module-Server-Applications15-SP3-Pool"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP3/aarch64/product_debug/","autorefresh":false,"distro_target":"sle-15-aarch64","id":4662,"enabled":false,"description":"SLE-Module-Server-Applications15-SP3-Debuginfo-Pool for sle-15-aarch64","name":"SLE-Module-Server-Applications15-SP3-Debuginfo-Pool","installer_updates":false},{"name":"SLE-Module-Server-Applications15-SP3-Source-Pool","installer_updates":false,"description":"SLE-Module-Server-Applications15-SP3-Source-Pool for sle-15-aarch64","enabled":false,"id":4663,"autorefresh":false,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP3/aarch64/product_source/"}],"online_predecessor_ids":[1601,1777,1952],"product_class":"MODULE","product_type":"module","cpe":"cpe:/o:suse:sle-module-server-applications:15:sp3"},{"friendly_version":"15 SP3","release_stage":"released","identifier":"sle-module-server-applications","id":2151,"extensions":[],"version":"15.3","recommended":false,"former_identifier":"sle-module-server-applications","release_type":null,"friendly_name":"Server Applications Module 15 SP3 ppc64le","migration_extra":false,"offline_predecessor_ids":[],"name":"Server Applications Module","online_predecessor_ids":[1600,1778,1953],"repositories":[{"description":"SLE-Module-Server-Applications15-SP3-Updates for sle-15-ppc64le","name":"SLE-Module-Server-Applications15-SP3-Updates","installer_updates":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15-SP3/ppc64le/update/","autorefresh":true,"distro_target":"sle-15-ppc64le","id":4664,"enabled":true},{"description":"SLE-Module-Server-Applications15-SP3-Debuginfo-Updates for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-Server-Applications15-SP3-Debuginfo-Updates","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15-SP3/ppc64le/update_debug/","distro_target":"sle-15-ppc64le","autorefresh":true,"id":4665,"enabled":false},{"enabled":true,"id":4666,"autorefresh":false,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP3/ppc64le/product/","name":"SLE-Module-Server-Applications15-SP3-Pool","installer_updates":false,"description":"SLE-Module-Server-Applications15-SP3-Pool for sle-15-ppc64le"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP3/ppc64le/product_debug/","autorefresh":false,"distro_target":"sle-15-ppc64le","id":4667,"enabled":false,"description":"SLE-Module-Server-Applications15-SP3-Debuginfo-Pool for sle-15-ppc64le","name":"SLE-Module-Server-Applications15-SP3-Debuginfo-Pool","installer_updates":false},{"distro_target":"sle-15-ppc64le","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP3/ppc64le/product_source/","enabled":false,"id":4668,"description":"SLE-Module-Server-Applications15-SP3-Source-Pool for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-Server-Applications15-SP3-Source-Pool"}],"product_class":"MODULE","predecessor_ids":[1600,1778,1953],"product_type":"module","cpe":"cpe:/o:suse:sle-module-server-applications:15:sp3","free":true,"description":"

The SUSE Linux Enterprise Server Applications Module delivers a basic set of Server functionality.

Access to the Server Applications Module is included in your SUSE Linux Enterprise Server subscription.

","shortname":"Server-Applications-Module","arch":"ppc64le","eula_url":""},{"name":"Server Applications Module","offline_predecessor_ids":[],"friendly_name":"Server Applications Module 15 SP3 s390x","migration_extra":false,"former_identifier":"sle-module-server-applications","release_type":null,"recommended":false,"version":"15.3","extensions":[],"id":2152,"release_stage":"released","identifier":"sle-module-server-applications","friendly_version":"15 SP3","eula_url":"","arch":"s390x","shortname":"Server-Applications-Module","description":"

The SUSE Linux Enterprise Server Applications Module delivers a basic set of Server functionality.

Access to the Server Applications Module is included in your SUSE Linux Enterprise Server subscription.

","free":true,"cpe":"cpe:/o:suse:sle-module-server-applications:15:sp3","product_type":"module","predecessor_ids":[1599,1779,1954],"product_class":"MODULE","online_predecessor_ids":[1599,1779,1954],"repositories":[{"autorefresh":true,"distro_target":"sle-15-s390x","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15-SP3/s390x/update/","enabled":true,"id":4669,"description":"SLE-Module-Server-Applications15-SP3-Updates for sle-15-s390x","name":"SLE-Module-Server-Applications15-SP3-Updates","installer_updates":false},{"description":"SLE-Module-Server-Applications15-SP3-Debuginfo-Updates for sle-15-s390x","installer_updates":false,"name":"SLE-Module-Server-Applications15-SP3-Debuginfo-Updates","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15-SP3/s390x/update_debug/","distro_target":"sle-15-s390x","autorefresh":true,"id":4670,"enabled":false},{"name":"SLE-Module-Server-Applications15-SP3-Pool","installer_updates":false,"description":"SLE-Module-Server-Applications15-SP3-Pool for sle-15-s390x","enabled":true,"id":4671,"autorefresh":false,"distro_target":"sle-15-s390x","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP3/s390x/product/"},{"description":"SLE-Module-Server-Applications15-SP3-Debuginfo-Pool for sle-15-s390x","installer_updates":false,"name":"SLE-Module-Server-Applications15-SP3-Debuginfo-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP3/s390x/product_debug/","distro_target":"sle-15-s390x","autorefresh":false,"id":4672,"enabled":false},{"id":4673,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP3/s390x/product_source/","distro_target":"sle-15-s390x","autorefresh":false,"installer_updates":false,"name":"SLE-Module-Server-Applications15-SP3-Source-Pool","description":"SLE-Module-Server-Applications15-SP3-Source-Pool for sle-15-s390x"}]},{"identifier":"sle-module-server-applications","release_stage":"released","id":2153,"extensions":[],"friendly_version":"15 SP3","migration_extra":false,"friendly_name":"Server Applications Module 15 SP3 x86_64","release_type":null,"former_identifier":"sle-module-server-applications","name":"Server Applications Module","offline_predecessor_ids":[],"version":"15.3","recommended":false,"cpe":"cpe:/o:suse:sle-module-server-applications:15:sp3","product_type":"module","repositories":[{"description":"SLE-Module-Server-Applications15-SP3-Updates for sle-15-x86_64","name":"SLE-Module-Server-Applications15-SP3-Updates","installer_updates":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15-SP3/x86_64/update/","autorefresh":true,"distro_target":"sle-15-x86_64","id":4674,"enabled":true},{"installer_updates":false,"name":"SLE-Module-Server-Applications15-SP3-Debuginfo-Updates","description":"SLE-Module-Server-Applications15-SP3-Debuginfo-Updates for sle-15-x86_64","enabled":false,"id":4675,"distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15-SP3/x86_64/update_debug/"},{"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP3/x86_64/product/","enabled":true,"id":4676,"description":"SLE-Module-Server-Applications15-SP3-Pool for sle-15-x86_64","name":"SLE-Module-Server-Applications15-SP3-Pool","installer_updates":false},{"installer_updates":false,"name":"SLE-Module-Server-Applications15-SP3-Debuginfo-Pool","description":"SLE-Module-Server-Applications15-SP3-Debuginfo-Pool for sle-15-x86_64","id":4677,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP3/x86_64/product_debug/","distro_target":"sle-15-x86_64","autorefresh":false},{"id":4678,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP3/x86_64/product_source/","distro_target":"sle-15-x86_64","autorefresh":false,"installer_updates":false,"name":"SLE-Module-Server-Applications15-SP3-Source-Pool","description":"SLE-Module-Server-Applications15-SP3-Source-Pool for sle-15-x86_64"}],"online_predecessor_ids":[1580,1780,1955],"product_class":"MODULE","predecessor_ids":[1580,1780,1955],"arch":"x86_64","eula_url":"","shortname":"Server-Applications-Module","description":"

The SUSE Linux Enterprise Server Applications Module delivers a basic set of Server functionality.

Access to the Server Applications Module is included in your SUSE Linux Enterprise Server subscription.

","free":true},{"cpe":"cpe:/o:suse:sle-module-containers:15:sp3","product_type":"module","product_class":"MODULE","online_predecessor_ids":[1920,1960],"repositories":[{"distro_target":"sle-15-aarch64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/15-SP3/aarch64/update/","enabled":true,"id":4679,"description":"SLE-Module-Containers15-SP3-Updates for sle-15-aarch64","installer_updates":false,"name":"SLE-Module-Containers15-SP3-Updates"},{"id":4680,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/15-SP3/aarch64/update_debug/","distro_target":"sle-15-aarch64","autorefresh":true,"installer_updates":false,"name":"SLE-Module-Containers15-SP3-Debuginfo-Updates","description":"SLE-Module-Containers15-SP3-Debuginfo-Updates for sle-15-aarch64"},{"id":4681,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP3/aarch64/product/","autorefresh":false,"distro_target":"sle-15-aarch64","name":"SLE-Module-Containers15-SP3-Pool","installer_updates":false,"description":"SLE-Module-Containers15-SP3-Pool for sle-15-aarch64"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP3/aarch64/product_debug/","autorefresh":false,"distro_target":"sle-15-aarch64","id":4682,"enabled":false,"description":"SLE-Module-Containers15-SP3-Debuginfo-Pool for sle-15-aarch64","name":"SLE-Module-Containers15-SP3-Debuginfo-Pool","installer_updates":false},{"description":"SLE-Module-Containers15-SP3-Source-Pool for sle-15-aarch64","name":"SLE-Module-Containers15-SP3-Source-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP3/aarch64/product_source/","enabled":false,"id":4683}],"predecessor_ids":[1920,1960],"arch":"aarch64","eula_url":"","description":"

This Module contains several packages revolving around containers and related tools.

","shortname":"Containers-Module","free":true,"id":2154,"release_stage":"released","identifier":"sle-module-containers","extensions":[],"friendly_version":"15 SP3","friendly_name":"Containers Module 15 SP3 aarch64","migration_extra":false,"release_type":null,"former_identifier":"sle-module-containers","name":"Containers Module","offline_predecessor_ids":[],"version":"15.3","recommended":false},{"predecessor_ids":[1640,1788,1961],"online_predecessor_ids":[1640,1788,1961],"product_class":"MODULE","repositories":[{"description":"SLE-Module-Containers15-SP3-Updates for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-Containers15-SP3-Updates","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/15-SP3/ppc64le/update/","distro_target":"sle-15-ppc64le","autorefresh":true,"id":4684,"enabled":true},{"description":"SLE-Module-Containers15-SP3-Debuginfo-Updates for sle-15-ppc64le","name":"SLE-Module-Containers15-SP3-Debuginfo-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/15-SP3/ppc64le/update_debug/","enabled":false,"id":4685},{"enabled":true,"id":4686,"distro_target":"sle-15-ppc64le","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP3/ppc64le/product/","installer_updates":false,"name":"SLE-Module-Containers15-SP3-Pool","description":"SLE-Module-Containers15-SP3-Pool for sle-15-ppc64le"},{"description":"SLE-Module-Containers15-SP3-Debuginfo-Pool for sle-15-ppc64le","name":"SLE-Module-Containers15-SP3-Debuginfo-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP3/ppc64le/product_debug/","enabled":false,"id":4687},{"enabled":false,"id":4688,"distro_target":"sle-15-ppc64le","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP3/ppc64le/product_source/","installer_updates":false,"name":"SLE-Module-Containers15-SP3-Source-Pool","description":"SLE-Module-Containers15-SP3-Source-Pool for sle-15-ppc64le"}],"product_type":"module","cpe":"cpe:/o:suse:sle-module-containers:15:sp3","free":true,"shortname":"Containers-Module","description":"

This Module contains several packages revolving around containers and related tools.

","eula_url":"","arch":"ppc64le","friendly_version":"15 SP3","extensions":[],"identifier":"sle-module-containers","release_stage":"released","id":2155,"recommended":false,"version":"15.3","offline_predecessor_ids":[1353],"name":"Containers Module","former_identifier":"sle-module-containers","release_type":null,"friendly_name":"Containers Module 15 SP3 ppc64le","migration_extra":false},{"cpe":"cpe:/o:suse:sle-module-containers:15:sp3","product_type":"module","predecessor_ids":[1641,1789,1962],"online_predecessor_ids":[1641,1789,1962],"product_class":"MODULE","repositories":[{"description":"SLE-Module-Containers15-SP3-Updates for sle-15-s390x","installer_updates":false,"name":"SLE-Module-Containers15-SP3-Updates","distro_target":"sle-15-s390x","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/15-SP3/s390x/update/","enabled":true,"id":4689},{"installer_updates":false,"name":"SLE-Module-Containers15-SP3-Debuginfo-Updates","description":"SLE-Module-Containers15-SP3-Debuginfo-Updates for sle-15-s390x","id":4690,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/15-SP3/s390x/update_debug/","distro_target":"sle-15-s390x","autorefresh":true},{"autorefresh":false,"distro_target":"sle-15-s390x","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP3/s390x/product/","enabled":true,"id":4691,"description":"SLE-Module-Containers15-SP3-Pool for sle-15-s390x","name":"SLE-Module-Containers15-SP3-Pool","installer_updates":false},{"enabled":false,"id":4692,"autorefresh":false,"distro_target":"sle-15-s390x","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP3/s390x/product_debug/","name":"SLE-Module-Containers15-SP3-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-Containers15-SP3-Debuginfo-Pool for sle-15-s390x"},{"enabled":false,"id":4693,"autorefresh":false,"distro_target":"sle-15-s390x","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP3/s390x/product_source/","name":"SLE-Module-Containers15-SP3-Source-Pool","installer_updates":false,"description":"SLE-Module-Containers15-SP3-Source-Pool for sle-15-s390x"}],"eula_url":"","arch":"s390x","shortname":"Containers-Module","description":"

This Module contains several packages revolving around containers and related tools.

","free":true,"extensions":[],"id":2156,"release_stage":"released","identifier":"sle-module-containers","friendly_version":"15 SP3","name":"Containers Module","offline_predecessor_ids":[1354],"friendly_name":"Containers Module 15 SP3 s390x","migration_extra":false,"former_identifier":"sle-module-containers","release_type":null,"recommended":false,"version":"15.3"},{"repositories":[{"description":"SLE-Module-Containers15-SP3-Updates for sle-15-x86_64","name":"SLE-Module-Containers15-SP3-Updates","installer_updates":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/15-SP3/x86_64/update/","autorefresh":true,"distro_target":"sle-15-x86_64","id":4694,"enabled":true},{"id":4695,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/15-SP3/x86_64/update_debug/","autorefresh":true,"distro_target":"sle-15-x86_64","name":"SLE-Module-Containers15-SP3-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-Containers15-SP3-Debuginfo-Updates for sle-15-x86_64"},{"description":"SLE-Module-Containers15-SP3-Pool for sle-15-x86_64","name":"SLE-Module-Containers15-SP3-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP3/x86_64/product/","enabled":true,"id":4696},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP3/x86_64/product_debug/","distro_target":"sle-15-x86_64","autorefresh":false,"id":4697,"enabled":false,"description":"SLE-Module-Containers15-SP3-Debuginfo-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Containers15-SP3-Debuginfo-Pool"},{"id":4698,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP3/x86_64/product_source/","autorefresh":false,"distro_target":"sle-15-x86_64","name":"SLE-Module-Containers15-SP3-Source-Pool","installer_updates":false,"description":"SLE-Module-Containers15-SP3-Source-Pool for sle-15-x86_64"}],"online_predecessor_ids":[1642,1790,1963],"product_class":"MODULE","predecessor_ids":[1642,1790,1963],"product_type":"module","cpe":"cpe:/o:suse:sle-module-containers:15:sp3","free":true,"shortname":"Containers-Module","description":"

This Module contains several packages revolving around containers and related tools.

","arch":"x86_64","eula_url":"","friendly_version":"15 SP3","release_stage":"released","identifier":"sle-module-containers","id":2157,"extensions":[],"version":"15.3","recommended":false,"former_identifier":"sle-module-containers","release_type":null,"migration_extra":false,"friendly_name":"Containers Module 15 SP3 x86_64","offline_predecessor_ids":[1332],"name":"Containers Module"},{"product_type":"module","cpe":"cpe:/o:suse:sle-module-development-tools:15:sp3","predecessor_ids":[1598,1791,1968],"product_class":"MODULE","online_predecessor_ids":[1598,1791,1968],"repositories":[{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15-SP3/aarch64/update/","distro_target":"sle-15-aarch64","autorefresh":true,"id":4699,"enabled":true,"description":"SLE-Module-DevTools15-SP3-Updates for sle-15-aarch64","installer_updates":false,"name":"SLE-Module-DevTools15-SP3-Updates"},{"distro_target":"sle-15-aarch64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15-SP3/aarch64/update_debug/","enabled":false,"id":4700,"description":"SLE-Module-DevTools15-SP3-Debuginfo-Updates for sle-15-aarch64","installer_updates":false,"name":"SLE-Module-DevTools15-SP3-Debuginfo-Updates"},{"installer_updates":false,"name":"SLE-Module-DevTools15-SP3-Pool","description":"SLE-Module-DevTools15-SP3-Pool for sle-15-aarch64","id":4701,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP3/aarch64/product/","distro_target":"sle-15-aarch64","autorefresh":false},{"installer_updates":false,"name":"SLE-Module-DevTools15-SP3-Debuginfo-Pool","description":"SLE-Module-DevTools15-SP3-Debuginfo-Pool for sle-15-aarch64","id":4702,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP3/aarch64/product_debug/","distro_target":"sle-15-aarch64","autorefresh":false},{"description":"SLE-Module-DevTools15-SP3-Source-Pool for sle-15-aarch64","name":"SLE-Module-DevTools15-SP3-Source-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP3/aarch64/product_source/","autorefresh":false,"distro_target":"sle-15-aarch64","id":4703,"enabled":false}],"eula_url":"","arch":"aarch64","free":true,"shortname":"Development-Tools-Module","description":"

The Development Tools Module helps you developing applications for SUSE Linux Enterprise 15.

Access to the Development Tools Module is included in your SUSE Linux Enterprise product subscription. The module has a different lifecycle than SUSE Linux Enterprise itself.

","extensions":[],"identifier":"sle-module-development-tools","release_stage":"released","id":2158,"friendly_version":"15 SP3","offline_predecessor_ids":[1376,1430,1633,1889],"name":"Development Tools Module","release_type":null,"former_identifier":"sle-sdk","friendly_name":"Development Tools Module 15 SP3 aarch64","migration_extra":false,"recommended":false,"version":"15.3"},{"version":"15.3","recommended":false,"friendly_name":"Development Tools Module 15 SP3 ppc64le","migration_extra":false,"former_identifier":"sle-sdk","release_type":null,"name":"Development Tools Module","offline_predecessor_ids":[1339,1428,1631,1890],"friendly_version":"15 SP3","id":2159,"release_stage":"released","identifier":"sle-module-development-tools","extensions":[],"shortname":"Development-Tools-Module","description":"

The Development Tools Module helps you developing applications for SUSE Linux Enterprise 15.

Access to the Development Tools Module is included in your SUSE Linux Enterprise product subscription. The module has a different lifecycle than SUSE Linux Enterprise itself.

","free":true,"arch":"ppc64le","eula_url":"","online_predecessor_ids":[1597,1792,1969],"product_class":"MODULE","repositories":[{"name":"SLE-Module-DevTools15-SP3-Updates","installer_updates":false,"description":"SLE-Module-DevTools15-SP3-Updates for sle-15-ppc64le","enabled":true,"id":4704,"autorefresh":true,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15-SP3/ppc64le/update/"},{"enabled":false,"id":4705,"distro_target":"sle-15-ppc64le","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15-SP3/ppc64le/update_debug/","installer_updates":false,"name":"SLE-Module-DevTools15-SP3-Debuginfo-Updates","description":"SLE-Module-DevTools15-SP3-Debuginfo-Updates for sle-15-ppc64le"},{"enabled":true,"id":4706,"autorefresh":false,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP3/ppc64le/product/","name":"SLE-Module-DevTools15-SP3-Pool","installer_updates":false,"description":"SLE-Module-DevTools15-SP3-Pool for sle-15-ppc64le"},{"id":4707,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP3/ppc64le/product_debug/","distro_target":"sle-15-ppc64le","autorefresh":false,"installer_updates":false,"name":"SLE-Module-DevTools15-SP3-Debuginfo-Pool","description":"SLE-Module-DevTools15-SP3-Debuginfo-Pool for sle-15-ppc64le"},{"enabled":false,"id":4708,"autorefresh":false,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP3/ppc64le/product_source/","name":"SLE-Module-DevTools15-SP3-Source-Pool","installer_updates":false,"description":"SLE-Module-DevTools15-SP3-Source-Pool for sle-15-ppc64le"}],"predecessor_ids":[1597,1792,1969],"cpe":"cpe:/o:suse:sle-module-development-tools:15:sp3","product_type":"module"},{"name":"Development Tools Module","offline_predecessor_ids":[1340,1429,1632,1891],"migration_extra":false,"friendly_name":"Development Tools Module 15 SP3 s390x","former_identifier":"sle-sdk","release_type":null,"recommended":false,"version":"15.3","extensions":[],"id":2160,"release_stage":"released","identifier":"sle-module-development-tools","friendly_version":"15 SP3","eula_url":"","arch":"s390x","shortname":"Development-Tools-Module","description":"

The Development Tools Module helps you developing applications for SUSE Linux Enterprise 15.

Access to the Development Tools Module is included in your SUSE Linux Enterprise product subscription. The module has a different lifecycle than SUSE Linux Enterprise itself.

","free":true,"cpe":"cpe:/o:suse:sle-module-development-tools:15:sp3","product_type":"module","predecessor_ids":[1596,1793,1970],"repositories":[{"name":"SLE-Module-DevTools15-SP3-Updates","installer_updates":false,"description":"SLE-Module-DevTools15-SP3-Updates for sle-15-s390x","id":4709,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15-SP3/s390x/update/","autorefresh":true,"distro_target":"sle-15-s390x"},{"installer_updates":false,"name":"SLE-Module-DevTools15-SP3-Debuginfo-Updates","description":"SLE-Module-DevTools15-SP3-Debuginfo-Updates for sle-15-s390x","enabled":false,"id":4710,"distro_target":"sle-15-s390x","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15-SP3/s390x/update_debug/"},{"enabled":true,"id":4711,"autorefresh":false,"distro_target":"sle-15-s390x","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP3/s390x/product/","name":"SLE-Module-DevTools15-SP3-Pool","installer_updates":false,"description":"SLE-Module-DevTools15-SP3-Pool for sle-15-s390x"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP3/s390x/product_debug/","autorefresh":false,"distro_target":"sle-15-s390x","id":4712,"enabled":false,"description":"SLE-Module-DevTools15-SP3-Debuginfo-Pool for sle-15-s390x","name":"SLE-Module-DevTools15-SP3-Debuginfo-Pool","installer_updates":false},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP3/s390x/product_source/","autorefresh":false,"distro_target":"sle-15-s390x","id":4713,"enabled":false,"description":"SLE-Module-DevTools15-SP3-Source-Pool for sle-15-s390x","name":"SLE-Module-DevTools15-SP3-Source-Pool","installer_updates":false}],"online_predecessor_ids":[1596,1793,1970],"product_class":"MODULE"},{"cpe":"cpe:/o:suse:sle-module-development-tools:15:sp3","product_type":"module","predecessor_ids":[1579,1794,1971],"repositories":[{"description":"SLE-Module-DevTools15-SP3-Updates for sle-15-x86_64","name":"SLE-Module-DevTools15-SP3-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15-SP3/x86_64/update/","enabled":true,"id":4714},{"installer_updates":false,"name":"SLE-Module-DevTools15-SP3-Debuginfo-Updates","description":"SLE-Module-DevTools15-SP3-Debuginfo-Updates for sle-15-x86_64","enabled":false,"id":4715,"distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15-SP3/x86_64/update_debug/"},{"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP3/x86_64/product/","enabled":true,"id":4716,"description":"SLE-Module-DevTools15-SP3-Pool for sle-15-x86_64","name":"SLE-Module-DevTools15-SP3-Pool","installer_updates":false},{"description":"SLE-Module-DevTools15-SP3-Debuginfo-Pool for sle-15-x86_64","name":"SLE-Module-DevTools15-SP3-Debuginfo-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP3/x86_64/product_debug/","autorefresh":false,"distro_target":"sle-15-x86_64","id":4717,"enabled":false},{"installer_updates":false,"name":"SLE-Module-DevTools15-SP3-Source-Pool","description":"SLE-Module-DevTools15-SP3-Source-Pool for sle-15-x86_64","id":4718,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP3/x86_64/product_source/","distro_target":"sle-15-x86_64","autorefresh":false}],"online_predecessor_ids":[1579,1794,1971],"product_class":"MODULE","eula_url":"","arch":"x86_64","description":"

The Development Tools Module helps you developing applications for SUSE Linux Enterprise 15.

Access to the Development Tools Module is included in your SUSE Linux Enterprise product subscription. The module has a different lifecycle than SUSE Linux Enterprise itself.

","shortname":"Development-Tools-Module","free":true,"extensions":[],"release_stage":"released","id":2161,"identifier":"sle-module-development-tools","friendly_version":"15 SP3","name":"Development Tools Module","offline_predecessor_ids":[1341,1427,1630,1892],"friendly_name":"Development Tools Module 15 SP3 x86_64","migration_extra":false,"former_identifier":"sle-sdk","release_type":null,"recommended":false,"version":"15.3"},{"version":"15.3","recommended":false,"friendly_name":"Web and Scripting Module 15 SP3 aarch64","migration_extra":false,"release_type":null,"former_identifier":"sle-module-web-scripting","name":"Web and Scripting Module","offline_predecessor_ids":[1539],"friendly_version":"15 SP3","release_stage":"released","identifier":"sle-module-web-scripting","id":2162,"extensions":[],"description":"

The SUSE Linux Enterprise Web and Scripting Module should contains additional packages that are helpful when running a webserver.

Access to the Web and Scripting Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself: Package versions in this module are usually supported for at most three years. We are planning to release more recent versions on a schedule of approximately 18 month; the exact dates may differ per package.

","shortname":"Web-Scripting-Module","free":true,"arch":"aarch64","eula_url":"","online_predecessor_ids":[1718,1795,1973],"product_class":"MODULE","repositories":[{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/15-SP3/aarch64/update/","distro_target":"sle-15-aarch64","autorefresh":true,"id":4719,"enabled":true,"description":"SLE-Module-Web-Scripting15-SP3-Updates for sle-15-aarch64","installer_updates":false,"name":"SLE-Module-Web-Scripting15-SP3-Updates"},{"enabled":false,"id":4720,"distro_target":"sle-15-aarch64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/15-SP3/aarch64/update_debug/","installer_updates":false,"name":"SLE-Module-Web-Scripting15-SP3-Debuginfo-Updates","description":"SLE-Module-Web-Scripting15-SP3-Debuginfo-Updates for sle-15-aarch64"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP3/aarch64/product/","distro_target":"sle-15-aarch64","autorefresh":false,"id":4721,"enabled":true,"description":"SLE-Module-Web-Scripting15-SP3-Pool for sle-15-aarch64","installer_updates":false,"name":"SLE-Module-Web-Scripting15-SP3-Pool"},{"name":"SLE-Module-Web-Scripting15-SP3-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-Web-Scripting15-SP3-Debuginfo-Pool for sle-15-aarch64","enabled":false,"id":4722,"autorefresh":false,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP3/aarch64/product_debug/"},{"id":4723,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP3/aarch64/product_source/","distro_target":"sle-15-aarch64","autorefresh":false,"installer_updates":false,"name":"SLE-Module-Web-Scripting15-SP3-Source-Pool","description":"SLE-Module-Web-Scripting15-SP3-Source-Pool for sle-15-aarch64"}],"predecessor_ids":[1718,1795,1973],"cpe":"cpe:/o:suse:sle-module-web-scripting:15:sp3","product_type":"module"},{"offline_predecessor_ids":[1151],"name":"Web and Scripting Module","former_identifier":"sle-module-web-scripting","release_type":null,"migration_extra":false,"friendly_name":"Web and Scripting Module 15 SP3 ppc64le","recommended":false,"version":"15.3","extensions":[],"release_stage":"released","identifier":"sle-module-web-scripting","id":2163,"friendly_version":"15 SP3","eula_url":"","arch":"ppc64le","free":true,"description":"

The SUSE Linux Enterprise Web and Scripting Module should contains additional packages that are helpful when running a webserver.

Access to the Web and Scripting Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself: Package versions in this module are usually supported for at most three years. We are planning to release more recent versions on a schedule of approximately 18 month; the exact dates may differ per package.

","shortname":"Web-Scripting-Module","product_type":"module","cpe":"cpe:/o:suse:sle-module-web-scripting:15:sp3","predecessor_ids":[1719,1796,1974],"repositories":[{"id":4724,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/15-SP3/ppc64le/update/","distro_target":"sle-15-ppc64le","autorefresh":true,"installer_updates":false,"name":"SLE-Module-Web-Scripting15-SP3-Updates","description":"SLE-Module-Web-Scripting15-SP3-Updates for sle-15-ppc64le"},{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/15-SP3/ppc64le/update_debug/","distro_target":"sle-15-ppc64le","autorefresh":true,"id":4725,"enabled":false,"description":"SLE-Module-Web-Scripting15-SP3-Debuginfo-Updates for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-Web-Scripting15-SP3-Debuginfo-Updates"},{"autorefresh":false,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP3/ppc64le/product/","enabled":true,"id":4726,"description":"SLE-Module-Web-Scripting15-SP3-Pool for sle-15-ppc64le","name":"SLE-Module-Web-Scripting15-SP3-Pool","installer_updates":false},{"installer_updates":false,"name":"SLE-Module-Web-Scripting15-SP3-Debuginfo-Pool","description":"SLE-Module-Web-Scripting15-SP3-Debuginfo-Pool for sle-15-ppc64le","enabled":false,"id":4727,"distro_target":"sle-15-ppc64le","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP3/ppc64le/product_debug/"},{"enabled":false,"id":4728,"distro_target":"sle-15-ppc64le","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP3/ppc64le/product_source/","installer_updates":false,"name":"SLE-Module-Web-Scripting15-SP3-Source-Pool","description":"SLE-Module-Web-Scripting15-SP3-Source-Pool for sle-15-ppc64le"}],"online_predecessor_ids":[1719,1796,1974],"product_class":"MODULE"},{"arch":"s390x","eula_url":"","description":"

The SUSE Linux Enterprise Web and Scripting Module should contains additional packages that are helpful when running a webserver.

Access to the Web and Scripting Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself: Package versions in this module are usually supported for at most three years. We are planning to release more recent versions on a schedule of approximately 18 month; the exact dates may differ per package.

","shortname":"Web-Scripting-Module","free":true,"cpe":"cpe:/o:suse:sle-module-web-scripting:15:sp3","product_type":"module","product_class":"MODULE","online_predecessor_ids":[1720,1797,1975],"repositories":[{"enabled":true,"id":4729,"autorefresh":true,"distro_target":"sle-15-s390x","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/15-SP3/s390x/update/","name":"SLE-Module-Web-Scripting15-SP3-Updates","installer_updates":false,"description":"SLE-Module-Web-Scripting15-SP3-Updates for sle-15-s390x"},{"autorefresh":true,"distro_target":"sle-15-s390x","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/15-SP3/s390x/update_debug/","enabled":false,"id":4730,"description":"SLE-Module-Web-Scripting15-SP3-Debuginfo-Updates for sle-15-s390x","name":"SLE-Module-Web-Scripting15-SP3-Debuginfo-Updates","installer_updates":false},{"distro_target":"sle-15-s390x","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP3/s390x/product/","enabled":true,"id":4731,"description":"SLE-Module-Web-Scripting15-SP3-Pool for sle-15-s390x","installer_updates":false,"name":"SLE-Module-Web-Scripting15-SP3-Pool"},{"id":4732,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP3/s390x/product_debug/","distro_target":"sle-15-s390x","autorefresh":false,"installer_updates":false,"name":"SLE-Module-Web-Scripting15-SP3-Debuginfo-Pool","description":"SLE-Module-Web-Scripting15-SP3-Debuginfo-Pool for sle-15-s390x"},{"id":4733,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP3/s390x/product_source/","autorefresh":false,"distro_target":"sle-15-s390x","name":"SLE-Module-Web-Scripting15-SP3-Source-Pool","installer_updates":false,"description":"SLE-Module-Web-Scripting15-SP3-Source-Pool for sle-15-s390x"}],"predecessor_ids":[1720,1797,1975],"migration_extra":false,"friendly_name":"Web and Scripting Module 15 SP3 s390x","former_identifier":"sle-module-web-scripting","release_type":null,"name":"Web and Scripting Module","offline_predecessor_ids":[1152],"version":"15.3","recommended":false,"release_stage":"released","identifier":"sle-module-web-scripting","id":2164,"extensions":[],"friendly_version":"15 SP3"},{"offline_predecessor_ids":[1153],"name":"Web and Scripting Module","former_identifier":"sle-module-web-scripting","release_type":null,"migration_extra":false,"friendly_name":"Web and Scripting Module 15 SP3 x86_64","recommended":false,"version":"15.3","extensions":[],"id":2165,"release_stage":"released","identifier":"sle-module-web-scripting","friendly_version":"15 SP3","eula_url":"","arch":"x86_64","free":true,"shortname":"Web-Scripting-Module","description":"

The SUSE Linux Enterprise Web and Scripting Module should contains additional packages that are helpful when running a webserver.

Access to the Web and Scripting Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself: Package versions in this module are usually supported for at most three years. We are planning to release more recent versions on a schedule of approximately 18 month; the exact dates may differ per package.

","product_type":"module","cpe":"cpe:/o:suse:sle-module-web-scripting:15:sp3","predecessor_ids":[1721,1798,1976],"online_predecessor_ids":[1721,1798,1976],"repositories":[{"installer_updates":false,"name":"SLE-Module-Web-Scripting15-SP3-Updates","description":"SLE-Module-Web-Scripting15-SP3-Updates for sle-15-x86_64","id":4734,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/15-SP3/x86_64/update/","distro_target":"sle-15-x86_64","autorefresh":true},{"name":"SLE-Module-Web-Scripting15-SP3-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-Web-Scripting15-SP3-Debuginfo-Updates for sle-15-x86_64","enabled":false,"id":4735,"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/15-SP3/x86_64/update_debug/"},{"enabled":true,"id":4736,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP3/x86_64/product/","name":"SLE-Module-Web-Scripting15-SP3-Pool","installer_updates":false,"description":"SLE-Module-Web-Scripting15-SP3-Pool for sle-15-x86_64"},{"enabled":false,"id":4737,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP3/x86_64/product_debug/","name":"SLE-Module-Web-Scripting15-SP3-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-Web-Scripting15-SP3-Debuginfo-Pool for sle-15-x86_64"},{"name":"SLE-Module-Web-Scripting15-SP3-Source-Pool","installer_updates":false,"description":"SLE-Module-Web-Scripting15-SP3-Source-Pool for sle-15-x86_64","enabled":false,"id":4738,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP3/x86_64/product_source/"}],"product_class":"MODULE"},{"release_type":null,"former_identifier":"sle-module-hpc","friendly_name":"HPC Module 15 SP3 aarch64","migration_extra":false,"offline_predecessor_ids":[1522],"name":"HPC Module","version":"15.3","recommended":false,"identifier":"sle-module-hpc","release_stage":"released","id":2166,"extensions":[],"friendly_version":"15 SP3","arch":"aarch64","eula_url":"","free":true,"shortname":"HPC-Module","description":"

The SUSE Linux Enterprise Server High Performance Computing (HPC) module delivers specific tools commonly used for high performance, numerically intensive workloads.

SUSE packages these tools in the SLES HPC Module to provide greater flexibility to deliver new versions or new tools more rapidly than the standard SUSE Linux Enterprise lifecycle would permit.

Packages in this module are generally supported until a newer version of the package is released or the package is dropped from the module.

","product_type":"module","cpe":"cpe:/o:suse:sle-module-hpc:15:sp3","online_predecessor_ids":[1733,1799,1977],"repositories":[{"description":"SLE-Module-HPC15-SP3-Updates for sle-15-aarch64","name":"SLE-Module-HPC15-SP3-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-HPC/15-SP3/aarch64/update/","enabled":true,"id":4739},{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-HPC/15-SP3/aarch64/update_debug/","autorefresh":true,"distro_target":"sle-15-aarch64","id":4740,"enabled":false,"description":"SLE-Module-HPC15-SP3-Debuginfo-Updates for sle-15-aarch64","name":"SLE-Module-HPC15-SP3-Debuginfo-Updates","installer_updates":false},{"name":"SLE-Module-HPC15-SP3-Pool","installer_updates":false,"description":"SLE-Module-HPC15-SP3-Pool for sle-15-aarch64","id":4741,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-HPC/15-SP3/aarch64/product/","autorefresh":false,"distro_target":"sle-15-aarch64"},{"autorefresh":false,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-HPC/15-SP3/aarch64/product_debug/","enabled":false,"id":4742,"description":"SLE-Module-HPC15-SP3-Debuginfo-Pool for sle-15-aarch64","name":"SLE-Module-HPC15-SP3-Debuginfo-Pool","installer_updates":false},{"installer_updates":false,"name":"SLE-Module-HPC15-SP3-Source-Pool","description":"SLE-Module-HPC15-SP3-Source-Pool for sle-15-aarch64","enabled":false,"id":4743,"distro_target":"sle-15-aarch64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-HPC/15-SP3/aarch64/product_source/"}],"product_class":"MODULE","predecessor_ids":[1733,1799,1977]},{"name":"HPC Module","offline_predecessor_ids":[1440],"friendly_name":"HPC Module 15 SP3 x86_64","migration_extra":false,"release_type":null,"former_identifier":"sle-module-hpc","recommended":false,"version":"15.3","extensions":[],"identifier":"sle-module-hpc","release_stage":"released","id":2167,"friendly_version":"15 SP3","eula_url":"","arch":"x86_64","description":"

The SUSE Linux Enterprise Server High Performance Computing (HPC) module delivers specific tools commonly used for high performance, numerically intensive workloads.

SUSE packages these tools in the SLES HPC Module to provide greater flexibility to deliver new versions or new tools more rapidly than the standard SUSE Linux Enterprise lifecycle would permit.

Packages in this module are generally supported until a newer version of the package is released or the package is dropped from the module.

","shortname":"HPC-Module","free":true,"cpe":"cpe:/o:suse:sle-module-hpc:15:sp3","product_type":"module","predecessor_ids":[1734,1800,1978],"product_class":"MODULE","online_predecessor_ids":[1734,1800,1978],"repositories":[{"id":4744,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-HPC/15-SP3/x86_64/update/","distro_target":"sle-15-x86_64","autorefresh":true,"installer_updates":false,"name":"SLE-Module-HPC15-SP3-Updates","description":"SLE-Module-HPC15-SP3-Updates for sle-15-x86_64"},{"enabled":false,"id":4745,"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-HPC/15-SP3/x86_64/update_debug/","name":"SLE-Module-HPC15-SP3-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-HPC15-SP3-Debuginfo-Updates for sle-15-x86_64"},{"description":"SLE-Module-HPC15-SP3-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-HPC15-SP3-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-HPC/15-SP3/x86_64/product/","distro_target":"sle-15-x86_64","autorefresh":false,"id":4746,"enabled":true},{"description":"SLE-Module-HPC15-SP3-Debuginfo-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-HPC15-SP3-Debuginfo-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-HPC/15-SP3/x86_64/product_debug/","distro_target":"sle-15-x86_64","autorefresh":false,"id":4747,"enabled":false},{"description":"SLE-Module-HPC15-SP3-Source-Pool for sle-15-x86_64","name":"SLE-Module-HPC15-SP3-Source-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-HPC/15-SP3/x86_64/product_source/","autorefresh":false,"distro_target":"sle-15-x86_64","id":4748,"enabled":false}]},{"free":true,"description":"

The Legacy Module helps you migrating applications from SUSE Linux Enterprise 12 and other systems to SUSE Linux Enterprise 15, by providing packages which are discontinued on SUSE Linux Enterprise Server, such as: ntp, IBM Java 8, and a number of libraries.

Access to the Legacy Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself. Packages in the this module are usually supported for at most three years.

","shortname":"Legacy-Module","eula_url":"","arch":"aarch64","predecessor_ids":[1604,1801,1979],"product_class":"MODULE","online_predecessor_ids":[1604,1801,1979],"repositories":[{"name":"SLE-Module-Legacy15-SP3-Updates","installer_updates":false,"description":"SLE-Module-Legacy15-SP3-Updates for sle-15-aarch64","enabled":true,"id":4749,"autorefresh":true,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/15-SP3/aarch64/update/"},{"id":4750,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/15-SP3/aarch64/update_debug/","autorefresh":true,"distro_target":"sle-15-aarch64","name":"SLE-Module-Legacy15-SP3-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-Legacy15-SP3-Debuginfo-Updates for sle-15-aarch64"},{"installer_updates":false,"name":"SLE-Module-Legacy15-SP3-Pool","description":"SLE-Module-Legacy15-SP3-Pool for sle-15-aarch64","enabled":true,"id":4751,"distro_target":"sle-15-aarch64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15-SP3/aarch64/product/"},{"autorefresh":false,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15-SP3/aarch64/product_debug/","enabled":false,"id":4752,"description":"SLE-Module-Legacy15-SP3-Debuginfo-Pool for sle-15-aarch64","name":"SLE-Module-Legacy15-SP3-Debuginfo-Pool","installer_updates":false},{"enabled":false,"id":4753,"autorefresh":false,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15-SP3/aarch64/product_source/","name":"SLE-Module-Legacy15-SP3-Source-Pool","installer_updates":false,"description":"SLE-Module-Legacy15-SP3-Source-Pool for sle-15-aarch64"}],"product_type":"module","cpe":"cpe:/o:suse:sle-module-legacy:15:sp3","recommended":false,"version":"15.3","offline_predecessor_ids":[],"name":"Legacy Module","former_identifier":"sle-module-legacy","release_type":null,"friendly_name":"Legacy Module 15 SP3 aarch64","migration_extra":false,"friendly_version":"15 SP3","extensions":[],"identifier":"sle-module-legacy","release_stage":"released","id":2168},{"friendly_version":"15 SP3","id":2169,"release_stage":"released","identifier":"sle-module-legacy","extensions":[],"version":"15.3","recommended":false,"former_identifier":"sle-module-legacy","release_type":null,"friendly_name":"Legacy Module 15 SP3 ppc64le","migration_extra":false,"offline_predecessor_ids":[1148],"name":"Legacy Module","online_predecessor_ids":[1603,1802,1980],"repositories":[{"installer_updates":false,"name":"SLE-Module-Legacy15-SP3-Updates","description":"SLE-Module-Legacy15-SP3-Updates for sle-15-ppc64le","enabled":true,"id":4754,"distro_target":"sle-15-ppc64le","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/15-SP3/ppc64le/update/"},{"enabled":false,"id":4755,"distro_target":"sle-15-ppc64le","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/15-SP3/ppc64le/update_debug/","installer_updates":false,"name":"SLE-Module-Legacy15-SP3-Debuginfo-Updates","description":"SLE-Module-Legacy15-SP3-Debuginfo-Updates for sle-15-ppc64le"},{"description":"SLE-Module-Legacy15-SP3-Pool for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-Legacy15-SP3-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15-SP3/ppc64le/product/","distro_target":"sle-15-ppc64le","autorefresh":false,"id":4756,"enabled":true},{"distro_target":"sle-15-ppc64le","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15-SP3/ppc64le/product_debug/","enabled":false,"id":4757,"description":"SLE-Module-Legacy15-SP3-Debuginfo-Pool for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-Legacy15-SP3-Debuginfo-Pool"},{"enabled":false,"id":4758,"autorefresh":false,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15-SP3/ppc64le/product_source/","name":"SLE-Module-Legacy15-SP3-Source-Pool","installer_updates":false,"description":"SLE-Module-Legacy15-SP3-Source-Pool for sle-15-ppc64le"}],"product_class":"MODULE","predecessor_ids":[1603,1802,1980],"product_type":"module","cpe":"cpe:/o:suse:sle-module-legacy:15:sp3","free":true,"shortname":"Legacy-Module","description":"

The Legacy Module helps you migrating applications from SUSE Linux Enterprise 12 and other systems to SUSE Linux Enterprise 15, by providing packages which are discontinued on SUSE Linux Enterprise Server, such as: ntp, IBM Java 8, and a number of libraries.

Access to the Legacy Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself. Packages in the this module are usually supported for at most three years.

","arch":"ppc64le","eula_url":""},{"predecessor_ids":[1602,1803,1981],"product_class":"MODULE","online_predecessor_ids":[1602,1803,1981],"repositories":[{"description":"SLE-Module-Legacy15-SP3-Updates for sle-15-s390x","installer_updates":false,"name":"SLE-Module-Legacy15-SP3-Updates","distro_target":"sle-15-s390x","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/15-SP3/s390x/update/","enabled":true,"id":4759},{"id":4760,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/15-SP3/s390x/update_debug/","autorefresh":true,"distro_target":"sle-15-s390x","name":"SLE-Module-Legacy15-SP3-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-Legacy15-SP3-Debuginfo-Updates for sle-15-s390x"},{"description":"SLE-Module-Legacy15-SP3-Pool for sle-15-s390x","name":"SLE-Module-Legacy15-SP3-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15-SP3/s390x/product/","autorefresh":false,"distro_target":"sle-15-s390x","id":4761,"enabled":true},{"id":4762,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15-SP3/s390x/product_debug/","autorefresh":false,"distro_target":"sle-15-s390x","name":"SLE-Module-Legacy15-SP3-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-Legacy15-SP3-Debuginfo-Pool for sle-15-s390x"},{"description":"SLE-Module-Legacy15-SP3-Source-Pool for sle-15-s390x","installer_updates":false,"name":"SLE-Module-Legacy15-SP3-Source-Pool","distro_target":"sle-15-s390x","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15-SP3/s390x/product_source/","enabled":false,"id":4763}],"cpe":"cpe:/o:suse:sle-module-legacy:15:sp3","product_type":"module","shortname":"Legacy-Module","description":"

The Legacy Module helps you migrating applications from SUSE Linux Enterprise 12 and other systems to SUSE Linux Enterprise 15, by providing packages which are discontinued on SUSE Linux Enterprise Server, such as: ntp, IBM Java 8, and a number of libraries.

Access to the Legacy Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself. Packages in the this module are usually supported for at most three years.

","free":true,"eula_url":"","arch":"s390x","friendly_version":"15 SP3","extensions":[],"release_stage":"released","identifier":"sle-module-legacy","id":2170,"recommended":false,"version":"15.3","name":"Legacy Module","offline_predecessor_ids":[1149],"migration_extra":false,"friendly_name":"Legacy Module 15 SP3 s390x","release_type":null,"former_identifier":"sle-module-legacy"},{"eula_url":"","arch":"x86_64","description":"

The Legacy Module helps you migrating applications from SUSE Linux Enterprise 12 and other systems to SUSE Linux Enterprise 15, by providing packages which are discontinued on SUSE Linux Enterprise Server, such as: ntp, IBM Java 8, and a number of libraries.

Access to the Legacy Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself. Packages in the this module are usually supported for at most three years.

","shortname":"Legacy-Module","free":true,"cpe":"cpe:/o:suse:sle-module-legacy:15:sp3","product_type":"module","predecessor_ids":[1581,1804,1982],"online_predecessor_ids":[1581,1804,1982],"product_class":"MODULE","repositories":[{"enabled":true,"id":4764,"distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/15-SP3/x86_64/update/","installer_updates":false,"name":"SLE-Module-Legacy15-SP3-Updates","description":"SLE-Module-Legacy15-SP3-Updates for sle-15-x86_64"},{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/15-SP3/x86_64/update_debug/","distro_target":"sle-15-x86_64","autorefresh":true,"id":4765,"enabled":false,"description":"SLE-Module-Legacy15-SP3-Debuginfo-Updates for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Legacy15-SP3-Debuginfo-Updates"},{"enabled":true,"id":4766,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15-SP3/x86_64/product/","name":"SLE-Module-Legacy15-SP3-Pool","installer_updates":false,"description":"SLE-Module-Legacy15-SP3-Pool for sle-15-x86_64"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15-SP3/x86_64/product_debug/","distro_target":"sle-15-x86_64","autorefresh":false,"id":4767,"enabled":false,"description":"SLE-Module-Legacy15-SP3-Debuginfo-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Legacy15-SP3-Debuginfo-Pool"},{"id":4768,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15-SP3/x86_64/product_source/","autorefresh":false,"distro_target":"sle-15-x86_64","name":"SLE-Module-Legacy15-SP3-Source-Pool","installer_updates":false,"description":"SLE-Module-Legacy15-SP3-Source-Pool for sle-15-x86_64"}],"name":"Legacy Module","offline_predecessor_ids":[1150],"migration_extra":false,"friendly_name":"Legacy Module 15 SP3 x86_64","release_type":null,"former_identifier":"sle-module-legacy","recommended":false,"version":"15.3","extensions":[],"release_stage":"released","id":2171,"identifier":"sle-module-legacy","friendly_version":"15 SP3"},{"predecessor_ids":[1645,1805,1985],"repositories":[{"installer_updates":false,"name":"SLE-Module-Public-Cloud15-SP3-Updates","description":"SLE-Module-Public-Cloud15-SP3-Updates for sle-15-aarch64","id":4769,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/15-SP3/aarch64/update/","distro_target":"sle-15-aarch64","autorefresh":true},{"id":4770,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/15-SP3/aarch64/update_debug/","autorefresh":true,"distro_target":"sle-15-aarch64","name":"SLE-Module-Public-Cloud15-SP3-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-Public-Cloud15-SP3-Debuginfo-Updates for sle-15-aarch64"},{"distro_target":"sle-15-aarch64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP3/aarch64/product/","enabled":true,"id":4771,"description":"SLE-Module-Public-Cloud15-SP3-Pool for sle-15-aarch64","installer_updates":false,"name":"SLE-Module-Public-Cloud15-SP3-Pool"},{"distro_target":"sle-15-aarch64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP3/aarch64/product_debug/","enabled":false,"id":4772,"description":"SLE-Module-Public-Cloud15-SP3-Debuginfo-Pool for sle-15-aarch64","installer_updates":false,"name":"SLE-Module-Public-Cloud15-SP3-Debuginfo-Pool"},{"installer_updates":false,"name":"SLE-Module-Public-Cloud15-SP3-Source-Pool","description":"SLE-Module-Public-Cloud15-SP3-Source-Pool for sle-15-aarch64","id":4773,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP3/aarch64/product_source/","distro_target":"sle-15-aarch64","autorefresh":false}],"online_predecessor_ids":[1645,1805,1985],"product_class":"MODULE","product_type":"module","cpe":"cpe:/o:suse:sle-module-public-cloud:15:sp3","free":true,"description":"

The Public Cloud Module is a collection of tools that enables you to create and manage cloud images from the commandline on SUSE Linux Enterprise Server. When building your own images with KIWI or SUSE Studio, initialization code specific to the target cloud is included in that image.

Access to the Public Cloud Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself; please check the Release Notes for further details.

","shortname":"Public-Cloud-Module","eula_url":"","arch":"aarch64","friendly_version":"15 SP3","extensions":[],"release_stage":"released","identifier":"sle-module-public-cloud","id":2172,"recommended":false,"version":"15.3","offline_predecessor_ids":[1528],"name":"Public Cloud Module","former_identifier":"sle-module-public-cloud","release_type":null,"friendly_name":"Public Cloud Module 15 SP3 aarch64","migration_extra":false},{"extensions":[],"id":2173,"release_stage":"released","identifier":"sle-module-public-cloud","friendly_version":"15 SP3","offline_predecessor_ids":[1218],"name":"Public Cloud Module","release_type":null,"former_identifier":"sle-module-public-cloud","migration_extra":false,"friendly_name":"Public Cloud Module 15 SP3 ppc64le","recommended":false,"version":"15.3","product_type":"module","cpe":"cpe:/o:suse:sle-module-public-cloud:15:sp3","predecessor_ids":[1616,1806,1986],"product_class":"MODULE","online_predecessor_ids":[1616,1806,1986],"repositories":[{"description":"SLE-Module-Public-Cloud15-SP3-Updates for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-Public-Cloud15-SP3-Updates","distro_target":"sle-15-ppc64le","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/15-SP3/ppc64le/update/","enabled":true,"id":4774},{"installer_updates":false,"name":"SLE-Module-Public-Cloud15-SP3-Debuginfo-Updates","description":"SLE-Module-Public-Cloud15-SP3-Debuginfo-Updates for sle-15-ppc64le","id":4775,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/15-SP3/ppc64le/update_debug/","distro_target":"sle-15-ppc64le","autorefresh":true},{"id":4776,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP3/ppc64le/product/","autorefresh":false,"distro_target":"sle-15-ppc64le","name":"SLE-Module-Public-Cloud15-SP3-Pool","installer_updates":false,"description":"SLE-Module-Public-Cloud15-SP3-Pool for sle-15-ppc64le"},{"name":"SLE-Module-Public-Cloud15-SP3-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-Public-Cloud15-SP3-Debuginfo-Pool for sle-15-ppc64le","enabled":false,"id":4777,"autorefresh":false,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP3/ppc64le/product_debug/"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP3/ppc64le/product_source/","distro_target":"sle-15-ppc64le","autorefresh":false,"id":4778,"enabled":false,"description":"SLE-Module-Public-Cloud15-SP3-Source-Pool for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-Public-Cloud15-SP3-Source-Pool"}],"eula_url":"","arch":"ppc64le","free":true,"description":"

The Public Cloud Module is a collection of tools that enables you to create and manage cloud images from the commandline on SUSE Linux Enterprise Server. When building your own images with KIWI or SUSE Studio, initialization code specific to the target cloud is included in that image.

Access to the Public Cloud Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself; please check the Release Notes for further details.

","shortname":"Public-Cloud-Module"},{"id":2174,"release_stage":"released","identifier":"sle-module-public-cloud","extensions":[],"friendly_version":"15 SP3","migration_extra":false,"friendly_name":"Public Cloud Module 15 SP3 s390x","release_type":null,"former_identifier":"sle-module-public-cloud","name":"Public Cloud Module","offline_predecessor_ids":[1219],"version":"15.3","recommended":false,"cpe":"cpe:/o:suse:sle-module-public-cloud:15:sp3","product_type":"module","product_class":"MODULE","online_predecessor_ids":[1646,1807,1987],"repositories":[{"distro_target":"sle-15-s390x","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/15-SP3/s390x/update/","enabled":true,"id":4779,"description":"SLE-Module-Public-Cloud15-SP3-Updates for sle-15-s390x","installer_updates":false,"name":"SLE-Module-Public-Cloud15-SP3-Updates"},{"installer_updates":false,"name":"SLE-Module-Public-Cloud15-SP3-Debuginfo-Updates","description":"SLE-Module-Public-Cloud15-SP3-Debuginfo-Updates for sle-15-s390x","enabled":false,"id":4780,"distro_target":"sle-15-s390x","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/15-SP3/s390x/update_debug/"},{"id":4781,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP3/s390x/product/","autorefresh":false,"distro_target":"sle-15-s390x","name":"SLE-Module-Public-Cloud15-SP3-Pool","installer_updates":false,"description":"SLE-Module-Public-Cloud15-SP3-Pool for sle-15-s390x"},{"installer_updates":false,"name":"SLE-Module-Public-Cloud15-SP3-Debuginfo-Pool","description":"SLE-Module-Public-Cloud15-SP3-Debuginfo-Pool for sle-15-s390x","id":4782,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP3/s390x/product_debug/","distro_target":"sle-15-s390x","autorefresh":false},{"description":"SLE-Module-Public-Cloud15-SP3-Source-Pool for sle-15-s390x","installer_updates":false,"name":"SLE-Module-Public-Cloud15-SP3-Source-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP3/s390x/product_source/","distro_target":"sle-15-s390x","autorefresh":false,"id":4783,"enabled":false}],"predecessor_ids":[1646,1807,1987],"arch":"s390x","eula_url":"","shortname":"Public-Cloud-Module","description":"

The Public Cloud Module is a collection of tools that enables you to create and manage cloud images from the commandline on SUSE Linux Enterprise Server. When building your own images with KIWI or SUSE Studio, initialization code specific to the target cloud is included in that image.

Access to the Public Cloud Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself; please check the Release Notes for further details.

","free":true},{"cpe":"cpe:/o:suse:sle-module-public-cloud:15:sp3","product_type":"module","repositories":[{"description":"SLE-Module-Public-Cloud15-SP3-Updates for sle-15-x86_64","name":"SLE-Module-Public-Cloud15-SP3-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/15-SP3/x86_64/update/","enabled":true,"id":4784},{"name":"SLE-Module-Public-Cloud15-SP3-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-Public-Cloud15-SP3-Debuginfo-Updates for sle-15-x86_64","id":4785,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/15-SP3/x86_64/update_debug/","autorefresh":true,"distro_target":"sle-15-x86_64"},{"enabled":true,"id":4786,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP3/x86_64/product/","name":"SLE-Module-Public-Cloud15-SP3-Pool","installer_updates":false,"description":"SLE-Module-Public-Cloud15-SP3-Pool for sle-15-x86_64"},{"installer_updates":false,"name":"SLE-Module-Public-Cloud15-SP3-Debuginfo-Pool","description":"SLE-Module-Public-Cloud15-SP3-Debuginfo-Pool for sle-15-x86_64","enabled":false,"id":4787,"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP3/x86_64/product_debug/"},{"name":"SLE-Module-Public-Cloud15-SP3-Source-Pool","installer_updates":false,"description":"SLE-Module-Public-Cloud15-SP3-Source-Pool for sle-15-x86_64","id":4788,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP3/x86_64/product_source/","autorefresh":false,"distro_target":"sle-15-x86_64"}],"online_predecessor_ids":[1611,1808,1988],"product_class":"MODULE","predecessor_ids":[1611,1808,1988],"arch":"x86_64","eula_url":"","shortname":"Public-Cloud-Module","description":"

The Public Cloud Module is a collection of tools that enables you to create and manage cloud images from the commandline on SUSE Linux Enterprise Server. When building your own images with KIWI or SUSE Studio, initialization code specific to the target cloud is included in that image.

Access to the Public Cloud Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself; please check the Release Notes for further details.

","free":true,"release_stage":"released","identifier":"sle-module-public-cloud","id":2175,"extensions":[],"friendly_version":"15 SP3","migration_extra":false,"friendly_name":"Public Cloud Module 15 SP3 x86_64","release_type":null,"former_identifier":"sle-module-public-cloud","name":"Public Cloud Module","offline_predecessor_ids":[1220],"version":"15.3","recommended":false},{"friendly_version":"15 SP3","extensions":[],"identifier":"sle-module-cap-tools","release_stage":"released","id":2176,"recommended":false,"version":"15.3","name":"SUSE Cloud Application Platform Tools Module","offline_predecessor_ids":[1678],"migration_extra":false,"friendly_name":"SUSE Cloud Application Platform Tools Module 15 SP3 x86_64","release_type":null,"former_identifier":"sle-module-cap-tools","predecessor_ids":[1728,1809,2075],"product_class":"MODULE","online_predecessor_ids":[1728,1809,2075],"repositories":[{"distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-CAP-Tools/15-SP3/x86_64/update/","enabled":true,"id":4789,"description":"SLE-Module-CAP-Tools15-SP3-Updates for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-CAP-Tools15-SP3-Updates"},{"enabled":false,"id":4790,"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-CAP-Tools/15-SP3/x86_64/update_debug/","name":"SLE-Module-CAP-Tools15-SP3-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-CAP-Tools15-SP3-Debuginfo-Updates for sle-15-x86_64"},{"installer_updates":false,"name":"SLE-Module-CAP-Tools15-SP3-Pool","description":"SLE-Module-CAP-Tools15-SP3-Pool for sle-15-x86_64","enabled":true,"id":4791,"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-CAP-Tools/15-SP3/x86_64/product/"},{"description":"SLE-Module-CAP-Tools15-SP3-Debuginfo-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-CAP-Tools15-SP3-Debuginfo-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-CAP-Tools/15-SP3/x86_64/product_debug/","distro_target":"sle-15-x86_64","autorefresh":false,"id":4792,"enabled":false},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-CAP-Tools/15-SP3/x86_64/product_source/","autorefresh":false,"distro_target":"sle-15-x86_64","id":4793,"enabled":false,"description":"SLE-Module-CAP-Tools15-SP3-Source-Pool for sle-15-x86_64","name":"SLE-Module-CAP-Tools15-SP3-Source-Pool","installer_updates":false}],"cpe":"cpe:/o:suse:sle-module-cap-tools:15:sp3","product_type":"module","shortname":"SUSE-CAP-Tools-Module","description":"

The SUSE Cloud Application Platform Tools Module is a collection of tools that enables you to interact with the SUSE Cloud Application Platform product itself, providing the commandline client for instance.

Access to the SUSE Cloud Application Platform Tools Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself; please check the Release Notes for further details.

","free":true,"eula_url":"","arch":"x86_64"},{"identifier":"sle-module-transactional-server","release_stage":"released","id":2177,"extensions":[],"friendly_version":"15 SP3","former_identifier":"sle-module-transactional-server","release_type":null,"friendly_name":"Transactional Server Module 15 SP3 aarch64","migration_extra":false,"offline_predecessor_ids":[],"name":"Transactional Server Module","version":"15.3","recommended":false,"product_type":"module","cpe":"cpe:/o:suse:sle-module-transactional-server:15:sp3","online_predecessor_ids":[1822,1995],"repositories":[{"distro_target":"sle-15-aarch64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Transactional-Server/15-SP3/aarch64/update/","enabled":true,"id":4794,"description":"SLE-Module-Transactional-Server15-SP3-Updates for sle-15-aarch64","installer_updates":false,"name":"SLE-Module-Transactional-Server15-SP3-Updates"},{"id":4795,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Transactional-Server/15-SP3/aarch64/update_debug/","autorefresh":true,"distro_target":"sle-15-aarch64","name":"SLE-Module-Transactional-Server15-SP3-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-Transactional-Server15-SP3-Debuginfo-Updates for sle-15-aarch64"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Transactional-Server/15-SP3/aarch64/product/","distro_target":"sle-15-aarch64","autorefresh":false,"id":4796,"enabled":true,"description":"SLE-Module-Transactional-Server15-SP3-Pool for sle-15-aarch64","installer_updates":false,"name":"SLE-Module-Transactional-Server15-SP3-Pool"},{"description":"SLE-Module-Transactional-Server15-SP3-Debuginfo-Pool for sle-15-aarch64","name":"SLE-Module-Transactional-Server15-SP3-Debuginfo-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Transactional-Server/15-SP3/aarch64/product_debug/","enabled":false,"id":4797},{"installer_updates":false,"name":"SLE-Module-Transactional-Server15-SP3-Source-Pool","description":"SLE-Module-Transactional-Server15-SP3-Source-Pool for sle-15-aarch64","enabled":false,"id":4798,"distro_target":"sle-15-aarch64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Transactional-Server/15-SP3/aarch64/product_source/"}],"product_class":"MODULE","predecessor_ids":[1822,1995],"arch":"aarch64","eula_url":"","free":true,"description":"

Transactional Updates provide SUSE Linux Enterprise systems with a method of updating the operating system and its packages in an entirely ‘atomic’ way. Updates are either applied to the system all together in a single transaction, or not at all. This happens without influencing the running system. If an update fails, or if the successful update is deemed to be incompatible or otherwise incorrect, it can be discarded to immediately return the system to its previous functioning state.

Access to theTransactional Server Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself: Package versions in the this module are usually supported for at most three years. We are planning to release more recent versions on a schedule of approximately 18 month; the exact dates may differ per package.

","shortname":"Transactional-Server-Module"},{"arch":"ppc64le","eula_url":"","free":true,"description":"

Transactional Updates provide SUSE Linux Enterprise systems with a method of updating the operating system and its packages in an entirely ‘atomic’ way. Updates are either applied to the system all together in a single transaction, or not at all. This happens without influencing the running system. If an update fails, or if the successful update is deemed to be incompatible or otherwise incorrect, it can be discarded to immediately return the system to its previous functioning state.

Access to theTransactional Server Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself: Package versions in the this module are usually supported for at most three years. We are planning to release more recent versions on a schedule of approximately 18 month; the exact dates may differ per package.

","shortname":"Transactional-Server-Module","product_type":"module","cpe":"cpe:/o:suse:sle-module-transactional-server:15:sp3","repositories":[{"installer_updates":false,"name":"SLE-Module-Transactional-Server15-SP3-Updates","description":"SLE-Module-Transactional-Server15-SP3-Updates for sle-15-ppc64le","id":4799,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Transactional-Server/15-SP3/ppc64le/update/","distro_target":"sle-15-ppc64le","autorefresh":true},{"description":"SLE-Module-Transactional-Server15-SP3-Debuginfo-Updates for sle-15-ppc64le","name":"SLE-Module-Transactional-Server15-SP3-Debuginfo-Updates","installer_updates":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Transactional-Server/15-SP3/ppc64le/update_debug/","autorefresh":true,"distro_target":"sle-15-ppc64le","id":4800,"enabled":false},{"description":"SLE-Module-Transactional-Server15-SP3-Pool for sle-15-ppc64le","name":"SLE-Module-Transactional-Server15-SP3-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Transactional-Server/15-SP3/ppc64le/product/","autorefresh":false,"distro_target":"sle-15-ppc64le","id":4801,"enabled":true},{"description":"SLE-Module-Transactional-Server15-SP3-Debuginfo-Pool for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-Transactional-Server15-SP3-Debuginfo-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Transactional-Server/15-SP3/ppc64le/product_debug/","distro_target":"sle-15-ppc64le","autorefresh":false,"id":4802,"enabled":false},{"description":"SLE-Module-Transactional-Server15-SP3-Source-Pool for sle-15-ppc64le","name":"SLE-Module-Transactional-Server15-SP3-Source-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Transactional-Server/15-SP3/ppc64le/product_source/","enabled":false,"id":4803}],"online_predecessor_ids":[1823,1996],"product_class":"MODULE","predecessor_ids":[1823,1996],"release_type":null,"former_identifier":"sle-module-transactional-server","migration_extra":false,"friendly_name":"Transactional Server Module 15 SP3 ppc64le","offline_predecessor_ids":[],"name":"Transactional Server Module","version":"15.3","recommended":false,"id":2178,"release_stage":"released","identifier":"sle-module-transactional-server","extensions":[],"friendly_version":"15 SP3"},{"friendly_version":"15 SP3","id":2179,"release_stage":"released","identifier":"sle-module-transactional-server","extensions":[],"version":"15.3","recommended":false,"friendly_name":"Transactional Server Module 15 SP3 s390x","migration_extra":false,"former_identifier":"sle-module-transactional-server","release_type":null,"name":"Transactional Server Module","offline_predecessor_ids":[],"product_class":"MODULE","online_predecessor_ids":[1824,1997],"repositories":[{"name":"SLE-Module-Transactional-Server15-SP3-Updates","installer_updates":false,"description":"SLE-Module-Transactional-Server15-SP3-Updates for sle-15-s390x","enabled":true,"id":4804,"autorefresh":true,"distro_target":"sle-15-s390x","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Transactional-Server/15-SP3/s390x/update/"},{"description":"SLE-Module-Transactional-Server15-SP3-Debuginfo-Updates for sle-15-s390x","name":"SLE-Module-Transactional-Server15-SP3-Debuginfo-Updates","installer_updates":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Transactional-Server/15-SP3/s390x/update_debug/","autorefresh":true,"distro_target":"sle-15-s390x","id":4805,"enabled":false},{"installer_updates":false,"name":"SLE-Module-Transactional-Server15-SP3-Pool","description":"SLE-Module-Transactional-Server15-SP3-Pool for sle-15-s390x","enabled":true,"id":4806,"distro_target":"sle-15-s390x","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Transactional-Server/15-SP3/s390x/product/"},{"name":"SLE-Module-Transactional-Server15-SP3-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-Transactional-Server15-SP3-Debuginfo-Pool for sle-15-s390x","id":4807,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Transactional-Server/15-SP3/s390x/product_debug/","autorefresh":false,"distro_target":"sle-15-s390x"},{"description":"SLE-Module-Transactional-Server15-SP3-Source-Pool for sle-15-s390x","installer_updates":false,"name":"SLE-Module-Transactional-Server15-SP3-Source-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Transactional-Server/15-SP3/s390x/product_source/","distro_target":"sle-15-s390x","autorefresh":false,"id":4808,"enabled":false}],"predecessor_ids":[1824,1997],"cpe":"cpe:/o:suse:sle-module-transactional-server:15:sp3","product_type":"module","description":"

Transactional Updates provide SUSE Linux Enterprise systems with a method of updating the operating system and its packages in an entirely ‘atomic’ way. Updates are either applied to the system all together in a single transaction, or not at all. This happens without influencing the running system. If an update fails, or if the successful update is deemed to be incompatible or otherwise incorrect, it can be discarded to immediately return the system to its previous functioning state.

Access to theTransactional Server Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself: Package versions in the this module are usually supported for at most three years. We are planning to release more recent versions on a schedule of approximately 18 month; the exact dates may differ per package.

","shortname":"Transactional-Server-Module","free":true,"arch":"s390x","eula_url":""},{"eula_url":"","arch":"x86_64","shortname":"Transactional-Server-Module","description":"

Transactional Updates provide SUSE Linux Enterprise systems with a method of updating the operating system and its packages in an entirely ‘atomic’ way. Updates are either applied to the system all together in a single transaction, or not at all. This happens without influencing the running system. If an update fails, or if the successful update is deemed to be incompatible or otherwise incorrect, it can be discarded to immediately return the system to its previous functioning state.

Access to theTransactional Server Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself: Package versions in the this module are usually supported for at most three years. We are planning to release more recent versions on a schedule of approximately 18 month; the exact dates may differ per package.

","free":true,"cpe":"cpe:/o:suse:sle-module-transactional-server:15:sp3","product_type":"module","predecessor_ids":[1825,1998],"product_class":"MODULE","online_predecessor_ids":[1825,1998],"repositories":[{"installer_updates":false,"name":"SLE-Module-Transactional-Server15-SP3-Updates","description":"SLE-Module-Transactional-Server15-SP3-Updates for sle-15-x86_64","id":4809,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Transactional-Server/15-SP3/x86_64/update/","distro_target":"sle-15-x86_64","autorefresh":true},{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Transactional-Server/15-SP3/x86_64/update_debug/","autorefresh":true,"distro_target":"sle-15-x86_64","id":4810,"enabled":false,"description":"SLE-Module-Transactional-Server15-SP3-Debuginfo-Updates for sle-15-x86_64","name":"SLE-Module-Transactional-Server15-SP3-Debuginfo-Updates","installer_updates":false},{"id":4811,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Transactional-Server/15-SP3/x86_64/product/","autorefresh":false,"distro_target":"sle-15-x86_64","name":"SLE-Module-Transactional-Server15-SP3-Pool","installer_updates":false,"description":"SLE-Module-Transactional-Server15-SP3-Pool for sle-15-x86_64"},{"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Transactional-Server/15-SP3/x86_64/product_debug/","enabled":false,"id":4812,"description":"SLE-Module-Transactional-Server15-SP3-Debuginfo-Pool for sle-15-x86_64","name":"SLE-Module-Transactional-Server15-SP3-Debuginfo-Pool","installer_updates":false},{"installer_updates":false,"name":"SLE-Module-Transactional-Server15-SP3-Source-Pool","description":"SLE-Module-Transactional-Server15-SP3-Source-Pool for sle-15-x86_64","enabled":false,"id":4813,"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Transactional-Server/15-SP3/x86_64/product_source/"}],"name":"Transactional Server Module","offline_predecessor_ids":[],"friendly_name":"Transactional Server Module 15 SP3 x86_64","migration_extra":false,"release_type":null,"former_identifier":"sle-module-transactional-server","recommended":false,"version":"15.3","extensions":[],"identifier":"sle-module-transactional-server","release_stage":"released","id":2180,"friendly_version":"15 SP3"},{"cpe":"cpe:/o:suse:sle-module-python2:15:sp3","product_type":"module","predecessor_ids":[1864,1989],"online_predecessor_ids":[1864,1989],"repositories":[{"id":4814,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Python2/15-SP3/aarch64/update/","autorefresh":true,"distro_target":"sle-15-aarch64","name":"SLE-Module-Python2-15-SP3-Updates","installer_updates":false,"description":"SLE-Module-Python2-15-SP3-Updates for sle-15-aarch64"},{"id":4815,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Python2/15-SP3/aarch64/update_debug/","distro_target":"sle-15-aarch64","autorefresh":true,"installer_updates":false,"name":"SLE-Module-Python2-15-SP3-Debuginfo-Updates","description":"SLE-Module-Python2-15-SP3-Debuginfo-Updates for sle-15-aarch64"},{"installer_updates":false,"name":"SLE-Module-Python2-15-SP3-Pool","description":"SLE-Module-Python2-15-SP3-Pool for sle-15-aarch64","id":4816,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Python2/15-SP3/aarch64/product/","distro_target":"sle-15-aarch64","autorefresh":false},{"description":"SLE-Module-Python2-15-SP3-Debuginfo-Pool for sle-15-aarch64","installer_updates":false,"name":"SLE-Module-Python2-15-SP3-Debuginfo-Pool","distro_target":"sle-15-aarch64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Python2/15-SP3/aarch64/product_debug/","enabled":false,"id":4817},{"description":"SLE-Module-Python2-15-SP3-Source-Pool for sle-15-aarch64","name":"SLE-Module-Python2-15-SP3-Source-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Python2/15-SP3/aarch64/product_source/","autorefresh":false,"distro_target":"sle-15-aarch64","id":4818,"enabled":false}],"product_class":"MODULE","eula_url":"","arch":"aarch64","shortname":"Python2-Module","description":"

This module contains the python 2 packages.

Access to the Python 2 Module is included in your SUSE Linux Enterprise subscription. The module has a different lifecycle than SUSE Linux Enterprise itself. Packages in the this module are usually supported for at most three years.

","free":true,"extensions":[],"release_stage":"released","id":2181,"identifier":"sle-module-python2","friendly_version":"15 SP3","name":"Python 2 Module","offline_predecessor_ids":[],"friendly_name":"Python 2 Module 15 SP3 aarch64","migration_extra":false,"release_type":null,"former_identifier":"sle-module-python2","recommended":false,"version":"15.3"},{"predecessor_ids":[1865,1990],"repositories":[{"installer_updates":false,"name":"SLE-Module-Python2-15-SP3-Updates","description":"SLE-Module-Python2-15-SP3-Updates for sle-15-ppc64le","id":4819,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Python2/15-SP3/ppc64le/update/","distro_target":"sle-15-ppc64le","autorefresh":true},{"name":"SLE-Module-Python2-15-SP3-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-Python2-15-SP3-Debuginfo-Updates for sle-15-ppc64le","id":4820,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Python2/15-SP3/ppc64le/update_debug/","autorefresh":true,"distro_target":"sle-15-ppc64le"},{"description":"SLE-Module-Python2-15-SP3-Pool for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-Python2-15-SP3-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Python2/15-SP3/ppc64le/product/","distro_target":"sle-15-ppc64le","autorefresh":false,"id":4821,"enabled":true},{"installer_updates":false,"name":"SLE-Module-Python2-15-SP3-Debuginfo-Pool","description":"SLE-Module-Python2-15-SP3-Debuginfo-Pool for sle-15-ppc64le","enabled":false,"id":4822,"distro_target":"sle-15-ppc64le","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Python2/15-SP3/ppc64le/product_debug/"},{"description":"SLE-Module-Python2-15-SP3-Source-Pool for sle-15-ppc64le","name":"SLE-Module-Python2-15-SP3-Source-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Python2/15-SP3/ppc64le/product_source/","enabled":false,"id":4823}],"online_predecessor_ids":[1865,1990],"product_class":"MODULE","cpe":"cpe:/o:suse:sle-module-python2:15:sp3","product_type":"module","shortname":"Python2-Module","description":"

This module contains the python 2 packages.

Access to the Python 2 Module is included in your SUSE Linux Enterprise subscription. The module has a different lifecycle than SUSE Linux Enterprise itself. Packages in the this module are usually supported for at most three years.

","free":true,"eula_url":"","arch":"ppc64le","friendly_version":"15 SP3","extensions":[],"identifier":"sle-module-python2","release_stage":"released","id":2182,"recommended":false,"version":"15.3","name":"Python 2 Module","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"Python 2 Module 15 SP3 ppc64le","former_identifier":"sle-module-python2","release_type":null},{"eula_url":"","arch":"s390x","description":"

This module contains the python 2 packages.

Access to the Python 2 Module is included in your SUSE Linux Enterprise subscription. The module has a different lifecycle than SUSE Linux Enterprise itself. Packages in the this module are usually supported for at most three years.

","shortname":"Python2-Module","free":true,"cpe":"cpe:/o:suse:sle-module-python2:15:sp3","product_type":"module","predecessor_ids":[1866,1991],"product_class":"MODULE","online_predecessor_ids":[1866,1991],"repositories":[{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Python2/15-SP3/s390x/update/","autorefresh":true,"distro_target":"sle-15-s390x","id":4824,"enabled":true,"description":"SLE-Module-Python2-15-SP3-Updates for sle-15-s390x","name":"SLE-Module-Python2-15-SP3-Updates","installer_updates":false},{"autorefresh":true,"distro_target":"sle-15-s390x","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Python2/15-SP3/s390x/update_debug/","enabled":false,"id":4825,"description":"SLE-Module-Python2-15-SP3-Debuginfo-Updates for sle-15-s390x","name":"SLE-Module-Python2-15-SP3-Debuginfo-Updates","installer_updates":false},{"distro_target":"sle-15-s390x","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Python2/15-SP3/s390x/product/","enabled":true,"id":4826,"description":"SLE-Module-Python2-15-SP3-Pool for sle-15-s390x","installer_updates":false,"name":"SLE-Module-Python2-15-SP3-Pool"},{"distro_target":"sle-15-s390x","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Python2/15-SP3/s390x/product_debug/","enabled":false,"id":4827,"description":"SLE-Module-Python2-15-SP3-Debuginfo-Pool for sle-15-s390x","installer_updates":false,"name":"SLE-Module-Python2-15-SP3-Debuginfo-Pool"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Python2/15-SP3/s390x/product_source/","autorefresh":false,"distro_target":"sle-15-s390x","id":4828,"enabled":false,"description":"SLE-Module-Python2-15-SP3-Source-Pool for sle-15-s390x","name":"SLE-Module-Python2-15-SP3-Source-Pool","installer_updates":false}],"name":"Python 2 Module","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"Python 2 Module 15 SP3 s390x","former_identifier":"sle-module-python2","release_type":null,"recommended":false,"version":"15.3","extensions":[],"identifier":"sle-module-python2","release_stage":"released","id":2183,"friendly_version":"15 SP3"},{"eula_url":"","arch":"x86_64","free":true,"shortname":"Python2-Module","description":"

This module contains the python 2 packages.

Access to the Python 2 Module is included in your SUSE Linux Enterprise subscription. The module has a different lifecycle than SUSE Linux Enterprise itself. Packages in the this module are usually supported for at most three years.

","product_type":"module","cpe":"cpe:/o:suse:sle-module-python2:15:sp3","predecessor_ids":[1867,1992],"online_predecessor_ids":[1867,1992],"product_class":"MODULE","repositories":[{"description":"SLE-Module-Python2-15-SP3-Updates for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Python2-15-SP3-Updates","distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Python2/15-SP3/x86_64/update/","enabled":true,"id":4829},{"description":"SLE-Module-Python2-15-SP3-Debuginfo-Updates for sle-15-x86_64","name":"SLE-Module-Python2-15-SP3-Debuginfo-Updates","installer_updates":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Python2/15-SP3/x86_64/update_debug/","autorefresh":true,"distro_target":"sle-15-x86_64","id":4830,"enabled":false},{"description":"SLE-Module-Python2-15-SP3-Pool for sle-15-x86_64","name":"SLE-Module-Python2-15-SP3-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Python2/15-SP3/x86_64/product/","autorefresh":false,"distro_target":"sle-15-x86_64","id":4831,"enabled":true},{"name":"SLE-Module-Python2-15-SP3-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-Python2-15-SP3-Debuginfo-Pool for sle-15-x86_64","enabled":false,"id":4832,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Python2/15-SP3/x86_64/product_debug/"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Python2/15-SP3/x86_64/product_source/","distro_target":"sle-15-x86_64","autorefresh":false,"id":4833,"enabled":false,"description":"SLE-Module-Python2-15-SP3-Source-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Python2-15-SP3-Source-Pool"}],"offline_predecessor_ids":[],"name":"Python 2 Module","release_type":null,"former_identifier":"sle-module-python2","migration_extra":false,"friendly_name":"Python 2 Module 15 SP3 x86_64","recommended":false,"version":"15.3","extensions":[],"release_stage":"released","identifier":"sle-module-python2","id":2184,"friendly_version":"15 SP3"},{"friendly_name":"SUSE Linux Enterprise Live Patching 15 SP3 ppc64le","migration_extra":false,"release_type":null,"former_identifier":"sle-module-live-patching","name":"SUSE Linux Enterprise Live Patching","offline_predecessor_ids":[1537,1756,1887],"version":"15.3","recommended":false,"release_stage":"released","id":2185,"identifier":"sle-module-live-patching","extensions":[],"friendly_version":"15 SP3","arch":"ppc64le","eula_url":"","shortname":"Live-Patching","description":"

SUSE Linux Enterprise Live Patching provides packages to update critical components in SUSE Linux Enterprise. With SUSE Linux Enterprise Live Patching, you can perform critical patching without shutting down your system, reducing the need for planned downtime and increasing service availability.

","free":false,"cpe":"cpe:/o:suse:sle-module-live-patching:15:sp3","product_type":"extension","online_predecessor_ids":[1735,1827,1983],"product_class":"SLE-LP-PPC","repositories":[{"installer_updates":false,"name":"SLE-Module-Live-Patching15-SP3-Updates","description":"SLE-Module-Live-Patching15-SP3-Updates for sle-15-ppc64le","enabled":true,"id":4834,"distro_target":"sle-15-ppc64le","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Live-Patching/15-SP3/ppc64le/update/"},{"name":"SLE-Module-Live-Patching15-SP3-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-Live-Patching15-SP3-Debuginfo-Updates for sle-15-ppc64le","id":4835,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Live-Patching/15-SP3/ppc64le/update_debug/","autorefresh":true,"distro_target":"sle-15-ppc64le"},{"enabled":true,"id":4836,"autorefresh":false,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Live-Patching/15-SP3/ppc64le/product/","name":"SLE-Module-Live-Patching15-SP3-Pool","installer_updates":false,"description":"SLE-Module-Live-Patching15-SP3-Pool for sle-15-ppc64le"},{"installer_updates":false,"name":"SLE-Module-Live-Patching15-SP3-Debuginfo-Pool","description":"SLE-Module-Live-Patching15-SP3-Debuginfo-Pool for sle-15-ppc64le","enabled":false,"id":4837,"distro_target":"sle-15-ppc64le","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Live-Patching/15-SP3/ppc64le/product_debug/"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Live-Patching/15-SP3/ppc64le/product_source/","distro_target":"sle-15-ppc64le","autorefresh":false,"id":4838,"enabled":false,"description":"SLE-Module-Live-Patching15-SP3-Source-Pool for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-Live-Patching15-SP3-Source-Pool"}],"predecessor_ids":[1735,1827,1983]},{"description":"

SUSE Linux Enterprise Live Patching provides packages to update critical components in SUSE Linux Enterprise. With SUSE Linux Enterprise Live Patching, you can perform critical patching without shutting down your system, reducing the need for planned downtime and increasing service availability.

","shortname":"Live-Patching","free":false,"arch":"s390x","eula_url":"","repositories":[{"autorefresh":true,"distro_target":"sle-15-s390x","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Live-Patching/15-SP3/s390x/update/","enabled":true,"id":4839,"description":"SLE-Module-Live-Patching15-SP3-Updates for sle-15-s390x","name":"SLE-Module-Live-Patching15-SP3-Updates","installer_updates":false},{"installer_updates":false,"name":"SLE-Module-Live-Patching15-SP3-Debuginfo-Updates","description":"SLE-Module-Live-Patching15-SP3-Debuginfo-Updates for sle-15-s390x","id":4840,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Live-Patching/15-SP3/s390x/update_debug/","distro_target":"sle-15-s390x","autorefresh":true},{"description":"SLE-Module-Live-Patching15-SP3-Pool for sle-15-s390x","installer_updates":false,"name":"SLE-Module-Live-Patching15-SP3-Pool","distro_target":"sle-15-s390x","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Live-Patching/15-SP3/s390x/product/","enabled":true,"id":4841},{"name":"SLE-Module-Live-Patching15-SP3-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-Live-Patching15-SP3-Debuginfo-Pool for sle-15-s390x","id":4842,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Live-Patching/15-SP3/s390x/product_debug/","autorefresh":false,"distro_target":"sle-15-s390x"},{"enabled":false,"id":4843,"distro_target":"sle-15-s390x","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Live-Patching/15-SP3/s390x/product_source/","installer_updates":false,"name":"SLE-Module-Live-Patching15-SP3-Source-Pool","description":"SLE-Module-Live-Patching15-SP3-Source-Pool for sle-15-s390x"}],"online_predecessor_ids":[2081],"product_class":"SLE-LP-Z","predecessor_ids":[2081],"cpe":"cpe:/o:suse:sle-module-live-patching:15:sp3","product_type":"extension","version":"15.3","recommended":false,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Live Patching 15 SP3 s390x","former_identifier":"sle-module-live-patching","release_type":null,"name":"SUSE Linux Enterprise Live Patching","offline_predecessor_ids":[2079,2080],"friendly_version":"15 SP3","release_stage":"released","id":2186,"identifier":"sle-module-live-patching","extensions":[]},{"online_predecessor_ids":[1736,1828,1984],"repositories":[{"name":"SLE-Module-Live-Patching15-SP3-Updates","installer_updates":false,"description":"SLE-Module-Live-Patching15-SP3-Updates for sle-15-x86_64","enabled":true,"id":4844,"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Live-Patching/15-SP3/x86_64/update/"},{"id":4845,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Live-Patching/15-SP3/x86_64/update_debug/","autorefresh":true,"distro_target":"sle-15-x86_64","name":"SLE-Module-Live-Patching15-SP3-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-Live-Patching15-SP3-Debuginfo-Updates for sle-15-x86_64"},{"enabled":true,"id":4846,"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Live-Patching/15-SP3/x86_64/product/","installer_updates":false,"name":"SLE-Module-Live-Patching15-SP3-Pool","description":"SLE-Module-Live-Patching15-SP3-Pool for sle-15-x86_64"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Live-Patching/15-SP3/x86_64/product_debug/","autorefresh":false,"distro_target":"sle-15-x86_64","id":4847,"enabled":false,"description":"SLE-Module-Live-Patching15-SP3-Debuginfo-Pool for sle-15-x86_64","name":"SLE-Module-Live-Patching15-SP3-Debuginfo-Pool","installer_updates":false},{"description":"SLE-Module-Live-Patching15-SP3-Source-Pool for sle-15-x86_64","name":"SLE-Module-Live-Patching15-SP3-Source-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Live-Patching/15-SP3/x86_64/product_source/","autorefresh":false,"distro_target":"sle-15-x86_64","id":4848,"enabled":false}],"product_class":"SLE-LP","predecessor_ids":[1736,1828,1984],"cpe":"cpe:/o:suse:sle-module-live-patching:15:sp3","product_type":"extension","description":"

SUSE Linux Enterprise Live Patching provides packages to update critical components in SUSE Linux Enterprise. With SUSE Linux Enterprise Live Patching, you can perform critical patching without shutting down your system, reducing the need for planned downtime and increasing service availability.

","shortname":"Live-Patching","free":false,"arch":"x86_64","eula_url":"","friendly_version":"15 SP3","identifier":"sle-module-live-patching","release_stage":"released","id":2187,"extensions":[],"version":"15.3","recommended":false,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Live Patching 15 SP3 x86_64","former_identifier":"sle-module-live-patching","release_type":null,"name":"SUSE Linux Enterprise Live Patching","offline_predecessor_ids":[1536,1757,1888]},{"arch":"aarch64","eula_url":"","description":"SUSE Package Hub is a free of charge module providing access to community maintained packages built to run on SUSE Linux Enterprise Server. Built from the same sources used in the openSUSE distributions, these quality packages provide additional software to what is found in the SUSE Linux Enterprise Server product. Packages from the Package Hub are delivered without L3 support from SUSE. General updates and fixes to the packages in SUSE Package Hub are provided by the openSUSE community based on their discretion, though SUSE will monitor and ensure that any known critical security issues will be addressed. Packages in the Package Hub are approved by SUSE for use with SUSE Linux Enterprise Server 15-SP3 and to not interfere with the supportability of SUSE Linux Enterprise Server, its modules and extensions. For more information about SUSE Package Hub please visit https://packagehub.suse.com.","shortname":"SUSE-PackageHub-15","free":true,"cpe":"cpe:/o:suse:packagehub:15:sp3","product_type":"module","product_class":"MODULE","online_predecessor_ids":[1740,1868,1947],"repositories":[{"installer_updates":false,"name":"SUSE-PackageHub-15-SP3-Backports-Pool","description":"SUSE-PackageHub-15-SP3-Backports-Pool for sle-15-aarch64","id":4849,"enabled":true,"url":"https://updates.suse.com/SUSE/Backports/SLE-15-SP3_aarch64/standard/","distro_target":"sle-15-aarch64","autorefresh":false},{"installer_updates":false,"name":"SUSE-PackageHub-15-SP3-Backports-Debuginfo","description":"SUSE-PackageHub-15-SP3-Backports-Debuginfo for sle-15-aarch64","enabled":false,"id":4850,"distro_target":"sle-15-aarch64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Backports/SLE-15-SP3_aarch64/standard_debug/"},{"installer_updates":false,"name":"SLE-Module-Packagehub-Subpackages15-SP3-Updates","description":"SLE-Module-Packagehub-Subpackages15-SP3-Updates for sle-15-aarch64","enabled":true,"id":4851,"distro_target":"sle-15-aarch64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP3/aarch64/update/"},{"installer_updates":false,"name":"SLE-Module-Packagehub-Subpackages15-SP3-Debuginfo-Updates","description":"SLE-Module-Packagehub-Subpackages15-SP3-Debuginfo-Updates for sle-15-aarch64","enabled":false,"id":4852,"distro_target":"sle-15-aarch64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP3/aarch64/update_debug/"},{"description":"SUSE-PackageHub-15-SP3-Pool for sle-15-aarch64","installer_updates":false,"name":"SUSE-PackageHub-15-SP3-Pool","distro_target":"sle-15-aarch64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Backports/SLE-15-SP3_aarch64/product/","enabled":true,"id":4853},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP3/aarch64/product/","distro_target":"sle-15-aarch64","autorefresh":false,"id":4854,"enabled":true,"description":"SLE-Module-Packagehub-Subpackages15-SP3-Pool for sle-15-aarch64","installer_updates":false,"name":"SLE-Module-Packagehub-Subpackages15-SP3-Pool"},{"name":"SLE-Module-Packagehub-Subpackages15-SP3-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-Packagehub-Subpackages15-SP3-Debuginfo-Pool for sle-15-aarch64","id":4855,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP3/aarch64/product_debug/","autorefresh":false,"distro_target":"sle-15-aarch64"},{"id":4856,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP3/aarch64/product_source/","autorefresh":false,"distro_target":"sle-15-aarch64","name":"SLE-Module-Packagehub-Subpackages15-SP3-Source-Pool","installer_updates":false,"description":"SLE-Module-Packagehub-Subpackages15-SP3-Source-Pool for sle-15-aarch64"}],"predecessor_ids":[1740,1868,1947],"migration_extra":false,"friendly_name":"SUSE Package Hub 15 SP3 aarch64","release_type":null,"former_identifier":"PackageHub","name":"SUSE Package Hub","offline_predecessor_ids":[1532,1810,1912],"version":"15.3","recommended":false,"release_stage":"released","id":2188,"identifier":"PackageHub","extensions":[],"friendly_version":"15 SP3"},{"recommended":false,"version":"15.3","name":"SUSE Package Hub","offline_predecessor_ids":[1531,1811,1913],"migration_extra":false,"friendly_name":"SUSE Package Hub 15 SP3 ppc64le","former_identifier":"PackageHub","release_type":null,"friendly_version":"15 SP3","extensions":[],"identifier":"PackageHub","release_stage":"released","id":2189,"shortname":"SUSE-PackageHub-15","description":"SUSE Package Hub is a free of charge module providing access to community maintained packages built to run on SUSE Linux Enterprise Server. Built from the same sources used in the openSUSE distributions, these quality packages provide additional software to what is found in the SUSE Linux Enterprise Server product. Packages from the Package Hub are delivered without L3 support from SUSE. General updates and fixes to the packages in SUSE Package Hub are provided by the openSUSE community based on their discretion, though SUSE will monitor and ensure that any known critical security issues will be addressed. Packages in the Package Hub are approved by SUSE for use with SUSE Linux Enterprise Server 15-SP3 and to not interfere with the supportability of SUSE Linux Enterprise Server, its modules and extensions. For more information about SUSE Package Hub please visit https://packagehub.suse.com.","free":true,"eula_url":"","arch":"ppc64le","predecessor_ids":[1741,1869,1948],"online_predecessor_ids":[1741,1869,1948],"product_class":"MODULE","repositories":[{"id":4857,"enabled":true,"url":"https://updates.suse.com/SUSE/Backports/SLE-15-SP3_ppc64le/standard/","distro_target":"sle-15-ppc64le","autorefresh":false,"installer_updates":false,"name":"SUSE-PackageHub-15-SP3-Backports-Pool","description":"SUSE-PackageHub-15-SP3-Backports-Pool for sle-15-ppc64le"},{"id":4858,"enabled":false,"url":"https://updates.suse.com/SUSE/Backports/SLE-15-SP3_ppc64le/standard_debug/","distro_target":"sle-15-ppc64le","autorefresh":true,"installer_updates":false,"name":"SUSE-PackageHub-15-SP3-Backports-Debuginfo","description":"SUSE-PackageHub-15-SP3-Backports-Debuginfo for sle-15-ppc64le"},{"description":"SLE-Module-Packagehub-Subpackages15-SP3-Updates for sle-15-ppc64le","name":"SLE-Module-Packagehub-Subpackages15-SP3-Updates","installer_updates":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP3/ppc64le/update/","autorefresh":true,"distro_target":"sle-15-ppc64le","id":4859,"enabled":true},{"name":"SLE-Module-Packagehub-Subpackages15-SP3-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-Packagehub-Subpackages15-SP3-Debuginfo-Updates for sle-15-ppc64le","enabled":false,"id":4860,"autorefresh":true,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP3/ppc64le/update_debug/"},{"autorefresh":false,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Backports/SLE-15-SP3_ppc64le/product/","enabled":true,"id":4861,"description":"SUSE-PackageHub-15-SP3-Pool for sle-15-ppc64le","name":"SUSE-PackageHub-15-SP3-Pool","installer_updates":false},{"id":4862,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP3/ppc64le/product/","distro_target":"sle-15-ppc64le","autorefresh":false,"installer_updates":false,"name":"SLE-Module-Packagehub-Subpackages15-SP3-Pool","description":"SLE-Module-Packagehub-Subpackages15-SP3-Pool for sle-15-ppc64le"},{"installer_updates":false,"name":"SLE-Module-Packagehub-Subpackages15-SP3-Debuginfo-Pool","description":"SLE-Module-Packagehub-Subpackages15-SP3-Debuginfo-Pool for sle-15-ppc64le","enabled":false,"id":4863,"distro_target":"sle-15-ppc64le","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP3/ppc64le/product_debug/"},{"id":4864,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP3/ppc64le/product_source/","distro_target":"sle-15-ppc64le","autorefresh":false,"installer_updates":false,"name":"SLE-Module-Packagehub-Subpackages15-SP3-Source-Pool","description":"SLE-Module-Packagehub-Subpackages15-SP3-Source-Pool for sle-15-ppc64le"}],"cpe":"cpe:/o:suse:packagehub:15:sp3","product_type":"module"},{"arch":"s390x","eula_url":"","description":"SUSE Package Hub is a free of charge module providing access to community maintained packages built to run on SUSE Linux Enterprise Server. Built from the same sources used in the openSUSE distributions, these quality packages provide additional software to what is found in the SUSE Linux Enterprise Server product. Packages from the Package Hub are delivered without L3 support from SUSE. General updates and fixes to the packages in SUSE Package Hub are provided by the openSUSE community based on their discretion, though SUSE will monitor and ensure that any known critical security issues will be addressed. Packages in the Package Hub are approved by SUSE for use with SUSE Linux Enterprise Server 15-SP3 and to not interfere with the supportability of SUSE Linux Enterprise Server, its modules and extensions. For more information about SUSE Package Hub please visit https://packagehub.suse.com.","shortname":"SUSE-PackageHub-15","free":true,"cpe":"cpe:/o:suse:packagehub:15:sp3","product_type":"module","product_class":"MODULE","online_predecessor_ids":[1742,1870,1949],"repositories":[{"description":"SUSE-PackageHub-15-SP3-Backports-Pool for sle-15-s390x","name":"SUSE-PackageHub-15-SP3-Backports-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-15-s390x","url":"https://updates.suse.com/SUSE/Backports/SLE-15-SP3_s390x/standard/","enabled":true,"id":4865},{"autorefresh":true,"distro_target":"sle-15-s390x","url":"https://updates.suse.com/SUSE/Backports/SLE-15-SP3_s390x/standard_debug/","enabled":false,"id":4866,"description":"SUSE-PackageHub-15-SP3-Backports-Debuginfo for sle-15-s390x","name":"SUSE-PackageHub-15-SP3-Backports-Debuginfo","installer_updates":false},{"enabled":true,"id":4867,"autorefresh":true,"distro_target":"sle-15-s390x","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP3/s390x/update/","name":"SLE-Module-Packagehub-Subpackages15-SP3-Updates","installer_updates":false,"description":"SLE-Module-Packagehub-Subpackages15-SP3-Updates for sle-15-s390x"},{"description":"SLE-Module-Packagehub-Subpackages15-SP3-Debuginfo-Updates for sle-15-s390x","installer_updates":false,"name":"SLE-Module-Packagehub-Subpackages15-SP3-Debuginfo-Updates","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP3/s390x/update_debug/","distro_target":"sle-15-s390x","autorefresh":true,"id":4868,"enabled":false},{"installer_updates":false,"name":"SUSE-PackageHub-15-SP3-Pool","description":"SUSE-PackageHub-15-SP3-Pool for sle-15-s390x","enabled":true,"id":4869,"distro_target":"sle-15-s390x","autorefresh":false,"url":"https://updates.suse.com/SUSE/Backports/SLE-15-SP3_s390x/product/"},{"autorefresh":false,"distro_target":"sle-15-s390x","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP3/s390x/product/","enabled":true,"id":4870,"description":"SLE-Module-Packagehub-Subpackages15-SP3-Pool for sle-15-s390x","name":"SLE-Module-Packagehub-Subpackages15-SP3-Pool","installer_updates":false},{"description":"SLE-Module-Packagehub-Subpackages15-SP3-Debuginfo-Pool for sle-15-s390x","installer_updates":false,"name":"SLE-Module-Packagehub-Subpackages15-SP3-Debuginfo-Pool","distro_target":"sle-15-s390x","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP3/s390x/product_debug/","enabled":false,"id":4871},{"installer_updates":false,"name":"SLE-Module-Packagehub-Subpackages15-SP3-Source-Pool","description":"SLE-Module-Packagehub-Subpackages15-SP3-Source-Pool for sle-15-s390x","id":4872,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP3/s390x/product_source/","distro_target":"sle-15-s390x","autorefresh":false}],"predecessor_ids":[1742,1870,1949],"migration_extra":false,"friendly_name":"SUSE Package Hub 15 SP3 s390x","former_identifier":"PackageHub","release_type":null,"name":"SUSE Package Hub","offline_predecessor_ids":[1530,1812,1914],"version":"15.3","recommended":false,"id":2190,"release_stage":"released","identifier":"PackageHub","extensions":[],"friendly_version":"15 SP3"},{"recommended":false,"version":"15.3","name":"SUSE Package Hub","offline_predecessor_ids":[1529,1813,1915],"friendly_name":"SUSE Package Hub 15 SP3 x86_64","migration_extra":false,"release_type":null,"former_identifier":"PackageHub","friendly_version":"15 SP3","extensions":[],"release_stage":"released","id":2191,"identifier":"PackageHub","shortname":"SUSE-PackageHub-15","description":"SUSE Package Hub is a free of charge module providing access to community maintained packages built to run on SUSE Linux Enterprise Server. Built from the same sources used in the openSUSE distributions, these quality packages provide additional software to what is found in the SUSE Linux Enterprise Server product. Packages from the Package Hub are delivered without L3 support from SUSE. General updates and fixes to the packages in SUSE Package Hub are provided by the openSUSE community based on their discretion, though SUSE will monitor and ensure that any known critical security issues will be addressed. Packages in the Package Hub are approved by SUSE for use with SUSE Linux Enterprise Server 15-SP3 and to not interfere with the supportability of SUSE Linux Enterprise Server, its modules and extensions. For more information about SUSE Package Hub please visit https://packagehub.suse.com.","free":true,"eula_url":"","arch":"x86_64","predecessor_ids":[1743,1871,1950],"repositories":[{"installer_updates":false,"name":"SUSE-PackageHub-15-SP3-Backports-Pool","description":"SUSE-PackageHub-15-SP3-Backports-Pool for sle-15-x86_64","enabled":true,"id":4873,"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Backports/SLE-15-SP3_x86_64/standard/"},{"description":"SUSE-PackageHub-15-SP3-Backports-Debuginfo for sle-15-x86_64","name":"SUSE-PackageHub-15-SP3-Backports-Debuginfo","installer_updates":false,"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Backports/SLE-15-SP3_x86_64/standard_debug/","enabled":false,"id":4874},{"description":"SLE-Module-Packagehub-Subpackages15-SP3-Updates for sle-15-x86_64","name":"SLE-Module-Packagehub-Subpackages15-SP3-Updates","installer_updates":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP3/x86_64/update/","autorefresh":true,"distro_target":"sle-15-x86_64","id":4875,"enabled":true},{"description":"SLE-Module-Packagehub-Subpackages15-SP3-Debuginfo-Updates for sle-15-x86_64","name":"SLE-Module-Packagehub-Subpackages15-SP3-Debuginfo-Updates","installer_updates":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP3/x86_64/update_debug/","autorefresh":true,"distro_target":"sle-15-x86_64","id":4876,"enabled":false},{"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Backports/SLE-15-SP3_x86_64/product/","enabled":true,"id":4877,"description":"SUSE-PackageHub-15-SP3-Pool for sle-15-x86_64","installer_updates":false,"name":"SUSE-PackageHub-15-SP3-Pool"},{"description":"SLE-Module-Packagehub-Subpackages15-SP3-Pool for sle-15-x86_64","name":"SLE-Module-Packagehub-Subpackages15-SP3-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP3/x86_64/product/","enabled":true,"id":4878},{"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP3/x86_64/product_debug/","enabled":false,"id":4879,"description":"SLE-Module-Packagehub-Subpackages15-SP3-Debuginfo-Pool for sle-15-x86_64","name":"SLE-Module-Packagehub-Subpackages15-SP3-Debuginfo-Pool","installer_updates":false},{"name":"SLE-Module-Packagehub-Subpackages15-SP3-Source-Pool","installer_updates":false,"description":"SLE-Module-Packagehub-Subpackages15-SP3-Source-Pool for sle-15-x86_64","enabled":false,"id":4880,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP3/x86_64/product_source/"}],"online_predecessor_ids":[1743,1871,1950],"product_class":"MODULE","cpe":"cpe:/o:suse:packagehub:15:sp3","product_type":"module"},{"eula_url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP3/aarch64/product.license/","arch":"aarch64","free":false,"shortname":"SLEHA15-SP3","description":"SUSE Linux High Availability Extension provides mature, industry-leading open-source high-availability clustering technologies that are easy to set up and use. It can be deployed in physical and/or virtual environments, and can cluster physical servers, virtual servers, or any combination of the two to suit your business’ needs.","product_type":"extension","cpe":"cpe:/o:suse:sle-ha:15:sp3","predecessor_ids":[1608,1782,1956],"repositories":[{"installer_updates":false,"name":"SLE-Product-HA15-SP3-Updates","description":"SLE-Product-HA15-SP3-Updates for sle-15-aarch64","id":4881,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-HA/15-SP3/aarch64/update/","distro_target":"sle-15-aarch64","autorefresh":true},{"name":"SLE-Product-HA15-SP3-Debuginfo-Updates","installer_updates":false,"description":"SLE-Product-HA15-SP3-Debuginfo-Updates for sle-15-aarch64","id":4882,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-HA/15-SP3/aarch64/update_debug/","autorefresh":true,"distro_target":"sle-15-aarch64"},{"name":"SLE-Product-HA15-SP3-Pool","installer_updates":false,"description":"SLE-Product-HA15-SP3-Pool for sle-15-aarch64","id":4883,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP3/aarch64/product/","autorefresh":false,"distro_target":"sle-15-aarch64"},{"distro_target":"sle-15-aarch64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP3/aarch64/product_debug/","enabled":false,"id":4884,"description":"SLE-Product-HA15-SP3-Debuginfo-Pool for sle-15-aarch64","installer_updates":false,"name":"SLE-Product-HA15-SP3-Debuginfo-Pool"},{"installer_updates":false,"name":"SLE-Product-HA15-SP3-Source-Pool","description":"SLE-Product-HA15-SP3-Source-Pool for sle-15-aarch64","enabled":false,"id":4885,"distro_target":"sle-15-aarch64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP3/aarch64/product_source/"}],"online_predecessor_ids":[1608,1782,1956],"product_class":"SLE-HAE-ARM64","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise High Availability Extension","former_identifier":"sle-ha","release_type":null,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise High Availability Extension 15 SP3 aarch64","recommended":false,"version":"15.3","extensions":[],"release_stage":"released","id":2192,"identifier":"sle-ha","friendly_version":"15 SP3"},{"migration_extra":false,"friendly_name":"SUSE Linux Enterprise High Availability Extension 15 SP3 ppc64le","release_type":null,"former_identifier":"sle-ha","name":"SUSE Linux Enterprise High Availability Extension","offline_predecessor_ids":[1433,1635,1882],"version":"15.3","recommended":false,"identifier":"sle-ha","release_stage":"released","id":2193,"extensions":[],"friendly_version":"15 SP3","arch":"ppc64le","eula_url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP3/ppc64le/product.license/","shortname":"SLEHA15-SP3","description":"SUSE Linux High Availability Extension provides mature, industry-leading open-source high-availability clustering technologies that are easy to set up and use. It can be deployed in physical and/or virtual environments, and can cluster physical servers, virtual servers, or any combination of the two to suit your business’ needs.","free":false,"cpe":"cpe:/o:suse:sle-ha:15:sp3","product_type":"extension","product_class":"SLE-HAE-PPC","online_predecessor_ids":[1606,1783,1957],"repositories":[{"id":4886,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-HA/15-SP3/ppc64le/update/","distro_target":"sle-15-ppc64le","autorefresh":true,"installer_updates":false,"name":"SLE-Product-HA15-SP3-Updates","description":"SLE-Product-HA15-SP3-Updates for sle-15-ppc64le"},{"description":"SLE-Product-HA15-SP3-Debuginfo-Updates for sle-15-ppc64le","installer_updates":false,"name":"SLE-Product-HA15-SP3-Debuginfo-Updates","url":"https://updates.suse.com/SUSE/Updates/SLE-Product-HA/15-SP3/ppc64le/update_debug/","distro_target":"sle-15-ppc64le","autorefresh":true,"id":4887,"enabled":false},{"name":"SLE-Product-HA15-SP3-Pool","installer_updates":false,"description":"SLE-Product-HA15-SP3-Pool for sle-15-ppc64le","id":4888,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP3/ppc64le/product/","autorefresh":false,"distro_target":"sle-15-ppc64le"},{"id":4889,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP3/ppc64le/product_debug/","distro_target":"sle-15-ppc64le","autorefresh":false,"installer_updates":false,"name":"SLE-Product-HA15-SP3-Debuginfo-Pool","description":"SLE-Product-HA15-SP3-Debuginfo-Pool for sle-15-ppc64le"},{"id":4890,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP3/ppc64le/product_source/","autorefresh":false,"distro_target":"sle-15-ppc64le","name":"SLE-Product-HA15-SP3-Source-Pool","installer_updates":false,"description":"SLE-Product-HA15-SP3-Source-Pool for sle-15-ppc64le"}],"predecessor_ids":[1606,1783,1957]},{"cpe":"cpe:/o:suse:sle-ha:15:sp3","product_type":"extension","repositories":[{"description":"SLE-Product-HA15-SP3-Updates for sle-15-s390x","name":"SLE-Product-HA15-SP3-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-15-s390x","url":"https://updates.suse.com/SUSE/Updates/SLE-Product-HA/15-SP3/s390x/update/","enabled":true,"id":4891},{"description":"SLE-Product-HA15-SP3-Debuginfo-Updates for sle-15-s390x","installer_updates":false,"name":"SLE-Product-HA15-SP3-Debuginfo-Updates","url":"https://updates.suse.com/SUSE/Updates/SLE-Product-HA/15-SP3/s390x/update_debug/","distro_target":"sle-15-s390x","autorefresh":true,"id":4892,"enabled":false},{"url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP3/s390x/product/","distro_target":"sle-15-s390x","autorefresh":false,"id":4893,"enabled":true,"description":"SLE-Product-HA15-SP3-Pool for sle-15-s390x","installer_updates":false,"name":"SLE-Product-HA15-SP3-Pool"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP3/s390x/product_debug/","distro_target":"sle-15-s390x","autorefresh":false,"id":4894,"enabled":false,"description":"SLE-Product-HA15-SP3-Debuginfo-Pool for sle-15-s390x","installer_updates":false,"name":"SLE-Product-HA15-SP3-Debuginfo-Pool"},{"name":"SLE-Product-HA15-SP3-Source-Pool","installer_updates":false,"description":"SLE-Product-HA15-SP3-Source-Pool for sle-15-s390x","enabled":false,"id":4895,"autorefresh":false,"distro_target":"sle-15-s390x","url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP3/s390x/product_source/"}],"online_predecessor_ids":[1605,1784,1958],"product_class":"SLE-HAE-Z","predecessor_ids":[1605,1784,1958],"arch":"s390x","eula_url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP3/s390x/product.license/","shortname":"SLEHA15-SP3","description":"SUSE Linux High Availability Extension provides mature, industry-leading open-source high-availability clustering technologies that are easy to set up and use. It can be deployed in physical and/or virtual environments, and can cluster physical servers, virtual servers, or any combination of the two to suit your business’ needs.","free":false,"release_stage":"released","id":2194,"identifier":"sle-ha","extensions":[],"friendly_version":"15 SP3","migration_extra":false,"friendly_name":"SUSE Linux Enterprise High Availability Extension 15 SP3 s390x","release_type":null,"former_identifier":"sle-ha","name":"SUSE Linux Enterprise High Availability Extension","offline_predecessor_ids":[1080,1082,1084,1086,1109,1110,1257,1287,1434,1436,1636,1638,1883,1885],"version":"15.3","recommended":false},{"eula_url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP3/x86_64/product.license/","arch":"x86_64","free":false,"description":"SUSE Linux High Availability Extension provides mature, industry-leading open-source high-availability clustering technologies that are easy to set up and use. It can be deployed in physical and/or virtual environments, and can cluster physical servers, virtual servers, or any combination of the two to suit your business’ needs.","shortname":"SLEHA15-SP3","product_type":"extension","cpe":"cpe:/o:suse:sle-ha:15:sp3","predecessor_ids":[1582,1785,1959],"online_predecessor_ids":[1582,1785,1959],"repositories":[{"name":"SLE-Product-HA15-SP3-Updates","installer_updates":false,"description":"SLE-Product-HA15-SP3-Updates for sle-15-x86_64","id":4896,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-HA/15-SP3/x86_64/update/","autorefresh":true,"distro_target":"sle-15-x86_64"},{"description":"SLE-Product-HA15-SP3-Debuginfo-Updates for sle-15-x86_64","installer_updates":false,"name":"SLE-Product-HA15-SP3-Debuginfo-Updates","url":"https://updates.suse.com/SUSE/Updates/SLE-Product-HA/15-SP3/x86_64/update_debug/","distro_target":"sle-15-x86_64","autorefresh":true,"id":4897,"enabled":false},{"installer_updates":false,"name":"SLE-Product-HA15-SP3-Pool","description":"SLE-Product-HA15-SP3-Pool for sle-15-x86_64","id":4898,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP3/x86_64/product/","distro_target":"sle-15-x86_64","autorefresh":false},{"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP3/x86_64/product_debug/","enabled":false,"id":4899,"description":"SLE-Product-HA15-SP3-Debuginfo-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Product-HA15-SP3-Debuginfo-Pool"},{"id":4900,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP3/x86_64/product_source/","distro_target":"sle-15-x86_64","autorefresh":false,"installer_updates":false,"name":"SLE-Product-HA15-SP3-Source-Pool","description":"SLE-Product-HA15-SP3-Source-Pool for sle-15-x86_64"}],"product_class":"SLE-HAE-X86","offline_predecessor_ids":[958,961,967,971,1101,1107,1256,1286,1432,1435,1634,1637,1884,1886],"name":"SUSE Linux Enterprise High Availability Extension","release_type":null,"former_identifier":"sle-ha","friendly_name":"SUSE Linux Enterprise High Availability Extension 15 SP3 x86_64","migration_extra":false,"recommended":false,"version":"15.3","extensions":[],"identifier":"sle-ha","release_stage":"released","id":2195,"friendly_version":"15 SP3"},{"product_type":"extension","cpe":"cpe:/o:suse:sle-we:15:sp3","online_predecessor_ids":[1583,1781,1999],"repositories":[{"url":"https://download.nvidia.com/suse/sle15sp3/","distro_target":null,"autorefresh":true,"id":4577,"enabled":true,"description":"SLE-15-SP3-Desktop-NVIDIA-Driver","installer_updates":false,"name":"SLE-15-SP3-Desktop-NVIDIA-Driver"},{"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-WE/15-SP3/x86_64/update/","distro_target":"sle-15-x86_64","autorefresh":true,"id":4901,"enabled":true,"description":"SLE-Product-WE15-SP3-Updates for sle-15-x86_64","installer_updates":false,"name":"SLE-Product-WE15-SP3-Updates"},{"name":"SLE-Product-WE15-SP3-Debuginfo-Updates","installer_updates":false,"description":"SLE-Product-WE15-SP3-Debuginfo-Updates for sle-15-x86_64","id":4902,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-WE/15-SP3/x86_64/update_debug/","autorefresh":true,"distro_target":"sle-15-x86_64"},{"installer_updates":false,"name":"SLE-Product-WE15-SP3-Pool","description":"SLE-Product-WE15-SP3-Pool for sle-15-x86_64","id":4903,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-WE/15-SP3/x86_64/product/","distro_target":"sle-15-x86_64","autorefresh":false},{"enabled":false,"id":4904,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Product-WE/15-SP3/x86_64/product_debug/","name":"SLE-Product-WE15-SP3-Debuginfo-Pool","installer_updates":false,"description":"SLE-Product-WE15-SP3-Debuginfo-Pool for sle-15-x86_64"},{"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-WE/15-SP3/x86_64/product_source/","enabled":false,"id":4905,"description":"SLE-Product-WE15-SP3-Source-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Product-WE15-SP3-Source-Pool"}],"product_class":"SLE-WE","predecessor_ids":[1583,1781,1999],"arch":"x86_64","eula_url":"https://updates.suse.com/SUSE/Products/SLE-Product-WE/15-SP3/x86_64/product.license/","free":false,"shortname":"SLEWE15-SP3","description":"SUSE Linux Enterprise Workstation Extension adds additional functionality to a base SUSE Linux Enterprise installation. The Workstation Extension offers additional desktop applications (office suite, email client, graphical editor, multimedia tools) and libraries. Workstation Extension is enabled and installed by default on SUSE Linux Enterprise Desktop installation. Adding the Workstation Extension to a SUSE Linux Enterprise Server installation allows to seamlessly combine both products to create a full featured server workstation.","identifier":"sle-we","release_stage":"released","id":2196,"extensions":[],"friendly_version":"15 SP3","release_type":null,"former_identifier":"sle-we","friendly_name":"SUSE Linux Enterprise Workstation Extension 15 SP3 x86_64","migration_extra":false,"offline_predecessor_ids":[1431,1639,1893],"name":"SUSE Linux Enterprise Workstation Extension","version":"15.3","recommended":false},{"friendly_version":"15 SP3","identifier":"sle-module-sap-applications","release_stage":"released","id":2197,"extensions":[],"version":"15.3","recommended":false,"friendly_name":"SAP Applications Module 15 SP3 ppc64le","migration_extra":false,"former_identifier":"sle-module-sap-applications","release_type":null,"name":"SAP Applications Module","offline_predecessor_ids":[],"online_predecessor_ids":[1726,1786,1993],"product_class":"MODULE","repositories":[{"installer_updates":false,"name":"SLE-Module-SAP-Applications15-SP3-Updates","description":"SLE-Module-SAP-Applications15-SP3-Updates for sle-15-ppc64le","enabled":true,"id":4906,"distro_target":"sle-15-ppc64le","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-SAP-Applications/15-SP3/ppc64le/update/"},{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-SAP-Applications/15-SP3/ppc64le/update_debug/","distro_target":"sle-15-ppc64le","autorefresh":true,"id":4907,"enabled":false,"description":"SLE-Module-SAP-Applications15-SP3-Debuginfo-Updates for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-SAP-Applications15-SP3-Debuginfo-Updates"},{"description":"SLE-Module-SAP-Applications15-SP3-Pool for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-SAP-Applications15-SP3-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-SAP-Applications/15-SP3/ppc64le/product/","distro_target":"sle-15-ppc64le","autorefresh":false,"id":4908,"enabled":true},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-SAP-Applications/15-SP3/ppc64le/product_debug/","autorefresh":false,"distro_target":"sle-15-ppc64le","id":4909,"enabled":false,"description":"SLE-Module-SAP-Applications15-SP3-Debuginfo-Pool for sle-15-ppc64le","name":"SLE-Module-SAP-Applications15-SP3-Debuginfo-Pool","installer_updates":false},{"id":4910,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-SAP-Applications/15-SP3/ppc64le/product_source/","autorefresh":false,"distro_target":"sle-15-ppc64le","name":"SLE-Module-SAP-Applications15-SP3-Source-Pool","installer_updates":false,"description":"SLE-Module-SAP-Applications15-SP3-Source-Pool for sle-15-ppc64le"}],"predecessor_ids":[1726,1786,1993],"cpe":"cpe:/o:suse:sle-module-sap-applications:15:sp3","product_type":"module","description":"

The SAP Applications module contains the specialized tools for SAP Applications administration.

The module is maintained and supported by the SUSE Linux Enterprise Server for SAP Applications product subscription.

","shortname":"SAP-Applications-Module","free":true,"arch":"ppc64le","eula_url":""},{"friendly_version":"15 SP3","extensions":[],"release_stage":"released","identifier":"sle-module-sap-applications","id":2198,"recommended":false,"version":"15.3","name":"SAP Applications Module","offline_predecessor_ids":[],"friendly_name":"SAP Applications Module 15 SP3 x86_64","migration_extra":false,"former_identifier":"sle-module-sap-applications","release_type":null,"predecessor_ids":[1727,1787,1994],"online_predecessor_ids":[1727,1787,1994],"repositories":[{"installer_updates":false,"name":"SLE-Module-SAP-Applications15-SP3-Updates","description":"SLE-Module-SAP-Applications15-SP3-Updates for sle-15-x86_64","id":4911,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-SAP-Applications/15-SP3/x86_64/update/","distro_target":"sle-15-x86_64","autorefresh":true},{"enabled":false,"id":4912,"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-SAP-Applications/15-SP3/x86_64/update_debug/","name":"SLE-Module-SAP-Applications15-SP3-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-SAP-Applications15-SP3-Debuginfo-Updates for sle-15-x86_64"},{"id":4913,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-SAP-Applications/15-SP3/x86_64/product/","distro_target":"sle-15-x86_64","autorefresh":false,"installer_updates":false,"name":"SLE-Module-SAP-Applications15-SP3-Pool","description":"SLE-Module-SAP-Applications15-SP3-Pool for sle-15-x86_64"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-SAP-Applications/15-SP3/x86_64/product_debug/","distro_target":"sle-15-x86_64","autorefresh":false,"id":4914,"enabled":false,"description":"SLE-Module-SAP-Applications15-SP3-Debuginfo-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-SAP-Applications15-SP3-Debuginfo-Pool"},{"enabled":false,"id":4915,"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-SAP-Applications/15-SP3/x86_64/product_source/","installer_updates":false,"name":"SLE-Module-SAP-Applications15-SP3-Source-Pool","description":"SLE-Module-SAP-Applications15-SP3-Source-Pool for sle-15-x86_64"}],"product_class":"MODULE","cpe":"cpe:/o:suse:sle-module-sap-applications:15:sp3","product_type":"module","description":"

The SAP Applications module contains the specialized tools for SAP Applications administration.

The module is maintained and supported by the SUSE Linux Enterprise Server for SAP Applications product subscription.

","shortname":"SAP-Applications-Module","free":true,"eula_url":"","arch":"x86_64"},{"arch":"aarch64","eula_url":"","free":false,"shortname":"SUSE CaaS Platform 4.5","description":"SUSE CaaS Platform is a Kubernetes-based container management solution used by application development and DevOps teams to more easily and efficiently deploy and manage containerized applications and services. Enterprises use SUSE CaaS Platform to reduce application delivery cycle times and improve business agility. Focused on providing an exceptional platform operator experience, SUSE CaaS Platform delivers Kubernetes innovations in a complete, enterprise grade solution that enables IT to deliver the power of Kubernetes to users more quickly, consistently, and cost-effectively.","product_type":"extension","cpe":"cpe:/o:suse:caasp:4.5","product_class":"CAASP_ARM64","online_predecessor_ids":[],"repositories":[{"description":"SUSE-CAASP-4.5-Updates for sle-15-aarch64","installer_updates":false,"name":"SUSE-CAASP-4.5-Updates","distro_target":"sle-15-aarch64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SUSE-CAASP/4.5/aarch64/update/","enabled":true,"id":4916},{"description":"SUSE-CAASP-4.5-Debuginfo-Updates for sle-15-aarch64","name":"SUSE-CAASP-4.5-Debuginfo-Updates","installer_updates":false,"url":"https://updates.suse.com/SUSE/Updates/SUSE-CAASP/4.5/aarch64/update_debug/","autorefresh":true,"distro_target":"sle-15-aarch64","id":4917,"enabled":false},{"enabled":true,"id":4918,"distro_target":"sle-15-aarch64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SUSE-CAASP/4.5/aarch64/product/","installer_updates":false,"name":"SUSE-CAASP-4.5-Pool","description":"SUSE-CAASP-4.5-Pool for sle-15-aarch64"},{"enabled":false,"id":4919,"distro_target":"sle-15-aarch64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SUSE-CAASP/4.5/aarch64/product_debug/","installer_updates":false,"name":"SUSE-CAASP-4.5-Debuginfo-Pool","description":"SUSE-CAASP-4.5-Debuginfo-Pool for sle-15-aarch64"},{"description":"SUSE-CAASP-4.5-Source-Pool for sle-15-aarch64","installer_updates":false,"name":"SUSE-CAASP-4.5-Source-Pool","distro_target":"sle-15-aarch64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SUSE-CAASP/4.5/aarch64/product_source/","enabled":false,"id":4920}],"predecessor_ids":[],"former_identifier":"caasp","release_type":null,"migration_extra":false,"friendly_name":"SUSE CaaS Platform 4.5 aarch64","offline_predecessor_ids":[],"name":"SUSE CaaS Platform","version":"4.5","recommended":false,"identifier":"caasp","release_stage":"released","id":2199,"extensions":[],"friendly_version":"4.5"},{"free":false,"description":"SUSE CaaS Platform is a Kubernetes-based container management solution used by application development and DevOps teams to more easily and efficiently deploy and manage containerized applications and services. Enterprises use SUSE CaaS Platform to reduce application delivery cycle times and improve business agility. Focused on providing an exceptional platform operator experience, SUSE CaaS Platform delivers Kubernetes innovations in a complete, enterprise grade solution that enables IT to deliver the power of Kubernetes to users more quickly, consistently, and cost-effectively.","shortname":"SUSE CaaS Platform 4.5","arch":"x86_64","eula_url":"","online_predecessor_ids":[1863],"repositories":[{"enabled":true,"id":4921,"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SUSE-CAASP/4.5/x86_64/update/","name":"SUSE-CAASP-4.5-Updates","installer_updates":false,"description":"SUSE-CAASP-4.5-Updates for sle-15-x86_64"},{"description":"SUSE-CAASP-4.5-Debuginfo-Updates for sle-15-x86_64","installer_updates":false,"name":"SUSE-CAASP-4.5-Debuginfo-Updates","url":"https://updates.suse.com/SUSE/Updates/SUSE-CAASP/4.5/x86_64/update_debug/","distro_target":"sle-15-x86_64","autorefresh":true,"id":4922,"enabled":false},{"url":"https://updates.suse.com/SUSE/Products/SUSE-CAASP/4.5/x86_64/product/","distro_target":"sle-15-x86_64","autorefresh":false,"id":4923,"enabled":true,"description":"SUSE-CAASP-4.5-Pool for sle-15-x86_64","installer_updates":false,"name":"SUSE-CAASP-4.5-Pool"},{"installer_updates":false,"name":"SUSE-CAASP-4.5-Debuginfo-Pool","description":"SUSE-CAASP-4.5-Debuginfo-Pool for sle-15-x86_64","enabled":false,"id":4924,"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SUSE-CAASP/4.5/x86_64/product_debug/"},{"id":4925,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SUSE-CAASP/4.5/x86_64/product_source/","distro_target":"sle-15-x86_64","autorefresh":false,"installer_updates":false,"name":"SUSE-CAASP-4.5-Source-Pool","description":"SUSE-CAASP-4.5-Source-Pool for sle-15-x86_64"}],"product_class":"CAASP_X86","predecessor_ids":[1863],"product_type":"extension","cpe":"cpe:/o:suse:caasp:4.5","version":"4.5","recommended":false,"release_type":null,"former_identifier":"caasp","migration_extra":false,"friendly_name":"SUSE CaaS Platform 4.5 x86_64","offline_predecessor_ids":[],"name":"SUSE CaaS Platform","friendly_version":"4.5","release_stage":"released","identifier":"caasp","id":2200,"extensions":[]},{"arch":"aarch64","eula_url":"","shortname":"SUSE Linux Enterprise Micro","description":"SUSE Linux Enterprise Micro 5.0","free":false,"cpe":"cpe:/o:suse:suse-microos:5.0","product_type":"base","online_predecessor_ids":[],"product_class":"MICROOS-ARM64","repositories":[{"id":4931,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SUSE-MicroOS/5.0/aarch64/update/","distro_target":"sle-15-aarch64","autorefresh":true,"installer_updates":false,"name":"SUSE-MicroOS-5.0-Updates","description":"SUSE-MicroOS-5.0-Updates for sle-15-aarch64"},{"installer_updates":false,"name":"SUSE-MicroOS-5.0-Debuginfo-Updates","description":"SUSE-MicroOS-5.0-Debuginfo-Updates for sle-15-aarch64","enabled":false,"id":4932,"distro_target":"sle-15-aarch64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SUSE-MicroOS/5.0/aarch64/update_debug/"},{"installer_updates":false,"name":"SUSE-MicroOS-5.0-Pool","description":"SUSE-MicroOS-5.0-Pool for sle-15-aarch64","id":4933,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SUSE-MicroOS/5.0/aarch64/product/","distro_target":"sle-15-aarch64","autorefresh":false},{"id":4934,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SUSE-MicroOS/5.0/aarch64/product_debug/","distro_target":"sle-15-aarch64","autorefresh":false,"installer_updates":false,"name":"SUSE-MicroOS-5.0-Debuginfo-Pool","description":"SUSE-MicroOS-5.0-Debuginfo-Pool for sle-15-aarch64"},{"description":"SUSE-MicroOS-5.0-Source-Pool for sle-15-aarch64","name":"SUSE-MicroOS-5.0-Source-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Products/SUSE-MicroOS/5.0/aarch64/product_source/","enabled":false,"id":4935}],"predecessor_ids":[],"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Micro 5.0 aarch64","former_identifier":"SUSE-MicroOS","release_type":null,"name":"SUSE Linux Enterprise Micro","offline_predecessor_ids":[],"version":"5.0","recommended":false,"release_stage":"released","identifier":"SUSE-MicroOS","id":2201,"extensions":[],"friendly_version":"5.0"},{"recommended":false,"version":"5.0","name":"SUSE Linux Enterprise Micro","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Micro 5.0 x86_64","release_type":null,"former_identifier":"SUSE-MicroOS","friendly_version":"5.0","extensions":[],"release_stage":"released","identifier":"SUSE-MicroOS","id":2202,"description":"SUSE Linux Enterprise Micro 5.0","shortname":"SUSE Linux Enterprise Micro","free":false,"eula_url":"","arch":"x86_64","predecessor_ids":[],"online_predecessor_ids":[],"repositories":[{"description":"SUSE-MicroOS-5.0-Updates for sle-15-x86_64","installer_updates":false,"name":"SUSE-MicroOS-5.0-Updates","url":"https://updates.suse.com/SUSE/Updates/SUSE-MicroOS/5.0/x86_64/update/","distro_target":"sle-15-x86_64","autorefresh":true,"id":4936,"enabled":true},{"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SUSE-MicroOS/5.0/x86_64/update_debug/","enabled":false,"id":4937,"description":"SUSE-MicroOS-5.0-Debuginfo-Updates for sle-15-x86_64","name":"SUSE-MicroOS-5.0-Debuginfo-Updates","installer_updates":false},{"url":"https://updates.suse.com/SUSE/Products/SUSE-MicroOS/5.0/x86_64/product/","distro_target":"sle-15-x86_64","autorefresh":false,"id":4938,"enabled":true,"description":"SUSE-MicroOS-5.0-Pool for sle-15-x86_64","installer_updates":false,"name":"SUSE-MicroOS-5.0-Pool"},{"description":"SUSE-MicroOS-5.0-Debuginfo-Pool for sle-15-x86_64","name":"SUSE-MicroOS-5.0-Debuginfo-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SUSE-MicroOS/5.0/x86_64/product_debug/","enabled":false,"id":4939},{"name":"SUSE-MicroOS-5.0-Source-Pool","installer_updates":false,"description":"SUSE-MicroOS-5.0-Source-Pool for sle-15-x86_64","enabled":false,"id":4940,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SUSE-MicroOS/5.0/x86_64/product_source/"}],"product_class":"MICROOS-X86","cpe":"cpe:/o:suse:suse-microos:5.0","product_type":"base"},{"product_class":"SLE-M-T","online_predecessor_ids":[],"repositories":[{"installer_updates":false,"name":"Debian-9-SUSE-Manager-Tools","description":"Debian-9-SUSE-Manager-Tools for amd64","enabled":true,"id":4947,"distro_target":"amd64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/Debian/9.0-CLIENT-TOOLS/x86_64/update/"}],"predecessor_ids":[],"product_type":"extension","cpe":"cpe:/o:suse:debian-manager-client:9","free":false,"description":"SUSE Manager Client Tools for Debian 9","shortname":"Manager-Tools","arch":"amd64","eula_url":"","friendly_version":"9","identifier":"debian-manager-client","release_stage":"released","id":2208,"extensions":[],"version":"9","recommended":false,"former_identifier":"debian-manager-client","release_type":null,"friendly_name":"SUSE Manager Client Tools for Debian 9 amd64","migration_extra":false,"offline_predecessor_ids":[],"name":"SUSE Manager Client Tools for Debian"},{"description":"SUSE Manager Client Tools Beta for Debian 9","shortname":"Manager-Tools-Beta","free":false,"arch":"amd64","eula_url":"","repositories":[{"description":"Debian-9-SUSE-Manager-Tools-Beta for amd64","installer_updates":false,"name":"Debian-9-SUSE-Manager-Tools-Beta","distro_target":"amd64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/Debian/9.0-CLIENT-TOOLS-BETA/x86_64/update/","enabled":true,"id":4948}],"online_predecessor_ids":[],"product_class":"SLE-M-T-ALPHA","predecessor_ids":[],"cpe":"cpe:/o:suse:debian-manager-client-beta:9","product_type":"extension","version":"9","recommended":false,"migration_extra":false,"friendly_name":"SUSE Manager Client Tools Beta for Debian 9 amd64 (ALPHA)","release_type":null,"former_identifier":"debian-manager-client-beta","name":"SUSE Manager Client Tools Beta for Debian","offline_predecessor_ids":[],"friendly_version":"9","release_stage":"alpha","id":2209,"identifier":"debian-manager-client-beta","extensions":[]},{"release_type":null,"former_identifier":"debian-manager-client","friendly_name":"SUSE Manager Client Tools for Debian 10 amd64","migration_extra":false,"offline_predecessor_ids":[],"name":"SUSE Manager Client Tools for Debian","version":"10","recommended":false,"id":2210,"release_stage":"released","identifier":"debian-manager-client","extensions":[],"friendly_version":"10","arch":"amd64","eula_url":"","free":false,"shortname":"Manager-Tools","description":"SUSE Manager Client Tools for Debian 10","product_type":"extension","cpe":"cpe:/o:suse:debian-manager-client:10","product_class":"SLE-M-T","online_predecessor_ids":[],"repositories":[{"description":"Debian-10-SUSE-Manager-Tools for amd64","name":"Debian-10-SUSE-Manager-Tools","installer_updates":false,"autorefresh":true,"distro_target":"amd64","url":"https://updates.suse.com/SUSE/Updates/Debian/10-CLIENT-TOOLS/x86_64/update/","enabled":true,"id":4949}],"predecessor_ids":[]},{"eula_url":"","arch":"amd64","description":"SUSE Manager Client Tools Beta for Debian 10","shortname":"Manager-Tools-Beta","free":false,"cpe":"cpe:/o:suse:debian-manager-client-beta:10","product_type":"extension","predecessor_ids":[],"repositories":[{"description":"Debian-10-SUSE-Manager-Tools-Beta for amd64","name":"Debian-10-SUSE-Manager-Tools-Beta","installer_updates":false,"url":"https://updates.suse.com/SUSE/Updates/Debian/10-CLIENT-TOOLS-BETA/x86_64/update/","autorefresh":true,"distro_target":"amd64","id":4950,"enabled":true}],"online_predecessor_ids":[],"product_class":"SLE-M-T-ALPHA","name":"SUSE Manager Client Tools Beta for Debian","offline_predecessor_ids":[],"friendly_name":"SUSE Manager Client Tools Beta for Debian 10 amd64 (ALPHA)","migration_extra":false,"release_type":null,"former_identifier":"debian-manager-client-beta","recommended":false,"version":"10","extensions":[],"identifier":"debian-manager-client-beta","release_stage":"alpha","id":2211,"friendly_version":"10"},{"recommended":false,"version":"15.3","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise High Performance Computing LTSS","former_identifier":"SLE_HPC-LTSS","release_type":null,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise High Performance Computing LTSS 15 SP3 aarch64","friendly_version":"15 SP3","extensions":[],"release_stage":"released","identifier":"SLE_HPC-LTSS","id":2212,"free":false,"description":"

SUSE Linux Enterprise High Performance Computing is a highly scalable, high performance open source operating system designed to utilize the power of parallel computing for modeling, simulation and advanced analytics workloads.

","shortname":"SLE_HPC-LTSS-15-SP3","eula_url":"","arch":"aarch64","predecessor_ids":[],"online_predecessor_ids":[],"repositories":[{"installer_updates":false,"name":"SLE-Product-HPC-15-SP3-LTSS-Updates","description":"SLE-Product-HPC-15-SP3-LTSS-Updates for sle-15-aarch64","enabled":true,"id":4951,"distro_target":"sle-15-aarch64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-HPC/15-SP3-LTSS/aarch64/update/"},{"id":4952,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-HPC/15-SP3-LTSS/aarch64/update_debug/","distro_target":"sle-15-aarch64","autorefresh":true,"installer_updates":false,"name":"SLE-Product-HPC-15-SP3-LTSS-Debuginfo-Updates","description":"SLE-Product-HPC-15-SP3-LTSS-Debuginfo-Updates for sle-15-aarch64"},{"description":"SLE-Product-HPC-15-SP3-LTSS-Pool for sle-15-aarch64","installer_updates":false,"name":"SLE-Product-HPC-15-SP3-LTSS-Pool","distro_target":"sle-15-aarch64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-HPC/15-SP3-LTSS/aarch64/product/","enabled":true,"id":4953},{"distro_target":"sle-15-aarch64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-HPC/15-SP3-LTSS/aarch64/product_debug/","enabled":false,"id":4954,"description":"SLE-Product-HPC-15-SP3-LTSS-Debuginfo-Pool for sle-15-aarch64","installer_updates":false,"name":"SLE-Product-HPC-15-SP3-LTSS-Debuginfo-Pool"},{"installer_updates":false,"name":"SLE-Product-HPC-15-SP3-LTSS-Source-Pool","description":"SLE-Product-HPC-15-SP3-LTSS-Source-Pool for sle-15-aarch64","enabled":false,"id":4955,"distro_target":"sle-15-aarch64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-HPC/15-SP3-LTSS/aarch64/product_source/"}],"product_class":"HPC15-SP3-LTSS-ARM64","product_type":"extension","cpe":"cpe:/o:suse:sle_hpc-ltss:15:sp3"},{"recommended":false,"version":"15.3","name":"SUSE Linux Enterprise High Performance Computing LTSS","offline_predecessor_ids":[],"friendly_name":"SUSE Linux Enterprise High Performance Computing LTSS 15 SP3 x86_64","migration_extra":false,"release_type":null,"former_identifier":"SLE_HPC-LTSS","friendly_version":"15 SP3","extensions":[],"identifier":"SLE_HPC-LTSS","release_stage":"released","id":2213,"description":"

SUSE Linux Enterprise High Performance Computing is a highly scalable, high performance open source operating system designed to utilize the power of parallel computing for modeling, simulation and advanced analytics workloads.

","shortname":"SLE_HPC-LTSS-15-SP3","free":false,"eula_url":"","arch":"x86_64","predecessor_ids":[],"online_predecessor_ids":[],"repositories":[{"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-HPC/15-SP3-LTSS/x86_64/update/","distro_target":"sle-15-x86_64","autorefresh":true,"id":4956,"enabled":true,"description":"SLE-Product-HPC-15-SP3-LTSS-Updates for sle-15-x86_64","installer_updates":false,"name":"SLE-Product-HPC-15-SP3-LTSS-Updates"},{"distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-HPC/15-SP3-LTSS/x86_64/update_debug/","enabled":false,"id":4957,"description":"SLE-Product-HPC-15-SP3-LTSS-Debuginfo-Updates for sle-15-x86_64","installer_updates":false,"name":"SLE-Product-HPC-15-SP3-LTSS-Debuginfo-Updates"},{"installer_updates":false,"name":"SLE-Product-HPC-15-SP3-LTSS-Pool","description":"SLE-Product-HPC-15-SP3-LTSS-Pool for sle-15-x86_64","enabled":true,"id":4958,"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-HPC/15-SP3-LTSS/x86_64/product/"},{"id":4959,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-HPC/15-SP3-LTSS/x86_64/product_debug/","distro_target":"sle-15-x86_64","autorefresh":false,"installer_updates":false,"name":"SLE-Product-HPC-15-SP3-LTSS-Debuginfo-Pool","description":"SLE-Product-HPC-15-SP3-LTSS-Debuginfo-Pool for sle-15-x86_64"},{"description":"SLE-Product-HPC-15-SP3-LTSS-Source-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Product-HPC-15-SP3-LTSS-Source-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Product-HPC/15-SP3-LTSS/x86_64/product_source/","distro_target":"sle-15-x86_64","autorefresh":false,"id":4960,"enabled":false}],"product_class":"HPC15-SP3-LTSS-X86","cpe":"cpe:/o:suse:sle_hpc-ltss:15:sp3","product_type":"extension"},{"migration_extra":false,"friendly_name":"SUSE Linux Enterprise High Performance Computing ESPOS 15 SP3 aarch64","release_type":null,"former_identifier":"SLE_HPC-ESPOS","name":"SUSE Linux Enterprise High Performance Computing ESPOS","offline_predecessor_ids":[],"version":"15.3","recommended":false,"release_stage":"released","id":2214,"identifier":"SLE_HPC-ESPOS","extensions":[],"friendly_version":"15 SP3","arch":"aarch64","eula_url":"","description":"

SUSE Linux Enterprise High Performance Computing is a highly scalable, high performance open source operating system designed to utilize the power of parallel computing for modeling, simulation and advanced analytics workloads.

","shortname":"SLE_HPC-ESPOS-15-SP3","free":false,"cpe":"cpe:/o:suse:sle_hpc-espos:15:sp3","product_type":"extension","online_predecessor_ids":[2126,2128],"repositories":[{"installer_updates":false,"name":"SLE-Product-HPC-15-SP3-ESPOS-Updates","description":"SLE-Product-HPC-15-SP3-ESPOS-Updates for sle-15-aarch64","enabled":true,"id":4961,"distro_target":"sle-15-aarch64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-HPC/15-SP3-ESPOS/aarch64/update/"},{"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-HPC/15-SP3-ESPOS/aarch64/update_debug/","distro_target":"sle-15-aarch64","autorefresh":true,"id":4962,"enabled":false,"description":"SLE-Product-HPC-15-SP3-ESPOS-Debuginfo-Updates for sle-15-aarch64","installer_updates":false,"name":"SLE-Product-HPC-15-SP3-ESPOS-Debuginfo-Updates"},{"enabled":true,"id":4963,"autorefresh":false,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Products/SLE-Product-HPC/15-SP3-ESPOS/aarch64/product/","name":"SLE-Product-HPC-15-SP3-ESPOS-Pool","installer_updates":false,"description":"SLE-Product-HPC-15-SP3-ESPOS-Pool for sle-15-aarch64"},{"id":4964,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-HPC/15-SP3-ESPOS/aarch64/product_debug/","autorefresh":false,"distro_target":"sle-15-aarch64","name":"SLE-Product-HPC-15-SP3-ESPOS-Debuginfo-Pool","installer_updates":false,"description":"SLE-Product-HPC-15-SP3-ESPOS-Debuginfo-Pool for sle-15-aarch64"},{"enabled":false,"id":4965,"autorefresh":false,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Products/SLE-Product-HPC/15-SP3-ESPOS/aarch64/product_source/","name":"SLE-Product-HPC-15-SP3-ESPOS-Source-Pool","installer_updates":false,"description":"SLE-Product-HPC-15-SP3-ESPOS-Source-Pool for sle-15-aarch64"}],"product_class":"SLE-ESPOS-ARM64","predecessor_ids":[2126,2128]},{"predecessor_ids":[2127,2129],"product_class":"SLE-ESPOS-X86","online_predecessor_ids":[2127,2129],"repositories":[{"name":"SLE-Product-HPC-15-SP3-ESPOS-Updates","installer_updates":false,"description":"SLE-Product-HPC-15-SP3-ESPOS-Updates for sle-15-x86_64","id":4966,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-HPC/15-SP3-ESPOS/x86_64/update/","autorefresh":true,"distro_target":"sle-15-x86_64"},{"distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-HPC/15-SP3-ESPOS/x86_64/update_debug/","enabled":false,"id":4967,"description":"SLE-Product-HPC-15-SP3-ESPOS-Debuginfo-Updates for sle-15-x86_64","installer_updates":false,"name":"SLE-Product-HPC-15-SP3-ESPOS-Debuginfo-Updates"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Product-HPC/15-SP3-ESPOS/x86_64/product/","distro_target":"sle-15-x86_64","autorefresh":false,"id":4968,"enabled":true,"description":"SLE-Product-HPC-15-SP3-ESPOS-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Product-HPC-15-SP3-ESPOS-Pool"},{"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-HPC/15-SP3-ESPOS/x86_64/product_debug/","enabled":false,"id":4969,"description":"SLE-Product-HPC-15-SP3-ESPOS-Debuginfo-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Product-HPC-15-SP3-ESPOS-Debuginfo-Pool"},{"installer_updates":false,"name":"SLE-Product-HPC-15-SP3-ESPOS-Source-Pool","description":"SLE-Product-HPC-15-SP3-ESPOS-Source-Pool for sle-15-x86_64","enabled":false,"id":4970,"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-HPC/15-SP3-ESPOS/x86_64/product_source/"}],"cpe":"cpe:/o:suse:sle_hpc-espos:15:sp3","product_type":"extension","description":"

SUSE Linux Enterprise High Performance Computing is a highly scalable, high performance open source operating system designed to utilize the power of parallel computing for modeling, simulation and advanced analytics workloads.

","shortname":"SLE_HPC-ESPOS-15-SP3","free":false,"eula_url":"","arch":"x86_64","friendly_version":"15 SP3","extensions":[],"id":2215,"release_stage":"released","identifier":"SLE_HPC-ESPOS","recommended":false,"version":"15.3","name":"SUSE Linux Enterprise High Performance Computing ESPOS","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"SUSE Linux Enterprise High Performance Computing ESPOS 15 SP3 x86_64","release_type":null,"former_identifier":"SLE_HPC-ESPOS"},{"identifier":"SLES-LTSS","release_stage":"released","id":2216,"extensions":[],"friendly_version":"15 SP1","friendly_name":"SUSE Linux Enterprise Server LTSS 15 SP1 aarch64","migration_extra":false,"release_type":null,"former_identifier":"SLES-LTSS","name":"SUSE Linux Enterprise Server LTSS","offline_predecessor_ids":[],"version":"15.1","recommended":false,"cpe":"cpe:/o:suse:sles-ltss:15:sp1","product_type":"extension","product_class":"SLES15-SP1-LTSS-ARM64","online_predecessor_ids":[],"repositories":[{"id":4971,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-SLES/15-SP1-LTSS/aarch64/update/","autorefresh":true,"distro_target":"sle-15-aarch64","name":"SLE-Product-SLES15-SP1-LTSS-Updates","installer_updates":false,"description":"SLE-Product-SLES15-SP1-LTSS-Updates for sle-15-aarch64"},{"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-SLES/15-SP1-LTSS/aarch64/update_debug/","autorefresh":true,"distro_target":"sle-15-aarch64","id":4972,"enabled":false,"description":"SLE-Product-SLES15-SP1-Debuginfo-LTSS-Updates for sle-15-aarch64","name":"SLE-Product-SLES15-SP1-Debuginfo-LTSS-Updates","installer_updates":false}],"predecessor_ids":[],"arch":"aarch64","eula_url":"","shortname":"SLES15-SP1-LTSS","description":"SUSE Linux Enterprise offers a comprehensive suite of products built on a single code base. The platform addresses business needs from the smallest thin-client devices to the world's most powerful high-performance computing and mainframe servers. SUSE Linux Enterprise offers common management tools and technology certifications across the platform, and each product is enterprise-class.","free":false},{"extensions":[],"id":2217,"release_stage":"released","identifier":"SLES-LTSS","friendly_version":"15 SP1","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Server LTSS","former_identifier":"SLES-LTSS","release_type":null,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Server LTSS 15 SP1 ppc64le","recommended":false,"version":"15.1","product_type":"extension","cpe":"cpe:/o:suse:sles-ltss:15:sp1","predecessor_ids":[],"online_predecessor_ids":[],"product_class":"SLES15-SP1-LTSS-PPC","repositories":[{"autorefresh":true,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Updates/SLE-Product-SLES/15-SP1-LTSS/ppc64le/update/","enabled":true,"id":4973,"description":"SLE-Product-SLES15-SP1-LTSS-Updates for sle-15-ppc64le","name":"SLE-Product-SLES15-SP1-LTSS-Updates","installer_updates":false},{"name":"SLE-Product-SLES15-SP1-Debuginfo-LTSS-Updates","installer_updates":false,"description":"SLE-Product-SLES15-SP1-Debuginfo-LTSS-Updates for sle-15-ppc64le","id":4974,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-SLES/15-SP1-LTSS/ppc64le/update_debug/","autorefresh":true,"distro_target":"sle-15-ppc64le"}],"eula_url":"","arch":"ppc64le","free":false,"shortname":"SLES15-SP1-LTSS","description":"SUSE Linux Enterprise offers a comprehensive suite of products built on a single code base. The platform addresses business needs from the smallest thin-client devices to the world's most powerful high-performance computing and mainframe servers. SUSE Linux Enterprise offers common management tools and technology certifications across the platform, and each product is enterprise-class."},{"version":"15.1","recommended":false,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Server LTSS 15 SP1 s390x","former_identifier":"SLES-LTSS","release_type":null,"name":"SUSE Linux Enterprise Server LTSS","offline_predecessor_ids":[],"friendly_version":"15 SP1","identifier":"SLES-LTSS","release_stage":"released","id":2218,"extensions":[],"description":"SUSE Linux Enterprise offers a comprehensive suite of products built on a single code base. The platform addresses business needs from the smallest thin-client devices to the world's most powerful high-performance computing and mainframe servers. SUSE Linux Enterprise offers common management tools and technology certifications across the platform, and each product is enterprise-class.","shortname":"SLES15-SP1-LTSS","free":false,"arch":"s390x","eula_url":"","product_class":"SLES15-SP1-LTSS-Z","online_predecessor_ids":[],"repositories":[{"autorefresh":true,"distro_target":"sle-15-s390x","url":"https://updates.suse.com/SUSE/Updates/SLE-Product-SLES/15-SP1-LTSS/s390x/update/","enabled":true,"id":4975,"description":"SLE-Product-SLES15-SP1-LTSS-Updates for sle-15-s390x","name":"SLE-Product-SLES15-SP1-LTSS-Updates","installer_updates":false},{"enabled":false,"id":4976,"autorefresh":true,"distro_target":"sle-15-s390x","url":"https://updates.suse.com/SUSE/Updates/SLE-Product-SLES/15-SP1-LTSS/s390x/update_debug/","name":"SLE-Product-SLES15-SP1-Debuginfo-LTSS-Updates","installer_updates":false,"description":"SLE-Product-SLES15-SP1-Debuginfo-LTSS-Updates for sle-15-s390x"}],"predecessor_ids":[],"cpe":"cpe:/o:suse:sles-ltss:15:sp1","product_type":"extension"},{"extensions":[],"release_stage":"released","id":2219,"identifier":"SLES-LTSS","friendly_version":"15 SP1","name":"SUSE Linux Enterprise Server LTSS","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Server LTSS 15 SP1 x86_64","release_type":null,"former_identifier":"SLES-LTSS","recommended":false,"version":"15.1","cpe":"cpe:/o:suse:sles-ltss:15:sp1","product_type":"extension","predecessor_ids":[],"online_predecessor_ids":[],"product_class":"SLES15-SP1-LTSS-X86","repositories":[{"enabled":true,"id":4977,"distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-SLES/15-SP1-LTSS/x86_64/update/","installer_updates":false,"name":"SLE-Product-SLES15-SP1-LTSS-Updates","description":"SLE-Product-SLES15-SP1-LTSS-Updates for sle-15-x86_64"},{"description":"SLE-Product-SLES15-SP1-Debuginfo-LTSS-Updates for sle-15-x86_64","installer_updates":false,"name":"SLE-Product-SLES15-SP1-Debuginfo-LTSS-Updates","distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-SLES/15-SP1-LTSS/x86_64/update_debug/","enabled":false,"id":4978}],"eula_url":"","arch":"x86_64","shortname":"SLES15-SP1-LTSS","description":"SUSE Linux Enterprise offers a comprehensive suite of products built on a single code base. The platform addresses business needs from the smallest thin-client devices to the world's most powerful high-performance computing and mainframe servers. SUSE Linux Enterprise offers common management tools and technology certifications across the platform, and each product is enterprise-class.","free":false},{"arch":"ppc64le","eula_url":"https://updates.suse.com/SUSE/Products/SLE-Product-SUSE-Manager-Server/4.2/ppc64le/product.license/","description":"SUSE Manager lets you efficiently manage physical, virtual, and cloud-based Linux systems. It provides automated and cost-effective configuration and software management, asset management, and system provisioning.","shortname":"SUSE Manager Server 4.2","free":false,"cpe":"cpe:/o:suse:suse-manager-server:4.2","product_type":"base","product_class":"SMS-PPC","online_predecessor_ids":[1897,2010],"repositories":[{"id":4979,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-SUSE-Manager-Server/4.2/ppc64le/update/","autorefresh":true,"distro_target":"sle-15-ppc64le","name":"SLE-Product-SUSE-Manager-Server-4.2-Updates","installer_updates":false,"description":"SLE-Product-SUSE-Manager-Server-4.2-Updates for sle-15-ppc64le"},{"description":"SLE-Product-SUSE-Manager-Server-4.2-Debuginfo-Updates for sle-15-ppc64le","installer_updates":false,"name":"SLE-Product-SUSE-Manager-Server-4.2-Debuginfo-Updates","url":"https://updates.suse.com/SUSE/Updates/SLE-Product-SUSE-Manager-Server/4.2/ppc64le/update_debug/","distro_target":"sle-15-ppc64le","autorefresh":true,"id":4980,"enabled":false},{"description":"SLE-Product-SUSE-Manager-Server-4.2-Pool for sle-15-ppc64le","name":"SLE-Product-SUSE-Manager-Server-4.2-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-SUSE-Manager-Server/4.2/ppc64le/product/","autorefresh":false,"distro_target":"sle-15-ppc64le","id":4981,"enabled":true},{"description":"SLE-Product-SUSE-Manager-Server-4.2-Debuginfo-Pool for sle-15-ppc64le","installer_updates":false,"name":"SLE-Product-SUSE-Manager-Server-4.2-Debuginfo-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Product-SUSE-Manager-Server/4.2/ppc64le/product_debug/","distro_target":"sle-15-ppc64le","autorefresh":false,"id":4982,"enabled":false},{"description":"SLE-Product-SUSE-Manager-Server-4.2-Source-Pool for sle-15-ppc64le","installer_updates":false,"name":"SLE-Product-SUSE-Manager-Server-4.2-Source-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Product-SUSE-Manager-Server/4.2/ppc64le/product_source/","distro_target":"sle-15-ppc64le","autorefresh":false,"id":4983,"enabled":false}],"predecessor_ids":[1897,2010],"migration_extra":false,"friendly_name":"SUSE Manager Server 4.2 ppc64le","release_type":null,"former_identifier":"SUSE-Manager-Server","name":"SUSE Manager Server","offline_predecessor_ids":[],"version":"4.2","recommended":false,"id":2220,"release_stage":"released","identifier":"SUSE-Manager-Server","extensions":[{"version":"15.3","recommended":true,"migration_extra":false,"friendly_name":"Basesystem Module 15 SP3 ppc64le","former_identifier":"sle-module-basesystem","release_type":null,"name":"Basesystem Module","offline_predecessor_ids":[1294],"friendly_version":"15 SP3","id":2143,"release_stage":"released","identifier":"sle-module-basesystem","extensions":[{"version":"15.3","recommended":false,"migration_extra":false,"friendly_name":"Desktop Applications Module 15 SP3 ppc64le","release_type":null,"former_identifier":"sle-module-desktop-applications","name":"Desktop Applications Module","offline_predecessor_ids":[],"friendly_version":"15 SP3","id":2147,"release_stage":"released","identifier":"sle-module-desktop-applications","extensions":[{"name":"Development Tools Module","offline_predecessor_ids":[1339,1428,1631,1890],"migration_extra":false,"friendly_name":"Development Tools Module 15 SP3 ppc64le","release_type":null,"former_identifier":"sle-sdk","recommended":false,"version":"15.3","extensions":[],"release_stage":"released","id":2159,"identifier":"sle-module-development-tools","friendly_version":"15 SP3","eula_url":"","arch":"ppc64le","description":"

The Development Tools Module helps you developing applications for SUSE Linux Enterprise 15.

Access to the Development Tools Module is included in your SUSE Linux Enterprise product subscription. The module has a different lifecycle than SUSE Linux Enterprise itself.

","shortname":"Development-Tools-Module","free":true,"cpe":"cpe:/o:suse:sle-module-development-tools:15:sp3","product_type":"module","predecessor_ids":[1597,1792,1969],"repositories":[{"name":"SLE-Module-DevTools15-SP3-Updates","installer_updates":false,"description":"SLE-Module-DevTools15-SP3-Updates for sle-15-ppc64le","enabled":true,"id":4704,"autorefresh":true,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15-SP3/ppc64le/update/"},{"name":"SLE-Module-DevTools15-SP3-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-DevTools15-SP3-Debuginfo-Updates for sle-15-ppc64le","id":4705,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15-SP3/ppc64le/update_debug/","autorefresh":true,"distro_target":"sle-15-ppc64le"},{"name":"SLE-Module-DevTools15-SP3-Pool","installer_updates":false,"description":"SLE-Module-DevTools15-SP3-Pool for sle-15-ppc64le","id":4706,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP3/ppc64le/product/","autorefresh":false,"distro_target":"sle-15-ppc64le"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP3/ppc64le/product_debug/","autorefresh":false,"distro_target":"sle-15-ppc64le","id":4707,"enabled":false,"description":"SLE-Module-DevTools15-SP3-Debuginfo-Pool for sle-15-ppc64le","name":"SLE-Module-DevTools15-SP3-Debuginfo-Pool","installer_updates":false},{"id":4708,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP3/ppc64le/product_source/","distro_target":"sle-15-ppc64le","autorefresh":false,"installer_updates":false,"name":"SLE-Module-DevTools15-SP3-Source-Pool","description":"SLE-Module-DevTools15-SP3-Source-Pool for sle-15-ppc64le"}],"online_predecessor_ids":[1597,1792,1969],"product_class":"MODULE"}],"shortname":"Desktop-Applications-Module","description":"

The SUSE Linux Enterprise Desktop Applications Module delivers a basic set of Desktop functionality.

Access to the Desktop Applications Module is included in your SUSE Linux Enterprise product subscription.

","free":true,"arch":"ppc64le","eula_url":"","online_predecessor_ids":[1594,1774,1965],"product_class":"MODULE","repositories":[{"description":"SLE-Module-Desktop-Applications15-SP3-Updates for sle-15-ppc64le","name":"SLE-Module-Desktop-Applications15-SP3-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15-SP3/ppc64le/update/","enabled":true,"id":4644},{"id":4645,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15-SP3/ppc64le/update_debug/","distro_target":"sle-15-ppc64le","autorefresh":true,"installer_updates":false,"name":"SLE-Module-Desktop-Applications15-SP3-Debuginfo-Updates","description":"SLE-Module-Desktop-Applications15-SP3-Debuginfo-Updates for sle-15-ppc64le"},{"description":"SLE-Module-Desktop-Applications15-SP3-Pool for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-Desktop-Applications15-SP3-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP3/ppc64le/product/","distro_target":"sle-15-ppc64le","autorefresh":false,"id":4646,"enabled":true},{"enabled":false,"id":4647,"autorefresh":false,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP3/ppc64le/product_debug/","name":"SLE-Module-Desktop-Applications15-SP3-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-Desktop-Applications15-SP3-Debuginfo-Pool for sle-15-ppc64le"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP3/ppc64le/product_source/","distro_target":"sle-15-ppc64le","autorefresh":false,"id":4648,"enabled":false,"description":"SLE-Module-Desktop-Applications15-SP3-Source-Pool for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-Desktop-Applications15-SP3-Source-Pool"}],"predecessor_ids":[1594,1774,1965],"cpe":"cpe:/o:suse:sle-module-desktop-applications:15:sp3","product_type":"module"},{"name":"Server Applications Module","offline_predecessor_ids":[],"friendly_name":"Server Applications Module 15 SP3 ppc64le","migration_extra":false,"former_identifier":"sle-module-server-applications","release_type":null,"recommended":true,"version":"15.3","extensions":[{"free":true,"description":"

The SUSE Linux Enterprise Web and Scripting Module should contains additional packages that are helpful when running a webserver.

Access to the Web and Scripting Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself: Package versions in this module are usually supported for at most three years. We are planning to release more recent versions on a schedule of approximately 18 month; the exact dates may differ per package.

","shortname":"Web-Scripting-Module","arch":"ppc64le","eula_url":"","product_class":"MODULE","online_predecessor_ids":[1719,1796,1974],"repositories":[{"description":"SLE-Module-Web-Scripting15-SP3-Updates for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-Web-Scripting15-SP3-Updates","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/15-SP3/ppc64le/update/","distro_target":"sle-15-ppc64le","autorefresh":true,"id":4724,"enabled":true},{"id":4725,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/15-SP3/ppc64le/update_debug/","distro_target":"sle-15-ppc64le","autorefresh":true,"installer_updates":false,"name":"SLE-Module-Web-Scripting15-SP3-Debuginfo-Updates","description":"SLE-Module-Web-Scripting15-SP3-Debuginfo-Updates for sle-15-ppc64le"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP3/ppc64le/product/","distro_target":"sle-15-ppc64le","autorefresh":false,"id":4726,"enabled":true,"description":"SLE-Module-Web-Scripting15-SP3-Pool for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-Web-Scripting15-SP3-Pool"},{"id":4727,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP3/ppc64le/product_debug/","autorefresh":false,"distro_target":"sle-15-ppc64le","name":"SLE-Module-Web-Scripting15-SP3-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-Web-Scripting15-SP3-Debuginfo-Pool for sle-15-ppc64le"},{"description":"SLE-Module-Web-Scripting15-SP3-Source-Pool for sle-15-ppc64le","name":"SLE-Module-Web-Scripting15-SP3-Source-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP3/ppc64le/product_source/","autorefresh":false,"distro_target":"sle-15-ppc64le","id":4728,"enabled":false}],"predecessor_ids":[1719,1796,1974],"product_type":"module","cpe":"cpe:/o:suse:sle-module-web-scripting:15:sp3","version":"15.3","recommended":true,"former_identifier":"sle-module-web-scripting","release_type":null,"friendly_name":"Web and Scripting Module 15 SP3 ppc64le","migration_extra":false,"offline_predecessor_ids":[1151],"name":"Web and Scripting Module","friendly_version":"15 SP3","release_stage":"released","id":2163,"identifier":"sle-module-web-scripting","extensions":[{"free":true,"description":"SUSE Manager lets you efficiently manage physical, virtual, and cloud-based Linux systems. It provides automated and cost-effective configuration and software management, asset management, and system provisioning.","shortname":"SUSE Manager Server 4.2 Module","arch":"ppc64le","eula_url":"","product_class":"MODULE","online_predecessor_ids":[1903,2017],"repositories":[{"id":5009,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-SUSE-Manager-Server/4.2/ppc64le/update/","distro_target":"sle-15-ppc64le","autorefresh":true,"installer_updates":false,"name":"SLE-Module-SUSE-Manager-Server-4.2-Updates","description":"SLE-Module-SUSE-Manager-Server-4.2-Updates for sle-15-ppc64le"},{"installer_updates":false,"name":"SLE-Module-SUSE-Manager-Server-4.2-Debuginfo-Updates","description":"SLE-Module-SUSE-Manager-Server-4.2-Debuginfo-Updates for sle-15-ppc64le","enabled":false,"id":5010,"distro_target":"sle-15-ppc64le","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-SUSE-Manager-Server/4.2/ppc64le/update_debug/"},{"description":"SLE-Module-SUSE-Manager-Server-4.2-Pool for sle-15-ppc64le","name":"SLE-Module-SUSE-Manager-Server-4.2-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-SUSE-Manager-Server/4.2/ppc64le/product/","autorefresh":false,"distro_target":"sle-15-ppc64le","id":5011,"enabled":true},{"id":5012,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-SUSE-Manager-Server/4.2/ppc64le/product_debug/","autorefresh":false,"distro_target":"sle-15-ppc64le","name":"SLE-Module-SUSE-Manager-Server-4.2-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-SUSE-Manager-Server-4.2-Debuginfo-Pool for sle-15-ppc64le"},{"enabled":false,"id":5013,"distro_target":"sle-15-ppc64le","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-SUSE-Manager-Server/4.2/ppc64le/product_source/","installer_updates":false,"name":"SLE-Module-SUSE-Manager-Server-4.2-Source-Pool","description":"SLE-Module-SUSE-Manager-Server-4.2-Source-Pool for sle-15-ppc64le"}],"predecessor_ids":[1903,2017],"product_type":"module","cpe":"cpe:/o:suse:sle-module-suse-manager-server:4.2","version":"4.2","recommended":true,"release_type":null,"former_identifier":"sle-module-suse-manager-server","friendly_name":"SUSE Manager Server Module 4.2 ppc64le","migration_extra":false,"offline_predecessor_ids":[],"name":"SUSE Manager Server Module","friendly_version":"4.2","identifier":"sle-module-suse-manager-server","release_stage":"released","id":2226,"extensions":[]}]},{"friendly_version":"15 SP3","id":2169,"release_stage":"released","identifier":"sle-module-legacy","extensions":[],"version":"15.3","recommended":false,"friendly_name":"Legacy Module 15 SP3 ppc64le","migration_extra":false,"release_type":null,"former_identifier":"sle-module-legacy","name":"Legacy Module","offline_predecessor_ids":[1148],"online_predecessor_ids":[1603,1802,1980],"repositories":[{"installer_updates":false,"name":"SLE-Module-Legacy15-SP3-Updates","description":"SLE-Module-Legacy15-SP3-Updates for sle-15-ppc64le","enabled":true,"id":4754,"distro_target":"sle-15-ppc64le","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/15-SP3/ppc64le/update/"},{"name":"SLE-Module-Legacy15-SP3-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-Legacy15-SP3-Debuginfo-Updates for sle-15-ppc64le","id":4755,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/15-SP3/ppc64le/update_debug/","autorefresh":true,"distro_target":"sle-15-ppc64le"},{"enabled":true,"id":4756,"autorefresh":false,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15-SP3/ppc64le/product/","name":"SLE-Module-Legacy15-SP3-Pool","installer_updates":false,"description":"SLE-Module-Legacy15-SP3-Pool for sle-15-ppc64le"},{"description":"SLE-Module-Legacy15-SP3-Debuginfo-Pool for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-Legacy15-SP3-Debuginfo-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15-SP3/ppc64le/product_debug/","distro_target":"sle-15-ppc64le","autorefresh":false,"id":4757,"enabled":false},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15-SP3/ppc64le/product_source/","autorefresh":false,"distro_target":"sle-15-ppc64le","id":4758,"enabled":false,"description":"SLE-Module-Legacy15-SP3-Source-Pool for sle-15-ppc64le","name":"SLE-Module-Legacy15-SP3-Source-Pool","installer_updates":false}],"product_class":"MODULE","predecessor_ids":[1603,1802,1980],"cpe":"cpe:/o:suse:sle-module-legacy:15:sp3","product_type":"module","description":"

The Legacy Module helps you migrating applications from SUSE Linux Enterprise 12 and other systems to SUSE Linux Enterprise 15, by providing packages which are discontinued on SUSE Linux Enterprise Server, such as: ntp, IBM Java 8, and a number of libraries.

Access to the Legacy Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself. Packages in the this module are usually supported for at most three years.

","shortname":"Legacy-Module","free":true,"arch":"ppc64le","eula_url":""},{"shortname":"Public-Cloud-Module","description":"

The Public Cloud Module is a collection of tools that enables you to create and manage cloud images from the commandline on SUSE Linux Enterprise Server. When building your own images with KIWI or SUSE Studio, initialization code specific to the target cloud is included in that image.

Access to the Public Cloud Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself; please check the Release Notes for further details.

","free":true,"eula_url":"","arch":"ppc64le","predecessor_ids":[1616,1806,1986],"online_predecessor_ids":[1616,1806,1986],"repositories":[{"installer_updates":false,"name":"SLE-Module-Public-Cloud15-SP3-Updates","description":"SLE-Module-Public-Cloud15-SP3-Updates for sle-15-ppc64le","enabled":true,"id":4774,"distro_target":"sle-15-ppc64le","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/15-SP3/ppc64le/update/"},{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/15-SP3/ppc64le/update_debug/","distro_target":"sle-15-ppc64le","autorefresh":true,"id":4775,"enabled":false,"description":"SLE-Module-Public-Cloud15-SP3-Debuginfo-Updates for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-Public-Cloud15-SP3-Debuginfo-Updates"},{"distro_target":"sle-15-ppc64le","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP3/ppc64le/product/","enabled":true,"id":4776,"description":"SLE-Module-Public-Cloud15-SP3-Pool for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-Public-Cloud15-SP3-Pool"},{"description":"SLE-Module-Public-Cloud15-SP3-Debuginfo-Pool for sle-15-ppc64le","name":"SLE-Module-Public-Cloud15-SP3-Debuginfo-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP3/ppc64le/product_debug/","enabled":false,"id":4777},{"installer_updates":false,"name":"SLE-Module-Public-Cloud15-SP3-Source-Pool","description":"SLE-Module-Public-Cloud15-SP3-Source-Pool for sle-15-ppc64le","enabled":false,"id":4778,"distro_target":"sle-15-ppc64le","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP3/ppc64le/product_source/"}],"product_class":"MODULE","cpe":"cpe:/o:suse:sle-module-public-cloud:15:sp3","product_type":"module","recommended":false,"version":"15.3","name":"Public Cloud Module","offline_predecessor_ids":[1218],"migration_extra":false,"friendly_name":"Public Cloud Module 15 SP3 ppc64le","former_identifier":"sle-module-public-cloud","release_type":null,"friendly_version":"15 SP3","extensions":[],"identifier":"sle-module-public-cloud","release_stage":"released","id":2173},{"recommended":false,"version":"15.3","name":"SUSE Linux Enterprise High Availability Extension","offline_predecessor_ids":[1433,1635,1882],"migration_extra":false,"friendly_name":"SUSE Linux Enterprise High Availability Extension 15 SP3 ppc64le","release_type":null,"former_identifier":"sle-ha","friendly_version":"15 SP3","extensions":[],"release_stage":"released","id":2193,"identifier":"sle-ha","shortname":"SLEHA15-SP3","description":"SUSE Linux High Availability Extension provides mature, industry-leading open-source high-availability clustering technologies that are easy to set up and use. It can be deployed in physical and/or virtual environments, and can cluster physical servers, virtual servers, or any combination of the two to suit your business’ needs.","free":false,"eula_url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP3/ppc64le/product.license/","arch":"ppc64le","predecessor_ids":[1606,1783,1957],"repositories":[{"autorefresh":true,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Updates/SLE-Product-HA/15-SP3/ppc64le/update/","enabled":true,"id":4886,"description":"SLE-Product-HA15-SP3-Updates for sle-15-ppc64le","name":"SLE-Product-HA15-SP3-Updates","installer_updates":false},{"autorefresh":true,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Updates/SLE-Product-HA/15-SP3/ppc64le/update_debug/","enabled":false,"id":4887,"description":"SLE-Product-HA15-SP3-Debuginfo-Updates for sle-15-ppc64le","name":"SLE-Product-HA15-SP3-Debuginfo-Updates","installer_updates":false},{"installer_updates":false,"name":"SLE-Product-HA15-SP3-Pool","description":"SLE-Product-HA15-SP3-Pool for sle-15-ppc64le","enabled":true,"id":4888,"distro_target":"sle-15-ppc64le","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP3/ppc64le/product/"},{"autorefresh":false,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP3/ppc64le/product_debug/","enabled":false,"id":4889,"description":"SLE-Product-HA15-SP3-Debuginfo-Pool for sle-15-ppc64le","name":"SLE-Product-HA15-SP3-Debuginfo-Pool","installer_updates":false},{"description":"SLE-Product-HA15-SP3-Source-Pool for sle-15-ppc64le","name":"SLE-Product-HA15-SP3-Source-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP3/ppc64le/product_source/","enabled":false,"id":4890}],"online_predecessor_ids":[1606,1783,1957],"product_class":"SLE-HAE-PPC","cpe":"cpe:/o:suse:sle-ha:15:sp3","product_type":"extension"}],"id":2151,"release_stage":"released","identifier":"sle-module-server-applications","friendly_version":"15 SP3","eula_url":"","arch":"ppc64le","shortname":"Server-Applications-Module","description":"

The SUSE Linux Enterprise Server Applications Module delivers a basic set of Server functionality.

Access to the Server Applications Module is included in your SUSE Linux Enterprise Server subscription.

","free":true,"cpe":"cpe:/o:suse:sle-module-server-applications:15:sp3","product_type":"module","predecessor_ids":[1600,1778,1953],"online_predecessor_ids":[1600,1778,1953],"product_class":"MODULE","repositories":[{"description":"SLE-Module-Server-Applications15-SP3-Updates for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-Server-Applications15-SP3-Updates","distro_target":"sle-15-ppc64le","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15-SP3/ppc64le/update/","enabled":true,"id":4664},{"distro_target":"sle-15-ppc64le","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15-SP3/ppc64le/update_debug/","enabled":false,"id":4665,"description":"SLE-Module-Server-Applications15-SP3-Debuginfo-Updates for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-Server-Applications15-SP3-Debuginfo-Updates"},{"name":"SLE-Module-Server-Applications15-SP3-Pool","installer_updates":false,"description":"SLE-Module-Server-Applications15-SP3-Pool for sle-15-ppc64le","id":4666,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP3/ppc64le/product/","autorefresh":false,"distro_target":"sle-15-ppc64le"},{"description":"SLE-Module-Server-Applications15-SP3-Debuginfo-Pool for sle-15-ppc64le","name":"SLE-Module-Server-Applications15-SP3-Debuginfo-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP3/ppc64le/product_debug/","autorefresh":false,"distro_target":"sle-15-ppc64le","id":4667,"enabled":false},{"installer_updates":false,"name":"SLE-Module-Server-Applications15-SP3-Source-Pool","description":"SLE-Module-Server-Applications15-SP3-Source-Pool for sle-15-ppc64le","enabled":false,"id":4668,"distro_target":"sle-15-ppc64le","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP3/ppc64le/product_source/"}]},{"product_type":"module","cpe":"cpe:/o:suse:sle-module-containers:15:sp3","predecessor_ids":[1640,1788,1961],"repositories":[{"description":"SLE-Module-Containers15-SP3-Updates for sle-15-ppc64le","name":"SLE-Module-Containers15-SP3-Updates","installer_updates":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/15-SP3/ppc64le/update/","autorefresh":true,"distro_target":"sle-15-ppc64le","id":4684,"enabled":true},{"name":"SLE-Module-Containers15-SP3-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-Containers15-SP3-Debuginfo-Updates for sle-15-ppc64le","id":4685,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/15-SP3/ppc64le/update_debug/","autorefresh":true,"distro_target":"sle-15-ppc64le"},{"id":4686,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP3/ppc64le/product/","autorefresh":false,"distro_target":"sle-15-ppc64le","name":"SLE-Module-Containers15-SP3-Pool","installer_updates":false,"description":"SLE-Module-Containers15-SP3-Pool for sle-15-ppc64le"},{"id":4687,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP3/ppc64le/product_debug/","autorefresh":false,"distro_target":"sle-15-ppc64le","name":"SLE-Module-Containers15-SP3-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-Containers15-SP3-Debuginfo-Pool for sle-15-ppc64le"},{"description":"SLE-Module-Containers15-SP3-Source-Pool for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-Containers15-SP3-Source-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP3/ppc64le/product_source/","distro_target":"sle-15-ppc64le","autorefresh":false,"id":4688,"enabled":false}],"online_predecessor_ids":[1640,1788,1961],"product_class":"MODULE","eula_url":"","arch":"ppc64le","free":true,"shortname":"Containers-Module","description":"

This Module contains several packages revolving around containers and related tools.

","extensions":[],"release_stage":"released","id":2155,"identifier":"sle-module-containers","friendly_version":"15 SP3","offline_predecessor_ids":[1353],"name":"Containers Module","former_identifier":"sle-module-containers","release_type":null,"migration_extra":false,"friendly_name":"Containers Module 15 SP3 ppc64le","recommended":false,"version":"15.3"},{"predecessor_ids":[1865,1990],"online_predecessor_ids":[1865,1990],"repositories":[{"description":"SLE-Module-Python2-15-SP3-Updates for sle-15-ppc64le","name":"SLE-Module-Python2-15-SP3-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Python2/15-SP3/ppc64le/update/","enabled":true,"id":4819},{"enabled":false,"id":4820,"distro_target":"sle-15-ppc64le","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Python2/15-SP3/ppc64le/update_debug/","installer_updates":false,"name":"SLE-Module-Python2-15-SP3-Debuginfo-Updates","description":"SLE-Module-Python2-15-SP3-Debuginfo-Updates for sle-15-ppc64le"},{"description":"SLE-Module-Python2-15-SP3-Pool for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-Python2-15-SP3-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Python2/15-SP3/ppc64le/product/","distro_target":"sle-15-ppc64le","autorefresh":false,"id":4821,"enabled":true},{"id":4822,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Python2/15-SP3/ppc64le/product_debug/","autorefresh":false,"distro_target":"sle-15-ppc64le","name":"SLE-Module-Python2-15-SP3-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-Python2-15-SP3-Debuginfo-Pool for sle-15-ppc64le"},{"name":"SLE-Module-Python2-15-SP3-Source-Pool","installer_updates":false,"description":"SLE-Module-Python2-15-SP3-Source-Pool for sle-15-ppc64le","enabled":false,"id":4823,"autorefresh":false,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Python2/15-SP3/ppc64le/product_source/"}],"product_class":"MODULE","cpe":"cpe:/o:suse:sle-module-python2:15:sp3","product_type":"module","shortname":"Python2-Module","description":"

This module contains the python 2 packages.

Access to the Python 2 Module is included in your SUSE Linux Enterprise subscription. The module has a different lifecycle than SUSE Linux Enterprise itself. Packages in the this module are usually supported for at most three years.

","free":true,"eula_url":"","arch":"ppc64le","friendly_version":"15 SP3","extensions":[],"release_stage":"released","identifier":"sle-module-python2","id":2182,"recommended":true,"version":"15.3","name":"Python 2 Module","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"Python 2 Module 15 SP3 ppc64le","release_type":null,"former_identifier":"sle-module-python2"},{"repositories":[{"enabled":true,"id":4857,"distro_target":"sle-15-ppc64le","autorefresh":false,"url":"https://updates.suse.com/SUSE/Backports/SLE-15-SP3_ppc64le/standard/","installer_updates":false,"name":"SUSE-PackageHub-15-SP3-Backports-Pool","description":"SUSE-PackageHub-15-SP3-Backports-Pool for sle-15-ppc64le"},{"enabled":false,"id":4858,"autorefresh":true,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Backports/SLE-15-SP3_ppc64le/standard_debug/","name":"SUSE-PackageHub-15-SP3-Backports-Debuginfo","installer_updates":false,"description":"SUSE-PackageHub-15-SP3-Backports-Debuginfo for sle-15-ppc64le"},{"id":4859,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP3/ppc64le/update/","distro_target":"sle-15-ppc64le","autorefresh":true,"installer_updates":false,"name":"SLE-Module-Packagehub-Subpackages15-SP3-Updates","description":"SLE-Module-Packagehub-Subpackages15-SP3-Updates for sle-15-ppc64le"},{"name":"SLE-Module-Packagehub-Subpackages15-SP3-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-Packagehub-Subpackages15-SP3-Debuginfo-Updates for sle-15-ppc64le","id":4860,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP3/ppc64le/update_debug/","autorefresh":true,"distro_target":"sle-15-ppc64le"},{"description":"SUSE-PackageHub-15-SP3-Pool for sle-15-ppc64le","name":"SUSE-PackageHub-15-SP3-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Backports/SLE-15-SP3_ppc64le/product/","autorefresh":false,"distro_target":"sle-15-ppc64le","id":4861,"enabled":true},{"description":"SLE-Module-Packagehub-Subpackages15-SP3-Pool for sle-15-ppc64le","name":"SLE-Module-Packagehub-Subpackages15-SP3-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP3/ppc64le/product/","enabled":true,"id":4862},{"installer_updates":false,"name":"SLE-Module-Packagehub-Subpackages15-SP3-Debuginfo-Pool","description":"SLE-Module-Packagehub-Subpackages15-SP3-Debuginfo-Pool for sle-15-ppc64le","id":4863,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP3/ppc64le/product_debug/","distro_target":"sle-15-ppc64le","autorefresh":false},{"id":4864,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP3/ppc64le/product_source/","autorefresh":false,"distro_target":"sle-15-ppc64le","name":"SLE-Module-Packagehub-Subpackages15-SP3-Source-Pool","installer_updates":false,"description":"SLE-Module-Packagehub-Subpackages15-SP3-Source-Pool for sle-15-ppc64le"}],"online_predecessor_ids":[1741,1869,1948],"product_class":"MODULE","predecessor_ids":[1741,1869,1948],"product_type":"module","cpe":"cpe:/o:suse:packagehub:15:sp3","free":true,"shortname":"SUSE-PackageHub-15","description":"SUSE Package Hub is a free of charge module providing access to community maintained packages built to run on SUSE Linux Enterprise Server. Built from the same sources used in the openSUSE distributions, these quality packages provide additional software to what is found in the SUSE Linux Enterprise Server product. Packages from the Package Hub are delivered without L3 support from SUSE. General updates and fixes to the packages in SUSE Package Hub are provided by the openSUSE community based on their discretion, though SUSE will monitor and ensure that any known critical security issues will be addressed. Packages in the Package Hub are approved by SUSE for use with SUSE Linux Enterprise Server 15-SP3 and to not interfere with the supportability of SUSE Linux Enterprise Server, its modules and extensions. For more information about SUSE Package Hub please visit https://packagehub.suse.com.","arch":"ppc64le","eula_url":"","friendly_version":"15 SP3","release_stage":"released","identifier":"PackageHub","id":2189,"extensions":[],"version":"15.3","recommended":false,"release_type":null,"former_identifier":"PackageHub","migration_extra":false,"friendly_name":"SUSE Package Hub 15 SP3 ppc64le","offline_predecessor_ids":[1531,1811,1913],"name":"SUSE Package Hub"}],"description":"

The SUSE Linux Enterprise Basesystem Module delivers the base system of the product.

","shortname":"Basesystem-Module","free":true,"arch":"ppc64le","eula_url":"","online_predecessor_ids":[1588,1770,1944],"repositories":[{"enabled":true,"id":4624,"distro_target":"sle-15-ppc64le","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15-SP3/ppc64le/update/","installer_updates":false,"name":"SLE-Module-Basesystem15-SP3-Updates","description":"SLE-Module-Basesystem15-SP3-Updates for sle-15-ppc64le"},{"description":"SLE-Module-Basesystem15-SP3-Debuginfo-Updates for sle-15-ppc64le","name":"SLE-Module-Basesystem15-SP3-Debuginfo-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15-SP3/ppc64le/update_debug/","enabled":false,"id":4625},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP3/ppc64le/product/","distro_target":"sle-15-ppc64le","autorefresh":false,"id":4626,"enabled":true,"description":"SLE-Module-Basesystem15-SP3-Pool for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-Basesystem15-SP3-Pool"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP3/ppc64le/product_debug/","autorefresh":false,"distro_target":"sle-15-ppc64le","id":4627,"enabled":false,"description":"SLE-Module-Basesystem15-SP3-Debuginfo-Pool for sle-15-ppc64le","name":"SLE-Module-Basesystem15-SP3-Debuginfo-Pool","installer_updates":false},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP3/ppc64le/product_source/","distro_target":"sle-15-ppc64le","autorefresh":false,"id":4628,"enabled":false,"description":"SLE-Module-Basesystem15-SP3-Source-Pool for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-Basesystem15-SP3-Source-Pool"}],"product_class":"MODULE","predecessor_ids":[1588,1770,1944],"cpe":"cpe:/o:suse:sle-module-basesystem:15:sp3","product_type":"module"}],"friendly_version":"4.2"},{"predecessor_ids":[1898,2011],"online_predecessor_ids":[1898,2011],"repositories":[{"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-SUSE-Manager-Server/4.2/s390x/update/","autorefresh":true,"distro_target":"sle-15-s390x","id":4984,"enabled":true,"description":"SLE-Product-SUSE-Manager-Server-4.2-Updates for sle-15-s390x","name":"SLE-Product-SUSE-Manager-Server-4.2-Updates","installer_updates":false},{"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-SUSE-Manager-Server/4.2/s390x/update_debug/","autorefresh":true,"distro_target":"sle-15-s390x","id":4985,"enabled":false,"description":"SLE-Product-SUSE-Manager-Server-4.2-Debuginfo-Updates for sle-15-s390x","name":"SLE-Product-SUSE-Manager-Server-4.2-Debuginfo-Updates","installer_updates":false},{"installer_updates":false,"name":"SLE-Product-SUSE-Manager-Server-4.2-Pool","description":"SLE-Product-SUSE-Manager-Server-4.2-Pool for sle-15-s390x","id":4986,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-SUSE-Manager-Server/4.2/s390x/product/","distro_target":"sle-15-s390x","autorefresh":false},{"url":"https://updates.suse.com/SUSE/Products/SLE-Product-SUSE-Manager-Server/4.2/s390x/product_debug/","autorefresh":false,"distro_target":"sle-15-s390x","id":4987,"enabled":false,"description":"SLE-Product-SUSE-Manager-Server-4.2-Debuginfo-Pool for sle-15-s390x","name":"SLE-Product-SUSE-Manager-Server-4.2-Debuginfo-Pool","installer_updates":false},{"url":"https://updates.suse.com/SUSE/Products/SLE-Product-SUSE-Manager-Server/4.2/s390x/product_source/","distro_target":"sle-15-s390x","autorefresh":false,"id":4988,"enabled":false,"description":"SLE-Product-SUSE-Manager-Server-4.2-Source-Pool for sle-15-s390x","installer_updates":false,"name":"SLE-Product-SUSE-Manager-Server-4.2-Source-Pool"}],"product_class":"SMS-Z","product_type":"base","cpe":"cpe:/o:suse:suse-manager-server:4.2","free":false,"shortname":"SUSE Manager Server 4.2","description":"SUSE Manager lets you efficiently manage physical, virtual, and cloud-based Linux systems. It provides automated and cost-effective configuration and software management, asset management, and system provisioning.","eula_url":"https://updates.suse.com/SUSE/Products/SLE-Product-SUSE-Manager-Server/4.2/s390x/product.license/","arch":"s390x","friendly_version":"4.2","extensions":[{"version":"15.3","recommended":true,"release_type":null,"former_identifier":"sle-module-basesystem","migration_extra":false,"friendly_name":"Basesystem Module 15 SP3 s390x","offline_predecessor_ids":[1295,1367],"name":"Basesystem Module","friendly_version":"15 SP3","id":2144,"release_stage":"released","identifier":"sle-module-basesystem","extensions":[{"predecessor_ids":[1593,1775,1966],"repositories":[{"description":"SLE-Module-Desktop-Applications15-SP3-Updates for sle-15-s390x","name":"SLE-Module-Desktop-Applications15-SP3-Updates","installer_updates":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15-SP3/s390x/update/","autorefresh":true,"distro_target":"sle-15-s390x","id":4649,"enabled":true},{"description":"SLE-Module-Desktop-Applications15-SP3-Debuginfo-Updates for sle-15-s390x","installer_updates":false,"name":"SLE-Module-Desktop-Applications15-SP3-Debuginfo-Updates","distro_target":"sle-15-s390x","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15-SP3/s390x/update_debug/","enabled":false,"id":4650},{"installer_updates":false,"name":"SLE-Module-Desktop-Applications15-SP3-Pool","description":"SLE-Module-Desktop-Applications15-SP3-Pool for sle-15-s390x","id":4651,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP3/s390x/product/","distro_target":"sle-15-s390x","autorefresh":false},{"name":"SLE-Module-Desktop-Applications15-SP3-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-Desktop-Applications15-SP3-Debuginfo-Pool for sle-15-s390x","enabled":false,"id":4652,"autorefresh":false,"distro_target":"sle-15-s390x","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP3/s390x/product_debug/"},{"installer_updates":false,"name":"SLE-Module-Desktop-Applications15-SP3-Source-Pool","description":"SLE-Module-Desktop-Applications15-SP3-Source-Pool for sle-15-s390x","id":4653,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP3/s390x/product_source/","distro_target":"sle-15-s390x","autorefresh":false}],"online_predecessor_ids":[1593,1775,1966],"product_class":"MODULE","cpe":"cpe:/o:suse:sle-module-desktop-applications:15:sp3","product_type":"module","shortname":"Desktop-Applications-Module","description":"

The SUSE Linux Enterprise Desktop Applications Module delivers a basic set of Desktop functionality.

Access to the Desktop Applications Module is included in your SUSE Linux Enterprise product subscription.

","free":true,"eula_url":"","arch":"s390x","friendly_version":"15 SP3","extensions":[{"friendly_version":"15 SP3","extensions":[],"identifier":"sle-module-development-tools","release_stage":"released","id":2160,"recommended":false,"version":"15.3","offline_predecessor_ids":[1340,1429,1632,1891],"name":"Development Tools Module","former_identifier":"sle-sdk","release_type":null,"migration_extra":false,"friendly_name":"Development Tools Module 15 SP3 s390x","predecessor_ids":[1596,1793,1970],"online_predecessor_ids":[1596,1793,1970],"repositories":[{"id":4709,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15-SP3/s390x/update/","distro_target":"sle-15-s390x","autorefresh":true,"installer_updates":false,"name":"SLE-Module-DevTools15-SP3-Updates","description":"SLE-Module-DevTools15-SP3-Updates for sle-15-s390x"},{"description":"SLE-Module-DevTools15-SP3-Debuginfo-Updates for sle-15-s390x","installer_updates":false,"name":"SLE-Module-DevTools15-SP3-Debuginfo-Updates","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15-SP3/s390x/update_debug/","distro_target":"sle-15-s390x","autorefresh":true,"id":4710,"enabled":false},{"name":"SLE-Module-DevTools15-SP3-Pool","installer_updates":false,"description":"SLE-Module-DevTools15-SP3-Pool for sle-15-s390x","enabled":true,"id":4711,"autorefresh":false,"distro_target":"sle-15-s390x","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP3/s390x/product/"},{"name":"SLE-Module-DevTools15-SP3-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-DevTools15-SP3-Debuginfo-Pool for sle-15-s390x","enabled":false,"id":4712,"autorefresh":false,"distro_target":"sle-15-s390x","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP3/s390x/product_debug/"},{"installer_updates":false,"name":"SLE-Module-DevTools15-SP3-Source-Pool","description":"SLE-Module-DevTools15-SP3-Source-Pool for sle-15-s390x","enabled":false,"id":4713,"distro_target":"sle-15-s390x","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP3/s390x/product_source/"}],"product_class":"MODULE","product_type":"module","cpe":"cpe:/o:suse:sle-module-development-tools:15:sp3","free":true,"shortname":"Development-Tools-Module","description":"

The Development Tools Module helps you developing applications for SUSE Linux Enterprise 15.

Access to the Development Tools Module is included in your SUSE Linux Enterprise product subscription. The module has a different lifecycle than SUSE Linux Enterprise itself.

","eula_url":"","arch":"s390x"}],"identifier":"sle-module-desktop-applications","release_stage":"released","id":2148,"recommended":false,"version":"15.3","name":"Desktop Applications Module","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"Desktop Applications Module 15 SP3 s390x","release_type":null,"former_identifier":"sle-module-desktop-applications"},{"offline_predecessor_ids":[],"name":"Server Applications Module","former_identifier":"sle-module-server-applications","release_type":null,"friendly_name":"Server Applications Module 15 SP3 s390x","migration_extra":false,"recommended":true,"version":"15.3","extensions":[{"version":"15.3","recommended":true,"release_type":null,"former_identifier":"sle-module-web-scripting","friendly_name":"Web and Scripting Module 15 SP3 s390x","migration_extra":false,"offline_predecessor_ids":[1152],"name":"Web and Scripting Module","friendly_version":"15 SP3","release_stage":"released","identifier":"sle-module-web-scripting","id":2164,"extensions":[{"arch":"s390x","eula_url":"","description":"SUSE Manager lets you efficiently manage physical, virtual, and cloud-based Linux systems. It provides automated and cost-effective configuration and software management, asset management, and system provisioning.","shortname":"SUSE Manager Server 4.2 Module","free":true,"cpe":"cpe:/o:suse:sle-module-suse-manager-server:4.2","product_type":"module","product_class":"MODULE","online_predecessor_ids":[1904,2018],"repositories":[{"enabled":true,"id":5014,"distro_target":"sle-15-s390x","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-SUSE-Manager-Server/4.2/s390x/update/","installer_updates":false,"name":"SLE-Module-SUSE-Manager-Server-4.2-Updates","description":"SLE-Module-SUSE-Manager-Server-4.2-Updates for sle-15-s390x"},{"description":"SLE-Module-SUSE-Manager-Server-4.2-Debuginfo-Updates for sle-15-s390x","installer_updates":false,"name":"SLE-Module-SUSE-Manager-Server-4.2-Debuginfo-Updates","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-SUSE-Manager-Server/4.2/s390x/update_debug/","distro_target":"sle-15-s390x","autorefresh":true,"id":5015,"enabled":false},{"distro_target":"sle-15-s390x","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-SUSE-Manager-Server/4.2/s390x/product/","enabled":true,"id":5016,"description":"SLE-Module-SUSE-Manager-Server-4.2-Pool for sle-15-s390x","installer_updates":false,"name":"SLE-Module-SUSE-Manager-Server-4.2-Pool"},{"enabled":false,"id":5017,"autorefresh":false,"distro_target":"sle-15-s390x","url":"https://updates.suse.com/SUSE/Products/SLE-Module-SUSE-Manager-Server/4.2/s390x/product_debug/","name":"SLE-Module-SUSE-Manager-Server-4.2-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-SUSE-Manager-Server-4.2-Debuginfo-Pool for sle-15-s390x"},{"description":"SLE-Module-SUSE-Manager-Server-4.2-Source-Pool for sle-15-s390x","installer_updates":false,"name":"SLE-Module-SUSE-Manager-Server-4.2-Source-Pool","distro_target":"sle-15-s390x","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-SUSE-Manager-Server/4.2/s390x/product_source/","enabled":false,"id":5018}],"predecessor_ids":[1904,2018],"migration_extra":false,"friendly_name":"SUSE Manager Server Module 4.2 s390x","release_type":null,"former_identifier":"sle-module-suse-manager-server","name":"SUSE Manager Server Module","offline_predecessor_ids":[],"version":"4.2","recommended":true,"id":2227,"release_stage":"released","identifier":"sle-module-suse-manager-server","extensions":[],"friendly_version":"4.2"}],"free":true,"shortname":"Web-Scripting-Module","description":"

The SUSE Linux Enterprise Web and Scripting Module should contains additional packages that are helpful when running a webserver.

Access to the Web and Scripting Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself: Package versions in this module are usually supported for at most three years. We are planning to release more recent versions on a schedule of approximately 18 month; the exact dates may differ per package.

","arch":"s390x","eula_url":"","repositories":[{"id":4729,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/15-SP3/s390x/update/","autorefresh":true,"distro_target":"sle-15-s390x","name":"SLE-Module-Web-Scripting15-SP3-Updates","installer_updates":false,"description":"SLE-Module-Web-Scripting15-SP3-Updates for sle-15-s390x"},{"description":"SLE-Module-Web-Scripting15-SP3-Debuginfo-Updates for sle-15-s390x","installer_updates":false,"name":"SLE-Module-Web-Scripting15-SP3-Debuginfo-Updates","distro_target":"sle-15-s390x","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/15-SP3/s390x/update_debug/","enabled":false,"id":4730},{"id":4731,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP3/s390x/product/","autorefresh":false,"distro_target":"sle-15-s390x","name":"SLE-Module-Web-Scripting15-SP3-Pool","installer_updates":false,"description":"SLE-Module-Web-Scripting15-SP3-Pool for sle-15-s390x"},{"description":"SLE-Module-Web-Scripting15-SP3-Debuginfo-Pool for sle-15-s390x","installer_updates":false,"name":"SLE-Module-Web-Scripting15-SP3-Debuginfo-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP3/s390x/product_debug/","distro_target":"sle-15-s390x","autorefresh":false,"id":4732,"enabled":false},{"enabled":false,"id":4733,"autorefresh":false,"distro_target":"sle-15-s390x","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP3/s390x/product_source/","name":"SLE-Module-Web-Scripting15-SP3-Source-Pool","installer_updates":false,"description":"SLE-Module-Web-Scripting15-SP3-Source-Pool for sle-15-s390x"}],"online_predecessor_ids":[1720,1797,1975],"product_class":"MODULE","predecessor_ids":[1720,1797,1975],"product_type":"module","cpe":"cpe:/o:suse:sle-module-web-scripting:15:sp3"},{"friendly_version":"15 SP3","identifier":"sle-module-legacy","release_stage":"released","id":2170,"extensions":[],"version":"15.3","recommended":false,"release_type":null,"former_identifier":"sle-module-legacy","migration_extra":false,"friendly_name":"Legacy Module 15 SP3 s390x","offline_predecessor_ids":[1149],"name":"Legacy Module","product_class":"MODULE","online_predecessor_ids":[1602,1803,1981],"repositories":[{"autorefresh":true,"distro_target":"sle-15-s390x","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/15-SP3/s390x/update/","enabled":true,"id":4759,"description":"SLE-Module-Legacy15-SP3-Updates for sle-15-s390x","name":"SLE-Module-Legacy15-SP3-Updates","installer_updates":false},{"distro_target":"sle-15-s390x","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/15-SP3/s390x/update_debug/","enabled":false,"id":4760,"description":"SLE-Module-Legacy15-SP3-Debuginfo-Updates for sle-15-s390x","installer_updates":false,"name":"SLE-Module-Legacy15-SP3-Debuginfo-Updates"},{"description":"SLE-Module-Legacy15-SP3-Pool for sle-15-s390x","installer_updates":false,"name":"SLE-Module-Legacy15-SP3-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15-SP3/s390x/product/","distro_target":"sle-15-s390x","autorefresh":false,"id":4761,"enabled":true},{"description":"SLE-Module-Legacy15-SP3-Debuginfo-Pool for sle-15-s390x","installer_updates":false,"name":"SLE-Module-Legacy15-SP3-Debuginfo-Pool","distro_target":"sle-15-s390x","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15-SP3/s390x/product_debug/","enabled":false,"id":4762},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15-SP3/s390x/product_source/","distro_target":"sle-15-s390x","autorefresh":false,"id":4763,"enabled":false,"description":"SLE-Module-Legacy15-SP3-Source-Pool for sle-15-s390x","installer_updates":false,"name":"SLE-Module-Legacy15-SP3-Source-Pool"}],"predecessor_ids":[1602,1803,1981],"product_type":"module","cpe":"cpe:/o:suse:sle-module-legacy:15:sp3","free":true,"shortname":"Legacy-Module","description":"

The Legacy Module helps you migrating applications from SUSE Linux Enterprise 12 and other systems to SUSE Linux Enterprise 15, by providing packages which are discontinued on SUSE Linux Enterprise Server, such as: ntp, IBM Java 8, and a number of libraries.

Access to the Legacy Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself. Packages in the this module are usually supported for at most three years.

","arch":"s390x","eula_url":""},{"free":true,"description":"

The Public Cloud Module is a collection of tools that enables you to create and manage cloud images from the commandline on SUSE Linux Enterprise Server. When building your own images with KIWI or SUSE Studio, initialization code specific to the target cloud is included in that image.

Access to the Public Cloud Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself; please check the Release Notes for further details.

","shortname":"Public-Cloud-Module","eula_url":"","arch":"s390x","predecessor_ids":[1646,1807,1987],"online_predecessor_ids":[1646,1807,1987],"product_class":"MODULE","repositories":[{"name":"SLE-Module-Public-Cloud15-SP3-Updates","installer_updates":false,"description":"SLE-Module-Public-Cloud15-SP3-Updates for sle-15-s390x","enabled":true,"id":4779,"autorefresh":true,"distro_target":"sle-15-s390x","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/15-SP3/s390x/update/"},{"description":"SLE-Module-Public-Cloud15-SP3-Debuginfo-Updates for sle-15-s390x","name":"SLE-Module-Public-Cloud15-SP3-Debuginfo-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-15-s390x","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/15-SP3/s390x/update_debug/","enabled":false,"id":4780},{"name":"SLE-Module-Public-Cloud15-SP3-Pool","installer_updates":false,"description":"SLE-Module-Public-Cloud15-SP3-Pool for sle-15-s390x","id":4781,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP3/s390x/product/","autorefresh":false,"distro_target":"sle-15-s390x"},{"name":"SLE-Module-Public-Cloud15-SP3-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-Public-Cloud15-SP3-Debuginfo-Pool for sle-15-s390x","id":4782,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP3/s390x/product_debug/","autorefresh":false,"distro_target":"sle-15-s390x"},{"name":"SLE-Module-Public-Cloud15-SP3-Source-Pool","installer_updates":false,"description":"SLE-Module-Public-Cloud15-SP3-Source-Pool for sle-15-s390x","id":4783,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP3/s390x/product_source/","autorefresh":false,"distro_target":"sle-15-s390x"}],"product_type":"module","cpe":"cpe:/o:suse:sle-module-public-cloud:15:sp3","recommended":false,"version":"15.3","offline_predecessor_ids":[1219],"name":"Public Cloud Module","release_type":null,"former_identifier":"sle-module-public-cloud","migration_extra":false,"friendly_name":"Public Cloud Module 15 SP3 s390x","friendly_version":"15 SP3","extensions":[],"id":2174,"release_stage":"released","identifier":"sle-module-public-cloud"},{"version":"15.3","recommended":false,"friendly_name":"SUSE Linux Enterprise High Availability Extension 15 SP3 s390x","migration_extra":false,"former_identifier":"sle-ha","release_type":null,"name":"SUSE Linux Enterprise High Availability Extension","offline_predecessor_ids":[1080,1082,1084,1086,1109,1110,1257,1287,1434,1436,1636,1638,1883,1885],"friendly_version":"15 SP3","release_stage":"released","id":2194,"identifier":"sle-ha","extensions":[],"shortname":"SLEHA15-SP3","description":"SUSE Linux High Availability Extension provides mature, industry-leading open-source high-availability clustering technologies that are easy to set up and use. It can be deployed in physical and/or virtual environments, and can cluster physical servers, virtual servers, or any combination of the two to suit your business’ needs.","free":false,"arch":"s390x","eula_url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP3/s390x/product.license/","online_predecessor_ids":[1605,1784,1958],"repositories":[{"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-HA/15-SP3/s390x/update/","autorefresh":true,"distro_target":"sle-15-s390x","id":4891,"enabled":true,"description":"SLE-Product-HA15-SP3-Updates for sle-15-s390x","name":"SLE-Product-HA15-SP3-Updates","installer_updates":false},{"id":4892,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-HA/15-SP3/s390x/update_debug/","autorefresh":true,"distro_target":"sle-15-s390x","name":"SLE-Product-HA15-SP3-Debuginfo-Updates","installer_updates":false,"description":"SLE-Product-HA15-SP3-Debuginfo-Updates for sle-15-s390x"},{"description":"SLE-Product-HA15-SP3-Pool for sle-15-s390x","name":"SLE-Product-HA15-SP3-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP3/s390x/product/","autorefresh":false,"distro_target":"sle-15-s390x","id":4893,"enabled":true},{"installer_updates":false,"name":"SLE-Product-HA15-SP3-Debuginfo-Pool","description":"SLE-Product-HA15-SP3-Debuginfo-Pool for sle-15-s390x","id":4894,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP3/s390x/product_debug/","distro_target":"sle-15-s390x","autorefresh":false},{"enabled":false,"id":4895,"distro_target":"sle-15-s390x","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP3/s390x/product_source/","installer_updates":false,"name":"SLE-Product-HA15-SP3-Source-Pool","description":"SLE-Product-HA15-SP3-Source-Pool for sle-15-s390x"}],"product_class":"SLE-HAE-Z","predecessor_ids":[1605,1784,1958],"cpe":"cpe:/o:suse:sle-ha:15:sp3","product_type":"extension"}],"identifier":"sle-module-server-applications","release_stage":"released","id":2152,"friendly_version":"15 SP3","eula_url":"","arch":"s390x","free":true,"description":"

The SUSE Linux Enterprise Server Applications Module delivers a basic set of Server functionality.

Access to the Server Applications Module is included in your SUSE Linux Enterprise Server subscription.

","shortname":"Server-Applications-Module","product_type":"module","cpe":"cpe:/o:suse:sle-module-server-applications:15:sp3","predecessor_ids":[1599,1779,1954],"online_predecessor_ids":[1599,1779,1954],"repositories":[{"description":"SLE-Module-Server-Applications15-SP3-Updates for sle-15-s390x","name":"SLE-Module-Server-Applications15-SP3-Updates","installer_updates":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15-SP3/s390x/update/","autorefresh":true,"distro_target":"sle-15-s390x","id":4669,"enabled":true},{"description":"SLE-Module-Server-Applications15-SP3-Debuginfo-Updates for sle-15-s390x","name":"SLE-Module-Server-Applications15-SP3-Debuginfo-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-15-s390x","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15-SP3/s390x/update_debug/","enabled":false,"id":4670},{"id":4671,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP3/s390x/product/","distro_target":"sle-15-s390x","autorefresh":false,"installer_updates":false,"name":"SLE-Module-Server-Applications15-SP3-Pool","description":"SLE-Module-Server-Applications15-SP3-Pool for sle-15-s390x"},{"description":"SLE-Module-Server-Applications15-SP3-Debuginfo-Pool for sle-15-s390x","installer_updates":false,"name":"SLE-Module-Server-Applications15-SP3-Debuginfo-Pool","distro_target":"sle-15-s390x","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP3/s390x/product_debug/","enabled":false,"id":4672},{"description":"SLE-Module-Server-Applications15-SP3-Source-Pool for sle-15-s390x","name":"SLE-Module-Server-Applications15-SP3-Source-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP3/s390x/product_source/","autorefresh":false,"distro_target":"sle-15-s390x","id":4673,"enabled":false}],"product_class":"MODULE"},{"extensions":[],"id":2156,"release_stage":"released","identifier":"sle-module-containers","friendly_version":"15 SP3","offline_predecessor_ids":[1354],"name":"Containers Module","release_type":null,"former_identifier":"sle-module-containers","migration_extra":false,"friendly_name":"Containers Module 15 SP3 s390x","recommended":false,"version":"15.3","product_type":"module","cpe":"cpe:/o:suse:sle-module-containers:15:sp3","predecessor_ids":[1641,1789,1962],"online_predecessor_ids":[1641,1789,1962],"repositories":[{"description":"SLE-Module-Containers15-SP3-Updates for sle-15-s390x","name":"SLE-Module-Containers15-SP3-Updates","installer_updates":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/15-SP3/s390x/update/","autorefresh":true,"distro_target":"sle-15-s390x","id":4689,"enabled":true},{"autorefresh":true,"distro_target":"sle-15-s390x","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/15-SP3/s390x/update_debug/","enabled":false,"id":4690,"description":"SLE-Module-Containers15-SP3-Debuginfo-Updates for sle-15-s390x","name":"SLE-Module-Containers15-SP3-Debuginfo-Updates","installer_updates":false},{"description":"SLE-Module-Containers15-SP3-Pool for sle-15-s390x","installer_updates":false,"name":"SLE-Module-Containers15-SP3-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP3/s390x/product/","distro_target":"sle-15-s390x","autorefresh":false,"id":4691,"enabled":true},{"enabled":false,"id":4692,"autorefresh":false,"distro_target":"sle-15-s390x","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP3/s390x/product_debug/","name":"SLE-Module-Containers15-SP3-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-Containers15-SP3-Debuginfo-Pool for sle-15-s390x"},{"name":"SLE-Module-Containers15-SP3-Source-Pool","installer_updates":false,"description":"SLE-Module-Containers15-SP3-Source-Pool for sle-15-s390x","enabled":false,"id":4693,"autorefresh":false,"distro_target":"sle-15-s390x","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP3/s390x/product_source/"}],"product_class":"MODULE","eula_url":"","arch":"s390x","free":true,"shortname":"Containers-Module","description":"

This Module contains several packages revolving around containers and related tools.

"},{"name":"Python 2 Module","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"Python 2 Module 15 SP3 s390x","former_identifier":"sle-module-python2","release_type":null,"recommended":true,"version":"15.3","extensions":[],"id":2183,"release_stage":"released","identifier":"sle-module-python2","friendly_version":"15 SP3","eula_url":"","arch":"s390x","description":"

This module contains the python 2 packages.

Access to the Python 2 Module is included in your SUSE Linux Enterprise subscription. The module has a different lifecycle than SUSE Linux Enterprise itself. Packages in the this module are usually supported for at most three years.

","shortname":"Python2-Module","free":true,"cpe":"cpe:/o:suse:sle-module-python2:15:sp3","product_type":"module","predecessor_ids":[1866,1991],"online_predecessor_ids":[1866,1991],"product_class":"MODULE","repositories":[{"id":4824,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Python2/15-SP3/s390x/update/","distro_target":"sle-15-s390x","autorefresh":true,"installer_updates":false,"name":"SLE-Module-Python2-15-SP3-Updates","description":"SLE-Module-Python2-15-SP3-Updates for sle-15-s390x"},{"enabled":false,"id":4825,"autorefresh":true,"distro_target":"sle-15-s390x","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Python2/15-SP3/s390x/update_debug/","name":"SLE-Module-Python2-15-SP3-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-Python2-15-SP3-Debuginfo-Updates for sle-15-s390x"},{"description":"SLE-Module-Python2-15-SP3-Pool for sle-15-s390x","name":"SLE-Module-Python2-15-SP3-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Python2/15-SP3/s390x/product/","autorefresh":false,"distro_target":"sle-15-s390x","id":4826,"enabled":true},{"installer_updates":false,"name":"SLE-Module-Python2-15-SP3-Debuginfo-Pool","description":"SLE-Module-Python2-15-SP3-Debuginfo-Pool for sle-15-s390x","id":4827,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Python2/15-SP3/s390x/product_debug/","distro_target":"sle-15-s390x","autorefresh":false},{"distro_target":"sle-15-s390x","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Python2/15-SP3/s390x/product_source/","enabled":false,"id":4828,"description":"SLE-Module-Python2-15-SP3-Source-Pool for sle-15-s390x","installer_updates":false,"name":"SLE-Module-Python2-15-SP3-Source-Pool"}]},{"release_type":null,"former_identifier":"PackageHub","migration_extra":false,"friendly_name":"SUSE Package Hub 15 SP3 s390x","offline_predecessor_ids":[1530,1812,1914],"name":"SUSE Package Hub","version":"15.3","recommended":false,"id":2190,"release_stage":"released","identifier":"PackageHub","extensions":[],"friendly_version":"15 SP3","arch":"s390x","eula_url":"","free":true,"description":"SUSE Package Hub is a free of charge module providing access to community maintained packages built to run on SUSE Linux Enterprise Server. Built from the same sources used in the openSUSE distributions, these quality packages provide additional software to what is found in the SUSE Linux Enterprise Server product. Packages from the Package Hub are delivered without L3 support from SUSE. General updates and fixes to the packages in SUSE Package Hub are provided by the openSUSE community based on their discretion, though SUSE will monitor and ensure that any known critical security issues will be addressed. Packages in the Package Hub are approved by SUSE for use with SUSE Linux Enterprise Server 15-SP3 and to not interfere with the supportability of SUSE Linux Enterprise Server, its modules and extensions. For more information about SUSE Package Hub please visit https://packagehub.suse.com.","shortname":"SUSE-PackageHub-15","product_type":"module","cpe":"cpe:/o:suse:packagehub:15:sp3","online_predecessor_ids":[1742,1870,1949],"product_class":"MODULE","repositories":[{"id":4865,"enabled":true,"url":"https://updates.suse.com/SUSE/Backports/SLE-15-SP3_s390x/standard/","distro_target":"sle-15-s390x","autorefresh":false,"installer_updates":false,"name":"SUSE-PackageHub-15-SP3-Backports-Pool","description":"SUSE-PackageHub-15-SP3-Backports-Pool for sle-15-s390x"},{"id":4866,"enabled":false,"url":"https://updates.suse.com/SUSE/Backports/SLE-15-SP3_s390x/standard_debug/","autorefresh":true,"distro_target":"sle-15-s390x","name":"SUSE-PackageHub-15-SP3-Backports-Debuginfo","installer_updates":false,"description":"SUSE-PackageHub-15-SP3-Backports-Debuginfo for sle-15-s390x"},{"description":"SLE-Module-Packagehub-Subpackages15-SP3-Updates for sle-15-s390x","installer_updates":false,"name":"SLE-Module-Packagehub-Subpackages15-SP3-Updates","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP3/s390x/update/","distro_target":"sle-15-s390x","autorefresh":true,"id":4867,"enabled":true},{"description":"SLE-Module-Packagehub-Subpackages15-SP3-Debuginfo-Updates for sle-15-s390x","installer_updates":false,"name":"SLE-Module-Packagehub-Subpackages15-SP3-Debuginfo-Updates","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP3/s390x/update_debug/","distro_target":"sle-15-s390x","autorefresh":true,"id":4868,"enabled":false},{"id":4869,"enabled":true,"url":"https://updates.suse.com/SUSE/Backports/SLE-15-SP3_s390x/product/","distro_target":"sle-15-s390x","autorefresh":false,"installer_updates":false,"name":"SUSE-PackageHub-15-SP3-Pool","description":"SUSE-PackageHub-15-SP3-Pool for sle-15-s390x"},{"enabled":true,"id":4870,"autorefresh":false,"distro_target":"sle-15-s390x","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP3/s390x/product/","name":"SLE-Module-Packagehub-Subpackages15-SP3-Pool","installer_updates":false,"description":"SLE-Module-Packagehub-Subpackages15-SP3-Pool for sle-15-s390x"},{"installer_updates":false,"name":"SLE-Module-Packagehub-Subpackages15-SP3-Debuginfo-Pool","description":"SLE-Module-Packagehub-Subpackages15-SP3-Debuginfo-Pool for sle-15-s390x","id":4871,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP3/s390x/product_debug/","distro_target":"sle-15-s390x","autorefresh":false},{"description":"SLE-Module-Packagehub-Subpackages15-SP3-Source-Pool for sle-15-s390x","name":"SLE-Module-Packagehub-Subpackages15-SP3-Source-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP3/s390x/product_source/","autorefresh":false,"distro_target":"sle-15-s390x","id":4872,"enabled":false}],"predecessor_ids":[1742,1870,1949]}],"free":true,"description":"

The SUSE Linux Enterprise Basesystem Module delivers the base system of the product.

","shortname":"Basesystem-Module","arch":"s390x","eula_url":"","online_predecessor_ids":[1587,1771,1945],"product_class":"MODULE","repositories":[{"distro_target":"sle-15-s390x","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15-SP3/s390x/update/","enabled":true,"id":4629,"description":"SLE-Module-Basesystem15-SP3-Updates for sle-15-s390x","installer_updates":false,"name":"SLE-Module-Basesystem15-SP3-Updates"},{"id":4630,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15-SP3/s390x/update_debug/","distro_target":"sle-15-s390x","autorefresh":true,"installer_updates":false,"name":"SLE-Module-Basesystem15-SP3-Debuginfo-Updates","description":"SLE-Module-Basesystem15-SP3-Debuginfo-Updates for sle-15-s390x"},{"installer_updates":false,"name":"SLE-Module-Basesystem15-SP3-Pool","description":"SLE-Module-Basesystem15-SP3-Pool for sle-15-s390x","enabled":true,"id":4631,"distro_target":"sle-15-s390x","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP3/s390x/product/"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP3/s390x/product_debug/","distro_target":"sle-15-s390x","autorefresh":false,"id":4632,"enabled":false,"description":"SLE-Module-Basesystem15-SP3-Debuginfo-Pool for sle-15-s390x","installer_updates":false,"name":"SLE-Module-Basesystem15-SP3-Debuginfo-Pool"},{"description":"SLE-Module-Basesystem15-SP3-Source-Pool for sle-15-s390x","installer_updates":false,"name":"SLE-Module-Basesystem15-SP3-Source-Pool","distro_target":"sle-15-s390x","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP3/s390x/product_source/","enabled":false,"id":4633}],"predecessor_ids":[1587,1771,1945],"product_type":"module","cpe":"cpe:/o:suse:sle-module-basesystem:15:sp3"}],"identifier":"SUSE-Manager-Server","release_stage":"released","id":2221,"recommended":false,"version":"4.2","offline_predecessor_ids":[],"name":"SUSE Manager Server","former_identifier":"SUSE-Manager-Server","release_type":null,"friendly_name":"SUSE Manager Server 4.2 s390x","migration_extra":false},{"online_predecessor_ids":[1899,2012],"product_class":"SMS-X86","repositories":[{"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-SUSE-Manager-Server/4.2/x86_64/update/","autorefresh":true,"distro_target":"sle-15-x86_64","id":4989,"enabled":true,"description":"SLE-Product-SUSE-Manager-Server-4.2-Updates for sle-15-x86_64","name":"SLE-Product-SUSE-Manager-Server-4.2-Updates","installer_updates":false},{"enabled":false,"id":4990,"distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-SUSE-Manager-Server/4.2/x86_64/update_debug/","installer_updates":false,"name":"SLE-Product-SUSE-Manager-Server-4.2-Debuginfo-Updates","description":"SLE-Product-SUSE-Manager-Server-4.2-Debuginfo-Updates for sle-15-x86_64"},{"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Product-SUSE-Manager-Server/4.2/x86_64/product/","enabled":true,"id":4991,"description":"SLE-Product-SUSE-Manager-Server-4.2-Pool for sle-15-x86_64","name":"SLE-Product-SUSE-Manager-Server-4.2-Pool","installer_updates":false},{"id":4992,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-SUSE-Manager-Server/4.2/x86_64/product_debug/","autorefresh":false,"distro_target":"sle-15-x86_64","name":"SLE-Product-SUSE-Manager-Server-4.2-Debuginfo-Pool","installer_updates":false,"description":"SLE-Product-SUSE-Manager-Server-4.2-Debuginfo-Pool for sle-15-x86_64"},{"installer_updates":false,"name":"SLE-Product-SUSE-Manager-Server-4.2-Source-Pool","description":"SLE-Product-SUSE-Manager-Server-4.2-Source-Pool for sle-15-x86_64","id":4993,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-SUSE-Manager-Server/4.2/x86_64/product_source/","distro_target":"sle-15-x86_64","autorefresh":false}],"predecessor_ids":[1899,2012],"product_type":"base","cpe":"cpe:/o:suse:suse-manager-server:4.2","free":false,"description":"SUSE Manager lets you efficiently manage physical, virtual, and cloud-based Linux systems. It provides automated and cost-effective configuration and software management, asset management, and system provisioning.","shortname":"SUSE Manager Server 4.2","arch":"x86_64","eula_url":"https://updates.suse.com/SUSE/Products/SLE-Product-SUSE-Manager-Server/4.2/x86_64/product.license/","friendly_version":"4.2","release_stage":"released","identifier":"SUSE-Manager-Server","id":2222,"extensions":[{"description":"

The SUSE Linux Enterprise Basesystem Module delivers the base system of the product.

","shortname":"Basesystem-Module","free":true,"eula_url":"","arch":"x86_64","predecessor_ids":[1576,1772,1946],"product_class":"MODULE","online_predecessor_ids":[1576,1772,1946],"repositories":[{"name":"SLE-Module-Basesystem15-SP3-Updates","installer_updates":false,"description":"SLE-Module-Basesystem15-SP3-Updates for sle-15-x86_64","enabled":true,"id":4634,"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15-SP3/x86_64/update/"},{"installer_updates":false,"name":"SLE-Module-Basesystem15-SP3-Debuginfo-Updates","description":"SLE-Module-Basesystem15-SP3-Debuginfo-Updates for sle-15-x86_64","id":4635,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15-SP3/x86_64/update_debug/","distro_target":"sle-15-x86_64","autorefresh":true},{"id":4636,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP3/x86_64/product/","autorefresh":false,"distro_target":"sle-15-x86_64","name":"SLE-Module-Basesystem15-SP3-Pool","installer_updates":false,"description":"SLE-Module-Basesystem15-SP3-Pool for sle-15-x86_64"},{"name":"SLE-Module-Basesystem15-SP3-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-Basesystem15-SP3-Debuginfo-Pool for sle-15-x86_64","id":4637,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP3/x86_64/product_debug/","autorefresh":false,"distro_target":"sle-15-x86_64"},{"installer_updates":false,"name":"SLE-Module-Basesystem15-SP3-Source-Pool","description":"SLE-Module-Basesystem15-SP3-Source-Pool for sle-15-x86_64","id":4638,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP3/x86_64/product_source/","distro_target":"sle-15-x86_64","autorefresh":false}],"cpe":"cpe:/o:suse:sle-module-basesystem:15:sp3","product_type":"module","recommended":true,"version":"15.3","name":"Basesystem Module","offline_predecessor_ids":[1212,1368,1440],"migration_extra":false,"friendly_name":"Basesystem Module 15 SP3 x86_64","release_type":null,"former_identifier":"sle-module-basesystem","friendly_version":"15 SP3","extensions":[{"recommended":false,"version":"15.3","name":"Desktop Applications Module","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"Desktop Applications Module 15 SP3 x86_64","former_identifier":"sle-module-desktop-applications","release_type":null,"friendly_version":"15 SP3","extensions":[{"version":"15.3","recommended":false,"friendly_name":"Development Tools Module 15 SP3 x86_64","migration_extra":false,"release_type":null,"former_identifier":"sle-sdk","name":"Development Tools Module","offline_predecessor_ids":[1341,1427,1630,1892],"friendly_version":"15 SP3","identifier":"sle-module-development-tools","release_stage":"released","id":2161,"extensions":[],"shortname":"Development-Tools-Module","description":"

The Development Tools Module helps you developing applications for SUSE Linux Enterprise 15.

Access to the Development Tools Module is included in your SUSE Linux Enterprise product subscription. The module has a different lifecycle than SUSE Linux Enterprise itself.

","free":true,"arch":"x86_64","eula_url":"","online_predecessor_ids":[1579,1794,1971],"repositories":[{"installer_updates":false,"name":"SLE-Module-DevTools15-SP3-Updates","description":"SLE-Module-DevTools15-SP3-Updates for sle-15-x86_64","enabled":true,"id":4714,"distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15-SP3/x86_64/update/"},{"name":"SLE-Module-DevTools15-SP3-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-DevTools15-SP3-Debuginfo-Updates for sle-15-x86_64","id":4715,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15-SP3/x86_64/update_debug/","autorefresh":true,"distro_target":"sle-15-x86_64"},{"installer_updates":false,"name":"SLE-Module-DevTools15-SP3-Pool","description":"SLE-Module-DevTools15-SP3-Pool for sle-15-x86_64","enabled":true,"id":4716,"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP3/x86_64/product/"},{"installer_updates":false,"name":"SLE-Module-DevTools15-SP3-Debuginfo-Pool","description":"SLE-Module-DevTools15-SP3-Debuginfo-Pool for sle-15-x86_64","enabled":false,"id":4717,"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP3/x86_64/product_debug/"},{"description":"SLE-Module-DevTools15-SP3-Source-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-DevTools15-SP3-Source-Pool","distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP3/x86_64/product_source/","enabled":false,"id":4718}],"product_class":"MODULE","predecessor_ids":[1579,1794,1971],"cpe":"cpe:/o:suse:sle-module-development-tools:15:sp3","product_type":"module"}],"identifier":"sle-module-desktop-applications","release_stage":"released","id":2149,"description":"

The SUSE Linux Enterprise Desktop Applications Module delivers a basic set of Desktop functionality.

Access to the Desktop Applications Module is included in your SUSE Linux Enterprise product subscription.

","shortname":"Desktop-Applications-Module","free":true,"eula_url":"","arch":"x86_64","predecessor_ids":[1578,1776,1967],"product_class":"MODULE","online_predecessor_ids":[1578,1776,1967],"repositories":[{"name":"SLE-Module-Desktop-Applications15-SP3-Updates","installer_updates":false,"description":"SLE-Module-Desktop-Applications15-SP3-Updates for sle-15-x86_64","enabled":true,"id":4654,"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15-SP3/x86_64/update/"},{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15-SP3/x86_64/update_debug/","autorefresh":true,"distro_target":"sle-15-x86_64","id":4655,"enabled":false,"description":"SLE-Module-Desktop-Applications15-SP3-Debuginfo-Updates for sle-15-x86_64","name":"SLE-Module-Desktop-Applications15-SP3-Debuginfo-Updates","installer_updates":false},{"id":4656,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP3/x86_64/product/","autorefresh":false,"distro_target":"sle-15-x86_64","name":"SLE-Module-Desktop-Applications15-SP3-Pool","installer_updates":false,"description":"SLE-Module-Desktop-Applications15-SP3-Pool for sle-15-x86_64"},{"description":"SLE-Module-Desktop-Applications15-SP3-Debuginfo-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Desktop-Applications15-SP3-Debuginfo-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP3/x86_64/product_debug/","distro_target":"sle-15-x86_64","autorefresh":false,"id":4657,"enabled":false},{"enabled":false,"id":4658,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP3/x86_64/product_source/","name":"SLE-Module-Desktop-Applications15-SP3-Source-Pool","installer_updates":false,"description":"SLE-Module-Desktop-Applications15-SP3-Source-Pool for sle-15-x86_64"}],"cpe":"cpe:/o:suse:sle-module-desktop-applications:15:sp3","product_type":"module"},{"eula_url":"","arch":"x86_64","description":"

The SUSE Linux Enterprise Server Applications Module delivers a basic set of Server functionality.

Access to the Server Applications Module is included in your SUSE Linux Enterprise Server subscription.

","shortname":"Server-Applications-Module","free":true,"cpe":"cpe:/o:suse:sle-module-server-applications:15:sp3","product_type":"module","predecessor_ids":[1580,1780,1955],"repositories":[{"enabled":true,"id":4674,"distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15-SP3/x86_64/update/","installer_updates":false,"name":"SLE-Module-Server-Applications15-SP3-Updates","description":"SLE-Module-Server-Applications15-SP3-Updates for sle-15-x86_64"},{"name":"SLE-Module-Server-Applications15-SP3-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-Server-Applications15-SP3-Debuginfo-Updates for sle-15-x86_64","enabled":false,"id":4675,"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15-SP3/x86_64/update_debug/"},{"description":"SLE-Module-Server-Applications15-SP3-Pool for sle-15-x86_64","name":"SLE-Module-Server-Applications15-SP3-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP3/x86_64/product/","enabled":true,"id":4676},{"description":"SLE-Module-Server-Applications15-SP3-Debuginfo-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Server-Applications15-SP3-Debuginfo-Pool","distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP3/x86_64/product_debug/","enabled":false,"id":4677},{"id":4678,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP3/x86_64/product_source/","distro_target":"sle-15-x86_64","autorefresh":false,"installer_updates":false,"name":"SLE-Module-Server-Applications15-SP3-Source-Pool","description":"SLE-Module-Server-Applications15-SP3-Source-Pool for sle-15-x86_64"}],"online_predecessor_ids":[1580,1780,1955],"product_class":"MODULE","name":"Server Applications Module","offline_predecessor_ids":[],"friendly_name":"Server Applications Module 15 SP3 x86_64","migration_extra":false,"former_identifier":"sle-module-server-applications","release_type":null,"recommended":true,"version":"15.3","extensions":[{"repositories":[{"installer_updates":false,"name":"SLE-Module-Web-Scripting15-SP3-Updates","description":"SLE-Module-Web-Scripting15-SP3-Updates for sle-15-x86_64","id":4734,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/15-SP3/x86_64/update/","distro_target":"sle-15-x86_64","autorefresh":true},{"installer_updates":false,"name":"SLE-Module-Web-Scripting15-SP3-Debuginfo-Updates","description":"SLE-Module-Web-Scripting15-SP3-Debuginfo-Updates for sle-15-x86_64","enabled":false,"id":4735,"distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/15-SP3/x86_64/update_debug/"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP3/x86_64/product/","autorefresh":false,"distro_target":"sle-15-x86_64","id":4736,"enabled":true,"description":"SLE-Module-Web-Scripting15-SP3-Pool for sle-15-x86_64","name":"SLE-Module-Web-Scripting15-SP3-Pool","installer_updates":false},{"enabled":false,"id":4737,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP3/x86_64/product_debug/","name":"SLE-Module-Web-Scripting15-SP3-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-Web-Scripting15-SP3-Debuginfo-Pool for sle-15-x86_64"},{"description":"SLE-Module-Web-Scripting15-SP3-Source-Pool for sle-15-x86_64","name":"SLE-Module-Web-Scripting15-SP3-Source-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP3/x86_64/product_source/","autorefresh":false,"distro_target":"sle-15-x86_64","id":4738,"enabled":false}],"online_predecessor_ids":[1721,1798,1976],"product_class":"MODULE","predecessor_ids":[1721,1798,1976],"cpe":"cpe:/o:suse:sle-module-web-scripting:15:sp3","product_type":"module","shortname":"Web-Scripting-Module","description":"

The SUSE Linux Enterprise Web and Scripting Module should contains additional packages that are helpful when running a webserver.

Access to the Web and Scripting Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself: Package versions in this module are usually supported for at most three years. We are planning to release more recent versions on a schedule of approximately 18 month; the exact dates may differ per package.

","free":true,"arch":"x86_64","eula_url":"","friendly_version":"15 SP3","release_stage":"released","id":2165,"identifier":"sle-module-web-scripting","extensions":[{"arch":"x86_64","eula_url":"","description":"SUSE Manager lets you efficiently manage physical, virtual, and cloud-based Linux systems. It provides automated and cost-effective configuration and software management, asset management, and system provisioning.","shortname":"SUSE Manager Server 4.2 Module","free":true,"cpe":"cpe:/o:suse:sle-module-suse-manager-server:4.2","product_type":"module","product_class":"MODULE","online_predecessor_ids":[1905,2019],"repositories":[{"name":"SLE-Module-SUSE-Manager-Server-4.2-Updates","installer_updates":false,"description":"SLE-Module-SUSE-Manager-Server-4.2-Updates for sle-15-x86_64","enabled":true,"id":5019,"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-SUSE-Manager-Server/4.2/x86_64/update/"},{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-SUSE-Manager-Server/4.2/x86_64/update_debug/","distro_target":"sle-15-x86_64","autorefresh":true,"id":5020,"enabled":false,"description":"SLE-Module-SUSE-Manager-Server-4.2-Debuginfo-Updates for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-SUSE-Manager-Server-4.2-Debuginfo-Updates"},{"description":"SLE-Module-SUSE-Manager-Server-4.2-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-SUSE-Manager-Server-4.2-Pool","distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-SUSE-Manager-Server/4.2/x86_64/product/","enabled":true,"id":5021},{"id":5022,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-SUSE-Manager-Server/4.2/x86_64/product_debug/","distro_target":"sle-15-x86_64","autorefresh":false,"installer_updates":false,"name":"SLE-Module-SUSE-Manager-Server-4.2-Debuginfo-Pool","description":"SLE-Module-SUSE-Manager-Server-4.2-Debuginfo-Pool for sle-15-x86_64"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-SUSE-Manager-Server/4.2/x86_64/product_source/","distro_target":"sle-15-x86_64","autorefresh":false,"id":5023,"enabled":false,"description":"SLE-Module-SUSE-Manager-Server-4.2-Source-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-SUSE-Manager-Server-4.2-Source-Pool"}],"predecessor_ids":[1905,2019],"migration_extra":false,"friendly_name":"SUSE Manager Server Module 4.2 x86_64","former_identifier":"sle-module-suse-manager-server","release_type":null,"name":"SUSE Manager Server Module","offline_predecessor_ids":[],"version":"4.2","recommended":true,"id":2228,"release_stage":"released","identifier":"sle-module-suse-manager-server","extensions":[],"friendly_version":"4.2"}],"version":"15.3","recommended":true,"friendly_name":"Web and Scripting Module 15 SP3 x86_64","migration_extra":false,"release_type":null,"former_identifier":"sle-module-web-scripting","name":"Web and Scripting Module","offline_predecessor_ids":[1153]},{"identifier":"sle-module-legacy","release_stage":"released","id":2171,"extensions":[],"friendly_version":"15 SP3","friendly_name":"Legacy Module 15 SP3 x86_64","migration_extra":false,"former_identifier":"sle-module-legacy","release_type":null,"name":"Legacy Module","offline_predecessor_ids":[1150],"version":"15.3","recommended":false,"cpe":"cpe:/o:suse:sle-module-legacy:15:sp3","product_type":"module","product_class":"MODULE","online_predecessor_ids":[1581,1804,1982],"repositories":[{"enabled":true,"id":4764,"distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/15-SP3/x86_64/update/","installer_updates":false,"name":"SLE-Module-Legacy15-SP3-Updates","description":"SLE-Module-Legacy15-SP3-Updates for sle-15-x86_64"},{"enabled":false,"id":4765,"distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/15-SP3/x86_64/update_debug/","installer_updates":false,"name":"SLE-Module-Legacy15-SP3-Debuginfo-Updates","description":"SLE-Module-Legacy15-SP3-Debuginfo-Updates for sle-15-x86_64"},{"enabled":true,"id":4766,"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15-SP3/x86_64/product/","installer_updates":false,"name":"SLE-Module-Legacy15-SP3-Pool","description":"SLE-Module-Legacy15-SP3-Pool for sle-15-x86_64"},{"enabled":false,"id":4767,"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15-SP3/x86_64/product_debug/","installer_updates":false,"name":"SLE-Module-Legacy15-SP3-Debuginfo-Pool","description":"SLE-Module-Legacy15-SP3-Debuginfo-Pool for sle-15-x86_64"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15-SP3/x86_64/product_source/","autorefresh":false,"distro_target":"sle-15-x86_64","id":4768,"enabled":false,"description":"SLE-Module-Legacy15-SP3-Source-Pool for sle-15-x86_64","name":"SLE-Module-Legacy15-SP3-Source-Pool","installer_updates":false}],"predecessor_ids":[1581,1804,1982],"arch":"x86_64","eula_url":"","description":"

The Legacy Module helps you migrating applications from SUSE Linux Enterprise 12 and other systems to SUSE Linux Enterprise 15, by providing packages which are discontinued on SUSE Linux Enterprise Server, such as: ntp, IBM Java 8, and a number of libraries.

Access to the Legacy Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself. Packages in the this module are usually supported for at most three years.

","shortname":"Legacy-Module","free":true},{"offline_predecessor_ids":[1220],"name":"Public Cloud Module","former_identifier":"sle-module-public-cloud","release_type":null,"migration_extra":false,"friendly_name":"Public Cloud Module 15 SP3 x86_64","recommended":false,"version":"15.3","extensions":[],"identifier":"sle-module-public-cloud","release_stage":"released","id":2175,"friendly_version":"15 SP3","eula_url":"","arch":"x86_64","free":true,"description":"

The Public Cloud Module is a collection of tools that enables you to create and manage cloud images from the commandline on SUSE Linux Enterprise Server. When building your own images with KIWI or SUSE Studio, initialization code specific to the target cloud is included in that image.

Access to the Public Cloud Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself; please check the Release Notes for further details.

","shortname":"Public-Cloud-Module","product_type":"module","cpe":"cpe:/o:suse:sle-module-public-cloud:15:sp3","predecessor_ids":[1611,1808,1988],"online_predecessor_ids":[1611,1808,1988],"product_class":"MODULE","repositories":[{"id":4784,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/15-SP3/x86_64/update/","autorefresh":true,"distro_target":"sle-15-x86_64","name":"SLE-Module-Public-Cloud15-SP3-Updates","installer_updates":false,"description":"SLE-Module-Public-Cloud15-SP3-Updates for sle-15-x86_64"},{"id":4785,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/15-SP3/x86_64/update_debug/","distro_target":"sle-15-x86_64","autorefresh":true,"installer_updates":false,"name":"SLE-Module-Public-Cloud15-SP3-Debuginfo-Updates","description":"SLE-Module-Public-Cloud15-SP3-Debuginfo-Updates for sle-15-x86_64"},{"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP3/x86_64/product/","enabled":true,"id":4786,"description":"SLE-Module-Public-Cloud15-SP3-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Public-Cloud15-SP3-Pool"},{"name":"SLE-Module-Public-Cloud15-SP3-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-Public-Cloud15-SP3-Debuginfo-Pool for sle-15-x86_64","id":4787,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP3/x86_64/product_debug/","autorefresh":false,"distro_target":"sle-15-x86_64"},{"description":"SLE-Module-Public-Cloud15-SP3-Source-Pool for sle-15-x86_64","name":"SLE-Module-Public-Cloud15-SP3-Source-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP3/x86_64/product_source/","autorefresh":false,"distro_target":"sle-15-x86_64","id":4788,"enabled":false}]},{"friendly_version":"15 SP3","extensions":[],"release_stage":"released","identifier":"sle-ha","id":2195,"recommended":false,"version":"15.3","offline_predecessor_ids":[958,961,967,971,1101,1107,1256,1286,1432,1435,1634,1637,1884,1886],"name":"SUSE Linux Enterprise High Availability Extension","former_identifier":"sle-ha","release_type":null,"friendly_name":"SUSE Linux Enterprise High Availability Extension 15 SP3 x86_64","migration_extra":false,"predecessor_ids":[1582,1785,1959],"repositories":[{"enabled":true,"id":4896,"distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-HA/15-SP3/x86_64/update/","installer_updates":false,"name":"SLE-Product-HA15-SP3-Updates","description":"SLE-Product-HA15-SP3-Updates for sle-15-x86_64"},{"name":"SLE-Product-HA15-SP3-Debuginfo-Updates","installer_updates":false,"description":"SLE-Product-HA15-SP3-Debuginfo-Updates for sle-15-x86_64","id":4897,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-HA/15-SP3/x86_64/update_debug/","autorefresh":true,"distro_target":"sle-15-x86_64"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP3/x86_64/product/","autorefresh":false,"distro_target":"sle-15-x86_64","id":4898,"enabled":true,"description":"SLE-Product-HA15-SP3-Pool for sle-15-x86_64","name":"SLE-Product-HA15-SP3-Pool","installer_updates":false},{"installer_updates":false,"name":"SLE-Product-HA15-SP3-Debuginfo-Pool","description":"SLE-Product-HA15-SP3-Debuginfo-Pool for sle-15-x86_64","enabled":false,"id":4899,"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP3/x86_64/product_debug/"},{"enabled":false,"id":4900,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP3/x86_64/product_source/","name":"SLE-Product-HA15-SP3-Source-Pool","installer_updates":false,"description":"SLE-Product-HA15-SP3-Source-Pool for sle-15-x86_64"}],"online_predecessor_ids":[1582,1785,1959],"product_class":"SLE-HAE-X86","product_type":"extension","cpe":"cpe:/o:suse:sle-ha:15:sp3","free":false,"shortname":"SLEHA15-SP3","description":"SUSE Linux High Availability Extension provides mature, industry-leading open-source high-availability clustering technologies that are easy to set up and use. It can be deployed in physical and/or virtual environments, and can cluster physical servers, virtual servers, or any combination of the two to suit your business’ needs.","eula_url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP3/x86_64/product.license/","arch":"x86_64"}],"identifier":"sle-module-server-applications","release_stage":"released","id":2153,"friendly_version":"15 SP3"},{"repositories":[{"installer_updates":false,"name":"SLE-Module-Containers15-SP3-Updates","description":"SLE-Module-Containers15-SP3-Updates for sle-15-x86_64","id":4694,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/15-SP3/x86_64/update/","distro_target":"sle-15-x86_64","autorefresh":true},{"name":"SLE-Module-Containers15-SP3-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-Containers15-SP3-Debuginfo-Updates for sle-15-x86_64","id":4695,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/15-SP3/x86_64/update_debug/","autorefresh":true,"distro_target":"sle-15-x86_64"},{"id":4696,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP3/x86_64/product/","distro_target":"sle-15-x86_64","autorefresh":false,"installer_updates":false,"name":"SLE-Module-Containers15-SP3-Pool","description":"SLE-Module-Containers15-SP3-Pool for sle-15-x86_64"},{"installer_updates":false,"name":"SLE-Module-Containers15-SP3-Debuginfo-Pool","description":"SLE-Module-Containers15-SP3-Debuginfo-Pool for sle-15-x86_64","id":4697,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP3/x86_64/product_debug/","distro_target":"sle-15-x86_64","autorefresh":false},{"id":4698,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP3/x86_64/product_source/","autorefresh":false,"distro_target":"sle-15-x86_64","name":"SLE-Module-Containers15-SP3-Source-Pool","installer_updates":false,"description":"SLE-Module-Containers15-SP3-Source-Pool for sle-15-x86_64"}],"online_predecessor_ids":[1642,1790,1963],"product_class":"MODULE","predecessor_ids":[1642,1790,1963],"product_type":"module","cpe":"cpe:/o:suse:sle-module-containers:15:sp3","free":true,"description":"

This Module contains several packages revolving around containers and related tools.

","shortname":"Containers-Module","arch":"x86_64","eula_url":"","friendly_version":"15 SP3","release_stage":"released","identifier":"sle-module-containers","id":2157,"extensions":[],"version":"15.3","recommended":false,"release_type":null,"former_identifier":"sle-module-containers","friendly_name":"Containers Module 15 SP3 x86_64","migration_extra":false,"offline_predecessor_ids":[1332],"name":"Containers Module"},{"eula_url":"","arch":"x86_64","free":true,"shortname":"Python2-Module","description":"

This module contains the python 2 packages.

Access to the Python 2 Module is included in your SUSE Linux Enterprise subscription. The module has a different lifecycle than SUSE Linux Enterprise itself. Packages in the this module are usually supported for at most three years.

","product_type":"module","cpe":"cpe:/o:suse:sle-module-python2:15:sp3","predecessor_ids":[1867,1992],"online_predecessor_ids":[1867,1992],"repositories":[{"description":"SLE-Module-Python2-15-SP3-Updates for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Python2-15-SP3-Updates","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Python2/15-SP3/x86_64/update/","distro_target":"sle-15-x86_64","autorefresh":true,"id":4829,"enabled":true},{"description":"SLE-Module-Python2-15-SP3-Debuginfo-Updates for sle-15-x86_64","name":"SLE-Module-Python2-15-SP3-Debuginfo-Updates","installer_updates":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Python2/15-SP3/x86_64/update_debug/","autorefresh":true,"distro_target":"sle-15-x86_64","id":4830,"enabled":false},{"description":"SLE-Module-Python2-15-SP3-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Python2-15-SP3-Pool","distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Python2/15-SP3/x86_64/product/","enabled":true,"id":4831},{"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Python2/15-SP3/x86_64/product_debug/","enabled":false,"id":4832,"description":"SLE-Module-Python2-15-SP3-Debuginfo-Pool for sle-15-x86_64","name":"SLE-Module-Python2-15-SP3-Debuginfo-Pool","installer_updates":false},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Python2/15-SP3/x86_64/product_source/","distro_target":"sle-15-x86_64","autorefresh":false,"id":4833,"enabled":false,"description":"SLE-Module-Python2-15-SP3-Source-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Python2-15-SP3-Source-Pool"}],"product_class":"MODULE","offline_predecessor_ids":[],"name":"Python 2 Module","former_identifier":"sle-module-python2","release_type":null,"friendly_name":"Python 2 Module 15 SP3 x86_64","migration_extra":false,"recommended":true,"version":"15.3","extensions":[],"identifier":"sle-module-python2","release_stage":"released","id":2184,"friendly_version":"15 SP3"},{"free":true,"description":"SUSE Package Hub is a free of charge module providing access to community maintained packages built to run on SUSE Linux Enterprise Server. Built from the same sources used in the openSUSE distributions, these quality packages provide additional software to what is found in the SUSE Linux Enterprise Server product. Packages from the Package Hub are delivered without L3 support from SUSE. General updates and fixes to the packages in SUSE Package Hub are provided by the openSUSE community based on their discretion, though SUSE will monitor and ensure that any known critical security issues will be addressed. Packages in the Package Hub are approved by SUSE for use with SUSE Linux Enterprise Server 15-SP3 and to not interfere with the supportability of SUSE Linux Enterprise Server, its modules and extensions. For more information about SUSE Package Hub please visit https://packagehub.suse.com.","shortname":"SUSE-PackageHub-15","arch":"x86_64","eula_url":"","online_predecessor_ids":[1743,1871,1950],"repositories":[{"description":"SUSE-PackageHub-15-SP3-Backports-Pool for sle-15-x86_64","name":"SUSE-PackageHub-15-SP3-Backports-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Backports/SLE-15-SP3_x86_64/standard/","enabled":true,"id":4873},{"description":"SUSE-PackageHub-15-SP3-Backports-Debuginfo for sle-15-x86_64","installer_updates":false,"name":"SUSE-PackageHub-15-SP3-Backports-Debuginfo","url":"https://updates.suse.com/SUSE/Backports/SLE-15-SP3_x86_64/standard_debug/","distro_target":"sle-15-x86_64","autorefresh":true,"id":4874,"enabled":false},{"description":"SLE-Module-Packagehub-Subpackages15-SP3-Updates for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Packagehub-Subpackages15-SP3-Updates","distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP3/x86_64/update/","enabled":true,"id":4875},{"enabled":false,"id":4876,"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP3/x86_64/update_debug/","name":"SLE-Module-Packagehub-Subpackages15-SP3-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-Packagehub-Subpackages15-SP3-Debuginfo-Updates for sle-15-x86_64"},{"installer_updates":false,"name":"SUSE-PackageHub-15-SP3-Pool","description":"SUSE-PackageHub-15-SP3-Pool for sle-15-x86_64","enabled":true,"id":4877,"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Backports/SLE-15-SP3_x86_64/product/"},{"id":4878,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP3/x86_64/product/","distro_target":"sle-15-x86_64","autorefresh":false,"installer_updates":false,"name":"SLE-Module-Packagehub-Subpackages15-SP3-Pool","description":"SLE-Module-Packagehub-Subpackages15-SP3-Pool for sle-15-x86_64"},{"description":"SLE-Module-Packagehub-Subpackages15-SP3-Debuginfo-Pool for sle-15-x86_64","name":"SLE-Module-Packagehub-Subpackages15-SP3-Debuginfo-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP3/x86_64/product_debug/","enabled":false,"id":4879},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP3/x86_64/product_source/","autorefresh":false,"distro_target":"sle-15-x86_64","id":4880,"enabled":false,"description":"SLE-Module-Packagehub-Subpackages15-SP3-Source-Pool for sle-15-x86_64","name":"SLE-Module-Packagehub-Subpackages15-SP3-Source-Pool","installer_updates":false}],"product_class":"MODULE","predecessor_ids":[1743,1871,1950],"product_type":"module","cpe":"cpe:/o:suse:packagehub:15:sp3","version":"15.3","recommended":false,"release_type":null,"former_identifier":"PackageHub","migration_extra":false,"friendly_name":"SUSE Package Hub 15 SP3 x86_64","offline_predecessor_ids":[1529,1813,1915],"name":"SUSE Package Hub","friendly_version":"15 SP3","id":2191,"release_stage":"released","identifier":"PackageHub","extensions":[]}],"release_stage":"released","id":2145,"identifier":"sle-module-basesystem"}],"version":"4.2","recommended":false,"former_identifier":"SUSE-Manager-Server","release_type":null,"friendly_name":"SUSE Manager Server 4.2 x86_64","migration_extra":false,"offline_predecessor_ids":[],"name":"SUSE Manager Server"},{"offline_predecessor_ids":[],"name":"SUSE Manager Proxy","former_identifier":"SUSE-Manager-Proxy","release_type":null,"friendly_name":"SUSE Manager Proxy 4.2 x86_64","migration_extra":false,"recommended":false,"version":"4.2","extensions":[{"product_type":"module","cpe":"cpe:/o:suse:sle-module-basesystem:15:sp3","repositories":[{"enabled":true,"id":4634,"distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15-SP3/x86_64/update/","installer_updates":false,"name":"SLE-Module-Basesystem15-SP3-Updates","description":"SLE-Module-Basesystem15-SP3-Updates for sle-15-x86_64"},{"description":"SLE-Module-Basesystem15-SP3-Debuginfo-Updates for sle-15-x86_64","name":"SLE-Module-Basesystem15-SP3-Debuginfo-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15-SP3/x86_64/update_debug/","enabled":false,"id":4635},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP3/x86_64/product/","autorefresh":false,"distro_target":"sle-15-x86_64","id":4636,"enabled":true,"description":"SLE-Module-Basesystem15-SP3-Pool for sle-15-x86_64","name":"SLE-Module-Basesystem15-SP3-Pool","installer_updates":false},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP3/x86_64/product_debug/","distro_target":"sle-15-x86_64","autorefresh":false,"id":4637,"enabled":false,"description":"SLE-Module-Basesystem15-SP3-Debuginfo-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Basesystem15-SP3-Debuginfo-Pool"},{"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP3/x86_64/product_source/","enabled":false,"id":4638,"description":"SLE-Module-Basesystem15-SP3-Source-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Basesystem15-SP3-Source-Pool"}],"online_predecessor_ids":[1576,1772,1946],"product_class":"MODULE","predecessor_ids":[1576,1772,1946],"arch":"x86_64","eula_url":"","free":true,"shortname":"Basesystem-Module","description":"

The SUSE Linux Enterprise Basesystem Module delivers the base system of the product.

","identifier":"sle-module-basesystem","release_stage":"released","id":2145,"extensions":[{"free":true,"description":"

The SUSE Linux Enterprise Desktop Applications Module delivers a basic set of Desktop functionality.

Access to the Desktop Applications Module is included in your SUSE Linux Enterprise product subscription.

","shortname":"Desktop-Applications-Module","eula_url":"","arch":"x86_64","predecessor_ids":[1578,1776,1967],"repositories":[{"installer_updates":false,"name":"SLE-Module-Desktop-Applications15-SP3-Updates","description":"SLE-Module-Desktop-Applications15-SP3-Updates for sle-15-x86_64","id":4654,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15-SP3/x86_64/update/","distro_target":"sle-15-x86_64","autorefresh":true},{"installer_updates":false,"name":"SLE-Module-Desktop-Applications15-SP3-Debuginfo-Updates","description":"SLE-Module-Desktop-Applications15-SP3-Debuginfo-Updates for sle-15-x86_64","id":4655,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15-SP3/x86_64/update_debug/","distro_target":"sle-15-x86_64","autorefresh":true},{"description":"SLE-Module-Desktop-Applications15-SP3-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Desktop-Applications15-SP3-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP3/x86_64/product/","distro_target":"sle-15-x86_64","autorefresh":false,"id":4656,"enabled":true},{"name":"SLE-Module-Desktop-Applications15-SP3-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-Desktop-Applications15-SP3-Debuginfo-Pool for sle-15-x86_64","id":4657,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP3/x86_64/product_debug/","autorefresh":false,"distro_target":"sle-15-x86_64"},{"enabled":false,"id":4658,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP3/x86_64/product_source/","name":"SLE-Module-Desktop-Applications15-SP3-Source-Pool","installer_updates":false,"description":"SLE-Module-Desktop-Applications15-SP3-Source-Pool for sle-15-x86_64"}],"online_predecessor_ids":[1578,1776,1967],"product_class":"MODULE","product_type":"module","cpe":"cpe:/o:suse:sle-module-desktop-applications:15:sp3","recommended":false,"version":"15.3","offline_predecessor_ids":[],"name":"Desktop Applications Module","former_identifier":"sle-module-desktop-applications","release_type":null,"migration_extra":false,"friendly_name":"Desktop Applications Module 15 SP3 x86_64","friendly_version":"15 SP3","extensions":[{"extensions":[],"release_stage":"released","identifier":"sle-module-development-tools","id":2161,"friendly_version":"15 SP3","name":"Development Tools Module","offline_predecessor_ids":[1341,1427,1630,1892],"friendly_name":"Development Tools Module 15 SP3 x86_64","migration_extra":false,"release_type":null,"former_identifier":"sle-sdk","recommended":false,"version":"15.3","cpe":"cpe:/o:suse:sle-module-development-tools:15:sp3","product_type":"module","predecessor_ids":[1579,1794,1971],"repositories":[{"name":"SLE-Module-DevTools15-SP3-Updates","installer_updates":false,"description":"SLE-Module-DevTools15-SP3-Updates for sle-15-x86_64","enabled":true,"id":4714,"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15-SP3/x86_64/update/"},{"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15-SP3/x86_64/update_debug/","enabled":false,"id":4715,"description":"SLE-Module-DevTools15-SP3-Debuginfo-Updates for sle-15-x86_64","name":"SLE-Module-DevTools15-SP3-Debuginfo-Updates","installer_updates":false},{"description":"SLE-Module-DevTools15-SP3-Pool for sle-15-x86_64","name":"SLE-Module-DevTools15-SP3-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP3/x86_64/product/","enabled":true,"id":4716},{"description":"SLE-Module-DevTools15-SP3-Debuginfo-Pool for sle-15-x86_64","name":"SLE-Module-DevTools15-SP3-Debuginfo-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP3/x86_64/product_debug/","enabled":false,"id":4717},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP3/x86_64/product_source/","distro_target":"sle-15-x86_64","autorefresh":false,"id":4718,"enabled":false,"description":"SLE-Module-DevTools15-SP3-Source-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-DevTools15-SP3-Source-Pool"}],"online_predecessor_ids":[1579,1794,1971],"product_class":"MODULE","eula_url":"","arch":"x86_64","shortname":"Development-Tools-Module","description":"

The Development Tools Module helps you developing applications for SUSE Linux Enterprise 15.

Access to the Development Tools Module is included in your SUSE Linux Enterprise product subscription. The module has a different lifecycle than SUSE Linux Enterprise itself.

","free":true}],"identifier":"sle-module-desktop-applications","release_stage":"released","id":2149},{"version":"15.3","recommended":true,"release_type":null,"former_identifier":"sle-module-server-applications","migration_extra":false,"friendly_name":"Server Applications Module 15 SP3 x86_64","offline_predecessor_ids":[],"name":"Server Applications Module","friendly_version":"15 SP3","identifier":"sle-module-server-applications","release_stage":"released","id":2153,"extensions":[{"online_predecessor_ids":[1721,1798,1976],"product_class":"MODULE","repositories":[{"installer_updates":false,"name":"SLE-Module-Web-Scripting15-SP3-Updates","description":"SLE-Module-Web-Scripting15-SP3-Updates for sle-15-x86_64","enabled":true,"id":4734,"distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/15-SP3/x86_64/update/"},{"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/15-SP3/x86_64/update_debug/","enabled":false,"id":4735,"description":"SLE-Module-Web-Scripting15-SP3-Debuginfo-Updates for sle-15-x86_64","name":"SLE-Module-Web-Scripting15-SP3-Debuginfo-Updates","installer_updates":false},{"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP3/x86_64/product/","enabled":true,"id":4736,"description":"SLE-Module-Web-Scripting15-SP3-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Web-Scripting15-SP3-Pool"},{"enabled":false,"id":4737,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP3/x86_64/product_debug/","name":"SLE-Module-Web-Scripting15-SP3-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-Web-Scripting15-SP3-Debuginfo-Pool for sle-15-x86_64"},{"installer_updates":false,"name":"SLE-Module-Web-Scripting15-SP3-Source-Pool","description":"SLE-Module-Web-Scripting15-SP3-Source-Pool for sle-15-x86_64","id":4738,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP3/x86_64/product_source/","distro_target":"sle-15-x86_64","autorefresh":false}],"predecessor_ids":[1721,1798,1976],"product_type":"module","cpe":"cpe:/o:suse:sle-module-web-scripting:15:sp3","free":true,"description":"

The SUSE Linux Enterprise Web and Scripting Module should contains additional packages that are helpful when running a webserver.

Access to the Web and Scripting Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself: Package versions in this module are usually supported for at most three years. We are planning to release more recent versions on a schedule of approximately 18 month; the exact dates may differ per package.

","shortname":"Web-Scripting-Module","arch":"x86_64","eula_url":"","friendly_version":"15 SP3","identifier":"sle-module-web-scripting","release_stage":"released","id":2165,"extensions":[],"version":"15.3","recommended":false,"release_type":null,"former_identifier":"sle-module-web-scripting","friendly_name":"Web and Scripting Module 15 SP3 x86_64","migration_extra":false,"offline_predecessor_ids":[1153],"name":"Web and Scripting Module"},{"friendly_version":"15 SP3","extensions":[],"id":2171,"release_stage":"released","identifier":"sle-module-legacy","recommended":false,"version":"15.3","offline_predecessor_ids":[1150],"name":"Legacy Module","former_identifier":"sle-module-legacy","release_type":null,"friendly_name":"Legacy Module 15 SP3 x86_64","migration_extra":false,"predecessor_ids":[1581,1804,1982],"repositories":[{"distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/15-SP3/x86_64/update/","enabled":true,"id":4764,"description":"SLE-Module-Legacy15-SP3-Updates for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Legacy15-SP3-Updates"},{"enabled":false,"id":4765,"distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/15-SP3/x86_64/update_debug/","installer_updates":false,"name":"SLE-Module-Legacy15-SP3-Debuginfo-Updates","description":"SLE-Module-Legacy15-SP3-Debuginfo-Updates for sle-15-x86_64"},{"description":"SLE-Module-Legacy15-SP3-Pool for sle-15-x86_64","name":"SLE-Module-Legacy15-SP3-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15-SP3/x86_64/product/","autorefresh":false,"distro_target":"sle-15-x86_64","id":4766,"enabled":true},{"name":"SLE-Module-Legacy15-SP3-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-Legacy15-SP3-Debuginfo-Pool for sle-15-x86_64","id":4767,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15-SP3/x86_64/product_debug/","autorefresh":false,"distro_target":"sle-15-x86_64"},{"name":"SLE-Module-Legacy15-SP3-Source-Pool","installer_updates":false,"description":"SLE-Module-Legacy15-SP3-Source-Pool for sle-15-x86_64","id":4768,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15-SP3/x86_64/product_source/","autorefresh":false,"distro_target":"sle-15-x86_64"}],"online_predecessor_ids":[1581,1804,1982],"product_class":"MODULE","product_type":"module","cpe":"cpe:/o:suse:sle-module-legacy:15:sp3","free":true,"shortname":"Legacy-Module","description":"

The Legacy Module helps you migrating applications from SUSE Linux Enterprise 12 and other systems to SUSE Linux Enterprise 15, by providing packages which are discontinued on SUSE Linux Enterprise Server, such as: ntp, IBM Java 8, and a number of libraries.

Access to the Legacy Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself. Packages in the this module are usually supported for at most three years.

","eula_url":"","arch":"x86_64"},{"cpe":"cpe:/o:suse:sle-module-public-cloud:15:sp3","product_type":"module","predecessor_ids":[1611,1808,1988],"online_predecessor_ids":[1611,1808,1988],"product_class":"MODULE","repositories":[{"description":"SLE-Module-Public-Cloud15-SP3-Updates for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Public-Cloud15-SP3-Updates","distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/15-SP3/x86_64/update/","enabled":true,"id":4784},{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/15-SP3/x86_64/update_debug/","autorefresh":true,"distro_target":"sle-15-x86_64","id":4785,"enabled":false,"description":"SLE-Module-Public-Cloud15-SP3-Debuginfo-Updates for sle-15-x86_64","name":"SLE-Module-Public-Cloud15-SP3-Debuginfo-Updates","installer_updates":false},{"id":4786,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP3/x86_64/product/","autorefresh":false,"distro_target":"sle-15-x86_64","name":"SLE-Module-Public-Cloud15-SP3-Pool","installer_updates":false,"description":"SLE-Module-Public-Cloud15-SP3-Pool for sle-15-x86_64"},{"description":"SLE-Module-Public-Cloud15-SP3-Debuginfo-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Public-Cloud15-SP3-Debuginfo-Pool","distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP3/x86_64/product_debug/","enabled":false,"id":4787},{"installer_updates":false,"name":"SLE-Module-Public-Cloud15-SP3-Source-Pool","description":"SLE-Module-Public-Cloud15-SP3-Source-Pool for sle-15-x86_64","enabled":false,"id":4788,"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP3/x86_64/product_source/"}],"eula_url":"","arch":"x86_64","description":"

The Public Cloud Module is a collection of tools that enables you to create and manage cloud images from the commandline on SUSE Linux Enterprise Server. When building your own images with KIWI or SUSE Studio, initialization code specific to the target cloud is included in that image.

Access to the Public Cloud Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself; please check the Release Notes for further details.

","shortname":"Public-Cloud-Module","free":true,"extensions":[],"release_stage":"released","identifier":"sle-module-public-cloud","id":2175,"friendly_version":"15 SP3","name":"Public Cloud Module","offline_predecessor_ids":[1220],"migration_extra":false,"friendly_name":"Public Cloud Module 15 SP3 x86_64","former_identifier":"sle-module-public-cloud","release_type":null,"recommended":false,"version":"15.3"},{"extensions":[],"id":2195,"release_stage":"released","identifier":"sle-ha","friendly_version":"15 SP3","offline_predecessor_ids":[958,961,967,971,1101,1107,1256,1286,1432,1435,1634,1637,1884,1886],"name":"SUSE Linux Enterprise High Availability Extension","release_type":null,"former_identifier":"sle-ha","migration_extra":false,"friendly_name":"SUSE Linux Enterprise High Availability Extension 15 SP3 x86_64","recommended":false,"version":"15.3","product_type":"extension","cpe":"cpe:/o:suse:sle-ha:15:sp3","predecessor_ids":[1582,1785,1959],"online_predecessor_ids":[1582,1785,1959],"product_class":"SLE-HAE-X86","repositories":[{"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-HA/15-SP3/x86_64/update/","distro_target":"sle-15-x86_64","autorefresh":true,"id":4896,"enabled":true,"description":"SLE-Product-HA15-SP3-Updates for sle-15-x86_64","installer_updates":false,"name":"SLE-Product-HA15-SP3-Updates"},{"description":"SLE-Product-HA15-SP3-Debuginfo-Updates for sle-15-x86_64","name":"SLE-Product-HA15-SP3-Debuginfo-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Product-HA/15-SP3/x86_64/update_debug/","enabled":false,"id":4897},{"id":4898,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP3/x86_64/product/","distro_target":"sle-15-x86_64","autorefresh":false,"installer_updates":false,"name":"SLE-Product-HA15-SP3-Pool","description":"SLE-Product-HA15-SP3-Pool for sle-15-x86_64"},{"enabled":false,"id":4899,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP3/x86_64/product_debug/","name":"SLE-Product-HA15-SP3-Debuginfo-Pool","installer_updates":false,"description":"SLE-Product-HA15-SP3-Debuginfo-Pool for sle-15-x86_64"},{"description":"SLE-Product-HA15-SP3-Source-Pool for sle-15-x86_64","name":"SLE-Product-HA15-SP3-Source-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP3/x86_64/product_source/","autorefresh":false,"distro_target":"sle-15-x86_64","id":4900,"enabled":false}],"eula_url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP3/x86_64/product.license/","arch":"x86_64","free":false,"description":"SUSE Linux High Availability Extension provides mature, industry-leading open-source high-availability clustering technologies that are easy to set up and use. It can be deployed in physical and/or virtual environments, and can cluster physical servers, virtual servers, or any combination of the two to suit your business’ needs.","shortname":"SLEHA15-SP3"},{"friendly_version":"4.2","extensions":[],"id":2225,"release_stage":"released","identifier":"sle-module-suse-manager-proxy","recommended":true,"version":"4.2","offline_predecessor_ids":[],"name":"SUSE Manager Proxy Module","former_identifier":"sle-module-suse-manager-proxy","release_type":null,"friendly_name":"SUSE Manager Proxy Module 4.2 x86_64","migration_extra":false,"predecessor_ids":[1908,2015],"online_predecessor_ids":[1908,2015],"product_class":"MODULE","repositories":[{"enabled":true,"id":5004,"distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-SUSE-Manager-Proxy/4.2/x86_64/update/","installer_updates":false,"name":"SLE-Module-SUSE-Manager-Proxy-4.2-Updates","description":"SLE-Module-SUSE-Manager-Proxy-4.2-Updates for sle-15-x86_64"},{"description":"SLE-Module-SUSE-Manager-Proxy-4.2-Debuginfo-Updates for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-SUSE-Manager-Proxy-4.2-Debuginfo-Updates","distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-SUSE-Manager-Proxy/4.2/x86_64/update_debug/","enabled":false,"id":5005},{"enabled":true,"id":5006,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-SUSE-Manager-Proxy/4.2/x86_64/product/","name":"SLE-Module-SUSE-Manager-Proxy-4.2-Pool","installer_updates":false,"description":"SLE-Module-SUSE-Manager-Proxy-4.2-Pool for sle-15-x86_64"},{"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-SUSE-Manager-Proxy/4.2/x86_64/product_debug/","enabled":false,"id":5007,"description":"SLE-Module-SUSE-Manager-Proxy-4.2-Debuginfo-Pool for sle-15-x86_64","name":"SLE-Module-SUSE-Manager-Proxy-4.2-Debuginfo-Pool","installer_updates":false},{"enabled":false,"id":5008,"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-SUSE-Manager-Proxy/4.2/x86_64/product_source/","installer_updates":false,"name":"SLE-Module-SUSE-Manager-Proxy-4.2-Source-Pool","description":"SLE-Module-SUSE-Manager-Proxy-4.2-Source-Pool for sle-15-x86_64"}],"product_type":"module","cpe":"cpe:/o:suse:sle-module-suse-manager-proxy:4.2","free":true,"shortname":"SUSE Manager Proxy 4.2 Module","description":"SUSE Manager Proxies extend large and/or geographically dispersed SUSE Manager environments to reduce load on the SUSE Manager Server, lower bandwidth needs, and provide faster local updates.","eula_url":"","arch":"x86_64"}],"free":true,"description":"

The SUSE Linux Enterprise Server Applications Module delivers a basic set of Server functionality.

Access to the Server Applications Module is included in your SUSE Linux Enterprise Server subscription.

","shortname":"Server-Applications-Module","arch":"x86_64","eula_url":"","online_predecessor_ids":[1580,1780,1955],"repositories":[{"distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15-SP3/x86_64/update/","enabled":true,"id":4674,"description":"SLE-Module-Server-Applications15-SP3-Updates for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Server-Applications15-SP3-Updates"},{"distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15-SP3/x86_64/update_debug/","enabled":false,"id":4675,"description":"SLE-Module-Server-Applications15-SP3-Debuginfo-Updates for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Server-Applications15-SP3-Debuginfo-Updates"},{"description":"SLE-Module-Server-Applications15-SP3-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Server-Applications15-SP3-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP3/x86_64/product/","distro_target":"sle-15-x86_64","autorefresh":false,"id":4676,"enabled":true},{"id":4677,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP3/x86_64/product_debug/","autorefresh":false,"distro_target":"sle-15-x86_64","name":"SLE-Module-Server-Applications15-SP3-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-Server-Applications15-SP3-Debuginfo-Pool for sle-15-x86_64"},{"description":"SLE-Module-Server-Applications15-SP3-Source-Pool for sle-15-x86_64","name":"SLE-Module-Server-Applications15-SP3-Source-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP3/x86_64/product_source/","enabled":false,"id":4678}],"product_class":"MODULE","predecessor_ids":[1580,1780,1955],"product_type":"module","cpe":"cpe:/o:suse:sle-module-server-applications:15:sp3"},{"cpe":"cpe:/o:suse:sle-module-containers:15:sp3","product_type":"module","predecessor_ids":[1642,1790,1963],"repositories":[{"description":"SLE-Module-Containers15-SP3-Updates for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Containers15-SP3-Updates","distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/15-SP3/x86_64/update/","enabled":true,"id":4694},{"description":"SLE-Module-Containers15-SP3-Debuginfo-Updates for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Containers15-SP3-Debuginfo-Updates","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/15-SP3/x86_64/update_debug/","distro_target":"sle-15-x86_64","autorefresh":true,"id":4695,"enabled":false},{"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP3/x86_64/product/","enabled":true,"id":4696,"description":"SLE-Module-Containers15-SP3-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Containers15-SP3-Pool"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP3/x86_64/product_debug/","distro_target":"sle-15-x86_64","autorefresh":false,"id":4697,"enabled":false,"description":"SLE-Module-Containers15-SP3-Debuginfo-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Containers15-SP3-Debuginfo-Pool"},{"installer_updates":false,"name":"SLE-Module-Containers15-SP3-Source-Pool","description":"SLE-Module-Containers15-SP3-Source-Pool for sle-15-x86_64","enabled":false,"id":4698,"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP3/x86_64/product_source/"}],"online_predecessor_ids":[1642,1790,1963],"product_class":"MODULE","eula_url":"","arch":"x86_64","shortname":"Containers-Module","description":"

This Module contains several packages revolving around containers and related tools.

","free":true,"extensions":[],"id":2157,"release_stage":"released","identifier":"sle-module-containers","friendly_version":"15 SP3","name":"Containers Module","offline_predecessor_ids":[1332],"migration_extra":false,"friendly_name":"Containers Module 15 SP3 x86_64","former_identifier":"sle-module-containers","release_type":null,"recommended":false,"version":"15.3"},{"cpe":"cpe:/o:suse:sle-module-python2:15:sp3","product_type":"module","product_class":"MODULE","online_predecessor_ids":[1867,1992],"repositories":[{"id":4829,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Python2/15-SP3/x86_64/update/","distro_target":"sle-15-x86_64","autorefresh":true,"installer_updates":false,"name":"SLE-Module-Python2-15-SP3-Updates","description":"SLE-Module-Python2-15-SP3-Updates for sle-15-x86_64"},{"name":"SLE-Module-Python2-15-SP3-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-Python2-15-SP3-Debuginfo-Updates for sle-15-x86_64","id":4830,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Python2/15-SP3/x86_64/update_debug/","autorefresh":true,"distro_target":"sle-15-x86_64"},{"description":"SLE-Module-Python2-15-SP3-Pool for sle-15-x86_64","name":"SLE-Module-Python2-15-SP3-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Python2/15-SP3/x86_64/product/","enabled":true,"id":4831},{"description":"SLE-Module-Python2-15-SP3-Debuginfo-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Python2-15-SP3-Debuginfo-Pool","distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Python2/15-SP3/x86_64/product_debug/","enabled":false,"id":4832},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Python2/15-SP3/x86_64/product_source/","autorefresh":false,"distro_target":"sle-15-x86_64","id":4833,"enabled":false,"description":"SLE-Module-Python2-15-SP3-Source-Pool for sle-15-x86_64","name":"SLE-Module-Python2-15-SP3-Source-Pool","installer_updates":false}],"predecessor_ids":[1867,1992],"arch":"x86_64","eula_url":"","shortname":"Python2-Module","description":"

This module contains the python 2 packages.

Access to the Python 2 Module is included in your SUSE Linux Enterprise subscription. The module has a different lifecycle than SUSE Linux Enterprise itself. Packages in the this module are usually supported for at most three years.

","free":true,"id":2184,"release_stage":"released","identifier":"sle-module-python2","extensions":[],"friendly_version":"15 SP3","migration_extra":false,"friendly_name":"Python 2 Module 15 SP3 x86_64","release_type":null,"former_identifier":"sle-module-python2","name":"Python 2 Module","offline_predecessor_ids":[],"version":"15.3","recommended":false},{"version":"15.3","recommended":false,"friendly_name":"SUSE Package Hub 15 SP3 x86_64","migration_extra":false,"release_type":null,"former_identifier":"PackageHub","name":"SUSE Package Hub","offline_predecessor_ids":[1529,1813,1915],"friendly_version":"15 SP3","identifier":"PackageHub","release_stage":"released","id":2191,"extensions":[],"description":"SUSE Package Hub is a free of charge module providing access to community maintained packages built to run on SUSE Linux Enterprise Server. Built from the same sources used in the openSUSE distributions, these quality packages provide additional software to what is found in the SUSE Linux Enterprise Server product. Packages from the Package Hub are delivered without L3 support from SUSE. General updates and fixes to the packages in SUSE Package Hub are provided by the openSUSE community based on their discretion, though SUSE will monitor and ensure that any known critical security issues will be addressed. Packages in the Package Hub are approved by SUSE for use with SUSE Linux Enterprise Server 15-SP3 and to not interfere with the supportability of SUSE Linux Enterprise Server, its modules and extensions. For more information about SUSE Package Hub please visit https://packagehub.suse.com.","shortname":"SUSE-PackageHub-15","free":true,"arch":"x86_64","eula_url":"","product_class":"MODULE","online_predecessor_ids":[1743,1871,1950],"repositories":[{"installer_updates":false,"name":"SUSE-PackageHub-15-SP3-Backports-Pool","description":"SUSE-PackageHub-15-SP3-Backports-Pool for sle-15-x86_64","enabled":true,"id":4873,"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Backports/SLE-15-SP3_x86_64/standard/"},{"distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Backports/SLE-15-SP3_x86_64/standard_debug/","enabled":false,"id":4874,"description":"SUSE-PackageHub-15-SP3-Backports-Debuginfo for sle-15-x86_64","installer_updates":false,"name":"SUSE-PackageHub-15-SP3-Backports-Debuginfo"},{"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP3/x86_64/update/","enabled":true,"id":4875,"description":"SLE-Module-Packagehub-Subpackages15-SP3-Updates for sle-15-x86_64","name":"SLE-Module-Packagehub-Subpackages15-SP3-Updates","installer_updates":false},{"id":4876,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP3/x86_64/update_debug/","distro_target":"sle-15-x86_64","autorefresh":true,"installer_updates":false,"name":"SLE-Module-Packagehub-Subpackages15-SP3-Debuginfo-Updates","description":"SLE-Module-Packagehub-Subpackages15-SP3-Debuginfo-Updates for sle-15-x86_64"},{"name":"SUSE-PackageHub-15-SP3-Pool","installer_updates":false,"description":"SUSE-PackageHub-15-SP3-Pool for sle-15-x86_64","id":4877,"enabled":true,"url":"https://updates.suse.com/SUSE/Backports/SLE-15-SP3_x86_64/product/","autorefresh":false,"distro_target":"sle-15-x86_64"},{"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP3/x86_64/product/","enabled":true,"id":4878,"description":"SLE-Module-Packagehub-Subpackages15-SP3-Pool for sle-15-x86_64","name":"SLE-Module-Packagehub-Subpackages15-SP3-Pool","installer_updates":false},{"id":4879,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP3/x86_64/product_debug/","autorefresh":false,"distro_target":"sle-15-x86_64","name":"SLE-Module-Packagehub-Subpackages15-SP3-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-Packagehub-Subpackages15-SP3-Debuginfo-Pool for sle-15-x86_64"},{"enabled":false,"id":4880,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP3/x86_64/product_source/","name":"SLE-Module-Packagehub-Subpackages15-SP3-Source-Pool","installer_updates":false,"description":"SLE-Module-Packagehub-Subpackages15-SP3-Source-Pool for sle-15-x86_64"}],"predecessor_ids":[1743,1871,1950],"cpe":"cpe:/o:suse:packagehub:15:sp3","product_type":"module"}],"friendly_version":"15 SP3","former_identifier":"sle-module-basesystem","release_type":null,"friendly_name":"Basesystem Module 15 SP3 x86_64","migration_extra":false,"offline_predecessor_ids":[1212,1368,1440],"name":"Basesystem Module","version":"15.3","recommended":true}],"release_stage":"released","identifier":"SUSE-Manager-Proxy","id":2223,"friendly_version":"4.2","eula_url":"https://updates.suse.com/SUSE/Products/SLE-Product-SUSE-Manager-Proxy/4.2/x86_64/product.license/","arch":"x86_64","free":false,"description":"SUSE Manager Proxies extend large and/or geographically dispersed SUSE Manager environments to reduce load on the SUSE Manager Server, lower bandwidth needs, and provide faster local updates.","shortname":"SUSE Manager Proxy 4.2","product_type":"base","cpe":"cpe:/o:suse:suse-manager-proxy:4.2","predecessor_ids":[1900,2009],"online_predecessor_ids":[1900,2009],"repositories":[{"enabled":true,"id":4994,"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Product-SUSE-Manager-Proxy/4.2/x86_64/update/","name":"SLE-Product-SUSE-Manager-Proxy-4.2-Updates","installer_updates":false,"description":"SLE-Product-SUSE-Manager-Proxy-4.2-Updates for sle-15-x86_64"},{"id":4995,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-SUSE-Manager-Proxy/4.2/x86_64/update_debug/","autorefresh":true,"distro_target":"sle-15-x86_64","name":"SLE-Product-SUSE-Manager-Proxy-4.2-Debuginfo-Updates","installer_updates":false,"description":"SLE-Product-SUSE-Manager-Proxy-4.2-Debuginfo-Updates for sle-15-x86_64"},{"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Product-SUSE-Manager-Proxy/4.2/x86_64/product/","enabled":true,"id":4996,"description":"SLE-Product-SUSE-Manager-Proxy-4.2-Pool for sle-15-x86_64","name":"SLE-Product-SUSE-Manager-Proxy-4.2-Pool","installer_updates":false},{"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Product-SUSE-Manager-Proxy/4.2/x86_64/product_debug/","enabled":false,"id":4997,"description":"SLE-Product-SUSE-Manager-Proxy-4.2-Debuginfo-Pool for sle-15-x86_64","name":"SLE-Product-SUSE-Manager-Proxy-4.2-Debuginfo-Pool","installer_updates":false},{"description":"SLE-Product-SUSE-Manager-Proxy-4.2-Source-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Product-SUSE-Manager-Proxy-4.2-Source-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Product-SUSE-Manager-Proxy/4.2/x86_64/product_source/","distro_target":"sle-15-x86_64","autorefresh":false,"id":4998,"enabled":false}],"product_class":"SMP"},{"eula_url":"https://updates.suse.com/SUSE/Products/SLE-Product-SUSE-Manager-Retail-Branch-Server/4.2/x86_64/product.license/","arch":"x86_64","free":false,"description":"The SUSE Manager for Retail Branch Server supports large and/or geographically dispersed SUSE Manager for Retail environments by reducing the load on the SUSE Manager Server, lowering bandwidth needs, and providing faster local updates.","shortname":"SUSE Manager Retail Branch Server 4.2","product_type":"base","cpe":"cpe:/o:suse:suse-manager-retail-branch-server:4.2","predecessor_ids":[1907,2014],"product_class":"SMRBS","online_predecessor_ids":[1907,2014],"repositories":[{"description":"SLE-Product-SUSE-Manager-Retail-Branch-Server-4.2-Updates for sle-15-x86_64","installer_updates":false,"name":"SLE-Product-SUSE-Manager-Retail-Branch-Server-4.2-Updates","distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-SUSE-Manager-Retail-Branch-Server/4.2/x86_64/update/","enabled":true,"id":4999},{"description":"SLE-Product-SUSE-Manager-Retail-Branch-Server-4.2-Debuginfo-Updates for sle-15-x86_64","name":"SLE-Product-SUSE-Manager-Retail-Branch-Server-4.2-Debuginfo-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Product-SUSE-Manager-Retail-Branch-Server/4.2/x86_64/update_debug/","enabled":false,"id":5000},{"installer_updates":false,"name":"SLE-Product-SUSE-Manager-Retail-Branch-Server-4.2-Pool","description":"SLE-Product-SUSE-Manager-Retail-Branch-Server-4.2-Pool for sle-15-x86_64","id":5001,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-SUSE-Manager-Retail-Branch-Server/4.2/x86_64/product/","distro_target":"sle-15-x86_64","autorefresh":false},{"name":"SLE-Product-SUSE-Manager-Retail-Branch-Server-4.2-Debuginfo-Pool","installer_updates":false,"description":"SLE-Product-SUSE-Manager-Retail-Branch-Server-4.2-Debuginfo-Pool for sle-15-x86_64","enabled":false,"id":5002,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Product-SUSE-Manager-Retail-Branch-Server/4.2/x86_64/product_debug/"},{"id":5003,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-SUSE-Manager-Retail-Branch-Server/4.2/x86_64/product_source/","distro_target":"sle-15-x86_64","autorefresh":false,"installer_updates":false,"name":"SLE-Product-SUSE-Manager-Retail-Branch-Server-4.2-Source-Pool","description":"SLE-Product-SUSE-Manager-Retail-Branch-Server-4.2-Source-Pool for sle-15-x86_64"}],"offline_predecessor_ids":[],"name":"SUSE Manager Retail Branch Server","release_type":null,"former_identifier":"SUSE-Manager-Retail-Branch-Server","friendly_name":"SUSE Manager Retail Branch Server 4.2 x86_64","migration_extra":false,"recommended":false,"version":"4.2","extensions":[{"release_stage":"released","id":2145,"identifier":"sle-module-basesystem","extensions":[{"offline_predecessor_ids":[],"name":"Desktop Applications Module","former_identifier":"sle-module-desktop-applications","release_type":null,"friendly_name":"Desktop Applications Module 15 SP3 x86_64","migration_extra":false,"recommended":false,"version":"15.3","extensions":[{"friendly_version":"15 SP3","id":2161,"release_stage":"released","identifier":"sle-module-development-tools","extensions":[],"version":"15.3","recommended":false,"former_identifier":"sle-sdk","release_type":null,"migration_extra":false,"friendly_name":"Development Tools Module 15 SP3 x86_64","offline_predecessor_ids":[1341,1427,1630,1892],"name":"Development Tools Module","online_predecessor_ids":[1579,1794,1971],"product_class":"MODULE","repositories":[{"description":"SLE-Module-DevTools15-SP3-Updates for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-DevTools15-SP3-Updates","distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15-SP3/x86_64/update/","enabled":true,"id":4714},{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15-SP3/x86_64/update_debug/","autorefresh":true,"distro_target":"sle-15-x86_64","id":4715,"enabled":false,"description":"SLE-Module-DevTools15-SP3-Debuginfo-Updates for sle-15-x86_64","name":"SLE-Module-DevTools15-SP3-Debuginfo-Updates","installer_updates":false},{"description":"SLE-Module-DevTools15-SP3-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-DevTools15-SP3-Pool","distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP3/x86_64/product/","enabled":true,"id":4716},{"id":4717,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP3/x86_64/product_debug/","distro_target":"sle-15-x86_64","autorefresh":false,"installer_updates":false,"name":"SLE-Module-DevTools15-SP3-Debuginfo-Pool","description":"SLE-Module-DevTools15-SP3-Debuginfo-Pool for sle-15-x86_64"},{"installer_updates":false,"name":"SLE-Module-DevTools15-SP3-Source-Pool","description":"SLE-Module-DevTools15-SP3-Source-Pool for sle-15-x86_64","id":4718,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP3/x86_64/product_source/","distro_target":"sle-15-x86_64","autorefresh":false}],"predecessor_ids":[1579,1794,1971],"product_type":"module","cpe":"cpe:/o:suse:sle-module-development-tools:15:sp3","free":true,"shortname":"Development-Tools-Module","description":"

The Development Tools Module helps you developing applications for SUSE Linux Enterprise 15.

Access to the Development Tools Module is included in your SUSE Linux Enterprise product subscription. The module has a different lifecycle than SUSE Linux Enterprise itself.

","arch":"x86_64","eula_url":""}],"release_stage":"released","id":2149,"identifier":"sle-module-desktop-applications","friendly_version":"15 SP3","eula_url":"","arch":"x86_64","free":true,"description":"

The SUSE Linux Enterprise Desktop Applications Module delivers a basic set of Desktop functionality.

Access to the Desktop Applications Module is included in your SUSE Linux Enterprise product subscription.

","shortname":"Desktop-Applications-Module","product_type":"module","cpe":"cpe:/o:suse:sle-module-desktop-applications:15:sp3","predecessor_ids":[1578,1776,1967],"repositories":[{"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15-SP3/x86_64/update/","enabled":true,"id":4654,"description":"SLE-Module-Desktop-Applications15-SP3-Updates for sle-15-x86_64","name":"SLE-Module-Desktop-Applications15-SP3-Updates","installer_updates":false},{"installer_updates":false,"name":"SLE-Module-Desktop-Applications15-SP3-Debuginfo-Updates","description":"SLE-Module-Desktop-Applications15-SP3-Debuginfo-Updates for sle-15-x86_64","enabled":false,"id":4655,"distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15-SP3/x86_64/update_debug/"},{"id":4656,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP3/x86_64/product/","distro_target":"sle-15-x86_64","autorefresh":false,"installer_updates":false,"name":"SLE-Module-Desktop-Applications15-SP3-Pool","description":"SLE-Module-Desktop-Applications15-SP3-Pool for sle-15-x86_64"},{"id":4657,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP3/x86_64/product_debug/","distro_target":"sle-15-x86_64","autorefresh":false,"installer_updates":false,"name":"SLE-Module-Desktop-Applications15-SP3-Debuginfo-Pool","description":"SLE-Module-Desktop-Applications15-SP3-Debuginfo-Pool for sle-15-x86_64"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP3/x86_64/product_source/","autorefresh":false,"distro_target":"sle-15-x86_64","id":4658,"enabled":false,"description":"SLE-Module-Desktop-Applications15-SP3-Source-Pool for sle-15-x86_64","name":"SLE-Module-Desktop-Applications15-SP3-Source-Pool","installer_updates":false}],"online_predecessor_ids":[1578,1776,1967],"product_class":"MODULE"},{"name":"Server Applications Module","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"Server Applications Module 15 SP3 x86_64","former_identifier":"sle-module-server-applications","release_type":null,"recommended":true,"version":"15.3","extensions":[{"offline_predecessor_ids":[1153],"name":"Web and Scripting Module","former_identifier":"sle-module-web-scripting","release_type":null,"migration_extra":false,"friendly_name":"Web and Scripting Module 15 SP3 x86_64","recommended":false,"version":"15.3","extensions":[],"release_stage":"released","id":2165,"identifier":"sle-module-web-scripting","friendly_version":"15 SP3","eula_url":"","arch":"x86_64","free":true,"description":"

The SUSE Linux Enterprise Web and Scripting Module should contains additional packages that are helpful when running a webserver.

Access to the Web and Scripting Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself: Package versions in this module are usually supported for at most three years. We are planning to release more recent versions on a schedule of approximately 18 month; the exact dates may differ per package.

","shortname":"Web-Scripting-Module","product_type":"module","cpe":"cpe:/o:suse:sle-module-web-scripting:15:sp3","predecessor_ids":[1721,1798,1976],"online_predecessor_ids":[1721,1798,1976],"product_class":"MODULE","repositories":[{"description":"SLE-Module-Web-Scripting15-SP3-Updates for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Web-Scripting15-SP3-Updates","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/15-SP3/x86_64/update/","distro_target":"sle-15-x86_64","autorefresh":true,"id":4734,"enabled":true},{"enabled":false,"id":4735,"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/15-SP3/x86_64/update_debug/","name":"SLE-Module-Web-Scripting15-SP3-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-Web-Scripting15-SP3-Debuginfo-Updates for sle-15-x86_64"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP3/x86_64/product/","distro_target":"sle-15-x86_64","autorefresh":false,"id":4736,"enabled":true,"description":"SLE-Module-Web-Scripting15-SP3-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Web-Scripting15-SP3-Pool"},{"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP3/x86_64/product_debug/","enabled":false,"id":4737,"description":"SLE-Module-Web-Scripting15-SP3-Debuginfo-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Web-Scripting15-SP3-Debuginfo-Pool"},{"enabled":false,"id":4738,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP3/x86_64/product_source/","name":"SLE-Module-Web-Scripting15-SP3-Source-Pool","installer_updates":false,"description":"SLE-Module-Web-Scripting15-SP3-Source-Pool for sle-15-x86_64"}]},{"version":"15.3","recommended":false,"former_identifier":"sle-module-legacy","release_type":null,"friendly_name":"Legacy Module 15 SP3 x86_64","migration_extra":false,"offline_predecessor_ids":[1150],"name":"Legacy Module","friendly_version":"15 SP3","id":2171,"release_stage":"released","identifier":"sle-module-legacy","extensions":[],"free":true,"description":"

The Legacy Module helps you migrating applications from SUSE Linux Enterprise 12 and other systems to SUSE Linux Enterprise 15, by providing packages which are discontinued on SUSE Linux Enterprise Server, such as: ntp, IBM Java 8, and a number of libraries.

Access to the Legacy Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself. Packages in the this module are usually supported for at most three years.

","shortname":"Legacy-Module","arch":"x86_64","eula_url":"","product_class":"MODULE","online_predecessor_ids":[1581,1804,1982],"repositories":[{"description":"SLE-Module-Legacy15-SP3-Updates for sle-15-x86_64","name":"SLE-Module-Legacy15-SP3-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/15-SP3/x86_64/update/","enabled":true,"id":4764},{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/15-SP3/x86_64/update_debug/","distro_target":"sle-15-x86_64","autorefresh":true,"id":4765,"enabled":false,"description":"SLE-Module-Legacy15-SP3-Debuginfo-Updates for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Legacy15-SP3-Debuginfo-Updates"},{"enabled":true,"id":4766,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15-SP3/x86_64/product/","name":"SLE-Module-Legacy15-SP3-Pool","installer_updates":false,"description":"SLE-Module-Legacy15-SP3-Pool for sle-15-x86_64"},{"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15-SP3/x86_64/product_debug/","enabled":false,"id":4767,"description":"SLE-Module-Legacy15-SP3-Debuginfo-Pool for sle-15-x86_64","name":"SLE-Module-Legacy15-SP3-Debuginfo-Pool","installer_updates":false},{"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15-SP3/x86_64/product_source/","enabled":false,"id":4768,"description":"SLE-Module-Legacy15-SP3-Source-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Legacy15-SP3-Source-Pool"}],"predecessor_ids":[1581,1804,1982],"product_type":"module","cpe":"cpe:/o:suse:sle-module-legacy:15:sp3"},{"migration_extra":false,"friendly_name":"Public Cloud Module 15 SP3 x86_64","former_identifier":"sle-module-public-cloud","release_type":null,"name":"Public Cloud Module","offline_predecessor_ids":[1220],"version":"15.3","recommended":false,"release_stage":"released","id":2175,"identifier":"sle-module-public-cloud","extensions":[],"friendly_version":"15 SP3","arch":"x86_64","eula_url":"","shortname":"Public-Cloud-Module","description":"

The Public Cloud Module is a collection of tools that enables you to create and manage cloud images from the commandline on SUSE Linux Enterprise Server. When building your own images with KIWI or SUSE Studio, initialization code specific to the target cloud is included in that image.

Access to the Public Cloud Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself; please check the Release Notes for further details.

","free":true,"cpe":"cpe:/o:suse:sle-module-public-cloud:15:sp3","product_type":"module","online_predecessor_ids":[1611,1808,1988],"product_class":"MODULE","repositories":[{"description":"SLE-Module-Public-Cloud15-SP3-Updates for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Public-Cloud15-SP3-Updates","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/15-SP3/x86_64/update/","distro_target":"sle-15-x86_64","autorefresh":true,"id":4784,"enabled":true},{"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/15-SP3/x86_64/update_debug/","enabled":false,"id":4785,"description":"SLE-Module-Public-Cloud15-SP3-Debuginfo-Updates for sle-15-x86_64","name":"SLE-Module-Public-Cloud15-SP3-Debuginfo-Updates","installer_updates":false},{"name":"SLE-Module-Public-Cloud15-SP3-Pool","installer_updates":false,"description":"SLE-Module-Public-Cloud15-SP3-Pool for sle-15-x86_64","enabled":true,"id":4786,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP3/x86_64/product/"},{"installer_updates":false,"name":"SLE-Module-Public-Cloud15-SP3-Debuginfo-Pool","description":"SLE-Module-Public-Cloud15-SP3-Debuginfo-Pool for sle-15-x86_64","id":4787,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP3/x86_64/product_debug/","distro_target":"sle-15-x86_64","autorefresh":false},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP3/x86_64/product_source/","distro_target":"sle-15-x86_64","autorefresh":false,"id":4788,"enabled":false,"description":"SLE-Module-Public-Cloud15-SP3-Source-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Public-Cloud15-SP3-Source-Pool"}],"predecessor_ids":[1611,1808,1988]},{"migration_extra":false,"friendly_name":"SUSE Linux Enterprise High Availability Extension 15 SP3 x86_64","release_type":null,"former_identifier":"sle-ha","name":"SUSE Linux Enterprise High Availability Extension","offline_predecessor_ids":[958,961,967,971,1101,1107,1256,1286,1432,1435,1634,1637,1884,1886],"version":"15.3","recommended":false,"release_stage":"released","identifier":"sle-ha","id":2195,"extensions":[],"friendly_version":"15 SP3","arch":"x86_64","eula_url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP3/x86_64/product.license/","description":"SUSE Linux High Availability Extension provides mature, industry-leading open-source high-availability clustering technologies that are easy to set up and use. It can be deployed in physical and/or virtual environments, and can cluster physical servers, virtual servers, or any combination of the two to suit your business’ needs.","shortname":"SLEHA15-SP3","free":false,"cpe":"cpe:/o:suse:sle-ha:15:sp3","product_type":"extension","online_predecessor_ids":[1582,1785,1959],"repositories":[{"description":"SLE-Product-HA15-SP3-Updates for sle-15-x86_64","name":"SLE-Product-HA15-SP3-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Product-HA/15-SP3/x86_64/update/","enabled":true,"id":4896},{"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-HA/15-SP3/x86_64/update_debug/","autorefresh":true,"distro_target":"sle-15-x86_64","id":4897,"enabled":false,"description":"SLE-Product-HA15-SP3-Debuginfo-Updates for sle-15-x86_64","name":"SLE-Product-HA15-SP3-Debuginfo-Updates","installer_updates":false},{"enabled":true,"id":4898,"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP3/x86_64/product/","installer_updates":false,"name":"SLE-Product-HA15-SP3-Pool","description":"SLE-Product-HA15-SP3-Pool for sle-15-x86_64"},{"enabled":false,"id":4899,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP3/x86_64/product_debug/","name":"SLE-Product-HA15-SP3-Debuginfo-Pool","installer_updates":false,"description":"SLE-Product-HA15-SP3-Debuginfo-Pool for sle-15-x86_64"},{"installer_updates":false,"name":"SLE-Product-HA15-SP3-Source-Pool","description":"SLE-Product-HA15-SP3-Source-Pool for sle-15-x86_64","id":4900,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP3/x86_64/product_source/","distro_target":"sle-15-x86_64","autorefresh":false}],"product_class":"SLE-HAE-X86","predecessor_ids":[1582,1785,1959]},{"version":"4.2","recommended":true,"former_identifier":"sle-module-suse-manager-proxy","release_type":null,"friendly_name":"SUSE Manager Proxy Module 4.2 x86_64","migration_extra":false,"offline_predecessor_ids":[],"name":"SUSE Manager Proxy Module","friendly_version":"4.2","id":2225,"release_stage":"released","identifier":"sle-module-suse-manager-proxy","extensions":[{"eula_url":"","arch":"x86_64","free":true,"shortname":"SUSE Manager Retail Branch Server 4.2 Module","description":"The SUSE Manager for Retail Branch Server supports large and/or geographically dispersed SUSE Manager for Retail environments by reducing the load on the SUSE Manager Server, lowering bandwidth needs, and providing faster local updates.","product_type":"module","cpe":"cpe:/o:suse:sle-module-suse-manager-retail-branch-server:4.2","predecessor_ids":[1909,2016],"online_predecessor_ids":[1909,2016],"product_class":"MODULE","repositories":[{"enabled":true,"id":5024,"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-SUSE-Manager-Retail-Branch-Server/4.2/x86_64/update/","name":"SLE-Module-SUSE-Manager-Retail-Branch-Server-4.2-Updates","installer_updates":false,"description":"SLE-Module-SUSE-Manager-Retail-Branch-Server-4.2-Updates for sle-15-x86_64"},{"id":5025,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-SUSE-Manager-Retail-Branch-Server/4.2/x86_64/update_debug/","distro_target":"sle-15-x86_64","autorefresh":true,"installer_updates":false,"name":"SLE-Module-SUSE-Manager-Retail-Branch-Server-4.2-Debuginfo-Updates","description":"SLE-Module-SUSE-Manager-Retail-Branch-Server-4.2-Debuginfo-Updates for sle-15-x86_64"},{"description":"SLE-Module-SUSE-Manager-Retail-Branch-Server-4.2-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-SUSE-Manager-Retail-Branch-Server-4.2-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-SUSE-Manager-Retail-Branch-Server/4.2/x86_64/product/","distro_target":"sle-15-x86_64","autorefresh":false,"id":5026,"enabled":true},{"description":"SLE-Module-SUSE-Manager-Retail-Branch-Server-4.2-Debuginfo-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-SUSE-Manager-Retail-Branch-Server-4.2-Debuginfo-Pool","distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-SUSE-Manager-Retail-Branch-Server/4.2/x86_64/product_debug/","enabled":false,"id":5027},{"id":5028,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-SUSE-Manager-Retail-Branch-Server/4.2/x86_64/product_source/","distro_target":"sle-15-x86_64","autorefresh":false,"installer_updates":false,"name":"SLE-Module-SUSE-Manager-Retail-Branch-Server-4.2-Source-Pool","description":"SLE-Module-SUSE-Manager-Retail-Branch-Server-4.2-Source-Pool for sle-15-x86_64"}],"offline_predecessor_ids":[],"name":"SUSE Manager Retail Branch Server Module","release_type":null,"former_identifier":"sle-module-suse-manager-retail-branch-server","migration_extra":false,"friendly_name":"SUSE Manager Retail Branch Server Module 4.2 x86_64","recommended":true,"version":"4.2","extensions":[],"release_stage":"released","id":2229,"identifier":"sle-module-suse-manager-retail-branch-server","friendly_version":"4.2"}],"free":true,"shortname":"SUSE Manager Proxy 4.2 Module","description":"SUSE Manager Proxies extend large and/or geographically dispersed SUSE Manager environments to reduce load on the SUSE Manager Server, lower bandwidth needs, and provide faster local updates.","arch":"x86_64","eula_url":"","online_predecessor_ids":[1908,2015],"product_class":"MODULE","repositories":[{"description":"SLE-Module-SUSE-Manager-Proxy-4.2-Updates for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-SUSE-Manager-Proxy-4.2-Updates","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-SUSE-Manager-Proxy/4.2/x86_64/update/","distro_target":"sle-15-x86_64","autorefresh":true,"id":5004,"enabled":true},{"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-SUSE-Manager-Proxy/4.2/x86_64/update_debug/","enabled":false,"id":5005,"description":"SLE-Module-SUSE-Manager-Proxy-4.2-Debuginfo-Updates for sle-15-x86_64","name":"SLE-Module-SUSE-Manager-Proxy-4.2-Debuginfo-Updates","installer_updates":false},{"description":"SLE-Module-SUSE-Manager-Proxy-4.2-Pool for sle-15-x86_64","name":"SLE-Module-SUSE-Manager-Proxy-4.2-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-SUSE-Manager-Proxy/4.2/x86_64/product/","enabled":true,"id":5006},{"enabled":false,"id":5007,"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-SUSE-Manager-Proxy/4.2/x86_64/product_debug/","installer_updates":false,"name":"SLE-Module-SUSE-Manager-Proxy-4.2-Debuginfo-Pool","description":"SLE-Module-SUSE-Manager-Proxy-4.2-Debuginfo-Pool for sle-15-x86_64"},{"installer_updates":false,"name":"SLE-Module-SUSE-Manager-Proxy-4.2-Source-Pool","description":"SLE-Module-SUSE-Manager-Proxy-4.2-Source-Pool for sle-15-x86_64","enabled":false,"id":5008,"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-SUSE-Manager-Proxy/4.2/x86_64/product_source/"}],"predecessor_ids":[1908,2015],"product_type":"module","cpe":"cpe:/o:suse:sle-module-suse-manager-proxy:4.2"}],"release_stage":"released","id":2153,"identifier":"sle-module-server-applications","friendly_version":"15 SP3","eula_url":"","arch":"x86_64","shortname":"Server-Applications-Module","description":"

The SUSE Linux Enterprise Server Applications Module delivers a basic set of Server functionality.

Access to the Server Applications Module is included in your SUSE Linux Enterprise Server subscription.

","free":true,"cpe":"cpe:/o:suse:sle-module-server-applications:15:sp3","product_type":"module","predecessor_ids":[1580,1780,1955],"online_predecessor_ids":[1580,1780,1955],"repositories":[{"enabled":true,"id":4674,"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15-SP3/x86_64/update/","name":"SLE-Module-Server-Applications15-SP3-Updates","installer_updates":false,"description":"SLE-Module-Server-Applications15-SP3-Updates for sle-15-x86_64"},{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15-SP3/x86_64/update_debug/","autorefresh":true,"distro_target":"sle-15-x86_64","id":4675,"enabled":false,"description":"SLE-Module-Server-Applications15-SP3-Debuginfo-Updates for sle-15-x86_64","name":"SLE-Module-Server-Applications15-SP3-Debuginfo-Updates","installer_updates":false},{"id":4676,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP3/x86_64/product/","distro_target":"sle-15-x86_64","autorefresh":false,"installer_updates":false,"name":"SLE-Module-Server-Applications15-SP3-Pool","description":"SLE-Module-Server-Applications15-SP3-Pool for sle-15-x86_64"},{"name":"SLE-Module-Server-Applications15-SP3-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-Server-Applications15-SP3-Debuginfo-Pool for sle-15-x86_64","id":4677,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP3/x86_64/product_debug/","autorefresh":false,"distro_target":"sle-15-x86_64"},{"id":4678,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP3/x86_64/product_source/","distro_target":"sle-15-x86_64","autorefresh":false,"installer_updates":false,"name":"SLE-Module-Server-Applications15-SP3-Source-Pool","description":"SLE-Module-Server-Applications15-SP3-Source-Pool for sle-15-x86_64"}],"product_class":"MODULE"},{"cpe":"cpe:/o:suse:sle-module-containers:15:sp3","product_type":"module","predecessor_ids":[1642,1790,1963],"online_predecessor_ids":[1642,1790,1963],"product_class":"MODULE","repositories":[{"enabled":true,"id":4694,"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/15-SP3/x86_64/update/","name":"SLE-Module-Containers15-SP3-Updates","installer_updates":false,"description":"SLE-Module-Containers15-SP3-Updates for sle-15-x86_64"},{"id":4695,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/15-SP3/x86_64/update_debug/","autorefresh":true,"distro_target":"sle-15-x86_64","name":"SLE-Module-Containers15-SP3-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-Containers15-SP3-Debuginfo-Updates for sle-15-x86_64"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP3/x86_64/product/","distro_target":"sle-15-x86_64","autorefresh":false,"id":4696,"enabled":true,"description":"SLE-Module-Containers15-SP3-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Containers15-SP3-Pool"},{"name":"SLE-Module-Containers15-SP3-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-Containers15-SP3-Debuginfo-Pool for sle-15-x86_64","enabled":false,"id":4697,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP3/x86_64/product_debug/"},{"description":"SLE-Module-Containers15-SP3-Source-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Containers15-SP3-Source-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP3/x86_64/product_source/","distro_target":"sle-15-x86_64","autorefresh":false,"id":4698,"enabled":false}],"eula_url":"","arch":"x86_64","shortname":"Containers-Module","description":"

This Module contains several packages revolving around containers and related tools.

","free":true,"extensions":[],"id":2157,"release_stage":"released","identifier":"sle-module-containers","friendly_version":"15 SP3","name":"Containers Module","offline_predecessor_ids":[1332],"friendly_name":"Containers Module 15 SP3 x86_64","migration_extra":false,"release_type":null,"former_identifier":"sle-module-containers","recommended":false,"version":"15.3"},{"friendly_version":"15 SP3","identifier":"sle-module-python2","release_stage":"released","id":2184,"extensions":[],"version":"15.3","recommended":false,"migration_extra":false,"friendly_name":"Python 2 Module 15 SP3 x86_64","release_type":null,"former_identifier":"sle-module-python2","name":"Python 2 Module","offline_predecessor_ids":[],"online_predecessor_ids":[1867,1992],"product_class":"MODULE","repositories":[{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Python2/15-SP3/x86_64/update/","distro_target":"sle-15-x86_64","autorefresh":true,"id":4829,"enabled":true,"description":"SLE-Module-Python2-15-SP3-Updates for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Python2-15-SP3-Updates"},{"installer_updates":false,"name":"SLE-Module-Python2-15-SP3-Debuginfo-Updates","description":"SLE-Module-Python2-15-SP3-Debuginfo-Updates for sle-15-x86_64","id":4830,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Python2/15-SP3/x86_64/update_debug/","distro_target":"sle-15-x86_64","autorefresh":true},{"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Python2/15-SP3/x86_64/product/","enabled":true,"id":4831,"description":"SLE-Module-Python2-15-SP3-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Python2-15-SP3-Pool"},{"description":"SLE-Module-Python2-15-SP3-Debuginfo-Pool for sle-15-x86_64","name":"SLE-Module-Python2-15-SP3-Debuginfo-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Python2/15-SP3/x86_64/product_debug/","autorefresh":false,"distro_target":"sle-15-x86_64","id":4832,"enabled":false},{"description":"SLE-Module-Python2-15-SP3-Source-Pool for sle-15-x86_64","name":"SLE-Module-Python2-15-SP3-Source-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Python2/15-SP3/x86_64/product_source/","autorefresh":false,"distro_target":"sle-15-x86_64","id":4833,"enabled":false}],"predecessor_ids":[1867,1992],"cpe":"cpe:/o:suse:sle-module-python2:15:sp3","product_type":"module","description":"

This module contains the python 2 packages.

Access to the Python 2 Module is included in your SUSE Linux Enterprise subscription. The module has a different lifecycle than SUSE Linux Enterprise itself. Packages in the this module are usually supported for at most three years.

","shortname":"Python2-Module","free":true,"arch":"x86_64","eula_url":""},{"migration_extra":false,"friendly_name":"SUSE Package Hub 15 SP3 x86_64","release_type":null,"former_identifier":"PackageHub","name":"SUSE Package Hub","offline_predecessor_ids":[1529,1813,1915],"version":"15.3","recommended":false,"identifier":"PackageHub","release_stage":"released","id":2191,"extensions":[],"friendly_version":"15 SP3","arch":"x86_64","eula_url":"","shortname":"SUSE-PackageHub-15","description":"SUSE Package Hub is a free of charge module providing access to community maintained packages built to run on SUSE Linux Enterprise Server. Built from the same sources used in the openSUSE distributions, these quality packages provide additional software to what is found in the SUSE Linux Enterprise Server product. Packages from the Package Hub are delivered without L3 support from SUSE. General updates and fixes to the packages in SUSE Package Hub are provided by the openSUSE community based on their discretion, though SUSE will monitor and ensure that any known critical security issues will be addressed. Packages in the Package Hub are approved by SUSE for use with SUSE Linux Enterprise Server 15-SP3 and to not interfere with the supportability of SUSE Linux Enterprise Server, its modules and extensions. For more information about SUSE Package Hub please visit https://packagehub.suse.com.","free":true,"cpe":"cpe:/o:suse:packagehub:15:sp3","product_type":"module","online_predecessor_ids":[1743,1871,1950],"product_class":"MODULE","repositories":[{"enabled":true,"id":4873,"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Backports/SLE-15-SP3_x86_64/standard/","installer_updates":false,"name":"SUSE-PackageHub-15-SP3-Backports-Pool","description":"SUSE-PackageHub-15-SP3-Backports-Pool for sle-15-x86_64"},{"installer_updates":false,"name":"SUSE-PackageHub-15-SP3-Backports-Debuginfo","description":"SUSE-PackageHub-15-SP3-Backports-Debuginfo for sle-15-x86_64","id":4874,"enabled":false,"url":"https://updates.suse.com/SUSE/Backports/SLE-15-SP3_x86_64/standard_debug/","distro_target":"sle-15-x86_64","autorefresh":true},{"enabled":true,"id":4875,"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP3/x86_64/update/","name":"SLE-Module-Packagehub-Subpackages15-SP3-Updates","installer_updates":false,"description":"SLE-Module-Packagehub-Subpackages15-SP3-Updates for sle-15-x86_64"},{"description":"SLE-Module-Packagehub-Subpackages15-SP3-Debuginfo-Updates for sle-15-x86_64","name":"SLE-Module-Packagehub-Subpackages15-SP3-Debuginfo-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP3/x86_64/update_debug/","enabled":false,"id":4876},{"description":"SUSE-PackageHub-15-SP3-Pool for sle-15-x86_64","installer_updates":false,"name":"SUSE-PackageHub-15-SP3-Pool","distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Backports/SLE-15-SP3_x86_64/product/","enabled":true,"id":4877},{"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP3/x86_64/product/","enabled":true,"id":4878,"description":"SLE-Module-Packagehub-Subpackages15-SP3-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Packagehub-Subpackages15-SP3-Pool"},{"description":"SLE-Module-Packagehub-Subpackages15-SP3-Debuginfo-Pool for sle-15-x86_64","name":"SLE-Module-Packagehub-Subpackages15-SP3-Debuginfo-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP3/x86_64/product_debug/","autorefresh":false,"distro_target":"sle-15-x86_64","id":4879,"enabled":false},{"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP3/x86_64/product_source/","enabled":false,"id":4880,"description":"SLE-Module-Packagehub-Subpackages15-SP3-Source-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Packagehub-Subpackages15-SP3-Source-Pool"}],"predecessor_ids":[1743,1871,1950]}],"friendly_version":"15 SP3","release_type":null,"former_identifier":"sle-module-basesystem","migration_extra":false,"friendly_name":"Basesystem Module 15 SP3 x86_64","offline_predecessor_ids":[1212,1368,1440],"name":"Basesystem Module","version":"15.3","recommended":true,"product_type":"module","cpe":"cpe:/o:suse:sle-module-basesystem:15:sp3","product_class":"MODULE","online_predecessor_ids":[1576,1772,1946],"repositories":[{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15-SP3/x86_64/update/","autorefresh":true,"distro_target":"sle-15-x86_64","id":4634,"enabled":true,"description":"SLE-Module-Basesystem15-SP3-Updates for sle-15-x86_64","name":"SLE-Module-Basesystem15-SP3-Updates","installer_updates":false},{"description":"SLE-Module-Basesystem15-SP3-Debuginfo-Updates for sle-15-x86_64","name":"SLE-Module-Basesystem15-SP3-Debuginfo-Updates","installer_updates":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15-SP3/x86_64/update_debug/","autorefresh":true,"distro_target":"sle-15-x86_64","id":4635,"enabled":false},{"description":"SLE-Module-Basesystem15-SP3-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Basesystem15-SP3-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP3/x86_64/product/","distro_target":"sle-15-x86_64","autorefresh":false,"id":4636,"enabled":true},{"description":"SLE-Module-Basesystem15-SP3-Debuginfo-Pool for sle-15-x86_64","name":"SLE-Module-Basesystem15-SP3-Debuginfo-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP3/x86_64/product_debug/","autorefresh":false,"distro_target":"sle-15-x86_64","id":4637,"enabled":false},{"installer_updates":false,"name":"SLE-Module-Basesystem15-SP3-Source-Pool","description":"SLE-Module-Basesystem15-SP3-Source-Pool for sle-15-x86_64","id":4638,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP3/x86_64/product_source/","distro_target":"sle-15-x86_64","autorefresh":false}],"predecessor_ids":[1576,1772,1946],"arch":"x86_64","eula_url":"","free":true,"shortname":"Basesystem-Module","description":"

The SUSE Linux Enterprise Basesystem Module delivers the base system of the product.

"}],"id":2224,"release_stage":"released","identifier":"SUSE-Manager-Retail-Branch-Server","friendly_version":"4.2"},{"eula_url":"","arch":"x86_64","free":true,"shortname":"SUSE Manager Proxy 4.2 Module","description":"SUSE Manager Proxies extend large and/or geographically dispersed SUSE Manager environments to reduce load on the SUSE Manager Server, lower bandwidth needs, and provide faster local updates.","product_type":"module","cpe":"cpe:/o:suse:sle-module-suse-manager-proxy:4.2","predecessor_ids":[1908,2015],"product_class":"MODULE","online_predecessor_ids":[1908,2015],"repositories":[{"description":"SLE-Module-SUSE-Manager-Proxy-4.2-Updates for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-SUSE-Manager-Proxy-4.2-Updates","distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-SUSE-Manager-Proxy/4.2/x86_64/update/","enabled":true,"id":5004},{"installer_updates":false,"name":"SLE-Module-SUSE-Manager-Proxy-4.2-Debuginfo-Updates","description":"SLE-Module-SUSE-Manager-Proxy-4.2-Debuginfo-Updates for sle-15-x86_64","id":5005,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-SUSE-Manager-Proxy/4.2/x86_64/update_debug/","distro_target":"sle-15-x86_64","autorefresh":true},{"description":"SLE-Module-SUSE-Manager-Proxy-4.2-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-SUSE-Manager-Proxy-4.2-Pool","distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-SUSE-Manager-Proxy/4.2/x86_64/product/","enabled":true,"id":5006},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-SUSE-Manager-Proxy/4.2/x86_64/product_debug/","autorefresh":false,"distro_target":"sle-15-x86_64","id":5007,"enabled":false,"description":"SLE-Module-SUSE-Manager-Proxy-4.2-Debuginfo-Pool for sle-15-x86_64","name":"SLE-Module-SUSE-Manager-Proxy-4.2-Debuginfo-Pool","installer_updates":false},{"id":5008,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-SUSE-Manager-Proxy/4.2/x86_64/product_source/","autorefresh":false,"distro_target":"sle-15-x86_64","name":"SLE-Module-SUSE-Manager-Proxy-4.2-Source-Pool","installer_updates":false,"description":"SLE-Module-SUSE-Manager-Proxy-4.2-Source-Pool for sle-15-x86_64"}],"offline_predecessor_ids":[],"name":"SUSE Manager Proxy Module","former_identifier":"sle-module-suse-manager-proxy","release_type":null,"friendly_name":"SUSE Manager Proxy Module 4.2 x86_64","migration_extra":false,"recommended":false,"version":"4.2","extensions":[],"identifier":"sle-module-suse-manager-proxy","release_stage":"released","id":2225,"friendly_version":"4.2"},{"friendly_name":"SUSE Manager Server Module 4.2 ppc64le","migration_extra":false,"release_type":null,"former_identifier":"sle-module-suse-manager-server","name":"SUSE Manager Server Module","offline_predecessor_ids":[],"version":"4.2","recommended":false,"release_stage":"released","id":2226,"identifier":"sle-module-suse-manager-server","extensions":[],"friendly_version":"4.2","arch":"ppc64le","eula_url":"","description":"SUSE Manager lets you efficiently manage physical, virtual, and cloud-based Linux systems. It provides automated and cost-effective configuration and software management, asset management, and system provisioning.","shortname":"SUSE Manager Server 4.2 Module","free":true,"cpe":"cpe:/o:suse:sle-module-suse-manager-server:4.2","product_type":"module","online_predecessor_ids":[1903,2017],"repositories":[{"description":"SLE-Module-SUSE-Manager-Server-4.2-Updates for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-SUSE-Manager-Server-4.2-Updates","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-SUSE-Manager-Server/4.2/ppc64le/update/","distro_target":"sle-15-ppc64le","autorefresh":true,"id":5009,"enabled":true},{"description":"SLE-Module-SUSE-Manager-Server-4.2-Debuginfo-Updates for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-SUSE-Manager-Server-4.2-Debuginfo-Updates","distro_target":"sle-15-ppc64le","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-SUSE-Manager-Server/4.2/ppc64le/update_debug/","enabled":false,"id":5010},{"id":5011,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-SUSE-Manager-Server/4.2/ppc64le/product/","distro_target":"sle-15-ppc64le","autorefresh":false,"installer_updates":false,"name":"SLE-Module-SUSE-Manager-Server-4.2-Pool","description":"SLE-Module-SUSE-Manager-Server-4.2-Pool for sle-15-ppc64le"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-SUSE-Manager-Server/4.2/ppc64le/product_debug/","distro_target":"sle-15-ppc64le","autorefresh":false,"id":5012,"enabled":false,"description":"SLE-Module-SUSE-Manager-Server-4.2-Debuginfo-Pool for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-SUSE-Manager-Server-4.2-Debuginfo-Pool"},{"name":"SLE-Module-SUSE-Manager-Server-4.2-Source-Pool","installer_updates":false,"description":"SLE-Module-SUSE-Manager-Server-4.2-Source-Pool for sle-15-ppc64le","enabled":false,"id":5013,"autorefresh":false,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Products/SLE-Module-SUSE-Manager-Server/4.2/ppc64le/product_source/"}],"product_class":"MODULE","predecessor_ids":[1903,2017]},{"predecessor_ids":[1904,2018],"repositories":[{"description":"SLE-Module-SUSE-Manager-Server-4.2-Updates for sle-15-s390x","installer_updates":false,"name":"SLE-Module-SUSE-Manager-Server-4.2-Updates","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-SUSE-Manager-Server/4.2/s390x/update/","distro_target":"sle-15-s390x","autorefresh":true,"id":5014,"enabled":true},{"enabled":false,"id":5015,"distro_target":"sle-15-s390x","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-SUSE-Manager-Server/4.2/s390x/update_debug/","installer_updates":false,"name":"SLE-Module-SUSE-Manager-Server-4.2-Debuginfo-Updates","description":"SLE-Module-SUSE-Manager-Server-4.2-Debuginfo-Updates for sle-15-s390x"},{"distro_target":"sle-15-s390x","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-SUSE-Manager-Server/4.2/s390x/product/","enabled":true,"id":5016,"description":"SLE-Module-SUSE-Manager-Server-4.2-Pool for sle-15-s390x","installer_updates":false,"name":"SLE-Module-SUSE-Manager-Server-4.2-Pool"},{"autorefresh":false,"distro_target":"sle-15-s390x","url":"https://updates.suse.com/SUSE/Products/SLE-Module-SUSE-Manager-Server/4.2/s390x/product_debug/","enabled":false,"id":5017,"description":"SLE-Module-SUSE-Manager-Server-4.2-Debuginfo-Pool for sle-15-s390x","name":"SLE-Module-SUSE-Manager-Server-4.2-Debuginfo-Pool","installer_updates":false},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-SUSE-Manager-Server/4.2/s390x/product_source/","distro_target":"sle-15-s390x","autorefresh":false,"id":5018,"enabled":false,"description":"SLE-Module-SUSE-Manager-Server-4.2-Source-Pool for sle-15-s390x","installer_updates":false,"name":"SLE-Module-SUSE-Manager-Server-4.2-Source-Pool"}],"online_predecessor_ids":[1904,2018],"product_class":"MODULE","cpe":"cpe:/o:suse:sle-module-suse-manager-server:4.2","product_type":"module","description":"SUSE Manager lets you efficiently manage physical, virtual, and cloud-based Linux systems. It provides automated and cost-effective configuration and software management, asset management, and system provisioning.","shortname":"SUSE Manager Server 4.2 Module","free":true,"eula_url":"","arch":"s390x","friendly_version":"4.2","extensions":[],"release_stage":"released","id":2227,"identifier":"sle-module-suse-manager-server","recommended":false,"version":"4.2","name":"SUSE Manager Server Module","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"SUSE Manager Server Module 4.2 s390x","former_identifier":"sle-module-suse-manager-server","release_type":null},{"friendly_version":"4.2","release_stage":"released","id":2228,"identifier":"sle-module-suse-manager-server","extensions":[],"version":"4.2","recommended":false,"release_type":null,"former_identifier":"sle-module-suse-manager-server","migration_extra":false,"friendly_name":"SUSE Manager Server Module 4.2 x86_64","offline_predecessor_ids":[],"name":"SUSE Manager Server Module","online_predecessor_ids":[1905,2019],"product_class":"MODULE","repositories":[{"description":"SLE-Module-SUSE-Manager-Server-4.2-Updates for sle-15-x86_64","name":"SLE-Module-SUSE-Manager-Server-4.2-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-SUSE-Manager-Server/4.2/x86_64/update/","enabled":true,"id":5019},{"description":"SLE-Module-SUSE-Manager-Server-4.2-Debuginfo-Updates for sle-15-x86_64","name":"SLE-Module-SUSE-Manager-Server-4.2-Debuginfo-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-SUSE-Manager-Server/4.2/x86_64/update_debug/","enabled":false,"id":5020},{"enabled":true,"id":5021,"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-SUSE-Manager-Server/4.2/x86_64/product/","installer_updates":false,"name":"SLE-Module-SUSE-Manager-Server-4.2-Pool","description":"SLE-Module-SUSE-Manager-Server-4.2-Pool for sle-15-x86_64"},{"installer_updates":false,"name":"SLE-Module-SUSE-Manager-Server-4.2-Debuginfo-Pool","description":"SLE-Module-SUSE-Manager-Server-4.2-Debuginfo-Pool for sle-15-x86_64","enabled":false,"id":5022,"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-SUSE-Manager-Server/4.2/x86_64/product_debug/"},{"description":"SLE-Module-SUSE-Manager-Server-4.2-Source-Pool for sle-15-x86_64","name":"SLE-Module-SUSE-Manager-Server-4.2-Source-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-SUSE-Manager-Server/4.2/x86_64/product_source/","enabled":false,"id":5023}],"predecessor_ids":[1905,2019],"product_type":"module","cpe":"cpe:/o:suse:sle-module-suse-manager-server:4.2","free":true,"shortname":"SUSE Manager Server 4.2 Module","description":"SUSE Manager lets you efficiently manage physical, virtual, and cloud-based Linux systems. It provides automated and cost-effective configuration and software management, asset management, and system provisioning.","arch":"x86_64","eula_url":""},{"description":"The SUSE Manager for Retail Branch Server supports large and/or geographically dispersed SUSE Manager for Retail environments by reducing the load on the SUSE Manager Server, lowering bandwidth needs, and providing faster local updates.","shortname":"SUSE Manager Retail Branch Server 4.2 Module","free":true,"arch":"x86_64","eula_url":"","repositories":[{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-SUSE-Manager-Retail-Branch-Server/4.2/x86_64/update/","distro_target":"sle-15-x86_64","autorefresh":true,"id":5024,"enabled":true,"description":"SLE-Module-SUSE-Manager-Retail-Branch-Server-4.2-Updates for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-SUSE-Manager-Retail-Branch-Server-4.2-Updates"},{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-SUSE-Manager-Retail-Branch-Server/4.2/x86_64/update_debug/","autorefresh":true,"distro_target":"sle-15-x86_64","id":5025,"enabled":false,"description":"SLE-Module-SUSE-Manager-Retail-Branch-Server-4.2-Debuginfo-Updates for sle-15-x86_64","name":"SLE-Module-SUSE-Manager-Retail-Branch-Server-4.2-Debuginfo-Updates","installer_updates":false},{"id":5026,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-SUSE-Manager-Retail-Branch-Server/4.2/x86_64/product/","distro_target":"sle-15-x86_64","autorefresh":false,"installer_updates":false,"name":"SLE-Module-SUSE-Manager-Retail-Branch-Server-4.2-Pool","description":"SLE-Module-SUSE-Manager-Retail-Branch-Server-4.2-Pool for sle-15-x86_64"},{"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-SUSE-Manager-Retail-Branch-Server/4.2/x86_64/product_debug/","enabled":false,"id":5027,"description":"SLE-Module-SUSE-Manager-Retail-Branch-Server-4.2-Debuginfo-Pool for sle-15-x86_64","name":"SLE-Module-SUSE-Manager-Retail-Branch-Server-4.2-Debuginfo-Pool","installer_updates":false},{"description":"SLE-Module-SUSE-Manager-Retail-Branch-Server-4.2-Source-Pool for sle-15-x86_64","name":"SLE-Module-SUSE-Manager-Retail-Branch-Server-4.2-Source-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-SUSE-Manager-Retail-Branch-Server/4.2/x86_64/product_source/","enabled":false,"id":5028}],"online_predecessor_ids":[1909,2016],"product_class":"MODULE","predecessor_ids":[1909,2016],"cpe":"cpe:/o:suse:sle-module-suse-manager-retail-branch-server:4.2","product_type":"module","version":"4.2","recommended":false,"migration_extra":false,"friendly_name":"SUSE Manager Retail Branch Server Module 4.2 x86_64","release_type":null,"former_identifier":"sle-module-suse-manager-retail-branch-server","name":"SUSE Manager Retail Branch Server Module","offline_predecessor_ids":[],"friendly_version":"4.2","identifier":"sle-module-suse-manager-retail-branch-server","release_stage":"released","id":2229,"extensions":[]},{"migration_extra":false,"friendly_name":"openSUSE Leap 15.3 aarch64","release_type":null,"former_identifier":"Leap","name":"openSUSE Leap","offline_predecessor_ids":[],"version":"15.3","recommended":false,"release_stage":"released","id":2233,"identifier":"Leap","extensions":[],"friendly_version":"15.3","arch":"aarch64","eula_url":"","shortname":"openSUSE Leap","description":"openSUSE Leap 15.3.","free":false,"cpe":"cpe:/o:opensuse:leap:15.3","product_type":"base","repositories":[{"description":"openSUSE-Leap-15.3-Pool","installer_updates":false,"name":"openSUSE-Leap-15.3-Pool","url":"http://download.opensuse.org/distribution/leap/15.3/repo/oss/","distro_target":null,"autorefresh":false,"id":5031,"enabled":true},{"description":"openSUSE-Leap-15.3-NonOss-Pool","installer_updates":false,"name":"openSUSE-Leap-15.3-NonOss-Pool","distro_target":null,"autorefresh":false,"url":"http://download.opensuse.org/distribution/leap/15.3/repo/non-oss/","enabled":false,"id":5032},{"installer_updates":false,"name":"openSUSE-Leap-15.3-Updates","description":"openSUSE-Leap-15.3-Updates","id":5068,"enabled":true,"url":"http://download.opensuse.org/update/leap/15.3/oss/","distro_target":null,"autorefresh":true},{"enabled":false,"id":5069,"autorefresh":true,"distro_target":null,"url":"http://download.opensuse.org/update/leap/15.3/non-oss/","name":"openSUSE-Leap-15.3-NonOss-Updates","installer_updates":false,"description":"openSUSE-Leap-15.3-NonOss-Updates"},{"description":"openSUSE-Backports-15.3-Updates","name":"openSUSE-Backports-15.3-Updates","installer_updates":false,"autorefresh":true,"distro_target":null,"url":"http://download.opensuse.org/update/leap/15.3/backports/","enabled":true,"id":5076},{"url":"http://download.opensuse.org/update/leap/15.3/sle/","autorefresh":true,"distro_target":null,"id":5077,"enabled":true,"description":"SLE-15-SP3-Updates","name":"SLE-15-SP3-Updates","installer_updates":false}],"online_predecessor_ids":[],"product_class":"OPENSUSE","predecessor_ids":[]},{"description":"openSUSE Leap 15.3.","shortname":"openSUSE Leap","free":false,"eula_url":"","arch":"ppc64le","predecessor_ids":[],"repositories":[{"name":"openSUSE-Leap-15.3-Pool","installer_updates":false,"description":"openSUSE-Leap-15.3-Pool","id":5031,"enabled":true,"url":"http://download.opensuse.org/distribution/leap/15.3/repo/oss/","autorefresh":false,"distro_target":null},{"distro_target":null,"autorefresh":false,"url":"http://download.opensuse.org/distribution/leap/15.3/repo/non-oss/","enabled":false,"id":5032,"description":"openSUSE-Leap-15.3-NonOss-Pool","installer_updates":false,"name":"openSUSE-Leap-15.3-NonOss-Pool"},{"url":"http://download.opensuse.org/update/leap/15.3/oss/","distro_target":null,"autorefresh":true,"id":5068,"enabled":true,"description":"openSUSE-Leap-15.3-Updates","installer_updates":false,"name":"openSUSE-Leap-15.3-Updates"},{"id":5069,"enabled":false,"url":"http://download.opensuse.org/update/leap/15.3/non-oss/","autorefresh":true,"distro_target":null,"name":"openSUSE-Leap-15.3-NonOss-Updates","installer_updates":false,"description":"openSUSE-Leap-15.3-NonOss-Updates"},{"enabled":true,"id":5076,"autorefresh":true,"distro_target":null,"url":"http://download.opensuse.org/update/leap/15.3/backports/","name":"openSUSE-Backports-15.3-Updates","installer_updates":false,"description":"openSUSE-Backports-15.3-Updates"},{"installer_updates":false,"name":"SLE-15-SP3-Updates","description":"SLE-15-SP3-Updates","enabled":true,"id":5077,"distro_target":null,"autorefresh":true,"url":"http://download.opensuse.org/update/leap/15.3/sle/"}],"online_predecessor_ids":[],"product_class":"OPENSUSE","cpe":"cpe:/o:opensuse:leap:15.3","product_type":"base","recommended":false,"version":"15.3","name":"openSUSE Leap","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"openSUSE Leap 15.3 ppc64le","release_type":null,"former_identifier":"Leap","friendly_version":"15.3","extensions":[],"release_stage":"released","id":2234,"identifier":"Leap"},{"description":"openSUSE Leap 15.3.","shortname":"openSUSE Leap","free":false,"arch":"s390x","eula_url":"","product_class":"OPENSUSE","online_predecessor_ids":[],"repositories":[{"id":5031,"enabled":true,"url":"http://download.opensuse.org/distribution/leap/15.3/repo/oss/","distro_target":null,"autorefresh":false,"installer_updates":false,"name":"openSUSE-Leap-15.3-Pool","description":"openSUSE-Leap-15.3-Pool"},{"id":5032,"enabled":false,"url":"http://download.opensuse.org/distribution/leap/15.3/repo/non-oss/","autorefresh":false,"distro_target":null,"name":"openSUSE-Leap-15.3-NonOss-Pool","installer_updates":false,"description":"openSUSE-Leap-15.3-NonOss-Pool"},{"distro_target":null,"autorefresh":true,"url":"http://download.opensuse.org/update/leap/15.3/oss/","enabled":true,"id":5068,"description":"openSUSE-Leap-15.3-Updates","installer_updates":false,"name":"openSUSE-Leap-15.3-Updates"},{"autorefresh":true,"distro_target":null,"url":"http://download.opensuse.org/update/leap/15.3/non-oss/","enabled":false,"id":5069,"description":"openSUSE-Leap-15.3-NonOss-Updates","name":"openSUSE-Leap-15.3-NonOss-Updates","installer_updates":false},{"installer_updates":false,"name":"openSUSE-Backports-15.3-Updates","description":"openSUSE-Backports-15.3-Updates","id":5076,"enabled":true,"url":"http://download.opensuse.org/update/leap/15.3/backports/","distro_target":null,"autorefresh":true},{"name":"SLE-15-SP3-Updates","installer_updates":false,"description":"SLE-15-SP3-Updates","id":5077,"enabled":true,"url":"http://download.opensuse.org/update/leap/15.3/sle/","autorefresh":true,"distro_target":null}],"predecessor_ids":[],"cpe":"cpe:/o:opensuse:leap:15.3","product_type":"base","version":"15.3","recommended":false,"migration_extra":false,"friendly_name":"openSUSE Leap 15.3 s390x","release_type":null,"former_identifier":"Leap","name":"openSUSE Leap","offline_predecessor_ids":[],"friendly_version":"15.3","id":2235,"release_stage":"released","identifier":"Leap","extensions":[]},{"description":"openSUSE Leap 15.3.","shortname":"openSUSE Leap","free":false,"arch":"x86_64","eula_url":"","online_predecessor_ids":[2001],"product_class":"OPENSUSE","repositories":[{"description":"openSUSE-Leap-15.3-Pool","installer_updates":false,"name":"openSUSE-Leap-15.3-Pool","distro_target":null,"autorefresh":false,"url":"http://download.opensuse.org/distribution/leap/15.3/repo/oss/","enabled":true,"id":5031},{"url":"http://download.opensuse.org/distribution/leap/15.3/repo/non-oss/","autorefresh":false,"distro_target":null,"id":5032,"enabled":false,"description":"openSUSE-Leap-15.3-NonOss-Pool","name":"openSUSE-Leap-15.3-NonOss-Pool","installer_updates":false},{"description":"openSUSE-Leap-15.3-Updates","name":"openSUSE-Leap-15.3-Updates","installer_updates":false,"url":"http://download.opensuse.org/update/leap/15.3/oss/","autorefresh":true,"distro_target":null,"id":5068,"enabled":true},{"enabled":false,"id":5069,"distro_target":null,"autorefresh":true,"url":"http://download.opensuse.org/update/leap/15.3/non-oss/","installer_updates":false,"name":"openSUSE-Leap-15.3-NonOss-Updates","description":"openSUSE-Leap-15.3-NonOss-Updates"},{"name":"openSUSE-Backports-15.3-Updates","installer_updates":false,"description":"openSUSE-Backports-15.3-Updates","enabled":true,"id":5076,"autorefresh":true,"distro_target":null,"url":"http://download.opensuse.org/update/leap/15.3/backports/"},{"description":"SLE-15-SP3-Updates","installer_updates":false,"name":"SLE-15-SP3-Updates","url":"http://download.opensuse.org/update/leap/15.3/sle/","distro_target":null,"autorefresh":true,"id":5077,"enabled":true}],"predecessor_ids":[2001],"cpe":"cpe:/o:opensuse:leap:15.3","product_type":"base","version":"15.3","recommended":false,"migration_extra":false,"friendly_name":"openSUSE Leap 15.3 x86_64","former_identifier":"Leap","release_type":null,"name":"openSUSE Leap","offline_predecessor_ids":[],"friendly_version":"15.3","identifier":"Leap","release_stage":"released","id":2236,"extensions":[]},{"arch":"x86_64","eula_url":"","shortname":"SLE-VMDP","description":"

SUSE Linux Enterprise Virtual Machine Driver Pack contains Windows* disk and network device drivers to enable the high-performance hosting of these unmodified guest operating systems on top of SUSE Linux Enterprise Server. Paravirtualized drivers for SUSE Linux Enterprise Server are available, but not included in this Driver Pack. Paravirtualized drivers for SUSE Linux Enterprise Server are distributed under an open source license. They are included in both physical and electronic media of SUSE Linux Enterprise Server and corresponding Customer Center update channels.

","free":false,"cpe":"cpe:/o:suse:sle-vmdp:2.5","product_type":"extension","online_predecessor_ids":[],"repositories":[],"product_class":"VMDP","predecessor_ids":[],"friendly_name":"SUSE Linux Enterprise Virtual Machine Driver Pack 2.5 x86_64","migration_extra":false,"release_type":null,"former_identifier":"sle-vmdp","name":"SUSE Linux Enterprise Virtual Machine Driver Pack","offline_predecessor_ids":[],"version":"2.5","recommended":false,"id":2237,"release_stage":"released","identifier":"sle-vmdp","extensions":[],"friendly_version":"2.5"},{"free":false,"description":null,"shortname":"Rancher","arch":null,"eula_url":"","online_predecessor_ids":[],"repositories":[],"product_class":"RANCHER-X86","predecessor_ids":[],"product_type":"base","cpe":"cpe:/o:suse:rancher:other","version":"Other","recommended":false,"release_type":null,"former_identifier":"rancher","friendly_name":"SUSE Rancher Other","migration_extra":false,"offline_predecessor_ids":[],"name":"SUSE Rancher","friendly_version":"Other","identifier":"rancher","release_stage":"released","id":2238,"extensions":[]},{"arch":null,"eula_url":"","shortname":"Rancher","description":null,"free":false,"cpe":"cpe:/o:suse:rancher:2.5.7","product_type":"base","online_predecessor_ids":[],"repositories":[],"product_class":"RANCHER-X86","predecessor_ids":[],"friendly_name":"SUSE Rancher 2.5.7","migration_extra":false,"release_type":null,"former_identifier":"rancher","name":"SUSE Rancher","offline_predecessor_ids":[],"version":"2.5.7","recommended":false,"release_stage":"released","identifier":"rancher","id":2239,"extensions":[],"friendly_version":"2.5.7"},{"product_type":"base","cpe":"cpe:/o:suse:rancher:2.5.6","online_predecessor_ids":[],"product_class":"RANCHER-X86","repositories":[],"predecessor_ids":[],"arch":null,"eula_url":"","free":false,"shortname":"Rancher","description":null,"release_stage":"released","id":2240,"identifier":"rancher","extensions":[],"friendly_version":"2.5.6","release_type":null,"former_identifier":"rancher","friendly_name":"SUSE Rancher 2.5.6","migration_extra":false,"offline_predecessor_ids":[],"name":"SUSE Rancher","version":"2.5.6","recommended":false},{"predecessor_ids":[],"product_class":"RANCHER-X86","online_predecessor_ids":[],"repositories":[],"cpe":"cpe:/o:suse:rancher:2.5.5","product_type":"base","description":null,"shortname":"Rancher","free":false,"eula_url":"","arch":null,"friendly_version":"2.5.5","extensions":[],"id":2241,"release_stage":"released","identifier":"rancher","recommended":false,"version":"2.5.5","name":"SUSE Rancher","offline_predecessor_ids":[],"friendly_name":"SUSE Rancher 2.5.5","migration_extra":false,"former_identifier":"rancher","release_type":null},{"shortname":"Rancher","description":null,"free":false,"arch":null,"eula_url":"","online_predecessor_ids":[],"product_class":"RANCHER-X86","repositories":[],"predecessor_ids":[],"cpe":"cpe:/o:suse:rancher:2.5.4","product_type":"base","version":"2.5.4","recommended":false,"migration_extra":false,"friendly_name":"SUSE Rancher 2.5.4","former_identifier":"rancher","release_type":null,"name":"SUSE Rancher","offline_predecessor_ids":[],"friendly_version":"2.5.4","id":2242,"release_stage":"released","identifier":"rancher","extensions":[]},{"shortname":"Rancher","description":null,"free":false,"arch":null,"eula_url":"","online_predecessor_ids":[],"repositories":[],"product_class":"RANCHER-X86","predecessor_ids":[],"cpe":"cpe:/o:suse:rancher:2.5.3","product_type":"base","version":"2.5.3","recommended":false,"migration_extra":false,"friendly_name":"SUSE Rancher 2.5.3","release_type":null,"former_identifier":"rancher","name":"SUSE Rancher","offline_predecessor_ids":[],"friendly_version":"2.5.3","release_stage":"released","identifier":"rancher","id":2243,"extensions":[]},{"predecessor_ids":[],"online_predecessor_ids":[],"product_class":"RANCHER-X86","repositories":[],"product_type":"base","cpe":"cpe:/o:suse:rancher:2.5.2","free":false,"shortname":"Rancher","description":null,"eula_url":"","arch":null,"friendly_version":"2.5.2","extensions":[],"identifier":"rancher","release_stage":"released","id":2244,"recommended":false,"version":"2.5.2","offline_predecessor_ids":[],"name":"SUSE Rancher","release_type":null,"former_identifier":"rancher","friendly_name":"SUSE Rancher 2.5.2","migration_extra":false},{"friendly_name":"SUSE Rancher 2.5.1","migration_extra":false,"release_type":null,"former_identifier":"rancher","name":"SUSE Rancher","offline_predecessor_ids":[],"version":"2.5.1","recommended":false,"id":2245,"release_stage":"released","identifier":"rancher","extensions":[],"friendly_version":"2.5.1","arch":null,"eula_url":"","shortname":"Rancher","description":null,"free":false,"cpe":"cpe:/o:suse:rancher:2.5.1","product_type":"base","online_predecessor_ids":[],"product_class":"RANCHER-X86","repositories":[],"predecessor_ids":[]},{"cpe":"cpe:/o:suse:rancher:2.5.0","product_type":"base","predecessor_ids":[],"online_predecessor_ids":[],"product_class":"RANCHER-X86","repositories":[],"eula_url":"","arch":null,"description":null,"shortname":"Rancher","free":false,"extensions":[],"identifier":"rancher","release_stage":"released","id":2246,"friendly_version":"2.5.0","name":"SUSE Rancher","offline_predecessor_ids":[],"friendly_name":"SUSE Rancher 2.5.0","migration_extra":false,"release_type":null,"former_identifier":"rancher","recommended":false,"version":"2.5.0"},{"free":false,"description":null,"shortname":"Rancher","arch":null,"eula_url":"","repositories":[],"online_predecessor_ids":[],"product_class":"RANCHER-X86","predecessor_ids":[],"product_type":"base","cpe":"cpe:/o:suse:rancher:2.4.15","version":"2.4.15","recommended":false,"former_identifier":"rancher","release_type":null,"migration_extra":false,"friendly_name":"SUSE Rancher 2.4.15","offline_predecessor_ids":[],"name":"SUSE Rancher","friendly_version":"2.4.15","release_stage":"released","identifier":"rancher","id":2247,"extensions":[]},{"product_type":"base","cpe":"cpe:/o:suse:rancher:2.4.14","predecessor_ids":[],"repositories":[],"online_predecessor_ids":[],"product_class":"RANCHER-X86","eula_url":"","arch":null,"free":false,"shortname":"Rancher","description":null,"extensions":[],"id":2248,"release_stage":"released","identifier":"rancher","friendly_version":"2.4.14","offline_predecessor_ids":[],"name":"SUSE Rancher","former_identifier":"rancher","release_type":null,"migration_extra":false,"friendly_name":"SUSE Rancher 2.4.14","recommended":false,"version":"2.4.14"},{"friendly_version":"2.4.13","identifier":"rancher","release_stage":"released","id":2249,"extensions":[],"version":"2.4.13","recommended":false,"release_type":null,"former_identifier":"rancher","friendly_name":"SUSE Rancher 2.4.13","migration_extra":false,"offline_predecessor_ids":[],"name":"SUSE Rancher","repositories":[],"online_predecessor_ids":[],"product_class":"RANCHER-X86","predecessor_ids":[],"product_type":"base","cpe":"cpe:/o:suse:rancher:2.4.13","free":false,"shortname":"Rancher","description":null,"arch":null,"eula_url":""},{"recommended":false,"version":"2.4.12","name":"SUSE Rancher","offline_predecessor_ids":[],"friendly_name":"SUSE Rancher 2.4.12","migration_extra":false,"former_identifier":"rancher","release_type":null,"friendly_version":"2.4.12","extensions":[],"id":2250,"release_stage":"released","identifier":"rancher","shortname":"Rancher","description":null,"free":false,"eula_url":"","arch":null,"predecessor_ids":[],"online_predecessor_ids":[],"product_class":"RANCHER-X86","repositories":[],"cpe":"cpe:/o:suse:rancher:2.4.12","product_type":"base"},{"predecessor_ids":[],"product_class":"RANCHER-X86","online_predecessor_ids":[],"repositories":[],"product_type":"base","cpe":"cpe:/o:suse:rancher:2.4.11","free":false,"description":null,"shortname":"Rancher","eula_url":"","arch":null,"friendly_version":"2.4.11","extensions":[],"release_stage":"released","identifier":"rancher","id":2251,"recommended":false,"version":"2.4.11","offline_predecessor_ids":[],"name":"SUSE Rancher","former_identifier":"rancher","release_type":null,"friendly_name":"SUSE Rancher 2.4.11","migration_extra":false},{"cpe":"cpe:/o:suse:rancher:2.4.10","product_type":"base","predecessor_ids":[],"repositories":[],"online_predecessor_ids":[],"product_class":"RANCHER-X86","eula_url":"","arch":null,"description":null,"shortname":"Rancher","free":false,"extensions":[],"release_stage":"released","id":2252,"identifier":"rancher","friendly_version":"2.4.10","name":"SUSE Rancher","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"SUSE Rancher 2.4.10","former_identifier":"rancher","release_type":null,"recommended":false,"version":"2.4.10"},{"cpe":"cpe:/o:suse:rancher:2.4.9","product_type":"base","repositories":[],"online_predecessor_ids":[],"product_class":"RANCHER-X86","predecessor_ids":[],"arch":null,"eula_url":"","shortname":"Rancher","description":null,"free":false,"id":2253,"release_stage":"released","identifier":"rancher","extensions":[],"friendly_version":"2.4.9","migration_extra":false,"friendly_name":"SUSE Rancher 2.4.9","former_identifier":"rancher","release_type":null,"name":"SUSE Rancher","offline_predecessor_ids":[],"version":"2.4.9","recommended":false},{"friendly_version":"2.4.8","id":2254,"release_stage":"released","identifier":"rancher","extensions":[],"version":"2.4.8","recommended":false,"release_type":null,"former_identifier":"rancher","migration_extra":false,"friendly_name":"SUSE Rancher 2.4.8","offline_predecessor_ids":[],"name":"SUSE Rancher","product_class":"RANCHER-X86","online_predecessor_ids":[],"repositories":[],"predecessor_ids":[],"product_type":"base","cpe":"cpe:/o:suse:rancher:2.4.8","free":false,"shortname":"Rancher","description":null,"arch":null,"eula_url":""},{"extensions":[],"identifier":"rancher","release_stage":"released","id":2255,"friendly_version":"2.4.7","offline_predecessor_ids":[],"name":"SUSE Rancher","release_type":null,"former_identifier":"rancher","migration_extra":false,"friendly_name":"SUSE Rancher 2.4.7","recommended":false,"version":"2.4.7","product_type":"base","cpe":"cpe:/o:suse:rancher:2.4.7","predecessor_ids":[],"online_predecessor_ids":[],"product_class":"RANCHER-X86","repositories":[],"eula_url":"","arch":null,"free":false,"description":null,"shortname":"Rancher"},{"eula_url":"","arch":null,"description":null,"shortname":"Rancher","free":false,"cpe":"cpe:/o:suse:rancher:2.4.6","product_type":"base","predecessor_ids":[],"online_predecessor_ids":[],"product_class":"RANCHER-X86","repositories":[],"name":"SUSE Rancher","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"SUSE Rancher 2.4.6","former_identifier":"rancher","release_type":null,"recommended":false,"version":"2.4.6","extensions":[],"release_stage":"released","identifier":"rancher","id":2256,"friendly_version":"2.4.6"},{"migration_extra":false,"friendly_name":"SUSE Rancher 2.4.5","release_type":null,"former_identifier":"rancher","name":"SUSE Rancher","offline_predecessor_ids":[],"version":"2.4.5","recommended":false,"identifier":"rancher","release_stage":"released","id":2257,"extensions":[],"friendly_version":"2.4.5","arch":null,"eula_url":"","description":null,"shortname":"Rancher","free":false,"cpe":"cpe:/o:suse:rancher:2.4.5","product_type":"base","online_predecessor_ids":[],"product_class":"RANCHER-X86","repositories":[],"predecessor_ids":[]},{"arch":null,"eula_url":"","shortname":"Rancher","description":null,"free":false,"cpe":"cpe:/o:suse:rancher:2.4.4","product_type":"base","repositories":[],"online_predecessor_ids":[],"product_class":"RANCHER-X86","predecessor_ids":[],"friendly_name":"SUSE Rancher 2.4.4","migration_extra":false,"release_type":null,"former_identifier":"rancher","name":"SUSE Rancher","offline_predecessor_ids":[],"version":"2.4.4","recommended":false,"identifier":"rancher","release_stage":"released","id":2258,"extensions":[],"friendly_version":"2.4.4"},{"friendly_version":"2.4.3","extensions":[],"release_stage":"released","id":2259,"identifier":"rancher","recommended":false,"version":"2.4.3","name":"SUSE Rancher","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"SUSE Rancher 2.4.3","release_type":null,"former_identifier":"rancher","predecessor_ids":[],"repositories":[],"online_predecessor_ids":[],"product_class":"RANCHER-X86","cpe":"cpe:/o:suse:rancher:2.4.3","product_type":"base","description":null,"shortname":"Rancher","free":false,"eula_url":"","arch":null},{"free":false,"description":null,"shortname":"Rancher","eula_url":"","arch":null,"predecessor_ids":[],"online_predecessor_ids":[],"repositories":[],"product_class":"RANCHER-X86","product_type":"base","cpe":"cpe:/o:suse:rancher:2.4.2","recommended":false,"version":"2.4.2","offline_predecessor_ids":[],"name":"SUSE Rancher","release_type":null,"former_identifier":"rancher","friendly_name":"SUSE Rancher 2.4.2","migration_extra":false,"friendly_version":"2.4.2","extensions":[],"identifier":"rancher","release_stage":"released","id":2260},{"free":false,"shortname":"Rancher","description":null,"arch":null,"eula_url":"","online_predecessor_ids":[],"product_class":"RANCHER-X86","repositories":[],"predecessor_ids":[],"product_type":"base","cpe":"cpe:/o:suse:rancher:2.4.1","version":"2.4.1","recommended":false,"release_type":null,"former_identifier":"rancher","migration_extra":false,"friendly_name":"SUSE Rancher 2.4.1","offline_predecessor_ids":[],"name":"SUSE Rancher","friendly_version":"2.4.1","release_stage":"released","identifier":"rancher","id":2261,"extensions":[]},{"product_type":"base","cpe":"cpe:/o:suse:rancher:2.4.0","online_predecessor_ids":[],"repositories":[],"product_class":"RANCHER-X86","predecessor_ids":[],"arch":null,"eula_url":"","free":false,"description":null,"shortname":"Rancher","release_stage":"released","id":2262,"identifier":"rancher","extensions":[],"friendly_version":"2.4.0","former_identifier":"rancher","release_type":null,"migration_extra":false,"friendly_name":"SUSE Rancher 2.4.0","offline_predecessor_ids":[],"name":"SUSE Rancher","version":"2.4.0","recommended":false},{"product_type":"base","cpe":"cpe:/o:suse:rancher:2.3.11","repositories":[],"online_predecessor_ids":[],"product_class":"RANCHER-X86","predecessor_ids":[],"arch":null,"eula_url":"","free":false,"description":null,"shortname":"Rancher","release_stage":"released","id":2263,"identifier":"rancher","extensions":[],"friendly_version":"2.3.11","former_identifier":"rancher","release_type":null,"migration_extra":false,"friendly_name":"SUSE Rancher 2.3.11","offline_predecessor_ids":[],"name":"SUSE Rancher","version":"2.3.11","recommended":false},{"extensions":[],"release_stage":"released","identifier":"rancher","id":2264,"friendly_version":"2.3.10","name":"SUSE Rancher","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"SUSE Rancher 2.3.10","release_type":null,"former_identifier":"rancher","recommended":false,"version":"2.3.10","cpe":"cpe:/o:suse:rancher:2.3.10","product_type":"base","predecessor_ids":[],"repositories":[],"online_predecessor_ids":[],"product_class":"RANCHER-X86","eula_url":"","arch":null,"shortname":"Rancher","description":null,"free":false},{"release_stage":"released","identifier":"rancher","id":2265,"extensions":[],"friendly_version":"2.3.9","friendly_name":"SUSE Rancher 2.3.9","migration_extra":false,"release_type":null,"former_identifier":"rancher","name":"SUSE Rancher","offline_predecessor_ids":[],"version":"2.3.9","recommended":false,"cpe":"cpe:/o:suse:rancher:2.3.9","product_type":"base","repositories":[],"online_predecessor_ids":[],"product_class":"RANCHER-X86","predecessor_ids":[],"arch":null,"eula_url":"","shortname":"Rancher","description":null,"free":false},{"friendly_name":"SUSE Rancher 2.3.8","migration_extra":false,"former_identifier":"rancher","release_type":null,"name":"SUSE Rancher","offline_predecessor_ids":[],"version":"2.3.8","recommended":false,"release_stage":"released","id":2266,"identifier":"rancher","extensions":[],"friendly_version":"2.3.8","arch":null,"eula_url":"","description":null,"shortname":"Rancher","free":false,"cpe":"cpe:/o:suse:rancher:2.3.8","product_type":"base","repositories":[],"online_predecessor_ids":[],"product_class":"RANCHER-X86","predecessor_ids":[]},{"extensions":[],"release_stage":"released","identifier":"rancher","id":2267,"friendly_version":"2.3.7","offline_predecessor_ids":[],"name":"SUSE Rancher","former_identifier":"rancher","release_type":null,"migration_extra":false,"friendly_name":"SUSE Rancher 2.3.7","recommended":false,"version":"2.3.7","product_type":"base","cpe":"cpe:/o:suse:rancher:2.3.7","predecessor_ids":[],"online_predecessor_ids":[],"product_class":"RANCHER-X86","repositories":[],"eula_url":"","arch":null,"free":false,"shortname":"Rancher","description":null},{"id":2268,"release_stage":"released","identifier":"rancher","extensions":[],"friendly_version":"2.3.6","release_type":null,"former_identifier":"rancher","friendly_name":"SUSE Rancher 2.3.6","migration_extra":false,"offline_predecessor_ids":[],"name":"SUSE Rancher","version":"2.3.6","recommended":false,"product_type":"base","cpe":"cpe:/o:suse:rancher:2.3.6","product_class":"RANCHER-X86","online_predecessor_ids":[],"repositories":[],"predecessor_ids":[],"arch":null,"eula_url":"","free":false,"description":null,"shortname":"Rancher"},{"friendly_version":"2.3.5","release_stage":"released","identifier":"rancher","id":2269,"extensions":[],"version":"2.3.5","recommended":false,"migration_extra":false,"friendly_name":"SUSE Rancher 2.3.5","release_type":null,"former_identifier":"rancher","name":"SUSE Rancher","offline_predecessor_ids":[],"online_predecessor_ids":[],"repositories":[],"product_class":"RANCHER-X86","predecessor_ids":[],"cpe":"cpe:/o:suse:rancher:2.3.5","product_type":"base","shortname":"Rancher","description":null,"free":false,"arch":null,"eula_url":""},{"online_predecessor_ids":[],"product_class":"RANCHER-X86","repositories":[],"predecessor_ids":[],"product_type":"base","cpe":"cpe:/o:suse:rancher:2.3.4","free":false,"shortname":"Rancher","description":null,"arch":null,"eula_url":"","friendly_version":"2.3.4","identifier":"rancher","release_stage":"released","id":2270,"extensions":[],"version":"2.3.4","recommended":false,"former_identifier":"rancher","release_type":null,"migration_extra":false,"friendly_name":"SUSE Rancher 2.3.4","offline_predecessor_ids":[],"name":"SUSE Rancher"},{"friendly_version":"2.3.3","extensions":[],"release_stage":"released","id":2271,"identifier":"rancher","recommended":false,"version":"2.3.3","name":"SUSE Rancher","offline_predecessor_ids":[],"friendly_name":"SUSE Rancher 2.3.3","migration_extra":false,"release_type":null,"former_identifier":"rancher","predecessor_ids":[],"repositories":[],"online_predecessor_ids":[],"product_class":"RANCHER-X86","cpe":"cpe:/o:suse:rancher:2.3.3","product_type":"base","shortname":"Rancher","description":null,"free":false,"eula_url":"","arch":null},{"friendly_version":"2.3.2","identifier":"rancher","release_stage":"released","id":2272,"extensions":[],"version":"2.3.2","recommended":false,"friendly_name":"SUSE Rancher 2.3.2","migration_extra":false,"former_identifier":"rancher","release_type":null,"name":"SUSE Rancher","offline_predecessor_ids":[],"online_predecessor_ids":[],"product_class":"RANCHER-X86","repositories":[],"predecessor_ids":[],"cpe":"cpe:/o:suse:rancher:2.3.2","product_type":"base","shortname":"Rancher","description":null,"free":false,"arch":null,"eula_url":""},{"cpe":"cpe:/o:suse:rancher:2.3.1","product_type":"base","online_predecessor_ids":[],"product_class":"RANCHER-X86","repositories":[],"predecessor_ids":[],"arch":null,"eula_url":"","description":null,"shortname":"Rancher","free":false,"release_stage":"released","identifier":"rancher","id":2273,"extensions":[],"friendly_version":"2.3.1","migration_extra":false,"friendly_name":"SUSE Rancher 2.3.1","former_identifier":"rancher","release_type":null,"name":"SUSE Rancher","offline_predecessor_ids":[],"version":"2.3.1","recommended":false},{"eula_url":"","arch":null,"description":null,"shortname":"Rancher","free":false,"cpe":"cpe:/o:suse:rancher:2.3.0","product_type":"base","predecessor_ids":[],"product_class":"RANCHER-X86","online_predecessor_ids":[],"repositories":[],"name":"SUSE Rancher","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"SUSE Rancher 2.3.0","former_identifier":"rancher","release_type":null,"recommended":false,"version":"2.3.0","extensions":[],"identifier":"rancher","release_stage":"released","id":2274,"friendly_version":"2.3.0"},{"friendly_version":"2.2.0","identifier":"rancher","release_stage":"released","id":2275,"extensions":[],"version":"2.2.0","recommended":false,"former_identifier":"rancher","release_type":null,"migration_extra":false,"friendly_name":"SUSE Rancher 2.2.0","offline_predecessor_ids":[],"name":"SUSE Rancher","product_class":"RANCHER-X86","online_predecessor_ids":[],"repositories":[],"predecessor_ids":[],"product_type":"base","cpe":"cpe:/o:suse:rancher:2.2.0","free":false,"description":null,"shortname":"Rancher","arch":null,"eula_url":""},{"friendly_version":"Hosted","extensions":[],"id":2276,"release_stage":"released","identifier":"rancher","recommended":false,"version":"Hosted","name":"SUSE Rancher","offline_predecessor_ids":[],"friendly_name":"SUSE Rancher Hosted","migration_extra":false,"release_type":null,"former_identifier":"rancher","predecessor_ids":[],"online_predecessor_ids":[],"repositories":[],"product_class":"RANCHER-HOSTED","cpe":"cpe:/o:suse:rancher:hosted","product_type":"base","shortname":"Rancher","description":null,"free":false,"eula_url":"","arch":null},{"eula_url":"","arch":null,"free":false,"description":null,"shortname":"Longhorn","product_type":"base","cpe":"cpe:/o:suse:longhorn:other","predecessor_ids":[],"repositories":[],"online_predecessor_ids":[],"product_class":"LONGHORN-X86","offline_predecessor_ids":[],"name":"SUSE Longhorn","release_type":null,"former_identifier":"longhorn","friendly_name":"SUSE Longhorn Other","migration_extra":false,"recommended":false,"version":"Other","extensions":[],"id":2277,"release_stage":"released","identifier":"longhorn","friendly_version":"Other"},{"product_class":"LONGHORN-X86","online_predecessor_ids":[],"repositories":[],"predecessor_ids":[],"product_type":"base","cpe":"cpe:/o:suse:longhorn:1.1.0","free":false,"shortname":"Longhorn","description":null,"arch":null,"eula_url":"","friendly_version":"1.1.0","release_stage":"released","identifier":"longhorn","id":2278,"extensions":[],"version":"1.1.0","recommended":false,"former_identifier":"longhorn","release_type":null,"migration_extra":false,"friendly_name":"SUSE Longhorn 1.1.0","offline_predecessor_ids":[],"name":"SUSE Longhorn"},{"friendly_version":"1.0.2","identifier":"longhorn","release_stage":"released","id":2279,"extensions":[],"version":"1.0.2","recommended":false,"former_identifier":"longhorn","release_type":null,"friendly_name":"SUSE Longhorn 1.0.2","migration_extra":false,"offline_predecessor_ids":[],"name":"SUSE Longhorn","online_predecessor_ids":[],"repositories":[],"product_class":"LONGHORN-X86","predecessor_ids":[],"product_type":"base","cpe":"cpe:/o:suse:longhorn:1.0.2","free":false,"description":null,"shortname":"Longhorn","arch":null,"eula_url":""},{"version":"1.0.1","recommended":false,"friendly_name":"SUSE Longhorn 1.0.1","migration_extra":false,"release_type":null,"former_identifier":"longhorn","name":"SUSE Longhorn","offline_predecessor_ids":[],"friendly_version":"1.0.1","release_stage":"released","identifier":"longhorn","id":2280,"extensions":[],"description":null,"shortname":"Longhorn","free":false,"arch":null,"eula_url":"","repositories":[],"online_predecessor_ids":[],"product_class":"LONGHORN-X86","predecessor_ids":[],"cpe":"cpe:/o:suse:longhorn:1.0.1","product_type":"base"},{"predecessor_ids":[],"repositories":[],"online_predecessor_ids":[],"product_class":"LONGHORN-X86","product_type":"base","cpe":"cpe:/o:suse:longhorn:1.0.0","free":false,"description":null,"shortname":"Longhorn","eula_url":"","arch":null,"friendly_version":"1.0.0","extensions":[],"release_stage":"released","id":2281,"identifier":"longhorn","recommended":false,"version":"1.0.0","offline_predecessor_ids":[],"name":"SUSE Longhorn","release_type":null,"former_identifier":"longhorn","friendly_name":"SUSE Longhorn 1.0.0","migration_extra":false},{"online_predecessor_ids":[2201],"product_class":"MICROOS-ARM64","repositories":[{"description":"SUSE-MicroOS-5.1-Updates for sle-15-aarch64","installer_updates":false,"name":"SUSE-MicroOS-5.1-Updates","url":"https://updates.suse.com/SUSE/Updates/SUSE-MicroOS/5.1/aarch64/update/","distro_target":"sle-15-aarch64","autorefresh":true,"id":5044,"enabled":true},{"description":"SUSE-MicroOS-5.1-Debuginfo-Updates for sle-15-aarch64","name":"SUSE-MicroOS-5.1-Debuginfo-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Updates/SUSE-MicroOS/5.1/aarch64/update_debug/","enabled":false,"id":5045},{"name":"SUSE-MicroOS-5.1-Pool","installer_updates":false,"description":"SUSE-MicroOS-5.1-Pool for sle-15-aarch64","id":5046,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SUSE-MicroOS/5.1/aarch64/product/","autorefresh":false,"distro_target":"sle-15-aarch64"},{"name":"SUSE-MicroOS-5.1-Debuginfo-Pool","installer_updates":false,"description":"SUSE-MicroOS-5.1-Debuginfo-Pool for sle-15-aarch64","enabled":false,"id":5047,"autorefresh":false,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Products/SUSE-MicroOS/5.1/aarch64/product_debug/"},{"description":"SUSE-MicroOS-5.1-Source-Pool for sle-15-aarch64","installer_updates":false,"name":"SUSE-MicroOS-5.1-Source-Pool","url":"https://updates.suse.com/SUSE/Products/SUSE-MicroOS/5.1/aarch64/product_source/","distro_target":"sle-15-aarch64","autorefresh":false,"id":5048,"enabled":false}],"predecessor_ids":[2201],"cpe":"cpe:/o:suse:suse-microos:5.1","product_type":"base","description":"SUSE Linux Enterprise Micro 5.1","shortname":"SUSE Linux Enterprise Micro","free":false,"arch":"aarch64","eula_url":"","friendly_version":"5.1","id":2282,"release_stage":"released","identifier":"SUSE-MicroOS","extensions":[{"predecessor_ids":[1740,1868,1947],"product_class":"MODULE","online_predecessor_ids":[1740,1868,1947],"repositories":[{"description":"SUSE-PackageHub-15-SP3-Backports-Pool for sle-15-aarch64","installer_updates":false,"name":"SUSE-PackageHub-15-SP3-Backports-Pool","distro_target":"sle-15-aarch64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Backports/SLE-15-SP3_aarch64/standard/","enabled":true,"id":4849},{"installer_updates":false,"name":"SUSE-PackageHub-15-SP3-Backports-Debuginfo","description":"SUSE-PackageHub-15-SP3-Backports-Debuginfo for sle-15-aarch64","enabled":false,"id":4850,"distro_target":"sle-15-aarch64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Backports/SLE-15-SP3_aarch64/standard_debug/"},{"description":"SLE-Module-Packagehub-Subpackages15-SP3-Updates for sle-15-aarch64","installer_updates":false,"name":"SLE-Module-Packagehub-Subpackages15-SP3-Updates","distro_target":"sle-15-aarch64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP3/aarch64/update/","enabled":true,"id":4851},{"id":4852,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP3/aarch64/update_debug/","distro_target":"sle-15-aarch64","autorefresh":true,"installer_updates":false,"name":"SLE-Module-Packagehub-Subpackages15-SP3-Debuginfo-Updates","description":"SLE-Module-Packagehub-Subpackages15-SP3-Debuginfo-Updates for sle-15-aarch64"},{"url":"https://updates.suse.com/SUSE/Backports/SLE-15-SP3_aarch64/product/","distro_target":"sle-15-aarch64","autorefresh":false,"id":4853,"enabled":true,"description":"SUSE-PackageHub-15-SP3-Pool for sle-15-aarch64","installer_updates":false,"name":"SUSE-PackageHub-15-SP3-Pool"},{"id":4854,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP3/aarch64/product/","distro_target":"sle-15-aarch64","autorefresh":false,"installer_updates":false,"name":"SLE-Module-Packagehub-Subpackages15-SP3-Pool","description":"SLE-Module-Packagehub-Subpackages15-SP3-Pool for sle-15-aarch64"},{"enabled":false,"id":4855,"distro_target":"sle-15-aarch64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP3/aarch64/product_debug/","installer_updates":false,"name":"SLE-Module-Packagehub-Subpackages15-SP3-Debuginfo-Pool","description":"SLE-Module-Packagehub-Subpackages15-SP3-Debuginfo-Pool for sle-15-aarch64"},{"description":"SLE-Module-Packagehub-Subpackages15-SP3-Source-Pool for sle-15-aarch64","name":"SLE-Module-Packagehub-Subpackages15-SP3-Source-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP3/aarch64/product_source/","autorefresh":false,"distro_target":"sle-15-aarch64","id":4856,"enabled":false}],"product_type":"module","cpe":"cpe:/o:suse:packagehub:15:sp3","free":true,"shortname":"SUSE-PackageHub-15","description":"SUSE Package Hub is a free of charge module providing access to community maintained packages built to run on SUSE Linux Enterprise Server. Built from the same sources used in the openSUSE distributions, these quality packages provide additional software to what is found in the SUSE Linux Enterprise Server product. Packages from the Package Hub are delivered without L3 support from SUSE. General updates and fixes to the packages in SUSE Package Hub are provided by the openSUSE community based on their discretion, though SUSE will monitor and ensure that any known critical security issues will be addressed. Packages in the Package Hub are approved by SUSE for use with SUSE Linux Enterprise Server 15-SP3 and to not interfere with the supportability of SUSE Linux Enterprise Server, its modules and extensions. For more information about SUSE Package Hub please visit https://packagehub.suse.com.","eula_url":"","arch":"aarch64","friendly_version":"15 SP3","extensions":[],"release_stage":"released","id":2188,"identifier":"PackageHub","recommended":false,"version":"15.3","offline_predecessor_ids":[1532,1810,1912],"name":"SUSE Package Hub","release_type":null,"former_identifier":"PackageHub","migration_extra":false,"friendly_name":"SUSE Package Hub 15 SP3 aarch64"}],"version":"5.1","recommended":false,"friendly_name":"SUSE Linux Enterprise Micro 5.1 aarch64","migration_extra":false,"release_type":null,"former_identifier":"SUSE-MicroOS","name":"SUSE Linux Enterprise Micro","offline_predecessor_ids":[]},{"friendly_version":"5.1","extensions":[{"extensions":[],"release_stage":"released","id":2187,"identifier":"sle-module-live-patching","friendly_version":"15 SP3","name":"SUSE Linux Enterprise Live Patching","offline_predecessor_ids":[1536,1757,1888],"friendly_name":"SUSE Linux Enterprise Live Patching 15 SP3 x86_64","migration_extra":false,"release_type":null,"former_identifier":"sle-module-live-patching","recommended":false,"version":"15.3","cpe":"cpe:/o:suse:sle-module-live-patching:15:sp3","product_type":"extension","predecessor_ids":[1736,1828,1984],"repositories":[{"id":4844,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Live-Patching/15-SP3/x86_64/update/","autorefresh":true,"distro_target":"sle-15-x86_64","name":"SLE-Module-Live-Patching15-SP3-Updates","installer_updates":false,"description":"SLE-Module-Live-Patching15-SP3-Updates for sle-15-x86_64"},{"enabled":false,"id":4845,"distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Live-Patching/15-SP3/x86_64/update_debug/","installer_updates":false,"name":"SLE-Module-Live-Patching15-SP3-Debuginfo-Updates","description":"SLE-Module-Live-Patching15-SP3-Debuginfo-Updates for sle-15-x86_64"},{"description":"SLE-Module-Live-Patching15-SP3-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Live-Patching15-SP3-Pool","distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Live-Patching/15-SP3/x86_64/product/","enabled":true,"id":4846},{"description":"SLE-Module-Live-Patching15-SP3-Debuginfo-Pool for sle-15-x86_64","name":"SLE-Module-Live-Patching15-SP3-Debuginfo-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Live-Patching/15-SP3/x86_64/product_debug/","enabled":false,"id":4847},{"name":"SLE-Module-Live-Patching15-SP3-Source-Pool","installer_updates":false,"description":"SLE-Module-Live-Patching15-SP3-Source-Pool for sle-15-x86_64","enabled":false,"id":4848,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Live-Patching/15-SP3/x86_64/product_source/"}],"online_predecessor_ids":[1736,1828,1984],"product_class":"SLE-LP","eula_url":"","arch":"x86_64","shortname":"Live-Patching","description":"

SUSE Linux Enterprise Live Patching provides packages to update critical components in SUSE Linux Enterprise. With SUSE Linux Enterprise Live Patching, you can perform critical patching without shutting down your system, reducing the need for planned downtime and increasing service availability.

","free":false},{"product_type":"module","cpe":"cpe:/o:suse:packagehub:15:sp3","predecessor_ids":[1743,1871,1950],"online_predecessor_ids":[1743,1871,1950],"product_class":"MODULE","repositories":[{"id":4873,"enabled":true,"url":"https://updates.suse.com/SUSE/Backports/SLE-15-SP3_x86_64/standard/","autorefresh":false,"distro_target":"sle-15-x86_64","name":"SUSE-PackageHub-15-SP3-Backports-Pool","installer_updates":false,"description":"SUSE-PackageHub-15-SP3-Backports-Pool for sle-15-x86_64"},{"name":"SUSE-PackageHub-15-SP3-Backports-Debuginfo","installer_updates":false,"description":"SUSE-PackageHub-15-SP3-Backports-Debuginfo for sle-15-x86_64","enabled":false,"id":4874,"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Backports/SLE-15-SP3_x86_64/standard_debug/"},{"distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP3/x86_64/update/","enabled":true,"id":4875,"description":"SLE-Module-Packagehub-Subpackages15-SP3-Updates for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Packagehub-Subpackages15-SP3-Updates"},{"distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP3/x86_64/update_debug/","enabled":false,"id":4876,"description":"SLE-Module-Packagehub-Subpackages15-SP3-Debuginfo-Updates for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Packagehub-Subpackages15-SP3-Debuginfo-Updates"},{"description":"SUSE-PackageHub-15-SP3-Pool for sle-15-x86_64","name":"SUSE-PackageHub-15-SP3-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Backports/SLE-15-SP3_x86_64/product/","autorefresh":false,"distro_target":"sle-15-x86_64","id":4877,"enabled":true},{"id":4878,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP3/x86_64/product/","distro_target":"sle-15-x86_64","autorefresh":false,"installer_updates":false,"name":"SLE-Module-Packagehub-Subpackages15-SP3-Pool","description":"SLE-Module-Packagehub-Subpackages15-SP3-Pool for sle-15-x86_64"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP3/x86_64/product_debug/","autorefresh":false,"distro_target":"sle-15-x86_64","id":4879,"enabled":false,"description":"SLE-Module-Packagehub-Subpackages15-SP3-Debuginfo-Pool for sle-15-x86_64","name":"SLE-Module-Packagehub-Subpackages15-SP3-Debuginfo-Pool","installer_updates":false},{"name":"SLE-Module-Packagehub-Subpackages15-SP3-Source-Pool","installer_updates":false,"description":"SLE-Module-Packagehub-Subpackages15-SP3-Source-Pool for sle-15-x86_64","id":4880,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP3/x86_64/product_source/","autorefresh":false,"distro_target":"sle-15-x86_64"}],"eula_url":"","arch":"x86_64","free":true,"shortname":"SUSE-PackageHub-15","description":"SUSE Package Hub is a free of charge module providing access to community maintained packages built to run on SUSE Linux Enterprise Server. Built from the same sources used in the openSUSE distributions, these quality packages provide additional software to what is found in the SUSE Linux Enterprise Server product. Packages from the Package Hub are delivered without L3 support from SUSE. General updates and fixes to the packages in SUSE Package Hub are provided by the openSUSE community based on their discretion, though SUSE will monitor and ensure that any known critical security issues will be addressed. Packages in the Package Hub are approved by SUSE for use with SUSE Linux Enterprise Server 15-SP3 and to not interfere with the supportability of SUSE Linux Enterprise Server, its modules and extensions. For more information about SUSE Package Hub please visit https://packagehub.suse.com.","extensions":[],"id":2191,"release_stage":"released","identifier":"PackageHub","friendly_version":"15 SP3","offline_predecessor_ids":[1529,1813,1915],"name":"SUSE Package Hub","release_type":null,"former_identifier":"PackageHub","friendly_name":"SUSE Package Hub 15 SP3 x86_64","migration_extra":false,"recommended":false,"version":"15.3"}],"identifier":"SUSE-MicroOS","release_stage":"released","id":2283,"recommended":false,"version":"5.1","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Micro","release_type":null,"former_identifier":"SUSE-MicroOS","friendly_name":"SUSE Linux Enterprise Micro 5.1 x86_64","migration_extra":false,"predecessor_ids":[2202],"online_predecessor_ids":[2202],"product_class":"MICROOS-X86","repositories":[{"name":"SUSE-MicroOS-5.1-Updates","installer_updates":false,"description":"SUSE-MicroOS-5.1-Updates for sle-15-x86_64","id":5049,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SUSE-MicroOS/5.1/x86_64/update/","autorefresh":true,"distro_target":"sle-15-x86_64"},{"id":5050,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SUSE-MicroOS/5.1/x86_64/update_debug/","distro_target":"sle-15-x86_64","autorefresh":true,"installer_updates":false,"name":"SUSE-MicroOS-5.1-Debuginfo-Updates","description":"SUSE-MicroOS-5.1-Debuginfo-Updates for sle-15-x86_64"},{"description":"SUSE-MicroOS-5.1-Pool for sle-15-x86_64","installer_updates":false,"name":"SUSE-MicroOS-5.1-Pool","distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SUSE-MicroOS/5.1/x86_64/product/","enabled":true,"id":5051},{"installer_updates":false,"name":"SUSE-MicroOS-5.1-Debuginfo-Pool","description":"SUSE-MicroOS-5.1-Debuginfo-Pool for sle-15-x86_64","id":5052,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SUSE-MicroOS/5.1/x86_64/product_debug/","distro_target":"sle-15-x86_64","autorefresh":false},{"installer_updates":false,"name":"SUSE-MicroOS-5.1-Source-Pool","description":"SUSE-MicroOS-5.1-Source-Pool for sle-15-x86_64","enabled":false,"id":5053,"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SUSE-MicroOS/5.1/x86_64/product_source/"}],"product_type":"base","cpe":"cpe:/o:suse:suse-microos:5.1","free":false,"shortname":"SUSE Linux Enterprise Micro","description":"SUSE Linux Enterprise Micro 5.1","eula_url":"","arch":"x86_64"},{"former_identifier":"rancher","release_type":null,"friendly_name":"SUSE Rancher 2.5.8","migration_extra":false,"offline_predecessor_ids":[],"name":"SUSE Rancher","version":"2.5.8","recommended":false,"release_stage":"released","id":2284,"identifier":"rancher","extensions":[],"friendly_version":"2.5.8","arch":null,"eula_url":"","free":false,"description":null,"shortname":"Rancher","product_type":"base","cpe":"cpe:/o:suse:rancher:2.5.8","online_predecessor_ids":[],"repositories":[],"product_class":"RANCHER-X86","predecessor_ids":[]},{"free":false,"shortname":"SLE-15-SP3-RT","description":"

The SUSE Linux Enterprise Real Time aims to reduce the latency and increase the predictability and reliability of time-sensitive mission-critical applications.

","arch":"x86_64","eula_url":"https://updates.suse.com/SUSE/Products/SLE-Product-RT/15-SP3/x86_64/product.license/","online_predecessor_ids":[2003],"product_class":"SUSE_RT","repositories":[{"name":"SLE-Product-RT-15-SP3-Updates","installer_updates":false,"description":"SLE-Product-RT-15-SP3-Updates for sle-15-x86_64","id":5058,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-RT/15-SP3/x86_64/update/","autorefresh":true,"distro_target":"sle-15-x86_64"},{"enabled":false,"id":5059,"distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-RT/15-SP3/x86_64/update_debug/","installer_updates":false,"name":"SLE-Product-RT15-SP3-Debuginfo-Updates","description":"SLE-Product-RT15-SP3-Debuginfo-Updates for sle-15-x86_64"},{"name":"SLE-Product-RT-15-SP3-Pool","installer_updates":false,"description":"SLE-Product-RT-15-SP3-Pool for sle-15-x86_64","enabled":true,"id":5060,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Product-RT/15-SP3/x86_64/product/"},{"enabled":false,"id":5061,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Product-RT/15-SP3/x86_64/product_debug/","name":"SLE-Product-RT15-SP3-Debuginfo-Pool","installer_updates":false,"description":"SLE-Product-RT15-SP3-Debuginfo-Pool for sle-15-x86_64"},{"description":"SLE-Product-RT15-SP3-Source-Pool for sle-15-x86_64","name":"SLE-Product-RT15-SP3-Source-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-RT/15-SP3/x86_64/product_source/","autorefresh":false,"distro_target":"sle-15-x86_64","id":5062,"enabled":false}],"predecessor_ids":[2003],"product_type":"base","cpe":"cpe:/o:suse:sle_rt:15:sp3","version":"15.3","recommended":false,"former_identifier":"SLE_RT","release_type":null,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Real Time 15 SP3 x86_64","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Real Time","friendly_version":"15 SP3","release_stage":"released","identifier":"SLE_RT","id":2285,"extensions":[{"version":"15.3","recommended":true,"release_type":null,"former_identifier":"sle-module-basesystem","friendly_name":"Basesystem Module 15 SP3 x86_64","migration_extra":false,"offline_predecessor_ids":[1212,1368,1440],"name":"Basesystem Module","friendly_version":"15 SP3","id":2145,"release_stage":"released","identifier":"sle-module-basesystem","extensions":[{"product_type":"module","cpe":"cpe:/o:suse:sle-module-desktop-applications:15:sp3","product_class":"MODULE","online_predecessor_ids":[1578,1776,1967],"repositories":[{"description":"SLE-Module-Desktop-Applications15-SP3-Updates for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Desktop-Applications15-SP3-Updates","distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15-SP3/x86_64/update/","enabled":true,"id":4654},{"installer_updates":false,"name":"SLE-Module-Desktop-Applications15-SP3-Debuginfo-Updates","description":"SLE-Module-Desktop-Applications15-SP3-Debuginfo-Updates for sle-15-x86_64","enabled":false,"id":4655,"distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15-SP3/x86_64/update_debug/"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP3/x86_64/product/","autorefresh":false,"distro_target":"sle-15-x86_64","id":4656,"enabled":true,"description":"SLE-Module-Desktop-Applications15-SP3-Pool for sle-15-x86_64","name":"SLE-Module-Desktop-Applications15-SP3-Pool","installer_updates":false},{"installer_updates":false,"name":"SLE-Module-Desktop-Applications15-SP3-Debuginfo-Pool","description":"SLE-Module-Desktop-Applications15-SP3-Debuginfo-Pool for sle-15-x86_64","id":4657,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP3/x86_64/product_debug/","distro_target":"sle-15-x86_64","autorefresh":false},{"installer_updates":false,"name":"SLE-Module-Desktop-Applications15-SP3-Source-Pool","description":"SLE-Module-Desktop-Applications15-SP3-Source-Pool for sle-15-x86_64","enabled":false,"id":4658,"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP3/x86_64/product_source/"}],"predecessor_ids":[1578,1776,1967],"arch":"x86_64","eula_url":"","free":true,"shortname":"Desktop-Applications-Module","description":"

The SUSE Linux Enterprise Desktop Applications Module delivers a basic set of Desktop functionality.

Access to the Desktop Applications Module is included in your SUSE Linux Enterprise product subscription.

","identifier":"sle-module-desktop-applications","release_stage":"released","id":2149,"extensions":[{"repositories":[{"name":"SLE-Module-DevTools15-SP3-Updates","installer_updates":false,"description":"SLE-Module-DevTools15-SP3-Updates for sle-15-x86_64","id":4714,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15-SP3/x86_64/update/","autorefresh":true,"distro_target":"sle-15-x86_64"},{"description":"SLE-Module-DevTools15-SP3-Debuginfo-Updates for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-DevTools15-SP3-Debuginfo-Updates","distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15-SP3/x86_64/update_debug/","enabled":false,"id":4715},{"description":"SLE-Module-DevTools15-SP3-Pool for sle-15-x86_64","name":"SLE-Module-DevTools15-SP3-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP3/x86_64/product/","autorefresh":false,"distro_target":"sle-15-x86_64","id":4716,"enabled":true},{"enabled":false,"id":4717,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP3/x86_64/product_debug/","name":"SLE-Module-DevTools15-SP3-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-DevTools15-SP3-Debuginfo-Pool for sle-15-x86_64"},{"enabled":false,"id":4718,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP3/x86_64/product_source/","name":"SLE-Module-DevTools15-SP3-Source-Pool","installer_updates":false,"description":"SLE-Module-DevTools15-SP3-Source-Pool for sle-15-x86_64"}],"online_predecessor_ids":[1579,1794,1971],"product_class":"MODULE","predecessor_ids":[1579,1794,1971],"product_type":"module","cpe":"cpe:/o:suse:sle-module-development-tools:15:sp3","free":true,"shortname":"Development-Tools-Module","description":"

The Development Tools Module helps you developing applications for SUSE Linux Enterprise 15.

Access to the Development Tools Module is included in your SUSE Linux Enterprise product subscription. The module has a different lifecycle than SUSE Linux Enterprise itself.

","arch":"x86_64","eula_url":"","friendly_version":"15 SP3","id":2161,"release_stage":"released","identifier":"sle-module-development-tools","extensions":[],"version":"15.3","recommended":true,"former_identifier":"sle-sdk","release_type":null,"friendly_name":"Development Tools Module 15 SP3 x86_64","migration_extra":false,"offline_predecessor_ids":[1341,1427,1630,1892],"name":"Development Tools Module"}],"friendly_version":"15 SP3","release_type":null,"former_identifier":"sle-module-desktop-applications","migration_extra":false,"friendly_name":"Desktop Applications Module 15 SP3 x86_64","offline_predecessor_ids":[],"name":"Desktop Applications Module","version":"15.3","recommended":true},{"predecessor_ids":[1580,1780,1955],"online_predecessor_ids":[1580,1780,1955],"repositories":[{"description":"SLE-Module-Server-Applications15-SP3-Updates for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Server-Applications15-SP3-Updates","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15-SP3/x86_64/update/","distro_target":"sle-15-x86_64","autorefresh":true,"id":4674,"enabled":true},{"installer_updates":false,"name":"SLE-Module-Server-Applications15-SP3-Debuginfo-Updates","description":"SLE-Module-Server-Applications15-SP3-Debuginfo-Updates for sle-15-x86_64","id":4675,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15-SP3/x86_64/update_debug/","distro_target":"sle-15-x86_64","autorefresh":true},{"installer_updates":false,"name":"SLE-Module-Server-Applications15-SP3-Pool","description":"SLE-Module-Server-Applications15-SP3-Pool for sle-15-x86_64","id":4676,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP3/x86_64/product/","distro_target":"sle-15-x86_64","autorefresh":false},{"id":4677,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP3/x86_64/product_debug/","autorefresh":false,"distro_target":"sle-15-x86_64","name":"SLE-Module-Server-Applications15-SP3-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-Server-Applications15-SP3-Debuginfo-Pool for sle-15-x86_64"},{"description":"SLE-Module-Server-Applications15-SP3-Source-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Server-Applications15-SP3-Source-Pool","distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP3/x86_64/product_source/","enabled":false,"id":4678}],"product_class":"MODULE","cpe":"cpe:/o:suse:sle-module-server-applications:15:sp3","product_type":"module","shortname":"Server-Applications-Module","description":"

The SUSE Linux Enterprise Server Applications Module delivers a basic set of Server functionality.

Access to the Server Applications Module is included in your SUSE Linux Enterprise Server subscription.

","free":true,"eula_url":"","arch":"x86_64","friendly_version":"15 SP3","extensions":[{"product_type":"module","cpe":"cpe:/o:suse:sle-module-rt:15:sp3","online_predecessor_ids":[2005],"product_class":"MODULE","repositories":[{"enabled":true,"id":5063,"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-RT/15-SP3/x86_64/update/","name":"SLE-Module-RT15-SP3-Updates","installer_updates":false,"description":"SLE-Module-RT15-SP3-Updates for sle-15-x86_64"},{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-RT/15-SP3/x86_64/update_debug/","distro_target":"sle-15-x86_64","autorefresh":true,"id":5064,"enabled":false,"description":"SLE-Module-RT15-SP3-Debuginfo-Updates for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-RT15-SP3-Debuginfo-Updates"},{"description":"SLE-Module-RT15-SP3-Pool for sle-15-x86_64","name":"SLE-Module-RT15-SP3-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-RT/15-SP3/x86_64/product/","enabled":true,"id":5065},{"installer_updates":false,"name":"SLE-Module-RT15-SP3-Debuginfo-Pool","description":"SLE-Module-RT15-SP3-Debuginfo-Pool for sle-15-x86_64","id":5066,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-RT/15-SP3/x86_64/product_debug/","distro_target":"sle-15-x86_64","autorefresh":false},{"name":"SLE-Module-RT15-SP3-Source-Pool","installer_updates":false,"description":"SLE-Module-RT15-SP3-Source-Pool for sle-15-x86_64","enabled":false,"id":5067,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-RT/15-SP3/x86_64/product_source/"}],"predecessor_ids":[2005],"arch":"x86_64","eula_url":"","free":true,"description":"

The SUSE Linux Enterprise Real Time aims to reduce the latency and increase the predictability and reliability of time-sensitive mission-critical applications.

Packages in this module are generally supported until a newer version of the package is released or the package is dropped from the module.

","shortname":"SUSE-Real-Time-Module","release_stage":"released","id":2286,"identifier":"sle-module-rt","extensions":[],"friendly_version":"15 SP3","release_type":null,"former_identifier":"sle-module-rt","friendly_name":"SUSE Real Time Module 15 SP3 x86_64","migration_extra":false,"offline_predecessor_ids":[],"name":"SUSE Real Time Module","version":"15.3","recommended":true}],"release_stage":"released","id":2153,"identifier":"sle-module-server-applications","recommended":true,"version":"15.3","name":"Server Applications Module","offline_predecessor_ids":[],"friendly_name":"Server Applications Module 15 SP3 x86_64","migration_extra":false,"former_identifier":"sle-module-server-applications","release_type":null},{"free":true,"shortname":"Containers-Module","description":"

This Module contains several packages revolving around containers and related tools.

","arch":"x86_64","eula_url":"","product_class":"MODULE","online_predecessor_ids":[1642,1790,1963],"repositories":[{"name":"SLE-Module-Containers15-SP3-Updates","installer_updates":false,"description":"SLE-Module-Containers15-SP3-Updates for sle-15-x86_64","enabled":true,"id":4694,"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/15-SP3/x86_64/update/"},{"enabled":false,"id":4695,"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/15-SP3/x86_64/update_debug/","name":"SLE-Module-Containers15-SP3-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-Containers15-SP3-Debuginfo-Updates for sle-15-x86_64"},{"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP3/x86_64/product/","enabled":true,"id":4696,"description":"SLE-Module-Containers15-SP3-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Containers15-SP3-Pool"},{"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP3/x86_64/product_debug/","enabled":false,"id":4697,"description":"SLE-Module-Containers15-SP3-Debuginfo-Pool for sle-15-x86_64","name":"SLE-Module-Containers15-SP3-Debuginfo-Pool","installer_updates":false},{"name":"SLE-Module-Containers15-SP3-Source-Pool","installer_updates":false,"description":"SLE-Module-Containers15-SP3-Source-Pool for sle-15-x86_64","enabled":false,"id":4698,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP3/x86_64/product_source/"}],"predecessor_ids":[1642,1790,1963],"product_type":"module","cpe":"cpe:/o:suse:sle-module-containers:15:sp3","version":"15.3","recommended":false,"former_identifier":"sle-module-containers","release_type":null,"friendly_name":"Containers Module 15 SP3 x86_64","migration_extra":false,"offline_predecessor_ids":[1332],"name":"Containers Module","friendly_version":"15 SP3","release_stage":"released","id":2157,"identifier":"sle-module-containers","extensions":[]}],"free":true,"description":"

The SUSE Linux Enterprise Basesystem Module delivers the base system of the product.

","shortname":"Basesystem-Module","arch":"x86_64","eula_url":"","online_predecessor_ids":[1576,1772,1946],"repositories":[{"description":"SLE-Module-Basesystem15-SP3-Updates for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Basesystem15-SP3-Updates","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15-SP3/x86_64/update/","distro_target":"sle-15-x86_64","autorefresh":true,"id":4634,"enabled":true},{"description":"SLE-Module-Basesystem15-SP3-Debuginfo-Updates for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Basesystem15-SP3-Debuginfo-Updates","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15-SP3/x86_64/update_debug/","distro_target":"sle-15-x86_64","autorefresh":true,"id":4635,"enabled":false},{"installer_updates":false,"name":"SLE-Module-Basesystem15-SP3-Pool","description":"SLE-Module-Basesystem15-SP3-Pool for sle-15-x86_64","id":4636,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP3/x86_64/product/","distro_target":"sle-15-x86_64","autorefresh":false},{"enabled":false,"id":4637,"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP3/x86_64/product_debug/","installer_updates":false,"name":"SLE-Module-Basesystem15-SP3-Debuginfo-Pool","description":"SLE-Module-Basesystem15-SP3-Debuginfo-Pool for sle-15-x86_64"},{"installer_updates":false,"name":"SLE-Module-Basesystem15-SP3-Source-Pool","description":"SLE-Module-Basesystem15-SP3-Source-Pool for sle-15-x86_64","enabled":false,"id":4638,"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP3/x86_64/product_source/"}],"product_class":"MODULE","predecessor_ids":[1576,1772,1946],"product_type":"module","cpe":"cpe:/o:suse:sle-module-basesystem:15:sp3"},{"offline_predecessor_ids":[],"name":"Certifications Module","release_type":null,"former_identifier":"sle-module-certifications","friendly_name":"Certifications Module 15 SP3 x86_64","migration_extra":false,"recommended":false,"version":"15.3","extensions":[],"id":2389,"release_stage":"released","identifier":"sle-module-certifications","friendly_version":"15 SP3","eula_url":"","arch":"x86_64","free":true,"shortname":"Certifications-Module","description":"

This module contains the certification packages.

Access to the Certifications Module is included in your SUSE Linux Enterprise subscription. The module has a different lifecycle than SUSE Linux Enterprise itself; please check the Release Notes for further details.

","product_type":"module","cpe":"cpe:/o:suse:sle-module-certifications:15:sp3","predecessor_ids":[],"online_predecessor_ids":[],"product_class":"MODULE","repositories":[{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Certifications/15-SP3/x86_64/update/","autorefresh":true,"distro_target":"sle-15-x86_64","id":5527,"enabled":true,"description":"SLE-Module-Certifications-15-SP3-Updates for sle-15-x86_64","name":"SLE-Module-Certifications-15-SP3-Updates","installer_updates":false},{"description":"SLE-Module-Certifications-15-SP3-Debuginfo-Updates for sle-15-x86_64","name":"SLE-Module-Certifications-15-SP3-Debuginfo-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Certifications/15-SP3/x86_64/update_debug/","enabled":false,"id":5528},{"name":"SLE-Module-Certifications-15-SP3-Pool","installer_updates":false,"description":"SLE-Module-Certifications-15-SP3-Pool for sle-15-x86_64","enabled":true,"id":5529,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Certifications/15-SP3/x86_64/product/"},{"description":"SLE-Module-Certifications-15-SP3-Debuginfo-Pool for sle-15-x86_64","name":"SLE-Module-Certifications-15-SP3-Debuginfo-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Certifications/15-SP3/x86_64/product_debug/","enabled":false,"id":5530},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Certifications/15-SP3/x86_64/product_source/","distro_target":"sle-15-x86_64","autorefresh":false,"id":5531,"enabled":false,"description":"SLE-Module-Certifications-15-SP3-Source-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Certifications-15-SP3-Source-Pool"}]}]},{"product_type":"module","cpe":"cpe:/o:suse:sle-module-rt:15:sp3","predecessor_ids":[2005],"online_predecessor_ids":[2005],"product_class":"MODULE","repositories":[{"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-RT/15-SP3/x86_64/update/","enabled":true,"id":5063,"description":"SLE-Module-RT15-SP3-Updates for sle-15-x86_64","name":"SLE-Module-RT15-SP3-Updates","installer_updates":false},{"id":5064,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-RT/15-SP3/x86_64/update_debug/","autorefresh":true,"distro_target":"sle-15-x86_64","name":"SLE-Module-RT15-SP3-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-RT15-SP3-Debuginfo-Updates for sle-15-x86_64"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-RT/15-SP3/x86_64/product/","autorefresh":false,"distro_target":"sle-15-x86_64","id":5065,"enabled":true,"description":"SLE-Module-RT15-SP3-Pool for sle-15-x86_64","name":"SLE-Module-RT15-SP3-Pool","installer_updates":false},{"description":"SLE-Module-RT15-SP3-Debuginfo-Pool for sle-15-x86_64","name":"SLE-Module-RT15-SP3-Debuginfo-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-RT/15-SP3/x86_64/product_debug/","enabled":false,"id":5066},{"installer_updates":false,"name":"SLE-Module-RT15-SP3-Source-Pool","description":"SLE-Module-RT15-SP3-Source-Pool for sle-15-x86_64","enabled":false,"id":5067,"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-RT/15-SP3/x86_64/product_source/"}],"eula_url":"","arch":"x86_64","free":true,"description":"

The SUSE Linux Enterprise Real Time aims to reduce the latency and increase the predictability and reliability of time-sensitive mission-critical applications.

Packages in this module are generally supported until a newer version of the package is released or the package is dropped from the module.

","shortname":"SUSE-Real-Time-Module","extensions":[],"release_stage":"released","id":2286,"identifier":"sle-module-rt","friendly_version":"15 SP3","offline_predecessor_ids":[],"name":"SUSE Real Time Module","release_type":null,"former_identifier":"sle-module-rt","migration_extra":false,"friendly_name":"SUSE Real Time Module 15 SP3 x86_64","recommended":false,"version":"15.3"},{"shortname":"SUSE Linux Enterprise Micro","description":"SUSE Linux Enterprise Micro 5.1","free":false,"eula_url":"","arch":"s390x","predecessor_ids":[],"online_predecessor_ids":[],"product_class":"MICROOS-Z","repositories":[{"distro_target":"sle-15-s390x","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SUSE-MicroOS/5.1/s390x/update/","enabled":true,"id":5070,"description":"SUSE-MicroOS-5.1-Updates for sle-15-s390x","installer_updates":false,"name":"SUSE-MicroOS-5.1-Updates"},{"url":"https://updates.suse.com/SUSE/Updates/SUSE-MicroOS/5.1/s390x/update_debug/","autorefresh":true,"distro_target":"sle-15-s390x","id":5071,"enabled":false,"description":"SUSE-MicroOS-5.1-Debuginfo-Updates for sle-15-s390x","name":"SUSE-MicroOS-5.1-Debuginfo-Updates","installer_updates":false},{"enabled":true,"id":5072,"distro_target":"sle-15-s390x","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SUSE-MicroOS/5.1/s390x/product/","installer_updates":false,"name":"SUSE-MicroOS-5.1-Pool","description":"SUSE-MicroOS-5.1-Pool for sle-15-s390x"},{"url":"https://updates.suse.com/SUSE/Products/SUSE-MicroOS/5.1/s390x/product_debug/","distro_target":"sle-15-s390x","autorefresh":false,"id":5073,"enabled":false,"description":"SUSE-MicroOS-5.1-Debuginfo-Pool for sle-15-s390x","installer_updates":false,"name":"SUSE-MicroOS-5.1-Debuginfo-Pool"},{"enabled":false,"id":5074,"autorefresh":false,"distro_target":"sle-15-s390x","url":"https://updates.suse.com/SUSE/Products/SUSE-MicroOS/5.1/s390x/product_source/","name":"SUSE-MicroOS-5.1-Source-Pool","installer_updates":false,"description":"SUSE-MicroOS-5.1-Source-Pool for sle-15-s390x"}],"cpe":"cpe:/o:suse:suse-microos:5.1","product_type":"base","recommended":false,"version":"5.1","name":"SUSE Linux Enterprise Micro","offline_predecessor_ids":[],"friendly_name":"SUSE Linux Enterprise Micro 5.1 s390x","migration_extra":false,"former_identifier":"SUSE-MicroOS","release_type":null,"friendly_version":"5.1","extensions":[{"former_identifier":"sle-module-live-patching","release_type":null,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Live Patching 15 SP3 s390x","offline_predecessor_ids":[2079,2080],"name":"SUSE Linux Enterprise Live Patching","version":"15.3","recommended":false,"identifier":"sle-module-live-patching","release_stage":"released","id":2186,"extensions":[],"friendly_version":"15 SP3","arch":"s390x","eula_url":"","free":false,"shortname":"Live-Patching","description":"

SUSE Linux Enterprise Live Patching provides packages to update critical components in SUSE Linux Enterprise. With SUSE Linux Enterprise Live Patching, you can perform critical patching without shutting down your system, reducing the need for planned downtime and increasing service availability.

","product_type":"extension","cpe":"cpe:/o:suse:sle-module-live-patching:15:sp3","product_class":"SLE-LP-Z","online_predecessor_ids":[2081],"repositories":[{"enabled":true,"id":4839,"autorefresh":true,"distro_target":"sle-15-s390x","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Live-Patching/15-SP3/s390x/update/","name":"SLE-Module-Live-Patching15-SP3-Updates","installer_updates":false,"description":"SLE-Module-Live-Patching15-SP3-Updates for sle-15-s390x"},{"enabled":false,"id":4840,"distro_target":"sle-15-s390x","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Live-Patching/15-SP3/s390x/update_debug/","installer_updates":false,"name":"SLE-Module-Live-Patching15-SP3-Debuginfo-Updates","description":"SLE-Module-Live-Patching15-SP3-Debuginfo-Updates for sle-15-s390x"},{"description":"SLE-Module-Live-Patching15-SP3-Pool for sle-15-s390x","name":"SLE-Module-Live-Patching15-SP3-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Live-Patching/15-SP3/s390x/product/","autorefresh":false,"distro_target":"sle-15-s390x","id":4841,"enabled":true},{"description":"SLE-Module-Live-Patching15-SP3-Debuginfo-Pool for sle-15-s390x","name":"SLE-Module-Live-Patching15-SP3-Debuginfo-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-15-s390x","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Live-Patching/15-SP3/s390x/product_debug/","enabled":false,"id":4842},{"description":"SLE-Module-Live-Patching15-SP3-Source-Pool for sle-15-s390x","name":"SLE-Module-Live-Patching15-SP3-Source-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Live-Patching/15-SP3/s390x/product_source/","autorefresh":false,"distro_target":"sle-15-s390x","id":4843,"enabled":false}],"predecessor_ids":[2081]},{"extensions":[],"id":2190,"release_stage":"released","identifier":"PackageHub","friendly_version":"15 SP3","offline_predecessor_ids":[1530,1812,1914],"name":"SUSE Package Hub","release_type":null,"former_identifier":"PackageHub","friendly_name":"SUSE Package Hub 15 SP3 s390x","migration_extra":false,"recommended":false,"version":"15.3","product_type":"module","cpe":"cpe:/o:suse:packagehub:15:sp3","predecessor_ids":[1742,1870,1949],"repositories":[{"autorefresh":false,"distro_target":"sle-15-s390x","url":"https://updates.suse.com/SUSE/Backports/SLE-15-SP3_s390x/standard/","enabled":true,"id":4865,"description":"SUSE-PackageHub-15-SP3-Backports-Pool for sle-15-s390x","name":"SUSE-PackageHub-15-SP3-Backports-Pool","installer_updates":false},{"url":"https://updates.suse.com/SUSE/Backports/SLE-15-SP3_s390x/standard_debug/","distro_target":"sle-15-s390x","autorefresh":true,"id":4866,"enabled":false,"description":"SUSE-PackageHub-15-SP3-Backports-Debuginfo for sle-15-s390x","installer_updates":false,"name":"SUSE-PackageHub-15-SP3-Backports-Debuginfo"},{"description":"SLE-Module-Packagehub-Subpackages15-SP3-Updates for sle-15-s390x","name":"SLE-Module-Packagehub-Subpackages15-SP3-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-15-s390x","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP3/s390x/update/","enabled":true,"id":4867},{"id":4868,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP3/s390x/update_debug/","autorefresh":true,"distro_target":"sle-15-s390x","name":"SLE-Module-Packagehub-Subpackages15-SP3-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-Packagehub-Subpackages15-SP3-Debuginfo-Updates for sle-15-s390x"},{"distro_target":"sle-15-s390x","autorefresh":false,"url":"https://updates.suse.com/SUSE/Backports/SLE-15-SP3_s390x/product/","enabled":true,"id":4869,"description":"SUSE-PackageHub-15-SP3-Pool for sle-15-s390x","installer_updates":false,"name":"SUSE-PackageHub-15-SP3-Pool"},{"enabled":true,"id":4870,"autorefresh":false,"distro_target":"sle-15-s390x","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP3/s390x/product/","name":"SLE-Module-Packagehub-Subpackages15-SP3-Pool","installer_updates":false,"description":"SLE-Module-Packagehub-Subpackages15-SP3-Pool for sle-15-s390x"},{"distro_target":"sle-15-s390x","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP3/s390x/product_debug/","enabled":false,"id":4871,"description":"SLE-Module-Packagehub-Subpackages15-SP3-Debuginfo-Pool for sle-15-s390x","installer_updates":false,"name":"SLE-Module-Packagehub-Subpackages15-SP3-Debuginfo-Pool"},{"description":"SLE-Module-Packagehub-Subpackages15-SP3-Source-Pool for sle-15-s390x","name":"SLE-Module-Packagehub-Subpackages15-SP3-Source-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-15-s390x","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP3/s390x/product_source/","enabled":false,"id":4872}],"online_predecessor_ids":[1742,1870,1949],"product_class":"MODULE","eula_url":"","arch":"s390x","free":true,"shortname":"SUSE-PackageHub-15","description":"SUSE Package Hub is a free of charge module providing access to community maintained packages built to run on SUSE Linux Enterprise Server. Built from the same sources used in the openSUSE distributions, these quality packages provide additional software to what is found in the SUSE Linux Enterprise Server product. Packages from the Package Hub are delivered without L3 support from SUSE. General updates and fixes to the packages in SUSE Package Hub are provided by the openSUSE community based on their discretion, though SUSE will monitor and ensure that any known critical security issues will be addressed. Packages in the Package Hub are approved by SUSE for use with SUSE Linux Enterprise Server 15-SP3 and to not interfere with the supportability of SUSE Linux Enterprise Server, its modules and extensions. For more information about SUSE Package Hub please visit https://packagehub.suse.com."}],"id":2287,"release_stage":"released","identifier":"SUSE-MicroOS"},{"eula_url":"","arch":null,"free":false,"shortname":"Longhorn","description":null,"product_type":"base","cpe":"cpe:/o:suse:longhorn:1.1.1","predecessor_ids":[],"online_predecessor_ids":[],"product_class":"LONGHORN-X86","repositories":[],"offline_predecessor_ids":[],"name":"SUSE Longhorn","release_type":null,"former_identifier":"longhorn","migration_extra":false,"friendly_name":"SUSE Longhorn 1.1.1","recommended":false,"version":"1.1.1","extensions":[],"identifier":"longhorn","release_stage":"released","id":2288,"friendly_version":"1.1.1"},{"cpe":"cpe:/o:suse:sles:15:sp4","product_type":"base","online_predecessor_ids":[1760,1936,2137,2406],"product_class":"SLES-ARM64","repositories":[{"distro_target":"sle-15-aarch64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-SLES/15-SP4/aarch64/update/","enabled":true,"id":5082,"description":"SLE-Product-SLES15-SP4-Updates for sle-15-aarch64","installer_updates":false,"name":"SLE-Product-SLES15-SP4-Updates"},{"name":"SLE-Product-SLES15-SP4-Debuginfo-Updates","installer_updates":false,"description":"SLE-Product-SLES15-SP4-Debuginfo-Updates for sle-15-aarch64","enabled":false,"id":5083,"autorefresh":true,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Updates/SLE-Product-SLES/15-SP4/aarch64/update_debug/"},{"id":5084,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-INSTALLER/15-SP4/aarch64/update/","autorefresh":true,"distro_target":"sle-15-aarch64","name":"SLE15-SP4-Installer-Updates","installer_updates":true,"description":"SLE15-SP4-Installer-Updates for sle-15-aarch64"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Product-SLES/15-SP4/aarch64/product/","distro_target":"sle-15-aarch64","autorefresh":false,"id":5085,"enabled":true,"description":"SLE-Product-SLES15-SP4-Pool for sle-15-aarch64","installer_updates":false,"name":"SLE-Product-SLES15-SP4-Pool"},{"id":5086,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-SLES/15-SP4/aarch64/product_debug/","autorefresh":false,"distro_target":"sle-15-aarch64","name":"SLE-Product-SLES15-SP4-Debuginfo-Pool","installer_updates":false,"description":"SLE-Product-SLES15-SP4-Debuginfo-Pool for sle-15-aarch64"},{"installer_updates":false,"name":"SLE-Product-SLES15-SP4-Source-Pool","description":"SLE-Product-SLES15-SP4-Source-Pool for sle-15-aarch64","enabled":false,"id":5087,"distro_target":"sle-15-aarch64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-SLES/15-SP4/aarch64/product_source/"}],"predecessor_ids":[1760,1936,2137,2406],"arch":"aarch64","eula_url":"https://updates.suse.com/SUSE/Products/SLE-Product-SLES/15-SP4/aarch64/product.license/","description":"SUSE Linux Enterprise offers a comprehensive suite of products built on a single code base. The platform addresses business needs from the smallest thin-client devices to the world's most powerful high-performance computing and mainframe servers. SUSE Linux Enterprise offers common management tools and technology certifications across the platform, and each product is enterprise-class.","shortname":"SLES15-SP4","free":false,"id":2289,"release_stage":"released","identifier":"SLES","extensions":[{"product_type":"module","cpe":"cpe:/o:suse:sle-module-basesystem:15:sp4","product_class":"MODULE","online_predecessor_ids":[1589,1769,1943,2142],"repositories":[{"name":"SLE-Module-Basesystem15-SP4-Updates","installer_updates":false,"description":"SLE-Module-Basesystem15-SP4-Updates for sle-15-aarch64","id":5122,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15-SP4/aarch64/update/","autorefresh":true,"distro_target":"sle-15-aarch64"},{"description":"SLE-Module-Basesystem15-SP4-Debuginfo-Updates for sle-15-aarch64","installer_updates":false,"name":"SLE-Module-Basesystem15-SP4-Debuginfo-Updates","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15-SP4/aarch64/update_debug/","distro_target":"sle-15-aarch64","autorefresh":true,"id":5123,"enabled":false},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP4/aarch64/product/","autorefresh":false,"distro_target":"sle-15-aarch64","id":5124,"enabled":true,"description":"SLE-Module-Basesystem15-SP4-Pool for sle-15-aarch64","name":"SLE-Module-Basesystem15-SP4-Pool","installer_updates":false},{"installer_updates":false,"name":"SLE-Module-Basesystem15-SP4-Debuginfo-Pool","description":"SLE-Module-Basesystem15-SP4-Debuginfo-Pool for sle-15-aarch64","enabled":false,"id":5125,"distro_target":"sle-15-aarch64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP4/aarch64/product_debug/"},{"id":5126,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP4/aarch64/product_source/","distro_target":"sle-15-aarch64","autorefresh":false,"installer_updates":false,"name":"SLE-Module-Basesystem15-SP4-Source-Pool","description":"SLE-Module-Basesystem15-SP4-Source-Pool for sle-15-aarch64"}],"predecessor_ids":[1589,1769,1943,2142],"arch":"aarch64","eula_url":"","free":true,"description":"

The SUSE Linux Enterprise Basesystem Module delivers the base system of the product.

","shortname":"Basesystem-Module","release_stage":"released","identifier":"sle-module-basesystem","id":2296,"extensions":[{"free":true,"shortname":"Desktop-Applications-Module","description":"

The SUSE Linux Enterprise Desktop Applications Module delivers a basic set of Desktop functionality.

Access to the Desktop Applications Module is included in your SUSE Linux Enterprise product subscription.

","eula_url":"","arch":"aarch64","predecessor_ids":[1595,1773,1964,2146],"online_predecessor_ids":[1595,1773,1964,2146],"repositories":[{"autorefresh":true,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15-SP4/aarch64/update/","enabled":true,"id":5142,"description":"SLE-Module-Desktop-Applications15-SP4-Updates for sle-15-aarch64","name":"SLE-Module-Desktop-Applications15-SP4-Updates","installer_updates":false},{"description":"SLE-Module-Desktop-Applications15-SP4-Debuginfo-Updates for sle-15-aarch64","installer_updates":false,"name":"SLE-Module-Desktop-Applications15-SP4-Debuginfo-Updates","distro_target":"sle-15-aarch64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15-SP4/aarch64/update_debug/","enabled":false,"id":5143},{"description":"SLE-Module-Desktop-Applications15-SP4-Pool for sle-15-aarch64","installer_updates":false,"name":"SLE-Module-Desktop-Applications15-SP4-Pool","distro_target":"sle-15-aarch64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP4/aarch64/product/","enabled":true,"id":5144},{"description":"SLE-Module-Desktop-Applications15-SP4-Debuginfo-Pool for sle-15-aarch64","installer_updates":false,"name":"SLE-Module-Desktop-Applications15-SP4-Debuginfo-Pool","distro_target":"sle-15-aarch64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP4/aarch64/product_debug/","enabled":false,"id":5145},{"distro_target":"sle-15-aarch64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP4/aarch64/product_source/","enabled":false,"id":5146,"description":"SLE-Module-Desktop-Applications15-SP4-Source-Pool for sle-15-aarch64","installer_updates":false,"name":"SLE-Module-Desktop-Applications15-SP4-Source-Pool"}],"product_class":"MODULE","product_type":"module","cpe":"cpe:/o:suse:sle-module-desktop-applications:15:sp4","recommended":false,"version":"15.4","offline_predecessor_ids":[],"name":"Desktop Applications Module","release_type":null,"former_identifier":"sle-module-desktop-applications","friendly_name":"Desktop Applications Module 15 SP4 aarch64","migration_extra":true,"friendly_version":"15 SP4","extensions":[{"recommended":false,"version":"15.4","offline_predecessor_ids":[1376,1430,1633,1889],"name":"Development Tools Module","former_identifier":"sle-sdk","release_type":null,"friendly_name":"Development Tools Module 15 SP4 aarch64","migration_extra":true,"friendly_version":"15 SP4","extensions":[{"arch":"aarch64","eula_url":"https://updates.suse.com/SUSE/Products/SLE-Module-NVIDIA-Compute/15/aarch64/product.license/","shortname":"NVIDIA-Compute-Module","description":"NVIDIA Compute Drivers - NVIDIA CUDA This Module contains software under the terms and conditions of a 3rd party EULA (End User License Agreement). The EULA can be found at https://docs.nvidia.com/cuda/eula/index.html. By using this software you agree to fully comply with the terms and conditions of the EULA. If you do not agree to the terms and conditions of the EULA, do not use the software.","free":true,"cpe":"cpe:/o:suse:sle-module-nvidia-compute:15","product_type":"module","repositories":[{"id":4560,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-NVIDIA-Compute/15/aarch64/update/","autorefresh":true,"distro_target":"sle-15-aarch64","name":"SLE-Module-NVIDIA-Compute-15-Updates","installer_updates":false,"description":"SLE-Module-NVIDIA-Compute-15-Updates for sle-15-aarch64"},{"name":"SLE-Module-NVIDIA-Compute-15-Pool","installer_updates":false,"description":"SLE-Module-NVIDIA-Compute-15-Pool for sle-15-aarch64","id":4561,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-NVIDIA-Compute/15/aarch64/product/","autorefresh":false,"distro_target":"sle-15-aarch64"},{"installer_updates":false,"name":"NVIDIA-Compute-SLE-15","description":"NVIDIA-Compute-SLE-15","enabled":true,"id":4562,"distro_target":null,"autorefresh":true,"url":"https://developer.download.nvidia.com/compute/cuda/repos/sles15/sbsa/"}],"online_predecessor_ids":[],"product_class":"MODULE","predecessor_ids":[],"friendly_name":"NVIDIA Compute Module 15 aarch64","migration_extra":false,"former_identifier":"sle-module-NVIDIA-compute","release_type":null,"name":"NVIDIA Compute Module","offline_predecessor_ids":[],"version":"15","recommended":false,"id":2130,"release_stage":"released","identifier":"sle-module-NVIDIA-compute","extensions":[],"friendly_version":"15"}],"release_stage":"released","id":2312,"identifier":"sle-module-development-tools","free":true,"description":"

The Development Tools Module helps you developing applications for SUSE Linux Enterprise 15.

Access to the Development Tools Module is included in your SUSE Linux Enterprise product subscription. The module has a different lifecycle than SUSE Linux Enterprise itself.

","shortname":"Development-Tools-Module","eula_url":"","arch":"aarch64","predecessor_ids":[1598,1791,1968,2158],"product_class":"MODULE","online_predecessor_ids":[1598,1791,1968,2158],"repositories":[{"installer_updates":false,"name":"SLE-Module-DevTools15-SP4-Updates","description":"SLE-Module-DevTools15-SP4-Updates for sle-15-aarch64","enabled":true,"id":5202,"distro_target":"sle-15-aarch64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15-SP4/aarch64/update/"},{"distro_target":"sle-15-aarch64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15-SP4/aarch64/update_debug/","enabled":false,"id":5203,"description":"SLE-Module-DevTools15-SP4-Debuginfo-Updates for sle-15-aarch64","installer_updates":false,"name":"SLE-Module-DevTools15-SP4-Debuginfo-Updates"},{"name":"SLE-Module-DevTools15-SP4-Pool","installer_updates":false,"description":"SLE-Module-DevTools15-SP4-Pool for sle-15-aarch64","enabled":true,"id":5204,"autorefresh":false,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP4/aarch64/product/"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP4/aarch64/product_debug/","distro_target":"sle-15-aarch64","autorefresh":false,"id":5205,"enabled":false,"description":"SLE-Module-DevTools15-SP4-Debuginfo-Pool for sle-15-aarch64","installer_updates":false,"name":"SLE-Module-DevTools15-SP4-Debuginfo-Pool"},{"installer_updates":false,"name":"SLE-Module-DevTools15-SP4-Source-Pool","description":"SLE-Module-DevTools15-SP4-Source-Pool for sle-15-aarch64","id":5206,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP4/aarch64/product_source/","distro_target":"sle-15-aarch64","autorefresh":false}],"product_type":"module","cpe":"cpe:/o:suse:sle-module-development-tools:15:sp4"}],"release_stage":"released","id":2300,"identifier":"sle-module-desktop-applications"},{"extensions":[{"friendly_version":"15 SP4","extensions":[],"release_stage":"released","identifier":"sle-module-web-scripting","id":2316,"recommended":false,"version":"15.4","name":"Web and Scripting Module","offline_predecessor_ids":[1539],"migration_extra":true,"friendly_name":"Web and Scripting Module 15 SP4 aarch64","release_type":null,"former_identifier":"sle-module-web-scripting","predecessor_ids":[1718,1795,1973,2162],"online_predecessor_ids":[1718,1795,1973,2162],"repositories":[{"id":5222,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/15-SP4/aarch64/update/","distro_target":"sle-15-aarch64","autorefresh":true,"installer_updates":false,"name":"SLE-Module-Web-Scripting15-SP4-Updates","description":"SLE-Module-Web-Scripting15-SP4-Updates for sle-15-aarch64"},{"enabled":false,"id":5223,"autorefresh":true,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/15-SP4/aarch64/update_debug/","name":"SLE-Module-Web-Scripting15-SP4-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-Web-Scripting15-SP4-Debuginfo-Updates for sle-15-aarch64"},{"installer_updates":false,"name":"SLE-Module-Web-Scripting15-SP4-Pool","description":"SLE-Module-Web-Scripting15-SP4-Pool for sle-15-aarch64","enabled":true,"id":5224,"distro_target":"sle-15-aarch64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP4/aarch64/product/"},{"id":5225,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP4/aarch64/product_debug/","distro_target":"sle-15-aarch64","autorefresh":false,"installer_updates":false,"name":"SLE-Module-Web-Scripting15-SP4-Debuginfo-Pool","description":"SLE-Module-Web-Scripting15-SP4-Debuginfo-Pool for sle-15-aarch64"},{"description":"SLE-Module-Web-Scripting15-SP4-Source-Pool for sle-15-aarch64","name":"SLE-Module-Web-Scripting15-SP4-Source-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP4/aarch64/product_source/","autorefresh":false,"distro_target":"sle-15-aarch64","id":5226,"enabled":false}],"product_class":"MODULE","cpe":"cpe:/o:suse:sle-module-web-scripting:15:sp4","product_type":"module","description":"

The SUSE Linux Enterprise Web and Scripting Module should contains additional packages that are helpful when running a webserver.

Access to the Web and Scripting Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself: Package versions in this module are usually supported for at most three years. We are planning to release more recent versions on a schedule of approximately 18 month; the exact dates may differ per package.

","shortname":"Web-Scripting-Module","free":true,"eula_url":"","arch":"aarch64"},{"predecessor_ids":[1604,1801,1979,2168],"online_predecessor_ids":[1604,1801,1979,2168],"repositories":[{"name":"SLE-Module-Legacy15-SP4-Updates","installer_updates":false,"description":"SLE-Module-Legacy15-SP4-Updates for sle-15-aarch64","enabled":true,"id":5242,"autorefresh":true,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/15-SP4/aarch64/update/"},{"description":"SLE-Module-Legacy15-SP4-Debuginfo-Updates for sle-15-aarch64","installer_updates":false,"name":"SLE-Module-Legacy15-SP4-Debuginfo-Updates","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/15-SP4/aarch64/update_debug/","distro_target":"sle-15-aarch64","autorefresh":true,"id":5243,"enabled":false},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15-SP4/aarch64/product/","autorefresh":false,"distro_target":"sle-15-aarch64","id":5244,"enabled":true,"description":"SLE-Module-Legacy15-SP4-Pool for sle-15-aarch64","name":"SLE-Module-Legacy15-SP4-Pool","installer_updates":false},{"enabled":false,"id":5245,"distro_target":"sle-15-aarch64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15-SP4/aarch64/product_debug/","installer_updates":false,"name":"SLE-Module-Legacy15-SP4-Debuginfo-Pool","description":"SLE-Module-Legacy15-SP4-Debuginfo-Pool for sle-15-aarch64"},{"enabled":false,"id":5246,"distro_target":"sle-15-aarch64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15-SP4/aarch64/product_source/","installer_updates":false,"name":"SLE-Module-Legacy15-SP4-Source-Pool","description":"SLE-Module-Legacy15-SP4-Source-Pool for sle-15-aarch64"}],"product_class":"MODULE","cpe":"cpe:/o:suse:sle-module-legacy:15:sp4","product_type":"module","description":"

The Legacy Module helps you migrating applications from SUSE Linux Enterprise 12 and other systems to SUSE Linux Enterprise 15, by providing packages which are discontinued on SUSE Linux Enterprise Server, such as: ntp, IBM Java 8, and a number of libraries.

Access to the Legacy Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself. Packages in the this module are usually supported for at most three years.

","shortname":"Legacy-Module","free":true,"eula_url":"","arch":"aarch64","friendly_version":"15 SP4","extensions":[],"id":2320,"release_stage":"released","identifier":"sle-module-legacy","recommended":false,"version":"15.4","name":"Legacy Module","offline_predecessor_ids":[],"migration_extra":true,"friendly_name":"Legacy Module 15 SP4 aarch64","release_type":null,"former_identifier":"sle-module-legacy"},{"free":true,"description":"

The Public Cloud Module is a collection of tools that enables you to create and manage cloud images from the commandline on SUSE Linux Enterprise Server. When building your own images with KIWI or SUSE Studio, initialization code specific to the target cloud is included in that image.

Access to the Public Cloud Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself; please check the Release Notes for further details.

","shortname":"Public-Cloud-Module","arch":"aarch64","eula_url":"","online_predecessor_ids":[1645,1805,1985,2172],"product_class":"MODULE","repositories":[{"description":"SLE-Module-Public-Cloud15-SP4-Updates for sle-15-aarch64","installer_updates":false,"name":"SLE-Module-Public-Cloud15-SP4-Updates","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/15-SP4/aarch64/update/","distro_target":"sle-15-aarch64","autorefresh":true,"id":5262,"enabled":true},{"distro_target":"sle-15-aarch64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/15-SP4/aarch64/update_debug/","enabled":false,"id":5263,"description":"SLE-Module-Public-Cloud15-SP4-Debuginfo-Updates for sle-15-aarch64","installer_updates":false,"name":"SLE-Module-Public-Cloud15-SP4-Debuginfo-Updates"},{"description":"SLE-Module-Public-Cloud15-SP4-Pool for sle-15-aarch64","installer_updates":false,"name":"SLE-Module-Public-Cloud15-SP4-Pool","distro_target":"sle-15-aarch64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP4/aarch64/product/","enabled":true,"id":5264},{"description":"SLE-Module-Public-Cloud15-SP4-Debuginfo-Pool for sle-15-aarch64","name":"SLE-Module-Public-Cloud15-SP4-Debuginfo-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP4/aarch64/product_debug/","autorefresh":false,"distro_target":"sle-15-aarch64","id":5265,"enabled":false},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP4/aarch64/product_source/","autorefresh":false,"distro_target":"sle-15-aarch64","id":5266,"enabled":false,"description":"SLE-Module-Public-Cloud15-SP4-Source-Pool for sle-15-aarch64","name":"SLE-Module-Public-Cloud15-SP4-Source-Pool","installer_updates":false}],"predecessor_ids":[1645,1805,1985,2172],"product_type":"module","cpe":"cpe:/o:suse:sle-module-public-cloud:15:sp4","version":"15.4","recommended":false,"former_identifier":"sle-module-public-cloud","release_type":null,"migration_extra":false,"friendly_name":"Public Cloud Module 15 SP4 aarch64","offline_predecessor_ids":[1528],"name":"Public Cloud Module","friendly_version":"15 SP4","id":2324,"release_stage":"released","identifier":"sle-module-public-cloud","extensions":[]},{"friendly_version":"15 SP4","identifier":"sle-ha","release_stage":"released","id":2337,"extensions":[],"version":"15.4","recommended":false,"former_identifier":"sle-ha","release_type":null,"friendly_name":"SUSE Linux Enterprise High Availability Extension 15 SP4 aarch64","migration_extra":false,"offline_predecessor_ids":[],"name":"SUSE Linux Enterprise High Availability Extension","repositories":[{"description":"SLE-Product-HA15-SP4-Updates for sle-15-aarch64","installer_updates":false,"name":"SLE-Product-HA15-SP4-Updates","distro_target":"sle-15-aarch64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-HA/15-SP4/aarch64/update/","enabled":true,"id":5327},{"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-HA/15-SP4/aarch64/update_debug/","autorefresh":true,"distro_target":"sle-15-aarch64","id":5328,"enabled":false,"description":"SLE-Product-HA15-SP4-Debuginfo-Updates for sle-15-aarch64","name":"SLE-Product-HA15-SP4-Debuginfo-Updates","installer_updates":false},{"id":5329,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP4/aarch64/product/","distro_target":"sle-15-aarch64","autorefresh":false,"installer_updates":false,"name":"SLE-Product-HA15-SP4-Pool","description":"SLE-Product-HA15-SP4-Pool for sle-15-aarch64"},{"name":"SLE-Product-HA15-SP4-Debuginfo-Pool","installer_updates":false,"description":"SLE-Product-HA15-SP4-Debuginfo-Pool for sle-15-aarch64","id":5330,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP4/aarch64/product_debug/","autorefresh":false,"distro_target":"sle-15-aarch64"},{"installer_updates":false,"name":"SLE-Product-HA15-SP4-Source-Pool","description":"SLE-Product-HA15-SP4-Source-Pool for sle-15-aarch64","id":5331,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP4/aarch64/product_source/","distro_target":"sle-15-aarch64","autorefresh":false}],"online_predecessor_ids":[1608,1782,1956,2192],"product_class":"SLE-HAE-ARM64","predecessor_ids":[1608,1782,1956,2192],"product_type":"extension","cpe":"cpe:/o:suse:sle-ha:15:sp4","free":false,"description":"SUSE Linux High Availability Extension provides mature, industry-leading open-source high-availability clustering technologies that are easy to set up and use. It can be deployed in physical and/or virtual environments, and can cluster physical servers, virtual servers, or any combination of the two to suit your business’ needs.","shortname":"SLEHA15-SP4","arch":"aarch64","eula_url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP4/aarch64/product.license/"}],"id":2304,"release_stage":"released","identifier":"sle-module-server-applications","friendly_version":"15 SP4","offline_predecessor_ids":[],"name":"Server Applications Module","former_identifier":"sle-module-server-applications","release_type":null,"friendly_name":"Server Applications Module 15 SP4 aarch64","migration_extra":false,"recommended":true,"version":"15.4","product_type":"module","cpe":"cpe:/o:suse:sle-module-server-applications:15:sp4","predecessor_ids":[1601,1777,1952,2150],"online_predecessor_ids":[1601,1777,1952,2150],"product_class":"MODULE","repositories":[{"autorefresh":true,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15-SP4/aarch64/update/","enabled":true,"id":5162,"description":"SLE-Module-Server-Applications15-SP4-Updates for sle-15-aarch64","name":"SLE-Module-Server-Applications15-SP4-Updates","installer_updates":false},{"id":5163,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15-SP4/aarch64/update_debug/","distro_target":"sle-15-aarch64","autorefresh":true,"installer_updates":false,"name":"SLE-Module-Server-Applications15-SP4-Debuginfo-Updates","description":"SLE-Module-Server-Applications15-SP4-Debuginfo-Updates for sle-15-aarch64"},{"enabled":true,"id":5164,"autorefresh":false,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP4/aarch64/product/","name":"SLE-Module-Server-Applications15-SP4-Pool","installer_updates":false,"description":"SLE-Module-Server-Applications15-SP4-Pool for sle-15-aarch64"},{"description":"SLE-Module-Server-Applications15-SP4-Debuginfo-Pool for sle-15-aarch64","installer_updates":false,"name":"SLE-Module-Server-Applications15-SP4-Debuginfo-Pool","distro_target":"sle-15-aarch64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP4/aarch64/product_debug/","enabled":false,"id":5165},{"id":5166,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP4/aarch64/product_source/","autorefresh":false,"distro_target":"sle-15-aarch64","name":"SLE-Module-Server-Applications15-SP4-Source-Pool","installer_updates":false,"description":"SLE-Module-Server-Applications15-SP4-Source-Pool for sle-15-aarch64"}],"eula_url":"","arch":"aarch64","free":true,"description":"

The SUSE Linux Enterprise Server Applications Module delivers a basic set of Server functionality.

Access to the Server Applications Module is included in your SUSE Linux Enterprise Server subscription.

","shortname":"Server-Applications-Module"},{"version":"15.4","recommended":false,"migration_extra":false,"friendly_name":"Containers Module 15 SP4 aarch64","release_type":null,"former_identifier":"sle-module-containers","name":"Containers Module","offline_predecessor_ids":[],"friendly_version":"15 SP4","id":2308,"release_stage":"released","identifier":"sle-module-containers","extensions":[],"description":"

This Module contains several packages revolving around containers and related tools.

","shortname":"Containers-Module","free":true,"arch":"aarch64","eula_url":"","repositories":[{"description":"SLE-Module-Containers15-SP4-Updates for sle-15-aarch64","installer_updates":false,"name":"SLE-Module-Containers15-SP4-Updates","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/15-SP4/aarch64/update/","distro_target":"sle-15-aarch64","autorefresh":true,"id":5182,"enabled":true},{"name":"SLE-Module-Containers15-SP4-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-Containers15-SP4-Debuginfo-Updates for sle-15-aarch64","id":5183,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/15-SP4/aarch64/update_debug/","autorefresh":true,"distro_target":"sle-15-aarch64"},{"installer_updates":false,"name":"SLE-Module-Containers15-SP4-Pool","description":"SLE-Module-Containers15-SP4-Pool for sle-15-aarch64","id":5184,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP4/aarch64/product/","distro_target":"sle-15-aarch64","autorefresh":false},{"installer_updates":false,"name":"SLE-Module-Containers15-SP4-Debuginfo-Pool","description":"SLE-Module-Containers15-SP4-Debuginfo-Pool for sle-15-aarch64","id":5185,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP4/aarch64/product_debug/","distro_target":"sle-15-aarch64","autorefresh":false},{"id":5186,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP4/aarch64/product_source/","autorefresh":false,"distro_target":"sle-15-aarch64","name":"SLE-Module-Containers15-SP4-Source-Pool","installer_updates":false,"description":"SLE-Module-Containers15-SP4-Source-Pool for sle-15-aarch64"}],"online_predecessor_ids":[1920,1960,2154],"product_class":"MODULE","predecessor_ids":[1920,1960,2154],"cpe":"cpe:/o:suse:sle-module-containers:15:sp4","product_type":"module"},{"friendly_version":"15 SP4","extensions":[],"release_stage":"released","id":2328,"identifier":"sle-module-transactional-server","recommended":false,"version":"15.4","offline_predecessor_ids":[],"name":"Transactional Server Module","former_identifier":"sle-module-transactional-server","release_type":null,"migration_extra":false,"friendly_name":"Transactional Server Module 15 SP4 aarch64","predecessor_ids":[1822,1995,2177],"online_predecessor_ids":[1822,1995,2177],"repositories":[{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Transactional-Server/15-SP4/aarch64/update/","autorefresh":true,"distro_target":"sle-15-aarch64","id":5282,"enabled":true,"description":"SLE-Module-Transactional-Server15-SP4-Updates for sle-15-aarch64","name":"SLE-Module-Transactional-Server15-SP4-Updates","installer_updates":false},{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Transactional-Server/15-SP4/aarch64/update_debug/","distro_target":"sle-15-aarch64","autorefresh":true,"id":5283,"enabled":false,"description":"SLE-Module-Transactional-Server15-SP4-Debuginfo-Updates for sle-15-aarch64","installer_updates":false,"name":"SLE-Module-Transactional-Server15-SP4-Debuginfo-Updates"},{"description":"SLE-Module-Transactional-Server15-SP4-Pool for sle-15-aarch64","name":"SLE-Module-Transactional-Server15-SP4-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Transactional-Server/15-SP4/aarch64/product/","autorefresh":false,"distro_target":"sle-15-aarch64","id":5284,"enabled":true},{"name":"SLE-Module-Transactional-Server15-SP4-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-Transactional-Server15-SP4-Debuginfo-Pool for sle-15-aarch64","id":5285,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Transactional-Server/15-SP4/aarch64/product_debug/","autorefresh":false,"distro_target":"sle-15-aarch64"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Transactional-Server/15-SP4/aarch64/product_source/","distro_target":"sle-15-aarch64","autorefresh":false,"id":5286,"enabled":false,"description":"SLE-Module-Transactional-Server15-SP4-Source-Pool for sle-15-aarch64","installer_updates":false,"name":"SLE-Module-Transactional-Server15-SP4-Source-Pool"}],"product_class":"MODULE","product_type":"module","cpe":"cpe:/o:suse:sle-module-transactional-server:15:sp4","free":true,"description":"

Transactional Updates provide SUSE Linux Enterprise systems with a method of updating the operating system and its packages in an entirely ‘atomic’ way. Updates are either applied to the system all together in a single transaction, or not at all. This happens without influencing the running system. If an update fails, or if the successful update is deemed to be incompatible or otherwise incorrect, it can be discarded to immediately return the system to its previous functioning state.

Access to theTransactional Server Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself: Package versions in the this module are usually supported for at most three years. We are planning to release more recent versions on a schedule of approximately 18 month; the exact dates may differ per package.

","shortname":"Transactional-Server-Module","eula_url":"","arch":"aarch64"},{"friendly_version":"15 SP4","release_stage":"released","identifier":"PackageHub","id":2344,"extensions":[],"version":"15.4","recommended":false,"migration_extra":false,"friendly_name":"SUSE Package Hub 15 SP4 aarch64","former_identifier":"PackageHub","release_type":null,"name":"SUSE Package Hub","offline_predecessor_ids":[1532,1810,1912],"product_class":"MODULE","online_predecessor_ids":[1740,1868,1947,2188],"repositories":[{"name":"SUSE-PackageHub-15-SP4-Backports-Pool","installer_updates":false,"description":"SUSE-PackageHub-15-SP4-Backports-Pool for sle-15-aarch64","enabled":true,"id":5364,"autorefresh":false,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Backports/SLE-15-SP4_aarch64/standard/"},{"installer_updates":false,"name":"SUSE-PackageHub-15-SP4-Backports-Debuginfo","description":"SUSE-PackageHub-15-SP4-Backports-Debuginfo for sle-15-aarch64","id":5365,"enabled":false,"url":"https://updates.suse.com/SUSE/Backports/SLE-15-SP4_aarch64/standard_debug/","distro_target":"sle-15-aarch64","autorefresh":true},{"description":"SLE-Module-Packagehub-Subpackages15-SP4-Updates for sle-15-aarch64","name":"SLE-Module-Packagehub-Subpackages15-SP4-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP4/aarch64/update/","enabled":true,"id":5366},{"id":5367,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP4/aarch64/update_debug/","distro_target":"sle-15-aarch64","autorefresh":true,"installer_updates":false,"name":"SLE-Module-Packagehub-Subpackages15-SP4-Debuginfo-Updates","description":"SLE-Module-Packagehub-Subpackages15-SP4-Debuginfo-Updates for sle-15-aarch64"},{"distro_target":"sle-15-aarch64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Backports/SLE-15-SP4_aarch64/product/","enabled":true,"id":5368,"description":"SUSE-PackageHub-15-SP4-Pool for sle-15-aarch64","installer_updates":false,"name":"SUSE-PackageHub-15-SP4-Pool"},{"autorefresh":false,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP4/aarch64/product/","enabled":true,"id":5369,"description":"SLE-Module-Packagehub-Subpackages15-SP4-Pool for sle-15-aarch64","name":"SLE-Module-Packagehub-Subpackages15-SP4-Pool","installer_updates":false},{"enabled":false,"id":5370,"distro_target":"sle-15-aarch64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP4/aarch64/product_debug/","installer_updates":false,"name":"SLE-Module-Packagehub-Subpackages15-SP4-Debuginfo-Pool","description":"SLE-Module-Packagehub-Subpackages15-SP4-Debuginfo-Pool for sle-15-aarch64"},{"name":"SLE-Module-Packagehub-Subpackages15-SP4-Source-Pool","installer_updates":false,"description":"SLE-Module-Packagehub-Subpackages15-SP4-Source-Pool for sle-15-aarch64","enabled":false,"id":5371,"autorefresh":false,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP4/aarch64/product_source/"}],"predecessor_ids":[1740,1868,1947,2188],"cpe":"cpe:/o:suse:packagehub:15:sp4","product_type":"module","shortname":"SUSE-PackageHub-15","description":"SUSE Package Hub is a free of charge module providing access to community maintained packages built to run on SUSE Linux Enterprise Server. Built from the same sources used in the openSUSE distributions, these quality packages provide additional software to what is found in the SUSE Linux Enterprise Server product. Packages from the Package Hub are delivered without L3 support from SUSE. General updates and fixes to the packages in SUSE Package Hub are provided by the openSUSE community based on their discretion, though SUSE will monitor and ensure that any known critical security issues will be addressed. Packages in the Package Hub are approved by SUSE for use with SUSE Linux Enterprise Server 15-SP4 and to not interfere with the supportability of SUSE Linux Enterprise Server, its modules and extensions. For more information about SUSE Package Hub please visit https://packagehub.suse.com.","free":true,"arch":"aarch64","eula_url":""},{"friendly_version":"15 SP4","release_stage":"released","id":2402,"identifier":"sle-module-python3","extensions":[],"version":"15.4","recommended":false,"release_type":null,"former_identifier":"sle-module-python3","friendly_name":"Python 3 Module 15 SP4 aarch64","migration_extra":false,"offline_predecessor_ids":[],"name":"Python 3 Module","repositories":[{"distro_target":"sle-15-aarch64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Python3/15-SP4/aarch64/update/","enabled":true,"id":5567,"description":"SLE-Module-Python3-15-SP4-Updates for sle-15-aarch64","installer_updates":false,"name":"SLE-Module-Python3-15-SP4-Updates"},{"description":"SLE-Module-Python3-15-SP4-Debuginfo-Updates for sle-15-aarch64","name":"SLE-Module-Python3-15-SP4-Debuginfo-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Python3/15-SP4/aarch64/update_debug/","enabled":false,"id":5568},{"distro_target":"sle-15-aarch64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Python3/15-SP4/aarch64/product/","enabled":true,"id":5569,"description":"SLE-Module-Python3-15-SP4-Pool for sle-15-aarch64","installer_updates":false,"name":"SLE-Module-Python3-15-SP4-Pool"},{"enabled":false,"id":5570,"autorefresh":false,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Python3/15-SP4/aarch64/product_debug/","name":"SLE-Module-Python3-15-SP4-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-Python3-15-SP4-Debuginfo-Pool for sle-15-aarch64"},{"installer_updates":false,"name":"SLE-Module-Python3-15-SP4-Source-Pool","description":"SLE-Module-Python3-15-SP4-Source-Pool for sle-15-aarch64","id":5571,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Python3/15-SP4/aarch64/product_source/","distro_target":"sle-15-aarch64","autorefresh":false}],"online_predecessor_ids":[],"product_class":"MODULE","predecessor_ids":[],"product_type":"module","cpe":"cpe:/o:suse:sle-module-python3:15:sp4","free":true,"description":"

This module contains the Python 3 packages.

Access to the Python 3 Module is included in your SUSE Linux Enterprise subscription. The module has a different lifecycle than SUSE Linux Enterprise itself; please check the Release Notes for further details.

","shortname":"Python 3-Module","arch":"aarch64","eula_url":""}],"friendly_version":"15 SP4","former_identifier":"sle-module-basesystem","release_type":null,"friendly_name":"Basesystem Module 15 SP4 aarch64","migration_extra":false,"offline_predecessor_ids":[1522],"name":"Basesystem Module","version":"15.4","recommended":true},{"friendly_version":"15 SP4","identifier":"sle-module-certifications","release_stage":"released","id":2390,"extensions":[],"version":"15.4","recommended":false,"former_identifier":"sle-module-certifications","release_type":null,"migration_extra":false,"friendly_name":"Certifications Module 15 SP4 aarch64","offline_predecessor_ids":[],"name":"Certifications Module","repositories":[{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Certifications/15-SP4/aarch64/update/","autorefresh":true,"distro_target":"sle-15-aarch64","id":5532,"enabled":true,"description":"SLE-Module-Certifications-15-SP4-Updates for sle-15-aarch64","name":"SLE-Module-Certifications-15-SP4-Updates","installer_updates":false},{"installer_updates":false,"name":"SLE-Module-Certifications-15-SP4-Debuginfo-Updates","description":"SLE-Module-Certifications-15-SP4-Debuginfo-Updates for sle-15-aarch64","enabled":false,"id":5533,"distro_target":"sle-15-aarch64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Certifications/15-SP4/aarch64/update_debug/"},{"description":"SLE-Module-Certifications-15-SP4-Pool for sle-15-aarch64","name":"SLE-Module-Certifications-15-SP4-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Certifications/15-SP4/aarch64/product/","enabled":true,"id":5534},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Certifications/15-SP4/aarch64/product_debug/","distro_target":"sle-15-aarch64","autorefresh":false,"id":5535,"enabled":false,"description":"SLE-Module-Certifications-15-SP4-Debuginfo-Pool for sle-15-aarch64","installer_updates":false,"name":"SLE-Module-Certifications-15-SP4-Debuginfo-Pool"},{"id":5536,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Certifications/15-SP4/aarch64/product_source/","autorefresh":false,"distro_target":"sle-15-aarch64","name":"SLE-Module-Certifications-15-SP4-Source-Pool","installer_updates":false,"description":"SLE-Module-Certifications-15-SP4-Source-Pool for sle-15-aarch64"}],"online_predecessor_ids":[],"product_class":"MODULE","predecessor_ids":[],"product_type":"module","cpe":"cpe:/o:suse:sle-module-certifications:15:sp4","free":true,"description":"

This module contains the certification packages.

Access to the Certifications Module is included in your SUSE Linux Enterprise subscription. The module has a different lifecycle than SUSE Linux Enterprise itself; please check the Release Notes for further details.

","shortname":"Certifications-Module","arch":"aarch64","eula_url":""}],"friendly_version":"15 SP4","friendly_name":"SUSE Linux Enterprise Server 15 SP4 aarch64","migration_extra":false,"release_type":null,"former_identifier":"SLES","name":"SUSE Linux Enterprise Server","offline_predecessor_ids":[1424,1628,1875],"version":"15.4","recommended":false},{"release_stage":"released","id":2290,"identifier":"SLES","extensions":[{"free":true,"shortname":"Basesystem-Module","description":"

The SUSE Linux Enterprise Basesystem Module delivers the base system of the product.

","arch":"ppc64le","eula_url":"","online_predecessor_ids":[1588,1770,1944,2143],"product_class":"MODULE","repositories":[{"description":"SLE-Module-Basesystem15-SP4-Updates for sle-15-ppc64le","name":"SLE-Module-Basesystem15-SP4-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15-SP4/ppc64le/update/","enabled":true,"id":5127},{"id":5128,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15-SP4/ppc64le/update_debug/","autorefresh":true,"distro_target":"sle-15-ppc64le","name":"SLE-Module-Basesystem15-SP4-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-Basesystem15-SP4-Debuginfo-Updates for sle-15-ppc64le"},{"name":"SLE-Module-Basesystem15-SP4-Pool","installer_updates":false,"description":"SLE-Module-Basesystem15-SP4-Pool for sle-15-ppc64le","id":5129,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP4/ppc64le/product/","autorefresh":false,"distro_target":"sle-15-ppc64le"},{"description":"SLE-Module-Basesystem15-SP4-Debuginfo-Pool for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-Basesystem15-SP4-Debuginfo-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP4/ppc64le/product_debug/","distro_target":"sle-15-ppc64le","autorefresh":false,"id":5130,"enabled":false},{"distro_target":"sle-15-ppc64le","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP4/ppc64le/product_source/","enabled":false,"id":5131,"description":"SLE-Module-Basesystem15-SP4-Source-Pool for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-Basesystem15-SP4-Source-Pool"}],"predecessor_ids":[1588,1770,1944,2143],"product_type":"module","cpe":"cpe:/o:suse:sle-module-basesystem:15:sp4","version":"15.4","recommended":true,"release_type":null,"former_identifier":"sle-module-basesystem","migration_extra":false,"friendly_name":"Basesystem Module 15 SP4 ppc64le","offline_predecessor_ids":[1294],"name":"Basesystem Module","friendly_version":"15 SP4","release_stage":"released","id":2297,"identifier":"sle-module-basesystem","extensions":[{"extensions":[{"online_predecessor_ids":[1597,1792,1969,2159],"repositories":[{"distro_target":"sle-15-ppc64le","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15-SP4/ppc64le/update/","enabled":true,"id":5207,"description":"SLE-Module-DevTools15-SP4-Updates for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-DevTools15-SP4-Updates"},{"installer_updates":false,"name":"SLE-Module-DevTools15-SP4-Debuginfo-Updates","description":"SLE-Module-DevTools15-SP4-Debuginfo-Updates for sle-15-ppc64le","id":5208,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15-SP4/ppc64le/update_debug/","distro_target":"sle-15-ppc64le","autorefresh":true},{"description":"SLE-Module-DevTools15-SP4-Pool for sle-15-ppc64le","name":"SLE-Module-DevTools15-SP4-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP4/ppc64le/product/","enabled":true,"id":5209},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP4/ppc64le/product_debug/","autorefresh":false,"distro_target":"sle-15-ppc64le","id":5210,"enabled":false,"description":"SLE-Module-DevTools15-SP4-Debuginfo-Pool for sle-15-ppc64le","name":"SLE-Module-DevTools15-SP4-Debuginfo-Pool","installer_updates":false},{"description":"SLE-Module-DevTools15-SP4-Source-Pool for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-DevTools15-SP4-Source-Pool","distro_target":"sle-15-ppc64le","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP4/ppc64le/product_source/","enabled":false,"id":5211}],"product_class":"MODULE","predecessor_ids":[1597,1792,1969,2159],"product_type":"module","cpe":"cpe:/o:suse:sle-module-development-tools:15:sp4","free":true,"shortname":"Development-Tools-Module","description":"

The Development Tools Module helps you developing applications for SUSE Linux Enterprise 15.

Access to the Development Tools Module is included in your SUSE Linux Enterprise product subscription. The module has a different lifecycle than SUSE Linux Enterprise itself.

","arch":"ppc64le","eula_url":"","friendly_version":"15 SP4","release_stage":"released","identifier":"sle-module-development-tools","id":2313,"extensions":[],"version":"15.4","recommended":false,"former_identifier":"sle-sdk","release_type":null,"migration_extra":true,"friendly_name":"Development Tools Module 15 SP4 ppc64le","offline_predecessor_ids":[1339,1428,1631,1890],"name":"Development Tools Module"}],"identifier":"sle-module-desktop-applications","release_stage":"released","id":2301,"friendly_version":"15 SP4","offline_predecessor_ids":[],"name":"Desktop Applications Module","release_type":null,"former_identifier":"sle-module-desktop-applications","friendly_name":"Desktop Applications Module 15 SP4 ppc64le","migration_extra":true,"recommended":false,"version":"15.4","product_type":"module","cpe":"cpe:/o:suse:sle-module-desktop-applications:15:sp4","predecessor_ids":[1594,1774,1965,2147],"repositories":[{"description":"SLE-Module-Desktop-Applications15-SP4-Updates for sle-15-ppc64le","name":"SLE-Module-Desktop-Applications15-SP4-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15-SP4/ppc64le/update/","enabled":true,"id":5147},{"installer_updates":false,"name":"SLE-Module-Desktop-Applications15-SP4-Debuginfo-Updates","description":"SLE-Module-Desktop-Applications15-SP4-Debuginfo-Updates for sle-15-ppc64le","id":5148,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15-SP4/ppc64le/update_debug/","distro_target":"sle-15-ppc64le","autorefresh":true},{"autorefresh":false,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP4/ppc64le/product/","enabled":true,"id":5149,"description":"SLE-Module-Desktop-Applications15-SP4-Pool for sle-15-ppc64le","name":"SLE-Module-Desktop-Applications15-SP4-Pool","installer_updates":false},{"autorefresh":false,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP4/ppc64le/product_debug/","enabled":false,"id":5150,"description":"SLE-Module-Desktop-Applications15-SP4-Debuginfo-Pool for sle-15-ppc64le","name":"SLE-Module-Desktop-Applications15-SP4-Debuginfo-Pool","installer_updates":false},{"enabled":false,"id":5151,"autorefresh":false,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP4/ppc64le/product_source/","name":"SLE-Module-Desktop-Applications15-SP4-Source-Pool","installer_updates":false,"description":"SLE-Module-Desktop-Applications15-SP4-Source-Pool for sle-15-ppc64le"}],"online_predecessor_ids":[1594,1774,1965,2147],"product_class":"MODULE","eula_url":"","arch":"ppc64le","free":true,"description":"

The SUSE Linux Enterprise Desktop Applications Module delivers a basic set of Desktop functionality.

Access to the Desktop Applications Module is included in your SUSE Linux Enterprise product subscription.

","shortname":"Desktop-Applications-Module"},{"shortname":"Server-Applications-Module","description":"

The SUSE Linux Enterprise Server Applications Module delivers a basic set of Server functionality.

Access to the Server Applications Module is included in your SUSE Linux Enterprise Server subscription.

","free":true,"arch":"ppc64le","eula_url":"","online_predecessor_ids":[1600,1778,1953,2151],"product_class":"MODULE","repositories":[{"enabled":true,"id":5167,"distro_target":"sle-15-ppc64le","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15-SP4/ppc64le/update/","installer_updates":false,"name":"SLE-Module-Server-Applications15-SP4-Updates","description":"SLE-Module-Server-Applications15-SP4-Updates for sle-15-ppc64le"},{"installer_updates":false,"name":"SLE-Module-Server-Applications15-SP4-Debuginfo-Updates","description":"SLE-Module-Server-Applications15-SP4-Debuginfo-Updates for sle-15-ppc64le","id":5168,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15-SP4/ppc64le/update_debug/","distro_target":"sle-15-ppc64le","autorefresh":true},{"distro_target":"sle-15-ppc64le","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP4/ppc64le/product/","enabled":true,"id":5169,"description":"SLE-Module-Server-Applications15-SP4-Pool for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-Server-Applications15-SP4-Pool"},{"distro_target":"sle-15-ppc64le","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP4/ppc64le/product_debug/","enabled":false,"id":5170,"description":"SLE-Module-Server-Applications15-SP4-Debuginfo-Pool for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-Server-Applications15-SP4-Debuginfo-Pool"},{"description":"SLE-Module-Server-Applications15-SP4-Source-Pool for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-Server-Applications15-SP4-Source-Pool","distro_target":"sle-15-ppc64le","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP4/ppc64le/product_source/","enabled":false,"id":5171}],"predecessor_ids":[1600,1778,1953,2151],"cpe":"cpe:/o:suse:sle-module-server-applications:15:sp4","product_type":"module","version":"15.4","recommended":true,"migration_extra":false,"friendly_name":"Server Applications Module 15 SP4 ppc64le","release_type":null,"former_identifier":"sle-module-server-applications","name":"Server Applications Module","offline_predecessor_ids":[],"friendly_version":"15 SP4","id":2305,"release_stage":"released","identifier":"sle-module-server-applications","extensions":[{"shortname":"IBMPWAT15","description":"IBM POWER Advance Toolchain for SLE 15","free":true,"eula_url":"","arch":"ppc64le","predecessor_ids":[],"online_predecessor_ids":[],"product_class":"MODULE","repositories":[{"name":"IBM-POWER-Adv-Toolchain","installer_updates":false,"description":"IBM-POWER-Adv-Toolchain","enabled":true,"id":4430,"autorefresh":true,"distro_target":null,"url":"https://public.dhe.ibm.com/software/server/POWER/Linux/toolchain/at/suse/SLES_15/"}],"cpe":"cpe:/o:suse:ibm-power-advance-toolchain:15","product_type":"extension","recommended":false,"version":"15","name":"IBM POWER Advance Toolchain for SLE","offline_predecessor_ids":[1249],"migration_extra":false,"friendly_name":"IBM POWER Advance Toolchain for SLE 15 ppc64le","former_identifier":"ibm-power-advance-toolchain","release_type":null,"friendly_version":"15","extensions":[],"release_stage":"released","identifier":"ibm-power-advance-toolchain","id":2076},{"recommended":false,"version":"15","offline_predecessor_ids":[1250],"name":"IBM POWER Tools for SLE","release_type":null,"former_identifier":"ibm-power-tools","friendly_name":"IBM POWER Tools for SLE 15 ppc64le","migration_extra":false,"friendly_version":"15","extensions":[],"release_stage":"released","id":2077,"identifier":"ibm-power-tools","free":true,"shortname":"IBMPWUT15","description":"IBM POWER Tools for SLE 15","eula_url":"https://public.dhe.ibm.com/software/server/POWER/Linux/yum/OSS/SLES/15/ppc64le.license/","arch":"ppc64le","predecessor_ids":[],"repositories":[{"name":"IBM-POWER-Tools","installer_updates":false,"description":"IBM-POWER-Tools","id":4431,"enabled":true,"url":"https://public.dhe.ibm.com/software/server/POWER/Linux/yum/OSS/SLES/15/ppc64le/","autorefresh":true,"distro_target":null}],"online_predecessor_ids":[],"product_class":"MODULE","product_type":"extension","cpe":"cpe:/o:suse:ibm-power-tools:15"},{"version":"15.4","recommended":false,"migration_extra":true,"friendly_name":"Web and Scripting Module 15 SP4 ppc64le","former_identifier":"sle-module-web-scripting","release_type":null,"name":"Web and Scripting Module","offline_predecessor_ids":[1151],"friendly_version":"15 SP4","release_stage":"released","identifier":"sle-module-web-scripting","id":2317,"extensions":[],"description":"

The SUSE Linux Enterprise Web and Scripting Module should contains additional packages that are helpful when running a webserver.

Access to the Web and Scripting Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself: Package versions in this module are usually supported for at most three years. We are planning to release more recent versions on a schedule of approximately 18 month; the exact dates may differ per package.

","shortname":"Web-Scripting-Module","free":true,"arch":"ppc64le","eula_url":"","online_predecessor_ids":[1719,1796,1974,2163],"product_class":"MODULE","repositories":[{"description":"SLE-Module-Web-Scripting15-SP4-Updates for sle-15-ppc64le","name":"SLE-Module-Web-Scripting15-SP4-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/15-SP4/ppc64le/update/","enabled":true,"id":5227},{"distro_target":"sle-15-ppc64le","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/15-SP4/ppc64le/update_debug/","enabled":false,"id":5228,"description":"SLE-Module-Web-Scripting15-SP4-Debuginfo-Updates for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-Web-Scripting15-SP4-Debuginfo-Updates"},{"name":"SLE-Module-Web-Scripting15-SP4-Pool","installer_updates":false,"description":"SLE-Module-Web-Scripting15-SP4-Pool for sle-15-ppc64le","enabled":true,"id":5229,"autorefresh":false,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP4/ppc64le/product/"},{"description":"SLE-Module-Web-Scripting15-SP4-Debuginfo-Pool for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-Web-Scripting15-SP4-Debuginfo-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP4/ppc64le/product_debug/","distro_target":"sle-15-ppc64le","autorefresh":false,"id":5230,"enabled":false},{"distro_target":"sle-15-ppc64le","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP4/ppc64le/product_source/","enabled":false,"id":5231,"description":"SLE-Module-Web-Scripting15-SP4-Source-Pool for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-Web-Scripting15-SP4-Source-Pool"}],"predecessor_ids":[1719,1796,1974,2163],"cpe":"cpe:/o:suse:sle-module-web-scripting:15:sp4","product_type":"module"},{"free":true,"description":"

The Legacy Module helps you migrating applications from SUSE Linux Enterprise 12 and other systems to SUSE Linux Enterprise 15, by providing packages which are discontinued on SUSE Linux Enterprise Server, such as: ntp, IBM Java 8, and a number of libraries.

Access to the Legacy Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself. Packages in the this module are usually supported for at most three years.

","shortname":"Legacy-Module","eula_url":"","arch":"ppc64le","predecessor_ids":[1603,1802,1980,2169],"repositories":[{"id":5247,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/15-SP4/ppc64le/update/","distro_target":"sle-15-ppc64le","autorefresh":true,"installer_updates":false,"name":"SLE-Module-Legacy15-SP4-Updates","description":"SLE-Module-Legacy15-SP4-Updates for sle-15-ppc64le"},{"enabled":false,"id":5248,"autorefresh":true,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/15-SP4/ppc64le/update_debug/","name":"SLE-Module-Legacy15-SP4-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-Legacy15-SP4-Debuginfo-Updates for sle-15-ppc64le"},{"installer_updates":false,"name":"SLE-Module-Legacy15-SP4-Pool","description":"SLE-Module-Legacy15-SP4-Pool for sle-15-ppc64le","id":5249,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15-SP4/ppc64le/product/","distro_target":"sle-15-ppc64le","autorefresh":false},{"description":"SLE-Module-Legacy15-SP4-Debuginfo-Pool for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-Legacy15-SP4-Debuginfo-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15-SP4/ppc64le/product_debug/","distro_target":"sle-15-ppc64le","autorefresh":false,"id":5250,"enabled":false},{"description":"SLE-Module-Legacy15-SP4-Source-Pool for sle-15-ppc64le","name":"SLE-Module-Legacy15-SP4-Source-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15-SP4/ppc64le/product_source/","enabled":false,"id":5251}],"online_predecessor_ids":[1603,1802,1980,2169],"product_class":"MODULE","product_type":"module","cpe":"cpe:/o:suse:sle-module-legacy:15:sp4","recommended":false,"version":"15.4","offline_predecessor_ids":[1148],"name":"Legacy Module","release_type":null,"former_identifier":"sle-module-legacy","friendly_name":"Legacy Module 15 SP4 ppc64le","migration_extra":true,"friendly_version":"15 SP4","extensions":[],"identifier":"sle-module-legacy","release_stage":"released","id":2321},{"friendly_name":"Public Cloud Module 15 SP4 ppc64le","migration_extra":false,"former_identifier":"sle-module-public-cloud","release_type":null,"name":"Public Cloud Module","offline_predecessor_ids":[1218],"version":"15.4","recommended":false,"release_stage":"released","id":2325,"identifier":"sle-module-public-cloud","extensions":[],"friendly_version":"15 SP4","arch":"ppc64le","eula_url":"","description":"

The Public Cloud Module is a collection of tools that enables you to create and manage cloud images from the commandline on SUSE Linux Enterprise Server. When building your own images with KIWI or SUSE Studio, initialization code specific to the target cloud is included in that image.

Access to the Public Cloud Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself; please check the Release Notes for further details.

","shortname":"Public-Cloud-Module","free":true,"cpe":"cpe:/o:suse:sle-module-public-cloud:15:sp4","product_type":"module","repositories":[{"autorefresh":true,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/15-SP4/ppc64le/update/","enabled":true,"id":5267,"description":"SLE-Module-Public-Cloud15-SP4-Updates for sle-15-ppc64le","name":"SLE-Module-Public-Cloud15-SP4-Updates","installer_updates":false},{"autorefresh":true,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/15-SP4/ppc64le/update_debug/","enabled":false,"id":5268,"description":"SLE-Module-Public-Cloud15-SP4-Debuginfo-Updates for sle-15-ppc64le","name":"SLE-Module-Public-Cloud15-SP4-Debuginfo-Updates","installer_updates":false},{"description":"SLE-Module-Public-Cloud15-SP4-Pool for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-Public-Cloud15-SP4-Pool","distro_target":"sle-15-ppc64le","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP4/ppc64le/product/","enabled":true,"id":5269},{"enabled":false,"id":5270,"distro_target":"sle-15-ppc64le","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP4/ppc64le/product_debug/","installer_updates":false,"name":"SLE-Module-Public-Cloud15-SP4-Debuginfo-Pool","description":"SLE-Module-Public-Cloud15-SP4-Debuginfo-Pool for sle-15-ppc64le"},{"autorefresh":false,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP4/ppc64le/product_source/","enabled":false,"id":5271,"description":"SLE-Module-Public-Cloud15-SP4-Source-Pool for sle-15-ppc64le","name":"SLE-Module-Public-Cloud15-SP4-Source-Pool","installer_updates":false}],"online_predecessor_ids":[1616,1806,1986,2173],"product_class":"MODULE","predecessor_ids":[1616,1806,1986,2173]},{"friendly_version":"15 SP4","id":2338,"release_stage":"released","identifier":"sle-ha","extensions":[],"version":"15.4","recommended":false,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise High Availability Extension 15 SP4 ppc64le","former_identifier":"sle-ha","release_type":null,"name":"SUSE Linux Enterprise High Availability Extension","offline_predecessor_ids":[1433,1635,1882],"online_predecessor_ids":[1606,1783,1957,2193],"repositories":[{"distro_target":"sle-15-ppc64le","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-HA/15-SP4/ppc64le/update/","enabled":true,"id":5332,"description":"SLE-Product-HA15-SP4-Updates for sle-15-ppc64le","installer_updates":false,"name":"SLE-Product-HA15-SP4-Updates"},{"description":"SLE-Product-HA15-SP4-Debuginfo-Updates for sle-15-ppc64le","name":"SLE-Product-HA15-SP4-Debuginfo-Updates","installer_updates":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-HA/15-SP4/ppc64le/update_debug/","autorefresh":true,"distro_target":"sle-15-ppc64le","id":5333,"enabled":false},{"name":"SLE-Product-HA15-SP4-Pool","installer_updates":false,"description":"SLE-Product-HA15-SP4-Pool for sle-15-ppc64le","enabled":true,"id":5334,"autorefresh":false,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP4/ppc64le/product/"},{"enabled":false,"id":5335,"distro_target":"sle-15-ppc64le","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP4/ppc64le/product_debug/","installer_updates":false,"name":"SLE-Product-HA15-SP4-Debuginfo-Pool","description":"SLE-Product-HA15-SP4-Debuginfo-Pool for sle-15-ppc64le"},{"id":5336,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP4/ppc64le/product_source/","distro_target":"sle-15-ppc64le","autorefresh":false,"installer_updates":false,"name":"SLE-Product-HA15-SP4-Source-Pool","description":"SLE-Product-HA15-SP4-Source-Pool for sle-15-ppc64le"}],"product_class":"SLE-HAE-PPC","predecessor_ids":[1606,1783,1957,2193],"cpe":"cpe:/o:suse:sle-ha:15:sp4","product_type":"extension","description":"SUSE Linux High Availability Extension provides mature, industry-leading open-source high-availability clustering technologies that are easy to set up and use. It can be deployed in physical and/or virtual environments, and can cluster physical servers, virtual servers, or any combination of the two to suit your business’ needs.","shortname":"SLEHA15-SP4","free":false,"arch":"ppc64le","eula_url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP4/ppc64le/product.license/"}]},{"extensions":[],"identifier":"sle-module-containers","release_stage":"released","id":2309,"friendly_version":"15 SP4","name":"Containers Module","offline_predecessor_ids":[1353],"migration_extra":false,"friendly_name":"Containers Module 15 SP4 ppc64le","release_type":null,"former_identifier":"sle-module-containers","recommended":false,"version":"15.4","cpe":"cpe:/o:suse:sle-module-containers:15:sp4","product_type":"module","predecessor_ids":[1640,1788,1961,2155],"online_predecessor_ids":[1640,1788,1961,2155],"repositories":[{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/15-SP4/ppc64le/update/","distro_target":"sle-15-ppc64le","autorefresh":true,"id":5187,"enabled":true,"description":"SLE-Module-Containers15-SP4-Updates for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-Containers15-SP4-Updates"},{"enabled":false,"id":5188,"distro_target":"sle-15-ppc64le","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/15-SP4/ppc64le/update_debug/","installer_updates":false,"name":"SLE-Module-Containers15-SP4-Debuginfo-Updates","description":"SLE-Module-Containers15-SP4-Debuginfo-Updates for sle-15-ppc64le"},{"distro_target":"sle-15-ppc64le","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP4/ppc64le/product/","enabled":true,"id":5189,"description":"SLE-Module-Containers15-SP4-Pool for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-Containers15-SP4-Pool"},{"name":"SLE-Module-Containers15-SP4-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-Containers15-SP4-Debuginfo-Pool for sle-15-ppc64le","enabled":false,"id":5190,"autorefresh":false,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP4/ppc64le/product_debug/"},{"id":5191,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP4/ppc64le/product_source/","autorefresh":false,"distro_target":"sle-15-ppc64le","name":"SLE-Module-Containers15-SP4-Source-Pool","installer_updates":false,"description":"SLE-Module-Containers15-SP4-Source-Pool for sle-15-ppc64le"}],"product_class":"MODULE","eula_url":"","arch":"ppc64le","description":"

This Module contains several packages revolving around containers and related tools.

","shortname":"Containers-Module","free":true},{"eula_url":"","arch":"ppc64le","shortname":"Transactional-Server-Module","description":"

Transactional Updates provide SUSE Linux Enterprise systems with a method of updating the operating system and its packages in an entirely ‘atomic’ way. Updates are either applied to the system all together in a single transaction, or not at all. This happens without influencing the running system. If an update fails, or if the successful update is deemed to be incompatible or otherwise incorrect, it can be discarded to immediately return the system to its previous functioning state.

Access to theTransactional Server Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself: Package versions in the this module are usually supported for at most three years. We are planning to release more recent versions on a schedule of approximately 18 month; the exact dates may differ per package.

","free":true,"cpe":"cpe:/o:suse:sle-module-transactional-server:15:sp4","product_type":"module","predecessor_ids":[1823,1996,2178],"online_predecessor_ids":[1823,1996,2178],"repositories":[{"enabled":true,"id":5287,"autorefresh":true,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Transactional-Server/15-SP4/ppc64le/update/","name":"SLE-Module-Transactional-Server15-SP4-Updates","installer_updates":false,"description":"SLE-Module-Transactional-Server15-SP4-Updates for sle-15-ppc64le"},{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Transactional-Server/15-SP4/ppc64le/update_debug/","distro_target":"sle-15-ppc64le","autorefresh":true,"id":5288,"enabled":false,"description":"SLE-Module-Transactional-Server15-SP4-Debuginfo-Updates for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-Transactional-Server15-SP4-Debuginfo-Updates"},{"name":"SLE-Module-Transactional-Server15-SP4-Pool","installer_updates":false,"description":"SLE-Module-Transactional-Server15-SP4-Pool for sle-15-ppc64le","enabled":true,"id":5289,"autorefresh":false,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Transactional-Server/15-SP4/ppc64le/product/"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Transactional-Server/15-SP4/ppc64le/product_debug/","autorefresh":false,"distro_target":"sle-15-ppc64le","id":5290,"enabled":false,"description":"SLE-Module-Transactional-Server15-SP4-Debuginfo-Pool for sle-15-ppc64le","name":"SLE-Module-Transactional-Server15-SP4-Debuginfo-Pool","installer_updates":false},{"id":5291,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Transactional-Server/15-SP4/ppc64le/product_source/","autorefresh":false,"distro_target":"sle-15-ppc64le","name":"SLE-Module-Transactional-Server15-SP4-Source-Pool","installer_updates":false,"description":"SLE-Module-Transactional-Server15-SP4-Source-Pool for sle-15-ppc64le"}],"product_class":"MODULE","name":"Transactional Server Module","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"Transactional Server Module 15 SP4 ppc64le","release_type":null,"former_identifier":"sle-module-transactional-server","recommended":false,"version":"15.4","extensions":[],"id":2329,"release_stage":"released","identifier":"sle-module-transactional-server","friendly_version":"15 SP4"},{"cpe":"cpe:/o:suse:sle-module-live-patching:15:sp4","product_type":"extension","online_predecessor_ids":[1735,1827,1983,2185],"product_class":"SLE-LP-PPC","repositories":[{"description":"SLE-Module-Live-Patching15-SP4-Updates for sle-15-ppc64le","name":"SLE-Module-Live-Patching15-SP4-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Live-Patching/15-SP4/ppc64le/update/","enabled":true,"id":5302},{"autorefresh":true,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Live-Patching/15-SP4/ppc64le/update_debug/","enabled":false,"id":5303,"description":"SLE-Module-Live-Patching15-SP4-Debuginfo-Updates for sle-15-ppc64le","name":"SLE-Module-Live-Patching15-SP4-Debuginfo-Updates","installer_updates":false},{"id":5304,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Live-Patching/15-SP4/ppc64le/product/","autorefresh":false,"distro_target":"sle-15-ppc64le","name":"SLE-Module-Live-Patching15-SP4-Pool","installer_updates":false,"description":"SLE-Module-Live-Patching15-SP4-Pool for sle-15-ppc64le"},{"description":"SLE-Module-Live-Patching15-SP4-Debuginfo-Pool for sle-15-ppc64le","name":"SLE-Module-Live-Patching15-SP4-Debuginfo-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Live-Patching/15-SP4/ppc64le/product_debug/","autorefresh":false,"distro_target":"sle-15-ppc64le","id":5305,"enabled":false},{"description":"SLE-Module-Live-Patching15-SP4-Source-Pool for sle-15-ppc64le","name":"SLE-Module-Live-Patching15-SP4-Source-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Live-Patching/15-SP4/ppc64le/product_source/","autorefresh":false,"distro_target":"sle-15-ppc64le","id":5306,"enabled":false}],"predecessor_ids":[1735,1827,1983,2185],"arch":"ppc64le","eula_url":"","shortname":"Live-Patching","description":"

SUSE Linux Enterprise Live Patching provides packages to update critical components in SUSE Linux Enterprise. With SUSE Linux Enterprise Live Patching, you can perform critical patching without shutting down your system, reducing the need for planned downtime and increasing service availability.

","free":false,"id":2332,"release_stage":"released","identifier":"sle-module-live-patching","extensions":[],"friendly_version":"15 SP4","friendly_name":"SUSE Linux Enterprise Live Patching 15 SP4 ppc64le","migration_extra":false,"release_type":null,"former_identifier":"sle-module-live-patching","name":"SUSE Linux Enterprise Live Patching","offline_predecessor_ids":[1537,1756,1887],"version":"15.4","recommended":false},{"predecessor_ids":[1741,1869,1948,2189],"repositories":[{"enabled":true,"id":5372,"autorefresh":false,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Backports/SLE-15-SP4_ppc64le/standard/","name":"SUSE-PackageHub-15-SP4-Backports-Pool","installer_updates":false,"description":"SUSE-PackageHub-15-SP4-Backports-Pool for sle-15-ppc64le"},{"url":"https://updates.suse.com/SUSE/Backports/SLE-15-SP4_ppc64le/standard_debug/","distro_target":"sle-15-ppc64le","autorefresh":true,"id":5373,"enabled":false,"description":"SUSE-PackageHub-15-SP4-Backports-Debuginfo for sle-15-ppc64le","installer_updates":false,"name":"SUSE-PackageHub-15-SP4-Backports-Debuginfo"},{"enabled":true,"id":5374,"distro_target":"sle-15-ppc64le","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP4/ppc64le/update/","installer_updates":false,"name":"SLE-Module-Packagehub-Subpackages15-SP4-Updates","description":"SLE-Module-Packagehub-Subpackages15-SP4-Updates for sle-15-ppc64le"},{"distro_target":"sle-15-ppc64le","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP4/ppc64le/update_debug/","enabled":false,"id":5375,"description":"SLE-Module-Packagehub-Subpackages15-SP4-Debuginfo-Updates for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-Packagehub-Subpackages15-SP4-Debuginfo-Updates"},{"description":"SUSE-PackageHub-15-SP4-Pool for sle-15-ppc64le","name":"SUSE-PackageHub-15-SP4-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Backports/SLE-15-SP4_ppc64le/product/","enabled":true,"id":5376},{"name":"SLE-Module-Packagehub-Subpackages15-SP4-Pool","installer_updates":false,"description":"SLE-Module-Packagehub-Subpackages15-SP4-Pool for sle-15-ppc64le","id":5377,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP4/ppc64le/product/","autorefresh":false,"distro_target":"sle-15-ppc64le"},{"distro_target":"sle-15-ppc64le","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP4/ppc64le/product_debug/","enabled":false,"id":5378,"description":"SLE-Module-Packagehub-Subpackages15-SP4-Debuginfo-Pool for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-Packagehub-Subpackages15-SP4-Debuginfo-Pool"},{"description":"SLE-Module-Packagehub-Subpackages15-SP4-Source-Pool for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-Packagehub-Subpackages15-SP4-Source-Pool","distro_target":"sle-15-ppc64le","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP4/ppc64le/product_source/","enabled":false,"id":5379}],"online_predecessor_ids":[1741,1869,1948,2189],"product_class":"MODULE","product_type":"module","cpe":"cpe:/o:suse:packagehub:15:sp4","free":true,"description":"SUSE Package Hub is a free of charge module providing access to community maintained packages built to run on SUSE Linux Enterprise Server. Built from the same sources used in the openSUSE distributions, these quality packages provide additional software to what is found in the SUSE Linux Enterprise Server product. Packages from the Package Hub are delivered without L3 support from SUSE. General updates and fixes to the packages in SUSE Package Hub are provided by the openSUSE community based on their discretion, though SUSE will monitor and ensure that any known critical security issues will be addressed. Packages in the Package Hub are approved by SUSE for use with SUSE Linux Enterprise Server 15-SP4 and to not interfere with the supportability of SUSE Linux Enterprise Server, its modules and extensions. For more information about SUSE Package Hub please visit https://packagehub.suse.com.","shortname":"SUSE-PackageHub-15","eula_url":"","arch":"ppc64le","friendly_version":"15 SP4","extensions":[],"identifier":"PackageHub","release_stage":"released","id":2345,"recommended":false,"version":"15.4","offline_predecessor_ids":[1531,1811,1913],"name":"SUSE Package Hub","former_identifier":"PackageHub","release_type":null,"friendly_name":"SUSE Package Hub 15 SP4 ppc64le","migration_extra":false},{"recommended":false,"version":"15.4","offline_predecessor_ids":[],"name":"Python 3 Module","former_identifier":"sle-module-python3","release_type":null,"migration_extra":false,"friendly_name":"Python 3 Module 15 SP4 ppc64le","friendly_version":"15 SP4","extensions":[],"release_stage":"released","identifier":"sle-module-python3","id":2403,"free":true,"description":"

This module contains the Python 3 packages.

Access to the Python 3 Module is included in your SUSE Linux Enterprise subscription. The module has a different lifecycle than SUSE Linux Enterprise itself; please check the Release Notes for further details.

","shortname":"Python 3-Module","eula_url":"","arch":"ppc64le","predecessor_ids":[],"product_class":"MODULE","online_predecessor_ids":[],"repositories":[{"installer_updates":false,"name":"SLE-Module-Python3-15-SP4-Updates","description":"SLE-Module-Python3-15-SP4-Updates for sle-15-ppc64le","enabled":true,"id":5572,"distro_target":"sle-15-ppc64le","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Python3/15-SP4/ppc64le/update/"},{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Python3/15-SP4/ppc64le/update_debug/","autorefresh":true,"distro_target":"sle-15-ppc64le","id":5573,"enabled":false,"description":"SLE-Module-Python3-15-SP4-Debuginfo-Updates for sle-15-ppc64le","name":"SLE-Module-Python3-15-SP4-Debuginfo-Updates","installer_updates":false},{"name":"SLE-Module-Python3-15-SP4-Pool","installer_updates":false,"description":"SLE-Module-Python3-15-SP4-Pool for sle-15-ppc64le","id":5574,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Python3/15-SP4/ppc64le/product/","autorefresh":false,"distro_target":"sle-15-ppc64le"},{"description":"SLE-Module-Python3-15-SP4-Debuginfo-Pool for sle-15-ppc64le","name":"SLE-Module-Python3-15-SP4-Debuginfo-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Python3/15-SP4/ppc64le/product_debug/","autorefresh":false,"distro_target":"sle-15-ppc64le","id":5575,"enabled":false},{"id":5576,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Python3/15-SP4/ppc64le/product_source/","autorefresh":false,"distro_target":"sle-15-ppc64le","name":"SLE-Module-Python3-15-SP4-Source-Pool","installer_updates":false,"description":"SLE-Module-Python3-15-SP4-Source-Pool for sle-15-ppc64le"}],"product_type":"module","cpe":"cpe:/o:suse:sle-module-python3:15:sp4"}]},{"product_type":"module","cpe":"cpe:/o:suse:sle-module-certifications:15:sp4","repositories":[{"description":"SLE-Module-Certifications-15-SP4-Updates for sle-15-ppc64le","name":"SLE-Module-Certifications-15-SP4-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Certifications/15-SP4/ppc64le/update/","enabled":true,"id":5537},{"enabled":false,"id":5538,"distro_target":"sle-15-ppc64le","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Certifications/15-SP4/ppc64le/update_debug/","installer_updates":false,"name":"SLE-Module-Certifications-15-SP4-Debuginfo-Updates","description":"SLE-Module-Certifications-15-SP4-Debuginfo-Updates for sle-15-ppc64le"},{"description":"SLE-Module-Certifications-15-SP4-Pool for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-Certifications-15-SP4-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Certifications/15-SP4/ppc64le/product/","distro_target":"sle-15-ppc64le","autorefresh":false,"id":5539,"enabled":true},{"description":"SLE-Module-Certifications-15-SP4-Debuginfo-Pool for sle-15-ppc64le","name":"SLE-Module-Certifications-15-SP4-Debuginfo-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Certifications/15-SP4/ppc64le/product_debug/","enabled":false,"id":5540},{"name":"SLE-Module-Certifications-15-SP4-Source-Pool","installer_updates":false,"description":"SLE-Module-Certifications-15-SP4-Source-Pool for sle-15-ppc64le","id":5541,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Certifications/15-SP4/ppc64le/product_source/","autorefresh":false,"distro_target":"sle-15-ppc64le"}],"online_predecessor_ids":[],"product_class":"MODULE","predecessor_ids":[],"arch":"ppc64le","eula_url":"","free":true,"description":"

This module contains the certification packages.

Access to the Certifications Module is included in your SUSE Linux Enterprise subscription. The module has a different lifecycle than SUSE Linux Enterprise itself; please check the Release Notes for further details.

","shortname":"Certifications-Module","release_stage":"released","id":2391,"identifier":"sle-module-certifications","extensions":[],"friendly_version":"15 SP4","former_identifier":"sle-module-certifications","release_type":null,"friendly_name":"Certifications Module 15 SP4 ppc64le","migration_extra":false,"offline_predecessor_ids":[],"name":"Certifications Module","version":"15.4","recommended":false}],"friendly_version":"15 SP4","former_identifier":"SLES","release_type":null,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Server 15 SP4 ppc64le","offline_predecessor_ids":[1422,1626,1876],"name":"SUSE Linux Enterprise Server","version":"15.4","recommended":false,"product_type":"base","cpe":"cpe:/o:suse:sles:15:sp4","repositories":[{"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-SLES/15-SP4/ppc64le/update/","distro_target":"sle-15-ppc64le","autorefresh":true,"id":5088,"enabled":true,"description":"SLE-Product-SLES15-SP4-Updates for sle-15-ppc64le","installer_updates":false,"name":"SLE-Product-SLES15-SP4-Updates"},{"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-SLES/15-SP4/ppc64le/update_debug/","distro_target":"sle-15-ppc64le","autorefresh":true,"id":5089,"enabled":false,"description":"SLE-Product-SLES15-SP4-Debuginfo-Updates for sle-15-ppc64le","installer_updates":false,"name":"SLE-Product-SLES15-SP4-Debuginfo-Updates"},{"id":5090,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-INSTALLER/15-SP4/ppc64le/update/","autorefresh":true,"distro_target":"sle-15-ppc64le","name":"SLE15-SP4-Installer-Updates","installer_updates":true,"description":"SLE15-SP4-Installer-Updates for sle-15-ppc64le"},{"id":5091,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-SLES/15-SP4/ppc64le/product/","autorefresh":false,"distro_target":"sle-15-ppc64le","name":"SLE-Product-SLES15-SP4-Pool","installer_updates":false,"description":"SLE-Product-SLES15-SP4-Pool for sle-15-ppc64le"},{"installer_updates":false,"name":"SLE-Product-SLES15-SP4-Debuginfo-Pool","description":"SLE-Product-SLES15-SP4-Debuginfo-Pool for sle-15-ppc64le","id":5092,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-SLES/15-SP4/ppc64le/product_debug/","distro_target":"sle-15-ppc64le","autorefresh":false},{"id":5093,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-SLES/15-SP4/ppc64le/product_source/","autorefresh":false,"distro_target":"sle-15-ppc64le","name":"SLE-Product-SLES15-SP4-Source-Pool","installer_updates":false,"description":"SLE-Product-SLES15-SP4-Source-Pool for sle-15-ppc64le"}],"online_predecessor_ids":[1761,1937,2138,2407],"product_class":"SLES-PPC","predecessor_ids":[1761,1937,2138,2407],"arch":"ppc64le","eula_url":"https://updates.suse.com/SUSE/Products/SLE-Product-SLES/15-SP4/ppc64le/product.license/","free":false,"shortname":"SLES15-SP4","description":"SUSE Linux Enterprise offers a comprehensive suite of products built on a single code base. The platform addresses business needs from the smallest thin-client devices to the world's most powerful high-performance computing and mainframe servers. SUSE Linux Enterprise offers common management tools and technology certifications across the platform, and each product is enterprise-class."},{"shortname":"SLES15-SP4","description":"SUSE Linux Enterprise offers a comprehensive suite of products built on a single code base. The platform addresses business needs from the smallest thin-client devices to the world's most powerful high-performance computing and mainframe servers. SUSE Linux Enterprise offers common management tools and technology certifications across the platform, and each product is enterprise-class.","free":false,"arch":"s390x","eula_url":"https://updates.suse.com/SUSE/Products/SLE-Product-SLES/15-SP4/s390x/product.license/","product_class":"SLES-Z","online_predecessor_ids":[1762,1938,2139,2408],"repositories":[{"id":5094,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-SLES/15-SP4/s390x/update/","autorefresh":true,"distro_target":"sle-15-s390x","name":"SLE-Product-SLES15-SP4-Updates","installer_updates":false,"description":"SLE-Product-SLES15-SP4-Updates for sle-15-s390x"},{"enabled":false,"id":5095,"autorefresh":true,"distro_target":"sle-15-s390x","url":"https://updates.suse.com/SUSE/Updates/SLE-Product-SLES/15-SP4/s390x/update_debug/","name":"SLE-Product-SLES15-SP4-Debuginfo-Updates","installer_updates":false,"description":"SLE-Product-SLES15-SP4-Debuginfo-Updates for sle-15-s390x"},{"description":"SLE15-SP4-Installer-Updates for sle-15-s390x","installer_updates":true,"name":"SLE15-SP4-Installer-Updates","distro_target":"sle-15-s390x","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-INSTALLER/15-SP4/s390x/update/","enabled":false,"id":5096},{"enabled":true,"id":5097,"distro_target":"sle-15-s390x","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-SLES/15-SP4/s390x/product/","installer_updates":false,"name":"SLE-Product-SLES15-SP4-Pool","description":"SLE-Product-SLES15-SP4-Pool for sle-15-s390x"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Product-SLES/15-SP4/s390x/product_debug/","autorefresh":false,"distro_target":"sle-15-s390x","id":5098,"enabled":false,"description":"SLE-Product-SLES15-SP4-Debuginfo-Pool for sle-15-s390x","name":"SLE-Product-SLES15-SP4-Debuginfo-Pool","installer_updates":false},{"description":"SLE-Product-SLES15-SP4-Source-Pool for sle-15-s390x","name":"SLE-Product-SLES15-SP4-Source-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-SLES/15-SP4/s390x/product_source/","autorefresh":false,"distro_target":"sle-15-s390x","id":5099,"enabled":false}],"predecessor_ids":[1762,1938,2139,2408],"cpe":"cpe:/o:suse:sles:15:sp4","product_type":"base","version":"15.4","recommended":false,"friendly_name":"SUSE Linux Enterprise Server 15 SP4 s390x","migration_extra":false,"release_type":null,"former_identifier":"SLES","name":"SUSE Linux Enterprise Server","offline_predecessor_ids":[1423,1627,1877],"friendly_version":"15 SP4","release_stage":"released","id":2291,"identifier":"SLES","extensions":[{"cpe":"cpe:/o:suse:sle-module-basesystem:15:sp4","product_type":"module","online_predecessor_ids":[1587,1771,1945,2144],"repositories":[{"installer_updates":false,"name":"SLE-Module-Basesystem15-SP4-Updates","description":"SLE-Module-Basesystem15-SP4-Updates for sle-15-s390x","id":5132,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15-SP4/s390x/update/","distro_target":"sle-15-s390x","autorefresh":true},{"name":"SLE-Module-Basesystem15-SP4-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-Basesystem15-SP4-Debuginfo-Updates for sle-15-s390x","enabled":false,"id":5133,"autorefresh":true,"distro_target":"sle-15-s390x","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15-SP4/s390x/update_debug/"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP4/s390x/product/","autorefresh":false,"distro_target":"sle-15-s390x","id":5134,"enabled":true,"description":"SLE-Module-Basesystem15-SP4-Pool for sle-15-s390x","name":"SLE-Module-Basesystem15-SP4-Pool","installer_updates":false},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP4/s390x/product_debug/","distro_target":"sle-15-s390x","autorefresh":false,"id":5135,"enabled":false,"description":"SLE-Module-Basesystem15-SP4-Debuginfo-Pool for sle-15-s390x","installer_updates":false,"name":"SLE-Module-Basesystem15-SP4-Debuginfo-Pool"},{"description":"SLE-Module-Basesystem15-SP4-Source-Pool for sle-15-s390x","name":"SLE-Module-Basesystem15-SP4-Source-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP4/s390x/product_source/","autorefresh":false,"distro_target":"sle-15-s390x","id":5136,"enabled":false}],"product_class":"MODULE","predecessor_ids":[1587,1771,1945,2144],"arch":"s390x","eula_url":"","shortname":"Basesystem-Module","description":"

The SUSE Linux Enterprise Basesystem Module delivers the base system of the product.

","free":true,"identifier":"sle-module-basesystem","release_stage":"released","id":2298,"extensions":[{"online_predecessor_ids":[1593,1775,1966,2148],"repositories":[{"name":"SLE-Module-Desktop-Applications15-SP4-Updates","installer_updates":false,"description":"SLE-Module-Desktop-Applications15-SP4-Updates for sle-15-s390x","id":5152,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15-SP4/s390x/update/","autorefresh":true,"distro_target":"sle-15-s390x"},{"enabled":false,"id":5153,"autorefresh":true,"distro_target":"sle-15-s390x","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15-SP4/s390x/update_debug/","name":"SLE-Module-Desktop-Applications15-SP4-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-Desktop-Applications15-SP4-Debuginfo-Updates for sle-15-s390x"},{"autorefresh":false,"distro_target":"sle-15-s390x","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP4/s390x/product/","enabled":true,"id":5154,"description":"SLE-Module-Desktop-Applications15-SP4-Pool for sle-15-s390x","name":"SLE-Module-Desktop-Applications15-SP4-Pool","installer_updates":false},{"enabled":false,"id":5155,"autorefresh":false,"distro_target":"sle-15-s390x","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP4/s390x/product_debug/","name":"SLE-Module-Desktop-Applications15-SP4-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-Desktop-Applications15-SP4-Debuginfo-Pool for sle-15-s390x"},{"enabled":false,"id":5156,"distro_target":"sle-15-s390x","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP4/s390x/product_source/","installer_updates":false,"name":"SLE-Module-Desktop-Applications15-SP4-Source-Pool","description":"SLE-Module-Desktop-Applications15-SP4-Source-Pool for sle-15-s390x"}],"product_class":"MODULE","predecessor_ids":[1593,1775,1966,2148],"cpe":"cpe:/o:suse:sle-module-desktop-applications:15:sp4","product_type":"module","shortname":"Desktop-Applications-Module","description":"

The SUSE Linux Enterprise Desktop Applications Module delivers a basic set of Desktop functionality.

Access to the Desktop Applications Module is included in your SUSE Linux Enterprise product subscription.

","free":true,"arch":"s390x","eula_url":"","friendly_version":"15 SP4","id":2302,"release_stage":"released","identifier":"sle-module-desktop-applications","extensions":[{"version":"15.4","recommended":false,"migration_extra":true,"friendly_name":"Development Tools Module 15 SP4 s390x","release_type":null,"former_identifier":"sle-sdk","name":"Development Tools Module","offline_predecessor_ids":[1340,1429,1632,1891],"friendly_version":"15 SP4","id":2314,"release_stage":"released","identifier":"sle-module-development-tools","extensions":[],"description":"

The Development Tools Module helps you developing applications for SUSE Linux Enterprise 15.

Access to the Development Tools Module is included in your SUSE Linux Enterprise product subscription. The module has a different lifecycle than SUSE Linux Enterprise itself.

","shortname":"Development-Tools-Module","free":true,"arch":"s390x","eula_url":"","repositories":[{"name":"SLE-Module-DevTools15-SP4-Updates","installer_updates":false,"description":"SLE-Module-DevTools15-SP4-Updates for sle-15-s390x","id":5212,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15-SP4/s390x/update/","autorefresh":true,"distro_target":"sle-15-s390x"},{"description":"SLE-Module-DevTools15-SP4-Debuginfo-Updates for sle-15-s390x","name":"SLE-Module-DevTools15-SP4-Debuginfo-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-15-s390x","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15-SP4/s390x/update_debug/","enabled":false,"id":5213},{"enabled":true,"id":5214,"autorefresh":false,"distro_target":"sle-15-s390x","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP4/s390x/product/","name":"SLE-Module-DevTools15-SP4-Pool","installer_updates":false,"description":"SLE-Module-DevTools15-SP4-Pool for sle-15-s390x"},{"id":5215,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP4/s390x/product_debug/","autorefresh":false,"distro_target":"sle-15-s390x","name":"SLE-Module-DevTools15-SP4-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-DevTools15-SP4-Debuginfo-Pool for sle-15-s390x"},{"id":5216,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP4/s390x/product_source/","autorefresh":false,"distro_target":"sle-15-s390x","name":"SLE-Module-DevTools15-SP4-Source-Pool","installer_updates":false,"description":"SLE-Module-DevTools15-SP4-Source-Pool for sle-15-s390x"}],"online_predecessor_ids":[1596,1793,1970,2160],"product_class":"MODULE","predecessor_ids":[1596,1793,1970,2160],"cpe":"cpe:/o:suse:sle-module-development-tools:15:sp4","product_type":"module"}],"version":"15.4","recommended":false,"migration_extra":true,"friendly_name":"Desktop Applications Module 15 SP4 s390x","release_type":null,"former_identifier":"sle-module-desktop-applications","name":"Desktop Applications Module","offline_predecessor_ids":[]},{"predecessor_ids":[1599,1779,1954,2152],"product_class":"MODULE","online_predecessor_ids":[1599,1779,1954,2152],"repositories":[{"id":5172,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15-SP4/s390x/update/","distro_target":"sle-15-s390x","autorefresh":true,"installer_updates":false,"name":"SLE-Module-Server-Applications15-SP4-Updates","description":"SLE-Module-Server-Applications15-SP4-Updates for sle-15-s390x"},{"name":"SLE-Module-Server-Applications15-SP4-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-Server-Applications15-SP4-Debuginfo-Updates for sle-15-s390x","id":5173,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15-SP4/s390x/update_debug/","autorefresh":true,"distro_target":"sle-15-s390x"},{"distro_target":"sle-15-s390x","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP4/s390x/product/","enabled":true,"id":5174,"description":"SLE-Module-Server-Applications15-SP4-Pool for sle-15-s390x","installer_updates":false,"name":"SLE-Module-Server-Applications15-SP4-Pool"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP4/s390x/product_debug/","distro_target":"sle-15-s390x","autorefresh":false,"id":5175,"enabled":false,"description":"SLE-Module-Server-Applications15-SP4-Debuginfo-Pool for sle-15-s390x","installer_updates":false,"name":"SLE-Module-Server-Applications15-SP4-Debuginfo-Pool"},{"distro_target":"sle-15-s390x","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP4/s390x/product_source/","enabled":false,"id":5176,"description":"SLE-Module-Server-Applications15-SP4-Source-Pool for sle-15-s390x","installer_updates":false,"name":"SLE-Module-Server-Applications15-SP4-Source-Pool"}],"cpe":"cpe:/o:suse:sle-module-server-applications:15:sp4","product_type":"module","description":"

The SUSE Linux Enterprise Server Applications Module delivers a basic set of Server functionality.

Access to the Server Applications Module is included in your SUSE Linux Enterprise Server subscription.

","shortname":"Server-Applications-Module","free":true,"eula_url":"","arch":"s390x","friendly_version":"15 SP4","extensions":[{"free":true,"shortname":"Web-Scripting-Module","description":"

The SUSE Linux Enterprise Web and Scripting Module should contains additional packages that are helpful when running a webserver.

Access to the Web and Scripting Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself: Package versions in this module are usually supported for at most three years. We are planning to release more recent versions on a schedule of approximately 18 month; the exact dates may differ per package.

","arch":"s390x","eula_url":"","repositories":[{"enabled":true,"id":5232,"distro_target":"sle-15-s390x","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/15-SP4/s390x/update/","installer_updates":false,"name":"SLE-Module-Web-Scripting15-SP4-Updates","description":"SLE-Module-Web-Scripting15-SP4-Updates for sle-15-s390x"},{"installer_updates":false,"name":"SLE-Module-Web-Scripting15-SP4-Debuginfo-Updates","description":"SLE-Module-Web-Scripting15-SP4-Debuginfo-Updates for sle-15-s390x","enabled":false,"id":5233,"distro_target":"sle-15-s390x","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/15-SP4/s390x/update_debug/"},{"id":5234,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP4/s390x/product/","distro_target":"sle-15-s390x","autorefresh":false,"installer_updates":false,"name":"SLE-Module-Web-Scripting15-SP4-Pool","description":"SLE-Module-Web-Scripting15-SP4-Pool for sle-15-s390x"},{"installer_updates":false,"name":"SLE-Module-Web-Scripting15-SP4-Debuginfo-Pool","description":"SLE-Module-Web-Scripting15-SP4-Debuginfo-Pool for sle-15-s390x","enabled":false,"id":5235,"distro_target":"sle-15-s390x","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP4/s390x/product_debug/"},{"enabled":false,"id":5236,"autorefresh":false,"distro_target":"sle-15-s390x","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP4/s390x/product_source/","name":"SLE-Module-Web-Scripting15-SP4-Source-Pool","installer_updates":false,"description":"SLE-Module-Web-Scripting15-SP4-Source-Pool for sle-15-s390x"}],"online_predecessor_ids":[1720,1797,1975,2164],"product_class":"MODULE","predecessor_ids":[1720,1797,1975,2164],"product_type":"module","cpe":"cpe:/o:suse:sle-module-web-scripting:15:sp4","version":"15.4","recommended":false,"former_identifier":"sle-module-web-scripting","release_type":null,"friendly_name":"Web and Scripting Module 15 SP4 s390x","migration_extra":true,"offline_predecessor_ids":[1152],"name":"Web and Scripting Module","friendly_version":"15 SP4","identifier":"sle-module-web-scripting","release_stage":"released","id":2318,"extensions":[]},{"friendly_version":"15 SP4","release_stage":"released","identifier":"sle-module-legacy","id":2322,"extensions":[],"version":"15.4","recommended":false,"friendly_name":"Legacy Module 15 SP4 s390x","migration_extra":true,"release_type":null,"former_identifier":"sle-module-legacy","name":"Legacy Module","offline_predecessor_ids":[1149],"repositories":[{"installer_updates":false,"name":"SLE-Module-Legacy15-SP4-Updates","description":"SLE-Module-Legacy15-SP4-Updates for sle-15-s390x","enabled":true,"id":5252,"distro_target":"sle-15-s390x","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/15-SP4/s390x/update/"},{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/15-SP4/s390x/update_debug/","distro_target":"sle-15-s390x","autorefresh":true,"id":5253,"enabled":false,"description":"SLE-Module-Legacy15-SP4-Debuginfo-Updates for sle-15-s390x","installer_updates":false,"name":"SLE-Module-Legacy15-SP4-Debuginfo-Updates"},{"installer_updates":false,"name":"SLE-Module-Legacy15-SP4-Pool","description":"SLE-Module-Legacy15-SP4-Pool for sle-15-s390x","id":5254,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15-SP4/s390x/product/","distro_target":"sle-15-s390x","autorefresh":false},{"autorefresh":false,"distro_target":"sle-15-s390x","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15-SP4/s390x/product_debug/","enabled":false,"id":5255,"description":"SLE-Module-Legacy15-SP4-Debuginfo-Pool for sle-15-s390x","name":"SLE-Module-Legacy15-SP4-Debuginfo-Pool","installer_updates":false},{"description":"SLE-Module-Legacy15-SP4-Source-Pool for sle-15-s390x","installer_updates":false,"name":"SLE-Module-Legacy15-SP4-Source-Pool","distro_target":"sle-15-s390x","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15-SP4/s390x/product_source/","enabled":false,"id":5256}],"online_predecessor_ids":[1602,1803,1981,2170],"product_class":"MODULE","predecessor_ids":[1602,1803,1981,2170],"cpe":"cpe:/o:suse:sle-module-legacy:15:sp4","product_type":"module","shortname":"Legacy-Module","description":"

The Legacy Module helps you migrating applications from SUSE Linux Enterprise 12 and other systems to SUSE Linux Enterprise 15, by providing packages which are discontinued on SUSE Linux Enterprise Server, such as: ntp, IBM Java 8, and a number of libraries.

Access to the Legacy Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself. Packages in the this module are usually supported for at most three years.

","free":true,"arch":"s390x","eula_url":""},{"recommended":false,"version":"15.4","offline_predecessor_ids":[1219],"name":"Public Cloud Module","former_identifier":"sle-module-public-cloud","release_type":null,"friendly_name":"Public Cloud Module 15 SP4 s390x","migration_extra":false,"friendly_version":"15 SP4","extensions":[],"release_stage":"released","identifier":"sle-module-public-cloud","id":2326,"free":true,"shortname":"Public-Cloud-Module","description":"

The Public Cloud Module is a collection of tools that enables you to create and manage cloud images from the commandline on SUSE Linux Enterprise Server. When building your own images with KIWI or SUSE Studio, initialization code specific to the target cloud is included in that image.

Access to the Public Cloud Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself; please check the Release Notes for further details.

","eula_url":"","arch":"s390x","predecessor_ids":[1646,1807,1987,2174],"product_class":"MODULE","online_predecessor_ids":[1646,1807,1987,2174],"repositories":[{"installer_updates":false,"name":"SLE-Module-Public-Cloud15-SP4-Updates","description":"SLE-Module-Public-Cloud15-SP4-Updates for sle-15-s390x","enabled":true,"id":5272,"distro_target":"sle-15-s390x","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/15-SP4/s390x/update/"},{"description":"SLE-Module-Public-Cloud15-SP4-Debuginfo-Updates for sle-15-s390x","name":"SLE-Module-Public-Cloud15-SP4-Debuginfo-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-15-s390x","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/15-SP4/s390x/update_debug/","enabled":false,"id":5273},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP4/s390x/product/","autorefresh":false,"distro_target":"sle-15-s390x","id":5274,"enabled":true,"description":"SLE-Module-Public-Cloud15-SP4-Pool for sle-15-s390x","name":"SLE-Module-Public-Cloud15-SP4-Pool","installer_updates":false},{"description":"SLE-Module-Public-Cloud15-SP4-Debuginfo-Pool for sle-15-s390x","installer_updates":false,"name":"SLE-Module-Public-Cloud15-SP4-Debuginfo-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP4/s390x/product_debug/","distro_target":"sle-15-s390x","autorefresh":false,"id":5275,"enabled":false},{"name":"SLE-Module-Public-Cloud15-SP4-Source-Pool","installer_updates":false,"description":"SLE-Module-Public-Cloud15-SP4-Source-Pool for sle-15-s390x","enabled":false,"id":5276,"autorefresh":false,"distro_target":"sle-15-s390x","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP4/s390x/product_source/"}],"product_type":"module","cpe":"cpe:/o:suse:sle-module-public-cloud:15:sp4"},{"predecessor_ids":[1605,1784,1958,2194],"online_predecessor_ids":[1605,1784,1958,2194],"repositories":[{"id":5337,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-HA/15-SP4/s390x/update/","distro_target":"sle-15-s390x","autorefresh":true,"installer_updates":false,"name":"SLE-Product-HA15-SP4-Updates","description":"SLE-Product-HA15-SP4-Updates for sle-15-s390x"},{"id":5338,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-HA/15-SP4/s390x/update_debug/","autorefresh":true,"distro_target":"sle-15-s390x","name":"SLE-Product-HA15-SP4-Debuginfo-Updates","installer_updates":false,"description":"SLE-Product-HA15-SP4-Debuginfo-Updates for sle-15-s390x"},{"installer_updates":false,"name":"SLE-Product-HA15-SP4-Pool","description":"SLE-Product-HA15-SP4-Pool for sle-15-s390x","enabled":true,"id":5339,"distro_target":"sle-15-s390x","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP4/s390x/product/"},{"installer_updates":false,"name":"SLE-Product-HA15-SP4-Debuginfo-Pool","description":"SLE-Product-HA15-SP4-Debuginfo-Pool for sle-15-s390x","enabled":false,"id":5340,"distro_target":"sle-15-s390x","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP4/s390x/product_debug/"},{"description":"SLE-Product-HA15-SP4-Source-Pool for sle-15-s390x","name":"SLE-Product-HA15-SP4-Source-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP4/s390x/product_source/","autorefresh":false,"distro_target":"sle-15-s390x","id":5341,"enabled":false}],"product_class":"SLE-HAE-Z","cpe":"cpe:/o:suse:sle-ha:15:sp4","product_type":"extension","description":"SUSE Linux High Availability Extension provides mature, industry-leading open-source high-availability clustering technologies that are easy to set up and use. It can be deployed in physical and/or virtual environments, and can cluster physical servers, virtual servers, or any combination of the two to suit your business’ needs.","shortname":"SLEHA15-SP4","free":false,"eula_url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP4/s390x/product.license/","arch":"s390x","friendly_version":"15 SP4","extensions":[],"id":2339,"release_stage":"released","identifier":"sle-ha","recommended":false,"version":"15.4","name":"SUSE Linux Enterprise High Availability Extension","offline_predecessor_ids":[1080,1082,1084,1086,1109,1110,1257,1287,1434,1436,1636,1638,1883,1885],"migration_extra":false,"friendly_name":"SUSE Linux Enterprise High Availability Extension 15 SP4 s390x","former_identifier":"sle-ha","release_type":null}],"identifier":"sle-module-server-applications","release_stage":"released","id":2306,"recommended":true,"version":"15.4","name":"Server Applications Module","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"Server Applications Module 15 SP4 s390x","former_identifier":"sle-module-server-applications","release_type":null},{"free":true,"shortname":"Containers-Module","description":"

This Module contains several packages revolving around containers and related tools.

","eula_url":"","arch":"s390x","predecessor_ids":[1641,1789,1962,2156],"online_predecessor_ids":[1641,1789,1962,2156],"product_class":"MODULE","repositories":[{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/15-SP4/s390x/update/","distro_target":"sle-15-s390x","autorefresh":true,"id":5192,"enabled":true,"description":"SLE-Module-Containers15-SP4-Updates for sle-15-s390x","installer_updates":false,"name":"SLE-Module-Containers15-SP4-Updates"},{"name":"SLE-Module-Containers15-SP4-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-Containers15-SP4-Debuginfo-Updates for sle-15-s390x","enabled":false,"id":5193,"autorefresh":true,"distro_target":"sle-15-s390x","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/15-SP4/s390x/update_debug/"},{"enabled":true,"id":5194,"distro_target":"sle-15-s390x","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP4/s390x/product/","installer_updates":false,"name":"SLE-Module-Containers15-SP4-Pool","description":"SLE-Module-Containers15-SP4-Pool for sle-15-s390x"},{"installer_updates":false,"name":"SLE-Module-Containers15-SP4-Debuginfo-Pool","description":"SLE-Module-Containers15-SP4-Debuginfo-Pool for sle-15-s390x","enabled":false,"id":5195,"distro_target":"sle-15-s390x","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP4/s390x/product_debug/"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP4/s390x/product_source/","distro_target":"sle-15-s390x","autorefresh":false,"id":5196,"enabled":false,"description":"SLE-Module-Containers15-SP4-Source-Pool for sle-15-s390x","installer_updates":false,"name":"SLE-Module-Containers15-SP4-Source-Pool"}],"product_type":"module","cpe":"cpe:/o:suse:sle-module-containers:15:sp4","recommended":false,"version":"15.4","offline_predecessor_ids":[1354],"name":"Containers Module","release_type":null,"former_identifier":"sle-module-containers","friendly_name":"Containers Module 15 SP4 s390x","migration_extra":false,"friendly_version":"15 SP4","extensions":[],"release_stage":"released","id":2310,"identifier":"sle-module-containers"},{"release_stage":"released","identifier":"sle-module-transactional-server","id":2330,"extensions":[],"friendly_version":"15 SP4","migration_extra":false,"friendly_name":"Transactional Server Module 15 SP4 s390x","former_identifier":"sle-module-transactional-server","release_type":null,"name":"Transactional Server Module","offline_predecessor_ids":[],"version":"15.4","recommended":false,"cpe":"cpe:/o:suse:sle-module-transactional-server:15:sp4","product_type":"module","product_class":"MODULE","online_predecessor_ids":[1824,1997,2179],"repositories":[{"enabled":true,"id":5292,"autorefresh":true,"distro_target":"sle-15-s390x","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Transactional-Server/15-SP4/s390x/update/","name":"SLE-Module-Transactional-Server15-SP4-Updates","installer_updates":false,"description":"SLE-Module-Transactional-Server15-SP4-Updates for sle-15-s390x"},{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Transactional-Server/15-SP4/s390x/update_debug/","autorefresh":true,"distro_target":"sle-15-s390x","id":5293,"enabled":false,"description":"SLE-Module-Transactional-Server15-SP4-Debuginfo-Updates for sle-15-s390x","name":"SLE-Module-Transactional-Server15-SP4-Debuginfo-Updates","installer_updates":false},{"description":"SLE-Module-Transactional-Server15-SP4-Pool for sle-15-s390x","name":"SLE-Module-Transactional-Server15-SP4-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Transactional-Server/15-SP4/s390x/product/","autorefresh":false,"distro_target":"sle-15-s390x","id":5294,"enabled":true},{"description":"SLE-Module-Transactional-Server15-SP4-Debuginfo-Pool for sle-15-s390x","installer_updates":false,"name":"SLE-Module-Transactional-Server15-SP4-Debuginfo-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Transactional-Server/15-SP4/s390x/product_debug/","distro_target":"sle-15-s390x","autorefresh":false,"id":5295,"enabled":false},{"enabled":false,"id":5296,"autorefresh":false,"distro_target":"sle-15-s390x","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Transactional-Server/15-SP4/s390x/product_source/","name":"SLE-Module-Transactional-Server15-SP4-Source-Pool","installer_updates":false,"description":"SLE-Module-Transactional-Server15-SP4-Source-Pool for sle-15-s390x"}],"predecessor_ids":[1824,1997,2179],"arch":"s390x","eula_url":"","description":"

Transactional Updates provide SUSE Linux Enterprise systems with a method of updating the operating system and its packages in an entirely ‘atomic’ way. Updates are either applied to the system all together in a single transaction, or not at all. This happens without influencing the running system. If an update fails, or if the successful update is deemed to be incompatible or otherwise incorrect, it can be discarded to immediately return the system to its previous functioning state.

Access to theTransactional Server Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself: Package versions in the this module are usually supported for at most three years. We are planning to release more recent versions on a schedule of approximately 18 month; the exact dates may differ per package.

","shortname":"Transactional-Server-Module","free":true},{"id":2333,"release_stage":"released","identifier":"sle-module-live-patching","extensions":[],"friendly_version":"15 SP4","friendly_name":"SUSE Linux Enterprise Live Patching 15 SP4 s390x","migration_extra":false,"former_identifier":"sle-module-live-patching","release_type":null,"name":"SUSE Linux Enterprise Live Patching","offline_predecessor_ids":[2079,2080],"version":"15.4","recommended":false,"cpe":"cpe:/o:suse:sle-module-live-patching:15:sp4","product_type":"extension","online_predecessor_ids":[2081,2186],"product_class":"SLE-LP-Z","repositories":[{"autorefresh":true,"distro_target":"sle-15-s390x","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Live-Patching/15-SP4/s390x/update/","enabled":true,"id":5307,"description":"SLE-Module-Live-Patching15-SP4-Updates for sle-15-s390x","name":"SLE-Module-Live-Patching15-SP4-Updates","installer_updates":false},{"description":"SLE-Module-Live-Patching15-SP4-Debuginfo-Updates for sle-15-s390x","installer_updates":false,"name":"SLE-Module-Live-Patching15-SP4-Debuginfo-Updates","distro_target":"sle-15-s390x","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Live-Patching/15-SP4/s390x/update_debug/","enabled":false,"id":5308},{"name":"SLE-Module-Live-Patching15-SP4-Pool","installer_updates":false,"description":"SLE-Module-Live-Patching15-SP4-Pool for sle-15-s390x","enabled":true,"id":5309,"autorefresh":false,"distro_target":"sle-15-s390x","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Live-Patching/15-SP4/s390x/product/"},{"description":"SLE-Module-Live-Patching15-SP4-Debuginfo-Pool for sle-15-s390x","name":"SLE-Module-Live-Patching15-SP4-Debuginfo-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-15-s390x","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Live-Patching/15-SP4/s390x/product_debug/","enabled":false,"id":5310},{"installer_updates":false,"name":"SLE-Module-Live-Patching15-SP4-Source-Pool","description":"SLE-Module-Live-Patching15-SP4-Source-Pool for sle-15-s390x","id":5311,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Live-Patching/15-SP4/s390x/product_source/","distro_target":"sle-15-s390x","autorefresh":false}],"predecessor_ids":[2081,2186],"arch":"s390x","eula_url":"","description":"

SUSE Linux Enterprise Live Patching provides packages to update critical components in SUSE Linux Enterprise. With SUSE Linux Enterprise Live Patching, you can perform critical patching without shutting down your system, reducing the need for planned downtime and increasing service availability.

","shortname":"Live-Patching","free":false},{"arch":"s390x","eula_url":"","description":"SUSE Package Hub is a free of charge module providing access to community maintained packages built to run on SUSE Linux Enterprise Server. Built from the same sources used in the openSUSE distributions, these quality packages provide additional software to what is found in the SUSE Linux Enterprise Server product. Packages from the Package Hub are delivered without L3 support from SUSE. General updates and fixes to the packages in SUSE Package Hub are provided by the openSUSE community based on their discretion, though SUSE will monitor and ensure that any known critical security issues will be addressed. Packages in the Package Hub are approved by SUSE for use with SUSE Linux Enterprise Server 15-SP4 and to not interfere with the supportability of SUSE Linux Enterprise Server, its modules and extensions. For more information about SUSE Package Hub please visit https://packagehub.suse.com.","shortname":"SUSE-PackageHub-15","free":true,"cpe":"cpe:/o:suse:packagehub:15:sp4","product_type":"module","online_predecessor_ids":[1742,1870,1949,2190],"repositories":[{"url":"https://updates.suse.com/SUSE/Backports/SLE-15-SP4_s390x/standard/","distro_target":"sle-15-s390x","autorefresh":false,"id":5380,"enabled":true,"description":"SUSE-PackageHub-15-SP4-Backports-Pool for sle-15-s390x","installer_updates":false,"name":"SUSE-PackageHub-15-SP4-Backports-Pool"},{"autorefresh":true,"distro_target":"sle-15-s390x","url":"https://updates.suse.com/SUSE/Backports/SLE-15-SP4_s390x/standard_debug/","enabled":false,"id":5381,"description":"SUSE-PackageHub-15-SP4-Backports-Debuginfo for sle-15-s390x","name":"SUSE-PackageHub-15-SP4-Backports-Debuginfo","installer_updates":false},{"id":5382,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP4/s390x/update/","distro_target":"sle-15-s390x","autorefresh":true,"installer_updates":false,"name":"SLE-Module-Packagehub-Subpackages15-SP4-Updates","description":"SLE-Module-Packagehub-Subpackages15-SP4-Updates for sle-15-s390x"},{"installer_updates":false,"name":"SLE-Module-Packagehub-Subpackages15-SP4-Debuginfo-Updates","description":"SLE-Module-Packagehub-Subpackages15-SP4-Debuginfo-Updates for sle-15-s390x","id":5383,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP4/s390x/update_debug/","distro_target":"sle-15-s390x","autorefresh":true},{"description":"SUSE-PackageHub-15-SP4-Pool for sle-15-s390x","name":"SUSE-PackageHub-15-SP4-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-15-s390x","url":"https://updates.suse.com/SUSE/Backports/SLE-15-SP4_s390x/product/","enabled":true,"id":5384},{"installer_updates":false,"name":"SLE-Module-Packagehub-Subpackages15-SP4-Pool","description":"SLE-Module-Packagehub-Subpackages15-SP4-Pool for sle-15-s390x","id":5385,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP4/s390x/product/","distro_target":"sle-15-s390x","autorefresh":false},{"name":"SLE-Module-Packagehub-Subpackages15-SP4-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-Packagehub-Subpackages15-SP4-Debuginfo-Pool for sle-15-s390x","id":5386,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP4/s390x/product_debug/","autorefresh":false,"distro_target":"sle-15-s390x"},{"autorefresh":false,"distro_target":"sle-15-s390x","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP4/s390x/product_source/","enabled":false,"id":5387,"description":"SLE-Module-Packagehub-Subpackages15-SP4-Source-Pool for sle-15-s390x","name":"SLE-Module-Packagehub-Subpackages15-SP4-Source-Pool","installer_updates":false}],"product_class":"MODULE","predecessor_ids":[1742,1870,1949,2190],"friendly_name":"SUSE Package Hub 15 SP4 s390x","migration_extra":false,"former_identifier":"PackageHub","release_type":null,"name":"SUSE Package Hub","offline_predecessor_ids":[1530,1812,1914],"version":"15.4","recommended":false,"release_stage":"released","identifier":"PackageHub","id":2346,"extensions":[],"friendly_version":"15 SP4"},{"shortname":"Python 3-Module","description":"

This module contains the Python 3 packages.

Access to the Python 3 Module is included in your SUSE Linux Enterprise subscription. The module has a different lifecycle than SUSE Linux Enterprise itself; please check the Release Notes for further details.

","free":true,"arch":"s390x","eula_url":"","repositories":[{"name":"SLE-Module-Python3-15-SP4-Updates","installer_updates":false,"description":"SLE-Module-Python3-15-SP4-Updates for sle-15-s390x","enabled":true,"id":5577,"autorefresh":true,"distro_target":"sle-15-s390x","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Python3/15-SP4/s390x/update/"},{"id":5578,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Python3/15-SP4/s390x/update_debug/","distro_target":"sle-15-s390x","autorefresh":true,"installer_updates":false,"name":"SLE-Module-Python3-15-SP4-Debuginfo-Updates","description":"SLE-Module-Python3-15-SP4-Debuginfo-Updates for sle-15-s390x"},{"enabled":true,"id":5579,"distro_target":"sle-15-s390x","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Python3/15-SP4/s390x/product/","installer_updates":false,"name":"SLE-Module-Python3-15-SP4-Pool","description":"SLE-Module-Python3-15-SP4-Pool for sle-15-s390x"},{"name":"SLE-Module-Python3-15-SP4-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-Python3-15-SP4-Debuginfo-Pool for sle-15-s390x","enabled":false,"id":5580,"autorefresh":false,"distro_target":"sle-15-s390x","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Python3/15-SP4/s390x/product_debug/"},{"description":"SLE-Module-Python3-15-SP4-Source-Pool for sle-15-s390x","name":"SLE-Module-Python3-15-SP4-Source-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-15-s390x","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Python3/15-SP4/s390x/product_source/","enabled":false,"id":5581}],"online_predecessor_ids":[],"product_class":"MODULE","predecessor_ids":[],"cpe":"cpe:/o:suse:sle-module-python3:15:sp4","product_type":"module","version":"15.4","recommended":false,"migration_extra":false,"friendly_name":"Python 3 Module 15 SP4 s390x","release_type":null,"former_identifier":"sle-module-python3","name":"Python 3 Module","offline_predecessor_ids":[],"friendly_version":"15 SP4","release_stage":"released","id":2404,"identifier":"sle-module-python3","extensions":[]}],"friendly_version":"15 SP4","migration_extra":false,"friendly_name":"Basesystem Module 15 SP4 s390x","former_identifier":"sle-module-basesystem","release_type":null,"name":"Basesystem Module","offline_predecessor_ids":[1295,1367],"version":"15.4","recommended":true},{"former_identifier":"sle-module-certifications","release_type":null,"migration_extra":false,"friendly_name":"Certifications Module 15 SP4 s390x","offline_predecessor_ids":[],"name":"Certifications Module","version":"15.4","recommended":false,"id":2392,"release_stage":"released","identifier":"sle-module-certifications","extensions":[],"friendly_version":"15 SP4","arch":"s390x","eula_url":"","free":true,"shortname":"Certifications-Module","description":"

This module contains the certification packages.

Access to the Certifications Module is included in your SUSE Linux Enterprise subscription. The module has a different lifecycle than SUSE Linux Enterprise itself; please check the Release Notes for further details.

","product_type":"module","cpe":"cpe:/o:suse:sle-module-certifications:15:sp4","product_class":"MODULE","online_predecessor_ids":[],"repositories":[{"installer_updates":false,"name":"SLE-Module-Certifications-15-SP4-Updates","description":"SLE-Module-Certifications-15-SP4-Updates for sle-15-s390x","enabled":true,"id":5542,"distro_target":"sle-15-s390x","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Certifications/15-SP4/s390x/update/"},{"id":5543,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Certifications/15-SP4/s390x/update_debug/","distro_target":"sle-15-s390x","autorefresh":true,"installer_updates":false,"name":"SLE-Module-Certifications-15-SP4-Debuginfo-Updates","description":"SLE-Module-Certifications-15-SP4-Debuginfo-Updates for sle-15-s390x"},{"description":"SLE-Module-Certifications-15-SP4-Pool for sle-15-s390x","installer_updates":false,"name":"SLE-Module-Certifications-15-SP4-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Certifications/15-SP4/s390x/product/","distro_target":"sle-15-s390x","autorefresh":false,"id":5544,"enabled":true},{"name":"SLE-Module-Certifications-15-SP4-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-Certifications-15-SP4-Debuginfo-Pool for sle-15-s390x","id":5545,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Certifications/15-SP4/s390x/product_debug/","autorefresh":false,"distro_target":"sle-15-s390x"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Certifications/15-SP4/s390x/product_source/","autorefresh":false,"distro_target":"sle-15-s390x","id":5546,"enabled":false,"description":"SLE-Module-Certifications-15-SP4-Source-Pool for sle-15-s390x","name":"SLE-Module-Certifications-15-SP4-Source-Pool","installer_updates":false}],"predecessor_ids":[]}]},{"release_stage":"released","identifier":"SLES","id":2292,"extensions":[{"extensions":[{"friendly_version":"15 SP4","identifier":"sle-module-desktop-applications","release_stage":"released","id":2303,"extensions":[{"predecessor_ids":[1579,1794,1971,2161],"repositories":[{"enabled":true,"id":5217,"distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15-SP4/x86_64/update/","installer_updates":false,"name":"SLE-Module-DevTools15-SP4-Updates","description":"SLE-Module-DevTools15-SP4-Updates for sle-15-x86_64"},{"description":"SLE-Module-DevTools15-SP4-Debuginfo-Updates for sle-15-x86_64","name":"SLE-Module-DevTools15-SP4-Debuginfo-Updates","installer_updates":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15-SP4/x86_64/update_debug/","autorefresh":true,"distro_target":"sle-15-x86_64","id":5218,"enabled":false},{"installer_updates":false,"name":"SLE-Module-DevTools15-SP4-Pool","description":"SLE-Module-DevTools15-SP4-Pool for sle-15-x86_64","id":5219,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP4/x86_64/product/","distro_target":"sle-15-x86_64","autorefresh":false},{"name":"SLE-Module-DevTools15-SP4-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-DevTools15-SP4-Debuginfo-Pool for sle-15-x86_64","enabled":false,"id":5220,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP4/x86_64/product_debug/"},{"description":"SLE-Module-DevTools15-SP4-Source-Pool for sle-15-x86_64","name":"SLE-Module-DevTools15-SP4-Source-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP4/x86_64/product_source/","autorefresh":false,"distro_target":"sle-15-x86_64","id":5221,"enabled":false}],"online_predecessor_ids":[1579,1794,1971,2161],"product_class":"MODULE","cpe":"cpe:/o:suse:sle-module-development-tools:15:sp4","product_type":"module","shortname":"Development-Tools-Module","description":"

The Development Tools Module helps you developing applications for SUSE Linux Enterprise 15.

Access to the Development Tools Module is included in your SUSE Linux Enterprise product subscription. The module has a different lifecycle than SUSE Linux Enterprise itself.

","free":true,"eula_url":"","arch":"x86_64","friendly_version":"15 SP4","extensions":[{"eula_url":"https://updates.suse.com/SUSE/Products/SLE-Module-NVIDIA-Compute/15/x86_64/product.license/","arch":"x86_64","free":true,"description":"NVIDIA Compute Drivers - NVIDIA CUDA This Module contains software under the terms and conditions of a 3rd party EULA (End User License Agreement). The EULA can be found at https://docs.nvidia.com/cuda/eula/index.html. By using this software you agree to fully comply with the terms and conditions of the EULA. If you do not agree to the terms and conditions of the EULA, do not use the software.","shortname":"NVIDIA-Compute-Module","product_type":"module","cpe":"cpe:/o:suse:sle-module-nvidia-compute:15","predecessor_ids":[],"product_class":"MODULE","online_predecessor_ids":[],"repositories":[{"name":"SLE-Module-NVIDIA-Compute-15-Updates","installer_updates":false,"description":"SLE-Module-NVIDIA-Compute-15-Updates for sle-15-x86_64","enabled":true,"id":4554,"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-NVIDIA-Compute/15/x86_64/update/"},{"enabled":true,"id":4556,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-NVIDIA-Compute/15/x86_64/product/","name":"SLE-Module-NVIDIA-Compute-15-Pool","installer_updates":false,"description":"SLE-Module-NVIDIA-Compute-15-Pool for sle-15-x86_64"},{"enabled":true,"id":4563,"autorefresh":true,"distro_target":null,"url":"https://developer.download.nvidia.com/compute/cuda/repos/sles15/x86_64/","name":"NVIDIA-Compute-SLE-15","installer_updates":false,"description":"NVIDIA-Compute-SLE-15"}],"offline_predecessor_ids":[],"name":"NVIDIA Compute Module","release_type":null,"former_identifier":"sle-module-NVIDIA-compute","friendly_name":"NVIDIA Compute Module 15 x86_64","migration_extra":false,"recommended":false,"version":"15","extensions":[],"release_stage":"released","id":2131,"identifier":"sle-module-NVIDIA-compute","friendly_version":"15"}],"identifier":"sle-module-development-tools","release_stage":"released","id":2315,"recommended":false,"version":"15.4","name":"Development Tools Module","offline_predecessor_ids":[1341,1427,1630,1892],"migration_extra":true,"friendly_name":"Development Tools Module 15 SP4 x86_64","former_identifier":"sle-sdk","release_type":null},{"arch":"x86_64","eula_url":"https://updates.suse.com/SUSE/Products/SLE-Product-WE/15-SP4/x86_64/product.license/","free":false,"description":"SUSE Linux Enterprise Workstation Extension adds additional functionality to a base SUSE Linux Enterprise installation. The Workstation Extension offers additional desktop applications (office suite, email client, graphical editor, multimedia tools) and libraries. Workstation Extension is enabled and installed by default on SUSE Linux Enterprise Desktop installation. Adding the Workstation Extension to a SUSE Linux Enterprise Server installation allows to seamlessly combine both products to create a full featured server workstation.","shortname":"SLEWE15-SP4","product_type":"extension","cpe":"cpe:/o:suse:sle-we:15:sp4","online_predecessor_ids":[1583,1781,1999,2196],"product_class":"SLE-WE","repositories":[{"autorefresh":true,"distro_target":null,"url":"https://download.nvidia.com/suse/sle15sp4/","enabled":true,"id":5119,"description":"SLE-15-SP4-Desktop-NVIDIA-Driver","name":"SLE-15-SP4-Desktop-NVIDIA-Driver","installer_updates":false},{"enabled":true,"id":5357,"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Product-WE/15-SP4/x86_64/update/","name":"SLE-Product-WE15-SP4-Updates","installer_updates":false,"description":"SLE-Product-WE15-SP4-Updates for sle-15-x86_64"},{"description":"SLE-Product-WE15-SP4-Debuginfo-Updates for sle-15-x86_64","name":"SLE-Product-WE15-SP4-Debuginfo-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Product-WE/15-SP4/x86_64/update_debug/","enabled":false,"id":5358},{"description":"SLE-Product-WE15-SP4-Pool for sle-15-x86_64","name":"SLE-Product-WE15-SP4-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-WE/15-SP4/x86_64/product/","autorefresh":false,"distro_target":"sle-15-x86_64","id":5359,"enabled":true},{"name":"SLE-Product-WE15-SP4-Debuginfo-Pool","installer_updates":false,"description":"SLE-Product-WE15-SP4-Debuginfo-Pool for sle-15-x86_64","id":5360,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-WE/15-SP4/x86_64/product_debug/","autorefresh":false,"distro_target":"sle-15-x86_64"},{"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Product-WE/15-SP4/x86_64/product_source/","enabled":false,"id":5361,"description":"SLE-Product-WE15-SP4-Source-Pool for sle-15-x86_64","name":"SLE-Product-WE15-SP4-Source-Pool","installer_updates":false}],"predecessor_ids":[1583,1781,1999,2196],"former_identifier":"sle-we","release_type":null,"friendly_name":"SUSE Linux Enterprise Workstation Extension 15 SP4 x86_64","migration_extra":false,"offline_predecessor_ids":[1431,1639,1893],"name":"SUSE Linux Enterprise Workstation Extension","version":"15.4","recommended":false,"release_stage":"released","id":2343,"identifier":"sle-we","extensions":[],"friendly_version":"15 SP4"}],"version":"15.4","recommended":false,"migration_extra":true,"friendly_name":"Desktop Applications Module 15 SP4 x86_64","release_type":null,"former_identifier":"sle-module-desktop-applications","name":"Desktop Applications Module","offline_predecessor_ids":[],"product_class":"MODULE","online_predecessor_ids":[1578,1776,1967,2149],"repositories":[{"name":"SLE-Module-Desktop-Applications15-SP4-Updates","installer_updates":false,"description":"SLE-Module-Desktop-Applications15-SP4-Updates for sle-15-x86_64","enabled":true,"id":5157,"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15-SP4/x86_64/update/"},{"installer_updates":false,"name":"SLE-Module-Desktop-Applications15-SP4-Debuginfo-Updates","description":"SLE-Module-Desktop-Applications15-SP4-Debuginfo-Updates for sle-15-x86_64","id":5158,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15-SP4/x86_64/update_debug/","distro_target":"sle-15-x86_64","autorefresh":true},{"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP4/x86_64/product/","enabled":true,"id":5159,"description":"SLE-Module-Desktop-Applications15-SP4-Pool for sle-15-x86_64","name":"SLE-Module-Desktop-Applications15-SP4-Pool","installer_updates":false},{"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP4/x86_64/product_debug/","enabled":false,"id":5160,"description":"SLE-Module-Desktop-Applications15-SP4-Debuginfo-Pool for sle-15-x86_64","name":"SLE-Module-Desktop-Applications15-SP4-Debuginfo-Pool","installer_updates":false},{"id":5161,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP4/x86_64/product_source/","distro_target":"sle-15-x86_64","autorefresh":false,"installer_updates":false,"name":"SLE-Module-Desktop-Applications15-SP4-Source-Pool","description":"SLE-Module-Desktop-Applications15-SP4-Source-Pool for sle-15-x86_64"}],"predecessor_ids":[1578,1776,1967,2149],"cpe":"cpe:/o:suse:sle-module-desktop-applications:15:sp4","product_type":"module","shortname":"Desktop-Applications-Module","description":"

The SUSE Linux Enterprise Desktop Applications Module delivers a basic set of Desktop functionality.

Access to the Desktop Applications Module is included in your SUSE Linux Enterprise product subscription.

","free":true,"arch":"x86_64","eula_url":""},{"eula_url":"","arch":"x86_64","description":"

The SUSE Linux Enterprise Server Applications Module delivers a basic set of Server functionality.

Access to the Server Applications Module is included in your SUSE Linux Enterprise Server subscription.

","shortname":"Server-Applications-Module","free":true,"cpe":"cpe:/o:suse:sle-module-server-applications:15:sp4","product_type":"module","predecessor_ids":[1580,1780,1955,2153],"online_predecessor_ids":[1580,1780,1955,2153],"product_class":"MODULE","repositories":[{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15-SP4/x86_64/update/","autorefresh":true,"distro_target":"sle-15-x86_64","id":5177,"enabled":true,"description":"SLE-Module-Server-Applications15-SP4-Updates for sle-15-x86_64","name":"SLE-Module-Server-Applications15-SP4-Updates","installer_updates":false},{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15-SP4/x86_64/update_debug/","distro_target":"sle-15-x86_64","autorefresh":true,"id":5178,"enabled":false,"description":"SLE-Module-Server-Applications15-SP4-Debuginfo-Updates for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Server-Applications15-SP4-Debuginfo-Updates"},{"installer_updates":false,"name":"SLE-Module-Server-Applications15-SP4-Pool","description":"SLE-Module-Server-Applications15-SP4-Pool for sle-15-x86_64","enabled":true,"id":5179,"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP4/x86_64/product/"},{"description":"SLE-Module-Server-Applications15-SP4-Debuginfo-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Server-Applications15-SP4-Debuginfo-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP4/x86_64/product_debug/","distro_target":"sle-15-x86_64","autorefresh":false,"id":5180,"enabled":false},{"id":5181,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP4/x86_64/product_source/","distro_target":"sle-15-x86_64","autorefresh":false,"installer_updates":false,"name":"SLE-Module-Server-Applications15-SP4-Source-Pool","description":"SLE-Module-Server-Applications15-SP4-Source-Pool for sle-15-x86_64"}],"name":"Server Applications Module","offline_predecessor_ids":[],"friendly_name":"Server Applications Module 15 SP4 x86_64","migration_extra":false,"release_type":null,"former_identifier":"sle-module-server-applications","recommended":true,"version":"15.4","extensions":[{"predecessor_ids":[1721,1798,1976,2165],"online_predecessor_ids":[1721,1798,1976,2165],"product_class":"MODULE","repositories":[{"name":"SLE-Module-Web-Scripting15-SP4-Updates","installer_updates":false,"description":"SLE-Module-Web-Scripting15-SP4-Updates for sle-15-x86_64","enabled":true,"id":5237,"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/15-SP4/x86_64/update/"},{"id":5238,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/15-SP4/x86_64/update_debug/","autorefresh":true,"distro_target":"sle-15-x86_64","name":"SLE-Module-Web-Scripting15-SP4-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-Web-Scripting15-SP4-Debuginfo-Updates for sle-15-x86_64"},{"installer_updates":false,"name":"SLE-Module-Web-Scripting15-SP4-Pool","description":"SLE-Module-Web-Scripting15-SP4-Pool for sle-15-x86_64","id":5239,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP4/x86_64/product/","distro_target":"sle-15-x86_64","autorefresh":false},{"name":"SLE-Module-Web-Scripting15-SP4-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-Web-Scripting15-SP4-Debuginfo-Pool for sle-15-x86_64","enabled":false,"id":5240,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP4/x86_64/product_debug/"},{"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP4/x86_64/product_source/","enabled":false,"id":5241,"description":"SLE-Module-Web-Scripting15-SP4-Source-Pool for sle-15-x86_64","name":"SLE-Module-Web-Scripting15-SP4-Source-Pool","installer_updates":false}],"cpe":"cpe:/o:suse:sle-module-web-scripting:15:sp4","product_type":"module","description":"

The SUSE Linux Enterprise Web and Scripting Module should contains additional packages that are helpful when running a webserver.

Access to the Web and Scripting Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself: Package versions in this module are usually supported for at most three years. We are planning to release more recent versions on a schedule of approximately 18 month; the exact dates may differ per package.

","shortname":"Web-Scripting-Module","free":true,"eula_url":"","arch":"x86_64","friendly_version":"15 SP4","extensions":[],"release_stage":"released","id":2319,"identifier":"sle-module-web-scripting","recommended":false,"version":"15.4","name":"Web and Scripting Module","offline_predecessor_ids":[1153],"migration_extra":true,"friendly_name":"Web and Scripting Module 15 SP4 x86_64","release_type":null,"former_identifier":"sle-module-web-scripting"},{"product_type":"module","cpe":"cpe:/o:suse:sle-module-legacy:15:sp4","predecessor_ids":[1581,1804,1982,2171],"online_predecessor_ids":[1581,1804,1982,2171],"repositories":[{"enabled":true,"id":5257,"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/15-SP4/x86_64/update/","name":"SLE-Module-Legacy15-SP4-Updates","installer_updates":false,"description":"SLE-Module-Legacy15-SP4-Updates for sle-15-x86_64"},{"installer_updates":false,"name":"SLE-Module-Legacy15-SP4-Debuginfo-Updates","description":"SLE-Module-Legacy15-SP4-Debuginfo-Updates for sle-15-x86_64","id":5258,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/15-SP4/x86_64/update_debug/","distro_target":"sle-15-x86_64","autorefresh":true},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15-SP4/x86_64/product/","autorefresh":false,"distro_target":"sle-15-x86_64","id":5259,"enabled":true,"description":"SLE-Module-Legacy15-SP4-Pool for sle-15-x86_64","name":"SLE-Module-Legacy15-SP4-Pool","installer_updates":false},{"description":"SLE-Module-Legacy15-SP4-Debuginfo-Pool for sle-15-x86_64","name":"SLE-Module-Legacy15-SP4-Debuginfo-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15-SP4/x86_64/product_debug/","autorefresh":false,"distro_target":"sle-15-x86_64","id":5260,"enabled":false},{"installer_updates":false,"name":"SLE-Module-Legacy15-SP4-Source-Pool","description":"SLE-Module-Legacy15-SP4-Source-Pool for sle-15-x86_64","id":5261,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15-SP4/x86_64/product_source/","distro_target":"sle-15-x86_64","autorefresh":false}],"product_class":"MODULE","eula_url":"","arch":"x86_64","free":true,"description":"

The Legacy Module helps you migrating applications from SUSE Linux Enterprise 12 and other systems to SUSE Linux Enterprise 15, by providing packages which are discontinued on SUSE Linux Enterprise Server, such as: ntp, IBM Java 8, and a number of libraries.

Access to the Legacy Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself. Packages in the this module are usually supported for at most three years.

","shortname":"Legacy-Module","extensions":[],"id":2323,"release_stage":"released","identifier":"sle-module-legacy","friendly_version":"15 SP4","offline_predecessor_ids":[1150],"name":"Legacy Module","former_identifier":"sle-module-legacy","release_type":null,"migration_extra":true,"friendly_name":"Legacy Module 15 SP4 x86_64","recommended":false,"version":"15.4"},{"friendly_version":"15 SP4","release_stage":"released","identifier":"sle-module-public-cloud","id":2327,"extensions":[],"version":"15.4","recommended":false,"friendly_name":"Public Cloud Module 15 SP4 x86_64","migration_extra":false,"release_type":null,"former_identifier":"sle-module-public-cloud","name":"Public Cloud Module","offline_predecessor_ids":[1220],"repositories":[{"id":5277,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/15-SP4/x86_64/update/","distro_target":"sle-15-x86_64","autorefresh":true,"installer_updates":false,"name":"SLE-Module-Public-Cloud15-SP4-Updates","description":"SLE-Module-Public-Cloud15-SP4-Updates for sle-15-x86_64"},{"description":"SLE-Module-Public-Cloud15-SP4-Debuginfo-Updates for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Public-Cloud15-SP4-Debuginfo-Updates","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/15-SP4/x86_64/update_debug/","distro_target":"sle-15-x86_64","autorefresh":true,"id":5278,"enabled":false},{"name":"SLE-Module-Public-Cloud15-SP4-Pool","installer_updates":false,"description":"SLE-Module-Public-Cloud15-SP4-Pool for sle-15-x86_64","id":5279,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP4/x86_64/product/","autorefresh":false,"distro_target":"sle-15-x86_64"},{"enabled":false,"id":5280,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP4/x86_64/product_debug/","name":"SLE-Module-Public-Cloud15-SP4-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-Public-Cloud15-SP4-Debuginfo-Pool for sle-15-x86_64"},{"description":"SLE-Module-Public-Cloud15-SP4-Source-Pool for sle-15-x86_64","name":"SLE-Module-Public-Cloud15-SP4-Source-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP4/x86_64/product_source/","autorefresh":false,"distro_target":"sle-15-x86_64","id":5281,"enabled":false}],"online_predecessor_ids":[1611,1808,1988,2175],"product_class":"MODULE","predecessor_ids":[1611,1808,1988,2175],"cpe":"cpe:/o:suse:sle-module-public-cloud:15:sp4","product_type":"module","shortname":"Public-Cloud-Module","description":"

The Public Cloud Module is a collection of tools that enables you to create and manage cloud images from the commandline on SUSE Linux Enterprise Server. When building your own images with KIWI or SUSE Studio, initialization code specific to the target cloud is included in that image.

Access to the Public Cloud Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself; please check the Release Notes for further details.

","free":true,"arch":"x86_64","eula_url":""},{"extensions":[],"identifier":"sle-ha","release_stage":"released","id":2340,"friendly_version":"15 SP4","offline_predecessor_ids":[958,961,967,971,1101,1107,1256,1286,1432,1435,1634,1637,1884,1886],"name":"SUSE Linux Enterprise High Availability Extension","release_type":null,"former_identifier":"sle-ha","migration_extra":false,"friendly_name":"SUSE Linux Enterprise High Availability Extension 15 SP4 x86_64","recommended":false,"version":"15.4","product_type":"extension","cpe":"cpe:/o:suse:sle-ha:15:sp4","predecessor_ids":[1582,1785,1959,2195],"product_class":"SLE-HAE-X86","online_predecessor_ids":[1582,1785,1959,2195],"repositories":[{"description":"SLE-Product-HA15-SP4-Updates for sle-15-x86_64","installer_updates":false,"name":"SLE-Product-HA15-SP4-Updates","url":"https://updates.suse.com/SUSE/Updates/SLE-Product-HA/15-SP4/x86_64/update/","distro_target":"sle-15-x86_64","autorefresh":true,"id":5342,"enabled":true},{"installer_updates":false,"name":"SLE-Product-HA15-SP4-Debuginfo-Updates","description":"SLE-Product-HA15-SP4-Debuginfo-Updates for sle-15-x86_64","enabled":false,"id":5343,"distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-HA/15-SP4/x86_64/update_debug/"},{"id":5344,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP4/x86_64/product/","distro_target":"sle-15-x86_64","autorefresh":false,"installer_updates":false,"name":"SLE-Product-HA15-SP4-Pool","description":"SLE-Product-HA15-SP4-Pool for sle-15-x86_64"},{"description":"SLE-Product-HA15-SP4-Debuginfo-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Product-HA15-SP4-Debuginfo-Pool","distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP4/x86_64/product_debug/","enabled":false,"id":5345},{"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP4/x86_64/product_source/","enabled":false,"id":5346,"description":"SLE-Product-HA15-SP4-Source-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Product-HA15-SP4-Source-Pool"}],"eula_url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP4/x86_64/product.license/","arch":"x86_64","free":false,"shortname":"SLEHA15-SP4","description":"SUSE Linux High Availability Extension provides mature, industry-leading open-source high-availability clustering technologies that are easy to set up and use. It can be deployed in physical and/or virtual environments, and can cluster physical servers, virtual servers, or any combination of the two to suit your business’ needs."}],"release_stage":"released","identifier":"sle-module-server-applications","id":2307,"friendly_version":"15 SP4"},{"friendly_version":"15 SP4","extensions":[],"identifier":"sle-module-containers","release_stage":"released","id":2311,"recommended":false,"version":"15.4","offline_predecessor_ids":[1332],"name":"Containers Module","release_type":null,"former_identifier":"sle-module-containers","migration_extra":false,"friendly_name":"Containers Module 15 SP4 x86_64","predecessor_ids":[1642,1790,1963,2157],"online_predecessor_ids":[1642,1790,1963,2157],"repositories":[{"description":"SLE-Module-Containers15-SP4-Updates for sle-15-x86_64","name":"SLE-Module-Containers15-SP4-Updates","installer_updates":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/15-SP4/x86_64/update/","autorefresh":true,"distro_target":"sle-15-x86_64","id":5197,"enabled":true},{"description":"SLE-Module-Containers15-SP4-Debuginfo-Updates for sle-15-x86_64","name":"SLE-Module-Containers15-SP4-Debuginfo-Updates","installer_updates":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/15-SP4/x86_64/update_debug/","autorefresh":true,"distro_target":"sle-15-x86_64","id":5198,"enabled":false},{"description":"SLE-Module-Containers15-SP4-Pool for sle-15-x86_64","name":"SLE-Module-Containers15-SP4-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP4/x86_64/product/","autorefresh":false,"distro_target":"sle-15-x86_64","id":5199,"enabled":true},{"id":5200,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP4/x86_64/product_debug/","autorefresh":false,"distro_target":"sle-15-x86_64","name":"SLE-Module-Containers15-SP4-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-Containers15-SP4-Debuginfo-Pool for sle-15-x86_64"},{"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP4/x86_64/product_source/","enabled":false,"id":5201,"description":"SLE-Module-Containers15-SP4-Source-Pool for sle-15-x86_64","name":"SLE-Module-Containers15-SP4-Source-Pool","installer_updates":false}],"product_class":"MODULE","product_type":"module","cpe":"cpe:/o:suse:sle-module-containers:15:sp4","free":true,"description":"

This Module contains several packages revolving around containers and related tools.

","shortname":"Containers-Module","eula_url":"","arch":"x86_64"},{"recommended":false,"version":"15.4","offline_predecessor_ids":[],"name":"Transactional Server Module","former_identifier":"sle-module-transactional-server","release_type":null,"migration_extra":false,"friendly_name":"Transactional Server Module 15 SP4 x86_64","friendly_version":"15 SP4","extensions":[],"id":2331,"release_stage":"released","identifier":"sle-module-transactional-server","free":true,"description":"

Transactional Updates provide SUSE Linux Enterprise systems with a method of updating the operating system and its packages in an entirely ‘atomic’ way. Updates are either applied to the system all together in a single transaction, or not at all. This happens without influencing the running system. If an update fails, or if the successful update is deemed to be incompatible or otherwise incorrect, it can be discarded to immediately return the system to its previous functioning state.

Access to theTransactional Server Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself: Package versions in the this module are usually supported for at most three years. We are planning to release more recent versions on a schedule of approximately 18 month; the exact dates may differ per package.

","shortname":"Transactional-Server-Module","eula_url":"","arch":"x86_64","predecessor_ids":[1825,1998,2180],"repositories":[{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Transactional-Server/15-SP4/x86_64/update/","distro_target":"sle-15-x86_64","autorefresh":true,"id":5297,"enabled":true,"description":"SLE-Module-Transactional-Server15-SP4-Updates for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Transactional-Server15-SP4-Updates"},{"description":"SLE-Module-Transactional-Server15-SP4-Debuginfo-Updates for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Transactional-Server15-SP4-Debuginfo-Updates","distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Transactional-Server/15-SP4/x86_64/update_debug/","enabled":false,"id":5298},{"name":"SLE-Module-Transactional-Server15-SP4-Pool","installer_updates":false,"description":"SLE-Module-Transactional-Server15-SP4-Pool for sle-15-x86_64","enabled":true,"id":5299,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Transactional-Server/15-SP4/x86_64/product/"},{"id":5300,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Transactional-Server/15-SP4/x86_64/product_debug/","distro_target":"sle-15-x86_64","autorefresh":false,"installer_updates":false,"name":"SLE-Module-Transactional-Server15-SP4-Debuginfo-Pool","description":"SLE-Module-Transactional-Server15-SP4-Debuginfo-Pool for sle-15-x86_64"},{"description":"SLE-Module-Transactional-Server15-SP4-Source-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Transactional-Server15-SP4-Source-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Transactional-Server/15-SP4/x86_64/product_source/","distro_target":"sle-15-x86_64","autorefresh":false,"id":5301,"enabled":false}],"online_predecessor_ids":[1825,1998,2180],"product_class":"MODULE","product_type":"module","cpe":"cpe:/o:suse:sle-module-transactional-server:15:sp4"},{"arch":"x86_64","eula_url":"","description":"

SUSE Linux Enterprise Live Patching provides packages to update critical components in SUSE Linux Enterprise. With SUSE Linux Enterprise Live Patching, you can perform critical patching without shutting down your system, reducing the need for planned downtime and increasing service availability.

","shortname":"Live-Patching","free":false,"cpe":"cpe:/o:suse:sle-module-live-patching:15:sp4","product_type":"extension","repositories":[{"name":"SLE-Module-Live-Patching15-SP4-Updates","installer_updates":false,"description":"SLE-Module-Live-Patching15-SP4-Updates for sle-15-x86_64","enabled":true,"id":5312,"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Live-Patching/15-SP4/x86_64/update/"},{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Live-Patching/15-SP4/x86_64/update_debug/","autorefresh":true,"distro_target":"sle-15-x86_64","id":5313,"enabled":false,"description":"SLE-Module-Live-Patching15-SP4-Debuginfo-Updates for sle-15-x86_64","name":"SLE-Module-Live-Patching15-SP4-Debuginfo-Updates","installer_updates":false},{"description":"SLE-Module-Live-Patching15-SP4-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Live-Patching15-SP4-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Live-Patching/15-SP4/x86_64/product/","distro_target":"sle-15-x86_64","autorefresh":false,"id":5314,"enabled":true},{"description":"SLE-Module-Live-Patching15-SP4-Debuginfo-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Live-Patching15-SP4-Debuginfo-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Live-Patching/15-SP4/x86_64/product_debug/","distro_target":"sle-15-x86_64","autorefresh":false,"id":5315,"enabled":false},{"description":"SLE-Module-Live-Patching15-SP4-Source-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Live-Patching15-SP4-Source-Pool","distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Live-Patching/15-SP4/x86_64/product_source/","enabled":false,"id":5316}],"online_predecessor_ids":[1736,1828,1984,2187],"product_class":"SLE-LP","predecessor_ids":[1736,1828,1984,2187],"friendly_name":"SUSE Linux Enterprise Live Patching 15 SP4 x86_64","migration_extra":false,"release_type":null,"former_identifier":"sle-module-live-patching","name":"SUSE Linux Enterprise Live Patching","offline_predecessor_ids":[1536,1757,1888],"version":"15.4","recommended":false,"identifier":"sle-module-live-patching","release_stage":"released","id":2334,"extensions":[],"friendly_version":"15 SP4"},{"product_class":"MODULE","online_predecessor_ids":[1743,1871,1950,2191],"repositories":[{"name":"SUSE-PackageHub-15-SP4-Backports-Pool","installer_updates":false,"description":"SUSE-PackageHub-15-SP4-Backports-Pool for sle-15-x86_64","id":5388,"enabled":true,"url":"https://updates.suse.com/SUSE/Backports/SLE-15-SP4_x86_64/standard/","autorefresh":false,"distro_target":"sle-15-x86_64"},{"enabled":false,"id":5389,"distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Backports/SLE-15-SP4_x86_64/standard_debug/","installer_updates":false,"name":"SUSE-PackageHub-15-SP4-Backports-Debuginfo","description":"SUSE-PackageHub-15-SP4-Backports-Debuginfo for sle-15-x86_64"},{"description":"SLE-Module-Packagehub-Subpackages15-SP4-Updates for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Packagehub-Subpackages15-SP4-Updates","distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP4/x86_64/update/","enabled":true,"id":5390},{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP4/x86_64/update_debug/","distro_target":"sle-15-x86_64","autorefresh":true,"id":5391,"enabled":false,"description":"SLE-Module-Packagehub-Subpackages15-SP4-Debuginfo-Updates for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Packagehub-Subpackages15-SP4-Debuginfo-Updates"},{"description":"SUSE-PackageHub-15-SP4-Pool for sle-15-x86_64","name":"SUSE-PackageHub-15-SP4-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Backports/SLE-15-SP4_x86_64/product/","autorefresh":false,"distro_target":"sle-15-x86_64","id":5392,"enabled":true},{"name":"SLE-Module-Packagehub-Subpackages15-SP4-Pool","installer_updates":false,"description":"SLE-Module-Packagehub-Subpackages15-SP4-Pool for sle-15-x86_64","enabled":true,"id":5393,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP4/x86_64/product/"},{"installer_updates":false,"name":"SLE-Module-Packagehub-Subpackages15-SP4-Debuginfo-Pool","description":"SLE-Module-Packagehub-Subpackages15-SP4-Debuginfo-Pool for sle-15-x86_64","id":5394,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP4/x86_64/product_debug/","distro_target":"sle-15-x86_64","autorefresh":false},{"name":"SLE-Module-Packagehub-Subpackages15-SP4-Source-Pool","installer_updates":false,"description":"SLE-Module-Packagehub-Subpackages15-SP4-Source-Pool for sle-15-x86_64","id":5395,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP4/x86_64/product_source/","autorefresh":false,"distro_target":"sle-15-x86_64"}],"predecessor_ids":[1743,1871,1950,2191],"cpe":"cpe:/o:suse:packagehub:15:sp4","product_type":"module","shortname":"SUSE-PackageHub-15","description":"SUSE Package Hub is a free of charge module providing access to community maintained packages built to run on SUSE Linux Enterprise Server. Built from the same sources used in the openSUSE distributions, these quality packages provide additional software to what is found in the SUSE Linux Enterprise Server product. Packages from the Package Hub are delivered without L3 support from SUSE. General updates and fixes to the packages in SUSE Package Hub are provided by the openSUSE community based on their discretion, though SUSE will monitor and ensure that any known critical security issues will be addressed. Packages in the Package Hub are approved by SUSE for use with SUSE Linux Enterprise Server 15-SP4 and to not interfere with the supportability of SUSE Linux Enterprise Server, its modules and extensions. For more information about SUSE Package Hub please visit https://packagehub.suse.com.","free":true,"arch":"x86_64","eula_url":"","friendly_version":"15 SP4","identifier":"PackageHub","release_stage":"released","id":2347,"extensions":[],"version":"15.4","recommended":false,"friendly_name":"SUSE Package Hub 15 SP4 x86_64","migration_extra":false,"former_identifier":"PackageHub","release_type":null,"name":"SUSE Package Hub","offline_predecessor_ids":[1529,1813,1915]},{"version":"15.4","recommended":false,"former_identifier":"sle-module-python3","release_type":null,"friendly_name":"Python 3 Module 15 SP4 x86_64","migration_extra":false,"offline_predecessor_ids":[],"name":"Python 3 Module","friendly_version":"15 SP4","id":2405,"release_stage":"released","identifier":"sle-module-python3","extensions":[],"free":true,"description":"

This module contains the Python 3 packages.

Access to the Python 3 Module is included in your SUSE Linux Enterprise subscription. The module has a different lifecycle than SUSE Linux Enterprise itself; please check the Release Notes for further details.

","shortname":"Python 3-Module","arch":"x86_64","eula_url":"","online_predecessor_ids":[],"product_class":"MODULE","repositories":[{"name":"SLE-Module-Python3-15-SP4-Updates","installer_updates":false,"description":"SLE-Module-Python3-15-SP4-Updates for sle-15-x86_64","enabled":true,"id":5582,"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Python3/15-SP4/x86_64/update/"},{"installer_updates":false,"name":"SLE-Module-Python3-15-SP4-Debuginfo-Updates","description":"SLE-Module-Python3-15-SP4-Debuginfo-Updates for sle-15-x86_64","id":5583,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Python3/15-SP4/x86_64/update_debug/","distro_target":"sle-15-x86_64","autorefresh":true},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Python3/15-SP4/x86_64/product/","autorefresh":false,"distro_target":"sle-15-x86_64","id":5584,"enabled":true,"description":"SLE-Module-Python3-15-SP4-Pool for sle-15-x86_64","name":"SLE-Module-Python3-15-SP4-Pool","installer_updates":false},{"installer_updates":false,"name":"SLE-Module-Python3-15-SP4-Debuginfo-Pool","description":"SLE-Module-Python3-15-SP4-Debuginfo-Pool for sle-15-x86_64","enabled":false,"id":5585,"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Python3/15-SP4/x86_64/product_debug/"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Python3/15-SP4/x86_64/product_source/","autorefresh":false,"distro_target":"sle-15-x86_64","id":5586,"enabled":false,"description":"SLE-Module-Python3-15-SP4-Source-Pool for sle-15-x86_64","name":"SLE-Module-Python3-15-SP4-Source-Pool","installer_updates":false}],"predecessor_ids":[],"product_type":"module","cpe":"cpe:/o:suse:sle-module-python3:15:sp4"}],"identifier":"sle-module-basesystem","release_stage":"released","id":2299,"friendly_version":"15 SP4","name":"Basesystem Module","offline_predecessor_ids":[1212,1368,1440],"migration_extra":false,"friendly_name":"Basesystem Module 15 SP4 x86_64","former_identifier":"sle-module-basesystem","release_type":null,"recommended":true,"version":"15.4","cpe":"cpe:/o:suse:sle-module-basesystem:15:sp4","product_type":"module","predecessor_ids":[1576,1772,1946,2145],"online_predecessor_ids":[1576,1772,1946,2145],"repositories":[{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15-SP4/x86_64/update/","autorefresh":true,"distro_target":"sle-15-x86_64","id":5137,"enabled":true,"description":"SLE-Module-Basesystem15-SP4-Updates for sle-15-x86_64","name":"SLE-Module-Basesystem15-SP4-Updates","installer_updates":false},{"installer_updates":false,"name":"SLE-Module-Basesystem15-SP4-Debuginfo-Updates","description":"SLE-Module-Basesystem15-SP4-Debuginfo-Updates for sle-15-x86_64","enabled":false,"id":5138,"distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15-SP4/x86_64/update_debug/"},{"id":5139,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP4/x86_64/product/","distro_target":"sle-15-x86_64","autorefresh":false,"installer_updates":false,"name":"SLE-Module-Basesystem15-SP4-Pool","description":"SLE-Module-Basesystem15-SP4-Pool for sle-15-x86_64"},{"description":"SLE-Module-Basesystem15-SP4-Debuginfo-Pool for sle-15-x86_64","name":"SLE-Module-Basesystem15-SP4-Debuginfo-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP4/x86_64/product_debug/","enabled":false,"id":5140},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP4/x86_64/product_source/","distro_target":"sle-15-x86_64","autorefresh":false,"id":5141,"enabled":false,"description":"SLE-Module-Basesystem15-SP4-Source-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Basesystem15-SP4-Source-Pool"}],"product_class":"MODULE","eula_url":"","arch":"x86_64","shortname":"Basesystem-Module","description":"

The SUSE Linux Enterprise Basesystem Module delivers the base system of the product.

","free":true},{"offline_predecessor_ids":[],"name":"Certifications Module","release_type":null,"former_identifier":"sle-module-certifications","friendly_name":"Certifications Module 15 SP4 x86_64","migration_extra":false,"recommended":false,"version":"15.4","extensions":[],"identifier":"sle-module-certifications","release_stage":"released","id":2393,"friendly_version":"15 SP4","eula_url":"","arch":"x86_64","free":true,"description":"

This module contains the certification packages.

Access to the Certifications Module is included in your SUSE Linux Enterprise subscription. The module has a different lifecycle than SUSE Linux Enterprise itself; please check the Release Notes for further details.

","shortname":"Certifications-Module","product_type":"module","cpe":"cpe:/o:suse:sle-module-certifications:15:sp4","predecessor_ids":[],"online_predecessor_ids":[],"repositories":[{"id":5547,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Certifications/15-SP4/x86_64/update/","autorefresh":true,"distro_target":"sle-15-x86_64","name":"SLE-Module-Certifications-15-SP4-Updates","installer_updates":false,"description":"SLE-Module-Certifications-15-SP4-Updates for sle-15-x86_64"},{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Certifications/15-SP4/x86_64/update_debug/","distro_target":"sle-15-x86_64","autorefresh":true,"id":5548,"enabled":false,"description":"SLE-Module-Certifications-15-SP4-Debuginfo-Updates for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Certifications-15-SP4-Debuginfo-Updates"},{"description":"SLE-Module-Certifications-15-SP4-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Certifications-15-SP4-Pool","distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Certifications/15-SP4/x86_64/product/","enabled":true,"id":5549},{"enabled":false,"id":5550,"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Certifications/15-SP4/x86_64/product_debug/","installer_updates":false,"name":"SLE-Module-Certifications-15-SP4-Debuginfo-Pool","description":"SLE-Module-Certifications-15-SP4-Debuginfo-Pool for sle-15-x86_64"},{"name":"SLE-Module-Certifications-15-SP4-Source-Pool","installer_updates":false,"description":"SLE-Module-Certifications-15-SP4-Source-Pool for sle-15-x86_64","enabled":false,"id":5551,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Certifications/15-SP4/x86_64/product_source/"}],"product_class":"MODULE"}],"friendly_version":"15 SP4","friendly_name":"SUSE Linux Enterprise Server 15 SP4 x86_64","migration_extra":false,"release_type":null,"former_identifier":"SLES","name":"SUSE Linux Enterprise Server","offline_predecessor_ids":[1421,1625,1878],"version":"15.4","recommended":false,"cpe":"cpe:/o:suse:sles:15:sp4","product_type":"base","product_class":"7261","online_predecessor_ids":[1763,1939,2140,2409],"repositories":[{"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Product-SLES/15-SP4/x86_64/update/","enabled":true,"id":5100,"description":"SLE-Product-SLES15-SP4-Updates for sle-15-x86_64","name":"SLE-Product-SLES15-SP4-Updates","installer_updates":false},{"id":5101,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-SLES/15-SP4/x86_64/update_debug/","distro_target":"sle-15-x86_64","autorefresh":true,"installer_updates":false,"name":"SLE-Product-SLES15-SP4-Debuginfo-Updates","description":"SLE-Product-SLES15-SP4-Debuginfo-Updates for sle-15-x86_64"},{"installer_updates":true,"name":"SLE15-SP4-Installer-Updates","description":"SLE15-SP4-Installer-Updates for sle-15-x86_64","enabled":false,"id":5102,"distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-INSTALLER/15-SP4/x86_64/update/"},{"installer_updates":false,"name":"SLE-Product-SLES15-SP4-Pool","description":"SLE-Product-SLES15-SP4-Pool for sle-15-x86_64","enabled":true,"id":5103,"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-SLES/15-SP4/x86_64/product/"},{"id":5104,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-SLES/15-SP4/x86_64/product_debug/","autorefresh":false,"distro_target":"sle-15-x86_64","name":"SLE-Product-SLES15-SP4-Debuginfo-Pool","installer_updates":false,"description":"SLE-Product-SLES15-SP4-Debuginfo-Pool for sle-15-x86_64"},{"id":5105,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-SLES/15-SP4/x86_64/product_source/","distro_target":"sle-15-x86_64","autorefresh":false,"installer_updates":false,"name":"SLE-Product-SLES15-SP4-Source-Pool","description":"SLE-Product-SLES15-SP4-Source-Pool for sle-15-x86_64"}],"predecessor_ids":[1763,1939,2140,2409],"arch":"x86_64","eula_url":"https://updates.suse.com/SUSE/Products/SLE-Product-SLES/15-SP4/x86_64/product.license/","shortname":"SLES15-SP4","description":"SUSE Linux Enterprise offers a comprehensive suite of products built on a single code base. The platform addresses business needs from the smallest thin-client devices to the world's most powerful high-performance computing and mainframe servers. SUSE Linux Enterprise offers common management tools and technology certifications across the platform, and each product is enterprise-class.","free":false},{"recommended":false,"version":"15.4","offline_predecessor_ids":[1572,1754,1879],"name":"SUSE Linux Enterprise Server for SAP Applications","release_type":null,"former_identifier":"SUSE_SLES_SAP","migration_extra":false,"friendly_name":"SUSE Linux Enterprise Server for SAP Applications 15 SP4 ppc64le","friendly_version":"15 SP4","extensions":[{"arch":"ppc64le","eula_url":"","free":true,"description":"

The SUSE Linux Enterprise Basesystem Module delivers the base system of the product.

","shortname":"Basesystem-Module","product_type":"module","cpe":"cpe:/o:suse:sle-module-basesystem:15:sp4","online_predecessor_ids":[1588,1770,1944,2143],"repositories":[{"description":"SLE-Module-Basesystem15-SP4-Updates for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-Basesystem15-SP4-Updates","distro_target":"sle-15-ppc64le","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15-SP4/ppc64le/update/","enabled":true,"id":5127},{"description":"SLE-Module-Basesystem15-SP4-Debuginfo-Updates for sle-15-ppc64le","name":"SLE-Module-Basesystem15-SP4-Debuginfo-Updates","installer_updates":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15-SP4/ppc64le/update_debug/","autorefresh":true,"distro_target":"sle-15-ppc64le","id":5128,"enabled":false},{"description":"SLE-Module-Basesystem15-SP4-Pool for sle-15-ppc64le","name":"SLE-Module-Basesystem15-SP4-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP4/ppc64le/product/","enabled":true,"id":5129},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP4/ppc64le/product_debug/","autorefresh":false,"distro_target":"sle-15-ppc64le","id":5130,"enabled":false,"description":"SLE-Module-Basesystem15-SP4-Debuginfo-Pool for sle-15-ppc64le","name":"SLE-Module-Basesystem15-SP4-Debuginfo-Pool","installer_updates":false},{"enabled":false,"id":5131,"autorefresh":false,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP4/ppc64le/product_source/","name":"SLE-Module-Basesystem15-SP4-Source-Pool","installer_updates":false,"description":"SLE-Module-Basesystem15-SP4-Source-Pool for sle-15-ppc64le"}],"product_class":"MODULE","predecessor_ids":[1588,1770,1944,2143],"former_identifier":"sle-module-basesystem","release_type":null,"migration_extra":false,"friendly_name":"Basesystem Module 15 SP4 ppc64le","offline_predecessor_ids":[1294],"name":"Basesystem Module","version":"15.4","recommended":true,"identifier":"sle-module-basesystem","release_stage":"released","id":2297,"extensions":[{"name":"Desktop Applications Module","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"Desktop Applications Module 15 SP4 ppc64le","former_identifier":"sle-module-desktop-applications","release_type":null,"recommended":true,"version":"15.4","extensions":[{"cpe":"cpe:/o:suse:sle-module-development-tools:15:sp4","product_type":"module","predecessor_ids":[1597,1792,1969,2159],"online_predecessor_ids":[1597,1792,1969,2159],"product_class":"MODULE","repositories":[{"enabled":true,"id":5207,"distro_target":"sle-15-ppc64le","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15-SP4/ppc64le/update/","installer_updates":false,"name":"SLE-Module-DevTools15-SP4-Updates","description":"SLE-Module-DevTools15-SP4-Updates for sle-15-ppc64le"},{"enabled":false,"id":5208,"distro_target":"sle-15-ppc64le","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15-SP4/ppc64le/update_debug/","installer_updates":false,"name":"SLE-Module-DevTools15-SP4-Debuginfo-Updates","description":"SLE-Module-DevTools15-SP4-Debuginfo-Updates for sle-15-ppc64le"},{"autorefresh":false,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP4/ppc64le/product/","enabled":true,"id":5209,"description":"SLE-Module-DevTools15-SP4-Pool for sle-15-ppc64le","name":"SLE-Module-DevTools15-SP4-Pool","installer_updates":false},{"name":"SLE-Module-DevTools15-SP4-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-DevTools15-SP4-Debuginfo-Pool for sle-15-ppc64le","id":5210,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP4/ppc64le/product_debug/","autorefresh":false,"distro_target":"sle-15-ppc64le"},{"enabled":false,"id":5211,"distro_target":"sle-15-ppc64le","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP4/ppc64le/product_source/","installer_updates":false,"name":"SLE-Module-DevTools15-SP4-Source-Pool","description":"SLE-Module-DevTools15-SP4-Source-Pool for sle-15-ppc64le"}],"eula_url":"","arch":"ppc64le","description":"

The Development Tools Module helps you developing applications for SUSE Linux Enterprise 15.

Access to the Development Tools Module is included in your SUSE Linux Enterprise product subscription. The module has a different lifecycle than SUSE Linux Enterprise itself.

","shortname":"Development-Tools-Module","free":true,"extensions":[],"identifier":"sle-module-development-tools","release_stage":"released","id":2313,"friendly_version":"15 SP4","name":"Development Tools Module","offline_predecessor_ids":[1339,1428,1631,1890],"migration_extra":false,"friendly_name":"Development Tools Module 15 SP4 ppc64le","former_identifier":"sle-sdk","release_type":null,"recommended":false,"version":"15.4"}],"release_stage":"released","id":2301,"identifier":"sle-module-desktop-applications","friendly_version":"15 SP4","eula_url":"","arch":"ppc64le","shortname":"Desktop-Applications-Module","description":"

The SUSE Linux Enterprise Desktop Applications Module delivers a basic set of Desktop functionality.

Access to the Desktop Applications Module is included in your SUSE Linux Enterprise product subscription.

","free":true,"cpe":"cpe:/o:suse:sle-module-desktop-applications:15:sp4","product_type":"module","predecessor_ids":[1594,1774,1965,2147],"online_predecessor_ids":[1594,1774,1965,2147],"repositories":[{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15-SP4/ppc64le/update/","distro_target":"sle-15-ppc64le","autorefresh":true,"id":5147,"enabled":true,"description":"SLE-Module-Desktop-Applications15-SP4-Updates for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-Desktop-Applications15-SP4-Updates"},{"description":"SLE-Module-Desktop-Applications15-SP4-Debuginfo-Updates for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-Desktop-Applications15-SP4-Debuginfo-Updates","distro_target":"sle-15-ppc64le","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15-SP4/ppc64le/update_debug/","enabled":false,"id":5148},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP4/ppc64le/product/","distro_target":"sle-15-ppc64le","autorefresh":false,"id":5149,"enabled":true,"description":"SLE-Module-Desktop-Applications15-SP4-Pool for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-Desktop-Applications15-SP4-Pool"},{"description":"SLE-Module-Desktop-Applications15-SP4-Debuginfo-Pool for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-Desktop-Applications15-SP4-Debuginfo-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP4/ppc64le/product_debug/","distro_target":"sle-15-ppc64le","autorefresh":false,"id":5150,"enabled":false},{"enabled":false,"id":5151,"autorefresh":false,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP4/ppc64le/product_source/","name":"SLE-Module-Desktop-Applications15-SP4-Source-Pool","installer_updates":false,"description":"SLE-Module-Desktop-Applications15-SP4-Source-Pool for sle-15-ppc64le"}],"product_class":"MODULE"},{"description":"

The SUSE Linux Enterprise Server Applications Module delivers a basic set of Server functionality.

Access to the Server Applications Module is included in your SUSE Linux Enterprise Server subscription.

","shortname":"Server-Applications-Module","free":true,"arch":"ppc64le","eula_url":"","product_class":"MODULE","online_predecessor_ids":[1600,1778,1953,2151],"repositories":[{"name":"SLE-Module-Server-Applications15-SP4-Updates","installer_updates":false,"description":"SLE-Module-Server-Applications15-SP4-Updates for sle-15-ppc64le","id":5167,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15-SP4/ppc64le/update/","autorefresh":true,"distro_target":"sle-15-ppc64le"},{"installer_updates":false,"name":"SLE-Module-Server-Applications15-SP4-Debuginfo-Updates","description":"SLE-Module-Server-Applications15-SP4-Debuginfo-Updates for sle-15-ppc64le","enabled":false,"id":5168,"distro_target":"sle-15-ppc64le","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15-SP4/ppc64le/update_debug/"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP4/ppc64le/product/","distro_target":"sle-15-ppc64le","autorefresh":false,"id":5169,"enabled":true,"description":"SLE-Module-Server-Applications15-SP4-Pool for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-Server-Applications15-SP4-Pool"},{"installer_updates":false,"name":"SLE-Module-Server-Applications15-SP4-Debuginfo-Pool","description":"SLE-Module-Server-Applications15-SP4-Debuginfo-Pool for sle-15-ppc64le","enabled":false,"id":5170,"distro_target":"sle-15-ppc64le","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP4/ppc64le/product_debug/"},{"distro_target":"sle-15-ppc64le","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP4/ppc64le/product_source/","enabled":false,"id":5171,"description":"SLE-Module-Server-Applications15-SP4-Source-Pool for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-Server-Applications15-SP4-Source-Pool"}],"predecessor_ids":[1600,1778,1953,2151],"cpe":"cpe:/o:suse:sle-module-server-applications:15:sp4","product_type":"module","version":"15.4","recommended":true,"migration_extra":false,"friendly_name":"Server Applications Module 15 SP4 ppc64le","former_identifier":"sle-module-server-applications","release_type":null,"name":"Server Applications Module","offline_predecessor_ids":[],"friendly_version":"15 SP4","id":2305,"release_stage":"released","identifier":"sle-module-server-applications","extensions":[{"extensions":[],"identifier":"ibm-power-advance-toolchain","release_stage":"released","id":2076,"friendly_version":"15","offline_predecessor_ids":[1249],"name":"IBM POWER Advance Toolchain for SLE","former_identifier":"ibm-power-advance-toolchain","release_type":null,"migration_extra":false,"friendly_name":"IBM POWER Advance Toolchain for SLE 15 ppc64le","recommended":false,"version":"15","product_type":"extension","cpe":"cpe:/o:suse:ibm-power-advance-toolchain:15","predecessor_ids":[],"online_predecessor_ids":[],"repositories":[{"url":"https://public.dhe.ibm.com/software/server/POWER/Linux/toolchain/at/suse/SLES_15/","distro_target":null,"autorefresh":true,"id":4430,"enabled":true,"description":"IBM-POWER-Adv-Toolchain","installer_updates":false,"name":"IBM-POWER-Adv-Toolchain"}],"product_class":"MODULE","eula_url":"","arch":"ppc64le","free":true,"shortname":"IBMPWAT15","description":"IBM POWER Advance Toolchain for SLE 15"},{"shortname":"IBMPWUT15","description":"IBM POWER Tools for SLE 15","free":true,"arch":"ppc64le","eula_url":"https://public.dhe.ibm.com/software/server/POWER/Linux/yum/OSS/SLES/15/ppc64le.license/","online_predecessor_ids":[],"product_class":"MODULE","repositories":[{"id":4431,"enabled":true,"url":"https://public.dhe.ibm.com/software/server/POWER/Linux/yum/OSS/SLES/15/ppc64le/","autorefresh":true,"distro_target":null,"name":"IBM-POWER-Tools","installer_updates":false,"description":"IBM-POWER-Tools"}],"predecessor_ids":[],"cpe":"cpe:/o:suse:ibm-power-tools:15","product_type":"extension","version":"15","recommended":false,"friendly_name":"IBM POWER Tools for SLE 15 ppc64le","migration_extra":false,"former_identifier":"ibm-power-tools","release_type":null,"name":"IBM POWER Tools for SLE","offline_predecessor_ids":[1250],"friendly_version":"15","release_stage":"released","id":2077,"identifier":"ibm-power-tools","extensions":[]},{"friendly_name":"Web and Scripting Module 15 SP4 ppc64le","migration_extra":false,"release_type":null,"former_identifier":"sle-module-web-scripting","name":"Web and Scripting Module","offline_predecessor_ids":[1151],"version":"15.4","recommended":false,"identifier":"sle-module-web-scripting","release_stage":"released","id":2317,"extensions":[],"friendly_version":"15 SP4","arch":"ppc64le","eula_url":"","description":"

The SUSE Linux Enterprise Web and Scripting Module should contains additional packages that are helpful when running a webserver.

Access to the Web and Scripting Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself: Package versions in this module are usually supported for at most three years. We are planning to release more recent versions on a schedule of approximately 18 month; the exact dates may differ per package.

","shortname":"Web-Scripting-Module","free":true,"cpe":"cpe:/o:suse:sle-module-web-scripting:15:sp4","product_type":"module","online_predecessor_ids":[1719,1796,1974,2163],"repositories":[{"distro_target":"sle-15-ppc64le","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/15-SP4/ppc64le/update/","enabled":true,"id":5227,"description":"SLE-Module-Web-Scripting15-SP4-Updates for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-Web-Scripting15-SP4-Updates"},{"installer_updates":false,"name":"SLE-Module-Web-Scripting15-SP4-Debuginfo-Updates","description":"SLE-Module-Web-Scripting15-SP4-Debuginfo-Updates for sle-15-ppc64le","id":5228,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/15-SP4/ppc64le/update_debug/","distro_target":"sle-15-ppc64le","autorefresh":true},{"name":"SLE-Module-Web-Scripting15-SP4-Pool","installer_updates":false,"description":"SLE-Module-Web-Scripting15-SP4-Pool for sle-15-ppc64le","enabled":true,"id":5229,"autorefresh":false,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP4/ppc64le/product/"},{"distro_target":"sle-15-ppc64le","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP4/ppc64le/product_debug/","enabled":false,"id":5230,"description":"SLE-Module-Web-Scripting15-SP4-Debuginfo-Pool for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-Web-Scripting15-SP4-Debuginfo-Pool"},{"name":"SLE-Module-Web-Scripting15-SP4-Source-Pool","installer_updates":false,"description":"SLE-Module-Web-Scripting15-SP4-Source-Pool for sle-15-ppc64le","enabled":false,"id":5231,"autorefresh":false,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP4/ppc64le/product_source/"}],"product_class":"MODULE","predecessor_ids":[1719,1796,1974,2163]},{"extensions":[],"release_stage":"released","id":2321,"identifier":"sle-module-legacy","friendly_version":"15 SP4","name":"Legacy Module","offline_predecessor_ids":[1148],"friendly_name":"Legacy Module 15 SP4 ppc64le","migration_extra":true,"former_identifier":"sle-module-legacy","release_type":null,"recommended":false,"version":"15.4","cpe":"cpe:/o:suse:sle-module-legacy:15:sp4","product_type":"module","predecessor_ids":[1603,1802,1980,2169],"online_predecessor_ids":[1603,1802,1980,2169],"repositories":[{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/15-SP4/ppc64le/update/","autorefresh":true,"distro_target":"sle-15-ppc64le","id":5247,"enabled":true,"description":"SLE-Module-Legacy15-SP4-Updates for sle-15-ppc64le","name":"SLE-Module-Legacy15-SP4-Updates","installer_updates":false},{"id":5248,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/15-SP4/ppc64le/update_debug/","autorefresh":true,"distro_target":"sle-15-ppc64le","name":"SLE-Module-Legacy15-SP4-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-Legacy15-SP4-Debuginfo-Updates for sle-15-ppc64le"},{"description":"SLE-Module-Legacy15-SP4-Pool for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-Legacy15-SP4-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15-SP4/ppc64le/product/","distro_target":"sle-15-ppc64le","autorefresh":false,"id":5249,"enabled":true},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15-SP4/ppc64le/product_debug/","distro_target":"sle-15-ppc64le","autorefresh":false,"id":5250,"enabled":false,"description":"SLE-Module-Legacy15-SP4-Debuginfo-Pool for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-Legacy15-SP4-Debuginfo-Pool"},{"distro_target":"sle-15-ppc64le","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15-SP4/ppc64le/product_source/","enabled":false,"id":5251,"description":"SLE-Module-Legacy15-SP4-Source-Pool for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-Legacy15-SP4-Source-Pool"}],"product_class":"MODULE","eula_url":"","arch":"ppc64le","description":"

The Legacy Module helps you migrating applications from SUSE Linux Enterprise 12 and other systems to SUSE Linux Enterprise 15, by providing packages which are discontinued on SUSE Linux Enterprise Server, such as: ntp, IBM Java 8, and a number of libraries.

Access to the Legacy Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself. Packages in the this module are usually supported for at most three years.

","shortname":"Legacy-Module","free":true},{"release_type":null,"former_identifier":"sle-module-public-cloud","friendly_name":"Public Cloud Module 15 SP4 ppc64le","migration_extra":false,"offline_predecessor_ids":[1218],"name":"Public Cloud Module","version":"15.4","recommended":false,"identifier":"sle-module-public-cloud","release_stage":"released","id":2325,"extensions":[],"friendly_version":"15 SP4","arch":"ppc64le","eula_url":"","free":true,"description":"

The Public Cloud Module is a collection of tools that enables you to create and manage cloud images from the commandline on SUSE Linux Enterprise Server. When building your own images with KIWI or SUSE Studio, initialization code specific to the target cloud is included in that image.

Access to the Public Cloud Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself; please check the Release Notes for further details.

","shortname":"Public-Cloud-Module","product_type":"module","cpe":"cpe:/o:suse:sle-module-public-cloud:15:sp4","repositories":[{"name":"SLE-Module-Public-Cloud15-SP4-Updates","installer_updates":false,"description":"SLE-Module-Public-Cloud15-SP4-Updates for sle-15-ppc64le","id":5267,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/15-SP4/ppc64le/update/","autorefresh":true,"distro_target":"sle-15-ppc64le"},{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/15-SP4/ppc64le/update_debug/","distro_target":"sle-15-ppc64le","autorefresh":true,"id":5268,"enabled":false,"description":"SLE-Module-Public-Cloud15-SP4-Debuginfo-Updates for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-Public-Cloud15-SP4-Debuginfo-Updates"},{"name":"SLE-Module-Public-Cloud15-SP4-Pool","installer_updates":false,"description":"SLE-Module-Public-Cloud15-SP4-Pool for sle-15-ppc64le","enabled":true,"id":5269,"autorefresh":false,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP4/ppc64le/product/"},{"autorefresh":false,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP4/ppc64le/product_debug/","enabled":false,"id":5270,"description":"SLE-Module-Public-Cloud15-SP4-Debuginfo-Pool for sle-15-ppc64le","name":"SLE-Module-Public-Cloud15-SP4-Debuginfo-Pool","installer_updates":false},{"name":"SLE-Module-Public-Cloud15-SP4-Source-Pool","installer_updates":false,"description":"SLE-Module-Public-Cloud15-SP4-Source-Pool for sle-15-ppc64le","enabled":false,"id":5271,"autorefresh":false,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP4/ppc64le/product_source/"}],"online_predecessor_ids":[1616,1806,1986,2173],"product_class":"MODULE","predecessor_ids":[1616,1806,1986,2173]},{"online_predecessor_ids":[1606,1783,1957,2193],"product_class":"SLE-HAE-PPC","repositories":[{"enabled":true,"id":5332,"autorefresh":true,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Updates/SLE-Product-HA/15-SP4/ppc64le/update/","name":"SLE-Product-HA15-SP4-Updates","installer_updates":false,"description":"SLE-Product-HA15-SP4-Updates for sle-15-ppc64le"},{"description":"SLE-Product-HA15-SP4-Debuginfo-Updates for sle-15-ppc64le","name":"SLE-Product-HA15-SP4-Debuginfo-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Updates/SLE-Product-HA/15-SP4/ppc64le/update_debug/","enabled":false,"id":5333},{"name":"SLE-Product-HA15-SP4-Pool","installer_updates":false,"description":"SLE-Product-HA15-SP4-Pool for sle-15-ppc64le","enabled":true,"id":5334,"autorefresh":false,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP4/ppc64le/product/"},{"description":"SLE-Product-HA15-SP4-Debuginfo-Pool for sle-15-ppc64le","installer_updates":false,"name":"SLE-Product-HA15-SP4-Debuginfo-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP4/ppc64le/product_debug/","distro_target":"sle-15-ppc64le","autorefresh":false,"id":5335,"enabled":false},{"id":5336,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP4/ppc64le/product_source/","autorefresh":false,"distro_target":"sle-15-ppc64le","name":"SLE-Product-HA15-SP4-Source-Pool","installer_updates":false,"description":"SLE-Product-HA15-SP4-Source-Pool for sle-15-ppc64le"}],"predecessor_ids":[1606,1783,1957,2193],"product_type":"extension","cpe":"cpe:/o:suse:sle-ha:15:sp4","free":false,"shortname":"SLEHA15-SP4","description":"SUSE Linux High Availability Extension provides mature, industry-leading open-source high-availability clustering technologies that are easy to set up and use. It can be deployed in physical and/or virtual environments, and can cluster physical servers, virtual servers, or any combination of the two to suit your business’ needs.","arch":"ppc64le","eula_url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP4/ppc64le/product.license/","friendly_version":"15 SP4","id":2338,"release_stage":"released","identifier":"sle-ha","extensions":[{"product_type":"module","cpe":"cpe:/o:suse:sle-module-sap-applications:15:sp4","repositories":[{"name":"SLE-Module-SAP-Applications15-SP4-Updates","installer_updates":false,"description":"SLE-Module-SAP-Applications15-SP4-Updates for sle-15-ppc64le","id":5347,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-SAP-Applications/15-SP4/ppc64le/update/","autorefresh":true,"distro_target":"sle-15-ppc64le"},{"name":"SLE-Module-SAP-Applications15-SP4-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-SAP-Applications15-SP4-Debuginfo-Updates for sle-15-ppc64le","enabled":false,"id":5348,"autorefresh":true,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-SAP-Applications/15-SP4/ppc64le/update_debug/"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-SAP-Applications/15-SP4/ppc64le/product/","autorefresh":false,"distro_target":"sle-15-ppc64le","id":5349,"enabled":true,"description":"SLE-Module-SAP-Applications15-SP4-Pool for sle-15-ppc64le","name":"SLE-Module-SAP-Applications15-SP4-Pool","installer_updates":false},{"autorefresh":false,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Products/SLE-Module-SAP-Applications/15-SP4/ppc64le/product_debug/","enabled":false,"id":5350,"description":"SLE-Module-SAP-Applications15-SP4-Debuginfo-Pool for sle-15-ppc64le","name":"SLE-Module-SAP-Applications15-SP4-Debuginfo-Pool","installer_updates":false},{"description":"SLE-Module-SAP-Applications15-SP4-Source-Pool for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-SAP-Applications15-SP4-Source-Pool","distro_target":"sle-15-ppc64le","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-SAP-Applications/15-SP4/ppc64le/product_source/","enabled":false,"id":5351}],"online_predecessor_ids":[1726,1786,1993,2197],"product_class":"MODULE","predecessor_ids":[1726,1786,1993,2197],"arch":"ppc64le","eula_url":"","free":true,"description":"

The SAP Applications module contains the specialized tools for SAP Applications administration.

The module is maintained and supported by the SUSE Linux Enterprise Server for SAP Applications product subscription.

","shortname":"SAP-Applications-Module","identifier":"sle-module-sap-applications","release_stage":"released","id":2341,"extensions":[],"friendly_version":"15 SP4","release_type":null,"former_identifier":"sle-module-sap-applications","friendly_name":"SAP Applications Module 15 SP4 ppc64le","migration_extra":false,"offline_predecessor_ids":[],"name":"SAP Applications Module","version":"15.4","recommended":true}],"version":"15.4","recommended":true,"former_identifier":"sle-ha","release_type":null,"friendly_name":"SUSE Linux Enterprise High Availability Extension 15 SP4 ppc64le","migration_extra":false,"offline_predecessor_ids":[1433,1635,1882],"name":"SUSE Linux Enterprise High Availability Extension"}]},{"eula_url":"","arch":"ppc64le","free":true,"description":"

This Module contains several packages revolving around containers and related tools.

","shortname":"Containers-Module","product_type":"module","cpe":"cpe:/o:suse:sle-module-containers:15:sp4","predecessor_ids":[1640,1788,1961,2155],"online_predecessor_ids":[1640,1788,1961,2155],"repositories":[{"id":5187,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/15-SP4/ppc64le/update/","distro_target":"sle-15-ppc64le","autorefresh":true,"installer_updates":false,"name":"SLE-Module-Containers15-SP4-Updates","description":"SLE-Module-Containers15-SP4-Updates for sle-15-ppc64le"},{"description":"SLE-Module-Containers15-SP4-Debuginfo-Updates for sle-15-ppc64le","name":"SLE-Module-Containers15-SP4-Debuginfo-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/15-SP4/ppc64le/update_debug/","enabled":false,"id":5188},{"description":"SLE-Module-Containers15-SP4-Pool for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-Containers15-SP4-Pool","distro_target":"sle-15-ppc64le","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP4/ppc64le/product/","enabled":true,"id":5189},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP4/ppc64le/product_debug/","distro_target":"sle-15-ppc64le","autorefresh":false,"id":5190,"enabled":false,"description":"SLE-Module-Containers15-SP4-Debuginfo-Pool for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-Containers15-SP4-Debuginfo-Pool"},{"enabled":false,"id":5191,"autorefresh":false,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP4/ppc64le/product_source/","name":"SLE-Module-Containers15-SP4-Source-Pool","installer_updates":false,"description":"SLE-Module-Containers15-SP4-Source-Pool for sle-15-ppc64le"}],"product_class":"MODULE","offline_predecessor_ids":[1353],"name":"Containers Module","former_identifier":"sle-module-containers","release_type":null,"friendly_name":"Containers Module 15 SP4 ppc64le","migration_extra":false,"recommended":false,"version":"15.4","extensions":[],"release_stage":"released","id":2309,"identifier":"sle-module-containers","friendly_version":"15 SP4"},{"predecessor_ids":[1735,1827,1983,2185],"product_class":"SLE-LP-PPC","online_predecessor_ids":[1735,1827,1983,2185],"repositories":[{"id":5302,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Live-Patching/15-SP4/ppc64le/update/","distro_target":"sle-15-ppc64le","autorefresh":true,"installer_updates":false,"name":"SLE-Module-Live-Patching15-SP4-Updates","description":"SLE-Module-Live-Patching15-SP4-Updates for sle-15-ppc64le"},{"id":5303,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Live-Patching/15-SP4/ppc64le/update_debug/","distro_target":"sle-15-ppc64le","autorefresh":true,"installer_updates":false,"name":"SLE-Module-Live-Patching15-SP4-Debuginfo-Updates","description":"SLE-Module-Live-Patching15-SP4-Debuginfo-Updates for sle-15-ppc64le"},{"enabled":true,"id":5304,"autorefresh":false,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Live-Patching/15-SP4/ppc64le/product/","name":"SLE-Module-Live-Patching15-SP4-Pool","installer_updates":false,"description":"SLE-Module-Live-Patching15-SP4-Pool for sle-15-ppc64le"},{"installer_updates":false,"name":"SLE-Module-Live-Patching15-SP4-Debuginfo-Pool","description":"SLE-Module-Live-Patching15-SP4-Debuginfo-Pool for sle-15-ppc64le","id":5305,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Live-Patching/15-SP4/ppc64le/product_debug/","distro_target":"sle-15-ppc64le","autorefresh":false},{"description":"SLE-Module-Live-Patching15-SP4-Source-Pool for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-Live-Patching15-SP4-Source-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Live-Patching/15-SP4/ppc64le/product_source/","distro_target":"sle-15-ppc64le","autorefresh":false,"id":5306,"enabled":false}],"cpe":"cpe:/o:suse:sle-module-live-patching:15:sp4","product_type":"extension","description":"

SUSE Linux Enterprise Live Patching provides packages to update critical components in SUSE Linux Enterprise. With SUSE Linux Enterprise Live Patching, you can perform critical patching without shutting down your system, reducing the need for planned downtime and increasing service availability.

","shortname":"Live-Patching","free":false,"eula_url":"","arch":"ppc64le","friendly_version":"15 SP4","extensions":[],"release_stage":"released","identifier":"sle-module-live-patching","id":2332,"recommended":false,"version":"15.4","name":"SUSE Linux Enterprise Live Patching","offline_predecessor_ids":[1537,1756,1887],"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Live Patching 15 SP4 ppc64le","release_type":null,"former_identifier":"sle-module-live-patching"},{"friendly_version":"15 SP4","identifier":"PackageHub","release_stage":"released","id":2345,"extensions":[],"version":"15.4","recommended":false,"release_type":null,"former_identifier":"PackageHub","migration_extra":false,"friendly_name":"SUSE Package Hub 15 SP4 ppc64le","offline_predecessor_ids":[1531,1811,1913],"name":"SUSE Package Hub","product_class":"MODULE","online_predecessor_ids":[1741,1869,1948,2189],"repositories":[{"enabled":true,"id":5372,"distro_target":"sle-15-ppc64le","autorefresh":false,"url":"https://updates.suse.com/SUSE/Backports/SLE-15-SP4_ppc64le/standard/","installer_updates":false,"name":"SUSE-PackageHub-15-SP4-Backports-Pool","description":"SUSE-PackageHub-15-SP4-Backports-Pool for sle-15-ppc64le"},{"id":5373,"enabled":false,"url":"https://updates.suse.com/SUSE/Backports/SLE-15-SP4_ppc64le/standard_debug/","distro_target":"sle-15-ppc64le","autorefresh":true,"installer_updates":false,"name":"SUSE-PackageHub-15-SP4-Backports-Debuginfo","description":"SUSE-PackageHub-15-SP4-Backports-Debuginfo for sle-15-ppc64le"},{"name":"SLE-Module-Packagehub-Subpackages15-SP4-Updates","installer_updates":false,"description":"SLE-Module-Packagehub-Subpackages15-SP4-Updates for sle-15-ppc64le","id":5374,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP4/ppc64le/update/","autorefresh":true,"distro_target":"sle-15-ppc64le"},{"installer_updates":false,"name":"SLE-Module-Packagehub-Subpackages15-SP4-Debuginfo-Updates","description":"SLE-Module-Packagehub-Subpackages15-SP4-Debuginfo-Updates for sle-15-ppc64le","id":5375,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP4/ppc64le/update_debug/","distro_target":"sle-15-ppc64le","autorefresh":true},{"autorefresh":false,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Backports/SLE-15-SP4_ppc64le/product/","enabled":true,"id":5376,"description":"SUSE-PackageHub-15-SP4-Pool for sle-15-ppc64le","name":"SUSE-PackageHub-15-SP4-Pool","installer_updates":false},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP4/ppc64le/product/","autorefresh":false,"distro_target":"sle-15-ppc64le","id":5377,"enabled":true,"description":"SLE-Module-Packagehub-Subpackages15-SP4-Pool for sle-15-ppc64le","name":"SLE-Module-Packagehub-Subpackages15-SP4-Pool","installer_updates":false},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP4/ppc64le/product_debug/","distro_target":"sle-15-ppc64le","autorefresh":false,"id":5378,"enabled":false,"description":"SLE-Module-Packagehub-Subpackages15-SP4-Debuginfo-Pool for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-Packagehub-Subpackages15-SP4-Debuginfo-Pool"},{"description":"SLE-Module-Packagehub-Subpackages15-SP4-Source-Pool for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-Packagehub-Subpackages15-SP4-Source-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP4/ppc64le/product_source/","distro_target":"sle-15-ppc64le","autorefresh":false,"id":5379,"enabled":false}],"predecessor_ids":[1741,1869,1948,2189],"product_type":"module","cpe":"cpe:/o:suse:packagehub:15:sp4","free":true,"description":"SUSE Package Hub is a free of charge module providing access to community maintained packages built to run on SUSE Linux Enterprise Server. Built from the same sources used in the openSUSE distributions, these quality packages provide additional software to what is found in the SUSE Linux Enterprise Server product. Packages from the Package Hub are delivered without L3 support from SUSE. General updates and fixes to the packages in SUSE Package Hub are provided by the openSUSE community based on their discretion, though SUSE will monitor and ensure that any known critical security issues will be addressed. Packages in the Package Hub are approved by SUSE for use with SUSE Linux Enterprise Server 15-SP4 and to not interfere with the supportability of SUSE Linux Enterprise Server, its modules and extensions. For more information about SUSE Package Hub please visit https://packagehub.suse.com.","shortname":"SUSE-PackageHub-15","arch":"ppc64le","eula_url":""},{"version":"15.4","recommended":false,"release_type":null,"former_identifier":"sle-module-python3","friendly_name":"Python 3 Module 15 SP4 ppc64le","migration_extra":false,"offline_predecessor_ids":[],"name":"Python 3 Module","friendly_version":"15 SP4","identifier":"sle-module-python3","release_stage":"released","id":2403,"extensions":[],"free":true,"description":"

This module contains the Python 3 packages.

Access to the Python 3 Module is included in your SUSE Linux Enterprise subscription. The module has a different lifecycle than SUSE Linux Enterprise itself; please check the Release Notes for further details.

","shortname":"Python 3-Module","arch":"ppc64le","eula_url":"","online_predecessor_ids":[],"product_class":"MODULE","repositories":[{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Python3/15-SP4/ppc64le/update/","distro_target":"sle-15-ppc64le","autorefresh":true,"id":5572,"enabled":true,"description":"SLE-Module-Python3-15-SP4-Updates for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-Python3-15-SP4-Updates"},{"description":"SLE-Module-Python3-15-SP4-Debuginfo-Updates for sle-15-ppc64le","name":"SLE-Module-Python3-15-SP4-Debuginfo-Updates","installer_updates":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Python3/15-SP4/ppc64le/update_debug/","autorefresh":true,"distro_target":"sle-15-ppc64le","id":5573,"enabled":false},{"id":5574,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Python3/15-SP4/ppc64le/product/","autorefresh":false,"distro_target":"sle-15-ppc64le","name":"SLE-Module-Python3-15-SP4-Pool","installer_updates":false,"description":"SLE-Module-Python3-15-SP4-Pool for sle-15-ppc64le"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Python3/15-SP4/ppc64le/product_debug/","distro_target":"sle-15-ppc64le","autorefresh":false,"id":5575,"enabled":false,"description":"SLE-Module-Python3-15-SP4-Debuginfo-Pool for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-Python3-15-SP4-Debuginfo-Pool"},{"distro_target":"sle-15-ppc64le","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Python3/15-SP4/ppc64le/product_source/","enabled":false,"id":5576,"description":"SLE-Module-Python3-15-SP4-Source-Pool for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-Python3-15-SP4-Source-Pool"}],"predecessor_ids":[],"product_type":"module","cpe":"cpe:/o:suse:sle-module-python3:15:sp4"}],"friendly_version":"15 SP4"},{"version":"15.4","recommended":false,"friendly_name":"Certifications Module 15 SP4 ppc64le","migration_extra":false,"release_type":null,"former_identifier":"sle-module-certifications","name":"Certifications Module","offline_predecessor_ids":[],"friendly_version":"15 SP4","release_stage":"released","identifier":"sle-module-certifications","id":2391,"extensions":[],"shortname":"Certifications-Module","description":"

This module contains the certification packages.

Access to the Certifications Module is included in your SUSE Linux Enterprise subscription. The module has a different lifecycle than SUSE Linux Enterprise itself; please check the Release Notes for further details.

","free":true,"arch":"ppc64le","eula_url":"","online_predecessor_ids":[],"product_class":"MODULE","repositories":[{"name":"SLE-Module-Certifications-15-SP4-Updates","installer_updates":false,"description":"SLE-Module-Certifications-15-SP4-Updates for sle-15-ppc64le","enabled":true,"id":5537,"autorefresh":true,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Certifications/15-SP4/ppc64le/update/"},{"autorefresh":true,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Certifications/15-SP4/ppc64le/update_debug/","enabled":false,"id":5538,"description":"SLE-Module-Certifications-15-SP4-Debuginfo-Updates for sle-15-ppc64le","name":"SLE-Module-Certifications-15-SP4-Debuginfo-Updates","installer_updates":false},{"description":"SLE-Module-Certifications-15-SP4-Pool for sle-15-ppc64le","name":"SLE-Module-Certifications-15-SP4-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Certifications/15-SP4/ppc64le/product/","autorefresh":false,"distro_target":"sle-15-ppc64le","id":5539,"enabled":true},{"installer_updates":false,"name":"SLE-Module-Certifications-15-SP4-Debuginfo-Pool","description":"SLE-Module-Certifications-15-SP4-Debuginfo-Pool for sle-15-ppc64le","enabled":false,"id":5540,"distro_target":"sle-15-ppc64le","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Certifications/15-SP4/ppc64le/product_debug/"},{"name":"SLE-Module-Certifications-15-SP4-Source-Pool","installer_updates":false,"description":"SLE-Module-Certifications-15-SP4-Source-Pool for sle-15-ppc64le","id":5541,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Certifications/15-SP4/ppc64le/product_source/","autorefresh":false,"distro_target":"sle-15-ppc64le"}],"predecessor_ids":[],"cpe":"cpe:/o:suse:sle-module-certifications:15:sp4","product_type":"module"}],"release_stage":"released","identifier":"SLES_SAP","id":2293,"free":false,"description":"SUSE Linux Enterprise offers a comprehensive suite of products built on a single code base. The platform addresses business needs from the smallest thin-client devices to the world's most powerful high-performance computing and mainframe servers. SUSE Linux Enterprise offers common management tools and technology certifications across the platform, and each product is enterprise-class.","shortname":"SLE-15-SP4-SAP","eula_url":"https://updates.suse.com/SUSE/Products/SLE-Product-SLES_SAP/15-SP4/ppc64le/product.license/","arch":"ppc64le","predecessor_ids":[1613,1765,1940,2135],"online_predecessor_ids":[1613,1765,1940,2135],"repositories":[{"enabled":true,"id":5106,"autorefresh":true,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Updates/SLE-Product-SLES_SAP/15-SP4/ppc64le/update/","name":"SLE-Product-SLES_SAP15-SP4-Updates","installer_updates":false,"description":"SLE-Product-SLES_SAP15-SP4-Updates for sle-15-ppc64le"},{"name":"SLE-Product-SLES_SAP15-SP4-Debuginfo-Updates","installer_updates":false,"description":"SLE-Product-SLES_SAP15-SP4-Debuginfo-Updates for sle-15-ppc64le","id":5107,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-SLES_SAP/15-SP4/ppc64le/update_debug/","autorefresh":true,"distro_target":"sle-15-ppc64le"},{"autorefresh":false,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Products/SLE-Product-SLES_SAP/15-SP4/ppc64le/product/","enabled":true,"id":5108,"description":"SLE-Product-SLES_SAP15-SP4-Pool for sle-15-ppc64le","name":"SLE-Product-SLES_SAP15-SP4-Pool","installer_updates":false},{"distro_target":"sle-15-ppc64le","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-SLES_SAP/15-SP4/ppc64le/product_debug/","enabled":false,"id":5109,"description":"SLE-Product-SLES_SAP15-SP4-Debuginfo-Pool for sle-15-ppc64le","installer_updates":false,"name":"SLE-Product-SLES_SAP15-SP4-Debuginfo-Pool"},{"description":"SLE-Product-SLES_SAP15-SP4-Source-Pool for sle-15-ppc64le","installer_updates":false,"name":"SLE-Product-SLES_SAP15-SP4-Source-Pool","distro_target":"sle-15-ppc64le","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-SLES_SAP/15-SP4/ppc64le/product_source/","enabled":false,"id":5110}],"product_class":"AiO-PPC","product_type":"base","cpe":"cpe:/o:suse:sles_sap:15:sp4"},{"free":false,"shortname":"SLE-15-SP4-SAP","description":"SUSE Linux Enterprise offers a comprehensive suite of products built on a single code base. The platform addresses business needs from the smallest thin-client devices to the world's most powerful high-performance computing and mainframe servers. SUSE Linux Enterprise offers common management tools and technology certifications across the platform, and each product is enterprise-class.","arch":"x86_64","eula_url":"https://updates.suse.com/SUSE/Products/SLE-Product-SLES_SAP/15-SP4/x86_64/product.license/","repositories":[{"description":"SLE-Product-SLES_SAP15-SP4-Updates for sle-15-x86_64","installer_updates":false,"name":"SLE-Product-SLES_SAP15-SP4-Updates","distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-SLES_SAP/15-SP4/x86_64/update/","enabled":true,"id":5111},{"installer_updates":false,"name":"SLE-Product-SLES_SAP15-SP4-Debuginfo-Updates","description":"SLE-Product-SLES_SAP15-SP4-Debuginfo-Updates for sle-15-x86_64","enabled":false,"id":5112,"distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-SLES_SAP/15-SP4/x86_64/update_debug/"},{"installer_updates":false,"name":"SLE-Product-SLES_SAP15-SP4-Pool","description":"SLE-Product-SLES_SAP15-SP4-Pool for sle-15-x86_64","enabled":true,"id":5113,"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-SLES_SAP/15-SP4/x86_64/product/"},{"description":"SLE-Product-SLES_SAP15-SP4-Debuginfo-Pool for sle-15-x86_64","name":"SLE-Product-SLES_SAP15-SP4-Debuginfo-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Product-SLES_SAP/15-SP4/x86_64/product_debug/","enabled":false,"id":5114},{"description":"SLE-Product-SLES_SAP15-SP4-Source-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Product-SLES_SAP15-SP4-Source-Pool","distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-SLES_SAP/15-SP4/x86_64/product_source/","enabled":false,"id":5115}],"online_predecessor_ids":[1612,1766,1941,2136],"product_class":"AiO","predecessor_ids":[1612,1766,1941,2136],"product_type":"base","cpe":"cpe:/o:suse:sles_sap:15:sp4","version":"15.4","recommended":false,"release_type":null,"former_identifier":"SUSE_SLES_SAP","friendly_name":"SUSE Linux Enterprise Server for SAP Applications 15 SP4 x86_64","migration_extra":false,"offline_predecessor_ids":[1329,1426,1755,1880],"name":"SUSE Linux Enterprise Server for SAP Applications","friendly_version":"15 SP4","release_stage":"released","id":2294,"identifier":"SLES_SAP","extensions":[{"product_type":"module","cpe":"cpe:/o:suse:sle-module-basesystem:15:sp4","repositories":[{"enabled":true,"id":5137,"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15-SP4/x86_64/update/","name":"SLE-Module-Basesystem15-SP4-Updates","installer_updates":false,"description":"SLE-Module-Basesystem15-SP4-Updates for sle-15-x86_64"},{"description":"SLE-Module-Basesystem15-SP4-Debuginfo-Updates for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Basesystem15-SP4-Debuginfo-Updates","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15-SP4/x86_64/update_debug/","distro_target":"sle-15-x86_64","autorefresh":true,"id":5138,"enabled":false},{"description":"SLE-Module-Basesystem15-SP4-Pool for sle-15-x86_64","name":"SLE-Module-Basesystem15-SP4-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP4/x86_64/product/","autorefresh":false,"distro_target":"sle-15-x86_64","id":5139,"enabled":true},{"enabled":false,"id":5140,"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP4/x86_64/product_debug/","installer_updates":false,"name":"SLE-Module-Basesystem15-SP4-Debuginfo-Pool","description":"SLE-Module-Basesystem15-SP4-Debuginfo-Pool for sle-15-x86_64"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP4/x86_64/product_source/","autorefresh":false,"distro_target":"sle-15-x86_64","id":5141,"enabled":false,"description":"SLE-Module-Basesystem15-SP4-Source-Pool for sle-15-x86_64","name":"SLE-Module-Basesystem15-SP4-Source-Pool","installer_updates":false}],"online_predecessor_ids":[1576,1772,1946,2145],"product_class":"MODULE","predecessor_ids":[1576,1772,1946,2145],"arch":"x86_64","eula_url":"","free":true,"description":"

The SUSE Linux Enterprise Basesystem Module delivers the base system of the product.

","shortname":"Basesystem-Module","release_stage":"released","identifier":"sle-module-basesystem","id":2299,"extensions":[{"migration_extra":false,"friendly_name":"Desktop Applications Module 15 SP4 x86_64","former_identifier":"sle-module-desktop-applications","release_type":null,"name":"Desktop Applications Module","offline_predecessor_ids":[],"version":"15.4","recommended":true,"id":2303,"release_stage":"released","identifier":"sle-module-desktop-applications","extensions":[{"version":"15.4","recommended":false,"former_identifier":"sle-sdk","release_type":null,"friendly_name":"Development Tools Module 15 SP4 x86_64","migration_extra":false,"offline_predecessor_ids":[1341,1427,1630,1892],"name":"Development Tools Module","friendly_version":"15 SP4","identifier":"sle-module-development-tools","release_stage":"released","id":2315,"extensions":[],"free":true,"description":"

The Development Tools Module helps you developing applications for SUSE Linux Enterprise 15.

Access to the Development Tools Module is included in your SUSE Linux Enterprise product subscription. The module has a different lifecycle than SUSE Linux Enterprise itself.

","shortname":"Development-Tools-Module","arch":"x86_64","eula_url":"","repositories":[{"id":5217,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15-SP4/x86_64/update/","autorefresh":true,"distro_target":"sle-15-x86_64","name":"SLE-Module-DevTools15-SP4-Updates","installer_updates":false,"description":"SLE-Module-DevTools15-SP4-Updates for sle-15-x86_64"},{"description":"SLE-Module-DevTools15-SP4-Debuginfo-Updates for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-DevTools15-SP4-Debuginfo-Updates","distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15-SP4/x86_64/update_debug/","enabled":false,"id":5218},{"enabled":true,"id":5219,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP4/x86_64/product/","name":"SLE-Module-DevTools15-SP4-Pool","installer_updates":false,"description":"SLE-Module-DevTools15-SP4-Pool for sle-15-x86_64"},{"description":"SLE-Module-DevTools15-SP4-Debuginfo-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-DevTools15-SP4-Debuginfo-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP4/x86_64/product_debug/","distro_target":"sle-15-x86_64","autorefresh":false,"id":5220,"enabled":false},{"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP4/x86_64/product_source/","enabled":false,"id":5221,"description":"SLE-Module-DevTools15-SP4-Source-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-DevTools15-SP4-Source-Pool"}],"online_predecessor_ids":[1579,1794,1971,2161],"product_class":"MODULE","predecessor_ids":[1579,1794,1971,2161],"product_type":"module","cpe":"cpe:/o:suse:sle-module-development-tools:15:sp4"},{"predecessor_ids":[1583,1781,1999,2196],"online_predecessor_ids":[1583,1781,1999,2196],"product_class":"SLE-WE","repositories":[{"enabled":true,"id":5119,"autorefresh":true,"distro_target":null,"url":"https://download.nvidia.com/suse/sle15sp4/","name":"SLE-15-SP4-Desktop-NVIDIA-Driver","installer_updates":false,"description":"SLE-15-SP4-Desktop-NVIDIA-Driver"},{"enabled":true,"id":5357,"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Product-WE/15-SP4/x86_64/update/","name":"SLE-Product-WE15-SP4-Updates","installer_updates":false,"description":"SLE-Product-WE15-SP4-Updates for sle-15-x86_64"},{"description":"SLE-Product-WE15-SP4-Debuginfo-Updates for sle-15-x86_64","name":"SLE-Product-WE15-SP4-Debuginfo-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Product-WE/15-SP4/x86_64/update_debug/","enabled":false,"id":5358},{"description":"SLE-Product-WE15-SP4-Pool for sle-15-x86_64","name":"SLE-Product-WE15-SP4-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-WE/15-SP4/x86_64/product/","autorefresh":false,"distro_target":"sle-15-x86_64","id":5359,"enabled":true},{"description":"SLE-Product-WE15-SP4-Debuginfo-Pool for sle-15-x86_64","name":"SLE-Product-WE15-SP4-Debuginfo-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-WE/15-SP4/x86_64/product_debug/","autorefresh":false,"distro_target":"sle-15-x86_64","id":5360,"enabled":false},{"description":"SLE-Product-WE15-SP4-Source-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Product-WE15-SP4-Source-Pool","distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-WE/15-SP4/x86_64/product_source/","enabled":false,"id":5361}],"cpe":"cpe:/o:suse:sle-we:15:sp4","product_type":"extension","description":"SUSE Linux Enterprise Workstation Extension adds additional functionality to a base SUSE Linux Enterprise installation. The Workstation Extension offers additional desktop applications (office suite, email client, graphical editor, multimedia tools) and libraries. Workstation Extension is enabled and installed by default on SUSE Linux Enterprise Desktop installation. Adding the Workstation Extension to a SUSE Linux Enterprise Server installation allows to seamlessly combine both products to create a full featured server workstation.","shortname":"SLEWE15-SP4","free":false,"eula_url":"https://updates.suse.com/SUSE/Products/SLE-Product-WE/15-SP4/x86_64/product.license/","arch":"x86_64","friendly_version":"15 SP4","extensions":[],"identifier":"sle-we","release_stage":"released","id":2343,"recommended":false,"version":"15.4","name":"SUSE Linux Enterprise Workstation Extension","offline_predecessor_ids":[1431,1639,1893],"friendly_name":"SUSE Linux Enterprise Workstation Extension 15 SP4 x86_64","migration_extra":false,"former_identifier":"sle-we","release_type":null}],"friendly_version":"15 SP4","arch":"x86_64","eula_url":"","shortname":"Desktop-Applications-Module","description":"

The SUSE Linux Enterprise Desktop Applications Module delivers a basic set of Desktop functionality.

Access to the Desktop Applications Module is included in your SUSE Linux Enterprise product subscription.

","free":true,"cpe":"cpe:/o:suse:sle-module-desktop-applications:15:sp4","product_type":"module","online_predecessor_ids":[1578,1776,1967,2149],"product_class":"MODULE","repositories":[{"name":"SLE-Module-Desktop-Applications15-SP4-Updates","installer_updates":false,"description":"SLE-Module-Desktop-Applications15-SP4-Updates for sle-15-x86_64","enabled":true,"id":5157,"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15-SP4/x86_64/update/"},{"description":"SLE-Module-Desktop-Applications15-SP4-Debuginfo-Updates for sle-15-x86_64","name":"SLE-Module-Desktop-Applications15-SP4-Debuginfo-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15-SP4/x86_64/update_debug/","enabled":false,"id":5158},{"name":"SLE-Module-Desktop-Applications15-SP4-Pool","installer_updates":false,"description":"SLE-Module-Desktop-Applications15-SP4-Pool for sle-15-x86_64","enabled":true,"id":5159,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP4/x86_64/product/"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP4/x86_64/product_debug/","autorefresh":false,"distro_target":"sle-15-x86_64","id":5160,"enabled":false,"description":"SLE-Module-Desktop-Applications15-SP4-Debuginfo-Pool for sle-15-x86_64","name":"SLE-Module-Desktop-Applications15-SP4-Debuginfo-Pool","installer_updates":false},{"description":"SLE-Module-Desktop-Applications15-SP4-Source-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Desktop-Applications15-SP4-Source-Pool","distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP4/x86_64/product_source/","enabled":false,"id":5161}],"predecessor_ids":[1578,1776,1967,2149]},{"arch":"x86_64","eula_url":"","free":true,"description":"

The SUSE Linux Enterprise Server Applications Module delivers a basic set of Server functionality.

Access to the Server Applications Module is included in your SUSE Linux Enterprise Server subscription.

","shortname":"Server-Applications-Module","product_type":"module","cpe":"cpe:/o:suse:sle-module-server-applications:15:sp4","online_predecessor_ids":[1580,1780,1955,2153],"product_class":"MODULE","repositories":[{"description":"SLE-Module-Server-Applications15-SP4-Updates for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Server-Applications15-SP4-Updates","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15-SP4/x86_64/update/","distro_target":"sle-15-x86_64","autorefresh":true,"id":5177,"enabled":true},{"installer_updates":false,"name":"SLE-Module-Server-Applications15-SP4-Debuginfo-Updates","description":"SLE-Module-Server-Applications15-SP4-Debuginfo-Updates for sle-15-x86_64","enabled":false,"id":5178,"distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15-SP4/x86_64/update_debug/"},{"installer_updates":false,"name":"SLE-Module-Server-Applications15-SP4-Pool","description":"SLE-Module-Server-Applications15-SP4-Pool for sle-15-x86_64","id":5179,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP4/x86_64/product/","distro_target":"sle-15-x86_64","autorefresh":false},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP4/x86_64/product_debug/","distro_target":"sle-15-x86_64","autorefresh":false,"id":5180,"enabled":false,"description":"SLE-Module-Server-Applications15-SP4-Debuginfo-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Server-Applications15-SP4-Debuginfo-Pool"},{"name":"SLE-Module-Server-Applications15-SP4-Source-Pool","installer_updates":false,"description":"SLE-Module-Server-Applications15-SP4-Source-Pool for sle-15-x86_64","id":5181,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP4/x86_64/product_source/","autorefresh":false,"distro_target":"sle-15-x86_64"}],"predecessor_ids":[1580,1780,1955,2153],"release_type":null,"former_identifier":"sle-module-server-applications","friendly_name":"Server Applications Module 15 SP4 x86_64","migration_extra":false,"offline_predecessor_ids":[],"name":"Server Applications Module","version":"15.4","recommended":true,"identifier":"sle-module-server-applications","release_stage":"released","id":2307,"extensions":[{"predecessor_ids":[1721,1798,1976,2165],"online_predecessor_ids":[1721,1798,1976,2165],"product_class":"MODULE","repositories":[{"name":"SLE-Module-Web-Scripting15-SP4-Updates","installer_updates":false,"description":"SLE-Module-Web-Scripting15-SP4-Updates for sle-15-x86_64","enabled":true,"id":5237,"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/15-SP4/x86_64/update/"},{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/15-SP4/x86_64/update_debug/","distro_target":"sle-15-x86_64","autorefresh":true,"id":5238,"enabled":false,"description":"SLE-Module-Web-Scripting15-SP4-Debuginfo-Updates for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Web-Scripting15-SP4-Debuginfo-Updates"},{"description":"SLE-Module-Web-Scripting15-SP4-Pool for sle-15-x86_64","name":"SLE-Module-Web-Scripting15-SP4-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP4/x86_64/product/","enabled":true,"id":5239},{"enabled":false,"id":5240,"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP4/x86_64/product_debug/","installer_updates":false,"name":"SLE-Module-Web-Scripting15-SP4-Debuginfo-Pool","description":"SLE-Module-Web-Scripting15-SP4-Debuginfo-Pool for sle-15-x86_64"},{"id":5241,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP4/x86_64/product_source/","autorefresh":false,"distro_target":"sle-15-x86_64","name":"SLE-Module-Web-Scripting15-SP4-Source-Pool","installer_updates":false,"description":"SLE-Module-Web-Scripting15-SP4-Source-Pool for sle-15-x86_64"}],"product_type":"module","cpe":"cpe:/o:suse:sle-module-web-scripting:15:sp4","free":true,"shortname":"Web-Scripting-Module","description":"

The SUSE Linux Enterprise Web and Scripting Module should contains additional packages that are helpful when running a webserver.

Access to the Web and Scripting Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself: Package versions in this module are usually supported for at most three years. We are planning to release more recent versions on a schedule of approximately 18 month; the exact dates may differ per package.

","eula_url":"","arch":"x86_64","friendly_version":"15 SP4","extensions":[],"release_stage":"released","identifier":"sle-module-web-scripting","id":2319,"recommended":false,"version":"15.4","offline_predecessor_ids":[1153],"name":"Web and Scripting Module","former_identifier":"sle-module-web-scripting","release_type":null,"friendly_name":"Web and Scripting Module 15 SP4 x86_64","migration_extra":false},{"online_predecessor_ids":[1581,1804,1982,2171],"repositories":[{"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/15-SP4/x86_64/update/","enabled":true,"id":5257,"description":"SLE-Module-Legacy15-SP4-Updates for sle-15-x86_64","name":"SLE-Module-Legacy15-SP4-Updates","installer_updates":false},{"description":"SLE-Module-Legacy15-SP4-Debuginfo-Updates for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Legacy15-SP4-Debuginfo-Updates","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/15-SP4/x86_64/update_debug/","distro_target":"sle-15-x86_64","autorefresh":true,"id":5258,"enabled":false},{"description":"SLE-Module-Legacy15-SP4-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Legacy15-SP4-Pool","distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15-SP4/x86_64/product/","enabled":true,"id":5259},{"description":"SLE-Module-Legacy15-SP4-Debuginfo-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Legacy15-SP4-Debuginfo-Pool","distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15-SP4/x86_64/product_debug/","enabled":false,"id":5260},{"description":"SLE-Module-Legacy15-SP4-Source-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Legacy15-SP4-Source-Pool","distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15-SP4/x86_64/product_source/","enabled":false,"id":5261}],"product_class":"MODULE","predecessor_ids":[1581,1804,1982,2171],"cpe":"cpe:/o:suse:sle-module-legacy:15:sp4","product_type":"module","description":"

The Legacy Module helps you migrating applications from SUSE Linux Enterprise 12 and other systems to SUSE Linux Enterprise 15, by providing packages which are discontinued on SUSE Linux Enterprise Server, such as: ntp, IBM Java 8, and a number of libraries.

Access to the Legacy Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself. Packages in the this module are usually supported for at most three years.

","shortname":"Legacy-Module","free":true,"arch":"x86_64","eula_url":"","friendly_version":"15 SP4","release_stage":"released","id":2323,"identifier":"sle-module-legacy","extensions":[],"version":"15.4","recommended":false,"migration_extra":true,"friendly_name":"Legacy Module 15 SP4 x86_64","former_identifier":"sle-module-legacy","release_type":null,"name":"Legacy Module","offline_predecessor_ids":[1150]},{"friendly_version":"15 SP4","release_stage":"released","id":2327,"identifier":"sle-module-public-cloud","extensions":[],"version":"15.4","recommended":false,"former_identifier":"sle-module-public-cloud","release_type":null,"migration_extra":false,"friendly_name":"Public Cloud Module 15 SP4 x86_64","offline_predecessor_ids":[1220],"name":"Public Cloud Module","online_predecessor_ids":[1611,1808,1988,2175],"repositories":[{"description":"SLE-Module-Public-Cloud15-SP4-Updates for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Public-Cloud15-SP4-Updates","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/15-SP4/x86_64/update/","distro_target":"sle-15-x86_64","autorefresh":true,"id":5277,"enabled":true},{"installer_updates":false,"name":"SLE-Module-Public-Cloud15-SP4-Debuginfo-Updates","description":"SLE-Module-Public-Cloud15-SP4-Debuginfo-Updates for sle-15-x86_64","id":5278,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/15-SP4/x86_64/update_debug/","distro_target":"sle-15-x86_64","autorefresh":true},{"installer_updates":false,"name":"SLE-Module-Public-Cloud15-SP4-Pool","description":"SLE-Module-Public-Cloud15-SP4-Pool for sle-15-x86_64","enabled":true,"id":5279,"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP4/x86_64/product/"},{"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP4/x86_64/product_debug/","enabled":false,"id":5280,"description":"SLE-Module-Public-Cloud15-SP4-Debuginfo-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Public-Cloud15-SP4-Debuginfo-Pool"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP4/x86_64/product_source/","autorefresh":false,"distro_target":"sle-15-x86_64","id":5281,"enabled":false,"description":"SLE-Module-Public-Cloud15-SP4-Source-Pool for sle-15-x86_64","name":"SLE-Module-Public-Cloud15-SP4-Source-Pool","installer_updates":false}],"product_class":"MODULE","predecessor_ids":[1611,1808,1988,2175],"product_type":"module","cpe":"cpe:/o:suse:sle-module-public-cloud:15:sp4","free":true,"description":"

The Public Cloud Module is a collection of tools that enables you to create and manage cloud images from the commandline on SUSE Linux Enterprise Server. When building your own images with KIWI or SUSE Studio, initialization code specific to the target cloud is included in that image.

Access to the Public Cloud Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself; please check the Release Notes for further details.

","shortname":"Public-Cloud-Module","arch":"x86_64","eula_url":""},{"arch":"x86_64","eula_url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP4/x86_64/product.license/","shortname":"SLEHA15-SP4","description":"SUSE Linux High Availability Extension provides mature, industry-leading open-source high-availability clustering technologies that are easy to set up and use. It can be deployed in physical and/or virtual environments, and can cluster physical servers, virtual servers, or any combination of the two to suit your business’ needs.","free":false,"cpe":"cpe:/o:suse:sle-ha:15:sp4","product_type":"extension","product_class":"SLE-HAE-X86","online_predecessor_ids":[1582,1785,1959,2195],"repositories":[{"installer_updates":false,"name":"SLE-Product-HA15-SP4-Updates","description":"SLE-Product-HA15-SP4-Updates for sle-15-x86_64","enabled":true,"id":5342,"distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-HA/15-SP4/x86_64/update/"},{"name":"SLE-Product-HA15-SP4-Debuginfo-Updates","installer_updates":false,"description":"SLE-Product-HA15-SP4-Debuginfo-Updates for sle-15-x86_64","enabled":false,"id":5343,"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Product-HA/15-SP4/x86_64/update_debug/"},{"description":"SLE-Product-HA15-SP4-Pool for sle-15-x86_64","name":"SLE-Product-HA15-SP4-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP4/x86_64/product/","enabled":true,"id":5344},{"name":"SLE-Product-HA15-SP4-Debuginfo-Pool","installer_updates":false,"description":"SLE-Product-HA15-SP4-Debuginfo-Pool for sle-15-x86_64","enabled":false,"id":5345,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP4/x86_64/product_debug/"},{"description":"SLE-Product-HA15-SP4-Source-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Product-HA15-SP4-Source-Pool","distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP4/x86_64/product_source/","enabled":false,"id":5346}],"predecessor_ids":[1582,1785,1959,2195],"friendly_name":"SUSE Linux Enterprise High Availability Extension 15 SP4 x86_64","migration_extra":false,"release_type":null,"former_identifier":"sle-ha","name":"SUSE Linux Enterprise High Availability Extension","offline_predecessor_ids":[958,961,967,971,1101,1107,1256,1286,1432,1435,1634,1637,1884,1886],"version":"15.4","recommended":true,"release_stage":"released","id":2340,"identifier":"sle-ha","extensions":[{"offline_predecessor_ids":[],"name":"SAP Applications Module","release_type":null,"former_identifier":"sle-module-sap-applications","friendly_name":"SAP Applications Module 15 SP4 x86_64","migration_extra":false,"recommended":true,"version":"15.4","extensions":[],"release_stage":"released","id":2342,"identifier":"sle-module-sap-applications","friendly_version":"15 SP4","eula_url":"","arch":"x86_64","free":true,"shortname":"SAP-Applications-Module","description":"

The SAP Applications module contains the specialized tools for SAP Applications administration.

The module is maintained and supported by the SUSE Linux Enterprise Server for SAP Applications product subscription.

","product_type":"module","cpe":"cpe:/o:suse:sle-module-sap-applications:15:sp4","predecessor_ids":[1727,1787,1994,2198],"online_predecessor_ids":[1727,1787,1994,2198],"product_class":"MODULE","repositories":[{"description":"SLE-Module-SAP-Applications15-SP4-Updates for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-SAP-Applications15-SP4-Updates","distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-SAP-Applications/15-SP4/x86_64/update/","enabled":true,"id":5352},{"id":5353,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-SAP-Applications/15-SP4/x86_64/update_debug/","autorefresh":true,"distro_target":"sle-15-x86_64","name":"SLE-Module-SAP-Applications15-SP4-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-SAP-Applications15-SP4-Debuginfo-Updates for sle-15-x86_64"},{"description":"SLE-Module-SAP-Applications15-SP4-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-SAP-Applications15-SP4-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-SAP-Applications/15-SP4/x86_64/product/","distro_target":"sle-15-x86_64","autorefresh":false,"id":5354,"enabled":true},{"description":"SLE-Module-SAP-Applications15-SP4-Debuginfo-Pool for sle-15-x86_64","name":"SLE-Module-SAP-Applications15-SP4-Debuginfo-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-SAP-Applications/15-SP4/x86_64/product_debug/","enabled":false,"id":5355},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-SAP-Applications/15-SP4/x86_64/product_source/","autorefresh":false,"distro_target":"sle-15-x86_64","id":5356,"enabled":false,"description":"SLE-Module-SAP-Applications15-SP4-Source-Pool for sle-15-x86_64","name":"SLE-Module-SAP-Applications15-SP4-Source-Pool","installer_updates":false}]}],"friendly_version":"15 SP4"}],"friendly_version":"15 SP4"},{"version":"15.4","recommended":false,"release_type":null,"former_identifier":"sle-module-containers","friendly_name":"Containers Module 15 SP4 x86_64","migration_extra":false,"offline_predecessor_ids":[1332],"name":"Containers Module","friendly_version":"15 SP4","identifier":"sle-module-containers","release_stage":"released","id":2311,"extensions":[],"free":true,"shortname":"Containers-Module","description":"

This Module contains several packages revolving around containers and related tools.

","arch":"x86_64","eula_url":"","online_predecessor_ids":[1642,1790,1963,2157],"product_class":"MODULE","repositories":[{"distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/15-SP4/x86_64/update/","enabled":true,"id":5197,"description":"SLE-Module-Containers15-SP4-Updates for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Containers15-SP4-Updates"},{"distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/15-SP4/x86_64/update_debug/","enabled":false,"id":5198,"description":"SLE-Module-Containers15-SP4-Debuginfo-Updates for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Containers15-SP4-Debuginfo-Updates"},{"description":"SLE-Module-Containers15-SP4-Pool for sle-15-x86_64","name":"SLE-Module-Containers15-SP4-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP4/x86_64/product/","autorefresh":false,"distro_target":"sle-15-x86_64","id":5199,"enabled":true},{"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP4/x86_64/product_debug/","enabled":false,"id":5200,"description":"SLE-Module-Containers15-SP4-Debuginfo-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Containers15-SP4-Debuginfo-Pool"},{"name":"SLE-Module-Containers15-SP4-Source-Pool","installer_updates":false,"description":"SLE-Module-Containers15-SP4-Source-Pool for sle-15-x86_64","enabled":false,"id":5201,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP4/x86_64/product_source/"}],"predecessor_ids":[1642,1790,1963,2157],"product_type":"module","cpe":"cpe:/o:suse:sle-module-containers:15:sp4"},{"extensions":[],"release_stage":"released","id":2334,"identifier":"sle-module-live-patching","friendly_version":"15 SP4","offline_predecessor_ids":[1536,1757,1888],"name":"SUSE Linux Enterprise Live Patching","former_identifier":"sle-module-live-patching","release_type":null,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Live Patching 15 SP4 x86_64","recommended":false,"version":"15.4","product_type":"extension","cpe":"cpe:/o:suse:sle-module-live-patching:15:sp4","predecessor_ids":[1736,1828,1984,2187],"product_class":"SLE-LP","online_predecessor_ids":[1736,1828,1984,2187],"repositories":[{"name":"SLE-Module-Live-Patching15-SP4-Updates","installer_updates":false,"description":"SLE-Module-Live-Patching15-SP4-Updates for sle-15-x86_64","id":5312,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Live-Patching/15-SP4/x86_64/update/","autorefresh":true,"distro_target":"sle-15-x86_64"},{"enabled":false,"id":5313,"distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Live-Patching/15-SP4/x86_64/update_debug/","installer_updates":false,"name":"SLE-Module-Live-Patching15-SP4-Debuginfo-Updates","description":"SLE-Module-Live-Patching15-SP4-Debuginfo-Updates for sle-15-x86_64"},{"enabled":true,"id":5314,"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Live-Patching/15-SP4/x86_64/product/","installer_updates":false,"name":"SLE-Module-Live-Patching15-SP4-Pool","description":"SLE-Module-Live-Patching15-SP4-Pool for sle-15-x86_64"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Live-Patching/15-SP4/x86_64/product_debug/","autorefresh":false,"distro_target":"sle-15-x86_64","id":5315,"enabled":false,"description":"SLE-Module-Live-Patching15-SP4-Debuginfo-Pool for sle-15-x86_64","name":"SLE-Module-Live-Patching15-SP4-Debuginfo-Pool","installer_updates":false},{"description":"SLE-Module-Live-Patching15-SP4-Source-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Live-Patching15-SP4-Source-Pool","distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Live-Patching/15-SP4/x86_64/product_source/","enabled":false,"id":5316}],"eula_url":"","arch":"x86_64","free":false,"description":"

SUSE Linux Enterprise Live Patching provides packages to update critical components in SUSE Linux Enterprise. With SUSE Linux Enterprise Live Patching, you can perform critical patching without shutting down your system, reducing the need for planned downtime and increasing service availability.

","shortname":"Live-Patching"},{"friendly_version":"15 SP4","extensions":[],"release_stage":"released","identifier":"PackageHub","id":2347,"recommended":false,"version":"15.4","offline_predecessor_ids":[1529,1813,1915],"name":"SUSE Package Hub","release_type":null,"former_identifier":"PackageHub","friendly_name":"SUSE Package Hub 15 SP4 x86_64","migration_extra":false,"predecessor_ids":[1743,1871,1950,2191],"product_class":"MODULE","online_predecessor_ids":[1743,1871,1950,2191],"repositories":[{"installer_updates":false,"name":"SUSE-PackageHub-15-SP4-Backports-Pool","description":"SUSE-PackageHub-15-SP4-Backports-Pool for sle-15-x86_64","enabled":true,"id":5388,"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Backports/SLE-15-SP4_x86_64/standard/"},{"url":"https://updates.suse.com/SUSE/Backports/SLE-15-SP4_x86_64/standard_debug/","distro_target":"sle-15-x86_64","autorefresh":true,"id":5389,"enabled":false,"description":"SUSE-PackageHub-15-SP4-Backports-Debuginfo for sle-15-x86_64","installer_updates":false,"name":"SUSE-PackageHub-15-SP4-Backports-Debuginfo"},{"description":"SLE-Module-Packagehub-Subpackages15-SP4-Updates for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Packagehub-Subpackages15-SP4-Updates","distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP4/x86_64/update/","enabled":true,"id":5390},{"description":"SLE-Module-Packagehub-Subpackages15-SP4-Debuginfo-Updates for sle-15-x86_64","name":"SLE-Module-Packagehub-Subpackages15-SP4-Debuginfo-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP4/x86_64/update_debug/","enabled":false,"id":5391},{"id":5392,"enabled":true,"url":"https://updates.suse.com/SUSE/Backports/SLE-15-SP4_x86_64/product/","distro_target":"sle-15-x86_64","autorefresh":false,"installer_updates":false,"name":"SUSE-PackageHub-15-SP4-Pool","description":"SUSE-PackageHub-15-SP4-Pool for sle-15-x86_64"},{"installer_updates":false,"name":"SLE-Module-Packagehub-Subpackages15-SP4-Pool","description":"SLE-Module-Packagehub-Subpackages15-SP4-Pool for sle-15-x86_64","enabled":true,"id":5393,"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP4/x86_64/product/"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP4/x86_64/product_debug/","autorefresh":false,"distro_target":"sle-15-x86_64","id":5394,"enabled":false,"description":"SLE-Module-Packagehub-Subpackages15-SP4-Debuginfo-Pool for sle-15-x86_64","name":"SLE-Module-Packagehub-Subpackages15-SP4-Debuginfo-Pool","installer_updates":false},{"description":"SLE-Module-Packagehub-Subpackages15-SP4-Source-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Packagehub-Subpackages15-SP4-Source-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP4/x86_64/product_source/","distro_target":"sle-15-x86_64","autorefresh":false,"id":5395,"enabled":false}],"product_type":"module","cpe":"cpe:/o:suse:packagehub:15:sp4","free":true,"shortname":"SUSE-PackageHub-15","description":"SUSE Package Hub is a free of charge module providing access to community maintained packages built to run on SUSE Linux Enterprise Server. Built from the same sources used in the openSUSE distributions, these quality packages provide additional software to what is found in the SUSE Linux Enterprise Server product. Packages from the Package Hub are delivered without L3 support from SUSE. General updates and fixes to the packages in SUSE Package Hub are provided by the openSUSE community based on their discretion, though SUSE will monitor and ensure that any known critical security issues will be addressed. Packages in the Package Hub are approved by SUSE for use with SUSE Linux Enterprise Server 15-SP4 and to not interfere with the supportability of SUSE Linux Enterprise Server, its modules and extensions. For more information about SUSE Package Hub please visit https://packagehub.suse.com.","eula_url":"","arch":"x86_64"},{"description":"

This module contains the Python 3 packages.

Access to the Python 3 Module is included in your SUSE Linux Enterprise subscription. The module has a different lifecycle than SUSE Linux Enterprise itself; please check the Release Notes for further details.

","shortname":"Python 3-Module","free":true,"arch":"x86_64","eula_url":"","online_predecessor_ids":[],"product_class":"MODULE","repositories":[{"name":"SLE-Module-Python3-15-SP4-Updates","installer_updates":false,"description":"SLE-Module-Python3-15-SP4-Updates for sle-15-x86_64","enabled":true,"id":5582,"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Python3/15-SP4/x86_64/update/"},{"installer_updates":false,"name":"SLE-Module-Python3-15-SP4-Debuginfo-Updates","description":"SLE-Module-Python3-15-SP4-Debuginfo-Updates for sle-15-x86_64","id":5583,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Python3/15-SP4/x86_64/update_debug/","distro_target":"sle-15-x86_64","autorefresh":true},{"name":"SLE-Module-Python3-15-SP4-Pool","installer_updates":false,"description":"SLE-Module-Python3-15-SP4-Pool for sle-15-x86_64","enabled":true,"id":5584,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Python3/15-SP4/x86_64/product/"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Python3/15-SP4/x86_64/product_debug/","autorefresh":false,"distro_target":"sle-15-x86_64","id":5585,"enabled":false,"description":"SLE-Module-Python3-15-SP4-Debuginfo-Pool for sle-15-x86_64","name":"SLE-Module-Python3-15-SP4-Debuginfo-Pool","installer_updates":false},{"installer_updates":false,"name":"SLE-Module-Python3-15-SP4-Source-Pool","description":"SLE-Module-Python3-15-SP4-Source-Pool for sle-15-x86_64","enabled":false,"id":5586,"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Python3/15-SP4/x86_64/product_source/"}],"predecessor_ids":[],"cpe":"cpe:/o:suse:sle-module-python3:15:sp4","product_type":"module","version":"15.4","recommended":false,"friendly_name":"Python 3 Module 15 SP4 x86_64","migration_extra":false,"former_identifier":"sle-module-python3","release_type":null,"name":"Python 3 Module","offline_predecessor_ids":[],"friendly_version":"15 SP4","identifier":"sle-module-python3","release_stage":"released","id":2405,"extensions":[]}],"friendly_version":"15 SP4","release_type":null,"former_identifier":"sle-module-basesystem","migration_extra":false,"friendly_name":"Basesystem Module 15 SP4 x86_64","offline_predecessor_ids":[1212,1368,1440],"name":"Basesystem Module","version":"15.4","recommended":true},{"eula_url":"","arch":"x86_64","free":true,"description":"

This module contains the certification packages.

Access to the Certifications Module is included in your SUSE Linux Enterprise subscription. The module has a different lifecycle than SUSE Linux Enterprise itself; please check the Release Notes for further details.

","shortname":"Certifications-Module","product_type":"module","cpe":"cpe:/o:suse:sle-module-certifications:15:sp4","predecessor_ids":[],"product_class":"MODULE","online_predecessor_ids":[],"repositories":[{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Certifications/15-SP4/x86_64/update/","distro_target":"sle-15-x86_64","autorefresh":true,"id":5547,"enabled":true,"description":"SLE-Module-Certifications-15-SP4-Updates for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Certifications-15-SP4-Updates"},{"description":"SLE-Module-Certifications-15-SP4-Debuginfo-Updates for sle-15-x86_64","name":"SLE-Module-Certifications-15-SP4-Debuginfo-Updates","installer_updates":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Certifications/15-SP4/x86_64/update_debug/","autorefresh":true,"distro_target":"sle-15-x86_64","id":5548,"enabled":false},{"description":"SLE-Module-Certifications-15-SP4-Pool for sle-15-x86_64","name":"SLE-Module-Certifications-15-SP4-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Certifications/15-SP4/x86_64/product/","autorefresh":false,"distro_target":"sle-15-x86_64","id":5549,"enabled":true},{"description":"SLE-Module-Certifications-15-SP4-Debuginfo-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Certifications-15-SP4-Debuginfo-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Certifications/15-SP4/x86_64/product_debug/","distro_target":"sle-15-x86_64","autorefresh":false,"id":5550,"enabled":false},{"name":"SLE-Module-Certifications-15-SP4-Source-Pool","installer_updates":false,"description":"SLE-Module-Certifications-15-SP4-Source-Pool for sle-15-x86_64","id":5551,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Certifications/15-SP4/x86_64/product_source/","autorefresh":false,"distro_target":"sle-15-x86_64"}],"offline_predecessor_ids":[],"name":"Certifications Module","release_type":null,"former_identifier":"sle-module-certifications","migration_extra":false,"friendly_name":"Certifications Module 15 SP4 x86_64","recommended":false,"version":"15.4","extensions":[],"release_stage":"released","identifier":"sle-module-certifications","id":2393,"friendly_version":"15 SP4"}]},{"predecessor_ids":[1609,1764,1935,2134],"repositories":[{"id":5116,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-SLED/15-SP4/x86_64/update/","autorefresh":true,"distro_target":"sle-15-x86_64","name":"SLE-Product-SLED15-SP4-Updates","installer_updates":false,"description":"SLE-Product-SLED15-SP4-Updates for sle-15-x86_64"},{"description":"SLE-Product-SLED15-SP4-Debuginfo-Updates for sle-15-x86_64","name":"SLE-Product-SLED15-SP4-Debuginfo-Updates","installer_updates":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-SLED/15-SP4/x86_64/update_debug/","autorefresh":true,"distro_target":"sle-15-x86_64","id":5117,"enabled":false},{"installer_updates":false,"name":"SLE-Product-SLED15-SP4-Pool","description":"SLE-Product-SLED15-SP4-Pool for sle-15-x86_64","id":5118,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-SLED/15-SP4/x86_64/product/","distro_target":"sle-15-x86_64","autorefresh":false},{"id":5120,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-SLED/15-SP4/x86_64/product_debug/","distro_target":"sle-15-x86_64","autorefresh":false,"installer_updates":false,"name":"SLE-Product-SLED15-SP4-Debuginfo-Pool","description":"SLE-Product-SLED15-SP4-Debuginfo-Pool for sle-15-x86_64"},{"id":5121,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-SLED/15-SP4/x86_64/product_source/","distro_target":"sle-15-x86_64","autorefresh":false,"installer_updates":false,"name":"SLE-Product-SLED15-SP4-Source-Pool","description":"SLE-Product-SLED15-SP4-Source-Pool for sle-15-x86_64"}],"online_predecessor_ids":[1609,1764,1935,2134],"product_class":"7260","product_type":"base","cpe":"cpe:/o:suse:sled:15:sp4","free":false,"shortname":"SLED15-SP4","description":"SUSE Linux Enterprise offers a comprehensive suite of products built on a single code base. The platform addresses business needs from the smallest thin-client devices to the world's most powerful high-performance computing and mainframe servers. SUSE Linux Enterprise offers common management tools and technology certifications across the platform, and each product is enterprise-class. SUSE Linux Enterprise provides more than a cute desktop product or a basic server offering. It is the only Linux platform for enterprise computing, and it is now replacing UNIX* and Windows* as well.","eula_url":"https://updates.suse.com/SUSE/Products/SLE-Product-SLED/15-SP4/x86_64/product.license/","arch":"x86_64","friendly_version":"15 SP4","extensions":[{"extensions":[{"product_class":"MODULE","online_predecessor_ids":[1578,1776,1967,2149],"repositories":[{"id":5157,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15-SP4/x86_64/update/","autorefresh":true,"distro_target":"sle-15-x86_64","name":"SLE-Module-Desktop-Applications15-SP4-Updates","installer_updates":false,"description":"SLE-Module-Desktop-Applications15-SP4-Updates for sle-15-x86_64"},{"description":"SLE-Module-Desktop-Applications15-SP4-Debuginfo-Updates for sle-15-x86_64","name":"SLE-Module-Desktop-Applications15-SP4-Debuginfo-Updates","installer_updates":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15-SP4/x86_64/update_debug/","autorefresh":true,"distro_target":"sle-15-x86_64","id":5158,"enabled":false},{"id":5159,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP4/x86_64/product/","autorefresh":false,"distro_target":"sle-15-x86_64","name":"SLE-Module-Desktop-Applications15-SP4-Pool","installer_updates":false,"description":"SLE-Module-Desktop-Applications15-SP4-Pool for sle-15-x86_64"},{"id":5160,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP4/x86_64/product_debug/","autorefresh":false,"distro_target":"sle-15-x86_64","name":"SLE-Module-Desktop-Applications15-SP4-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-Desktop-Applications15-SP4-Debuginfo-Pool for sle-15-x86_64"},{"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP4/x86_64/product_source/","enabled":false,"id":5161,"description":"SLE-Module-Desktop-Applications15-SP4-Source-Pool for sle-15-x86_64","name":"SLE-Module-Desktop-Applications15-SP4-Source-Pool","installer_updates":false}],"predecessor_ids":[1578,1776,1967,2149],"cpe":"cpe:/o:suse:sle-module-desktop-applications:15:sp4","product_type":"module","shortname":"Desktop-Applications-Module","description":"

The SUSE Linux Enterprise Desktop Applications Module delivers a basic set of Desktop functionality.

Access to the Desktop Applications Module is included in your SUSE Linux Enterprise product subscription.

","free":true,"arch":"x86_64","eula_url":"","friendly_version":"15 SP4","release_stage":"released","id":2303,"identifier":"sle-module-desktop-applications","extensions":[{"eula_url":"","arch":"x86_64","shortname":"Development-Tools-Module","description":"

The Development Tools Module helps you developing applications for SUSE Linux Enterprise 15.

Access to the Development Tools Module is included in your SUSE Linux Enterprise product subscription. The module has a different lifecycle than SUSE Linux Enterprise itself.

","free":true,"cpe":"cpe:/o:suse:sle-module-development-tools:15:sp4","product_type":"module","predecessor_ids":[1579,1794,1971,2161],"repositories":[{"name":"SLE-Module-DevTools15-SP4-Updates","installer_updates":false,"description":"SLE-Module-DevTools15-SP4-Updates for sle-15-x86_64","enabled":true,"id":5217,"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15-SP4/x86_64/update/"},{"enabled":false,"id":5218,"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15-SP4/x86_64/update_debug/","name":"SLE-Module-DevTools15-SP4-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-DevTools15-SP4-Debuginfo-Updates for sle-15-x86_64"},{"description":"SLE-Module-DevTools15-SP4-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-DevTools15-SP4-Pool","distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP4/x86_64/product/","enabled":true,"id":5219},{"enabled":false,"id":5220,"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP4/x86_64/product_debug/","installer_updates":false,"name":"SLE-Module-DevTools15-SP4-Debuginfo-Pool","description":"SLE-Module-DevTools15-SP4-Debuginfo-Pool for sle-15-x86_64"},{"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP4/x86_64/product_source/","enabled":false,"id":5221,"description":"SLE-Module-DevTools15-SP4-Source-Pool for sle-15-x86_64","name":"SLE-Module-DevTools15-SP4-Source-Pool","installer_updates":false}],"online_predecessor_ids":[1579,1794,1971,2161],"product_class":"MODULE","name":"Development Tools Module","offline_predecessor_ids":[1341,1427,1630,1892],"friendly_name":"Development Tools Module 15 SP4 x86_64","migration_extra":false,"former_identifier":"sle-sdk","release_type":null,"recommended":false,"version":"15.4","extensions":[],"release_stage":"released","identifier":"sle-module-development-tools","id":2315,"friendly_version":"15 SP4"},{"version":"15.4","recommended":true,"former_identifier":"sle-we","release_type":null,"friendly_name":"SUSE Linux Enterprise Workstation Extension 15 SP4 x86_64","migration_extra":false,"offline_predecessor_ids":[1431,1639,1893],"name":"SUSE Linux Enterprise Workstation Extension","friendly_version":"15 SP4","id":2343,"release_stage":"released","identifier":"sle-we","extensions":[],"free":false,"description":"SUSE Linux Enterprise Workstation Extension adds additional functionality to a base SUSE Linux Enterprise installation. The Workstation Extension offers additional desktop applications (office suite, email client, graphical editor, multimedia tools) and libraries. Workstation Extension is enabled and installed by default on SUSE Linux Enterprise Desktop installation. Adding the Workstation Extension to a SUSE Linux Enterprise Server installation allows to seamlessly combine both products to create a full featured server workstation.","shortname":"SLEWE15-SP4","arch":"x86_64","eula_url":"https://updates.suse.com/SUSE/Products/SLE-Product-WE/15-SP4/x86_64/product.license/","online_predecessor_ids":[1583,1781,1999,2196],"repositories":[{"id":5119,"enabled":true,"url":"https://download.nvidia.com/suse/sle15sp4/","autorefresh":true,"distro_target":null,"name":"SLE-15-SP4-Desktop-NVIDIA-Driver","installer_updates":false,"description":"SLE-15-SP4-Desktop-NVIDIA-Driver"},{"description":"SLE-Product-WE15-SP4-Updates for sle-15-x86_64","name":"SLE-Product-WE15-SP4-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Product-WE/15-SP4/x86_64/update/","enabled":true,"id":5357},{"description":"SLE-Product-WE15-SP4-Debuginfo-Updates for sle-15-x86_64","installer_updates":false,"name":"SLE-Product-WE15-SP4-Debuginfo-Updates","distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-WE/15-SP4/x86_64/update_debug/","enabled":false,"id":5358},{"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Product-WE/15-SP4/x86_64/product/","enabled":true,"id":5359,"description":"SLE-Product-WE15-SP4-Pool for sle-15-x86_64","name":"SLE-Product-WE15-SP4-Pool","installer_updates":false},{"enabled":false,"id":5360,"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-WE/15-SP4/x86_64/product_debug/","installer_updates":false,"name":"SLE-Product-WE15-SP4-Debuginfo-Pool","description":"SLE-Product-WE15-SP4-Debuginfo-Pool for sle-15-x86_64"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Product-WE/15-SP4/x86_64/product_source/","autorefresh":false,"distro_target":"sle-15-x86_64","id":5361,"enabled":false,"description":"SLE-Product-WE15-SP4-Source-Pool for sle-15-x86_64","name":"SLE-Product-WE15-SP4-Source-Pool","installer_updates":false}],"product_class":"SLE-WE","predecessor_ids":[1583,1781,1999,2196],"product_type":"extension","cpe":"cpe:/o:suse:sle-we:15:sp4"}],"version":"15.4","recommended":true,"friendly_name":"Desktop Applications Module 15 SP4 x86_64","migration_extra":false,"release_type":null,"former_identifier":"sle-module-desktop-applications","name":"Desktop Applications Module","offline_predecessor_ids":[]},{"description":"SUSE Package Hub is a free of charge module providing access to community maintained packages built to run on SUSE Linux Enterprise Server. Built from the same sources used in the openSUSE distributions, these quality packages provide additional software to what is found in the SUSE Linux Enterprise Server product. Packages from the Package Hub are delivered without L3 support from SUSE. General updates and fixes to the packages in SUSE Package Hub are provided by the openSUSE community based on their discretion, though SUSE will monitor and ensure that any known critical security issues will be addressed. Packages in the Package Hub are approved by SUSE for use with SUSE Linux Enterprise Server 15-SP4 and to not interfere with the supportability of SUSE Linux Enterprise Server, its modules and extensions. For more information about SUSE Package Hub please visit https://packagehub.suse.com.","shortname":"SUSE-PackageHub-15","free":true,"arch":"x86_64","eula_url":"","product_class":"MODULE","online_predecessor_ids":[1743,1871,1950,2191],"repositories":[{"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Backports/SLE-15-SP4_x86_64/standard/","enabled":true,"id":5388,"description":"SUSE-PackageHub-15-SP4-Backports-Pool for sle-15-x86_64","name":"SUSE-PackageHub-15-SP4-Backports-Pool","installer_updates":false},{"description":"SUSE-PackageHub-15-SP4-Backports-Debuginfo for sle-15-x86_64","installer_updates":false,"name":"SUSE-PackageHub-15-SP4-Backports-Debuginfo","distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Backports/SLE-15-SP4_x86_64/standard_debug/","enabled":false,"id":5389},{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP4/x86_64/update/","distro_target":"sle-15-x86_64","autorefresh":true,"id":5390,"enabled":true,"description":"SLE-Module-Packagehub-Subpackages15-SP4-Updates for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Packagehub-Subpackages15-SP4-Updates"},{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP4/x86_64/update_debug/","distro_target":"sle-15-x86_64","autorefresh":true,"id":5391,"enabled":false,"description":"SLE-Module-Packagehub-Subpackages15-SP4-Debuginfo-Updates for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Packagehub-Subpackages15-SP4-Debuginfo-Updates"},{"name":"SUSE-PackageHub-15-SP4-Pool","installer_updates":false,"description":"SUSE-PackageHub-15-SP4-Pool for sle-15-x86_64","enabled":true,"id":5392,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Backports/SLE-15-SP4_x86_64/product/"},{"installer_updates":false,"name":"SLE-Module-Packagehub-Subpackages15-SP4-Pool","description":"SLE-Module-Packagehub-Subpackages15-SP4-Pool for sle-15-x86_64","enabled":true,"id":5393,"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP4/x86_64/product/"},{"enabled":false,"id":5394,"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP4/x86_64/product_debug/","installer_updates":false,"name":"SLE-Module-Packagehub-Subpackages15-SP4-Debuginfo-Pool","description":"SLE-Module-Packagehub-Subpackages15-SP4-Debuginfo-Pool for sle-15-x86_64"},{"description":"SLE-Module-Packagehub-Subpackages15-SP4-Source-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Packagehub-Subpackages15-SP4-Source-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP4/x86_64/product_source/","distro_target":"sle-15-x86_64","autorefresh":false,"id":5395,"enabled":false}],"predecessor_ids":[1743,1871,1950,2191],"cpe":"cpe:/o:suse:packagehub:15:sp4","product_type":"module","version":"15.4","recommended":false,"migration_extra":false,"friendly_name":"SUSE Package Hub 15 SP4 x86_64","former_identifier":"PackageHub","release_type":null,"name":"SUSE Package Hub","offline_predecessor_ids":[1529,1813,1915],"friendly_version":"15 SP4","identifier":"PackageHub","release_stage":"released","id":2347,"extensions":[]},{"eula_url":"","arch":"x86_64","free":true,"shortname":"Python 3-Module","description":"

This module contains the Python 3 packages.

Access to the Python 3 Module is included in your SUSE Linux Enterprise subscription. The module has a different lifecycle than SUSE Linux Enterprise itself; please check the Release Notes for further details.

","product_type":"module","cpe":"cpe:/o:suse:sle-module-python3:15:sp4","predecessor_ids":[],"online_predecessor_ids":[],"repositories":[{"enabled":true,"id":5582,"distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Python3/15-SP4/x86_64/update/","installer_updates":false,"name":"SLE-Module-Python3-15-SP4-Updates","description":"SLE-Module-Python3-15-SP4-Updates for sle-15-x86_64"},{"enabled":false,"id":5583,"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Python3/15-SP4/x86_64/update_debug/","name":"SLE-Module-Python3-15-SP4-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-Python3-15-SP4-Debuginfo-Updates for sle-15-x86_64"},{"id":5584,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Python3/15-SP4/x86_64/product/","distro_target":"sle-15-x86_64","autorefresh":false,"installer_updates":false,"name":"SLE-Module-Python3-15-SP4-Pool","description":"SLE-Module-Python3-15-SP4-Pool for sle-15-x86_64"},{"name":"SLE-Module-Python3-15-SP4-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-Python3-15-SP4-Debuginfo-Pool for sle-15-x86_64","enabled":false,"id":5585,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Python3/15-SP4/x86_64/product_debug/"},{"description":"SLE-Module-Python3-15-SP4-Source-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Python3-15-SP4-Source-Pool","distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Python3/15-SP4/x86_64/product_source/","enabled":false,"id":5586}],"product_class":"MODULE","offline_predecessor_ids":[],"name":"Python 3 Module","former_identifier":"sle-module-python3","release_type":null,"friendly_name":"Python 3 Module 15 SP4 x86_64","migration_extra":false,"recommended":false,"version":"15.4","extensions":[],"identifier":"sle-module-python3","release_stage":"released","id":2405,"friendly_version":"15 SP4"}],"release_stage":"released","id":2299,"identifier":"sle-module-basesystem","friendly_version":"15 SP4","name":"Basesystem Module","offline_predecessor_ids":[1212,1368,1440],"friendly_name":"Basesystem Module 15 SP4 x86_64","migration_extra":false,"former_identifier":"sle-module-basesystem","release_type":null,"recommended":true,"version":"15.4","cpe":"cpe:/o:suse:sle-module-basesystem:15:sp4","product_type":"module","predecessor_ids":[1576,1772,1946,2145],"product_class":"MODULE","online_predecessor_ids":[1576,1772,1946,2145],"repositories":[{"description":"SLE-Module-Basesystem15-SP4-Updates for sle-15-x86_64","name":"SLE-Module-Basesystem15-SP4-Updates","installer_updates":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15-SP4/x86_64/update/","autorefresh":true,"distro_target":"sle-15-x86_64","id":5137,"enabled":true},{"distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15-SP4/x86_64/update_debug/","enabled":false,"id":5138,"description":"SLE-Module-Basesystem15-SP4-Debuginfo-Updates for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Basesystem15-SP4-Debuginfo-Updates"},{"description":"SLE-Module-Basesystem15-SP4-Pool for sle-15-x86_64","name":"SLE-Module-Basesystem15-SP4-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP4/x86_64/product/","enabled":true,"id":5139},{"description":"SLE-Module-Basesystem15-SP4-Debuginfo-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Basesystem15-SP4-Debuginfo-Pool","distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP4/x86_64/product_debug/","enabled":false,"id":5140},{"installer_updates":false,"name":"SLE-Module-Basesystem15-SP4-Source-Pool","description":"SLE-Module-Basesystem15-SP4-Source-Pool for sle-15-x86_64","id":5141,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP4/x86_64/product_source/","distro_target":"sle-15-x86_64","autorefresh":false}],"eula_url":"","arch":"x86_64","description":"

The SUSE Linux Enterprise Basesystem Module delivers the base system of the product.

","shortname":"Basesystem-Module","free":true},{"friendly_version":"15 SP4","extensions":[],"release_stage":"released","identifier":"sle-module-certifications","id":2393,"recommended":false,"version":"15.4","name":"Certifications Module","offline_predecessor_ids":[],"friendly_name":"Certifications Module 15 SP4 x86_64","migration_extra":false,"former_identifier":"sle-module-certifications","release_type":null,"predecessor_ids":[],"online_predecessor_ids":[],"product_class":"MODULE","repositories":[{"installer_updates":false,"name":"SLE-Module-Certifications-15-SP4-Updates","description":"SLE-Module-Certifications-15-SP4-Updates for sle-15-x86_64","enabled":true,"id":5547,"distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Certifications/15-SP4/x86_64/update/"},{"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Certifications/15-SP4/x86_64/update_debug/","enabled":false,"id":5548,"description":"SLE-Module-Certifications-15-SP4-Debuginfo-Updates for sle-15-x86_64","name":"SLE-Module-Certifications-15-SP4-Debuginfo-Updates","installer_updates":false},{"description":"SLE-Module-Certifications-15-SP4-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Certifications-15-SP4-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Certifications/15-SP4/x86_64/product/","distro_target":"sle-15-x86_64","autorefresh":false,"id":5549,"enabled":true},{"enabled":false,"id":5550,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Certifications/15-SP4/x86_64/product_debug/","name":"SLE-Module-Certifications-15-SP4-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-Certifications-15-SP4-Debuginfo-Pool for sle-15-x86_64"},{"id":5551,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Certifications/15-SP4/x86_64/product_source/","autorefresh":false,"distro_target":"sle-15-x86_64","name":"SLE-Module-Certifications-15-SP4-Source-Pool","installer_updates":false,"description":"SLE-Module-Certifications-15-SP4-Source-Pool for sle-15-x86_64"}],"cpe":"cpe:/o:suse:sle-module-certifications:15:sp4","product_type":"module","description":"

This module contains the certification packages.

Access to the Certifications Module is included in your SUSE Linux Enterprise subscription. The module has a different lifecycle than SUSE Linux Enterprise itself; please check the Release Notes for further details.

","shortname":"Certifications-Module","free":true,"eula_url":"","arch":"x86_64"}],"id":2295,"release_stage":"released","identifier":"SLED","recommended":false,"version":"15.4","offline_predecessor_ids":[1425,1629],"name":"SUSE Linux Enterprise Desktop","release_type":null,"former_identifier":"SLED","friendly_name":"SUSE Linux Enterprise Desktop 15 SP4 x86_64","migration_extra":false},{"offline_predecessor_ids":[1522],"name":"Basesystem Module","former_identifier":"sle-module-basesystem","release_type":null,"friendly_name":"Basesystem Module 15 SP4 aarch64","migration_extra":false,"recommended":false,"version":"15.4","extensions":[],"release_stage":"released","identifier":"sle-module-basesystem","id":2296,"friendly_version":"15 SP4","eula_url":"","arch":"aarch64","free":true,"description":"

The SUSE Linux Enterprise Basesystem Module delivers the base system of the product.

","shortname":"Basesystem-Module","product_type":"module","cpe":"cpe:/o:suse:sle-module-basesystem:15:sp4","predecessor_ids":[1589,1769,1943,2142],"product_class":"MODULE","online_predecessor_ids":[1589,1769,1943,2142],"repositories":[{"name":"SLE-Module-Basesystem15-SP4-Updates","installer_updates":false,"description":"SLE-Module-Basesystem15-SP4-Updates for sle-15-aarch64","id":5122,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15-SP4/aarch64/update/","autorefresh":true,"distro_target":"sle-15-aarch64"},{"id":5123,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15-SP4/aarch64/update_debug/","autorefresh":true,"distro_target":"sle-15-aarch64","name":"SLE-Module-Basesystem15-SP4-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-Basesystem15-SP4-Debuginfo-Updates for sle-15-aarch64"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP4/aarch64/product/","autorefresh":false,"distro_target":"sle-15-aarch64","id":5124,"enabled":true,"description":"SLE-Module-Basesystem15-SP4-Pool for sle-15-aarch64","name":"SLE-Module-Basesystem15-SP4-Pool","installer_updates":false},{"enabled":false,"id":5125,"distro_target":"sle-15-aarch64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP4/aarch64/product_debug/","installer_updates":false,"name":"SLE-Module-Basesystem15-SP4-Debuginfo-Pool","description":"SLE-Module-Basesystem15-SP4-Debuginfo-Pool for sle-15-aarch64"},{"description":"SLE-Module-Basesystem15-SP4-Source-Pool for sle-15-aarch64","name":"SLE-Module-Basesystem15-SP4-Source-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP4/aarch64/product_source/","enabled":false,"id":5126}]},{"version":"15.4","recommended":false,"release_type":null,"former_identifier":"sle-module-basesystem","friendly_name":"Basesystem Module 15 SP4 ppc64le","migration_extra":false,"offline_predecessor_ids":[1294],"name":"Basesystem Module","friendly_version":"15 SP4","release_stage":"released","identifier":"sle-module-basesystem","id":2297,"extensions":[],"free":true,"shortname":"Basesystem-Module","description":"

The SUSE Linux Enterprise Basesystem Module delivers the base system of the product.

","arch":"ppc64le","eula_url":"","product_class":"MODULE","online_predecessor_ids":[1588,1770,1944,2143],"repositories":[{"name":"SLE-Module-Basesystem15-SP4-Updates","installer_updates":false,"description":"SLE-Module-Basesystem15-SP4-Updates for sle-15-ppc64le","id":5127,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15-SP4/ppc64le/update/","autorefresh":true,"distro_target":"sle-15-ppc64le"},{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15-SP4/ppc64le/update_debug/","autorefresh":true,"distro_target":"sle-15-ppc64le","id":5128,"enabled":false,"description":"SLE-Module-Basesystem15-SP4-Debuginfo-Updates for sle-15-ppc64le","name":"SLE-Module-Basesystem15-SP4-Debuginfo-Updates","installer_updates":false},{"id":5129,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP4/ppc64le/product/","distro_target":"sle-15-ppc64le","autorefresh":false,"installer_updates":false,"name":"SLE-Module-Basesystem15-SP4-Pool","description":"SLE-Module-Basesystem15-SP4-Pool for sle-15-ppc64le"},{"id":5130,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP4/ppc64le/product_debug/","autorefresh":false,"distro_target":"sle-15-ppc64le","name":"SLE-Module-Basesystem15-SP4-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-Basesystem15-SP4-Debuginfo-Pool for sle-15-ppc64le"},{"autorefresh":false,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP4/ppc64le/product_source/","enabled":false,"id":5131,"description":"SLE-Module-Basesystem15-SP4-Source-Pool for sle-15-ppc64le","name":"SLE-Module-Basesystem15-SP4-Source-Pool","installer_updates":false}],"predecessor_ids":[1588,1770,1944,2143],"product_type":"module","cpe":"cpe:/o:suse:sle-module-basesystem:15:sp4"},{"name":"Basesystem Module","offline_predecessor_ids":[1295,1367],"migration_extra":false,"friendly_name":"Basesystem Module 15 SP4 s390x","release_type":null,"former_identifier":"sle-module-basesystem","recommended":false,"version":"15.4","extensions":[],"release_stage":"released","id":2298,"identifier":"sle-module-basesystem","friendly_version":"15 SP4","eula_url":"","arch":"s390x","description":"

The SUSE Linux Enterprise Basesystem Module delivers the base system of the product.

","shortname":"Basesystem-Module","free":true,"cpe":"cpe:/o:suse:sle-module-basesystem:15:sp4","product_type":"module","predecessor_ids":[1587,1771,1945,2144],"online_predecessor_ids":[1587,1771,1945,2144],"product_class":"MODULE","repositories":[{"enabled":true,"id":5132,"distro_target":"sle-15-s390x","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15-SP4/s390x/update/","installer_updates":false,"name":"SLE-Module-Basesystem15-SP4-Updates","description":"SLE-Module-Basesystem15-SP4-Updates for sle-15-s390x"},{"description":"SLE-Module-Basesystem15-SP4-Debuginfo-Updates for sle-15-s390x","name":"SLE-Module-Basesystem15-SP4-Debuginfo-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-15-s390x","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15-SP4/s390x/update_debug/","enabled":false,"id":5133},{"distro_target":"sle-15-s390x","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP4/s390x/product/","enabled":true,"id":5134,"description":"SLE-Module-Basesystem15-SP4-Pool for sle-15-s390x","installer_updates":false,"name":"SLE-Module-Basesystem15-SP4-Pool"},{"description":"SLE-Module-Basesystem15-SP4-Debuginfo-Pool for sle-15-s390x","installer_updates":false,"name":"SLE-Module-Basesystem15-SP4-Debuginfo-Pool","distro_target":"sle-15-s390x","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP4/s390x/product_debug/","enabled":false,"id":5135},{"distro_target":"sle-15-s390x","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP4/s390x/product_source/","enabled":false,"id":5136,"description":"SLE-Module-Basesystem15-SP4-Source-Pool for sle-15-s390x","installer_updates":false,"name":"SLE-Module-Basesystem15-SP4-Source-Pool"}]},{"friendly_name":"Basesystem Module 15 SP4 x86_64","migration_extra":false,"release_type":null,"former_identifier":"sle-module-basesystem","name":"Basesystem Module","offline_predecessor_ids":[1212,1368,1440],"version":"15.4","recommended":false,"id":2299,"release_stage":"released","identifier":"sle-module-basesystem","extensions":[],"friendly_version":"15 SP4","arch":"x86_64","eula_url":"","shortname":"Basesystem-Module","description":"

The SUSE Linux Enterprise Basesystem Module delivers the base system of the product.

","free":true,"cpe":"cpe:/o:suse:sle-module-basesystem:15:sp4","product_type":"module","online_predecessor_ids":[1576,1772,1946,2145],"repositories":[{"description":"SLE-Module-Basesystem15-SP4-Updates for sle-15-x86_64","name":"SLE-Module-Basesystem15-SP4-Updates","installer_updates":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15-SP4/x86_64/update/","autorefresh":true,"distro_target":"sle-15-x86_64","id":5137,"enabled":true},{"name":"SLE-Module-Basesystem15-SP4-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-Basesystem15-SP4-Debuginfo-Updates for sle-15-x86_64","id":5138,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15-SP4/x86_64/update_debug/","autorefresh":true,"distro_target":"sle-15-x86_64"},{"description":"SLE-Module-Basesystem15-SP4-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Basesystem15-SP4-Pool","distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP4/x86_64/product/","enabled":true,"id":5139},{"name":"SLE-Module-Basesystem15-SP4-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-Basesystem15-SP4-Debuginfo-Pool for sle-15-x86_64","id":5140,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP4/x86_64/product_debug/","autorefresh":false,"distro_target":"sle-15-x86_64"},{"enabled":false,"id":5141,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP4/x86_64/product_source/","name":"SLE-Module-Basesystem15-SP4-Source-Pool","installer_updates":false,"description":"SLE-Module-Basesystem15-SP4-Source-Pool for sle-15-x86_64"}],"product_class":"MODULE","predecessor_ids":[1576,1772,1946,2145]},{"friendly_version":"15 SP4","extensions":[],"release_stage":"released","identifier":"sle-module-desktop-applications","id":2300,"recommended":false,"version":"15.4","offline_predecessor_ids":[],"name":"Desktop Applications Module","former_identifier":"sle-module-desktop-applications","release_type":null,"friendly_name":"Desktop Applications Module 15 SP4 aarch64","migration_extra":false,"predecessor_ids":[1595,1773,1964,2146],"repositories":[{"enabled":true,"id":5142,"autorefresh":true,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15-SP4/aarch64/update/","name":"SLE-Module-Desktop-Applications15-SP4-Updates","installer_updates":false,"description":"SLE-Module-Desktop-Applications15-SP4-Updates for sle-15-aarch64"},{"description":"SLE-Module-Desktop-Applications15-SP4-Debuginfo-Updates for sle-15-aarch64","name":"SLE-Module-Desktop-Applications15-SP4-Debuginfo-Updates","installer_updates":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15-SP4/aarch64/update_debug/","autorefresh":true,"distro_target":"sle-15-aarch64","id":5143,"enabled":false},{"id":5144,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP4/aarch64/product/","autorefresh":false,"distro_target":"sle-15-aarch64","name":"SLE-Module-Desktop-Applications15-SP4-Pool","installer_updates":false,"description":"SLE-Module-Desktop-Applications15-SP4-Pool for sle-15-aarch64"},{"distro_target":"sle-15-aarch64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP4/aarch64/product_debug/","enabled":false,"id":5145,"description":"SLE-Module-Desktop-Applications15-SP4-Debuginfo-Pool for sle-15-aarch64","installer_updates":false,"name":"SLE-Module-Desktop-Applications15-SP4-Debuginfo-Pool"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP4/aarch64/product_source/","autorefresh":false,"distro_target":"sle-15-aarch64","id":5146,"enabled":false,"description":"SLE-Module-Desktop-Applications15-SP4-Source-Pool for sle-15-aarch64","name":"SLE-Module-Desktop-Applications15-SP4-Source-Pool","installer_updates":false}],"online_predecessor_ids":[1595,1773,1964,2146],"product_class":"MODULE","product_type":"module","cpe":"cpe:/o:suse:sle-module-desktop-applications:15:sp4","free":true,"description":"

The SUSE Linux Enterprise Desktop Applications Module delivers a basic set of Desktop functionality.

Access to the Desktop Applications Module is included in your SUSE Linux Enterprise product subscription.

","shortname":"Desktop-Applications-Module","eula_url":"","arch":"aarch64"},{"offline_predecessor_ids":[],"name":"Desktop Applications Module","release_type":null,"former_identifier":"sle-module-desktop-applications","migration_extra":false,"friendly_name":"Desktop Applications Module 15 SP4 ppc64le","recommended":false,"version":"15.4","extensions":[],"identifier":"sle-module-desktop-applications","release_stage":"released","id":2301,"friendly_version":"15 SP4","eula_url":"","arch":"ppc64le","free":true,"shortname":"Desktop-Applications-Module","description":"

The SUSE Linux Enterprise Desktop Applications Module delivers a basic set of Desktop functionality.

Access to the Desktop Applications Module is included in your SUSE Linux Enterprise product subscription.

","product_type":"module","cpe":"cpe:/o:suse:sle-module-desktop-applications:15:sp4","predecessor_ids":[1594,1774,1965,2147],"product_class":"MODULE","online_predecessor_ids":[1594,1774,1965,2147],"repositories":[{"distro_target":"sle-15-ppc64le","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15-SP4/ppc64le/update/","enabled":true,"id":5147,"description":"SLE-Module-Desktop-Applications15-SP4-Updates for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-Desktop-Applications15-SP4-Updates"},{"enabled":false,"id":5148,"autorefresh":true,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15-SP4/ppc64le/update_debug/","name":"SLE-Module-Desktop-Applications15-SP4-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-Desktop-Applications15-SP4-Debuginfo-Updates for sle-15-ppc64le"},{"installer_updates":false,"name":"SLE-Module-Desktop-Applications15-SP4-Pool","description":"SLE-Module-Desktop-Applications15-SP4-Pool for sle-15-ppc64le","enabled":true,"id":5149,"distro_target":"sle-15-ppc64le","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP4/ppc64le/product/"},{"description":"SLE-Module-Desktop-Applications15-SP4-Debuginfo-Pool for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-Desktop-Applications15-SP4-Debuginfo-Pool","distro_target":"sle-15-ppc64le","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP4/ppc64le/product_debug/","enabled":false,"id":5150},{"description":"SLE-Module-Desktop-Applications15-SP4-Source-Pool for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-Desktop-Applications15-SP4-Source-Pool","distro_target":"sle-15-ppc64le","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP4/ppc64le/product_source/","enabled":false,"id":5151}]},{"product_type":"module","cpe":"cpe:/o:suse:sle-module-desktop-applications:15:sp4","product_class":"MODULE","online_predecessor_ids":[1593,1775,1966,2148],"repositories":[{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15-SP4/s390x/update/","autorefresh":true,"distro_target":"sle-15-s390x","id":5152,"enabled":true,"description":"SLE-Module-Desktop-Applications15-SP4-Updates for sle-15-s390x","name":"SLE-Module-Desktop-Applications15-SP4-Updates","installer_updates":false},{"name":"SLE-Module-Desktop-Applications15-SP4-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-Desktop-Applications15-SP4-Debuginfo-Updates for sle-15-s390x","id":5153,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15-SP4/s390x/update_debug/","autorefresh":true,"distro_target":"sle-15-s390x"},{"description":"SLE-Module-Desktop-Applications15-SP4-Pool for sle-15-s390x","name":"SLE-Module-Desktop-Applications15-SP4-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP4/s390x/product/","autorefresh":false,"distro_target":"sle-15-s390x","id":5154,"enabled":true},{"description":"SLE-Module-Desktop-Applications15-SP4-Debuginfo-Pool for sle-15-s390x","name":"SLE-Module-Desktop-Applications15-SP4-Debuginfo-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP4/s390x/product_debug/","autorefresh":false,"distro_target":"sle-15-s390x","id":5155,"enabled":false},{"id":5156,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP4/s390x/product_source/","autorefresh":false,"distro_target":"sle-15-s390x","name":"SLE-Module-Desktop-Applications15-SP4-Source-Pool","installer_updates":false,"description":"SLE-Module-Desktop-Applications15-SP4-Source-Pool for sle-15-s390x"}],"predecessor_ids":[1593,1775,1966,2148],"arch":"s390x","eula_url":"","free":true,"description":"

The SUSE Linux Enterprise Desktop Applications Module delivers a basic set of Desktop functionality.

Access to the Desktop Applications Module is included in your SUSE Linux Enterprise product subscription.

","shortname":"Desktop-Applications-Module","release_stage":"released","identifier":"sle-module-desktop-applications","id":2302,"extensions":[],"friendly_version":"15 SP4","former_identifier":"sle-module-desktop-applications","release_type":null,"migration_extra":false,"friendly_name":"Desktop Applications Module 15 SP4 s390x","offline_predecessor_ids":[],"name":"Desktop Applications Module","version":"15.4","recommended":false},{"release_stage":"released","id":2303,"identifier":"sle-module-desktop-applications","extensions":[],"friendly_version":"15 SP4","release_type":null,"former_identifier":"sle-module-desktop-applications","migration_extra":false,"friendly_name":"Desktop Applications Module 15 SP4 x86_64","offline_predecessor_ids":[],"name":"Desktop Applications Module","version":"15.4","recommended":false,"product_type":"module","cpe":"cpe:/o:suse:sle-module-desktop-applications:15:sp4","repositories":[{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15-SP4/x86_64/update/","autorefresh":true,"distro_target":"sle-15-x86_64","id":5157,"enabled":true,"description":"SLE-Module-Desktop-Applications15-SP4-Updates for sle-15-x86_64","name":"SLE-Module-Desktop-Applications15-SP4-Updates","installer_updates":false},{"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15-SP4/x86_64/update_debug/","enabled":false,"id":5158,"description":"SLE-Module-Desktop-Applications15-SP4-Debuginfo-Updates for sle-15-x86_64","name":"SLE-Module-Desktop-Applications15-SP4-Debuginfo-Updates","installer_updates":false},{"installer_updates":false,"name":"SLE-Module-Desktop-Applications15-SP4-Pool","description":"SLE-Module-Desktop-Applications15-SP4-Pool for sle-15-x86_64","id":5159,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP4/x86_64/product/","distro_target":"sle-15-x86_64","autorefresh":false},{"name":"SLE-Module-Desktop-Applications15-SP4-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-Desktop-Applications15-SP4-Debuginfo-Pool for sle-15-x86_64","enabled":false,"id":5160,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP4/x86_64/product_debug/"},{"name":"SLE-Module-Desktop-Applications15-SP4-Source-Pool","installer_updates":false,"description":"SLE-Module-Desktop-Applications15-SP4-Source-Pool for sle-15-x86_64","id":5161,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP4/x86_64/product_source/","autorefresh":false,"distro_target":"sle-15-x86_64"}],"online_predecessor_ids":[1578,1776,1967,2149],"product_class":"MODULE","predecessor_ids":[1578,1776,1967,2149],"arch":"x86_64","eula_url":"","free":true,"description":"

The SUSE Linux Enterprise Desktop Applications Module delivers a basic set of Desktop functionality.

Access to the Desktop Applications Module is included in your SUSE Linux Enterprise product subscription.

","shortname":"Desktop-Applications-Module"},{"release_stage":"released","id":2304,"identifier":"sle-module-server-applications","extensions":[],"friendly_version":"15 SP4","friendly_name":"Server Applications Module 15 SP4 aarch64","migration_extra":false,"release_type":null,"former_identifier":"sle-module-server-applications","name":"Server Applications Module","offline_predecessor_ids":[],"version":"15.4","recommended":false,"cpe":"cpe:/o:suse:sle-module-server-applications:15:sp4","product_type":"module","repositories":[{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15-SP4/aarch64/update/","distro_target":"sle-15-aarch64","autorefresh":true,"id":5162,"enabled":true,"description":"SLE-Module-Server-Applications15-SP4-Updates for sle-15-aarch64","installer_updates":false,"name":"SLE-Module-Server-Applications15-SP4-Updates"},{"description":"SLE-Module-Server-Applications15-SP4-Debuginfo-Updates for sle-15-aarch64","name":"SLE-Module-Server-Applications15-SP4-Debuginfo-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15-SP4/aarch64/update_debug/","enabled":false,"id":5163},{"description":"SLE-Module-Server-Applications15-SP4-Pool for sle-15-aarch64","name":"SLE-Module-Server-Applications15-SP4-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP4/aarch64/product/","enabled":true,"id":5164},{"autorefresh":false,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP4/aarch64/product_debug/","enabled":false,"id":5165,"description":"SLE-Module-Server-Applications15-SP4-Debuginfo-Pool for sle-15-aarch64","name":"SLE-Module-Server-Applications15-SP4-Debuginfo-Pool","installer_updates":false},{"description":"SLE-Module-Server-Applications15-SP4-Source-Pool for sle-15-aarch64","name":"SLE-Module-Server-Applications15-SP4-Source-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP4/aarch64/product_source/","autorefresh":false,"distro_target":"sle-15-aarch64","id":5166,"enabled":false}],"online_predecessor_ids":[1601,1777,1952,2150],"product_class":"MODULE","predecessor_ids":[1601,1777,1952,2150],"arch":"aarch64","eula_url":"","description":"

The SUSE Linux Enterprise Server Applications Module delivers a basic set of Server functionality.

Access to the Server Applications Module is included in your SUSE Linux Enterprise Server subscription.

","shortname":"Server-Applications-Module","free":true},{"shortname":"Server-Applications-Module","description":"

The SUSE Linux Enterprise Server Applications Module delivers a basic set of Server functionality.

Access to the Server Applications Module is included in your SUSE Linux Enterprise Server subscription.

","free":true,"eula_url":"","arch":"ppc64le","predecessor_ids":[1600,1778,1953,2151],"repositories":[{"name":"SLE-Module-Server-Applications15-SP4-Updates","installer_updates":false,"description":"SLE-Module-Server-Applications15-SP4-Updates for sle-15-ppc64le","enabled":true,"id":5167,"autorefresh":true,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15-SP4/ppc64le/update/"},{"name":"SLE-Module-Server-Applications15-SP4-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-Server-Applications15-SP4-Debuginfo-Updates for sle-15-ppc64le","enabled":false,"id":5168,"autorefresh":true,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15-SP4/ppc64le/update_debug/"},{"description":"SLE-Module-Server-Applications15-SP4-Pool for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-Server-Applications15-SP4-Pool","distro_target":"sle-15-ppc64le","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP4/ppc64le/product/","enabled":true,"id":5169},{"installer_updates":false,"name":"SLE-Module-Server-Applications15-SP4-Debuginfo-Pool","description":"SLE-Module-Server-Applications15-SP4-Debuginfo-Pool for sle-15-ppc64le","id":5170,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP4/ppc64le/product_debug/","distro_target":"sle-15-ppc64le","autorefresh":false},{"autorefresh":false,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP4/ppc64le/product_source/","enabled":false,"id":5171,"description":"SLE-Module-Server-Applications15-SP4-Source-Pool for sle-15-ppc64le","name":"SLE-Module-Server-Applications15-SP4-Source-Pool","installer_updates":false}],"online_predecessor_ids":[1600,1778,1953,2151],"product_class":"MODULE","cpe":"cpe:/o:suse:sle-module-server-applications:15:sp4","product_type":"module","recommended":false,"version":"15.4","name":"Server Applications Module","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"Server Applications Module 15 SP4 ppc64le","release_type":null,"former_identifier":"sle-module-server-applications","friendly_version":"15 SP4","extensions":[],"id":2305,"release_stage":"released","identifier":"sle-module-server-applications"},{"version":"15.4","recommended":false,"friendly_name":"Server Applications Module 15 SP4 s390x","migration_extra":false,"former_identifier":"sle-module-server-applications","release_type":null,"name":"Server Applications Module","offline_predecessor_ids":[],"friendly_version":"15 SP4","release_stage":"released","identifier":"sle-module-server-applications","id":2306,"extensions":[],"description":"

The SUSE Linux Enterprise Server Applications Module delivers a basic set of Server functionality.

Access to the Server Applications Module is included in your SUSE Linux Enterprise Server subscription.

","shortname":"Server-Applications-Module","free":true,"arch":"s390x","eula_url":"","online_predecessor_ids":[1599,1779,1954,2152],"repositories":[{"description":"SLE-Module-Server-Applications15-SP4-Updates for sle-15-s390x","name":"SLE-Module-Server-Applications15-SP4-Updates","installer_updates":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15-SP4/s390x/update/","autorefresh":true,"distro_target":"sle-15-s390x","id":5172,"enabled":true},{"enabled":false,"id":5173,"autorefresh":true,"distro_target":"sle-15-s390x","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15-SP4/s390x/update_debug/","name":"SLE-Module-Server-Applications15-SP4-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-Server-Applications15-SP4-Debuginfo-Updates for sle-15-s390x"},{"description":"SLE-Module-Server-Applications15-SP4-Pool for sle-15-s390x","name":"SLE-Module-Server-Applications15-SP4-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP4/s390x/product/","autorefresh":false,"distro_target":"sle-15-s390x","id":5174,"enabled":true},{"name":"SLE-Module-Server-Applications15-SP4-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-Server-Applications15-SP4-Debuginfo-Pool for sle-15-s390x","id":5175,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP4/s390x/product_debug/","autorefresh":false,"distro_target":"sle-15-s390x"},{"name":"SLE-Module-Server-Applications15-SP4-Source-Pool","installer_updates":false,"description":"SLE-Module-Server-Applications15-SP4-Source-Pool for sle-15-s390x","enabled":false,"id":5176,"autorefresh":false,"distro_target":"sle-15-s390x","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP4/s390x/product_source/"}],"product_class":"MODULE","predecessor_ids":[1599,1779,1954,2152],"cpe":"cpe:/o:suse:sle-module-server-applications:15:sp4","product_type":"module"},{"recommended":false,"version":"15.4","name":"Server Applications Module","offline_predecessor_ids":[],"friendly_name":"Server Applications Module 15 SP4 x86_64","migration_extra":false,"release_type":null,"former_identifier":"sle-module-server-applications","friendly_version":"15 SP4","extensions":[],"identifier":"sle-module-server-applications","release_stage":"released","id":2307,"shortname":"Server-Applications-Module","description":"

The SUSE Linux Enterprise Server Applications Module delivers a basic set of Server functionality.

Access to the Server Applications Module is included in your SUSE Linux Enterprise Server subscription.

","free":true,"eula_url":"","arch":"x86_64","predecessor_ids":[1580,1780,1955,2153],"repositories":[{"description":"SLE-Module-Server-Applications15-SP4-Updates for sle-15-x86_64","name":"SLE-Module-Server-Applications15-SP4-Updates","installer_updates":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15-SP4/x86_64/update/","autorefresh":true,"distro_target":"sle-15-x86_64","id":5177,"enabled":true},{"enabled":false,"id":5178,"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15-SP4/x86_64/update_debug/","name":"SLE-Module-Server-Applications15-SP4-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-Server-Applications15-SP4-Debuginfo-Updates for sle-15-x86_64"},{"name":"SLE-Module-Server-Applications15-SP4-Pool","installer_updates":false,"description":"SLE-Module-Server-Applications15-SP4-Pool for sle-15-x86_64","enabled":true,"id":5179,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP4/x86_64/product/"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP4/x86_64/product_debug/","distro_target":"sle-15-x86_64","autorefresh":false,"id":5180,"enabled":false,"description":"SLE-Module-Server-Applications15-SP4-Debuginfo-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Server-Applications15-SP4-Debuginfo-Pool"},{"description":"SLE-Module-Server-Applications15-SP4-Source-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Server-Applications15-SP4-Source-Pool","distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP4/x86_64/product_source/","enabled":false,"id":5181}],"online_predecessor_ids":[1580,1780,1955,2153],"product_class":"MODULE","cpe":"cpe:/o:suse:sle-module-server-applications:15:sp4","product_type":"module"},{"offline_predecessor_ids":[],"name":"Containers Module","release_type":null,"former_identifier":"sle-module-containers","friendly_name":"Containers Module 15 SP4 aarch64","migration_extra":false,"recommended":false,"version":"15.4","extensions":[],"identifier":"sle-module-containers","release_stage":"released","id":2308,"friendly_version":"15 SP4","eula_url":"","arch":"aarch64","free":true,"description":"

This Module contains several packages revolving around containers and related tools.

","shortname":"Containers-Module","product_type":"module","cpe":"cpe:/o:suse:sle-module-containers:15:sp4","predecessor_ids":[1920,1960,2154],"online_predecessor_ids":[1920,1960,2154],"product_class":"MODULE","repositories":[{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/15-SP4/aarch64/update/","autorefresh":true,"distro_target":"sle-15-aarch64","id":5182,"enabled":true,"description":"SLE-Module-Containers15-SP4-Updates for sle-15-aarch64","name":"SLE-Module-Containers15-SP4-Updates","installer_updates":false},{"installer_updates":false,"name":"SLE-Module-Containers15-SP4-Debuginfo-Updates","description":"SLE-Module-Containers15-SP4-Debuginfo-Updates for sle-15-aarch64","id":5183,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/15-SP4/aarch64/update_debug/","distro_target":"sle-15-aarch64","autorefresh":true},{"name":"SLE-Module-Containers15-SP4-Pool","installer_updates":false,"description":"SLE-Module-Containers15-SP4-Pool for sle-15-aarch64","enabled":true,"id":5184,"autorefresh":false,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP4/aarch64/product/"},{"enabled":false,"id":5185,"autorefresh":false,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP4/aarch64/product_debug/","name":"SLE-Module-Containers15-SP4-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-Containers15-SP4-Debuginfo-Pool for sle-15-aarch64"},{"id":5186,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP4/aarch64/product_source/","autorefresh":false,"distro_target":"sle-15-aarch64","name":"SLE-Module-Containers15-SP4-Source-Pool","installer_updates":false,"description":"SLE-Module-Containers15-SP4-Source-Pool for sle-15-aarch64"}]},{"online_predecessor_ids":[1640,1788,1961,2155],"product_class":"MODULE","repositories":[{"distro_target":"sle-15-ppc64le","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/15-SP4/ppc64le/update/","enabled":true,"id":5187,"description":"SLE-Module-Containers15-SP4-Updates for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-Containers15-SP4-Updates"},{"installer_updates":false,"name":"SLE-Module-Containers15-SP4-Debuginfo-Updates","description":"SLE-Module-Containers15-SP4-Debuginfo-Updates for sle-15-ppc64le","id":5188,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/15-SP4/ppc64le/update_debug/","distro_target":"sle-15-ppc64le","autorefresh":true},{"id":5189,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP4/ppc64le/product/","distro_target":"sle-15-ppc64le","autorefresh":false,"installer_updates":false,"name":"SLE-Module-Containers15-SP4-Pool","description":"SLE-Module-Containers15-SP4-Pool for sle-15-ppc64le"},{"installer_updates":false,"name":"SLE-Module-Containers15-SP4-Debuginfo-Pool","description":"SLE-Module-Containers15-SP4-Debuginfo-Pool for sle-15-ppc64le","enabled":false,"id":5190,"distro_target":"sle-15-ppc64le","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP4/ppc64le/product_debug/"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP4/ppc64le/product_source/","autorefresh":false,"distro_target":"sle-15-ppc64le","id":5191,"enabled":false,"description":"SLE-Module-Containers15-SP4-Source-Pool for sle-15-ppc64le","name":"SLE-Module-Containers15-SP4-Source-Pool","installer_updates":false}],"predecessor_ids":[1640,1788,1961,2155],"product_type":"module","cpe":"cpe:/o:suse:sle-module-containers:15:sp4","free":true,"description":"

This Module contains several packages revolving around containers and related tools.

","shortname":"Containers-Module","arch":"ppc64le","eula_url":"","friendly_version":"15 SP4","release_stage":"released","identifier":"sle-module-containers","id":2309,"extensions":[],"version":"15.4","recommended":false,"former_identifier":"sle-module-containers","release_type":null,"friendly_name":"Containers Module 15 SP4 ppc64le","migration_extra":false,"offline_predecessor_ids":[1353],"name":"Containers Module"},{"identifier":"sle-module-containers","release_stage":"released","id":2310,"extensions":[],"friendly_version":"15 SP4","former_identifier":"sle-module-containers","release_type":null,"migration_extra":false,"friendly_name":"Containers Module 15 SP4 s390x","offline_predecessor_ids":[1354],"name":"Containers Module","version":"15.4","recommended":false,"product_type":"module","cpe":"cpe:/o:suse:sle-module-containers:15:sp4","repositories":[{"id":5192,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/15-SP4/s390x/update/","autorefresh":true,"distro_target":"sle-15-s390x","name":"SLE-Module-Containers15-SP4-Updates","installer_updates":false,"description":"SLE-Module-Containers15-SP4-Updates for sle-15-s390x"},{"distro_target":"sle-15-s390x","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/15-SP4/s390x/update_debug/","enabled":false,"id":5193,"description":"SLE-Module-Containers15-SP4-Debuginfo-Updates for sle-15-s390x","installer_updates":false,"name":"SLE-Module-Containers15-SP4-Debuginfo-Updates"},{"id":5194,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP4/s390x/product/","autorefresh":false,"distro_target":"sle-15-s390x","name":"SLE-Module-Containers15-SP4-Pool","installer_updates":false,"description":"SLE-Module-Containers15-SP4-Pool for sle-15-s390x"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP4/s390x/product_debug/","distro_target":"sle-15-s390x","autorefresh":false,"id":5195,"enabled":false,"description":"SLE-Module-Containers15-SP4-Debuginfo-Pool for sle-15-s390x","installer_updates":false,"name":"SLE-Module-Containers15-SP4-Debuginfo-Pool"},{"name":"SLE-Module-Containers15-SP4-Source-Pool","installer_updates":false,"description":"SLE-Module-Containers15-SP4-Source-Pool for sle-15-s390x","id":5196,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP4/s390x/product_source/","autorefresh":false,"distro_target":"sle-15-s390x"}],"online_predecessor_ids":[1641,1789,1962,2156],"product_class":"MODULE","predecessor_ids":[1641,1789,1962,2156],"arch":"s390x","eula_url":"","free":true,"shortname":"Containers-Module","description":"

This Module contains several packages revolving around containers and related tools.

"},{"friendly_version":"15 SP4","release_stage":"released","identifier":"sle-module-containers","id":2311,"extensions":[],"version":"15.4","recommended":false,"release_type":null,"former_identifier":"sle-module-containers","friendly_name":"Containers Module 15 SP4 x86_64","migration_extra":false,"offline_predecessor_ids":[1332],"name":"Containers Module","online_predecessor_ids":[1642,1790,1963,2157],"repositories":[{"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/15-SP4/x86_64/update/","enabled":true,"id":5197,"description":"SLE-Module-Containers15-SP4-Updates for sle-15-x86_64","name":"SLE-Module-Containers15-SP4-Updates","installer_updates":false},{"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/15-SP4/x86_64/update_debug/","enabled":false,"id":5198,"description":"SLE-Module-Containers15-SP4-Debuginfo-Updates for sle-15-x86_64","name":"SLE-Module-Containers15-SP4-Debuginfo-Updates","installer_updates":false},{"name":"SLE-Module-Containers15-SP4-Pool","installer_updates":false,"description":"SLE-Module-Containers15-SP4-Pool for sle-15-x86_64","id":5199,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP4/x86_64/product/","autorefresh":false,"distro_target":"sle-15-x86_64"},{"description":"SLE-Module-Containers15-SP4-Debuginfo-Pool for sle-15-x86_64","name":"SLE-Module-Containers15-SP4-Debuginfo-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP4/x86_64/product_debug/","autorefresh":false,"distro_target":"sle-15-x86_64","id":5200,"enabled":false},{"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP4/x86_64/product_source/","enabled":false,"id":5201,"description":"SLE-Module-Containers15-SP4-Source-Pool for sle-15-x86_64","name":"SLE-Module-Containers15-SP4-Source-Pool","installer_updates":false}],"product_class":"MODULE","predecessor_ids":[1642,1790,1963,2157],"product_type":"module","cpe":"cpe:/o:suse:sle-module-containers:15:sp4","free":true,"description":"

This Module contains several packages revolving around containers and related tools.

","shortname":"Containers-Module","arch":"x86_64","eula_url":""},{"free":true,"shortname":"Development-Tools-Module","description":"

The Development Tools Module helps you developing applications for SUSE Linux Enterprise 15.

Access to the Development Tools Module is included in your SUSE Linux Enterprise product subscription. The module has a different lifecycle than SUSE Linux Enterprise itself.

","eula_url":"","arch":"aarch64","predecessor_ids":[1598,1791,1968,2158],"product_class":"MODULE","online_predecessor_ids":[1598,1791,1968,2158],"repositories":[{"autorefresh":true,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15-SP4/aarch64/update/","enabled":true,"id":5202,"description":"SLE-Module-DevTools15-SP4-Updates for sle-15-aarch64","name":"SLE-Module-DevTools15-SP4-Updates","installer_updates":false},{"installer_updates":false,"name":"SLE-Module-DevTools15-SP4-Debuginfo-Updates","description":"SLE-Module-DevTools15-SP4-Debuginfo-Updates for sle-15-aarch64","id":5203,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15-SP4/aarch64/update_debug/","distro_target":"sle-15-aarch64","autorefresh":true},{"id":5204,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP4/aarch64/product/","autorefresh":false,"distro_target":"sle-15-aarch64","name":"SLE-Module-DevTools15-SP4-Pool","installer_updates":false,"description":"SLE-Module-DevTools15-SP4-Pool for sle-15-aarch64"},{"description":"SLE-Module-DevTools15-SP4-Debuginfo-Pool for sle-15-aarch64","installer_updates":false,"name":"SLE-Module-DevTools15-SP4-Debuginfo-Pool","distro_target":"sle-15-aarch64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP4/aarch64/product_debug/","enabled":false,"id":5205},{"description":"SLE-Module-DevTools15-SP4-Source-Pool for sle-15-aarch64","name":"SLE-Module-DevTools15-SP4-Source-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP4/aarch64/product_source/","autorefresh":false,"distro_target":"sle-15-aarch64","id":5206,"enabled":false}],"product_type":"module","cpe":"cpe:/o:suse:sle-module-development-tools:15:sp4","recommended":false,"version":"15.4","offline_predecessor_ids":[1376,1430,1633,1889],"name":"Development Tools Module","release_type":null,"former_identifier":"sle-sdk","migration_extra":false,"friendly_name":"Development Tools Module 15 SP4 aarch64","friendly_version":"15 SP4","extensions":[],"release_stage":"released","identifier":"sle-module-development-tools","id":2312},{"predecessor_ids":[1597,1792,1969,2159],"online_predecessor_ids":[1597,1792,1969,2159],"repositories":[{"enabled":true,"id":5207,"distro_target":"sle-15-ppc64le","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15-SP4/ppc64le/update/","installer_updates":false,"name":"SLE-Module-DevTools15-SP4-Updates","description":"SLE-Module-DevTools15-SP4-Updates for sle-15-ppc64le"},{"description":"SLE-Module-DevTools15-SP4-Debuginfo-Updates for sle-15-ppc64le","name":"SLE-Module-DevTools15-SP4-Debuginfo-Updates","installer_updates":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15-SP4/ppc64le/update_debug/","autorefresh":true,"distro_target":"sle-15-ppc64le","id":5208,"enabled":false},{"description":"SLE-Module-DevTools15-SP4-Pool for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-DevTools15-SP4-Pool","distro_target":"sle-15-ppc64le","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP4/ppc64le/product/","enabled":true,"id":5209},{"distro_target":"sle-15-ppc64le","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP4/ppc64le/product_debug/","enabled":false,"id":5210,"description":"SLE-Module-DevTools15-SP4-Debuginfo-Pool for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-DevTools15-SP4-Debuginfo-Pool"},{"description":"SLE-Module-DevTools15-SP4-Source-Pool for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-DevTools15-SP4-Source-Pool","distro_target":"sle-15-ppc64le","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP4/ppc64le/product_source/","enabled":false,"id":5211}],"product_class":"MODULE","product_type":"module","cpe":"cpe:/o:suse:sle-module-development-tools:15:sp4","free":true,"description":"

The Development Tools Module helps you developing applications for SUSE Linux Enterprise 15.

Access to the Development Tools Module is included in your SUSE Linux Enterprise product subscription. The module has a different lifecycle than SUSE Linux Enterprise itself.

","shortname":"Development-Tools-Module","eula_url":"","arch":"ppc64le","friendly_version":"15 SP4","extensions":[],"id":2313,"release_stage":"released","identifier":"sle-module-development-tools","recommended":false,"version":"15.4","offline_predecessor_ids":[1339,1428,1631,1890],"name":"Development Tools Module","former_identifier":"sle-sdk","release_type":null,"migration_extra":false,"friendly_name":"Development Tools Module 15 SP4 ppc64le"},{"arch":"s390x","eula_url":"","free":true,"description":"

The Development Tools Module helps you developing applications for SUSE Linux Enterprise 15.

Access to the Development Tools Module is included in your SUSE Linux Enterprise product subscription. The module has a different lifecycle than SUSE Linux Enterprise itself.

","shortname":"Development-Tools-Module","product_type":"module","cpe":"cpe:/o:suse:sle-module-development-tools:15:sp4","online_predecessor_ids":[1596,1793,1970,2160],"repositories":[{"installer_updates":false,"name":"SLE-Module-DevTools15-SP4-Updates","description":"SLE-Module-DevTools15-SP4-Updates for sle-15-s390x","id":5212,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15-SP4/s390x/update/","distro_target":"sle-15-s390x","autorefresh":true},{"description":"SLE-Module-DevTools15-SP4-Debuginfo-Updates for sle-15-s390x","installer_updates":false,"name":"SLE-Module-DevTools15-SP4-Debuginfo-Updates","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15-SP4/s390x/update_debug/","distro_target":"sle-15-s390x","autorefresh":true,"id":5213,"enabled":false},{"description":"SLE-Module-DevTools15-SP4-Pool for sle-15-s390x","installer_updates":false,"name":"SLE-Module-DevTools15-SP4-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP4/s390x/product/","distro_target":"sle-15-s390x","autorefresh":false,"id":5214,"enabled":true},{"id":5215,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP4/s390x/product_debug/","distro_target":"sle-15-s390x","autorefresh":false,"installer_updates":false,"name":"SLE-Module-DevTools15-SP4-Debuginfo-Pool","description":"SLE-Module-DevTools15-SP4-Debuginfo-Pool for sle-15-s390x"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP4/s390x/product_source/","distro_target":"sle-15-s390x","autorefresh":false,"id":5216,"enabled":false,"description":"SLE-Module-DevTools15-SP4-Source-Pool for sle-15-s390x","installer_updates":false,"name":"SLE-Module-DevTools15-SP4-Source-Pool"}],"product_class":"MODULE","predecessor_ids":[1596,1793,1970,2160],"former_identifier":"sle-sdk","release_type":null,"migration_extra":false,"friendly_name":"Development Tools Module 15 SP4 s390x","offline_predecessor_ids":[1340,1429,1632,1891],"name":"Development Tools Module","version":"15.4","recommended":false,"release_stage":"released","identifier":"sle-module-development-tools","id":2314,"extensions":[],"friendly_version":"15 SP4"},{"version":"15.4","recommended":false,"migration_extra":false,"friendly_name":"Development Tools Module 15 SP4 x86_64","release_type":null,"former_identifier":"sle-sdk","name":"Development Tools Module","offline_predecessor_ids":[1341,1427,1630,1892],"friendly_version":"15 SP4","release_stage":"released","identifier":"sle-module-development-tools","id":2315,"extensions":[],"description":"

The Development Tools Module helps you developing applications for SUSE Linux Enterprise 15.

Access to the Development Tools Module is included in your SUSE Linux Enterprise product subscription. The module has a different lifecycle than SUSE Linux Enterprise itself.

","shortname":"Development-Tools-Module","free":true,"arch":"x86_64","eula_url":"","online_predecessor_ids":[1579,1794,1971,2161],"product_class":"MODULE","repositories":[{"enabled":true,"id":5217,"distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15-SP4/x86_64/update/","installer_updates":false,"name":"SLE-Module-DevTools15-SP4-Updates","description":"SLE-Module-DevTools15-SP4-Updates for sle-15-x86_64"},{"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15-SP4/x86_64/update_debug/","enabled":false,"id":5218,"description":"SLE-Module-DevTools15-SP4-Debuginfo-Updates for sle-15-x86_64","name":"SLE-Module-DevTools15-SP4-Debuginfo-Updates","installer_updates":false},{"installer_updates":false,"name":"SLE-Module-DevTools15-SP4-Pool","description":"SLE-Module-DevTools15-SP4-Pool for sle-15-x86_64","enabled":true,"id":5219,"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP4/x86_64/product/"},{"name":"SLE-Module-DevTools15-SP4-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-DevTools15-SP4-Debuginfo-Pool for sle-15-x86_64","id":5220,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP4/x86_64/product_debug/","autorefresh":false,"distro_target":"sle-15-x86_64"},{"installer_updates":false,"name":"SLE-Module-DevTools15-SP4-Source-Pool","description":"SLE-Module-DevTools15-SP4-Source-Pool for sle-15-x86_64","id":5221,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP4/x86_64/product_source/","distro_target":"sle-15-x86_64","autorefresh":false}],"predecessor_ids":[1579,1794,1971,2161],"cpe":"cpe:/o:suse:sle-module-development-tools:15:sp4","product_type":"module"},{"eula_url":"","arch":"aarch64","free":true,"shortname":"Web-Scripting-Module","description":"

The SUSE Linux Enterprise Web and Scripting Module should contains additional packages that are helpful when running a webserver.

Access to the Web and Scripting Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself: Package versions in this module are usually supported for at most three years. We are planning to release more recent versions on a schedule of approximately 18 month; the exact dates may differ per package.

","product_type":"module","cpe":"cpe:/o:suse:sle-module-web-scripting:15:sp4","predecessor_ids":[1718,1795,1973,2162],"repositories":[{"description":"SLE-Module-Web-Scripting15-SP4-Updates for sle-15-aarch64","installer_updates":false,"name":"SLE-Module-Web-Scripting15-SP4-Updates","distro_target":"sle-15-aarch64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/15-SP4/aarch64/update/","enabled":true,"id":5222},{"description":"SLE-Module-Web-Scripting15-SP4-Debuginfo-Updates for sle-15-aarch64","name":"SLE-Module-Web-Scripting15-SP4-Debuginfo-Updates","installer_updates":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/15-SP4/aarch64/update_debug/","autorefresh":true,"distro_target":"sle-15-aarch64","id":5223,"enabled":false},{"description":"SLE-Module-Web-Scripting15-SP4-Pool for sle-15-aarch64","name":"SLE-Module-Web-Scripting15-SP4-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP4/aarch64/product/","enabled":true,"id":5224},{"description":"SLE-Module-Web-Scripting15-SP4-Debuginfo-Pool for sle-15-aarch64","name":"SLE-Module-Web-Scripting15-SP4-Debuginfo-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP4/aarch64/product_debug/","autorefresh":false,"distro_target":"sle-15-aarch64","id":5225,"enabled":false},{"enabled":false,"id":5226,"distro_target":"sle-15-aarch64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP4/aarch64/product_source/","installer_updates":false,"name":"SLE-Module-Web-Scripting15-SP4-Source-Pool","description":"SLE-Module-Web-Scripting15-SP4-Source-Pool for sle-15-aarch64"}],"online_predecessor_ids":[1718,1795,1973,2162],"product_class":"MODULE","offline_predecessor_ids":[1539],"name":"Web and Scripting Module","release_type":null,"former_identifier":"sle-module-web-scripting","migration_extra":false,"friendly_name":"Web and Scripting Module 15 SP4 aarch64","recommended":false,"version":"15.4","extensions":[],"identifier":"sle-module-web-scripting","release_stage":"released","id":2316,"friendly_version":"15 SP4"},{"friendly_version":"15 SP4","extensions":[],"release_stage":"released","id":2317,"identifier":"sle-module-web-scripting","recommended":false,"version":"15.4","offline_predecessor_ids":[1151],"name":"Web and Scripting Module","release_type":null,"former_identifier":"sle-module-web-scripting","migration_extra":false,"friendly_name":"Web and Scripting Module 15 SP4 ppc64le","predecessor_ids":[1719,1796,1974,2163],"online_predecessor_ids":[1719,1796,1974,2163],"repositories":[{"description":"SLE-Module-Web-Scripting15-SP4-Updates for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-Web-Scripting15-SP4-Updates","distro_target":"sle-15-ppc64le","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/15-SP4/ppc64le/update/","enabled":true,"id":5227},{"id":5228,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/15-SP4/ppc64le/update_debug/","autorefresh":true,"distro_target":"sle-15-ppc64le","name":"SLE-Module-Web-Scripting15-SP4-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-Web-Scripting15-SP4-Debuginfo-Updates for sle-15-ppc64le"},{"installer_updates":false,"name":"SLE-Module-Web-Scripting15-SP4-Pool","description":"SLE-Module-Web-Scripting15-SP4-Pool for sle-15-ppc64le","id":5229,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP4/ppc64le/product/","distro_target":"sle-15-ppc64le","autorefresh":false},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP4/ppc64le/product_debug/","autorefresh":false,"distro_target":"sle-15-ppc64le","id":5230,"enabled":false,"description":"SLE-Module-Web-Scripting15-SP4-Debuginfo-Pool for sle-15-ppc64le","name":"SLE-Module-Web-Scripting15-SP4-Debuginfo-Pool","installer_updates":false},{"distro_target":"sle-15-ppc64le","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP4/ppc64le/product_source/","enabled":false,"id":5231,"description":"SLE-Module-Web-Scripting15-SP4-Source-Pool for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-Web-Scripting15-SP4-Source-Pool"}],"product_class":"MODULE","product_type":"module","cpe":"cpe:/o:suse:sle-module-web-scripting:15:sp4","free":true,"shortname":"Web-Scripting-Module","description":"

The SUSE Linux Enterprise Web and Scripting Module should contains additional packages that are helpful when running a webserver.

Access to the Web and Scripting Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself: Package versions in this module are usually supported for at most three years. We are planning to release more recent versions on a schedule of approximately 18 month; the exact dates may differ per package.

","eula_url":"","arch":"ppc64le"},{"product_type":"module","cpe":"cpe:/o:suse:sle-module-web-scripting:15:sp4","predecessor_ids":[1720,1797,1975,2164],"repositories":[{"name":"SLE-Module-Web-Scripting15-SP4-Updates","installer_updates":false,"description":"SLE-Module-Web-Scripting15-SP4-Updates for sle-15-s390x","id":5232,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/15-SP4/s390x/update/","autorefresh":true,"distro_target":"sle-15-s390x"},{"distro_target":"sle-15-s390x","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/15-SP4/s390x/update_debug/","enabled":false,"id":5233,"description":"SLE-Module-Web-Scripting15-SP4-Debuginfo-Updates for sle-15-s390x","installer_updates":false,"name":"SLE-Module-Web-Scripting15-SP4-Debuginfo-Updates"},{"installer_updates":false,"name":"SLE-Module-Web-Scripting15-SP4-Pool","description":"SLE-Module-Web-Scripting15-SP4-Pool for sle-15-s390x","id":5234,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP4/s390x/product/","distro_target":"sle-15-s390x","autorefresh":false},{"description":"SLE-Module-Web-Scripting15-SP4-Debuginfo-Pool for sle-15-s390x","installer_updates":false,"name":"SLE-Module-Web-Scripting15-SP4-Debuginfo-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP4/s390x/product_debug/","distro_target":"sle-15-s390x","autorefresh":false,"id":5235,"enabled":false},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP4/s390x/product_source/","autorefresh":false,"distro_target":"sle-15-s390x","id":5236,"enabled":false,"description":"SLE-Module-Web-Scripting15-SP4-Source-Pool for sle-15-s390x","name":"SLE-Module-Web-Scripting15-SP4-Source-Pool","installer_updates":false}],"online_predecessor_ids":[1720,1797,1975,2164],"product_class":"MODULE","eula_url":"","arch":"s390x","free":true,"shortname":"Web-Scripting-Module","description":"

The SUSE Linux Enterprise Web and Scripting Module should contains additional packages that are helpful when running a webserver.

Access to the Web and Scripting Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself: Package versions in this module are usually supported for at most three years. We are planning to release more recent versions on a schedule of approximately 18 month; the exact dates may differ per package.

","extensions":[],"identifier":"sle-module-web-scripting","release_stage":"released","id":2318,"friendly_version":"15 SP4","offline_predecessor_ids":[1152],"name":"Web and Scripting Module","release_type":null,"former_identifier":"sle-module-web-scripting","migration_extra":false,"friendly_name":"Web and Scripting Module 15 SP4 s390x","recommended":false,"version":"15.4"},{"release_type":null,"former_identifier":"sle-module-web-scripting","friendly_name":"Web and Scripting Module 15 SP4 x86_64","migration_extra":false,"offline_predecessor_ids":[1153],"name":"Web and Scripting Module","version":"15.4","recommended":false,"identifier":"sle-module-web-scripting","release_stage":"released","id":2319,"extensions":[],"friendly_version":"15 SP4","arch":"x86_64","eula_url":"","free":true,"shortname":"Web-Scripting-Module","description":"

The SUSE Linux Enterprise Web and Scripting Module should contains additional packages that are helpful when running a webserver.

Access to the Web and Scripting Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself: Package versions in this module are usually supported for at most three years. We are planning to release more recent versions on a schedule of approximately 18 month; the exact dates may differ per package.

","product_type":"module","cpe":"cpe:/o:suse:sle-module-web-scripting:15:sp4","repositories":[{"installer_updates":false,"name":"SLE-Module-Web-Scripting15-SP4-Updates","description":"SLE-Module-Web-Scripting15-SP4-Updates for sle-15-x86_64","enabled":true,"id":5237,"distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/15-SP4/x86_64/update/"},{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/15-SP4/x86_64/update_debug/","autorefresh":true,"distro_target":"sle-15-x86_64","id":5238,"enabled":false,"description":"SLE-Module-Web-Scripting15-SP4-Debuginfo-Updates for sle-15-x86_64","name":"SLE-Module-Web-Scripting15-SP4-Debuginfo-Updates","installer_updates":false},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP4/x86_64/product/","distro_target":"sle-15-x86_64","autorefresh":false,"id":5239,"enabled":true,"description":"SLE-Module-Web-Scripting15-SP4-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Web-Scripting15-SP4-Pool"},{"description":"SLE-Module-Web-Scripting15-SP4-Debuginfo-Pool for sle-15-x86_64","name":"SLE-Module-Web-Scripting15-SP4-Debuginfo-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP4/x86_64/product_debug/","enabled":false,"id":5240},{"installer_updates":false,"name":"SLE-Module-Web-Scripting15-SP4-Source-Pool","description":"SLE-Module-Web-Scripting15-SP4-Source-Pool for sle-15-x86_64","id":5241,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP4/x86_64/product_source/","distro_target":"sle-15-x86_64","autorefresh":false}],"online_predecessor_ids":[1721,1798,1976,2165],"product_class":"MODULE","predecessor_ids":[1721,1798,1976,2165]},{"friendly_version":"15 SP4","extensions":[],"identifier":"sle-module-legacy","release_stage":"released","id":2320,"recommended":false,"version":"15.4","offline_predecessor_ids":[],"name":"Legacy Module","release_type":null,"former_identifier":"sle-module-legacy","friendly_name":"Legacy Module 15 SP4 aarch64","migration_extra":false,"predecessor_ids":[1604,1801,1979,2168],"product_class":"MODULE","online_predecessor_ids":[1604,1801,1979,2168],"repositories":[{"enabled":true,"id":5242,"autorefresh":true,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/15-SP4/aarch64/update/","name":"SLE-Module-Legacy15-SP4-Updates","installer_updates":false,"description":"SLE-Module-Legacy15-SP4-Updates for sle-15-aarch64"},{"installer_updates":false,"name":"SLE-Module-Legacy15-SP4-Debuginfo-Updates","description":"SLE-Module-Legacy15-SP4-Debuginfo-Updates for sle-15-aarch64","id":5243,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/15-SP4/aarch64/update_debug/","distro_target":"sle-15-aarch64","autorefresh":true},{"name":"SLE-Module-Legacy15-SP4-Pool","installer_updates":false,"description":"SLE-Module-Legacy15-SP4-Pool for sle-15-aarch64","enabled":true,"id":5244,"autorefresh":false,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15-SP4/aarch64/product/"},{"description":"SLE-Module-Legacy15-SP4-Debuginfo-Pool for sle-15-aarch64","installer_updates":false,"name":"SLE-Module-Legacy15-SP4-Debuginfo-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15-SP4/aarch64/product_debug/","distro_target":"sle-15-aarch64","autorefresh":false,"id":5245,"enabled":false},{"enabled":false,"id":5246,"autorefresh":false,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15-SP4/aarch64/product_source/","name":"SLE-Module-Legacy15-SP4-Source-Pool","installer_updates":false,"description":"SLE-Module-Legacy15-SP4-Source-Pool for sle-15-aarch64"}],"product_type":"module","cpe":"cpe:/o:suse:sle-module-legacy:15:sp4","free":true,"description":"

The Legacy Module helps you migrating applications from SUSE Linux Enterprise 12 and other systems to SUSE Linux Enterprise 15, by providing packages which are discontinued on SUSE Linux Enterprise Server, such as: ntp, IBM Java 8, and a number of libraries.

Access to the Legacy Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself. Packages in the this module are usually supported for at most three years.

","shortname":"Legacy-Module","eula_url":"","arch":"aarch64"},{"online_predecessor_ids":[1603,1802,1980,2169],"repositories":[{"autorefresh":true,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/15-SP4/ppc64le/update/","enabled":true,"id":5247,"description":"SLE-Module-Legacy15-SP4-Updates for sle-15-ppc64le","name":"SLE-Module-Legacy15-SP4-Updates","installer_updates":false},{"id":5248,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/15-SP4/ppc64le/update_debug/","autorefresh":true,"distro_target":"sle-15-ppc64le","name":"SLE-Module-Legacy15-SP4-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-Legacy15-SP4-Debuginfo-Updates for sle-15-ppc64le"},{"enabled":true,"id":5249,"autorefresh":false,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15-SP4/ppc64le/product/","name":"SLE-Module-Legacy15-SP4-Pool","installer_updates":false,"description":"SLE-Module-Legacy15-SP4-Pool for sle-15-ppc64le"},{"description":"SLE-Module-Legacy15-SP4-Debuginfo-Pool for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-Legacy15-SP4-Debuginfo-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15-SP4/ppc64le/product_debug/","distro_target":"sle-15-ppc64le","autorefresh":false,"id":5250,"enabled":false},{"enabled":false,"id":5251,"distro_target":"sle-15-ppc64le","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15-SP4/ppc64le/product_source/","installer_updates":false,"name":"SLE-Module-Legacy15-SP4-Source-Pool","description":"SLE-Module-Legacy15-SP4-Source-Pool for sle-15-ppc64le"}],"product_class":"MODULE","predecessor_ids":[1603,1802,1980,2169],"cpe":"cpe:/o:suse:sle-module-legacy:15:sp4","product_type":"module","description":"

The Legacy Module helps you migrating applications from SUSE Linux Enterprise 12 and other systems to SUSE Linux Enterprise 15, by providing packages which are discontinued on SUSE Linux Enterprise Server, such as: ntp, IBM Java 8, and a number of libraries.

Access to the Legacy Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself. Packages in the this module are usually supported for at most three years.

","shortname":"Legacy-Module","free":true,"arch":"ppc64le","eula_url":"","friendly_version":"15 SP4","identifier":"sle-module-legacy","release_stage":"released","id":2321,"extensions":[],"version":"15.4","recommended":false,"friendly_name":"Legacy Module 15 SP4 ppc64le","migration_extra":false,"former_identifier":"sle-module-legacy","release_type":null,"name":"Legacy Module","offline_predecessor_ids":[1148]},{"cpe":"cpe:/o:suse:sle-module-legacy:15:sp4","product_type":"module","predecessor_ids":[1602,1803,1981,2170],"online_predecessor_ids":[1602,1803,1981,2170],"repositories":[{"installer_updates":false,"name":"SLE-Module-Legacy15-SP4-Updates","description":"SLE-Module-Legacy15-SP4-Updates for sle-15-s390x","enabled":true,"id":5252,"distro_target":"sle-15-s390x","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/15-SP4/s390x/update/"},{"installer_updates":false,"name":"SLE-Module-Legacy15-SP4-Debuginfo-Updates","description":"SLE-Module-Legacy15-SP4-Debuginfo-Updates for sle-15-s390x","id":5253,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/15-SP4/s390x/update_debug/","distro_target":"sle-15-s390x","autorefresh":true},{"description":"SLE-Module-Legacy15-SP4-Pool for sle-15-s390x","name":"SLE-Module-Legacy15-SP4-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-15-s390x","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15-SP4/s390x/product/","enabled":true,"id":5254},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15-SP4/s390x/product_debug/","distro_target":"sle-15-s390x","autorefresh":false,"id":5255,"enabled":false,"description":"SLE-Module-Legacy15-SP4-Debuginfo-Pool for sle-15-s390x","installer_updates":false,"name":"SLE-Module-Legacy15-SP4-Debuginfo-Pool"},{"description":"SLE-Module-Legacy15-SP4-Source-Pool for sle-15-s390x","name":"SLE-Module-Legacy15-SP4-Source-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15-SP4/s390x/product_source/","autorefresh":false,"distro_target":"sle-15-s390x","id":5256,"enabled":false}],"product_class":"MODULE","eula_url":"","arch":"s390x","description":"

The Legacy Module helps you migrating applications from SUSE Linux Enterprise 12 and other systems to SUSE Linux Enterprise 15, by providing packages which are discontinued on SUSE Linux Enterprise Server, such as: ntp, IBM Java 8, and a number of libraries.

Access to the Legacy Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself. Packages in the this module are usually supported for at most three years.

","shortname":"Legacy-Module","free":true,"extensions":[],"id":2322,"release_stage":"released","identifier":"sle-module-legacy","friendly_version":"15 SP4","name":"Legacy Module","offline_predecessor_ids":[1149],"friendly_name":"Legacy Module 15 SP4 s390x","migration_extra":false,"former_identifier":"sle-module-legacy","release_type":null,"recommended":false,"version":"15.4"},{"friendly_version":"15 SP4","identifier":"sle-module-legacy","release_stage":"released","id":2323,"extensions":[],"version":"15.4","recommended":false,"friendly_name":"Legacy Module 15 SP4 x86_64","migration_extra":false,"former_identifier":"sle-module-legacy","release_type":null,"name":"Legacy Module","offline_predecessor_ids":[1150],"product_class":"MODULE","online_predecessor_ids":[1581,1804,1982,2171],"repositories":[{"description":"SLE-Module-Legacy15-SP4-Updates for sle-15-x86_64","name":"SLE-Module-Legacy15-SP4-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/15-SP4/x86_64/update/","enabled":true,"id":5257},{"distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/15-SP4/x86_64/update_debug/","enabled":false,"id":5258,"description":"SLE-Module-Legacy15-SP4-Debuginfo-Updates for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Legacy15-SP4-Debuginfo-Updates"},{"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15-SP4/x86_64/product/","enabled":true,"id":5259,"description":"SLE-Module-Legacy15-SP4-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Legacy15-SP4-Pool"},{"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15-SP4/x86_64/product_debug/","enabled":false,"id":5260,"description":"SLE-Module-Legacy15-SP4-Debuginfo-Pool for sle-15-x86_64","name":"SLE-Module-Legacy15-SP4-Debuginfo-Pool","installer_updates":false},{"description":"SLE-Module-Legacy15-SP4-Source-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Legacy15-SP4-Source-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15-SP4/x86_64/product_source/","distro_target":"sle-15-x86_64","autorefresh":false,"id":5261,"enabled":false}],"predecessor_ids":[1581,1804,1982,2171],"cpe":"cpe:/o:suse:sle-module-legacy:15:sp4","product_type":"module","description":"

The Legacy Module helps you migrating applications from SUSE Linux Enterprise 12 and other systems to SUSE Linux Enterprise 15, by providing packages which are discontinued on SUSE Linux Enterprise Server, such as: ntp, IBM Java 8, and a number of libraries.

Access to the Legacy Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself. Packages in the this module are usually supported for at most three years.

","shortname":"Legacy-Module","free":true,"arch":"x86_64","eula_url":""},{"predecessor_ids":[1645,1805,1985,2172],"online_predecessor_ids":[1645,1805,1985,2172],"product_class":"MODULE","repositories":[{"installer_updates":false,"name":"SLE-Module-Public-Cloud15-SP4-Updates","description":"SLE-Module-Public-Cloud15-SP4-Updates for sle-15-aarch64","enabled":true,"id":5262,"distro_target":"sle-15-aarch64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/15-SP4/aarch64/update/"},{"enabled":false,"id":5263,"distro_target":"sle-15-aarch64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/15-SP4/aarch64/update_debug/","installer_updates":false,"name":"SLE-Module-Public-Cloud15-SP4-Debuginfo-Updates","description":"SLE-Module-Public-Cloud15-SP4-Debuginfo-Updates for sle-15-aarch64"},{"name":"SLE-Module-Public-Cloud15-SP4-Pool","installer_updates":false,"description":"SLE-Module-Public-Cloud15-SP4-Pool for sle-15-aarch64","enabled":true,"id":5264,"autorefresh":false,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP4/aarch64/product/"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP4/aarch64/product_debug/","autorefresh":false,"distro_target":"sle-15-aarch64","id":5265,"enabled":false,"description":"SLE-Module-Public-Cloud15-SP4-Debuginfo-Pool for sle-15-aarch64","name":"SLE-Module-Public-Cloud15-SP4-Debuginfo-Pool","installer_updates":false},{"autorefresh":false,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP4/aarch64/product_source/","enabled":false,"id":5266,"description":"SLE-Module-Public-Cloud15-SP4-Source-Pool for sle-15-aarch64","name":"SLE-Module-Public-Cloud15-SP4-Source-Pool","installer_updates":false}],"product_type":"module","cpe":"cpe:/o:suse:sle-module-public-cloud:15:sp4","free":true,"description":"

The Public Cloud Module is a collection of tools that enables you to create and manage cloud images from the commandline on SUSE Linux Enterprise Server. When building your own images with KIWI or SUSE Studio, initialization code specific to the target cloud is included in that image.

Access to the Public Cloud Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself; please check the Release Notes for further details.

","shortname":"Public-Cloud-Module","eula_url":"","arch":"aarch64","friendly_version":"15 SP4","extensions":[],"release_stage":"released","id":2324,"identifier":"sle-module-public-cloud","recommended":false,"version":"15.4","offline_predecessor_ids":[1528],"name":"Public Cloud Module","release_type":null,"former_identifier":"sle-module-public-cloud","migration_extra":false,"friendly_name":"Public Cloud Module 15 SP4 aarch64"},{"friendly_version":"15 SP4","id":2325,"release_stage":"released","identifier":"sle-module-public-cloud","extensions":[],"version":"15.4","recommended":false,"former_identifier":"sle-module-public-cloud","release_type":null,"migration_extra":false,"friendly_name":"Public Cloud Module 15 SP4 ppc64le","offline_predecessor_ids":[1218],"name":"Public Cloud Module","repositories":[{"id":5267,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/15-SP4/ppc64le/update/","distro_target":"sle-15-ppc64le","autorefresh":true,"installer_updates":false,"name":"SLE-Module-Public-Cloud15-SP4-Updates","description":"SLE-Module-Public-Cloud15-SP4-Updates for sle-15-ppc64le"},{"enabled":false,"id":5268,"distro_target":"sle-15-ppc64le","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/15-SP4/ppc64le/update_debug/","installer_updates":false,"name":"SLE-Module-Public-Cloud15-SP4-Debuginfo-Updates","description":"SLE-Module-Public-Cloud15-SP4-Debuginfo-Updates for sle-15-ppc64le"},{"name":"SLE-Module-Public-Cloud15-SP4-Pool","installer_updates":false,"description":"SLE-Module-Public-Cloud15-SP4-Pool for sle-15-ppc64le","id":5269,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP4/ppc64le/product/","autorefresh":false,"distro_target":"sle-15-ppc64le"},{"installer_updates":false,"name":"SLE-Module-Public-Cloud15-SP4-Debuginfo-Pool","description":"SLE-Module-Public-Cloud15-SP4-Debuginfo-Pool for sle-15-ppc64le","id":5270,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP4/ppc64le/product_debug/","distro_target":"sle-15-ppc64le","autorefresh":false},{"enabled":false,"id":5271,"autorefresh":false,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP4/ppc64le/product_source/","name":"SLE-Module-Public-Cloud15-SP4-Source-Pool","installer_updates":false,"description":"SLE-Module-Public-Cloud15-SP4-Source-Pool for sle-15-ppc64le"}],"online_predecessor_ids":[1616,1806,1986,2173],"product_class":"MODULE","predecessor_ids":[1616,1806,1986,2173],"product_type":"module","cpe":"cpe:/o:suse:sle-module-public-cloud:15:sp4","free":true,"shortname":"Public-Cloud-Module","description":"

The Public Cloud Module is a collection of tools that enables you to create and manage cloud images from the commandline on SUSE Linux Enterprise Server. When building your own images with KIWI or SUSE Studio, initialization code specific to the target cloud is included in that image.

Access to the Public Cloud Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself; please check the Release Notes for further details.

","arch":"ppc64le","eula_url":""},{"release_stage":"released","id":2326,"identifier":"sle-module-public-cloud","extensions":[],"friendly_version":"15 SP4","release_type":null,"former_identifier":"sle-module-public-cloud","migration_extra":false,"friendly_name":"Public Cloud Module 15 SP4 s390x","offline_predecessor_ids":[1219],"name":"Public Cloud Module","version":"15.4","recommended":false,"product_type":"module","cpe":"cpe:/o:suse:sle-module-public-cloud:15:sp4","online_predecessor_ids":[1646,1807,1987,2174],"repositories":[{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/15-SP4/s390x/update/","distro_target":"sle-15-s390x","autorefresh":true,"id":5272,"enabled":true,"description":"SLE-Module-Public-Cloud15-SP4-Updates for sle-15-s390x","installer_updates":false,"name":"SLE-Module-Public-Cloud15-SP4-Updates"},{"installer_updates":false,"name":"SLE-Module-Public-Cloud15-SP4-Debuginfo-Updates","description":"SLE-Module-Public-Cloud15-SP4-Debuginfo-Updates for sle-15-s390x","id":5273,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/15-SP4/s390x/update_debug/","distro_target":"sle-15-s390x","autorefresh":true},{"enabled":true,"id":5274,"autorefresh":false,"distro_target":"sle-15-s390x","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP4/s390x/product/","name":"SLE-Module-Public-Cloud15-SP4-Pool","installer_updates":false,"description":"SLE-Module-Public-Cloud15-SP4-Pool for sle-15-s390x"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP4/s390x/product_debug/","distro_target":"sle-15-s390x","autorefresh":false,"id":5275,"enabled":false,"description":"SLE-Module-Public-Cloud15-SP4-Debuginfo-Pool for sle-15-s390x","installer_updates":false,"name":"SLE-Module-Public-Cloud15-SP4-Debuginfo-Pool"},{"description":"SLE-Module-Public-Cloud15-SP4-Source-Pool for sle-15-s390x","name":"SLE-Module-Public-Cloud15-SP4-Source-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-15-s390x","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP4/s390x/product_source/","enabled":false,"id":5276}],"product_class":"MODULE","predecessor_ids":[1646,1807,1987,2174],"arch":"s390x","eula_url":"","free":true,"shortname":"Public-Cloud-Module","description":"

The Public Cloud Module is a collection of tools that enables you to create and manage cloud images from the commandline on SUSE Linux Enterprise Server. When building your own images with KIWI or SUSE Studio, initialization code specific to the target cloud is included in that image.

Access to the Public Cloud Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself; please check the Release Notes for further details.

"},{"friendly_version":"15 SP4","release_stage":"released","identifier":"sle-module-public-cloud","id":2327,"extensions":[],"version":"15.4","recommended":false,"former_identifier":"sle-module-public-cloud","release_type":null,"migration_extra":false,"friendly_name":"Public Cloud Module 15 SP4 x86_64","offline_predecessor_ids":[1220],"name":"Public Cloud Module","online_predecessor_ids":[1611,1808,1988,2175],"product_class":"MODULE","repositories":[{"name":"SLE-Module-Public-Cloud15-SP4-Updates","installer_updates":false,"description":"SLE-Module-Public-Cloud15-SP4-Updates for sle-15-x86_64","enabled":true,"id":5277,"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/15-SP4/x86_64/update/"},{"name":"SLE-Module-Public-Cloud15-SP4-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-Public-Cloud15-SP4-Debuginfo-Updates for sle-15-x86_64","id":5278,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/15-SP4/x86_64/update_debug/","autorefresh":true,"distro_target":"sle-15-x86_64"},{"installer_updates":false,"name":"SLE-Module-Public-Cloud15-SP4-Pool","description":"SLE-Module-Public-Cloud15-SP4-Pool for sle-15-x86_64","id":5279,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP4/x86_64/product/","distro_target":"sle-15-x86_64","autorefresh":false},{"name":"SLE-Module-Public-Cloud15-SP4-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-Public-Cloud15-SP4-Debuginfo-Pool for sle-15-x86_64","enabled":false,"id":5280,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP4/x86_64/product_debug/"},{"description":"SLE-Module-Public-Cloud15-SP4-Source-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Public-Cloud15-SP4-Source-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP4/x86_64/product_source/","distro_target":"sle-15-x86_64","autorefresh":false,"id":5281,"enabled":false}],"predecessor_ids":[1611,1808,1988,2175],"product_type":"module","cpe":"cpe:/o:suse:sle-module-public-cloud:15:sp4","free":true,"shortname":"Public-Cloud-Module","description":"

The Public Cloud Module is a collection of tools that enables you to create and manage cloud images from the commandline on SUSE Linux Enterprise Server. When building your own images with KIWI or SUSE Studio, initialization code specific to the target cloud is included in that image.

Access to the Public Cloud Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself; please check the Release Notes for further details.

","arch":"x86_64","eula_url":""},{"friendly_version":"15 SP4","extensions":[],"release_stage":"released","id":2328,"identifier":"sle-module-transactional-server","recommended":false,"version":"15.4","offline_predecessor_ids":[],"name":"Transactional Server Module","former_identifier":"sle-module-transactional-server","release_type":null,"friendly_name":"Transactional Server Module 15 SP4 aarch64","migration_extra":false,"predecessor_ids":[1822,1995,2177],"online_predecessor_ids":[1822,1995,2177],"product_class":"MODULE","repositories":[{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Transactional-Server/15-SP4/aarch64/update/","distro_target":"sle-15-aarch64","autorefresh":true,"id":5282,"enabled":true,"description":"SLE-Module-Transactional-Server15-SP4-Updates for sle-15-aarch64","installer_updates":false,"name":"SLE-Module-Transactional-Server15-SP4-Updates"},{"distro_target":"sle-15-aarch64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Transactional-Server/15-SP4/aarch64/update_debug/","enabled":false,"id":5283,"description":"SLE-Module-Transactional-Server15-SP4-Debuginfo-Updates for sle-15-aarch64","installer_updates":false,"name":"SLE-Module-Transactional-Server15-SP4-Debuginfo-Updates"},{"enabled":true,"id":5284,"autorefresh":false,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Transactional-Server/15-SP4/aarch64/product/","name":"SLE-Module-Transactional-Server15-SP4-Pool","installer_updates":false,"description":"SLE-Module-Transactional-Server15-SP4-Pool for sle-15-aarch64"},{"installer_updates":false,"name":"SLE-Module-Transactional-Server15-SP4-Debuginfo-Pool","description":"SLE-Module-Transactional-Server15-SP4-Debuginfo-Pool for sle-15-aarch64","id":5285,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Transactional-Server/15-SP4/aarch64/product_debug/","distro_target":"sle-15-aarch64","autorefresh":false},{"id":5286,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Transactional-Server/15-SP4/aarch64/product_source/","distro_target":"sle-15-aarch64","autorefresh":false,"installer_updates":false,"name":"SLE-Module-Transactional-Server15-SP4-Source-Pool","description":"SLE-Module-Transactional-Server15-SP4-Source-Pool for sle-15-aarch64"}],"product_type":"module","cpe":"cpe:/o:suse:sle-module-transactional-server:15:sp4","free":true,"shortname":"Transactional-Server-Module","description":"

Transactional Updates provide SUSE Linux Enterprise systems with a method of updating the operating system and its packages in an entirely ‘atomic’ way. Updates are either applied to the system all together in a single transaction, or not at all. This happens without influencing the running system. If an update fails, or if the successful update is deemed to be incompatible or otherwise incorrect, it can be discarded to immediately return the system to its previous functioning state.

Access to theTransactional Server Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself: Package versions in the this module are usually supported for at most three years. We are planning to release more recent versions on a schedule of approximately 18 month; the exact dates may differ per package.

","eula_url":"","arch":"aarch64"},{"friendly_name":"Transactional Server Module 15 SP4 ppc64le","migration_extra":false,"release_type":null,"former_identifier":"sle-module-transactional-server","name":"Transactional Server Module","offline_predecessor_ids":[],"version":"15.4","recommended":false,"identifier":"sle-module-transactional-server","release_stage":"released","id":2329,"extensions":[],"friendly_version":"15 SP4","arch":"ppc64le","eula_url":"","description":"

Transactional Updates provide SUSE Linux Enterprise systems with a method of updating the operating system and its packages in an entirely ‘atomic’ way. Updates are either applied to the system all together in a single transaction, or not at all. This happens without influencing the running system. If an update fails, or if the successful update is deemed to be incompatible or otherwise incorrect, it can be discarded to immediately return the system to its previous functioning state.

Access to theTransactional Server Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself: Package versions in the this module are usually supported for at most three years. We are planning to release more recent versions on a schedule of approximately 18 month; the exact dates may differ per package.

","shortname":"Transactional-Server-Module","free":true,"cpe":"cpe:/o:suse:sle-module-transactional-server:15:sp4","product_type":"module","repositories":[{"enabled":true,"id":5287,"distro_target":"sle-15-ppc64le","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Transactional-Server/15-SP4/ppc64le/update/","installer_updates":false,"name":"SLE-Module-Transactional-Server15-SP4-Updates","description":"SLE-Module-Transactional-Server15-SP4-Updates for sle-15-ppc64le"},{"id":5288,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Transactional-Server/15-SP4/ppc64le/update_debug/","autorefresh":true,"distro_target":"sle-15-ppc64le","name":"SLE-Module-Transactional-Server15-SP4-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-Transactional-Server15-SP4-Debuginfo-Updates for sle-15-ppc64le"},{"id":5289,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Transactional-Server/15-SP4/ppc64le/product/","autorefresh":false,"distro_target":"sle-15-ppc64le","name":"SLE-Module-Transactional-Server15-SP4-Pool","installer_updates":false,"description":"SLE-Module-Transactional-Server15-SP4-Pool for sle-15-ppc64le"},{"description":"SLE-Module-Transactional-Server15-SP4-Debuginfo-Pool for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-Transactional-Server15-SP4-Debuginfo-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Transactional-Server/15-SP4/ppc64le/product_debug/","distro_target":"sle-15-ppc64le","autorefresh":false,"id":5290,"enabled":false},{"enabled":false,"id":5291,"distro_target":"sle-15-ppc64le","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Transactional-Server/15-SP4/ppc64le/product_source/","installer_updates":false,"name":"SLE-Module-Transactional-Server15-SP4-Source-Pool","description":"SLE-Module-Transactional-Server15-SP4-Source-Pool for sle-15-ppc64le"}],"online_predecessor_ids":[1823,1996,2178],"product_class":"MODULE","predecessor_ids":[1823,1996,2178]},{"arch":"s390x","eula_url":"","description":"

Transactional Updates provide SUSE Linux Enterprise systems with a method of updating the operating system and its packages in an entirely ‘atomic’ way. Updates are either applied to the system all together in a single transaction, or not at all. This happens without influencing the running system. If an update fails, or if the successful update is deemed to be incompatible or otherwise incorrect, it can be discarded to immediately return the system to its previous functioning state.

Access to theTransactional Server Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself: Package versions in the this module are usually supported for at most three years. We are planning to release more recent versions on a schedule of approximately 18 month; the exact dates may differ per package.

","shortname":"Transactional-Server-Module","free":true,"cpe":"cpe:/o:suse:sle-module-transactional-server:15:sp4","product_type":"module","online_predecessor_ids":[1824,1997,2179],"repositories":[{"description":"SLE-Module-Transactional-Server15-SP4-Updates for sle-15-s390x","installer_updates":false,"name":"SLE-Module-Transactional-Server15-SP4-Updates","distro_target":"sle-15-s390x","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Transactional-Server/15-SP4/s390x/update/","enabled":true,"id":5292},{"description":"SLE-Module-Transactional-Server15-SP4-Debuginfo-Updates for sle-15-s390x","name":"SLE-Module-Transactional-Server15-SP4-Debuginfo-Updates","installer_updates":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Transactional-Server/15-SP4/s390x/update_debug/","autorefresh":true,"distro_target":"sle-15-s390x","id":5293,"enabled":false},{"enabled":true,"id":5294,"autorefresh":false,"distro_target":"sle-15-s390x","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Transactional-Server/15-SP4/s390x/product/","name":"SLE-Module-Transactional-Server15-SP4-Pool","installer_updates":false,"description":"SLE-Module-Transactional-Server15-SP4-Pool for sle-15-s390x"},{"distro_target":"sle-15-s390x","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Transactional-Server/15-SP4/s390x/product_debug/","enabled":false,"id":5295,"description":"SLE-Module-Transactional-Server15-SP4-Debuginfo-Pool for sle-15-s390x","installer_updates":false,"name":"SLE-Module-Transactional-Server15-SP4-Debuginfo-Pool"},{"name":"SLE-Module-Transactional-Server15-SP4-Source-Pool","installer_updates":false,"description":"SLE-Module-Transactional-Server15-SP4-Source-Pool for sle-15-s390x","id":5296,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Transactional-Server/15-SP4/s390x/product_source/","autorefresh":false,"distro_target":"sle-15-s390x"}],"product_class":"MODULE","predecessor_ids":[1824,1997,2179],"friendly_name":"Transactional Server Module 15 SP4 s390x","migration_extra":false,"release_type":null,"former_identifier":"sle-module-transactional-server","name":"Transactional Server Module","offline_predecessor_ids":[],"version":"15.4","recommended":false,"identifier":"sle-module-transactional-server","release_stage":"released","id":2330,"extensions":[],"friendly_version":"15 SP4"},{"predecessor_ids":[1825,1998,2180],"online_predecessor_ids":[1825,1998,2180],"repositories":[{"id":5297,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Transactional-Server/15-SP4/x86_64/update/","autorefresh":true,"distro_target":"sle-15-x86_64","name":"SLE-Module-Transactional-Server15-SP4-Updates","installer_updates":false,"description":"SLE-Module-Transactional-Server15-SP4-Updates for sle-15-x86_64"},{"name":"SLE-Module-Transactional-Server15-SP4-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-Transactional-Server15-SP4-Debuginfo-Updates for sle-15-x86_64","id":5298,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Transactional-Server/15-SP4/x86_64/update_debug/","autorefresh":true,"distro_target":"sle-15-x86_64"},{"installer_updates":false,"name":"SLE-Module-Transactional-Server15-SP4-Pool","description":"SLE-Module-Transactional-Server15-SP4-Pool for sle-15-x86_64","id":5299,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Transactional-Server/15-SP4/x86_64/product/","distro_target":"sle-15-x86_64","autorefresh":false},{"description":"SLE-Module-Transactional-Server15-SP4-Debuginfo-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Transactional-Server15-SP4-Debuginfo-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Transactional-Server/15-SP4/x86_64/product_debug/","distro_target":"sle-15-x86_64","autorefresh":false,"id":5300,"enabled":false},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Transactional-Server/15-SP4/x86_64/product_source/","distro_target":"sle-15-x86_64","autorefresh":false,"id":5301,"enabled":false,"description":"SLE-Module-Transactional-Server15-SP4-Source-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Transactional-Server15-SP4-Source-Pool"}],"product_class":"MODULE","product_type":"module","cpe":"cpe:/o:suse:sle-module-transactional-server:15:sp4","free":true,"shortname":"Transactional-Server-Module","description":"

Transactional Updates provide SUSE Linux Enterprise systems with a method of updating the operating system and its packages in an entirely ‘atomic’ way. Updates are either applied to the system all together in a single transaction, or not at all. This happens without influencing the running system. If an update fails, or if the successful update is deemed to be incompatible or otherwise incorrect, it can be discarded to immediately return the system to its previous functioning state.

Access to theTransactional Server Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself: Package versions in the this module are usually supported for at most three years. We are planning to release more recent versions on a schedule of approximately 18 month; the exact dates may differ per package.

","eula_url":"","arch":"x86_64","friendly_version":"15 SP4","extensions":[],"identifier":"sle-module-transactional-server","release_stage":"released","id":2331,"recommended":false,"version":"15.4","offline_predecessor_ids":[],"name":"Transactional Server Module","release_type":null,"former_identifier":"sle-module-transactional-server","migration_extra":false,"friendly_name":"Transactional Server Module 15 SP4 x86_64"},{"release_type":null,"former_identifier":"sle-module-live-patching","friendly_name":"SUSE Linux Enterprise Live Patching 15 SP4 ppc64le","migration_extra":false,"offline_predecessor_ids":[1537,1756,1887],"name":"SUSE Linux Enterprise Live Patching","version":"15.4","recommended":false,"identifier":"sle-module-live-patching","release_stage":"released","id":2332,"extensions":[],"friendly_version":"15 SP4","arch":"ppc64le","eula_url":"","free":false,"description":"

SUSE Linux Enterprise Live Patching provides packages to update critical components in SUSE Linux Enterprise. With SUSE Linux Enterprise Live Patching, you can perform critical patching without shutting down your system, reducing the need for planned downtime and increasing service availability.

","shortname":"Live-Patching","product_type":"extension","cpe":"cpe:/o:suse:sle-module-live-patching:15:sp4","product_class":"SLE-LP-PPC","online_predecessor_ids":[1735,1827,1983,2185],"repositories":[{"description":"SLE-Module-Live-Patching15-SP4-Updates for sle-15-ppc64le","name":"SLE-Module-Live-Patching15-SP4-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Live-Patching/15-SP4/ppc64le/update/","enabled":true,"id":5302},{"description":"SLE-Module-Live-Patching15-SP4-Debuginfo-Updates for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-Live-Patching15-SP4-Debuginfo-Updates","distro_target":"sle-15-ppc64le","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Live-Patching/15-SP4/ppc64le/update_debug/","enabled":false,"id":5303},{"name":"SLE-Module-Live-Patching15-SP4-Pool","installer_updates":false,"description":"SLE-Module-Live-Patching15-SP4-Pool for sle-15-ppc64le","enabled":true,"id":5304,"autorefresh":false,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Live-Patching/15-SP4/ppc64le/product/"},{"description":"SLE-Module-Live-Patching15-SP4-Debuginfo-Pool for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-Live-Patching15-SP4-Debuginfo-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Live-Patching/15-SP4/ppc64le/product_debug/","distro_target":"sle-15-ppc64le","autorefresh":false,"id":5305,"enabled":false},{"id":5306,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Live-Patching/15-SP4/ppc64le/product_source/","autorefresh":false,"distro_target":"sle-15-ppc64le","name":"SLE-Module-Live-Patching15-SP4-Source-Pool","installer_updates":false,"description":"SLE-Module-Live-Patching15-SP4-Source-Pool for sle-15-ppc64le"}],"predecessor_ids":[1735,1827,1983,2185]},{"cpe":"cpe:/o:suse:sle-module-live-patching:15:sp4","product_type":"extension","predecessor_ids":[2081,2186],"online_predecessor_ids":[2081,2186],"product_class":"SLE-LP-Z","repositories":[{"installer_updates":false,"name":"SLE-Module-Live-Patching15-SP4-Updates","description":"SLE-Module-Live-Patching15-SP4-Updates for sle-15-s390x","id":5307,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Live-Patching/15-SP4/s390x/update/","distro_target":"sle-15-s390x","autorefresh":true},{"description":"SLE-Module-Live-Patching15-SP4-Debuginfo-Updates for sle-15-s390x","name":"SLE-Module-Live-Patching15-SP4-Debuginfo-Updates","installer_updates":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Live-Patching/15-SP4/s390x/update_debug/","autorefresh":true,"distro_target":"sle-15-s390x","id":5308,"enabled":false},{"installer_updates":false,"name":"SLE-Module-Live-Patching15-SP4-Pool","description":"SLE-Module-Live-Patching15-SP4-Pool for sle-15-s390x","id":5309,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Live-Patching/15-SP4/s390x/product/","distro_target":"sle-15-s390x","autorefresh":false},{"description":"SLE-Module-Live-Patching15-SP4-Debuginfo-Pool for sle-15-s390x","name":"SLE-Module-Live-Patching15-SP4-Debuginfo-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-15-s390x","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Live-Patching/15-SP4/s390x/product_debug/","enabled":false,"id":5310},{"description":"SLE-Module-Live-Patching15-SP4-Source-Pool for sle-15-s390x","installer_updates":false,"name":"SLE-Module-Live-Patching15-SP4-Source-Pool","distro_target":"sle-15-s390x","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Live-Patching/15-SP4/s390x/product_source/","enabled":false,"id":5311}],"eula_url":"","arch":"s390x","shortname":"Live-Patching","description":"

SUSE Linux Enterprise Live Patching provides packages to update critical components in SUSE Linux Enterprise. With SUSE Linux Enterprise Live Patching, you can perform critical patching without shutting down your system, reducing the need for planned downtime and increasing service availability.

","free":false,"extensions":[],"identifier":"sle-module-live-patching","release_stage":"released","id":2333,"friendly_version":"15 SP4","name":"SUSE Linux Enterprise Live Patching","offline_predecessor_ids":[2079,2080],"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Live Patching 15 SP4 s390x","release_type":null,"former_identifier":"sle-module-live-patching","recommended":false,"version":"15.4"},{"predecessor_ids":[1736,1828,1984,2187],"product_class":"SLE-LP","online_predecessor_ids":[1736,1828,1984,2187],"repositories":[{"id":5312,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Live-Patching/15-SP4/x86_64/update/","distro_target":"sle-15-x86_64","autorefresh":true,"installer_updates":false,"name":"SLE-Module-Live-Patching15-SP4-Updates","description":"SLE-Module-Live-Patching15-SP4-Updates for sle-15-x86_64"},{"id":5313,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Live-Patching/15-SP4/x86_64/update_debug/","autorefresh":true,"distro_target":"sle-15-x86_64","name":"SLE-Module-Live-Patching15-SP4-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-Live-Patching15-SP4-Debuginfo-Updates for sle-15-x86_64"},{"id":5314,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Live-Patching/15-SP4/x86_64/product/","distro_target":"sle-15-x86_64","autorefresh":false,"installer_updates":false,"name":"SLE-Module-Live-Patching15-SP4-Pool","description":"SLE-Module-Live-Patching15-SP4-Pool for sle-15-x86_64"},{"enabled":false,"id":5315,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Live-Patching/15-SP4/x86_64/product_debug/","name":"SLE-Module-Live-Patching15-SP4-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-Live-Patching15-SP4-Debuginfo-Pool for sle-15-x86_64"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Live-Patching/15-SP4/x86_64/product_source/","autorefresh":false,"distro_target":"sle-15-x86_64","id":5316,"enabled":false,"description":"SLE-Module-Live-Patching15-SP4-Source-Pool for sle-15-x86_64","name":"SLE-Module-Live-Patching15-SP4-Source-Pool","installer_updates":false}],"cpe":"cpe:/o:suse:sle-module-live-patching:15:sp4","product_type":"extension","description":"

SUSE Linux Enterprise Live Patching provides packages to update critical components in SUSE Linux Enterprise. With SUSE Linux Enterprise Live Patching, you can perform critical patching without shutting down your system, reducing the need for planned downtime and increasing service availability.

","shortname":"Live-Patching","free":false,"eula_url":"","arch":"x86_64","friendly_version":"15 SP4","extensions":[],"identifier":"sle-module-live-patching","release_stage":"released","id":2334,"recommended":false,"version":"15.4","name":"SUSE Linux Enterprise Live Patching","offline_predecessor_ids":[1536,1757,1888],"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Live Patching 15 SP4 x86_64","former_identifier":"sle-module-live-patching","release_type":null},{"predecessor_ids":[1608,1782,1956,2192],"online_predecessor_ids":[1608,1782,1956,2192],"repositories":[{"name":"SLE-Product-HA15-SP4-Updates","installer_updates":false,"description":"SLE-Product-HA15-SP4-Updates for sle-15-aarch64","enabled":true,"id":5327,"autorefresh":true,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Updates/SLE-Product-HA/15-SP4/aarch64/update/"},{"distro_target":"sle-15-aarch64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-HA/15-SP4/aarch64/update_debug/","enabled":false,"id":5328,"description":"SLE-Product-HA15-SP4-Debuginfo-Updates for sle-15-aarch64","installer_updates":false,"name":"SLE-Product-HA15-SP4-Debuginfo-Updates"},{"distro_target":"sle-15-aarch64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP4/aarch64/product/","enabled":true,"id":5329,"description":"SLE-Product-HA15-SP4-Pool for sle-15-aarch64","installer_updates":false,"name":"SLE-Product-HA15-SP4-Pool"},{"description":"SLE-Product-HA15-SP4-Debuginfo-Pool for sle-15-aarch64","name":"SLE-Product-HA15-SP4-Debuginfo-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP4/aarch64/product_debug/","enabled":false,"id":5330},{"description":"SLE-Product-HA15-SP4-Source-Pool for sle-15-aarch64","installer_updates":false,"name":"SLE-Product-HA15-SP4-Source-Pool","distro_target":"sle-15-aarch64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP4/aarch64/product_source/","enabled":false,"id":5331}],"product_class":"SLE-HAE-ARM64","product_type":"extension","cpe":"cpe:/o:suse:sle-ha:15:sp4","free":false,"description":"SUSE Linux High Availability Extension provides mature, industry-leading open-source high-availability clustering technologies that are easy to set up and use. It can be deployed in physical and/or virtual environments, and can cluster physical servers, virtual servers, or any combination of the two to suit your business’ needs.","shortname":"SLEHA15-SP4","eula_url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP4/aarch64/product.license/","arch":"aarch64","friendly_version":"15 SP4","extensions":[],"release_stage":"released","identifier":"sle-ha","id":2337,"recommended":false,"version":"15.4","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise High Availability Extension","release_type":null,"former_identifier":"sle-ha","migration_extra":false,"friendly_name":"SUSE Linux Enterprise High Availability Extension 15 SP4 aarch64"},{"version":"15.4","recommended":false,"friendly_name":"SUSE Linux Enterprise High Availability Extension 15 SP4 ppc64le","migration_extra":false,"release_type":null,"former_identifier":"sle-ha","name":"SUSE Linux Enterprise High Availability Extension","offline_predecessor_ids":[1433,1635,1882],"friendly_version":"15 SP4","release_stage":"released","identifier":"sle-ha","id":2338,"extensions":[],"description":"SUSE Linux High Availability Extension provides mature, industry-leading open-source high-availability clustering technologies that are easy to set up and use. It can be deployed in physical and/or virtual environments, and can cluster physical servers, virtual servers, or any combination of the two to suit your business’ needs.","shortname":"SLEHA15-SP4","free":false,"arch":"ppc64le","eula_url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP4/ppc64le/product.license/","product_class":"SLE-HAE-PPC","online_predecessor_ids":[1606,1783,1957,2193],"repositories":[{"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-HA/15-SP4/ppc64le/update/","distro_target":"sle-15-ppc64le","autorefresh":true,"id":5332,"enabled":true,"description":"SLE-Product-HA15-SP4-Updates for sle-15-ppc64le","installer_updates":false,"name":"SLE-Product-HA15-SP4-Updates"},{"distro_target":"sle-15-ppc64le","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-HA/15-SP4/ppc64le/update_debug/","enabled":false,"id":5333,"description":"SLE-Product-HA15-SP4-Debuginfo-Updates for sle-15-ppc64le","installer_updates":false,"name":"SLE-Product-HA15-SP4-Debuginfo-Updates"},{"description":"SLE-Product-HA15-SP4-Pool for sle-15-ppc64le","installer_updates":false,"name":"SLE-Product-HA15-SP4-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP4/ppc64le/product/","distro_target":"sle-15-ppc64le","autorefresh":false,"id":5334,"enabled":true},{"name":"SLE-Product-HA15-SP4-Debuginfo-Pool","installer_updates":false,"description":"SLE-Product-HA15-SP4-Debuginfo-Pool for sle-15-ppc64le","enabled":false,"id":5335,"autorefresh":false,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP4/ppc64le/product_debug/"},{"description":"SLE-Product-HA15-SP4-Source-Pool for sle-15-ppc64le","name":"SLE-Product-HA15-SP4-Source-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP4/ppc64le/product_source/","enabled":false,"id":5336}],"predecessor_ids":[1606,1783,1957,2193],"cpe":"cpe:/o:suse:sle-ha:15:sp4","product_type":"extension"},{"version":"15.4","recommended":false,"release_type":null,"former_identifier":"sle-ha","migration_extra":false,"friendly_name":"SUSE Linux Enterprise High Availability Extension 15 SP4 s390x","offline_predecessor_ids":[1080,1082,1084,1086,1109,1110,1257,1287,1434,1436,1636,1638,1883,1885],"name":"SUSE Linux Enterprise High Availability Extension","friendly_version":"15 SP4","identifier":"sle-ha","release_stage":"released","id":2339,"extensions":[],"free":false,"shortname":"SLEHA15-SP4","description":"SUSE Linux High Availability Extension provides mature, industry-leading open-source high-availability clustering technologies that are easy to set up and use. It can be deployed in physical and/or virtual environments, and can cluster physical servers, virtual servers, or any combination of the two to suit your business’ needs.","arch":"s390x","eula_url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP4/s390x/product.license/","product_class":"SLE-HAE-Z","online_predecessor_ids":[1605,1784,1958,2194],"repositories":[{"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-HA/15-SP4/s390x/update/","autorefresh":true,"distro_target":"sle-15-s390x","id":5337,"enabled":true,"description":"SLE-Product-HA15-SP4-Updates for sle-15-s390x","name":"SLE-Product-HA15-SP4-Updates","installer_updates":false},{"distro_target":"sle-15-s390x","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-HA/15-SP4/s390x/update_debug/","enabled":false,"id":5338,"description":"SLE-Product-HA15-SP4-Debuginfo-Updates for sle-15-s390x","installer_updates":false,"name":"SLE-Product-HA15-SP4-Debuginfo-Updates"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP4/s390x/product/","distro_target":"sle-15-s390x","autorefresh":false,"id":5339,"enabled":true,"description":"SLE-Product-HA15-SP4-Pool for sle-15-s390x","installer_updates":false,"name":"SLE-Product-HA15-SP4-Pool"},{"distro_target":"sle-15-s390x","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP4/s390x/product_debug/","enabled":false,"id":5340,"description":"SLE-Product-HA15-SP4-Debuginfo-Pool for sle-15-s390x","installer_updates":false,"name":"SLE-Product-HA15-SP4-Debuginfo-Pool"},{"autorefresh":false,"distro_target":"sle-15-s390x","url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP4/s390x/product_source/","enabled":false,"id":5341,"description":"SLE-Product-HA15-SP4-Source-Pool for sle-15-s390x","name":"SLE-Product-HA15-SP4-Source-Pool","installer_updates":false}],"predecessor_ids":[1605,1784,1958,2194],"product_type":"extension","cpe":"cpe:/o:suse:sle-ha:15:sp4"},{"eula_url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP4/x86_64/product.license/","arch":"x86_64","description":"SUSE Linux High Availability Extension provides mature, industry-leading open-source high-availability clustering technologies that are easy to set up and use. It can be deployed in physical and/or virtual environments, and can cluster physical servers, virtual servers, or any combination of the two to suit your business’ needs.","shortname":"SLEHA15-SP4","free":false,"cpe":"cpe:/o:suse:sle-ha:15:sp4","product_type":"extension","predecessor_ids":[1582,1785,1959,2195],"repositories":[{"name":"SLE-Product-HA15-SP4-Updates","installer_updates":false,"description":"SLE-Product-HA15-SP4-Updates for sle-15-x86_64","enabled":true,"id":5342,"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Product-HA/15-SP4/x86_64/update/"},{"name":"SLE-Product-HA15-SP4-Debuginfo-Updates","installer_updates":false,"description":"SLE-Product-HA15-SP4-Debuginfo-Updates for sle-15-x86_64","id":5343,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-HA/15-SP4/x86_64/update_debug/","autorefresh":true,"distro_target":"sle-15-x86_64"},{"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP4/x86_64/product/","enabled":true,"id":5344,"description":"SLE-Product-HA15-SP4-Pool for sle-15-x86_64","name":"SLE-Product-HA15-SP4-Pool","installer_updates":false},{"installer_updates":false,"name":"SLE-Product-HA15-SP4-Debuginfo-Pool","description":"SLE-Product-HA15-SP4-Debuginfo-Pool for sle-15-x86_64","id":5345,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP4/x86_64/product_debug/","distro_target":"sle-15-x86_64","autorefresh":false},{"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP4/x86_64/product_source/","enabled":false,"id":5346,"description":"SLE-Product-HA15-SP4-Source-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Product-HA15-SP4-Source-Pool"}],"online_predecessor_ids":[1582,1785,1959,2195],"product_class":"SLE-HAE-X86","name":"SUSE Linux Enterprise High Availability Extension","offline_predecessor_ids":[958,961,967,971,1101,1107,1256,1286,1432,1435,1634,1637,1884,1886],"migration_extra":false,"friendly_name":"SUSE Linux Enterprise High Availability Extension 15 SP4 x86_64","former_identifier":"sle-ha","release_type":null,"recommended":false,"version":"15.4","extensions":[],"release_stage":"released","id":2340,"identifier":"sle-ha","friendly_version":"15 SP4"},{"name":"SAP Applications Module","offline_predecessor_ids":[],"friendly_name":"SAP Applications Module 15 SP4 ppc64le","migration_extra":false,"former_identifier":"sle-module-sap-applications","release_type":null,"recommended":false,"version":"15.4","extensions":[],"identifier":"sle-module-sap-applications","release_stage":"released","id":2341,"friendly_version":"15 SP4","eula_url":"","arch":"ppc64le","description":"

The SAP Applications module contains the specialized tools for SAP Applications administration.

The module is maintained and supported by the SUSE Linux Enterprise Server for SAP Applications product subscription.

","shortname":"SAP-Applications-Module","free":true,"cpe":"cpe:/o:suse:sle-module-sap-applications:15:sp4","product_type":"module","predecessor_ids":[1726,1786,1993,2197],"repositories":[{"autorefresh":true,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-SAP-Applications/15-SP4/ppc64le/update/","enabled":true,"id":5347,"description":"SLE-Module-SAP-Applications15-SP4-Updates for sle-15-ppc64le","name":"SLE-Module-SAP-Applications15-SP4-Updates","installer_updates":false},{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-SAP-Applications/15-SP4/ppc64le/update_debug/","distro_target":"sle-15-ppc64le","autorefresh":true,"id":5348,"enabled":false,"description":"SLE-Module-SAP-Applications15-SP4-Debuginfo-Updates for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-SAP-Applications15-SP4-Debuginfo-Updates"},{"id":5349,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-SAP-Applications/15-SP4/ppc64le/product/","autorefresh":false,"distro_target":"sle-15-ppc64le","name":"SLE-Module-SAP-Applications15-SP4-Pool","installer_updates":false,"description":"SLE-Module-SAP-Applications15-SP4-Pool for sle-15-ppc64le"},{"installer_updates":false,"name":"SLE-Module-SAP-Applications15-SP4-Debuginfo-Pool","description":"SLE-Module-SAP-Applications15-SP4-Debuginfo-Pool for sle-15-ppc64le","enabled":false,"id":5350,"distro_target":"sle-15-ppc64le","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-SAP-Applications/15-SP4/ppc64le/product_debug/"},{"enabled":false,"id":5351,"distro_target":"sle-15-ppc64le","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-SAP-Applications/15-SP4/ppc64le/product_source/","installer_updates":false,"name":"SLE-Module-SAP-Applications15-SP4-Source-Pool","description":"SLE-Module-SAP-Applications15-SP4-Source-Pool for sle-15-ppc64le"}],"online_predecessor_ids":[1726,1786,1993,2197],"product_class":"MODULE"},{"identifier":"sle-module-sap-applications","release_stage":"released","id":2342,"extensions":[],"friendly_version":"15 SP4","friendly_name":"SAP Applications Module 15 SP4 x86_64","migration_extra":false,"release_type":null,"former_identifier":"sle-module-sap-applications","name":"SAP Applications Module","offline_predecessor_ids":[],"version":"15.4","recommended":false,"cpe":"cpe:/o:suse:sle-module-sap-applications:15:sp4","product_type":"module","repositories":[{"description":"SLE-Module-SAP-Applications15-SP4-Updates for sle-15-x86_64","name":"SLE-Module-SAP-Applications15-SP4-Updates","installer_updates":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-SAP-Applications/15-SP4/x86_64/update/","autorefresh":true,"distro_target":"sle-15-x86_64","id":5352,"enabled":true},{"id":5353,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-SAP-Applications/15-SP4/x86_64/update_debug/","distro_target":"sle-15-x86_64","autorefresh":true,"installer_updates":false,"name":"SLE-Module-SAP-Applications15-SP4-Debuginfo-Updates","description":"SLE-Module-SAP-Applications15-SP4-Debuginfo-Updates for sle-15-x86_64"},{"enabled":true,"id":5354,"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-SAP-Applications/15-SP4/x86_64/product/","installer_updates":false,"name":"SLE-Module-SAP-Applications15-SP4-Pool","description":"SLE-Module-SAP-Applications15-SP4-Pool for sle-15-x86_64"},{"id":5355,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-SAP-Applications/15-SP4/x86_64/product_debug/","distro_target":"sle-15-x86_64","autorefresh":false,"installer_updates":false,"name":"SLE-Module-SAP-Applications15-SP4-Debuginfo-Pool","description":"SLE-Module-SAP-Applications15-SP4-Debuginfo-Pool for sle-15-x86_64"},{"name":"SLE-Module-SAP-Applications15-SP4-Source-Pool","installer_updates":false,"description":"SLE-Module-SAP-Applications15-SP4-Source-Pool for sle-15-x86_64","enabled":false,"id":5356,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-SAP-Applications/15-SP4/x86_64/product_source/"}],"online_predecessor_ids":[1727,1787,1994,2198],"product_class":"MODULE","predecessor_ids":[1727,1787,1994,2198],"arch":"x86_64","eula_url":"","shortname":"SAP-Applications-Module","description":"

The SAP Applications module contains the specialized tools for SAP Applications administration.

The module is maintained and supported by the SUSE Linux Enterprise Server for SAP Applications product subscription.

","free":true},{"version":"15.4","recommended":false,"former_identifier":"sle-we","release_type":null,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Workstation Extension 15 SP4 x86_64","offline_predecessor_ids":[1431,1639,1893],"name":"SUSE Linux Enterprise Workstation Extension","friendly_version":"15 SP4","release_stage":"released","identifier":"sle-we","id":2343,"extensions":[],"free":false,"shortname":"SLEWE15-SP4","description":"SUSE Linux Enterprise Workstation Extension adds additional functionality to a base SUSE Linux Enterprise installation. The Workstation Extension offers additional desktop applications (office suite, email client, graphical editor, multimedia tools) and libraries. Workstation Extension is enabled and installed by default on SUSE Linux Enterprise Desktop installation. Adding the Workstation Extension to a SUSE Linux Enterprise Server installation allows to seamlessly combine both products to create a full featured server workstation.","arch":"x86_64","eula_url":"https://updates.suse.com/SUSE/Products/SLE-Product-WE/15-SP4/x86_64/product.license/","product_class":"SLE-WE","online_predecessor_ids":[1583,1781,1999,2196],"repositories":[{"description":"SLE-15-SP4-Desktop-NVIDIA-Driver","installer_updates":false,"name":"SLE-15-SP4-Desktop-NVIDIA-Driver","url":"https://download.nvidia.com/suse/sle15sp4/","distro_target":null,"autorefresh":true,"id":5119,"enabled":true},{"id":5357,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-WE/15-SP4/x86_64/update/","distro_target":"sle-15-x86_64","autorefresh":true,"installer_updates":false,"name":"SLE-Product-WE15-SP4-Updates","description":"SLE-Product-WE15-SP4-Updates for sle-15-x86_64"},{"description":"SLE-Product-WE15-SP4-Debuginfo-Updates for sle-15-x86_64","installer_updates":false,"name":"SLE-Product-WE15-SP4-Debuginfo-Updates","distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-WE/15-SP4/x86_64/update_debug/","enabled":false,"id":5358},{"enabled":true,"id":5359,"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-WE/15-SP4/x86_64/product/","installer_updates":false,"name":"SLE-Product-WE15-SP4-Pool","description":"SLE-Product-WE15-SP4-Pool for sle-15-x86_64"},{"name":"SLE-Product-WE15-SP4-Debuginfo-Pool","installer_updates":false,"description":"SLE-Product-WE15-SP4-Debuginfo-Pool for sle-15-x86_64","id":5360,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-WE/15-SP4/x86_64/product_debug/","autorefresh":false,"distro_target":"sle-15-x86_64"},{"description":"SLE-Product-WE15-SP4-Source-Pool for sle-15-x86_64","name":"SLE-Product-WE15-SP4-Source-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-WE/15-SP4/x86_64/product_source/","autorefresh":false,"distro_target":"sle-15-x86_64","id":5361,"enabled":false}],"predecessor_ids":[1583,1781,1999,2196],"product_type":"extension","cpe":"cpe:/o:suse:sle-we:15:sp4"},{"online_predecessor_ids":[1740,1868,1947,2188],"repositories":[{"name":"SUSE-PackageHub-15-SP4-Backports-Pool","installer_updates":false,"description":"SUSE-PackageHub-15-SP4-Backports-Pool for sle-15-aarch64","enabled":true,"id":5364,"autorefresh":false,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Backports/SLE-15-SP4_aarch64/standard/"},{"autorefresh":true,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Backports/SLE-15-SP4_aarch64/standard_debug/","enabled":false,"id":5365,"description":"SUSE-PackageHub-15-SP4-Backports-Debuginfo for sle-15-aarch64","name":"SUSE-PackageHub-15-SP4-Backports-Debuginfo","installer_updates":false},{"description":"SLE-Module-Packagehub-Subpackages15-SP4-Updates for sle-15-aarch64","installer_updates":false,"name":"SLE-Module-Packagehub-Subpackages15-SP4-Updates","distro_target":"sle-15-aarch64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP4/aarch64/update/","enabled":true,"id":5366},{"description":"SLE-Module-Packagehub-Subpackages15-SP4-Debuginfo-Updates for sle-15-aarch64","installer_updates":false,"name":"SLE-Module-Packagehub-Subpackages15-SP4-Debuginfo-Updates","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP4/aarch64/update_debug/","distro_target":"sle-15-aarch64","autorefresh":true,"id":5367,"enabled":false},{"installer_updates":false,"name":"SUSE-PackageHub-15-SP4-Pool","description":"SUSE-PackageHub-15-SP4-Pool for sle-15-aarch64","id":5368,"enabled":true,"url":"https://updates.suse.com/SUSE/Backports/SLE-15-SP4_aarch64/product/","distro_target":"sle-15-aarch64","autorefresh":false},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP4/aarch64/product/","autorefresh":false,"distro_target":"sle-15-aarch64","id":5369,"enabled":true,"description":"SLE-Module-Packagehub-Subpackages15-SP4-Pool for sle-15-aarch64","name":"SLE-Module-Packagehub-Subpackages15-SP4-Pool","installer_updates":false},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP4/aarch64/product_debug/","autorefresh":false,"distro_target":"sle-15-aarch64","id":5370,"enabled":false,"description":"SLE-Module-Packagehub-Subpackages15-SP4-Debuginfo-Pool for sle-15-aarch64","name":"SLE-Module-Packagehub-Subpackages15-SP4-Debuginfo-Pool","installer_updates":false},{"name":"SLE-Module-Packagehub-Subpackages15-SP4-Source-Pool","installer_updates":false,"description":"SLE-Module-Packagehub-Subpackages15-SP4-Source-Pool for sle-15-aarch64","enabled":false,"id":5371,"autorefresh":false,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP4/aarch64/product_source/"}],"product_class":"MODULE","predecessor_ids":[1740,1868,1947,2188],"product_type":"module","cpe":"cpe:/o:suse:packagehub:15:sp4","free":true,"description":"SUSE Package Hub is a free of charge module providing access to community maintained packages built to run on SUSE Linux Enterprise Server. Built from the same sources used in the openSUSE distributions, these quality packages provide additional software to what is found in the SUSE Linux Enterprise Server product. Packages from the Package Hub are delivered without L3 support from SUSE. General updates and fixes to the packages in SUSE Package Hub are provided by the openSUSE community based on their discretion, though SUSE will monitor and ensure that any known critical security issues will be addressed. Packages in the Package Hub are approved by SUSE for use with SUSE Linux Enterprise Server 15-SP4 and to not interfere with the supportability of SUSE Linux Enterprise Server, its modules and extensions. For more information about SUSE Package Hub please visit https://packagehub.suse.com.","shortname":"SUSE-PackageHub-15","arch":"aarch64","eula_url":"","friendly_version":"15 SP4","identifier":"PackageHub","release_stage":"released","id":2344,"extensions":[],"version":"15.4","recommended":false,"former_identifier":"PackageHub","release_type":null,"migration_extra":false,"friendly_name":"SUSE Package Hub 15 SP4 aarch64","offline_predecessor_ids":[1532,1810,1912],"name":"SUSE Package Hub"},{"product_type":"module","cpe":"cpe:/o:suse:packagehub:15:sp4","predecessor_ids":[1741,1869,1948,2189],"online_predecessor_ids":[1741,1869,1948,2189],"repositories":[{"enabled":true,"id":5372,"distro_target":"sle-15-ppc64le","autorefresh":false,"url":"https://updates.suse.com/SUSE/Backports/SLE-15-SP4_ppc64le/standard/","installer_updates":false,"name":"SUSE-PackageHub-15-SP4-Backports-Pool","description":"SUSE-PackageHub-15-SP4-Backports-Pool for sle-15-ppc64le"},{"enabled":false,"id":5373,"autorefresh":true,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Backports/SLE-15-SP4_ppc64le/standard_debug/","name":"SUSE-PackageHub-15-SP4-Backports-Debuginfo","installer_updates":false,"description":"SUSE-PackageHub-15-SP4-Backports-Debuginfo for sle-15-ppc64le"},{"name":"SLE-Module-Packagehub-Subpackages15-SP4-Updates","installer_updates":false,"description":"SLE-Module-Packagehub-Subpackages15-SP4-Updates for sle-15-ppc64le","enabled":true,"id":5374,"autorefresh":true,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP4/ppc64le/update/"},{"description":"SLE-Module-Packagehub-Subpackages15-SP4-Debuginfo-Updates for sle-15-ppc64le","name":"SLE-Module-Packagehub-Subpackages15-SP4-Debuginfo-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP4/ppc64le/update_debug/","enabled":false,"id":5375},{"installer_updates":false,"name":"SUSE-PackageHub-15-SP4-Pool","description":"SUSE-PackageHub-15-SP4-Pool for sle-15-ppc64le","enabled":true,"id":5376,"distro_target":"sle-15-ppc64le","autorefresh":false,"url":"https://updates.suse.com/SUSE/Backports/SLE-15-SP4_ppc64le/product/"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP4/ppc64le/product/","autorefresh":false,"distro_target":"sle-15-ppc64le","id":5377,"enabled":true,"description":"SLE-Module-Packagehub-Subpackages15-SP4-Pool for sle-15-ppc64le","name":"SLE-Module-Packagehub-Subpackages15-SP4-Pool","installer_updates":false},{"id":5378,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP4/ppc64le/product_debug/","autorefresh":false,"distro_target":"sle-15-ppc64le","name":"SLE-Module-Packagehub-Subpackages15-SP4-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-Packagehub-Subpackages15-SP4-Debuginfo-Pool for sle-15-ppc64le"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP4/ppc64le/product_source/","distro_target":"sle-15-ppc64le","autorefresh":false,"id":5379,"enabled":false,"description":"SLE-Module-Packagehub-Subpackages15-SP4-Source-Pool for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-Packagehub-Subpackages15-SP4-Source-Pool"}],"product_class":"MODULE","eula_url":"","arch":"ppc64le","free":true,"description":"SUSE Package Hub is a free of charge module providing access to community maintained packages built to run on SUSE Linux Enterprise Server. Built from the same sources used in the openSUSE distributions, these quality packages provide additional software to what is found in the SUSE Linux Enterprise Server product. Packages from the Package Hub are delivered without L3 support from SUSE. General updates and fixes to the packages in SUSE Package Hub are provided by the openSUSE community based on their discretion, though SUSE will monitor and ensure that any known critical security issues will be addressed. Packages in the Package Hub are approved by SUSE for use with SUSE Linux Enterprise Server 15-SP4 and to not interfere with the supportability of SUSE Linux Enterprise Server, its modules and extensions. For more information about SUSE Package Hub please visit https://packagehub.suse.com.","shortname":"SUSE-PackageHub-15","extensions":[],"release_stage":"released","identifier":"PackageHub","id":2345,"friendly_version":"15 SP4","offline_predecessor_ids":[1531,1811,1913],"name":"SUSE Package Hub","release_type":null,"former_identifier":"PackageHub","friendly_name":"SUSE Package Hub 15 SP4 ppc64le","migration_extra":false,"recommended":false,"version":"15.4"},{"extensions":[],"release_stage":"released","identifier":"PackageHub","id":2346,"friendly_version":"15 SP4","offline_predecessor_ids":[1530,1812,1914],"name":"SUSE Package Hub","release_type":null,"former_identifier":"PackageHub","migration_extra":false,"friendly_name":"SUSE Package Hub 15 SP4 s390x","recommended":false,"version":"15.4","product_type":"module","cpe":"cpe:/o:suse:packagehub:15:sp4","predecessor_ids":[1742,1870,1949,2190],"repositories":[{"enabled":true,"id":5380,"distro_target":"sle-15-s390x","autorefresh":false,"url":"https://updates.suse.com/SUSE/Backports/SLE-15-SP4_s390x/standard/","installer_updates":false,"name":"SUSE-PackageHub-15-SP4-Backports-Pool","description":"SUSE-PackageHub-15-SP4-Backports-Pool for sle-15-s390x"},{"url":"https://updates.suse.com/SUSE/Backports/SLE-15-SP4_s390x/standard_debug/","autorefresh":true,"distro_target":"sle-15-s390x","id":5381,"enabled":false,"description":"SUSE-PackageHub-15-SP4-Backports-Debuginfo for sle-15-s390x","name":"SUSE-PackageHub-15-SP4-Backports-Debuginfo","installer_updates":false},{"distro_target":"sle-15-s390x","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP4/s390x/update/","enabled":true,"id":5382,"description":"SLE-Module-Packagehub-Subpackages15-SP4-Updates for sle-15-s390x","installer_updates":false,"name":"SLE-Module-Packagehub-Subpackages15-SP4-Updates"},{"enabled":false,"id":5383,"autorefresh":true,"distro_target":"sle-15-s390x","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP4/s390x/update_debug/","name":"SLE-Module-Packagehub-Subpackages15-SP4-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-Packagehub-Subpackages15-SP4-Debuginfo-Updates for sle-15-s390x"},{"description":"SUSE-PackageHub-15-SP4-Pool for sle-15-s390x","installer_updates":false,"name":"SUSE-PackageHub-15-SP4-Pool","url":"https://updates.suse.com/SUSE/Backports/SLE-15-SP4_s390x/product/","distro_target":"sle-15-s390x","autorefresh":false,"id":5384,"enabled":true},{"name":"SLE-Module-Packagehub-Subpackages15-SP4-Pool","installer_updates":false,"description":"SLE-Module-Packagehub-Subpackages15-SP4-Pool for sle-15-s390x","id":5385,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP4/s390x/product/","autorefresh":false,"distro_target":"sle-15-s390x"},{"description":"SLE-Module-Packagehub-Subpackages15-SP4-Debuginfo-Pool for sle-15-s390x","name":"SLE-Module-Packagehub-Subpackages15-SP4-Debuginfo-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP4/s390x/product_debug/","autorefresh":false,"distro_target":"sle-15-s390x","id":5386,"enabled":false},{"description":"SLE-Module-Packagehub-Subpackages15-SP4-Source-Pool for sle-15-s390x","installer_updates":false,"name":"SLE-Module-Packagehub-Subpackages15-SP4-Source-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP4/s390x/product_source/","distro_target":"sle-15-s390x","autorefresh":false,"id":5387,"enabled":false}],"online_predecessor_ids":[1742,1870,1949,2190],"product_class":"MODULE","eula_url":"","arch":"s390x","free":true,"shortname":"SUSE-PackageHub-15","description":"SUSE Package Hub is a free of charge module providing access to community maintained packages built to run on SUSE Linux Enterprise Server. Built from the same sources used in the openSUSE distributions, these quality packages provide additional software to what is found in the SUSE Linux Enterprise Server product. Packages from the Package Hub are delivered without L3 support from SUSE. General updates and fixes to the packages in SUSE Package Hub are provided by the openSUSE community based on their discretion, though SUSE will monitor and ensure that any known critical security issues will be addressed. Packages in the Package Hub are approved by SUSE for use with SUSE Linux Enterprise Server 15-SP4 and to not interfere with the supportability of SUSE Linux Enterprise Server, its modules and extensions. For more information about SUSE Package Hub please visit https://packagehub.suse.com."},{"product_type":"module","cpe":"cpe:/o:suse:packagehub:15:sp4","predecessor_ids":[1743,1871,1950,2191],"online_predecessor_ids":[1743,1871,1950,2191],"repositories":[{"id":5388,"enabled":true,"url":"https://updates.suse.com/SUSE/Backports/SLE-15-SP4_x86_64/standard/","distro_target":"sle-15-x86_64","autorefresh":false,"installer_updates":false,"name":"SUSE-PackageHub-15-SP4-Backports-Pool","description":"SUSE-PackageHub-15-SP4-Backports-Pool for sle-15-x86_64"},{"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Backports/SLE-15-SP4_x86_64/standard_debug/","enabled":false,"id":5389,"description":"SUSE-PackageHub-15-SP4-Backports-Debuginfo for sle-15-x86_64","name":"SUSE-PackageHub-15-SP4-Backports-Debuginfo","installer_updates":false},{"description":"SLE-Module-Packagehub-Subpackages15-SP4-Updates for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Packagehub-Subpackages15-SP4-Updates","distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP4/x86_64/update/","enabled":true,"id":5390},{"installer_updates":false,"name":"SLE-Module-Packagehub-Subpackages15-SP4-Debuginfo-Updates","description":"SLE-Module-Packagehub-Subpackages15-SP4-Debuginfo-Updates for sle-15-x86_64","id":5391,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP4/x86_64/update_debug/","distro_target":"sle-15-x86_64","autorefresh":true},{"id":5392,"enabled":true,"url":"https://updates.suse.com/SUSE/Backports/SLE-15-SP4_x86_64/product/","distro_target":"sle-15-x86_64","autorefresh":false,"installer_updates":false,"name":"SUSE-PackageHub-15-SP4-Pool","description":"SUSE-PackageHub-15-SP4-Pool for sle-15-x86_64"},{"id":5393,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP4/x86_64/product/","distro_target":"sle-15-x86_64","autorefresh":false,"installer_updates":false,"name":"SLE-Module-Packagehub-Subpackages15-SP4-Pool","description":"SLE-Module-Packagehub-Subpackages15-SP4-Pool for sle-15-x86_64"},{"installer_updates":false,"name":"SLE-Module-Packagehub-Subpackages15-SP4-Debuginfo-Pool","description":"SLE-Module-Packagehub-Subpackages15-SP4-Debuginfo-Pool for sle-15-x86_64","enabled":false,"id":5394,"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP4/x86_64/product_debug/"},{"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP4/x86_64/product_source/","enabled":false,"id":5395,"description":"SLE-Module-Packagehub-Subpackages15-SP4-Source-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Packagehub-Subpackages15-SP4-Source-Pool"}],"product_class":"MODULE","eula_url":"","arch":"x86_64","free":true,"description":"SUSE Package Hub is a free of charge module providing access to community maintained packages built to run on SUSE Linux Enterprise Server. Built from the same sources used in the openSUSE distributions, these quality packages provide additional software to what is found in the SUSE Linux Enterprise Server product. Packages from the Package Hub are delivered without L3 support from SUSE. General updates and fixes to the packages in SUSE Package Hub are provided by the openSUSE community based on their discretion, though SUSE will monitor and ensure that any known critical security issues will be addressed. Packages in the Package Hub are approved by SUSE for use with SUSE Linux Enterprise Server 15-SP4 and to not interfere with the supportability of SUSE Linux Enterprise Server, its modules and extensions. For more information about SUSE Package Hub please visit https://packagehub.suse.com.","shortname":"SUSE-PackageHub-15","extensions":[],"release_stage":"released","id":2347,"identifier":"PackageHub","friendly_version":"15 SP4","offline_predecessor_ids":[1529,1813,1915],"name":"SUSE Package Hub","former_identifier":"PackageHub","release_type":null,"migration_extra":false,"friendly_name":"SUSE Package Hub 15 SP4 x86_64","recommended":false,"version":"15.4"},{"former_identifier":"rancher","release_type":null,"friendly_name":"SUSE Rancher 2.5.9","migration_extra":false,"offline_predecessor_ids":[],"name":"SUSE Rancher","version":"2.5.9","recommended":false,"identifier":"rancher","release_stage":"released","id":2348,"extensions":[],"friendly_version":"2.5.9","arch":null,"eula_url":"","free":false,"shortname":"Rancher","description":null,"product_type":"base","cpe":"cpe:/o:suse:rancher:2.5.9","online_predecessor_ids":[],"product_class":"RANCHER-X86","repositories":[],"predecessor_ids":[]},{"friendly_version":"2.4.16","id":2349,"release_stage":"released","identifier":"rancher","extensions":[],"version":"2.4.16","recommended":false,"friendly_name":"SUSE Rancher 2.4.16","migration_extra":false,"former_identifier":"rancher","release_type":null,"name":"SUSE Rancher","offline_predecessor_ids":[],"repositories":[],"online_predecessor_ids":[],"product_class":"RANCHER-X86","predecessor_ids":[],"cpe":"cpe:/o:suse:rancher:2.4.16","product_type":"base","shortname":"Rancher","description":null,"free":false,"arch":null,"eula_url":""},{"predecessor_ids":[],"repositories":[],"online_predecessor_ids":[],"product_class":"LONGHORN-X86","cpe":"cpe:/o:suse:longhorn:1.1.2","product_type":"base","shortname":"Longhorn","description":null,"free":false,"eula_url":"","arch":null,"friendly_version":"1.1.2","extensions":[],"identifier":"longhorn","release_stage":"released","id":2350,"recommended":false,"version":"1.1.2","name":"SUSE Longhorn","offline_predecessor_ids":[],"friendly_name":"SUSE Longhorn 1.1.2","migration_extra":false,"former_identifier":"longhorn","release_type":null},{"friendly_version":"2.6.0","release_stage":"released","identifier":"rancher","id":2351,"extensions":[],"version":"2.6.0","recommended":false,"release_type":null,"former_identifier":"rancher","migration_extra":false,"friendly_name":"SUSE Rancher 2.6.0","offline_predecessor_ids":[],"name":"SUSE Rancher","repositories":[],"online_predecessor_ids":[],"product_class":"RANCHER-X86","predecessor_ids":[],"product_type":"base","cpe":"cpe:/o:suse:rancher:2.6.0","free":false,"shortname":"Rancher","description":null,"arch":null,"eula_url":""},{"offline_predecessor_ids":[],"name":"SUSE Rancher","release_type":null,"former_identifier":"rancher","migration_extra":false,"friendly_name":"SUSE Rancher 2.4.17","recommended":false,"version":"2.4.17","extensions":[],"identifier":"rancher","release_stage":"released","id":2352,"friendly_version":"2.4.17","eula_url":"","arch":null,"free":false,"description":null,"shortname":"Rancher","product_type":"base","cpe":"cpe:/o:suse:rancher:2.4.17","predecessor_ids":[],"online_predecessor_ids":[],"repositories":[],"product_class":"RANCHER-X86"},{"free":false,"shortname":"SLE-15-SP4-HPC","description":"

SUSE Linux Enterprise High Performance Computing is a highly scalable, high performance open source operating system designed to utilize the power of parallel computing for modeling, simulation and advanced analytics workloads.

","eula_url":"https://updates.suse.com/SUSE/Products/SLE-Product-HPC/15-SP4/aarch64/product.license/","arch":"aarch64","predecessor_ids":[1731,1767,1933,2132],"online_predecessor_ids":[1731,1767,1933,2132],"product_class":"HPC-ARM64","repositories":[{"autorefresh":true,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Updates/SLE-Product-HPC/15-SP4/aarch64/update/","enabled":true,"id":5396,"description":"SLE-Product-HPC-15-SP4-Updates for sle-15-aarch64","name":"SLE-Product-HPC-15-SP4-Updates","installer_updates":false},{"installer_updates":false,"name":"SLE-Product-HPC15-SP4-Debuginfo-Updates","description":"SLE-Product-HPC15-SP4-Debuginfo-Updates for sle-15-aarch64","enabled":false,"id":5397,"distro_target":"sle-15-aarch64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-HPC/15-SP4/aarch64/update_debug/"},{"enabled":true,"id":5398,"distro_target":"sle-15-aarch64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-HPC/15-SP4/aarch64/product/","installer_updates":false,"name":"SLE-Product-HPC-15-SP4-Pool","description":"SLE-Product-HPC-15-SP4-Pool for sle-15-aarch64"},{"id":5399,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-HPC/15-SP4/aarch64/product_debug/","distro_target":"sle-15-aarch64","autorefresh":false,"installer_updates":false,"name":"SLE-Product-HPC15-SP4-Debuginfo-Pool","description":"SLE-Product-HPC15-SP4-Debuginfo-Pool for sle-15-aarch64"},{"distro_target":"sle-15-aarch64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-HPC/15-SP4/aarch64/product_source/","enabled":false,"id":5400,"description":"SLE-Product-HPC15-SP4-Source-Pool for sle-15-aarch64","installer_updates":false,"name":"SLE-Product-HPC15-SP4-Source-Pool"}],"product_type":"base","cpe":"cpe:/o:suse:sle_hpc:15:sp4","recommended":false,"version":"15.4","offline_predecessor_ids":[1628,1750,1758,1872,1875],"name":"SUSE Linux Enterprise High Performance Computing","former_identifier":"SLE_HPC","release_type":null,"friendly_name":"SUSE Linux Enterprise High Performance Computing 15 SP4 aarch64","migration_extra":false,"friendly_version":"15 SP4","extensions":[{"product_type":"module","cpe":"cpe:/o:suse:sle-module-basesystem:15:sp4","predecessor_ids":[1589,1769,1943,2142],"online_predecessor_ids":[1589,1769,1943,2142],"repositories":[{"autorefresh":true,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15-SP4/aarch64/update/","enabled":true,"id":5122,"description":"SLE-Module-Basesystem15-SP4-Updates for sle-15-aarch64","name":"SLE-Module-Basesystem15-SP4-Updates","installer_updates":false},{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15-SP4/aarch64/update_debug/","autorefresh":true,"distro_target":"sle-15-aarch64","id":5123,"enabled":false,"description":"SLE-Module-Basesystem15-SP4-Debuginfo-Updates for sle-15-aarch64","name":"SLE-Module-Basesystem15-SP4-Debuginfo-Updates","installer_updates":false},{"description":"SLE-Module-Basesystem15-SP4-Pool for sle-15-aarch64","installer_updates":false,"name":"SLE-Module-Basesystem15-SP4-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP4/aarch64/product/","distro_target":"sle-15-aarch64","autorefresh":false,"id":5124,"enabled":true},{"description":"SLE-Module-Basesystem15-SP4-Debuginfo-Pool for sle-15-aarch64","installer_updates":false,"name":"SLE-Module-Basesystem15-SP4-Debuginfo-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP4/aarch64/product_debug/","distro_target":"sle-15-aarch64","autorefresh":false,"id":5125,"enabled":false},{"description":"SLE-Module-Basesystem15-SP4-Source-Pool for sle-15-aarch64","name":"SLE-Module-Basesystem15-SP4-Source-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP4/aarch64/product_source/","enabled":false,"id":5126}],"product_class":"MODULE","eula_url":"","arch":"aarch64","free":true,"shortname":"Basesystem-Module","description":"

The SUSE Linux Enterprise Basesystem Module delivers the base system of the product.

","extensions":[{"extensions":[{"cpe":"cpe:/o:suse:sle-module-development-tools:15:sp4","product_type":"module","predecessor_ids":[1598,1791,1968,2158],"repositories":[{"description":"SLE-Module-DevTools15-SP4-Updates for sle-15-aarch64","installer_updates":false,"name":"SLE-Module-DevTools15-SP4-Updates","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15-SP4/aarch64/update/","distro_target":"sle-15-aarch64","autorefresh":true,"id":5202,"enabled":true},{"autorefresh":true,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15-SP4/aarch64/update_debug/","enabled":false,"id":5203,"description":"SLE-Module-DevTools15-SP4-Debuginfo-Updates for sle-15-aarch64","name":"SLE-Module-DevTools15-SP4-Debuginfo-Updates","installer_updates":false},{"distro_target":"sle-15-aarch64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP4/aarch64/product/","enabled":true,"id":5204,"description":"SLE-Module-DevTools15-SP4-Pool for sle-15-aarch64","installer_updates":false,"name":"SLE-Module-DevTools15-SP4-Pool"},{"installer_updates":false,"name":"SLE-Module-DevTools15-SP4-Debuginfo-Pool","description":"SLE-Module-DevTools15-SP4-Debuginfo-Pool for sle-15-aarch64","id":5205,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP4/aarch64/product_debug/","distro_target":"sle-15-aarch64","autorefresh":false},{"description":"SLE-Module-DevTools15-SP4-Source-Pool for sle-15-aarch64","name":"SLE-Module-DevTools15-SP4-Source-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP4/aarch64/product_source/","enabled":false,"id":5206}],"online_predecessor_ids":[1598,1791,1968,2158],"product_class":"MODULE","eula_url":"","arch":"aarch64","description":"

The Development Tools Module helps you developing applications for SUSE Linux Enterprise 15.

Access to the Development Tools Module is included in your SUSE Linux Enterprise product subscription. The module has a different lifecycle than SUSE Linux Enterprise itself.

","shortname":"Development-Tools-Module","free":true,"extensions":[{"free":true,"description":"NVIDIA Compute Drivers - NVIDIA CUDA This Module contains software under the terms and conditions of a 3rd party EULA (End User License Agreement). The EULA can be found at https://docs.nvidia.com/cuda/eula/index.html. By using this software you agree to fully comply with the terms and conditions of the EULA. If you do not agree to the terms and conditions of the EULA, do not use the software.","shortname":"NVIDIA-Compute-Module","eula_url":"https://updates.suse.com/SUSE/Products/SLE-Module-NVIDIA-Compute/15/aarch64/product.license/","arch":"aarch64","predecessor_ids":[],"repositories":[{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-NVIDIA-Compute/15/aarch64/update/","distro_target":"sle-15-aarch64","autorefresh":true,"id":4560,"enabled":true,"description":"SLE-Module-NVIDIA-Compute-15-Updates for sle-15-aarch64","installer_updates":false,"name":"SLE-Module-NVIDIA-Compute-15-Updates"},{"description":"SLE-Module-NVIDIA-Compute-15-Pool for sle-15-aarch64","installer_updates":false,"name":"SLE-Module-NVIDIA-Compute-15-Pool","distro_target":"sle-15-aarch64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-NVIDIA-Compute/15/aarch64/product/","enabled":true,"id":4561},{"enabled":true,"id":4562,"autorefresh":true,"distro_target":null,"url":"https://developer.download.nvidia.com/compute/cuda/repos/sles15/sbsa/","name":"NVIDIA-Compute-SLE-15","installer_updates":false,"description":"NVIDIA-Compute-SLE-15"}],"online_predecessor_ids":[],"product_class":"MODULE","product_type":"module","cpe":"cpe:/o:suse:sle-module-nvidia-compute:15","recommended":false,"version":"15","offline_predecessor_ids":[],"name":"NVIDIA Compute Module","release_type":null,"former_identifier":"sle-module-NVIDIA-compute","friendly_name":"NVIDIA Compute Module 15 aarch64","migration_extra":false,"friendly_version":"15","extensions":[],"release_stage":"released","id":2130,"identifier":"sle-module-NVIDIA-compute"}],"identifier":"sle-module-development-tools","release_stage":"released","id":2312,"friendly_version":"15 SP4","name":"Development Tools Module","offline_predecessor_ids":[1376,1430,1633,1889],"migration_extra":false,"friendly_name":"Development Tools Module 15 SP4 aarch64","release_type":null,"former_identifier":"sle-sdk","recommended":true,"version":"15.4"}],"identifier":"sle-module-desktop-applications","release_stage":"released","id":2300,"friendly_version":"15 SP4","name":"Desktop Applications Module","offline_predecessor_ids":[],"friendly_name":"Desktop Applications Module 15 SP4 aarch64","migration_extra":false,"release_type":null,"former_identifier":"sle-module-desktop-applications","recommended":true,"version":"15.4","cpe":"cpe:/o:suse:sle-module-desktop-applications:15:sp4","product_type":"module","predecessor_ids":[1595,1773,1964,2146],"repositories":[{"installer_updates":false,"name":"SLE-Module-Desktop-Applications15-SP4-Updates","description":"SLE-Module-Desktop-Applications15-SP4-Updates for sle-15-aarch64","id":5142,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15-SP4/aarch64/update/","distro_target":"sle-15-aarch64","autorefresh":true},{"enabled":false,"id":5143,"autorefresh":true,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15-SP4/aarch64/update_debug/","name":"SLE-Module-Desktop-Applications15-SP4-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-Desktop-Applications15-SP4-Debuginfo-Updates for sle-15-aarch64"},{"name":"SLE-Module-Desktop-Applications15-SP4-Pool","installer_updates":false,"description":"SLE-Module-Desktop-Applications15-SP4-Pool for sle-15-aarch64","id":5144,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP4/aarch64/product/","autorefresh":false,"distro_target":"sle-15-aarch64"},{"enabled":false,"id":5145,"distro_target":"sle-15-aarch64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP4/aarch64/product_debug/","installer_updates":false,"name":"SLE-Module-Desktop-Applications15-SP4-Debuginfo-Pool","description":"SLE-Module-Desktop-Applications15-SP4-Debuginfo-Pool for sle-15-aarch64"},{"description":"SLE-Module-Desktop-Applications15-SP4-Source-Pool for sle-15-aarch64","name":"SLE-Module-Desktop-Applications15-SP4-Source-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP4/aarch64/product_source/","enabled":false,"id":5146}],"online_predecessor_ids":[1595,1773,1964,2146],"product_class":"MODULE","eula_url":"","arch":"aarch64","shortname":"Desktop-Applications-Module","description":"

The SUSE Linux Enterprise Desktop Applications Module delivers a basic set of Desktop functionality.

Access to the Desktop Applications Module is included in your SUSE Linux Enterprise product subscription.

","free":true},{"version":"15.4","recommended":true,"release_type":null,"former_identifier":"sle-module-server-applications","migration_extra":false,"friendly_name":"Server Applications Module 15 SP4 aarch64","offline_predecessor_ids":[],"name":"Server Applications Module","friendly_version":"15 SP4","id":2304,"release_stage":"released","identifier":"sle-module-server-applications","extensions":[{"product_class":"MODULE","online_predecessor_ids":[1718,1795,1973,2162],"repositories":[{"installer_updates":false,"name":"SLE-Module-Web-Scripting15-SP4-Updates","description":"SLE-Module-Web-Scripting15-SP4-Updates for sle-15-aarch64","id":5222,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/15-SP4/aarch64/update/","distro_target":"sle-15-aarch64","autorefresh":true},{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/15-SP4/aarch64/update_debug/","distro_target":"sle-15-aarch64","autorefresh":true,"id":5223,"enabled":false,"description":"SLE-Module-Web-Scripting15-SP4-Debuginfo-Updates for sle-15-aarch64","installer_updates":false,"name":"SLE-Module-Web-Scripting15-SP4-Debuginfo-Updates"},{"name":"SLE-Module-Web-Scripting15-SP4-Pool","installer_updates":false,"description":"SLE-Module-Web-Scripting15-SP4-Pool for sle-15-aarch64","enabled":true,"id":5224,"autorefresh":false,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP4/aarch64/product/"},{"enabled":false,"id":5225,"autorefresh":false,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP4/aarch64/product_debug/","name":"SLE-Module-Web-Scripting15-SP4-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-Web-Scripting15-SP4-Debuginfo-Pool for sle-15-aarch64"},{"distro_target":"sle-15-aarch64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP4/aarch64/product_source/","enabled":false,"id":5226,"description":"SLE-Module-Web-Scripting15-SP4-Source-Pool for sle-15-aarch64","installer_updates":false,"name":"SLE-Module-Web-Scripting15-SP4-Source-Pool"}],"predecessor_ids":[1718,1795,1973,2162],"product_type":"module","cpe":"cpe:/o:suse:sle-module-web-scripting:15:sp4","free":true,"shortname":"Web-Scripting-Module","description":"

The SUSE Linux Enterprise Web and Scripting Module should contains additional packages that are helpful when running a webserver.

Access to the Web and Scripting Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself: Package versions in this module are usually supported for at most three years. We are planning to release more recent versions on a schedule of approximately 18 month; the exact dates may differ per package.

","arch":"aarch64","eula_url":"","friendly_version":"15 SP4","identifier":"sle-module-web-scripting","release_stage":"released","id":2316,"extensions":[{"online_predecessor_ids":[1733,1799,1977,2166],"repositories":[{"enabled":true,"id":5406,"distro_target":"sle-15-aarch64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-HPC/15-SP4/aarch64/update/","installer_updates":false,"name":"SLE-Module-HPC15-SP4-Updates","description":"SLE-Module-HPC15-SP4-Updates for sle-15-aarch64"},{"description":"SLE-Module-HPC15-SP4-Debuginfo-Updates for sle-15-aarch64","name":"SLE-Module-HPC15-SP4-Debuginfo-Updates","installer_updates":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-HPC/15-SP4/aarch64/update_debug/","autorefresh":true,"distro_target":"sle-15-aarch64","id":5407,"enabled":false},{"autorefresh":false,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-HPC/15-SP4/aarch64/product/","enabled":true,"id":5408,"description":"SLE-Module-HPC15-SP4-Pool for sle-15-aarch64","name":"SLE-Module-HPC15-SP4-Pool","installer_updates":false},{"installer_updates":false,"name":"SLE-Module-HPC15-SP4-Debuginfo-Pool","description":"SLE-Module-HPC15-SP4-Debuginfo-Pool for sle-15-aarch64","id":5409,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-HPC/15-SP4/aarch64/product_debug/","distro_target":"sle-15-aarch64","autorefresh":false},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-HPC/15-SP4/aarch64/product_source/","distro_target":"sle-15-aarch64","autorefresh":false,"id":5410,"enabled":false,"description":"SLE-Module-HPC15-SP4-Source-Pool for sle-15-aarch64","installer_updates":false,"name":"SLE-Module-HPC15-SP4-Source-Pool"}],"product_class":"MODULE","predecessor_ids":[1733,1799,1977,2166],"product_type":"module","cpe":"cpe:/o:suse:sle-module-hpc:15:sp4","free":true,"shortname":"HPC-Module","description":"

The SUSE Linux Enterprise Server High Performance Computing (HPC) module delivers specific tools commonly used for high performance, numerically intensive workloads.

SUSE packages these tools in the SLES HPC Module to provide greater flexibility to deliver new versions or new tools more rapidly than the standard SUSE Linux Enterprise lifecycle would permit.

Packages in this module are generally supported until a newer version of the package is released or the package is dropped from the module.

","arch":"aarch64","eula_url":"","friendly_version":"15 SP4","release_stage":"released","id":2355,"identifier":"sle-module-hpc","extensions":[],"version":"15.4","recommended":true,"former_identifier":"sle-module-hpc","release_type":null,"migration_extra":false,"friendly_name":"HPC Module 15 SP4 aarch64","offline_predecessor_ids":[1522],"name":"HPC Module"}],"version":"15.4","recommended":true,"release_type":null,"former_identifier":"sle-module-web-scripting","migration_extra":false,"friendly_name":"Web and Scripting Module 15 SP4 aarch64","offline_predecessor_ids":[1539],"name":"Web and Scripting Module"},{"product_class":"MODULE","online_predecessor_ids":[1604,1801,1979,2168],"repositories":[{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/15-SP4/aarch64/update/","distro_target":"sle-15-aarch64","autorefresh":true,"id":5242,"enabled":true,"description":"SLE-Module-Legacy15-SP4-Updates for sle-15-aarch64","installer_updates":false,"name":"SLE-Module-Legacy15-SP4-Updates"},{"name":"SLE-Module-Legacy15-SP4-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-Legacy15-SP4-Debuginfo-Updates for sle-15-aarch64","enabled":false,"id":5243,"autorefresh":true,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/15-SP4/aarch64/update_debug/"},{"id":5244,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15-SP4/aarch64/product/","distro_target":"sle-15-aarch64","autorefresh":false,"installer_updates":false,"name":"SLE-Module-Legacy15-SP4-Pool","description":"SLE-Module-Legacy15-SP4-Pool for sle-15-aarch64"},{"installer_updates":false,"name":"SLE-Module-Legacy15-SP4-Debuginfo-Pool","description":"SLE-Module-Legacy15-SP4-Debuginfo-Pool for sle-15-aarch64","enabled":false,"id":5245,"distro_target":"sle-15-aarch64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15-SP4/aarch64/product_debug/"},{"distro_target":"sle-15-aarch64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15-SP4/aarch64/product_source/","enabled":false,"id":5246,"description":"SLE-Module-Legacy15-SP4-Source-Pool for sle-15-aarch64","installer_updates":false,"name":"SLE-Module-Legacy15-SP4-Source-Pool"}],"predecessor_ids":[1604,1801,1979,2168],"product_type":"module","cpe":"cpe:/o:suse:sle-module-legacy:15:sp4","free":true,"description":"

The Legacy Module helps you migrating applications from SUSE Linux Enterprise 12 and other systems to SUSE Linux Enterprise 15, by providing packages which are discontinued on SUSE Linux Enterprise Server, such as: ntp, IBM Java 8, and a number of libraries.

Access to the Legacy Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself. Packages in the this module are usually supported for at most three years.

","shortname":"Legacy-Module","arch":"aarch64","eula_url":"","friendly_version":"15 SP4","id":2320,"release_stage":"released","identifier":"sle-module-legacy","extensions":[],"version":"15.4","recommended":false,"former_identifier":"sle-module-legacy","release_type":null,"friendly_name":"Legacy Module 15 SP4 aarch64","migration_extra":false,"offline_predecessor_ids":[],"name":"Legacy Module"},{"extensions":[],"identifier":"sle-module-public-cloud","release_stage":"released","id":2324,"friendly_version":"15 SP4","offline_predecessor_ids":[1528],"name":"Public Cloud Module","former_identifier":"sle-module-public-cloud","release_type":null,"friendly_name":"Public Cloud Module 15 SP4 aarch64","migration_extra":false,"recommended":false,"version":"15.4","product_type":"module","cpe":"cpe:/o:suse:sle-module-public-cloud:15:sp4","predecessor_ids":[1645,1805,1985,2172],"repositories":[{"distro_target":"sle-15-aarch64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/15-SP4/aarch64/update/","enabled":true,"id":5262,"description":"SLE-Module-Public-Cloud15-SP4-Updates for sle-15-aarch64","installer_updates":false,"name":"SLE-Module-Public-Cloud15-SP4-Updates"},{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/15-SP4/aarch64/update_debug/","distro_target":"sle-15-aarch64","autorefresh":true,"id":5263,"enabled":false,"description":"SLE-Module-Public-Cloud15-SP4-Debuginfo-Updates for sle-15-aarch64","installer_updates":false,"name":"SLE-Module-Public-Cloud15-SP4-Debuginfo-Updates"},{"description":"SLE-Module-Public-Cloud15-SP4-Pool for sle-15-aarch64","installer_updates":false,"name":"SLE-Module-Public-Cloud15-SP4-Pool","distro_target":"sle-15-aarch64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP4/aarch64/product/","enabled":true,"id":5264},{"enabled":false,"id":5265,"autorefresh":false,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP4/aarch64/product_debug/","name":"SLE-Module-Public-Cloud15-SP4-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-Public-Cloud15-SP4-Debuginfo-Pool for sle-15-aarch64"},{"enabled":false,"id":5266,"distro_target":"sle-15-aarch64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP4/aarch64/product_source/","installer_updates":false,"name":"SLE-Module-Public-Cloud15-SP4-Source-Pool","description":"SLE-Module-Public-Cloud15-SP4-Source-Pool for sle-15-aarch64"}],"online_predecessor_ids":[1645,1805,1985,2172],"product_class":"MODULE","eula_url":"","arch":"aarch64","free":true,"shortname":"Public-Cloud-Module","description":"

The Public Cloud Module is a collection of tools that enables you to create and manage cloud images from the commandline on SUSE Linux Enterprise Server. When building your own images with KIWI or SUSE Studio, initialization code specific to the target cloud is included in that image.

Access to the Public Cloud Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself; please check the Release Notes for further details.

"},{"friendly_version":"15 SP4","extensions":[],"release_stage":"released","id":2337,"identifier":"sle-ha","recommended":false,"version":"15.4","name":"SUSE Linux Enterprise High Availability Extension","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"SUSE Linux Enterprise High Availability Extension 15 SP4 aarch64","release_type":null,"former_identifier":"sle-ha","predecessor_ids":[1608,1782,1956,2192],"repositories":[{"description":"SLE-Product-HA15-SP4-Updates for sle-15-aarch64","installer_updates":false,"name":"SLE-Product-HA15-SP4-Updates","distro_target":"sle-15-aarch64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-HA/15-SP4/aarch64/update/","enabled":true,"id":5327},{"enabled":false,"id":5328,"autorefresh":true,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Updates/SLE-Product-HA/15-SP4/aarch64/update_debug/","name":"SLE-Product-HA15-SP4-Debuginfo-Updates","installer_updates":false,"description":"SLE-Product-HA15-SP4-Debuginfo-Updates for sle-15-aarch64"},{"description":"SLE-Product-HA15-SP4-Pool for sle-15-aarch64","name":"SLE-Product-HA15-SP4-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP4/aarch64/product/","autorefresh":false,"distro_target":"sle-15-aarch64","id":5329,"enabled":true},{"installer_updates":false,"name":"SLE-Product-HA15-SP4-Debuginfo-Pool","description":"SLE-Product-HA15-SP4-Debuginfo-Pool for sle-15-aarch64","enabled":false,"id":5330,"distro_target":"sle-15-aarch64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP4/aarch64/product_debug/"},{"id":5331,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP4/aarch64/product_source/","autorefresh":false,"distro_target":"sle-15-aarch64","name":"SLE-Product-HA15-SP4-Source-Pool","installer_updates":false,"description":"SLE-Product-HA15-SP4-Source-Pool for sle-15-aarch64"}],"online_predecessor_ids":[1608,1782,1956,2192],"product_class":"SLE-HAE-ARM64","cpe":"cpe:/o:suse:sle-ha:15:sp4","product_type":"extension","description":"SUSE Linux High Availability Extension provides mature, industry-leading open-source high-availability clustering technologies that are easy to set up and use. It can be deployed in physical and/or virtual environments, and can cluster physical servers, virtual servers, or any combination of the two to suit your business’ needs.","shortname":"SLEHA15-SP4","free":false,"eula_url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP4/aarch64/product.license/","arch":"aarch64"}],"free":true,"shortname":"Server-Applications-Module","description":"

The SUSE Linux Enterprise Server Applications Module delivers a basic set of Server functionality.

Access to the Server Applications Module is included in your SUSE Linux Enterprise Server subscription.

","arch":"aarch64","eula_url":"","online_predecessor_ids":[1601,1777,1952,2150],"product_class":"MODULE","repositories":[{"autorefresh":true,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15-SP4/aarch64/update/","enabled":true,"id":5162,"description":"SLE-Module-Server-Applications15-SP4-Updates for sle-15-aarch64","name":"SLE-Module-Server-Applications15-SP4-Updates","installer_updates":false},{"name":"SLE-Module-Server-Applications15-SP4-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-Server-Applications15-SP4-Debuginfo-Updates for sle-15-aarch64","id":5163,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15-SP4/aarch64/update_debug/","autorefresh":true,"distro_target":"sle-15-aarch64"},{"enabled":true,"id":5164,"distro_target":"sle-15-aarch64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP4/aarch64/product/","installer_updates":false,"name":"SLE-Module-Server-Applications15-SP4-Pool","description":"SLE-Module-Server-Applications15-SP4-Pool for sle-15-aarch64"},{"autorefresh":false,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP4/aarch64/product_debug/","enabled":false,"id":5165,"description":"SLE-Module-Server-Applications15-SP4-Debuginfo-Pool for sle-15-aarch64","name":"SLE-Module-Server-Applications15-SP4-Debuginfo-Pool","installer_updates":false},{"id":5166,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP4/aarch64/product_source/","autorefresh":false,"distro_target":"sle-15-aarch64","name":"SLE-Module-Server-Applications15-SP4-Source-Pool","installer_updates":false,"description":"SLE-Module-Server-Applications15-SP4-Source-Pool for sle-15-aarch64"}],"predecessor_ids":[1601,1777,1952,2150],"product_type":"module","cpe":"cpe:/o:suse:sle-module-server-applications:15:sp4"},{"friendly_version":"15 SP4","identifier":"sle-module-containers","release_stage":"released","id":2308,"extensions":[],"version":"15.4","recommended":false,"friendly_name":"Containers Module 15 SP4 aarch64","migration_extra":false,"former_identifier":"sle-module-containers","release_type":null,"name":"Containers Module","offline_predecessor_ids":[],"online_predecessor_ids":[1920,1960,2154],"repositories":[{"id":5182,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/15-SP4/aarch64/update/","autorefresh":true,"distro_target":"sle-15-aarch64","name":"SLE-Module-Containers15-SP4-Updates","installer_updates":false,"description":"SLE-Module-Containers15-SP4-Updates for sle-15-aarch64"},{"installer_updates":false,"name":"SLE-Module-Containers15-SP4-Debuginfo-Updates","description":"SLE-Module-Containers15-SP4-Debuginfo-Updates for sle-15-aarch64","id":5183,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/15-SP4/aarch64/update_debug/","distro_target":"sle-15-aarch64","autorefresh":true},{"enabled":true,"id":5184,"autorefresh":false,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP4/aarch64/product/","name":"SLE-Module-Containers15-SP4-Pool","installer_updates":false,"description":"SLE-Module-Containers15-SP4-Pool for sle-15-aarch64"},{"distro_target":"sle-15-aarch64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP4/aarch64/product_debug/","enabled":false,"id":5185,"description":"SLE-Module-Containers15-SP4-Debuginfo-Pool for sle-15-aarch64","installer_updates":false,"name":"SLE-Module-Containers15-SP4-Debuginfo-Pool"},{"installer_updates":false,"name":"SLE-Module-Containers15-SP4-Source-Pool","description":"SLE-Module-Containers15-SP4-Source-Pool for sle-15-aarch64","enabled":false,"id":5186,"distro_target":"sle-15-aarch64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP4/aarch64/product_source/"}],"product_class":"MODULE","predecessor_ids":[1920,1960,2154],"cpe":"cpe:/o:suse:sle-module-containers:15:sp4","product_type":"module","shortname":"Containers-Module","description":"

This Module contains several packages revolving around containers and related tools.

","free":true,"arch":"aarch64","eula_url":""},{"eula_url":"","arch":"aarch64","description":"SUSE Package Hub is a free of charge module providing access to community maintained packages built to run on SUSE Linux Enterprise Server. Built from the same sources used in the openSUSE distributions, these quality packages provide additional software to what is found in the SUSE Linux Enterprise Server product. Packages from the Package Hub are delivered without L3 support from SUSE. General updates and fixes to the packages in SUSE Package Hub are provided by the openSUSE community based on their discretion, though SUSE will monitor and ensure that any known critical security issues will be addressed. Packages in the Package Hub are approved by SUSE for use with SUSE Linux Enterprise Server 15-SP4 and to not interfere with the supportability of SUSE Linux Enterprise Server, its modules and extensions. For more information about SUSE Package Hub please visit https://packagehub.suse.com.","shortname":"SUSE-PackageHub-15","free":true,"cpe":"cpe:/o:suse:packagehub:15:sp4","product_type":"module","predecessor_ids":[1740,1868,1947,2188],"product_class":"MODULE","online_predecessor_ids":[1740,1868,1947,2188],"repositories":[{"name":"SUSE-PackageHub-15-SP4-Backports-Pool","installer_updates":false,"description":"SUSE-PackageHub-15-SP4-Backports-Pool for sle-15-aarch64","id":5364,"enabled":true,"url":"https://updates.suse.com/SUSE/Backports/SLE-15-SP4_aarch64/standard/","autorefresh":false,"distro_target":"sle-15-aarch64"},{"distro_target":"sle-15-aarch64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Backports/SLE-15-SP4_aarch64/standard_debug/","enabled":false,"id":5365,"description":"SUSE-PackageHub-15-SP4-Backports-Debuginfo for sle-15-aarch64","installer_updates":false,"name":"SUSE-PackageHub-15-SP4-Backports-Debuginfo"},{"description":"SLE-Module-Packagehub-Subpackages15-SP4-Updates for sle-15-aarch64","name":"SLE-Module-Packagehub-Subpackages15-SP4-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP4/aarch64/update/","enabled":true,"id":5366},{"distro_target":"sle-15-aarch64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP4/aarch64/update_debug/","enabled":false,"id":5367,"description":"SLE-Module-Packagehub-Subpackages15-SP4-Debuginfo-Updates for sle-15-aarch64","installer_updates":false,"name":"SLE-Module-Packagehub-Subpackages15-SP4-Debuginfo-Updates"},{"enabled":true,"id":5368,"autorefresh":false,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Backports/SLE-15-SP4_aarch64/product/","name":"SUSE-PackageHub-15-SP4-Pool","installer_updates":false,"description":"SUSE-PackageHub-15-SP4-Pool for sle-15-aarch64"},{"name":"SLE-Module-Packagehub-Subpackages15-SP4-Pool","installer_updates":false,"description":"SLE-Module-Packagehub-Subpackages15-SP4-Pool for sle-15-aarch64","id":5369,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP4/aarch64/product/","autorefresh":false,"distro_target":"sle-15-aarch64"},{"description":"SLE-Module-Packagehub-Subpackages15-SP4-Debuginfo-Pool for sle-15-aarch64","name":"SLE-Module-Packagehub-Subpackages15-SP4-Debuginfo-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP4/aarch64/product_debug/","enabled":false,"id":5370},{"installer_updates":false,"name":"SLE-Module-Packagehub-Subpackages15-SP4-Source-Pool","description":"SLE-Module-Packagehub-Subpackages15-SP4-Source-Pool for sle-15-aarch64","enabled":false,"id":5371,"distro_target":"sle-15-aarch64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP4/aarch64/product_source/"}],"name":"SUSE Package Hub","offline_predecessor_ids":[1532,1810,1912],"migration_extra":false,"friendly_name":"SUSE Package Hub 15 SP4 aarch64","former_identifier":"PackageHub","release_type":null,"recommended":false,"version":"15.4","extensions":[],"identifier":"PackageHub","release_stage":"released","id":2344,"friendly_version":"15 SP4"},{"free":true,"shortname":"Python 3-Module","description":"

This module contains the Python 3 packages.

Access to the Python 3 Module is included in your SUSE Linux Enterprise subscription. The module has a different lifecycle than SUSE Linux Enterprise itself; please check the Release Notes for further details.

","arch":"aarch64","eula_url":"","repositories":[{"installer_updates":false,"name":"SLE-Module-Python3-15-SP4-Updates","description":"SLE-Module-Python3-15-SP4-Updates for sle-15-aarch64","id":5567,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Python3/15-SP4/aarch64/update/","distro_target":"sle-15-aarch64","autorefresh":true},{"enabled":false,"id":5568,"distro_target":"sle-15-aarch64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Python3/15-SP4/aarch64/update_debug/","installer_updates":false,"name":"SLE-Module-Python3-15-SP4-Debuginfo-Updates","description":"SLE-Module-Python3-15-SP4-Debuginfo-Updates for sle-15-aarch64"},{"autorefresh":false,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Python3/15-SP4/aarch64/product/","enabled":true,"id":5569,"description":"SLE-Module-Python3-15-SP4-Pool for sle-15-aarch64","name":"SLE-Module-Python3-15-SP4-Pool","installer_updates":false},{"autorefresh":false,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Python3/15-SP4/aarch64/product_debug/","enabled":false,"id":5570,"description":"SLE-Module-Python3-15-SP4-Debuginfo-Pool for sle-15-aarch64","name":"SLE-Module-Python3-15-SP4-Debuginfo-Pool","installer_updates":false},{"description":"SLE-Module-Python3-15-SP4-Source-Pool for sle-15-aarch64","installer_updates":false,"name":"SLE-Module-Python3-15-SP4-Source-Pool","distro_target":"sle-15-aarch64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Python3/15-SP4/aarch64/product_source/","enabled":false,"id":5571}],"online_predecessor_ids":[],"product_class":"MODULE","predecessor_ids":[],"product_type":"module","cpe":"cpe:/o:suse:sle-module-python3:15:sp4","version":"15.4","recommended":false,"former_identifier":"sle-module-python3","release_type":null,"friendly_name":"Python 3 Module 15 SP4 aarch64","migration_extra":false,"offline_predecessor_ids":[],"name":"Python 3 Module","friendly_version":"15 SP4","release_stage":"released","id":2402,"identifier":"sle-module-python3","extensions":[]}],"release_stage":"released","identifier":"sle-module-basesystem","id":2296,"friendly_version":"15 SP4","offline_predecessor_ids":[1522],"name":"Basesystem Module","former_identifier":"sle-module-basesystem","release_type":null,"migration_extra":false,"friendly_name":"Basesystem Module 15 SP4 aarch64","recommended":true,"version":"15.4"},{"product_type":"extension","cpe":"cpe:/o:suse:sle_hpc-espos:15:sp4","predecessor_ids":[2126,2128,2214],"online_predecessor_ids":[2126,2128,2214],"repositories":[{"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-HPC/15-SP4-ESPOS/aarch64/update/","distro_target":"sle-15-aarch64","autorefresh":true,"id":5416,"enabled":true,"description":"SLE-Product-HPC-15-SP4-ESPOS-Updates for sle-15-aarch64","installer_updates":false,"name":"SLE-Product-HPC-15-SP4-ESPOS-Updates"},{"description":"SLE-Product-HPC-15-SP4-ESPOS-Debuginfo-Updates for sle-15-aarch64","installer_updates":false,"name":"SLE-Product-HPC-15-SP4-ESPOS-Debuginfo-Updates","distro_target":"sle-15-aarch64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-HPC/15-SP4-ESPOS/aarch64/update_debug/","enabled":false,"id":5417},{"enabled":true,"id":5418,"distro_target":"sle-15-aarch64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-HPC/15-SP4-ESPOS/aarch64/product/","installer_updates":false,"name":"SLE-Product-HPC-15-SP4-ESPOS-Pool","description":"SLE-Product-HPC-15-SP4-ESPOS-Pool for sle-15-aarch64"},{"id":5419,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-HPC/15-SP4-ESPOS/aarch64/product_debug/","autorefresh":false,"distro_target":"sle-15-aarch64","name":"SLE-Product-HPC-15-SP4-ESPOS-Debuginfo-Pool","installer_updates":false,"description":"SLE-Product-HPC-15-SP4-ESPOS-Debuginfo-Pool for sle-15-aarch64"},{"installer_updates":false,"name":"SLE-Product-HPC-15-SP4-ESPOS-Source-Pool","description":"SLE-Product-HPC-15-SP4-ESPOS-Source-Pool for sle-15-aarch64","enabled":false,"id":5420,"distro_target":"sle-15-aarch64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-HPC/15-SP4-ESPOS/aarch64/product_source/"}],"product_class":"SLE-ESPOS-ARM64","eula_url":"","arch":"aarch64","free":false,"shortname":"SLE_HPC-ESPOS-15-SP4","description":"

SUSE Linux Enterprise High Performance Computing is a highly scalable, high performance open source operating system designed to utilize the power of parallel computing for modeling, simulation and advanced analytics workloads.

","extensions":[],"release_stage":"released","identifier":"SLE_HPC-ESPOS","id":2357,"friendly_version":"15 SP4","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise High Performance Computing ESPOS","release_type":null,"former_identifier":"SLE_HPC-ESPOS","friendly_name":"SUSE Linux Enterprise High Performance Computing ESPOS 15 SP4 aarch64","migration_extra":false,"recommended":false,"version":"15.4"},{"version":"15.4","recommended":false,"release_type":null,"former_identifier":"SLE_HPC-LTSS","friendly_name":"SUSE Linux Enterprise High Performance Computing LTSS 15 SP4 aarch64","migration_extra":false,"offline_predecessor_ids":[],"name":"SUSE Linux Enterprise High Performance Computing LTSS","friendly_version":"15 SP4","id":2359,"release_stage":"released","identifier":"SLE_HPC-LTSS","extensions":[],"free":false,"description":"

SUSE Linux Enterprise High Performance Computing is a highly scalable, high performance open source operating system designed to utilize the power of parallel computing for modeling, simulation and advanced analytics workloads.

","shortname":"SLE_HPC-LTSS-15-SP4","arch":"aarch64","eula_url":"","online_predecessor_ids":[],"product_class":"HPC15-SP4-LTSS-ARM64","repositories":[{"enabled":true,"id":5426,"distro_target":"sle-15-aarch64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-HPC/15-SP4-LTSS/aarch64/update/","installer_updates":false,"name":"SLE-Product-HPC-15-SP4-LTSS-Updates","description":"SLE-Product-HPC-15-SP4-LTSS-Updates for sle-15-aarch64"},{"description":"SLE-Product-HPC-15-SP4-LTSS-Debuginfo-Updates for sle-15-aarch64","name":"SLE-Product-HPC-15-SP4-LTSS-Debuginfo-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Updates/SLE-Product-HPC/15-SP4-LTSS/aarch64/update_debug/","enabled":false,"id":5427},{"installer_updates":false,"name":"SLE-Product-HPC-15-SP4-LTSS-Pool","description":"SLE-Product-HPC-15-SP4-LTSS-Pool for sle-15-aarch64","enabled":true,"id":5428,"distro_target":"sle-15-aarch64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-HPC/15-SP4-LTSS/aarch64/product/"},{"distro_target":"sle-15-aarch64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-HPC/15-SP4-LTSS/aarch64/product_debug/","enabled":false,"id":5429,"description":"SLE-Product-HPC-15-SP4-LTSS-Debuginfo-Pool for sle-15-aarch64","installer_updates":false,"name":"SLE-Product-HPC-15-SP4-LTSS-Debuginfo-Pool"},{"description":"SLE-Product-HPC-15-SP4-LTSS-Source-Pool for sle-15-aarch64","installer_updates":false,"name":"SLE-Product-HPC-15-SP4-LTSS-Source-Pool","distro_target":"sle-15-aarch64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-HPC/15-SP4-LTSS/aarch64/product_source/","enabled":false,"id":5430}],"predecessor_ids":[],"product_type":"extension","cpe":"cpe:/o:suse:sle_hpc-ltss:15:sp4"},{"online_predecessor_ids":[],"repositories":[{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Certifications/15-SP4/aarch64/update/","autorefresh":true,"distro_target":"sle-15-aarch64","id":5532,"enabled":true,"description":"SLE-Module-Certifications-15-SP4-Updates for sle-15-aarch64","name":"SLE-Module-Certifications-15-SP4-Updates","installer_updates":false},{"enabled":false,"id":5533,"autorefresh":true,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Certifications/15-SP4/aarch64/update_debug/","name":"SLE-Module-Certifications-15-SP4-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-Certifications-15-SP4-Debuginfo-Updates for sle-15-aarch64"},{"description":"SLE-Module-Certifications-15-SP4-Pool for sle-15-aarch64","name":"SLE-Module-Certifications-15-SP4-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Certifications/15-SP4/aarch64/product/","enabled":true,"id":5534},{"name":"SLE-Module-Certifications-15-SP4-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-Certifications-15-SP4-Debuginfo-Pool for sle-15-aarch64","id":5535,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Certifications/15-SP4/aarch64/product_debug/","autorefresh":false,"distro_target":"sle-15-aarch64"},{"installer_updates":false,"name":"SLE-Module-Certifications-15-SP4-Source-Pool","description":"SLE-Module-Certifications-15-SP4-Source-Pool for sle-15-aarch64","enabled":false,"id":5536,"distro_target":"sle-15-aarch64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Certifications/15-SP4/aarch64/product_source/"}],"product_class":"MODULE","predecessor_ids":[],"cpe":"cpe:/o:suse:sle-module-certifications:15:sp4","product_type":"module","description":"

This module contains the certification packages.

Access to the Certifications Module is included in your SUSE Linux Enterprise subscription. The module has a different lifecycle than SUSE Linux Enterprise itself; please check the Release Notes for further details.

","shortname":"Certifications-Module","free":true,"arch":"aarch64","eula_url":"","friendly_version":"15 SP4","id":2390,"release_stage":"released","identifier":"sle-module-certifications","extensions":[],"version":"15.4","recommended":false,"migration_extra":false,"friendly_name":"Certifications Module 15 SP4 aarch64","release_type":null,"former_identifier":"sle-module-certifications","name":"Certifications Module","offline_predecessor_ids":[]}],"identifier":"SLE_HPC","release_stage":"released","id":2353},{"product_type":"base","cpe":"cpe:/o:suse:sle_hpc:15:sp4","repositories":[{"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-HPC/15-SP4/x86_64/update/","distro_target":"sle-15-x86_64","autorefresh":true,"id":5401,"enabled":true,"description":"SLE-Product-HPC-15-SP4-Updates for sle-15-x86_64","installer_updates":false,"name":"SLE-Product-HPC-15-SP4-Updates"},{"name":"SLE-Product-HPC15-SP4-Debuginfo-Updates","installer_updates":false,"description":"SLE-Product-HPC15-SP4-Debuginfo-Updates for sle-15-x86_64","id":5402,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-HPC/15-SP4/x86_64/update_debug/","autorefresh":true,"distro_target":"sle-15-x86_64"},{"description":"SLE-Product-HPC-15-SP4-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Product-HPC-15-SP4-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Product-HPC/15-SP4/x86_64/product/","distro_target":"sle-15-x86_64","autorefresh":false,"id":5403,"enabled":true},{"id":5404,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-HPC/15-SP4/x86_64/product_debug/","autorefresh":false,"distro_target":"sle-15-x86_64","name":"SLE-Product-HPC15-SP4-Debuginfo-Pool","installer_updates":false,"description":"SLE-Product-HPC15-SP4-Debuginfo-Pool for sle-15-x86_64"},{"description":"SLE-Product-HPC15-SP4-Source-Pool for sle-15-x86_64","name":"SLE-Product-HPC15-SP4-Source-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Product-HPC/15-SP4/x86_64/product_source/","enabled":false,"id":5405}],"online_predecessor_ids":[1732,1768,1934,2133],"product_class":"HPC-X86","predecessor_ids":[1732,1768,1934,2133],"arch":"x86_64","eula_url":"https://updates.suse.com/SUSE/Products/SLE-Product-HPC/15-SP4/x86_64/product.license/","free":false,"description":"

SUSE Linux Enterprise High Performance Computing is a highly scalable, high performance open source operating system designed to utilize the power of parallel computing for modeling, simulation and advanced analytics workloads.

","shortname":"SLE-15-SP4-HPC","id":2354,"release_stage":"released","identifier":"SLE_HPC","extensions":[{"predecessor_ids":[1576,1772,1946,2145],"repositories":[{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15-SP4/x86_64/update/","distro_target":"sle-15-x86_64","autorefresh":true,"id":5137,"enabled":true,"description":"SLE-Module-Basesystem15-SP4-Updates for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Basesystem15-SP4-Updates"},{"description":"SLE-Module-Basesystem15-SP4-Debuginfo-Updates for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Basesystem15-SP4-Debuginfo-Updates","distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15-SP4/x86_64/update_debug/","enabled":false,"id":5138},{"description":"SLE-Module-Basesystem15-SP4-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Basesystem15-SP4-Pool","distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP4/x86_64/product/","enabled":true,"id":5139},{"name":"SLE-Module-Basesystem15-SP4-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-Basesystem15-SP4-Debuginfo-Pool for sle-15-x86_64","id":5140,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP4/x86_64/product_debug/","autorefresh":false,"distro_target":"sle-15-x86_64"},{"enabled":false,"id":5141,"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP4/x86_64/product_source/","installer_updates":false,"name":"SLE-Module-Basesystem15-SP4-Source-Pool","description":"SLE-Module-Basesystem15-SP4-Source-Pool for sle-15-x86_64"}],"online_predecessor_ids":[1576,1772,1946,2145],"product_class":"MODULE","product_type":"module","cpe":"cpe:/o:suse:sle-module-basesystem:15:sp4","free":true,"shortname":"Basesystem-Module","description":"

The SUSE Linux Enterprise Basesystem Module delivers the base system of the product.

","eula_url":"","arch":"x86_64","friendly_version":"15 SP4","extensions":[{"name":"Desktop Applications Module","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"Desktop Applications Module 15 SP4 x86_64","release_type":null,"former_identifier":"sle-module-desktop-applications","recommended":true,"version":"15.4","extensions":[{"release_type":null,"former_identifier":"sle-sdk","friendly_name":"Development Tools Module 15 SP4 x86_64","migration_extra":false,"offline_predecessor_ids":[1341,1427,1630,1892],"name":"Development Tools Module","version":"15.4","recommended":true,"release_stage":"released","id":2315,"identifier":"sle-module-development-tools","extensions":[{"free":true,"description":"NVIDIA Compute Drivers - NVIDIA CUDA This Module contains software under the terms and conditions of a 3rd party EULA (End User License Agreement). The EULA can be found at https://docs.nvidia.com/cuda/eula/index.html. By using this software you agree to fully comply with the terms and conditions of the EULA. If you do not agree to the terms and conditions of the EULA, do not use the software.","shortname":"NVIDIA-Compute-Module","eula_url":"https://updates.suse.com/SUSE/Products/SLE-Module-NVIDIA-Compute/15/x86_64/product.license/","arch":"x86_64","predecessor_ids":[],"online_predecessor_ids":[],"repositories":[{"enabled":true,"id":4554,"distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-NVIDIA-Compute/15/x86_64/update/","installer_updates":false,"name":"SLE-Module-NVIDIA-Compute-15-Updates","description":"SLE-Module-NVIDIA-Compute-15-Updates for sle-15-x86_64"},{"installer_updates":false,"name":"SLE-Module-NVIDIA-Compute-15-Pool","description":"SLE-Module-NVIDIA-Compute-15-Pool for sle-15-x86_64","id":4556,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-NVIDIA-Compute/15/x86_64/product/","distro_target":"sle-15-x86_64","autorefresh":false},{"installer_updates":false,"name":"NVIDIA-Compute-SLE-15","description":"NVIDIA-Compute-SLE-15","enabled":true,"id":4563,"distro_target":null,"autorefresh":true,"url":"https://developer.download.nvidia.com/compute/cuda/repos/sles15/x86_64/"}],"product_class":"MODULE","product_type":"module","cpe":"cpe:/o:suse:sle-module-nvidia-compute:15","recommended":false,"version":"15","offline_predecessor_ids":[],"name":"NVIDIA Compute Module","former_identifier":"sle-module-NVIDIA-compute","release_type":null,"friendly_name":"NVIDIA Compute Module 15 x86_64","migration_extra":false,"friendly_version":"15","extensions":[],"identifier":"sle-module-NVIDIA-compute","release_stage":"released","id":2131}],"friendly_version":"15 SP4","arch":"x86_64","eula_url":"","free":true,"description":"

The Development Tools Module helps you developing applications for SUSE Linux Enterprise 15.

Access to the Development Tools Module is included in your SUSE Linux Enterprise product subscription. The module has a different lifecycle than SUSE Linux Enterprise itself.

","shortname":"Development-Tools-Module","product_type":"module","cpe":"cpe:/o:suse:sle-module-development-tools:15:sp4","online_predecessor_ids":[1579,1794,1971,2161],"repositories":[{"enabled":true,"id":5217,"distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15-SP4/x86_64/update/","installer_updates":false,"name":"SLE-Module-DevTools15-SP4-Updates","description":"SLE-Module-DevTools15-SP4-Updates for sle-15-x86_64"},{"enabled":false,"id":5218,"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15-SP4/x86_64/update_debug/","name":"SLE-Module-DevTools15-SP4-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-DevTools15-SP4-Debuginfo-Updates for sle-15-x86_64"},{"id":5219,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP4/x86_64/product/","distro_target":"sle-15-x86_64","autorefresh":false,"installer_updates":false,"name":"SLE-Module-DevTools15-SP4-Pool","description":"SLE-Module-DevTools15-SP4-Pool for sle-15-x86_64"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP4/x86_64/product_debug/","autorefresh":false,"distro_target":"sle-15-x86_64","id":5220,"enabled":false,"description":"SLE-Module-DevTools15-SP4-Debuginfo-Pool for sle-15-x86_64","name":"SLE-Module-DevTools15-SP4-Debuginfo-Pool","installer_updates":false},{"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP4/x86_64/product_source/","enabled":false,"id":5221,"description":"SLE-Module-DevTools15-SP4-Source-Pool for sle-15-x86_64","name":"SLE-Module-DevTools15-SP4-Source-Pool","installer_updates":false}],"product_class":"MODULE","predecessor_ids":[1579,1794,1971,2161]}],"identifier":"sle-module-desktop-applications","release_stage":"released","id":2303,"friendly_version":"15 SP4","eula_url":"","arch":"x86_64","description":"

The SUSE Linux Enterprise Desktop Applications Module delivers a basic set of Desktop functionality.

Access to the Desktop Applications Module is included in your SUSE Linux Enterprise product subscription.

","shortname":"Desktop-Applications-Module","free":true,"cpe":"cpe:/o:suse:sle-module-desktop-applications:15:sp4","product_type":"module","predecessor_ids":[1578,1776,1967,2149],"repositories":[{"description":"SLE-Module-Desktop-Applications15-SP4-Updates for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Desktop-Applications15-SP4-Updates","distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15-SP4/x86_64/update/","enabled":true,"id":5157},{"description":"SLE-Module-Desktop-Applications15-SP4-Debuginfo-Updates for sle-15-x86_64","name":"SLE-Module-Desktop-Applications15-SP4-Debuginfo-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15-SP4/x86_64/update_debug/","enabled":false,"id":5158},{"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP4/x86_64/product/","enabled":true,"id":5159,"description":"SLE-Module-Desktop-Applications15-SP4-Pool for sle-15-x86_64","name":"SLE-Module-Desktop-Applications15-SP4-Pool","installer_updates":false},{"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP4/x86_64/product_debug/","enabled":false,"id":5160,"description":"SLE-Module-Desktop-Applications15-SP4-Debuginfo-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Desktop-Applications15-SP4-Debuginfo-Pool"},{"enabled":false,"id":5161,"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP4/x86_64/product_source/","installer_updates":false,"name":"SLE-Module-Desktop-Applications15-SP4-Source-Pool","description":"SLE-Module-Desktop-Applications15-SP4-Source-Pool for sle-15-x86_64"}],"online_predecessor_ids":[1578,1776,1967,2149],"product_class":"MODULE"},{"arch":"x86_64","eula_url":"","shortname":"Server-Applications-Module","description":"

The SUSE Linux Enterprise Server Applications Module delivers a basic set of Server functionality.

Access to the Server Applications Module is included in your SUSE Linux Enterprise Server subscription.

","free":true,"cpe":"cpe:/o:suse:sle-module-server-applications:15:sp4","product_type":"module","online_predecessor_ids":[1580,1780,1955,2153],"repositories":[{"enabled":true,"id":5177,"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15-SP4/x86_64/update/","name":"SLE-Module-Server-Applications15-SP4-Updates","installer_updates":false,"description":"SLE-Module-Server-Applications15-SP4-Updates for sle-15-x86_64"},{"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15-SP4/x86_64/update_debug/","enabled":false,"id":5178,"description":"SLE-Module-Server-Applications15-SP4-Debuginfo-Updates for sle-15-x86_64","name":"SLE-Module-Server-Applications15-SP4-Debuginfo-Updates","installer_updates":false},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP4/x86_64/product/","distro_target":"sle-15-x86_64","autorefresh":false,"id":5179,"enabled":true,"description":"SLE-Module-Server-Applications15-SP4-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Server-Applications15-SP4-Pool"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP4/x86_64/product_debug/","distro_target":"sle-15-x86_64","autorefresh":false,"id":5180,"enabled":false,"description":"SLE-Module-Server-Applications15-SP4-Debuginfo-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Server-Applications15-SP4-Debuginfo-Pool"},{"enabled":false,"id":5181,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP4/x86_64/product_source/","name":"SLE-Module-Server-Applications15-SP4-Source-Pool","installer_updates":false,"description":"SLE-Module-Server-Applications15-SP4-Source-Pool for sle-15-x86_64"}],"product_class":"MODULE","predecessor_ids":[1580,1780,1955,2153],"friendly_name":"Server Applications Module 15 SP4 x86_64","migration_extra":false,"release_type":null,"former_identifier":"sle-module-server-applications","name":"Server Applications Module","offline_predecessor_ids":[],"version":"15.4","recommended":true,"id":2307,"release_stage":"released","identifier":"sle-module-server-applications","extensions":[{"cpe":"cpe:/o:suse:sle-module-web-scripting:15:sp4","product_type":"module","online_predecessor_ids":[1721,1798,1976,2165],"product_class":"MODULE","repositories":[{"description":"SLE-Module-Web-Scripting15-SP4-Updates for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Web-Scripting15-SP4-Updates","distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/15-SP4/x86_64/update/","enabled":true,"id":5237},{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/15-SP4/x86_64/update_debug/","distro_target":"sle-15-x86_64","autorefresh":true,"id":5238,"enabled":false,"description":"SLE-Module-Web-Scripting15-SP4-Debuginfo-Updates for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Web-Scripting15-SP4-Debuginfo-Updates"},{"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP4/x86_64/product/","enabled":true,"id":5239,"description":"SLE-Module-Web-Scripting15-SP4-Pool for sle-15-x86_64","name":"SLE-Module-Web-Scripting15-SP4-Pool","installer_updates":false},{"description":"SLE-Module-Web-Scripting15-SP4-Debuginfo-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Web-Scripting15-SP4-Debuginfo-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP4/x86_64/product_debug/","distro_target":"sle-15-x86_64","autorefresh":false,"id":5240,"enabled":false},{"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP4/x86_64/product_source/","enabled":false,"id":5241,"description":"SLE-Module-Web-Scripting15-SP4-Source-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Web-Scripting15-SP4-Source-Pool"}],"predecessor_ids":[1721,1798,1976,2165],"arch":"x86_64","eula_url":"","shortname":"Web-Scripting-Module","description":"

The SUSE Linux Enterprise Web and Scripting Module should contains additional packages that are helpful when running a webserver.

Access to the Web and Scripting Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself: Package versions in this module are usually supported for at most three years. We are planning to release more recent versions on a schedule of approximately 18 month; the exact dates may differ per package.

","free":true,"release_stage":"released","identifier":"sle-module-web-scripting","id":2319,"extensions":[{"product_type":"module","cpe":"cpe:/o:suse:sle-module-hpc:15:sp4","online_predecessor_ids":[1734,1800,1978,2167],"repositories":[{"description":"SLE-Module-HPC15-SP4-Updates for sle-15-x86_64","name":"SLE-Module-HPC15-SP4-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-HPC/15-SP4/x86_64/update/","enabled":true,"id":5411},{"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-HPC/15-SP4/x86_64/update_debug/","enabled":false,"id":5412,"description":"SLE-Module-HPC15-SP4-Debuginfo-Updates for sle-15-x86_64","name":"SLE-Module-HPC15-SP4-Debuginfo-Updates","installer_updates":false},{"description":"SLE-Module-HPC15-SP4-Pool for sle-15-x86_64","name":"SLE-Module-HPC15-SP4-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-HPC/15-SP4/x86_64/product/","autorefresh":false,"distro_target":"sle-15-x86_64","id":5413,"enabled":true},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-HPC/15-SP4/x86_64/product_debug/","autorefresh":false,"distro_target":"sle-15-x86_64","id":5414,"enabled":false,"description":"SLE-Module-HPC15-SP4-Debuginfo-Pool for sle-15-x86_64","name":"SLE-Module-HPC15-SP4-Debuginfo-Pool","installer_updates":false},{"description":"SLE-Module-HPC15-SP4-Source-Pool for sle-15-x86_64","name":"SLE-Module-HPC15-SP4-Source-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-HPC/15-SP4/x86_64/product_source/","autorefresh":false,"distro_target":"sle-15-x86_64","id":5415,"enabled":false}],"product_class":"MODULE","predecessor_ids":[1734,1800,1978,2167],"arch":"x86_64","eula_url":"","free":true,"shortname":"HPC-Module","description":"

The SUSE Linux Enterprise Server High Performance Computing (HPC) module delivers specific tools commonly used for high performance, numerically intensive workloads.

SUSE packages these tools in the SLES HPC Module to provide greater flexibility to deliver new versions or new tools more rapidly than the standard SUSE Linux Enterprise lifecycle would permit.

Packages in this module are generally supported until a newer version of the package is released or the package is dropped from the module.

","release_stage":"released","identifier":"sle-module-hpc","id":2356,"extensions":[],"friendly_version":"15 SP4","release_type":null,"former_identifier":"sle-module-hpc","migration_extra":false,"friendly_name":"HPC Module 15 SP4 x86_64","offline_predecessor_ids":[1440],"name":"HPC Module","version":"15.4","recommended":true}],"friendly_version":"15 SP4","friendly_name":"Web and Scripting Module 15 SP4 x86_64","migration_extra":false,"release_type":null,"former_identifier":"sle-module-web-scripting","name":"Web and Scripting Module","offline_predecessor_ids":[1153],"version":"15.4","recommended":true},{"version":"15.4","recommended":false,"friendly_name":"Legacy Module 15 SP4 x86_64","migration_extra":false,"release_type":null,"former_identifier":"sle-module-legacy","name":"Legacy Module","offline_predecessor_ids":[1150],"friendly_version":"15 SP4","identifier":"sle-module-legacy","release_stage":"released","id":2323,"extensions":[],"description":"

The Legacy Module helps you migrating applications from SUSE Linux Enterprise 12 and other systems to SUSE Linux Enterprise 15, by providing packages which are discontinued on SUSE Linux Enterprise Server, such as: ntp, IBM Java 8, and a number of libraries.

Access to the Legacy Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself. Packages in the this module are usually supported for at most three years.

","shortname":"Legacy-Module","free":true,"arch":"x86_64","eula_url":"","repositories":[{"description":"SLE-Module-Legacy15-SP4-Updates for sle-15-x86_64","name":"SLE-Module-Legacy15-SP4-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/15-SP4/x86_64/update/","enabled":true,"id":5257},{"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/15-SP4/x86_64/update_debug/","enabled":false,"id":5258,"description":"SLE-Module-Legacy15-SP4-Debuginfo-Updates for sle-15-x86_64","name":"SLE-Module-Legacy15-SP4-Debuginfo-Updates","installer_updates":false},{"description":"SLE-Module-Legacy15-SP4-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Legacy15-SP4-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15-SP4/x86_64/product/","distro_target":"sle-15-x86_64","autorefresh":false,"id":5259,"enabled":true},{"installer_updates":false,"name":"SLE-Module-Legacy15-SP4-Debuginfo-Pool","description":"SLE-Module-Legacy15-SP4-Debuginfo-Pool for sle-15-x86_64","enabled":false,"id":5260,"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15-SP4/x86_64/product_debug/"},{"enabled":false,"id":5261,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15-SP4/x86_64/product_source/","name":"SLE-Module-Legacy15-SP4-Source-Pool","installer_updates":false,"description":"SLE-Module-Legacy15-SP4-Source-Pool for sle-15-x86_64"}],"online_predecessor_ids":[1581,1804,1982,2171],"product_class":"MODULE","predecessor_ids":[1581,1804,1982,2171],"cpe":"cpe:/o:suse:sle-module-legacy:15:sp4","product_type":"module"},{"arch":"x86_64","eula_url":"","free":true,"description":"

The Public Cloud Module is a collection of tools that enables you to create and manage cloud images from the commandline on SUSE Linux Enterprise Server. When building your own images with KIWI or SUSE Studio, initialization code specific to the target cloud is included in that image.

Access to the Public Cloud Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself; please check the Release Notes for further details.

","shortname":"Public-Cloud-Module","product_type":"module","cpe":"cpe:/o:suse:sle-module-public-cloud:15:sp4","repositories":[{"installer_updates":false,"name":"SLE-Module-Public-Cloud15-SP4-Updates","description":"SLE-Module-Public-Cloud15-SP4-Updates for sle-15-x86_64","enabled":true,"id":5277,"distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/15-SP4/x86_64/update/"},{"id":5278,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/15-SP4/x86_64/update_debug/","distro_target":"sle-15-x86_64","autorefresh":true,"installer_updates":false,"name":"SLE-Module-Public-Cloud15-SP4-Debuginfo-Updates","description":"SLE-Module-Public-Cloud15-SP4-Debuginfo-Updates for sle-15-x86_64"},{"description":"SLE-Module-Public-Cloud15-SP4-Pool for sle-15-x86_64","name":"SLE-Module-Public-Cloud15-SP4-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP4/x86_64/product/","autorefresh":false,"distro_target":"sle-15-x86_64","id":5279,"enabled":true},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP4/x86_64/product_debug/","distro_target":"sle-15-x86_64","autorefresh":false,"id":5280,"enabled":false,"description":"SLE-Module-Public-Cloud15-SP4-Debuginfo-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Public-Cloud15-SP4-Debuginfo-Pool"},{"enabled":false,"id":5281,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP4/x86_64/product_source/","name":"SLE-Module-Public-Cloud15-SP4-Source-Pool","installer_updates":false,"description":"SLE-Module-Public-Cloud15-SP4-Source-Pool for sle-15-x86_64"}],"online_predecessor_ids":[1611,1808,1988,2175],"product_class":"MODULE","predecessor_ids":[1611,1808,1988,2175],"release_type":null,"former_identifier":"sle-module-public-cloud","friendly_name":"Public Cloud Module 15 SP4 x86_64","migration_extra":false,"offline_predecessor_ids":[1220],"name":"Public Cloud Module","version":"15.4","recommended":false,"release_stage":"released","id":2327,"identifier":"sle-module-public-cloud","extensions":[],"friendly_version":"15 SP4"},{"friendly_version":"15 SP4","extensions":[],"release_stage":"released","identifier":"sle-ha","id":2340,"recommended":false,"version":"15.4","name":"SUSE Linux Enterprise High Availability Extension","offline_predecessor_ids":[958,961,967,971,1101,1107,1256,1286,1432,1435,1634,1637,1884,1886],"friendly_name":"SUSE Linux Enterprise High Availability Extension 15 SP4 x86_64","migration_extra":false,"release_type":null,"former_identifier":"sle-ha","predecessor_ids":[1582,1785,1959,2195],"online_predecessor_ids":[1582,1785,1959,2195],"product_class":"SLE-HAE-X86","repositories":[{"name":"SLE-Product-HA15-SP4-Updates","installer_updates":false,"description":"SLE-Product-HA15-SP4-Updates for sle-15-x86_64","enabled":true,"id":5342,"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Product-HA/15-SP4/x86_64/update/"},{"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-HA/15-SP4/x86_64/update_debug/","autorefresh":true,"distro_target":"sle-15-x86_64","id":5343,"enabled":false,"description":"SLE-Product-HA15-SP4-Debuginfo-Updates for sle-15-x86_64","name":"SLE-Product-HA15-SP4-Debuginfo-Updates","installer_updates":false},{"enabled":true,"id":5344,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP4/x86_64/product/","name":"SLE-Product-HA15-SP4-Pool","installer_updates":false,"description":"SLE-Product-HA15-SP4-Pool for sle-15-x86_64"},{"enabled":false,"id":5345,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP4/x86_64/product_debug/","name":"SLE-Product-HA15-SP4-Debuginfo-Pool","installer_updates":false,"description":"SLE-Product-HA15-SP4-Debuginfo-Pool for sle-15-x86_64"},{"description":"SLE-Product-HA15-SP4-Source-Pool for sle-15-x86_64","name":"SLE-Product-HA15-SP4-Source-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP4/x86_64/product_source/","autorefresh":false,"distro_target":"sle-15-x86_64","id":5346,"enabled":false}],"cpe":"cpe:/o:suse:sle-ha:15:sp4","product_type":"extension","shortname":"SLEHA15-SP4","description":"SUSE Linux High Availability Extension provides mature, industry-leading open-source high-availability clustering technologies that are easy to set up and use. It can be deployed in physical and/or virtual environments, and can cluster physical servers, virtual servers, or any combination of the two to suit your business’ needs.","free":false,"eula_url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP4/x86_64/product.license/","arch":"x86_64"}],"friendly_version":"15 SP4"},{"cpe":"cpe:/o:suse:sle-module-containers:15:sp4","product_type":"module","predecessor_ids":[1642,1790,1963,2157],"product_class":"MODULE","online_predecessor_ids":[1642,1790,1963,2157],"repositories":[{"installer_updates":false,"name":"SLE-Module-Containers15-SP4-Updates","description":"SLE-Module-Containers15-SP4-Updates for sle-15-x86_64","id":5197,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/15-SP4/x86_64/update/","distro_target":"sle-15-x86_64","autorefresh":true},{"id":5198,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/15-SP4/x86_64/update_debug/","distro_target":"sle-15-x86_64","autorefresh":true,"installer_updates":false,"name":"SLE-Module-Containers15-SP4-Debuginfo-Updates","description":"SLE-Module-Containers15-SP4-Debuginfo-Updates for sle-15-x86_64"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP4/x86_64/product/","autorefresh":false,"distro_target":"sle-15-x86_64","id":5199,"enabled":true,"description":"SLE-Module-Containers15-SP4-Pool for sle-15-x86_64","name":"SLE-Module-Containers15-SP4-Pool","installer_updates":false},{"description":"SLE-Module-Containers15-SP4-Debuginfo-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Containers15-SP4-Debuginfo-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP4/x86_64/product_debug/","distro_target":"sle-15-x86_64","autorefresh":false,"id":5200,"enabled":false},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP4/x86_64/product_source/","distro_target":"sle-15-x86_64","autorefresh":false,"id":5201,"enabled":false,"description":"SLE-Module-Containers15-SP4-Source-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Containers15-SP4-Source-Pool"}],"eula_url":"","arch":"x86_64","description":"

This Module contains several packages revolving around containers and related tools.

","shortname":"Containers-Module","free":true,"extensions":[],"release_stage":"released","id":2311,"identifier":"sle-module-containers","friendly_version":"15 SP4","name":"Containers Module","offline_predecessor_ids":[1332],"migration_extra":false,"friendly_name":"Containers Module 15 SP4 x86_64","former_identifier":"sle-module-containers","release_type":null,"recommended":false,"version":"15.4"},{"former_identifier":"sle-module-live-patching","release_type":null,"friendly_name":"SUSE Linux Enterprise Live Patching 15 SP4 x86_64","migration_extra":false,"offline_predecessor_ids":[1536,1757,1888],"name":"SUSE Linux Enterprise Live Patching","version":"15.4","recommended":false,"identifier":"sle-module-live-patching","release_stage":"released","id":2334,"extensions":[],"friendly_version":"15 SP4","arch":"x86_64","eula_url":"","free":false,"shortname":"Live-Patching","description":"

SUSE Linux Enterprise Live Patching provides packages to update critical components in SUSE Linux Enterprise. With SUSE Linux Enterprise Live Patching, you can perform critical patching without shutting down your system, reducing the need for planned downtime and increasing service availability.

","product_type":"extension","cpe":"cpe:/o:suse:sle-module-live-patching:15:sp4","product_class":"SLE-LP","online_predecessor_ids":[1736,1828,1984,2187],"repositories":[{"distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Live-Patching/15-SP4/x86_64/update/","enabled":true,"id":5312,"description":"SLE-Module-Live-Patching15-SP4-Updates for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Live-Patching15-SP4-Updates"},{"installer_updates":false,"name":"SLE-Module-Live-Patching15-SP4-Debuginfo-Updates","description":"SLE-Module-Live-Patching15-SP4-Debuginfo-Updates for sle-15-x86_64","id":5313,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Live-Patching/15-SP4/x86_64/update_debug/","distro_target":"sle-15-x86_64","autorefresh":true},{"id":5314,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Live-Patching/15-SP4/x86_64/product/","distro_target":"sle-15-x86_64","autorefresh":false,"installer_updates":false,"name":"SLE-Module-Live-Patching15-SP4-Pool","description":"SLE-Module-Live-Patching15-SP4-Pool for sle-15-x86_64"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Live-Patching/15-SP4/x86_64/product_debug/","autorefresh":false,"distro_target":"sle-15-x86_64","id":5315,"enabled":false,"description":"SLE-Module-Live-Patching15-SP4-Debuginfo-Pool for sle-15-x86_64","name":"SLE-Module-Live-Patching15-SP4-Debuginfo-Pool","installer_updates":false},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Live-Patching/15-SP4/x86_64/product_source/","autorefresh":false,"distro_target":"sle-15-x86_64","id":5316,"enabled":false,"description":"SLE-Module-Live-Patching15-SP4-Source-Pool for sle-15-x86_64","name":"SLE-Module-Live-Patching15-SP4-Source-Pool","installer_updates":false}],"predecessor_ids":[1736,1828,1984,2187]},{"eula_url":"","arch":"x86_64","free":true,"shortname":"SUSE-PackageHub-15","description":"SUSE Package Hub is a free of charge module providing access to community maintained packages built to run on SUSE Linux Enterprise Server. Built from the same sources used in the openSUSE distributions, these quality packages provide additional software to what is found in the SUSE Linux Enterprise Server product. Packages from the Package Hub are delivered without L3 support from SUSE. General updates and fixes to the packages in SUSE Package Hub are provided by the openSUSE community based on their discretion, though SUSE will monitor and ensure that any known critical security issues will be addressed. Packages in the Package Hub are approved by SUSE for use with SUSE Linux Enterprise Server 15-SP4 and to not interfere with the supportability of SUSE Linux Enterprise Server, its modules and extensions. For more information about SUSE Package Hub please visit https://packagehub.suse.com.","product_type":"module","cpe":"cpe:/o:suse:packagehub:15:sp4","predecessor_ids":[1743,1871,1950,2191],"repositories":[{"installer_updates":false,"name":"SUSE-PackageHub-15-SP4-Backports-Pool","description":"SUSE-PackageHub-15-SP4-Backports-Pool for sle-15-x86_64","id":5388,"enabled":true,"url":"https://updates.suse.com/SUSE/Backports/SLE-15-SP4_x86_64/standard/","distro_target":"sle-15-x86_64","autorefresh":false},{"url":"https://updates.suse.com/SUSE/Backports/SLE-15-SP4_x86_64/standard_debug/","distro_target":"sle-15-x86_64","autorefresh":true,"id":5389,"enabled":false,"description":"SUSE-PackageHub-15-SP4-Backports-Debuginfo for sle-15-x86_64","installer_updates":false,"name":"SUSE-PackageHub-15-SP4-Backports-Debuginfo"},{"id":5390,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP4/x86_64/update/","autorefresh":true,"distro_target":"sle-15-x86_64","name":"SLE-Module-Packagehub-Subpackages15-SP4-Updates","installer_updates":false,"description":"SLE-Module-Packagehub-Subpackages15-SP4-Updates for sle-15-x86_64"},{"id":5391,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP4/x86_64/update_debug/","autorefresh":true,"distro_target":"sle-15-x86_64","name":"SLE-Module-Packagehub-Subpackages15-SP4-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-Packagehub-Subpackages15-SP4-Debuginfo-Updates for sle-15-x86_64"},{"enabled":true,"id":5392,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Backports/SLE-15-SP4_x86_64/product/","name":"SUSE-PackageHub-15-SP4-Pool","installer_updates":false,"description":"SUSE-PackageHub-15-SP4-Pool for sle-15-x86_64"},{"installer_updates":false,"name":"SLE-Module-Packagehub-Subpackages15-SP4-Pool","description":"SLE-Module-Packagehub-Subpackages15-SP4-Pool for sle-15-x86_64","enabled":true,"id":5393,"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP4/x86_64/product/"},{"description":"SLE-Module-Packagehub-Subpackages15-SP4-Debuginfo-Pool for sle-15-x86_64","name":"SLE-Module-Packagehub-Subpackages15-SP4-Debuginfo-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP4/x86_64/product_debug/","autorefresh":false,"distro_target":"sle-15-x86_64","id":5394,"enabled":false},{"installer_updates":false,"name":"SLE-Module-Packagehub-Subpackages15-SP4-Source-Pool","description":"SLE-Module-Packagehub-Subpackages15-SP4-Source-Pool for sle-15-x86_64","id":5395,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP4/x86_64/product_source/","distro_target":"sle-15-x86_64","autorefresh":false}],"online_predecessor_ids":[1743,1871,1950,2191],"product_class":"MODULE","offline_predecessor_ids":[1529,1813,1915],"name":"SUSE Package Hub","release_type":null,"former_identifier":"PackageHub","migration_extra":false,"friendly_name":"SUSE Package Hub 15 SP4 x86_64","recommended":false,"version":"15.4","extensions":[],"id":2347,"release_stage":"released","identifier":"PackageHub","friendly_version":"15 SP4"},{"release_stage":"released","identifier":"sle-module-python3","id":2405,"extensions":[],"friendly_version":"15 SP4","friendly_name":"Python 3 Module 15 SP4 x86_64","migration_extra":false,"release_type":null,"former_identifier":"sle-module-python3","name":"Python 3 Module","offline_predecessor_ids":[],"version":"15.4","recommended":false,"cpe":"cpe:/o:suse:sle-module-python3:15:sp4","product_type":"module","online_predecessor_ids":[],"product_class":"MODULE","repositories":[{"enabled":true,"id":5582,"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Python3/15-SP4/x86_64/update/","name":"SLE-Module-Python3-15-SP4-Updates","installer_updates":false,"description":"SLE-Module-Python3-15-SP4-Updates for sle-15-x86_64"},{"name":"SLE-Module-Python3-15-SP4-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-Python3-15-SP4-Debuginfo-Updates for sle-15-x86_64","enabled":false,"id":5583,"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Python3/15-SP4/x86_64/update_debug/"},{"description":"SLE-Module-Python3-15-SP4-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Python3-15-SP4-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Python3/15-SP4/x86_64/product/","distro_target":"sle-15-x86_64","autorefresh":false,"id":5584,"enabled":true},{"enabled":false,"id":5585,"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Python3/15-SP4/x86_64/product_debug/","installer_updates":false,"name":"SLE-Module-Python3-15-SP4-Debuginfo-Pool","description":"SLE-Module-Python3-15-SP4-Debuginfo-Pool for sle-15-x86_64"},{"id":5586,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Python3/15-SP4/x86_64/product_source/","autorefresh":false,"distro_target":"sle-15-x86_64","name":"SLE-Module-Python3-15-SP4-Source-Pool","installer_updates":false,"description":"SLE-Module-Python3-15-SP4-Source-Pool for sle-15-x86_64"}],"predecessor_ids":[],"arch":"x86_64","eula_url":"","description":"

This module contains the Python 3 packages.

Access to the Python 3 Module is included in your SUSE Linux Enterprise subscription. The module has a different lifecycle than SUSE Linux Enterprise itself; please check the Release Notes for further details.

","shortname":"Python 3-Module","free":true}],"release_stage":"released","identifier":"sle-module-basesystem","id":2299,"recommended":true,"version":"15.4","offline_predecessor_ids":[1212,1368,1440],"name":"Basesystem Module","release_type":null,"former_identifier":"sle-module-basesystem","friendly_name":"Basesystem Module 15 SP4 x86_64","migration_extra":false},{"arch":"x86_64","eula_url":"","shortname":"SLE_HPC-ESPOS-15-SP4","description":"

SUSE Linux Enterprise High Performance Computing is a highly scalable, high performance open source operating system designed to utilize the power of parallel computing for modeling, simulation and advanced analytics workloads.

","free":false,"cpe":"cpe:/o:suse:sle_hpc-espos:15:sp4","product_type":"extension","repositories":[{"enabled":true,"id":5421,"distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-HPC/15-SP4-ESPOS/x86_64/update/","installer_updates":false,"name":"SLE-Product-HPC-15-SP4-ESPOS-Updates","description":"SLE-Product-HPC-15-SP4-ESPOS-Updates for sle-15-x86_64"},{"installer_updates":false,"name":"SLE-Product-HPC-15-SP4-ESPOS-Debuginfo-Updates","description":"SLE-Product-HPC-15-SP4-ESPOS-Debuginfo-Updates for sle-15-x86_64","enabled":false,"id":5422,"distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-HPC/15-SP4-ESPOS/x86_64/update_debug/"},{"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-HPC/15-SP4-ESPOS/x86_64/product/","enabled":true,"id":5423,"description":"SLE-Product-HPC-15-SP4-ESPOS-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Product-HPC-15-SP4-ESPOS-Pool"},{"installer_updates":false,"name":"SLE-Product-HPC-15-SP4-ESPOS-Debuginfo-Pool","description":"SLE-Product-HPC-15-SP4-ESPOS-Debuginfo-Pool for sle-15-x86_64","enabled":false,"id":5424,"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-HPC/15-SP4-ESPOS/x86_64/product_debug/"},{"description":"SLE-Product-HPC-15-SP4-ESPOS-Source-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Product-HPC-15-SP4-ESPOS-Source-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Product-HPC/15-SP4-ESPOS/x86_64/product_source/","distro_target":"sle-15-x86_64","autorefresh":false,"id":5425,"enabled":false}],"online_predecessor_ids":[2127,2129,2215],"product_class":"SLE-ESPOS-X86","predecessor_ids":[2127,2129,2215],"friendly_name":"SUSE Linux Enterprise High Performance Computing ESPOS 15 SP4 x86_64","migration_extra":false,"former_identifier":"SLE_HPC-ESPOS","release_type":null,"name":"SUSE Linux Enterprise High Performance Computing ESPOS","offline_predecessor_ids":[],"version":"15.4","recommended":false,"release_stage":"released","id":2358,"identifier":"SLE_HPC-ESPOS","extensions":[],"friendly_version":"15 SP4"},{"migration_extra":false,"friendly_name":"SUSE Linux Enterprise High Performance Computing LTSS 15 SP4 x86_64","former_identifier":"SLE_HPC-LTSS","release_type":null,"name":"SUSE Linux Enterprise High Performance Computing LTSS","offline_predecessor_ids":[],"version":"15.4","recommended":false,"id":2360,"release_stage":"released","identifier":"SLE_HPC-LTSS","extensions":[],"friendly_version":"15 SP4","arch":"x86_64","eula_url":"","shortname":"SLE_HPC-LTSS-15-SP4","description":"

SUSE Linux Enterprise High Performance Computing is a highly scalable, high performance open source operating system designed to utilize the power of parallel computing for modeling, simulation and advanced analytics workloads.

","free":false,"cpe":"cpe:/o:suse:sle_hpc-ltss:15:sp4","product_type":"extension","product_class":"HPC15-SP4-LTSS-X86","online_predecessor_ids":[],"repositories":[{"name":"SLE-Product-HPC-15-SP4-LTSS-Updates","installer_updates":false,"description":"SLE-Product-HPC-15-SP4-LTSS-Updates for sle-15-x86_64","enabled":true,"id":5431,"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Product-HPC/15-SP4-LTSS/x86_64/update/"},{"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-HPC/15-SP4-LTSS/x86_64/update_debug/","distro_target":"sle-15-x86_64","autorefresh":true,"id":5432,"enabled":false,"description":"SLE-Product-HPC-15-SP4-LTSS-Debuginfo-Updates for sle-15-x86_64","installer_updates":false,"name":"SLE-Product-HPC-15-SP4-LTSS-Debuginfo-Updates"},{"description":"SLE-Product-HPC-15-SP4-LTSS-Pool for sle-15-x86_64","name":"SLE-Product-HPC-15-SP4-LTSS-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-HPC/15-SP4-LTSS/x86_64/product/","autorefresh":false,"distro_target":"sle-15-x86_64","id":5433,"enabled":true},{"enabled":false,"id":5434,"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-HPC/15-SP4-LTSS/x86_64/product_debug/","installer_updates":false,"name":"SLE-Product-HPC-15-SP4-LTSS-Debuginfo-Pool","description":"SLE-Product-HPC-15-SP4-LTSS-Debuginfo-Pool for sle-15-x86_64"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Product-HPC/15-SP4-LTSS/x86_64/product_source/","distro_target":"sle-15-x86_64","autorefresh":false,"id":5435,"enabled":false,"description":"SLE-Product-HPC-15-SP4-LTSS-Source-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Product-HPC-15-SP4-LTSS-Source-Pool"}],"predecessor_ids":[]},{"extensions":[],"release_stage":"released","identifier":"sle-module-certifications","id":2393,"friendly_version":"15 SP4","offline_predecessor_ids":[],"name":"Certifications Module","release_type":null,"former_identifier":"sle-module-certifications","friendly_name":"Certifications Module 15 SP4 x86_64","migration_extra":false,"recommended":false,"version":"15.4","product_type":"module","cpe":"cpe:/o:suse:sle-module-certifications:15:sp4","predecessor_ids":[],"repositories":[{"name":"SLE-Module-Certifications-15-SP4-Updates","installer_updates":false,"description":"SLE-Module-Certifications-15-SP4-Updates for sle-15-x86_64","id":5547,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Certifications/15-SP4/x86_64/update/","autorefresh":true,"distro_target":"sle-15-x86_64"},{"enabled":false,"id":5548,"distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Certifications/15-SP4/x86_64/update_debug/","installer_updates":false,"name":"SLE-Module-Certifications-15-SP4-Debuginfo-Updates","description":"SLE-Module-Certifications-15-SP4-Debuginfo-Updates for sle-15-x86_64"},{"description":"SLE-Module-Certifications-15-SP4-Pool for sle-15-x86_64","name":"SLE-Module-Certifications-15-SP4-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Certifications/15-SP4/x86_64/product/","enabled":true,"id":5549},{"name":"SLE-Module-Certifications-15-SP4-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-Certifications-15-SP4-Debuginfo-Pool for sle-15-x86_64","id":5550,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Certifications/15-SP4/x86_64/product_debug/","autorefresh":false,"distro_target":"sle-15-x86_64"},{"enabled":false,"id":5551,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Certifications/15-SP4/x86_64/product_source/","name":"SLE-Module-Certifications-15-SP4-Source-Pool","installer_updates":false,"description":"SLE-Module-Certifications-15-SP4-Source-Pool for sle-15-x86_64"}],"online_predecessor_ids":[],"product_class":"MODULE","eula_url":"","arch":"x86_64","free":true,"description":"

This module contains the certification packages.

Access to the Certifications Module is included in your SUSE Linux Enterprise subscription. The module has a different lifecycle than SUSE Linux Enterprise itself; please check the Release Notes for further details.

","shortname":"Certifications-Module"}],"friendly_version":"15 SP4","release_type":null,"former_identifier":"SLE_HPC","friendly_name":"SUSE Linux Enterprise High Performance Computing 15 SP4 x86_64","migration_extra":false,"offline_predecessor_ids":[1421,1625,1751,1759,1873,1878],"name":"SUSE Linux Enterprise High Performance Computing","version":"15.4","recommended":false},{"recommended":false,"version":"15.4","name":"HPC Module","offline_predecessor_ids":[1522],"friendly_name":"HPC Module 15 SP4 aarch64","migration_extra":false,"former_identifier":"sle-module-hpc","release_type":null,"friendly_version":"15 SP4","extensions":[],"release_stage":"released","identifier":"sle-module-hpc","id":2355,"shortname":"HPC-Module","description":"

The SUSE Linux Enterprise Server High Performance Computing (HPC) module delivers specific tools commonly used for high performance, numerically intensive workloads.

SUSE packages these tools in the SLES HPC Module to provide greater flexibility to deliver new versions or new tools more rapidly than the standard SUSE Linux Enterprise lifecycle would permit.

Packages in this module are generally supported until a newer version of the package is released or the package is dropped from the module.

","free":true,"eula_url":"","arch":"aarch64","predecessor_ids":[1733,1799,1977,2166],"repositories":[{"description":"SLE-Module-HPC15-SP4-Updates for sle-15-aarch64","name":"SLE-Module-HPC15-SP4-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-HPC/15-SP4/aarch64/update/","enabled":true,"id":5406},{"enabled":false,"id":5407,"distro_target":"sle-15-aarch64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-HPC/15-SP4/aarch64/update_debug/","installer_updates":false,"name":"SLE-Module-HPC15-SP4-Debuginfo-Updates","description":"SLE-Module-HPC15-SP4-Debuginfo-Updates for sle-15-aarch64"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-HPC/15-SP4/aarch64/product/","autorefresh":false,"distro_target":"sle-15-aarch64","id":5408,"enabled":true,"description":"SLE-Module-HPC15-SP4-Pool for sle-15-aarch64","name":"SLE-Module-HPC15-SP4-Pool","installer_updates":false},{"enabled":false,"id":5409,"autorefresh":false,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-HPC/15-SP4/aarch64/product_debug/","name":"SLE-Module-HPC15-SP4-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-HPC15-SP4-Debuginfo-Pool for sle-15-aarch64"},{"installer_updates":false,"name":"SLE-Module-HPC15-SP4-Source-Pool","description":"SLE-Module-HPC15-SP4-Source-Pool for sle-15-aarch64","enabled":false,"id":5410,"distro_target":"sle-15-aarch64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-HPC/15-SP4/aarch64/product_source/"}],"online_predecessor_ids":[1733,1799,1977,2166],"product_class":"MODULE","cpe":"cpe:/o:suse:sle-module-hpc:15:sp4","product_type":"module"},{"friendly_version":"15 SP4","identifier":"sle-module-hpc","release_stage":"released","id":2356,"extensions":[],"version":"15.4","recommended":false,"former_identifier":"sle-module-hpc","release_type":null,"migration_extra":false,"friendly_name":"HPC Module 15 SP4 x86_64","offline_predecessor_ids":[1440],"name":"HPC Module","repositories":[{"description":"SLE-Module-HPC15-SP4-Updates for sle-15-x86_64","name":"SLE-Module-HPC15-SP4-Updates","installer_updates":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-HPC/15-SP4/x86_64/update/","autorefresh":true,"distro_target":"sle-15-x86_64","id":5411,"enabled":true},{"description":"SLE-Module-HPC15-SP4-Debuginfo-Updates for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-HPC15-SP4-Debuginfo-Updates","distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-HPC/15-SP4/x86_64/update_debug/","enabled":false,"id":5412},{"description":"SLE-Module-HPC15-SP4-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-HPC15-SP4-Pool","distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-HPC/15-SP4/x86_64/product/","enabled":true,"id":5413},{"enabled":false,"id":5414,"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-HPC/15-SP4/x86_64/product_debug/","installer_updates":false,"name":"SLE-Module-HPC15-SP4-Debuginfo-Pool","description":"SLE-Module-HPC15-SP4-Debuginfo-Pool for sle-15-x86_64"},{"name":"SLE-Module-HPC15-SP4-Source-Pool","installer_updates":false,"description":"SLE-Module-HPC15-SP4-Source-Pool for sle-15-x86_64","id":5415,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-HPC/15-SP4/x86_64/product_source/","autorefresh":false,"distro_target":"sle-15-x86_64"}],"online_predecessor_ids":[1734,1800,1978,2167],"product_class":"MODULE","predecessor_ids":[1734,1800,1978,2167],"product_type":"module","cpe":"cpe:/o:suse:sle-module-hpc:15:sp4","free":true,"description":"

The SUSE Linux Enterprise Server High Performance Computing (HPC) module delivers specific tools commonly used for high performance, numerically intensive workloads.

SUSE packages these tools in the SLES HPC Module to provide greater flexibility to deliver new versions or new tools more rapidly than the standard SUSE Linux Enterprise lifecycle would permit.

Packages in this module are generally supported until a newer version of the package is released or the package is dropped from the module.

","shortname":"HPC-Module","arch":"x86_64","eula_url":""},{"arch":"aarch64","eula_url":"","free":false,"description":"

SUSE Linux Enterprise High Performance Computing is a highly scalable, high performance open source operating system designed to utilize the power of parallel computing for modeling, simulation and advanced analytics workloads.

","shortname":"SLE_HPC-ESPOS-15-SP4","product_type":"extension","cpe":"cpe:/o:suse:sle_hpc-espos:15:sp4","online_predecessor_ids":[2126,2128,2214],"product_class":"SLE-ESPOS-ARM64","repositories":[{"id":5416,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-HPC/15-SP4-ESPOS/aarch64/update/","distro_target":"sle-15-aarch64","autorefresh":true,"installer_updates":false,"name":"SLE-Product-HPC-15-SP4-ESPOS-Updates","description":"SLE-Product-HPC-15-SP4-ESPOS-Updates for sle-15-aarch64"},{"description":"SLE-Product-HPC-15-SP4-ESPOS-Debuginfo-Updates for sle-15-aarch64","installer_updates":false,"name":"SLE-Product-HPC-15-SP4-ESPOS-Debuginfo-Updates","distro_target":"sle-15-aarch64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-HPC/15-SP4-ESPOS/aarch64/update_debug/","enabled":false,"id":5417},{"id":5418,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-HPC/15-SP4-ESPOS/aarch64/product/","distro_target":"sle-15-aarch64","autorefresh":false,"installer_updates":false,"name":"SLE-Product-HPC-15-SP4-ESPOS-Pool","description":"SLE-Product-HPC-15-SP4-ESPOS-Pool for sle-15-aarch64"},{"description":"SLE-Product-HPC-15-SP4-ESPOS-Debuginfo-Pool for sle-15-aarch64","name":"SLE-Product-HPC-15-SP4-ESPOS-Debuginfo-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-HPC/15-SP4-ESPOS/aarch64/product_debug/","autorefresh":false,"distro_target":"sle-15-aarch64","id":5419,"enabled":false},{"installer_updates":false,"name":"SLE-Product-HPC-15-SP4-ESPOS-Source-Pool","description":"SLE-Product-HPC-15-SP4-ESPOS-Source-Pool for sle-15-aarch64","id":5420,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-HPC/15-SP4-ESPOS/aarch64/product_source/","distro_target":"sle-15-aarch64","autorefresh":false}],"predecessor_ids":[2126,2128,2214],"former_identifier":"SLE_HPC-ESPOS","release_type":null,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise High Performance Computing ESPOS 15 SP4 aarch64","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise High Performance Computing ESPOS","version":"15.4","recommended":false,"identifier":"SLE_HPC-ESPOS","release_stage":"released","id":2357,"extensions":[],"friendly_version":"15 SP4"},{"eula_url":"","arch":"x86_64","shortname":"SLE_HPC-ESPOS-15-SP4","description":"

SUSE Linux Enterprise High Performance Computing is a highly scalable, high performance open source operating system designed to utilize the power of parallel computing for modeling, simulation and advanced analytics workloads.

","free":false,"cpe":"cpe:/o:suse:sle_hpc-espos:15:sp4","product_type":"extension","predecessor_ids":[2127,2129,2215],"online_predecessor_ids":[2127,2129,2215],"repositories":[{"description":"SLE-Product-HPC-15-SP4-ESPOS-Updates for sle-15-x86_64","name":"SLE-Product-HPC-15-SP4-ESPOS-Updates","installer_updates":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-HPC/15-SP4-ESPOS/x86_64/update/","autorefresh":true,"distro_target":"sle-15-x86_64","id":5421,"enabled":true},{"name":"SLE-Product-HPC-15-SP4-ESPOS-Debuginfo-Updates","installer_updates":false,"description":"SLE-Product-HPC-15-SP4-ESPOS-Debuginfo-Updates for sle-15-x86_64","enabled":false,"id":5422,"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Product-HPC/15-SP4-ESPOS/x86_64/update_debug/"},{"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Product-HPC/15-SP4-ESPOS/x86_64/product/","enabled":true,"id":5423,"description":"SLE-Product-HPC-15-SP4-ESPOS-Pool for sle-15-x86_64","name":"SLE-Product-HPC-15-SP4-ESPOS-Pool","installer_updates":false},{"description":"SLE-Product-HPC-15-SP4-ESPOS-Debuginfo-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Product-HPC-15-SP4-ESPOS-Debuginfo-Pool","distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-HPC/15-SP4-ESPOS/x86_64/product_debug/","enabled":false,"id":5424},{"url":"https://updates.suse.com/SUSE/Products/SLE-Product-HPC/15-SP4-ESPOS/x86_64/product_source/","autorefresh":false,"distro_target":"sle-15-x86_64","id":5425,"enabled":false,"description":"SLE-Product-HPC-15-SP4-ESPOS-Source-Pool for sle-15-x86_64","name":"SLE-Product-HPC-15-SP4-ESPOS-Source-Pool","installer_updates":false}],"product_class":"SLE-ESPOS-X86","name":"SUSE Linux Enterprise High Performance Computing ESPOS","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"SUSE Linux Enterprise High Performance Computing ESPOS 15 SP4 x86_64","release_type":null,"former_identifier":"SLE_HPC-ESPOS","recommended":false,"version":"15.4","extensions":[],"identifier":"SLE_HPC-ESPOS","release_stage":"released","id":2358,"friendly_version":"15 SP4"},{"former_identifier":"SLE_HPC-LTSS","release_type":null,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise High Performance Computing LTSS 15 SP4 aarch64","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise High Performance Computing LTSS","version":"15.4","recommended":false,"identifier":"SLE_HPC-LTSS","release_stage":"released","id":2359,"extensions":[],"friendly_version":"15 SP4","arch":"aarch64","eula_url":"","free":false,"description":"

SUSE Linux Enterprise High Performance Computing is a highly scalable, high performance open source operating system designed to utilize the power of parallel computing for modeling, simulation and advanced analytics workloads.

","shortname":"SLE_HPC-LTSS-15-SP4","product_type":"extension","cpe":"cpe:/o:suse:sle_hpc-ltss:15:sp4","product_class":"HPC15-SP4-LTSS-ARM64","online_predecessor_ids":[],"repositories":[{"installer_updates":false,"name":"SLE-Product-HPC-15-SP4-LTSS-Updates","description":"SLE-Product-HPC-15-SP4-LTSS-Updates for sle-15-aarch64","enabled":true,"id":5426,"distro_target":"sle-15-aarch64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-HPC/15-SP4-LTSS/aarch64/update/"},{"name":"SLE-Product-HPC-15-SP4-LTSS-Debuginfo-Updates","installer_updates":false,"description":"SLE-Product-HPC-15-SP4-LTSS-Debuginfo-Updates for sle-15-aarch64","enabled":false,"id":5427,"autorefresh":true,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Updates/SLE-Product-HPC/15-SP4-LTSS/aarch64/update_debug/"},{"description":"SLE-Product-HPC-15-SP4-LTSS-Pool for sle-15-aarch64","installer_updates":false,"name":"SLE-Product-HPC-15-SP4-LTSS-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Product-HPC/15-SP4-LTSS/aarch64/product/","distro_target":"sle-15-aarch64","autorefresh":false,"id":5428,"enabled":true},{"description":"SLE-Product-HPC-15-SP4-LTSS-Debuginfo-Pool for sle-15-aarch64","name":"SLE-Product-HPC-15-SP4-LTSS-Debuginfo-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Products/SLE-Product-HPC/15-SP4-LTSS/aarch64/product_debug/","enabled":false,"id":5429},{"autorefresh":false,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Products/SLE-Product-HPC/15-SP4-LTSS/aarch64/product_source/","enabled":false,"id":5430,"description":"SLE-Product-HPC-15-SP4-LTSS-Source-Pool for sle-15-aarch64","name":"SLE-Product-HPC-15-SP4-LTSS-Source-Pool","installer_updates":false}],"predecessor_ids":[]},{"friendly_name":"SUSE Linux Enterprise High Performance Computing LTSS 15 SP4 x86_64","migration_extra":false,"release_type":null,"former_identifier":"SLE_HPC-LTSS","name":"SUSE Linux Enterprise High Performance Computing LTSS","offline_predecessor_ids":[],"version":"15.4","recommended":false,"release_stage":"released","identifier":"SLE_HPC-LTSS","id":2360,"extensions":[],"friendly_version":"15 SP4","arch":"x86_64","eula_url":"","description":"

SUSE Linux Enterprise High Performance Computing is a highly scalable, high performance open source operating system designed to utilize the power of parallel computing for modeling, simulation and advanced analytics workloads.

","shortname":"SLE_HPC-LTSS-15-SP4","free":false,"cpe":"cpe:/o:suse:sle_hpc-ltss:15:sp4","product_type":"extension","product_class":"HPC15-SP4-LTSS-X86","online_predecessor_ids":[],"repositories":[{"installer_updates":false,"name":"SLE-Product-HPC-15-SP4-LTSS-Updates","description":"SLE-Product-HPC-15-SP4-LTSS-Updates for sle-15-x86_64","id":5431,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-HPC/15-SP4-LTSS/x86_64/update/","distro_target":"sle-15-x86_64","autorefresh":true},{"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Product-HPC/15-SP4-LTSS/x86_64/update_debug/","enabled":false,"id":5432,"description":"SLE-Product-HPC-15-SP4-LTSS-Debuginfo-Updates for sle-15-x86_64","name":"SLE-Product-HPC-15-SP4-LTSS-Debuginfo-Updates","installer_updates":false},{"description":"SLE-Product-HPC-15-SP4-LTSS-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Product-HPC-15-SP4-LTSS-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Product-HPC/15-SP4-LTSS/x86_64/product/","distro_target":"sle-15-x86_64","autorefresh":false,"id":5433,"enabled":true},{"name":"SLE-Product-HPC-15-SP4-LTSS-Debuginfo-Pool","installer_updates":false,"description":"SLE-Product-HPC-15-SP4-LTSS-Debuginfo-Pool for sle-15-x86_64","id":5434,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-HPC/15-SP4-LTSS/x86_64/product_debug/","autorefresh":false,"distro_target":"sle-15-x86_64"},{"id":5435,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-HPC/15-SP4-LTSS/x86_64/product_source/","autorefresh":false,"distro_target":"sle-15-x86_64","name":"SLE-Product-HPC-15-SP4-LTSS-Source-Pool","installer_updates":false,"description":"SLE-Product-HPC-15-SP4-LTSS-Source-Pool for sle-15-x86_64"}],"predecessor_ids":[]},{"free":false,"shortname":"Manager-Tools","description":"SUSE Manager Client Tools for RHEL, Liberty and Clones 7","eula_url":"","arch":"aarch64","predecessor_ids":[],"repositories":[{"autorefresh":true,"distro_target":"aarch64","url":"https://updates.suse.com/repo/$RCE/RES7-SUSE-Manager-Tools/aarch64/","enabled":true,"id":5436,"description":"RES-7-SUSE-Manager-Tools for aarch64","name":"RES-7-SUSE-Manager-Tools","installer_updates":false}],"online_predecessor_ids":[],"product_class":"SLE-M-T","product_type":"base","cpe":"cpe:/o:suse:res-manager-client:7","recommended":false,"version":"7","offline_predecessor_ids":[],"name":"SUSE Manager Client Tools for RHEL, Liberty and Clones","release_type":null,"former_identifier":"res-manager-client","migration_extra":false,"friendly_name":"SUSE Manager Client Tools for RHEL, Liberty and Clones 7 aarch64","friendly_version":"7","extensions":[],"identifier":"res-manager-client","release_stage":"released","id":2361},{"free":false,"shortname":"Manager-Tools","description":"SUSE Manager Client Tools for RHEL, Liberty and Clones 8","arch":"aarch64","eula_url":"","online_predecessor_ids":[],"repositories":[{"url":"https://updates.suse.com/SUSE/Updates/RES/8-CLIENT-TOOLS/aarch64/update/","distro_target":"aarch64","autorefresh":true,"id":5437,"enabled":true,"description":"RES8-Manager-Tools-Updates for aarch64","installer_updates":false,"name":"RES8-Manager-Tools-Updates"},{"id":5438,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/RES/8-CLIENT-TOOLS/aarch64/update_debug/","autorefresh":true,"distro_target":"aarch64","name":"RES8-Manager-Tools-Debuginfo-Updates","installer_updates":false,"description":"RES8-Manager-Tools-Debuginfo-Updates for aarch64"},{"name":"RES8-Manager-Tools-Pool","installer_updates":false,"description":"RES8-Manager-Tools-Pool for aarch64","id":5439,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/RES/8-CLIENT-TOOLS/aarch64/product/","autorefresh":false,"distro_target":"aarch64"},{"id":5440,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/RES/8-CLIENT-TOOLS/aarch64/product_debug/","autorefresh":false,"distro_target":"aarch64","name":"RES8-Manager-Tools-Debuginfo-Pool","installer_updates":false,"description":"RES8-Manager-Tools-Debuginfo-Pool for aarch64"},{"name":"RES8-Manager-Tools-Source-Pool","installer_updates":false,"description":"RES8-Manager-Tools-Source-Pool for aarch64","enabled":false,"id":5441,"autorefresh":false,"distro_target":"aarch64","url":"https://updates.suse.com/SUSE/Products/RES/8-CLIENT-TOOLS/aarch64/product_source/"}],"product_class":"SLE-M-T","predecessor_ids":[],"product_type":"extension","cpe":"cpe:/o:suse:res-managertools:8","version":"8","recommended":false,"release_type":null,"former_identifier":"res-managertools","friendly_name":"SUSE Manager Client Tools for RHEL, Liberty and Clones 8 aarch64","migration_extra":false,"offline_predecessor_ids":[],"name":"SUSE Manager Client Tools for RHEL, Liberty and Clones","friendly_version":"8","release_stage":"released","id":2362,"identifier":"res-managertools","extensions":[]},{"offline_predecessor_ids":[],"name":"SUSE Manager Client Tools Beta for RHEL, Liberty and Clones","former_identifier":"res-manager-client-beta","release_type":null,"migration_extra":false,"friendly_name":"SUSE Manager Client Tools Beta for RHEL, Liberty and Clones 7 aarch64 (BETA)","recommended":false,"version":"7","extensions":[],"release_stage":"beta","identifier":"res-manager-client-beta","id":2363,"friendly_version":"7","eula_url":"","arch":"aarch64","free":false,"description":"SUSE Manager Client Tools Beta for RHEL, Liberty and Clones 7","shortname":"Manager-Tools-Beta","product_type":"base","cpe":"cpe:/o:suse:res-manager-client-beta:7","predecessor_ids":[],"online_predecessor_ids":[],"repositories":[{"description":"RES-7-SUSE-Manager-Tools-Beta for aarch64","name":"RES-7-SUSE-Manager-Tools-Beta","installer_updates":false,"autorefresh":true,"distro_target":"aarch64","url":"https://updates.suse.com/repo/$RCE/RES7-SUSE-Manager-Tools-Beta/aarch64/","enabled":true,"id":5442}],"product_class":"SLE-M-T-BETA"},{"offline_predecessor_ids":[],"name":"SUSE Manager Client Tools Beta for RHEL, Liberty and Clones","release_type":null,"former_identifier":"res-managertools-beta","migration_extra":false,"friendly_name":"SUSE Manager Client Tools Beta for RHEL, Liberty and Clones 8 aarch64 (BETA)","recommended":false,"version":"8","extensions":[],"release_stage":"beta","id":2364,"identifier":"res-managertools-beta","friendly_version":"8","eula_url":"","arch":"aarch64","free":false,"description":"SUSE Manager Client Tools Beta for RHEL, Liberty and Clones 8","shortname":"Manager-Tools-Beta","product_type":"extension","cpe":"cpe:/o:suse:res-managertools-beta:8","predecessor_ids":[],"online_predecessor_ids":[],"product_class":"SLE-M-T-BETA","repositories":[{"autorefresh":true,"distro_target":"aarch64","url":"https://updates.suse.com/SUSE/Updates/RES/8-CLIENT-TOOLS-BETA/aarch64/update/","enabled":true,"id":5443,"description":"RES8-Manager-Tools-Beta-Updates for aarch64","name":"RES8-Manager-Tools-Beta-Updates","installer_updates":false},{"installer_updates":false,"name":"RES8-Manager-Tools-Beta-Debuginfo-Updates","description":"RES8-Manager-Tools-Beta-Debuginfo-Updates for aarch64","id":5444,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/RES/8-CLIENT-TOOLS-BETA/aarch64/update_debug/","distro_target":"aarch64","autorefresh":true},{"name":"RES8-Manager-Tools-Beta-Pool","installer_updates":false,"description":"RES8-Manager-Tools-Beta-Pool for aarch64","id":5445,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/RES/8-CLIENT-TOOLS-BETA/aarch64/product/","autorefresh":false,"distro_target":"aarch64"},{"enabled":false,"id":5446,"autorefresh":false,"distro_target":"aarch64","url":"https://updates.suse.com/SUSE/Products/RES/8-CLIENT-TOOLS-BETA/aarch64/product_debug/","name":"RES8-Manager-Tools-Beta-Debuginfo-Pool","installer_updates":false,"description":"RES8-Manager-Tools-Beta-Debuginfo-Pool for aarch64"},{"enabled":false,"id":5447,"autorefresh":false,"distro_target":"aarch64","url":"https://updates.suse.com/SUSE/Products/RES/8-CLIENT-TOOLS-BETA/aarch64/product_source/","name":"RES8-Manager-Tools-Beta-Source-Pool","installer_updates":false,"description":"RES8-Manager-Tools-Beta-Source-Pool for aarch64"}]},{"version":"1.2.0","recommended":false,"release_type":null,"former_identifier":"longhorn","migration_extra":false,"friendly_name":"SUSE Longhorn 1.2.0","offline_predecessor_ids":[],"name":"SUSE Longhorn","friendly_version":"1.2.0","release_stage":"released","identifier":"longhorn","id":2365,"extensions":[],"free":false,"shortname":"Longhorn","description":null,"arch":null,"eula_url":"","online_predecessor_ids":[],"product_class":"LONGHORN-X86","repositories":[],"predecessor_ids":[],"product_type":"base","cpe":"cpe:/o:suse:longhorn:1.2.0"},{"former_identifier":"rancher","release_type":null,"migration_extra":false,"friendly_name":"SUSE Rancher 2.6.1","offline_predecessor_ids":[],"name":"SUSE Rancher","version":"2.6.1","recommended":false,"release_stage":"released","identifier":"rancher","id":2366,"extensions":[],"friendly_version":"2.6.1","arch":null,"eula_url":"","free":false,"shortname":"Rancher","description":null,"product_type":"base","cpe":"cpe:/o:suse:rancher:2.6.1","product_class":"RANCHER-X86","online_predecessor_ids":[],"repositories":[],"predecessor_ids":[]},{"friendly_version":"2.5.10","extensions":[],"release_stage":"released","id":2367,"identifier":"rancher","recommended":false,"version":"2.5.10","offline_predecessor_ids":[],"name":"SUSE Rancher","release_type":null,"former_identifier":"rancher","migration_extra":false,"friendly_name":"SUSE Rancher 2.5.10","predecessor_ids":[],"repositories":[],"online_predecessor_ids":[],"product_class":"RANCHER-X86","product_type":"base","cpe":"cpe:/o:suse:rancher:2.5.10","free":false,"shortname":"Rancher","description":null,"eula_url":"","arch":null},{"arch":null,"eula_url":"","free":false,"shortname":"Longhorn","description":null,"product_type":"base","cpe":"cpe:/o:suse:longhorn:1.2.2","repositories":[],"online_predecessor_ids":[],"product_class":"LONGHORN-X86","predecessor_ids":[],"release_type":null,"former_identifier":"longhorn","migration_extra":false,"friendly_name":"SUSE Longhorn 1.2.2","offline_predecessor_ids":[],"name":"SUSE Longhorn","version":"1.2.2","recommended":false,"release_stage":"released","identifier":"longhorn","id":2368,"extensions":[],"friendly_version":"1.2.2"},{"description":null,"shortname":"Longhorn","free":false,"eula_url":"","arch":null,"predecessor_ids":[],"online_predecessor_ids":[],"product_class":"LONGHORN-X86","repositories":[],"cpe":"cpe:/o:suse:longhorn:1.2.1","product_type":"base","recommended":false,"version":"1.2.1","name":"SUSE Longhorn","offline_predecessor_ids":[],"friendly_name":"SUSE Longhorn 1.2.1","migration_extra":false,"release_type":null,"former_identifier":"longhorn","friendly_version":"1.2.1","extensions":[],"identifier":"longhorn","release_stage":"released","id":2369},{"extensions":[],"identifier":"rancher","release_stage":"released","id":2370,"friendly_version":"2.6.2","offline_predecessor_ids":[],"name":"SUSE Rancher","release_type":null,"former_identifier":"rancher","friendly_name":"SUSE Rancher 2.6.2","migration_extra":false,"recommended":false,"version":"2.6.2","product_type":"base","cpe":"cpe:/o:suse:rancher:2.6.2","predecessor_ids":[],"online_predecessor_ids":[],"product_class":"RANCHER-X86","repositories":[],"eula_url":"","arch":null,"free":false,"description":null,"shortname":"Rancher"},{"friendly_version":"2.5.11","release_stage":"released","id":2371,"identifier":"rancher","extensions":[],"version":"2.5.11","recommended":false,"migration_extra":false,"friendly_name":"SUSE Rancher 2.5.11","release_type":null,"former_identifier":"rancher","name":"SUSE Rancher","offline_predecessor_ids":[],"online_predecessor_ids":[],"product_class":"RANCHER-X86","repositories":[],"predecessor_ids":[],"cpe":"cpe:/o:suse:rancher:2.5.11","product_type":"base","description":null,"shortname":"Rancher","free":false,"arch":null,"eula_url":""},{"version":"15.2","recommended":false,"release_type":null,"former_identifier":"SLES-LTSS","friendly_name":"SUSE Linux Enterprise Server LTSS 15 SP2 aarch64","migration_extra":false,"offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Server LTSS","friendly_version":"15 SP2","release_stage":"released","id":2372,"identifier":"SLES-LTSS","extensions":[],"free":false,"description":"SUSE Linux Enterprise offers a comprehensive suite of products built on a single code base. The platform addresses business needs from the smallest thin-client devices to the world's most powerful high-performance computing and mainframe servers. SUSE Linux Enterprise offers common management tools and technology certifications across the platform, and each product is enterprise-class.","shortname":"SLES15-SP2-LTSS","arch":"aarch64","eula_url":"","online_predecessor_ids":[],"product_class":"SLES15-SP2-LTSS-ARM64","repositories":[{"id":5452,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-SLES/15-SP2-LTSS/aarch64/update/","autorefresh":true,"distro_target":"sle-15-aarch64","name":"SLE-Product-SLES15-SP2-LTSS-Updates","installer_updates":false,"description":"SLE-Product-SLES15-SP2-LTSS-Updates for sle-15-aarch64"},{"description":"SLE-Product-SLES15-SP2-Debuginfo-LTSS-Updates for sle-15-aarch64","installer_updates":false,"name":"SLE-Product-SLES15-SP2-Debuginfo-LTSS-Updates","url":"https://updates.suse.com/SUSE/Updates/SLE-Product-SLES/15-SP2-LTSS/aarch64/update_debug/","distro_target":"sle-15-aarch64","autorefresh":true,"id":5453,"enabled":false}],"predecessor_ids":[],"product_type":"extension","cpe":"cpe:/o:suse:sles-ltss:15:sp2"},{"cpe":"cpe:/o:suse:sles-ltss:15:sp2","product_type":"extension","online_predecessor_ids":[],"product_class":"SLES15-SP2-LTSS-PPC","repositories":[{"distro_target":"sle-15-ppc64le","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-SLES/15-SP2-LTSS/ppc64le/update/","enabled":true,"id":5454,"description":"SLE-Product-SLES15-SP2-LTSS-Updates for sle-15-ppc64le","installer_updates":false,"name":"SLE-Product-SLES15-SP2-LTSS-Updates"},{"installer_updates":false,"name":"SLE-Product-SLES15-SP2-Debuginfo-LTSS-Updates","description":"SLE-Product-SLES15-SP2-Debuginfo-LTSS-Updates for sle-15-ppc64le","id":5455,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-SLES/15-SP2-LTSS/ppc64le/update_debug/","distro_target":"sle-15-ppc64le","autorefresh":true}],"predecessor_ids":[],"arch":"ppc64le","eula_url":"","shortname":"SLES15-SP2-LTSS","description":"SUSE Linux Enterprise offers a comprehensive suite of products built on a single code base. The platform addresses business needs from the smallest thin-client devices to the world's most powerful high-performance computing and mainframe servers. SUSE Linux Enterprise offers common management tools and technology certifications across the platform, and each product is enterprise-class.","free":false,"id":2373,"release_stage":"released","identifier":"SLES-LTSS","extensions":[],"friendly_version":"15 SP2","migration_extra":false,"friendly_name":"SUSE Linux Enterprise Server LTSS 15 SP2 ppc64le","former_identifier":"SLES-LTSS","release_type":null,"name":"SUSE Linux Enterprise Server LTSS","offline_predecessor_ids":[],"version":"15.2","recommended":false},{"friendly_name":"SUSE Linux Enterprise Server LTSS 15 SP2 s390x","migration_extra":false,"release_type":null,"former_identifier":"SLES-LTSS","name":"SUSE Linux Enterprise Server LTSS","offline_predecessor_ids":[],"version":"15.2","recommended":false,"id":2374,"release_stage":"released","identifier":"SLES-LTSS","extensions":[],"friendly_version":"15 SP2","arch":"s390x","eula_url":"","shortname":"SLES15-SP2-LTSS","description":"SUSE Linux Enterprise offers a comprehensive suite of products built on a single code base. The platform addresses business needs from the smallest thin-client devices to the world's most powerful high-performance computing and mainframe servers. SUSE Linux Enterprise offers common management tools and technology certifications across the platform, and each product is enterprise-class.","free":false,"cpe":"cpe:/o:suse:sles-ltss:15:sp2","product_type":"extension","product_class":"SLES15-SP2-LTSS-Z","online_predecessor_ids":[],"repositories":[{"enabled":true,"id":5456,"distro_target":"sle-15-s390x","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-SLES/15-SP2-LTSS/s390x/update/","installer_updates":false,"name":"SLE-Product-SLES15-SP2-LTSS-Updates","description":"SLE-Product-SLES15-SP2-LTSS-Updates for sle-15-s390x"},{"description":"SLE-Product-SLES15-SP2-Debuginfo-LTSS-Updates for sle-15-s390x","name":"SLE-Product-SLES15-SP2-Debuginfo-LTSS-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-15-s390x","url":"https://updates.suse.com/SUSE/Updates/SLE-Product-SLES/15-SP2-LTSS/s390x/update_debug/","enabled":false,"id":5457}],"predecessor_ids":[]},{"friendly_version":"15 SP2","extensions":[],"id":2375,"release_stage":"released","identifier":"SLES-LTSS","recommended":false,"version":"15.2","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Server LTSS","release_type":null,"former_identifier":"SLES-LTSS","migration_extra":false,"friendly_name":"SUSE Linux Enterprise Server LTSS 15 SP2 x86_64","predecessor_ids":[],"online_predecessor_ids":[],"repositories":[{"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-SLES/15-SP2-LTSS/x86_64/update/","autorefresh":true,"distro_target":"sle-15-x86_64","id":5458,"enabled":true,"description":"SLE-Product-SLES15-SP2-LTSS-Updates for sle-15-x86_64","name":"SLE-Product-SLES15-SP2-LTSS-Updates","installer_updates":false},{"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-SLES/15-SP2-LTSS/x86_64/update_debug/","autorefresh":true,"distro_target":"sle-15-x86_64","id":5459,"enabled":false,"description":"SLE-Product-SLES15-SP2-Debuginfo-LTSS-Updates for sle-15-x86_64","name":"SLE-Product-SLES15-SP2-Debuginfo-LTSS-Updates","installer_updates":false}],"product_class":"SLES15-SP2-LTSS-X86","product_type":"extension","cpe":"cpe:/o:suse:sles-ltss:15:sp2","free":false,"shortname":"SLES15-SP2-LTSS","description":"SUSE Linux Enterprise offers a comprehensive suite of products built on a single code base. The platform addresses business needs from the smallest thin-client devices to the world's most powerful high-performance computing and mainframe servers. SUSE Linux Enterprise offers common management tools and technology certifications across the platform, and each product is enterprise-class.","eula_url":"","arch":"x86_64"},{"friendly_version":"4.3","id":2376,"release_stage":"released","identifier":"SUSE-Manager-Server","extensions":[{"offline_predecessor_ids":[1294],"name":"Basesystem Module","former_identifier":"sle-module-basesystem","release_type":null,"friendly_name":"Basesystem Module 15 SP4 ppc64le","migration_extra":false,"recommended":true,"version":"15.4","extensions":[{"predecessor_ids":[1594,1774,1965,2147],"product_class":"MODULE","online_predecessor_ids":[1594,1774,1965,2147],"repositories":[{"id":5147,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15-SP4/ppc64le/update/","distro_target":"sle-15-ppc64le","autorefresh":true,"installer_updates":false,"name":"SLE-Module-Desktop-Applications15-SP4-Updates","description":"SLE-Module-Desktop-Applications15-SP4-Updates for sle-15-ppc64le"},{"id":5148,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15-SP4/ppc64le/update_debug/","distro_target":"sle-15-ppc64le","autorefresh":true,"installer_updates":false,"name":"SLE-Module-Desktop-Applications15-SP4-Debuginfo-Updates","description":"SLE-Module-Desktop-Applications15-SP4-Debuginfo-Updates for sle-15-ppc64le"},{"name":"SLE-Module-Desktop-Applications15-SP4-Pool","installer_updates":false,"description":"SLE-Module-Desktop-Applications15-SP4-Pool for sle-15-ppc64le","id":5149,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP4/ppc64le/product/","autorefresh":false,"distro_target":"sle-15-ppc64le"},{"description":"SLE-Module-Desktop-Applications15-SP4-Debuginfo-Pool for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-Desktop-Applications15-SP4-Debuginfo-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP4/ppc64le/product_debug/","distro_target":"sle-15-ppc64le","autorefresh":false,"id":5150,"enabled":false},{"installer_updates":false,"name":"SLE-Module-Desktop-Applications15-SP4-Source-Pool","description":"SLE-Module-Desktop-Applications15-SP4-Source-Pool for sle-15-ppc64le","id":5151,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP4/ppc64le/product_source/","distro_target":"sle-15-ppc64le","autorefresh":false}],"product_type":"module","cpe":"cpe:/o:suse:sle-module-desktop-applications:15:sp4","free":true,"description":"

The SUSE Linux Enterprise Desktop Applications Module delivers a basic set of Desktop functionality.

Access to the Desktop Applications Module is included in your SUSE Linux Enterprise product subscription.

","shortname":"Desktop-Applications-Module","eula_url":"","arch":"ppc64le","friendly_version":"15 SP4","extensions":[{"cpe":"cpe:/o:suse:sle-module-development-tools:15:sp4","product_type":"module","product_class":"MODULE","online_predecessor_ids":[1597,1792,1969,2159],"repositories":[{"description":"SLE-Module-DevTools15-SP4-Updates for sle-15-ppc64le","name":"SLE-Module-DevTools15-SP4-Updates","installer_updates":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15-SP4/ppc64le/update/","autorefresh":true,"distro_target":"sle-15-ppc64le","id":5207,"enabled":true},{"description":"SLE-Module-DevTools15-SP4-Debuginfo-Updates for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-DevTools15-SP4-Debuginfo-Updates","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15-SP4/ppc64le/update_debug/","distro_target":"sle-15-ppc64le","autorefresh":true,"id":5208,"enabled":false},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP4/ppc64le/product/","autorefresh":false,"distro_target":"sle-15-ppc64le","id":5209,"enabled":true,"description":"SLE-Module-DevTools15-SP4-Pool for sle-15-ppc64le","name":"SLE-Module-DevTools15-SP4-Pool","installer_updates":false},{"id":5210,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP4/ppc64le/product_debug/","distro_target":"sle-15-ppc64le","autorefresh":false,"installer_updates":false,"name":"SLE-Module-DevTools15-SP4-Debuginfo-Pool","description":"SLE-Module-DevTools15-SP4-Debuginfo-Pool for sle-15-ppc64le"},{"installer_updates":false,"name":"SLE-Module-DevTools15-SP4-Source-Pool","description":"SLE-Module-DevTools15-SP4-Source-Pool for sle-15-ppc64le","enabled":false,"id":5211,"distro_target":"sle-15-ppc64le","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP4/ppc64le/product_source/"}],"predecessor_ids":[1597,1792,1969,2159],"arch":"ppc64le","eula_url":"","description":"

The Development Tools Module helps you developing applications for SUSE Linux Enterprise 15.

Access to the Development Tools Module is included in your SUSE Linux Enterprise product subscription. The module has a different lifecycle than SUSE Linux Enterprise itself.

","shortname":"Development-Tools-Module","free":true,"id":2313,"release_stage":"released","identifier":"sle-module-development-tools","extensions":[],"friendly_version":"15 SP4","friendly_name":"Development Tools Module 15 SP4 ppc64le","migration_extra":false,"release_type":null,"former_identifier":"sle-sdk","name":"Development Tools Module","offline_predecessor_ids":[1339,1428,1631,1890],"version":"15.4","recommended":false}],"release_stage":"released","identifier":"sle-module-desktop-applications","id":2301,"recommended":false,"version":"15.4","offline_predecessor_ids":[],"name":"Desktop Applications Module","release_type":null,"former_identifier":"sle-module-desktop-applications","friendly_name":"Desktop Applications Module 15 SP4 ppc64le","migration_extra":false},{"cpe":"cpe:/o:suse:sle-module-server-applications:15:sp4","product_type":"module","product_class":"MODULE","online_predecessor_ids":[1600,1778,1953,2151],"repositories":[{"description":"SLE-Module-Server-Applications15-SP4-Updates for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-Server-Applications15-SP4-Updates","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15-SP4/ppc64le/update/","distro_target":"sle-15-ppc64le","autorefresh":true,"id":5167,"enabled":true},{"description":"SLE-Module-Server-Applications15-SP4-Debuginfo-Updates for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-Server-Applications15-SP4-Debuginfo-Updates","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15-SP4/ppc64le/update_debug/","distro_target":"sle-15-ppc64le","autorefresh":true,"id":5168,"enabled":false},{"installer_updates":false,"name":"SLE-Module-Server-Applications15-SP4-Pool","description":"SLE-Module-Server-Applications15-SP4-Pool for sle-15-ppc64le","enabled":true,"id":5169,"distro_target":"sle-15-ppc64le","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP4/ppc64le/product/"},{"distro_target":"sle-15-ppc64le","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP4/ppc64le/product_debug/","enabled":false,"id":5170,"description":"SLE-Module-Server-Applications15-SP4-Debuginfo-Pool for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-Server-Applications15-SP4-Debuginfo-Pool"},{"autorefresh":false,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP4/ppc64le/product_source/","enabled":false,"id":5171,"description":"SLE-Module-Server-Applications15-SP4-Source-Pool for sle-15-ppc64le","name":"SLE-Module-Server-Applications15-SP4-Source-Pool","installer_updates":false}],"predecessor_ids":[1600,1778,1953,2151],"arch":"ppc64le","eula_url":"","description":"

The SUSE Linux Enterprise Server Applications Module delivers a basic set of Server functionality.

Access to the Server Applications Module is included in your SUSE Linux Enterprise Server subscription.

","shortname":"Server-Applications-Module","free":true,"release_stage":"released","identifier":"sle-module-server-applications","id":2305,"extensions":[{"predecessor_ids":[1719,1796,1974,2163],"product_class":"MODULE","online_predecessor_ids":[1719,1796,1974,2163],"repositories":[{"id":5227,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/15-SP4/ppc64le/update/","distro_target":"sle-15-ppc64le","autorefresh":true,"installer_updates":false,"name":"SLE-Module-Web-Scripting15-SP4-Updates","description":"SLE-Module-Web-Scripting15-SP4-Updates for sle-15-ppc64le"},{"description":"SLE-Module-Web-Scripting15-SP4-Debuginfo-Updates for sle-15-ppc64le","name":"SLE-Module-Web-Scripting15-SP4-Debuginfo-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/15-SP4/ppc64le/update_debug/","enabled":false,"id":5228},{"description":"SLE-Module-Web-Scripting15-SP4-Pool for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-Web-Scripting15-SP4-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP4/ppc64le/product/","distro_target":"sle-15-ppc64le","autorefresh":false,"id":5229,"enabled":true},{"description":"SLE-Module-Web-Scripting15-SP4-Debuginfo-Pool for sle-15-ppc64le","name":"SLE-Module-Web-Scripting15-SP4-Debuginfo-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP4/ppc64le/product_debug/","enabled":false,"id":5230},{"name":"SLE-Module-Web-Scripting15-SP4-Source-Pool","installer_updates":false,"description":"SLE-Module-Web-Scripting15-SP4-Source-Pool for sle-15-ppc64le","enabled":false,"id":5231,"autorefresh":false,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP4/ppc64le/product_source/"}],"product_type":"module","cpe":"cpe:/o:suse:sle-module-web-scripting:15:sp4","free":true,"description":"

The SUSE Linux Enterprise Web and Scripting Module should contains additional packages that are helpful when running a webserver.

Access to the Web and Scripting Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself: Package versions in this module are usually supported for at most three years. We are planning to release more recent versions on a schedule of approximately 18 month; the exact dates may differ per package.

","shortname":"Web-Scripting-Module","eula_url":"","arch":"ppc64le","friendly_version":"15 SP4","extensions":[{"friendly_version":"4.3","release_stage":"released","identifier":"sle-module-suse-manager-server","id":2381,"extensions":[],"version":"4.3","recommended":true,"former_identifier":"sle-module-suse-manager-server","release_type":null,"migration_extra":false,"friendly_name":"SUSE Manager Server Module 4.3 ppc64le","offline_predecessor_ids":[],"name":"SUSE Manager Server Module","online_predecessor_ids":[2017,2226],"repositories":[{"distro_target":"sle-15-ppc64le","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-SUSE-Manager-Server/4.3/ppc64le/update/","enabled":true,"id":5485,"description":"SLE-Module-SUSE-Manager-Server-4.3-Updates for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-SUSE-Manager-Server-4.3-Updates"},{"installer_updates":false,"name":"SLE-Module-SUSE-Manager-Server-4.3-Debuginfo-Updates","description":"SLE-Module-SUSE-Manager-Server-4.3-Debuginfo-Updates for sle-15-ppc64le","enabled":false,"id":5486,"distro_target":"sle-15-ppc64le","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-SUSE-Manager-Server/4.3/ppc64le/update_debug/"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-SUSE-Manager-Server/4.3/ppc64le/product/","distro_target":"sle-15-ppc64le","autorefresh":false,"id":5487,"enabled":true,"description":"SLE-Module-SUSE-Manager-Server-4.3-Pool for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-SUSE-Manager-Server-4.3-Pool"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-SUSE-Manager-Server/4.3/ppc64le/product_debug/","distro_target":"sle-15-ppc64le","autorefresh":false,"id":5488,"enabled":false,"description":"SLE-Module-SUSE-Manager-Server-4.3-Debuginfo-Pool for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-SUSE-Manager-Server-4.3-Debuginfo-Pool"},{"installer_updates":false,"name":"SLE-Module-SUSE-Manager-Server-4.3-Source-Pool","description":"SLE-Module-SUSE-Manager-Server-4.3-Source-Pool for sle-15-ppc64le","id":5489,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-SUSE-Manager-Server/4.3/ppc64le/product_source/","distro_target":"sle-15-ppc64le","autorefresh":false}],"product_class":"MODULE","predecessor_ids":[2017,2226],"product_type":"module","cpe":"cpe:/o:suse:sle-module-suse-manager-server:4.3","free":true,"shortname":"SUSE Manager Server 4.3 Module","description":"SUSE Manager lets you efficiently manage physical, virtual, and cloud-based Linux systems. It provides automated and cost-effective configuration and software management, asset management, and system provisioning.","arch":"ppc64le","eula_url":""}],"release_stage":"released","identifier":"sle-module-web-scripting","id":2317,"recommended":true,"version":"15.4","offline_predecessor_ids":[1151],"name":"Web and Scripting Module","release_type":null,"former_identifier":"sle-module-web-scripting","friendly_name":"Web and Scripting Module 15 SP4 ppc64le","migration_extra":false},{"friendly_version":"15 SP4","extensions":[],"identifier":"sle-module-legacy","release_stage":"released","id":2321,"recommended":false,"version":"15.4","name":"Legacy Module","offline_predecessor_ids":[1148],"friendly_name":"Legacy Module 15 SP4 ppc64le","migration_extra":false,"former_identifier":"sle-module-legacy","release_type":null,"predecessor_ids":[1603,1802,1980,2169],"repositories":[{"description":"SLE-Module-Legacy15-SP4-Updates for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-Legacy15-SP4-Updates","distro_target":"sle-15-ppc64le","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/15-SP4/ppc64le/update/","enabled":true,"id":5247},{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/15-SP4/ppc64le/update_debug/","autorefresh":true,"distro_target":"sle-15-ppc64le","id":5248,"enabled":false,"description":"SLE-Module-Legacy15-SP4-Debuginfo-Updates for sle-15-ppc64le","name":"SLE-Module-Legacy15-SP4-Debuginfo-Updates","installer_updates":false},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15-SP4/ppc64le/product/","autorefresh":false,"distro_target":"sle-15-ppc64le","id":5249,"enabled":true,"description":"SLE-Module-Legacy15-SP4-Pool for sle-15-ppc64le","name":"SLE-Module-Legacy15-SP4-Pool","installer_updates":false},{"autorefresh":false,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15-SP4/ppc64le/product_debug/","enabled":false,"id":5250,"description":"SLE-Module-Legacy15-SP4-Debuginfo-Pool for sle-15-ppc64le","name":"SLE-Module-Legacy15-SP4-Debuginfo-Pool","installer_updates":false},{"distro_target":"sle-15-ppc64le","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15-SP4/ppc64le/product_source/","enabled":false,"id":5251,"description":"SLE-Module-Legacy15-SP4-Source-Pool for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-Legacy15-SP4-Source-Pool"}],"online_predecessor_ids":[1603,1802,1980,2169],"product_class":"MODULE","cpe":"cpe:/o:suse:sle-module-legacy:15:sp4","product_type":"module","description":"

The Legacy Module helps you migrating applications from SUSE Linux Enterprise 12 and other systems to SUSE Linux Enterprise 15, by providing packages which are discontinued on SUSE Linux Enterprise Server, such as: ntp, IBM Java 8, and a number of libraries.

Access to the Legacy Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself. Packages in the this module are usually supported for at most three years.

","shortname":"Legacy-Module","free":true,"eula_url":"","arch":"ppc64le"},{"name":"Public Cloud Module","offline_predecessor_ids":[1218],"friendly_name":"Public Cloud Module 15 SP4 ppc64le","migration_extra":false,"former_identifier":"sle-module-public-cloud","release_type":null,"recommended":false,"version":"15.4","extensions":[],"release_stage":"released","id":2325,"identifier":"sle-module-public-cloud","friendly_version":"15 SP4","eula_url":"","arch":"ppc64le","shortname":"Public-Cloud-Module","description":"

The Public Cloud Module is a collection of tools that enables you to create and manage cloud images from the commandline on SUSE Linux Enterprise Server. When building your own images with KIWI or SUSE Studio, initialization code specific to the target cloud is included in that image.

Access to the Public Cloud Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself; please check the Release Notes for further details.

","free":true,"cpe":"cpe:/o:suse:sle-module-public-cloud:15:sp4","product_type":"module","predecessor_ids":[1616,1806,1986,2173],"product_class":"MODULE","online_predecessor_ids":[1616,1806,1986,2173],"repositories":[{"installer_updates":false,"name":"SLE-Module-Public-Cloud15-SP4-Updates","description":"SLE-Module-Public-Cloud15-SP4-Updates for sle-15-ppc64le","enabled":true,"id":5267,"distro_target":"sle-15-ppc64le","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/15-SP4/ppc64le/update/"},{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/15-SP4/ppc64le/update_debug/","autorefresh":true,"distro_target":"sle-15-ppc64le","id":5268,"enabled":false,"description":"SLE-Module-Public-Cloud15-SP4-Debuginfo-Updates for sle-15-ppc64le","name":"SLE-Module-Public-Cloud15-SP4-Debuginfo-Updates","installer_updates":false},{"enabled":true,"id":5269,"autorefresh":false,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP4/ppc64le/product/","name":"SLE-Module-Public-Cloud15-SP4-Pool","installer_updates":false,"description":"SLE-Module-Public-Cloud15-SP4-Pool for sle-15-ppc64le"},{"installer_updates":false,"name":"SLE-Module-Public-Cloud15-SP4-Debuginfo-Pool","description":"SLE-Module-Public-Cloud15-SP4-Debuginfo-Pool for sle-15-ppc64le","id":5270,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP4/ppc64le/product_debug/","distro_target":"sle-15-ppc64le","autorefresh":false},{"description":"SLE-Module-Public-Cloud15-SP4-Source-Pool for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-Public-Cloud15-SP4-Source-Pool","distro_target":"sle-15-ppc64le","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP4/ppc64le/product_source/","enabled":false,"id":5271}]},{"free":false,"shortname":"SLEHA15-SP4","description":"SUSE Linux High Availability Extension provides mature, industry-leading open-source high-availability clustering technologies that are easy to set up and use. It can be deployed in physical and/or virtual environments, and can cluster physical servers, virtual servers, or any combination of the two to suit your business’ needs.","arch":"ppc64le","eula_url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP4/ppc64le/product.license/","online_predecessor_ids":[1606,1783,1957,2193],"product_class":"SLE-HAE-PPC","repositories":[{"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-HA/15-SP4/ppc64le/update/","distro_target":"sle-15-ppc64le","autorefresh":true,"id":5332,"enabled":true,"description":"SLE-Product-HA15-SP4-Updates for sle-15-ppc64le","installer_updates":false,"name":"SLE-Product-HA15-SP4-Updates"},{"id":5333,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-HA/15-SP4/ppc64le/update_debug/","autorefresh":true,"distro_target":"sle-15-ppc64le","name":"SLE-Product-HA15-SP4-Debuginfo-Updates","installer_updates":false,"description":"SLE-Product-HA15-SP4-Debuginfo-Updates for sle-15-ppc64le"},{"description":"SLE-Product-HA15-SP4-Pool for sle-15-ppc64le","name":"SLE-Product-HA15-SP4-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP4/ppc64le/product/","autorefresh":false,"distro_target":"sle-15-ppc64le","id":5334,"enabled":true},{"description":"SLE-Product-HA15-SP4-Debuginfo-Pool for sle-15-ppc64le","installer_updates":false,"name":"SLE-Product-HA15-SP4-Debuginfo-Pool","distro_target":"sle-15-ppc64le","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP4/ppc64le/product_debug/","enabled":false,"id":5335},{"enabled":false,"id":5336,"distro_target":"sle-15-ppc64le","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP4/ppc64le/product_source/","installer_updates":false,"name":"SLE-Product-HA15-SP4-Source-Pool","description":"SLE-Product-HA15-SP4-Source-Pool for sle-15-ppc64le"}],"predecessor_ids":[1606,1783,1957,2193],"product_type":"extension","cpe":"cpe:/o:suse:sle-ha:15:sp4","version":"15.4","recommended":false,"release_type":null,"former_identifier":"sle-ha","migration_extra":false,"friendly_name":"SUSE Linux Enterprise High Availability Extension 15 SP4 ppc64le","offline_predecessor_ids":[1433,1635,1882],"name":"SUSE Linux Enterprise High Availability Extension","friendly_version":"15 SP4","id":2338,"release_stage":"released","identifier":"sle-ha","extensions":[]}],"friendly_version":"15 SP4","migration_extra":false,"friendly_name":"Server Applications Module 15 SP4 ppc64le","former_identifier":"sle-module-server-applications","release_type":null,"name":"Server Applications Module","offline_predecessor_ids":[],"version":"15.4","recommended":true},{"offline_predecessor_ids":[1353],"name":"Containers Module","former_identifier":"sle-module-containers","release_type":null,"friendly_name":"Containers Module 15 SP4 ppc64le","migration_extra":false,"recommended":false,"version":"15.4","extensions":[],"identifier":"sle-module-containers","release_stage":"released","id":2309,"friendly_version":"15 SP4","eula_url":"","arch":"ppc64le","free":true,"description":"

This Module contains several packages revolving around containers and related tools.

","shortname":"Containers-Module","product_type":"module","cpe":"cpe:/o:suse:sle-module-containers:15:sp4","predecessor_ids":[1640,1788,1961,2155],"repositories":[{"installer_updates":false,"name":"SLE-Module-Containers15-SP4-Updates","description":"SLE-Module-Containers15-SP4-Updates for sle-15-ppc64le","id":5187,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/15-SP4/ppc64le/update/","distro_target":"sle-15-ppc64le","autorefresh":true},{"enabled":false,"id":5188,"autorefresh":true,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/15-SP4/ppc64le/update_debug/","name":"SLE-Module-Containers15-SP4-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-Containers15-SP4-Debuginfo-Updates for sle-15-ppc64le"},{"enabled":true,"id":5189,"autorefresh":false,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP4/ppc64le/product/","name":"SLE-Module-Containers15-SP4-Pool","installer_updates":false,"description":"SLE-Module-Containers15-SP4-Pool for sle-15-ppc64le"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP4/ppc64le/product_debug/","distro_target":"sle-15-ppc64le","autorefresh":false,"id":5190,"enabled":false,"description":"SLE-Module-Containers15-SP4-Debuginfo-Pool for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-Containers15-SP4-Debuginfo-Pool"},{"enabled":false,"id":5191,"distro_target":"sle-15-ppc64le","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP4/ppc64le/product_source/","installer_updates":false,"name":"SLE-Module-Containers15-SP4-Source-Pool","description":"SLE-Module-Containers15-SP4-Source-Pool for sle-15-ppc64le"}],"online_predecessor_ids":[1640,1788,1961,2155],"product_class":"MODULE"},{"free":true,"description":"SUSE Package Hub is a free of charge module providing access to community maintained packages built to run on SUSE Linux Enterprise Server. Built from the same sources used in the openSUSE distributions, these quality packages provide additional software to what is found in the SUSE Linux Enterprise Server product. Packages from the Package Hub are delivered without L3 support from SUSE. General updates and fixes to the packages in SUSE Package Hub are provided by the openSUSE community based on their discretion, though SUSE will monitor and ensure that any known critical security issues will be addressed. Packages in the Package Hub are approved by SUSE for use with SUSE Linux Enterprise Server 15-SP4 and to not interfere with the supportability of SUSE Linux Enterprise Server, its modules and extensions. For more information about SUSE Package Hub please visit https://packagehub.suse.com.","shortname":"SUSE-PackageHub-15","arch":"ppc64le","eula_url":"","online_predecessor_ids":[1741,1869,1948,2189],"repositories":[{"id":5372,"enabled":true,"url":"https://updates.suse.com/SUSE/Backports/SLE-15-SP4_ppc64le/standard/","autorefresh":false,"distro_target":"sle-15-ppc64le","name":"SUSE-PackageHub-15-SP4-Backports-Pool","installer_updates":false,"description":"SUSE-PackageHub-15-SP4-Backports-Pool for sle-15-ppc64le"},{"name":"SUSE-PackageHub-15-SP4-Backports-Debuginfo","installer_updates":false,"description":"SUSE-PackageHub-15-SP4-Backports-Debuginfo for sle-15-ppc64le","enabled":false,"id":5373,"autorefresh":true,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Backports/SLE-15-SP4_ppc64le/standard_debug/"},{"description":"SLE-Module-Packagehub-Subpackages15-SP4-Updates for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-Packagehub-Subpackages15-SP4-Updates","distro_target":"sle-15-ppc64le","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP4/ppc64le/update/","enabled":true,"id":5374},{"id":5375,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP4/ppc64le/update_debug/","autorefresh":true,"distro_target":"sle-15-ppc64le","name":"SLE-Module-Packagehub-Subpackages15-SP4-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-Packagehub-Subpackages15-SP4-Debuginfo-Updates for sle-15-ppc64le"},{"description":"SUSE-PackageHub-15-SP4-Pool for sle-15-ppc64le","installer_updates":false,"name":"SUSE-PackageHub-15-SP4-Pool","distro_target":"sle-15-ppc64le","autorefresh":false,"url":"https://updates.suse.com/SUSE/Backports/SLE-15-SP4_ppc64le/product/","enabled":true,"id":5376},{"name":"SLE-Module-Packagehub-Subpackages15-SP4-Pool","installer_updates":false,"description":"SLE-Module-Packagehub-Subpackages15-SP4-Pool for sle-15-ppc64le","id":5377,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP4/ppc64le/product/","autorefresh":false,"distro_target":"sle-15-ppc64le"},{"name":"SLE-Module-Packagehub-Subpackages15-SP4-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-Packagehub-Subpackages15-SP4-Debuginfo-Pool for sle-15-ppc64le","enabled":false,"id":5378,"autorefresh":false,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP4/ppc64le/product_debug/"},{"description":"SLE-Module-Packagehub-Subpackages15-SP4-Source-Pool for sle-15-ppc64le","name":"SLE-Module-Packagehub-Subpackages15-SP4-Source-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP4/ppc64le/product_source/","enabled":false,"id":5379}],"product_class":"MODULE","predecessor_ids":[1741,1869,1948,2189],"product_type":"module","cpe":"cpe:/o:suse:packagehub:15:sp4","version":"15.4","recommended":false,"release_type":null,"former_identifier":"PackageHub","migration_extra":false,"friendly_name":"SUSE Package Hub 15 SP4 ppc64le","offline_predecessor_ids":[1531,1811,1913],"name":"SUSE Package Hub","friendly_version":"15 SP4","id":2345,"release_stage":"released","identifier":"PackageHub","extensions":[]},{"offline_predecessor_ids":[],"name":"Python 3 Module","former_identifier":"sle-module-python3","release_type":null,"migration_extra":false,"friendly_name":"Python 3 Module 15 SP4 ppc64le","recommended":false,"version":"15.4","extensions":[],"release_stage":"released","identifier":"sle-module-python3","id":2403,"friendly_version":"15 SP4","eula_url":"","arch":"ppc64le","free":true,"shortname":"Python 3-Module","description":"

This module contains the Python 3 packages.

Access to the Python 3 Module is included in your SUSE Linux Enterprise subscription. The module has a different lifecycle than SUSE Linux Enterprise itself; please check the Release Notes for further details.

","product_type":"module","cpe":"cpe:/o:suse:sle-module-python3:15:sp4","predecessor_ids":[],"online_predecessor_ids":[],"product_class":"MODULE","repositories":[{"autorefresh":true,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Python3/15-SP4/ppc64le/update/","enabled":true,"id":5572,"description":"SLE-Module-Python3-15-SP4-Updates for sle-15-ppc64le","name":"SLE-Module-Python3-15-SP4-Updates","installer_updates":false},{"name":"SLE-Module-Python3-15-SP4-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-Python3-15-SP4-Debuginfo-Updates for sle-15-ppc64le","enabled":false,"id":5573,"autorefresh":true,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Python3/15-SP4/ppc64le/update_debug/"},{"name":"SLE-Module-Python3-15-SP4-Pool","installer_updates":false,"description":"SLE-Module-Python3-15-SP4-Pool for sle-15-ppc64le","enabled":true,"id":5574,"autorefresh":false,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Python3/15-SP4/ppc64le/product/"},{"enabled":false,"id":5575,"distro_target":"sle-15-ppc64le","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Python3/15-SP4/ppc64le/product_debug/","installer_updates":false,"name":"SLE-Module-Python3-15-SP4-Debuginfo-Pool","description":"SLE-Module-Python3-15-SP4-Debuginfo-Pool for sle-15-ppc64le"},{"installer_updates":false,"name":"SLE-Module-Python3-15-SP4-Source-Pool","description":"SLE-Module-Python3-15-SP4-Source-Pool for sle-15-ppc64le","id":5576,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Python3/15-SP4/ppc64le/product_source/","distro_target":"sle-15-ppc64le","autorefresh":false}]}],"release_stage":"released","identifier":"sle-module-basesystem","id":2297,"friendly_version":"15 SP4","eula_url":"","arch":"ppc64le","free":true,"shortname":"Basesystem-Module","description":"

The SUSE Linux Enterprise Basesystem Module delivers the base system of the product.

","product_type":"module","cpe":"cpe:/o:suse:sle-module-basesystem:15:sp4","predecessor_ids":[1588,1770,1944,2143],"repositories":[{"enabled":true,"id":5127,"distro_target":"sle-15-ppc64le","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15-SP4/ppc64le/update/","installer_updates":false,"name":"SLE-Module-Basesystem15-SP4-Updates","description":"SLE-Module-Basesystem15-SP4-Updates for sle-15-ppc64le"},{"autorefresh":true,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15-SP4/ppc64le/update_debug/","enabled":false,"id":5128,"description":"SLE-Module-Basesystem15-SP4-Debuginfo-Updates for sle-15-ppc64le","name":"SLE-Module-Basesystem15-SP4-Debuginfo-Updates","installer_updates":false},{"description":"SLE-Module-Basesystem15-SP4-Pool for sle-15-ppc64le","name":"SLE-Module-Basesystem15-SP4-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP4/ppc64le/product/","enabled":true,"id":5129},{"name":"SLE-Module-Basesystem15-SP4-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-Basesystem15-SP4-Debuginfo-Pool for sle-15-ppc64le","id":5130,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP4/ppc64le/product_debug/","autorefresh":false,"distro_target":"sle-15-ppc64le"},{"name":"SLE-Module-Basesystem15-SP4-Source-Pool","installer_updates":false,"description":"SLE-Module-Basesystem15-SP4-Source-Pool for sle-15-ppc64le","id":5131,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP4/ppc64le/product_source/","autorefresh":false,"distro_target":"sle-15-ppc64le"}],"online_predecessor_ids":[1588,1770,1944,2143],"product_class":"MODULE"}],"version":"4.3","recommended":false,"release_type":null,"former_identifier":"SUSE-Manager-Server","migration_extra":false,"friendly_name":"SUSE Manager Server 4.3 ppc64le","offline_predecessor_ids":[],"name":"SUSE Manager Server","repositories":[{"distro_target":"sle-15-ppc64le","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-SUSE-Manager-Server/4.3/ppc64le/update/","enabled":true,"id":5460,"description":"SLE-Product-SUSE-Manager-Server-4.3-Updates for sle-15-ppc64le","installer_updates":false,"name":"SLE-Product-SUSE-Manager-Server-4.3-Updates"},{"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-SUSE-Manager-Server/4.3/ppc64le/update_debug/","autorefresh":true,"distro_target":"sle-15-ppc64le","id":5461,"enabled":false,"description":"SLE-Product-SUSE-Manager-Server-4.3-Debuginfo-Updates for sle-15-ppc64le","name":"SLE-Product-SUSE-Manager-Server-4.3-Debuginfo-Updates","installer_updates":false},{"description":"SLE-Product-SUSE-Manager-Server-4.3-Pool for sle-15-ppc64le","name":"SLE-Product-SUSE-Manager-Server-4.3-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-SUSE-Manager-Server/4.3/ppc64le/product/","autorefresh":false,"distro_target":"sle-15-ppc64le","id":5462,"enabled":true},{"distro_target":"sle-15-ppc64le","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-SUSE-Manager-Server/4.3/ppc64le/product_debug/","enabled":false,"id":5463,"description":"SLE-Product-SUSE-Manager-Server-4.3-Debuginfo-Pool for sle-15-ppc64le","installer_updates":false,"name":"SLE-Product-SUSE-Manager-Server-4.3-Debuginfo-Pool"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Product-SUSE-Manager-Server/4.3/ppc64le/product_source/","autorefresh":false,"distro_target":"sle-15-ppc64le","id":5464,"enabled":false,"description":"SLE-Product-SUSE-Manager-Server-4.3-Source-Pool for sle-15-ppc64le","name":"SLE-Product-SUSE-Manager-Server-4.3-Source-Pool","installer_updates":false}],"online_predecessor_ids":[2010,2220],"product_class":"SMS-PPC","predecessor_ids":[2010,2220],"product_type":"base","cpe":"cpe:/o:suse:suse-manager-server:4.3","free":false,"shortname":"SUSE Manager Server 4.3","description":"SUSE Manager lets you efficiently manage physical, virtual, and cloud-based Linux systems. It provides automated and cost-effective configuration and software management, asset management, and system provisioning.","arch":"ppc64le","eula_url":"https://updates.suse.com/SUSE/Products/SLE-Product-SUSE-Manager-Server/4.3/ppc64le/product.license/"},{"product_type":"base","cpe":"cpe:/o:suse:suse-manager-server:4.3","predecessor_ids":[2011,2221],"online_predecessor_ids":[2011,2221],"product_class":"SMS-Z","repositories":[{"description":"SLE-Product-SUSE-Manager-Server-4.3-Updates for sle-15-s390x","name":"SLE-Product-SUSE-Manager-Server-4.3-Updates","installer_updates":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-SUSE-Manager-Server/4.3/s390x/update/","autorefresh":true,"distro_target":"sle-15-s390x","id":5465,"enabled":true},{"autorefresh":true,"distro_target":"sle-15-s390x","url":"https://updates.suse.com/SUSE/Updates/SLE-Product-SUSE-Manager-Server/4.3/s390x/update_debug/","enabled":false,"id":5466,"description":"SLE-Product-SUSE-Manager-Server-4.3-Debuginfo-Updates for sle-15-s390x","name":"SLE-Product-SUSE-Manager-Server-4.3-Debuginfo-Updates","installer_updates":false},{"url":"https://updates.suse.com/SUSE/Products/SLE-Product-SUSE-Manager-Server/4.3/s390x/product/","distro_target":"sle-15-s390x","autorefresh":false,"id":5467,"enabled":true,"description":"SLE-Product-SUSE-Manager-Server-4.3-Pool for sle-15-s390x","installer_updates":false,"name":"SLE-Product-SUSE-Manager-Server-4.3-Pool"},{"enabled":false,"id":5468,"autorefresh":false,"distro_target":"sle-15-s390x","url":"https://updates.suse.com/SUSE/Products/SLE-Product-SUSE-Manager-Server/4.3/s390x/product_debug/","name":"SLE-Product-SUSE-Manager-Server-4.3-Debuginfo-Pool","installer_updates":false,"description":"SLE-Product-SUSE-Manager-Server-4.3-Debuginfo-Pool for sle-15-s390x"},{"description":"SLE-Product-SUSE-Manager-Server-4.3-Source-Pool for sle-15-s390x","name":"SLE-Product-SUSE-Manager-Server-4.3-Source-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-15-s390x","url":"https://updates.suse.com/SUSE/Products/SLE-Product-SUSE-Manager-Server/4.3/s390x/product_source/","enabled":false,"id":5469}],"eula_url":"https://updates.suse.com/SUSE/Products/SLE-Product-SUSE-Manager-Server/4.3/s390x/product.license/","arch":"s390x","free":false,"description":"SUSE Manager lets you efficiently manage physical, virtual, and cloud-based Linux systems. It provides automated and cost-effective configuration and software management, asset management, and system provisioning.","shortname":"SUSE Manager Server 4.3","extensions":[{"shortname":"Basesystem-Module","description":"

The SUSE Linux Enterprise Basesystem Module delivers the base system of the product.

","free":true,"eula_url":"","arch":"s390x","predecessor_ids":[1587,1771,1945,2144],"online_predecessor_ids":[1587,1771,1945,2144],"repositories":[{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15-SP4/s390x/update/","distro_target":"sle-15-s390x","autorefresh":true,"id":5132,"enabled":true,"description":"SLE-Module-Basesystem15-SP4-Updates for sle-15-s390x","installer_updates":false,"name":"SLE-Module-Basesystem15-SP4-Updates"},{"installer_updates":false,"name":"SLE-Module-Basesystem15-SP4-Debuginfo-Updates","description":"SLE-Module-Basesystem15-SP4-Debuginfo-Updates for sle-15-s390x","enabled":false,"id":5133,"distro_target":"sle-15-s390x","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15-SP4/s390x/update_debug/"},{"id":5134,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP4/s390x/product/","distro_target":"sle-15-s390x","autorefresh":false,"installer_updates":false,"name":"SLE-Module-Basesystem15-SP4-Pool","description":"SLE-Module-Basesystem15-SP4-Pool for sle-15-s390x"},{"enabled":false,"id":5135,"autorefresh":false,"distro_target":"sle-15-s390x","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP4/s390x/product_debug/","name":"SLE-Module-Basesystem15-SP4-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-Basesystem15-SP4-Debuginfo-Pool for sle-15-s390x"},{"name":"SLE-Module-Basesystem15-SP4-Source-Pool","installer_updates":false,"description":"SLE-Module-Basesystem15-SP4-Source-Pool for sle-15-s390x","enabled":false,"id":5136,"autorefresh":false,"distro_target":"sle-15-s390x","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP4/s390x/product_source/"}],"product_class":"MODULE","cpe":"cpe:/o:suse:sle-module-basesystem:15:sp4","product_type":"module","recommended":true,"version":"15.4","name":"Basesystem Module","offline_predecessor_ids":[1295,1367],"friendly_name":"Basesystem Module 15 SP4 s390x","migration_extra":false,"former_identifier":"sle-module-basesystem","release_type":null,"friendly_version":"15 SP4","extensions":[{"extensions":[{"product_type":"module","cpe":"cpe:/o:suse:sle-module-development-tools:15:sp4","predecessor_ids":[1596,1793,1970,2160],"online_predecessor_ids":[1596,1793,1970,2160],"product_class":"MODULE","repositories":[{"description":"SLE-Module-DevTools15-SP4-Updates for sle-15-s390x","installer_updates":false,"name":"SLE-Module-DevTools15-SP4-Updates","distro_target":"sle-15-s390x","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15-SP4/s390x/update/","enabled":true,"id":5212},{"installer_updates":false,"name":"SLE-Module-DevTools15-SP4-Debuginfo-Updates","description":"SLE-Module-DevTools15-SP4-Debuginfo-Updates for sle-15-s390x","id":5213,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15-SP4/s390x/update_debug/","distro_target":"sle-15-s390x","autorefresh":true},{"description":"SLE-Module-DevTools15-SP4-Pool for sle-15-s390x","installer_updates":false,"name":"SLE-Module-DevTools15-SP4-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP4/s390x/product/","distro_target":"sle-15-s390x","autorefresh":false,"id":5214,"enabled":true},{"enabled":false,"id":5215,"autorefresh":false,"distro_target":"sle-15-s390x","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP4/s390x/product_debug/","name":"SLE-Module-DevTools15-SP4-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-DevTools15-SP4-Debuginfo-Pool for sle-15-s390x"},{"installer_updates":false,"name":"SLE-Module-DevTools15-SP4-Source-Pool","description":"SLE-Module-DevTools15-SP4-Source-Pool for sle-15-s390x","id":5216,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP4/s390x/product_source/","distro_target":"sle-15-s390x","autorefresh":false}],"eula_url":"","arch":"s390x","free":true,"shortname":"Development-Tools-Module","description":"

The Development Tools Module helps you developing applications for SUSE Linux Enterprise 15.

Access to the Development Tools Module is included in your SUSE Linux Enterprise product subscription. The module has a different lifecycle than SUSE Linux Enterprise itself.

","extensions":[],"identifier":"sle-module-development-tools","release_stage":"released","id":2314,"friendly_version":"15 SP4","offline_predecessor_ids":[1340,1429,1632,1891],"name":"Development Tools Module","former_identifier":"sle-sdk","release_type":null,"friendly_name":"Development Tools Module 15 SP4 s390x","migration_extra":false,"recommended":false,"version":"15.4"}],"identifier":"sle-module-desktop-applications","release_stage":"released","id":2302,"friendly_version":"15 SP4","offline_predecessor_ids":[],"name":"Desktop Applications Module","former_identifier":"sle-module-desktop-applications","release_type":null,"migration_extra":false,"friendly_name":"Desktop Applications Module 15 SP4 s390x","recommended":false,"version":"15.4","product_type":"module","cpe":"cpe:/o:suse:sle-module-desktop-applications:15:sp4","predecessor_ids":[1593,1775,1966,2148],"online_predecessor_ids":[1593,1775,1966,2148],"repositories":[{"description":"SLE-Module-Desktop-Applications15-SP4-Updates for sle-15-s390x","installer_updates":false,"name":"SLE-Module-Desktop-Applications15-SP4-Updates","distro_target":"sle-15-s390x","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15-SP4/s390x/update/","enabled":true,"id":5152},{"description":"SLE-Module-Desktop-Applications15-SP4-Debuginfo-Updates for sle-15-s390x","installer_updates":false,"name":"SLE-Module-Desktop-Applications15-SP4-Debuginfo-Updates","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15-SP4/s390x/update_debug/","distro_target":"sle-15-s390x","autorefresh":true,"id":5153,"enabled":false},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP4/s390x/product/","distro_target":"sle-15-s390x","autorefresh":false,"id":5154,"enabled":true,"description":"SLE-Module-Desktop-Applications15-SP4-Pool for sle-15-s390x","installer_updates":false,"name":"SLE-Module-Desktop-Applications15-SP4-Pool"},{"installer_updates":false,"name":"SLE-Module-Desktop-Applications15-SP4-Debuginfo-Pool","description":"SLE-Module-Desktop-Applications15-SP4-Debuginfo-Pool for sle-15-s390x","enabled":false,"id":5155,"distro_target":"sle-15-s390x","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP4/s390x/product_debug/"},{"id":5156,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP4/s390x/product_source/","distro_target":"sle-15-s390x","autorefresh":false,"installer_updates":false,"name":"SLE-Module-Desktop-Applications15-SP4-Source-Pool","description":"SLE-Module-Desktop-Applications15-SP4-Source-Pool for sle-15-s390x"}],"product_class":"MODULE","eula_url":"","arch":"s390x","free":true,"shortname":"Desktop-Applications-Module","description":"

The SUSE Linux Enterprise Desktop Applications Module delivers a basic set of Desktop functionality.

Access to the Desktop Applications Module is included in your SUSE Linux Enterprise product subscription.

"},{"release_type":null,"former_identifier":"sle-module-server-applications","migration_extra":false,"friendly_name":"Server Applications Module 15 SP4 s390x","offline_predecessor_ids":[],"name":"Server Applications Module","version":"15.4","recommended":true,"id":2306,"release_stage":"released","identifier":"sle-module-server-applications","extensions":[{"release_type":null,"former_identifier":"sle-module-web-scripting","migration_extra":false,"friendly_name":"Web and Scripting Module 15 SP4 s390x","offline_predecessor_ids":[1152],"name":"Web and Scripting Module","version":"15.4","recommended":true,"release_stage":"released","id":2318,"identifier":"sle-module-web-scripting","extensions":[{"recommended":true,"version":"4.3","offline_predecessor_ids":[],"name":"SUSE Manager Server Module","former_identifier":"sle-module-suse-manager-server","release_type":null,"migration_extra":false,"friendly_name":"SUSE Manager Server Module 4.3 s390x","friendly_version":"4.3","extensions":[],"id":2382,"release_stage":"released","identifier":"sle-module-suse-manager-server","free":true,"shortname":"SUSE Manager Server 4.3 Module","description":"SUSE Manager lets you efficiently manage physical, virtual, and cloud-based Linux systems. It provides automated and cost-effective configuration and software management, asset management, and system provisioning.","eula_url":"","arch":"s390x","predecessor_ids":[2018,2227],"product_class":"MODULE","online_predecessor_ids":[2018,2227],"repositories":[{"autorefresh":true,"distro_target":"sle-15-s390x","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-SUSE-Manager-Server/4.3/s390x/update/","enabled":true,"id":5490,"description":"SLE-Module-SUSE-Manager-Server-4.3-Updates for sle-15-s390x","name":"SLE-Module-SUSE-Manager-Server-4.3-Updates","installer_updates":false},{"description":"SLE-Module-SUSE-Manager-Server-4.3-Debuginfo-Updates for sle-15-s390x","name":"SLE-Module-SUSE-Manager-Server-4.3-Debuginfo-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-15-s390x","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-SUSE-Manager-Server/4.3/s390x/update_debug/","enabled":false,"id":5491},{"distro_target":"sle-15-s390x","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-SUSE-Manager-Server/4.3/s390x/product/","enabled":true,"id":5492,"description":"SLE-Module-SUSE-Manager-Server-4.3-Pool for sle-15-s390x","installer_updates":false,"name":"SLE-Module-SUSE-Manager-Server-4.3-Pool"},{"installer_updates":false,"name":"SLE-Module-SUSE-Manager-Server-4.3-Debuginfo-Pool","description":"SLE-Module-SUSE-Manager-Server-4.3-Debuginfo-Pool for sle-15-s390x","id":5493,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-SUSE-Manager-Server/4.3/s390x/product_debug/","distro_target":"sle-15-s390x","autorefresh":false},{"description":"SLE-Module-SUSE-Manager-Server-4.3-Source-Pool for sle-15-s390x","installer_updates":false,"name":"SLE-Module-SUSE-Manager-Server-4.3-Source-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-SUSE-Manager-Server/4.3/s390x/product_source/","distro_target":"sle-15-s390x","autorefresh":false,"id":5494,"enabled":false}],"product_type":"module","cpe":"cpe:/o:suse:sle-module-suse-manager-server:4.3"}],"friendly_version":"15 SP4","arch":"s390x","eula_url":"","free":true,"description":"

The SUSE Linux Enterprise Web and Scripting Module should contains additional packages that are helpful when running a webserver.

Access to the Web and Scripting Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself: Package versions in this module are usually supported for at most three years. We are planning to release more recent versions on a schedule of approximately 18 month; the exact dates may differ per package.

","shortname":"Web-Scripting-Module","product_type":"module","cpe":"cpe:/o:suse:sle-module-web-scripting:15:sp4","product_class":"MODULE","online_predecessor_ids":[1720,1797,1975,2164],"repositories":[{"enabled":true,"id":5232,"distro_target":"sle-15-s390x","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/15-SP4/s390x/update/","installer_updates":false,"name":"SLE-Module-Web-Scripting15-SP4-Updates","description":"SLE-Module-Web-Scripting15-SP4-Updates for sle-15-s390x"},{"id":5233,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/15-SP4/s390x/update_debug/","distro_target":"sle-15-s390x","autorefresh":true,"installer_updates":false,"name":"SLE-Module-Web-Scripting15-SP4-Debuginfo-Updates","description":"SLE-Module-Web-Scripting15-SP4-Debuginfo-Updates for sle-15-s390x"},{"description":"SLE-Module-Web-Scripting15-SP4-Pool for sle-15-s390x","name":"SLE-Module-Web-Scripting15-SP4-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP4/s390x/product/","autorefresh":false,"distro_target":"sle-15-s390x","id":5234,"enabled":true},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP4/s390x/product_debug/","autorefresh":false,"distro_target":"sle-15-s390x","id":5235,"enabled":false,"description":"SLE-Module-Web-Scripting15-SP4-Debuginfo-Pool for sle-15-s390x","name":"SLE-Module-Web-Scripting15-SP4-Debuginfo-Pool","installer_updates":false},{"name":"SLE-Module-Web-Scripting15-SP4-Source-Pool","installer_updates":false,"description":"SLE-Module-Web-Scripting15-SP4-Source-Pool for sle-15-s390x","id":5236,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP4/s390x/product_source/","autorefresh":false,"distro_target":"sle-15-s390x"}],"predecessor_ids":[1720,1797,1975,2164]},{"predecessor_ids":[1602,1803,1981,2170],"product_class":"MODULE","online_predecessor_ids":[1602,1803,1981,2170],"repositories":[{"description":"SLE-Module-Legacy15-SP4-Updates for sle-15-s390x","installer_updates":false,"name":"SLE-Module-Legacy15-SP4-Updates","distro_target":"sle-15-s390x","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/15-SP4/s390x/update/","enabled":true,"id":5252},{"description":"SLE-Module-Legacy15-SP4-Debuginfo-Updates for sle-15-s390x","installer_updates":false,"name":"SLE-Module-Legacy15-SP4-Debuginfo-Updates","distro_target":"sle-15-s390x","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/15-SP4/s390x/update_debug/","enabled":false,"id":5253},{"description":"SLE-Module-Legacy15-SP4-Pool for sle-15-s390x","installer_updates":false,"name":"SLE-Module-Legacy15-SP4-Pool","distro_target":"sle-15-s390x","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15-SP4/s390x/product/","enabled":true,"id":5254},{"id":5255,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15-SP4/s390x/product_debug/","autorefresh":false,"distro_target":"sle-15-s390x","name":"SLE-Module-Legacy15-SP4-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-Legacy15-SP4-Debuginfo-Pool for sle-15-s390x"},{"enabled":false,"id":5256,"autorefresh":false,"distro_target":"sle-15-s390x","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15-SP4/s390x/product_source/","name":"SLE-Module-Legacy15-SP4-Source-Pool","installer_updates":false,"description":"SLE-Module-Legacy15-SP4-Source-Pool for sle-15-s390x"}],"product_type":"module","cpe":"cpe:/o:suse:sle-module-legacy:15:sp4","free":true,"shortname":"Legacy-Module","description":"

The Legacy Module helps you migrating applications from SUSE Linux Enterprise 12 and other systems to SUSE Linux Enterprise 15, by providing packages which are discontinued on SUSE Linux Enterprise Server, such as: ntp, IBM Java 8, and a number of libraries.

Access to the Legacy Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself. Packages in the this module are usually supported for at most three years.

","eula_url":"","arch":"s390x","friendly_version":"15 SP4","extensions":[],"id":2322,"release_stage":"released","identifier":"sle-module-legacy","recommended":false,"version":"15.4","offline_predecessor_ids":[1149],"name":"Legacy Module","release_type":null,"former_identifier":"sle-module-legacy","friendly_name":"Legacy Module 15 SP4 s390x","migration_extra":false},{"predecessor_ids":[1646,1807,1987,2174],"repositories":[{"autorefresh":true,"distro_target":"sle-15-s390x","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/15-SP4/s390x/update/","enabled":true,"id":5272,"description":"SLE-Module-Public-Cloud15-SP4-Updates for sle-15-s390x","name":"SLE-Module-Public-Cloud15-SP4-Updates","installer_updates":false},{"id":5273,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/15-SP4/s390x/update_debug/","distro_target":"sle-15-s390x","autorefresh":true,"installer_updates":false,"name":"SLE-Module-Public-Cloud15-SP4-Debuginfo-Updates","description":"SLE-Module-Public-Cloud15-SP4-Debuginfo-Updates for sle-15-s390x"},{"enabled":true,"id":5274,"autorefresh":false,"distro_target":"sle-15-s390x","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP4/s390x/product/","name":"SLE-Module-Public-Cloud15-SP4-Pool","installer_updates":false,"description":"SLE-Module-Public-Cloud15-SP4-Pool for sle-15-s390x"},{"installer_updates":false,"name":"SLE-Module-Public-Cloud15-SP4-Debuginfo-Pool","description":"SLE-Module-Public-Cloud15-SP4-Debuginfo-Pool for sle-15-s390x","id":5275,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP4/s390x/product_debug/","distro_target":"sle-15-s390x","autorefresh":false},{"name":"SLE-Module-Public-Cloud15-SP4-Source-Pool","installer_updates":false,"description":"SLE-Module-Public-Cloud15-SP4-Source-Pool for sle-15-s390x","id":5276,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP4/s390x/product_source/","autorefresh":false,"distro_target":"sle-15-s390x"}],"online_predecessor_ids":[1646,1807,1987,2174],"product_class":"MODULE","product_type":"module","cpe":"cpe:/o:suse:sle-module-public-cloud:15:sp4","free":true,"shortname":"Public-Cloud-Module","description":"

The Public Cloud Module is a collection of tools that enables you to create and manage cloud images from the commandline on SUSE Linux Enterprise Server. When building your own images with KIWI or SUSE Studio, initialization code specific to the target cloud is included in that image.

Access to the Public Cloud Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself; please check the Release Notes for further details.

","eula_url":"","arch":"s390x","friendly_version":"15 SP4","extensions":[],"identifier":"sle-module-public-cloud","release_stage":"released","id":2326,"recommended":false,"version":"15.4","offline_predecessor_ids":[1219],"name":"Public Cloud Module","release_type":null,"former_identifier":"sle-module-public-cloud","migration_extra":false,"friendly_name":"Public Cloud Module 15 SP4 s390x"},{"cpe":"cpe:/o:suse:sle-ha:15:sp4","product_type":"extension","online_predecessor_ids":[1605,1784,1958,2194],"product_class":"SLE-HAE-Z","repositories":[{"name":"SLE-Product-HA15-SP4-Updates","installer_updates":false,"description":"SLE-Product-HA15-SP4-Updates for sle-15-s390x","enabled":true,"id":5337,"autorefresh":true,"distro_target":"sle-15-s390x","url":"https://updates.suse.com/SUSE/Updates/SLE-Product-HA/15-SP4/s390x/update/"},{"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-HA/15-SP4/s390x/update_debug/","autorefresh":true,"distro_target":"sle-15-s390x","id":5338,"enabled":false,"description":"SLE-Product-HA15-SP4-Debuginfo-Updates for sle-15-s390x","name":"SLE-Product-HA15-SP4-Debuginfo-Updates","installer_updates":false},{"installer_updates":false,"name":"SLE-Product-HA15-SP4-Pool","description":"SLE-Product-HA15-SP4-Pool for sle-15-s390x","enabled":true,"id":5339,"distro_target":"sle-15-s390x","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP4/s390x/product/"},{"id":5340,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP4/s390x/product_debug/","autorefresh":false,"distro_target":"sle-15-s390x","name":"SLE-Product-HA15-SP4-Debuginfo-Pool","installer_updates":false,"description":"SLE-Product-HA15-SP4-Debuginfo-Pool for sle-15-s390x"},{"description":"SLE-Product-HA15-SP4-Source-Pool for sle-15-s390x","installer_updates":false,"name":"SLE-Product-HA15-SP4-Source-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP4/s390x/product_source/","distro_target":"sle-15-s390x","autorefresh":false,"id":5341,"enabled":false}],"predecessor_ids":[1605,1784,1958,2194],"arch":"s390x","eula_url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP4/s390x/product.license/","description":"SUSE Linux High Availability Extension provides mature, industry-leading open-source high-availability clustering technologies that are easy to set up and use. It can be deployed in physical and/or virtual environments, and can cluster physical servers, virtual servers, or any combination of the two to suit your business’ needs.","shortname":"SLEHA15-SP4","free":false,"id":2339,"release_stage":"released","identifier":"sle-ha","extensions":[],"friendly_version":"15 SP4","migration_extra":false,"friendly_name":"SUSE Linux Enterprise High Availability Extension 15 SP4 s390x","former_identifier":"sle-ha","release_type":null,"name":"SUSE Linux Enterprise High Availability Extension","offline_predecessor_ids":[1080,1082,1084,1086,1109,1110,1257,1287,1434,1436,1636,1638,1883,1885],"version":"15.4","recommended":false}],"friendly_version":"15 SP4","arch":"s390x","eula_url":"","free":true,"description":"

The SUSE Linux Enterprise Server Applications Module delivers a basic set of Server functionality.

Access to the Server Applications Module is included in your SUSE Linux Enterprise Server subscription.

","shortname":"Server-Applications-Module","product_type":"module","cpe":"cpe:/o:suse:sle-module-server-applications:15:sp4","online_predecessor_ids":[1599,1779,1954,2152],"product_class":"MODULE","repositories":[{"enabled":true,"id":5172,"distro_target":"sle-15-s390x","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15-SP4/s390x/update/","installer_updates":false,"name":"SLE-Module-Server-Applications15-SP4-Updates","description":"SLE-Module-Server-Applications15-SP4-Updates for sle-15-s390x"},{"description":"SLE-Module-Server-Applications15-SP4-Debuginfo-Updates for sle-15-s390x","name":"SLE-Module-Server-Applications15-SP4-Debuginfo-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-15-s390x","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15-SP4/s390x/update_debug/","enabled":false,"id":5173},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP4/s390x/product/","distro_target":"sle-15-s390x","autorefresh":false,"id":5174,"enabled":true,"description":"SLE-Module-Server-Applications15-SP4-Pool for sle-15-s390x","installer_updates":false,"name":"SLE-Module-Server-Applications15-SP4-Pool"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP4/s390x/product_debug/","autorefresh":false,"distro_target":"sle-15-s390x","id":5175,"enabled":false,"description":"SLE-Module-Server-Applications15-SP4-Debuginfo-Pool for sle-15-s390x","name":"SLE-Module-Server-Applications15-SP4-Debuginfo-Pool","installer_updates":false},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP4/s390x/product_source/","autorefresh":false,"distro_target":"sle-15-s390x","id":5176,"enabled":false,"description":"SLE-Module-Server-Applications15-SP4-Source-Pool for sle-15-s390x","name":"SLE-Module-Server-Applications15-SP4-Source-Pool","installer_updates":false}],"predecessor_ids":[1599,1779,1954,2152]},{"friendly_name":"Containers Module 15 SP4 s390x","migration_extra":false,"former_identifier":"sle-module-containers","release_type":null,"name":"Containers Module","offline_predecessor_ids":[1354],"version":"15.4","recommended":false,"id":2310,"release_stage":"released","identifier":"sle-module-containers","extensions":[],"friendly_version":"15 SP4","arch":"s390x","eula_url":"","description":"

This Module contains several packages revolving around containers and related tools.

","shortname":"Containers-Module","free":true,"cpe":"cpe:/o:suse:sle-module-containers:15:sp4","product_type":"module","product_class":"MODULE","online_predecessor_ids":[1641,1789,1962,2156],"repositories":[{"name":"SLE-Module-Containers15-SP4-Updates","installer_updates":false,"description":"SLE-Module-Containers15-SP4-Updates for sle-15-s390x","enabled":true,"id":5192,"autorefresh":true,"distro_target":"sle-15-s390x","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/15-SP4/s390x/update/"},{"installer_updates":false,"name":"SLE-Module-Containers15-SP4-Debuginfo-Updates","description":"SLE-Module-Containers15-SP4-Debuginfo-Updates for sle-15-s390x","id":5193,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/15-SP4/s390x/update_debug/","distro_target":"sle-15-s390x","autorefresh":true},{"description":"SLE-Module-Containers15-SP4-Pool for sle-15-s390x","installer_updates":false,"name":"SLE-Module-Containers15-SP4-Pool","distro_target":"sle-15-s390x","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP4/s390x/product/","enabled":true,"id":5194},{"name":"SLE-Module-Containers15-SP4-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-Containers15-SP4-Debuginfo-Pool for sle-15-s390x","id":5195,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP4/s390x/product_debug/","autorefresh":false,"distro_target":"sle-15-s390x"},{"description":"SLE-Module-Containers15-SP4-Source-Pool for sle-15-s390x","name":"SLE-Module-Containers15-SP4-Source-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-15-s390x","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP4/s390x/product_source/","enabled":false,"id":5196}],"predecessor_ids":[1641,1789,1962,2156]},{"offline_predecessor_ids":[1530,1812,1914],"name":"SUSE Package Hub","release_type":null,"former_identifier":"PackageHub","migration_extra":false,"friendly_name":"SUSE Package Hub 15 SP4 s390x","recommended":false,"version":"15.4","extensions":[],"release_stage":"released","identifier":"PackageHub","id":2346,"friendly_version":"15 SP4","eula_url":"","arch":"s390x","free":true,"description":"SUSE Package Hub is a free of charge module providing access to community maintained packages built to run on SUSE Linux Enterprise Server. Built from the same sources used in the openSUSE distributions, these quality packages provide additional software to what is found in the SUSE Linux Enterprise Server product. Packages from the Package Hub are delivered without L3 support from SUSE. General updates and fixes to the packages in SUSE Package Hub are provided by the openSUSE community based on their discretion, though SUSE will monitor and ensure that any known critical security issues will be addressed. Packages in the Package Hub are approved by SUSE for use with SUSE Linux Enterprise Server 15-SP4 and to not interfere with the supportability of SUSE Linux Enterprise Server, its modules and extensions. For more information about SUSE Package Hub please visit https://packagehub.suse.com.","shortname":"SUSE-PackageHub-15","product_type":"module","cpe":"cpe:/o:suse:packagehub:15:sp4","predecessor_ids":[1742,1870,1949,2190],"online_predecessor_ids":[1742,1870,1949,2190],"repositories":[{"autorefresh":false,"distro_target":"sle-15-s390x","url":"https://updates.suse.com/SUSE/Backports/SLE-15-SP4_s390x/standard/","enabled":true,"id":5380,"description":"SUSE-PackageHub-15-SP4-Backports-Pool for sle-15-s390x","name":"SUSE-PackageHub-15-SP4-Backports-Pool","installer_updates":false},{"autorefresh":true,"distro_target":"sle-15-s390x","url":"https://updates.suse.com/SUSE/Backports/SLE-15-SP4_s390x/standard_debug/","enabled":false,"id":5381,"description":"SUSE-PackageHub-15-SP4-Backports-Debuginfo for sle-15-s390x","name":"SUSE-PackageHub-15-SP4-Backports-Debuginfo","installer_updates":false},{"description":"SLE-Module-Packagehub-Subpackages15-SP4-Updates for sle-15-s390x","name":"SLE-Module-Packagehub-Subpackages15-SP4-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-15-s390x","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP4/s390x/update/","enabled":true,"id":5382},{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP4/s390x/update_debug/","autorefresh":true,"distro_target":"sle-15-s390x","id":5383,"enabled":false,"description":"SLE-Module-Packagehub-Subpackages15-SP4-Debuginfo-Updates for sle-15-s390x","name":"SLE-Module-Packagehub-Subpackages15-SP4-Debuginfo-Updates","installer_updates":false},{"description":"SUSE-PackageHub-15-SP4-Pool for sle-15-s390x","name":"SUSE-PackageHub-15-SP4-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Backports/SLE-15-SP4_s390x/product/","autorefresh":false,"distro_target":"sle-15-s390x","id":5384,"enabled":true},{"description":"SLE-Module-Packagehub-Subpackages15-SP4-Pool for sle-15-s390x","installer_updates":false,"name":"SLE-Module-Packagehub-Subpackages15-SP4-Pool","distro_target":"sle-15-s390x","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP4/s390x/product/","enabled":true,"id":5385},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP4/s390x/product_debug/","distro_target":"sle-15-s390x","autorefresh":false,"id":5386,"enabled":false,"description":"SLE-Module-Packagehub-Subpackages15-SP4-Debuginfo-Pool for sle-15-s390x","installer_updates":false,"name":"SLE-Module-Packagehub-Subpackages15-SP4-Debuginfo-Pool"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP4/s390x/product_source/","distro_target":"sle-15-s390x","autorefresh":false,"id":5387,"enabled":false,"description":"SLE-Module-Packagehub-Subpackages15-SP4-Source-Pool for sle-15-s390x","installer_updates":false,"name":"SLE-Module-Packagehub-Subpackages15-SP4-Source-Pool"}],"product_class":"MODULE"},{"predecessor_ids":[],"product_class":"MODULE","online_predecessor_ids":[],"repositories":[{"description":"SLE-Module-Python3-15-SP4-Updates for sle-15-s390x","installer_updates":false,"name":"SLE-Module-Python3-15-SP4-Updates","distro_target":"sle-15-s390x","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Python3/15-SP4/s390x/update/","enabled":true,"id":5577},{"installer_updates":false,"name":"SLE-Module-Python3-15-SP4-Debuginfo-Updates","description":"SLE-Module-Python3-15-SP4-Debuginfo-Updates for sle-15-s390x","enabled":false,"id":5578,"distro_target":"sle-15-s390x","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Python3/15-SP4/s390x/update_debug/"},{"id":5579,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Python3/15-SP4/s390x/product/","distro_target":"sle-15-s390x","autorefresh":false,"installer_updates":false,"name":"SLE-Module-Python3-15-SP4-Pool","description":"SLE-Module-Python3-15-SP4-Pool for sle-15-s390x"},{"description":"SLE-Module-Python3-15-SP4-Debuginfo-Pool for sle-15-s390x","installer_updates":false,"name":"SLE-Module-Python3-15-SP4-Debuginfo-Pool","distro_target":"sle-15-s390x","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Python3/15-SP4/s390x/product_debug/","enabled":false,"id":5580},{"description":"SLE-Module-Python3-15-SP4-Source-Pool for sle-15-s390x","installer_updates":false,"name":"SLE-Module-Python3-15-SP4-Source-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Python3/15-SP4/s390x/product_source/","distro_target":"sle-15-s390x","autorefresh":false,"id":5581,"enabled":false}],"product_type":"module","cpe":"cpe:/o:suse:sle-module-python3:15:sp4","free":true,"description":"

This module contains the Python 3 packages.

Access to the Python 3 Module is included in your SUSE Linux Enterprise subscription. The module has a different lifecycle than SUSE Linux Enterprise itself; please check the Release Notes for further details.

","shortname":"Python 3-Module","eula_url":"","arch":"s390x","friendly_version":"15 SP4","extensions":[],"identifier":"sle-module-python3","release_stage":"released","id":2404,"recommended":false,"version":"15.4","offline_predecessor_ids":[],"name":"Python 3 Module","release_type":null,"former_identifier":"sle-module-python3","friendly_name":"Python 3 Module 15 SP4 s390x","migration_extra":false}],"release_stage":"released","id":2298,"identifier":"sle-module-basesystem"}],"identifier":"SUSE-Manager-Server","release_stage":"released","id":2377,"friendly_version":"4.3","offline_predecessor_ids":[],"name":"SUSE Manager Server","release_type":null,"former_identifier":"SUSE-Manager-Server","migration_extra":false,"friendly_name":"SUSE Manager Server 4.3 s390x","recommended":false,"version":"4.3"},{"release_type":null,"former_identifier":"SUSE-Manager-Server","friendly_name":"SUSE Manager Server 4.3 x86_64","migration_extra":false,"offline_predecessor_ids":[],"name":"SUSE Manager Server","version":"4.3","recommended":false,"release_stage":"released","id":2378,"identifier":"SUSE-Manager-Server","extensions":[{"identifier":"sle-module-basesystem","release_stage":"released","id":2299,"extensions":[{"friendly_version":"15 SP4","identifier":"sle-module-desktop-applications","release_stage":"released","id":2303,"extensions":[{"friendly_version":"15 SP4","release_stage":"released","identifier":"sle-module-development-tools","id":2315,"extensions":[],"version":"15.4","recommended":false,"friendly_name":"Development Tools Module 15 SP4 x86_64","migration_extra":false,"former_identifier":"sle-sdk","release_type":null,"name":"Development Tools Module","offline_predecessor_ids":[1341,1427,1630,1892],"online_predecessor_ids":[1579,1794,1971,2161],"repositories":[{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15-SP4/x86_64/update/","distro_target":"sle-15-x86_64","autorefresh":true,"id":5217,"enabled":true,"description":"SLE-Module-DevTools15-SP4-Updates for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-DevTools15-SP4-Updates"},{"description":"SLE-Module-DevTools15-SP4-Debuginfo-Updates for sle-15-x86_64","name":"SLE-Module-DevTools15-SP4-Debuginfo-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15-SP4/x86_64/update_debug/","enabled":false,"id":5218},{"enabled":true,"id":5219,"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP4/x86_64/product/","installer_updates":false,"name":"SLE-Module-DevTools15-SP4-Pool","description":"SLE-Module-DevTools15-SP4-Pool for sle-15-x86_64"},{"installer_updates":false,"name":"SLE-Module-DevTools15-SP4-Debuginfo-Pool","description":"SLE-Module-DevTools15-SP4-Debuginfo-Pool for sle-15-x86_64","enabled":false,"id":5220,"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP4/x86_64/product_debug/"},{"enabled":false,"id":5221,"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP4/x86_64/product_source/","installer_updates":false,"name":"SLE-Module-DevTools15-SP4-Source-Pool","description":"SLE-Module-DevTools15-SP4-Source-Pool for sle-15-x86_64"}],"product_class":"MODULE","predecessor_ids":[1579,1794,1971,2161],"cpe":"cpe:/o:suse:sle-module-development-tools:15:sp4","product_type":"module","shortname":"Development-Tools-Module","description":"

The Development Tools Module helps you developing applications for SUSE Linux Enterprise 15.

Access to the Development Tools Module is included in your SUSE Linux Enterprise product subscription. The module has a different lifecycle than SUSE Linux Enterprise itself.

","free":true,"arch":"x86_64","eula_url":""}],"version":"15.4","recommended":false,"former_identifier":"sle-module-desktop-applications","release_type":null,"migration_extra":false,"friendly_name":"Desktop Applications Module 15 SP4 x86_64","offline_predecessor_ids":[],"name":"Desktop Applications Module","online_predecessor_ids":[1578,1776,1967,2149],"product_class":"MODULE","repositories":[{"installer_updates":false,"name":"SLE-Module-Desktop-Applications15-SP4-Updates","description":"SLE-Module-Desktop-Applications15-SP4-Updates for sle-15-x86_64","id":5157,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15-SP4/x86_64/update/","distro_target":"sle-15-x86_64","autorefresh":true},{"distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15-SP4/x86_64/update_debug/","enabled":false,"id":5158,"description":"SLE-Module-Desktop-Applications15-SP4-Debuginfo-Updates for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Desktop-Applications15-SP4-Debuginfo-Updates"},{"description":"SLE-Module-Desktop-Applications15-SP4-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Desktop-Applications15-SP4-Pool","distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP4/x86_64/product/","enabled":true,"id":5159},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP4/x86_64/product_debug/","autorefresh":false,"distro_target":"sle-15-x86_64","id":5160,"enabled":false,"description":"SLE-Module-Desktop-Applications15-SP4-Debuginfo-Pool for sle-15-x86_64","name":"SLE-Module-Desktop-Applications15-SP4-Debuginfo-Pool","installer_updates":false},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP4/x86_64/product_source/","autorefresh":false,"distro_target":"sle-15-x86_64","id":5161,"enabled":false,"description":"SLE-Module-Desktop-Applications15-SP4-Source-Pool for sle-15-x86_64","name":"SLE-Module-Desktop-Applications15-SP4-Source-Pool","installer_updates":false}],"predecessor_ids":[1578,1776,1967,2149],"product_type":"module","cpe":"cpe:/o:suse:sle-module-desktop-applications:15:sp4","free":true,"description":"

The SUSE Linux Enterprise Desktop Applications Module delivers a basic set of Desktop functionality.

Access to the Desktop Applications Module is included in your SUSE Linux Enterprise product subscription.

","shortname":"Desktop-Applications-Module","arch":"x86_64","eula_url":""},{"cpe":"cpe:/o:suse:sle-module-server-applications:15:sp4","product_type":"module","online_predecessor_ids":[1580,1780,1955,2153],"product_class":"MODULE","repositories":[{"enabled":true,"id":5177,"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15-SP4/x86_64/update/","name":"SLE-Module-Server-Applications15-SP4-Updates","installer_updates":false,"description":"SLE-Module-Server-Applications15-SP4-Updates for sle-15-x86_64"},{"distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15-SP4/x86_64/update_debug/","enabled":false,"id":5178,"description":"SLE-Module-Server-Applications15-SP4-Debuginfo-Updates for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Server-Applications15-SP4-Debuginfo-Updates"},{"id":5179,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP4/x86_64/product/","distro_target":"sle-15-x86_64","autorefresh":false,"installer_updates":false,"name":"SLE-Module-Server-Applications15-SP4-Pool","description":"SLE-Module-Server-Applications15-SP4-Pool for sle-15-x86_64"},{"description":"SLE-Module-Server-Applications15-SP4-Debuginfo-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Server-Applications15-SP4-Debuginfo-Pool","distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP4/x86_64/product_debug/","enabled":false,"id":5180},{"description":"SLE-Module-Server-Applications15-SP4-Source-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Server-Applications15-SP4-Source-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP4/x86_64/product_source/","distro_target":"sle-15-x86_64","autorefresh":false,"id":5181,"enabled":false}],"predecessor_ids":[1580,1780,1955,2153],"arch":"x86_64","eula_url":"","shortname":"Server-Applications-Module","description":"

The SUSE Linux Enterprise Server Applications Module delivers a basic set of Server functionality.

Access to the Server Applications Module is included in your SUSE Linux Enterprise Server subscription.

","free":true,"id":2307,"release_stage":"released","identifier":"sle-module-server-applications","extensions":[{"predecessor_ids":[1721,1798,1976,2165],"online_predecessor_ids":[1721,1798,1976,2165],"repositories":[{"installer_updates":false,"name":"SLE-Module-Web-Scripting15-SP4-Updates","description":"SLE-Module-Web-Scripting15-SP4-Updates for sle-15-x86_64","enabled":true,"id":5237,"distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/15-SP4/x86_64/update/"},{"id":5238,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/15-SP4/x86_64/update_debug/","distro_target":"sle-15-x86_64","autorefresh":true,"installer_updates":false,"name":"SLE-Module-Web-Scripting15-SP4-Debuginfo-Updates","description":"SLE-Module-Web-Scripting15-SP4-Debuginfo-Updates for sle-15-x86_64"},{"description":"SLE-Module-Web-Scripting15-SP4-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Web-Scripting15-SP4-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP4/x86_64/product/","distro_target":"sle-15-x86_64","autorefresh":false,"id":5239,"enabled":true},{"id":5240,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP4/x86_64/product_debug/","autorefresh":false,"distro_target":"sle-15-x86_64","name":"SLE-Module-Web-Scripting15-SP4-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-Web-Scripting15-SP4-Debuginfo-Pool for sle-15-x86_64"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP4/x86_64/product_source/","distro_target":"sle-15-x86_64","autorefresh":false,"id":5241,"enabled":false,"description":"SLE-Module-Web-Scripting15-SP4-Source-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Web-Scripting15-SP4-Source-Pool"}],"product_class":"MODULE","cpe":"cpe:/o:suse:sle-module-web-scripting:15:sp4","product_type":"module","description":"

The SUSE Linux Enterprise Web and Scripting Module should contains additional packages that are helpful when running a webserver.

Access to the Web and Scripting Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself: Package versions in this module are usually supported for at most three years. We are planning to release more recent versions on a schedule of approximately 18 month; the exact dates may differ per package.

","shortname":"Web-Scripting-Module","free":true,"eula_url":"","arch":"x86_64","friendly_version":"15 SP4","extensions":[{"friendly_version":"4.3","extensions":[],"release_stage":"released","identifier":"sle-module-suse-manager-server","id":2383,"recommended":true,"version":"4.3","offline_predecessor_ids":[],"name":"SUSE Manager Server Module","former_identifier":"sle-module-suse-manager-server","release_type":null,"migration_extra":false,"friendly_name":"SUSE Manager Server Module 4.3 x86_64","predecessor_ids":[2019,2228],"product_class":"MODULE","online_predecessor_ids":[2019,2228],"repositories":[{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-SUSE-Manager-Server/4.3/x86_64/update/","autorefresh":true,"distro_target":"sle-15-x86_64","id":5495,"enabled":true,"description":"SLE-Module-SUSE-Manager-Server-4.3-Updates for sle-15-x86_64","name":"SLE-Module-SUSE-Manager-Server-4.3-Updates","installer_updates":false},{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-SUSE-Manager-Server/4.3/x86_64/update_debug/","distro_target":"sle-15-x86_64","autorefresh":true,"id":5496,"enabled":false,"description":"SLE-Module-SUSE-Manager-Server-4.3-Debuginfo-Updates for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-SUSE-Manager-Server-4.3-Debuginfo-Updates"},{"id":5497,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-SUSE-Manager-Server/4.3/x86_64/product/","autorefresh":false,"distro_target":"sle-15-x86_64","name":"SLE-Module-SUSE-Manager-Server-4.3-Pool","installer_updates":false,"description":"SLE-Module-SUSE-Manager-Server-4.3-Pool for sle-15-x86_64"},{"id":5498,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-SUSE-Manager-Server/4.3/x86_64/product_debug/","autorefresh":false,"distro_target":"sle-15-x86_64","name":"SLE-Module-SUSE-Manager-Server-4.3-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-SUSE-Manager-Server-4.3-Debuginfo-Pool for sle-15-x86_64"},{"description":"SLE-Module-SUSE-Manager-Server-4.3-Source-Pool for sle-15-x86_64","name":"SLE-Module-SUSE-Manager-Server-4.3-Source-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-SUSE-Manager-Server/4.3/x86_64/product_source/","enabled":false,"id":5499}],"product_type":"module","cpe":"cpe:/o:suse:sle-module-suse-manager-server:4.3","free":true,"description":"SUSE Manager lets you efficiently manage physical, virtual, and cloud-based Linux systems. It provides automated and cost-effective configuration and software management, asset management, and system provisioning.","shortname":"SUSE Manager Server 4.3 Module","eula_url":"","arch":"x86_64"}],"release_stage":"released","id":2319,"identifier":"sle-module-web-scripting","recommended":true,"version":"15.4","name":"Web and Scripting Module","offline_predecessor_ids":[1153],"migration_extra":false,"friendly_name":"Web and Scripting Module 15 SP4 x86_64","former_identifier":"sle-module-web-scripting","release_type":null},{"predecessor_ids":[1581,1804,1982,2171],"product_class":"MODULE","online_predecessor_ids":[1581,1804,1982,2171],"repositories":[{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/15-SP4/x86_64/update/","distro_target":"sle-15-x86_64","autorefresh":true,"id":5257,"enabled":true,"description":"SLE-Module-Legacy15-SP4-Updates for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Legacy15-SP4-Updates"},{"id":5258,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/15-SP4/x86_64/update_debug/","distro_target":"sle-15-x86_64","autorefresh":true,"installer_updates":false,"name":"SLE-Module-Legacy15-SP4-Debuginfo-Updates","description":"SLE-Module-Legacy15-SP4-Debuginfo-Updates for sle-15-x86_64"},{"enabled":true,"id":5259,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15-SP4/x86_64/product/","name":"SLE-Module-Legacy15-SP4-Pool","installer_updates":false,"description":"SLE-Module-Legacy15-SP4-Pool for sle-15-x86_64"},{"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15-SP4/x86_64/product_debug/","enabled":false,"id":5260,"description":"SLE-Module-Legacy15-SP4-Debuginfo-Pool for sle-15-x86_64","name":"SLE-Module-Legacy15-SP4-Debuginfo-Pool","installer_updates":false},{"installer_updates":false,"name":"SLE-Module-Legacy15-SP4-Source-Pool","description":"SLE-Module-Legacy15-SP4-Source-Pool for sle-15-x86_64","enabled":false,"id":5261,"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15-SP4/x86_64/product_source/"}],"product_type":"module","cpe":"cpe:/o:suse:sle-module-legacy:15:sp4","free":true,"shortname":"Legacy-Module","description":"

The Legacy Module helps you migrating applications from SUSE Linux Enterprise 12 and other systems to SUSE Linux Enterprise 15, by providing packages which are discontinued on SUSE Linux Enterprise Server, such as: ntp, IBM Java 8, and a number of libraries.

Access to the Legacy Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself. Packages in the this module are usually supported for at most three years.

","eula_url":"","arch":"x86_64","friendly_version":"15 SP4","extensions":[],"id":2323,"release_stage":"released","identifier":"sle-module-legacy","recommended":false,"version":"15.4","offline_predecessor_ids":[1150],"name":"Legacy Module","former_identifier":"sle-module-legacy","release_type":null,"migration_extra":false,"friendly_name":"Legacy Module 15 SP4 x86_64"},{"free":true,"shortname":"Public-Cloud-Module","description":"

The Public Cloud Module is a collection of tools that enables you to create and manage cloud images from the commandline on SUSE Linux Enterprise Server. When building your own images with KIWI or SUSE Studio, initialization code specific to the target cloud is included in that image.

Access to the Public Cloud Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself; please check the Release Notes for further details.

","eula_url":"","arch":"x86_64","predecessor_ids":[1611,1808,1988,2175],"online_predecessor_ids":[1611,1808,1988,2175],"repositories":[{"installer_updates":false,"name":"SLE-Module-Public-Cloud15-SP4-Updates","description":"SLE-Module-Public-Cloud15-SP4-Updates for sle-15-x86_64","id":5277,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/15-SP4/x86_64/update/","distro_target":"sle-15-x86_64","autorefresh":true},{"name":"SLE-Module-Public-Cloud15-SP4-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-Public-Cloud15-SP4-Debuginfo-Updates for sle-15-x86_64","id":5278,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/15-SP4/x86_64/update_debug/","autorefresh":true,"distro_target":"sle-15-x86_64"},{"description":"SLE-Module-Public-Cloud15-SP4-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Public-Cloud15-SP4-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP4/x86_64/product/","distro_target":"sle-15-x86_64","autorefresh":false,"id":5279,"enabled":true},{"enabled":false,"id":5280,"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP4/x86_64/product_debug/","installer_updates":false,"name":"SLE-Module-Public-Cloud15-SP4-Debuginfo-Pool","description":"SLE-Module-Public-Cloud15-SP4-Debuginfo-Pool for sle-15-x86_64"},{"id":5281,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP4/x86_64/product_source/","autorefresh":false,"distro_target":"sle-15-x86_64","name":"SLE-Module-Public-Cloud15-SP4-Source-Pool","installer_updates":false,"description":"SLE-Module-Public-Cloud15-SP4-Source-Pool for sle-15-x86_64"}],"product_class":"MODULE","product_type":"module","cpe":"cpe:/o:suse:sle-module-public-cloud:15:sp4","recommended":false,"version":"15.4","offline_predecessor_ids":[1220],"name":"Public Cloud Module","release_type":null,"former_identifier":"sle-module-public-cloud","friendly_name":"Public Cloud Module 15 SP4 x86_64","migration_extra":false,"friendly_version":"15 SP4","extensions":[],"identifier":"sle-module-public-cloud","release_stage":"released","id":2327},{"arch":"x86_64","eula_url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP4/x86_64/product.license/","free":false,"shortname":"SLEHA15-SP4","description":"SUSE Linux High Availability Extension provides mature, industry-leading open-source high-availability clustering technologies that are easy to set up and use. It can be deployed in physical and/or virtual environments, and can cluster physical servers, virtual servers, or any combination of the two to suit your business’ needs.","product_type":"extension","cpe":"cpe:/o:suse:sle-ha:15:sp4","product_class":"SLE-HAE-X86","online_predecessor_ids":[1582,1785,1959,2195],"repositories":[{"description":"SLE-Product-HA15-SP4-Updates for sle-15-x86_64","installer_updates":false,"name":"SLE-Product-HA15-SP4-Updates","url":"https://updates.suse.com/SUSE/Updates/SLE-Product-HA/15-SP4/x86_64/update/","distro_target":"sle-15-x86_64","autorefresh":true,"id":5342,"enabled":true},{"description":"SLE-Product-HA15-SP4-Debuginfo-Updates for sle-15-x86_64","name":"SLE-Product-HA15-SP4-Debuginfo-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Product-HA/15-SP4/x86_64/update_debug/","enabled":false,"id":5343},{"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP4/x86_64/product/","enabled":true,"id":5344,"description":"SLE-Product-HA15-SP4-Pool for sle-15-x86_64","name":"SLE-Product-HA15-SP4-Pool","installer_updates":false},{"description":"SLE-Product-HA15-SP4-Debuginfo-Pool for sle-15-x86_64","name":"SLE-Product-HA15-SP4-Debuginfo-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP4/x86_64/product_debug/","enabled":false,"id":5345},{"name":"SLE-Product-HA15-SP4-Source-Pool","installer_updates":false,"description":"SLE-Product-HA15-SP4-Source-Pool for sle-15-x86_64","enabled":false,"id":5346,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP4/x86_64/product_source/"}],"predecessor_ids":[1582,1785,1959,2195],"former_identifier":"sle-ha","release_type":null,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise High Availability Extension 15 SP4 x86_64","offline_predecessor_ids":[958,961,967,971,1101,1107,1256,1286,1432,1435,1634,1637,1884,1886],"name":"SUSE Linux Enterprise High Availability Extension","version":"15.4","recommended":false,"id":2340,"release_stage":"released","identifier":"sle-ha","extensions":[],"friendly_version":"15 SP4"}],"friendly_version":"15 SP4","friendly_name":"Server Applications Module 15 SP4 x86_64","migration_extra":false,"release_type":null,"former_identifier":"sle-module-server-applications","name":"Server Applications Module","offline_predecessor_ids":[],"version":"15.4","recommended":true},{"free":true,"description":"

This Module contains several packages revolving around containers and related tools.

","shortname":"Containers-Module","arch":"x86_64","eula_url":"","product_class":"MODULE","online_predecessor_ids":[1642,1790,1963,2157],"repositories":[{"id":5197,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/15-SP4/x86_64/update/","autorefresh":true,"distro_target":"sle-15-x86_64","name":"SLE-Module-Containers15-SP4-Updates","installer_updates":false,"description":"SLE-Module-Containers15-SP4-Updates for sle-15-x86_64"},{"id":5198,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/15-SP4/x86_64/update_debug/","autorefresh":true,"distro_target":"sle-15-x86_64","name":"SLE-Module-Containers15-SP4-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-Containers15-SP4-Debuginfo-Updates for sle-15-x86_64"},{"description":"SLE-Module-Containers15-SP4-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Containers15-SP4-Pool","distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP4/x86_64/product/","enabled":true,"id":5199},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP4/x86_64/product_debug/","autorefresh":false,"distro_target":"sle-15-x86_64","id":5200,"enabled":false,"description":"SLE-Module-Containers15-SP4-Debuginfo-Pool for sle-15-x86_64","name":"SLE-Module-Containers15-SP4-Debuginfo-Pool","installer_updates":false},{"name":"SLE-Module-Containers15-SP4-Source-Pool","installer_updates":false,"description":"SLE-Module-Containers15-SP4-Source-Pool for sle-15-x86_64","id":5201,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP4/x86_64/product_source/","autorefresh":false,"distro_target":"sle-15-x86_64"}],"predecessor_ids":[1642,1790,1963,2157],"product_type":"module","cpe":"cpe:/o:suse:sle-module-containers:15:sp4","version":"15.4","recommended":false,"release_type":null,"former_identifier":"sle-module-containers","friendly_name":"Containers Module 15 SP4 x86_64","migration_extra":false,"offline_predecessor_ids":[1332],"name":"Containers Module","friendly_version":"15 SP4","release_stage":"released","id":2311,"identifier":"sle-module-containers","extensions":[]},{"predecessor_ids":[1743,1871,1950,2191],"repositories":[{"enabled":true,"id":5388,"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Backports/SLE-15-SP4_x86_64/standard/","installer_updates":false,"name":"SUSE-PackageHub-15-SP4-Backports-Pool","description":"SUSE-PackageHub-15-SP4-Backports-Pool for sle-15-x86_64"},{"description":"SUSE-PackageHub-15-SP4-Backports-Debuginfo for sle-15-x86_64","name":"SUSE-PackageHub-15-SP4-Backports-Debuginfo","installer_updates":false,"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Backports/SLE-15-SP4_x86_64/standard_debug/","enabled":false,"id":5389},{"id":5390,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP4/x86_64/update/","distro_target":"sle-15-x86_64","autorefresh":true,"installer_updates":false,"name":"SLE-Module-Packagehub-Subpackages15-SP4-Updates","description":"SLE-Module-Packagehub-Subpackages15-SP4-Updates for sle-15-x86_64"},{"name":"SLE-Module-Packagehub-Subpackages15-SP4-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-Packagehub-Subpackages15-SP4-Debuginfo-Updates for sle-15-x86_64","enabled":false,"id":5391,"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP4/x86_64/update_debug/"},{"name":"SUSE-PackageHub-15-SP4-Pool","installer_updates":false,"description":"SUSE-PackageHub-15-SP4-Pool for sle-15-x86_64","enabled":true,"id":5392,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Backports/SLE-15-SP4_x86_64/product/"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP4/x86_64/product/","distro_target":"sle-15-x86_64","autorefresh":false,"id":5393,"enabled":true,"description":"SLE-Module-Packagehub-Subpackages15-SP4-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Packagehub-Subpackages15-SP4-Pool"},{"installer_updates":false,"name":"SLE-Module-Packagehub-Subpackages15-SP4-Debuginfo-Pool","description":"SLE-Module-Packagehub-Subpackages15-SP4-Debuginfo-Pool for sle-15-x86_64","id":5394,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP4/x86_64/product_debug/","distro_target":"sle-15-x86_64","autorefresh":false},{"installer_updates":false,"name":"SLE-Module-Packagehub-Subpackages15-SP4-Source-Pool","description":"SLE-Module-Packagehub-Subpackages15-SP4-Source-Pool for sle-15-x86_64","enabled":false,"id":5395,"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP4/x86_64/product_source/"}],"online_predecessor_ids":[1743,1871,1950,2191],"product_class":"MODULE","product_type":"module","cpe":"cpe:/o:suse:packagehub:15:sp4","free":true,"description":"SUSE Package Hub is a free of charge module providing access to community maintained packages built to run on SUSE Linux Enterprise Server. Built from the same sources used in the openSUSE distributions, these quality packages provide additional software to what is found in the SUSE Linux Enterprise Server product. Packages from the Package Hub are delivered without L3 support from SUSE. General updates and fixes to the packages in SUSE Package Hub are provided by the openSUSE community based on their discretion, though SUSE will monitor and ensure that any known critical security issues will be addressed. Packages in the Package Hub are approved by SUSE for use with SUSE Linux Enterprise Server 15-SP4 and to not interfere with the supportability of SUSE Linux Enterprise Server, its modules and extensions. For more information about SUSE Package Hub please visit https://packagehub.suse.com.","shortname":"SUSE-PackageHub-15","eula_url":"","arch":"x86_64","friendly_version":"15 SP4","extensions":[],"release_stage":"released","identifier":"PackageHub","id":2347,"recommended":false,"version":"15.4","offline_predecessor_ids":[1529,1813,1915],"name":"SUSE Package Hub","release_type":null,"former_identifier":"PackageHub","migration_extra":false,"friendly_name":"SUSE Package Hub 15 SP4 x86_64"},{"predecessor_ids":[],"online_predecessor_ids":[],"repositories":[{"id":5582,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Python3/15-SP4/x86_64/update/","distro_target":"sle-15-x86_64","autorefresh":true,"installer_updates":false,"name":"SLE-Module-Python3-15-SP4-Updates","description":"SLE-Module-Python3-15-SP4-Updates for sle-15-x86_64"},{"name":"SLE-Module-Python3-15-SP4-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-Python3-15-SP4-Debuginfo-Updates for sle-15-x86_64","id":5583,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Python3/15-SP4/x86_64/update_debug/","autorefresh":true,"distro_target":"sle-15-x86_64"},{"name":"SLE-Module-Python3-15-SP4-Pool","installer_updates":false,"description":"SLE-Module-Python3-15-SP4-Pool for sle-15-x86_64","enabled":true,"id":5584,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Python3/15-SP4/x86_64/product/"},{"installer_updates":false,"name":"SLE-Module-Python3-15-SP4-Debuginfo-Pool","description":"SLE-Module-Python3-15-SP4-Debuginfo-Pool for sle-15-x86_64","id":5585,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Python3/15-SP4/x86_64/product_debug/","distro_target":"sle-15-x86_64","autorefresh":false},{"installer_updates":false,"name":"SLE-Module-Python3-15-SP4-Source-Pool","description":"SLE-Module-Python3-15-SP4-Source-Pool for sle-15-x86_64","id":5586,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Python3/15-SP4/x86_64/product_source/","distro_target":"sle-15-x86_64","autorefresh":false}],"product_class":"MODULE","product_type":"module","cpe":"cpe:/o:suse:sle-module-python3:15:sp4","free":true,"description":"

This module contains the Python 3 packages.

Access to the Python 3 Module is included in your SUSE Linux Enterprise subscription. The module has a different lifecycle than SUSE Linux Enterprise itself; please check the Release Notes for further details.

","shortname":"Python 3-Module","eula_url":"","arch":"x86_64","friendly_version":"15 SP4","extensions":[],"release_stage":"released","identifier":"sle-module-python3","id":2405,"recommended":false,"version":"15.4","offline_predecessor_ids":[],"name":"Python 3 Module","former_identifier":"sle-module-python3","release_type":null,"migration_extra":false,"friendly_name":"Python 3 Module 15 SP4 x86_64"}],"friendly_version":"15 SP4","release_type":null,"former_identifier":"sle-module-basesystem","migration_extra":false,"friendly_name":"Basesystem Module 15 SP4 x86_64","offline_predecessor_ids":[1212,1368,1440],"name":"Basesystem Module","version":"15.4","recommended":true,"product_type":"module","cpe":"cpe:/o:suse:sle-module-basesystem:15:sp4","online_predecessor_ids":[1576,1772,1946,2145],"product_class":"MODULE","repositories":[{"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15-SP4/x86_64/update/","enabled":true,"id":5137,"description":"SLE-Module-Basesystem15-SP4-Updates for sle-15-x86_64","name":"SLE-Module-Basesystem15-SP4-Updates","installer_updates":false},{"installer_updates":false,"name":"SLE-Module-Basesystem15-SP4-Debuginfo-Updates","description":"SLE-Module-Basesystem15-SP4-Debuginfo-Updates for sle-15-x86_64","id":5138,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15-SP4/x86_64/update_debug/","distro_target":"sle-15-x86_64","autorefresh":true},{"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP4/x86_64/product/","enabled":true,"id":5139,"description":"SLE-Module-Basesystem15-SP4-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Basesystem15-SP4-Pool"},{"description":"SLE-Module-Basesystem15-SP4-Debuginfo-Pool for sle-15-x86_64","name":"SLE-Module-Basesystem15-SP4-Debuginfo-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP4/x86_64/product_debug/","autorefresh":false,"distro_target":"sle-15-x86_64","id":5140,"enabled":false},{"installer_updates":false,"name":"SLE-Module-Basesystem15-SP4-Source-Pool","description":"SLE-Module-Basesystem15-SP4-Source-Pool for sle-15-x86_64","enabled":false,"id":5141,"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP4/x86_64/product_source/"}],"predecessor_ids":[1576,1772,1946,2145],"arch":"x86_64","eula_url":"","free":true,"shortname":"Basesystem-Module","description":"

The SUSE Linux Enterprise Basesystem Module delivers the base system of the product.

"}],"friendly_version":"4.3","arch":"x86_64","eula_url":"https://updates.suse.com/SUSE/Products/SLE-Product-SUSE-Manager-Server/4.3/x86_64/product.license/","free":false,"description":"SUSE Manager lets you efficiently manage physical, virtual, and cloud-based Linux systems. It provides automated and cost-effective configuration and software management, asset management, and system provisioning.","shortname":"SUSE Manager Server 4.3","product_type":"base","cpe":"cpe:/o:suse:suse-manager-server:4.3","online_predecessor_ids":[2012,2222],"repositories":[{"distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-SUSE-Manager-Server/4.3/x86_64/update/","enabled":true,"id":5470,"description":"SLE-Product-SUSE-Manager-Server-4.3-Updates for sle-15-x86_64","installer_updates":false,"name":"SLE-Product-SUSE-Manager-Server-4.3-Updates"},{"id":5471,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-SUSE-Manager-Server/4.3/x86_64/update_debug/","distro_target":"sle-15-x86_64","autorefresh":true,"installer_updates":false,"name":"SLE-Product-SUSE-Manager-Server-4.3-Debuginfo-Updates","description":"SLE-Product-SUSE-Manager-Server-4.3-Debuginfo-Updates for sle-15-x86_64"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Product-SUSE-Manager-Server/4.3/x86_64/product/","distro_target":"sle-15-x86_64","autorefresh":false,"id":5472,"enabled":true,"description":"SLE-Product-SUSE-Manager-Server-4.3-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Product-SUSE-Manager-Server-4.3-Pool"},{"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-SUSE-Manager-Server/4.3/x86_64/product_debug/","enabled":false,"id":5473,"description":"SLE-Product-SUSE-Manager-Server-4.3-Debuginfo-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Product-SUSE-Manager-Server-4.3-Debuginfo-Pool"},{"id":5474,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-SUSE-Manager-Server/4.3/x86_64/product_source/","autorefresh":false,"distro_target":"sle-15-x86_64","name":"SLE-Product-SUSE-Manager-Server-4.3-Source-Pool","installer_updates":false,"description":"SLE-Product-SUSE-Manager-Server-4.3-Source-Pool for sle-15-x86_64"}],"product_class":"SMS-X86","predecessor_ids":[2012,2222]},{"friendly_version":"4.3","id":2379,"release_stage":"released","identifier":"SUSE-Manager-Proxy","extensions":[{"predecessor_ids":[1576,1772,1946,2145],"product_class":"MODULE","online_predecessor_ids":[1576,1772,1946,2145],"repositories":[{"id":5137,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15-SP4/x86_64/update/","autorefresh":true,"distro_target":"sle-15-x86_64","name":"SLE-Module-Basesystem15-SP4-Updates","installer_updates":false,"description":"SLE-Module-Basesystem15-SP4-Updates for sle-15-x86_64"},{"distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15-SP4/x86_64/update_debug/","enabled":false,"id":5138,"description":"SLE-Module-Basesystem15-SP4-Debuginfo-Updates for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Basesystem15-SP4-Debuginfo-Updates"},{"description":"SLE-Module-Basesystem15-SP4-Pool for sle-15-x86_64","name":"SLE-Module-Basesystem15-SP4-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP4/x86_64/product/","autorefresh":false,"distro_target":"sle-15-x86_64","id":5139,"enabled":true},{"name":"SLE-Module-Basesystem15-SP4-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-Basesystem15-SP4-Debuginfo-Pool for sle-15-x86_64","id":5140,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP4/x86_64/product_debug/","autorefresh":false,"distro_target":"sle-15-x86_64"},{"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP4/x86_64/product_source/","enabled":false,"id":5141,"description":"SLE-Module-Basesystem15-SP4-Source-Pool for sle-15-x86_64","name":"SLE-Module-Basesystem15-SP4-Source-Pool","installer_updates":false}],"cpe":"cpe:/o:suse:sle-module-basesystem:15:sp4","product_type":"module","shortname":"Basesystem-Module","description":"

The SUSE Linux Enterprise Basesystem Module delivers the base system of the product.

","free":true,"eula_url":"","arch":"x86_64","friendly_version":"15 SP4","extensions":[{"friendly_version":"15 SP4","extensions":[{"arch":"x86_64","eula_url":"","free":true,"description":"

The Development Tools Module helps you developing applications for SUSE Linux Enterprise 15.

Access to the Development Tools Module is included in your SUSE Linux Enterprise product subscription. The module has a different lifecycle than SUSE Linux Enterprise itself.

","shortname":"Development-Tools-Module","product_type":"module","cpe":"cpe:/o:suse:sle-module-development-tools:15:sp4","online_predecessor_ids":[1579,1794,1971,2161],"product_class":"MODULE","repositories":[{"name":"SLE-Module-DevTools15-SP4-Updates","installer_updates":false,"description":"SLE-Module-DevTools15-SP4-Updates for sle-15-x86_64","id":5217,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15-SP4/x86_64/update/","autorefresh":true,"distro_target":"sle-15-x86_64"},{"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15-SP4/x86_64/update_debug/","enabled":false,"id":5218,"description":"SLE-Module-DevTools15-SP4-Debuginfo-Updates for sle-15-x86_64","name":"SLE-Module-DevTools15-SP4-Debuginfo-Updates","installer_updates":false},{"installer_updates":false,"name":"SLE-Module-DevTools15-SP4-Pool","description":"SLE-Module-DevTools15-SP4-Pool for sle-15-x86_64","id":5219,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP4/x86_64/product/","distro_target":"sle-15-x86_64","autorefresh":false},{"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP4/x86_64/product_debug/","enabled":false,"id":5220,"description":"SLE-Module-DevTools15-SP4-Debuginfo-Pool for sle-15-x86_64","name":"SLE-Module-DevTools15-SP4-Debuginfo-Pool","installer_updates":false},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP4/x86_64/product_source/","distro_target":"sle-15-x86_64","autorefresh":false,"id":5221,"enabled":false,"description":"SLE-Module-DevTools15-SP4-Source-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-DevTools15-SP4-Source-Pool"}],"predecessor_ids":[1579,1794,1971,2161],"release_type":null,"former_identifier":"sle-sdk","migration_extra":false,"friendly_name":"Development Tools Module 15 SP4 x86_64","offline_predecessor_ids":[1341,1427,1630,1892],"name":"Development Tools Module","version":"15.4","recommended":false,"identifier":"sle-module-development-tools","release_stage":"released","id":2315,"extensions":[],"friendly_version":"15 SP4"}],"release_stage":"released","id":2303,"identifier":"sle-module-desktop-applications","recommended":false,"version":"15.4","offline_predecessor_ids":[],"name":"Desktop Applications Module","release_type":null,"former_identifier":"sle-module-desktop-applications","friendly_name":"Desktop Applications Module 15 SP4 x86_64","migration_extra":false,"predecessor_ids":[1578,1776,1967,2149],"online_predecessor_ids":[1578,1776,1967,2149],"product_class":"MODULE","repositories":[{"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15-SP4/x86_64/update/","enabled":true,"id":5157,"description":"SLE-Module-Desktop-Applications15-SP4-Updates for sle-15-x86_64","name":"SLE-Module-Desktop-Applications15-SP4-Updates","installer_updates":false},{"description":"SLE-Module-Desktop-Applications15-SP4-Debuginfo-Updates for sle-15-x86_64","name":"SLE-Module-Desktop-Applications15-SP4-Debuginfo-Updates","installer_updates":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15-SP4/x86_64/update_debug/","autorefresh":true,"distro_target":"sle-15-x86_64","id":5158,"enabled":false},{"description":"SLE-Module-Desktop-Applications15-SP4-Pool for sle-15-x86_64","name":"SLE-Module-Desktop-Applications15-SP4-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP4/x86_64/product/","enabled":true,"id":5159},{"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP4/x86_64/product_debug/","enabled":false,"id":5160,"description":"SLE-Module-Desktop-Applications15-SP4-Debuginfo-Pool for sle-15-x86_64","name":"SLE-Module-Desktop-Applications15-SP4-Debuginfo-Pool","installer_updates":false},{"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP4/x86_64/product_source/","enabled":false,"id":5161,"description":"SLE-Module-Desktop-Applications15-SP4-Source-Pool for sle-15-x86_64","name":"SLE-Module-Desktop-Applications15-SP4-Source-Pool","installer_updates":false}],"product_type":"module","cpe":"cpe:/o:suse:sle-module-desktop-applications:15:sp4","free":true,"shortname":"Desktop-Applications-Module","description":"

The SUSE Linux Enterprise Desktop Applications Module delivers a basic set of Desktop functionality.

Access to the Desktop Applications Module is included in your SUSE Linux Enterprise product subscription.

","eula_url":"","arch":"x86_64"},{"online_predecessor_ids":[1580,1780,1955,2153],"repositories":[{"name":"SLE-Module-Server-Applications15-SP4-Updates","installer_updates":false,"description":"SLE-Module-Server-Applications15-SP4-Updates for sle-15-x86_64","id":5177,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15-SP4/x86_64/update/","autorefresh":true,"distro_target":"sle-15-x86_64"},{"distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15-SP4/x86_64/update_debug/","enabled":false,"id":5178,"description":"SLE-Module-Server-Applications15-SP4-Debuginfo-Updates for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Server-Applications15-SP4-Debuginfo-Updates"},{"description":"SLE-Module-Server-Applications15-SP4-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Server-Applications15-SP4-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP4/x86_64/product/","distro_target":"sle-15-x86_64","autorefresh":false,"id":5179,"enabled":true},{"installer_updates":false,"name":"SLE-Module-Server-Applications15-SP4-Debuginfo-Pool","description":"SLE-Module-Server-Applications15-SP4-Debuginfo-Pool for sle-15-x86_64","enabled":false,"id":5180,"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP4/x86_64/product_debug/"},{"name":"SLE-Module-Server-Applications15-SP4-Source-Pool","installer_updates":false,"description":"SLE-Module-Server-Applications15-SP4-Source-Pool for sle-15-x86_64","enabled":false,"id":5181,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP4/x86_64/product_source/"}],"product_class":"MODULE","predecessor_ids":[1580,1780,1955,2153],"product_type":"module","cpe":"cpe:/o:suse:sle-module-server-applications:15:sp4","free":true,"shortname":"Server-Applications-Module","description":"

The SUSE Linux Enterprise Server Applications Module delivers a basic set of Server functionality.

Access to the Server Applications Module is included in your SUSE Linux Enterprise Server subscription.

","arch":"x86_64","eula_url":"","friendly_version":"15 SP4","id":2307,"release_stage":"released","identifier":"sle-module-server-applications","extensions":[{"version":"15.4","recommended":false,"migration_extra":false,"friendly_name":"Web and Scripting Module 15 SP4 x86_64","former_identifier":"sle-module-web-scripting","release_type":null,"name":"Web and Scripting Module","offline_predecessor_ids":[1153],"friendly_version":"15 SP4","identifier":"sle-module-web-scripting","release_stage":"released","id":2319,"extensions":[],"description":"

The SUSE Linux Enterprise Web and Scripting Module should contains additional packages that are helpful when running a webserver.

Access to the Web and Scripting Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself: Package versions in this module are usually supported for at most three years. We are planning to release more recent versions on a schedule of approximately 18 month; the exact dates may differ per package.

","shortname":"Web-Scripting-Module","free":true,"arch":"x86_64","eula_url":"","online_predecessor_ids":[1721,1798,1976,2165],"product_class":"MODULE","repositories":[{"enabled":true,"id":5237,"distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/15-SP4/x86_64/update/","installer_updates":false,"name":"SLE-Module-Web-Scripting15-SP4-Updates","description":"SLE-Module-Web-Scripting15-SP4-Updates for sle-15-x86_64"},{"name":"SLE-Module-Web-Scripting15-SP4-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-Web-Scripting15-SP4-Debuginfo-Updates for sle-15-x86_64","enabled":false,"id":5238,"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/15-SP4/x86_64/update_debug/"},{"name":"SLE-Module-Web-Scripting15-SP4-Pool","installer_updates":false,"description":"SLE-Module-Web-Scripting15-SP4-Pool for sle-15-x86_64","enabled":true,"id":5239,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP4/x86_64/product/"},{"name":"SLE-Module-Web-Scripting15-SP4-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-Web-Scripting15-SP4-Debuginfo-Pool for sle-15-x86_64","id":5240,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP4/x86_64/product_debug/","autorefresh":false,"distro_target":"sle-15-x86_64"},{"installer_updates":false,"name":"SLE-Module-Web-Scripting15-SP4-Source-Pool","description":"SLE-Module-Web-Scripting15-SP4-Source-Pool for sle-15-x86_64","enabled":false,"id":5241,"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP4/x86_64/product_source/"}],"predecessor_ids":[1721,1798,1976,2165],"cpe":"cpe:/o:suse:sle-module-web-scripting:15:sp4","product_type":"module"},{"friendly_version":"15 SP4","id":2323,"release_stage":"released","identifier":"sle-module-legacy","extensions":[],"version":"15.4","recommended":false,"migration_extra":false,"friendly_name":"Legacy Module 15 SP4 x86_64","release_type":null,"former_identifier":"sle-module-legacy","name":"Legacy Module","offline_predecessor_ids":[1150],"online_predecessor_ids":[1581,1804,1982,2171],"product_class":"MODULE","repositories":[{"name":"SLE-Module-Legacy15-SP4-Updates","installer_updates":false,"description":"SLE-Module-Legacy15-SP4-Updates for sle-15-x86_64","id":5257,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/15-SP4/x86_64/update/","autorefresh":true,"distro_target":"sle-15-x86_64"},{"description":"SLE-Module-Legacy15-SP4-Debuginfo-Updates for sle-15-x86_64","name":"SLE-Module-Legacy15-SP4-Debuginfo-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/15-SP4/x86_64/update_debug/","enabled":false,"id":5258},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15-SP4/x86_64/product/","autorefresh":false,"distro_target":"sle-15-x86_64","id":5259,"enabled":true,"description":"SLE-Module-Legacy15-SP4-Pool for sle-15-x86_64","name":"SLE-Module-Legacy15-SP4-Pool","installer_updates":false},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15-SP4/x86_64/product_debug/","distro_target":"sle-15-x86_64","autorefresh":false,"id":5260,"enabled":false,"description":"SLE-Module-Legacy15-SP4-Debuginfo-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Legacy15-SP4-Debuginfo-Pool"},{"description":"SLE-Module-Legacy15-SP4-Source-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Legacy15-SP4-Source-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15-SP4/x86_64/product_source/","distro_target":"sle-15-x86_64","autorefresh":false,"id":5261,"enabled":false}],"predecessor_ids":[1581,1804,1982,2171],"cpe":"cpe:/o:suse:sle-module-legacy:15:sp4","product_type":"module","description":"

The Legacy Module helps you migrating applications from SUSE Linux Enterprise 12 and other systems to SUSE Linux Enterprise 15, by providing packages which are discontinued on SUSE Linux Enterprise Server, such as: ntp, IBM Java 8, and a number of libraries.

Access to the Legacy Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself. Packages in the this module are usually supported for at most three years.

","shortname":"Legacy-Module","free":true,"arch":"x86_64","eula_url":""},{"product_type":"module","cpe":"cpe:/o:suse:sle-module-public-cloud:15:sp4","online_predecessor_ids":[1611,1808,1988,2175],"product_class":"MODULE","repositories":[{"installer_updates":false,"name":"SLE-Module-Public-Cloud15-SP4-Updates","description":"SLE-Module-Public-Cloud15-SP4-Updates for sle-15-x86_64","enabled":true,"id":5277,"distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/15-SP4/x86_64/update/"},{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/15-SP4/x86_64/update_debug/","autorefresh":true,"distro_target":"sle-15-x86_64","id":5278,"enabled":false,"description":"SLE-Module-Public-Cloud15-SP4-Debuginfo-Updates for sle-15-x86_64","name":"SLE-Module-Public-Cloud15-SP4-Debuginfo-Updates","installer_updates":false},{"description":"SLE-Module-Public-Cloud15-SP4-Pool for sle-15-x86_64","name":"SLE-Module-Public-Cloud15-SP4-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP4/x86_64/product/","autorefresh":false,"distro_target":"sle-15-x86_64","id":5279,"enabled":true},{"installer_updates":false,"name":"SLE-Module-Public-Cloud15-SP4-Debuginfo-Pool","description":"SLE-Module-Public-Cloud15-SP4-Debuginfo-Pool for sle-15-x86_64","enabled":false,"id":5280,"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP4/x86_64/product_debug/"},{"id":5281,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP4/x86_64/product_source/","distro_target":"sle-15-x86_64","autorefresh":false,"installer_updates":false,"name":"SLE-Module-Public-Cloud15-SP4-Source-Pool","description":"SLE-Module-Public-Cloud15-SP4-Source-Pool for sle-15-x86_64"}],"predecessor_ids":[1611,1808,1988,2175],"arch":"x86_64","eula_url":"","free":true,"description":"

The Public Cloud Module is a collection of tools that enables you to create and manage cloud images from the commandline on SUSE Linux Enterprise Server. When building your own images with KIWI or SUSE Studio, initialization code specific to the target cloud is included in that image.

Access to the Public Cloud Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself; please check the Release Notes for further details.

","shortname":"Public-Cloud-Module","release_stage":"released","identifier":"sle-module-public-cloud","id":2327,"extensions":[],"friendly_version":"15 SP4","former_identifier":"sle-module-public-cloud","release_type":null,"migration_extra":false,"friendly_name":"Public Cloud Module 15 SP4 x86_64","offline_predecessor_ids":[1220],"name":"Public Cloud Module","version":"15.4","recommended":false},{"eula_url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP4/x86_64/product.license/","arch":"x86_64","description":"SUSE Linux High Availability Extension provides mature, industry-leading open-source high-availability clustering technologies that are easy to set up and use. It can be deployed in physical and/or virtual environments, and can cluster physical servers, virtual servers, or any combination of the two to suit your business’ needs.","shortname":"SLEHA15-SP4","free":false,"cpe":"cpe:/o:suse:sle-ha:15:sp4","product_type":"extension","predecessor_ids":[1582,1785,1959,2195],"online_predecessor_ids":[1582,1785,1959,2195],"repositories":[{"name":"SLE-Product-HA15-SP4-Updates","installer_updates":false,"description":"SLE-Product-HA15-SP4-Updates for sle-15-x86_64","enabled":true,"id":5342,"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Product-HA/15-SP4/x86_64/update/"},{"id":5343,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-HA/15-SP4/x86_64/update_debug/","distro_target":"sle-15-x86_64","autorefresh":true,"installer_updates":false,"name":"SLE-Product-HA15-SP4-Debuginfo-Updates","description":"SLE-Product-HA15-SP4-Debuginfo-Updates for sle-15-x86_64"},{"description":"SLE-Product-HA15-SP4-Pool for sle-15-x86_64","name":"SLE-Product-HA15-SP4-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP4/x86_64/product/","enabled":true,"id":5344},{"enabled":false,"id":5345,"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP4/x86_64/product_debug/","installer_updates":false,"name":"SLE-Product-HA15-SP4-Debuginfo-Pool","description":"SLE-Product-HA15-SP4-Debuginfo-Pool for sle-15-x86_64"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP4/x86_64/product_source/","autorefresh":false,"distro_target":"sle-15-x86_64","id":5346,"enabled":false,"description":"SLE-Product-HA15-SP4-Source-Pool for sle-15-x86_64","name":"SLE-Product-HA15-SP4-Source-Pool","installer_updates":false}],"product_class":"SLE-HAE-X86","name":"SUSE Linux Enterprise High Availability Extension","offline_predecessor_ids":[958,961,967,971,1101,1107,1256,1286,1432,1435,1634,1637,1884,1886],"migration_extra":false,"friendly_name":"SUSE Linux Enterprise High Availability Extension 15 SP4 x86_64","former_identifier":"sle-ha","release_type":null,"recommended":false,"version":"15.4","extensions":[],"id":2340,"release_stage":"released","identifier":"sle-ha","friendly_version":"15 SP4"},{"cpe":"cpe:/o:suse:sle-module-suse-manager-proxy:4.3","product_type":"module","predecessor_ids":[2015,2225],"product_class":"MODULE","online_predecessor_ids":[2015,2225],"repositories":[{"distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-SUSE-Manager-Proxy/4.3/x86_64/update/","enabled":true,"id":5500,"description":"SLE-Module-SUSE-Manager-Proxy-4.3-Updates for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-SUSE-Manager-Proxy-4.3-Updates"},{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-SUSE-Manager-Proxy/4.3/x86_64/update_debug/","distro_target":"sle-15-x86_64","autorefresh":true,"id":5501,"enabled":false,"description":"SLE-Module-SUSE-Manager-Proxy-4.3-Debuginfo-Updates for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-SUSE-Manager-Proxy-4.3-Debuginfo-Updates"},{"name":"SLE-Module-SUSE-Manager-Proxy-4.3-Pool","installer_updates":false,"description":"SLE-Module-SUSE-Manager-Proxy-4.3-Pool for sle-15-x86_64","id":5502,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-SUSE-Manager-Proxy/4.3/x86_64/product/","autorefresh":false,"distro_target":"sle-15-x86_64"},{"description":"SLE-Module-SUSE-Manager-Proxy-4.3-Debuginfo-Pool for sle-15-x86_64","name":"SLE-Module-SUSE-Manager-Proxy-4.3-Debuginfo-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-SUSE-Manager-Proxy/4.3/x86_64/product_debug/","enabled":false,"id":5503},{"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-SUSE-Manager-Proxy/4.3/x86_64/product_source/","enabled":false,"id":5504,"description":"SLE-Module-SUSE-Manager-Proxy-4.3-Source-Pool for sle-15-x86_64","name":"SLE-Module-SUSE-Manager-Proxy-4.3-Source-Pool","installer_updates":false}],"eula_url":"","arch":"x86_64","description":"SUSE Manager Proxies extend large and/or geographically dispersed SUSE Manager environments to reduce load on the SUSE Manager Server, lower bandwidth needs, and provide faster local updates.","shortname":"SUSE Manager Proxy 4.3 Module","free":true,"extensions":[],"id":2384,"release_stage":"released","identifier":"sle-module-suse-manager-proxy","friendly_version":"4.3","name":"SUSE Manager Proxy Module","offline_predecessor_ids":[],"friendly_name":"SUSE Manager Proxy Module 4.3 x86_64","migration_extra":false,"release_type":null,"former_identifier":"sle-module-suse-manager-proxy","recommended":true,"version":"4.3"}],"version":"15.4","recommended":true,"release_type":null,"former_identifier":"sle-module-server-applications","friendly_name":"Server Applications Module 15 SP4 x86_64","migration_extra":false,"offline_predecessor_ids":[],"name":"Server Applications Module"},{"friendly_version":"15 SP4","identifier":"sle-module-containers","release_stage":"released","id":2311,"extensions":[],"version":"15.4","recommended":false,"release_type":null,"former_identifier":"sle-module-containers","friendly_name":"Containers Module 15 SP4 x86_64","migration_extra":false,"offline_predecessor_ids":[1332],"name":"Containers Module","online_predecessor_ids":[1642,1790,1963,2157],"product_class":"MODULE","repositories":[{"name":"SLE-Module-Containers15-SP4-Updates","installer_updates":false,"description":"SLE-Module-Containers15-SP4-Updates for sle-15-x86_64","enabled":true,"id":5197,"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/15-SP4/x86_64/update/"},{"description":"SLE-Module-Containers15-SP4-Debuginfo-Updates for sle-15-x86_64","name":"SLE-Module-Containers15-SP4-Debuginfo-Updates","installer_updates":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/15-SP4/x86_64/update_debug/","autorefresh":true,"distro_target":"sle-15-x86_64","id":5198,"enabled":false},{"description":"SLE-Module-Containers15-SP4-Pool for sle-15-x86_64","name":"SLE-Module-Containers15-SP4-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP4/x86_64/product/","enabled":true,"id":5199},{"id":5200,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP4/x86_64/product_debug/","distro_target":"sle-15-x86_64","autorefresh":false,"installer_updates":false,"name":"SLE-Module-Containers15-SP4-Debuginfo-Pool","description":"SLE-Module-Containers15-SP4-Debuginfo-Pool for sle-15-x86_64"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP4/x86_64/product_source/","autorefresh":false,"distro_target":"sle-15-x86_64","id":5201,"enabled":false,"description":"SLE-Module-Containers15-SP4-Source-Pool for sle-15-x86_64","name":"SLE-Module-Containers15-SP4-Source-Pool","installer_updates":false}],"predecessor_ids":[1642,1790,1963,2157],"product_type":"module","cpe":"cpe:/o:suse:sle-module-containers:15:sp4","free":true,"description":"

This Module contains several packages revolving around containers and related tools.

","shortname":"Containers-Module","arch":"x86_64","eula_url":""},{"friendly_name":"SUSE Package Hub 15 SP4 x86_64","migration_extra":false,"former_identifier":"PackageHub","release_type":null,"name":"SUSE Package Hub","offline_predecessor_ids":[1529,1813,1915],"version":"15.4","recommended":false,"id":2347,"release_stage":"released","identifier":"PackageHub","extensions":[],"friendly_version":"15 SP4","arch":"x86_64","eula_url":"","shortname":"SUSE-PackageHub-15","description":"SUSE Package Hub is a free of charge module providing access to community maintained packages built to run on SUSE Linux Enterprise Server. Built from the same sources used in the openSUSE distributions, these quality packages provide additional software to what is found in the SUSE Linux Enterprise Server product. Packages from the Package Hub are delivered without L3 support from SUSE. General updates and fixes to the packages in SUSE Package Hub are provided by the openSUSE community based on their discretion, though SUSE will monitor and ensure that any known critical security issues will be addressed. Packages in the Package Hub are approved by SUSE for use with SUSE Linux Enterprise Server 15-SP4 and to not interfere with the supportability of SUSE Linux Enterprise Server, its modules and extensions. For more information about SUSE Package Hub please visit https://packagehub.suse.com.","free":true,"cpe":"cpe:/o:suse:packagehub:15:sp4","product_type":"module","online_predecessor_ids":[1743,1871,1950,2191],"product_class":"MODULE","repositories":[{"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Backports/SLE-15-SP4_x86_64/standard/","enabled":true,"id":5388,"description":"SUSE-PackageHub-15-SP4-Backports-Pool for sle-15-x86_64","name":"SUSE-PackageHub-15-SP4-Backports-Pool","installer_updates":false},{"description":"SUSE-PackageHub-15-SP4-Backports-Debuginfo for sle-15-x86_64","installer_updates":false,"name":"SUSE-PackageHub-15-SP4-Backports-Debuginfo","distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Backports/SLE-15-SP4_x86_64/standard_debug/","enabled":false,"id":5389},{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP4/x86_64/update/","autorefresh":true,"distro_target":"sle-15-x86_64","id":5390,"enabled":true,"description":"SLE-Module-Packagehub-Subpackages15-SP4-Updates for sle-15-x86_64","name":"SLE-Module-Packagehub-Subpackages15-SP4-Updates","installer_updates":false},{"description":"SLE-Module-Packagehub-Subpackages15-SP4-Debuginfo-Updates for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Packagehub-Subpackages15-SP4-Debuginfo-Updates","distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP4/x86_64/update_debug/","enabled":false,"id":5391},{"description":"SUSE-PackageHub-15-SP4-Pool for sle-15-x86_64","installer_updates":false,"name":"SUSE-PackageHub-15-SP4-Pool","distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Backports/SLE-15-SP4_x86_64/product/","enabled":true,"id":5392},{"id":5393,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP4/x86_64/product/","autorefresh":false,"distro_target":"sle-15-x86_64","name":"SLE-Module-Packagehub-Subpackages15-SP4-Pool","installer_updates":false,"description":"SLE-Module-Packagehub-Subpackages15-SP4-Pool for sle-15-x86_64"},{"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP4/x86_64/product_debug/","enabled":false,"id":5394,"description":"SLE-Module-Packagehub-Subpackages15-SP4-Debuginfo-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Packagehub-Subpackages15-SP4-Debuginfo-Pool"},{"name":"SLE-Module-Packagehub-Subpackages15-SP4-Source-Pool","installer_updates":false,"description":"SLE-Module-Packagehub-Subpackages15-SP4-Source-Pool for sle-15-x86_64","enabled":false,"id":5395,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP4/x86_64/product_source/"}],"predecessor_ids":[1743,1871,1950,2191]},{"identifier":"sle-module-python3","release_stage":"released","id":2405,"extensions":[],"friendly_version":"15 SP4","friendly_name":"Python 3 Module 15 SP4 x86_64","migration_extra":false,"former_identifier":"sle-module-python3","release_type":null,"name":"Python 3 Module","offline_predecessor_ids":[],"version":"15.4","recommended":false,"cpe":"cpe:/o:suse:sle-module-python3:15:sp4","product_type":"module","online_predecessor_ids":[],"product_class":"MODULE","repositories":[{"name":"SLE-Module-Python3-15-SP4-Updates","installer_updates":false,"description":"SLE-Module-Python3-15-SP4-Updates for sle-15-x86_64","enabled":true,"id":5582,"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Python3/15-SP4/x86_64/update/"},{"id":5583,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Python3/15-SP4/x86_64/update_debug/","distro_target":"sle-15-x86_64","autorefresh":true,"installer_updates":false,"name":"SLE-Module-Python3-15-SP4-Debuginfo-Updates","description":"SLE-Module-Python3-15-SP4-Debuginfo-Updates for sle-15-x86_64"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Python3/15-SP4/x86_64/product/","distro_target":"sle-15-x86_64","autorefresh":false,"id":5584,"enabled":true,"description":"SLE-Module-Python3-15-SP4-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Python3-15-SP4-Pool"},{"description":"SLE-Module-Python3-15-SP4-Debuginfo-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Python3-15-SP4-Debuginfo-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Python3/15-SP4/x86_64/product_debug/","distro_target":"sle-15-x86_64","autorefresh":false,"id":5585,"enabled":false},{"description":"SLE-Module-Python3-15-SP4-Source-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Python3-15-SP4-Source-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Python3/15-SP4/x86_64/product_source/","distro_target":"sle-15-x86_64","autorefresh":false,"id":5586,"enabled":false}],"predecessor_ids":[],"arch":"x86_64","eula_url":"","description":"

This module contains the Python 3 packages.

Access to the Python 3 Module is included in your SUSE Linux Enterprise subscription. The module has a different lifecycle than SUSE Linux Enterprise itself; please check the Release Notes for further details.

","shortname":"Python 3-Module","free":true}],"id":2299,"release_stage":"released","identifier":"sle-module-basesystem","recommended":true,"version":"15.4","name":"Basesystem Module","offline_predecessor_ids":[1212,1368,1440],"migration_extra":false,"friendly_name":"Basesystem Module 15 SP4 x86_64","former_identifier":"sle-module-basesystem","release_type":null}],"version":"4.3","recommended":false,"migration_extra":false,"friendly_name":"SUSE Manager Proxy 4.3 x86_64","release_type":null,"former_identifier":"SUSE-Manager-Proxy","name":"SUSE Manager Proxy","offline_predecessor_ids":[],"repositories":[{"id":5475,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-SUSE-Manager-Proxy/4.3/x86_64/update/","autorefresh":true,"distro_target":"sle-15-x86_64","name":"SLE-Product-SUSE-Manager-Proxy-4.3-Updates","installer_updates":false,"description":"SLE-Product-SUSE-Manager-Proxy-4.3-Updates for sle-15-x86_64"},{"name":"SLE-Product-SUSE-Manager-Proxy-4.3-Debuginfo-Updates","installer_updates":false,"description":"SLE-Product-SUSE-Manager-Proxy-4.3-Debuginfo-Updates for sle-15-x86_64","id":5476,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-SUSE-Manager-Proxy/4.3/x86_64/update_debug/","autorefresh":true,"distro_target":"sle-15-x86_64"},{"description":"SLE-Product-SUSE-Manager-Proxy-4.3-Pool for sle-15-x86_64","name":"SLE-Product-SUSE-Manager-Proxy-4.3-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Product-SUSE-Manager-Proxy/4.3/x86_64/product/","enabled":true,"id":5477},{"name":"SLE-Product-SUSE-Manager-Proxy-4.3-Debuginfo-Pool","installer_updates":false,"description":"SLE-Product-SUSE-Manager-Proxy-4.3-Debuginfo-Pool for sle-15-x86_64","id":5478,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-SUSE-Manager-Proxy/4.3/x86_64/product_debug/","autorefresh":false,"distro_target":"sle-15-x86_64"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Product-SUSE-Manager-Proxy/4.3/x86_64/product_source/","distro_target":"sle-15-x86_64","autorefresh":false,"id":5479,"enabled":false,"description":"SLE-Product-SUSE-Manager-Proxy-4.3-Source-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Product-SUSE-Manager-Proxy-4.3-Source-Pool"}],"online_predecessor_ids":[2009,2223],"product_class":"SMP","predecessor_ids":[2009,2223],"cpe":"cpe:/o:suse:suse-manager-proxy:4.3","product_type":"base","shortname":"SUSE Manager Proxy 4.3","description":"SUSE Manager Proxies extend large and/or geographically dispersed SUSE Manager environments to reduce load on the SUSE Manager Server, lower bandwidth needs, and provide faster local updates.","free":false,"arch":"x86_64","eula_url":"https://updates.suse.com/SUSE/Products/SLE-Product-SUSE-Manager-Proxy/4.3/x86_64/product.license/"},{"identifier":"SUSE-Manager-Retail-Branch-Server","release_stage":"released","id":2380,"extensions":[{"release_stage":"released","identifier":"sle-module-basesystem","id":2299,"extensions":[{"friendly_version":"15 SP4","extensions":[{"predecessor_ids":[1579,1794,1971,2161],"repositories":[{"installer_updates":false,"name":"SLE-Module-DevTools15-SP4-Updates","description":"SLE-Module-DevTools15-SP4-Updates for sle-15-x86_64","id":5217,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15-SP4/x86_64/update/","distro_target":"sle-15-x86_64","autorefresh":true},{"installer_updates":false,"name":"SLE-Module-DevTools15-SP4-Debuginfo-Updates","description":"SLE-Module-DevTools15-SP4-Debuginfo-Updates for sle-15-x86_64","id":5218,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15-SP4/x86_64/update_debug/","distro_target":"sle-15-x86_64","autorefresh":true},{"id":5219,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP4/x86_64/product/","autorefresh":false,"distro_target":"sle-15-x86_64","name":"SLE-Module-DevTools15-SP4-Pool","installer_updates":false,"description":"SLE-Module-DevTools15-SP4-Pool for sle-15-x86_64"},{"enabled":false,"id":5220,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP4/x86_64/product_debug/","name":"SLE-Module-DevTools15-SP4-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-DevTools15-SP4-Debuginfo-Pool for sle-15-x86_64"},{"name":"SLE-Module-DevTools15-SP4-Source-Pool","installer_updates":false,"description":"SLE-Module-DevTools15-SP4-Source-Pool for sle-15-x86_64","id":5221,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP4/x86_64/product_source/","autorefresh":false,"distro_target":"sle-15-x86_64"}],"online_predecessor_ids":[1579,1794,1971,2161],"product_class":"MODULE","product_type":"module","cpe":"cpe:/o:suse:sle-module-development-tools:15:sp4","free":true,"description":"

The Development Tools Module helps you developing applications for SUSE Linux Enterprise 15.

Access to the Development Tools Module is included in your SUSE Linux Enterprise product subscription. The module has a different lifecycle than SUSE Linux Enterprise itself.

","shortname":"Development-Tools-Module","eula_url":"","arch":"x86_64","friendly_version":"15 SP4","extensions":[],"release_stage":"released","id":2315,"identifier":"sle-module-development-tools","recommended":false,"version":"15.4","offline_predecessor_ids":[1341,1427,1630,1892],"name":"Development Tools Module","former_identifier":"sle-sdk","release_type":null,"migration_extra":false,"friendly_name":"Development Tools Module 15 SP4 x86_64"}],"release_stage":"released","id":2303,"identifier":"sle-module-desktop-applications","recommended":false,"version":"15.4","name":"Desktop Applications Module","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"Desktop Applications Module 15 SP4 x86_64","former_identifier":"sle-module-desktop-applications","release_type":null,"predecessor_ids":[1578,1776,1967,2149],"online_predecessor_ids":[1578,1776,1967,2149],"repositories":[{"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15-SP4/x86_64/update/","enabled":true,"id":5157,"description":"SLE-Module-Desktop-Applications15-SP4-Updates for sle-15-x86_64","name":"SLE-Module-Desktop-Applications15-SP4-Updates","installer_updates":false},{"enabled":false,"id":5158,"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15-SP4/x86_64/update_debug/","name":"SLE-Module-Desktop-Applications15-SP4-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-Desktop-Applications15-SP4-Debuginfo-Updates for sle-15-x86_64"},{"enabled":true,"id":5159,"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP4/x86_64/product/","installer_updates":false,"name":"SLE-Module-Desktop-Applications15-SP4-Pool","description":"SLE-Module-Desktop-Applications15-SP4-Pool for sle-15-x86_64"},{"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP4/x86_64/product_debug/","enabled":false,"id":5160,"description":"SLE-Module-Desktop-Applications15-SP4-Debuginfo-Pool for sle-15-x86_64","name":"SLE-Module-Desktop-Applications15-SP4-Debuginfo-Pool","installer_updates":false},{"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP4/x86_64/product_source/","enabled":false,"id":5161,"description":"SLE-Module-Desktop-Applications15-SP4-Source-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Desktop-Applications15-SP4-Source-Pool"}],"product_class":"MODULE","cpe":"cpe:/o:suse:sle-module-desktop-applications:15:sp4","product_type":"module","shortname":"Desktop-Applications-Module","description":"

The SUSE Linux Enterprise Desktop Applications Module delivers a basic set of Desktop functionality.

Access to the Desktop Applications Module is included in your SUSE Linux Enterprise product subscription.

","free":true,"eula_url":"","arch":"x86_64"},{"recommended":true,"version":"15.4","name":"Server Applications Module","offline_predecessor_ids":[],"friendly_name":"Server Applications Module 15 SP4 x86_64","migration_extra":false,"former_identifier":"sle-module-server-applications","release_type":null,"friendly_version":"15 SP4","extensions":[{"predecessor_ids":[1721,1798,1976,2165],"product_class":"MODULE","online_predecessor_ids":[1721,1798,1976,2165],"repositories":[{"name":"SLE-Module-Web-Scripting15-SP4-Updates","installer_updates":false,"description":"SLE-Module-Web-Scripting15-SP4-Updates for sle-15-x86_64","id":5237,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/15-SP4/x86_64/update/","autorefresh":true,"distro_target":"sle-15-x86_64"},{"description":"SLE-Module-Web-Scripting15-SP4-Debuginfo-Updates for sle-15-x86_64","name":"SLE-Module-Web-Scripting15-SP4-Debuginfo-Updates","installer_updates":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/15-SP4/x86_64/update_debug/","autorefresh":true,"distro_target":"sle-15-x86_64","id":5238,"enabled":false},{"description":"SLE-Module-Web-Scripting15-SP4-Pool for sle-15-x86_64","name":"SLE-Module-Web-Scripting15-SP4-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP4/x86_64/product/","enabled":true,"id":5239},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP4/x86_64/product_debug/","distro_target":"sle-15-x86_64","autorefresh":false,"id":5240,"enabled":false,"description":"SLE-Module-Web-Scripting15-SP4-Debuginfo-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Web-Scripting15-SP4-Debuginfo-Pool"},{"id":5241,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP4/x86_64/product_source/","distro_target":"sle-15-x86_64","autorefresh":false,"installer_updates":false,"name":"SLE-Module-Web-Scripting15-SP4-Source-Pool","description":"SLE-Module-Web-Scripting15-SP4-Source-Pool for sle-15-x86_64"}],"cpe":"cpe:/o:suse:sle-module-web-scripting:15:sp4","product_type":"module","description":"

The SUSE Linux Enterprise Web and Scripting Module should contains additional packages that are helpful when running a webserver.

Access to the Web and Scripting Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself: Package versions in this module are usually supported for at most three years. We are planning to release more recent versions on a schedule of approximately 18 month; the exact dates may differ per package.

","shortname":"Web-Scripting-Module","free":true,"eula_url":"","arch":"x86_64","friendly_version":"15 SP4","extensions":[],"release_stage":"released","identifier":"sle-module-web-scripting","id":2319,"recommended":false,"version":"15.4","name":"Web and Scripting Module","offline_predecessor_ids":[1153],"migration_extra":false,"friendly_name":"Web and Scripting Module 15 SP4 x86_64","former_identifier":"sle-module-web-scripting","release_type":null},{"friendly_version":"15 SP4","extensions":[],"release_stage":"released","identifier":"sle-module-legacy","id":2323,"recommended":false,"version":"15.4","offline_predecessor_ids":[1150],"name":"Legacy Module","release_type":null,"former_identifier":"sle-module-legacy","migration_extra":false,"friendly_name":"Legacy Module 15 SP4 x86_64","predecessor_ids":[1581,1804,1982,2171],"repositories":[{"installer_updates":false,"name":"SLE-Module-Legacy15-SP4-Updates","description":"SLE-Module-Legacy15-SP4-Updates for sle-15-x86_64","enabled":true,"id":5257,"distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/15-SP4/x86_64/update/"},{"installer_updates":false,"name":"SLE-Module-Legacy15-SP4-Debuginfo-Updates","description":"SLE-Module-Legacy15-SP4-Debuginfo-Updates for sle-15-x86_64","enabled":false,"id":5258,"distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/15-SP4/x86_64/update_debug/"},{"installer_updates":false,"name":"SLE-Module-Legacy15-SP4-Pool","description":"SLE-Module-Legacy15-SP4-Pool for sle-15-x86_64","id":5259,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15-SP4/x86_64/product/","distro_target":"sle-15-x86_64","autorefresh":false},{"enabled":false,"id":5260,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15-SP4/x86_64/product_debug/","name":"SLE-Module-Legacy15-SP4-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-Legacy15-SP4-Debuginfo-Pool for sle-15-x86_64"},{"description":"SLE-Module-Legacy15-SP4-Source-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Legacy15-SP4-Source-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15-SP4/x86_64/product_source/","distro_target":"sle-15-x86_64","autorefresh":false,"id":5261,"enabled":false}],"online_predecessor_ids":[1581,1804,1982,2171],"product_class":"MODULE","product_type":"module","cpe":"cpe:/o:suse:sle-module-legacy:15:sp4","free":true,"description":"

The Legacy Module helps you migrating applications from SUSE Linux Enterprise 12 and other systems to SUSE Linux Enterprise 15, by providing packages which are discontinued on SUSE Linux Enterprise Server, such as: ntp, IBM Java 8, and a number of libraries.

Access to the Legacy Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself. Packages in the this module are usually supported for at most three years.

","shortname":"Legacy-Module","eula_url":"","arch":"x86_64"},{"predecessor_ids":[1611,1808,1988,2175],"repositories":[{"id":5277,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/15-SP4/x86_64/update/","autorefresh":true,"distro_target":"sle-15-x86_64","name":"SLE-Module-Public-Cloud15-SP4-Updates","installer_updates":false,"description":"SLE-Module-Public-Cloud15-SP4-Updates for sle-15-x86_64"},{"enabled":false,"id":5278,"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/15-SP4/x86_64/update_debug/","name":"SLE-Module-Public-Cloud15-SP4-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-Public-Cloud15-SP4-Debuginfo-Updates for sle-15-x86_64"},{"installer_updates":false,"name":"SLE-Module-Public-Cloud15-SP4-Pool","description":"SLE-Module-Public-Cloud15-SP4-Pool for sle-15-x86_64","enabled":true,"id":5279,"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP4/x86_64/product/"},{"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP4/x86_64/product_debug/","enabled":false,"id":5280,"description":"SLE-Module-Public-Cloud15-SP4-Debuginfo-Pool for sle-15-x86_64","name":"SLE-Module-Public-Cloud15-SP4-Debuginfo-Pool","installer_updates":false},{"id":5281,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP4/x86_64/product_source/","distro_target":"sle-15-x86_64","autorefresh":false,"installer_updates":false,"name":"SLE-Module-Public-Cloud15-SP4-Source-Pool","description":"SLE-Module-Public-Cloud15-SP4-Source-Pool for sle-15-x86_64"}],"online_predecessor_ids":[1611,1808,1988,2175],"product_class":"MODULE","cpe":"cpe:/o:suse:sle-module-public-cloud:15:sp4","product_type":"module","shortname":"Public-Cloud-Module","description":"

The Public Cloud Module is a collection of tools that enables you to create and manage cloud images from the commandline on SUSE Linux Enterprise Server. When building your own images with KIWI or SUSE Studio, initialization code specific to the target cloud is included in that image.

Access to the Public Cloud Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself; please check the Release Notes for further details.

","free":true,"eula_url":"","arch":"x86_64","friendly_version":"15 SP4","extensions":[],"release_stage":"released","identifier":"sle-module-public-cloud","id":2327,"recommended":false,"version":"15.4","name":"Public Cloud Module","offline_predecessor_ids":[1220],"friendly_name":"Public Cloud Module 15 SP4 x86_64","migration_extra":false,"release_type":null,"former_identifier":"sle-module-public-cloud"},{"extensions":[],"identifier":"sle-ha","release_stage":"released","id":2340,"friendly_version":"15 SP4","offline_predecessor_ids":[958,961,967,971,1101,1107,1256,1286,1432,1435,1634,1637,1884,1886],"name":"SUSE Linux Enterprise High Availability Extension","release_type":null,"former_identifier":"sle-ha","friendly_name":"SUSE Linux Enterprise High Availability Extension 15 SP4 x86_64","migration_extra":false,"recommended":false,"version":"15.4","product_type":"extension","cpe":"cpe:/o:suse:sle-ha:15:sp4","predecessor_ids":[1582,1785,1959,2195],"online_predecessor_ids":[1582,1785,1959,2195],"product_class":"SLE-HAE-X86","repositories":[{"installer_updates":false,"name":"SLE-Product-HA15-SP4-Updates","description":"SLE-Product-HA15-SP4-Updates for sle-15-x86_64","enabled":true,"id":5342,"distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-HA/15-SP4/x86_64/update/"},{"description":"SLE-Product-HA15-SP4-Debuginfo-Updates for sle-15-x86_64","installer_updates":false,"name":"SLE-Product-HA15-SP4-Debuginfo-Updates","url":"https://updates.suse.com/SUSE/Updates/SLE-Product-HA/15-SP4/x86_64/update_debug/","distro_target":"sle-15-x86_64","autorefresh":true,"id":5343,"enabled":false},{"enabled":true,"id":5344,"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP4/x86_64/product/","installer_updates":false,"name":"SLE-Product-HA15-SP4-Pool","description":"SLE-Product-HA15-SP4-Pool for sle-15-x86_64"},{"description":"SLE-Product-HA15-SP4-Debuginfo-Pool for sle-15-x86_64","name":"SLE-Product-HA15-SP4-Debuginfo-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP4/x86_64/product_debug/","autorefresh":false,"distro_target":"sle-15-x86_64","id":5345,"enabled":false},{"description":"SLE-Product-HA15-SP4-Source-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Product-HA15-SP4-Source-Pool","distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP4/x86_64/product_source/","enabled":false,"id":5346}],"eula_url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP4/x86_64/product.license/","arch":"x86_64","free":false,"shortname":"SLEHA15-SP4","description":"SUSE Linux High Availability Extension provides mature, industry-leading open-source high-availability clustering technologies that are easy to set up and use. It can be deployed in physical and/or virtual environments, and can cluster physical servers, virtual servers, or any combination of the two to suit your business’ needs."},{"version":"4.3","recommended":true,"release_type":null,"former_identifier":"sle-module-suse-manager-proxy","friendly_name":"SUSE Manager Proxy Module 4.3 x86_64","migration_extra":false,"offline_predecessor_ids":[],"name":"SUSE Manager Proxy Module","friendly_version":"4.3","release_stage":"released","id":2384,"identifier":"sle-module-suse-manager-proxy","extensions":[{"product_type":"module","cpe":"cpe:/o:suse:sle-module-suse-manager-retail-branch-server:4.3","predecessor_ids":[2016,2229],"product_class":"MODULE","online_predecessor_ids":[2016,2229],"repositories":[{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-SUSE-Manager-Retail-Branch-Server/4.3/x86_64/update/","distro_target":"sle-15-x86_64","autorefresh":true,"id":5505,"enabled":true,"description":"SLE-Module-SUSE-Manager-Retail-Branch-Server-4.3-Updates for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-SUSE-Manager-Retail-Branch-Server-4.3-Updates"},{"name":"SLE-Module-SUSE-Manager-Retail-Branch-Server-4.3-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-SUSE-Manager-Retail-Branch-Server-4.3-Debuginfo-Updates for sle-15-x86_64","id":5506,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-SUSE-Manager-Retail-Branch-Server/4.3/x86_64/update_debug/","autorefresh":true,"distro_target":"sle-15-x86_64"},{"name":"SLE-Module-SUSE-Manager-Retail-Branch-Server-4.3-Pool","installer_updates":false,"description":"SLE-Module-SUSE-Manager-Retail-Branch-Server-4.3-Pool for sle-15-x86_64","id":5507,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-SUSE-Manager-Retail-Branch-Server/4.3/x86_64/product/","autorefresh":false,"distro_target":"sle-15-x86_64"},{"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-SUSE-Manager-Retail-Branch-Server/4.3/x86_64/product_debug/","enabled":false,"id":5508,"description":"SLE-Module-SUSE-Manager-Retail-Branch-Server-4.3-Debuginfo-Pool for sle-15-x86_64","name":"SLE-Module-SUSE-Manager-Retail-Branch-Server-4.3-Debuginfo-Pool","installer_updates":false},{"name":"SLE-Module-SUSE-Manager-Retail-Branch-Server-4.3-Source-Pool","installer_updates":false,"description":"SLE-Module-SUSE-Manager-Retail-Branch-Server-4.3-Source-Pool for sle-15-x86_64","enabled":false,"id":5509,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-SUSE-Manager-Retail-Branch-Server/4.3/x86_64/product_source/"}],"eula_url":"","arch":"x86_64","free":true,"shortname":"SUSE Manager Retail Branch Server 4.3 Module","description":"The SUSE Manager for Retail Branch Server supports large and/or geographically dispersed SUSE Manager for Retail environments by reducing the load on the SUSE Manager Server, lowering bandwidth needs, and providing faster local updates.","extensions":[],"release_stage":"released","id":2385,"identifier":"sle-module-suse-manager-retail-branch-server","friendly_version":"4.3","offline_predecessor_ids":[],"name":"SUSE Manager Retail Branch Server Module","release_type":null,"former_identifier":"sle-module-suse-manager-retail-branch-server","migration_extra":false,"friendly_name":"SUSE Manager Retail Branch Server Module 4.3 x86_64","recommended":true,"version":"4.3"}],"free":true,"shortname":"SUSE Manager Proxy 4.3 Module","description":"SUSE Manager Proxies extend large and/or geographically dispersed SUSE Manager environments to reduce load on the SUSE Manager Server, lower bandwidth needs, and provide faster local updates.","arch":"x86_64","eula_url":"","online_predecessor_ids":[2015,2225],"repositories":[{"distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-SUSE-Manager-Proxy/4.3/x86_64/update/","enabled":true,"id":5500,"description":"SLE-Module-SUSE-Manager-Proxy-4.3-Updates for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-SUSE-Manager-Proxy-4.3-Updates"},{"name":"SLE-Module-SUSE-Manager-Proxy-4.3-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-SUSE-Manager-Proxy-4.3-Debuginfo-Updates for sle-15-x86_64","id":5501,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-SUSE-Manager-Proxy/4.3/x86_64/update_debug/","autorefresh":true,"distro_target":"sle-15-x86_64"},{"id":5502,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-SUSE-Manager-Proxy/4.3/x86_64/product/","autorefresh":false,"distro_target":"sle-15-x86_64","name":"SLE-Module-SUSE-Manager-Proxy-4.3-Pool","installer_updates":false,"description":"SLE-Module-SUSE-Manager-Proxy-4.3-Pool for sle-15-x86_64"},{"installer_updates":false,"name":"SLE-Module-SUSE-Manager-Proxy-4.3-Debuginfo-Pool","description":"SLE-Module-SUSE-Manager-Proxy-4.3-Debuginfo-Pool for sle-15-x86_64","id":5503,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-SUSE-Manager-Proxy/4.3/x86_64/product_debug/","distro_target":"sle-15-x86_64","autorefresh":false},{"description":"SLE-Module-SUSE-Manager-Proxy-4.3-Source-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-SUSE-Manager-Proxy-4.3-Source-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-SUSE-Manager-Proxy/4.3/x86_64/product_source/","distro_target":"sle-15-x86_64","autorefresh":false,"id":5504,"enabled":false}],"product_class":"MODULE","predecessor_ids":[2015,2225],"product_type":"module","cpe":"cpe:/o:suse:sle-module-suse-manager-proxy:4.3"}],"release_stage":"released","identifier":"sle-module-server-applications","id":2307,"shortname":"Server-Applications-Module","description":"

The SUSE Linux Enterprise Server Applications Module delivers a basic set of Server functionality.

Access to the Server Applications Module is included in your SUSE Linux Enterprise Server subscription.

","free":true,"eula_url":"","arch":"x86_64","predecessor_ids":[1580,1780,1955,2153],"online_predecessor_ids":[1580,1780,1955,2153],"product_class":"MODULE","repositories":[{"enabled":true,"id":5177,"distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15-SP4/x86_64/update/","installer_updates":false,"name":"SLE-Module-Server-Applications15-SP4-Updates","description":"SLE-Module-Server-Applications15-SP4-Updates for sle-15-x86_64"},{"id":5178,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15-SP4/x86_64/update_debug/","autorefresh":true,"distro_target":"sle-15-x86_64","name":"SLE-Module-Server-Applications15-SP4-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-Server-Applications15-SP4-Debuginfo-Updates for sle-15-x86_64"},{"id":5179,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP4/x86_64/product/","distro_target":"sle-15-x86_64","autorefresh":false,"installer_updates":false,"name":"SLE-Module-Server-Applications15-SP4-Pool","description":"SLE-Module-Server-Applications15-SP4-Pool for sle-15-x86_64"},{"enabled":false,"id":5180,"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP4/x86_64/product_debug/","installer_updates":false,"name":"SLE-Module-Server-Applications15-SP4-Debuginfo-Pool","description":"SLE-Module-Server-Applications15-SP4-Debuginfo-Pool for sle-15-x86_64"},{"enabled":false,"id":5181,"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP4/x86_64/product_source/","installer_updates":false,"name":"SLE-Module-Server-Applications15-SP4-Source-Pool","description":"SLE-Module-Server-Applications15-SP4-Source-Pool for sle-15-x86_64"}],"cpe":"cpe:/o:suse:sle-module-server-applications:15:sp4","product_type":"module"},{"friendly_version":"15 SP4","release_stage":"released","id":2311,"identifier":"sle-module-containers","extensions":[],"version":"15.4","recommended":false,"friendly_name":"Containers Module 15 SP4 x86_64","migration_extra":false,"former_identifier":"sle-module-containers","release_type":null,"name":"Containers Module","offline_predecessor_ids":[1332],"online_predecessor_ids":[1642,1790,1963,2157],"repositories":[{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/15-SP4/x86_64/update/","autorefresh":true,"distro_target":"sle-15-x86_64","id":5197,"enabled":true,"description":"SLE-Module-Containers15-SP4-Updates for sle-15-x86_64","name":"SLE-Module-Containers15-SP4-Updates","installer_updates":false},{"description":"SLE-Module-Containers15-SP4-Debuginfo-Updates for sle-15-x86_64","name":"SLE-Module-Containers15-SP4-Debuginfo-Updates","installer_updates":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/15-SP4/x86_64/update_debug/","autorefresh":true,"distro_target":"sle-15-x86_64","id":5198,"enabled":false},{"enabled":true,"id":5199,"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP4/x86_64/product/","installer_updates":false,"name":"SLE-Module-Containers15-SP4-Pool","description":"SLE-Module-Containers15-SP4-Pool for sle-15-x86_64"},{"name":"SLE-Module-Containers15-SP4-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-Containers15-SP4-Debuginfo-Pool for sle-15-x86_64","enabled":false,"id":5200,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP4/x86_64/product_debug/"},{"installer_updates":false,"name":"SLE-Module-Containers15-SP4-Source-Pool","description":"SLE-Module-Containers15-SP4-Source-Pool for sle-15-x86_64","id":5201,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP4/x86_64/product_source/","distro_target":"sle-15-x86_64","autorefresh":false}],"product_class":"MODULE","predecessor_ids":[1642,1790,1963,2157],"cpe":"cpe:/o:suse:sle-module-containers:15:sp4","product_type":"module","shortname":"Containers-Module","description":"

This Module contains several packages revolving around containers and related tools.

","free":true,"arch":"x86_64","eula_url":""},{"eula_url":"","arch":"x86_64","free":true,"shortname":"SUSE-PackageHub-15","description":"SUSE Package Hub is a free of charge module providing access to community maintained packages built to run on SUSE Linux Enterprise Server. Built from the same sources used in the openSUSE distributions, these quality packages provide additional software to what is found in the SUSE Linux Enterprise Server product. Packages from the Package Hub are delivered without L3 support from SUSE. General updates and fixes to the packages in SUSE Package Hub are provided by the openSUSE community based on their discretion, though SUSE will monitor and ensure that any known critical security issues will be addressed. Packages in the Package Hub are approved by SUSE for use with SUSE Linux Enterprise Server 15-SP4 and to not interfere with the supportability of SUSE Linux Enterprise Server, its modules and extensions. For more information about SUSE Package Hub please visit https://packagehub.suse.com.","product_type":"module","cpe":"cpe:/o:suse:packagehub:15:sp4","predecessor_ids":[1743,1871,1950,2191],"online_predecessor_ids":[1743,1871,1950,2191],"repositories":[{"installer_updates":false,"name":"SUSE-PackageHub-15-SP4-Backports-Pool","description":"SUSE-PackageHub-15-SP4-Backports-Pool for sle-15-x86_64","id":5388,"enabled":true,"url":"https://updates.suse.com/SUSE/Backports/SLE-15-SP4_x86_64/standard/","distro_target":"sle-15-x86_64","autorefresh":false},{"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Backports/SLE-15-SP4_x86_64/standard_debug/","enabled":false,"id":5389,"description":"SUSE-PackageHub-15-SP4-Backports-Debuginfo for sle-15-x86_64","name":"SUSE-PackageHub-15-SP4-Backports-Debuginfo","installer_updates":false},{"installer_updates":false,"name":"SLE-Module-Packagehub-Subpackages15-SP4-Updates","description":"SLE-Module-Packagehub-Subpackages15-SP4-Updates for sle-15-x86_64","enabled":true,"id":5390,"distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP4/x86_64/update/"},{"distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP4/x86_64/update_debug/","enabled":false,"id":5391,"description":"SLE-Module-Packagehub-Subpackages15-SP4-Debuginfo-Updates for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Packagehub-Subpackages15-SP4-Debuginfo-Updates"},{"id":5392,"enabled":true,"url":"https://updates.suse.com/SUSE/Backports/SLE-15-SP4_x86_64/product/","autorefresh":false,"distro_target":"sle-15-x86_64","name":"SUSE-PackageHub-15-SP4-Pool","installer_updates":false,"description":"SUSE-PackageHub-15-SP4-Pool for sle-15-x86_64"},{"id":5393,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP4/x86_64/product/","autorefresh":false,"distro_target":"sle-15-x86_64","name":"SLE-Module-Packagehub-Subpackages15-SP4-Pool","installer_updates":false,"description":"SLE-Module-Packagehub-Subpackages15-SP4-Pool for sle-15-x86_64"},{"enabled":false,"id":5394,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP4/x86_64/product_debug/","name":"SLE-Module-Packagehub-Subpackages15-SP4-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-Packagehub-Subpackages15-SP4-Debuginfo-Pool for sle-15-x86_64"},{"installer_updates":false,"name":"SLE-Module-Packagehub-Subpackages15-SP4-Source-Pool","description":"SLE-Module-Packagehub-Subpackages15-SP4-Source-Pool for sle-15-x86_64","enabled":false,"id":5395,"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP4/x86_64/product_source/"}],"product_class":"MODULE","offline_predecessor_ids":[1529,1813,1915],"name":"SUSE Package Hub","release_type":null,"former_identifier":"PackageHub","migration_extra":false,"friendly_name":"SUSE Package Hub 15 SP4 x86_64","recommended":false,"version":"15.4","extensions":[],"release_stage":"released","identifier":"PackageHub","id":2347,"friendly_version":"15 SP4"},{"release_stage":"released","identifier":"sle-module-python3","id":2405,"extensions":[],"friendly_version":"15 SP4","release_type":null,"former_identifier":"sle-module-python3","migration_extra":false,"friendly_name":"Python 3 Module 15 SP4 x86_64","offline_predecessor_ids":[],"name":"Python 3 Module","version":"15.4","recommended":false,"product_type":"module","cpe":"cpe:/o:suse:sle-module-python3:15:sp4","online_predecessor_ids":[],"product_class":"MODULE","repositories":[{"name":"SLE-Module-Python3-15-SP4-Updates","installer_updates":false,"description":"SLE-Module-Python3-15-SP4-Updates for sle-15-x86_64","id":5582,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Python3/15-SP4/x86_64/update/","autorefresh":true,"distro_target":"sle-15-x86_64"},{"enabled":false,"id":5583,"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Python3/15-SP4/x86_64/update_debug/","name":"SLE-Module-Python3-15-SP4-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-Python3-15-SP4-Debuginfo-Updates for sle-15-x86_64"},{"enabled":true,"id":5584,"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Python3/15-SP4/x86_64/product/","installer_updates":false,"name":"SLE-Module-Python3-15-SP4-Pool","description":"SLE-Module-Python3-15-SP4-Pool for sle-15-x86_64"},{"description":"SLE-Module-Python3-15-SP4-Debuginfo-Pool for sle-15-x86_64","name":"SLE-Module-Python3-15-SP4-Debuginfo-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Python3/15-SP4/x86_64/product_debug/","enabled":false,"id":5585},{"name":"SLE-Module-Python3-15-SP4-Source-Pool","installer_updates":false,"description":"SLE-Module-Python3-15-SP4-Source-Pool for sle-15-x86_64","id":5586,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Python3/15-SP4/x86_64/product_source/","autorefresh":false,"distro_target":"sle-15-x86_64"}],"predecessor_ids":[],"arch":"x86_64","eula_url":"","free":true,"description":"

This module contains the Python 3 packages.

Access to the Python 3 Module is included in your SUSE Linux Enterprise subscription. The module has a different lifecycle than SUSE Linux Enterprise itself; please check the Release Notes for further details.

","shortname":"Python 3-Module"}],"friendly_version":"15 SP4","migration_extra":false,"friendly_name":"Basesystem Module 15 SP4 x86_64","former_identifier":"sle-module-basesystem","release_type":null,"name":"Basesystem Module","offline_predecessor_ids":[1212,1368,1440],"version":"15.4","recommended":true,"cpe":"cpe:/o:suse:sle-module-basesystem:15:sp4","product_type":"module","online_predecessor_ids":[1576,1772,1946,2145],"repositories":[{"id":5137,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15-SP4/x86_64/update/","autorefresh":true,"distro_target":"sle-15-x86_64","name":"SLE-Module-Basesystem15-SP4-Updates","installer_updates":false,"description":"SLE-Module-Basesystem15-SP4-Updates for sle-15-x86_64"},{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15-SP4/x86_64/update_debug/","autorefresh":true,"distro_target":"sle-15-x86_64","id":5138,"enabled":false,"description":"SLE-Module-Basesystem15-SP4-Debuginfo-Updates for sle-15-x86_64","name":"SLE-Module-Basesystem15-SP4-Debuginfo-Updates","installer_updates":false},{"id":5139,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP4/x86_64/product/","distro_target":"sle-15-x86_64","autorefresh":false,"installer_updates":false,"name":"SLE-Module-Basesystem15-SP4-Pool","description":"SLE-Module-Basesystem15-SP4-Pool for sle-15-x86_64"},{"description":"SLE-Module-Basesystem15-SP4-Debuginfo-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Basesystem15-SP4-Debuginfo-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP4/x86_64/product_debug/","distro_target":"sle-15-x86_64","autorefresh":false,"id":5140,"enabled":false},{"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP4/x86_64/product_source/","enabled":false,"id":5141,"description":"SLE-Module-Basesystem15-SP4-Source-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Basesystem15-SP4-Source-Pool"}],"product_class":"MODULE","predecessor_ids":[1576,1772,1946,2145],"arch":"x86_64","eula_url":"","shortname":"Basesystem-Module","description":"

The SUSE Linux Enterprise Basesystem Module delivers the base system of the product.

","free":true}],"friendly_version":"4.3","former_identifier":"SUSE-Manager-Retail-Branch-Server","release_type":null,"migration_extra":false,"friendly_name":"SUSE Manager Retail Branch Server 4.3 x86_64","offline_predecessor_ids":[],"name":"SUSE Manager Retail Branch Server","version":"4.3","recommended":false,"product_type":"base","cpe":"cpe:/o:suse:suse-manager-retail-branch-server:4.3","online_predecessor_ids":[2014,2224],"repositories":[{"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-SUSE-Manager-Retail-Branch-Server/4.3/x86_64/update/","autorefresh":true,"distro_target":"sle-15-x86_64","id":5480,"enabled":true,"description":"SLE-Product-SUSE-Manager-Retail-Branch-Server-4.3-Updates for sle-15-x86_64","name":"SLE-Product-SUSE-Manager-Retail-Branch-Server-4.3-Updates","installer_updates":false},{"id":5481,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-SUSE-Manager-Retail-Branch-Server/4.3/x86_64/update_debug/","autorefresh":true,"distro_target":"sle-15-x86_64","name":"SLE-Product-SUSE-Manager-Retail-Branch-Server-4.3-Debuginfo-Updates","installer_updates":false,"description":"SLE-Product-SUSE-Manager-Retail-Branch-Server-4.3-Debuginfo-Updates for sle-15-x86_64"},{"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-SUSE-Manager-Retail-Branch-Server/4.3/x86_64/product/","enabled":true,"id":5482,"description":"SLE-Product-SUSE-Manager-Retail-Branch-Server-4.3-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Product-SUSE-Manager-Retail-Branch-Server-4.3-Pool"},{"enabled":false,"id":5483,"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-SUSE-Manager-Retail-Branch-Server/4.3/x86_64/product_debug/","installer_updates":false,"name":"SLE-Product-SUSE-Manager-Retail-Branch-Server-4.3-Debuginfo-Pool","description":"SLE-Product-SUSE-Manager-Retail-Branch-Server-4.3-Debuginfo-Pool for sle-15-x86_64"},{"installer_updates":false,"name":"SLE-Product-SUSE-Manager-Retail-Branch-Server-4.3-Source-Pool","description":"SLE-Product-SUSE-Manager-Retail-Branch-Server-4.3-Source-Pool for sle-15-x86_64","id":5484,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-SUSE-Manager-Retail-Branch-Server/4.3/x86_64/product_source/","distro_target":"sle-15-x86_64","autorefresh":false}],"product_class":"SMRBS","predecessor_ids":[2014,2224],"arch":"x86_64","eula_url":"https://updates.suse.com/SUSE/Products/SLE-Product-SUSE-Manager-Retail-Branch-Server/4.3/x86_64/product.license/","free":false,"shortname":"SUSE Manager Retail Branch Server 4.3","description":"The SUSE Manager for Retail Branch Server supports large and/or geographically dispersed SUSE Manager for Retail environments by reducing the load on the SUSE Manager Server, lowering bandwidth needs, and providing faster local updates."},{"eula_url":"","arch":"ppc64le","shortname":"SUSE Manager Server 4.3 Module","description":"SUSE Manager lets you efficiently manage physical, virtual, and cloud-based Linux systems. It provides automated and cost-effective configuration and software management, asset management, and system provisioning.","free":true,"cpe":"cpe:/o:suse:sle-module-suse-manager-server:4.3","product_type":"module","predecessor_ids":[2017,2226],"repositories":[{"enabled":true,"id":5485,"distro_target":"sle-15-ppc64le","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-SUSE-Manager-Server/4.3/ppc64le/update/","installer_updates":false,"name":"SLE-Module-SUSE-Manager-Server-4.3-Updates","description":"SLE-Module-SUSE-Manager-Server-4.3-Updates for sle-15-ppc64le"},{"name":"SLE-Module-SUSE-Manager-Server-4.3-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-SUSE-Manager-Server-4.3-Debuginfo-Updates for sle-15-ppc64le","enabled":false,"id":5486,"autorefresh":true,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-SUSE-Manager-Server/4.3/ppc64le/update_debug/"},{"description":"SLE-Module-SUSE-Manager-Server-4.3-Pool for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-SUSE-Manager-Server-4.3-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-SUSE-Manager-Server/4.3/ppc64le/product/","distro_target":"sle-15-ppc64le","autorefresh":false,"id":5487,"enabled":true},{"enabled":false,"id":5488,"distro_target":"sle-15-ppc64le","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-SUSE-Manager-Server/4.3/ppc64le/product_debug/","installer_updates":false,"name":"SLE-Module-SUSE-Manager-Server-4.3-Debuginfo-Pool","description":"SLE-Module-SUSE-Manager-Server-4.3-Debuginfo-Pool for sle-15-ppc64le"},{"description":"SLE-Module-SUSE-Manager-Server-4.3-Source-Pool for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-SUSE-Manager-Server-4.3-Source-Pool","distro_target":"sle-15-ppc64le","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-SUSE-Manager-Server/4.3/ppc64le/product_source/","enabled":false,"id":5489}],"online_predecessor_ids":[2017,2226],"product_class":"MODULE","name":"SUSE Manager Server Module","offline_predecessor_ids":[],"friendly_name":"SUSE Manager Server Module 4.3 ppc64le","migration_extra":false,"former_identifier":"sle-module-suse-manager-server","release_type":null,"recommended":false,"version":"4.3","extensions":[],"id":2381,"release_stage":"released","identifier":"sle-module-suse-manager-server","friendly_version":"4.3"},{"name":"SUSE Manager Server Module","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"SUSE Manager Server Module 4.3 s390x","release_type":null,"former_identifier":"sle-module-suse-manager-server","recommended":false,"version":"4.3","extensions":[],"release_stage":"released","id":2382,"identifier":"sle-module-suse-manager-server","friendly_version":"4.3","eula_url":"","arch":"s390x","description":"SUSE Manager lets you efficiently manage physical, virtual, and cloud-based Linux systems. It provides automated and cost-effective configuration and software management, asset management, and system provisioning.","shortname":"SUSE Manager Server 4.3 Module","free":true,"cpe":"cpe:/o:suse:sle-module-suse-manager-server:4.3","product_type":"module","predecessor_ids":[2018,2227],"repositories":[{"enabled":true,"id":5490,"autorefresh":true,"distro_target":"sle-15-s390x","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-SUSE-Manager-Server/4.3/s390x/update/","name":"SLE-Module-SUSE-Manager-Server-4.3-Updates","installer_updates":false,"description":"SLE-Module-SUSE-Manager-Server-4.3-Updates for sle-15-s390x"},{"description":"SLE-Module-SUSE-Manager-Server-4.3-Debuginfo-Updates for sle-15-s390x","installer_updates":false,"name":"SLE-Module-SUSE-Manager-Server-4.3-Debuginfo-Updates","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-SUSE-Manager-Server/4.3/s390x/update_debug/","distro_target":"sle-15-s390x","autorefresh":true,"id":5491,"enabled":false},{"enabled":true,"id":5492,"distro_target":"sle-15-s390x","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-SUSE-Manager-Server/4.3/s390x/product/","installer_updates":false,"name":"SLE-Module-SUSE-Manager-Server-4.3-Pool","description":"SLE-Module-SUSE-Manager-Server-4.3-Pool for sle-15-s390x"},{"id":5493,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-SUSE-Manager-Server/4.3/s390x/product_debug/","autorefresh":false,"distro_target":"sle-15-s390x","name":"SLE-Module-SUSE-Manager-Server-4.3-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-SUSE-Manager-Server-4.3-Debuginfo-Pool for sle-15-s390x"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-SUSE-Manager-Server/4.3/s390x/product_source/","autorefresh":false,"distro_target":"sle-15-s390x","id":5494,"enabled":false,"description":"SLE-Module-SUSE-Manager-Server-4.3-Source-Pool for sle-15-s390x","name":"SLE-Module-SUSE-Manager-Server-4.3-Source-Pool","installer_updates":false}],"online_predecessor_ids":[2018,2227],"product_class":"MODULE"},{"online_predecessor_ids":[2019,2228],"repositories":[{"enabled":true,"id":5495,"distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-SUSE-Manager-Server/4.3/x86_64/update/","installer_updates":false,"name":"SLE-Module-SUSE-Manager-Server-4.3-Updates","description":"SLE-Module-SUSE-Manager-Server-4.3-Updates for sle-15-x86_64"},{"description":"SLE-Module-SUSE-Manager-Server-4.3-Debuginfo-Updates for sle-15-x86_64","name":"SLE-Module-SUSE-Manager-Server-4.3-Debuginfo-Updates","installer_updates":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-SUSE-Manager-Server/4.3/x86_64/update_debug/","autorefresh":true,"distro_target":"sle-15-x86_64","id":5496,"enabled":false},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-SUSE-Manager-Server/4.3/x86_64/product/","autorefresh":false,"distro_target":"sle-15-x86_64","id":5497,"enabled":true,"description":"SLE-Module-SUSE-Manager-Server-4.3-Pool for sle-15-x86_64","name":"SLE-Module-SUSE-Manager-Server-4.3-Pool","installer_updates":false},{"enabled":false,"id":5498,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-SUSE-Manager-Server/4.3/x86_64/product_debug/","name":"SLE-Module-SUSE-Manager-Server-4.3-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-SUSE-Manager-Server-4.3-Debuginfo-Pool for sle-15-x86_64"},{"installer_updates":false,"name":"SLE-Module-SUSE-Manager-Server-4.3-Source-Pool","description":"SLE-Module-SUSE-Manager-Server-4.3-Source-Pool for sle-15-x86_64","id":5499,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-SUSE-Manager-Server/4.3/x86_64/product_source/","distro_target":"sle-15-x86_64","autorefresh":false}],"product_class":"MODULE","predecessor_ids":[2019,2228],"product_type":"module","cpe":"cpe:/o:suse:sle-module-suse-manager-server:4.3","free":true,"description":"SUSE Manager lets you efficiently manage physical, virtual, and cloud-based Linux systems. It provides automated and cost-effective configuration and software management, asset management, and system provisioning.","shortname":"SUSE Manager Server 4.3 Module","arch":"x86_64","eula_url":"","friendly_version":"4.3","id":2383,"release_stage":"released","identifier":"sle-module-suse-manager-server","extensions":[],"version":"4.3","recommended":false,"release_type":null,"former_identifier":"sle-module-suse-manager-server","friendly_name":"SUSE Manager Server Module 4.3 x86_64","migration_extra":false,"offline_predecessor_ids":[],"name":"SUSE Manager Server Module"},{"shortname":"SUSE Manager Proxy 4.3 Module","description":"SUSE Manager Proxies extend large and/or geographically dispersed SUSE Manager environments to reduce load on the SUSE Manager Server, lower bandwidth needs, and provide faster local updates.","free":true,"eula_url":"","arch":"x86_64","predecessor_ids":[2015,2225],"online_predecessor_ids":[2015,2225],"repositories":[{"installer_updates":false,"name":"SLE-Module-SUSE-Manager-Proxy-4.3-Updates","description":"SLE-Module-SUSE-Manager-Proxy-4.3-Updates for sle-15-x86_64","id":5500,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-SUSE-Manager-Proxy/4.3/x86_64/update/","distro_target":"sle-15-x86_64","autorefresh":true},{"name":"SLE-Module-SUSE-Manager-Proxy-4.3-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-SUSE-Manager-Proxy-4.3-Debuginfo-Updates for sle-15-x86_64","enabled":false,"id":5501,"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-SUSE-Manager-Proxy/4.3/x86_64/update_debug/"},{"installer_updates":false,"name":"SLE-Module-SUSE-Manager-Proxy-4.3-Pool","description":"SLE-Module-SUSE-Manager-Proxy-4.3-Pool for sle-15-x86_64","enabled":true,"id":5502,"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-SUSE-Manager-Proxy/4.3/x86_64/product/"},{"description":"SLE-Module-SUSE-Manager-Proxy-4.3-Debuginfo-Pool for sle-15-x86_64","name":"SLE-Module-SUSE-Manager-Proxy-4.3-Debuginfo-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-SUSE-Manager-Proxy/4.3/x86_64/product_debug/","enabled":false,"id":5503},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-SUSE-Manager-Proxy/4.3/x86_64/product_source/","distro_target":"sle-15-x86_64","autorefresh":false,"id":5504,"enabled":false,"description":"SLE-Module-SUSE-Manager-Proxy-4.3-Source-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-SUSE-Manager-Proxy-4.3-Source-Pool"}],"product_class":"MODULE","cpe":"cpe:/o:suse:sle-module-suse-manager-proxy:4.3","product_type":"module","recommended":false,"version":"4.3","name":"SUSE Manager Proxy Module","offline_predecessor_ids":[],"friendly_name":"SUSE Manager Proxy Module 4.3 x86_64","migration_extra":false,"release_type":null,"former_identifier":"sle-module-suse-manager-proxy","friendly_version":"4.3","extensions":[],"id":2384,"release_stage":"released","identifier":"sle-module-suse-manager-proxy"},{"predecessor_ids":[2016,2229],"online_predecessor_ids":[2016,2229],"repositories":[{"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-SUSE-Manager-Retail-Branch-Server/4.3/x86_64/update/","enabled":true,"id":5505,"description":"SLE-Module-SUSE-Manager-Retail-Branch-Server-4.3-Updates for sle-15-x86_64","name":"SLE-Module-SUSE-Manager-Retail-Branch-Server-4.3-Updates","installer_updates":false},{"description":"SLE-Module-SUSE-Manager-Retail-Branch-Server-4.3-Debuginfo-Updates for sle-15-x86_64","name":"SLE-Module-SUSE-Manager-Retail-Branch-Server-4.3-Debuginfo-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-SUSE-Manager-Retail-Branch-Server/4.3/x86_64/update_debug/","enabled":false,"id":5506},{"installer_updates":false,"name":"SLE-Module-SUSE-Manager-Retail-Branch-Server-4.3-Pool","description":"SLE-Module-SUSE-Manager-Retail-Branch-Server-4.3-Pool for sle-15-x86_64","id":5507,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-SUSE-Manager-Retail-Branch-Server/4.3/x86_64/product/","distro_target":"sle-15-x86_64","autorefresh":false},{"name":"SLE-Module-SUSE-Manager-Retail-Branch-Server-4.3-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-SUSE-Manager-Retail-Branch-Server-4.3-Debuginfo-Pool for sle-15-x86_64","enabled":false,"id":5508,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-SUSE-Manager-Retail-Branch-Server/4.3/x86_64/product_debug/"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-SUSE-Manager-Retail-Branch-Server/4.3/x86_64/product_source/","autorefresh":false,"distro_target":"sle-15-x86_64","id":5509,"enabled":false,"description":"SLE-Module-SUSE-Manager-Retail-Branch-Server-4.3-Source-Pool for sle-15-x86_64","name":"SLE-Module-SUSE-Manager-Retail-Branch-Server-4.3-Source-Pool","installer_updates":false}],"product_class":"MODULE","cpe":"cpe:/o:suse:sle-module-suse-manager-retail-branch-server:4.3","product_type":"module","shortname":"SUSE Manager Retail Branch Server 4.3 Module","description":"The SUSE Manager for Retail Branch Server supports large and/or geographically dispersed SUSE Manager for Retail environments by reducing the load on the SUSE Manager Server, lowering bandwidth needs, and providing faster local updates.","free":true,"eula_url":"","arch":"x86_64","friendly_version":"4.3","extensions":[],"id":2385,"release_stage":"released","identifier":"sle-module-suse-manager-retail-branch-server","recommended":false,"version":"4.3","name":"SUSE Manager Retail Branch Server Module","offline_predecessor_ids":[],"friendly_name":"SUSE Manager Retail Branch Server Module 4.3 x86_64","migration_extra":false,"former_identifier":"sle-module-suse-manager-retail-branch-server","release_type":null},{"friendly_version":"15 SP3","id":2386,"release_stage":"released","identifier":"sle-module-certifications","extensions":[],"version":"15.3","recommended":false,"release_type":null,"former_identifier":"sle-module-certifications","migration_extra":false,"friendly_name":"Certifications Module 15 SP3 aarch64","offline_predecessor_ids":[],"name":"Certifications Module","repositories":[{"name":"SLE-Module-Certifications-15-SP3-Updates","installer_updates":false,"description":"SLE-Module-Certifications-15-SP3-Updates for sle-15-aarch64","enabled":true,"id":5512,"autorefresh":true,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Certifications/15-SP3/aarch64/update/"},{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Certifications/15-SP3/aarch64/update_debug/","distro_target":"sle-15-aarch64","autorefresh":true,"id":5513,"enabled":false,"description":"SLE-Module-Certifications-15-SP3-Debuginfo-Updates for sle-15-aarch64","installer_updates":false,"name":"SLE-Module-Certifications-15-SP3-Debuginfo-Updates"},{"description":"SLE-Module-Certifications-15-SP3-Pool for sle-15-aarch64","name":"SLE-Module-Certifications-15-SP3-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Certifications/15-SP3/aarch64/product/","enabled":true,"id":5514},{"enabled":false,"id":5515,"autorefresh":false,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Certifications/15-SP3/aarch64/product_debug/","name":"SLE-Module-Certifications-15-SP3-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-Certifications-15-SP3-Debuginfo-Pool for sle-15-aarch64"},{"installer_updates":false,"name":"SLE-Module-Certifications-15-SP3-Source-Pool","description":"SLE-Module-Certifications-15-SP3-Source-Pool for sle-15-aarch64","enabled":false,"id":5516,"distro_target":"sle-15-aarch64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Certifications/15-SP3/aarch64/product_source/"}],"online_predecessor_ids":[],"product_class":"MODULE","predecessor_ids":[],"product_type":"module","cpe":"cpe:/o:suse:sle-module-certifications:15:sp3","free":true,"description":"

This module contains the certification packages.

Access to the Certifications Module is included in your SUSE Linux Enterprise subscription. The module has a different lifecycle than SUSE Linux Enterprise itself; please check the Release Notes for further details.

","shortname":"Certifications-Module","arch":"aarch64","eula_url":""},{"offline_predecessor_ids":[],"name":"Certifications Module","former_identifier":"sle-module-certifications","release_type":null,"migration_extra":false,"friendly_name":"Certifications Module 15 SP3 ppc64le","recommended":false,"version":"15.3","extensions":[],"release_stage":"released","id":2387,"identifier":"sle-module-certifications","friendly_version":"15 SP3","eula_url":"","arch":"ppc64le","free":true,"description":"

This module contains the certification packages.

Access to the Certifications Module is included in your SUSE Linux Enterprise subscription. The module has a different lifecycle than SUSE Linux Enterprise itself; please check the Release Notes for further details.

","shortname":"Certifications-Module","product_type":"module","cpe":"cpe:/o:suse:sle-module-certifications:15:sp3","predecessor_ids":[],"product_class":"MODULE","online_predecessor_ids":[],"repositories":[{"id":5517,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Certifications/15-SP3/ppc64le/update/","distro_target":"sle-15-ppc64le","autorefresh":true,"installer_updates":false,"name":"SLE-Module-Certifications-15-SP3-Updates","description":"SLE-Module-Certifications-15-SP3-Updates for sle-15-ppc64le"},{"name":"SLE-Module-Certifications-15-SP3-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-Certifications-15-SP3-Debuginfo-Updates for sle-15-ppc64le","enabled":false,"id":5518,"autorefresh":true,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Certifications/15-SP3/ppc64le/update_debug/"},{"distro_target":"sle-15-ppc64le","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Certifications/15-SP3/ppc64le/product/","enabled":true,"id":5519,"description":"SLE-Module-Certifications-15-SP3-Pool for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-Certifications-15-SP3-Pool"},{"installer_updates":false,"name":"SLE-Module-Certifications-15-SP3-Debuginfo-Pool","description":"SLE-Module-Certifications-15-SP3-Debuginfo-Pool for sle-15-ppc64le","id":5520,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Certifications/15-SP3/ppc64le/product_debug/","distro_target":"sle-15-ppc64le","autorefresh":false},{"id":5521,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Certifications/15-SP3/ppc64le/product_source/","distro_target":"sle-15-ppc64le","autorefresh":false,"installer_updates":false,"name":"SLE-Module-Certifications-15-SP3-Source-Pool","description":"SLE-Module-Certifications-15-SP3-Source-Pool for sle-15-ppc64le"}]},{"online_predecessor_ids":[],"repositories":[{"description":"SLE-Module-Certifications-15-SP3-Updates for sle-15-s390x","name":"SLE-Module-Certifications-15-SP3-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-15-s390x","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Certifications/15-SP3/s390x/update/","enabled":true,"id":5522},{"description":"SLE-Module-Certifications-15-SP3-Debuginfo-Updates for sle-15-s390x","installer_updates":false,"name":"SLE-Module-Certifications-15-SP3-Debuginfo-Updates","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Certifications/15-SP3/s390x/update_debug/","distro_target":"sle-15-s390x","autorefresh":true,"id":5523,"enabled":false},{"installer_updates":false,"name":"SLE-Module-Certifications-15-SP3-Pool","description":"SLE-Module-Certifications-15-SP3-Pool for sle-15-s390x","id":5524,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Certifications/15-SP3/s390x/product/","distro_target":"sle-15-s390x","autorefresh":false},{"autorefresh":false,"distro_target":"sle-15-s390x","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Certifications/15-SP3/s390x/product_debug/","enabled":false,"id":5525,"description":"SLE-Module-Certifications-15-SP3-Debuginfo-Pool for sle-15-s390x","name":"SLE-Module-Certifications-15-SP3-Debuginfo-Pool","installer_updates":false},{"distro_target":"sle-15-s390x","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Certifications/15-SP3/s390x/product_source/","enabled":false,"id":5526,"description":"SLE-Module-Certifications-15-SP3-Source-Pool for sle-15-s390x","installer_updates":false,"name":"SLE-Module-Certifications-15-SP3-Source-Pool"}],"product_class":"MODULE","predecessor_ids":[],"product_type":"module","cpe":"cpe:/o:suse:sle-module-certifications:15:sp3","free":true,"description":"

This module contains the certification packages.

Access to the Certifications Module is included in your SUSE Linux Enterprise subscription. The module has a different lifecycle than SUSE Linux Enterprise itself; please check the Release Notes for further details.

","shortname":"Certifications-Module","arch":"s390x","eula_url":"","friendly_version":"15 SP3","id":2388,"release_stage":"released","identifier":"sle-module-certifications","extensions":[],"version":"15.3","recommended":false,"former_identifier":"sle-module-certifications","release_type":null,"migration_extra":false,"friendly_name":"Certifications Module 15 SP3 s390x","offline_predecessor_ids":[],"name":"Certifications Module"},{"friendly_name":"Certifications Module 15 SP3 x86_64","migration_extra":false,"release_type":null,"former_identifier":"sle-module-certifications","name":"Certifications Module","offline_predecessor_ids":[],"version":"15.3","recommended":false,"release_stage":"released","identifier":"sle-module-certifications","id":2389,"extensions":[],"friendly_version":"15 SP3","arch":"x86_64","eula_url":"","description":"

This module contains the certification packages.

Access to the Certifications Module is included in your SUSE Linux Enterprise subscription. The module has a different lifecycle than SUSE Linux Enterprise itself; please check the Release Notes for further details.

","shortname":"Certifications-Module","free":true,"cpe":"cpe:/o:suse:sle-module-certifications:15:sp3","product_type":"module","online_predecessor_ids":[],"repositories":[{"name":"SLE-Module-Certifications-15-SP3-Updates","installer_updates":false,"description":"SLE-Module-Certifications-15-SP3-Updates for sle-15-x86_64","id":5527,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Certifications/15-SP3/x86_64/update/","autorefresh":true,"distro_target":"sle-15-x86_64"},{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Certifications/15-SP3/x86_64/update_debug/","autorefresh":true,"distro_target":"sle-15-x86_64","id":5528,"enabled":false,"description":"SLE-Module-Certifications-15-SP3-Debuginfo-Updates for sle-15-x86_64","name":"SLE-Module-Certifications-15-SP3-Debuginfo-Updates","installer_updates":false},{"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Certifications/15-SP3/x86_64/product/","enabled":true,"id":5529,"description":"SLE-Module-Certifications-15-SP3-Pool for sle-15-x86_64","name":"SLE-Module-Certifications-15-SP3-Pool","installer_updates":false},{"enabled":false,"id":5530,"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Certifications/15-SP3/x86_64/product_debug/","installer_updates":false,"name":"SLE-Module-Certifications-15-SP3-Debuginfo-Pool","description":"SLE-Module-Certifications-15-SP3-Debuginfo-Pool for sle-15-x86_64"},{"id":5531,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Certifications/15-SP3/x86_64/product_source/","distro_target":"sle-15-x86_64","autorefresh":false,"installer_updates":false,"name":"SLE-Module-Certifications-15-SP3-Source-Pool","description":"SLE-Module-Certifications-15-SP3-Source-Pool for sle-15-x86_64"}],"product_class":"MODULE","predecessor_ids":[]},{"shortname":"Certifications-Module","description":"

This module contains the certification packages.

Access to the Certifications Module is included in your SUSE Linux Enterprise subscription. The module has a different lifecycle than SUSE Linux Enterprise itself; please check the Release Notes for further details.

","free":true,"arch":"aarch64","eula_url":"","online_predecessor_ids":[],"repositories":[{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Certifications/15-SP4/aarch64/update/","distro_target":"sle-15-aarch64","autorefresh":true,"id":5532,"enabled":true,"description":"SLE-Module-Certifications-15-SP4-Updates for sle-15-aarch64","installer_updates":false,"name":"SLE-Module-Certifications-15-SP4-Updates"},{"installer_updates":false,"name":"SLE-Module-Certifications-15-SP4-Debuginfo-Updates","description":"SLE-Module-Certifications-15-SP4-Debuginfo-Updates for sle-15-aarch64","id":5533,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Certifications/15-SP4/aarch64/update_debug/","distro_target":"sle-15-aarch64","autorefresh":true},{"autorefresh":false,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Certifications/15-SP4/aarch64/product/","enabled":true,"id":5534,"description":"SLE-Module-Certifications-15-SP4-Pool for sle-15-aarch64","name":"SLE-Module-Certifications-15-SP4-Pool","installer_updates":false},{"description":"SLE-Module-Certifications-15-SP4-Debuginfo-Pool for sle-15-aarch64","installer_updates":false,"name":"SLE-Module-Certifications-15-SP4-Debuginfo-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Certifications/15-SP4/aarch64/product_debug/","distro_target":"sle-15-aarch64","autorefresh":false,"id":5535,"enabled":false},{"installer_updates":false,"name":"SLE-Module-Certifications-15-SP4-Source-Pool","description":"SLE-Module-Certifications-15-SP4-Source-Pool for sle-15-aarch64","id":5536,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Certifications/15-SP4/aarch64/product_source/","distro_target":"sle-15-aarch64","autorefresh":false}],"product_class":"MODULE","predecessor_ids":[],"cpe":"cpe:/o:suse:sle-module-certifications:15:sp4","product_type":"module","version":"15.4","recommended":false,"friendly_name":"Certifications Module 15 SP4 aarch64","migration_extra":false,"release_type":null,"former_identifier":"sle-module-certifications","name":"Certifications Module","offline_predecessor_ids":[],"friendly_version":"15 SP4","release_stage":"released","id":2390,"identifier":"sle-module-certifications","extensions":[]},{"cpe":"cpe:/o:suse:sle-module-certifications:15:sp4","product_type":"module","online_predecessor_ids":[],"repositories":[{"name":"SLE-Module-Certifications-15-SP4-Updates","installer_updates":false,"description":"SLE-Module-Certifications-15-SP4-Updates for sle-15-ppc64le","enabled":true,"id":5537,"autorefresh":true,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Certifications/15-SP4/ppc64le/update/"},{"autorefresh":true,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Certifications/15-SP4/ppc64le/update_debug/","enabled":false,"id":5538,"description":"SLE-Module-Certifications-15-SP4-Debuginfo-Updates for sle-15-ppc64le","name":"SLE-Module-Certifications-15-SP4-Debuginfo-Updates","installer_updates":false},{"description":"SLE-Module-Certifications-15-SP4-Pool for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-Certifications-15-SP4-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Certifications/15-SP4/ppc64le/product/","distro_target":"sle-15-ppc64le","autorefresh":false,"id":5539,"enabled":true},{"id":5540,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Certifications/15-SP4/ppc64le/product_debug/","distro_target":"sle-15-ppc64le","autorefresh":false,"installer_updates":false,"name":"SLE-Module-Certifications-15-SP4-Debuginfo-Pool","description":"SLE-Module-Certifications-15-SP4-Debuginfo-Pool for sle-15-ppc64le"},{"installer_updates":false,"name":"SLE-Module-Certifications-15-SP4-Source-Pool","description":"SLE-Module-Certifications-15-SP4-Source-Pool for sle-15-ppc64le","enabled":false,"id":5541,"distro_target":"sle-15-ppc64le","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Certifications/15-SP4/ppc64le/product_source/"}],"product_class":"MODULE","predecessor_ids":[],"arch":"ppc64le","eula_url":"","description":"

This module contains the certification packages.

Access to the Certifications Module is included in your SUSE Linux Enterprise subscription. The module has a different lifecycle than SUSE Linux Enterprise itself; please check the Release Notes for further details.

","shortname":"Certifications-Module","free":true,"id":2391,"release_stage":"released","identifier":"sle-module-certifications","extensions":[],"friendly_version":"15 SP4","migration_extra":false,"friendly_name":"Certifications Module 15 SP4 ppc64le","former_identifier":"sle-module-certifications","release_type":null,"name":"Certifications Module","offline_predecessor_ids":[],"version":"15.4","recommended":false},{"former_identifier":"sle-module-certifications","release_type":null,"friendly_name":"Certifications Module 15 SP4 s390x","migration_extra":false,"offline_predecessor_ids":[],"name":"Certifications Module","version":"15.4","recommended":false,"id":2392,"release_stage":"released","identifier":"sle-module-certifications","extensions":[],"friendly_version":"15 SP4","arch":"s390x","eula_url":"","free":true,"shortname":"Certifications-Module","description":"

This module contains the certification packages.

Access to the Certifications Module is included in your SUSE Linux Enterprise subscription. The module has a different lifecycle than SUSE Linux Enterprise itself; please check the Release Notes for further details.

","product_type":"module","cpe":"cpe:/o:suse:sle-module-certifications:15:sp4","online_predecessor_ids":[],"product_class":"MODULE","repositories":[{"installer_updates":false,"name":"SLE-Module-Certifications-15-SP4-Updates","description":"SLE-Module-Certifications-15-SP4-Updates for sle-15-s390x","enabled":true,"id":5542,"distro_target":"sle-15-s390x","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Certifications/15-SP4/s390x/update/"},{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Certifications/15-SP4/s390x/update_debug/","autorefresh":true,"distro_target":"sle-15-s390x","id":5543,"enabled":false,"description":"SLE-Module-Certifications-15-SP4-Debuginfo-Updates for sle-15-s390x","name":"SLE-Module-Certifications-15-SP4-Debuginfo-Updates","installer_updates":false},{"installer_updates":false,"name":"SLE-Module-Certifications-15-SP4-Pool","description":"SLE-Module-Certifications-15-SP4-Pool for sle-15-s390x","id":5544,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Certifications/15-SP4/s390x/product/","distro_target":"sle-15-s390x","autorefresh":false},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Certifications/15-SP4/s390x/product_debug/","distro_target":"sle-15-s390x","autorefresh":false,"id":5545,"enabled":false,"description":"SLE-Module-Certifications-15-SP4-Debuginfo-Pool for sle-15-s390x","installer_updates":false,"name":"SLE-Module-Certifications-15-SP4-Debuginfo-Pool"},{"id":5546,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Certifications/15-SP4/s390x/product_source/","autorefresh":false,"distro_target":"sle-15-s390x","name":"SLE-Module-Certifications-15-SP4-Source-Pool","installer_updates":false,"description":"SLE-Module-Certifications-15-SP4-Source-Pool for sle-15-s390x"}],"predecessor_ids":[]},{"id":2393,"release_stage":"released","identifier":"sle-module-certifications","extensions":[],"friendly_version":"15 SP4","migration_extra":false,"friendly_name":"Certifications Module 15 SP4 x86_64","former_identifier":"sle-module-certifications","release_type":null,"name":"Certifications Module","offline_predecessor_ids":[],"version":"15.4","recommended":false,"cpe":"cpe:/o:suse:sle-module-certifications:15:sp4","product_type":"module","product_class":"MODULE","online_predecessor_ids":[],"repositories":[{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Certifications/15-SP4/x86_64/update/","distro_target":"sle-15-x86_64","autorefresh":true,"id":5547,"enabled":true,"description":"SLE-Module-Certifications-15-SP4-Updates for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Certifications-15-SP4-Updates"},{"id":5548,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Certifications/15-SP4/x86_64/update_debug/","distro_target":"sle-15-x86_64","autorefresh":true,"installer_updates":false,"name":"SLE-Module-Certifications-15-SP4-Debuginfo-Updates","description":"SLE-Module-Certifications-15-SP4-Debuginfo-Updates for sle-15-x86_64"},{"description":"SLE-Module-Certifications-15-SP4-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Certifications-15-SP4-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Certifications/15-SP4/x86_64/product/","distro_target":"sle-15-x86_64","autorefresh":false,"id":5549,"enabled":true},{"name":"SLE-Module-Certifications-15-SP4-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-Certifications-15-SP4-Debuginfo-Pool for sle-15-x86_64","id":5550,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Certifications/15-SP4/x86_64/product_debug/","autorefresh":false,"distro_target":"sle-15-x86_64"},{"description":"SLE-Module-Certifications-15-SP4-Source-Pool for sle-15-x86_64","name":"SLE-Module-Certifications-15-SP4-Source-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Certifications/15-SP4/x86_64/product_source/","autorefresh":false,"distro_target":"sle-15-x86_64","id":5551,"enabled":false}],"predecessor_ids":[],"arch":"x86_64","eula_url":"","description":"

This module contains the certification packages.

Access to the Certifications Module is included in your SUSE Linux Enterprise subscription. The module has a different lifecycle than SUSE Linux Enterprise itself; please check the Release Notes for further details.

","shortname":"Certifications-Module","free":true},{"free":false,"shortname":"Rancher","description":null,"eula_url":"","arch":null,"predecessor_ids":[],"product_class":"RANCHER-X86","online_predecessor_ids":[],"repositories":[],"product_type":"base","cpe":"cpe:/o:suse:rancher:2.6.3","recommended":false,"version":"2.6.3","offline_predecessor_ids":[],"name":"SUSE Rancher","former_identifier":"rancher","release_type":null,"migration_extra":false,"friendly_name":"SUSE Rancher 2.6.3","friendly_version":"2.6.3","extensions":[],"identifier":"rancher","release_stage":"released","id":2394},{"predecessor_ids":[],"online_predecessor_ids":[],"repositories":[],"product_class":"RANCHER-X86","cpe":"cpe:/o:suse:rancher:2.5.12","product_type":"base","shortname":"Rancher","description":null,"free":false,"eula_url":"","arch":null,"friendly_version":"2.5.12","extensions":[],"identifier":"rancher","release_stage":"released","id":2395,"recommended":false,"version":"2.5.12","name":"SUSE Rancher","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"SUSE Rancher 2.5.12","release_type":null,"former_identifier":"rancher"},{"predecessor_ids":[],"online_predecessor_ids":[],"product_class":"LONGHORN-X86","repositories":[],"product_type":"base","cpe":"cpe:/o:suse:longhorn:1.2.3","free":false,"description":null,"shortname":"Longhorn","eula_url":"","arch":null,"friendly_version":"1.2.3","extensions":[],"release_stage":"released","id":2396,"identifier":"longhorn","recommended":false,"version":"1.2.3","offline_predecessor_ids":[],"name":"SUSE Longhorn","former_identifier":"longhorn","release_type":null,"migration_extra":false,"friendly_name":"SUSE Longhorn 1.2.3"},{"cpe":"cpe:/o:suse:longhorn:1.1.3","product_type":"base","predecessor_ids":[],"online_predecessor_ids":[],"repositories":[],"product_class":"LONGHORN-X86","eula_url":"","arch":null,"shortname":"Longhorn","description":null,"free":false,"extensions":[],"identifier":"longhorn","release_stage":"released","id":2397,"friendly_version":"1.1.3","name":"SUSE Longhorn","offline_predecessor_ids":[],"friendly_name":"SUSE Longhorn 1.1.3","migration_extra":false,"former_identifier":"longhorn","release_type":null,"recommended":false,"version":"1.1.3"},{"identifier":"SUSE-MicroOS","release_stage":"released","id":2399,"extensions":[{"version":"15.3","recommended":false,"release_type":null,"former_identifier":"PackageHub","friendly_name":"SUSE Package Hub 15 SP3 aarch64","migration_extra":false,"offline_predecessor_ids":[1532,1810,1912],"name":"SUSE Package Hub","friendly_version":"15 SP3","release_stage":"released","id":2188,"identifier":"PackageHub","extensions":[],"free":true,"shortname":"SUSE-PackageHub-15","description":"SUSE Package Hub is a free of charge module providing access to community maintained packages built to run on SUSE Linux Enterprise Server. Built from the same sources used in the openSUSE distributions, these quality packages provide additional software to what is found in the SUSE Linux Enterprise Server product. Packages from the Package Hub are delivered without L3 support from SUSE. General updates and fixes to the packages in SUSE Package Hub are provided by the openSUSE community based on their discretion, though SUSE will monitor and ensure that any known critical security issues will be addressed. Packages in the Package Hub are approved by SUSE for use with SUSE Linux Enterprise Server 15-SP3 and to not interfere with the supportability of SUSE Linux Enterprise Server, its modules and extensions. For more information about SUSE Package Hub please visit https://packagehub.suse.com.","arch":"aarch64","eula_url":"","online_predecessor_ids":[1740,1868,1947],"product_class":"MODULE","repositories":[{"enabled":true,"id":4849,"distro_target":"sle-15-aarch64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Backports/SLE-15-SP3_aarch64/standard/","installer_updates":false,"name":"SUSE-PackageHub-15-SP3-Backports-Pool","description":"SUSE-PackageHub-15-SP3-Backports-Pool for sle-15-aarch64"},{"enabled":false,"id":4850,"autorefresh":true,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Backports/SLE-15-SP3_aarch64/standard_debug/","name":"SUSE-PackageHub-15-SP3-Backports-Debuginfo","installer_updates":false,"description":"SUSE-PackageHub-15-SP3-Backports-Debuginfo for sle-15-aarch64"},{"name":"SLE-Module-Packagehub-Subpackages15-SP3-Updates","installer_updates":false,"description":"SLE-Module-Packagehub-Subpackages15-SP3-Updates for sle-15-aarch64","id":4851,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP3/aarch64/update/","autorefresh":true,"distro_target":"sle-15-aarch64"},{"description":"SLE-Module-Packagehub-Subpackages15-SP3-Debuginfo-Updates for sle-15-aarch64","name":"SLE-Module-Packagehub-Subpackages15-SP3-Debuginfo-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP3/aarch64/update_debug/","enabled":false,"id":4852},{"installer_updates":false,"name":"SUSE-PackageHub-15-SP3-Pool","description":"SUSE-PackageHub-15-SP3-Pool for sle-15-aarch64","id":4853,"enabled":true,"url":"https://updates.suse.com/SUSE/Backports/SLE-15-SP3_aarch64/product/","distro_target":"sle-15-aarch64","autorefresh":false},{"description":"SLE-Module-Packagehub-Subpackages15-SP3-Pool for sle-15-aarch64","installer_updates":false,"name":"SLE-Module-Packagehub-Subpackages15-SP3-Pool","distro_target":"sle-15-aarch64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP3/aarch64/product/","enabled":true,"id":4854},{"description":"SLE-Module-Packagehub-Subpackages15-SP3-Debuginfo-Pool for sle-15-aarch64","installer_updates":false,"name":"SLE-Module-Packagehub-Subpackages15-SP3-Debuginfo-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP3/aarch64/product_debug/","distro_target":"sle-15-aarch64","autorefresh":false,"id":4855,"enabled":false},{"distro_target":"sle-15-aarch64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP3/aarch64/product_source/","enabled":false,"id":4856,"description":"SLE-Module-Packagehub-Subpackages15-SP3-Source-Pool for sle-15-aarch64","installer_updates":false,"name":"SLE-Module-Packagehub-Subpackages15-SP3-Source-Pool"}],"predecessor_ids":[1740,1868,1947],"product_type":"module","cpe":"cpe:/o:suse:packagehub:15:sp3"}],"friendly_version":"5.2","migration_extra":false,"friendly_name":"SUSE Linux Enterprise Micro 5.2 aarch64","former_identifier":"SUSE-MicroOS","release_type":null,"name":"SUSE Linux Enterprise Micro","offline_predecessor_ids":[],"version":"5.2","recommended":false,"cpe":"cpe:/o:suse:suse-microos:5.2","product_type":"base","product_class":"MICROOS-ARM64","online_predecessor_ids":[2201,2282,2520],"repositories":[{"url":"https://updates.suse.com/SUSE/Updates/SUSE-MicroOS/5.2/aarch64/update/","autorefresh":true,"distro_target":"sle-15-aarch64","id":5552,"enabled":true,"description":"SUSE-MicroOS-5.2-Updates for sle-15-aarch64","name":"SUSE-MicroOS-5.2-Updates","installer_updates":false},{"name":"SUSE-MicroOS-5.2-Debuginfo-Updates","installer_updates":false,"description":"SUSE-MicroOS-5.2-Debuginfo-Updates for sle-15-aarch64","enabled":false,"id":5553,"autorefresh":true,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Updates/SUSE-MicroOS/5.2/aarch64/update_debug/"},{"name":"SUSE-MicroOS-5.2-Pool","installer_updates":false,"description":"SUSE-MicroOS-5.2-Pool for sle-15-aarch64","id":5554,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SUSE-MicroOS/5.2/aarch64/product/","autorefresh":false,"distro_target":"sle-15-aarch64"},{"description":"SUSE-MicroOS-5.2-Debuginfo-Pool for sle-15-aarch64","name":"SUSE-MicroOS-5.2-Debuginfo-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Products/SUSE-MicroOS/5.2/aarch64/product_debug/","enabled":false,"id":5555},{"autorefresh":false,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Products/SUSE-MicroOS/5.2/aarch64/product_source/","enabled":false,"id":5556,"description":"SUSE-MicroOS-5.2-Source-Pool for sle-15-aarch64","name":"SUSE-MicroOS-5.2-Source-Pool","installer_updates":false}],"predecessor_ids":[2201,2282,2520],"arch":"aarch64","eula_url":"","description":"SUSE Linux Enterprise Micro 5.2","shortname":"SUSE Linux Enterprise Micro","free":false},{"offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Micro","release_type":null,"former_identifier":"SUSE-MicroOS","migration_extra":false,"friendly_name":"SUSE Linux Enterprise Micro 5.2 s390x","recommended":false,"version":"5.2","extensions":[{"arch":"s390x","eula_url":"","shortname":"Live-Patching","description":"

SUSE Linux Enterprise Live Patching provides packages to update critical components in SUSE Linux Enterprise. With SUSE Linux Enterprise Live Patching, you can perform critical patching without shutting down your system, reducing the need for planned downtime and increasing service availability.

","free":false,"cpe":"cpe:/o:suse:sle-module-live-patching:15:sp3","product_type":"extension","product_class":"SLE-LP-Z","online_predecessor_ids":[2081],"repositories":[{"description":"SLE-Module-Live-Patching15-SP3-Updates for sle-15-s390x","name":"SLE-Module-Live-Patching15-SP3-Updates","installer_updates":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Live-Patching/15-SP3/s390x/update/","autorefresh":true,"distro_target":"sle-15-s390x","id":4839,"enabled":true},{"installer_updates":false,"name":"SLE-Module-Live-Patching15-SP3-Debuginfo-Updates","description":"SLE-Module-Live-Patching15-SP3-Debuginfo-Updates for sle-15-s390x","id":4840,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Live-Patching/15-SP3/s390x/update_debug/","distro_target":"sle-15-s390x","autorefresh":true},{"description":"SLE-Module-Live-Patching15-SP3-Pool for sle-15-s390x","installer_updates":false,"name":"SLE-Module-Live-Patching15-SP3-Pool","distro_target":"sle-15-s390x","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Live-Patching/15-SP3/s390x/product/","enabled":true,"id":4841},{"installer_updates":false,"name":"SLE-Module-Live-Patching15-SP3-Debuginfo-Pool","description":"SLE-Module-Live-Patching15-SP3-Debuginfo-Pool for sle-15-s390x","id":4842,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Live-Patching/15-SP3/s390x/product_debug/","distro_target":"sle-15-s390x","autorefresh":false},{"name":"SLE-Module-Live-Patching15-SP3-Source-Pool","installer_updates":false,"description":"SLE-Module-Live-Patching15-SP3-Source-Pool for sle-15-s390x","enabled":false,"id":4843,"autorefresh":false,"distro_target":"sle-15-s390x","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Live-Patching/15-SP3/s390x/product_source/"}],"predecessor_ids":[2081],"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Live Patching 15 SP3 s390x","release_type":null,"former_identifier":"sle-module-live-patching","name":"SUSE Linux Enterprise Live Patching","offline_predecessor_ids":[2079,2080],"version":"15.3","recommended":false,"id":2186,"release_stage":"released","identifier":"sle-module-live-patching","extensions":[],"friendly_version":"15 SP3"},{"free":true,"description":"SUSE Package Hub is a free of charge module providing access to community maintained packages built to run on SUSE Linux Enterprise Server. Built from the same sources used in the openSUSE distributions, these quality packages provide additional software to what is found in the SUSE Linux Enterprise Server product. Packages from the Package Hub are delivered without L3 support from SUSE. General updates and fixes to the packages in SUSE Package Hub are provided by the openSUSE community based on their discretion, though SUSE will monitor and ensure that any known critical security issues will be addressed. Packages in the Package Hub are approved by SUSE for use with SUSE Linux Enterprise Server 15-SP3 and to not interfere with the supportability of SUSE Linux Enterprise Server, its modules and extensions. For more information about SUSE Package Hub please visit https://packagehub.suse.com.","shortname":"SUSE-PackageHub-15","arch":"s390x","eula_url":"","online_predecessor_ids":[1742,1870,1949],"product_class":"MODULE","repositories":[{"name":"SUSE-PackageHub-15-SP3-Backports-Pool","installer_updates":false,"description":"SUSE-PackageHub-15-SP3-Backports-Pool for sle-15-s390x","id":4865,"enabled":true,"url":"https://updates.suse.com/SUSE/Backports/SLE-15-SP3_s390x/standard/","autorefresh":false,"distro_target":"sle-15-s390x"},{"description":"SUSE-PackageHub-15-SP3-Backports-Debuginfo for sle-15-s390x","name":"SUSE-PackageHub-15-SP3-Backports-Debuginfo","installer_updates":false,"url":"https://updates.suse.com/SUSE/Backports/SLE-15-SP3_s390x/standard_debug/","autorefresh":true,"distro_target":"sle-15-s390x","id":4866,"enabled":false},{"enabled":true,"id":4867,"autorefresh":true,"distro_target":"sle-15-s390x","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP3/s390x/update/","name":"SLE-Module-Packagehub-Subpackages15-SP3-Updates","installer_updates":false,"description":"SLE-Module-Packagehub-Subpackages15-SP3-Updates for sle-15-s390x"},{"installer_updates":false,"name":"SLE-Module-Packagehub-Subpackages15-SP3-Debuginfo-Updates","description":"SLE-Module-Packagehub-Subpackages15-SP3-Debuginfo-Updates for sle-15-s390x","id":4868,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP3/s390x/update_debug/","distro_target":"sle-15-s390x","autorefresh":true},{"autorefresh":false,"distro_target":"sle-15-s390x","url":"https://updates.suse.com/SUSE/Backports/SLE-15-SP3_s390x/product/","enabled":true,"id":4869,"description":"SUSE-PackageHub-15-SP3-Pool for sle-15-s390x","name":"SUSE-PackageHub-15-SP3-Pool","installer_updates":false},{"id":4870,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP3/s390x/product/","distro_target":"sle-15-s390x","autorefresh":false,"installer_updates":false,"name":"SLE-Module-Packagehub-Subpackages15-SP3-Pool","description":"SLE-Module-Packagehub-Subpackages15-SP3-Pool for sle-15-s390x"},{"description":"SLE-Module-Packagehub-Subpackages15-SP3-Debuginfo-Pool for sle-15-s390x","installer_updates":false,"name":"SLE-Module-Packagehub-Subpackages15-SP3-Debuginfo-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP3/s390x/product_debug/","distro_target":"sle-15-s390x","autorefresh":false,"id":4871,"enabled":false},{"description":"SLE-Module-Packagehub-Subpackages15-SP3-Source-Pool for sle-15-s390x","installer_updates":false,"name":"SLE-Module-Packagehub-Subpackages15-SP3-Source-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP3/s390x/product_source/","distro_target":"sle-15-s390x","autorefresh":false,"id":4872,"enabled":false}],"predecessor_ids":[1742,1870,1949],"product_type":"module","cpe":"cpe:/o:suse:packagehub:15:sp3","version":"15.3","recommended":false,"former_identifier":"PackageHub","release_type":null,"friendly_name":"SUSE Package Hub 15 SP3 s390x","migration_extra":false,"offline_predecessor_ids":[1530,1812,1914],"name":"SUSE Package Hub","friendly_version":"15 SP3","id":2190,"release_stage":"released","identifier":"PackageHub","extensions":[]}],"identifier":"SUSE-MicroOS","release_stage":"released","id":2400,"friendly_version":"5.2","eula_url":"","arch":"s390x","free":false,"description":"SUSE Linux Enterprise Micro 5.2","shortname":"SUSE Linux Enterprise Micro","product_type":"base","cpe":"cpe:/o:suse:suse-microos:5.2","predecessor_ids":[2287],"repositories":[{"url":"https://updates.suse.com/SUSE/Updates/SUSE-MicroOS/5.2/s390x/update/","autorefresh":true,"distro_target":"sle-15-s390x","id":5557,"enabled":true,"description":"SUSE-MicroOS-5.2-Updates for sle-15-s390x","name":"SUSE-MicroOS-5.2-Updates","installer_updates":false},{"id":5558,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SUSE-MicroOS/5.2/s390x/update_debug/","autorefresh":true,"distro_target":"sle-15-s390x","name":"SUSE-MicroOS-5.2-Debuginfo-Updates","installer_updates":false,"description":"SUSE-MicroOS-5.2-Debuginfo-Updates for sle-15-s390x"},{"installer_updates":false,"name":"SUSE-MicroOS-5.2-Pool","description":"SUSE-MicroOS-5.2-Pool for sle-15-s390x","enabled":true,"id":5559,"distro_target":"sle-15-s390x","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SUSE-MicroOS/5.2/s390x/product/"},{"installer_updates":false,"name":"SUSE-MicroOS-5.2-Debuginfo-Pool","description":"SUSE-MicroOS-5.2-Debuginfo-Pool for sle-15-s390x","id":5560,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SUSE-MicroOS/5.2/s390x/product_debug/","distro_target":"sle-15-s390x","autorefresh":false},{"autorefresh":false,"distro_target":"sle-15-s390x","url":"https://updates.suse.com/SUSE/Products/SUSE-MicroOS/5.2/s390x/product_source/","enabled":false,"id":5561,"description":"SUSE-MicroOS-5.2-Source-Pool for sle-15-s390x","name":"SUSE-MicroOS-5.2-Source-Pool","installer_updates":false}],"online_predecessor_ids":[2287],"product_class":"MICROOS-Z"},{"cpe":"cpe:/o:suse:suse-microos:5.2","product_type":"base","predecessor_ids":[2202,2283,2521],"repositories":[{"url":"https://updates.suse.com/SUSE/Updates/SUSE-MicroOS/5.2/x86_64/update/","autorefresh":true,"distro_target":"sle-15-x86_64","id":5562,"enabled":true,"description":"SUSE-MicroOS-5.2-Updates for sle-15-x86_64","name":"SUSE-MicroOS-5.2-Updates","installer_updates":false},{"enabled":false,"id":5563,"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SUSE-MicroOS/5.2/x86_64/update_debug/","name":"SUSE-MicroOS-5.2-Debuginfo-Updates","installer_updates":false,"description":"SUSE-MicroOS-5.2-Debuginfo-Updates for sle-15-x86_64"},{"enabled":true,"id":5564,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SUSE-MicroOS/5.2/x86_64/product/","name":"SUSE-MicroOS-5.2-Pool","installer_updates":false,"description":"SUSE-MicroOS-5.2-Pool for sle-15-x86_64"},{"description":"SUSE-MicroOS-5.2-Debuginfo-Pool for sle-15-x86_64","name":"SUSE-MicroOS-5.2-Debuginfo-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SUSE-MicroOS/5.2/x86_64/product_debug/","autorefresh":false,"distro_target":"sle-15-x86_64","id":5565,"enabled":false},{"installer_updates":false,"name":"SUSE-MicroOS-5.2-Source-Pool","description":"SUSE-MicroOS-5.2-Source-Pool for sle-15-x86_64","enabled":false,"id":5566,"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SUSE-MicroOS/5.2/x86_64/product_source/"}],"online_predecessor_ids":[2202,2283,2521],"product_class":"MICROOS-X86","eula_url":"","arch":"x86_64","description":"SUSE Linux Enterprise Micro 5.2","shortname":"SUSE Linux Enterprise Micro","free":false,"extensions":[{"cpe":"cpe:/o:suse:sle-module-live-patching:15:sp3","product_type":"extension","product_class":"SLE-LP","online_predecessor_ids":[1736,1828,1984],"repositories":[{"name":"SLE-Module-Live-Patching15-SP3-Updates","installer_updates":false,"description":"SLE-Module-Live-Patching15-SP3-Updates for sle-15-x86_64","enabled":true,"id":4844,"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Live-Patching/15-SP3/x86_64/update/"},{"name":"SLE-Module-Live-Patching15-SP3-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-Live-Patching15-SP3-Debuginfo-Updates for sle-15-x86_64","enabled":false,"id":4845,"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Live-Patching/15-SP3/x86_64/update_debug/"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Live-Patching/15-SP3/x86_64/product/","distro_target":"sle-15-x86_64","autorefresh":false,"id":4846,"enabled":true,"description":"SLE-Module-Live-Patching15-SP3-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Live-Patching15-SP3-Pool"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Live-Patching/15-SP3/x86_64/product_debug/","autorefresh":false,"distro_target":"sle-15-x86_64","id":4847,"enabled":false,"description":"SLE-Module-Live-Patching15-SP3-Debuginfo-Pool for sle-15-x86_64","name":"SLE-Module-Live-Patching15-SP3-Debuginfo-Pool","installer_updates":false},{"installer_updates":false,"name":"SLE-Module-Live-Patching15-SP3-Source-Pool","description":"SLE-Module-Live-Patching15-SP3-Source-Pool for sle-15-x86_64","enabled":false,"id":4848,"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Live-Patching/15-SP3/x86_64/product_source/"}],"predecessor_ids":[1736,1828,1984],"arch":"x86_64","eula_url":"","description":"

SUSE Linux Enterprise Live Patching provides packages to update critical components in SUSE Linux Enterprise. With SUSE Linux Enterprise Live Patching, you can perform critical patching without shutting down your system, reducing the need for planned downtime and increasing service availability.

","shortname":"Live-Patching","free":false,"id":2187,"release_stage":"released","identifier":"sle-module-live-patching","extensions":[],"friendly_version":"15 SP3","friendly_name":"SUSE Linux Enterprise Live Patching 15 SP3 x86_64","migration_extra":false,"former_identifier":"sle-module-live-patching","release_type":null,"name":"SUSE Linux Enterprise Live Patching","offline_predecessor_ids":[1536,1757,1888],"version":"15.3","recommended":false},{"friendly_version":"15 SP3","release_stage":"released","identifier":"PackageHub","id":2191,"extensions":[],"version":"15.3","recommended":false,"release_type":null,"former_identifier":"PackageHub","friendly_name":"SUSE Package Hub 15 SP3 x86_64","migration_extra":false,"offline_predecessor_ids":[1529,1813,1915],"name":"SUSE Package Hub","repositories":[{"enabled":true,"id":4873,"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Backports/SLE-15-SP3_x86_64/standard/","installer_updates":false,"name":"SUSE-PackageHub-15-SP3-Backports-Pool","description":"SUSE-PackageHub-15-SP3-Backports-Pool for sle-15-x86_64"},{"enabled":false,"id":4874,"distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Backports/SLE-15-SP3_x86_64/standard_debug/","installer_updates":false,"name":"SUSE-PackageHub-15-SP3-Backports-Debuginfo","description":"SUSE-PackageHub-15-SP3-Backports-Debuginfo for sle-15-x86_64"},{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP3/x86_64/update/","distro_target":"sle-15-x86_64","autorefresh":true,"id":4875,"enabled":true,"description":"SLE-Module-Packagehub-Subpackages15-SP3-Updates for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Packagehub-Subpackages15-SP3-Updates"},{"name":"SLE-Module-Packagehub-Subpackages15-SP3-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-Packagehub-Subpackages15-SP3-Debuginfo-Updates for sle-15-x86_64","enabled":false,"id":4876,"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP3/x86_64/update_debug/"},{"name":"SUSE-PackageHub-15-SP3-Pool","installer_updates":false,"description":"SUSE-PackageHub-15-SP3-Pool for sle-15-x86_64","enabled":true,"id":4877,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Backports/SLE-15-SP3_x86_64/product/"},{"name":"SLE-Module-Packagehub-Subpackages15-SP3-Pool","installer_updates":false,"description":"SLE-Module-Packagehub-Subpackages15-SP3-Pool for sle-15-x86_64","id":4878,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP3/x86_64/product/","autorefresh":false,"distro_target":"sle-15-x86_64"},{"enabled":false,"id":4879,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP3/x86_64/product_debug/","name":"SLE-Module-Packagehub-Subpackages15-SP3-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-Packagehub-Subpackages15-SP3-Debuginfo-Pool for sle-15-x86_64"},{"installer_updates":false,"name":"SLE-Module-Packagehub-Subpackages15-SP3-Source-Pool","description":"SLE-Module-Packagehub-Subpackages15-SP3-Source-Pool for sle-15-x86_64","enabled":false,"id":4880,"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP3/x86_64/product_source/"}],"online_predecessor_ids":[1743,1871,1950],"product_class":"MODULE","predecessor_ids":[1743,1871,1950],"product_type":"module","cpe":"cpe:/o:suse:packagehub:15:sp3","free":true,"shortname":"SUSE-PackageHub-15","description":"SUSE Package Hub is a free of charge module providing access to community maintained packages built to run on SUSE Linux Enterprise Server. Built from the same sources used in the openSUSE distributions, these quality packages provide additional software to what is found in the SUSE Linux Enterprise Server product. Packages from the Package Hub are delivered without L3 support from SUSE. General updates and fixes to the packages in SUSE Package Hub are provided by the openSUSE community based on their discretion, though SUSE will monitor and ensure that any known critical security issues will be addressed. Packages in the Package Hub are approved by SUSE for use with SUSE Linux Enterprise Server 15-SP3 and to not interfere with the supportability of SUSE Linux Enterprise Server, its modules and extensions. For more information about SUSE Package Hub please visit https://packagehub.suse.com.","arch":"x86_64","eula_url":""}],"id":2401,"release_stage":"released","identifier":"SUSE-MicroOS","friendly_version":"5.2","name":"SUSE Linux Enterprise Micro","offline_predecessor_ids":[],"friendly_name":"SUSE Linux Enterprise Micro 5.2 x86_64","migration_extra":false,"release_type":null,"former_identifier":"SUSE-MicroOS","recommended":false,"version":"5.2"},{"product_type":"module","cpe":"cpe:/o:suse:sle-module-python3:15:sp4","predecessor_ids":[],"online_predecessor_ids":[],"repositories":[{"description":"SLE-Module-Python3-15-SP4-Updates for sle-15-aarch64","installer_updates":false,"name":"SLE-Module-Python3-15-SP4-Updates","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Python3/15-SP4/aarch64/update/","distro_target":"sle-15-aarch64","autorefresh":true,"id":5567,"enabled":true},{"distro_target":"sle-15-aarch64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Python3/15-SP4/aarch64/update_debug/","enabled":false,"id":5568,"description":"SLE-Module-Python3-15-SP4-Debuginfo-Updates for sle-15-aarch64","installer_updates":false,"name":"SLE-Module-Python3-15-SP4-Debuginfo-Updates"},{"installer_updates":false,"name":"SLE-Module-Python3-15-SP4-Pool","description":"SLE-Module-Python3-15-SP4-Pool for sle-15-aarch64","enabled":true,"id":5569,"distro_target":"sle-15-aarch64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Python3/15-SP4/aarch64/product/"},{"description":"SLE-Module-Python3-15-SP4-Debuginfo-Pool for sle-15-aarch64","name":"SLE-Module-Python3-15-SP4-Debuginfo-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Python3/15-SP4/aarch64/product_debug/","autorefresh":false,"distro_target":"sle-15-aarch64","id":5570,"enabled":false},{"description":"SLE-Module-Python3-15-SP4-Source-Pool for sle-15-aarch64","name":"SLE-Module-Python3-15-SP4-Source-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Python3/15-SP4/aarch64/product_source/","autorefresh":false,"distro_target":"sle-15-aarch64","id":5571,"enabled":false}],"product_class":"MODULE","eula_url":"","arch":"aarch64","free":true,"shortname":"Python 3-Module","description":"

This module contains the Python 3 packages.

Access to the Python 3 Module is included in your SUSE Linux Enterprise subscription. The module has a different lifecycle than SUSE Linux Enterprise itself; please check the Release Notes for further details.

","extensions":[],"id":2402,"release_stage":"released","identifier":"sle-module-python3","friendly_version":"15 SP4","offline_predecessor_ids":[],"name":"Python 3 Module","former_identifier":"sle-module-python3","release_type":null,"migration_extra":false,"friendly_name":"Python 3 Module 15 SP4 aarch64","recommended":false,"version":"15.4"},{"friendly_version":"15 SP4","release_stage":"released","id":2403,"identifier":"sle-module-python3","extensions":[],"version":"15.4","recommended":false,"migration_extra":false,"friendly_name":"Python 3 Module 15 SP4 ppc64le","former_identifier":"sle-module-python3","release_type":null,"name":"Python 3 Module","offline_predecessor_ids":[],"product_class":"MODULE","online_predecessor_ids":[],"repositories":[{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Python3/15-SP4/ppc64le/update/","distro_target":"sle-15-ppc64le","autorefresh":true,"id":5572,"enabled":true,"description":"SLE-Module-Python3-15-SP4-Updates for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-Python3-15-SP4-Updates"},{"description":"SLE-Module-Python3-15-SP4-Debuginfo-Updates for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-Python3-15-SP4-Debuginfo-Updates","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Python3/15-SP4/ppc64le/update_debug/","distro_target":"sle-15-ppc64le","autorefresh":true,"id":5573,"enabled":false},{"id":5574,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Python3/15-SP4/ppc64le/product/","distro_target":"sle-15-ppc64le","autorefresh":false,"installer_updates":false,"name":"SLE-Module-Python3-15-SP4-Pool","description":"SLE-Module-Python3-15-SP4-Pool for sle-15-ppc64le"},{"description":"SLE-Module-Python3-15-SP4-Debuginfo-Pool for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-Python3-15-SP4-Debuginfo-Pool","distro_target":"sle-15-ppc64le","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Python3/15-SP4/ppc64le/product_debug/","enabled":false,"id":5575},{"description":"SLE-Module-Python3-15-SP4-Source-Pool for sle-15-ppc64le","name":"SLE-Module-Python3-15-SP4-Source-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Python3/15-SP4/ppc64le/product_source/","enabled":false,"id":5576}],"predecessor_ids":[],"cpe":"cpe:/o:suse:sle-module-python3:15:sp4","product_type":"module","shortname":"Python 3-Module","description":"

This module contains the Python 3 packages.

Access to the Python 3 Module is included in your SUSE Linux Enterprise subscription. The module has a different lifecycle than SUSE Linux Enterprise itself; please check the Release Notes for further details.

","free":true,"arch":"ppc64le","eula_url":""},{"shortname":"Python 3-Module","description":"

This module contains the Python 3 packages.

Access to the Python 3 Module is included in your SUSE Linux Enterprise subscription. The module has a different lifecycle than SUSE Linux Enterprise itself; please check the Release Notes for further details.

","free":true,"eula_url":"","arch":"s390x","predecessor_ids":[],"product_class":"MODULE","online_predecessor_ids":[],"repositories":[{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Python3/15-SP4/s390x/update/","distro_target":"sle-15-s390x","autorefresh":true,"id":5577,"enabled":true,"description":"SLE-Module-Python3-15-SP4-Updates for sle-15-s390x","installer_updates":false,"name":"SLE-Module-Python3-15-SP4-Updates"},{"description":"SLE-Module-Python3-15-SP4-Debuginfo-Updates for sle-15-s390x","name":"SLE-Module-Python3-15-SP4-Debuginfo-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-15-s390x","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Python3/15-SP4/s390x/update_debug/","enabled":false,"id":5578},{"id":5579,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Python3/15-SP4/s390x/product/","autorefresh":false,"distro_target":"sle-15-s390x","name":"SLE-Module-Python3-15-SP4-Pool","installer_updates":false,"description":"SLE-Module-Python3-15-SP4-Pool for sle-15-s390x"},{"description":"SLE-Module-Python3-15-SP4-Debuginfo-Pool for sle-15-s390x","name":"SLE-Module-Python3-15-SP4-Debuginfo-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Python3/15-SP4/s390x/product_debug/","autorefresh":false,"distro_target":"sle-15-s390x","id":5580,"enabled":false},{"description":"SLE-Module-Python3-15-SP4-Source-Pool for sle-15-s390x","installer_updates":false,"name":"SLE-Module-Python3-15-SP4-Source-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Python3/15-SP4/s390x/product_source/","distro_target":"sle-15-s390x","autorefresh":false,"id":5581,"enabled":false}],"cpe":"cpe:/o:suse:sle-module-python3:15:sp4","product_type":"module","recommended":false,"version":"15.4","name":"Python 3 Module","offline_predecessor_ids":[],"friendly_name":"Python 3 Module 15 SP4 s390x","migration_extra":false,"release_type":null,"former_identifier":"sle-module-python3","friendly_version":"15 SP4","extensions":[],"release_stage":"released","identifier":"sle-module-python3","id":2404},{"extensions":[],"release_stage":"released","identifier":"sle-module-python3","id":2405,"friendly_version":"15 SP4","offline_predecessor_ids":[],"name":"Python 3 Module","former_identifier":"sle-module-python3","release_type":null,"migration_extra":false,"friendly_name":"Python 3 Module 15 SP4 x86_64","recommended":false,"version":"15.4","product_type":"module","cpe":"cpe:/o:suse:sle-module-python3:15:sp4","predecessor_ids":[],"repositories":[{"id":5582,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Python3/15-SP4/x86_64/update/","autorefresh":true,"distro_target":"sle-15-x86_64","name":"SLE-Module-Python3-15-SP4-Updates","installer_updates":false,"description":"SLE-Module-Python3-15-SP4-Updates for sle-15-x86_64"},{"installer_updates":false,"name":"SLE-Module-Python3-15-SP4-Debuginfo-Updates","description":"SLE-Module-Python3-15-SP4-Debuginfo-Updates for sle-15-x86_64","id":5583,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Python3/15-SP4/x86_64/update_debug/","distro_target":"sle-15-x86_64","autorefresh":true},{"id":5584,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Python3/15-SP4/x86_64/product/","autorefresh":false,"distro_target":"sle-15-x86_64","name":"SLE-Module-Python3-15-SP4-Pool","installer_updates":false,"description":"SLE-Module-Python3-15-SP4-Pool for sle-15-x86_64"},{"name":"SLE-Module-Python3-15-SP4-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-Python3-15-SP4-Debuginfo-Pool for sle-15-x86_64","enabled":false,"id":5585,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Python3/15-SP4/x86_64/product_debug/"},{"installer_updates":false,"name":"SLE-Module-Python3-15-SP4-Source-Pool","description":"SLE-Module-Python3-15-SP4-Source-Pool for sle-15-x86_64","enabled":false,"id":5586,"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Python3/15-SP4/x86_64/product_source/"}],"online_predecessor_ids":[],"product_class":"MODULE","eula_url":"","arch":"x86_64","free":true,"description":"

This module contains the Python 3 packages.

Access to the Python 3 Module is included in your SUSE Linux Enterprise subscription. The module has a different lifecycle than SUSE Linux Enterprise itself; please check the Release Notes for further details.

","shortname":"Python 3-Module"},{"extensions":[],"identifier":"Leap","release_stage":"released","id":2406,"friendly_version":"15.4","name":"openSUSE Leap","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"openSUSE Leap 15.4 aarch64","release_type":null,"former_identifier":"Leap","recommended":false,"version":"15.4","cpe":"cpe:/o:opensuse:leap:15.4","product_type":"base","predecessor_ids":[2233],"repositories":[{"enabled":true,"id":5588,"distro_target":null,"autorefresh":true,"url":"http://download.opensuse.org/update/leap/15.4/oss/","installer_updates":false,"name":"openSUSE-Leap-15.4-Updates","description":"openSUSE-Leap-15.4-Updates"},{"installer_updates":false,"name":"openSUSE-Leap-15.4-NonOss-Updates","description":"openSUSE-Leap-15.4-NonOss-Updates","enabled":false,"id":5589,"distro_target":null,"autorefresh":true,"url":"http://download.opensuse.org/update/leap/15.4/non-oss/"},{"installer_updates":false,"name":"SLE-15-SP4-Updates","description":"SLE-15-SP4-Updates","enabled":true,"id":5591,"distro_target":null,"autorefresh":true,"url":"http://download.opensuse.org/update/leap/15.4/sle/"},{"description":"openSUSE-Leap-15.4-Pool","name":"openSUSE-Leap-15.4-Pool","installer_updates":false,"url":"http://download.opensuse.org/distribution/leap/15.4/repo/oss/","autorefresh":false,"distro_target":null,"id":5592,"enabled":true},{"distro_target":null,"autorefresh":false,"url":"http://download.opensuse.org/distribution/leap/15.4/repo/non-oss/","enabled":false,"id":5593,"description":"openSUSE-Leap-15.4-NonOss-Pool","installer_updates":false,"name":"openSUSE-Leap-15.4-NonOss-Pool"},{"distro_target":null,"autorefresh":true,"url":"http://download.opensuse.org/update/leap/15.4/backports/","enabled":true,"id":5597,"description":"openSUSE-Backports-15.4-Updates","installer_updates":false,"name":"openSUSE-Backports-15.4-Updates"}],"online_predecessor_ids":[2233],"product_class":"OPENSUSE","eula_url":"","arch":"aarch64","description":"openSUSE Leap 15.4.","shortname":"openSUSE Leap","free":false},{"description":"openSUSE Leap 15.4.","shortname":"openSUSE Leap","free":false,"arch":"ppc64le","eula_url":"","repositories":[{"enabled":true,"id":5588,"distro_target":null,"autorefresh":true,"url":"http://download.opensuse.org/update/leap/15.4/oss/","installer_updates":false,"name":"openSUSE-Leap-15.4-Updates","description":"openSUSE-Leap-15.4-Updates"},{"enabled":false,"id":5589,"distro_target":null,"autorefresh":true,"url":"http://download.opensuse.org/update/leap/15.4/non-oss/","installer_updates":false,"name":"openSUSE-Leap-15.4-NonOss-Updates","description":"openSUSE-Leap-15.4-NonOss-Updates"},{"installer_updates":false,"name":"SLE-15-SP4-Updates","description":"SLE-15-SP4-Updates","enabled":true,"id":5591,"distro_target":null,"autorefresh":true,"url":"http://download.opensuse.org/update/leap/15.4/sle/"},{"description":"openSUSE-Leap-15.4-Pool","installer_updates":false,"name":"openSUSE-Leap-15.4-Pool","url":"http://download.opensuse.org/distribution/leap/15.4/repo/oss/","distro_target":null,"autorefresh":false,"id":5592,"enabled":true},{"url":"http://download.opensuse.org/distribution/leap/15.4/repo/non-oss/","distro_target":null,"autorefresh":false,"id":5593,"enabled":false,"description":"openSUSE-Leap-15.4-NonOss-Pool","installer_updates":false,"name":"openSUSE-Leap-15.4-NonOss-Pool"},{"url":"http://download.opensuse.org/update/leap/15.4/backports/","autorefresh":true,"distro_target":null,"id":5597,"enabled":true,"description":"openSUSE-Backports-15.4-Updates","name":"openSUSE-Backports-15.4-Updates","installer_updates":false}],"online_predecessor_ids":[2234],"product_class":"OPENSUSE","predecessor_ids":[2234],"cpe":"cpe:/o:opensuse:leap:15.4","product_type":"base","version":"15.4","recommended":false,"friendly_name":"openSUSE Leap 15.4 ppc64le","migration_extra":false,"former_identifier":"Leap","release_type":null,"name":"openSUSE Leap","offline_predecessor_ids":[],"friendly_version":"15.4","release_stage":"released","id":2407,"identifier":"Leap","extensions":[]},{"friendly_version":"15.4","extensions":[],"release_stage":"released","id":2408,"identifier":"Leap","recommended":false,"version":"15.4","name":"openSUSE Leap","offline_predecessor_ids":[],"friendly_name":"openSUSE Leap 15.4 s390x","migration_extra":false,"former_identifier":"Leap","release_type":null,"predecessor_ids":[2235],"online_predecessor_ids":[2235],"product_class":"OPENSUSE","repositories":[{"enabled":true,"id":5588,"autorefresh":true,"distro_target":null,"url":"http://download.opensuse.org/update/leap/15.4/oss/","name":"openSUSE-Leap-15.4-Updates","installer_updates":false,"description":"openSUSE-Leap-15.4-Updates"},{"id":5589,"enabled":false,"url":"http://download.opensuse.org/update/leap/15.4/non-oss/","autorefresh":true,"distro_target":null,"name":"openSUSE-Leap-15.4-NonOss-Updates","installer_updates":false,"description":"openSUSE-Leap-15.4-NonOss-Updates"},{"description":"SLE-15-SP4-Updates","installer_updates":false,"name":"SLE-15-SP4-Updates","distro_target":null,"autorefresh":true,"url":"http://download.opensuse.org/update/leap/15.4/sle/","enabled":true,"id":5591},{"id":5592,"enabled":true,"url":"http://download.opensuse.org/distribution/leap/15.4/repo/oss/","autorefresh":false,"distro_target":null,"name":"openSUSE-Leap-15.4-Pool","installer_updates":false,"description":"openSUSE-Leap-15.4-Pool"},{"id":5593,"enabled":false,"url":"http://download.opensuse.org/distribution/leap/15.4/repo/non-oss/","distro_target":null,"autorefresh":false,"installer_updates":false,"name":"openSUSE-Leap-15.4-NonOss-Pool","description":"openSUSE-Leap-15.4-NonOss-Pool"},{"name":"openSUSE-Backports-15.4-Updates","installer_updates":false,"description":"openSUSE-Backports-15.4-Updates","id":5597,"enabled":true,"url":"http://download.opensuse.org/update/leap/15.4/backports/","autorefresh":true,"distro_target":null}],"cpe":"cpe:/o:opensuse:leap:15.4","product_type":"base","shortname":"openSUSE Leap","description":"openSUSE Leap 15.4.","free":false,"eula_url":"","arch":"s390x"},{"product_type":"base","cpe":"cpe:/o:opensuse:leap:15.4","predecessor_ids":[2236],"online_predecessor_ids":[2236],"product_class":"OPENSUSE","repositories":[{"name":"openSUSE-Leap-15.4-Updates","installer_updates":false,"description":"openSUSE-Leap-15.4-Updates","enabled":true,"id":5588,"autorefresh":true,"distro_target":null,"url":"http://download.opensuse.org/update/leap/15.4/oss/"},{"autorefresh":true,"distro_target":null,"url":"http://download.opensuse.org/update/leap/15.4/non-oss/","enabled":false,"id":5589,"description":"openSUSE-Leap-15.4-NonOss-Updates","name":"openSUSE-Leap-15.4-NonOss-Updates","installer_updates":false},{"url":"http://download.opensuse.org/update/leap/15.4/sle/","autorefresh":true,"distro_target":null,"id":5591,"enabled":true,"description":"SLE-15-SP4-Updates","name":"SLE-15-SP4-Updates","installer_updates":false},{"url":"http://download.opensuse.org/distribution/leap/15.4/repo/oss/","autorefresh":false,"distro_target":null,"id":5592,"enabled":true,"description":"openSUSE-Leap-15.4-Pool","name":"openSUSE-Leap-15.4-Pool","installer_updates":false},{"description":"openSUSE-Leap-15.4-NonOss-Pool","installer_updates":false,"name":"openSUSE-Leap-15.4-NonOss-Pool","distro_target":null,"autorefresh":false,"url":"http://download.opensuse.org/distribution/leap/15.4/repo/non-oss/","enabled":false,"id":5593},{"installer_updates":false,"name":"openSUSE-Backports-15.4-Updates","description":"openSUSE-Backports-15.4-Updates","enabled":true,"id":5597,"distro_target":null,"autorefresh":true,"url":"http://download.opensuse.org/update/leap/15.4/backports/"}],"eula_url":"","arch":"x86_64","free":false,"shortname":"openSUSE Leap","description":"openSUSE Leap 15.4.","extensions":[],"id":2409,"release_stage":"released","identifier":"Leap","friendly_version":"15.4","offline_predecessor_ids":[],"name":"openSUSE Leap","release_type":null,"former_identifier":"Leap","friendly_name":"openSUSE Leap 15.4 x86_64","migration_extra":false,"recommended":false,"version":"15.4"},{"extensions":[],"release_stage":"released","identifier":"debian-manager-client","id":2410,"friendly_version":"11","name":"SUSE Manager Client Tools for Debian","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"SUSE Manager Client Tools for Debian 11 amd64","release_type":null,"former_identifier":"debian-manager-client","recommended":false,"version":"11","cpe":"cpe:/o:suse:debian-manager-client:11","product_type":"extension","predecessor_ids":[],"online_predecessor_ids":[],"repositories":[{"distro_target":"amd64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/Debian/11-CLIENT-TOOLS/x86_64/update/","enabled":true,"id":5594,"description":"Debian-11-SUSE-Manager-Tools for amd64","installer_updates":false,"name":"Debian-11-SUSE-Manager-Tools"}],"product_class":"SLE-M-T","eula_url":"","arch":"amd64","description":"SUSE Manager Client Tools for Debian 11","shortname":"Manager-Tools","free":false},{"online_predecessor_ids":[],"product_class":"SLE-M-T-ALPHA","repositories":[{"description":"Debian-11-SUSE-Manager-Tools-Beta for amd64","installer_updates":false,"name":"Debian-11-SUSE-Manager-Tools-Beta","distro_target":"amd64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/Debian/11-CLIENT-TOOLS-BETA/x86_64/update/","enabled":true,"id":5595}],"predecessor_ids":[],"product_type":"extension","cpe":"cpe:/o:suse:debian-manager-client-beta:11","free":false,"description":"SUSE Manager Client Tools Beta for Debian 11","shortname":"Manager-Tools-Beta","arch":"amd64","eula_url":"","friendly_version":"11","release_stage":"alpha","id":2411,"identifier":"debian-manager-client-beta","extensions":[],"version":"11","recommended":false,"release_type":null,"former_identifier":"debian-manager-client-beta","migration_extra":false,"friendly_name":"SUSE Manager Client Tools Beta for Debian 11 amd64 (ALPHA)","offline_predecessor_ids":[],"name":"SUSE Manager Client Tools Beta for Debian"},{"extensions":[],"id":2412,"release_stage":"beta","identifier":"SLE-Micro-Rancher","friendly_version":"5.2","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Micro for Rancher","former_identifier":"SLE-Micro-Rancher","release_type":null,"friendly_name":"SUSE Linux Enterprise Micro for Rancher 5.2 aarch64 (BETA)","migration_extra":false,"recommended":false,"version":"5.2","product_type":"base","cpe":"cpe:/o:suse:sle-micro-rancher:5.2","predecessor_ids":[],"product_class":"MICROOS-ARM64-BETA","online_predecessor_ids":[],"repositories":[{"description":"SUSE-MicroOS-5.2-Updates for sle-15-aarch64","name":"SUSE-MicroOS-5.2-Updates","installer_updates":false,"url":"https://updates.suse.com/SUSE/Updates/SUSE-MicroOS/5.2/aarch64/update/","autorefresh":true,"distro_target":"sle-15-aarch64","id":5552,"enabled":true},{"distro_target":"sle-15-aarch64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SUSE-MicroOS/5.2/aarch64/update_debug/","enabled":false,"id":5553,"description":"SUSE-MicroOS-5.2-Debuginfo-Updates for sle-15-aarch64","installer_updates":false,"name":"SUSE-MicroOS-5.2-Debuginfo-Updates"},{"id":5554,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SUSE-MicroOS/5.2/aarch64/product/","distro_target":"sle-15-aarch64","autorefresh":false,"installer_updates":false,"name":"SUSE-MicroOS-5.2-Pool","description":"SUSE-MicroOS-5.2-Pool for sle-15-aarch64"},{"description":"SUSE-MicroOS-5.2-Debuginfo-Pool for sle-15-aarch64","name":"SUSE-MicroOS-5.2-Debuginfo-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Products/SUSE-MicroOS/5.2/aarch64/product_debug/","enabled":false,"id":5555},{"description":"SUSE-MicroOS-5.2-Source-Pool for sle-15-aarch64","name":"SUSE-MicroOS-5.2-Source-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Products/SUSE-MicroOS/5.2/aarch64/product_source/","enabled":false,"id":5556}],"eula_url":"","arch":"aarch64","free":false,"description":"SUSE Linux Enterprise Micro for Rancher 5.2","shortname":"SUSE Linux Enterprise Micro for Rancher"},{"friendly_version":"5.2","identifier":"SLE-Micro-Rancher","release_stage":"beta","id":2413,"extensions":[],"version":"5.2","recommended":false,"release_type":null,"former_identifier":"SLE-Micro-Rancher","friendly_name":"SUSE Linux Enterprise Micro for Rancher 5.2 x86_64 (BETA)","migration_extra":false,"offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Micro for Rancher","repositories":[{"enabled":true,"id":5562,"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SUSE-MicroOS/5.2/x86_64/update/","name":"SUSE-MicroOS-5.2-Updates","installer_updates":false,"description":"SUSE-MicroOS-5.2-Updates for sle-15-x86_64"},{"description":"SUSE-MicroOS-5.2-Debuginfo-Updates for sle-15-x86_64","installer_updates":false,"name":"SUSE-MicroOS-5.2-Debuginfo-Updates","url":"https://updates.suse.com/SUSE/Updates/SUSE-MicroOS/5.2/x86_64/update_debug/","distro_target":"sle-15-x86_64","autorefresh":true,"id":5563,"enabled":false},{"description":"SUSE-MicroOS-5.2-Pool for sle-15-x86_64","name":"SUSE-MicroOS-5.2-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SUSE-MicroOS/5.2/x86_64/product/","enabled":true,"id":5564},{"name":"SUSE-MicroOS-5.2-Debuginfo-Pool","installer_updates":false,"description":"SUSE-MicroOS-5.2-Debuginfo-Pool for sle-15-x86_64","id":5565,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SUSE-MicroOS/5.2/x86_64/product_debug/","autorefresh":false,"distro_target":"sle-15-x86_64"},{"id":5566,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SUSE-MicroOS/5.2/x86_64/product_source/","distro_target":"sle-15-x86_64","autorefresh":false,"installer_updates":false,"name":"SUSE-MicroOS-5.2-Source-Pool","description":"SUSE-MicroOS-5.2-Source-Pool for sle-15-x86_64"}],"online_predecessor_ids":[],"product_class":"MICROOS-X86-BETA","predecessor_ids":[],"product_type":"base","cpe":"cpe:/o:suse:sle-micro-rancher:5.2","free":false,"shortname":"SUSE Linux Enterprise Micro for Rancher","description":"SUSE Linux Enterprise Micro for Rancher 5.2","arch":"x86_64","eula_url":""},{"free":false,"shortname":"SES7.1","description":"SUSE Enterprise Storage 7.1 Pacific for SUSE Linux Enterprise Server 15 SP3, powered by Ceph.","eula_url":"","arch":"aarch64","predecessor_ids":[1643,2120],"online_predecessor_ids":[1643,2120],"product_class":"SES-ARM64","repositories":[{"installer_updates":false,"name":"SUSE-Enterprise-Storage-7.1-Updates","description":"SUSE-Enterprise-Storage-7.1-Updates for sle-15-aarch64","id":5598,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/Storage/7.1/aarch64/update/","distro_target":"sle-15-aarch64","autorefresh":true},{"installer_updates":false,"name":"SUSE-Enterprise-Storage-7.1-Debuginfo-Updates","description":"SUSE-Enterprise-Storage-7.1-Debuginfo-Updates for sle-15-aarch64","id":5599,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/Storage/7.1/aarch64/update_debug/","distro_target":"sle-15-aarch64","autorefresh":true},{"distro_target":"sle-15-aarch64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/Storage/7.1/aarch64/product/","enabled":true,"id":5600,"description":"SUSE-Enterprise-Storage-7.1-Pool for sle-15-aarch64","installer_updates":false,"name":"SUSE-Enterprise-Storage-7.1-Pool"},{"description":"SUSE-Enterprise-Storage-7.1-Debuginfo-Pool for sle-15-aarch64","name":"SUSE-Enterprise-Storage-7.1-Debuginfo-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/Storage/7.1/aarch64/product_debug/","autorefresh":false,"distro_target":"sle-15-aarch64","id":5601,"enabled":false},{"enabled":false,"id":5602,"autorefresh":false,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Products/Storage/7.1/aarch64/product_source/","name":"SUSE-Enterprise-Storage-7.1-Source-Pool","installer_updates":false,"description":"SUSE-Enterprise-Storage-7.1-Source-Pool for sle-15-aarch64"}],"product_type":"extension","cpe":"cpe:/o:suse:ses:7.1","recommended":false,"version":"7.1","offline_predecessor_ids":[],"name":"SUSE Enterprise Storage","release_type":null,"former_identifier":"ses","migration_extra":false,"friendly_name":"SUSE Enterprise Storage 7.1 aarch64","friendly_version":"7.1","extensions":[],"release_stage":"released","id":2414,"identifier":"ses"},{"extensions":[],"id":2415,"release_stage":"released","identifier":"ses","friendly_version":"7.1","name":"SUSE Enterprise Storage","offline_predecessor_ids":[],"friendly_name":"SUSE Enterprise Storage 7.1 x86_64","migration_extra":false,"former_identifier":"ses","release_type":null,"recommended":false,"version":"7.1","cpe":"cpe:/o:suse:ses:7.1","product_type":"extension","predecessor_ids":[1644,2121],"online_predecessor_ids":[1644,2121],"product_class":"SES","repositories":[{"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/Storage/7.1/x86_64/update/","enabled":true,"id":5603,"description":"SUSE-Enterprise-Storage-7.1-Updates for sle-15-x86_64","name":"SUSE-Enterprise-Storage-7.1-Updates","installer_updates":false},{"installer_updates":false,"name":"SUSE-Enterprise-Storage-7.1-Debuginfo-Updates","description":"SUSE-Enterprise-Storage-7.1-Debuginfo-Updates for sle-15-x86_64","enabled":false,"id":5604,"distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/Storage/7.1/x86_64/update_debug/"},{"url":"https://updates.suse.com/SUSE/Products/Storage/7.1/x86_64/product/","distro_target":"sle-15-x86_64","autorefresh":false,"id":5605,"enabled":true,"description":"SUSE-Enterprise-Storage-7.1-Pool for sle-15-x86_64","installer_updates":false,"name":"SUSE-Enterprise-Storage-7.1-Pool"},{"description":"SUSE-Enterprise-Storage-7.1-Debuginfo-Pool for sle-15-x86_64","installer_updates":false,"name":"SUSE-Enterprise-Storage-7.1-Debuginfo-Pool","distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/Storage/7.1/x86_64/product_debug/","enabled":false,"id":5606},{"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/Storage/7.1/x86_64/product_source/","enabled":false,"id":5607,"description":"SUSE-Enterprise-Storage-7.1-Source-Pool for sle-15-x86_64","name":"SUSE-Enterprise-Storage-7.1-Source-Pool","installer_updates":false}],"eula_url":"","arch":"x86_64","description":"SUSE Enterprise Storage 7.1 Pacific for SUSE Linux Enterprise Server 15 SP3, powered by Ceph.","shortname":"SES7.1","free":false},{"migration_extra":false,"friendly_name":"SUSE Rancher 2.6.4","former_identifier":"rancher","release_type":null,"name":"SUSE Rancher","offline_predecessor_ids":[],"version":"2.6.4","recommended":false,"id":2416,"release_stage":"released","identifier":"rancher","extensions":[],"friendly_version":"2.6.4","arch":null,"eula_url":"","shortname":"Rancher","description":null,"free":false,"cpe":"cpe:/o:suse:rancher:2.6.4","product_type":"base","online_predecessor_ids":[],"repositories":[],"product_class":"RANCHER-X86","predecessor_ids":[]},{"recommended":false,"version":"1.2.4","name":"SUSE Longhorn","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"SUSE Longhorn 1.2.4","release_type":null,"former_identifier":"longhorn","friendly_version":"1.2.4","extensions":[],"identifier":"longhorn","release_stage":"released","id":2417,"description":null,"shortname":"Longhorn","free":false,"eula_url":"","arch":null,"predecessor_ids":[],"online_predecessor_ids":[],"product_class":"LONGHORN-X86","repositories":[],"cpe":"cpe:/o:suse:longhorn:1.2.4","product_type":"base"},{"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Real Time 15 SP4 x86_64","release_type":null,"former_identifier":"SLE_RT","name":"SUSE Linux Enterprise Real Time","offline_predecessor_ids":[],"version":"15.4","recommended":false,"release_stage":"released","identifier":"SLE_RT","id":2421,"extensions":[{"name":"Basesystem Module","offline_predecessor_ids":[1212,1368,1440],"migration_extra":false,"friendly_name":"Basesystem Module 15 SP4 x86_64","release_type":null,"former_identifier":"sle-module-basesystem","recommended":true,"version":"15.4","extensions":[{"migration_extra":false,"friendly_name":"Desktop Applications Module 15 SP4 x86_64","former_identifier":"sle-module-desktop-applications","release_type":null,"name":"Desktop Applications Module","offline_predecessor_ids":[],"version":"15.4","recommended":true,"id":2303,"release_stage":"released","identifier":"sle-module-desktop-applications","extensions":[{"arch":"x86_64","eula_url":"","free":true,"shortname":"Development-Tools-Module","description":"

The Development Tools Module helps you developing applications for SUSE Linux Enterprise 15.

Access to the Development Tools Module is included in your SUSE Linux Enterprise product subscription. The module has a different lifecycle than SUSE Linux Enterprise itself.

","product_type":"module","cpe":"cpe:/o:suse:sle-module-development-tools:15:sp4","online_predecessor_ids":[1579,1794,1971,2161],"repositories":[{"description":"SLE-Module-DevTools15-SP4-Updates for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-DevTools15-SP4-Updates","distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15-SP4/x86_64/update/","enabled":true,"id":5217},{"name":"SLE-Module-DevTools15-SP4-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-DevTools15-SP4-Debuginfo-Updates for sle-15-x86_64","enabled":false,"id":5218,"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15-SP4/x86_64/update_debug/"},{"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP4/x86_64/product/","enabled":true,"id":5219,"description":"SLE-Module-DevTools15-SP4-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-DevTools15-SP4-Pool"},{"description":"SLE-Module-DevTools15-SP4-Debuginfo-Pool for sle-15-x86_64","name":"SLE-Module-DevTools15-SP4-Debuginfo-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP4/x86_64/product_debug/","enabled":false,"id":5220},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP4/x86_64/product_source/","distro_target":"sle-15-x86_64","autorefresh":false,"id":5221,"enabled":false,"description":"SLE-Module-DevTools15-SP4-Source-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-DevTools15-SP4-Source-Pool"}],"product_class":"MODULE","predecessor_ids":[1579,1794,1971,2161],"former_identifier":"sle-sdk","release_type":null,"migration_extra":false,"friendly_name":"Development Tools Module 15 SP4 x86_64","offline_predecessor_ids":[1341,1427,1630,1892],"name":"Development Tools Module","version":"15.4","recommended":true,"identifier":"sle-module-development-tools","release_stage":"released","id":2315,"extensions":[],"friendly_version":"15 SP4"}],"friendly_version":"15 SP4","arch":"x86_64","eula_url":"","shortname":"Desktop-Applications-Module","description":"

The SUSE Linux Enterprise Desktop Applications Module delivers a basic set of Desktop functionality.

Access to the Desktop Applications Module is included in your SUSE Linux Enterprise product subscription.

","free":true,"cpe":"cpe:/o:suse:sle-module-desktop-applications:15:sp4","product_type":"module","online_predecessor_ids":[1578,1776,1967,2149],"repositories":[{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15-SP4/x86_64/update/","autorefresh":true,"distro_target":"sle-15-x86_64","id":5157,"enabled":true,"description":"SLE-Module-Desktop-Applications15-SP4-Updates for sle-15-x86_64","name":"SLE-Module-Desktop-Applications15-SP4-Updates","installer_updates":false},{"description":"SLE-Module-Desktop-Applications15-SP4-Debuginfo-Updates for sle-15-x86_64","name":"SLE-Module-Desktop-Applications15-SP4-Debuginfo-Updates","installer_updates":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15-SP4/x86_64/update_debug/","autorefresh":true,"distro_target":"sle-15-x86_64","id":5158,"enabled":false},{"enabled":true,"id":5159,"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP4/x86_64/product/","installer_updates":false,"name":"SLE-Module-Desktop-Applications15-SP4-Pool","description":"SLE-Module-Desktop-Applications15-SP4-Pool for sle-15-x86_64"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP4/x86_64/product_debug/","distro_target":"sle-15-x86_64","autorefresh":false,"id":5160,"enabled":false,"description":"SLE-Module-Desktop-Applications15-SP4-Debuginfo-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Desktop-Applications15-SP4-Debuginfo-Pool"},{"installer_updates":false,"name":"SLE-Module-Desktop-Applications15-SP4-Source-Pool","description":"SLE-Module-Desktop-Applications15-SP4-Source-Pool for sle-15-x86_64","id":5161,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP4/x86_64/product_source/","distro_target":"sle-15-x86_64","autorefresh":false}],"product_class":"MODULE","predecessor_ids":[1578,1776,1967,2149]},{"recommended":true,"version":"15.4","name":"Server Applications Module","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"Server Applications Module 15 SP4 x86_64","former_identifier":"sle-module-server-applications","release_type":null,"friendly_version":"15 SP4","extensions":[{"version":"15.4","recommended":true,"friendly_name":"SUSE Real Time Module 15 SP4 x86_64","migration_extra":false,"release_type":null,"former_identifier":"sle-module-rt","name":"SUSE Real Time Module","offline_predecessor_ids":[],"friendly_version":"15 SP4","id":2422,"release_stage":"released","identifier":"sle-module-rt","extensions":[],"description":"

The SUSE Linux Enterprise Real Time aims to reduce the latency and increase the predictability and reliability of time-sensitive mission-critical applications.

Packages in this module are generally supported until a newer version of the package is released or the package is dropped from the module.

","shortname":"SUSE-Real-Time-Module","free":true,"arch":"x86_64","eula_url":"","online_predecessor_ids":[2286],"product_class":"MODULE","repositories":[{"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-RT/15-SP4/x86_64/update/","enabled":true,"id":5615,"description":"SLE-Module-RT15-SP4-Updates for sle-15-x86_64","name":"SLE-Module-RT15-SP4-Updates","installer_updates":false},{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-RT/15-SP4/x86_64/update_debug/","autorefresh":true,"distro_target":"sle-15-x86_64","id":5616,"enabled":false,"description":"SLE-Module-RT15-SP4-Debuginfo-Updates for sle-15-x86_64","name":"SLE-Module-RT15-SP4-Debuginfo-Updates","installer_updates":false},{"enabled":true,"id":5617,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-RT/15-SP4/x86_64/product/","name":"SLE-Module-RT15-SP4-Pool","installer_updates":false,"description":"SLE-Module-RT15-SP4-Pool for sle-15-x86_64"},{"installer_updates":false,"name":"SLE-Module-RT15-SP4-Debuginfo-Pool","description":"SLE-Module-RT15-SP4-Debuginfo-Pool for sle-15-x86_64","id":5618,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-RT/15-SP4/x86_64/product_debug/","distro_target":"sle-15-x86_64","autorefresh":false},{"enabled":false,"id":5619,"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-RT/15-SP4/x86_64/product_source/","installer_updates":false,"name":"SLE-Module-RT15-SP4-Source-Pool","description":"SLE-Module-RT15-SP4-Source-Pool for sle-15-x86_64"}],"predecessor_ids":[2286],"cpe":"cpe:/o:suse:sle-module-rt:15:sp4","product_type":"module"}],"release_stage":"released","id":2307,"identifier":"sle-module-server-applications","shortname":"Server-Applications-Module","description":"

The SUSE Linux Enterprise Server Applications Module delivers a basic set of Server functionality.

Access to the Server Applications Module is included in your SUSE Linux Enterprise Server subscription.

","free":true,"eula_url":"","arch":"x86_64","predecessor_ids":[1580,1780,1955,2153],"product_class":"MODULE","online_predecessor_ids":[1580,1780,1955,2153],"repositories":[{"name":"SLE-Module-Server-Applications15-SP4-Updates","installer_updates":false,"description":"SLE-Module-Server-Applications15-SP4-Updates for sle-15-x86_64","enabled":true,"id":5177,"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15-SP4/x86_64/update/"},{"description":"SLE-Module-Server-Applications15-SP4-Debuginfo-Updates for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Server-Applications15-SP4-Debuginfo-Updates","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15-SP4/x86_64/update_debug/","distro_target":"sle-15-x86_64","autorefresh":true,"id":5178,"enabled":false},{"name":"SLE-Module-Server-Applications15-SP4-Pool","installer_updates":false,"description":"SLE-Module-Server-Applications15-SP4-Pool for sle-15-x86_64","id":5179,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP4/x86_64/product/","autorefresh":false,"distro_target":"sle-15-x86_64"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP4/x86_64/product_debug/","autorefresh":false,"distro_target":"sle-15-x86_64","id":5180,"enabled":false,"description":"SLE-Module-Server-Applications15-SP4-Debuginfo-Pool for sle-15-x86_64","name":"SLE-Module-Server-Applications15-SP4-Debuginfo-Pool","installer_updates":false},{"installer_updates":false,"name":"SLE-Module-Server-Applications15-SP4-Source-Pool","description":"SLE-Module-Server-Applications15-SP4-Source-Pool for sle-15-x86_64","enabled":false,"id":5181,"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP4/x86_64/product_source/"}],"cpe":"cpe:/o:suse:sle-module-server-applications:15:sp4","product_type":"module"},{"shortname":"Containers-Module","description":"

This Module contains several packages revolving around containers and related tools.

","free":true,"arch":"x86_64","eula_url":"","online_predecessor_ids":[1642,1790,1963,2157],"repositories":[{"name":"SLE-Module-Containers15-SP4-Updates","installer_updates":false,"description":"SLE-Module-Containers15-SP4-Updates for sle-15-x86_64","id":5197,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/15-SP4/x86_64/update/","autorefresh":true,"distro_target":"sle-15-x86_64"},{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/15-SP4/x86_64/update_debug/","autorefresh":true,"distro_target":"sle-15-x86_64","id":5198,"enabled":false,"description":"SLE-Module-Containers15-SP4-Debuginfo-Updates for sle-15-x86_64","name":"SLE-Module-Containers15-SP4-Debuginfo-Updates","installer_updates":false},{"name":"SLE-Module-Containers15-SP4-Pool","installer_updates":false,"description":"SLE-Module-Containers15-SP4-Pool for sle-15-x86_64","id":5199,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP4/x86_64/product/","autorefresh":false,"distro_target":"sle-15-x86_64"},{"installer_updates":false,"name":"SLE-Module-Containers15-SP4-Debuginfo-Pool","description":"SLE-Module-Containers15-SP4-Debuginfo-Pool for sle-15-x86_64","id":5200,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP4/x86_64/product_debug/","distro_target":"sle-15-x86_64","autorefresh":false},{"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP4/x86_64/product_source/","enabled":false,"id":5201,"description":"SLE-Module-Containers15-SP4-Source-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Containers15-SP4-Source-Pool"}],"product_class":"MODULE","predecessor_ids":[1642,1790,1963,2157],"cpe":"cpe:/o:suse:sle-module-containers:15:sp4","product_type":"module","version":"15.4","recommended":false,"migration_extra":false,"friendly_name":"Containers Module 15 SP4 x86_64","former_identifier":"sle-module-containers","release_type":null,"name":"Containers Module","offline_predecessor_ids":[1332],"friendly_version":"15 SP4","id":2311,"release_stage":"released","identifier":"sle-module-containers","extensions":[]},{"free":false,"description":"

SUSE Linux Enterprise Live Patching provides packages to update critical components in SUSE Linux Enterprise. With SUSE Linux Enterprise Live Patching, you can perform critical patching without shutting down your system, reducing the need for planned downtime and increasing service availability.

","shortname":"Live-Patching","arch":"x86_64","eula_url":"","online_predecessor_ids":[1736,1828,1984,2187],"repositories":[{"installer_updates":false,"name":"SLE-Module-Live-Patching15-SP4-Updates","description":"SLE-Module-Live-Patching15-SP4-Updates for sle-15-x86_64","id":5312,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Live-Patching/15-SP4/x86_64/update/","distro_target":"sle-15-x86_64","autorefresh":true},{"id":5313,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Live-Patching/15-SP4/x86_64/update_debug/","autorefresh":true,"distro_target":"sle-15-x86_64","name":"SLE-Module-Live-Patching15-SP4-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-Live-Patching15-SP4-Debuginfo-Updates for sle-15-x86_64"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Live-Patching/15-SP4/x86_64/product/","autorefresh":false,"distro_target":"sle-15-x86_64","id":5314,"enabled":true,"description":"SLE-Module-Live-Patching15-SP4-Pool for sle-15-x86_64","name":"SLE-Module-Live-Patching15-SP4-Pool","installer_updates":false},{"id":5315,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Live-Patching/15-SP4/x86_64/product_debug/","autorefresh":false,"distro_target":"sle-15-x86_64","name":"SLE-Module-Live-Patching15-SP4-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-Live-Patching15-SP4-Debuginfo-Pool for sle-15-x86_64"},{"id":5316,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Live-Patching/15-SP4/x86_64/product_source/","distro_target":"sle-15-x86_64","autorefresh":false,"installer_updates":false,"name":"SLE-Module-Live-Patching15-SP4-Source-Pool","description":"SLE-Module-Live-Patching15-SP4-Source-Pool for sle-15-x86_64"}],"product_class":"SLE-LP","predecessor_ids":[1736,1828,1984,2187],"product_type":"extension","cpe":"cpe:/o:suse:sle-module-live-patching:15:sp4","version":"15.4","recommended":false,"former_identifier":"sle-module-live-patching","release_type":null,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Live Patching 15 SP4 x86_64","offline_predecessor_ids":[1536,1757,1888],"name":"SUSE Linux Enterprise Live Patching","friendly_version":"15 SP4","identifier":"sle-module-live-patching","release_stage":"released","id":2334,"extensions":[]},{"predecessor_ids":[1743,1871,1950,2191],"online_predecessor_ids":[1743,1871,1950,2191],"repositories":[{"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Backports/SLE-15-SP4_x86_64/standard/","enabled":true,"id":5388,"description":"SUSE-PackageHub-15-SP4-Backports-Pool for sle-15-x86_64","installer_updates":false,"name":"SUSE-PackageHub-15-SP4-Backports-Pool"},{"installer_updates":false,"name":"SUSE-PackageHub-15-SP4-Backports-Debuginfo","description":"SUSE-PackageHub-15-SP4-Backports-Debuginfo for sle-15-x86_64","id":5389,"enabled":false,"url":"https://updates.suse.com/SUSE/Backports/SLE-15-SP4_x86_64/standard_debug/","distro_target":"sle-15-x86_64","autorefresh":true},{"installer_updates":false,"name":"SLE-Module-Packagehub-Subpackages15-SP4-Updates","description":"SLE-Module-Packagehub-Subpackages15-SP4-Updates for sle-15-x86_64","id":5390,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP4/x86_64/update/","distro_target":"sle-15-x86_64","autorefresh":true},{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP4/x86_64/update_debug/","distro_target":"sle-15-x86_64","autorefresh":true,"id":5391,"enabled":false,"description":"SLE-Module-Packagehub-Subpackages15-SP4-Debuginfo-Updates for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Packagehub-Subpackages15-SP4-Debuginfo-Updates"},{"description":"SUSE-PackageHub-15-SP4-Pool for sle-15-x86_64","installer_updates":false,"name":"SUSE-PackageHub-15-SP4-Pool","distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Backports/SLE-15-SP4_x86_64/product/","enabled":true,"id":5392},{"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP4/x86_64/product/","enabled":true,"id":5393,"description":"SLE-Module-Packagehub-Subpackages15-SP4-Pool for sle-15-x86_64","name":"SLE-Module-Packagehub-Subpackages15-SP4-Pool","installer_updates":false},{"name":"SLE-Module-Packagehub-Subpackages15-SP4-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-Packagehub-Subpackages15-SP4-Debuginfo-Pool for sle-15-x86_64","id":5394,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP4/x86_64/product_debug/","autorefresh":false,"distro_target":"sle-15-x86_64"},{"installer_updates":false,"name":"SLE-Module-Packagehub-Subpackages15-SP4-Source-Pool","description":"SLE-Module-Packagehub-Subpackages15-SP4-Source-Pool for sle-15-x86_64","id":5395,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP4/x86_64/product_source/","distro_target":"sle-15-x86_64","autorefresh":false}],"product_class":"MODULE","product_type":"module","cpe":"cpe:/o:suse:packagehub:15:sp4","free":true,"description":"SUSE Package Hub is a free of charge module providing access to community maintained packages built to run on SUSE Linux Enterprise Server. Built from the same sources used in the openSUSE distributions, these quality packages provide additional software to what is found in the SUSE Linux Enterprise Server product. Packages from the Package Hub are delivered without L3 support from SUSE. General updates and fixes to the packages in SUSE Package Hub are provided by the openSUSE community based on their discretion, though SUSE will monitor and ensure that any known critical security issues will be addressed. Packages in the Package Hub are approved by SUSE for use with SUSE Linux Enterprise Server 15-SP4 and to not interfere with the supportability of SUSE Linux Enterprise Server, its modules and extensions. For more information about SUSE Package Hub please visit https://packagehub.suse.com.","shortname":"SUSE-PackageHub-15","eula_url":"","arch":"x86_64","friendly_version":"15 SP4","extensions":[],"release_stage":"released","id":2347,"identifier":"PackageHub","recommended":false,"version":"15.4","offline_predecessor_ids":[1529,1813,1915],"name":"SUSE Package Hub","former_identifier":"PackageHub","release_type":null,"migration_extra":false,"friendly_name":"SUSE Package Hub 15 SP4 x86_64"}],"identifier":"sle-module-basesystem","release_stage":"released","id":2299,"friendly_version":"15 SP4","eula_url":"","arch":"x86_64","description":"

The SUSE Linux Enterprise Basesystem Module delivers the base system of the product.

","shortname":"Basesystem-Module","free":true,"cpe":"cpe:/o:suse:sle-module-basesystem:15:sp4","product_type":"module","predecessor_ids":[1576,1772,1946,2145],"product_class":"MODULE","online_predecessor_ids":[1576,1772,1946,2145],"repositories":[{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15-SP4/x86_64/update/","autorefresh":true,"distro_target":"sle-15-x86_64","id":5137,"enabled":true,"description":"SLE-Module-Basesystem15-SP4-Updates for sle-15-x86_64","name":"SLE-Module-Basesystem15-SP4-Updates","installer_updates":false},{"description":"SLE-Module-Basesystem15-SP4-Debuginfo-Updates for sle-15-x86_64","name":"SLE-Module-Basesystem15-SP4-Debuginfo-Updates","installer_updates":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15-SP4/x86_64/update_debug/","autorefresh":true,"distro_target":"sle-15-x86_64","id":5138,"enabled":false},{"installer_updates":false,"name":"SLE-Module-Basesystem15-SP4-Pool","description":"SLE-Module-Basesystem15-SP4-Pool for sle-15-x86_64","id":5139,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP4/x86_64/product/","distro_target":"sle-15-x86_64","autorefresh":false},{"description":"SLE-Module-Basesystem15-SP4-Debuginfo-Pool for sle-15-x86_64","name":"SLE-Module-Basesystem15-SP4-Debuginfo-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP4/x86_64/product_debug/","enabled":false,"id":5140},{"installer_updates":false,"name":"SLE-Module-Basesystem15-SP4-Source-Pool","description":"SLE-Module-Basesystem15-SP4-Source-Pool for sle-15-x86_64","id":5141,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP4/x86_64/product_source/","distro_target":"sle-15-x86_64","autorefresh":false}]},{"eula_url":"","arch":"x86_64","free":true,"description":"

This module contains the certification packages.

Access to the Certifications Module is included in your SUSE Linux Enterprise subscription. The module has a different lifecycle than SUSE Linux Enterprise itself; please check the Release Notes for further details.

","shortname":"Certifications-Module","product_type":"module","cpe":"cpe:/o:suse:sle-module-certifications:15:sp4","predecessor_ids":[],"repositories":[{"installer_updates":false,"name":"SLE-Module-Certifications-15-SP4-Updates","description":"SLE-Module-Certifications-15-SP4-Updates for sle-15-x86_64","id":5547,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Certifications/15-SP4/x86_64/update/","distro_target":"sle-15-x86_64","autorefresh":true},{"name":"SLE-Module-Certifications-15-SP4-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-Certifications-15-SP4-Debuginfo-Updates for sle-15-x86_64","enabled":false,"id":5548,"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Certifications/15-SP4/x86_64/update_debug/"},{"description":"SLE-Module-Certifications-15-SP4-Pool for sle-15-x86_64","name":"SLE-Module-Certifications-15-SP4-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Certifications/15-SP4/x86_64/product/","enabled":true,"id":5549},{"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Certifications/15-SP4/x86_64/product_debug/","enabled":false,"id":5550,"description":"SLE-Module-Certifications-15-SP4-Debuginfo-Pool for sle-15-x86_64","name":"SLE-Module-Certifications-15-SP4-Debuginfo-Pool","installer_updates":false},{"installer_updates":false,"name":"SLE-Module-Certifications-15-SP4-Source-Pool","description":"SLE-Module-Certifications-15-SP4-Source-Pool for sle-15-x86_64","id":5551,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Certifications/15-SP4/x86_64/product_source/","distro_target":"sle-15-x86_64","autorefresh":false}],"online_predecessor_ids":[],"product_class":"MODULE","offline_predecessor_ids":[],"name":"Certifications Module","former_identifier":"sle-module-certifications","release_type":null,"migration_extra":false,"friendly_name":"Certifications Module 15 SP4 x86_64","recommended":false,"version":"15.4","extensions":[],"id":2393,"release_stage":"released","identifier":"sle-module-certifications","friendly_version":"15 SP4"}],"friendly_version":"15 SP4","arch":"x86_64","eula_url":"https://updates.suse.com/SUSE/Products/SLE-Product-RT/15-SP4/x86_64/product.license/","shortname":"SLE-15-SP4-RT","description":"

The SUSE Linux Enterprise Real Time aims to reduce the latency and increase the predictability and reliability of time-sensitive mission-critical applications.

","free":false,"cpe":"cpe:/o:suse:sle_rt:15:sp4","product_type":"base","product_class":"SUSE_RT","online_predecessor_ids":[2285],"repositories":[{"id":5610,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-RT/15-SP4/x86_64/update/","distro_target":"sle-15-x86_64","autorefresh":true,"installer_updates":false,"name":"SLE-Product-RT-15-SP4-Updates","description":"SLE-Product-RT-15-SP4-Updates for sle-15-x86_64"},{"installer_updates":false,"name":"SLE-Product-RT15-SP4-Debuginfo-Updates","description":"SLE-Product-RT15-SP4-Debuginfo-Updates for sle-15-x86_64","id":5611,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-RT/15-SP4/x86_64/update_debug/","distro_target":"sle-15-x86_64","autorefresh":true},{"id":5612,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-RT/15-SP4/x86_64/product/","distro_target":"sle-15-x86_64","autorefresh":false,"installer_updates":false,"name":"SLE-Product-RT-15-SP4-Pool","description":"SLE-Product-RT-15-SP4-Pool for sle-15-x86_64"},{"installer_updates":false,"name":"SLE-Product-RT15-SP4-Debuginfo-Pool","description":"SLE-Product-RT15-SP4-Debuginfo-Pool for sle-15-x86_64","id":5613,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-RT/15-SP4/x86_64/product_debug/","distro_target":"sle-15-x86_64","autorefresh":false},{"id":5614,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-RT/15-SP4/x86_64/product_source/","autorefresh":false,"distro_target":"sle-15-x86_64","name":"SLE-Product-RT15-SP4-Source-Pool","installer_updates":false,"description":"SLE-Product-RT15-SP4-Source-Pool for sle-15-x86_64"}],"predecessor_ids":[2285]},{"recommended":false,"version":"15.4","name":"SUSE Real Time Module","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"SUSE Real Time Module 15 SP4 x86_64","former_identifier":"sle-module-rt","release_type":null,"friendly_version":"15 SP4","extensions":[],"identifier":"sle-module-rt","release_stage":"released","id":2422,"description":"

The SUSE Linux Enterprise Real Time aims to reduce the latency and increase the predictability and reliability of time-sensitive mission-critical applications.

Packages in this module are generally supported until a newer version of the package is released or the package is dropped from the module.

","shortname":"SUSE-Real-Time-Module","free":true,"eula_url":"","arch":"x86_64","predecessor_ids":[2286],"repositories":[{"installer_updates":false,"name":"SLE-Module-RT15-SP4-Updates","description":"SLE-Module-RT15-SP4-Updates for sle-15-x86_64","enabled":true,"id":5615,"distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-RT/15-SP4/x86_64/update/"},{"installer_updates":false,"name":"SLE-Module-RT15-SP4-Debuginfo-Updates","description":"SLE-Module-RT15-SP4-Debuginfo-Updates for sle-15-x86_64","id":5616,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-RT/15-SP4/x86_64/update_debug/","distro_target":"sle-15-x86_64","autorefresh":true},{"enabled":true,"id":5617,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-RT/15-SP4/x86_64/product/","name":"SLE-Module-RT15-SP4-Pool","installer_updates":false,"description":"SLE-Module-RT15-SP4-Pool for sle-15-x86_64"},{"description":"SLE-Module-RT15-SP4-Debuginfo-Pool for sle-15-x86_64","name":"SLE-Module-RT15-SP4-Debuginfo-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-RT/15-SP4/x86_64/product_debug/","autorefresh":false,"distro_target":"sle-15-x86_64","id":5618,"enabled":false},{"description":"SLE-Module-RT15-SP4-Source-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-RT15-SP4-Source-Pool","distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-RT/15-SP4/x86_64/product_source/","enabled":false,"id":5619}],"online_predecessor_ids":[2286],"product_class":"MODULE","cpe":"cpe:/o:suse:sle-module-rt:15:sp4","product_type":"module"},{"cpe":"cpe:/o:suse:rancher:2.6.5","product_type":"base","predecessor_ids":[],"online_predecessor_ids":[],"repositories":[],"product_class":"RANCHER-X86","eula_url":"","arch":null,"shortname":"Rancher","description":null,"free":false,"extensions":[],"id":2423,"release_stage":"released","identifier":"rancher","friendly_version":"2.6.5","name":"SUSE Rancher","offline_predecessor_ids":[],"friendly_name":"SUSE Rancher 2.6.5","migration_extra":false,"release_type":null,"former_identifier":"rancher","recommended":false,"version":"2.6.5"},{"recommended":false,"version":"2.5.14","offline_predecessor_ids":[],"name":"SUSE Rancher","release_type":null,"former_identifier":"rancher","friendly_name":"SUSE Rancher 2.5.14","migration_extra":false,"friendly_version":"2.5.14","extensions":[],"release_stage":"released","identifier":"rancher","id":2424,"free":false,"description":null,"shortname":"Rancher","eula_url":"","arch":null,"predecessor_ids":[],"online_predecessor_ids":[],"repositories":[],"product_class":"RANCHER-X86","product_type":"base","cpe":"cpe:/o:suse:rancher:2.5.14"},{"predecessor_ids":[],"online_predecessor_ids":[],"product_class":"RANCHER-X86","repositories":[],"product_type":"base","cpe":"cpe:/o:suse:rancher:2.5.13","free":false,"description":null,"shortname":"Rancher","eula_url":"","arch":null,"friendly_version":"2.5.13","extensions":[],"id":2425,"release_stage":"released","identifier":"rancher","recommended":false,"version":"2.5.13","offline_predecessor_ids":[],"name":"SUSE Rancher","former_identifier":"rancher","release_type":null,"migration_extra":false,"friendly_name":"SUSE Rancher 2.5.13"},{"extensions":[{"friendly_version":"15 SP4","extensions":[],"identifier":"PackageHub","release_stage":"released","id":2344,"recommended":false,"version":"15.4","name":"SUSE Package Hub","offline_predecessor_ids":[1532,1810,1912],"migration_extra":false,"friendly_name":"SUSE Package Hub 15 SP4 aarch64","former_identifier":"PackageHub","release_type":null,"predecessor_ids":[1740,1868,1947,2188],"online_predecessor_ids":[1740,1868,1947,2188],"product_class":"MODULE","repositories":[{"name":"SUSE-PackageHub-15-SP4-Backports-Pool","installer_updates":false,"description":"SUSE-PackageHub-15-SP4-Backports-Pool for sle-15-aarch64","enabled":true,"id":5364,"autorefresh":false,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Backports/SLE-15-SP4_aarch64/standard/"},{"name":"SUSE-PackageHub-15-SP4-Backports-Debuginfo","installer_updates":false,"description":"SUSE-PackageHub-15-SP4-Backports-Debuginfo for sle-15-aarch64","id":5365,"enabled":false,"url":"https://updates.suse.com/SUSE/Backports/SLE-15-SP4_aarch64/standard_debug/","autorefresh":true,"distro_target":"sle-15-aarch64"},{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP4/aarch64/update/","autorefresh":true,"distro_target":"sle-15-aarch64","id":5366,"enabled":true,"description":"SLE-Module-Packagehub-Subpackages15-SP4-Updates for sle-15-aarch64","name":"SLE-Module-Packagehub-Subpackages15-SP4-Updates","installer_updates":false},{"autorefresh":true,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP4/aarch64/update_debug/","enabled":false,"id":5367,"description":"SLE-Module-Packagehub-Subpackages15-SP4-Debuginfo-Updates for sle-15-aarch64","name":"SLE-Module-Packagehub-Subpackages15-SP4-Debuginfo-Updates","installer_updates":false},{"description":"SUSE-PackageHub-15-SP4-Pool for sle-15-aarch64","installer_updates":false,"name":"SUSE-PackageHub-15-SP4-Pool","url":"https://updates.suse.com/SUSE/Backports/SLE-15-SP4_aarch64/product/","distro_target":"sle-15-aarch64","autorefresh":false,"id":5368,"enabled":true},{"installer_updates":false,"name":"SLE-Module-Packagehub-Subpackages15-SP4-Pool","description":"SLE-Module-Packagehub-Subpackages15-SP4-Pool for sle-15-aarch64","id":5369,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP4/aarch64/product/","distro_target":"sle-15-aarch64","autorefresh":false},{"id":5370,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP4/aarch64/product_debug/","distro_target":"sle-15-aarch64","autorefresh":false,"installer_updates":false,"name":"SLE-Module-Packagehub-Subpackages15-SP4-Debuginfo-Pool","description":"SLE-Module-Packagehub-Subpackages15-SP4-Debuginfo-Pool for sle-15-aarch64"},{"id":5371,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP4/aarch64/product_source/","distro_target":"sle-15-aarch64","autorefresh":false,"installer_updates":false,"name":"SLE-Module-Packagehub-Subpackages15-SP4-Source-Pool","description":"SLE-Module-Packagehub-Subpackages15-SP4-Source-Pool for sle-15-aarch64"}],"cpe":"cpe:/o:suse:packagehub:15:sp4","product_type":"module","description":"SUSE Package Hub is a free of charge module providing access to community maintained packages built to run on SUSE Linux Enterprise Server. Built from the same sources used in the openSUSE distributions, these quality packages provide additional software to what is found in the SUSE Linux Enterprise Server product. Packages from the Package Hub are delivered without L3 support from SUSE. General updates and fixes to the packages in SUSE Package Hub are provided by the openSUSE community based on their discretion, though SUSE will monitor and ensure that any known critical security issues will be addressed. Packages in the Package Hub are approved by SUSE for use with SUSE Linux Enterprise Server 15-SP4 and to not interfere with the supportability of SUSE Linux Enterprise Server, its modules and extensions. For more information about SUSE Package Hub please visit https://packagehub.suse.com.","shortname":"SUSE-PackageHub-15","free":true,"eula_url":"","arch":"aarch64"}],"identifier":"SLE-Micro","release_stage":"released","id":2426,"friendly_version":"5.3","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Micro","former_identifier":"SLE-Micro","release_type":null,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Micro 5.3 aarch64","recommended":false,"version":"5.3","product_type":"base","cpe":"cpe:/o:suse:sle-micro:5.3","predecessor_ids":[2282,2399,2563],"repositories":[{"enabled":true,"id":5620,"distro_target":"sle-15-aarch64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Micro/5.3/aarch64/update/","installer_updates":false,"name":"SLE-Micro-5.3-Updates","description":"SLE-Micro-5.3-Updates for sle-15-aarch64"},{"id":5621,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Micro/5.3/aarch64/update_debug/","distro_target":"sle-15-aarch64","autorefresh":true,"installer_updates":false,"name":"SLE-Micro-5.3-Debuginfo-Updates","description":"SLE-Micro-5.3-Debuginfo-Updates for sle-15-aarch64"},{"enabled":true,"id":5622,"autorefresh":false,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Products/SLE-Micro/5.3/aarch64/product/","name":"SLE-Micro-5.3-Pool","installer_updates":false,"description":"SLE-Micro-5.3-Pool for sle-15-aarch64"},{"enabled":false,"id":5623,"distro_target":"sle-15-aarch64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Micro/5.3/aarch64/product_debug/","installer_updates":false,"name":"SLE-Micro-5.3-Debuginfo-Pool","description":"SLE-Micro-5.3-Debuginfo-Pool for sle-15-aarch64"},{"name":"SLE-Micro-5.3-Source-Pool","installer_updates":false,"description":"SLE-Micro-5.3-Source-Pool for sle-15-aarch64","id":5624,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Micro/5.3/aarch64/product_source/","autorefresh":false,"distro_target":"sle-15-aarch64"}],"online_predecessor_ids":[2282,2399,2563],"product_class":"MICROOS-ARM64","eula_url":"","arch":"aarch64","free":false,"shortname":"SUSE Linux Enterprise Micro","description":"SUSE Linux Enterprise Micro 5.3"},{"cpe":"cpe:/o:suse:sle-micro:5.3","product_type":"base","repositories":[{"enabled":true,"id":5625,"autorefresh":true,"distro_target":"sle-15-s390x","url":"https://updates.suse.com/SUSE/Updates/SLE-Micro/5.3/s390x/update/","name":"SLE-Micro-5.3-Updates","installer_updates":false,"description":"SLE-Micro-5.3-Updates for sle-15-s390x"},{"id":5626,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Micro/5.3/s390x/update_debug/","distro_target":"sle-15-s390x","autorefresh":true,"installer_updates":false,"name":"SLE-Micro-5.3-Debuginfo-Updates","description":"SLE-Micro-5.3-Debuginfo-Updates for sle-15-s390x"},{"description":"SLE-Micro-5.3-Pool for sle-15-s390x","installer_updates":false,"name":"SLE-Micro-5.3-Pool","distro_target":"sle-15-s390x","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Micro/5.3/s390x/product/","enabled":true,"id":5627},{"installer_updates":false,"name":"SLE-Micro-5.3-Debuginfo-Pool","description":"SLE-Micro-5.3-Debuginfo-Pool for sle-15-s390x","enabled":false,"id":5628,"distro_target":"sle-15-s390x","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Micro/5.3/s390x/product_debug/"},{"description":"SLE-Micro-5.3-Source-Pool for sle-15-s390x","installer_updates":false,"name":"SLE-Micro-5.3-Source-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Micro/5.3/s390x/product_source/","distro_target":"sle-15-s390x","autorefresh":false,"id":5629,"enabled":false}],"online_predecessor_ids":[2287,2400],"product_class":"MICROOS-Z","predecessor_ids":[2287,2400],"arch":"s390x","eula_url":"","shortname":"SUSE Linux Enterprise Micro","description":"SUSE Linux Enterprise Micro 5.3","free":false,"release_stage":"released","identifier":"SLE-Micro","id":2427,"extensions":[{"recommended":false,"version":"15.4","offline_predecessor_ids":[2079,2080],"name":"SUSE Linux Enterprise Live Patching","release_type":null,"former_identifier":"sle-module-live-patching","migration_extra":false,"friendly_name":"SUSE Linux Enterprise Live Patching 15 SP4 s390x","friendly_version":"15 SP4","extensions":[],"id":2333,"release_stage":"released","identifier":"sle-module-live-patching","free":false,"shortname":"Live-Patching","description":"

SUSE Linux Enterprise Live Patching provides packages to update critical components in SUSE Linux Enterprise. With SUSE Linux Enterprise Live Patching, you can perform critical patching without shutting down your system, reducing the need for planned downtime and increasing service availability.

","eula_url":"","arch":"s390x","predecessor_ids":[2081,2186],"online_predecessor_ids":[2081,2186],"product_class":"SLE-LP-Z","repositories":[{"description":"SLE-Module-Live-Patching15-SP4-Updates for sle-15-s390x","installer_updates":false,"name":"SLE-Module-Live-Patching15-SP4-Updates","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Live-Patching/15-SP4/s390x/update/","distro_target":"sle-15-s390x","autorefresh":true,"id":5307,"enabled":true},{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Live-Patching/15-SP4/s390x/update_debug/","autorefresh":true,"distro_target":"sle-15-s390x","id":5308,"enabled":false,"description":"SLE-Module-Live-Patching15-SP4-Debuginfo-Updates for sle-15-s390x","name":"SLE-Module-Live-Patching15-SP4-Debuginfo-Updates","installer_updates":false},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Live-Patching/15-SP4/s390x/product/","distro_target":"sle-15-s390x","autorefresh":false,"id":5309,"enabled":true,"description":"SLE-Module-Live-Patching15-SP4-Pool for sle-15-s390x","installer_updates":false,"name":"SLE-Module-Live-Patching15-SP4-Pool"},{"id":5310,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Live-Patching/15-SP4/s390x/product_debug/","autorefresh":false,"distro_target":"sle-15-s390x","name":"SLE-Module-Live-Patching15-SP4-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-Live-Patching15-SP4-Debuginfo-Pool for sle-15-s390x"},{"name":"SLE-Module-Live-Patching15-SP4-Source-Pool","installer_updates":false,"description":"SLE-Module-Live-Patching15-SP4-Source-Pool for sle-15-s390x","id":5311,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Live-Patching/15-SP4/s390x/product_source/","autorefresh":false,"distro_target":"sle-15-s390x"}],"product_type":"extension","cpe":"cpe:/o:suse:sle-module-live-patching:15:sp4"},{"recommended":false,"version":"15.4","name":"SUSE Package Hub","offline_predecessor_ids":[1530,1812,1914],"friendly_name":"SUSE Package Hub 15 SP4 s390x","migration_extra":false,"former_identifier":"PackageHub","release_type":null,"friendly_version":"15 SP4","extensions":[],"release_stage":"released","id":2346,"identifier":"PackageHub","description":"SUSE Package Hub is a free of charge module providing access to community maintained packages built to run on SUSE Linux Enterprise Server. Built from the same sources used in the openSUSE distributions, these quality packages provide additional software to what is found in the SUSE Linux Enterprise Server product. Packages from the Package Hub are delivered without L3 support from SUSE. General updates and fixes to the packages in SUSE Package Hub are provided by the openSUSE community based on their discretion, though SUSE will monitor and ensure that any known critical security issues will be addressed. Packages in the Package Hub are approved by SUSE for use with SUSE Linux Enterprise Server 15-SP4 and to not interfere with the supportability of SUSE Linux Enterprise Server, its modules and extensions. For more information about SUSE Package Hub please visit https://packagehub.suse.com.","shortname":"SUSE-PackageHub-15","free":true,"eula_url":"","arch":"s390x","predecessor_ids":[1742,1870,1949,2190],"online_predecessor_ids":[1742,1870,1949,2190],"product_class":"MODULE","repositories":[{"name":"SUSE-PackageHub-15-SP4-Backports-Pool","installer_updates":false,"description":"SUSE-PackageHub-15-SP4-Backports-Pool for sle-15-s390x","id":5380,"enabled":true,"url":"https://updates.suse.com/SUSE/Backports/SLE-15-SP4_s390x/standard/","autorefresh":false,"distro_target":"sle-15-s390x"},{"description":"SUSE-PackageHub-15-SP4-Backports-Debuginfo for sle-15-s390x","installer_updates":false,"name":"SUSE-PackageHub-15-SP4-Backports-Debuginfo","url":"https://updates.suse.com/SUSE/Backports/SLE-15-SP4_s390x/standard_debug/","distro_target":"sle-15-s390x","autorefresh":true,"id":5381,"enabled":false},{"enabled":true,"id":5382,"autorefresh":true,"distro_target":"sle-15-s390x","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP4/s390x/update/","name":"SLE-Module-Packagehub-Subpackages15-SP4-Updates","installer_updates":false,"description":"SLE-Module-Packagehub-Subpackages15-SP4-Updates for sle-15-s390x"},{"name":"SLE-Module-Packagehub-Subpackages15-SP4-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-Packagehub-Subpackages15-SP4-Debuginfo-Updates for sle-15-s390x","enabled":false,"id":5383,"autorefresh":true,"distro_target":"sle-15-s390x","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP4/s390x/update_debug/"},{"installer_updates":false,"name":"SUSE-PackageHub-15-SP4-Pool","description":"SUSE-PackageHub-15-SP4-Pool for sle-15-s390x","id":5384,"enabled":true,"url":"https://updates.suse.com/SUSE/Backports/SLE-15-SP4_s390x/product/","distro_target":"sle-15-s390x","autorefresh":false},{"distro_target":"sle-15-s390x","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP4/s390x/product/","enabled":true,"id":5385,"description":"SLE-Module-Packagehub-Subpackages15-SP4-Pool for sle-15-s390x","installer_updates":false,"name":"SLE-Module-Packagehub-Subpackages15-SP4-Pool"},{"description":"SLE-Module-Packagehub-Subpackages15-SP4-Debuginfo-Pool for sle-15-s390x","name":"SLE-Module-Packagehub-Subpackages15-SP4-Debuginfo-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-15-s390x","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP4/s390x/product_debug/","enabled":false,"id":5386},{"description":"SLE-Module-Packagehub-Subpackages15-SP4-Source-Pool for sle-15-s390x","name":"SLE-Module-Packagehub-Subpackages15-SP4-Source-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP4/s390x/product_source/","autorefresh":false,"distro_target":"sle-15-s390x","id":5387,"enabled":false}],"cpe":"cpe:/o:suse:packagehub:15:sp4","product_type":"module"}],"friendly_version":"5.3","friendly_name":"SUSE Linux Enterprise Micro 5.3 s390x","migration_extra":false,"release_type":null,"former_identifier":"SLE-Micro","name":"SUSE Linux Enterprise Micro","offline_predecessor_ids":[],"version":"5.3","recommended":false},{"online_predecessor_ids":[2283,2401,2564],"product_class":"MICROOS-X86","repositories":[{"installer_updates":false,"name":"SLE-Micro-5.3-Updates","description":"SLE-Micro-5.3-Updates for sle-15-x86_64","id":5630,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Micro/5.3/x86_64/update/","distro_target":"sle-15-x86_64","autorefresh":true},{"description":"SLE-Micro-5.3-Debuginfo-Updates for sle-15-x86_64","installer_updates":false,"name":"SLE-Micro-5.3-Debuginfo-Updates","url":"https://updates.suse.com/SUSE/Updates/SLE-Micro/5.3/x86_64/update_debug/","distro_target":"sle-15-x86_64","autorefresh":true,"id":5631,"enabled":false},{"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Micro/5.3/x86_64/product/","enabled":true,"id":5632,"description":"SLE-Micro-5.3-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Micro-5.3-Pool"},{"installer_updates":false,"name":"SLE-Micro-5.3-Debuginfo-Pool","description":"SLE-Micro-5.3-Debuginfo-Pool for sle-15-x86_64","id":5633,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Micro/5.3/x86_64/product_debug/","distro_target":"sle-15-x86_64","autorefresh":false},{"name":"SLE-Micro-5.3-Source-Pool","installer_updates":false,"description":"SLE-Micro-5.3-Source-Pool for sle-15-x86_64","enabled":false,"id":5634,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Micro/5.3/x86_64/product_source/"}],"predecessor_ids":[2283,2401,2564],"product_type":"base","cpe":"cpe:/o:suse:sle-micro:5.3","free":false,"shortname":"SUSE Linux Enterprise Micro","description":"SUSE Linux Enterprise Micro 5.3","arch":"x86_64","eula_url":"","friendly_version":"5.3","release_stage":"released","identifier":"SLE-Micro","id":2428,"extensions":[{"recommended":false,"version":"15.4","offline_predecessor_ids":[1536,1757,1888],"name":"SUSE Linux Enterprise Live Patching","release_type":null,"former_identifier":"sle-module-live-patching","migration_extra":false,"friendly_name":"SUSE Linux Enterprise Live Patching 15 SP4 x86_64","friendly_version":"15 SP4","extensions":[],"id":2334,"release_stage":"released","identifier":"sle-module-live-patching","free":false,"shortname":"Live-Patching","description":"

SUSE Linux Enterprise Live Patching provides packages to update critical components in SUSE Linux Enterprise. With SUSE Linux Enterprise Live Patching, you can perform critical patching without shutting down your system, reducing the need for planned downtime and increasing service availability.

","eula_url":"","arch":"x86_64","predecessor_ids":[1736,1828,1984,2187],"online_predecessor_ids":[1736,1828,1984,2187],"repositories":[{"id":5312,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Live-Patching/15-SP4/x86_64/update/","distro_target":"sle-15-x86_64","autorefresh":true,"installer_updates":false,"name":"SLE-Module-Live-Patching15-SP4-Updates","description":"SLE-Module-Live-Patching15-SP4-Updates for sle-15-x86_64"},{"installer_updates":false,"name":"SLE-Module-Live-Patching15-SP4-Debuginfo-Updates","description":"SLE-Module-Live-Patching15-SP4-Debuginfo-Updates for sle-15-x86_64","id":5313,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Live-Patching/15-SP4/x86_64/update_debug/","distro_target":"sle-15-x86_64","autorefresh":true},{"description":"SLE-Module-Live-Patching15-SP4-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Live-Patching15-SP4-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Live-Patching/15-SP4/x86_64/product/","distro_target":"sle-15-x86_64","autorefresh":false,"id":5314,"enabled":true},{"name":"SLE-Module-Live-Patching15-SP4-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-Live-Patching15-SP4-Debuginfo-Pool for sle-15-x86_64","enabled":false,"id":5315,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Live-Patching/15-SP4/x86_64/product_debug/"},{"installer_updates":false,"name":"SLE-Module-Live-Patching15-SP4-Source-Pool","description":"SLE-Module-Live-Patching15-SP4-Source-Pool for sle-15-x86_64","id":5316,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Live-Patching/15-SP4/x86_64/product_source/","distro_target":"sle-15-x86_64","autorefresh":false}],"product_class":"SLE-LP","product_type":"extension","cpe":"cpe:/o:suse:sle-module-live-patching:15:sp4"},{"eula_url":"","arch":"x86_64","free":true,"shortname":"SUSE-PackageHub-15","description":"SUSE Package Hub is a free of charge module providing access to community maintained packages built to run on SUSE Linux Enterprise Server. Built from the same sources used in the openSUSE distributions, these quality packages provide additional software to what is found in the SUSE Linux Enterprise Server product. Packages from the Package Hub are delivered without L3 support from SUSE. General updates and fixes to the packages in SUSE Package Hub are provided by the openSUSE community based on their discretion, though SUSE will monitor and ensure that any known critical security issues will be addressed. Packages in the Package Hub are approved by SUSE for use with SUSE Linux Enterprise Server 15-SP4 and to not interfere with the supportability of SUSE Linux Enterprise Server, its modules and extensions. For more information about SUSE Package Hub please visit https://packagehub.suse.com.","product_type":"module","cpe":"cpe:/o:suse:packagehub:15:sp4","predecessor_ids":[1743,1871,1950,2191],"product_class":"MODULE","online_predecessor_ids":[1743,1871,1950,2191],"repositories":[{"description":"SUSE-PackageHub-15-SP4-Backports-Pool for sle-15-x86_64","installer_updates":false,"name":"SUSE-PackageHub-15-SP4-Backports-Pool","distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Backports/SLE-15-SP4_x86_64/standard/","enabled":true,"id":5388},{"description":"SUSE-PackageHub-15-SP4-Backports-Debuginfo for sle-15-x86_64","installer_updates":false,"name":"SUSE-PackageHub-15-SP4-Backports-Debuginfo","distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Backports/SLE-15-SP4_x86_64/standard_debug/","enabled":false,"id":5389},{"id":5390,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP4/x86_64/update/","autorefresh":true,"distro_target":"sle-15-x86_64","name":"SLE-Module-Packagehub-Subpackages15-SP4-Updates","installer_updates":false,"description":"SLE-Module-Packagehub-Subpackages15-SP4-Updates for sle-15-x86_64"},{"installer_updates":false,"name":"SLE-Module-Packagehub-Subpackages15-SP4-Debuginfo-Updates","description":"SLE-Module-Packagehub-Subpackages15-SP4-Debuginfo-Updates for sle-15-x86_64","id":5391,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP4/x86_64/update_debug/","distro_target":"sle-15-x86_64","autorefresh":true},{"enabled":true,"id":5392,"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Backports/SLE-15-SP4_x86_64/product/","installer_updates":false,"name":"SUSE-PackageHub-15-SP4-Pool","description":"SUSE-PackageHub-15-SP4-Pool for sle-15-x86_64"},{"installer_updates":false,"name":"SLE-Module-Packagehub-Subpackages15-SP4-Pool","description":"SLE-Module-Packagehub-Subpackages15-SP4-Pool for sle-15-x86_64","enabled":true,"id":5393,"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP4/x86_64/product/"},{"id":5394,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP4/x86_64/product_debug/","distro_target":"sle-15-x86_64","autorefresh":false,"installer_updates":false,"name":"SLE-Module-Packagehub-Subpackages15-SP4-Debuginfo-Pool","description":"SLE-Module-Packagehub-Subpackages15-SP4-Debuginfo-Pool for sle-15-x86_64"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP4/x86_64/product_source/","distro_target":"sle-15-x86_64","autorefresh":false,"id":5395,"enabled":false,"description":"SLE-Module-Packagehub-Subpackages15-SP4-Source-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Packagehub-Subpackages15-SP4-Source-Pool"}],"offline_predecessor_ids":[1529,1813,1915],"name":"SUSE Package Hub","release_type":null,"former_identifier":"PackageHub","migration_extra":false,"friendly_name":"SUSE Package Hub 15 SP4 x86_64","recommended":false,"version":"15.4","extensions":[],"id":2347,"release_stage":"released","identifier":"PackageHub","friendly_version":"15 SP4"}],"version":"5.3","recommended":false,"former_identifier":"SLE-Micro","release_type":null,"friendly_name":"SUSE Linux Enterprise Micro 5.3 x86_64","migration_extra":false,"offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Micro"},{"version":"12.3","recommended":false,"former_identifier":"SLES_LTSS_TERADATA","release_type":null,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Server Teradata LTSS 12 SP3 x86_64","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Server Teradata LTSS","friendly_version":"12 SP3","identifier":"SLES_LTSS_TERADATA","release_stage":"released","id":2429,"extensions":[],"free":false,"shortname":"SUSE Linux Enterprise Server Teradata LTSS","description":"SUSE Linux Enterprise Server Teradata LTSS","arch":"x86_64","eula_url":"","online_predecessor_ids":[],"product_class":"Teradata","repositories":[{"description":"Teradata-12-SP3-LTSS-Extension-Updates for sle-12-x86_64","name":"Teradata-12-SP3-LTSS-Extension-Updates","installer_updates":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-SP3-LTSS-TERADATA/x86_64/update/","autorefresh":true,"distro_target":"sle-12-x86_64","id":5635,"enabled":true},{"name":"Teradata-12-SP3-LTSS-Extension-Debuginfo-Updates","installer_updates":false,"description":"Teradata-12-SP3-LTSS-Extension-Debuginfo-Updates for sle-12-x86_64","id":5636,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-SP3-LTSS-TERADATA/x86_64/update_debug/","autorefresh":true,"distro_target":"sle-12-x86_64"},{"url":"https://updates.suse.com/SUSE/Products/SLE-SERVER/12-SP3-LTSS-TERADATA/x86_64/product/","autorefresh":false,"distro_target":"sle-12-x86_64","id":5637,"enabled":true,"description":"Teradata-12-SP3-LTSS-Extension-Pool for sle-12-x86_64","name":"Teradata-12-SP3-LTSS-Extension-Pool","installer_updates":false},{"url":"https://updates.suse.com/SUSE/Products/SLE-SERVER/12-SP3-LTSS-TERADATA/x86_64/product_debug/","distro_target":"sle-12-x86_64","autorefresh":false,"id":5638,"enabled":false,"description":"Teradata-12-SP3-LTSS-Extension-Debuginfo-Pool for sle-12-x86_64","installer_updates":false,"name":"Teradata-12-SP3-LTSS-Extension-Debuginfo-Pool"},{"description":"Teradata-12-SP3-LTSS-Extension-Source-Pool for sle-12-x86_64","installer_updates":false,"name":"Teradata-12-SP3-LTSS-Extension-Source-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-SERVER/12-SP3-LTSS-TERADATA/x86_64/product_source/","distro_target":"sle-12-x86_64","autorefresh":false,"id":5639,"enabled":false}],"predecessor_ids":[],"product_type":"extension","cpe":"cpe:/o:suse:sles_ltss_teradata:12:sp3"},{"online_predecessor_ids":[],"product_class":"RANCHER-X86","repositories":[],"predecessor_ids":[],"cpe":"cpe:/o:suse:rancher:2.6.6","product_type":"base","description":null,"shortname":"Rancher","free":false,"arch":null,"eula_url":"","friendly_version":"2.6.6","release_stage":"released","identifier":"rancher","id":2430,"extensions":[],"version":"2.6.6","recommended":false,"migration_extra":false,"friendly_name":"SUSE Rancher 2.6.6","release_type":null,"former_identifier":"rancher","name":"SUSE Rancher","offline_predecessor_ids":[]},{"predecessor_ids":[],"product_class":"HARVESTER-X86","online_predecessor_ids":[],"repositories":[],"product_type":"base","cpe":"cpe:/o:suse:harvester:1.0.2","free":false,"description":null,"shortname":"Harvester","eula_url":"","arch":null,"friendly_version":"1.0.2","extensions":[],"id":2431,"release_stage":"released","identifier":"harvester","recommended":false,"version":"1.0.2","offline_predecessor_ids":[],"name":"Harvester","release_type":null,"former_identifier":"harvester","migration_extra":false,"friendly_name":"Harvester 1.0.2"},{"cpe":"cpe:/o:suse:harvester:1.0.1","product_type":"base","online_predecessor_ids":[],"repositories":[],"product_class":"HARVESTER-X86","predecessor_ids":[],"arch":null,"eula_url":"","description":null,"shortname":"Harvester","free":false,"release_stage":"released","id":2432,"identifier":"harvester","extensions":[],"friendly_version":"1.0.1","migration_extra":false,"friendly_name":"Harvester 1.0.1","former_identifier":"harvester","release_type":null,"name":"Harvester","offline_predecessor_ids":[],"version":"1.0.1","recommended":false},{"friendly_version":"1.0.0","identifier":"harvester","release_stage":"released","id":2433,"extensions":[],"version":"1.0.0","recommended":false,"release_type":null,"former_identifier":"harvester","migration_extra":false,"friendly_name":"Harvester 1.0.0","offline_predecessor_ids":[],"name":"Harvester","repositories":[],"online_predecessor_ids":[],"product_class":"HARVESTER-X86","predecessor_ids":[],"product_type":"base","cpe":"cpe:/o:suse:harvester:1.0.0","free":false,"description":null,"shortname":"Harvester","arch":null,"eula_url":""},{"eula_url":"","arch":null,"free":false,"description":null,"shortname":"NV","product_type":"base","cpe":"cpe:/o:suse:neuvector:5.0.1","predecessor_ids":[],"repositories":[],"online_predecessor_ids":[],"product_class":"NEUVECTOR","offline_predecessor_ids":[],"name":"NeuVector","release_type":null,"former_identifier":"neuvector","friendly_name":"NeuVector 5.0.1","migration_extra":false,"recommended":false,"version":"5.0.1","extensions":[],"identifier":"neuvector","release_stage":"released","id":2434,"friendly_version":"5.0.1"},{"former_identifier":"neuvector","release_type":null,"friendly_name":"NeuVector 5.0.0","migration_extra":false,"offline_predecessor_ids":[],"name":"NeuVector","version":"5.0.0","recommended":false,"id":2435,"release_stage":"released","identifier":"neuvector","extensions":[],"friendly_version":"5.0.0","arch":null,"eula_url":"","free":false,"shortname":"NV","description":null,"product_type":"base","cpe":"cpe:/o:suse:neuvector:5.0.0","online_predecessor_ids":[],"product_class":"NEUVECTOR","repositories":[],"predecessor_ids":[]},{"arch":null,"eula_url":"","shortname":"NV","description":null,"free":false,"cpe":"cpe:/o:suse:neuvector:4.0.0","product_type":"base","online_predecessor_ids":[],"product_class":"NEUVECTOR","repositories":[],"predecessor_ids":[],"migration_extra":false,"friendly_name":"NeuVector 4.0.0","release_type":null,"former_identifier":"neuvector","name":"NeuVector","offline_predecessor_ids":[],"version":"4.0.0","recommended":false,"release_stage":"released","id":2436,"identifier":"neuvector","extensions":[],"friendly_version":"4.0.0"},{"cpe":"cpe:/o:suse:neuvector:4.0.1","product_type":"base","repositories":[],"online_predecessor_ids":[],"product_class":"NEUVECTOR","predecessor_ids":[],"arch":null,"eula_url":"","description":null,"shortname":"NV","free":false,"identifier":"neuvector","release_stage":"released","id":2437,"extensions":[],"friendly_version":"4.0.1","friendly_name":"NeuVector 4.0.1","migration_extra":false,"former_identifier":"neuvector","release_type":null,"name":"NeuVector","offline_predecessor_ids":[],"version":"4.0.1","recommended":false},{"eula_url":"","arch":null,"shortname":"NV","description":null,"free":false,"cpe":"cpe:/o:suse:neuvector:4.0.2","product_type":"base","predecessor_ids":[],"online_predecessor_ids":[],"repositories":[],"product_class":"NEUVECTOR","name":"NeuVector","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"NeuVector 4.0.2","release_type":null,"former_identifier":"neuvector","recommended":false,"version":"4.0.2","extensions":[],"identifier":"neuvector","release_stage":"released","id":2438,"friendly_version":"4.0.2"},{"eula_url":"","arch":null,"free":false,"shortname":"NV","description":null,"product_type":"base","cpe":"cpe:/o:suse:neuvector:4.0.3","predecessor_ids":[],"repositories":[],"online_predecessor_ids":[],"product_class":"NEUVECTOR","offline_predecessor_ids":[],"name":"NeuVector","former_identifier":"neuvector","release_type":null,"friendly_name":"NeuVector 4.0.3","migration_extra":false,"recommended":false,"version":"4.0.3","extensions":[],"identifier":"neuvector","release_stage":"released","id":2439,"friendly_version":"4.0.3"},{"id":2440,"release_stage":"released","identifier":"neuvector","extensions":[],"friendly_version":"4.1.0","former_identifier":"neuvector","release_type":null,"friendly_name":"NeuVector 4.1.0","migration_extra":false,"offline_predecessor_ids":[],"name":"NeuVector","version":"4.1.0","recommended":false,"product_type":"base","cpe":"cpe:/o:suse:neuvector:4.1.0","product_class":"NEUVECTOR","online_predecessor_ids":[],"repositories":[],"predecessor_ids":[],"arch":null,"eula_url":"","free":false,"shortname":"NV","description":null},{"version":"4.1.1","recommended":false,"former_identifier":"neuvector","release_type":null,"friendly_name":"NeuVector 4.1.1","migration_extra":false,"offline_predecessor_ids":[],"name":"NeuVector","friendly_version":"4.1.1","release_stage":"released","id":2441,"identifier":"neuvector","extensions":[],"free":false,"shortname":"NV","description":null,"arch":null,"eula_url":"","product_class":"NEUVECTOR","online_predecessor_ids":[],"repositories":[],"predecessor_ids":[],"product_type":"base","cpe":"cpe:/o:suse:neuvector:4.1.1"},{"friendly_version":"4.1.2","extensions":[],"release_stage":"released","identifier":"neuvector","id":2442,"recommended":false,"version":"4.1.2","name":"NeuVector","offline_predecessor_ids":[],"friendly_name":"NeuVector 4.1.2","migration_extra":false,"former_identifier":"neuvector","release_type":null,"predecessor_ids":[],"repositories":[],"online_predecessor_ids":[],"product_class":"NEUVECTOR","cpe":"cpe:/o:suse:neuvector:4.1.2","product_type":"base","shortname":"NV","description":null,"free":false,"eula_url":"","arch":null},{"description":null,"shortname":"NV","free":false,"eula_url":"","arch":null,"predecessor_ids":[],"online_predecessor_ids":[],"repositories":[],"product_class":"NEUVECTOR","cpe":"cpe:/o:suse:neuvector:4.2.0","product_type":"base","recommended":false,"version":"4.2.0","name":"NeuVector","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"NeuVector 4.2.0","release_type":null,"former_identifier":"neuvector","friendly_version":"4.2.0","extensions":[],"identifier":"neuvector","release_stage":"released","id":2443},{"friendly_name":"NeuVector 4.2.1","migration_extra":false,"release_type":null,"former_identifier":"neuvector","name":"NeuVector","offline_predecessor_ids":[],"version":"4.2.1","recommended":false,"identifier":"neuvector","release_stage":"released","id":2444,"extensions":[],"friendly_version":"4.2.1","arch":null,"eula_url":"","description":null,"shortname":"NV","free":false,"cpe":"cpe:/o:suse:neuvector:4.2.1","product_type":"base","repositories":[],"online_predecessor_ids":[],"product_class":"NEUVECTOR","predecessor_ids":[]},{"offline_predecessor_ids":[],"name":"NeuVector","release_type":null,"former_identifier":"neuvector","migration_extra":false,"friendly_name":"NeuVector 4.2.2","recommended":false,"version":"4.2.2","extensions":[],"id":2445,"release_stage":"released","identifier":"neuvector","friendly_version":"4.2.2","eula_url":"","arch":null,"free":false,"description":null,"shortname":"NV","product_type":"base","cpe":"cpe:/o:suse:neuvector:4.2.2","predecessor_ids":[],"repositories":[],"online_predecessor_ids":[],"product_class":"NEUVECTOR"},{"free":false,"description":null,"shortname":"NV","eula_url":"","arch":null,"predecessor_ids":[],"online_predecessor_ids":[],"repositories":[],"product_class":"NEUVECTOR","product_type":"base","cpe":"cpe:/o:suse:neuvector:4.2.3","recommended":false,"version":"4.2.3","offline_predecessor_ids":[],"name":"NeuVector","release_type":null,"former_identifier":"neuvector","migration_extra":false,"friendly_name":"NeuVector 4.2.3","friendly_version":"4.2.3","extensions":[],"id":2446,"release_stage":"released","identifier":"neuvector"},{"friendly_version":"4.3.0","id":2447,"release_stage":"released","identifier":"neuvector","extensions":[],"version":"4.3.0","recommended":false,"release_type":null,"former_identifier":"neuvector","migration_extra":false,"friendly_name":"NeuVector 4.3.0","offline_predecessor_ids":[],"name":"NeuVector","online_predecessor_ids":[],"repositories":[],"product_class":"NEUVECTOR","predecessor_ids":[],"product_type":"base","cpe":"cpe:/o:suse:neuvector:4.3.0","free":false,"shortname":"NV","description":null,"arch":null,"eula_url":""},{"version":"4.3.1","recommended":false,"release_type":null,"former_identifier":"neuvector","migration_extra":false,"friendly_name":"NeuVector 4.3.1","offline_predecessor_ids":[],"name":"NeuVector","friendly_version":"4.3.1","id":2448,"release_stage":"released","identifier":"neuvector","extensions":[],"free":false,"description":null,"shortname":"NV","arch":null,"eula_url":"","online_predecessor_ids":[],"product_class":"NEUVECTOR","repositories":[],"predecessor_ids":[],"product_type":"base","cpe":"cpe:/o:suse:neuvector:4.3.1"},{"friendly_version":"4.3.2","extensions":[],"id":2449,"release_stage":"released","identifier":"neuvector","recommended":false,"version":"4.3.2","name":"NeuVector","offline_predecessor_ids":[],"friendly_name":"NeuVector 4.3.2","migration_extra":false,"former_identifier":"neuvector","release_type":null,"predecessor_ids":[],"online_predecessor_ids":[],"product_class":"NEUVECTOR","repositories":[],"cpe":"cpe:/o:suse:neuvector:4.3.2","product_type":"base","shortname":"NV","description":null,"free":false,"eula_url":"","arch":null},{"release_stage":"released","identifier":"neuvector","id":2450,"extensions":[],"friendly_version":"4.4.0","friendly_name":"NeuVector 4.4.0","migration_extra":false,"release_type":null,"former_identifier":"neuvector","name":"NeuVector","offline_predecessor_ids":[],"version":"4.4.0","recommended":false,"cpe":"cpe:/o:suse:neuvector:4.4.0","product_type":"base","online_predecessor_ids":[],"product_class":"NEUVECTOR","repositories":[],"predecessor_ids":[],"arch":null,"eula_url":"","description":null,"shortname":"NV","free":false},{"predecessor_ids":[],"online_predecessor_ids":[],"product_class":"NEUVECTOR","repositories":[],"cpe":"cpe:/o:suse:neuvector:4.4.1","product_type":"base","shortname":"NV","description":null,"free":false,"eula_url":"","arch":null,"friendly_version":"4.4.1","extensions":[],"id":2451,"release_stage":"released","identifier":"neuvector","recommended":false,"version":"4.4.1","name":"NeuVector","offline_predecessor_ids":[],"friendly_name":"NeuVector 4.4.1","migration_extra":false,"release_type":null,"former_identifier":"neuvector"},{"extensions":[],"release_stage":"released","identifier":"neuvector","id":2452,"friendly_version":"4.4.2","offline_predecessor_ids":[],"name":"NeuVector","former_identifier":"neuvector","release_type":null,"friendly_name":"NeuVector 4.4.2","migration_extra":false,"recommended":false,"version":"4.4.2","product_type":"base","cpe":"cpe:/o:suse:neuvector:4.4.2","predecessor_ids":[],"online_predecessor_ids":[],"product_class":"NEUVECTOR","repositories":[],"eula_url":"","arch":null,"free":false,"description":null,"shortname":"NV"},{"offline_predecessor_ids":[],"name":"NeuVector","former_identifier":"neuvector","release_type":null,"friendly_name":"NeuVector 4.4.3","migration_extra":false,"recommended":false,"version":"4.4.3","extensions":[],"id":2453,"release_stage":"released","identifier":"neuvector","friendly_version":"4.4.3","eula_url":"","arch":null,"free":false,"description":null,"shortname":"NV","product_type":"base","cpe":"cpe:/o:suse:neuvector:4.4.3","predecessor_ids":[],"product_class":"NEUVECTOR","online_predecessor_ids":[],"repositories":[]},{"free":false,"description":null,"shortname":"NV","eula_url":"","arch":null,"predecessor_ids":[],"repositories":[],"online_predecessor_ids":[],"product_class":"NEUVECTOR","product_type":"base","cpe":"cpe:/o:suse:neuvector:4.4.4","recommended":false,"version":"4.4.4","offline_predecessor_ids":[],"name":"NeuVector","former_identifier":"neuvector","release_type":null,"friendly_name":"NeuVector 4.4.4","migration_extra":false,"friendly_version":"4.4.4","extensions":[],"identifier":"neuvector","release_stage":"released","id":2454},{"free":false,"shortname":"NV","description":null,"eula_url":"","arch":null,"predecessor_ids":[],"product_class":"NEUVECTOR","online_predecessor_ids":[],"repositories":[],"product_type":"base","cpe":"cpe:/o:suse:neuvector:3.2.0","recommended":false,"version":"3.2.0","offline_predecessor_ids":[],"name":"NeuVector","former_identifier":"neuvector","release_type":null,"migration_extra":false,"friendly_name":"NeuVector 3.2.0","friendly_version":"3.2.0","extensions":[],"identifier":"neuvector","release_stage":"released","id":2455},{"description":null,"shortname":"NV","free":false,"eula_url":"","arch":null,"predecessor_ids":[],"repositories":[],"online_predecessor_ids":[],"product_class":"NEUVECTOR","cpe":"cpe:/o:suse:neuvector:3.2.1","product_type":"base","recommended":false,"version":"3.2.1","name":"NeuVector","offline_predecessor_ids":[],"friendly_name":"NeuVector 3.2.1","migration_extra":false,"former_identifier":"neuvector","release_type":null,"friendly_version":"3.2.1","extensions":[],"release_stage":"released","identifier":"neuvector","id":2456},{"release_stage":"released","identifier":"neuvector","id":2457,"extensions":[],"friendly_version":"3.2.2","former_identifier":"neuvector","release_type":null,"migration_extra":false,"friendly_name":"NeuVector 3.2.2","offline_predecessor_ids":[],"name":"NeuVector","version":"3.2.2","recommended":false,"product_type":"base","cpe":"cpe:/o:suse:neuvector:3.2.2","repositories":[],"online_predecessor_ids":[],"product_class":"NEUVECTOR","predecessor_ids":[],"arch":null,"eula_url":"","free":false,"description":null,"shortname":"NV"},{"free":false,"description":null,"shortname":"NV","eula_url":"","arch":null,"predecessor_ids":[],"product_class":"NEUVECTOR","online_predecessor_ids":[],"repositories":[],"product_type":"base","cpe":"cpe:/o:suse:neuvector:3.2.3","recommended":false,"version":"3.2.3","offline_predecessor_ids":[],"name":"NeuVector","former_identifier":"neuvector","release_type":null,"migration_extra":false,"friendly_name":"NeuVector 3.2.3","friendly_version":"3.2.3","extensions":[],"release_stage":"released","id":2458,"identifier":"neuvector"},{"eula_url":"","arch":null,"free":false,"description":null,"shortname":"NV","product_type":"base","cpe":"cpe:/o:suse:neuvector:3.2.4","predecessor_ids":[],"online_predecessor_ids":[],"product_class":"NEUVECTOR","repositories":[],"offline_predecessor_ids":[],"name":"NeuVector","release_type":null,"former_identifier":"neuvector","migration_extra":false,"friendly_name":"NeuVector 3.2.4","recommended":false,"version":"3.2.4","extensions":[],"id":2459,"release_stage":"released","identifier":"neuvector","friendly_version":"3.2.4"},{"eula_url":"","arch":null,"free":false,"description":null,"shortname":"NV","product_type":"base","cpe":"cpe:/o:suse:neuvector:2.5.1","predecessor_ids":[],"online_predecessor_ids":[],"repositories":[],"product_class":"NEUVECTOR","offline_predecessor_ids":[],"name":"NeuVector","release_type":null,"former_identifier":"neuvector","migration_extra":false,"friendly_name":"NeuVector 2.5.1","recommended":false,"version":"2.5.1","extensions":[],"release_stage":"released","identifier":"neuvector","id":2460,"friendly_version":"2.5.1"},{"recommended":false,"version":"Other","offline_predecessor_ids":[],"name":"NeuVector","former_identifier":"neuvector","release_type":null,"friendly_name":"NeuVector Other","migration_extra":false,"friendly_version":"Other","extensions":[],"release_stage":"released","id":2461,"identifier":"neuvector","free":false,"description":null,"shortname":"NV","eula_url":"","arch":null,"predecessor_ids":[],"online_predecessor_ids":[],"repositories":[],"product_class":"NEUVECTOR","product_type":"base","cpe":"cpe:/o:suse:neuvector:other"},{"repositories":[{"name":"SLE-Product-SLES15-SP5-Updates","installer_updates":false,"description":"SLE-Product-SLES15-SP5-Updates for sle-15-aarch64","id":5643,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-SLES/15-SP5/aarch64/update/","autorefresh":true,"distro_target":"sle-15-aarch64"},{"description":"SLE-Product-SLES15-SP5-Debuginfo-Updates for sle-15-aarch64","installer_updates":false,"name":"SLE-Product-SLES15-SP5-Debuginfo-Updates","url":"https://updates.suse.com/SUSE/Updates/SLE-Product-SLES/15-SP5/aarch64/update_debug/","distro_target":"sle-15-aarch64","autorefresh":true,"id":5644,"enabled":false},{"description":"SLE15-SP5-Installer-Updates for sle-15-aarch64","name":"SLE15-SP5-Installer-Updates","installer_updates":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-INSTALLER/15-SP5/aarch64/update/","autorefresh":true,"distro_target":"sle-15-aarch64","id":5645,"enabled":false},{"name":"SLE-Product-SLES15-SP5-Pool","installer_updates":false,"description":"SLE-Product-SLES15-SP5-Pool for sle-15-aarch64","enabled":true,"id":5646,"autorefresh":false,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Products/SLE-Product-SLES/15-SP5/aarch64/product/"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Product-SLES/15-SP5/aarch64/product_debug/","distro_target":"sle-15-aarch64","autorefresh":false,"id":5647,"enabled":false,"description":"SLE-Product-SLES15-SP5-Debuginfo-Pool for sle-15-aarch64","installer_updates":false,"name":"SLE-Product-SLES15-SP5-Debuginfo-Pool"},{"name":"SLE-Product-SLES15-SP5-Source-Pool","installer_updates":false,"description":"SLE-Product-SLES15-SP5-Source-Pool for sle-15-aarch64","enabled":false,"id":5648,"autorefresh":false,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Products/SLE-Product-SLES/15-SP5/aarch64/product_source/"}],"online_predecessor_ids":[1936,2137,2289,2585],"product_class":"SLES-ARM64-BETA","predecessor_ids":[1936,2137,2289,2585],"product_type":"base","cpe":"cpe:/o:suse:sles:15:sp5","free":false,"description":"SUSE Linux Enterprise offers a comprehensive suite of products built on a single code base. The platform addresses business needs from the smallest thin-client devices to the world's most powerful high-performance computing and mainframe servers. SUSE Linux Enterprise offers common management tools and technology certifications across the platform, and each product is enterprise-class.","shortname":"SLES15-SP5","arch":"aarch64","eula_url":"https://updates.suse.com/SUSE/Products/SLE-Product-SLES/15-SP5/aarch64/product.license/","friendly_version":"15 SP5","release_stage":"beta","id":2462,"identifier":"SLES","extensions":[{"product_class":"MODULE","online_predecessor_ids":[1589,1769,1943,2142,2296],"repositories":[{"name":"SLE-Module-Basesystem15-SP5-Updates","installer_updates":false,"description":"SLE-Module-Basesystem15-SP5-Updates for sle-15-aarch64","id":5693,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15-SP5/aarch64/update/","autorefresh":true,"distro_target":"sle-15-aarch64"},{"name":"SLE-Module-Basesystem15-SP5-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-Basesystem15-SP5-Debuginfo-Updates for sle-15-aarch64","id":5694,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15-SP5/aarch64/update_debug/","autorefresh":true,"distro_target":"sle-15-aarch64"},{"description":"SLE-Module-Basesystem15-SP5-Pool for sle-15-aarch64","installer_updates":false,"name":"SLE-Module-Basesystem15-SP5-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP5/aarch64/product/","distro_target":"sle-15-aarch64","autorefresh":false,"id":5695,"enabled":true},{"description":"SLE-Module-Basesystem15-SP5-Debuginfo-Pool for sle-15-aarch64","installer_updates":false,"name":"SLE-Module-Basesystem15-SP5-Debuginfo-Pool","distro_target":"sle-15-aarch64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP5/aarch64/product_debug/","enabled":false,"id":5696},{"autorefresh":false,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP5/aarch64/product_source/","enabled":false,"id":5697,"description":"SLE-Module-Basesystem15-SP5-Source-Pool for sle-15-aarch64","name":"SLE-Module-Basesystem15-SP5-Source-Pool","installer_updates":false}],"predecessor_ids":[1589,1769,1943,2142,2296],"cpe":"cpe:/o:suse:sle-module-basesystem:15:sp5","product_type":"module","description":"

The SUSE Linux Enterprise Basesystem Module delivers the base system of the product.

","shortname":"Basesystem-Module","free":true,"arch":"aarch64","eula_url":"","friendly_version":"15 SP5","release_stage":"released","id":2471,"identifier":"sle-module-basesystem","extensions":[{"arch":"aarch64","eula_url":"","free":true,"shortname":"Desktop-Applications-Module","description":"

The SUSE Linux Enterprise Desktop Applications Module delivers a basic set of Desktop functionality.

Access to the Desktop Applications Module is included in your SUSE Linux Enterprise product subscription.

","product_type":"module","cpe":"cpe:/o:suse:sle-module-desktop-applications:15:sp5","product_class":"MODULE","online_predecessor_ids":[1595,1773,1964,2146,2300],"repositories":[{"name":"SLE-Module-Desktop-Applications15-SP5-Updates","installer_updates":false,"description":"SLE-Module-Desktop-Applications15-SP5-Updates for sle-15-aarch64","enabled":true,"id":5713,"autorefresh":true,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15-SP5/aarch64/update/"},{"name":"SLE-Module-Desktop-Applications15-SP5-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-Desktop-Applications15-SP5-Debuginfo-Updates for sle-15-aarch64","enabled":false,"id":5714,"autorefresh":true,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15-SP5/aarch64/update_debug/"},{"distro_target":"sle-15-aarch64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP5/aarch64/product/","enabled":true,"id":5715,"description":"SLE-Module-Desktop-Applications15-SP5-Pool for sle-15-aarch64","installer_updates":false,"name":"SLE-Module-Desktop-Applications15-SP5-Pool"},{"enabled":false,"id":5716,"autorefresh":false,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP5/aarch64/product_debug/","name":"SLE-Module-Desktop-Applications15-SP5-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-Desktop-Applications15-SP5-Debuginfo-Pool for sle-15-aarch64"},{"name":"SLE-Module-Desktop-Applications15-SP5-Source-Pool","installer_updates":false,"description":"SLE-Module-Desktop-Applications15-SP5-Source-Pool for sle-15-aarch64","enabled":false,"id":5717,"autorefresh":false,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP5/aarch64/product_source/"}],"predecessor_ids":[1595,1773,1964,2146,2300],"release_type":null,"former_identifier":"sle-module-desktop-applications","friendly_name":"Desktop Applications Module 15 SP5 aarch64","migration_extra":true,"offline_predecessor_ids":[],"name":"Desktop Applications Module","version":"15.5","recommended":false,"identifier":"sle-module-desktop-applications","release_stage":"released","id":2475,"extensions":[{"free":true,"description":"

The Development Tools Module helps you developing applications for SUSE Linux Enterprise 15.

Access to the Development Tools Module is included in your SUSE Linux Enterprise product subscription. The module has a different lifecycle than SUSE Linux Enterprise itself.

","shortname":"Development-Tools-Module","eula_url":"","arch":"aarch64","predecessor_ids":[1598,1791,1968,2158,2312],"online_predecessor_ids":[1598,1791,1968,2158,2312],"product_class":"MODULE","repositories":[{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15-SP5/aarch64/update/","autorefresh":true,"distro_target":"sle-15-aarch64","id":5773,"enabled":true,"description":"SLE-Module-DevTools15-SP5-Updates for sle-15-aarch64","name":"SLE-Module-DevTools15-SP5-Updates","installer_updates":false},{"description":"SLE-Module-DevTools15-SP5-Debuginfo-Updates for sle-15-aarch64","installer_updates":false,"name":"SLE-Module-DevTools15-SP5-Debuginfo-Updates","distro_target":"sle-15-aarch64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15-SP5/aarch64/update_debug/","enabled":false,"id":5774},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP5/aarch64/product/","distro_target":"sle-15-aarch64","autorefresh":false,"id":5775,"enabled":true,"description":"SLE-Module-DevTools15-SP5-Pool for sle-15-aarch64","installer_updates":false,"name":"SLE-Module-DevTools15-SP5-Pool"},{"name":"SLE-Module-DevTools15-SP5-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-DevTools15-SP5-Debuginfo-Pool for sle-15-aarch64","enabled":false,"id":5776,"autorefresh":false,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP5/aarch64/product_debug/"},{"description":"SLE-Module-DevTools15-SP5-Source-Pool for sle-15-aarch64","name":"SLE-Module-DevTools15-SP5-Source-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP5/aarch64/product_source/","autorefresh":false,"distro_target":"sle-15-aarch64","id":5777,"enabled":false}],"product_type":"module","cpe":"cpe:/o:suse:sle-module-development-tools:15:sp5","recommended":false,"version":"15.5","offline_predecessor_ids":[1376,1430,1633,1889],"name":"Development Tools Module","former_identifier":"sle-sdk","release_type":null,"friendly_name":"Development Tools Module 15 SP5 aarch64","migration_extra":true,"friendly_version":"15 SP5","extensions":[{"free":true,"description":"NVIDIA Compute Drivers - NVIDIA CUDA This Module contains software under the terms and conditions of a 3rd party EULA (End User License Agreement). The EULA can be found at https://docs.nvidia.com/cuda/eula/index.html. By using this software you agree to fully comply with the terms and conditions of the EULA. If you do not agree to the terms and conditions of the EULA, do not use the software.","shortname":"NVIDIA-Compute-Module","arch":"aarch64","eula_url":"https://updates.suse.com/SUSE/Products/SLE-Module-NVIDIA-Compute/15/aarch64/product.license/","online_predecessor_ids":[],"repositories":[{"installer_updates":false,"name":"SLE-Module-NVIDIA-Compute-15-Updates","description":"SLE-Module-NVIDIA-Compute-15-Updates for sle-15-aarch64","id":4560,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-NVIDIA-Compute/15/aarch64/update/","distro_target":"sle-15-aarch64","autorefresh":true},{"enabled":true,"id":4561,"distro_target":"sle-15-aarch64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-NVIDIA-Compute/15/aarch64/product/","installer_updates":false,"name":"SLE-Module-NVIDIA-Compute-15-Pool","description":"SLE-Module-NVIDIA-Compute-15-Pool for sle-15-aarch64"},{"enabled":true,"id":4562,"distro_target":null,"autorefresh":true,"url":"https://developer.download.nvidia.com/compute/cuda/repos/sles15/sbsa/","installer_updates":false,"name":"NVIDIA-Compute-SLE-15","description":"NVIDIA-Compute-SLE-15"}],"product_class":"MODULE","predecessor_ids":[],"product_type":"module","cpe":"cpe:/o:suse:sle-module-nvidia-compute:15","version":"15","recommended":false,"release_type":null,"former_identifier":"sle-module-NVIDIA-compute","friendly_name":"NVIDIA Compute Module 15 aarch64","migration_extra":false,"offline_predecessor_ids":[],"name":"NVIDIA Compute Module","friendly_version":"15","release_stage":"released","id":2130,"identifier":"sle-module-NVIDIA-compute","extensions":[]}],"id":2487,"release_stage":"released","identifier":"sle-module-development-tools"}],"friendly_version":"15 SP5"},{"product_class":"MODULE","online_predecessor_ids":[1601,1777,1952,2150,2304],"repositories":[{"installer_updates":false,"name":"SLE-Module-Server-Applications15-SP5-Updates","description":"SLE-Module-Server-Applications15-SP5-Updates for sle-15-aarch64","enabled":true,"id":5733,"distro_target":"sle-15-aarch64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15-SP5/aarch64/update/"},{"description":"SLE-Module-Server-Applications15-SP5-Debuginfo-Updates for sle-15-aarch64","installer_updates":false,"name":"SLE-Module-Server-Applications15-SP5-Debuginfo-Updates","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15-SP5/aarch64/update_debug/","distro_target":"sle-15-aarch64","autorefresh":true,"id":5734,"enabled":false},{"description":"SLE-Module-Server-Applications15-SP5-Pool for sle-15-aarch64","name":"SLE-Module-Server-Applications15-SP5-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP5/aarch64/product/","autorefresh":false,"distro_target":"sle-15-aarch64","id":5735,"enabled":true},{"enabled":false,"id":5736,"distro_target":"sle-15-aarch64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP5/aarch64/product_debug/","installer_updates":false,"name":"SLE-Module-Server-Applications15-SP5-Debuginfo-Pool","description":"SLE-Module-Server-Applications15-SP5-Debuginfo-Pool for sle-15-aarch64"},{"description":"SLE-Module-Server-Applications15-SP5-Source-Pool for sle-15-aarch64","installer_updates":false,"name":"SLE-Module-Server-Applications15-SP5-Source-Pool","distro_target":"sle-15-aarch64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP5/aarch64/product_source/","enabled":false,"id":5737}],"predecessor_ids":[1601,1777,1952,2150,2304],"product_type":"module","cpe":"cpe:/o:suse:sle-module-server-applications:15:sp5","free":true,"shortname":"Server-Applications-Module","description":"

The SUSE Linux Enterprise Server Applications Module delivers a basic set of Server functionality.

Access to the Server Applications Module is included in your SUSE Linux Enterprise Server subscription.

","arch":"aarch64","eula_url":"","friendly_version":"15 SP5","release_stage":"released","id":2479,"identifier":"sle-module-server-applications","extensions":[{"cpe":"cpe:/o:suse:sle-module-web-scripting:15:sp5","product_type":"module","repositories":[{"autorefresh":true,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/15-SP5/aarch64/update/","enabled":true,"id":5793,"description":"SLE-Module-Web-Scripting15-SP5-Updates for sle-15-aarch64","name":"SLE-Module-Web-Scripting15-SP5-Updates","installer_updates":false},{"enabled":false,"id":5794,"autorefresh":true,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/15-SP5/aarch64/update_debug/","name":"SLE-Module-Web-Scripting15-SP5-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-Web-Scripting15-SP5-Debuginfo-Updates for sle-15-aarch64"},{"installer_updates":false,"name":"SLE-Module-Web-Scripting15-SP5-Pool","description":"SLE-Module-Web-Scripting15-SP5-Pool for sle-15-aarch64","id":5795,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP5/aarch64/product/","distro_target":"sle-15-aarch64","autorefresh":false},{"description":"SLE-Module-Web-Scripting15-SP5-Debuginfo-Pool for sle-15-aarch64","installer_updates":false,"name":"SLE-Module-Web-Scripting15-SP5-Debuginfo-Pool","distro_target":"sle-15-aarch64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP5/aarch64/product_debug/","enabled":false,"id":5796},{"name":"SLE-Module-Web-Scripting15-SP5-Source-Pool","installer_updates":false,"description":"SLE-Module-Web-Scripting15-SP5-Source-Pool for sle-15-aarch64","id":5797,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP5/aarch64/product_source/","autorefresh":false,"distro_target":"sle-15-aarch64"}],"online_predecessor_ids":[1718,1795,1973,2162,2316],"product_class":"MODULE","predecessor_ids":[1718,1795,1973,2162,2316],"arch":"aarch64","eula_url":"","shortname":"Web-Scripting-Module","description":"

The SUSE Linux Enterprise Web and Scripting Module should contains additional packages that are helpful when running a webserver.

Access to the Web and Scripting Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself: Package versions in this module are usually supported for at most three years. We are planning to release more recent versions on a schedule of approximately 18 month; the exact dates may differ per package.

","free":true,"release_stage":"released","identifier":"sle-module-web-scripting","id":2491,"extensions":[],"friendly_version":"15 SP5","migration_extra":true,"friendly_name":"Web and Scripting Module 15 SP5 aarch64","former_identifier":"sle-module-web-scripting","release_type":null,"name":"Web and Scripting Module","offline_predecessor_ids":[1539],"version":"15.5","recommended":false},{"predecessor_ids":[1604,1801,1979,2168,2320],"repositories":[{"enabled":true,"id":5823,"distro_target":"sle-15-aarch64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/15-SP5/aarch64/update/","installer_updates":false,"name":"SLE-Module-Legacy15-SP5-Updates","description":"SLE-Module-Legacy15-SP5-Updates for sle-15-aarch64"},{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/15-SP5/aarch64/update_debug/","autorefresh":true,"distro_target":"sle-15-aarch64","id":5824,"enabled":false,"description":"SLE-Module-Legacy15-SP5-Debuginfo-Updates for sle-15-aarch64","name":"SLE-Module-Legacy15-SP5-Debuginfo-Updates","installer_updates":false},{"description":"SLE-Module-Legacy15-SP5-Pool for sle-15-aarch64","installer_updates":false,"name":"SLE-Module-Legacy15-SP5-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15-SP5/aarch64/product/","distro_target":"sle-15-aarch64","autorefresh":false,"id":5825,"enabled":true},{"id":5826,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15-SP5/aarch64/product_debug/","autorefresh":false,"distro_target":"sle-15-aarch64","name":"SLE-Module-Legacy15-SP5-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-Legacy15-SP5-Debuginfo-Pool for sle-15-aarch64"},{"description":"SLE-Module-Legacy15-SP5-Source-Pool for sle-15-aarch64","name":"SLE-Module-Legacy15-SP5-Source-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15-SP5/aarch64/product_source/","enabled":false,"id":5827}],"online_predecessor_ids":[1604,1801,1979,2168,2320],"product_class":"MODULE","cpe":"cpe:/o:suse:sle-module-legacy:15:sp5","product_type":"module","description":"

The Legacy Module helps you migrating applications from SUSE Linux Enterprise 12 and other systems to SUSE Linux Enterprise 15, by providing packages which are discontinued on SUSE Linux Enterprise Server, such as: ntp, IBM Java 8, and a number of libraries.

Access to the Legacy Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself. Packages in the this module are usually supported for at most three years.

","shortname":"Legacy-Module","free":true,"eula_url":"","arch":"aarch64","friendly_version":"15 SP5","extensions":[],"release_stage":"released","id":2497,"identifier":"sle-module-legacy","recommended":false,"version":"15.5","name":"Legacy Module","offline_predecessor_ids":[],"friendly_name":"Legacy Module 15 SP5 aarch64","migration_extra":true,"release_type":null,"former_identifier":"sle-module-legacy"},{"extensions":[],"identifier":"sle-module-public-cloud","release_stage":"released","id":2501,"friendly_version":"15 SP5","offline_predecessor_ids":[1528],"name":"Public Cloud Module","release_type":null,"former_identifier":"sle-module-public-cloud","friendly_name":"Public Cloud Module 15 SP5 aarch64","migration_extra":false,"recommended":false,"version":"15.5","product_type":"module","cpe":"cpe:/o:suse:sle-module-public-cloud:15:sp5","predecessor_ids":[1645,1805,1985,2172,2324],"online_predecessor_ids":[1645,1805,1985,2172,2324],"product_class":"MODULE","repositories":[{"description":"SLE-Module-Public-Cloud15-SP5-Updates for sle-15-aarch64","installer_updates":false,"name":"SLE-Module-Public-Cloud15-SP5-Updates","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/15-SP5/aarch64/update/","distro_target":"sle-15-aarch64","autorefresh":true,"id":5843,"enabled":true},{"description":"SLE-Module-Public-Cloud15-SP5-Debuginfo-Updates for sle-15-aarch64","name":"SLE-Module-Public-Cloud15-SP5-Debuginfo-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/15-SP5/aarch64/update_debug/","enabled":false,"id":5844},{"enabled":true,"id":5845,"distro_target":"sle-15-aarch64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP5/aarch64/product/","installer_updates":false,"name":"SLE-Module-Public-Cloud15-SP5-Pool","description":"SLE-Module-Public-Cloud15-SP5-Pool for sle-15-aarch64"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP5/aarch64/product_debug/","distro_target":"sle-15-aarch64","autorefresh":false,"id":5846,"enabled":false,"description":"SLE-Module-Public-Cloud15-SP5-Debuginfo-Pool for sle-15-aarch64","installer_updates":false,"name":"SLE-Module-Public-Cloud15-SP5-Debuginfo-Pool"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP5/aarch64/product_source/","autorefresh":false,"distro_target":"sle-15-aarch64","id":5847,"enabled":false,"description":"SLE-Module-Public-Cloud15-SP5-Source-Pool for sle-15-aarch64","name":"SLE-Module-Public-Cloud15-SP5-Source-Pool","installer_updates":false}],"eula_url":"","arch":"aarch64","free":true,"description":"

The Public Cloud Module is a collection of tools that enables you to create and manage cloud images from the commandline on SUSE Linux Enterprise Server. When building your own images with KIWI or SUSE Studio, initialization code specific to the target cloud is included in that image.

Access to the Public Cloud Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself; please check the Release Notes for further details.

","shortname":"Public-Cloud-Module"},{"friendly_version":"15 SP5","release_stage":"beta","identifier":"sle-ha","id":2514,"extensions":[],"version":"15.5","recommended":false,"release_type":null,"former_identifier":"sle-ha","friendly_name":"SUSE Linux Enterprise High Availability Extension 15 SP5 aarch64 (BETA)","migration_extra":false,"offline_predecessor_ids":[],"name":"SUSE Linux Enterprise High Availability Extension","product_class":"SLE-HAE-ARM64-BETA","online_predecessor_ids":[1608,1782,1956,2192,2337],"repositories":[{"autorefresh":true,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Updates/SLE-Product-HA/15-SP5/aarch64/update/","enabled":true,"id":5908,"description":"SLE-Product-HA15-SP5-Updates for sle-15-aarch64","name":"SLE-Product-HA15-SP5-Updates","installer_updates":false},{"id":5909,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-HA/15-SP5/aarch64/update_debug/","autorefresh":true,"distro_target":"sle-15-aarch64","name":"SLE-Product-HA15-SP5-Debuginfo-Updates","installer_updates":false,"description":"SLE-Product-HA15-SP5-Debuginfo-Updates for sle-15-aarch64"},{"description":"SLE-Product-HA15-SP5-Pool for sle-15-aarch64","name":"SLE-Product-HA15-SP5-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP5/aarch64/product/","autorefresh":false,"distro_target":"sle-15-aarch64","id":5910,"enabled":true},{"id":5911,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP5/aarch64/product_debug/","distro_target":"sle-15-aarch64","autorefresh":false,"installer_updates":false,"name":"SLE-Product-HA15-SP5-Debuginfo-Pool","description":"SLE-Product-HA15-SP5-Debuginfo-Pool for sle-15-aarch64"},{"autorefresh":false,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP5/aarch64/product_source/","enabled":false,"id":5912,"description":"SLE-Product-HA15-SP5-Source-Pool for sle-15-aarch64","name":"SLE-Product-HA15-SP5-Source-Pool","installer_updates":false}],"predecessor_ids":[1608,1782,1956,2192,2337],"product_type":"extension","cpe":"cpe:/o:suse:sle-ha:15:sp5","free":false,"description":"SUSE Linux High Availability Extension provides mature, industry-leading open-source high-availability clustering technologies that are easy to set up and use. It can be deployed in physical and/or virtual environments, and can cluster physical servers, virtual servers, or any combination of the two to suit your business’ needs.","shortname":"SLEHA15-SP5","arch":"aarch64","eula_url":""}],"version":"15.5","recommended":true,"former_identifier":"sle-module-server-applications","release_type":null,"friendly_name":"Server Applications Module 15 SP5 aarch64","migration_extra":false,"offline_predecessor_ids":[],"name":"Server Applications Module"},{"release_stage":"released","id":2483,"identifier":"sle-module-containers","extensions":[],"friendly_version":"15 SP5","friendly_name":"Containers Module 15 SP5 aarch64","migration_extra":false,"release_type":null,"former_identifier":"sle-module-containers","name":"Containers Module","offline_predecessor_ids":[],"version":"15.5","recommended":false,"cpe":"cpe:/o:suse:sle-module-containers:15:sp5","product_type":"module","online_predecessor_ids":[1920,1960,2154,2308],"product_class":"MODULE","repositories":[{"description":"SLE-Module-Containers15-SP5-Updates for sle-15-aarch64","name":"SLE-Module-Containers15-SP5-Updates","installer_updates":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/15-SP5/aarch64/update/","autorefresh":true,"distro_target":"sle-15-aarch64","id":5753,"enabled":true},{"enabled":false,"id":5754,"distro_target":"sle-15-aarch64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/15-SP5/aarch64/update_debug/","installer_updates":false,"name":"SLE-Module-Containers15-SP5-Debuginfo-Updates","description":"SLE-Module-Containers15-SP5-Debuginfo-Updates for sle-15-aarch64"},{"id":5755,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP5/aarch64/product/","autorefresh":false,"distro_target":"sle-15-aarch64","name":"SLE-Module-Containers15-SP5-Pool","installer_updates":false,"description":"SLE-Module-Containers15-SP5-Pool for sle-15-aarch64"},{"enabled":false,"id":5756,"autorefresh":false,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP5/aarch64/product_debug/","name":"SLE-Module-Containers15-SP5-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-Containers15-SP5-Debuginfo-Pool for sle-15-aarch64"},{"name":"SLE-Module-Containers15-SP5-Source-Pool","installer_updates":false,"description":"SLE-Module-Containers15-SP5-Source-Pool for sle-15-aarch64","id":5757,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP5/aarch64/product_source/","autorefresh":false,"distro_target":"sle-15-aarch64"}],"predecessor_ids":[1920,1960,2154,2308],"arch":"aarch64","eula_url":"","shortname":"Containers-Module","description":"

This Module contains several packages revolving around containers and related tools.

","free":true},{"free":true,"shortname":"Transactional-Server-Module","description":"

Transactional Updates provide SUSE Linux Enterprise systems with a method of updating the operating system and its packages in an entirely ‘atomic’ way. Updates are either applied to the system all together in a single transaction, or not at all. This happens without influencing the running system. If an update fails, or if the successful update is deemed to be incompatible or otherwise incorrect, it can be discarded to immediately return the system to its previous functioning state.

Access to theTransactional Server Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself: Package versions in the this module are usually supported for at most three years. We are planning to release more recent versions on a schedule of approximately 18 month; the exact dates may differ per package.

","eula_url":"","arch":"aarch64","predecessor_ids":[1822,1995,2177,2328],"repositories":[{"id":5863,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Transactional-Server/15-SP5/aarch64/update/","distro_target":"sle-15-aarch64","autorefresh":true,"installer_updates":false,"name":"SLE-Module-Transactional-Server15-SP5-Updates","description":"SLE-Module-Transactional-Server15-SP5-Updates for sle-15-aarch64"},{"id":5864,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Transactional-Server/15-SP5/aarch64/update_debug/","distro_target":"sle-15-aarch64","autorefresh":true,"installer_updates":false,"name":"SLE-Module-Transactional-Server15-SP5-Debuginfo-Updates","description":"SLE-Module-Transactional-Server15-SP5-Debuginfo-Updates for sle-15-aarch64"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Transactional-Server/15-SP5/aarch64/product/","distro_target":"sle-15-aarch64","autorefresh":false,"id":5865,"enabled":true,"description":"SLE-Module-Transactional-Server15-SP5-Pool for sle-15-aarch64","installer_updates":false,"name":"SLE-Module-Transactional-Server15-SP5-Pool"},{"enabled":false,"id":5866,"autorefresh":false,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Transactional-Server/15-SP5/aarch64/product_debug/","name":"SLE-Module-Transactional-Server15-SP5-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-Transactional-Server15-SP5-Debuginfo-Pool for sle-15-aarch64"},{"name":"SLE-Module-Transactional-Server15-SP5-Source-Pool","installer_updates":false,"description":"SLE-Module-Transactional-Server15-SP5-Source-Pool for sle-15-aarch64","id":5867,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Transactional-Server/15-SP5/aarch64/product_source/","autorefresh":false,"distro_target":"sle-15-aarch64"}],"online_predecessor_ids":[1822,1995,2177,2328],"product_class":"MODULE","product_type":"module","cpe":"cpe:/o:suse:sle-module-transactional-server:15:sp5","recommended":false,"version":"15.5","offline_predecessor_ids":[],"name":"Transactional Server Module","former_identifier":"sle-module-transactional-server","release_type":null,"friendly_name":"Transactional Server Module 15 SP5 aarch64","migration_extra":false,"friendly_version":"15 SP5","extensions":[],"release_stage":"released","identifier":"sle-module-transactional-server","id":2505},{"version":"15.5","recommended":false,"former_identifier":"sle-module-python3","release_type":null,"friendly_name":"Python 3 Module 15 SP5 aarch64","migration_extra":false,"offline_predecessor_ids":[],"name":"Python 3 Module","friendly_version":"15 SP5","identifier":"sle-module-python3","release_stage":"released","id":2533,"extensions":[],"free":true,"shortname":"Python 3-Module","description":"

This module contains the Python 3 packages.

Access to the Python 3 Module is included in your SUSE Linux Enterprise subscription. The module has a different lifecycle than SUSE Linux Enterprise itself; please check the Release Notes for further details.

","arch":"aarch64","eula_url":"","product_class":"MODULE","online_predecessor_ids":[2402],"repositories":[{"description":"SLE-Module-Python3-15-SP5-Updates for sle-15-aarch64","installer_updates":false,"name":"SLE-Module-Python3-15-SP5-Updates","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Python3/15-SP5/aarch64/update/","distro_target":"sle-15-aarch64","autorefresh":true,"id":5943,"enabled":true},{"description":"SLE-Module-Python3-15-SP5-Debuginfo-Updates for sle-15-aarch64","installer_updates":false,"name":"SLE-Module-Python3-15-SP5-Debuginfo-Updates","distro_target":"sle-15-aarch64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Python3/15-SP5/aarch64/update_debug/","enabled":false,"id":5944},{"description":"SLE-Module-Python3-15-SP5-Pool for sle-15-aarch64","name":"SLE-Module-Python3-15-SP5-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Python3/15-SP5/aarch64/product/","autorefresh":false,"distro_target":"sle-15-aarch64","id":5945,"enabled":true},{"installer_updates":false,"name":"SLE-Module-Python3-15-SP5-Debuginfo-Pool","description":"SLE-Module-Python3-15-SP5-Debuginfo-Pool for sle-15-aarch64","enabled":false,"id":5946,"distro_target":"sle-15-aarch64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Python3/15-SP5/aarch64/product_debug/"},{"description":"SLE-Module-Python3-15-SP5-Source-Pool for sle-15-aarch64","installer_updates":false,"name":"SLE-Module-Python3-15-SP5-Source-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Python3/15-SP5/aarch64/product_source/","distro_target":"sle-15-aarch64","autorefresh":false,"id":5947,"enabled":false}],"predecessor_ids":[2402],"product_type":"module","cpe":"cpe:/o:suse:sle-module-python3:15:sp5"},{"shortname":"SUSE-PackageHub-15","description":"SUSE Package Hub is a free of charge module providing access to community maintained packages built to run on SUSE Linux Enterprise Server. Built from the same sources used in the openSUSE distributions, these quality packages provide additional software to what is found in the SUSE Linux Enterprise Server product. Packages from the Package Hub are delivered without L3 support from SUSE. General updates and fixes to the packages in SUSE Package Hub are provided by the openSUSE community based on their discretion, though SUSE will monitor and ensure that any known critical security issues will be addressed. Packages in the Package Hub are approved by SUSE for use with SUSE Linux Enterprise Server 15-SP5 and to not interfere with the supportability of SUSE Linux Enterprise Server, its modules and extensions. For more information about SUSE Package Hub please visit https://packagehub.suse.com.","free":true,"eula_url":"","arch":"aarch64","predecessor_ids":[1740,1868,1947,2188,2344],"online_predecessor_ids":[1740,1868,1947,2188,2344],"repositories":[{"url":"https://updates.suse.com/SUSE/Backports/SLE-15-SP5_aarch64/standard/","distro_target":"sle-15-aarch64","autorefresh":false,"id":6089,"enabled":true,"description":"SUSE-PackageHub-15-SP5-Backports-Pool for sle-15-aarch64","installer_updates":false,"name":"SUSE-PackageHub-15-SP5-Backports-Pool"},{"description":"SUSE-PackageHub-15-SP5-Backports-Debuginfo for sle-15-aarch64","installer_updates":false,"name":"SUSE-PackageHub-15-SP5-Backports-Debuginfo","url":"https://updates.suse.com/SUSE/Backports/SLE-15-SP5_aarch64/standard_debug/","distro_target":"sle-15-aarch64","autorefresh":true,"id":6090,"enabled":false},{"name":"SLE-Module-Packagehub-Subpackages15-SP5-Updates","installer_updates":false,"description":"SLE-Module-Packagehub-Subpackages15-SP5-Updates for sle-15-aarch64","id":6091,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP5/aarch64/update/","autorefresh":true,"distro_target":"sle-15-aarch64"},{"enabled":false,"id":6092,"autorefresh":true,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP5/aarch64/update_debug/","name":"SLE-Module-Packagehub-Subpackages15-SP5-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-Packagehub-Subpackages15-SP5-Debuginfo-Updates for sle-15-aarch64"},{"enabled":true,"id":6093,"autorefresh":false,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Backports/SLE-15-SP5_aarch64/product/","name":"SUSE-PackageHub-15-SP5-Pool","installer_updates":false,"description":"SUSE-PackageHub-15-SP5-Pool for sle-15-aarch64"},{"description":"SLE-Module-Packagehub-Subpackages15-SP5-Pool for sle-15-aarch64","installer_updates":false,"name":"SLE-Module-Packagehub-Subpackages15-SP5-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP5/aarch64/product/","distro_target":"sle-15-aarch64","autorefresh":false,"id":6094,"enabled":true},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP5/aarch64/product_debug/","autorefresh":false,"distro_target":"sle-15-aarch64","id":6095,"enabled":false,"description":"SLE-Module-Packagehub-Subpackages15-SP5-Debuginfo-Pool for sle-15-aarch64","name":"SLE-Module-Packagehub-Subpackages15-SP5-Debuginfo-Pool","installer_updates":false},{"description":"SLE-Module-Packagehub-Subpackages15-SP5-Source-Pool for sle-15-aarch64","name":"SLE-Module-Packagehub-Subpackages15-SP5-Source-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP5/aarch64/product_source/","enabled":false,"id":6096}],"product_class":"MODULE","cpe":"cpe:/o:suse:packagehub:15:sp5","product_type":"module","recommended":false,"version":"15.5","name":"SUSE Package Hub","offline_predecessor_ids":[1532,1810,1912],"friendly_name":"SUSE Package Hub 15 SP5 aarch64","migration_extra":false,"release_type":null,"former_identifier":"PackageHub","friendly_version":"15 SP5","extensions":[],"release_stage":"released","identifier":"PackageHub","id":2559}],"version":"15.5","recommended":true,"migration_extra":false,"friendly_name":"Basesystem Module 15 SP5 aarch64","release_type":null,"former_identifier":"sle-module-basesystem","name":"Basesystem Module","offline_predecessor_ids":[1522]},{"repositories":[{"id":6065,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Certifications/15-SP5/aarch64/update/","distro_target":"sle-15-aarch64","autorefresh":true,"installer_updates":false,"name":"SLE-Module-Certifications-15-SP5-Updates","description":"SLE-Module-Certifications-15-SP5-Updates for sle-15-aarch64"},{"enabled":false,"id":6066,"autorefresh":true,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Certifications/15-SP5/aarch64/update_debug/","name":"SLE-Module-Certifications-15-SP5-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-Certifications-15-SP5-Debuginfo-Updates for sle-15-aarch64"},{"name":"SLE-Module-Certifications-15-SP5-Pool","installer_updates":false,"description":"SLE-Module-Certifications-15-SP5-Pool for sle-15-aarch64","id":6067,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Certifications/15-SP5/aarch64/product/","autorefresh":false,"distro_target":"sle-15-aarch64"},{"name":"SLE-Module-Certifications-15-SP5-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-Certifications-15-SP5-Debuginfo-Pool for sle-15-aarch64","id":6068,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Certifications/15-SP5/aarch64/product_debug/","autorefresh":false,"distro_target":"sle-15-aarch64"},{"name":"SLE-Module-Certifications-15-SP5-Source-Pool","installer_updates":false,"description":"SLE-Module-Certifications-15-SP5-Source-Pool for sle-15-aarch64","id":6069,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Certifications/15-SP5/aarch64/product_source/","autorefresh":false,"distro_target":"sle-15-aarch64"}],"online_predecessor_ids":[2390],"product_class":"MODULE","predecessor_ids":[2390],"cpe":"cpe:/o:suse:sle-module-certifications:15:sp5","product_type":"module","description":"

This module contains the certification packages.

Access to the Certifications Module is included in your SUSE Linux Enterprise subscription. The module has a different lifecycle than SUSE Linux Enterprise itself; please check the Release Notes for further details.

","shortname":"Certifications-Module","free":true,"arch":"aarch64","eula_url":"","friendly_version":"15 SP5","identifier":"sle-module-certifications","release_stage":"released","id":2555,"extensions":[],"version":"15.5","recommended":false,"migration_extra":false,"friendly_name":"Certifications Module 15 SP5 aarch64","release_type":null,"former_identifier":"sle-module-certifications","name":"Certifications Module","offline_predecessor_ids":[]}],"version":"15.5","recommended":false,"former_identifier":"SLES","release_type":null,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Server 15 SP5 aarch64 (BETA)","offline_predecessor_ids":[1628,1875],"name":"SUSE Linux Enterprise Server"},{"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Server 15 SP5 ppc64le (BETA)","former_identifier":"SLES","release_type":null,"name":"SUSE Linux Enterprise Server","offline_predecessor_ids":[1626,1876],"version":"15.5","recommended":false,"release_stage":"beta","identifier":"SLES","id":2463,"extensions":[{"version":"15.5","recommended":true,"friendly_name":"Basesystem Module 15 SP5 ppc64le","migration_extra":false,"release_type":null,"former_identifier":"sle-module-basesystem","name":"Basesystem Module","offline_predecessor_ids":[1294],"friendly_version":"15 SP5","release_stage":"released","identifier":"sle-module-basesystem","id":2472,"extensions":[{"extensions":[{"version":"15.5","recommended":false,"release_type":null,"former_identifier":"sle-sdk","migration_extra":true,"friendly_name":"Development Tools Module 15 SP5 ppc64le","offline_predecessor_ids":[1339,1428,1631,1890],"name":"Development Tools Module","friendly_version":"15 SP5","identifier":"sle-module-development-tools","release_stage":"released","id":2488,"extensions":[],"free":true,"shortname":"Development-Tools-Module","description":"

The Development Tools Module helps you developing applications for SUSE Linux Enterprise 15.

Access to the Development Tools Module is included in your SUSE Linux Enterprise product subscription. The module has a different lifecycle than SUSE Linux Enterprise itself.

","arch":"ppc64le","eula_url":"","online_predecessor_ids":[1597,1792,1969,2159,2313],"repositories":[{"name":"SLE-Module-DevTools15-SP5-Updates","installer_updates":false,"description":"SLE-Module-DevTools15-SP5-Updates for sle-15-ppc64le","id":5778,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15-SP5/ppc64le/update/","autorefresh":true,"distro_target":"sle-15-ppc64le"},{"description":"SLE-Module-DevTools15-SP5-Debuginfo-Updates for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-DevTools15-SP5-Debuginfo-Updates","distro_target":"sle-15-ppc64le","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15-SP5/ppc64le/update_debug/","enabled":false,"id":5779},{"enabled":true,"id":5780,"distro_target":"sle-15-ppc64le","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP5/ppc64le/product/","installer_updates":false,"name":"SLE-Module-DevTools15-SP5-Pool","description":"SLE-Module-DevTools15-SP5-Pool for sle-15-ppc64le"},{"autorefresh":false,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP5/ppc64le/product_debug/","enabled":false,"id":5781,"description":"SLE-Module-DevTools15-SP5-Debuginfo-Pool for sle-15-ppc64le","name":"SLE-Module-DevTools15-SP5-Debuginfo-Pool","installer_updates":false},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP5/ppc64le/product_source/","autorefresh":false,"distro_target":"sle-15-ppc64le","id":5782,"enabled":false,"description":"SLE-Module-DevTools15-SP5-Source-Pool for sle-15-ppc64le","name":"SLE-Module-DevTools15-SP5-Source-Pool","installer_updates":false}],"product_class":"MODULE","predecessor_ids":[1597,1792,1969,2159,2313],"product_type":"module","cpe":"cpe:/o:suse:sle-module-development-tools:15:sp5"}],"release_stage":"released","id":2476,"identifier":"sle-module-desktop-applications","friendly_version":"15 SP5","offline_predecessor_ids":[],"name":"Desktop Applications Module","release_type":null,"former_identifier":"sle-module-desktop-applications","friendly_name":"Desktop Applications Module 15 SP5 ppc64le","migration_extra":true,"recommended":false,"version":"15.5","product_type":"module","cpe":"cpe:/o:suse:sle-module-desktop-applications:15:sp5","predecessor_ids":[1594,1774,1965,2147,2301],"product_class":"MODULE","online_predecessor_ids":[1594,1774,1965,2147,2301],"repositories":[{"installer_updates":false,"name":"SLE-Module-Desktop-Applications15-SP5-Updates","description":"SLE-Module-Desktop-Applications15-SP5-Updates for sle-15-ppc64le","enabled":true,"id":5718,"distro_target":"sle-15-ppc64le","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15-SP5/ppc64le/update/"},{"id":5719,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15-SP5/ppc64le/update_debug/","autorefresh":true,"distro_target":"sle-15-ppc64le","name":"SLE-Module-Desktop-Applications15-SP5-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-Desktop-Applications15-SP5-Debuginfo-Updates for sle-15-ppc64le"},{"description":"SLE-Module-Desktop-Applications15-SP5-Pool for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-Desktop-Applications15-SP5-Pool","distro_target":"sle-15-ppc64le","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP5/ppc64le/product/","enabled":true,"id":5720},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP5/ppc64le/product_debug/","autorefresh":false,"distro_target":"sle-15-ppc64le","id":5721,"enabled":false,"description":"SLE-Module-Desktop-Applications15-SP5-Debuginfo-Pool for sle-15-ppc64le","name":"SLE-Module-Desktop-Applications15-SP5-Debuginfo-Pool","installer_updates":false},{"enabled":false,"id":5722,"autorefresh":false,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP5/ppc64le/product_source/","name":"SLE-Module-Desktop-Applications15-SP5-Source-Pool","installer_updates":false,"description":"SLE-Module-Desktop-Applications15-SP5-Source-Pool for sle-15-ppc64le"}],"eula_url":"","arch":"ppc64le","free":true,"shortname":"Desktop-Applications-Module","description":"

The SUSE Linux Enterprise Desktop Applications Module delivers a basic set of Desktop functionality.

Access to the Desktop Applications Module is included in your SUSE Linux Enterprise product subscription.

"},{"friendly_version":"15 SP5","extensions":[{"id":2076,"release_stage":"released","identifier":"ibm-power-advance-toolchain","extensions":[],"friendly_version":"15","former_identifier":"ibm-power-advance-toolchain","release_type":null,"migration_extra":false,"friendly_name":"IBM POWER Advance Toolchain for SLE 15 ppc64le","offline_predecessor_ids":[1249],"name":"IBM POWER Advance Toolchain for SLE","version":"15","recommended":false,"product_type":"extension","cpe":"cpe:/o:suse:ibm-power-advance-toolchain:15","online_predecessor_ids":[],"repositories":[{"description":"IBM-POWER-Adv-Toolchain","installer_updates":false,"name":"IBM-POWER-Adv-Toolchain","url":"https://public.dhe.ibm.com/software/server/POWER/Linux/toolchain/at/suse/SLES_15/","distro_target":null,"autorefresh":true,"id":4430,"enabled":true}],"product_class":"MODULE","predecessor_ids":[],"arch":"ppc64le","eula_url":"","free":true,"description":"IBM POWER Advance Toolchain for SLE 15","shortname":"IBMPWAT15"},{"free":true,"shortname":"IBMPWUT15","description":"IBM POWER Tools for SLE 15","arch":"ppc64le","eula_url":"https://public.dhe.ibm.com/software/server/POWER/Linux/yum/OSS/SLES/15/ppc64le.license/","online_predecessor_ids":[],"repositories":[{"name":"IBM-POWER-Tools","installer_updates":false,"description":"IBM-POWER-Tools","enabled":true,"id":4431,"autorefresh":true,"distro_target":null,"url":"https://public.dhe.ibm.com/software/server/POWER/Linux/yum/OSS/SLES/15/ppc64le/"}],"product_class":"MODULE","predecessor_ids":[],"product_type":"extension","cpe":"cpe:/o:suse:ibm-power-tools:15","version":"15","recommended":false,"former_identifier":"ibm-power-tools","release_type":null,"friendly_name":"IBM POWER Tools for SLE 15 ppc64le","migration_extra":false,"offline_predecessor_ids":[1250],"name":"IBM POWER Tools for SLE","friendly_version":"15","release_stage":"released","id":2077,"identifier":"ibm-power-tools","extensions":[]},{"release_type":null,"former_identifier":"sle-module-web-scripting","migration_extra":true,"friendly_name":"Web and Scripting Module 15 SP5 ppc64le","offline_predecessor_ids":[1151],"name":"Web and Scripting Module","version":"15.5","recommended":false,"identifier":"sle-module-web-scripting","release_stage":"released","id":2492,"extensions":[],"friendly_version":"15 SP5","arch":"ppc64le","eula_url":"","free":true,"description":"

The SUSE Linux Enterprise Web and Scripting Module should contains additional packages that are helpful when running a webserver.

Access to the Web and Scripting Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself: Package versions in this module are usually supported for at most three years. We are planning to release more recent versions on a schedule of approximately 18 month; the exact dates may differ per package.

","shortname":"Web-Scripting-Module","product_type":"module","cpe":"cpe:/o:suse:sle-module-web-scripting:15:sp5","online_predecessor_ids":[1719,1796,1974,2163,2317],"product_class":"MODULE","repositories":[{"description":"SLE-Module-Web-Scripting15-SP5-Updates for sle-15-ppc64le","name":"SLE-Module-Web-Scripting15-SP5-Updates","installer_updates":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/15-SP5/ppc64le/update/","autorefresh":true,"distro_target":"sle-15-ppc64le","id":5798,"enabled":true},{"autorefresh":true,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/15-SP5/ppc64le/update_debug/","enabled":false,"id":5799,"description":"SLE-Module-Web-Scripting15-SP5-Debuginfo-Updates for sle-15-ppc64le","name":"SLE-Module-Web-Scripting15-SP5-Debuginfo-Updates","installer_updates":false},{"enabled":true,"id":5800,"autorefresh":false,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP5/ppc64le/product/","name":"SLE-Module-Web-Scripting15-SP5-Pool","installer_updates":false,"description":"SLE-Module-Web-Scripting15-SP5-Pool for sle-15-ppc64le"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP5/ppc64le/product_debug/","autorefresh":false,"distro_target":"sle-15-ppc64le","id":5801,"enabled":false,"description":"SLE-Module-Web-Scripting15-SP5-Debuginfo-Pool for sle-15-ppc64le","name":"SLE-Module-Web-Scripting15-SP5-Debuginfo-Pool","installer_updates":false},{"description":"SLE-Module-Web-Scripting15-SP5-Source-Pool for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-Web-Scripting15-SP5-Source-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP5/ppc64le/product_source/","distro_target":"sle-15-ppc64le","autorefresh":false,"id":5802,"enabled":false}],"predecessor_ids":[1719,1796,1974,2163,2317]},{"free":true,"description":"

The Legacy Module helps you migrating applications from SUSE Linux Enterprise 12 and other systems to SUSE Linux Enterprise 15, by providing packages which are discontinued on SUSE Linux Enterprise Server, such as: ntp, IBM Java 8, and a number of libraries.

Access to the Legacy Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself. Packages in the this module are usually supported for at most three years.

","shortname":"Legacy-Module","eula_url":"","arch":"ppc64le","predecessor_ids":[1603,1802,1980,2169,2321],"online_predecessor_ids":[1603,1802,1980,2169,2321],"product_class":"MODULE","repositories":[{"description":"SLE-Module-Legacy15-SP5-Updates for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-Legacy15-SP5-Updates","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/15-SP5/ppc64le/update/","distro_target":"sle-15-ppc64le","autorefresh":true,"id":5828,"enabled":true},{"installer_updates":false,"name":"SLE-Module-Legacy15-SP5-Debuginfo-Updates","description":"SLE-Module-Legacy15-SP5-Debuginfo-Updates for sle-15-ppc64le","id":5829,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/15-SP5/ppc64le/update_debug/","distro_target":"sle-15-ppc64le","autorefresh":true},{"id":5830,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15-SP5/ppc64le/product/","distro_target":"sle-15-ppc64le","autorefresh":false,"installer_updates":false,"name":"SLE-Module-Legacy15-SP5-Pool","description":"SLE-Module-Legacy15-SP5-Pool for sle-15-ppc64le"},{"name":"SLE-Module-Legacy15-SP5-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-Legacy15-SP5-Debuginfo-Pool for sle-15-ppc64le","id":5831,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15-SP5/ppc64le/product_debug/","autorefresh":false,"distro_target":"sle-15-ppc64le"},{"name":"SLE-Module-Legacy15-SP5-Source-Pool","installer_updates":false,"description":"SLE-Module-Legacy15-SP5-Source-Pool for sle-15-ppc64le","enabled":false,"id":5832,"autorefresh":false,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15-SP5/ppc64le/product_source/"}],"product_type":"module","cpe":"cpe:/o:suse:sle-module-legacy:15:sp5","recommended":false,"version":"15.5","offline_predecessor_ids":[1148],"name":"Legacy Module","former_identifier":"sle-module-legacy","release_type":null,"migration_extra":true,"friendly_name":"Legacy Module 15 SP5 ppc64le","friendly_version":"15 SP5","extensions":[],"release_stage":"released","identifier":"sle-module-legacy","id":2498},{"shortname":"Public-Cloud-Module","description":"

The Public Cloud Module is a collection of tools that enables you to create and manage cloud images from the commandline on SUSE Linux Enterprise Server. When building your own images with KIWI or SUSE Studio, initialization code specific to the target cloud is included in that image.

Access to the Public Cloud Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself; please check the Release Notes for further details.

","free":true,"arch":"ppc64le","eula_url":"","product_class":"MODULE","online_predecessor_ids":[1616,1806,1986,2173,2325],"repositories":[{"id":5848,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/15-SP5/ppc64le/update/","distro_target":"sle-15-ppc64le","autorefresh":true,"installer_updates":false,"name":"SLE-Module-Public-Cloud15-SP5-Updates","description":"SLE-Module-Public-Cloud15-SP5-Updates for sle-15-ppc64le"},{"id":5849,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/15-SP5/ppc64le/update_debug/","autorefresh":true,"distro_target":"sle-15-ppc64le","name":"SLE-Module-Public-Cloud15-SP5-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-Public-Cloud15-SP5-Debuginfo-Updates for sle-15-ppc64le"},{"description":"SLE-Module-Public-Cloud15-SP5-Pool for sle-15-ppc64le","name":"SLE-Module-Public-Cloud15-SP5-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP5/ppc64le/product/","autorefresh":false,"distro_target":"sle-15-ppc64le","id":5850,"enabled":true},{"name":"SLE-Module-Public-Cloud15-SP5-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-Public-Cloud15-SP5-Debuginfo-Pool for sle-15-ppc64le","enabled":false,"id":5851,"autorefresh":false,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP5/ppc64le/product_debug/"},{"autorefresh":false,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP5/ppc64le/product_source/","enabled":false,"id":5852,"description":"SLE-Module-Public-Cloud15-SP5-Source-Pool for sle-15-ppc64le","name":"SLE-Module-Public-Cloud15-SP5-Source-Pool","installer_updates":false}],"predecessor_ids":[1616,1806,1986,2173,2325],"cpe":"cpe:/o:suse:sle-module-public-cloud:15:sp5","product_type":"module","version":"15.5","recommended":false,"migration_extra":false,"friendly_name":"Public Cloud Module 15 SP5 ppc64le","former_identifier":"sle-module-public-cloud","release_type":null,"name":"Public Cloud Module","offline_predecessor_ids":[1218],"friendly_version":"15 SP5","id":2502,"release_stage":"released","identifier":"sle-module-public-cloud","extensions":[]},{"product_type":"extension","cpe":"cpe:/o:suse:sle-ha:15:sp5","online_predecessor_ids":[1606,1783,1957,2193,2338],"repositories":[{"enabled":true,"id":5913,"autorefresh":true,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Updates/SLE-Product-HA/15-SP5/ppc64le/update/","name":"SLE-Product-HA15-SP5-Updates","installer_updates":false,"description":"SLE-Product-HA15-SP5-Updates for sle-15-ppc64le"},{"installer_updates":false,"name":"SLE-Product-HA15-SP5-Debuginfo-Updates","description":"SLE-Product-HA15-SP5-Debuginfo-Updates for sle-15-ppc64le","enabled":false,"id":5914,"distro_target":"sle-15-ppc64le","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-HA/15-SP5/ppc64le/update_debug/"},{"description":"SLE-Product-HA15-SP5-Pool for sle-15-ppc64le","name":"SLE-Product-HA15-SP5-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP5/ppc64le/product/","autorefresh":false,"distro_target":"sle-15-ppc64le","id":5915,"enabled":true},{"name":"SLE-Product-HA15-SP5-Debuginfo-Pool","installer_updates":false,"description":"SLE-Product-HA15-SP5-Debuginfo-Pool for sle-15-ppc64le","enabled":false,"id":5916,"autorefresh":false,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP5/ppc64le/product_debug/"},{"distro_target":"sle-15-ppc64le","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP5/ppc64le/product_source/","enabled":false,"id":5917,"description":"SLE-Product-HA15-SP5-Source-Pool for sle-15-ppc64le","installer_updates":false,"name":"SLE-Product-HA15-SP5-Source-Pool"}],"product_class":"SLE-HAE-PPC-BETA","predecessor_ids":[1606,1783,1957,2193,2338],"arch":"ppc64le","eula_url":"","free":false,"description":"SUSE Linux High Availability Extension provides mature, industry-leading open-source high-availability clustering technologies that are easy to set up and use. It can be deployed in physical and/or virtual environments, and can cluster physical servers, virtual servers, or any combination of the two to suit your business’ needs.","shortname":"SLEHA15-SP5","identifier":"sle-ha","release_stage":"beta","id":2515,"extensions":[],"friendly_version":"15 SP5","former_identifier":"sle-ha","release_type":null,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise High Availability Extension 15 SP5 ppc64le (BETA)","offline_predecessor_ids":[1433,1635,1882],"name":"SUSE Linux Enterprise High Availability Extension","version":"15.5","recommended":false}],"id":2480,"release_stage":"released","identifier":"sle-module-server-applications","recommended":true,"version":"15.5","name":"Server Applications Module","offline_predecessor_ids":[],"friendly_name":"Server Applications Module 15 SP5 ppc64le","migration_extra":false,"former_identifier":"sle-module-server-applications","release_type":null,"predecessor_ids":[1600,1778,1953,2151,2305],"online_predecessor_ids":[1600,1778,1953,2151,2305],"product_class":"MODULE","repositories":[{"installer_updates":false,"name":"SLE-Module-Server-Applications15-SP5-Updates","description":"SLE-Module-Server-Applications15-SP5-Updates for sle-15-ppc64le","enabled":true,"id":5738,"distro_target":"sle-15-ppc64le","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15-SP5/ppc64le/update/"},{"distro_target":"sle-15-ppc64le","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15-SP5/ppc64le/update_debug/","enabled":false,"id":5739,"description":"SLE-Module-Server-Applications15-SP5-Debuginfo-Updates for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-Server-Applications15-SP5-Debuginfo-Updates"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP5/ppc64le/product/","distro_target":"sle-15-ppc64le","autorefresh":false,"id":5740,"enabled":true,"description":"SLE-Module-Server-Applications15-SP5-Pool for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-Server-Applications15-SP5-Pool"},{"name":"SLE-Module-Server-Applications15-SP5-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-Server-Applications15-SP5-Debuginfo-Pool for sle-15-ppc64le","id":5741,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP5/ppc64le/product_debug/","autorefresh":false,"distro_target":"sle-15-ppc64le"},{"id":5742,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP5/ppc64le/product_source/","autorefresh":false,"distro_target":"sle-15-ppc64le","name":"SLE-Module-Server-Applications15-SP5-Source-Pool","installer_updates":false,"description":"SLE-Module-Server-Applications15-SP5-Source-Pool for sle-15-ppc64le"}],"cpe":"cpe:/o:suse:sle-module-server-applications:15:sp5","product_type":"module","shortname":"Server-Applications-Module","description":"

The SUSE Linux Enterprise Server Applications Module delivers a basic set of Server functionality.

Access to the Server Applications Module is included in your SUSE Linux Enterprise Server subscription.

","free":true,"eula_url":"","arch":"ppc64le"},{"eula_url":"","arch":"ppc64le","free":true,"shortname":"Containers-Module","description":"

This Module contains several packages revolving around containers and related tools.

","product_type":"module","cpe":"cpe:/o:suse:sle-module-containers:15:sp5","predecessor_ids":[1640,1788,1961,2155,2309],"online_predecessor_ids":[1640,1788,1961,2155,2309],"repositories":[{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/15-SP5/ppc64le/update/","distro_target":"sle-15-ppc64le","autorefresh":true,"id":5758,"enabled":true,"description":"SLE-Module-Containers15-SP5-Updates for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-Containers15-SP5-Updates"},{"enabled":false,"id":5759,"distro_target":"sle-15-ppc64le","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/15-SP5/ppc64le/update_debug/","installer_updates":false,"name":"SLE-Module-Containers15-SP5-Debuginfo-Updates","description":"SLE-Module-Containers15-SP5-Debuginfo-Updates for sle-15-ppc64le"},{"name":"SLE-Module-Containers15-SP5-Pool","installer_updates":false,"description":"SLE-Module-Containers15-SP5-Pool for sle-15-ppc64le","id":5760,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP5/ppc64le/product/","autorefresh":false,"distro_target":"sle-15-ppc64le"},{"id":5761,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP5/ppc64le/product_debug/","autorefresh":false,"distro_target":"sle-15-ppc64le","name":"SLE-Module-Containers15-SP5-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-Containers15-SP5-Debuginfo-Pool for sle-15-ppc64le"},{"name":"SLE-Module-Containers15-SP5-Source-Pool","installer_updates":false,"description":"SLE-Module-Containers15-SP5-Source-Pool for sle-15-ppc64le","id":5762,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP5/ppc64le/product_source/","autorefresh":false,"distro_target":"sle-15-ppc64le"}],"product_class":"MODULE","offline_predecessor_ids":[1353],"name":"Containers Module","release_type":null,"former_identifier":"sle-module-containers","friendly_name":"Containers Module 15 SP5 ppc64le","migration_extra":false,"recommended":false,"version":"15.5","extensions":[],"id":2484,"release_stage":"released","identifier":"sle-module-containers","friendly_version":"15 SP5"},{"free":true,"description":"

Transactional Updates provide SUSE Linux Enterprise systems with a method of updating the operating system and its packages in an entirely ‘atomic’ way. Updates are either applied to the system all together in a single transaction, or not at all. This happens without influencing the running system. If an update fails, or if the successful update is deemed to be incompatible or otherwise incorrect, it can be discarded to immediately return the system to its previous functioning state.

Access to theTransactional Server Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself: Package versions in the this module are usually supported for at most three years. We are planning to release more recent versions on a schedule of approximately 18 month; the exact dates may differ per package.

","shortname":"Transactional-Server-Module","eula_url":"","arch":"ppc64le","predecessor_ids":[1823,1996,2178,2329],"product_class":"MODULE","online_predecessor_ids":[1823,1996,2178,2329],"repositories":[{"distro_target":"sle-15-ppc64le","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Transactional-Server/15-SP5/ppc64le/update/","enabled":true,"id":5868,"description":"SLE-Module-Transactional-Server15-SP5-Updates for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-Transactional-Server15-SP5-Updates"},{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Transactional-Server/15-SP5/ppc64le/update_debug/","distro_target":"sle-15-ppc64le","autorefresh":true,"id":5869,"enabled":false,"description":"SLE-Module-Transactional-Server15-SP5-Debuginfo-Updates for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-Transactional-Server15-SP5-Debuginfo-Updates"},{"distro_target":"sle-15-ppc64le","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Transactional-Server/15-SP5/ppc64le/product/","enabled":true,"id":5870,"description":"SLE-Module-Transactional-Server15-SP5-Pool for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-Transactional-Server15-SP5-Pool"},{"distro_target":"sle-15-ppc64le","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Transactional-Server/15-SP5/ppc64le/product_debug/","enabled":false,"id":5871,"description":"SLE-Module-Transactional-Server15-SP5-Debuginfo-Pool for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-Transactional-Server15-SP5-Debuginfo-Pool"},{"description":"SLE-Module-Transactional-Server15-SP5-Source-Pool for sle-15-ppc64le","name":"SLE-Module-Transactional-Server15-SP5-Source-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Transactional-Server/15-SP5/ppc64le/product_source/","autorefresh":false,"distro_target":"sle-15-ppc64le","id":5872,"enabled":false}],"product_type":"module","cpe":"cpe:/o:suse:sle-module-transactional-server:15:sp5","recommended":false,"version":"15.5","offline_predecessor_ids":[],"name":"Transactional Server Module","release_type":null,"former_identifier":"sle-module-transactional-server","migration_extra":false,"friendly_name":"Transactional Server Module 15 SP5 ppc64le","friendly_version":"15 SP5","extensions":[],"id":2506,"release_stage":"released","identifier":"sle-module-transactional-server"},{"id":2509,"release_stage":"beta","identifier":"sle-module-live-patching","extensions":[],"friendly_version":"15 SP5","former_identifier":"sle-module-live-patching","release_type":null,"friendly_name":"SUSE Linux Enterprise Live Patching 15 SP5 ppc64le (BETA)","migration_extra":false,"offline_predecessor_ids":[1537,1756,1887],"name":"SUSE Linux Enterprise Live Patching","version":"15.5","recommended":false,"product_type":"extension","cpe":"cpe:/o:suse:sle-module-live-patching:15:sp5","repositories":[{"distro_target":"sle-15-ppc64le","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Live-Patching/15-SP5/ppc64le/update/","enabled":true,"id":5883,"description":"SLE-Module-Live-Patching15-SP5-Updates for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-Live-Patching15-SP5-Updates"},{"enabled":false,"id":5884,"distro_target":"sle-15-ppc64le","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Live-Patching/15-SP5/ppc64le/update_debug/","installer_updates":false,"name":"SLE-Module-Live-Patching15-SP5-Debuginfo-Updates","description":"SLE-Module-Live-Patching15-SP5-Debuginfo-Updates for sle-15-ppc64le"},{"distro_target":"sle-15-ppc64le","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Live-Patching/15-SP5/ppc64le/product/","enabled":true,"id":5885,"description":"SLE-Module-Live-Patching15-SP5-Pool for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-Live-Patching15-SP5-Pool"},{"description":"SLE-Module-Live-Patching15-SP5-Debuginfo-Pool for sle-15-ppc64le","name":"SLE-Module-Live-Patching15-SP5-Debuginfo-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Live-Patching/15-SP5/ppc64le/product_debug/","autorefresh":false,"distro_target":"sle-15-ppc64le","id":5886,"enabled":false},{"enabled":false,"id":5887,"distro_target":"sle-15-ppc64le","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Live-Patching/15-SP5/ppc64le/product_source/","installer_updates":false,"name":"SLE-Module-Live-Patching15-SP5-Source-Pool","description":"SLE-Module-Live-Patching15-SP5-Source-Pool for sle-15-ppc64le"}],"online_predecessor_ids":[1735,1827,1983,2185,2332],"product_class":"SLE-LP-PPC-BETA","predecessor_ids":[1735,1827,1983,2185,2332],"arch":"ppc64le","eula_url":"","free":false,"description":"

SUSE Linux Enterprise Live Patching provides packages to update critical components in SUSE Linux Enterprise. With SUSE Linux Enterprise Live Patching, you can perform critical patching without shutting down your system, reducing the need for planned downtime and increasing service availability.

","shortname":"Live-Patching"},{"free":true,"description":"

This module contains the Python 3 packages.

Access to the Python 3 Module is included in your SUSE Linux Enterprise subscription. The module has a different lifecycle than SUSE Linux Enterprise itself; please check the Release Notes for further details.

","shortname":"Python 3-Module","arch":"ppc64le","eula_url":"","product_class":"MODULE","online_predecessor_ids":[2403],"repositories":[{"enabled":true,"id":5948,"autorefresh":true,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Python3/15-SP5/ppc64le/update/","name":"SLE-Module-Python3-15-SP5-Updates","installer_updates":false,"description":"SLE-Module-Python3-15-SP5-Updates for sle-15-ppc64le"},{"description":"SLE-Module-Python3-15-SP5-Debuginfo-Updates for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-Python3-15-SP5-Debuginfo-Updates","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Python3/15-SP5/ppc64le/update_debug/","distro_target":"sle-15-ppc64le","autorefresh":true,"id":5949,"enabled":false},{"description":"SLE-Module-Python3-15-SP5-Pool for sle-15-ppc64le","name":"SLE-Module-Python3-15-SP5-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Python3/15-SP5/ppc64le/product/","autorefresh":false,"distro_target":"sle-15-ppc64le","id":5950,"enabled":true},{"enabled":false,"id":5951,"autorefresh":false,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Python3/15-SP5/ppc64le/product_debug/","name":"SLE-Module-Python3-15-SP5-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-Python3-15-SP5-Debuginfo-Pool for sle-15-ppc64le"},{"description":"SLE-Module-Python3-15-SP5-Source-Pool for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-Python3-15-SP5-Source-Pool","distro_target":"sle-15-ppc64le","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Python3/15-SP5/ppc64le/product_source/","enabled":false,"id":5952}],"predecessor_ids":[2403],"product_type":"module","cpe":"cpe:/o:suse:sle-module-python3:15:sp5","version":"15.5","recommended":false,"former_identifier":"sle-module-python3","release_type":null,"migration_extra":false,"friendly_name":"Python 3 Module 15 SP5 ppc64le","offline_predecessor_ids":[],"name":"Python 3 Module","friendly_version":"15 SP5","release_stage":"released","id":2534,"identifier":"sle-module-python3","extensions":[]},{"free":true,"description":"SUSE Package Hub is a free of charge module providing access to community maintained packages built to run on SUSE Linux Enterprise Server. Built from the same sources used in the openSUSE distributions, these quality packages provide additional software to what is found in the SUSE Linux Enterprise Server product. Packages from the Package Hub are delivered without L3 support from SUSE. General updates and fixes to the packages in SUSE Package Hub are provided by the openSUSE community based on their discretion, though SUSE will monitor and ensure that any known critical security issues will be addressed. Packages in the Package Hub are approved by SUSE for use with SUSE Linux Enterprise Server 15-SP5 and to not interfere with the supportability of SUSE Linux Enterprise Server, its modules and extensions. For more information about SUSE Package Hub please visit https://packagehub.suse.com.","shortname":"SUSE-PackageHub-15","eula_url":"","arch":"ppc64le","predecessor_ids":[1741,1869,1948,2189,2345],"online_predecessor_ids":[1741,1869,1948,2189,2345],"product_class":"MODULE","repositories":[{"enabled":true,"id":6097,"autorefresh":false,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Backports/SLE-15-SP5_ppc64le/standard/","name":"SUSE-PackageHub-15-SP5-Backports-Pool","installer_updates":false,"description":"SUSE-PackageHub-15-SP5-Backports-Pool for sle-15-ppc64le"},{"description":"SUSE-PackageHub-15-SP5-Backports-Debuginfo for sle-15-ppc64le","installer_updates":false,"name":"SUSE-PackageHub-15-SP5-Backports-Debuginfo","url":"https://updates.suse.com/SUSE/Backports/SLE-15-SP5_ppc64le/standard_debug/","distro_target":"sle-15-ppc64le","autorefresh":true,"id":6098,"enabled":false},{"name":"SLE-Module-Packagehub-Subpackages15-SP5-Updates","installer_updates":false,"description":"SLE-Module-Packagehub-Subpackages15-SP5-Updates for sle-15-ppc64le","id":6099,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP5/ppc64le/update/","autorefresh":true,"distro_target":"sle-15-ppc64le"},{"description":"SLE-Module-Packagehub-Subpackages15-SP5-Debuginfo-Updates for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-Packagehub-Subpackages15-SP5-Debuginfo-Updates","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP5/ppc64le/update_debug/","distro_target":"sle-15-ppc64le","autorefresh":true,"id":6100,"enabled":false},{"installer_updates":false,"name":"SUSE-PackageHub-15-SP5-Pool","description":"SUSE-PackageHub-15-SP5-Pool for sle-15-ppc64le","enabled":true,"id":6101,"distro_target":"sle-15-ppc64le","autorefresh":false,"url":"https://updates.suse.com/SUSE/Backports/SLE-15-SP5_ppc64le/product/"},{"id":6102,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP5/ppc64le/product/","autorefresh":false,"distro_target":"sle-15-ppc64le","name":"SLE-Module-Packagehub-Subpackages15-SP5-Pool","installer_updates":false,"description":"SLE-Module-Packagehub-Subpackages15-SP5-Pool for sle-15-ppc64le"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP5/ppc64le/product_debug/","autorefresh":false,"distro_target":"sle-15-ppc64le","id":6103,"enabled":false,"description":"SLE-Module-Packagehub-Subpackages15-SP5-Debuginfo-Pool for sle-15-ppc64le","name":"SLE-Module-Packagehub-Subpackages15-SP5-Debuginfo-Pool","installer_updates":false},{"installer_updates":false,"name":"SLE-Module-Packagehub-Subpackages15-SP5-Source-Pool","description":"SLE-Module-Packagehub-Subpackages15-SP5-Source-Pool for sle-15-ppc64le","id":6104,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP5/ppc64le/product_source/","distro_target":"sle-15-ppc64le","autorefresh":false}],"product_type":"module","cpe":"cpe:/o:suse:packagehub:15:sp5","recommended":false,"version":"15.5","offline_predecessor_ids":[1531,1811,1913],"name":"SUSE Package Hub","release_type":null,"former_identifier":"PackageHub","migration_extra":false,"friendly_name":"SUSE Package Hub 15 SP5 ppc64le","friendly_version":"15 SP5","extensions":[],"identifier":"PackageHub","release_stage":"released","id":2560}],"description":"

The SUSE Linux Enterprise Basesystem Module delivers the base system of the product.

","shortname":"Basesystem-Module","free":true,"arch":"ppc64le","eula_url":"","online_predecessor_ids":[1588,1770,1944,2143,2297],"repositories":[{"autorefresh":true,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15-SP5/ppc64le/update/","enabled":true,"id":5698,"description":"SLE-Module-Basesystem15-SP5-Updates for sle-15-ppc64le","name":"SLE-Module-Basesystem15-SP5-Updates","installer_updates":false},{"name":"SLE-Module-Basesystem15-SP5-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-Basesystem15-SP5-Debuginfo-Updates for sle-15-ppc64le","id":5699,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15-SP5/ppc64le/update_debug/","autorefresh":true,"distro_target":"sle-15-ppc64le"},{"description":"SLE-Module-Basesystem15-SP5-Pool for sle-15-ppc64le","name":"SLE-Module-Basesystem15-SP5-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP5/ppc64le/product/","enabled":true,"id":5700},{"autorefresh":false,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP5/ppc64le/product_debug/","enabled":false,"id":5701,"description":"SLE-Module-Basesystem15-SP5-Debuginfo-Pool for sle-15-ppc64le","name":"SLE-Module-Basesystem15-SP5-Debuginfo-Pool","installer_updates":false},{"enabled":false,"id":5702,"autorefresh":false,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP5/ppc64le/product_source/","name":"SLE-Module-Basesystem15-SP5-Source-Pool","installer_updates":false,"description":"SLE-Module-Basesystem15-SP5-Source-Pool for sle-15-ppc64le"}],"product_class":"MODULE","predecessor_ids":[1588,1770,1944,2143,2297],"cpe":"cpe:/o:suse:sle-module-basesystem:15:sp5","product_type":"module"},{"recommended":false,"version":"15.5","offline_predecessor_ids":[],"name":"Certifications Module","release_type":null,"former_identifier":"sle-module-certifications","migration_extra":false,"friendly_name":"Certifications Module 15 SP5 ppc64le","friendly_version":"15 SP5","extensions":[],"id":2556,"release_stage":"released","identifier":"sle-module-certifications","free":true,"shortname":"Certifications-Module","description":"

This module contains the certification packages.

Access to the Certifications Module is included in your SUSE Linux Enterprise subscription. The module has a different lifecycle than SUSE Linux Enterprise itself; please check the Release Notes for further details.

","eula_url":"","arch":"ppc64le","predecessor_ids":[2391],"online_predecessor_ids":[2391],"product_class":"MODULE","repositories":[{"installer_updates":false,"name":"SLE-Module-Certifications-15-SP5-Updates","description":"SLE-Module-Certifications-15-SP5-Updates for sle-15-ppc64le","id":6070,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Certifications/15-SP5/ppc64le/update/","distro_target":"sle-15-ppc64le","autorefresh":true},{"distro_target":"sle-15-ppc64le","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Certifications/15-SP5/ppc64le/update_debug/","enabled":false,"id":6071,"description":"SLE-Module-Certifications-15-SP5-Debuginfo-Updates for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-Certifications-15-SP5-Debuginfo-Updates"},{"id":6072,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Certifications/15-SP5/ppc64le/product/","distro_target":"sle-15-ppc64le","autorefresh":false,"installer_updates":false,"name":"SLE-Module-Certifications-15-SP5-Pool","description":"SLE-Module-Certifications-15-SP5-Pool for sle-15-ppc64le"},{"id":6073,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Certifications/15-SP5/ppc64le/product_debug/","distro_target":"sle-15-ppc64le","autorefresh":false,"installer_updates":false,"name":"SLE-Module-Certifications-15-SP5-Debuginfo-Pool","description":"SLE-Module-Certifications-15-SP5-Debuginfo-Pool for sle-15-ppc64le"},{"enabled":false,"id":6074,"distro_target":"sle-15-ppc64le","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Certifications/15-SP5/ppc64le/product_source/","installer_updates":false,"name":"SLE-Module-Certifications-15-SP5-Source-Pool","description":"SLE-Module-Certifications-15-SP5-Source-Pool for sle-15-ppc64le"}],"product_type":"module","cpe":"cpe:/o:suse:sle-module-certifications:15:sp5"}],"friendly_version":"15 SP5","arch":"ppc64le","eula_url":"https://updates.suse.com/SUSE/Products/SLE-Product-SLES/15-SP5/ppc64le/product.license/","shortname":"SLES15-SP5","description":"SUSE Linux Enterprise offers a comprehensive suite of products built on a single code base. The platform addresses business needs from the smallest thin-client devices to the world's most powerful high-performance computing and mainframe servers. SUSE Linux Enterprise offers common management tools and technology certifications across the platform, and each product is enterprise-class.","free":false,"cpe":"cpe:/o:suse:sles:15:sp5","product_type":"base","online_predecessor_ids":[1937,2138,2290,2586],"product_class":"SLES-PPC-BETA","repositories":[{"description":"SLE-Product-SLES15-SP5-Updates for sle-15-ppc64le","name":"SLE-Product-SLES15-SP5-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Updates/SLE-Product-SLES/15-SP5/ppc64le/update/","enabled":true,"id":5649},{"autorefresh":true,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Updates/SLE-Product-SLES/15-SP5/ppc64le/update_debug/","enabled":false,"id":5650,"description":"SLE-Product-SLES15-SP5-Debuginfo-Updates for sle-15-ppc64le","name":"SLE-Product-SLES15-SP5-Debuginfo-Updates","installer_updates":false},{"description":"SLE15-SP5-Installer-Updates for sle-15-ppc64le","name":"SLE15-SP5-Installer-Updates","installer_updates":true,"autorefresh":true,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Updates/SLE-INSTALLER/15-SP5/ppc64le/update/","enabled":false,"id":5651},{"description":"SLE-Product-SLES15-SP5-Pool for sle-15-ppc64le","name":"SLE-Product-SLES15-SP5-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Products/SLE-Product-SLES/15-SP5/ppc64le/product/","enabled":true,"id":5652},{"id":5653,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-SLES/15-SP5/ppc64le/product_debug/","distro_target":"sle-15-ppc64le","autorefresh":false,"installer_updates":false,"name":"SLE-Product-SLES15-SP5-Debuginfo-Pool","description":"SLE-Product-SLES15-SP5-Debuginfo-Pool for sle-15-ppc64le"},{"id":5654,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-SLES/15-SP5/ppc64le/product_source/","distro_target":"sle-15-ppc64le","autorefresh":false,"installer_updates":false,"name":"SLE-Product-SLES15-SP5-Source-Pool","description":"SLE-Product-SLES15-SP5-Source-Pool for sle-15-ppc64le"}],"predecessor_ids":[1937,2138,2290,2586]},{"recommended":false,"version":"15.5","name":"SUSE Linux Enterprise Server","offline_predecessor_ids":[1627,1877],"friendly_name":"SUSE Linux Enterprise Server 15 SP5 s390x (BETA)","migration_extra":false,"release_type":null,"former_identifier":"SLES","friendly_version":"15 SP5","extensions":[{"migration_extra":false,"friendly_name":"Basesystem Module 15 SP5 s390x","release_type":null,"former_identifier":"sle-module-basesystem","name":"Basesystem Module","offline_predecessor_ids":[1295,1367],"version":"15.5","recommended":true,"release_stage":"released","id":2473,"identifier":"sle-module-basesystem","extensions":[{"arch":"s390x","eula_url":"","free":true,"description":"

The SUSE Linux Enterprise Desktop Applications Module delivers a basic set of Desktop functionality.

Access to the Desktop Applications Module is included in your SUSE Linux Enterprise product subscription.

","shortname":"Desktop-Applications-Module","product_type":"module","cpe":"cpe:/o:suse:sle-module-desktop-applications:15:sp5","product_class":"MODULE","online_predecessor_ids":[1593,1775,1966,2148,2302],"repositories":[{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15-SP5/s390x/update/","autorefresh":true,"distro_target":"sle-15-s390x","id":5723,"enabled":true,"description":"SLE-Module-Desktop-Applications15-SP5-Updates for sle-15-s390x","name":"SLE-Module-Desktop-Applications15-SP5-Updates","installer_updates":false},{"enabled":false,"id":5724,"distro_target":"sle-15-s390x","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15-SP5/s390x/update_debug/","installer_updates":false,"name":"SLE-Module-Desktop-Applications15-SP5-Debuginfo-Updates","description":"SLE-Module-Desktop-Applications15-SP5-Debuginfo-Updates for sle-15-s390x"},{"description":"SLE-Module-Desktop-Applications15-SP5-Pool for sle-15-s390x","name":"SLE-Module-Desktop-Applications15-SP5-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-15-s390x","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP5/s390x/product/","enabled":true,"id":5725},{"name":"SLE-Module-Desktop-Applications15-SP5-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-Desktop-Applications15-SP5-Debuginfo-Pool for sle-15-s390x","id":5726,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP5/s390x/product_debug/","autorefresh":false,"distro_target":"sle-15-s390x"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP5/s390x/product_source/","autorefresh":false,"distro_target":"sle-15-s390x","id":5727,"enabled":false,"description":"SLE-Module-Desktop-Applications15-SP5-Source-Pool for sle-15-s390x","name":"SLE-Module-Desktop-Applications15-SP5-Source-Pool","installer_updates":false}],"predecessor_ids":[1593,1775,1966,2148,2302],"former_identifier":"sle-module-desktop-applications","release_type":null,"friendly_name":"Desktop Applications Module 15 SP5 s390x","migration_extra":true,"offline_predecessor_ids":[],"name":"Desktop Applications Module","version":"15.5","recommended":false,"id":2477,"release_stage":"released","identifier":"sle-module-desktop-applications","extensions":[{"friendly_version":"15 SP5","release_stage":"released","id":2489,"identifier":"sle-module-development-tools","extensions":[],"version":"15.5","recommended":false,"friendly_name":"Development Tools Module 15 SP5 s390x","migration_extra":true,"release_type":null,"former_identifier":"sle-sdk","name":"Development Tools Module","offline_predecessor_ids":[1340,1429,1632,1891],"online_predecessor_ids":[1596,1793,1970,2160,2314],"product_class":"MODULE","repositories":[{"installer_updates":false,"name":"SLE-Module-DevTools15-SP5-Updates","description":"SLE-Module-DevTools15-SP5-Updates for sle-15-s390x","enabled":true,"id":5783,"distro_target":"sle-15-s390x","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15-SP5/s390x/update/"},{"description":"SLE-Module-DevTools15-SP5-Debuginfo-Updates for sle-15-s390x","installer_updates":false,"name":"SLE-Module-DevTools15-SP5-Debuginfo-Updates","distro_target":"sle-15-s390x","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15-SP5/s390x/update_debug/","enabled":false,"id":5784},{"name":"SLE-Module-DevTools15-SP5-Pool","installer_updates":false,"description":"SLE-Module-DevTools15-SP5-Pool for sle-15-s390x","id":5785,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP5/s390x/product/","autorefresh":false,"distro_target":"sle-15-s390x"},{"autorefresh":false,"distro_target":"sle-15-s390x","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP5/s390x/product_debug/","enabled":false,"id":5786,"description":"SLE-Module-DevTools15-SP5-Debuginfo-Pool for sle-15-s390x","name":"SLE-Module-DevTools15-SP5-Debuginfo-Pool","installer_updates":false},{"description":"SLE-Module-DevTools15-SP5-Source-Pool for sle-15-s390x","installer_updates":false,"name":"SLE-Module-DevTools15-SP5-Source-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP5/s390x/product_source/","distro_target":"sle-15-s390x","autorefresh":false,"id":5787,"enabled":false}],"predecessor_ids":[1596,1793,1970,2160,2314],"cpe":"cpe:/o:suse:sle-module-development-tools:15:sp5","product_type":"module","shortname":"Development-Tools-Module","description":"

The Development Tools Module helps you developing applications for SUSE Linux Enterprise 15.

Access to the Development Tools Module is included in your SUSE Linux Enterprise product subscription. The module has a different lifecycle than SUSE Linux Enterprise itself.

","free":true,"arch":"s390x","eula_url":""}],"friendly_version":"15 SP5"},{"repositories":[{"description":"SLE-Module-Server-Applications15-SP5-Updates for sle-15-s390x","name":"SLE-Module-Server-Applications15-SP5-Updates","installer_updates":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15-SP5/s390x/update/","autorefresh":true,"distro_target":"sle-15-s390x","id":5743,"enabled":true},{"installer_updates":false,"name":"SLE-Module-Server-Applications15-SP5-Debuginfo-Updates","description":"SLE-Module-Server-Applications15-SP5-Debuginfo-Updates for sle-15-s390x","enabled":false,"id":5744,"distro_target":"sle-15-s390x","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15-SP5/s390x/update_debug/"},{"id":5745,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP5/s390x/product/","autorefresh":false,"distro_target":"sle-15-s390x","name":"SLE-Module-Server-Applications15-SP5-Pool","installer_updates":false,"description":"SLE-Module-Server-Applications15-SP5-Pool for sle-15-s390x"},{"enabled":false,"id":5746,"distro_target":"sle-15-s390x","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP5/s390x/product_debug/","installer_updates":false,"name":"SLE-Module-Server-Applications15-SP5-Debuginfo-Pool","description":"SLE-Module-Server-Applications15-SP5-Debuginfo-Pool for sle-15-s390x"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP5/s390x/product_source/","autorefresh":false,"distro_target":"sle-15-s390x","id":5747,"enabled":false,"description":"SLE-Module-Server-Applications15-SP5-Source-Pool for sle-15-s390x","name":"SLE-Module-Server-Applications15-SP5-Source-Pool","installer_updates":false}],"online_predecessor_ids":[1599,1779,1954,2152,2306],"product_class":"MODULE","predecessor_ids":[1599,1779,1954,2152,2306],"product_type":"module","cpe":"cpe:/o:suse:sle-module-server-applications:15:sp5","free":true,"description":"

The SUSE Linux Enterprise Server Applications Module delivers a basic set of Server functionality.

Access to the Server Applications Module is included in your SUSE Linux Enterprise Server subscription.

","shortname":"Server-Applications-Module","arch":"s390x","eula_url":"","friendly_version":"15 SP5","id":2481,"release_stage":"released","identifier":"sle-module-server-applications","extensions":[{"friendly_version":"15 SP5","release_stage":"released","identifier":"sle-module-web-scripting","id":2493,"extensions":[],"version":"15.5","recommended":false,"friendly_name":"Web and Scripting Module 15 SP5 s390x","migration_extra":true,"release_type":null,"former_identifier":"sle-module-web-scripting","name":"Web and Scripting Module","offline_predecessor_ids":[1152],"product_class":"MODULE","online_predecessor_ids":[1720,1797,1975,2164,2318],"repositories":[{"installer_updates":false,"name":"SLE-Module-Web-Scripting15-SP5-Updates","description":"SLE-Module-Web-Scripting15-SP5-Updates for sle-15-s390x","enabled":true,"id":5803,"distro_target":"sle-15-s390x","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/15-SP5/s390x/update/"},{"autorefresh":true,"distro_target":"sle-15-s390x","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/15-SP5/s390x/update_debug/","enabled":false,"id":5804,"description":"SLE-Module-Web-Scripting15-SP5-Debuginfo-Updates for sle-15-s390x","name":"SLE-Module-Web-Scripting15-SP5-Debuginfo-Updates","installer_updates":false},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP5/s390x/product/","distro_target":"sle-15-s390x","autorefresh":false,"id":5805,"enabled":true,"description":"SLE-Module-Web-Scripting15-SP5-Pool for sle-15-s390x","installer_updates":false,"name":"SLE-Module-Web-Scripting15-SP5-Pool"},{"description":"SLE-Module-Web-Scripting15-SP5-Debuginfo-Pool for sle-15-s390x","installer_updates":false,"name":"SLE-Module-Web-Scripting15-SP5-Debuginfo-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP5/s390x/product_debug/","distro_target":"sle-15-s390x","autorefresh":false,"id":5806,"enabled":false},{"name":"SLE-Module-Web-Scripting15-SP5-Source-Pool","installer_updates":false,"description":"SLE-Module-Web-Scripting15-SP5-Source-Pool for sle-15-s390x","id":5807,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP5/s390x/product_source/","autorefresh":false,"distro_target":"sle-15-s390x"}],"predecessor_ids":[1720,1797,1975,2164,2318],"cpe":"cpe:/o:suse:sle-module-web-scripting:15:sp5","product_type":"module","description":"

The SUSE Linux Enterprise Web and Scripting Module should contains additional packages that are helpful when running a webserver.

Access to the Web and Scripting Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself: Package versions in this module are usually supported for at most three years. We are planning to release more recent versions on a schedule of approximately 18 month; the exact dates may differ per package.

","shortname":"Web-Scripting-Module","free":true,"arch":"s390x","eula_url":""},{"product_type":"module","cpe":"cpe:/o:suse:sle-module-legacy:15:sp5","online_predecessor_ids":[1602,1803,1981,2170,2322],"product_class":"MODULE","repositories":[{"autorefresh":true,"distro_target":"sle-15-s390x","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/15-SP5/s390x/update/","enabled":true,"id":5833,"description":"SLE-Module-Legacy15-SP5-Updates for sle-15-s390x","name":"SLE-Module-Legacy15-SP5-Updates","installer_updates":false},{"name":"SLE-Module-Legacy15-SP5-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-Legacy15-SP5-Debuginfo-Updates for sle-15-s390x","enabled":false,"id":5834,"autorefresh":true,"distro_target":"sle-15-s390x","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/15-SP5/s390x/update_debug/"},{"id":5835,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15-SP5/s390x/product/","autorefresh":false,"distro_target":"sle-15-s390x","name":"SLE-Module-Legacy15-SP5-Pool","installer_updates":false,"description":"SLE-Module-Legacy15-SP5-Pool for sle-15-s390x"},{"enabled":false,"id":5836,"autorefresh":false,"distro_target":"sle-15-s390x","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15-SP5/s390x/product_debug/","name":"SLE-Module-Legacy15-SP5-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-Legacy15-SP5-Debuginfo-Pool for sle-15-s390x"},{"name":"SLE-Module-Legacy15-SP5-Source-Pool","installer_updates":false,"description":"SLE-Module-Legacy15-SP5-Source-Pool for sle-15-s390x","enabled":false,"id":5837,"autorefresh":false,"distro_target":"sle-15-s390x","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15-SP5/s390x/product_source/"}],"predecessor_ids":[1602,1803,1981,2170,2322],"arch":"s390x","eula_url":"","free":true,"shortname":"Legacy-Module","description":"

The Legacy Module helps you migrating applications from SUSE Linux Enterprise 12 and other systems to SUSE Linux Enterprise 15, by providing packages which are discontinued on SUSE Linux Enterprise Server, such as: ntp, IBM Java 8, and a number of libraries.

Access to the Legacy Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself. Packages in the this module are usually supported for at most three years.

","release_stage":"released","identifier":"sle-module-legacy","id":2499,"extensions":[],"friendly_version":"15 SP5","release_type":null,"former_identifier":"sle-module-legacy","friendly_name":"Legacy Module 15 SP5 s390x","migration_extra":true,"offline_predecessor_ids":[1149],"name":"Legacy Module","version":"15.5","recommended":false},{"free":true,"shortname":"Public-Cloud-Module","description":"

The Public Cloud Module is a collection of tools that enables you to create and manage cloud images from the commandline on SUSE Linux Enterprise Server. When building your own images with KIWI or SUSE Studio, initialization code specific to the target cloud is included in that image.

Access to the Public Cloud Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself; please check the Release Notes for further details.

","eula_url":"","arch":"s390x","predecessor_ids":[1646,1807,1987,2174,2326],"online_predecessor_ids":[1646,1807,1987,2174,2326],"repositories":[{"enabled":true,"id":5853,"distro_target":"sle-15-s390x","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/15-SP5/s390x/update/","installer_updates":false,"name":"SLE-Module-Public-Cloud15-SP5-Updates","description":"SLE-Module-Public-Cloud15-SP5-Updates for sle-15-s390x"},{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/15-SP5/s390x/update_debug/","distro_target":"sle-15-s390x","autorefresh":true,"id":5854,"enabled":false,"description":"SLE-Module-Public-Cloud15-SP5-Debuginfo-Updates for sle-15-s390x","installer_updates":false,"name":"SLE-Module-Public-Cloud15-SP5-Debuginfo-Updates"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP5/s390x/product/","distro_target":"sle-15-s390x","autorefresh":false,"id":5855,"enabled":true,"description":"SLE-Module-Public-Cloud15-SP5-Pool for sle-15-s390x","installer_updates":false,"name":"SLE-Module-Public-Cloud15-SP5-Pool"},{"id":5856,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP5/s390x/product_debug/","distro_target":"sle-15-s390x","autorefresh":false,"installer_updates":false,"name":"SLE-Module-Public-Cloud15-SP5-Debuginfo-Pool","description":"SLE-Module-Public-Cloud15-SP5-Debuginfo-Pool for sle-15-s390x"},{"distro_target":"sle-15-s390x","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP5/s390x/product_source/","enabled":false,"id":5857,"description":"SLE-Module-Public-Cloud15-SP5-Source-Pool for sle-15-s390x","installer_updates":false,"name":"SLE-Module-Public-Cloud15-SP5-Source-Pool"}],"product_class":"MODULE","product_type":"module","cpe":"cpe:/o:suse:sle-module-public-cloud:15:sp5","recommended":false,"version":"15.5","offline_predecessor_ids":[1219],"name":"Public Cloud Module","former_identifier":"sle-module-public-cloud","release_type":null,"migration_extra":false,"friendly_name":"Public Cloud Module 15 SP5 s390x","friendly_version":"15 SP5","extensions":[],"release_stage":"released","id":2503,"identifier":"sle-module-public-cloud"},{"friendly_version":"15 SP5","extensions":[],"id":2516,"release_stage":"beta","identifier":"sle-ha","recommended":false,"version":"15.5","offline_predecessor_ids":[1080,1082,1084,1086,1109,1110,1257,1287,1436,1636,1638,1883,1885],"name":"SUSE Linux Enterprise High Availability Extension","release_type":null,"former_identifier":"sle-ha","friendly_name":"SUSE Linux Enterprise High Availability Extension 15 SP5 s390x (BETA)","migration_extra":false,"predecessor_ids":[1784,1958,2194,2339],"product_class":"SLE-HAE-Z-BETA","online_predecessor_ids":[1784,1958,2194,2339],"repositories":[{"name":"SLE-Product-HA15-SP5-Updates","installer_updates":false,"description":"SLE-Product-HA15-SP5-Updates for sle-15-s390x","enabled":true,"id":5918,"autorefresh":true,"distro_target":"sle-15-s390x","url":"https://updates.suse.com/SUSE/Updates/SLE-Product-HA/15-SP5/s390x/update/"},{"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-HA/15-SP5/s390x/update_debug/","distro_target":"sle-15-s390x","autorefresh":true,"id":5919,"enabled":false,"description":"SLE-Product-HA15-SP5-Debuginfo-Updates for sle-15-s390x","installer_updates":false,"name":"SLE-Product-HA15-SP5-Debuginfo-Updates"},{"name":"SLE-Product-HA15-SP5-Pool","installer_updates":false,"description":"SLE-Product-HA15-SP5-Pool for sle-15-s390x","enabled":true,"id":5920,"autorefresh":false,"distro_target":"sle-15-s390x","url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP5/s390x/product/"},{"description":"SLE-Product-HA15-SP5-Debuginfo-Pool for sle-15-s390x","name":"SLE-Product-HA15-SP5-Debuginfo-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP5/s390x/product_debug/","autorefresh":false,"distro_target":"sle-15-s390x","id":5921,"enabled":false},{"url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP5/s390x/product_source/","distro_target":"sle-15-s390x","autorefresh":false,"id":5922,"enabled":false,"description":"SLE-Product-HA15-SP5-Source-Pool for sle-15-s390x","installer_updates":false,"name":"SLE-Product-HA15-SP5-Source-Pool"}],"product_type":"extension","cpe":"cpe:/o:suse:sle-ha:15:sp5","free":false,"shortname":"SLEHA15-SP5","description":"SUSE Linux High Availability Extension provides mature, industry-leading open-source high-availability clustering technologies that are easy to set up and use. It can be deployed in physical and/or virtual environments, and can cluster physical servers, virtual servers, or any combination of the two to suit your business’ needs.","eula_url":"","arch":"s390x"}],"version":"15.5","recommended":true,"former_identifier":"sle-module-server-applications","release_type":null,"friendly_name":"Server Applications Module 15 SP5 s390x","migration_extra":false,"offline_predecessor_ids":[],"name":"Server Applications Module"},{"friendly_version":"15 SP5","id":2485,"release_stage":"released","identifier":"sle-module-containers","extensions":[],"version":"15.5","recommended":false,"friendly_name":"Containers Module 15 SP5 s390x","migration_extra":false,"release_type":null,"former_identifier":"sle-module-containers","name":"Containers Module","offline_predecessor_ids":[1354],"online_predecessor_ids":[1641,1789,1962,2156,2310],"repositories":[{"installer_updates":false,"name":"SLE-Module-Containers15-SP5-Updates","description":"SLE-Module-Containers15-SP5-Updates for sle-15-s390x","id":5763,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/15-SP5/s390x/update/","distro_target":"sle-15-s390x","autorefresh":true},{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/15-SP5/s390x/update_debug/","autorefresh":true,"distro_target":"sle-15-s390x","id":5764,"enabled":false,"description":"SLE-Module-Containers15-SP5-Debuginfo-Updates for sle-15-s390x","name":"SLE-Module-Containers15-SP5-Debuginfo-Updates","installer_updates":false},{"enabled":true,"id":5765,"autorefresh":false,"distro_target":"sle-15-s390x","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP5/s390x/product/","name":"SLE-Module-Containers15-SP5-Pool","installer_updates":false,"description":"SLE-Module-Containers15-SP5-Pool for sle-15-s390x"},{"name":"SLE-Module-Containers15-SP5-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-Containers15-SP5-Debuginfo-Pool for sle-15-s390x","enabled":false,"id":5766,"autorefresh":false,"distro_target":"sle-15-s390x","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP5/s390x/product_debug/"},{"enabled":false,"id":5767,"distro_target":"sle-15-s390x","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP5/s390x/product_source/","installer_updates":false,"name":"SLE-Module-Containers15-SP5-Source-Pool","description":"SLE-Module-Containers15-SP5-Source-Pool for sle-15-s390x"}],"product_class":"MODULE","predecessor_ids":[1641,1789,1962,2156,2310],"cpe":"cpe:/o:suse:sle-module-containers:15:sp5","product_type":"module","description":"

This Module contains several packages revolving around containers and related tools.

","shortname":"Containers-Module","free":true,"arch":"s390x","eula_url":""},{"eula_url":"","arch":"s390x","shortname":"Transactional-Server-Module","description":"

Transactional Updates provide SUSE Linux Enterprise systems with a method of updating the operating system and its packages in an entirely ‘atomic’ way. Updates are either applied to the system all together in a single transaction, or not at all. This happens without influencing the running system. If an update fails, or if the successful update is deemed to be incompatible or otherwise incorrect, it can be discarded to immediately return the system to its previous functioning state.

Access to theTransactional Server Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself: Package versions in the this module are usually supported for at most three years. We are planning to release more recent versions on a schedule of approximately 18 month; the exact dates may differ per package.

","free":true,"cpe":"cpe:/o:suse:sle-module-transactional-server:15:sp5","product_type":"module","predecessor_ids":[1824,1997,2179,2330],"online_predecessor_ids":[1824,1997,2179,2330],"repositories":[{"description":"SLE-Module-Transactional-Server15-SP5-Updates for sle-15-s390x","installer_updates":false,"name":"SLE-Module-Transactional-Server15-SP5-Updates","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Transactional-Server/15-SP5/s390x/update/","distro_target":"sle-15-s390x","autorefresh":true,"id":5873,"enabled":true},{"enabled":false,"id":5874,"distro_target":"sle-15-s390x","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Transactional-Server/15-SP5/s390x/update_debug/","installer_updates":false,"name":"SLE-Module-Transactional-Server15-SP5-Debuginfo-Updates","description":"SLE-Module-Transactional-Server15-SP5-Debuginfo-Updates for sle-15-s390x"},{"name":"SLE-Module-Transactional-Server15-SP5-Pool","installer_updates":false,"description":"SLE-Module-Transactional-Server15-SP5-Pool for sle-15-s390x","id":5875,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Transactional-Server/15-SP5/s390x/product/","autorefresh":false,"distro_target":"sle-15-s390x"},{"autorefresh":false,"distro_target":"sle-15-s390x","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Transactional-Server/15-SP5/s390x/product_debug/","enabled":false,"id":5876,"description":"SLE-Module-Transactional-Server15-SP5-Debuginfo-Pool for sle-15-s390x","name":"SLE-Module-Transactional-Server15-SP5-Debuginfo-Pool","installer_updates":false},{"installer_updates":false,"name":"SLE-Module-Transactional-Server15-SP5-Source-Pool","description":"SLE-Module-Transactional-Server15-SP5-Source-Pool for sle-15-s390x","id":5877,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Transactional-Server/15-SP5/s390x/product_source/","distro_target":"sle-15-s390x","autorefresh":false}],"product_class":"MODULE","name":"Transactional Server Module","offline_predecessor_ids":[],"friendly_name":"Transactional Server Module 15 SP5 s390x","migration_extra":false,"release_type":null,"former_identifier":"sle-module-transactional-server","recommended":false,"version":"15.5","extensions":[],"id":2507,"release_stage":"released","identifier":"sle-module-transactional-server","friendly_version":"15 SP5"},{"recommended":false,"version":"15.5","offline_predecessor_ids":[2079,2080],"name":"SUSE Linux Enterprise Live Patching","former_identifier":"sle-module-live-patching","release_type":null,"friendly_name":"SUSE Linux Enterprise Live Patching 15 SP5 s390x (BETA)","migration_extra":false,"friendly_version":"15 SP5","extensions":[],"id":2510,"release_stage":"beta","identifier":"sle-module-live-patching","free":false,"description":"

SUSE Linux Enterprise Live Patching provides packages to update critical components in SUSE Linux Enterprise. With SUSE Linux Enterprise Live Patching, you can perform critical patching without shutting down your system, reducing the need for planned downtime and increasing service availability.

","shortname":"Live-Patching","eula_url":"","arch":"s390x","predecessor_ids":[2081,2186,2333],"product_class":"SLE-LP-Z-BETA","online_predecessor_ids":[2081,2186,2333],"repositories":[{"id":5888,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Live-Patching/15-SP5/s390x/update/","autorefresh":true,"distro_target":"sle-15-s390x","name":"SLE-Module-Live-Patching15-SP5-Updates","installer_updates":false,"description":"SLE-Module-Live-Patching15-SP5-Updates for sle-15-s390x"},{"name":"SLE-Module-Live-Patching15-SP5-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-Live-Patching15-SP5-Debuginfo-Updates for sle-15-s390x","id":5889,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Live-Patching/15-SP5/s390x/update_debug/","autorefresh":true,"distro_target":"sle-15-s390x"},{"installer_updates":false,"name":"SLE-Module-Live-Patching15-SP5-Pool","description":"SLE-Module-Live-Patching15-SP5-Pool for sle-15-s390x","enabled":true,"id":5890,"distro_target":"sle-15-s390x","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Live-Patching/15-SP5/s390x/product/"},{"installer_updates":false,"name":"SLE-Module-Live-Patching15-SP5-Debuginfo-Pool","description":"SLE-Module-Live-Patching15-SP5-Debuginfo-Pool for sle-15-s390x","id":5891,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Live-Patching/15-SP5/s390x/product_debug/","distro_target":"sle-15-s390x","autorefresh":false},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Live-Patching/15-SP5/s390x/product_source/","autorefresh":false,"distro_target":"sle-15-s390x","id":5892,"enabled":false,"description":"SLE-Module-Live-Patching15-SP5-Source-Pool for sle-15-s390x","name":"SLE-Module-Live-Patching15-SP5-Source-Pool","installer_updates":false}],"product_type":"extension","cpe":"cpe:/o:suse:sle-module-live-patching:15:sp5"},{"extensions":[],"identifier":"sle-module-python3","release_stage":"released","id":2535,"friendly_version":"15 SP5","offline_predecessor_ids":[],"name":"Python 3 Module","former_identifier":"sle-module-python3","release_type":null,"friendly_name":"Python 3 Module 15 SP5 s390x","migration_extra":false,"recommended":false,"version":"15.5","product_type":"module","cpe":"cpe:/o:suse:sle-module-python3:15:sp5","predecessor_ids":[2404],"online_predecessor_ids":[2404],"product_class":"MODULE","repositories":[{"id":5953,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Python3/15-SP5/s390x/update/","autorefresh":true,"distro_target":"sle-15-s390x","name":"SLE-Module-Python3-15-SP5-Updates","installer_updates":false,"description":"SLE-Module-Python3-15-SP5-Updates for sle-15-s390x"},{"autorefresh":true,"distro_target":"sle-15-s390x","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Python3/15-SP5/s390x/update_debug/","enabled":false,"id":5954,"description":"SLE-Module-Python3-15-SP5-Debuginfo-Updates for sle-15-s390x","name":"SLE-Module-Python3-15-SP5-Debuginfo-Updates","installer_updates":false},{"installer_updates":false,"name":"SLE-Module-Python3-15-SP5-Pool","description":"SLE-Module-Python3-15-SP5-Pool for sle-15-s390x","enabled":true,"id":5955,"distro_target":"sle-15-s390x","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Python3/15-SP5/s390x/product/"},{"distro_target":"sle-15-s390x","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Python3/15-SP5/s390x/product_debug/","enabled":false,"id":5956,"description":"SLE-Module-Python3-15-SP5-Debuginfo-Pool for sle-15-s390x","installer_updates":false,"name":"SLE-Module-Python3-15-SP5-Debuginfo-Pool"},{"description":"SLE-Module-Python3-15-SP5-Source-Pool for sle-15-s390x","name":"SLE-Module-Python3-15-SP5-Source-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-15-s390x","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Python3/15-SP5/s390x/product_source/","enabled":false,"id":5957}],"eula_url":"","arch":"s390x","free":true,"shortname":"Python 3-Module","description":"

This module contains the Python 3 packages.

Access to the Python 3 Module is included in your SUSE Linux Enterprise subscription. The module has a different lifecycle than SUSE Linux Enterprise itself; please check the Release Notes for further details.

"},{"friendly_version":"15 SP5","identifier":"PackageHub","release_stage":"released","id":2561,"extensions":[],"version":"15.5","recommended":false,"release_type":null,"former_identifier":"PackageHub","migration_extra":false,"friendly_name":"SUSE Package Hub 15 SP5 s390x","offline_predecessor_ids":[1530,1812,1914],"name":"SUSE Package Hub","product_class":"MODULE","online_predecessor_ids":[1742,1870,1949,2190,2346],"repositories":[{"installer_updates":false,"name":"SUSE-PackageHub-15-SP5-Backports-Pool","description":"SUSE-PackageHub-15-SP5-Backports-Pool for sle-15-s390x","enabled":true,"id":6105,"distro_target":"sle-15-s390x","autorefresh":false,"url":"https://updates.suse.com/SUSE/Backports/SLE-15-SP5_s390x/standard/"},{"description":"SUSE-PackageHub-15-SP5-Backports-Debuginfo for sle-15-s390x","installer_updates":false,"name":"SUSE-PackageHub-15-SP5-Backports-Debuginfo","url":"https://updates.suse.com/SUSE/Backports/SLE-15-SP5_s390x/standard_debug/","distro_target":"sle-15-s390x","autorefresh":true,"id":6106,"enabled":false},{"description":"SLE-Module-Packagehub-Subpackages15-SP5-Updates for sle-15-s390x","installer_updates":false,"name":"SLE-Module-Packagehub-Subpackages15-SP5-Updates","distro_target":"sle-15-s390x","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP5/s390x/update/","enabled":true,"id":6107},{"name":"SLE-Module-Packagehub-Subpackages15-SP5-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-Packagehub-Subpackages15-SP5-Debuginfo-Updates for sle-15-s390x","id":6108,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP5/s390x/update_debug/","autorefresh":true,"distro_target":"sle-15-s390x"},{"url":"https://updates.suse.com/SUSE/Backports/SLE-15-SP5_s390x/product/","autorefresh":false,"distro_target":"sle-15-s390x","id":6109,"enabled":true,"description":"SUSE-PackageHub-15-SP5-Pool for sle-15-s390x","name":"SUSE-PackageHub-15-SP5-Pool","installer_updates":false},{"autorefresh":false,"distro_target":"sle-15-s390x","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP5/s390x/product/","enabled":true,"id":6110,"description":"SLE-Module-Packagehub-Subpackages15-SP5-Pool for sle-15-s390x","name":"SLE-Module-Packagehub-Subpackages15-SP5-Pool","installer_updates":false},{"installer_updates":false,"name":"SLE-Module-Packagehub-Subpackages15-SP5-Debuginfo-Pool","description":"SLE-Module-Packagehub-Subpackages15-SP5-Debuginfo-Pool for sle-15-s390x","enabled":false,"id":6111,"distro_target":"sle-15-s390x","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP5/s390x/product_debug/"},{"name":"SLE-Module-Packagehub-Subpackages15-SP5-Source-Pool","installer_updates":false,"description":"SLE-Module-Packagehub-Subpackages15-SP5-Source-Pool for sle-15-s390x","id":6112,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP5/s390x/product_source/","autorefresh":false,"distro_target":"sle-15-s390x"}],"predecessor_ids":[1742,1870,1949,2190,2346],"product_type":"module","cpe":"cpe:/o:suse:packagehub:15:sp5","free":true,"description":"SUSE Package Hub is a free of charge module providing access to community maintained packages built to run on SUSE Linux Enterprise Server. Built from the same sources used in the openSUSE distributions, these quality packages provide additional software to what is found in the SUSE Linux Enterprise Server product. Packages from the Package Hub are delivered without L3 support from SUSE. General updates and fixes to the packages in SUSE Package Hub are provided by the openSUSE community based on their discretion, though SUSE will monitor and ensure that any known critical security issues will be addressed. Packages in the Package Hub are approved by SUSE for use with SUSE Linux Enterprise Server 15-SP5 and to not interfere with the supportability of SUSE Linux Enterprise Server, its modules and extensions. For more information about SUSE Package Hub please visit https://packagehub.suse.com.","shortname":"SUSE-PackageHub-15","arch":"s390x","eula_url":""}],"friendly_version":"15 SP5","arch":"s390x","eula_url":"","shortname":"Basesystem-Module","description":"

The SUSE Linux Enterprise Basesystem Module delivers the base system of the product.

","free":true,"cpe":"cpe:/o:suse:sle-module-basesystem:15:sp5","product_type":"module","online_predecessor_ids":[1587,1771,1945,2144,2298],"repositories":[{"id":5703,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15-SP5/s390x/update/","distro_target":"sle-15-s390x","autorefresh":true,"installer_updates":false,"name":"SLE-Module-Basesystem15-SP5-Updates","description":"SLE-Module-Basesystem15-SP5-Updates for sle-15-s390x"},{"description":"SLE-Module-Basesystem15-SP5-Debuginfo-Updates for sle-15-s390x","name":"SLE-Module-Basesystem15-SP5-Debuginfo-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-15-s390x","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15-SP5/s390x/update_debug/","enabled":false,"id":5704},{"description":"SLE-Module-Basesystem15-SP5-Pool for sle-15-s390x","name":"SLE-Module-Basesystem15-SP5-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP5/s390x/product/","autorefresh":false,"distro_target":"sle-15-s390x","id":5705,"enabled":true},{"name":"SLE-Module-Basesystem15-SP5-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-Basesystem15-SP5-Debuginfo-Pool for sle-15-s390x","id":5706,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP5/s390x/product_debug/","autorefresh":false,"distro_target":"sle-15-s390x"},{"id":5707,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP5/s390x/product_source/","autorefresh":false,"distro_target":"sle-15-s390x","name":"SLE-Module-Basesystem15-SP5-Source-Pool","installer_updates":false,"description":"SLE-Module-Basesystem15-SP5-Source-Pool for sle-15-s390x"}],"product_class":"MODULE","predecessor_ids":[1587,1771,1945,2144,2298]},{"arch":"s390x","eula_url":"","free":true,"shortname":"Certifications-Module","description":"

This module contains the certification packages.

Access to the Certifications Module is included in your SUSE Linux Enterprise subscription. The module has a different lifecycle than SUSE Linux Enterprise itself; please check the Release Notes for further details.

","product_type":"module","cpe":"cpe:/o:suse:sle-module-certifications:15:sp5","product_class":"MODULE","online_predecessor_ids":[2392],"repositories":[{"description":"SLE-Module-Certifications-15-SP5-Updates for sle-15-s390x","name":"SLE-Module-Certifications-15-SP5-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-15-s390x","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Certifications/15-SP5/s390x/update/","enabled":true,"id":6075},{"autorefresh":true,"distro_target":"sle-15-s390x","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Certifications/15-SP5/s390x/update_debug/","enabled":false,"id":6076,"description":"SLE-Module-Certifications-15-SP5-Debuginfo-Updates for sle-15-s390x","name":"SLE-Module-Certifications-15-SP5-Debuginfo-Updates","installer_updates":false},{"name":"SLE-Module-Certifications-15-SP5-Pool","installer_updates":false,"description":"SLE-Module-Certifications-15-SP5-Pool for sle-15-s390x","id":6077,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Certifications/15-SP5/s390x/product/","autorefresh":false,"distro_target":"sle-15-s390x"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Certifications/15-SP5/s390x/product_debug/","autorefresh":false,"distro_target":"sle-15-s390x","id":6078,"enabled":false,"description":"SLE-Module-Certifications-15-SP5-Debuginfo-Pool for sle-15-s390x","name":"SLE-Module-Certifications-15-SP5-Debuginfo-Pool","installer_updates":false},{"enabled":false,"id":6079,"distro_target":"sle-15-s390x","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Certifications/15-SP5/s390x/product_source/","installer_updates":false,"name":"SLE-Module-Certifications-15-SP5-Source-Pool","description":"SLE-Module-Certifications-15-SP5-Source-Pool for sle-15-s390x"}],"predecessor_ids":[2392],"former_identifier":"sle-module-certifications","release_type":null,"friendly_name":"Certifications Module 15 SP5 s390x","migration_extra":false,"offline_predecessor_ids":[],"name":"Certifications Module","version":"15.5","recommended":false,"identifier":"sle-module-certifications","release_stage":"released","id":2557,"extensions":[],"friendly_version":"15 SP5"}],"release_stage":"beta","identifier":"SLES","id":2464,"shortname":"SLES15-SP5","description":"SUSE Linux Enterprise offers a comprehensive suite of products built on a single code base. The platform addresses business needs from the smallest thin-client devices to the world's most powerful high-performance computing and mainframe servers. SUSE Linux Enterprise offers common management tools and technology certifications across the platform, and each product is enterprise-class.","free":false,"eula_url":"https://updates.suse.com/SUSE/Products/SLE-Product-SLES/15-SP5/s390x/product.license/","arch":"s390x","predecessor_ids":[1938,2139,2291,2587],"online_predecessor_ids":[1938,2139,2291,2587],"repositories":[{"name":"SLE-Product-SLES15-SP5-Updates","installer_updates":false,"description":"SLE-Product-SLES15-SP5-Updates for sle-15-s390x","enabled":true,"id":5655,"autorefresh":true,"distro_target":"sle-15-s390x","url":"https://updates.suse.com/SUSE/Updates/SLE-Product-SLES/15-SP5/s390x/update/"},{"description":"SLE-Product-SLES15-SP5-Debuginfo-Updates for sle-15-s390x","installer_updates":false,"name":"SLE-Product-SLES15-SP5-Debuginfo-Updates","distro_target":"sle-15-s390x","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-SLES/15-SP5/s390x/update_debug/","enabled":false,"id":5656},{"id":5657,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-INSTALLER/15-SP5/s390x/update/","autorefresh":true,"distro_target":"sle-15-s390x","name":"SLE15-SP5-Installer-Updates","installer_updates":true,"description":"SLE15-SP5-Installer-Updates for sle-15-s390x"},{"description":"SLE-Product-SLES15-SP5-Pool for sle-15-s390x","installer_updates":false,"name":"SLE-Product-SLES15-SP5-Pool","distro_target":"sle-15-s390x","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-SLES/15-SP5/s390x/product/","enabled":true,"id":5658},{"name":"SLE-Product-SLES15-SP5-Debuginfo-Pool","installer_updates":false,"description":"SLE-Product-SLES15-SP5-Debuginfo-Pool for sle-15-s390x","id":5659,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-SLES/15-SP5/s390x/product_debug/","autorefresh":false,"distro_target":"sle-15-s390x"},{"name":"SLE-Product-SLES15-SP5-Source-Pool","installer_updates":false,"description":"SLE-Product-SLES15-SP5-Source-Pool for sle-15-s390x","enabled":false,"id":5660,"autorefresh":false,"distro_target":"sle-15-s390x","url":"https://updates.suse.com/SUSE/Products/SLE-Product-SLES/15-SP5/s390x/product_source/"}],"product_class":"SLES-Z-BETA","cpe":"cpe:/o:suse:sles:15:sp5","product_type":"base"},{"offline_predecessor_ids":[1625,1878],"name":"SUSE Linux Enterprise Server","release_type":null,"former_identifier":"SLES","friendly_name":"SUSE Linux Enterprise Server 15 SP5 x86_64 (BETA)","migration_extra":false,"recommended":false,"version":"15.5","extensions":[{"recommended":true,"version":"15.5","offline_predecessor_ids":[1212,1368,1440],"name":"Basesystem Module","release_type":null,"former_identifier":"sle-module-basesystem","friendly_name":"Basesystem Module 15 SP5 x86_64","migration_extra":false,"friendly_version":"15 SP5","extensions":[{"friendly_version":"15 SP5","extensions":[{"eula_url":"","arch":"x86_64","description":"

The Development Tools Module helps you developing applications for SUSE Linux Enterprise 15.

Access to the Development Tools Module is included in your SUSE Linux Enterprise product subscription. The module has a different lifecycle than SUSE Linux Enterprise itself.

","shortname":"Development-Tools-Module","free":true,"cpe":"cpe:/o:suse:sle-module-development-tools:15:sp5","product_type":"module","predecessor_ids":[1579,1794,1971,2161,2315],"online_predecessor_ids":[1579,1794,1971,2161,2315],"product_class":"MODULE","repositories":[{"enabled":true,"id":5788,"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15-SP5/x86_64/update/","name":"SLE-Module-DevTools15-SP5-Updates","installer_updates":false,"description":"SLE-Module-DevTools15-SP5-Updates for sle-15-x86_64"},{"description":"SLE-Module-DevTools15-SP5-Debuginfo-Updates for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-DevTools15-SP5-Debuginfo-Updates","distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15-SP5/x86_64/update_debug/","enabled":false,"id":5789},{"id":5790,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP5/x86_64/product/","autorefresh":false,"distro_target":"sle-15-x86_64","name":"SLE-Module-DevTools15-SP5-Pool","installer_updates":false,"description":"SLE-Module-DevTools15-SP5-Pool for sle-15-x86_64"},{"description":"SLE-Module-DevTools15-SP5-Debuginfo-Pool for sle-15-x86_64","name":"SLE-Module-DevTools15-SP5-Debuginfo-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP5/x86_64/product_debug/","autorefresh":false,"distro_target":"sle-15-x86_64","id":5791,"enabled":false},{"enabled":false,"id":5792,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP5/x86_64/product_source/","name":"SLE-Module-DevTools15-SP5-Source-Pool","installer_updates":false,"description":"SLE-Module-DevTools15-SP5-Source-Pool for sle-15-x86_64"}],"name":"Development Tools Module","offline_predecessor_ids":[1341,1427,1630,1892],"friendly_name":"Development Tools Module 15 SP5 x86_64","migration_extra":true,"former_identifier":"sle-sdk","release_type":null,"recommended":false,"version":"15.5","extensions":[{"former_identifier":"sle-module-NVIDIA-compute","release_type":null,"friendly_name":"NVIDIA Compute Module 15 x86_64","migration_extra":false,"offline_predecessor_ids":[],"name":"NVIDIA Compute Module","version":"15","recommended":false,"id":2131,"release_stage":"released","identifier":"sle-module-NVIDIA-compute","extensions":[],"friendly_version":"15","arch":"x86_64","eula_url":"https://updates.suse.com/SUSE/Products/SLE-Module-NVIDIA-Compute/15/x86_64/product.license/","free":true,"description":"NVIDIA Compute Drivers - NVIDIA CUDA This Module contains software under the terms and conditions of a 3rd party EULA (End User License Agreement). The EULA can be found at https://docs.nvidia.com/cuda/eula/index.html. By using this software you agree to fully comply with the terms and conditions of the EULA. If you do not agree to the terms and conditions of the EULA, do not use the software.","shortname":"NVIDIA-Compute-Module","product_type":"module","cpe":"cpe:/o:suse:sle-module-nvidia-compute:15","product_class":"MODULE","online_predecessor_ids":[],"repositories":[{"description":"SLE-Module-NVIDIA-Compute-15-Updates for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-NVIDIA-Compute-15-Updates","distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-NVIDIA-Compute/15/x86_64/update/","enabled":true,"id":4554},{"description":"SLE-Module-NVIDIA-Compute-15-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-NVIDIA-Compute-15-Pool","distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-NVIDIA-Compute/15/x86_64/product/","enabled":true,"id":4556},{"name":"NVIDIA-Compute-SLE-15","installer_updates":false,"description":"NVIDIA-Compute-SLE-15","id":4563,"enabled":true,"url":"https://developer.download.nvidia.com/compute/cuda/repos/sles15/x86_64/","autorefresh":true,"distro_target":null}],"predecessor_ids":[]}],"release_stage":"released","id":2490,"identifier":"sle-module-development-tools","friendly_version":"15 SP5"},{"name":"SUSE Linux Enterprise Workstation Extension","offline_predecessor_ids":[1639,1893],"friendly_name":"SUSE Linux Enterprise Workstation Extension 15 SP5 x86_64 (BETA)","migration_extra":false,"former_identifier":"sle-we","release_type":null,"recommended":false,"version":"15.5","extensions":[],"id":2513,"release_stage":"beta","identifier":"sle-we","friendly_version":"15 SP5","eula_url":"https://updates.suse.com/SUSE/Products/SLE-Product-WE/15-SP5/x86_64/product.license/","arch":"x86_64","description":"SUSE Linux Enterprise Workstation Extension adds additional functionality to a base SUSE Linux Enterprise installation. The Workstation Extension offers additional desktop applications (office suite, email client, graphical editor, multimedia tools) and libraries. Workstation Extension is enabled and installed by default on SUSE Linux Enterprise Desktop installation. Adding the Workstation Extension to a SUSE Linux Enterprise Server installation allows to seamlessly combine both products to create a full featured server workstation.","shortname":"SLEWE15-SP5","free":false,"cpe":"cpe:/o:suse:sle-we:15:sp5","product_type":"extension","predecessor_ids":[1781,1999,2196,2343],"product_class":"SLE-WE-BETA","online_predecessor_ids":[1781,1999,2196,2343],"repositories":[{"id":5680,"enabled":true,"url":"https://download.nvidia.com/suse/sle15sp5/","distro_target":null,"autorefresh":true,"installer_updates":false,"name":"SLE-15-SP5-Desktop-NVIDIA-Driver","description":"SLE-15-SP5-Desktop-NVIDIA-Driver"},{"id":5903,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-WE/15-SP5/x86_64/update/","distro_target":"sle-15-x86_64","autorefresh":true,"installer_updates":false,"name":"SLE-Product-WE15-SP5-Updates","description":"SLE-Product-WE15-SP5-Updates for sle-15-x86_64"},{"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Product-WE/15-SP5/x86_64/update_debug/","enabled":false,"id":5904,"description":"SLE-Product-WE15-SP5-Debuginfo-Updates for sle-15-x86_64","name":"SLE-Product-WE15-SP5-Debuginfo-Updates","installer_updates":false},{"url":"https://updates.suse.com/SUSE/Products/SLE-Product-WE/15-SP5/x86_64/product/","autorefresh":false,"distro_target":"sle-15-x86_64","id":5905,"enabled":true,"description":"SLE-Product-WE15-SP5-Pool for sle-15-x86_64","name":"SLE-Product-WE15-SP5-Pool","installer_updates":false},{"description":"SLE-Product-WE15-SP5-Debuginfo-Pool for sle-15-x86_64","name":"SLE-Product-WE15-SP5-Debuginfo-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-WE/15-SP5/x86_64/product_debug/","autorefresh":false,"distro_target":"sle-15-x86_64","id":5906,"enabled":false},{"enabled":false,"id":5907,"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-WE/15-SP5/x86_64/product_source/","installer_updates":false,"name":"SLE-Product-WE15-SP5-Source-Pool","description":"SLE-Product-WE15-SP5-Source-Pool for sle-15-x86_64"}]}],"id":2478,"release_stage":"released","identifier":"sle-module-desktop-applications","recommended":false,"version":"15.5","name":"Desktop Applications Module","offline_predecessor_ids":[],"migration_extra":true,"friendly_name":"Desktop Applications Module 15 SP5 x86_64","former_identifier":"sle-module-desktop-applications","release_type":null,"predecessor_ids":[1578,1776,1967,2149,2303],"online_predecessor_ids":[1578,1776,1967,2149,2303],"repositories":[{"enabled":true,"id":5728,"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15-SP5/x86_64/update/","name":"SLE-Module-Desktop-Applications15-SP5-Updates","installer_updates":false,"description":"SLE-Module-Desktop-Applications15-SP5-Updates for sle-15-x86_64"},{"description":"SLE-Module-Desktop-Applications15-SP5-Debuginfo-Updates for sle-15-x86_64","name":"SLE-Module-Desktop-Applications15-SP5-Debuginfo-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15-SP5/x86_64/update_debug/","enabled":false,"id":5729},{"installer_updates":false,"name":"SLE-Module-Desktop-Applications15-SP5-Pool","description":"SLE-Module-Desktop-Applications15-SP5-Pool for sle-15-x86_64","id":5730,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP5/x86_64/product/","distro_target":"sle-15-x86_64","autorefresh":false},{"description":"SLE-Module-Desktop-Applications15-SP5-Debuginfo-Pool for sle-15-x86_64","name":"SLE-Module-Desktop-Applications15-SP5-Debuginfo-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP5/x86_64/product_debug/","enabled":false,"id":5731},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP5/x86_64/product_source/","autorefresh":false,"distro_target":"sle-15-x86_64","id":5732,"enabled":false,"description":"SLE-Module-Desktop-Applications15-SP5-Source-Pool for sle-15-x86_64","name":"SLE-Module-Desktop-Applications15-SP5-Source-Pool","installer_updates":false}],"product_class":"MODULE","cpe":"cpe:/o:suse:sle-module-desktop-applications:15:sp5","product_type":"module","shortname":"Desktop-Applications-Module","description":"

The SUSE Linux Enterprise Desktop Applications Module delivers a basic set of Desktop functionality.

Access to the Desktop Applications Module is included in your SUSE Linux Enterprise product subscription.

","free":true,"eula_url":"","arch":"x86_64"},{"product_type":"module","cpe":"cpe:/o:suse:sle-module-server-applications:15:sp5","online_predecessor_ids":[1580,1780,1955,2153,2307],"product_class":"MODULE","repositories":[{"enabled":true,"id":5748,"distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15-SP5/x86_64/update/","installer_updates":false,"name":"SLE-Module-Server-Applications15-SP5-Updates","description":"SLE-Module-Server-Applications15-SP5-Updates for sle-15-x86_64"},{"description":"SLE-Module-Server-Applications15-SP5-Debuginfo-Updates for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Server-Applications15-SP5-Debuginfo-Updates","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15-SP5/x86_64/update_debug/","distro_target":"sle-15-x86_64","autorefresh":true,"id":5749,"enabled":false},{"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP5/x86_64/product/","enabled":true,"id":5750,"description":"SLE-Module-Server-Applications15-SP5-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Server-Applications15-SP5-Pool"},{"installer_updates":false,"name":"SLE-Module-Server-Applications15-SP5-Debuginfo-Pool","description":"SLE-Module-Server-Applications15-SP5-Debuginfo-Pool for sle-15-x86_64","enabled":false,"id":5751,"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP5/x86_64/product_debug/"},{"description":"SLE-Module-Server-Applications15-SP5-Source-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Server-Applications15-SP5-Source-Pool","distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP5/x86_64/product_source/","enabled":false,"id":5752}],"predecessor_ids":[1580,1780,1955,2153,2307],"arch":"x86_64","eula_url":"","free":true,"shortname":"Server-Applications-Module","description":"

The SUSE Linux Enterprise Server Applications Module delivers a basic set of Server functionality.

Access to the Server Applications Module is included in your SUSE Linux Enterprise Server subscription.

","release_stage":"released","identifier":"sle-module-server-applications","id":2482,"extensions":[{"friendly_version":"15 SP5","id":2494,"release_stage":"released","identifier":"sle-module-web-scripting","extensions":[],"version":"15.5","recommended":false,"friendly_name":"Web and Scripting Module 15 SP5 x86_64","migration_extra":true,"former_identifier":"sle-module-web-scripting","release_type":null,"name":"Web and Scripting Module","offline_predecessor_ids":[1153],"online_predecessor_ids":[1721,1798,1976,2165,2319],"repositories":[{"installer_updates":false,"name":"SLE-Module-Web-Scripting15-SP5-Updates","description":"SLE-Module-Web-Scripting15-SP5-Updates for sle-15-x86_64","enabled":true,"id":5808,"distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/15-SP5/x86_64/update/"},{"installer_updates":false,"name":"SLE-Module-Web-Scripting15-SP5-Debuginfo-Updates","description":"SLE-Module-Web-Scripting15-SP5-Debuginfo-Updates for sle-15-x86_64","id":5809,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/15-SP5/x86_64/update_debug/","distro_target":"sle-15-x86_64","autorefresh":true},{"description":"SLE-Module-Web-Scripting15-SP5-Pool for sle-15-x86_64","name":"SLE-Module-Web-Scripting15-SP5-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP5/x86_64/product/","autorefresh":false,"distro_target":"sle-15-x86_64","id":5810,"enabled":true},{"description":"SLE-Module-Web-Scripting15-SP5-Debuginfo-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Web-Scripting15-SP5-Debuginfo-Pool","distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP5/x86_64/product_debug/","enabled":false,"id":5811},{"enabled":false,"id":5812,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP5/x86_64/product_source/","name":"SLE-Module-Web-Scripting15-SP5-Source-Pool","installer_updates":false,"description":"SLE-Module-Web-Scripting15-SP5-Source-Pool for sle-15-x86_64"}],"product_class":"MODULE","predecessor_ids":[1721,1798,1976,2165,2319],"cpe":"cpe:/o:suse:sle-module-web-scripting:15:sp5","product_type":"module","shortname":"Web-Scripting-Module","description":"

The SUSE Linux Enterprise Web and Scripting Module should contains additional packages that are helpful when running a webserver.

Access to the Web and Scripting Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself: Package versions in this module are usually supported for at most three years. We are planning to release more recent versions on a schedule of approximately 18 month; the exact dates may differ per package.

","free":true,"arch":"x86_64","eula_url":""},{"offline_predecessor_ids":[1150],"name":"Legacy Module","release_type":null,"former_identifier":"sle-module-legacy","migration_extra":true,"friendly_name":"Legacy Module 15 SP5 x86_64","recommended":false,"version":"15.5","extensions":[],"release_stage":"released","identifier":"sle-module-legacy","id":2500,"friendly_version":"15 SP5","eula_url":"","arch":"x86_64","free":true,"description":"

The Legacy Module helps you migrating applications from SUSE Linux Enterprise 12 and other systems to SUSE Linux Enterprise 15, by providing packages which are discontinued on SUSE Linux Enterprise Server, such as: ntp, IBM Java 8, and a number of libraries.

Access to the Legacy Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself. Packages in the this module are usually supported for at most three years.

","shortname":"Legacy-Module","product_type":"module","cpe":"cpe:/o:suse:sle-module-legacy:15:sp5","predecessor_ids":[1581,1804,1982,2171,2323],"online_predecessor_ids":[1581,1804,1982,2171,2323],"repositories":[{"enabled":true,"id":5838,"distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/15-SP5/x86_64/update/","installer_updates":false,"name":"SLE-Module-Legacy15-SP5-Updates","description":"SLE-Module-Legacy15-SP5-Updates for sle-15-x86_64"},{"description":"SLE-Module-Legacy15-SP5-Debuginfo-Updates for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Legacy15-SP5-Debuginfo-Updates","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/15-SP5/x86_64/update_debug/","distro_target":"sle-15-x86_64","autorefresh":true,"id":5839,"enabled":false},{"description":"SLE-Module-Legacy15-SP5-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Legacy15-SP5-Pool","distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15-SP5/x86_64/product/","enabled":true,"id":5840},{"name":"SLE-Module-Legacy15-SP5-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-Legacy15-SP5-Debuginfo-Pool for sle-15-x86_64","enabled":false,"id":5841,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15-SP5/x86_64/product_debug/"},{"id":5842,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15-SP5/x86_64/product_source/","distro_target":"sle-15-x86_64","autorefresh":false,"installer_updates":false,"name":"SLE-Module-Legacy15-SP5-Source-Pool","description":"SLE-Module-Legacy15-SP5-Source-Pool for sle-15-x86_64"}],"product_class":"MODULE"},{"eula_url":"","arch":"x86_64","free":true,"shortname":"Public-Cloud-Module","description":"

The Public Cloud Module is a collection of tools that enables you to create and manage cloud images from the commandline on SUSE Linux Enterprise Server. When building your own images with KIWI or SUSE Studio, initialization code specific to the target cloud is included in that image.

Access to the Public Cloud Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself; please check the Release Notes for further details.

","product_type":"module","cpe":"cpe:/o:suse:sle-module-public-cloud:15:sp5","predecessor_ids":[1611,1808,1988,2175,2327],"repositories":[{"description":"SLE-Module-Public-Cloud15-SP5-Updates for sle-15-x86_64","name":"SLE-Module-Public-Cloud15-SP5-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/15-SP5/x86_64/update/","enabled":true,"id":5858},{"distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/15-SP5/x86_64/update_debug/","enabled":false,"id":5859,"description":"SLE-Module-Public-Cloud15-SP5-Debuginfo-Updates for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Public-Cloud15-SP5-Debuginfo-Updates"},{"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP5/x86_64/product/","enabled":true,"id":5860,"description":"SLE-Module-Public-Cloud15-SP5-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Public-Cloud15-SP5-Pool"},{"id":5861,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP5/x86_64/product_debug/","autorefresh":false,"distro_target":"sle-15-x86_64","name":"SLE-Module-Public-Cloud15-SP5-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-Public-Cloud15-SP5-Debuginfo-Pool for sle-15-x86_64"},{"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP5/x86_64/product_source/","enabled":false,"id":5862,"description":"SLE-Module-Public-Cloud15-SP5-Source-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Public-Cloud15-SP5-Source-Pool"}],"online_predecessor_ids":[1611,1808,1988,2175,2327],"product_class":"MODULE","offline_predecessor_ids":[1220],"name":"Public Cloud Module","former_identifier":"sle-module-public-cloud","release_type":null,"friendly_name":"Public Cloud Module 15 SP5 x86_64","migration_extra":false,"recommended":false,"version":"15.5","extensions":[],"identifier":"sle-module-public-cloud","release_stage":"released","id":2504,"friendly_version":"15 SP5"},{"cpe":"cpe:/o:suse:sle-ha:15:sp5","product_type":"extension","predecessor_ids":[1785,1959,2195,2340],"online_predecessor_ids":[1785,1959,2195,2340],"repositories":[{"enabled":true,"id":5923,"distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-HA/15-SP5/x86_64/update/","installer_updates":false,"name":"SLE-Product-HA15-SP5-Updates","description":"SLE-Product-HA15-SP5-Updates for sle-15-x86_64"},{"description":"SLE-Product-HA15-SP5-Debuginfo-Updates for sle-15-x86_64","name":"SLE-Product-HA15-SP5-Debuginfo-Updates","installer_updates":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-HA/15-SP5/x86_64/update_debug/","autorefresh":true,"distro_target":"sle-15-x86_64","id":5924,"enabled":false},{"enabled":true,"id":5925,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP5/x86_64/product/","name":"SLE-Product-HA15-SP5-Pool","installer_updates":false,"description":"SLE-Product-HA15-SP5-Pool for sle-15-x86_64"},{"id":5926,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP5/x86_64/product_debug/","autorefresh":false,"distro_target":"sle-15-x86_64","name":"SLE-Product-HA15-SP5-Debuginfo-Pool","installer_updates":false,"description":"SLE-Product-HA15-SP5-Debuginfo-Pool for sle-15-x86_64"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP5/x86_64/product_source/","distro_target":"sle-15-x86_64","autorefresh":false,"id":5927,"enabled":false,"description":"SLE-Product-HA15-SP5-Source-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Product-HA15-SP5-Source-Pool"}],"product_class":"SLE-HAE-X86-BETA","eula_url":"","arch":"x86_64","shortname":"SLEHA15-SP5","description":"SUSE Linux High Availability Extension provides mature, industry-leading open-source high-availability clustering technologies that are easy to set up and use. It can be deployed in physical and/or virtual environments, and can cluster physical servers, virtual servers, or any combination of the two to suit your business’ needs.","free":false,"extensions":[],"identifier":"sle-ha","release_stage":"beta","id":2517,"friendly_version":"15 SP5","name":"SUSE Linux Enterprise High Availability Extension","offline_predecessor_ids":[958,961,967,971,1101,1107,1256,1286,1435,1634,1637,1884,1886],"migration_extra":false,"friendly_name":"SUSE Linux Enterprise High Availability Extension 15 SP5 x86_64 (BETA)","former_identifier":"sle-ha","release_type":null,"recommended":false,"version":"15.5"},{"free":true,"description":"

The SAP Business One module contains the specialized tools for the installation of SAP Business One product.

The module is maintained and supported by the SUSE Linux Enterprise Server product subscription.

","shortname":"SAP-Business-One-Module","arch":"x86_64","eula_url":"","online_predecessor_ids":[],"repositories":[{"name":"SLE-Module-SAP-Business-One15-SP5-Updates","installer_updates":false,"description":"SLE-Module-SAP-Business-One15-SP5-Updates for sle-15-x86_64","id":6203,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-SAP-Business-One/15-SP5/x86_64/update/","autorefresh":true,"distro_target":"sle-15-x86_64"},{"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-SAP-Business-One/15-SP5/x86_64/update_debug/","enabled":false,"id":6204,"description":"SLE-Module-SAP-Business-One15-SP5-Debuginfo-Updates for sle-15-x86_64","name":"SLE-Module-SAP-Business-One15-SP5-Debuginfo-Updates","installer_updates":false},{"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-SAP-Business-One/15-SP5/x86_64/product/","enabled":true,"id":6205,"description":"SLE-Module-SAP-Business-One15-SP5-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-SAP-Business-One15-SP5-Pool"},{"installer_updates":false,"name":"SLE-Module-SAP-Business-One15-SP5-Debuginfo-Pool","description":"SLE-Module-SAP-Business-One15-SP5-Debuginfo-Pool for sle-15-x86_64","enabled":false,"id":6206,"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-SAP-Business-One/15-SP5/x86_64/product_debug/"},{"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-SAP-Business-One/15-SP5/x86_64/product_source/","enabled":false,"id":6207,"description":"SLE-Module-SAP-Business-One15-SP5-Source-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-SAP-Business-One15-SP5-Source-Pool"}],"product_class":"MODULE","predecessor_ids":[],"product_type":"module","cpe":"cpe:/o:suse:sle-module-sap-business-one:15:sp5","version":"15.5","recommended":false,"former_identifier":"sle-module-sap-business-one","release_type":null,"migration_extra":false,"friendly_name":"SAP Business One Module 15 SP5 x86_64","offline_predecessor_ids":[],"name":"SAP Business One Module","friendly_version":"15 SP5","release_stage":"released","id":2589,"identifier":"sle-module-sap-business-one","extensions":[]}],"friendly_version":"15 SP5","release_type":null,"former_identifier":"sle-module-server-applications","migration_extra":false,"friendly_name":"Server Applications Module 15 SP5 x86_64","offline_predecessor_ids":[],"name":"Server Applications Module","version":"15.5","recommended":true},{"offline_predecessor_ids":[1332],"name":"Containers Module","release_type":null,"former_identifier":"sle-module-containers","migration_extra":false,"friendly_name":"Containers Module 15 SP5 x86_64","recommended":false,"version":"15.5","extensions":[],"id":2486,"release_stage":"released","identifier":"sle-module-containers","friendly_version":"15 SP5","eula_url":"","arch":"x86_64","free":true,"shortname":"Containers-Module","description":"

This Module contains several packages revolving around containers and related tools.

","product_type":"module","cpe":"cpe:/o:suse:sle-module-containers:15:sp5","predecessor_ids":[1642,1790,1963,2157,2311],"online_predecessor_ids":[1642,1790,1963,2157,2311],"repositories":[{"distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/15-SP5/x86_64/update/","enabled":true,"id":5768,"description":"SLE-Module-Containers15-SP5-Updates for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Containers15-SP5-Updates"},{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/15-SP5/x86_64/update_debug/","autorefresh":true,"distro_target":"sle-15-x86_64","id":5769,"enabled":false,"description":"SLE-Module-Containers15-SP5-Debuginfo-Updates for sle-15-x86_64","name":"SLE-Module-Containers15-SP5-Debuginfo-Updates","installer_updates":false},{"installer_updates":false,"name":"SLE-Module-Containers15-SP5-Pool","description":"SLE-Module-Containers15-SP5-Pool for sle-15-x86_64","id":5770,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP5/x86_64/product/","distro_target":"sle-15-x86_64","autorefresh":false},{"description":"SLE-Module-Containers15-SP5-Debuginfo-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Containers15-SP5-Debuginfo-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP5/x86_64/product_debug/","distro_target":"sle-15-x86_64","autorefresh":false,"id":5771,"enabled":false},{"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP5/x86_64/product_source/","enabled":false,"id":5772,"description":"SLE-Module-Containers15-SP5-Source-Pool for sle-15-x86_64","name":"SLE-Module-Containers15-SP5-Source-Pool","installer_updates":false}],"product_class":"MODULE"},{"recommended":false,"version":"15.5","offline_predecessor_ids":[],"name":"Transactional Server Module","former_identifier":"sle-module-transactional-server","release_type":null,"migration_extra":false,"friendly_name":"Transactional Server Module 15 SP5 x86_64","friendly_version":"15 SP5","extensions":[],"identifier":"sle-module-transactional-server","release_stage":"released","id":2508,"free":true,"description":"

Transactional Updates provide SUSE Linux Enterprise systems with a method of updating the operating system and its packages in an entirely ‘atomic’ way. Updates are either applied to the system all together in a single transaction, or not at all. This happens without influencing the running system. If an update fails, or if the successful update is deemed to be incompatible or otherwise incorrect, it can be discarded to immediately return the system to its previous functioning state.

Access to theTransactional Server Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself: Package versions in the this module are usually supported for at most three years. We are planning to release more recent versions on a schedule of approximately 18 month; the exact dates may differ per package.

","shortname":"Transactional-Server-Module","eula_url":"","arch":"x86_64","predecessor_ids":[1825,1998,2180,2331],"repositories":[{"description":"SLE-Module-Transactional-Server15-SP5-Updates for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Transactional-Server15-SP5-Updates","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Transactional-Server/15-SP5/x86_64/update/","distro_target":"sle-15-x86_64","autorefresh":true,"id":5878,"enabled":true},{"description":"SLE-Module-Transactional-Server15-SP5-Debuginfo-Updates for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Transactional-Server15-SP5-Debuginfo-Updates","distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Transactional-Server/15-SP5/x86_64/update_debug/","enabled":false,"id":5879},{"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Transactional-Server/15-SP5/x86_64/product/","enabled":true,"id":5880,"description":"SLE-Module-Transactional-Server15-SP5-Pool for sle-15-x86_64","name":"SLE-Module-Transactional-Server15-SP5-Pool","installer_updates":false},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Transactional-Server/15-SP5/x86_64/product_debug/","distro_target":"sle-15-x86_64","autorefresh":false,"id":5881,"enabled":false,"description":"SLE-Module-Transactional-Server15-SP5-Debuginfo-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Transactional-Server15-SP5-Debuginfo-Pool"},{"description":"SLE-Module-Transactional-Server15-SP5-Source-Pool for sle-15-x86_64","name":"SLE-Module-Transactional-Server15-SP5-Source-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Transactional-Server/15-SP5/x86_64/product_source/","autorefresh":false,"distro_target":"sle-15-x86_64","id":5882,"enabled":false}],"online_predecessor_ids":[1825,1998,2180,2331],"product_class":"MODULE","product_type":"module","cpe":"cpe:/o:suse:sle-module-transactional-server:15:sp5"},{"friendly_name":"SUSE Linux Enterprise Live Patching 15 SP5 x86_64 (BETA)","migration_extra":false,"release_type":null,"former_identifier":"sle-module-live-patching","name":"SUSE Linux Enterprise Live Patching","offline_predecessor_ids":[1536,1757,1888],"version":"15.5","recommended":false,"release_stage":"beta","id":2511,"identifier":"sle-module-live-patching","extensions":[],"friendly_version":"15 SP5","arch":"x86_64","eula_url":"","shortname":"Live-Patching","description":"

SUSE Linux Enterprise Live Patching provides packages to update critical components in SUSE Linux Enterprise. With SUSE Linux Enterprise Live Patching, you can perform critical patching without shutting down your system, reducing the need for planned downtime and increasing service availability.

","free":false,"cpe":"cpe:/o:suse:sle-module-live-patching:15:sp5","product_type":"extension","product_class":"SLE-LP-BETA","online_predecessor_ids":[1736,1828,1984,2187,2334],"repositories":[{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Live-Patching/15-SP5/x86_64/update/","autorefresh":true,"distro_target":"sle-15-x86_64","id":5893,"enabled":true,"description":"SLE-Module-Live-Patching15-SP5-Updates for sle-15-x86_64","name":"SLE-Module-Live-Patching15-SP5-Updates","installer_updates":false},{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Live-Patching/15-SP5/x86_64/update_debug/","autorefresh":true,"distro_target":"sle-15-x86_64","id":5894,"enabled":false,"description":"SLE-Module-Live-Patching15-SP5-Debuginfo-Updates for sle-15-x86_64","name":"SLE-Module-Live-Patching15-SP5-Debuginfo-Updates","installer_updates":false},{"description":"SLE-Module-Live-Patching15-SP5-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Live-Patching15-SP5-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Live-Patching/15-SP5/x86_64/product/","distro_target":"sle-15-x86_64","autorefresh":false,"id":5895,"enabled":true},{"installer_updates":false,"name":"SLE-Module-Live-Patching15-SP5-Debuginfo-Pool","description":"SLE-Module-Live-Patching15-SP5-Debuginfo-Pool for sle-15-x86_64","enabled":false,"id":5896,"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Live-Patching/15-SP5/x86_64/product_debug/"},{"description":"SLE-Module-Live-Patching15-SP5-Source-Pool for sle-15-x86_64","name":"SLE-Module-Live-Patching15-SP5-Source-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Live-Patching/15-SP5/x86_64/product_source/","enabled":false,"id":5897}],"predecessor_ids":[1736,1828,1984,2187,2334]},{"product_class":"MODULE","online_predecessor_ids":[2405],"repositories":[{"enabled":true,"id":5958,"distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Python3/15-SP5/x86_64/update/","installer_updates":false,"name":"SLE-Module-Python3-15-SP5-Updates","description":"SLE-Module-Python3-15-SP5-Updates for sle-15-x86_64"},{"description":"SLE-Module-Python3-15-SP5-Debuginfo-Updates for sle-15-x86_64","name":"SLE-Module-Python3-15-SP5-Debuginfo-Updates","installer_updates":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Python3/15-SP5/x86_64/update_debug/","autorefresh":true,"distro_target":"sle-15-x86_64","id":5959,"enabled":false},{"installer_updates":false,"name":"SLE-Module-Python3-15-SP5-Pool","description":"SLE-Module-Python3-15-SP5-Pool for sle-15-x86_64","id":5960,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Python3/15-SP5/x86_64/product/","distro_target":"sle-15-x86_64","autorefresh":false},{"id":5961,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Python3/15-SP5/x86_64/product_debug/","distro_target":"sle-15-x86_64","autorefresh":false,"installer_updates":false,"name":"SLE-Module-Python3-15-SP5-Debuginfo-Pool","description":"SLE-Module-Python3-15-SP5-Debuginfo-Pool for sle-15-x86_64"},{"description":"SLE-Module-Python3-15-SP5-Source-Pool for sle-15-x86_64","name":"SLE-Module-Python3-15-SP5-Source-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Python3/15-SP5/x86_64/product_source/","autorefresh":false,"distro_target":"sle-15-x86_64","id":5962,"enabled":false}],"predecessor_ids":[2405],"product_type":"module","cpe":"cpe:/o:suse:sle-module-python3:15:sp5","free":true,"description":"

This module contains the Python 3 packages.

Access to the Python 3 Module is included in your SUSE Linux Enterprise subscription. The module has a different lifecycle than SUSE Linux Enterprise itself; please check the Release Notes for further details.

","shortname":"Python 3-Module","arch":"x86_64","eula_url":"","friendly_version":"15 SP5","id":2536,"release_stage":"released","identifier":"sle-module-python3","extensions":[],"version":"15.5","recommended":false,"release_type":null,"former_identifier":"sle-module-python3","migration_extra":false,"friendly_name":"Python 3 Module 15 SP5 x86_64","offline_predecessor_ids":[],"name":"Python 3 Module"},{"offline_predecessor_ids":[1529,1813,1915],"name":"SUSE Package Hub","former_identifier":"PackageHub","release_type":null,"friendly_name":"SUSE Package Hub 15 SP5 x86_64","migration_extra":false,"recommended":false,"version":"15.5","extensions":[],"identifier":"PackageHub","release_stage":"released","id":2562,"friendly_version":"15 SP5","eula_url":"","arch":"x86_64","free":true,"description":"SUSE Package Hub is a free of charge module providing access to community maintained packages built to run on SUSE Linux Enterprise Server. Built from the same sources used in the openSUSE distributions, these quality packages provide additional software to what is found in the SUSE Linux Enterprise Server product. Packages from the Package Hub are delivered without L3 support from SUSE. General updates and fixes to the packages in SUSE Package Hub are provided by the openSUSE community based on their discretion, though SUSE will monitor and ensure that any known critical security issues will be addressed. Packages in the Package Hub are approved by SUSE for use with SUSE Linux Enterprise Server 15-SP5 and to not interfere with the supportability of SUSE Linux Enterprise Server, its modules and extensions. For more information about SUSE Package Hub please visit https://packagehub.suse.com.","shortname":"SUSE-PackageHub-15","product_type":"module","cpe":"cpe:/o:suse:packagehub:15:sp5","predecessor_ids":[1743,1871,1950,2191,2347],"product_class":"MODULE","online_predecessor_ids":[1743,1871,1950,2191,2347],"repositories":[{"installer_updates":false,"name":"SUSE-PackageHub-15-SP5-Backports-Pool","description":"SUSE-PackageHub-15-SP5-Backports-Pool for sle-15-x86_64","enabled":true,"id":6113,"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Backports/SLE-15-SP5_x86_64/standard/"},{"installer_updates":false,"name":"SUSE-PackageHub-15-SP5-Backports-Debuginfo","description":"SUSE-PackageHub-15-SP5-Backports-Debuginfo for sle-15-x86_64","id":6114,"enabled":false,"url":"https://updates.suse.com/SUSE/Backports/SLE-15-SP5_x86_64/standard_debug/","distro_target":"sle-15-x86_64","autorefresh":true},{"enabled":true,"id":6115,"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP5/x86_64/update/","name":"SLE-Module-Packagehub-Subpackages15-SP5-Updates","installer_updates":false,"description":"SLE-Module-Packagehub-Subpackages15-SP5-Updates for sle-15-x86_64"},{"description":"SLE-Module-Packagehub-Subpackages15-SP5-Debuginfo-Updates for sle-15-x86_64","name":"SLE-Module-Packagehub-Subpackages15-SP5-Debuginfo-Updates","installer_updates":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP5/x86_64/update_debug/","autorefresh":true,"distro_target":"sle-15-x86_64","id":6116,"enabled":false},{"id":6117,"enabled":true,"url":"https://updates.suse.com/SUSE/Backports/SLE-15-SP5_x86_64/product/","autorefresh":false,"distro_target":"sle-15-x86_64","name":"SUSE-PackageHub-15-SP5-Pool","installer_updates":false,"description":"SUSE-PackageHub-15-SP5-Pool for sle-15-x86_64"},{"name":"SLE-Module-Packagehub-Subpackages15-SP5-Pool","installer_updates":false,"description":"SLE-Module-Packagehub-Subpackages15-SP5-Pool for sle-15-x86_64","id":6118,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP5/x86_64/product/","autorefresh":false,"distro_target":"sle-15-x86_64"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP5/x86_64/product_debug/","autorefresh":false,"distro_target":"sle-15-x86_64","id":6119,"enabled":false,"description":"SLE-Module-Packagehub-Subpackages15-SP5-Debuginfo-Pool for sle-15-x86_64","name":"SLE-Module-Packagehub-Subpackages15-SP5-Debuginfo-Pool","installer_updates":false},{"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP5/x86_64/product_source/","enabled":false,"id":6120,"description":"SLE-Module-Packagehub-Subpackages15-SP5-Source-Pool for sle-15-x86_64","name":"SLE-Module-Packagehub-Subpackages15-SP5-Source-Pool","installer_updates":false}]}],"identifier":"sle-module-basesystem","release_stage":"released","id":2474,"free":true,"shortname":"Basesystem-Module","description":"

The SUSE Linux Enterprise Basesystem Module delivers the base system of the product.

","eula_url":"","arch":"x86_64","predecessor_ids":[1576,1772,1946,2145,2299],"online_predecessor_ids":[1576,1772,1946,2145,2299],"product_class":"MODULE","repositories":[{"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15-SP5/x86_64/update/","enabled":true,"id":5708,"description":"SLE-Module-Basesystem15-SP5-Updates for sle-15-x86_64","name":"SLE-Module-Basesystem15-SP5-Updates","installer_updates":false},{"id":5709,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15-SP5/x86_64/update_debug/","distro_target":"sle-15-x86_64","autorefresh":true,"installer_updates":false,"name":"SLE-Module-Basesystem15-SP5-Debuginfo-Updates","description":"SLE-Module-Basesystem15-SP5-Debuginfo-Updates for sle-15-x86_64"},{"id":5710,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP5/x86_64/product/","autorefresh":false,"distro_target":"sle-15-x86_64","name":"SLE-Module-Basesystem15-SP5-Pool","installer_updates":false,"description":"SLE-Module-Basesystem15-SP5-Pool for sle-15-x86_64"},{"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP5/x86_64/product_debug/","enabled":false,"id":5711,"description":"SLE-Module-Basesystem15-SP5-Debuginfo-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Basesystem15-SP5-Debuginfo-Pool"},{"description":"SLE-Module-Basesystem15-SP5-Source-Pool for sle-15-x86_64","name":"SLE-Module-Basesystem15-SP5-Source-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP5/x86_64/product_source/","autorefresh":false,"distro_target":"sle-15-x86_64","id":5712,"enabled":false}],"product_type":"module","cpe":"cpe:/o:suse:sle-module-basesystem:15:sp5"},{"release_stage":"released","id":2558,"identifier":"sle-module-certifications","extensions":[],"friendly_version":"15 SP5","migration_extra":false,"friendly_name":"Certifications Module 15 SP5 x86_64","former_identifier":"sle-module-certifications","release_type":null,"name":"Certifications Module","offline_predecessor_ids":[],"version":"15.5","recommended":false,"cpe":"cpe:/o:suse:sle-module-certifications:15:sp5","product_type":"module","online_predecessor_ids":[2393],"product_class":"MODULE","repositories":[{"name":"SLE-Module-Certifications-15-SP5-Updates","installer_updates":false,"description":"SLE-Module-Certifications-15-SP5-Updates for sle-15-x86_64","enabled":true,"id":6080,"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Certifications/15-SP5/x86_64/update/"},{"description":"SLE-Module-Certifications-15-SP5-Debuginfo-Updates for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Certifications-15-SP5-Debuginfo-Updates","distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Certifications/15-SP5/x86_64/update_debug/","enabled":false,"id":6081},{"description":"SLE-Module-Certifications-15-SP5-Pool for sle-15-x86_64","name":"SLE-Module-Certifications-15-SP5-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Certifications/15-SP5/x86_64/product/","autorefresh":false,"distro_target":"sle-15-x86_64","id":6082,"enabled":true},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Certifications/15-SP5/x86_64/product_debug/","distro_target":"sle-15-x86_64","autorefresh":false,"id":6083,"enabled":false,"description":"SLE-Module-Certifications-15-SP5-Debuginfo-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Certifications-15-SP5-Debuginfo-Pool"},{"id":6084,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Certifications/15-SP5/x86_64/product_source/","autorefresh":false,"distro_target":"sle-15-x86_64","name":"SLE-Module-Certifications-15-SP5-Source-Pool","installer_updates":false,"description":"SLE-Module-Certifications-15-SP5-Source-Pool for sle-15-x86_64"}],"predecessor_ids":[2393],"arch":"x86_64","eula_url":"","shortname":"Certifications-Module","description":"

This module contains the certification packages.

Access to the Certifications Module is included in your SUSE Linux Enterprise subscription. The module has a different lifecycle than SUSE Linux Enterprise itself; please check the Release Notes for further details.

","free":true}],"identifier":"SLES","release_stage":"beta","id":2465,"friendly_version":"15 SP5","eula_url":"https://updates.suse.com/SUSE/Products/SLE-Product-SLES/15-SP5/x86_64/product.license/","arch":"x86_64","free":false,"description":"SUSE Linux Enterprise offers a comprehensive suite of products built on a single code base. The platform addresses business needs from the smallest thin-client devices to the world's most powerful high-performance computing and mainframe servers. SUSE Linux Enterprise offers common management tools and technology certifications across the platform, and each product is enterprise-class.","shortname":"SLES15-SP5","product_type":"base","cpe":"cpe:/o:suse:sles:15:sp5","predecessor_ids":[1939,2140,2292,2588],"repositories":[{"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-SLES/15-SP5/x86_64/update/","autorefresh":true,"distro_target":"sle-15-x86_64","id":5661,"enabled":true,"description":"SLE-Product-SLES15-SP5-Updates for sle-15-x86_64","name":"SLE-Product-SLES15-SP5-Updates","installer_updates":false},{"id":5662,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-SLES/15-SP5/x86_64/update_debug/","distro_target":"sle-15-x86_64","autorefresh":true,"installer_updates":false,"name":"SLE-Product-SLES15-SP5-Debuginfo-Updates","description":"SLE-Product-SLES15-SP5-Debuginfo-Updates for sle-15-x86_64"},{"url":"https://updates.suse.com/SUSE/Updates/SLE-INSTALLER/15-SP5/x86_64/update/","autorefresh":true,"distro_target":"sle-15-x86_64","id":5663,"enabled":false,"description":"SLE15-SP5-Installer-Updates for sle-15-x86_64","name":"SLE15-SP5-Installer-Updates","installer_updates":true},{"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-SLES/15-SP5/x86_64/product/","enabled":true,"id":5664,"description":"SLE-Product-SLES15-SP5-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Product-SLES15-SP5-Pool"},{"id":5665,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-SLES/15-SP5/x86_64/product_debug/","distro_target":"sle-15-x86_64","autorefresh":false,"installer_updates":false,"name":"SLE-Product-SLES15-SP5-Debuginfo-Pool","description":"SLE-Product-SLES15-SP5-Debuginfo-Pool for sle-15-x86_64"},{"name":"SLE-Product-SLES15-SP5-Source-Pool","installer_updates":false,"description":"SLE-Product-SLES15-SP5-Source-Pool for sle-15-x86_64","enabled":false,"id":5666,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Product-SLES/15-SP5/x86_64/product_source/"}],"online_predecessor_ids":[1939,2140,2292,2588],"product_class":"7261-BETA"},{"recommended":false,"version":"15.5","name":"SUSE Linux Enterprise Server for SAP Applications","offline_predecessor_ids":[1754,1879],"friendly_name":"SUSE Linux Enterprise Server for SAP Applications 15 SP5 ppc64le (BETA)","migration_extra":false,"release_type":null,"former_identifier":"SUSE_SLES_SAP","friendly_version":"15 SP5","extensions":[{"predecessor_ids":[1588,1770,1944,2143,2297],"repositories":[{"id":5698,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15-SP5/ppc64le/update/","distro_target":"sle-15-ppc64le","autorefresh":true,"installer_updates":false,"name":"SLE-Module-Basesystem15-SP5-Updates","description":"SLE-Module-Basesystem15-SP5-Updates for sle-15-ppc64le"},{"distro_target":"sle-15-ppc64le","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15-SP5/ppc64le/update_debug/","enabled":false,"id":5699,"description":"SLE-Module-Basesystem15-SP5-Debuginfo-Updates for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-Basesystem15-SP5-Debuginfo-Updates"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP5/ppc64le/product/","distro_target":"sle-15-ppc64le","autorefresh":false,"id":5700,"enabled":true,"description":"SLE-Module-Basesystem15-SP5-Pool for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-Basesystem15-SP5-Pool"},{"id":5701,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP5/ppc64le/product_debug/","distro_target":"sle-15-ppc64le","autorefresh":false,"installer_updates":false,"name":"SLE-Module-Basesystem15-SP5-Debuginfo-Pool","description":"SLE-Module-Basesystem15-SP5-Debuginfo-Pool for sle-15-ppc64le"},{"description":"SLE-Module-Basesystem15-SP5-Source-Pool for sle-15-ppc64le","name":"SLE-Module-Basesystem15-SP5-Source-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP5/ppc64le/product_source/","enabled":false,"id":5702}],"online_predecessor_ids":[1588,1770,1944,2143,2297],"product_class":"MODULE","cpe":"cpe:/o:suse:sle-module-basesystem:15:sp5","product_type":"module","description":"

The SUSE Linux Enterprise Basesystem Module delivers the base system of the product.

","shortname":"Basesystem-Module","free":true,"eula_url":"","arch":"ppc64le","friendly_version":"15 SP5","extensions":[{"eula_url":"","arch":"ppc64le","free":true,"shortname":"Desktop-Applications-Module","description":"

The SUSE Linux Enterprise Desktop Applications Module delivers a basic set of Desktop functionality.

Access to the Desktop Applications Module is included in your SUSE Linux Enterprise product subscription.

","product_type":"module","cpe":"cpe:/o:suse:sle-module-desktop-applications:15:sp5","predecessor_ids":[1594,1774,1965,2147,2301],"online_predecessor_ids":[1594,1774,1965,2147,2301],"product_class":"MODULE","repositories":[{"id":5718,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15-SP5/ppc64le/update/","autorefresh":true,"distro_target":"sle-15-ppc64le","name":"SLE-Module-Desktop-Applications15-SP5-Updates","installer_updates":false,"description":"SLE-Module-Desktop-Applications15-SP5-Updates for sle-15-ppc64le"},{"description":"SLE-Module-Desktop-Applications15-SP5-Debuginfo-Updates for sle-15-ppc64le","name":"SLE-Module-Desktop-Applications15-SP5-Debuginfo-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15-SP5/ppc64le/update_debug/","enabled":false,"id":5719},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP5/ppc64le/product/","distro_target":"sle-15-ppc64le","autorefresh":false,"id":5720,"enabled":true,"description":"SLE-Module-Desktop-Applications15-SP5-Pool for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-Desktop-Applications15-SP5-Pool"},{"id":5721,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP5/ppc64le/product_debug/","autorefresh":false,"distro_target":"sle-15-ppc64le","name":"SLE-Module-Desktop-Applications15-SP5-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-Desktop-Applications15-SP5-Debuginfo-Pool for sle-15-ppc64le"},{"distro_target":"sle-15-ppc64le","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP5/ppc64le/product_source/","enabled":false,"id":5722,"description":"SLE-Module-Desktop-Applications15-SP5-Source-Pool for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-Desktop-Applications15-SP5-Source-Pool"}],"offline_predecessor_ids":[],"name":"Desktop Applications Module","release_type":null,"former_identifier":"sle-module-desktop-applications","friendly_name":"Desktop Applications Module 15 SP5 ppc64le","migration_extra":false,"recommended":true,"version":"15.5","extensions":[{"free":true,"shortname":"Development-Tools-Module","description":"

The Development Tools Module helps you developing applications for SUSE Linux Enterprise 15.

Access to the Development Tools Module is included in your SUSE Linux Enterprise product subscription. The module has a different lifecycle than SUSE Linux Enterprise itself.

","arch":"ppc64le","eula_url":"","online_predecessor_ids":[1597,1792,1969,2159,2313],"repositories":[{"description":"SLE-Module-DevTools15-SP5-Updates for sle-15-ppc64le","name":"SLE-Module-DevTools15-SP5-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15-SP5/ppc64le/update/","enabled":true,"id":5778},{"id":5779,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15-SP5/ppc64le/update_debug/","distro_target":"sle-15-ppc64le","autorefresh":true,"installer_updates":false,"name":"SLE-Module-DevTools15-SP5-Debuginfo-Updates","description":"SLE-Module-DevTools15-SP5-Debuginfo-Updates for sle-15-ppc64le"},{"id":5780,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP5/ppc64le/product/","autorefresh":false,"distro_target":"sle-15-ppc64le","name":"SLE-Module-DevTools15-SP5-Pool","installer_updates":false,"description":"SLE-Module-DevTools15-SP5-Pool for sle-15-ppc64le"},{"enabled":false,"id":5781,"distro_target":"sle-15-ppc64le","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP5/ppc64le/product_debug/","installer_updates":false,"name":"SLE-Module-DevTools15-SP5-Debuginfo-Pool","description":"SLE-Module-DevTools15-SP5-Debuginfo-Pool for sle-15-ppc64le"},{"description":"SLE-Module-DevTools15-SP5-Source-Pool for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-DevTools15-SP5-Source-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP5/ppc64le/product_source/","distro_target":"sle-15-ppc64le","autorefresh":false,"id":5782,"enabled":false}],"product_class":"MODULE","predecessor_ids":[1597,1792,1969,2159,2313],"product_type":"module","cpe":"cpe:/o:suse:sle-module-development-tools:15:sp5","version":"15.5","recommended":false,"former_identifier":"sle-sdk","release_type":null,"migration_extra":false,"friendly_name":"Development Tools Module 15 SP5 ppc64le","offline_predecessor_ids":[1339,1428,1631,1890],"name":"Development Tools Module","friendly_version":"15 SP5","release_stage":"released","identifier":"sle-module-development-tools","id":2488,"extensions":[]}],"id":2476,"release_stage":"released","identifier":"sle-module-desktop-applications","friendly_version":"15 SP5"},{"name":"Server Applications Module","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"Server Applications Module 15 SP5 ppc64le","former_identifier":"sle-module-server-applications","release_type":null,"recommended":true,"version":"15.5","extensions":[{"eula_url":"","arch":"ppc64le","shortname":"IBMPWAT15","description":"IBM POWER Advance Toolchain for SLE 15","free":true,"cpe":"cpe:/o:suse:ibm-power-advance-toolchain:15","product_type":"extension","predecessor_ids":[],"online_predecessor_ids":[],"repositories":[{"name":"IBM-POWER-Adv-Toolchain","installer_updates":false,"description":"IBM-POWER-Adv-Toolchain","enabled":true,"id":4430,"autorefresh":true,"distro_target":null,"url":"https://public.dhe.ibm.com/software/server/POWER/Linux/toolchain/at/suse/SLES_15/"}],"product_class":"MODULE","name":"IBM POWER Advance Toolchain for SLE","offline_predecessor_ids":[1249],"migration_extra":false,"friendly_name":"IBM POWER Advance Toolchain for SLE 15 ppc64le","release_type":null,"former_identifier":"ibm-power-advance-toolchain","recommended":false,"version":"15","extensions":[],"release_stage":"released","id":2076,"identifier":"ibm-power-advance-toolchain","friendly_version":"15"},{"description":"IBM POWER Tools for SLE 15","shortname":"IBMPWUT15","free":true,"arch":"ppc64le","eula_url":"https://public.dhe.ibm.com/software/server/POWER/Linux/yum/OSS/SLES/15/ppc64le.license/","repositories":[{"enabled":true,"id":4431,"autorefresh":true,"distro_target":null,"url":"https://public.dhe.ibm.com/software/server/POWER/Linux/yum/OSS/SLES/15/ppc64le/","name":"IBM-POWER-Tools","installer_updates":false,"description":"IBM-POWER-Tools"}],"online_predecessor_ids":[],"product_class":"MODULE","predecessor_ids":[],"cpe":"cpe:/o:suse:ibm-power-tools:15","product_type":"extension","version":"15","recommended":false,"migration_extra":false,"friendly_name":"IBM POWER Tools for SLE 15 ppc64le","former_identifier":"ibm-power-tools","release_type":null,"name":"IBM POWER Tools for SLE","offline_predecessor_ids":[1250],"friendly_version":"15","release_stage":"released","id":2077,"identifier":"ibm-power-tools","extensions":[]},{"version":"15.5","recommended":false,"release_type":null,"former_identifier":"sle-module-web-scripting","migration_extra":false,"friendly_name":"Web and Scripting Module 15 SP5 ppc64le","offline_predecessor_ids":[1151],"name":"Web and Scripting Module","friendly_version":"15 SP5","release_stage":"released","id":2492,"identifier":"sle-module-web-scripting","extensions":[],"free":true,"description":"

The SUSE Linux Enterprise Web and Scripting Module should contains additional packages that are helpful when running a webserver.

Access to the Web and Scripting Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself: Package versions in this module are usually supported for at most three years. We are planning to release more recent versions on a schedule of approximately 18 month; the exact dates may differ per package.

","shortname":"Web-Scripting-Module","arch":"ppc64le","eula_url":"","repositories":[{"installer_updates":false,"name":"SLE-Module-Web-Scripting15-SP5-Updates","description":"SLE-Module-Web-Scripting15-SP5-Updates for sle-15-ppc64le","id":5798,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/15-SP5/ppc64le/update/","distro_target":"sle-15-ppc64le","autorefresh":true},{"autorefresh":true,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/15-SP5/ppc64le/update_debug/","enabled":false,"id":5799,"description":"SLE-Module-Web-Scripting15-SP5-Debuginfo-Updates for sle-15-ppc64le","name":"SLE-Module-Web-Scripting15-SP5-Debuginfo-Updates","installer_updates":false},{"id":5800,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP5/ppc64le/product/","autorefresh":false,"distro_target":"sle-15-ppc64le","name":"SLE-Module-Web-Scripting15-SP5-Pool","installer_updates":false,"description":"SLE-Module-Web-Scripting15-SP5-Pool for sle-15-ppc64le"},{"description":"SLE-Module-Web-Scripting15-SP5-Debuginfo-Pool for sle-15-ppc64le","name":"SLE-Module-Web-Scripting15-SP5-Debuginfo-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP5/ppc64le/product_debug/","enabled":false,"id":5801},{"installer_updates":false,"name":"SLE-Module-Web-Scripting15-SP5-Source-Pool","description":"SLE-Module-Web-Scripting15-SP5-Source-Pool for sle-15-ppc64le","id":5802,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP5/ppc64le/product_source/","distro_target":"sle-15-ppc64le","autorefresh":false}],"online_predecessor_ids":[1719,1796,1974,2163,2317],"product_class":"MODULE","predecessor_ids":[1719,1796,1974,2163,2317],"product_type":"module","cpe":"cpe:/o:suse:sle-module-web-scripting:15:sp5"},{"free":true,"shortname":"Legacy-Module","description":"

The Legacy Module helps you migrating applications from SUSE Linux Enterprise 12 and other systems to SUSE Linux Enterprise 15, by providing packages which are discontinued on SUSE Linux Enterprise Server, such as: ntp, IBM Java 8, and a number of libraries.

Access to the Legacy Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself. Packages in the this module are usually supported for at most three years.

","eula_url":"","arch":"ppc64le","predecessor_ids":[1603,1802,1980,2169,2321],"online_predecessor_ids":[1603,1802,1980,2169,2321],"repositories":[{"description":"SLE-Module-Legacy15-SP5-Updates for sle-15-ppc64le","name":"SLE-Module-Legacy15-SP5-Updates","installer_updates":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/15-SP5/ppc64le/update/","autorefresh":true,"distro_target":"sle-15-ppc64le","id":5828,"enabled":true},{"enabled":false,"id":5829,"autorefresh":true,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/15-SP5/ppc64le/update_debug/","name":"SLE-Module-Legacy15-SP5-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-Legacy15-SP5-Debuginfo-Updates for sle-15-ppc64le"},{"description":"SLE-Module-Legacy15-SP5-Pool for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-Legacy15-SP5-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15-SP5/ppc64le/product/","distro_target":"sle-15-ppc64le","autorefresh":false,"id":5830,"enabled":true},{"id":5831,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15-SP5/ppc64le/product_debug/","distro_target":"sle-15-ppc64le","autorefresh":false,"installer_updates":false,"name":"SLE-Module-Legacy15-SP5-Debuginfo-Pool","description":"SLE-Module-Legacy15-SP5-Debuginfo-Pool for sle-15-ppc64le"},{"enabled":false,"id":5832,"autorefresh":false,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15-SP5/ppc64le/product_source/","name":"SLE-Module-Legacy15-SP5-Source-Pool","installer_updates":false,"description":"SLE-Module-Legacy15-SP5-Source-Pool for sle-15-ppc64le"}],"product_class":"MODULE","product_type":"module","cpe":"cpe:/o:suse:sle-module-legacy:15:sp5","recommended":false,"version":"15.5","offline_predecessor_ids":[1148],"name":"Legacy Module","former_identifier":"sle-module-legacy","release_type":null,"friendly_name":"Legacy Module 15 SP5 ppc64le","migration_extra":true,"friendly_version":"15 SP5","extensions":[],"id":2498,"release_stage":"released","identifier":"sle-module-legacy"},{"offline_predecessor_ids":[1218],"name":"Public Cloud Module","release_type":null,"former_identifier":"sle-module-public-cloud","migration_extra":false,"friendly_name":"Public Cloud Module 15 SP5 ppc64le","recommended":false,"version":"15.5","extensions":[],"id":2502,"release_stage":"released","identifier":"sle-module-public-cloud","friendly_version":"15 SP5","eula_url":"","arch":"ppc64le","free":true,"description":"

The Public Cloud Module is a collection of tools that enables you to create and manage cloud images from the commandline on SUSE Linux Enterprise Server. When building your own images with KIWI or SUSE Studio, initialization code specific to the target cloud is included in that image.

Access to the Public Cloud Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself; please check the Release Notes for further details.

","shortname":"Public-Cloud-Module","product_type":"module","cpe":"cpe:/o:suse:sle-module-public-cloud:15:sp5","predecessor_ids":[1616,1806,1986,2173,2325],"repositories":[{"installer_updates":false,"name":"SLE-Module-Public-Cloud15-SP5-Updates","description":"SLE-Module-Public-Cloud15-SP5-Updates for sle-15-ppc64le","enabled":true,"id":5848,"distro_target":"sle-15-ppc64le","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/15-SP5/ppc64le/update/"},{"description":"SLE-Module-Public-Cloud15-SP5-Debuginfo-Updates for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-Public-Cloud15-SP5-Debuginfo-Updates","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/15-SP5/ppc64le/update_debug/","distro_target":"sle-15-ppc64le","autorefresh":true,"id":5849,"enabled":false},{"id":5850,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP5/ppc64le/product/","autorefresh":false,"distro_target":"sle-15-ppc64le","name":"SLE-Module-Public-Cloud15-SP5-Pool","installer_updates":false,"description":"SLE-Module-Public-Cloud15-SP5-Pool for sle-15-ppc64le"},{"distro_target":"sle-15-ppc64le","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP5/ppc64le/product_debug/","enabled":false,"id":5851,"description":"SLE-Module-Public-Cloud15-SP5-Debuginfo-Pool for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-Public-Cloud15-SP5-Debuginfo-Pool"},{"installer_updates":false,"name":"SLE-Module-Public-Cloud15-SP5-Source-Pool","description":"SLE-Module-Public-Cloud15-SP5-Source-Pool for sle-15-ppc64le","id":5852,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP5/ppc64le/product_source/","distro_target":"sle-15-ppc64le","autorefresh":false}],"online_predecessor_ids":[1616,1806,1986,2173,2325],"product_class":"MODULE"},{"description":"SUSE Linux High Availability Extension provides mature, industry-leading open-source high-availability clustering technologies that are easy to set up and use. It can be deployed in physical and/or virtual environments, and can cluster physical servers, virtual servers, or any combination of the two to suit your business’ needs.","shortname":"SLEHA15-SP5","free":false,"arch":"ppc64le","eula_url":"","online_predecessor_ids":[1606,1783,1957,2193,2338],"product_class":"SLE-HAE-PPC-BETA","repositories":[{"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-HA/15-SP5/ppc64le/update/","distro_target":"sle-15-ppc64le","autorefresh":true,"id":5913,"enabled":true,"description":"SLE-Product-HA15-SP5-Updates for sle-15-ppc64le","installer_updates":false,"name":"SLE-Product-HA15-SP5-Updates"},{"description":"SLE-Product-HA15-SP5-Debuginfo-Updates for sle-15-ppc64le","name":"SLE-Product-HA15-SP5-Debuginfo-Updates","installer_updates":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-HA/15-SP5/ppc64le/update_debug/","autorefresh":true,"distro_target":"sle-15-ppc64le","id":5914,"enabled":false},{"name":"SLE-Product-HA15-SP5-Pool","installer_updates":false,"description":"SLE-Product-HA15-SP5-Pool for sle-15-ppc64le","id":5915,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP5/ppc64le/product/","autorefresh":false,"distro_target":"sle-15-ppc64le"},{"id":5916,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP5/ppc64le/product_debug/","autorefresh":false,"distro_target":"sle-15-ppc64le","name":"SLE-Product-HA15-SP5-Debuginfo-Pool","installer_updates":false,"description":"SLE-Product-HA15-SP5-Debuginfo-Pool for sle-15-ppc64le"},{"distro_target":"sle-15-ppc64le","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP5/ppc64le/product_source/","enabled":false,"id":5917,"description":"SLE-Product-HA15-SP5-Source-Pool for sle-15-ppc64le","installer_updates":false,"name":"SLE-Product-HA15-SP5-Source-Pool"}],"predecessor_ids":[1606,1783,1957,2193,2338],"cpe":"cpe:/o:suse:sle-ha:15:sp5","product_type":"extension","version":"15.5","recommended":true,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise High Availability Extension 15 SP5 ppc64le (BETA)","former_identifier":"sle-ha","release_type":null,"name":"SUSE Linux Enterprise High Availability Extension","offline_predecessor_ids":[1433,1635,1882],"friendly_version":"15 SP5","identifier":"sle-ha","release_stage":"beta","id":2515,"extensions":[{"arch":"ppc64le","eula_url":"","shortname":"SAP-Applications-Module","description":"

The SAP Applications module contains the specialized tools for SAP Applications administration.

The module is maintained and supported by the SUSE Linux Enterprise Server for SAP Applications product subscription.

","free":true,"cpe":"cpe:/o:suse:sle-module-sap-applications:15:sp5","product_type":"module","repositories":[{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-SAP-Applications/15-SP5/ppc64le/update/","autorefresh":true,"distro_target":"sle-15-ppc64le","id":5928,"enabled":true,"description":"SLE-Module-SAP-Applications15-SP5-Updates for sle-15-ppc64le","name":"SLE-Module-SAP-Applications15-SP5-Updates","installer_updates":false},{"installer_updates":false,"name":"SLE-Module-SAP-Applications15-SP5-Debuginfo-Updates","description":"SLE-Module-SAP-Applications15-SP5-Debuginfo-Updates for sle-15-ppc64le","id":5929,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-SAP-Applications/15-SP5/ppc64le/update_debug/","distro_target":"sle-15-ppc64le","autorefresh":true},{"enabled":true,"id":5930,"distro_target":"sle-15-ppc64le","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-SAP-Applications/15-SP5/ppc64le/product/","installer_updates":false,"name":"SLE-Module-SAP-Applications15-SP5-Pool","description":"SLE-Module-SAP-Applications15-SP5-Pool for sle-15-ppc64le"},{"distro_target":"sle-15-ppc64le","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-SAP-Applications/15-SP5/ppc64le/product_debug/","enabled":false,"id":5931,"description":"SLE-Module-SAP-Applications15-SP5-Debuginfo-Pool for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-SAP-Applications15-SP5-Debuginfo-Pool"},{"description":"SLE-Module-SAP-Applications15-SP5-Source-Pool for sle-15-ppc64le","name":"SLE-Module-SAP-Applications15-SP5-Source-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-SAP-Applications/15-SP5/ppc64le/product_source/","autorefresh":false,"distro_target":"sle-15-ppc64le","id":5932,"enabled":false}],"online_predecessor_ids":[1726,1786,1993,2197,2341],"product_class":"MODULE","predecessor_ids":[1726,1786,1993,2197,2341],"friendly_name":"SAP Applications Module 15 SP5 ppc64le","migration_extra":false,"former_identifier":"sle-module-sap-applications","release_type":null,"name":"SAP Applications Module","offline_predecessor_ids":[],"version":"15.5","recommended":true,"release_stage":"released","id":2518,"identifier":"sle-module-sap-applications","extensions":[],"friendly_version":"15 SP5"}]}],"release_stage":"released","identifier":"sle-module-server-applications","id":2480,"friendly_version":"15 SP5","eula_url":"","arch":"ppc64le","shortname":"Server-Applications-Module","description":"

The SUSE Linux Enterprise Server Applications Module delivers a basic set of Server functionality.

Access to the Server Applications Module is included in your SUSE Linux Enterprise Server subscription.

","free":true,"cpe":"cpe:/o:suse:sle-module-server-applications:15:sp5","product_type":"module","predecessor_ids":[1600,1778,1953,2151,2305],"repositories":[{"description":"SLE-Module-Server-Applications15-SP5-Updates for sle-15-ppc64le","name":"SLE-Module-Server-Applications15-SP5-Updates","installer_updates":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15-SP5/ppc64le/update/","autorefresh":true,"distro_target":"sle-15-ppc64le","id":5738,"enabled":true},{"installer_updates":false,"name":"SLE-Module-Server-Applications15-SP5-Debuginfo-Updates","description":"SLE-Module-Server-Applications15-SP5-Debuginfo-Updates for sle-15-ppc64le","enabled":false,"id":5739,"distro_target":"sle-15-ppc64le","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15-SP5/ppc64le/update_debug/"},{"id":5740,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP5/ppc64le/product/","autorefresh":false,"distro_target":"sle-15-ppc64le","name":"SLE-Module-Server-Applications15-SP5-Pool","installer_updates":false,"description":"SLE-Module-Server-Applications15-SP5-Pool for sle-15-ppc64le"},{"name":"SLE-Module-Server-Applications15-SP5-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-Server-Applications15-SP5-Debuginfo-Pool for sle-15-ppc64le","enabled":false,"id":5741,"autorefresh":false,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP5/ppc64le/product_debug/"},{"name":"SLE-Module-Server-Applications15-SP5-Source-Pool","installer_updates":false,"description":"SLE-Module-Server-Applications15-SP5-Source-Pool for sle-15-ppc64le","id":5742,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP5/ppc64le/product_source/","autorefresh":false,"distro_target":"sle-15-ppc64le"}],"online_predecessor_ids":[1600,1778,1953,2151,2305],"product_class":"MODULE"},{"arch":"ppc64le","eula_url":"","free":true,"shortname":"Containers-Module","description":"

This Module contains several packages revolving around containers and related tools.

","product_type":"module","cpe":"cpe:/o:suse:sle-module-containers:15:sp5","online_predecessor_ids":[1640,1788,1961,2155,2309],"product_class":"MODULE","repositories":[{"installer_updates":false,"name":"SLE-Module-Containers15-SP5-Updates","description":"SLE-Module-Containers15-SP5-Updates for sle-15-ppc64le","id":5758,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/15-SP5/ppc64le/update/","distro_target":"sle-15-ppc64le","autorefresh":true},{"description":"SLE-Module-Containers15-SP5-Debuginfo-Updates for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-Containers15-SP5-Debuginfo-Updates","distro_target":"sle-15-ppc64le","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/15-SP5/ppc64le/update_debug/","enabled":false,"id":5759},{"description":"SLE-Module-Containers15-SP5-Pool for sle-15-ppc64le","name":"SLE-Module-Containers15-SP5-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP5/ppc64le/product/","enabled":true,"id":5760},{"enabled":false,"id":5761,"autorefresh":false,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP5/ppc64le/product_debug/","name":"SLE-Module-Containers15-SP5-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-Containers15-SP5-Debuginfo-Pool for sle-15-ppc64le"},{"enabled":false,"id":5762,"distro_target":"sle-15-ppc64le","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP5/ppc64le/product_source/","installer_updates":false,"name":"SLE-Module-Containers15-SP5-Source-Pool","description":"SLE-Module-Containers15-SP5-Source-Pool for sle-15-ppc64le"}],"predecessor_ids":[1640,1788,1961,2155,2309],"former_identifier":"sle-module-containers","release_type":null,"migration_extra":false,"friendly_name":"Containers Module 15 SP5 ppc64le","offline_predecessor_ids":[1353],"name":"Containers Module","version":"15.5","recommended":false,"identifier":"sle-module-containers","release_stage":"released","id":2484,"extensions":[],"friendly_version":"15 SP5"},{"predecessor_ids":[1735,1827,1983,2185,2332],"online_predecessor_ids":[1735,1827,1983,2185,2332],"product_class":"SLE-LP-PPC-BETA","repositories":[{"description":"SLE-Module-Live-Patching15-SP5-Updates for sle-15-ppc64le","name":"SLE-Module-Live-Patching15-SP5-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Live-Patching/15-SP5/ppc64le/update/","enabled":true,"id":5883},{"description":"SLE-Module-Live-Patching15-SP5-Debuginfo-Updates for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-Live-Patching15-SP5-Debuginfo-Updates","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Live-Patching/15-SP5/ppc64le/update_debug/","distro_target":"sle-15-ppc64le","autorefresh":true,"id":5884,"enabled":false},{"name":"SLE-Module-Live-Patching15-SP5-Pool","installer_updates":false,"description":"SLE-Module-Live-Patching15-SP5-Pool for sle-15-ppc64le","id":5885,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Live-Patching/15-SP5/ppc64le/product/","autorefresh":false,"distro_target":"sle-15-ppc64le"},{"id":5886,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Live-Patching/15-SP5/ppc64le/product_debug/","distro_target":"sle-15-ppc64le","autorefresh":false,"installer_updates":false,"name":"SLE-Module-Live-Patching15-SP5-Debuginfo-Pool","description":"SLE-Module-Live-Patching15-SP5-Debuginfo-Pool for sle-15-ppc64le"},{"id":5887,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Live-Patching/15-SP5/ppc64le/product_source/","distro_target":"sle-15-ppc64le","autorefresh":false,"installer_updates":false,"name":"SLE-Module-Live-Patching15-SP5-Source-Pool","description":"SLE-Module-Live-Patching15-SP5-Source-Pool for sle-15-ppc64le"}],"product_type":"extension","cpe":"cpe:/o:suse:sle-module-live-patching:15:sp5","free":false,"description":"

SUSE Linux Enterprise Live Patching provides packages to update critical components in SUSE Linux Enterprise. With SUSE Linux Enterprise Live Patching, you can perform critical patching without shutting down your system, reducing the need for planned downtime and increasing service availability.

","shortname":"Live-Patching","eula_url":"","arch":"ppc64le","friendly_version":"15 SP5","extensions":[],"release_stage":"beta","identifier":"sle-module-live-patching","id":2509,"recommended":false,"version":"15.5","offline_predecessor_ids":[1537,1756,1887],"name":"SUSE Linux Enterprise Live Patching","release_type":null,"former_identifier":"sle-module-live-patching","migration_extra":false,"friendly_name":"SUSE Linux Enterprise Live Patching 15 SP5 ppc64le (BETA)"},{"eula_url":"","arch":"ppc64le","free":true,"shortname":"Python 3-Module","description":"

This module contains the Python 3 packages.

Access to the Python 3 Module is included in your SUSE Linux Enterprise subscription. The module has a different lifecycle than SUSE Linux Enterprise itself; please check the Release Notes for further details.

","product_type":"module","cpe":"cpe:/o:suse:sle-module-python3:15:sp5","predecessor_ids":[2403],"repositories":[{"id":5948,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Python3/15-SP5/ppc64le/update/","autorefresh":true,"distro_target":"sle-15-ppc64le","name":"SLE-Module-Python3-15-SP5-Updates","installer_updates":false,"description":"SLE-Module-Python3-15-SP5-Updates for sle-15-ppc64le"},{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Python3/15-SP5/ppc64le/update_debug/","autorefresh":true,"distro_target":"sle-15-ppc64le","id":5949,"enabled":false,"description":"SLE-Module-Python3-15-SP5-Debuginfo-Updates for sle-15-ppc64le","name":"SLE-Module-Python3-15-SP5-Debuginfo-Updates","installer_updates":false},{"installer_updates":false,"name":"SLE-Module-Python3-15-SP5-Pool","description":"SLE-Module-Python3-15-SP5-Pool for sle-15-ppc64le","enabled":true,"id":5950,"distro_target":"sle-15-ppc64le","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Python3/15-SP5/ppc64le/product/"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Python3/15-SP5/ppc64le/product_debug/","autorefresh":false,"distro_target":"sle-15-ppc64le","id":5951,"enabled":false,"description":"SLE-Module-Python3-15-SP5-Debuginfo-Pool for sle-15-ppc64le","name":"SLE-Module-Python3-15-SP5-Debuginfo-Pool","installer_updates":false},{"enabled":false,"id":5952,"autorefresh":false,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Python3/15-SP5/ppc64le/product_source/","name":"SLE-Module-Python3-15-SP5-Source-Pool","installer_updates":false,"description":"SLE-Module-Python3-15-SP5-Source-Pool for sle-15-ppc64le"}],"online_predecessor_ids":[2403],"product_class":"MODULE","offline_predecessor_ids":[],"name":"Python 3 Module","release_type":null,"former_identifier":"sle-module-python3","migration_extra":false,"friendly_name":"Python 3 Module 15 SP5 ppc64le","recommended":false,"version":"15.5","extensions":[],"id":2534,"release_stage":"released","identifier":"sle-module-python3","friendly_version":"15 SP5"},{"product_type":"module","cpe":"cpe:/o:suse:packagehub:15:sp5","predecessor_ids":[1741,1869,1948,2189,2345],"online_predecessor_ids":[1741,1869,1948,2189,2345],"product_class":"MODULE","repositories":[{"id":6097,"enabled":true,"url":"https://updates.suse.com/SUSE/Backports/SLE-15-SP5_ppc64le/standard/","distro_target":"sle-15-ppc64le","autorefresh":false,"installer_updates":false,"name":"SUSE-PackageHub-15-SP5-Backports-Pool","description":"SUSE-PackageHub-15-SP5-Backports-Pool for sle-15-ppc64le"},{"url":"https://updates.suse.com/SUSE/Backports/SLE-15-SP5_ppc64le/standard_debug/","autorefresh":true,"distro_target":"sle-15-ppc64le","id":6098,"enabled":false,"description":"SUSE-PackageHub-15-SP5-Backports-Debuginfo for sle-15-ppc64le","name":"SUSE-PackageHub-15-SP5-Backports-Debuginfo","installer_updates":false},{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP5/ppc64le/update/","distro_target":"sle-15-ppc64le","autorefresh":true,"id":6099,"enabled":true,"description":"SLE-Module-Packagehub-Subpackages15-SP5-Updates for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-Packagehub-Subpackages15-SP5-Updates"},{"description":"SLE-Module-Packagehub-Subpackages15-SP5-Debuginfo-Updates for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-Packagehub-Subpackages15-SP5-Debuginfo-Updates","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP5/ppc64le/update_debug/","distro_target":"sle-15-ppc64le","autorefresh":true,"id":6100,"enabled":false},{"name":"SUSE-PackageHub-15-SP5-Pool","installer_updates":false,"description":"SUSE-PackageHub-15-SP5-Pool for sle-15-ppc64le","id":6101,"enabled":true,"url":"https://updates.suse.com/SUSE/Backports/SLE-15-SP5_ppc64le/product/","autorefresh":false,"distro_target":"sle-15-ppc64le"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP5/ppc64le/product/","autorefresh":false,"distro_target":"sle-15-ppc64le","id":6102,"enabled":true,"description":"SLE-Module-Packagehub-Subpackages15-SP5-Pool for sle-15-ppc64le","name":"SLE-Module-Packagehub-Subpackages15-SP5-Pool","installer_updates":false},{"description":"SLE-Module-Packagehub-Subpackages15-SP5-Debuginfo-Pool for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-Packagehub-Subpackages15-SP5-Debuginfo-Pool","distro_target":"sle-15-ppc64le","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP5/ppc64le/product_debug/","enabled":false,"id":6103},{"enabled":false,"id":6104,"autorefresh":false,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP5/ppc64le/product_source/","name":"SLE-Module-Packagehub-Subpackages15-SP5-Source-Pool","installer_updates":false,"description":"SLE-Module-Packagehub-Subpackages15-SP5-Source-Pool for sle-15-ppc64le"}],"eula_url":"","arch":"ppc64le","free":true,"shortname":"SUSE-PackageHub-15","description":"SUSE Package Hub is a free of charge module providing access to community maintained packages built to run on SUSE Linux Enterprise Server. Built from the same sources used in the openSUSE distributions, these quality packages provide additional software to what is found in the SUSE Linux Enterprise Server product. Packages from the Package Hub are delivered without L3 support from SUSE. General updates and fixes to the packages in SUSE Package Hub are provided by the openSUSE community based on their discretion, though SUSE will monitor and ensure that any known critical security issues will be addressed. Packages in the Package Hub are approved by SUSE for use with SUSE Linux Enterprise Server 15-SP5 and to not interfere with the supportability of SUSE Linux Enterprise Server, its modules and extensions. For more information about SUSE Package Hub please visit https://packagehub.suse.com.","extensions":[],"id":2560,"release_stage":"released","identifier":"PackageHub","friendly_version":"15 SP5","offline_predecessor_ids":[1531,1811,1913],"name":"SUSE Package Hub","release_type":null,"former_identifier":"PackageHub","migration_extra":false,"friendly_name":"SUSE Package Hub 15 SP5 ppc64le","recommended":false,"version":"15.5"}],"identifier":"sle-module-basesystem","release_stage":"released","id":2472,"recommended":true,"version":"15.5","name":"Basesystem Module","offline_predecessor_ids":[1294],"migration_extra":false,"friendly_name":"Basesystem Module 15 SP5 ppc64le","former_identifier":"sle-module-basesystem","release_type":null},{"predecessor_ids":[2391],"online_predecessor_ids":[2391],"product_class":"MODULE","repositories":[{"description":"SLE-Module-Certifications-15-SP5-Updates for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-Certifications-15-SP5-Updates","distro_target":"sle-15-ppc64le","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Certifications/15-SP5/ppc64le/update/","enabled":true,"id":6070},{"installer_updates":false,"name":"SLE-Module-Certifications-15-SP5-Debuginfo-Updates","description":"SLE-Module-Certifications-15-SP5-Debuginfo-Updates for sle-15-ppc64le","id":6071,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Certifications/15-SP5/ppc64le/update_debug/","distro_target":"sle-15-ppc64le","autorefresh":true},{"id":6072,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Certifications/15-SP5/ppc64le/product/","autorefresh":false,"distro_target":"sle-15-ppc64le","name":"SLE-Module-Certifications-15-SP5-Pool","installer_updates":false,"description":"SLE-Module-Certifications-15-SP5-Pool for sle-15-ppc64le"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Certifications/15-SP5/ppc64le/product_debug/","distro_target":"sle-15-ppc64le","autorefresh":false,"id":6073,"enabled":false,"description":"SLE-Module-Certifications-15-SP5-Debuginfo-Pool for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-Certifications-15-SP5-Debuginfo-Pool"},{"id":6074,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Certifications/15-SP5/ppc64le/product_source/","distro_target":"sle-15-ppc64le","autorefresh":false,"installer_updates":false,"name":"SLE-Module-Certifications-15-SP5-Source-Pool","description":"SLE-Module-Certifications-15-SP5-Source-Pool for sle-15-ppc64le"}],"product_type":"module","cpe":"cpe:/o:suse:sle-module-certifications:15:sp5","free":true,"shortname":"Certifications-Module","description":"

This module contains the certification packages.

Access to the Certifications Module is included in your SUSE Linux Enterprise subscription. The module has a different lifecycle than SUSE Linux Enterprise itself; please check the Release Notes for further details.

","eula_url":"","arch":"ppc64le","friendly_version":"15 SP5","extensions":[],"identifier":"sle-module-certifications","release_stage":"released","id":2556,"recommended":false,"version":"15.5","offline_predecessor_ids":[],"name":"Certifications Module","former_identifier":"sle-module-certifications","release_type":null,"migration_extra":false,"friendly_name":"Certifications Module 15 SP5 ppc64le"}],"release_stage":"beta","id":2466,"identifier":"SLES_SAP","shortname":"SLE-15-SP5-SAP","description":"SUSE Linux Enterprise offers a comprehensive suite of products built on a single code base. The platform addresses business needs from the smallest thin-client devices to the world's most powerful high-performance computing and mainframe servers. SUSE Linux Enterprise offers common management tools and technology certifications across the platform, and each product is enterprise-class.","free":false,"eula_url":"https://updates.suse.com/SUSE/Products/SLE-Product-SLES_SAP/15-SP5/ppc64le/product.license/","arch":"ppc64le","predecessor_ids":[1940,2135,2293],"repositories":[{"enabled":false,"id":5651,"autorefresh":true,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Updates/SLE-INSTALLER/15-SP5/ppc64le/update/","name":"SLE15-SP5-Installer-Updates","installer_updates":true,"description":"SLE15-SP5-Installer-Updates for sle-15-ppc64le"},{"name":"SLE-Product-SLES_SAP15-SP5-Updates","installer_updates":false,"description":"SLE-Product-SLES_SAP15-SP5-Updates for sle-15-ppc64le","id":5667,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-SLES_SAP/15-SP5/ppc64le/update/","autorefresh":true,"distro_target":"sle-15-ppc64le"},{"description":"SLE-Product-SLES_SAP15-SP5-Debuginfo-Updates for sle-15-ppc64le","name":"SLE-Product-SLES_SAP15-SP5-Debuginfo-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Updates/SLE-Product-SLES_SAP/15-SP5/ppc64le/update_debug/","enabled":false,"id":5668},{"id":5669,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-SLES_SAP/15-SP5/ppc64le/product/","autorefresh":false,"distro_target":"sle-15-ppc64le","name":"SLE-Product-SLES_SAP15-SP5-Pool","installer_updates":false,"description":"SLE-Product-SLES_SAP15-SP5-Pool for sle-15-ppc64le"},{"description":"SLE-Product-SLES_SAP15-SP5-Debuginfo-Pool for sle-15-ppc64le","installer_updates":false,"name":"SLE-Product-SLES_SAP15-SP5-Debuginfo-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Product-SLES_SAP/15-SP5/ppc64le/product_debug/","distro_target":"sle-15-ppc64le","autorefresh":false,"id":5670,"enabled":false},{"enabled":false,"id":5671,"autorefresh":false,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Products/SLE-Product-SLES_SAP/15-SP5/ppc64le/product_source/","name":"SLE-Product-SLES_SAP15-SP5-Source-Pool","installer_updates":false,"description":"SLE-Product-SLES_SAP15-SP5-Source-Pool for sle-15-ppc64le"}],"online_predecessor_ids":[1940,2135,2293],"product_class":"AiO-PPC-BETA","cpe":"cpe:/o:suse:sles_sap:15:sp5","product_type":"base"},{"predecessor_ids":[1941,2136,2294],"product_class":"AiO-BETA","online_predecessor_ids":[1941,2136,2294],"repositories":[{"name":"SLE15-SP5-Installer-Updates","installer_updates":true,"description":"SLE15-SP5-Installer-Updates for sle-15-x86_64","id":5663,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-INSTALLER/15-SP5/x86_64/update/","autorefresh":true,"distro_target":"sle-15-x86_64"},{"name":"SLE-Product-SLES_SAP15-SP5-Updates","installer_updates":false,"description":"SLE-Product-SLES_SAP15-SP5-Updates for sle-15-x86_64","enabled":true,"id":5672,"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Product-SLES_SAP/15-SP5/x86_64/update/"},{"installer_updates":false,"name":"SLE-Product-SLES_SAP15-SP5-Debuginfo-Updates","description":"SLE-Product-SLES_SAP15-SP5-Debuginfo-Updates for sle-15-x86_64","enabled":false,"id":5673,"distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-SLES_SAP/15-SP5/x86_64/update_debug/"},{"enabled":true,"id":5674,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Product-SLES_SAP/15-SP5/x86_64/product/","name":"SLE-Product-SLES_SAP15-SP5-Pool","installer_updates":false,"description":"SLE-Product-SLES_SAP15-SP5-Pool for sle-15-x86_64"},{"description":"SLE-Product-SLES_SAP15-SP5-Debuginfo-Pool for sle-15-x86_64","name":"SLE-Product-SLES_SAP15-SP5-Debuginfo-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Product-SLES_SAP/15-SP5/x86_64/product_debug/","enabled":false,"id":5675},{"description":"SLE-Product-SLES_SAP15-SP5-Source-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Product-SLES_SAP15-SP5-Source-Pool","distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-SLES_SAP/15-SP5/x86_64/product_source/","enabled":false,"id":5676}],"product_type":"base","cpe":"cpe:/o:suse:sles_sap:15:sp5","free":false,"shortname":"SLE-15-SP5-SAP","description":"SUSE Linux Enterprise offers a comprehensive suite of products built on a single code base. The platform addresses business needs from the smallest thin-client devices to the world's most powerful high-performance computing and mainframe servers. SUSE Linux Enterprise offers common management tools and technology certifications across the platform, and each product is enterprise-class.","eula_url":"https://updates.suse.com/SUSE/Products/SLE-Product-SLES_SAP/15-SP5/x86_64/product.license/","arch":"x86_64","friendly_version":"15 SP5","extensions":[{"friendly_version":"15 SP5","extensions":[{"name":"Desktop Applications Module","offline_predecessor_ids":[],"friendly_name":"Desktop Applications Module 15 SP5 x86_64","migration_extra":false,"former_identifier":"sle-module-desktop-applications","release_type":null,"recommended":true,"version":"15.5","extensions":[{"free":true,"description":"

The Development Tools Module helps you developing applications for SUSE Linux Enterprise 15.

Access to the Development Tools Module is included in your SUSE Linux Enterprise product subscription. The module has a different lifecycle than SUSE Linux Enterprise itself.

","shortname":"Development-Tools-Module","eula_url":"","arch":"x86_64","predecessor_ids":[1579,1794,1971,2161,2315],"online_predecessor_ids":[1579,1794,1971,2161,2315],"product_class":"MODULE","repositories":[{"id":5788,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15-SP5/x86_64/update/","autorefresh":true,"distro_target":"sle-15-x86_64","name":"SLE-Module-DevTools15-SP5-Updates","installer_updates":false,"description":"SLE-Module-DevTools15-SP5-Updates for sle-15-x86_64"},{"description":"SLE-Module-DevTools15-SP5-Debuginfo-Updates for sle-15-x86_64","name":"SLE-Module-DevTools15-SP5-Debuginfo-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15-SP5/x86_64/update_debug/","enabled":false,"id":5789},{"enabled":true,"id":5790,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP5/x86_64/product/","name":"SLE-Module-DevTools15-SP5-Pool","installer_updates":false,"description":"SLE-Module-DevTools15-SP5-Pool for sle-15-x86_64"},{"name":"SLE-Module-DevTools15-SP5-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-DevTools15-SP5-Debuginfo-Pool for sle-15-x86_64","id":5791,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP5/x86_64/product_debug/","autorefresh":false,"distro_target":"sle-15-x86_64"},{"installer_updates":false,"name":"SLE-Module-DevTools15-SP5-Source-Pool","description":"SLE-Module-DevTools15-SP5-Source-Pool for sle-15-x86_64","enabled":false,"id":5792,"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP5/x86_64/product_source/"}],"product_type":"module","cpe":"cpe:/o:suse:sle-module-development-tools:15:sp5","recommended":false,"version":"15.5","offline_predecessor_ids":[1341,1427,1630,1892],"name":"Development Tools Module","former_identifier":"sle-sdk","release_type":null,"migration_extra":false,"friendly_name":"Development Tools Module 15 SP5 x86_64","friendly_version":"15 SP5","extensions":[],"id":2490,"release_stage":"released","identifier":"sle-module-development-tools"},{"free":false,"shortname":"SLEWE15-SP5","description":"SUSE Linux Enterprise Workstation Extension adds additional functionality to a base SUSE Linux Enterprise installation. The Workstation Extension offers additional desktop applications (office suite, email client, graphical editor, multimedia tools) and libraries. Workstation Extension is enabled and installed by default on SUSE Linux Enterprise Desktop installation. Adding the Workstation Extension to a SUSE Linux Enterprise Server installation allows to seamlessly combine both products to create a full featured server workstation.","eula_url":"https://updates.suse.com/SUSE/Products/SLE-Product-WE/15-SP5/x86_64/product.license/","arch":"x86_64","predecessor_ids":[1781,1999,2196,2343],"online_predecessor_ids":[1781,1999,2196,2343],"repositories":[{"installer_updates":false,"name":"SLE-15-SP5-Desktop-NVIDIA-Driver","description":"SLE-15-SP5-Desktop-NVIDIA-Driver","id":5680,"enabled":true,"url":"https://download.nvidia.com/suse/sle15sp5/","distro_target":null,"autorefresh":true},{"name":"SLE-Product-WE15-SP5-Updates","installer_updates":false,"description":"SLE-Product-WE15-SP5-Updates for sle-15-x86_64","enabled":true,"id":5903,"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Product-WE/15-SP5/x86_64/update/"},{"id":5904,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-WE/15-SP5/x86_64/update_debug/","autorefresh":true,"distro_target":"sle-15-x86_64","name":"SLE-Product-WE15-SP5-Debuginfo-Updates","installer_updates":false,"description":"SLE-Product-WE15-SP5-Debuginfo-Updates for sle-15-x86_64"},{"description":"SLE-Product-WE15-SP5-Pool for sle-15-x86_64","name":"SLE-Product-WE15-SP5-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-WE/15-SP5/x86_64/product/","autorefresh":false,"distro_target":"sle-15-x86_64","id":5905,"enabled":true},{"id":5906,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-WE/15-SP5/x86_64/product_debug/","autorefresh":false,"distro_target":"sle-15-x86_64","name":"SLE-Product-WE15-SP5-Debuginfo-Pool","installer_updates":false,"description":"SLE-Product-WE15-SP5-Debuginfo-Pool for sle-15-x86_64"},{"id":5907,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-WE/15-SP5/x86_64/product_source/","autorefresh":false,"distro_target":"sle-15-x86_64","name":"SLE-Product-WE15-SP5-Source-Pool","installer_updates":false,"description":"SLE-Product-WE15-SP5-Source-Pool for sle-15-x86_64"}],"product_class":"SLE-WE-BETA","product_type":"extension","cpe":"cpe:/o:suse:sle-we:15:sp5","recommended":false,"version":"15.5","offline_predecessor_ids":[1639,1893],"name":"SUSE Linux Enterprise Workstation Extension","former_identifier":"sle-we","release_type":null,"friendly_name":"SUSE Linux Enterprise Workstation Extension 15 SP5 x86_64 (BETA)","migration_extra":false,"friendly_version":"15 SP5","extensions":[],"release_stage":"beta","identifier":"sle-we","id":2513}],"release_stage":"released","identifier":"sle-module-desktop-applications","id":2478,"friendly_version":"15 SP5","eula_url":"","arch":"x86_64","description":"

The SUSE Linux Enterprise Desktop Applications Module delivers a basic set of Desktop functionality.

Access to the Desktop Applications Module is included in your SUSE Linux Enterprise product subscription.

","shortname":"Desktop-Applications-Module","free":true,"cpe":"cpe:/o:suse:sle-module-desktop-applications:15:sp5","product_type":"module","predecessor_ids":[1578,1776,1967,2149,2303],"online_predecessor_ids":[1578,1776,1967,2149,2303],"product_class":"MODULE","repositories":[{"description":"SLE-Module-Desktop-Applications15-SP5-Updates for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Desktop-Applications15-SP5-Updates","distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15-SP5/x86_64/update/","enabled":true,"id":5728},{"description":"SLE-Module-Desktop-Applications15-SP5-Debuginfo-Updates for sle-15-x86_64","name":"SLE-Module-Desktop-Applications15-SP5-Debuginfo-Updates","installer_updates":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15-SP5/x86_64/update_debug/","autorefresh":true,"distro_target":"sle-15-x86_64","id":5729,"enabled":false},{"id":5730,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP5/x86_64/product/","distro_target":"sle-15-x86_64","autorefresh":false,"installer_updates":false,"name":"SLE-Module-Desktop-Applications15-SP5-Pool","description":"SLE-Module-Desktop-Applications15-SP5-Pool for sle-15-x86_64"},{"installer_updates":false,"name":"SLE-Module-Desktop-Applications15-SP5-Debuginfo-Pool","description":"SLE-Module-Desktop-Applications15-SP5-Debuginfo-Pool for sle-15-x86_64","enabled":false,"id":5731,"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP5/x86_64/product_debug/"},{"enabled":false,"id":5732,"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP5/x86_64/product_source/","installer_updates":false,"name":"SLE-Module-Desktop-Applications15-SP5-Source-Pool","description":"SLE-Module-Desktop-Applications15-SP5-Source-Pool for sle-15-x86_64"}]},{"product_type":"module","cpe":"cpe:/o:suse:sle-module-server-applications:15:sp5","repositories":[{"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15-SP5/x86_64/update/","enabled":true,"id":5748,"description":"SLE-Module-Server-Applications15-SP5-Updates for sle-15-x86_64","name":"SLE-Module-Server-Applications15-SP5-Updates","installer_updates":false},{"description":"SLE-Module-Server-Applications15-SP5-Debuginfo-Updates for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Server-Applications15-SP5-Debuginfo-Updates","distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15-SP5/x86_64/update_debug/","enabled":false,"id":5749},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP5/x86_64/product/","distro_target":"sle-15-x86_64","autorefresh":false,"id":5750,"enabled":true,"description":"SLE-Module-Server-Applications15-SP5-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Server-Applications15-SP5-Pool"},{"id":5751,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP5/x86_64/product_debug/","distro_target":"sle-15-x86_64","autorefresh":false,"installer_updates":false,"name":"SLE-Module-Server-Applications15-SP5-Debuginfo-Pool","description":"SLE-Module-Server-Applications15-SP5-Debuginfo-Pool for sle-15-x86_64"},{"description":"SLE-Module-Server-Applications15-SP5-Source-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Server-Applications15-SP5-Source-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP5/x86_64/product_source/","distro_target":"sle-15-x86_64","autorefresh":false,"id":5752,"enabled":false}],"online_predecessor_ids":[1580,1780,1955,2153,2307],"product_class":"MODULE","predecessor_ids":[1580,1780,1955,2153,2307],"arch":"x86_64","eula_url":"","free":true,"shortname":"Server-Applications-Module","description":"

The SUSE Linux Enterprise Server Applications Module delivers a basic set of Server functionality.

Access to the Server Applications Module is included in your SUSE Linux Enterprise Server subscription.

","id":2482,"release_stage":"released","identifier":"sle-module-server-applications","extensions":[{"arch":"x86_64","eula_url":"","shortname":"Web-Scripting-Module","description":"

The SUSE Linux Enterprise Web and Scripting Module should contains additional packages that are helpful when running a webserver.

Access to the Web and Scripting Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself: Package versions in this module are usually supported for at most three years. We are planning to release more recent versions on a schedule of approximately 18 month; the exact dates may differ per package.

","free":true,"cpe":"cpe:/o:suse:sle-module-web-scripting:15:sp5","product_type":"module","product_class":"MODULE","online_predecessor_ids":[1721,1798,1976,2165,2319],"repositories":[{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/15-SP5/x86_64/update/","distro_target":"sle-15-x86_64","autorefresh":true,"id":5808,"enabled":true,"description":"SLE-Module-Web-Scripting15-SP5-Updates for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Web-Scripting15-SP5-Updates"},{"installer_updates":false,"name":"SLE-Module-Web-Scripting15-SP5-Debuginfo-Updates","description":"SLE-Module-Web-Scripting15-SP5-Debuginfo-Updates for sle-15-x86_64","id":5809,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/15-SP5/x86_64/update_debug/","distro_target":"sle-15-x86_64","autorefresh":true},{"enabled":true,"id":5810,"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP5/x86_64/product/","installer_updates":false,"name":"SLE-Module-Web-Scripting15-SP5-Pool","description":"SLE-Module-Web-Scripting15-SP5-Pool for sle-15-x86_64"},{"description":"SLE-Module-Web-Scripting15-SP5-Debuginfo-Pool for sle-15-x86_64","name":"SLE-Module-Web-Scripting15-SP5-Debuginfo-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP5/x86_64/product_debug/","enabled":false,"id":5811},{"description":"SLE-Module-Web-Scripting15-SP5-Source-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Web-Scripting15-SP5-Source-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP5/x86_64/product_source/","distro_target":"sle-15-x86_64","autorefresh":false,"id":5812,"enabled":false}],"predecessor_ids":[1721,1798,1976,2165,2319],"migration_extra":false,"friendly_name":"Web and Scripting Module 15 SP5 x86_64","release_type":null,"former_identifier":"sle-module-web-scripting","name":"Web and Scripting Module","offline_predecessor_ids":[1153],"version":"15.5","recommended":false,"release_stage":"released","identifier":"sle-module-web-scripting","id":2494,"extensions":[],"friendly_version":"15 SP5"},{"arch":"x86_64","eula_url":"","free":true,"description":"

The Legacy Module helps you migrating applications from SUSE Linux Enterprise 12 and other systems to SUSE Linux Enterprise 15, by providing packages which are discontinued on SUSE Linux Enterprise Server, such as: ntp, IBM Java 8, and a number of libraries.

Access to the Legacy Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself. Packages in the this module are usually supported for at most three years.

","shortname":"Legacy-Module","product_type":"module","cpe":"cpe:/o:suse:sle-module-legacy:15:sp5","online_predecessor_ids":[1581,1804,1982,2171,2323],"product_class":"MODULE","repositories":[{"enabled":true,"id":5838,"distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/15-SP5/x86_64/update/","installer_updates":false,"name":"SLE-Module-Legacy15-SP5-Updates","description":"SLE-Module-Legacy15-SP5-Updates for sle-15-x86_64"},{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/15-SP5/x86_64/update_debug/","autorefresh":true,"distro_target":"sle-15-x86_64","id":5839,"enabled":false,"description":"SLE-Module-Legacy15-SP5-Debuginfo-Updates for sle-15-x86_64","name":"SLE-Module-Legacy15-SP5-Debuginfo-Updates","installer_updates":false},{"description":"SLE-Module-Legacy15-SP5-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Legacy15-SP5-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15-SP5/x86_64/product/","distro_target":"sle-15-x86_64","autorefresh":false,"id":5840,"enabled":true},{"name":"SLE-Module-Legacy15-SP5-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-Legacy15-SP5-Debuginfo-Pool for sle-15-x86_64","enabled":false,"id":5841,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15-SP5/x86_64/product_debug/"},{"id":5842,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15-SP5/x86_64/product_source/","autorefresh":false,"distro_target":"sle-15-x86_64","name":"SLE-Module-Legacy15-SP5-Source-Pool","installer_updates":false,"description":"SLE-Module-Legacy15-SP5-Source-Pool for sle-15-x86_64"}],"predecessor_ids":[1581,1804,1982,2171,2323],"former_identifier":"sle-module-legacy","release_type":null,"migration_extra":true,"friendly_name":"Legacy Module 15 SP5 x86_64","offline_predecessor_ids":[1150],"name":"Legacy Module","version":"15.5","recommended":false,"id":2500,"release_stage":"released","identifier":"sle-module-legacy","extensions":[],"friendly_version":"15 SP5"},{"free":true,"shortname":"Public-Cloud-Module","description":"

The Public Cloud Module is a collection of tools that enables you to create and manage cloud images from the commandline on SUSE Linux Enterprise Server. When building your own images with KIWI or SUSE Studio, initialization code specific to the target cloud is included in that image.

Access to the Public Cloud Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself; please check the Release Notes for further details.

","eula_url":"","arch":"x86_64","predecessor_ids":[1611,1808,1988,2175,2327],"repositories":[{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/15-SP5/x86_64/update/","autorefresh":true,"distro_target":"sle-15-x86_64","id":5858,"enabled":true,"description":"SLE-Module-Public-Cloud15-SP5-Updates for sle-15-x86_64","name":"SLE-Module-Public-Cloud15-SP5-Updates","installer_updates":false},{"description":"SLE-Module-Public-Cloud15-SP5-Debuginfo-Updates for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Public-Cloud15-SP5-Debuginfo-Updates","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/15-SP5/x86_64/update_debug/","distro_target":"sle-15-x86_64","autorefresh":true,"id":5859,"enabled":false},{"enabled":true,"id":5860,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP5/x86_64/product/","name":"SLE-Module-Public-Cloud15-SP5-Pool","installer_updates":false,"description":"SLE-Module-Public-Cloud15-SP5-Pool for sle-15-x86_64"},{"installer_updates":false,"name":"SLE-Module-Public-Cloud15-SP5-Debuginfo-Pool","description":"SLE-Module-Public-Cloud15-SP5-Debuginfo-Pool for sle-15-x86_64","id":5861,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP5/x86_64/product_debug/","distro_target":"sle-15-x86_64","autorefresh":false},{"enabled":false,"id":5862,"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP5/x86_64/product_source/","installer_updates":false,"name":"SLE-Module-Public-Cloud15-SP5-Source-Pool","description":"SLE-Module-Public-Cloud15-SP5-Source-Pool for sle-15-x86_64"}],"online_predecessor_ids":[1611,1808,1988,2175,2327],"product_class":"MODULE","product_type":"module","cpe":"cpe:/o:suse:sle-module-public-cloud:15:sp5","recommended":false,"version":"15.5","offline_predecessor_ids":[1220],"name":"Public Cloud Module","release_type":null,"former_identifier":"sle-module-public-cloud","friendly_name":"Public Cloud Module 15 SP5 x86_64","migration_extra":false,"friendly_version":"15 SP5","extensions":[],"id":2504,"release_stage":"released","identifier":"sle-module-public-cloud"},{"friendly_version":"15 SP5","id":2517,"release_stage":"beta","identifier":"sle-ha","extensions":[{"online_predecessor_ids":[1727,1787,1994,2198,2342],"product_class":"MODULE","repositories":[{"id":5933,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-SAP-Applications/15-SP5/x86_64/update/","autorefresh":true,"distro_target":"sle-15-x86_64","name":"SLE-Module-SAP-Applications15-SP5-Updates","installer_updates":false,"description":"SLE-Module-SAP-Applications15-SP5-Updates for sle-15-x86_64"},{"enabled":false,"id":5934,"distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-SAP-Applications/15-SP5/x86_64/update_debug/","installer_updates":false,"name":"SLE-Module-SAP-Applications15-SP5-Debuginfo-Updates","description":"SLE-Module-SAP-Applications15-SP5-Debuginfo-Updates for sle-15-x86_64"},{"id":5935,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-SAP-Applications/15-SP5/x86_64/product/","autorefresh":false,"distro_target":"sle-15-x86_64","name":"SLE-Module-SAP-Applications15-SP5-Pool","installer_updates":false,"description":"SLE-Module-SAP-Applications15-SP5-Pool for sle-15-x86_64"},{"description":"SLE-Module-SAP-Applications15-SP5-Debuginfo-Pool for sle-15-x86_64","name":"SLE-Module-SAP-Applications15-SP5-Debuginfo-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-SAP-Applications/15-SP5/x86_64/product_debug/","enabled":false,"id":5936},{"description":"SLE-Module-SAP-Applications15-SP5-Source-Pool for sle-15-x86_64","name":"SLE-Module-SAP-Applications15-SP5-Source-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-SAP-Applications/15-SP5/x86_64/product_source/","autorefresh":false,"distro_target":"sle-15-x86_64","id":5937,"enabled":false}],"predecessor_ids":[1727,1787,1994,2198,2342],"cpe":"cpe:/o:suse:sle-module-sap-applications:15:sp5","product_type":"module","shortname":"SAP-Applications-Module","description":"

The SAP Applications module contains the specialized tools for SAP Applications administration.

The module is maintained and supported by the SUSE Linux Enterprise Server for SAP Applications product subscription.

","free":true,"arch":"x86_64","eula_url":"","friendly_version":"15 SP5","release_stage":"released","identifier":"sle-module-sap-applications","id":2519,"extensions":[],"version":"15.5","recommended":true,"migration_extra":false,"friendly_name":"SAP Applications Module 15 SP5 x86_64","release_type":null,"former_identifier":"sle-module-sap-applications","name":"SAP Applications Module","offline_predecessor_ids":[]}],"version":"15.5","recommended":true,"former_identifier":"sle-ha","release_type":null,"friendly_name":"SUSE Linux Enterprise High Availability Extension 15 SP5 x86_64 (BETA)","migration_extra":false,"offline_predecessor_ids":[958,961,967,971,1101,1107,1256,1286,1435,1634,1637,1884,1886],"name":"SUSE Linux Enterprise High Availability Extension","online_predecessor_ids":[1785,1959,2195,2340],"repositories":[{"enabled":true,"id":5923,"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Product-HA/15-SP5/x86_64/update/","name":"SLE-Product-HA15-SP5-Updates","installer_updates":false,"description":"SLE-Product-HA15-SP5-Updates for sle-15-x86_64"},{"enabled":false,"id":5924,"distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-HA/15-SP5/x86_64/update_debug/","installer_updates":false,"name":"SLE-Product-HA15-SP5-Debuginfo-Updates","description":"SLE-Product-HA15-SP5-Debuginfo-Updates for sle-15-x86_64"},{"installer_updates":false,"name":"SLE-Product-HA15-SP5-Pool","description":"SLE-Product-HA15-SP5-Pool for sle-15-x86_64","id":5925,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP5/x86_64/product/","distro_target":"sle-15-x86_64","autorefresh":false},{"installer_updates":false,"name":"SLE-Product-HA15-SP5-Debuginfo-Pool","description":"SLE-Product-HA15-SP5-Debuginfo-Pool for sle-15-x86_64","enabled":false,"id":5926,"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP5/x86_64/product_debug/"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP5/x86_64/product_source/","distro_target":"sle-15-x86_64","autorefresh":false,"id":5927,"enabled":false,"description":"SLE-Product-HA15-SP5-Source-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Product-HA15-SP5-Source-Pool"}],"product_class":"SLE-HAE-X86-BETA","predecessor_ids":[1785,1959,2195,2340],"product_type":"extension","cpe":"cpe:/o:suse:sle-ha:15:sp5","free":false,"shortname":"SLEHA15-SP5","description":"SUSE Linux High Availability Extension provides mature, industry-leading open-source high-availability clustering technologies that are easy to set up and use. It can be deployed in physical and/or virtual environments, and can cluster physical servers, virtual servers, or any combination of the two to suit your business’ needs.","arch":"x86_64","eula_url":""},{"free":true,"shortname":"SAP-Business-One-Module","description":"

The SAP Business One module contains the specialized tools for the installation of SAP Business One product.

The module is maintained and supported by the SUSE Linux Enterprise Server product subscription.

","eula_url":"","arch":"x86_64","predecessor_ids":[],"online_predecessor_ids":[],"repositories":[{"name":"SLE-Module-SAP-Business-One15-SP5-Updates","installer_updates":false,"description":"SLE-Module-SAP-Business-One15-SP5-Updates for sle-15-x86_64","enabled":true,"id":6203,"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-SAP-Business-One/15-SP5/x86_64/update/"},{"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-SAP-Business-One/15-SP5/x86_64/update_debug/","enabled":false,"id":6204,"description":"SLE-Module-SAP-Business-One15-SP5-Debuginfo-Updates for sle-15-x86_64","name":"SLE-Module-SAP-Business-One15-SP5-Debuginfo-Updates","installer_updates":false},{"description":"SLE-Module-SAP-Business-One15-SP5-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-SAP-Business-One15-SP5-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-SAP-Business-One/15-SP5/x86_64/product/","distro_target":"sle-15-x86_64","autorefresh":false,"id":6205,"enabled":true},{"name":"SLE-Module-SAP-Business-One15-SP5-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-SAP-Business-One15-SP5-Debuginfo-Pool for sle-15-x86_64","enabled":false,"id":6206,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-SAP-Business-One/15-SP5/x86_64/product_debug/"},{"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-SAP-Business-One/15-SP5/x86_64/product_source/","enabled":false,"id":6207,"description":"SLE-Module-SAP-Business-One15-SP5-Source-Pool for sle-15-x86_64","name":"SLE-Module-SAP-Business-One15-SP5-Source-Pool","installer_updates":false}],"product_class":"MODULE","product_type":"module","cpe":"cpe:/o:suse:sle-module-sap-business-one:15:sp5","recommended":false,"version":"15.5","offline_predecessor_ids":[],"name":"SAP Business One Module","release_type":null,"former_identifier":"sle-module-sap-business-one","migration_extra":false,"friendly_name":"SAP Business One Module 15 SP5 x86_64","friendly_version":"15 SP5","extensions":[],"identifier":"sle-module-sap-business-one","release_stage":"released","id":2589}],"friendly_version":"15 SP5","former_identifier":"sle-module-server-applications","release_type":null,"friendly_name":"Server Applications Module 15 SP5 x86_64","migration_extra":false,"offline_predecessor_ids":[],"name":"Server Applications Module","version":"15.5","recommended":true},{"extensions":[],"release_stage":"released","id":2486,"identifier":"sle-module-containers","friendly_version":"15 SP5","name":"Containers Module","offline_predecessor_ids":[1332],"migration_extra":false,"friendly_name":"Containers Module 15 SP5 x86_64","release_type":null,"former_identifier":"sle-module-containers","recommended":false,"version":"15.5","cpe":"cpe:/o:suse:sle-module-containers:15:sp5","product_type":"module","predecessor_ids":[1642,1790,1963,2157,2311],"product_class":"MODULE","online_predecessor_ids":[1642,1790,1963,2157,2311],"repositories":[{"installer_updates":false,"name":"SLE-Module-Containers15-SP5-Updates","description":"SLE-Module-Containers15-SP5-Updates for sle-15-x86_64","enabled":true,"id":5768,"distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/15-SP5/x86_64/update/"},{"name":"SLE-Module-Containers15-SP5-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-Containers15-SP5-Debuginfo-Updates for sle-15-x86_64","id":5769,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/15-SP5/x86_64/update_debug/","autorefresh":true,"distro_target":"sle-15-x86_64"},{"installer_updates":false,"name":"SLE-Module-Containers15-SP5-Pool","description":"SLE-Module-Containers15-SP5-Pool for sle-15-x86_64","id":5770,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP5/x86_64/product/","distro_target":"sle-15-x86_64","autorefresh":false},{"description":"SLE-Module-Containers15-SP5-Debuginfo-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Containers15-SP5-Debuginfo-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP5/x86_64/product_debug/","distro_target":"sle-15-x86_64","autorefresh":false,"id":5771,"enabled":false},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP5/x86_64/product_source/","autorefresh":false,"distro_target":"sle-15-x86_64","id":5772,"enabled":false,"description":"SLE-Module-Containers15-SP5-Source-Pool for sle-15-x86_64","name":"SLE-Module-Containers15-SP5-Source-Pool","installer_updates":false}],"eula_url":"","arch":"x86_64","description":"

This Module contains several packages revolving around containers and related tools.

","shortname":"Containers-Module","free":true},{"arch":"x86_64","eula_url":"","description":"

SUSE Linux Enterprise Live Patching provides packages to update critical components in SUSE Linux Enterprise. With SUSE Linux Enterprise Live Patching, you can perform critical patching without shutting down your system, reducing the need for planned downtime and increasing service availability.

","shortname":"Live-Patching","free":false,"cpe":"cpe:/o:suse:sle-module-live-patching:15:sp5","product_type":"extension","product_class":"SLE-LP-BETA","online_predecessor_ids":[1736,1828,1984,2187,2334],"repositories":[{"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Live-Patching/15-SP5/x86_64/update/","enabled":true,"id":5893,"description":"SLE-Module-Live-Patching15-SP5-Updates for sle-15-x86_64","name":"SLE-Module-Live-Patching15-SP5-Updates","installer_updates":false},{"description":"SLE-Module-Live-Patching15-SP5-Debuginfo-Updates for sle-15-x86_64","name":"SLE-Module-Live-Patching15-SP5-Debuginfo-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Live-Patching/15-SP5/x86_64/update_debug/","enabled":false,"id":5894},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Live-Patching/15-SP5/x86_64/product/","distro_target":"sle-15-x86_64","autorefresh":false,"id":5895,"enabled":true,"description":"SLE-Module-Live-Patching15-SP5-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Live-Patching15-SP5-Pool"},{"name":"SLE-Module-Live-Patching15-SP5-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-Live-Patching15-SP5-Debuginfo-Pool for sle-15-x86_64","enabled":false,"id":5896,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Live-Patching/15-SP5/x86_64/product_debug/"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Live-Patching/15-SP5/x86_64/product_source/","distro_target":"sle-15-x86_64","autorefresh":false,"id":5897,"enabled":false,"description":"SLE-Module-Live-Patching15-SP5-Source-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Live-Patching15-SP5-Source-Pool"}],"predecessor_ids":[1736,1828,1984,2187,2334],"friendly_name":"SUSE Linux Enterprise Live Patching 15 SP5 x86_64 (BETA)","migration_extra":false,"release_type":null,"former_identifier":"sle-module-live-patching","name":"SUSE Linux Enterprise Live Patching","offline_predecessor_ids":[1536,1757,1888],"version":"15.5","recommended":false,"release_stage":"beta","id":2511,"identifier":"sle-module-live-patching","extensions":[],"friendly_version":"15 SP5"},{"friendly_version":"15 SP5","extensions":[],"release_stage":"released","id":2536,"identifier":"sle-module-python3","recommended":false,"version":"15.5","name":"Python 3 Module","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"Python 3 Module 15 SP5 x86_64","release_type":null,"former_identifier":"sle-module-python3","predecessor_ids":[2405],"online_predecessor_ids":[2405],"repositories":[{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Python3/15-SP5/x86_64/update/","distro_target":"sle-15-x86_64","autorefresh":true,"id":5958,"enabled":true,"description":"SLE-Module-Python3-15-SP5-Updates for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Python3-15-SP5-Updates"},{"description":"SLE-Module-Python3-15-SP5-Debuginfo-Updates for sle-15-x86_64","name":"SLE-Module-Python3-15-SP5-Debuginfo-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Python3/15-SP5/x86_64/update_debug/","enabled":false,"id":5959},{"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Python3/15-SP5/x86_64/product/","enabled":true,"id":5960,"description":"SLE-Module-Python3-15-SP5-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Python3-15-SP5-Pool"},{"enabled":false,"id":5961,"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Python3/15-SP5/x86_64/product_debug/","installer_updates":false,"name":"SLE-Module-Python3-15-SP5-Debuginfo-Pool","description":"SLE-Module-Python3-15-SP5-Debuginfo-Pool for sle-15-x86_64"},{"installer_updates":false,"name":"SLE-Module-Python3-15-SP5-Source-Pool","description":"SLE-Module-Python3-15-SP5-Source-Pool for sle-15-x86_64","id":5962,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Python3/15-SP5/x86_64/product_source/","distro_target":"sle-15-x86_64","autorefresh":false}],"product_class":"MODULE","cpe":"cpe:/o:suse:sle-module-python3:15:sp5","product_type":"module","description":"

This module contains the Python 3 packages.

Access to the Python 3 Module is included in your SUSE Linux Enterprise subscription. The module has a different lifecycle than SUSE Linux Enterprise itself; please check the Release Notes for further details.

","shortname":"Python 3-Module","free":true,"eula_url":"","arch":"x86_64"},{"friendly_version":"15 SP5","identifier":"PackageHub","release_stage":"released","id":2562,"extensions":[],"version":"15.5","recommended":false,"friendly_name":"SUSE Package Hub 15 SP5 x86_64","migration_extra":false,"release_type":null,"former_identifier":"PackageHub","name":"SUSE Package Hub","offline_predecessor_ids":[1529,1813,1915],"repositories":[{"enabled":true,"id":6113,"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Backports/SLE-15-SP5_x86_64/standard/","installer_updates":false,"name":"SUSE-PackageHub-15-SP5-Backports-Pool","description":"SUSE-PackageHub-15-SP5-Backports-Pool for sle-15-x86_64"},{"enabled":false,"id":6114,"distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Backports/SLE-15-SP5_x86_64/standard_debug/","installer_updates":false,"name":"SUSE-PackageHub-15-SP5-Backports-Debuginfo","description":"SUSE-PackageHub-15-SP5-Backports-Debuginfo for sle-15-x86_64"},{"enabled":true,"id":6115,"distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP5/x86_64/update/","installer_updates":false,"name":"SLE-Module-Packagehub-Subpackages15-SP5-Updates","description":"SLE-Module-Packagehub-Subpackages15-SP5-Updates for sle-15-x86_64"},{"name":"SLE-Module-Packagehub-Subpackages15-SP5-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-Packagehub-Subpackages15-SP5-Debuginfo-Updates for sle-15-x86_64","id":6116,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP5/x86_64/update_debug/","autorefresh":true,"distro_target":"sle-15-x86_64"},{"id":6117,"enabled":true,"url":"https://updates.suse.com/SUSE/Backports/SLE-15-SP5_x86_64/product/","distro_target":"sle-15-x86_64","autorefresh":false,"installer_updates":false,"name":"SUSE-PackageHub-15-SP5-Pool","description":"SUSE-PackageHub-15-SP5-Pool for sle-15-x86_64"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP5/x86_64/product/","distro_target":"sle-15-x86_64","autorefresh":false,"id":6118,"enabled":true,"description":"SLE-Module-Packagehub-Subpackages15-SP5-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Packagehub-Subpackages15-SP5-Pool"},{"description":"SLE-Module-Packagehub-Subpackages15-SP5-Debuginfo-Pool for sle-15-x86_64","name":"SLE-Module-Packagehub-Subpackages15-SP5-Debuginfo-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP5/x86_64/product_debug/","autorefresh":false,"distro_target":"sle-15-x86_64","id":6119,"enabled":false},{"installer_updates":false,"name":"SLE-Module-Packagehub-Subpackages15-SP5-Source-Pool","description":"SLE-Module-Packagehub-Subpackages15-SP5-Source-Pool for sle-15-x86_64","enabled":false,"id":6120,"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP5/x86_64/product_source/"}],"online_predecessor_ids":[1743,1871,1950,2191,2347],"product_class":"MODULE","predecessor_ids":[1743,1871,1950,2191,2347],"cpe":"cpe:/o:suse:packagehub:15:sp5","product_type":"module","description":"SUSE Package Hub is a free of charge module providing access to community maintained packages built to run on SUSE Linux Enterprise Server. Built from the same sources used in the openSUSE distributions, these quality packages provide additional software to what is found in the SUSE Linux Enterprise Server product. Packages from the Package Hub are delivered without L3 support from SUSE. General updates and fixes to the packages in SUSE Package Hub are provided by the openSUSE community based on their discretion, though SUSE will monitor and ensure that any known critical security issues will be addressed. Packages in the Package Hub are approved by SUSE for use with SUSE Linux Enterprise Server 15-SP5 and to not interfere with the supportability of SUSE Linux Enterprise Server, its modules and extensions. For more information about SUSE Package Hub please visit https://packagehub.suse.com.","shortname":"SUSE-PackageHub-15","free":true,"arch":"x86_64","eula_url":""}],"identifier":"sle-module-basesystem","release_stage":"released","id":2474,"recommended":true,"version":"15.5","offline_predecessor_ids":[1212,1368,1440],"name":"Basesystem Module","former_identifier":"sle-module-basesystem","release_type":null,"friendly_name":"Basesystem Module 15 SP5 x86_64","migration_extra":false,"predecessor_ids":[1576,1772,1946,2145,2299],"repositories":[{"installer_updates":false,"name":"SLE-Module-Basesystem15-SP5-Updates","description":"SLE-Module-Basesystem15-SP5-Updates for sle-15-x86_64","enabled":true,"id":5708,"distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15-SP5/x86_64/update/"},{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15-SP5/x86_64/update_debug/","autorefresh":true,"distro_target":"sle-15-x86_64","id":5709,"enabled":false,"description":"SLE-Module-Basesystem15-SP5-Debuginfo-Updates for sle-15-x86_64","name":"SLE-Module-Basesystem15-SP5-Debuginfo-Updates","installer_updates":false},{"installer_updates":false,"name":"SLE-Module-Basesystem15-SP5-Pool","description":"SLE-Module-Basesystem15-SP5-Pool for sle-15-x86_64","enabled":true,"id":5710,"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP5/x86_64/product/"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP5/x86_64/product_debug/","autorefresh":false,"distro_target":"sle-15-x86_64","id":5711,"enabled":false,"description":"SLE-Module-Basesystem15-SP5-Debuginfo-Pool for sle-15-x86_64","name":"SLE-Module-Basesystem15-SP5-Debuginfo-Pool","installer_updates":false},{"description":"SLE-Module-Basesystem15-SP5-Source-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Basesystem15-SP5-Source-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP5/x86_64/product_source/","distro_target":"sle-15-x86_64","autorefresh":false,"id":5712,"enabled":false}],"online_predecessor_ids":[1576,1772,1946,2145,2299],"product_class":"MODULE","product_type":"module","cpe":"cpe:/o:suse:sle-module-basesystem:15:sp5","free":true,"shortname":"Basesystem-Module","description":"

The SUSE Linux Enterprise Basesystem Module delivers the base system of the product.

","eula_url":"","arch":"x86_64"},{"arch":"x86_64","eula_url":"","free":true,"shortname":"Certifications-Module","description":"

This module contains the certification packages.

Access to the Certifications Module is included in your SUSE Linux Enterprise subscription. The module has a different lifecycle than SUSE Linux Enterprise itself; please check the Release Notes for further details.

","product_type":"module","cpe":"cpe:/o:suse:sle-module-certifications:15:sp5","repositories":[{"name":"SLE-Module-Certifications-15-SP5-Updates","installer_updates":false,"description":"SLE-Module-Certifications-15-SP5-Updates for sle-15-x86_64","enabled":true,"id":6080,"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Certifications/15-SP5/x86_64/update/"},{"enabled":false,"id":6081,"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Certifications/15-SP5/x86_64/update_debug/","name":"SLE-Module-Certifications-15-SP5-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-Certifications-15-SP5-Debuginfo-Updates for sle-15-x86_64"},{"description":"SLE-Module-Certifications-15-SP5-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Certifications-15-SP5-Pool","distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Certifications/15-SP5/x86_64/product/","enabled":true,"id":6082},{"enabled":false,"id":6083,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Certifications/15-SP5/x86_64/product_debug/","name":"SLE-Module-Certifications-15-SP5-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-Certifications-15-SP5-Debuginfo-Pool for sle-15-x86_64"},{"id":6084,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Certifications/15-SP5/x86_64/product_source/","autorefresh":false,"distro_target":"sle-15-x86_64","name":"SLE-Module-Certifications-15-SP5-Source-Pool","installer_updates":false,"description":"SLE-Module-Certifications-15-SP5-Source-Pool for sle-15-x86_64"}],"online_predecessor_ids":[2393],"product_class":"MODULE","predecessor_ids":[2393],"release_type":null,"former_identifier":"sle-module-certifications","friendly_name":"Certifications Module 15 SP5 x86_64","migration_extra":false,"offline_predecessor_ids":[],"name":"Certifications Module","version":"15.5","recommended":false,"release_stage":"released","identifier":"sle-module-certifications","id":2558,"extensions":[],"friendly_version":"15 SP5"}],"release_stage":"beta","identifier":"SLES_SAP","id":2467,"recommended":false,"version":"15.5","offline_predecessor_ids":[1755,1880],"name":"SUSE Linux Enterprise Server for SAP Applications","former_identifier":"SUSE_SLES_SAP","release_type":null,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Server for SAP Applications 15 SP5 x86_64 (BETA)"},{"friendly_version":"15 SP5","extensions":[{"friendly_name":"Basesystem Module 15 SP5 x86_64","migration_extra":false,"former_identifier":"sle-module-basesystem","release_type":null,"name":"Basesystem Module","offline_predecessor_ids":[1212,1368,1440],"version":"15.5","recommended":true,"release_stage":"released","identifier":"sle-module-basesystem","id":2474,"extensions":[{"migration_extra":false,"friendly_name":"Desktop Applications Module 15 SP5 x86_64","release_type":null,"former_identifier":"sle-module-desktop-applications","name":"Desktop Applications Module","offline_predecessor_ids":[],"version":"15.5","recommended":true,"id":2478,"release_stage":"released","identifier":"sle-module-desktop-applications","extensions":[{"offline_predecessor_ids":[1341,1427,1630,1892],"name":"Development Tools Module","release_type":null,"former_identifier":"sle-sdk","friendly_name":"Development Tools Module 15 SP5 x86_64","migration_extra":false,"recommended":false,"version":"15.5","extensions":[],"release_stage":"released","identifier":"sle-module-development-tools","id":2490,"friendly_version":"15 SP5","eula_url":"","arch":"x86_64","free":true,"shortname":"Development-Tools-Module","description":"

The Development Tools Module helps you developing applications for SUSE Linux Enterprise 15.

Access to the Development Tools Module is included in your SUSE Linux Enterprise product subscription. The module has a different lifecycle than SUSE Linux Enterprise itself.

","product_type":"module","cpe":"cpe:/o:suse:sle-module-development-tools:15:sp5","predecessor_ids":[1579,1794,1971,2161,2315],"repositories":[{"installer_updates":false,"name":"SLE-Module-DevTools15-SP5-Updates","description":"SLE-Module-DevTools15-SP5-Updates for sle-15-x86_64","id":5788,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15-SP5/x86_64/update/","distro_target":"sle-15-x86_64","autorefresh":true},{"installer_updates":false,"name":"SLE-Module-DevTools15-SP5-Debuginfo-Updates","description":"SLE-Module-DevTools15-SP5-Debuginfo-Updates for sle-15-x86_64","id":5789,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15-SP5/x86_64/update_debug/","distro_target":"sle-15-x86_64","autorefresh":true},{"id":5790,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP5/x86_64/product/","distro_target":"sle-15-x86_64","autorefresh":false,"installer_updates":false,"name":"SLE-Module-DevTools15-SP5-Pool","description":"SLE-Module-DevTools15-SP5-Pool for sle-15-x86_64"},{"description":"SLE-Module-DevTools15-SP5-Debuginfo-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-DevTools15-SP5-Debuginfo-Pool","distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP5/x86_64/product_debug/","enabled":false,"id":5791},{"description":"SLE-Module-DevTools15-SP5-Source-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-DevTools15-SP5-Source-Pool","distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP5/x86_64/product_source/","enabled":false,"id":5792}],"online_predecessor_ids":[1579,1794,1971,2161,2315],"product_class":"MODULE"},{"repositories":[{"url":"https://download.nvidia.com/suse/sle15sp5/","autorefresh":true,"distro_target":null,"id":5680,"enabled":true,"description":"SLE-15-SP5-Desktop-NVIDIA-Driver","name":"SLE-15-SP5-Desktop-NVIDIA-Driver","installer_updates":false},{"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Product-WE/15-SP5/x86_64/update/","enabled":true,"id":5903,"description":"SLE-Product-WE15-SP5-Updates for sle-15-x86_64","name":"SLE-Product-WE15-SP5-Updates","installer_updates":false},{"id":5904,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-WE/15-SP5/x86_64/update_debug/","autorefresh":true,"distro_target":"sle-15-x86_64","name":"SLE-Product-WE15-SP5-Debuginfo-Updates","installer_updates":false,"description":"SLE-Product-WE15-SP5-Debuginfo-Updates for sle-15-x86_64"},{"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-WE/15-SP5/x86_64/product/","enabled":true,"id":5905,"description":"SLE-Product-WE15-SP5-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Product-WE15-SP5-Pool"},{"id":5906,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-WE/15-SP5/x86_64/product_debug/","distro_target":"sle-15-x86_64","autorefresh":false,"installer_updates":false,"name":"SLE-Product-WE15-SP5-Debuginfo-Pool","description":"SLE-Product-WE15-SP5-Debuginfo-Pool for sle-15-x86_64"},{"enabled":false,"id":5907,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Product-WE/15-SP5/x86_64/product_source/","name":"SLE-Product-WE15-SP5-Source-Pool","installer_updates":false,"description":"SLE-Product-WE15-SP5-Source-Pool for sle-15-x86_64"}],"online_predecessor_ids":[1781,1999,2196,2343],"product_class":"SLE-WE-BETA","predecessor_ids":[1781,1999,2196,2343],"cpe":"cpe:/o:suse:sle-we:15:sp5","product_type":"extension","shortname":"SLEWE15-SP5","description":"SUSE Linux Enterprise Workstation Extension adds additional functionality to a base SUSE Linux Enterprise installation. The Workstation Extension offers additional desktop applications (office suite, email client, graphical editor, multimedia tools) and libraries. Workstation Extension is enabled and installed by default on SUSE Linux Enterprise Desktop installation. Adding the Workstation Extension to a SUSE Linux Enterprise Server installation allows to seamlessly combine both products to create a full featured server workstation.","free":false,"arch":"x86_64","eula_url":"https://updates.suse.com/SUSE/Products/SLE-Product-WE/15-SP5/x86_64/product.license/","friendly_version":"15 SP5","release_stage":"beta","id":2513,"identifier":"sle-we","extensions":[],"version":"15.5","recommended":true,"friendly_name":"SUSE Linux Enterprise Workstation Extension 15 SP5 x86_64 (BETA)","migration_extra":false,"release_type":null,"former_identifier":"sle-we","name":"SUSE Linux Enterprise Workstation Extension","offline_predecessor_ids":[1639,1893]}],"friendly_version":"15 SP5","arch":"x86_64","eula_url":"","description":"

The SUSE Linux Enterprise Desktop Applications Module delivers a basic set of Desktop functionality.

Access to the Desktop Applications Module is included in your SUSE Linux Enterprise product subscription.

","shortname":"Desktop-Applications-Module","free":true,"cpe":"cpe:/o:suse:sle-module-desktop-applications:15:sp5","product_type":"module","product_class":"MODULE","online_predecessor_ids":[1578,1776,1967,2149,2303],"repositories":[{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15-SP5/x86_64/update/","distro_target":"sle-15-x86_64","autorefresh":true,"id":5728,"enabled":true,"description":"SLE-Module-Desktop-Applications15-SP5-Updates for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Desktop-Applications15-SP5-Updates"},{"name":"SLE-Module-Desktop-Applications15-SP5-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-Desktop-Applications15-SP5-Debuginfo-Updates for sle-15-x86_64","enabled":false,"id":5729,"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15-SP5/x86_64/update_debug/"},{"description":"SLE-Module-Desktop-Applications15-SP5-Pool for sle-15-x86_64","name":"SLE-Module-Desktop-Applications15-SP5-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP5/x86_64/product/","autorefresh":false,"distro_target":"sle-15-x86_64","id":5730,"enabled":true},{"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP5/x86_64/product_debug/","enabled":false,"id":5731,"description":"SLE-Module-Desktop-Applications15-SP5-Debuginfo-Pool for sle-15-x86_64","name":"SLE-Module-Desktop-Applications15-SP5-Debuginfo-Pool","installer_updates":false},{"installer_updates":false,"name":"SLE-Module-Desktop-Applications15-SP5-Source-Pool","description":"SLE-Module-Desktop-Applications15-SP5-Source-Pool for sle-15-x86_64","id":5732,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP5/x86_64/product_source/","distro_target":"sle-15-x86_64","autorefresh":false}],"predecessor_ids":[1578,1776,1967,2149,2303]},{"online_predecessor_ids":[2405],"product_class":"MODULE","repositories":[{"description":"SLE-Module-Python3-15-SP5-Updates for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Python3-15-SP5-Updates","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Python3/15-SP5/x86_64/update/","distro_target":"sle-15-x86_64","autorefresh":true,"id":5958,"enabled":true},{"description":"SLE-Module-Python3-15-SP5-Debuginfo-Updates for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Python3-15-SP5-Debuginfo-Updates","distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Python3/15-SP5/x86_64/update_debug/","enabled":false,"id":5959},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Python3/15-SP5/x86_64/product/","distro_target":"sle-15-x86_64","autorefresh":false,"id":5960,"enabled":true,"description":"SLE-Module-Python3-15-SP5-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Python3-15-SP5-Pool"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Python3/15-SP5/x86_64/product_debug/","distro_target":"sle-15-x86_64","autorefresh":false,"id":5961,"enabled":false,"description":"SLE-Module-Python3-15-SP5-Debuginfo-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Python3-15-SP5-Debuginfo-Pool"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Python3/15-SP5/x86_64/product_source/","autorefresh":false,"distro_target":"sle-15-x86_64","id":5962,"enabled":false,"description":"SLE-Module-Python3-15-SP5-Source-Pool for sle-15-x86_64","name":"SLE-Module-Python3-15-SP5-Source-Pool","installer_updates":false}],"predecessor_ids":[2405],"product_type":"module","cpe":"cpe:/o:suse:sle-module-python3:15:sp5","free":true,"description":"

This module contains the Python 3 packages.

Access to the Python 3 Module is included in your SUSE Linux Enterprise subscription. The module has a different lifecycle than SUSE Linux Enterprise itself; please check the Release Notes for further details.

","shortname":"Python 3-Module","arch":"x86_64","eula_url":"","friendly_version":"15 SP5","release_stage":"released","identifier":"sle-module-python3","id":2536,"extensions":[],"version":"15.5","recommended":false,"former_identifier":"sle-module-python3","release_type":null,"migration_extra":false,"friendly_name":"Python 3 Module 15 SP5 x86_64","offline_predecessor_ids":[],"name":"Python 3 Module"},{"product_type":"module","cpe":"cpe:/o:suse:packagehub:15:sp5","predecessor_ids":[1743,1871,1950,2191,2347],"online_predecessor_ids":[1743,1871,1950,2191,2347],"product_class":"MODULE","repositories":[{"description":"SUSE-PackageHub-15-SP5-Backports-Pool for sle-15-x86_64","installer_updates":false,"name":"SUSE-PackageHub-15-SP5-Backports-Pool","url":"https://updates.suse.com/SUSE/Backports/SLE-15-SP5_x86_64/standard/","distro_target":"sle-15-x86_64","autorefresh":false,"id":6113,"enabled":true},{"installer_updates":false,"name":"SUSE-PackageHub-15-SP5-Backports-Debuginfo","description":"SUSE-PackageHub-15-SP5-Backports-Debuginfo for sle-15-x86_64","id":6114,"enabled":false,"url":"https://updates.suse.com/SUSE/Backports/SLE-15-SP5_x86_64/standard_debug/","distro_target":"sle-15-x86_64","autorefresh":true},{"description":"SLE-Module-Packagehub-Subpackages15-SP5-Updates for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Packagehub-Subpackages15-SP5-Updates","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP5/x86_64/update/","distro_target":"sle-15-x86_64","autorefresh":true,"id":6115,"enabled":true},{"id":6116,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP5/x86_64/update_debug/","distro_target":"sle-15-x86_64","autorefresh":true,"installer_updates":false,"name":"SLE-Module-Packagehub-Subpackages15-SP5-Debuginfo-Updates","description":"SLE-Module-Packagehub-Subpackages15-SP5-Debuginfo-Updates for sle-15-x86_64"},{"name":"SUSE-PackageHub-15-SP5-Pool","installer_updates":false,"description":"SUSE-PackageHub-15-SP5-Pool for sle-15-x86_64","enabled":true,"id":6117,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Backports/SLE-15-SP5_x86_64/product/"},{"id":6118,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP5/x86_64/product/","distro_target":"sle-15-x86_64","autorefresh":false,"installer_updates":false,"name":"SLE-Module-Packagehub-Subpackages15-SP5-Pool","description":"SLE-Module-Packagehub-Subpackages15-SP5-Pool for sle-15-x86_64"},{"enabled":false,"id":6119,"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP5/x86_64/product_debug/","installer_updates":false,"name":"SLE-Module-Packagehub-Subpackages15-SP5-Debuginfo-Pool","description":"SLE-Module-Packagehub-Subpackages15-SP5-Debuginfo-Pool for sle-15-x86_64"},{"id":6120,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP5/x86_64/product_source/","autorefresh":false,"distro_target":"sle-15-x86_64","name":"SLE-Module-Packagehub-Subpackages15-SP5-Source-Pool","installer_updates":false,"description":"SLE-Module-Packagehub-Subpackages15-SP5-Source-Pool for sle-15-x86_64"}],"eula_url":"","arch":"x86_64","free":true,"description":"SUSE Package Hub is a free of charge module providing access to community maintained packages built to run on SUSE Linux Enterprise Server. Built from the same sources used in the openSUSE distributions, these quality packages provide additional software to what is found in the SUSE Linux Enterprise Server product. Packages from the Package Hub are delivered without L3 support from SUSE. General updates and fixes to the packages in SUSE Package Hub are provided by the openSUSE community based on their discretion, though SUSE will monitor and ensure that any known critical security issues will be addressed. Packages in the Package Hub are approved by SUSE for use with SUSE Linux Enterprise Server 15-SP5 and to not interfere with the supportability of SUSE Linux Enterprise Server, its modules and extensions. For more information about SUSE Package Hub please visit https://packagehub.suse.com.","shortname":"SUSE-PackageHub-15","extensions":[],"id":2562,"release_stage":"released","identifier":"PackageHub","friendly_version":"15 SP5","offline_predecessor_ids":[1529,1813,1915],"name":"SUSE Package Hub","release_type":null,"former_identifier":"PackageHub","migration_extra":false,"friendly_name":"SUSE Package Hub 15 SP5 x86_64","recommended":false,"version":"15.5"}],"friendly_version":"15 SP5","arch":"x86_64","eula_url":"","shortname":"Basesystem-Module","description":"

The SUSE Linux Enterprise Basesystem Module delivers the base system of the product.

","free":true,"cpe":"cpe:/o:suse:sle-module-basesystem:15:sp5","product_type":"module","product_class":"MODULE","online_predecessor_ids":[1576,1772,1946,2145,2299],"repositories":[{"description":"SLE-Module-Basesystem15-SP5-Updates for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Basesystem15-SP5-Updates","distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15-SP5/x86_64/update/","enabled":true,"id":5708},{"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15-SP5/x86_64/update_debug/","enabled":false,"id":5709,"description":"SLE-Module-Basesystem15-SP5-Debuginfo-Updates for sle-15-x86_64","name":"SLE-Module-Basesystem15-SP5-Debuginfo-Updates","installer_updates":false},{"description":"SLE-Module-Basesystem15-SP5-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Basesystem15-SP5-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP5/x86_64/product/","distro_target":"sle-15-x86_64","autorefresh":false,"id":5710,"enabled":true},{"description":"SLE-Module-Basesystem15-SP5-Debuginfo-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Basesystem15-SP5-Debuginfo-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP5/x86_64/product_debug/","distro_target":"sle-15-x86_64","autorefresh":false,"id":5711,"enabled":false},{"description":"SLE-Module-Basesystem15-SP5-Source-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Basesystem15-SP5-Source-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP5/x86_64/product_source/","distro_target":"sle-15-x86_64","autorefresh":false,"id":5712,"enabled":false}],"predecessor_ids":[1576,1772,1946,2145,2299]},{"description":"

This module contains the certification packages.

Access to the Certifications Module is included in your SUSE Linux Enterprise subscription. The module has a different lifecycle than SUSE Linux Enterprise itself; please check the Release Notes for further details.

","shortname":"Certifications-Module","free":true,"arch":"x86_64","eula_url":"","online_predecessor_ids":[2393],"product_class":"MODULE","repositories":[{"enabled":true,"id":6080,"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Certifications/15-SP5/x86_64/update/","name":"SLE-Module-Certifications-15-SP5-Updates","installer_updates":false,"description":"SLE-Module-Certifications-15-SP5-Updates for sle-15-x86_64"},{"distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Certifications/15-SP5/x86_64/update_debug/","enabled":false,"id":6081,"description":"SLE-Module-Certifications-15-SP5-Debuginfo-Updates for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Certifications-15-SP5-Debuginfo-Updates"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Certifications/15-SP5/x86_64/product/","distro_target":"sle-15-x86_64","autorefresh":false,"id":6082,"enabled":true,"description":"SLE-Module-Certifications-15-SP5-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Certifications-15-SP5-Pool"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Certifications/15-SP5/x86_64/product_debug/","distro_target":"sle-15-x86_64","autorefresh":false,"id":6083,"enabled":false,"description":"SLE-Module-Certifications-15-SP5-Debuginfo-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Certifications-15-SP5-Debuginfo-Pool"},{"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Certifications/15-SP5/x86_64/product_source/","enabled":false,"id":6084,"description":"SLE-Module-Certifications-15-SP5-Source-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Certifications-15-SP5-Source-Pool"}],"predecessor_ids":[2393],"cpe":"cpe:/o:suse:sle-module-certifications:15:sp5","product_type":"module","version":"15.5","recommended":false,"migration_extra":false,"friendly_name":"Certifications Module 15 SP5 x86_64","release_type":null,"former_identifier":"sle-module-certifications","name":"Certifications Module","offline_predecessor_ids":[],"friendly_version":"15 SP5","id":2558,"release_stage":"released","identifier":"sle-module-certifications","extensions":[]}],"identifier":"SLED","release_stage":"beta","id":2468,"recommended":false,"version":"15.5","offline_predecessor_ids":[1629],"name":"SUSE Linux Enterprise Desktop","former_identifier":"SLED","release_type":null,"friendly_name":"SUSE Linux Enterprise Desktop 15 SP5 x86_64 (BETA)","migration_extra":false,"predecessor_ids":[1935,2134,2295],"online_predecessor_ids":[1935,2134,2295],"product_class":"7260-BETA","repositories":[{"description":"SLE15-SP5-Installer-Updates for sle-15-x86_64","installer_updates":true,"name":"SLE15-SP5-Installer-Updates","distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-INSTALLER/15-SP5/x86_64/update/","enabled":false,"id":5663},{"enabled":true,"id":5677,"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Product-SLED/15-SP5/x86_64/update/","name":"SLE-Product-SLED15-SP5-Updates","installer_updates":false,"description":"SLE-Product-SLED15-SP5-Updates for sle-15-x86_64"},{"id":5678,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-SLED/15-SP5/x86_64/update_debug/","autorefresh":true,"distro_target":"sle-15-x86_64","name":"SLE-Product-SLED15-SP5-Debuginfo-Updates","installer_updates":false,"description":"SLE-Product-SLED15-SP5-Debuginfo-Updates for sle-15-x86_64"},{"description":"SLE-Product-SLED15-SP5-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Product-SLED15-SP5-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Product-SLED/15-SP5/x86_64/product/","distro_target":"sle-15-x86_64","autorefresh":false,"id":5679,"enabled":true},{"description":"SLE-15-SP5-Desktop-NVIDIA-Driver","installer_updates":false,"name":"SLE-15-SP5-Desktop-NVIDIA-Driver","distro_target":null,"autorefresh":true,"url":"https://download.nvidia.com/suse/sle15sp5/","enabled":true,"id":5680},{"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-SLED/15-SP5/x86_64/product_debug/","enabled":false,"id":5681,"description":"SLE-Product-SLED15-SP5-Debuginfo-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Product-SLED15-SP5-Debuginfo-Pool"},{"description":"SLE-Product-SLED15-SP5-Source-Pool for sle-15-x86_64","name":"SLE-Product-SLED15-SP5-Source-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Product-SLED/15-SP5/x86_64/product_source/","enabled":false,"id":5682}],"product_type":"base","cpe":"cpe:/o:suse:sled:15:sp5","free":false,"description":"SUSE Linux Enterprise offers a comprehensive suite of products built on a single code base. The platform addresses business needs from the smallest thin-client devices to the world's most powerful high-performance computing and mainframe servers. SUSE Linux Enterprise offers common management tools and technology certifications across the platform, and each product is enterprise-class. SUSE Linux Enterprise provides more than a cute desktop product or a basic server offering. It is the only Linux platform for enterprise computing, and it is now replacing UNIX* and Windows* as well.","shortname":"SLED15-SP5","eula_url":"https://updates.suse.com/SUSE/Products/SLE-Product-SLED/15-SP5/x86_64/product.license/","arch":"x86_64"},{"predecessor_ids":[1933,2132,2353],"product_class":"HPC-ARM64-BETA","online_predecessor_ids":[1933,2132,2353],"repositories":[{"description":"SLE15-SP5-Installer-Updates for sle-15-aarch64","installer_updates":true,"name":"SLE15-SP5-Installer-Updates","url":"https://updates.suse.com/SUSE/Updates/SLE-INSTALLER/15-SP5/aarch64/update/","distro_target":"sle-15-aarch64","autorefresh":true,"id":5645,"enabled":false},{"name":"SLE-Product-HPC-15-SP5-Updates","installer_updates":false,"description":"SLE-Product-HPC-15-SP5-Updates for sle-15-aarch64","id":5683,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-HPC/15-SP5/aarch64/update/","autorefresh":true,"distro_target":"sle-15-aarch64"},{"enabled":false,"id":5684,"autorefresh":true,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Updates/SLE-Product-HPC/15-SP5/aarch64/update_debug/","name":"SLE-Product-HPC15-SP5-Debuginfo-Updates","installer_updates":false,"description":"SLE-Product-HPC15-SP5-Debuginfo-Updates for sle-15-aarch64"},{"description":"SLE-Product-HPC-15-SP5-Pool for sle-15-aarch64","installer_updates":false,"name":"SLE-Product-HPC-15-SP5-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Product-HPC/15-SP5/aarch64/product/","distro_target":"sle-15-aarch64","autorefresh":false,"id":5685,"enabled":true},{"name":"SLE-Product-HPC15-SP5-Debuginfo-Pool","installer_updates":false,"description":"SLE-Product-HPC15-SP5-Debuginfo-Pool for sle-15-aarch64","id":5686,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-HPC/15-SP5/aarch64/product_debug/","autorefresh":false,"distro_target":"sle-15-aarch64"},{"installer_updates":false,"name":"SLE-Product-HPC15-SP5-Source-Pool","description":"SLE-Product-HPC15-SP5-Source-Pool for sle-15-aarch64","enabled":false,"id":5687,"distro_target":"sle-15-aarch64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-HPC/15-SP5/aarch64/product_source/"}],"product_type":"base","cpe":"cpe:/o:suse:sle_hpc:15:sp5","free":false,"shortname":"SLE-15-SP5-HPC","description":"

SUSE Linux Enterprise High Performance Computing is a highly scalable, high performance open source operating system designed to utilize the power of parallel computing for modeling, simulation and advanced analytics workloads.

","eula_url":"https://updates.suse.com/SUSE/Products/SLE-Product-HPC/15-SP5/aarch64/product.license/","arch":"aarch64","friendly_version":"15 SP5","extensions":[{"identifier":"sle-module-basesystem","release_stage":"released","id":2471,"extensions":[{"recommended":true,"version":"15.5","name":"Desktop Applications Module","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"Desktop Applications Module 15 SP5 aarch64","release_type":null,"former_identifier":"sle-module-desktop-applications","friendly_version":"15 SP5","extensions":[{"friendly_version":"15 SP5","identifier":"sle-module-development-tools","release_stage":"released","id":2487,"extensions":[{"repositories":[{"description":"SLE-Module-NVIDIA-Compute-15-Updates for sle-15-aarch64","name":"SLE-Module-NVIDIA-Compute-15-Updates","installer_updates":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-NVIDIA-Compute/15/aarch64/update/","autorefresh":true,"distro_target":"sle-15-aarch64","id":4560,"enabled":true},{"description":"SLE-Module-NVIDIA-Compute-15-Pool for sle-15-aarch64","name":"SLE-Module-NVIDIA-Compute-15-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-NVIDIA-Compute/15/aarch64/product/","enabled":true,"id":4561},{"installer_updates":false,"name":"NVIDIA-Compute-SLE-15","description":"NVIDIA-Compute-SLE-15","enabled":true,"id":4562,"distro_target":null,"autorefresh":true,"url":"https://developer.download.nvidia.com/compute/cuda/repos/sles15/sbsa/"}],"online_predecessor_ids":[],"product_class":"MODULE","predecessor_ids":[],"cpe":"cpe:/o:suse:sle-module-nvidia-compute:15","product_type":"module","description":"NVIDIA Compute Drivers - NVIDIA CUDA This Module contains software under the terms and conditions of a 3rd party EULA (End User License Agreement). The EULA can be found at https://docs.nvidia.com/cuda/eula/index.html. By using this software you agree to fully comply with the terms and conditions of the EULA. If you do not agree to the terms and conditions of the EULA, do not use the software.","shortname":"NVIDIA-Compute-Module","free":true,"arch":"aarch64","eula_url":"https://updates.suse.com/SUSE/Products/SLE-Module-NVIDIA-Compute/15/aarch64/product.license/","friendly_version":"15","release_stage":"released","identifier":"sle-module-NVIDIA-compute","id":2130,"extensions":[],"version":"15","recommended":false,"migration_extra":false,"friendly_name":"NVIDIA Compute Module 15 aarch64","former_identifier":"sle-module-NVIDIA-compute","release_type":null,"name":"NVIDIA Compute Module","offline_predecessor_ids":[]}],"version":"15.5","recommended":true,"release_type":null,"former_identifier":"sle-sdk","friendly_name":"Development Tools Module 15 SP5 aarch64","migration_extra":false,"offline_predecessor_ids":[1376,1430,1633,1889],"name":"Development Tools Module","repositories":[{"id":5773,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15-SP5/aarch64/update/","autorefresh":true,"distro_target":"sle-15-aarch64","name":"SLE-Module-DevTools15-SP5-Updates","installer_updates":false,"description":"SLE-Module-DevTools15-SP5-Updates for sle-15-aarch64"},{"name":"SLE-Module-DevTools15-SP5-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-DevTools15-SP5-Debuginfo-Updates for sle-15-aarch64","enabled":false,"id":5774,"autorefresh":true,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15-SP5/aarch64/update_debug/"},{"description":"SLE-Module-DevTools15-SP5-Pool for sle-15-aarch64","installer_updates":false,"name":"SLE-Module-DevTools15-SP5-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP5/aarch64/product/","distro_target":"sle-15-aarch64","autorefresh":false,"id":5775,"enabled":true},{"enabled":false,"id":5776,"autorefresh":false,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP5/aarch64/product_debug/","name":"SLE-Module-DevTools15-SP5-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-DevTools15-SP5-Debuginfo-Pool for sle-15-aarch64"},{"description":"SLE-Module-DevTools15-SP5-Source-Pool for sle-15-aarch64","installer_updates":false,"name":"SLE-Module-DevTools15-SP5-Source-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP5/aarch64/product_source/","distro_target":"sle-15-aarch64","autorefresh":false,"id":5777,"enabled":false}],"online_predecessor_ids":[1598,1791,1968,2158,2312],"product_class":"MODULE","predecessor_ids":[1598,1791,1968,2158,2312],"product_type":"module","cpe":"cpe:/o:suse:sle-module-development-tools:15:sp5","free":true,"shortname":"Development-Tools-Module","description":"

The Development Tools Module helps you developing applications for SUSE Linux Enterprise 15.

Access to the Development Tools Module is included in your SUSE Linux Enterprise product subscription. The module has a different lifecycle than SUSE Linux Enterprise itself.

","arch":"aarch64","eula_url":""}],"id":2475,"release_stage":"released","identifier":"sle-module-desktop-applications","description":"

The SUSE Linux Enterprise Desktop Applications Module delivers a basic set of Desktop functionality.

Access to the Desktop Applications Module is included in your SUSE Linux Enterprise product subscription.

","shortname":"Desktop-Applications-Module","free":true,"eula_url":"","arch":"aarch64","predecessor_ids":[1595,1773,1964,2146,2300],"online_predecessor_ids":[1595,1773,1964,2146,2300],"product_class":"MODULE","repositories":[{"name":"SLE-Module-Desktop-Applications15-SP5-Updates","installer_updates":false,"description":"SLE-Module-Desktop-Applications15-SP5-Updates for sle-15-aarch64","id":5713,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15-SP5/aarch64/update/","autorefresh":true,"distro_target":"sle-15-aarch64"},{"name":"SLE-Module-Desktop-Applications15-SP5-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-Desktop-Applications15-SP5-Debuginfo-Updates for sle-15-aarch64","id":5714,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15-SP5/aarch64/update_debug/","autorefresh":true,"distro_target":"sle-15-aarch64"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP5/aarch64/product/","distro_target":"sle-15-aarch64","autorefresh":false,"id":5715,"enabled":true,"description":"SLE-Module-Desktop-Applications15-SP5-Pool for sle-15-aarch64","installer_updates":false,"name":"SLE-Module-Desktop-Applications15-SP5-Pool"},{"distro_target":"sle-15-aarch64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP5/aarch64/product_debug/","enabled":false,"id":5716,"description":"SLE-Module-Desktop-Applications15-SP5-Debuginfo-Pool for sle-15-aarch64","installer_updates":false,"name":"SLE-Module-Desktop-Applications15-SP5-Debuginfo-Pool"},{"id":5717,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP5/aarch64/product_source/","distro_target":"sle-15-aarch64","autorefresh":false,"installer_updates":false,"name":"SLE-Module-Desktop-Applications15-SP5-Source-Pool","description":"SLE-Module-Desktop-Applications15-SP5-Source-Pool for sle-15-aarch64"}],"cpe":"cpe:/o:suse:sle-module-desktop-applications:15:sp5","product_type":"module"},{"identifier":"sle-module-server-applications","release_stage":"released","id":2479,"extensions":[{"description":"

The SUSE Linux Enterprise Web and Scripting Module should contains additional packages that are helpful when running a webserver.

Access to the Web and Scripting Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself: Package versions in this module are usually supported for at most three years. We are planning to release more recent versions on a schedule of approximately 18 month; the exact dates may differ per package.

","shortname":"Web-Scripting-Module","free":true,"eula_url":"","arch":"aarch64","predecessor_ids":[1718,1795,1973,2162,2316],"repositories":[{"autorefresh":true,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/15-SP5/aarch64/update/","enabled":true,"id":5793,"description":"SLE-Module-Web-Scripting15-SP5-Updates for sle-15-aarch64","name":"SLE-Module-Web-Scripting15-SP5-Updates","installer_updates":false},{"description":"SLE-Module-Web-Scripting15-SP5-Debuginfo-Updates for sle-15-aarch64","installer_updates":false,"name":"SLE-Module-Web-Scripting15-SP5-Debuginfo-Updates","distro_target":"sle-15-aarch64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/15-SP5/aarch64/update_debug/","enabled":false,"id":5794},{"installer_updates":false,"name":"SLE-Module-Web-Scripting15-SP5-Pool","description":"SLE-Module-Web-Scripting15-SP5-Pool for sle-15-aarch64","enabled":true,"id":5795,"distro_target":"sle-15-aarch64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP5/aarch64/product/"},{"installer_updates":false,"name":"SLE-Module-Web-Scripting15-SP5-Debuginfo-Pool","description":"SLE-Module-Web-Scripting15-SP5-Debuginfo-Pool for sle-15-aarch64","enabled":false,"id":5796,"distro_target":"sle-15-aarch64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP5/aarch64/product_debug/"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP5/aarch64/product_source/","autorefresh":false,"distro_target":"sle-15-aarch64","id":5797,"enabled":false,"description":"SLE-Module-Web-Scripting15-SP5-Source-Pool for sle-15-aarch64","name":"SLE-Module-Web-Scripting15-SP5-Source-Pool","installer_updates":false}],"online_predecessor_ids":[1718,1795,1973,2162,2316],"product_class":"MODULE","cpe":"cpe:/o:suse:sle-module-web-scripting:15:sp5","product_type":"module","recommended":true,"version":"15.5","name":"Web and Scripting Module","offline_predecessor_ids":[1539],"friendly_name":"Web and Scripting Module 15 SP5 aarch64","migration_extra":false,"former_identifier":"sle-module-web-scripting","release_type":null,"friendly_version":"15 SP5","extensions":[{"eula_url":"","arch":"aarch64","shortname":"HPC-Module","description":"

The SUSE Linux Enterprise Server High Performance Computing (HPC) module delivers specific tools commonly used for high performance, numerically intensive workloads.

SUSE packages these tools in the SLES HPC Module to provide greater flexibility to deliver new versions or new tools more rapidly than the standard SUSE Linux Enterprise lifecycle would permit.

Packages in this module are generally supported until a newer version of the package is released or the package is dropped from the module.

","free":true,"cpe":"cpe:/o:suse:sle-module-hpc:15:sp5","product_type":"module","predecessor_ids":[1733,1799,1977,2166,2355],"online_predecessor_ids":[1733,1799,1977,2166,2355],"repositories":[{"description":"SLE-Module-HPC15-SP5-Updates for sle-15-aarch64","installer_updates":false,"name":"SLE-Module-HPC15-SP5-Updates","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-HPC/15-SP5/aarch64/update/","distro_target":"sle-15-aarch64","autorefresh":true,"id":5813,"enabled":true},{"name":"SLE-Module-HPC15-SP5-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-HPC15-SP5-Debuginfo-Updates for sle-15-aarch64","id":5814,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-HPC/15-SP5/aarch64/update_debug/","autorefresh":true,"distro_target":"sle-15-aarch64"},{"description":"SLE-Module-HPC15-SP5-Pool for sle-15-aarch64","name":"SLE-Module-HPC15-SP5-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-HPC/15-SP5/aarch64/product/","enabled":true,"id":5815},{"autorefresh":false,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-HPC/15-SP5/aarch64/product_debug/","enabled":false,"id":5816,"description":"SLE-Module-HPC15-SP5-Debuginfo-Pool for sle-15-aarch64","name":"SLE-Module-HPC15-SP5-Debuginfo-Pool","installer_updates":false},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-HPC/15-SP5/aarch64/product_source/","distro_target":"sle-15-aarch64","autorefresh":false,"id":5817,"enabled":false,"description":"SLE-Module-HPC15-SP5-Source-Pool for sle-15-aarch64","installer_updates":false,"name":"SLE-Module-HPC15-SP5-Source-Pool"}],"product_class":"MODULE","name":"HPC Module","offline_predecessor_ids":[1522],"migration_extra":false,"friendly_name":"HPC Module 15 SP5 aarch64","former_identifier":"sle-module-hpc","release_type":null,"recommended":true,"version":"15.5","extensions":[],"release_stage":"released","identifier":"sle-module-hpc","id":2495,"friendly_version":"15 SP5"}],"release_stage":"released","id":2491,"identifier":"sle-module-web-scripting"},{"friendly_name":"Public Cloud Module 15 SP5 aarch64","migration_extra":false,"release_type":null,"former_identifier":"sle-module-public-cloud","name":"Public Cloud Module","offline_predecessor_ids":[1528],"version":"15.5","recommended":false,"release_stage":"released","id":2501,"identifier":"sle-module-public-cloud","extensions":[],"friendly_version":"15 SP5","arch":"aarch64","eula_url":"","shortname":"Public-Cloud-Module","description":"

The Public Cloud Module is a collection of tools that enables you to create and manage cloud images from the commandline on SUSE Linux Enterprise Server. When building your own images with KIWI or SUSE Studio, initialization code specific to the target cloud is included in that image.

Access to the Public Cloud Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself; please check the Release Notes for further details.

","free":true,"cpe":"cpe:/o:suse:sle-module-public-cloud:15:sp5","product_type":"module","online_predecessor_ids":[1645,1805,1985,2172,2324],"product_class":"MODULE","repositories":[{"enabled":true,"id":5843,"distro_target":"sle-15-aarch64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/15-SP5/aarch64/update/","installer_updates":false,"name":"SLE-Module-Public-Cloud15-SP5-Updates","description":"SLE-Module-Public-Cloud15-SP5-Updates for sle-15-aarch64"},{"id":5844,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/15-SP5/aarch64/update_debug/","autorefresh":true,"distro_target":"sle-15-aarch64","name":"SLE-Module-Public-Cloud15-SP5-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-Public-Cloud15-SP5-Debuginfo-Updates for sle-15-aarch64"},{"enabled":true,"id":5845,"autorefresh":false,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP5/aarch64/product/","name":"SLE-Module-Public-Cloud15-SP5-Pool","installer_updates":false,"description":"SLE-Module-Public-Cloud15-SP5-Pool for sle-15-aarch64"},{"id":5846,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP5/aarch64/product_debug/","autorefresh":false,"distro_target":"sle-15-aarch64","name":"SLE-Module-Public-Cloud15-SP5-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-Public-Cloud15-SP5-Debuginfo-Pool for sle-15-aarch64"},{"enabled":false,"id":5847,"autorefresh":false,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP5/aarch64/product_source/","name":"SLE-Module-Public-Cloud15-SP5-Source-Pool","installer_updates":false,"description":"SLE-Module-Public-Cloud15-SP5-Source-Pool for sle-15-aarch64"}],"predecessor_ids":[1645,1805,1985,2172,2324]},{"product_type":"extension","cpe":"cpe:/o:suse:sle-ha:15:sp5","predecessor_ids":[1608,1782,1956,2192,2337],"repositories":[{"installer_updates":false,"name":"SLE-Product-HA15-SP5-Updates","description":"SLE-Product-HA15-SP5-Updates for sle-15-aarch64","enabled":true,"id":5908,"distro_target":"sle-15-aarch64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-HA/15-SP5/aarch64/update/"},{"name":"SLE-Product-HA15-SP5-Debuginfo-Updates","installer_updates":false,"description":"SLE-Product-HA15-SP5-Debuginfo-Updates for sle-15-aarch64","enabled":false,"id":5909,"autorefresh":true,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Updates/SLE-Product-HA/15-SP5/aarch64/update_debug/"},{"enabled":true,"id":5910,"distro_target":"sle-15-aarch64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP5/aarch64/product/","installer_updates":false,"name":"SLE-Product-HA15-SP5-Pool","description":"SLE-Product-HA15-SP5-Pool for sle-15-aarch64"},{"enabled":false,"id":5911,"distro_target":"sle-15-aarch64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP5/aarch64/product_debug/","installer_updates":false,"name":"SLE-Product-HA15-SP5-Debuginfo-Pool","description":"SLE-Product-HA15-SP5-Debuginfo-Pool for sle-15-aarch64"},{"installer_updates":false,"name":"SLE-Product-HA15-SP5-Source-Pool","description":"SLE-Product-HA15-SP5-Source-Pool for sle-15-aarch64","enabled":false,"id":5912,"distro_target":"sle-15-aarch64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP5/aarch64/product_source/"}],"online_predecessor_ids":[1608,1782,1956,2192,2337],"product_class":"SLE-HAE-ARM64-BETA","eula_url":"","arch":"aarch64","free":false,"shortname":"SLEHA15-SP5","description":"SUSE Linux High Availability Extension provides mature, industry-leading open-source high-availability clustering technologies that are easy to set up and use. It can be deployed in physical and/or virtual environments, and can cluster physical servers, virtual servers, or any combination of the two to suit your business’ needs.","extensions":[],"release_stage":"beta","identifier":"sle-ha","id":2514,"friendly_version":"15 SP5","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise High Availability Extension","former_identifier":"sle-ha","release_type":null,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise High Availability Extension 15 SP5 aarch64 (BETA)","recommended":false,"version":"15.5"}],"friendly_version":"15 SP5","release_type":null,"former_identifier":"sle-module-server-applications","friendly_name":"Server Applications Module 15 SP5 aarch64","migration_extra":false,"offline_predecessor_ids":[],"name":"Server Applications Module","version":"15.5","recommended":true,"product_type":"module","cpe":"cpe:/o:suse:sle-module-server-applications:15:sp5","online_predecessor_ids":[1601,1777,1952,2150,2304],"product_class":"MODULE","repositories":[{"id":5733,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15-SP5/aarch64/update/","distro_target":"sle-15-aarch64","autorefresh":true,"installer_updates":false,"name":"SLE-Module-Server-Applications15-SP5-Updates","description":"SLE-Module-Server-Applications15-SP5-Updates for sle-15-aarch64"},{"enabled":false,"id":5734,"autorefresh":true,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15-SP5/aarch64/update_debug/","name":"SLE-Module-Server-Applications15-SP5-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-Server-Applications15-SP5-Debuginfo-Updates for sle-15-aarch64"},{"description":"SLE-Module-Server-Applications15-SP5-Pool for sle-15-aarch64","installer_updates":false,"name":"SLE-Module-Server-Applications15-SP5-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP5/aarch64/product/","distro_target":"sle-15-aarch64","autorefresh":false,"id":5735,"enabled":true},{"description":"SLE-Module-Server-Applications15-SP5-Debuginfo-Pool for sle-15-aarch64","installer_updates":false,"name":"SLE-Module-Server-Applications15-SP5-Debuginfo-Pool","distro_target":"sle-15-aarch64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP5/aarch64/product_debug/","enabled":false,"id":5736},{"description":"SLE-Module-Server-Applications15-SP5-Source-Pool for sle-15-aarch64","name":"SLE-Module-Server-Applications15-SP5-Source-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP5/aarch64/product_source/","enabled":false,"id":5737}],"predecessor_ids":[1601,1777,1952,2150,2304],"arch":"aarch64","eula_url":"","free":true,"shortname":"Server-Applications-Module","description":"

The SUSE Linux Enterprise Server Applications Module delivers a basic set of Server functionality.

Access to the Server Applications Module is included in your SUSE Linux Enterprise Server subscription.

"},{"friendly_name":"Containers Module 15 SP5 aarch64","migration_extra":false,"release_type":null,"former_identifier":"sle-module-containers","name":"Containers Module","offline_predecessor_ids":[],"version":"15.5","recommended":false,"id":2483,"release_stage":"released","identifier":"sle-module-containers","extensions":[],"friendly_version":"15 SP5","arch":"aarch64","eula_url":"","description":"

This Module contains several packages revolving around containers and related tools.

","shortname":"Containers-Module","free":true,"cpe":"cpe:/o:suse:sle-module-containers:15:sp5","product_type":"module","online_predecessor_ids":[1920,1960,2154,2308],"repositories":[{"id":5753,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/15-SP5/aarch64/update/","autorefresh":true,"distro_target":"sle-15-aarch64","name":"SLE-Module-Containers15-SP5-Updates","installer_updates":false,"description":"SLE-Module-Containers15-SP5-Updates for sle-15-aarch64"},{"enabled":false,"id":5754,"distro_target":"sle-15-aarch64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/15-SP5/aarch64/update_debug/","installer_updates":false,"name":"SLE-Module-Containers15-SP5-Debuginfo-Updates","description":"SLE-Module-Containers15-SP5-Debuginfo-Updates for sle-15-aarch64"},{"distro_target":"sle-15-aarch64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP5/aarch64/product/","enabled":true,"id":5755,"description":"SLE-Module-Containers15-SP5-Pool for sle-15-aarch64","installer_updates":false,"name":"SLE-Module-Containers15-SP5-Pool"},{"id":5756,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP5/aarch64/product_debug/","autorefresh":false,"distro_target":"sle-15-aarch64","name":"SLE-Module-Containers15-SP5-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-Containers15-SP5-Debuginfo-Pool for sle-15-aarch64"},{"name":"SLE-Module-Containers15-SP5-Source-Pool","installer_updates":false,"description":"SLE-Module-Containers15-SP5-Source-Pool for sle-15-aarch64","enabled":false,"id":5757,"autorefresh":false,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP5/aarch64/product_source/"}],"product_class":"MODULE","predecessor_ids":[1920,1960,2154,2308]},{"cpe":"cpe:/o:suse:sle-module-python3:15:sp5","product_type":"module","online_predecessor_ids":[2402],"repositories":[{"installer_updates":false,"name":"SLE-Module-Python3-15-SP5-Updates","description":"SLE-Module-Python3-15-SP5-Updates for sle-15-aarch64","id":5943,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Python3/15-SP5/aarch64/update/","distro_target":"sle-15-aarch64","autorefresh":true},{"enabled":false,"id":5944,"autorefresh":true,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Python3/15-SP5/aarch64/update_debug/","name":"SLE-Module-Python3-15-SP5-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-Python3-15-SP5-Debuginfo-Updates for sle-15-aarch64"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Python3/15-SP5/aarch64/product/","autorefresh":false,"distro_target":"sle-15-aarch64","id":5945,"enabled":true,"description":"SLE-Module-Python3-15-SP5-Pool for sle-15-aarch64","name":"SLE-Module-Python3-15-SP5-Pool","installer_updates":false},{"description":"SLE-Module-Python3-15-SP5-Debuginfo-Pool for sle-15-aarch64","name":"SLE-Module-Python3-15-SP5-Debuginfo-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Python3/15-SP5/aarch64/product_debug/","autorefresh":false,"distro_target":"sle-15-aarch64","id":5946,"enabled":false},{"autorefresh":false,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Python3/15-SP5/aarch64/product_source/","enabled":false,"id":5947,"description":"SLE-Module-Python3-15-SP5-Source-Pool for sle-15-aarch64","name":"SLE-Module-Python3-15-SP5-Source-Pool","installer_updates":false}],"product_class":"MODULE","predecessor_ids":[2402],"arch":"aarch64","eula_url":"","description":"

This module contains the Python 3 packages.

Access to the Python 3 Module is included in your SUSE Linux Enterprise subscription. The module has a different lifecycle than SUSE Linux Enterprise itself; please check the Release Notes for further details.

","shortname":"Python 3-Module","free":true,"id":2533,"release_stage":"released","identifier":"sle-module-python3","extensions":[],"friendly_version":"15 SP5","friendly_name":"Python 3 Module 15 SP5 aarch64","migration_extra":false,"former_identifier":"sle-module-python3","release_type":null,"name":"Python 3 Module","offline_predecessor_ids":[],"version":"15.5","recommended":false}],"friendly_version":"15 SP5","release_type":null,"former_identifier":"sle-module-basesystem","migration_extra":false,"friendly_name":"Basesystem Module 15 SP5 aarch64","offline_predecessor_ids":[1522],"name":"Basesystem Module","version":"15.5","recommended":true,"product_type":"module","cpe":"cpe:/o:suse:sle-module-basesystem:15:sp5","online_predecessor_ids":[1589,1769,1943,2142,2296],"product_class":"MODULE","repositories":[{"name":"SLE-Module-Basesystem15-SP5-Updates","installer_updates":false,"description":"SLE-Module-Basesystem15-SP5-Updates for sle-15-aarch64","id":5693,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15-SP5/aarch64/update/","autorefresh":true,"distro_target":"sle-15-aarch64"},{"description":"SLE-Module-Basesystem15-SP5-Debuginfo-Updates for sle-15-aarch64","name":"SLE-Module-Basesystem15-SP5-Debuginfo-Updates","installer_updates":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15-SP5/aarch64/update_debug/","autorefresh":true,"distro_target":"sle-15-aarch64","id":5694,"enabled":false},{"description":"SLE-Module-Basesystem15-SP5-Pool for sle-15-aarch64","installer_updates":false,"name":"SLE-Module-Basesystem15-SP5-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP5/aarch64/product/","distro_target":"sle-15-aarch64","autorefresh":false,"id":5695,"enabled":true},{"name":"SLE-Module-Basesystem15-SP5-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-Basesystem15-SP5-Debuginfo-Pool for sle-15-aarch64","enabled":false,"id":5696,"autorefresh":false,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP5/aarch64/product_debug/"},{"enabled":false,"id":5697,"autorefresh":false,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP5/aarch64/product_source/","name":"SLE-Module-Basesystem15-SP5-Source-Pool","installer_updates":false,"description":"SLE-Module-Basesystem15-SP5-Source-Pool for sle-15-aarch64"}],"predecessor_ids":[1589,1769,1943,2142,2296],"arch":"aarch64","eula_url":"","free":true,"description":"

The SUSE Linux Enterprise Basesystem Module delivers the base system of the product.

","shortname":"Basesystem-Module"},{"release_stage":"released","identifier":"sle-module-certifications","id":2555,"extensions":[],"friendly_version":"15 SP5","release_type":null,"former_identifier":"sle-module-certifications","migration_extra":false,"friendly_name":"Certifications Module 15 SP5 aarch64","offline_predecessor_ids":[],"name":"Certifications Module","version":"15.5","recommended":false,"product_type":"module","cpe":"cpe:/o:suse:sle-module-certifications:15:sp5","online_predecessor_ids":[2390],"repositories":[{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Certifications/15-SP5/aarch64/update/","distro_target":"sle-15-aarch64","autorefresh":true,"id":6065,"enabled":true,"description":"SLE-Module-Certifications-15-SP5-Updates for sle-15-aarch64","installer_updates":false,"name":"SLE-Module-Certifications-15-SP5-Updates"},{"id":6066,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Certifications/15-SP5/aarch64/update_debug/","distro_target":"sle-15-aarch64","autorefresh":true,"installer_updates":false,"name":"SLE-Module-Certifications-15-SP5-Debuginfo-Updates","description":"SLE-Module-Certifications-15-SP5-Debuginfo-Updates for sle-15-aarch64"},{"enabled":true,"id":6067,"autorefresh":false,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Certifications/15-SP5/aarch64/product/","name":"SLE-Module-Certifications-15-SP5-Pool","installer_updates":false,"description":"SLE-Module-Certifications-15-SP5-Pool for sle-15-aarch64"},{"description":"SLE-Module-Certifications-15-SP5-Debuginfo-Pool for sle-15-aarch64","name":"SLE-Module-Certifications-15-SP5-Debuginfo-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Certifications/15-SP5/aarch64/product_debug/","autorefresh":false,"distro_target":"sle-15-aarch64","id":6068,"enabled":false},{"distro_target":"sle-15-aarch64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Certifications/15-SP5/aarch64/product_source/","enabled":false,"id":6069,"description":"SLE-Module-Certifications-15-SP5-Source-Pool for sle-15-aarch64","installer_updates":false,"name":"SLE-Module-Certifications-15-SP5-Source-Pool"}],"product_class":"MODULE","predecessor_ids":[2390],"arch":"aarch64","eula_url":"","free":true,"shortname":"Certifications-Module","description":"

This module contains the certification packages.

Access to the Certifications Module is included in your SUSE Linux Enterprise subscription. The module has a different lifecycle than SUSE Linux Enterprise itself; please check the Release Notes for further details.

"}],"id":2469,"release_stage":"beta","identifier":"SLE_HPC","recommended":false,"version":"15.5","offline_predecessor_ids":[1628,1758,1872,1875],"name":"SUSE Linux Enterprise High Performance Computing","former_identifier":"SLE_HPC","release_type":null,"friendly_name":"SUSE Linux Enterprise High Performance Computing 15 SP5 aarch64 (BETA)","migration_extra":false},{"recommended":false,"version":"15.5","offline_predecessor_ids":[1625,1759,1873,1878],"name":"SUSE Linux Enterprise High Performance Computing","release_type":null,"former_identifier":"SLE_HPC","friendly_name":"SUSE Linux Enterprise High Performance Computing 15 SP5 x86_64 (BETA)","migration_extra":false,"friendly_version":"15 SP5","extensions":[{"name":"Basesystem Module","offline_predecessor_ids":[1212,1368,1440],"migration_extra":false,"friendly_name":"Basesystem Module 15 SP5 x86_64","former_identifier":"sle-module-basesystem","release_type":null,"recommended":true,"version":"15.5","extensions":[{"arch":"x86_64","eula_url":"","shortname":"Desktop-Applications-Module","description":"

The SUSE Linux Enterprise Desktop Applications Module delivers a basic set of Desktop functionality.

Access to the Desktop Applications Module is included in your SUSE Linux Enterprise product subscription.

","free":true,"cpe":"cpe:/o:suse:sle-module-desktop-applications:15:sp5","product_type":"module","online_predecessor_ids":[1578,1776,1967,2149,2303],"product_class":"MODULE","repositories":[{"description":"SLE-Module-Desktop-Applications15-SP5-Updates for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Desktop-Applications15-SP5-Updates","distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15-SP5/x86_64/update/","enabled":true,"id":5728},{"installer_updates":false,"name":"SLE-Module-Desktop-Applications15-SP5-Debuginfo-Updates","description":"SLE-Module-Desktop-Applications15-SP5-Debuginfo-Updates for sle-15-x86_64","id":5729,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15-SP5/x86_64/update_debug/","distro_target":"sle-15-x86_64","autorefresh":true},{"id":5730,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP5/x86_64/product/","distro_target":"sle-15-x86_64","autorefresh":false,"installer_updates":false,"name":"SLE-Module-Desktop-Applications15-SP5-Pool","description":"SLE-Module-Desktop-Applications15-SP5-Pool for sle-15-x86_64"},{"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP5/x86_64/product_debug/","enabled":false,"id":5731,"description":"SLE-Module-Desktop-Applications15-SP5-Debuginfo-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Desktop-Applications15-SP5-Debuginfo-Pool"},{"enabled":false,"id":5732,"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP5/x86_64/product_source/","installer_updates":false,"name":"SLE-Module-Desktop-Applications15-SP5-Source-Pool","description":"SLE-Module-Desktop-Applications15-SP5-Source-Pool for sle-15-x86_64"}],"predecessor_ids":[1578,1776,1967,2149,2303],"migration_extra":false,"friendly_name":"Desktop Applications Module 15 SP5 x86_64","former_identifier":"sle-module-desktop-applications","release_type":null,"name":"Desktop Applications Module","offline_predecessor_ids":[],"version":"15.5","recommended":true,"release_stage":"released","identifier":"sle-module-desktop-applications","id":2478,"extensions":[{"identifier":"sle-module-development-tools","release_stage":"released","id":2490,"extensions":[{"release_stage":"released","id":2131,"identifier":"sle-module-NVIDIA-compute","extensions":[],"friendly_version":"15","release_type":null,"former_identifier":"sle-module-NVIDIA-compute","migration_extra":false,"friendly_name":"NVIDIA Compute Module 15 x86_64","offline_predecessor_ids":[],"name":"NVIDIA Compute Module","version":"15","recommended":false,"product_type":"module","cpe":"cpe:/o:suse:sle-module-nvidia-compute:15","online_predecessor_ids":[],"repositories":[{"name":"SLE-Module-NVIDIA-Compute-15-Updates","installer_updates":false,"description":"SLE-Module-NVIDIA-Compute-15-Updates for sle-15-x86_64","enabled":true,"id":4554,"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-NVIDIA-Compute/15/x86_64/update/"},{"description":"SLE-Module-NVIDIA-Compute-15-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-NVIDIA-Compute-15-Pool","distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-NVIDIA-Compute/15/x86_64/product/","enabled":true,"id":4556},{"description":"NVIDIA-Compute-SLE-15","name":"NVIDIA-Compute-SLE-15","installer_updates":false,"url":"https://developer.download.nvidia.com/compute/cuda/repos/sles15/x86_64/","autorefresh":true,"distro_target":null,"id":4563,"enabled":true}],"product_class":"MODULE","predecessor_ids":[],"arch":"x86_64","eula_url":"https://updates.suse.com/SUSE/Products/SLE-Module-NVIDIA-Compute/15/x86_64/product.license/","free":true,"description":"NVIDIA Compute Drivers - NVIDIA CUDA This Module contains software under the terms and conditions of a 3rd party EULA (End User License Agreement). The EULA can be found at https://docs.nvidia.com/cuda/eula/index.html. By using this software you agree to fully comply with the terms and conditions of the EULA. If you do not agree to the terms and conditions of the EULA, do not use the software.","shortname":"NVIDIA-Compute-Module"}],"friendly_version":"15 SP5","friendly_name":"Development Tools Module 15 SP5 x86_64","migration_extra":false,"release_type":null,"former_identifier":"sle-sdk","name":"Development Tools Module","offline_predecessor_ids":[1341,1427,1630,1892],"version":"15.5","recommended":true,"cpe":"cpe:/o:suse:sle-module-development-tools:15:sp5","product_type":"module","online_predecessor_ids":[1579,1794,1971,2161,2315],"product_class":"MODULE","repositories":[{"installer_updates":false,"name":"SLE-Module-DevTools15-SP5-Updates","description":"SLE-Module-DevTools15-SP5-Updates for sle-15-x86_64","id":5788,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15-SP5/x86_64/update/","distro_target":"sle-15-x86_64","autorefresh":true},{"enabled":false,"id":5789,"distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15-SP5/x86_64/update_debug/","installer_updates":false,"name":"SLE-Module-DevTools15-SP5-Debuginfo-Updates","description":"SLE-Module-DevTools15-SP5-Debuginfo-Updates for sle-15-x86_64"},{"name":"SLE-Module-DevTools15-SP5-Pool","installer_updates":false,"description":"SLE-Module-DevTools15-SP5-Pool for sle-15-x86_64","id":5790,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP5/x86_64/product/","autorefresh":false,"distro_target":"sle-15-x86_64"},{"enabled":false,"id":5791,"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP5/x86_64/product_debug/","installer_updates":false,"name":"SLE-Module-DevTools15-SP5-Debuginfo-Pool","description":"SLE-Module-DevTools15-SP5-Debuginfo-Pool for sle-15-x86_64"},{"installer_updates":false,"name":"SLE-Module-DevTools15-SP5-Source-Pool","description":"SLE-Module-DevTools15-SP5-Source-Pool for sle-15-x86_64","id":5792,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP5/x86_64/product_source/","distro_target":"sle-15-x86_64","autorefresh":false}],"predecessor_ids":[1579,1794,1971,2161,2315],"arch":"x86_64","eula_url":"","shortname":"Development-Tools-Module","description":"

The Development Tools Module helps you developing applications for SUSE Linux Enterprise 15.

Access to the Development Tools Module is included in your SUSE Linux Enterprise product subscription. The module has a different lifecycle than SUSE Linux Enterprise itself.

","free":true}],"friendly_version":"15 SP5"},{"shortname":"Server-Applications-Module","description":"

The SUSE Linux Enterprise Server Applications Module delivers a basic set of Server functionality.

Access to the Server Applications Module is included in your SUSE Linux Enterprise Server subscription.

","free":true,"arch":"x86_64","eula_url":"","online_predecessor_ids":[1580,1780,1955,2153,2307],"repositories":[{"id":5748,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15-SP5/x86_64/update/","distro_target":"sle-15-x86_64","autorefresh":true,"installer_updates":false,"name":"SLE-Module-Server-Applications15-SP5-Updates","description":"SLE-Module-Server-Applications15-SP5-Updates for sle-15-x86_64"},{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15-SP5/x86_64/update_debug/","autorefresh":true,"distro_target":"sle-15-x86_64","id":5749,"enabled":false,"description":"SLE-Module-Server-Applications15-SP5-Debuginfo-Updates for sle-15-x86_64","name":"SLE-Module-Server-Applications15-SP5-Debuginfo-Updates","installer_updates":false},{"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP5/x86_64/product/","enabled":true,"id":5750,"description":"SLE-Module-Server-Applications15-SP5-Pool for sle-15-x86_64","name":"SLE-Module-Server-Applications15-SP5-Pool","installer_updates":false},{"description":"SLE-Module-Server-Applications15-SP5-Debuginfo-Pool for sle-15-x86_64","name":"SLE-Module-Server-Applications15-SP5-Debuginfo-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP5/x86_64/product_debug/","autorefresh":false,"distro_target":"sle-15-x86_64","id":5751,"enabled":false},{"installer_updates":false,"name":"SLE-Module-Server-Applications15-SP5-Source-Pool","description":"SLE-Module-Server-Applications15-SP5-Source-Pool for sle-15-x86_64","id":5752,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP5/x86_64/product_source/","distro_target":"sle-15-x86_64","autorefresh":false}],"product_class":"MODULE","predecessor_ids":[1580,1780,1955,2153,2307],"cpe":"cpe:/o:suse:sle-module-server-applications:15:sp5","product_type":"module","version":"15.5","recommended":true,"migration_extra":false,"friendly_name":"Server Applications Module 15 SP5 x86_64","release_type":null,"former_identifier":"sle-module-server-applications","name":"Server Applications Module","offline_predecessor_ids":[],"friendly_version":"15 SP5","identifier":"sle-module-server-applications","release_stage":"released","id":2482,"extensions":[{"shortname":"Web-Scripting-Module","description":"

The SUSE Linux Enterprise Web and Scripting Module should contains additional packages that are helpful when running a webserver.

Access to the Web and Scripting Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself: Package versions in this module are usually supported for at most three years. We are planning to release more recent versions on a schedule of approximately 18 month; the exact dates may differ per package.

","free":true,"arch":"x86_64","eula_url":"","product_class":"MODULE","online_predecessor_ids":[1721,1798,1976,2165,2319],"repositories":[{"name":"SLE-Module-Web-Scripting15-SP5-Updates","installer_updates":false,"description":"SLE-Module-Web-Scripting15-SP5-Updates for sle-15-x86_64","enabled":true,"id":5808,"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/15-SP5/x86_64/update/"},{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/15-SP5/x86_64/update_debug/","distro_target":"sle-15-x86_64","autorefresh":true,"id":5809,"enabled":false,"description":"SLE-Module-Web-Scripting15-SP5-Debuginfo-Updates for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Web-Scripting15-SP5-Debuginfo-Updates"},{"installer_updates":false,"name":"SLE-Module-Web-Scripting15-SP5-Pool","description":"SLE-Module-Web-Scripting15-SP5-Pool for sle-15-x86_64","enabled":true,"id":5810,"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP5/x86_64/product/"},{"id":5811,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP5/x86_64/product_debug/","autorefresh":false,"distro_target":"sle-15-x86_64","name":"SLE-Module-Web-Scripting15-SP5-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-Web-Scripting15-SP5-Debuginfo-Pool for sle-15-x86_64"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP5/x86_64/product_source/","distro_target":"sle-15-x86_64","autorefresh":false,"id":5812,"enabled":false,"description":"SLE-Module-Web-Scripting15-SP5-Source-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Web-Scripting15-SP5-Source-Pool"}],"predecessor_ids":[1721,1798,1976,2165,2319],"cpe":"cpe:/o:suse:sle-module-web-scripting:15:sp5","product_type":"module","version":"15.5","recommended":true,"migration_extra":false,"friendly_name":"Web and Scripting Module 15 SP5 x86_64","release_type":null,"former_identifier":"sle-module-web-scripting","name":"Web and Scripting Module","offline_predecessor_ids":[1153],"friendly_version":"15 SP5","release_stage":"released","identifier":"sle-module-web-scripting","id":2494,"extensions":[{"friendly_version":"15 SP5","release_stage":"released","identifier":"sle-module-hpc","id":2496,"extensions":[],"version":"15.5","recommended":true,"former_identifier":"sle-module-hpc","release_type":null,"friendly_name":"HPC Module 15 SP5 x86_64","migration_extra":false,"offline_predecessor_ids":[1440],"name":"HPC Module","product_class":"MODULE","online_predecessor_ids":[1734,1800,1978,2167,2356],"repositories":[{"installer_updates":false,"name":"SLE-Module-HPC15-SP5-Updates","description":"SLE-Module-HPC15-SP5-Updates for sle-15-x86_64","id":5818,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-HPC/15-SP5/x86_64/update/","distro_target":"sle-15-x86_64","autorefresh":true},{"description":"SLE-Module-HPC15-SP5-Debuginfo-Updates for sle-15-x86_64","name":"SLE-Module-HPC15-SP5-Debuginfo-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-HPC/15-SP5/x86_64/update_debug/","enabled":false,"id":5819},{"description":"SLE-Module-HPC15-SP5-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-HPC15-SP5-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-HPC/15-SP5/x86_64/product/","distro_target":"sle-15-x86_64","autorefresh":false,"id":5820,"enabled":true},{"description":"SLE-Module-HPC15-SP5-Debuginfo-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-HPC15-SP5-Debuginfo-Pool","distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-HPC/15-SP5/x86_64/product_debug/","enabled":false,"id":5821},{"description":"SLE-Module-HPC15-SP5-Source-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-HPC15-SP5-Source-Pool","distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-HPC/15-SP5/x86_64/product_source/","enabled":false,"id":5822}],"predecessor_ids":[1734,1800,1978,2167,2356],"product_type":"module","cpe":"cpe:/o:suse:sle-module-hpc:15:sp5","free":true,"shortname":"HPC-Module","description":"

The SUSE Linux Enterprise Server High Performance Computing (HPC) module delivers specific tools commonly used for high performance, numerically intensive workloads.

SUSE packages these tools in the SLES HPC Module to provide greater flexibility to deliver new versions or new tools more rapidly than the standard SUSE Linux Enterprise lifecycle would permit.

Packages in this module are generally supported until a newer version of the package is released or the package is dropped from the module.

","arch":"x86_64","eula_url":""}]},{"version":"15.5","recommended":false,"former_identifier":"sle-module-public-cloud","release_type":null,"migration_extra":false,"friendly_name":"Public Cloud Module 15 SP5 x86_64","offline_predecessor_ids":[1220],"name":"Public Cloud Module","friendly_version":"15 SP5","release_stage":"released","identifier":"sle-module-public-cloud","id":2504,"extensions":[],"free":true,"description":"

The Public Cloud Module is a collection of tools that enables you to create and manage cloud images from the commandline on SUSE Linux Enterprise Server. When building your own images with KIWI or SUSE Studio, initialization code specific to the target cloud is included in that image.

Access to the Public Cloud Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself; please check the Release Notes for further details.

","shortname":"Public-Cloud-Module","arch":"x86_64","eula_url":"","online_predecessor_ids":[1611,1808,1988,2175,2327],"repositories":[{"enabled":true,"id":5858,"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/15-SP5/x86_64/update/","name":"SLE-Module-Public-Cloud15-SP5-Updates","installer_updates":false,"description":"SLE-Module-Public-Cloud15-SP5-Updates for sle-15-x86_64"},{"distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/15-SP5/x86_64/update_debug/","enabled":false,"id":5859,"description":"SLE-Module-Public-Cloud15-SP5-Debuginfo-Updates for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Public-Cloud15-SP5-Debuginfo-Updates"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP5/x86_64/product/","distro_target":"sle-15-x86_64","autorefresh":false,"id":5860,"enabled":true,"description":"SLE-Module-Public-Cloud15-SP5-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Public-Cloud15-SP5-Pool"},{"id":5861,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP5/x86_64/product_debug/","distro_target":"sle-15-x86_64","autorefresh":false,"installer_updates":false,"name":"SLE-Module-Public-Cloud15-SP5-Debuginfo-Pool","description":"SLE-Module-Public-Cloud15-SP5-Debuginfo-Pool for sle-15-x86_64"},{"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP5/x86_64/product_source/","enabled":false,"id":5862,"description":"SLE-Module-Public-Cloud15-SP5-Source-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Public-Cloud15-SP5-Source-Pool"}],"product_class":"MODULE","predecessor_ids":[1611,1808,1988,2175,2327],"product_type":"module","cpe":"cpe:/o:suse:sle-module-public-cloud:15:sp5"},{"recommended":false,"version":"15.5","name":"SUSE Linux Enterprise High Availability Extension","offline_predecessor_ids":[958,961,967,971,1101,1107,1256,1286,1435,1634,1637,1884,1886],"migration_extra":false,"friendly_name":"SUSE Linux Enterprise High Availability Extension 15 SP5 x86_64 (BETA)","former_identifier":"sle-ha","release_type":null,"friendly_version":"15 SP5","extensions":[],"release_stage":"beta","id":2517,"identifier":"sle-ha","description":"SUSE Linux High Availability Extension provides mature, industry-leading open-source high-availability clustering technologies that are easy to set up and use. It can be deployed in physical and/or virtual environments, and can cluster physical servers, virtual servers, or any combination of the two to suit your business’ needs.","shortname":"SLEHA15-SP5","free":false,"eula_url":"","arch":"x86_64","predecessor_ids":[1785,1959,2195,2340],"product_class":"SLE-HAE-X86-BETA","online_predecessor_ids":[1785,1959,2195,2340],"repositories":[{"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-HA/15-SP5/x86_64/update/","distro_target":"sle-15-x86_64","autorefresh":true,"id":5923,"enabled":true,"description":"SLE-Product-HA15-SP5-Updates for sle-15-x86_64","installer_updates":false,"name":"SLE-Product-HA15-SP5-Updates"},{"id":5924,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-HA/15-SP5/x86_64/update_debug/","distro_target":"sle-15-x86_64","autorefresh":true,"installer_updates":false,"name":"SLE-Product-HA15-SP5-Debuginfo-Updates","description":"SLE-Product-HA15-SP5-Debuginfo-Updates for sle-15-x86_64"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP5/x86_64/product/","distro_target":"sle-15-x86_64","autorefresh":false,"id":5925,"enabled":true,"description":"SLE-Product-HA15-SP5-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Product-HA15-SP5-Pool"},{"enabled":false,"id":5926,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP5/x86_64/product_debug/","name":"SLE-Product-HA15-SP5-Debuginfo-Pool","installer_updates":false,"description":"SLE-Product-HA15-SP5-Debuginfo-Pool for sle-15-x86_64"},{"description":"SLE-Product-HA15-SP5-Source-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Product-HA15-SP5-Source-Pool","distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP5/x86_64/product_source/","enabled":false,"id":5927}],"cpe":"cpe:/o:suse:sle-ha:15:sp5","product_type":"extension"}]},{"eula_url":"","arch":"x86_64","free":true,"shortname":"Containers-Module","description":"

This Module contains several packages revolving around containers and related tools.

","product_type":"module","cpe":"cpe:/o:suse:sle-module-containers:15:sp5","predecessor_ids":[1642,1790,1963,2157,2311],"repositories":[{"enabled":true,"id":5768,"distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/15-SP5/x86_64/update/","installer_updates":false,"name":"SLE-Module-Containers15-SP5-Updates","description":"SLE-Module-Containers15-SP5-Updates for sle-15-x86_64"},{"id":5769,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/15-SP5/x86_64/update_debug/","distro_target":"sle-15-x86_64","autorefresh":true,"installer_updates":false,"name":"SLE-Module-Containers15-SP5-Debuginfo-Updates","description":"SLE-Module-Containers15-SP5-Debuginfo-Updates for sle-15-x86_64"},{"description":"SLE-Module-Containers15-SP5-Pool for sle-15-x86_64","name":"SLE-Module-Containers15-SP5-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP5/x86_64/product/","enabled":true,"id":5770},{"description":"SLE-Module-Containers15-SP5-Debuginfo-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Containers15-SP5-Debuginfo-Pool","distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP5/x86_64/product_debug/","enabled":false,"id":5771},{"name":"SLE-Module-Containers15-SP5-Source-Pool","installer_updates":false,"description":"SLE-Module-Containers15-SP5-Source-Pool for sle-15-x86_64","id":5772,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP5/x86_64/product_source/","autorefresh":false,"distro_target":"sle-15-x86_64"}],"online_predecessor_ids":[1642,1790,1963,2157,2311],"product_class":"MODULE","offline_predecessor_ids":[1332],"name":"Containers Module","release_type":null,"former_identifier":"sle-module-containers","migration_extra":false,"friendly_name":"Containers Module 15 SP5 x86_64","recommended":false,"version":"15.5","extensions":[],"id":2486,"release_stage":"released","identifier":"sle-module-containers","friendly_version":"15 SP5"},{"free":false,"description":"

SUSE Linux Enterprise Live Patching provides packages to update critical components in SUSE Linux Enterprise. With SUSE Linux Enterprise Live Patching, you can perform critical patching without shutting down your system, reducing the need for planned downtime and increasing service availability.

","shortname":"Live-Patching","eula_url":"","arch":"x86_64","predecessor_ids":[1736,1828,1984,2187,2334],"online_predecessor_ids":[1736,1828,1984,2187,2334],"repositories":[{"enabled":true,"id":5893,"distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Live-Patching/15-SP5/x86_64/update/","installer_updates":false,"name":"SLE-Module-Live-Patching15-SP5-Updates","description":"SLE-Module-Live-Patching15-SP5-Updates for sle-15-x86_64"},{"distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Live-Patching/15-SP5/x86_64/update_debug/","enabled":false,"id":5894,"description":"SLE-Module-Live-Patching15-SP5-Debuginfo-Updates for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Live-Patching15-SP5-Debuginfo-Updates"},{"id":5895,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Live-Patching/15-SP5/x86_64/product/","autorefresh":false,"distro_target":"sle-15-x86_64","name":"SLE-Module-Live-Patching15-SP5-Pool","installer_updates":false,"description":"SLE-Module-Live-Patching15-SP5-Pool for sle-15-x86_64"},{"id":5896,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Live-Patching/15-SP5/x86_64/product_debug/","autorefresh":false,"distro_target":"sle-15-x86_64","name":"SLE-Module-Live-Patching15-SP5-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-Live-Patching15-SP5-Debuginfo-Pool for sle-15-x86_64"},{"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Live-Patching/15-SP5/x86_64/product_source/","enabled":false,"id":5897,"description":"SLE-Module-Live-Patching15-SP5-Source-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Live-Patching15-SP5-Source-Pool"}],"product_class":"SLE-LP-BETA","product_type":"extension","cpe":"cpe:/o:suse:sle-module-live-patching:15:sp5","recommended":false,"version":"15.5","offline_predecessor_ids":[1536,1757,1888],"name":"SUSE Linux Enterprise Live Patching","release_type":null,"former_identifier":"sle-module-live-patching","friendly_name":"SUSE Linux Enterprise Live Patching 15 SP5 x86_64 (BETA)","migration_extra":false,"friendly_version":"15 SP5","extensions":[],"release_stage":"beta","identifier":"sle-module-live-patching","id":2511},{"version":"15.5","recommended":false,"former_identifier":"sle-module-python3","release_type":null,"migration_extra":false,"friendly_name":"Python 3 Module 15 SP5 x86_64","offline_predecessor_ids":[],"name":"Python 3 Module","friendly_version":"15 SP5","id":2536,"release_stage":"released","identifier":"sle-module-python3","extensions":[],"free":true,"shortname":"Python 3-Module","description":"

This module contains the Python 3 packages.

Access to the Python 3 Module is included in your SUSE Linux Enterprise subscription. The module has a different lifecycle than SUSE Linux Enterprise itself; please check the Release Notes for further details.

","arch":"x86_64","eula_url":"","product_class":"MODULE","online_predecessor_ids":[2405],"repositories":[{"enabled":true,"id":5958,"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Python3/15-SP5/x86_64/update/","name":"SLE-Module-Python3-15-SP5-Updates","installer_updates":false,"description":"SLE-Module-Python3-15-SP5-Updates for sle-15-x86_64"},{"id":5959,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Python3/15-SP5/x86_64/update_debug/","autorefresh":true,"distro_target":"sle-15-x86_64","name":"SLE-Module-Python3-15-SP5-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-Python3-15-SP5-Debuginfo-Updates for sle-15-x86_64"},{"installer_updates":false,"name":"SLE-Module-Python3-15-SP5-Pool","description":"SLE-Module-Python3-15-SP5-Pool for sle-15-x86_64","id":5960,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Python3/15-SP5/x86_64/product/","distro_target":"sle-15-x86_64","autorefresh":false},{"description":"SLE-Module-Python3-15-SP5-Debuginfo-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Python3-15-SP5-Debuginfo-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Python3/15-SP5/x86_64/product_debug/","distro_target":"sle-15-x86_64","autorefresh":false,"id":5961,"enabled":false},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Python3/15-SP5/x86_64/product_source/","autorefresh":false,"distro_target":"sle-15-x86_64","id":5962,"enabled":false,"description":"SLE-Module-Python3-15-SP5-Source-Pool for sle-15-x86_64","name":"SLE-Module-Python3-15-SP5-Source-Pool","installer_updates":false}],"predecessor_ids":[2405],"product_type":"module","cpe":"cpe:/o:suse:sle-module-python3:15:sp5"}],"id":2474,"release_stage":"released","identifier":"sle-module-basesystem","friendly_version":"15 SP5","eula_url":"","arch":"x86_64","description":"

The SUSE Linux Enterprise Basesystem Module delivers the base system of the product.

","shortname":"Basesystem-Module","free":true,"cpe":"cpe:/o:suse:sle-module-basesystem:15:sp5","product_type":"module","predecessor_ids":[1576,1772,1946,2145,2299],"product_class":"MODULE","online_predecessor_ids":[1576,1772,1946,2145,2299],"repositories":[{"id":5708,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15-SP5/x86_64/update/","distro_target":"sle-15-x86_64","autorefresh":true,"installer_updates":false,"name":"SLE-Module-Basesystem15-SP5-Updates","description":"SLE-Module-Basesystem15-SP5-Updates for sle-15-x86_64"},{"enabled":false,"id":5709,"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15-SP5/x86_64/update_debug/","name":"SLE-Module-Basesystem15-SP5-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-Basesystem15-SP5-Debuginfo-Updates for sle-15-x86_64"},{"name":"SLE-Module-Basesystem15-SP5-Pool","installer_updates":false,"description":"SLE-Module-Basesystem15-SP5-Pool for sle-15-x86_64","id":5710,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP5/x86_64/product/","autorefresh":false,"distro_target":"sle-15-x86_64"},{"description":"SLE-Module-Basesystem15-SP5-Debuginfo-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Basesystem15-SP5-Debuginfo-Pool","distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP5/x86_64/product_debug/","enabled":false,"id":5711},{"description":"SLE-Module-Basesystem15-SP5-Source-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Basesystem15-SP5-Source-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP5/x86_64/product_source/","distro_target":"sle-15-x86_64","autorefresh":false,"id":5712,"enabled":false}]},{"name":"Certifications Module","offline_predecessor_ids":[],"friendly_name":"Certifications Module 15 SP5 x86_64","migration_extra":false,"former_identifier":"sle-module-certifications","release_type":null,"recommended":false,"version":"15.5","extensions":[],"id":2558,"release_stage":"released","identifier":"sle-module-certifications","friendly_version":"15 SP5","eula_url":"","arch":"x86_64","description":"

This module contains the certification packages.

Access to the Certifications Module is included in your SUSE Linux Enterprise subscription. The module has a different lifecycle than SUSE Linux Enterprise itself; please check the Release Notes for further details.

","shortname":"Certifications-Module","free":true,"cpe":"cpe:/o:suse:sle-module-certifications:15:sp5","product_type":"module","predecessor_ids":[2393],"repositories":[{"name":"SLE-Module-Certifications-15-SP5-Updates","installer_updates":false,"description":"SLE-Module-Certifications-15-SP5-Updates for sle-15-x86_64","id":6080,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Certifications/15-SP5/x86_64/update/","autorefresh":true,"distro_target":"sle-15-x86_64"},{"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Certifications/15-SP5/x86_64/update_debug/","enabled":false,"id":6081,"description":"SLE-Module-Certifications-15-SP5-Debuginfo-Updates for sle-15-x86_64","name":"SLE-Module-Certifications-15-SP5-Debuginfo-Updates","installer_updates":false},{"description":"SLE-Module-Certifications-15-SP5-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Certifications-15-SP5-Pool","distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Certifications/15-SP5/x86_64/product/","enabled":true,"id":6082},{"id":6083,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Certifications/15-SP5/x86_64/product_debug/","distro_target":"sle-15-x86_64","autorefresh":false,"installer_updates":false,"name":"SLE-Module-Certifications-15-SP5-Debuginfo-Pool","description":"SLE-Module-Certifications-15-SP5-Debuginfo-Pool for sle-15-x86_64"},{"description":"SLE-Module-Certifications-15-SP5-Source-Pool for sle-15-x86_64","name":"SLE-Module-Certifications-15-SP5-Source-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Certifications/15-SP5/x86_64/product_source/","enabled":false,"id":6084}],"online_predecessor_ids":[2393],"product_class":"MODULE"}],"identifier":"SLE_HPC","release_stage":"beta","id":2470,"free":false,"description":"

SUSE Linux Enterprise High Performance Computing is a highly scalable, high performance open source operating system designed to utilize the power of parallel computing for modeling, simulation and advanced analytics workloads.

","shortname":"SLE-15-SP5-HPC","eula_url":"https://updates.suse.com/SUSE/Products/SLE-Product-HPC/15-SP5/x86_64/product.license/","arch":"x86_64","predecessor_ids":[1934,2133,2354],"online_predecessor_ids":[1934,2133,2354],"product_class":"HPC-X86-BETA","repositories":[{"id":5663,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-INSTALLER/15-SP5/x86_64/update/","autorefresh":true,"distro_target":"sle-15-x86_64","name":"SLE15-SP5-Installer-Updates","installer_updates":true,"description":"SLE15-SP5-Installer-Updates for sle-15-x86_64"},{"id":5688,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-HPC/15-SP5/x86_64/update/","autorefresh":true,"distro_target":"sle-15-x86_64","name":"SLE-Product-HPC-15-SP5-Updates","installer_updates":false,"description":"SLE-Product-HPC-15-SP5-Updates for sle-15-x86_64"},{"distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-HPC/15-SP5/x86_64/update_debug/","enabled":false,"id":5689,"description":"SLE-Product-HPC15-SP5-Debuginfo-Updates for sle-15-x86_64","installer_updates":false,"name":"SLE-Product-HPC15-SP5-Debuginfo-Updates"},{"installer_updates":false,"name":"SLE-Product-HPC-15-SP5-Pool","description":"SLE-Product-HPC-15-SP5-Pool for sle-15-x86_64","id":5690,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-HPC/15-SP5/x86_64/product/","distro_target":"sle-15-x86_64","autorefresh":false},{"enabled":false,"id":5691,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Product-HPC/15-SP5/x86_64/product_debug/","name":"SLE-Product-HPC15-SP5-Debuginfo-Pool","installer_updates":false,"description":"SLE-Product-HPC15-SP5-Debuginfo-Pool for sle-15-x86_64"},{"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Product-HPC/15-SP5/x86_64/product_source/","enabled":false,"id":5692,"description":"SLE-Product-HPC15-SP5-Source-Pool for sle-15-x86_64","name":"SLE-Product-HPC15-SP5-Source-Pool","installer_updates":false}],"product_type":"base","cpe":"cpe:/o:suse:sle_hpc:15:sp5"},{"free":true,"shortname":"Basesystem-Module","description":"

The SUSE Linux Enterprise Basesystem Module delivers the base system of the product.

","arch":"aarch64","eula_url":"","product_class":"MODULE","online_predecessor_ids":[1589,1769,1943,2142,2296],"repositories":[{"distro_target":"sle-15-aarch64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15-SP5/aarch64/update/","enabled":true,"id":5693,"description":"SLE-Module-Basesystem15-SP5-Updates for sle-15-aarch64","installer_updates":false,"name":"SLE-Module-Basesystem15-SP5-Updates"},{"description":"SLE-Module-Basesystem15-SP5-Debuginfo-Updates for sle-15-aarch64","name":"SLE-Module-Basesystem15-SP5-Debuginfo-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15-SP5/aarch64/update_debug/","enabled":false,"id":5694},{"description":"SLE-Module-Basesystem15-SP5-Pool for sle-15-aarch64","installer_updates":false,"name":"SLE-Module-Basesystem15-SP5-Pool","distro_target":"sle-15-aarch64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP5/aarch64/product/","enabled":true,"id":5695},{"id":5696,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP5/aarch64/product_debug/","autorefresh":false,"distro_target":"sle-15-aarch64","name":"SLE-Module-Basesystem15-SP5-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-Basesystem15-SP5-Debuginfo-Pool for sle-15-aarch64"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP5/aarch64/product_source/","autorefresh":false,"distro_target":"sle-15-aarch64","id":5697,"enabled":false,"description":"SLE-Module-Basesystem15-SP5-Source-Pool for sle-15-aarch64","name":"SLE-Module-Basesystem15-SP5-Source-Pool","installer_updates":false}],"predecessor_ids":[1589,1769,1943,2142,2296],"product_type":"module","cpe":"cpe:/o:suse:sle-module-basesystem:15:sp5","version":"15.5","recommended":false,"former_identifier":"sle-module-basesystem","release_type":null,"migration_extra":false,"friendly_name":"Basesystem Module 15 SP5 aarch64","offline_predecessor_ids":[1522],"name":"Basesystem Module","friendly_version":"15 SP5","release_stage":"released","identifier":"sle-module-basesystem","id":2471,"extensions":[]},{"product_type":"module","cpe":"cpe:/o:suse:sle-module-basesystem:15:sp5","online_predecessor_ids":[1588,1770,1944,2143,2297],"repositories":[{"enabled":true,"id":5698,"distro_target":"sle-15-ppc64le","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15-SP5/ppc64le/update/","installer_updates":false,"name":"SLE-Module-Basesystem15-SP5-Updates","description":"SLE-Module-Basesystem15-SP5-Updates for sle-15-ppc64le"},{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15-SP5/ppc64le/update_debug/","autorefresh":true,"distro_target":"sle-15-ppc64le","id":5699,"enabled":false,"description":"SLE-Module-Basesystem15-SP5-Debuginfo-Updates for sle-15-ppc64le","name":"SLE-Module-Basesystem15-SP5-Debuginfo-Updates","installer_updates":false},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP5/ppc64le/product/","distro_target":"sle-15-ppc64le","autorefresh":false,"id":5700,"enabled":true,"description":"SLE-Module-Basesystem15-SP5-Pool for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-Basesystem15-SP5-Pool"},{"description":"SLE-Module-Basesystem15-SP5-Debuginfo-Pool for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-Basesystem15-SP5-Debuginfo-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP5/ppc64le/product_debug/","distro_target":"sle-15-ppc64le","autorefresh":false,"id":5701,"enabled":false},{"name":"SLE-Module-Basesystem15-SP5-Source-Pool","installer_updates":false,"description":"SLE-Module-Basesystem15-SP5-Source-Pool for sle-15-ppc64le","id":5702,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP5/ppc64le/product_source/","autorefresh":false,"distro_target":"sle-15-ppc64le"}],"product_class":"MODULE","predecessor_ids":[1588,1770,1944,2143,2297],"arch":"ppc64le","eula_url":"","free":true,"description":"

The SUSE Linux Enterprise Basesystem Module delivers the base system of the product.

","shortname":"Basesystem-Module","release_stage":"released","identifier":"sle-module-basesystem","id":2472,"extensions":[],"friendly_version":"15 SP5","former_identifier":"sle-module-basesystem","release_type":null,"friendly_name":"Basesystem Module 15 SP5 ppc64le","migration_extra":false,"offline_predecessor_ids":[1294],"name":"Basesystem Module","version":"15.5","recommended":false},{"friendly_version":"15 SP5","id":2473,"release_stage":"released","identifier":"sle-module-basesystem","extensions":[],"version":"15.5","recommended":false,"former_identifier":"sle-module-basesystem","release_type":null,"friendly_name":"Basesystem Module 15 SP5 s390x","migration_extra":false,"offline_predecessor_ids":[1295,1367],"name":"Basesystem Module","online_predecessor_ids":[1587,1771,1945,2144,2298],"repositories":[{"id":5703,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15-SP5/s390x/update/","distro_target":"sle-15-s390x","autorefresh":true,"installer_updates":false,"name":"SLE-Module-Basesystem15-SP5-Updates","description":"SLE-Module-Basesystem15-SP5-Updates for sle-15-s390x"},{"description":"SLE-Module-Basesystem15-SP5-Debuginfo-Updates for sle-15-s390x","installer_updates":false,"name":"SLE-Module-Basesystem15-SP5-Debuginfo-Updates","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15-SP5/s390x/update_debug/","distro_target":"sle-15-s390x","autorefresh":true,"id":5704,"enabled":false},{"installer_updates":false,"name":"SLE-Module-Basesystem15-SP5-Pool","description":"SLE-Module-Basesystem15-SP5-Pool for sle-15-s390x","id":5705,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP5/s390x/product/","distro_target":"sle-15-s390x","autorefresh":false},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP5/s390x/product_debug/","autorefresh":false,"distro_target":"sle-15-s390x","id":5706,"enabled":false,"description":"SLE-Module-Basesystem15-SP5-Debuginfo-Pool for sle-15-s390x","name":"SLE-Module-Basesystem15-SP5-Debuginfo-Pool","installer_updates":false},{"description":"SLE-Module-Basesystem15-SP5-Source-Pool for sle-15-s390x","name":"SLE-Module-Basesystem15-SP5-Source-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP5/s390x/product_source/","autorefresh":false,"distro_target":"sle-15-s390x","id":5707,"enabled":false}],"product_class":"MODULE","predecessor_ids":[1587,1771,1945,2144,2298],"product_type":"module","cpe":"cpe:/o:suse:sle-module-basesystem:15:sp5","free":true,"shortname":"Basesystem-Module","description":"

The SUSE Linux Enterprise Basesystem Module delivers the base system of the product.

","arch":"s390x","eula_url":""},{"friendly_version":"15 SP5","id":2474,"release_stage":"released","identifier":"sle-module-basesystem","extensions":[],"version":"15.5","recommended":false,"former_identifier":"sle-module-basesystem","release_type":null,"migration_extra":false,"friendly_name":"Basesystem Module 15 SP5 x86_64","offline_predecessor_ids":[1212,1368,1440],"name":"Basesystem Module","product_class":"MODULE","online_predecessor_ids":[1576,1772,1946,2145,2299],"repositories":[{"description":"SLE-Module-Basesystem15-SP5-Updates for sle-15-x86_64","name":"SLE-Module-Basesystem15-SP5-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15-SP5/x86_64/update/","enabled":true,"id":5708},{"description":"SLE-Module-Basesystem15-SP5-Debuginfo-Updates for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Basesystem15-SP5-Debuginfo-Updates","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15-SP5/x86_64/update_debug/","distro_target":"sle-15-x86_64","autorefresh":true,"id":5709,"enabled":false},{"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP5/x86_64/product/","enabled":true,"id":5710,"description":"SLE-Module-Basesystem15-SP5-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Basesystem15-SP5-Pool"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP5/x86_64/product_debug/","distro_target":"sle-15-x86_64","autorefresh":false,"id":5711,"enabled":false,"description":"SLE-Module-Basesystem15-SP5-Debuginfo-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Basesystem15-SP5-Debuginfo-Pool"},{"description":"SLE-Module-Basesystem15-SP5-Source-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Basesystem15-SP5-Source-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP5/x86_64/product_source/","distro_target":"sle-15-x86_64","autorefresh":false,"id":5712,"enabled":false}],"predecessor_ids":[1576,1772,1946,2145,2299],"product_type":"module","cpe":"cpe:/o:suse:sle-module-basesystem:15:sp5","free":true,"shortname":"Basesystem-Module","description":"

The SUSE Linux Enterprise Basesystem Module delivers the base system of the product.

","arch":"x86_64","eula_url":""},{"eula_url":"","arch":"aarch64","free":true,"description":"

The SUSE Linux Enterprise Desktop Applications Module delivers a basic set of Desktop functionality.

Access to the Desktop Applications Module is included in your SUSE Linux Enterprise product subscription.

","shortname":"Desktop-Applications-Module","product_type":"module","cpe":"cpe:/o:suse:sle-module-desktop-applications:15:sp5","predecessor_ids":[1595,1773,1964,2146,2300],"repositories":[{"id":5713,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15-SP5/aarch64/update/","autorefresh":true,"distro_target":"sle-15-aarch64","name":"SLE-Module-Desktop-Applications15-SP5-Updates","installer_updates":false,"description":"SLE-Module-Desktop-Applications15-SP5-Updates for sle-15-aarch64"},{"id":5714,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15-SP5/aarch64/update_debug/","autorefresh":true,"distro_target":"sle-15-aarch64","name":"SLE-Module-Desktop-Applications15-SP5-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-Desktop-Applications15-SP5-Debuginfo-Updates for sle-15-aarch64"},{"description":"SLE-Module-Desktop-Applications15-SP5-Pool for sle-15-aarch64","name":"SLE-Module-Desktop-Applications15-SP5-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP5/aarch64/product/","enabled":true,"id":5715},{"id":5716,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP5/aarch64/product_debug/","distro_target":"sle-15-aarch64","autorefresh":false,"installer_updates":false,"name":"SLE-Module-Desktop-Applications15-SP5-Debuginfo-Pool","description":"SLE-Module-Desktop-Applications15-SP5-Debuginfo-Pool for sle-15-aarch64"},{"description":"SLE-Module-Desktop-Applications15-SP5-Source-Pool for sle-15-aarch64","installer_updates":false,"name":"SLE-Module-Desktop-Applications15-SP5-Source-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP5/aarch64/product_source/","distro_target":"sle-15-aarch64","autorefresh":false,"id":5717,"enabled":false}],"online_predecessor_ids":[1595,1773,1964,2146,2300],"product_class":"MODULE","offline_predecessor_ids":[],"name":"Desktop Applications Module","former_identifier":"sle-module-desktop-applications","release_type":null,"migration_extra":false,"friendly_name":"Desktop Applications Module 15 SP5 aarch64","recommended":false,"version":"15.5","extensions":[],"identifier":"sle-module-desktop-applications","release_stage":"released","id":2475,"friendly_version":"15 SP5"},{"cpe":"cpe:/o:suse:sle-module-desktop-applications:15:sp5","product_type":"module","predecessor_ids":[1594,1774,1965,2147,2301],"online_predecessor_ids":[1594,1774,1965,2147,2301],"repositories":[{"description":"SLE-Module-Desktop-Applications15-SP5-Updates for sle-15-ppc64le","name":"SLE-Module-Desktop-Applications15-SP5-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15-SP5/ppc64le/update/","enabled":true,"id":5718},{"autorefresh":true,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15-SP5/ppc64le/update_debug/","enabled":false,"id":5719,"description":"SLE-Module-Desktop-Applications15-SP5-Debuginfo-Updates for sle-15-ppc64le","name":"SLE-Module-Desktop-Applications15-SP5-Debuginfo-Updates","installer_updates":false},{"description":"SLE-Module-Desktop-Applications15-SP5-Pool for sle-15-ppc64le","name":"SLE-Module-Desktop-Applications15-SP5-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP5/ppc64le/product/","autorefresh":false,"distro_target":"sle-15-ppc64le","id":5720,"enabled":true},{"installer_updates":false,"name":"SLE-Module-Desktop-Applications15-SP5-Debuginfo-Pool","description":"SLE-Module-Desktop-Applications15-SP5-Debuginfo-Pool for sle-15-ppc64le","id":5721,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP5/ppc64le/product_debug/","distro_target":"sle-15-ppc64le","autorefresh":false},{"description":"SLE-Module-Desktop-Applications15-SP5-Source-Pool for sle-15-ppc64le","name":"SLE-Module-Desktop-Applications15-SP5-Source-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP5/ppc64le/product_source/","enabled":false,"id":5722}],"product_class":"MODULE","eula_url":"","arch":"ppc64le","description":"

The SUSE Linux Enterprise Desktop Applications Module delivers a basic set of Desktop functionality.

Access to the Desktop Applications Module is included in your SUSE Linux Enterprise product subscription.

","shortname":"Desktop-Applications-Module","free":true,"extensions":[],"release_stage":"released","identifier":"sle-module-desktop-applications","id":2476,"friendly_version":"15 SP5","name":"Desktop Applications Module","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"Desktop Applications Module 15 SP5 ppc64le","release_type":null,"former_identifier":"sle-module-desktop-applications","recommended":false,"version":"15.5"},{"friendly_version":"15 SP5","identifier":"sle-module-desktop-applications","release_stage":"released","id":2477,"extensions":[],"version":"15.5","recommended":false,"release_type":null,"former_identifier":"sle-module-desktop-applications","migration_extra":false,"friendly_name":"Desktop Applications Module 15 SP5 s390x","offline_predecessor_ids":[],"name":"Desktop Applications Module","online_predecessor_ids":[1593,1775,1966,2148,2302],"repositories":[{"description":"SLE-Module-Desktop-Applications15-SP5-Updates for sle-15-s390x","name":"SLE-Module-Desktop-Applications15-SP5-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-15-s390x","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15-SP5/s390x/update/","enabled":true,"id":5723},{"description":"SLE-Module-Desktop-Applications15-SP5-Debuginfo-Updates for sle-15-s390x","name":"SLE-Module-Desktop-Applications15-SP5-Debuginfo-Updates","installer_updates":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15-SP5/s390x/update_debug/","autorefresh":true,"distro_target":"sle-15-s390x","id":5724,"enabled":false},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP5/s390x/product/","distro_target":"sle-15-s390x","autorefresh":false,"id":5725,"enabled":true,"description":"SLE-Module-Desktop-Applications15-SP5-Pool for sle-15-s390x","installer_updates":false,"name":"SLE-Module-Desktop-Applications15-SP5-Pool"},{"description":"SLE-Module-Desktop-Applications15-SP5-Debuginfo-Pool for sle-15-s390x","installer_updates":false,"name":"SLE-Module-Desktop-Applications15-SP5-Debuginfo-Pool","distro_target":"sle-15-s390x","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP5/s390x/product_debug/","enabled":false,"id":5726},{"id":5727,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP5/s390x/product_source/","autorefresh":false,"distro_target":"sle-15-s390x","name":"SLE-Module-Desktop-Applications15-SP5-Source-Pool","installer_updates":false,"description":"SLE-Module-Desktop-Applications15-SP5-Source-Pool for sle-15-s390x"}],"product_class":"MODULE","predecessor_ids":[1593,1775,1966,2148,2302],"product_type":"module","cpe":"cpe:/o:suse:sle-module-desktop-applications:15:sp5","free":true,"shortname":"Desktop-Applications-Module","description":"

The SUSE Linux Enterprise Desktop Applications Module delivers a basic set of Desktop functionality.

Access to the Desktop Applications Module is included in your SUSE Linux Enterprise product subscription.

","arch":"s390x","eula_url":""},{"eula_url":"","arch":"x86_64","shortname":"Desktop-Applications-Module","description":"

The SUSE Linux Enterprise Desktop Applications Module delivers a basic set of Desktop functionality.

Access to the Desktop Applications Module is included in your SUSE Linux Enterprise product subscription.

","free":true,"cpe":"cpe:/o:suse:sle-module-desktop-applications:15:sp5","product_type":"module","predecessor_ids":[1578,1776,1967,2149,2303],"repositories":[{"installer_updates":false,"name":"SLE-Module-Desktop-Applications15-SP5-Updates","description":"SLE-Module-Desktop-Applications15-SP5-Updates for sle-15-x86_64","id":5728,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15-SP5/x86_64/update/","distro_target":"sle-15-x86_64","autorefresh":true},{"description":"SLE-Module-Desktop-Applications15-SP5-Debuginfo-Updates for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Desktop-Applications15-SP5-Debuginfo-Updates","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15-SP5/x86_64/update_debug/","distro_target":"sle-15-x86_64","autorefresh":true,"id":5729,"enabled":false},{"name":"SLE-Module-Desktop-Applications15-SP5-Pool","installer_updates":false,"description":"SLE-Module-Desktop-Applications15-SP5-Pool for sle-15-x86_64","enabled":true,"id":5730,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP5/x86_64/product/"},{"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP5/x86_64/product_debug/","enabled":false,"id":5731,"description":"SLE-Module-Desktop-Applications15-SP5-Debuginfo-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Desktop-Applications15-SP5-Debuginfo-Pool"},{"installer_updates":false,"name":"SLE-Module-Desktop-Applications15-SP5-Source-Pool","description":"SLE-Module-Desktop-Applications15-SP5-Source-Pool for sle-15-x86_64","enabled":false,"id":5732,"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP5/x86_64/product_source/"}],"online_predecessor_ids":[1578,1776,1967,2149,2303],"product_class":"MODULE","name":"Desktop Applications Module","offline_predecessor_ids":[],"friendly_name":"Desktop Applications Module 15 SP5 x86_64","migration_extra":false,"former_identifier":"sle-module-desktop-applications","release_type":null,"recommended":false,"version":"15.5","extensions":[],"release_stage":"released","id":2478,"identifier":"sle-module-desktop-applications","friendly_version":"15 SP5"},{"version":"15.5","recommended":false,"friendly_name":"Server Applications Module 15 SP5 aarch64","migration_extra":false,"release_type":null,"former_identifier":"sle-module-server-applications","name":"Server Applications Module","offline_predecessor_ids":[],"friendly_version":"15 SP5","release_stage":"released","id":2479,"identifier":"sle-module-server-applications","extensions":[],"description":"

The SUSE Linux Enterprise Server Applications Module delivers a basic set of Server functionality.

Access to the Server Applications Module is included in your SUSE Linux Enterprise Server subscription.

","shortname":"Server-Applications-Module","free":true,"arch":"aarch64","eula_url":"","online_predecessor_ids":[1601,1777,1952,2150,2304],"product_class":"MODULE","repositories":[{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15-SP5/aarch64/update/","autorefresh":true,"distro_target":"sle-15-aarch64","id":5733,"enabled":true,"description":"SLE-Module-Server-Applications15-SP5-Updates for sle-15-aarch64","name":"SLE-Module-Server-Applications15-SP5-Updates","installer_updates":false},{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15-SP5/aarch64/update_debug/","autorefresh":true,"distro_target":"sle-15-aarch64","id":5734,"enabled":false,"description":"SLE-Module-Server-Applications15-SP5-Debuginfo-Updates for sle-15-aarch64","name":"SLE-Module-Server-Applications15-SP5-Debuginfo-Updates","installer_updates":false},{"description":"SLE-Module-Server-Applications15-SP5-Pool for sle-15-aarch64","name":"SLE-Module-Server-Applications15-SP5-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP5/aarch64/product/","autorefresh":false,"distro_target":"sle-15-aarch64","id":5735,"enabled":true},{"description":"SLE-Module-Server-Applications15-SP5-Debuginfo-Pool for sle-15-aarch64","installer_updates":false,"name":"SLE-Module-Server-Applications15-SP5-Debuginfo-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP5/aarch64/product_debug/","distro_target":"sle-15-aarch64","autorefresh":false,"id":5736,"enabled":false},{"id":5737,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP5/aarch64/product_source/","autorefresh":false,"distro_target":"sle-15-aarch64","name":"SLE-Module-Server-Applications15-SP5-Source-Pool","installer_updates":false,"description":"SLE-Module-Server-Applications15-SP5-Source-Pool for sle-15-aarch64"}],"predecessor_ids":[1601,1777,1952,2150,2304],"cpe":"cpe:/o:suse:sle-module-server-applications:15:sp5","product_type":"module"},{"recommended":false,"version":"15.5","name":"Server Applications Module","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"Server Applications Module 15 SP5 ppc64le","release_type":null,"former_identifier":"sle-module-server-applications","friendly_version":"15 SP5","extensions":[],"release_stage":"released","id":2480,"identifier":"sle-module-server-applications","description":"

The SUSE Linux Enterprise Server Applications Module delivers a basic set of Server functionality.

Access to the Server Applications Module is included in your SUSE Linux Enterprise Server subscription.

","shortname":"Server-Applications-Module","free":true,"eula_url":"","arch":"ppc64le","predecessor_ids":[1600,1778,1953,2151,2305],"online_predecessor_ids":[1600,1778,1953,2151,2305],"product_class":"MODULE","repositories":[{"description":"SLE-Module-Server-Applications15-SP5-Updates for sle-15-ppc64le","name":"SLE-Module-Server-Applications15-SP5-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15-SP5/ppc64le/update/","enabled":true,"id":5738},{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15-SP5/ppc64le/update_debug/","autorefresh":true,"distro_target":"sle-15-ppc64le","id":5739,"enabled":false,"description":"SLE-Module-Server-Applications15-SP5-Debuginfo-Updates for sle-15-ppc64le","name":"SLE-Module-Server-Applications15-SP5-Debuginfo-Updates","installer_updates":false},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP5/ppc64le/product/","distro_target":"sle-15-ppc64le","autorefresh":false,"id":5740,"enabled":true,"description":"SLE-Module-Server-Applications15-SP5-Pool for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-Server-Applications15-SP5-Pool"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP5/ppc64le/product_debug/","distro_target":"sle-15-ppc64le","autorefresh":false,"id":5741,"enabled":false,"description":"SLE-Module-Server-Applications15-SP5-Debuginfo-Pool for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-Server-Applications15-SP5-Debuginfo-Pool"},{"distro_target":"sle-15-ppc64le","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP5/ppc64le/product_source/","enabled":false,"id":5742,"description":"SLE-Module-Server-Applications15-SP5-Source-Pool for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-Server-Applications15-SP5-Source-Pool"}],"cpe":"cpe:/o:suse:sle-module-server-applications:15:sp5","product_type":"module"},{"predecessor_ids":[1599,1779,1954,2152,2306],"repositories":[{"name":"SLE-Module-Server-Applications15-SP5-Updates","installer_updates":false,"description":"SLE-Module-Server-Applications15-SP5-Updates for sle-15-s390x","id":5743,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15-SP5/s390x/update/","autorefresh":true,"distro_target":"sle-15-s390x"},{"distro_target":"sle-15-s390x","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15-SP5/s390x/update_debug/","enabled":false,"id":5744,"description":"SLE-Module-Server-Applications15-SP5-Debuginfo-Updates for sle-15-s390x","installer_updates":false,"name":"SLE-Module-Server-Applications15-SP5-Debuginfo-Updates"},{"autorefresh":false,"distro_target":"sle-15-s390x","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP5/s390x/product/","enabled":true,"id":5745,"description":"SLE-Module-Server-Applications15-SP5-Pool for sle-15-s390x","name":"SLE-Module-Server-Applications15-SP5-Pool","installer_updates":false},{"installer_updates":false,"name":"SLE-Module-Server-Applications15-SP5-Debuginfo-Pool","description":"SLE-Module-Server-Applications15-SP5-Debuginfo-Pool for sle-15-s390x","id":5746,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP5/s390x/product_debug/","distro_target":"sle-15-s390x","autorefresh":false},{"enabled":false,"id":5747,"autorefresh":false,"distro_target":"sle-15-s390x","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP5/s390x/product_source/","name":"SLE-Module-Server-Applications15-SP5-Source-Pool","installer_updates":false,"description":"SLE-Module-Server-Applications15-SP5-Source-Pool for sle-15-s390x"}],"online_predecessor_ids":[1599,1779,1954,2152,2306],"product_class":"MODULE","product_type":"module","cpe":"cpe:/o:suse:sle-module-server-applications:15:sp5","free":true,"shortname":"Server-Applications-Module","description":"

The SUSE Linux Enterprise Server Applications Module delivers a basic set of Server functionality.

Access to the Server Applications Module is included in your SUSE Linux Enterprise Server subscription.

","eula_url":"","arch":"s390x","friendly_version":"15 SP5","extensions":[],"release_stage":"released","identifier":"sle-module-server-applications","id":2481,"recommended":false,"version":"15.5","offline_predecessor_ids":[],"name":"Server Applications Module","release_type":null,"former_identifier":"sle-module-server-applications","migration_extra":false,"friendly_name":"Server Applications Module 15 SP5 s390x"},{"extensions":[],"id":2482,"release_stage":"released","identifier":"sle-module-server-applications","friendly_version":"15 SP5","offline_predecessor_ids":[],"name":"Server Applications Module","release_type":null,"former_identifier":"sle-module-server-applications","friendly_name":"Server Applications Module 15 SP5 x86_64","migration_extra":false,"recommended":false,"version":"15.5","product_type":"module","cpe":"cpe:/o:suse:sle-module-server-applications:15:sp5","predecessor_ids":[1580,1780,1955,2153,2307],"product_class":"MODULE","online_predecessor_ids":[1580,1780,1955,2153,2307],"repositories":[{"enabled":true,"id":5748,"distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15-SP5/x86_64/update/","installer_updates":false,"name":"SLE-Module-Server-Applications15-SP5-Updates","description":"SLE-Module-Server-Applications15-SP5-Updates for sle-15-x86_64"},{"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15-SP5/x86_64/update_debug/","enabled":false,"id":5749,"description":"SLE-Module-Server-Applications15-SP5-Debuginfo-Updates for sle-15-x86_64","name":"SLE-Module-Server-Applications15-SP5-Debuginfo-Updates","installer_updates":false},{"description":"SLE-Module-Server-Applications15-SP5-Pool for sle-15-x86_64","name":"SLE-Module-Server-Applications15-SP5-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP5/x86_64/product/","enabled":true,"id":5750},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP5/x86_64/product_debug/","distro_target":"sle-15-x86_64","autorefresh":false,"id":5751,"enabled":false,"description":"SLE-Module-Server-Applications15-SP5-Debuginfo-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Server-Applications15-SP5-Debuginfo-Pool"},{"name":"SLE-Module-Server-Applications15-SP5-Source-Pool","installer_updates":false,"description":"SLE-Module-Server-Applications15-SP5-Source-Pool for sle-15-x86_64","id":5752,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP5/x86_64/product_source/","autorefresh":false,"distro_target":"sle-15-x86_64"}],"eula_url":"","arch":"x86_64","free":true,"shortname":"Server-Applications-Module","description":"

The SUSE Linux Enterprise Server Applications Module delivers a basic set of Server functionality.

Access to the Server Applications Module is included in your SUSE Linux Enterprise Server subscription.

"},{"free":true,"description":"

This Module contains several packages revolving around containers and related tools.

","shortname":"Containers-Module","eula_url":"","arch":"aarch64","predecessor_ids":[1920,1960,2154,2308],"online_predecessor_ids":[1920,1960,2154,2308],"product_class":"MODULE","repositories":[{"installer_updates":false,"name":"SLE-Module-Containers15-SP5-Updates","description":"SLE-Module-Containers15-SP5-Updates for sle-15-aarch64","enabled":true,"id":5753,"distro_target":"sle-15-aarch64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/15-SP5/aarch64/update/"},{"enabled":false,"id":5754,"distro_target":"sle-15-aarch64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/15-SP5/aarch64/update_debug/","installer_updates":false,"name":"SLE-Module-Containers15-SP5-Debuginfo-Updates","description":"SLE-Module-Containers15-SP5-Debuginfo-Updates for sle-15-aarch64"},{"distro_target":"sle-15-aarch64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP5/aarch64/product/","enabled":true,"id":5755,"description":"SLE-Module-Containers15-SP5-Pool for sle-15-aarch64","installer_updates":false,"name":"SLE-Module-Containers15-SP5-Pool"},{"autorefresh":false,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP5/aarch64/product_debug/","enabled":false,"id":5756,"description":"SLE-Module-Containers15-SP5-Debuginfo-Pool for sle-15-aarch64","name":"SLE-Module-Containers15-SP5-Debuginfo-Pool","installer_updates":false},{"name":"SLE-Module-Containers15-SP5-Source-Pool","installer_updates":false,"description":"SLE-Module-Containers15-SP5-Source-Pool for sle-15-aarch64","enabled":false,"id":5757,"autorefresh":false,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP5/aarch64/product_source/"}],"product_type":"module","cpe":"cpe:/o:suse:sle-module-containers:15:sp5","recommended":false,"version":"15.5","offline_predecessor_ids":[],"name":"Containers Module","former_identifier":"sle-module-containers","release_type":null,"migration_extra":false,"friendly_name":"Containers Module 15 SP5 aarch64","friendly_version":"15 SP5","extensions":[],"identifier":"sle-module-containers","release_stage":"released","id":2483},{"free":true,"description":"

This Module contains several packages revolving around containers and related tools.

","shortname":"Containers-Module","arch":"ppc64le","eula_url":"","online_predecessor_ids":[1640,1788,1961,2155,2309],"product_class":"MODULE","repositories":[{"installer_updates":false,"name":"SLE-Module-Containers15-SP5-Updates","description":"SLE-Module-Containers15-SP5-Updates for sle-15-ppc64le","id":5758,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/15-SP5/ppc64le/update/","distro_target":"sle-15-ppc64le","autorefresh":true},{"description":"SLE-Module-Containers15-SP5-Debuginfo-Updates for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-Containers15-SP5-Debuginfo-Updates","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/15-SP5/ppc64le/update_debug/","distro_target":"sle-15-ppc64le","autorefresh":true,"id":5759,"enabled":false},{"installer_updates":false,"name":"SLE-Module-Containers15-SP5-Pool","description":"SLE-Module-Containers15-SP5-Pool for sle-15-ppc64le","id":5760,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP5/ppc64le/product/","distro_target":"sle-15-ppc64le","autorefresh":false},{"description":"SLE-Module-Containers15-SP5-Debuginfo-Pool for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-Containers15-SP5-Debuginfo-Pool","distro_target":"sle-15-ppc64le","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP5/ppc64le/product_debug/","enabled":false,"id":5761},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP5/ppc64le/product_source/","autorefresh":false,"distro_target":"sle-15-ppc64le","id":5762,"enabled":false,"description":"SLE-Module-Containers15-SP5-Source-Pool for sle-15-ppc64le","name":"SLE-Module-Containers15-SP5-Source-Pool","installer_updates":false}],"predecessor_ids":[1640,1788,1961,2155,2309],"product_type":"module","cpe":"cpe:/o:suse:sle-module-containers:15:sp5","version":"15.5","recommended":false,"release_type":null,"former_identifier":"sle-module-containers","friendly_name":"Containers Module 15 SP5 ppc64le","migration_extra":false,"offline_predecessor_ids":[1353],"name":"Containers Module","friendly_version":"15 SP5","id":2484,"release_stage":"released","identifier":"sle-module-containers","extensions":[]},{"cpe":"cpe:/o:suse:sle-module-containers:15:sp5","product_type":"module","predecessor_ids":[1641,1789,1962,2156,2310],"online_predecessor_ids":[1641,1789,1962,2156,2310],"product_class":"MODULE","repositories":[{"description":"SLE-Module-Containers15-SP5-Updates for sle-15-s390x","name":"SLE-Module-Containers15-SP5-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-15-s390x","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/15-SP5/s390x/update/","enabled":true,"id":5763},{"distro_target":"sle-15-s390x","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/15-SP5/s390x/update_debug/","enabled":false,"id":5764,"description":"SLE-Module-Containers15-SP5-Debuginfo-Updates for sle-15-s390x","installer_updates":false,"name":"SLE-Module-Containers15-SP5-Debuginfo-Updates"},{"description":"SLE-Module-Containers15-SP5-Pool for sle-15-s390x","name":"SLE-Module-Containers15-SP5-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP5/s390x/product/","autorefresh":false,"distro_target":"sle-15-s390x","id":5765,"enabled":true},{"id":5766,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP5/s390x/product_debug/","distro_target":"sle-15-s390x","autorefresh":false,"installer_updates":false,"name":"SLE-Module-Containers15-SP5-Debuginfo-Pool","description":"SLE-Module-Containers15-SP5-Debuginfo-Pool for sle-15-s390x"},{"autorefresh":false,"distro_target":"sle-15-s390x","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP5/s390x/product_source/","enabled":false,"id":5767,"description":"SLE-Module-Containers15-SP5-Source-Pool for sle-15-s390x","name":"SLE-Module-Containers15-SP5-Source-Pool","installer_updates":false}],"eula_url":"","arch":"s390x","description":"

This Module contains several packages revolving around containers and related tools.

","shortname":"Containers-Module","free":true,"extensions":[],"id":2485,"release_stage":"released","identifier":"sle-module-containers","friendly_version":"15 SP5","name":"Containers Module","offline_predecessor_ids":[1354],"migration_extra":false,"friendly_name":"Containers Module 15 SP5 s390x","release_type":null,"former_identifier":"sle-module-containers","recommended":false,"version":"15.5"},{"cpe":"cpe:/o:suse:sle-module-containers:15:sp5","product_type":"module","predecessor_ids":[1642,1790,1963,2157,2311],"product_class":"MODULE","online_predecessor_ids":[1642,1790,1963,2157,2311],"repositories":[{"description":"SLE-Module-Containers15-SP5-Updates for sle-15-x86_64","name":"SLE-Module-Containers15-SP5-Updates","installer_updates":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/15-SP5/x86_64/update/","autorefresh":true,"distro_target":"sle-15-x86_64","id":5768,"enabled":true},{"installer_updates":false,"name":"SLE-Module-Containers15-SP5-Debuginfo-Updates","description":"SLE-Module-Containers15-SP5-Debuginfo-Updates for sle-15-x86_64","enabled":false,"id":5769,"distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/15-SP5/x86_64/update_debug/"},{"description":"SLE-Module-Containers15-SP5-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Containers15-SP5-Pool","distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP5/x86_64/product/","enabled":true,"id":5770},{"description":"SLE-Module-Containers15-SP5-Debuginfo-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Containers15-SP5-Debuginfo-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP5/x86_64/product_debug/","distro_target":"sle-15-x86_64","autorefresh":false,"id":5771,"enabled":false},{"description":"SLE-Module-Containers15-SP5-Source-Pool for sle-15-x86_64","name":"SLE-Module-Containers15-SP5-Source-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP5/x86_64/product_source/","autorefresh":false,"distro_target":"sle-15-x86_64","id":5772,"enabled":false}],"eula_url":"","arch":"x86_64","description":"

This Module contains several packages revolving around containers and related tools.

","shortname":"Containers-Module","free":true,"extensions":[],"release_stage":"released","identifier":"sle-module-containers","id":2486,"friendly_version":"15 SP5","name":"Containers Module","offline_predecessor_ids":[1332],"friendly_name":"Containers Module 15 SP5 x86_64","migration_extra":false,"former_identifier":"sle-module-containers","release_type":null,"recommended":false,"version":"15.5"},{"version":"15.5","recommended":false,"former_identifier":"sle-sdk","release_type":null,"friendly_name":"Development Tools Module 15 SP5 aarch64","migration_extra":false,"offline_predecessor_ids":[1376,1430,1633,1889],"name":"Development Tools Module","friendly_version":"15 SP5","release_stage":"released","id":2487,"identifier":"sle-module-development-tools","extensions":[],"free":true,"description":"

The Development Tools Module helps you developing applications for SUSE Linux Enterprise 15.

Access to the Development Tools Module is included in your SUSE Linux Enterprise product subscription. The module has a different lifecycle than SUSE Linux Enterprise itself.

","shortname":"Development-Tools-Module","arch":"aarch64","eula_url":"","online_predecessor_ids":[1598,1791,1968,2158,2312],"product_class":"MODULE","repositories":[{"installer_updates":false,"name":"SLE-Module-DevTools15-SP5-Updates","description":"SLE-Module-DevTools15-SP5-Updates for sle-15-aarch64","id":5773,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15-SP5/aarch64/update/","distro_target":"sle-15-aarch64","autorefresh":true},{"name":"SLE-Module-DevTools15-SP5-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-DevTools15-SP5-Debuginfo-Updates for sle-15-aarch64","id":5774,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15-SP5/aarch64/update_debug/","autorefresh":true,"distro_target":"sle-15-aarch64"},{"enabled":true,"id":5775,"autorefresh":false,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP5/aarch64/product/","name":"SLE-Module-DevTools15-SP5-Pool","installer_updates":false,"description":"SLE-Module-DevTools15-SP5-Pool for sle-15-aarch64"},{"installer_updates":false,"name":"SLE-Module-DevTools15-SP5-Debuginfo-Pool","description":"SLE-Module-DevTools15-SP5-Debuginfo-Pool for sle-15-aarch64","id":5776,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP5/aarch64/product_debug/","distro_target":"sle-15-aarch64","autorefresh":false},{"installer_updates":false,"name":"SLE-Module-DevTools15-SP5-Source-Pool","description":"SLE-Module-DevTools15-SP5-Source-Pool for sle-15-aarch64","id":5777,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP5/aarch64/product_source/","distro_target":"sle-15-aarch64","autorefresh":false}],"predecessor_ids":[1598,1791,1968,2158,2312],"product_type":"module","cpe":"cpe:/o:suse:sle-module-development-tools:15:sp5"},{"arch":"ppc64le","eula_url":"","free":true,"description":"

The Development Tools Module helps you developing applications for SUSE Linux Enterprise 15.

Access to the Development Tools Module is included in your SUSE Linux Enterprise product subscription. The module has a different lifecycle than SUSE Linux Enterprise itself.

","shortname":"Development-Tools-Module","product_type":"module","cpe":"cpe:/o:suse:sle-module-development-tools:15:sp5","online_predecessor_ids":[1597,1792,1969,2159,2313],"product_class":"MODULE","repositories":[{"autorefresh":true,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15-SP5/ppc64le/update/","enabled":true,"id":5778,"description":"SLE-Module-DevTools15-SP5-Updates for sle-15-ppc64le","name":"SLE-Module-DevTools15-SP5-Updates","installer_updates":false},{"name":"SLE-Module-DevTools15-SP5-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-DevTools15-SP5-Debuginfo-Updates for sle-15-ppc64le","id":5779,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15-SP5/ppc64le/update_debug/","autorefresh":true,"distro_target":"sle-15-ppc64le"},{"name":"SLE-Module-DevTools15-SP5-Pool","installer_updates":false,"description":"SLE-Module-DevTools15-SP5-Pool for sle-15-ppc64le","id":5780,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP5/ppc64le/product/","autorefresh":false,"distro_target":"sle-15-ppc64le"},{"id":5781,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP5/ppc64le/product_debug/","autorefresh":false,"distro_target":"sle-15-ppc64le","name":"SLE-Module-DevTools15-SP5-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-DevTools15-SP5-Debuginfo-Pool for sle-15-ppc64le"},{"enabled":false,"id":5782,"autorefresh":false,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP5/ppc64le/product_source/","name":"SLE-Module-DevTools15-SP5-Source-Pool","installer_updates":false,"description":"SLE-Module-DevTools15-SP5-Source-Pool for sle-15-ppc64le"}],"predecessor_ids":[1597,1792,1969,2159,2313],"former_identifier":"sle-sdk","release_type":null,"friendly_name":"Development Tools Module 15 SP5 ppc64le","migration_extra":false,"offline_predecessor_ids":[1339,1428,1631,1890],"name":"Development Tools Module","version":"15.5","recommended":false,"release_stage":"released","id":2488,"identifier":"sle-module-development-tools","extensions":[],"friendly_version":"15 SP5"},{"product_type":"module","cpe":"cpe:/o:suse:sle-module-development-tools:15:sp5","predecessor_ids":[1596,1793,1970,2160,2314],"online_predecessor_ids":[1596,1793,1970,2160,2314],"repositories":[{"description":"SLE-Module-DevTools15-SP5-Updates for sle-15-s390x","installer_updates":false,"name":"SLE-Module-DevTools15-SP5-Updates","distro_target":"sle-15-s390x","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15-SP5/s390x/update/","enabled":true,"id":5783},{"description":"SLE-Module-DevTools15-SP5-Debuginfo-Updates for sle-15-s390x","installer_updates":false,"name":"SLE-Module-DevTools15-SP5-Debuginfo-Updates","distro_target":"sle-15-s390x","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15-SP5/s390x/update_debug/","enabled":false,"id":5784},{"id":5785,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP5/s390x/product/","autorefresh":false,"distro_target":"sle-15-s390x","name":"SLE-Module-DevTools15-SP5-Pool","installer_updates":false,"description":"SLE-Module-DevTools15-SP5-Pool for sle-15-s390x"},{"distro_target":"sle-15-s390x","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP5/s390x/product_debug/","enabled":false,"id":5786,"description":"SLE-Module-DevTools15-SP5-Debuginfo-Pool for sle-15-s390x","installer_updates":false,"name":"SLE-Module-DevTools15-SP5-Debuginfo-Pool"},{"description":"SLE-Module-DevTools15-SP5-Source-Pool for sle-15-s390x","installer_updates":false,"name":"SLE-Module-DevTools15-SP5-Source-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP5/s390x/product_source/","distro_target":"sle-15-s390x","autorefresh":false,"id":5787,"enabled":false}],"product_class":"MODULE","eula_url":"","arch":"s390x","free":true,"description":"

The Development Tools Module helps you developing applications for SUSE Linux Enterprise 15.

Access to the Development Tools Module is included in your SUSE Linux Enterprise product subscription. The module has a different lifecycle than SUSE Linux Enterprise itself.

","shortname":"Development-Tools-Module","extensions":[],"identifier":"sle-module-development-tools","release_stage":"released","id":2489,"friendly_version":"15 SP5","offline_predecessor_ids":[1340,1429,1632,1891],"name":"Development Tools Module","release_type":null,"former_identifier":"sle-sdk","migration_extra":false,"friendly_name":"Development Tools Module 15 SP5 s390x","recommended":false,"version":"15.5"},{"offline_predecessor_ids":[1341,1427,1630,1892],"name":"Development Tools Module","former_identifier":"sle-sdk","release_type":null,"friendly_name":"Development Tools Module 15 SP5 x86_64","migration_extra":false,"recommended":false,"version":"15.5","extensions":[],"release_stage":"released","identifier":"sle-module-development-tools","id":2490,"friendly_version":"15 SP5","eula_url":"","arch":"x86_64","free":true,"description":"

The Development Tools Module helps you developing applications for SUSE Linux Enterprise 15.

Access to the Development Tools Module is included in your SUSE Linux Enterprise product subscription. The module has a different lifecycle than SUSE Linux Enterprise itself.

","shortname":"Development-Tools-Module","product_type":"module","cpe":"cpe:/o:suse:sle-module-development-tools:15:sp5","predecessor_ids":[1579,1794,1971,2161,2315],"online_predecessor_ids":[1579,1794,1971,2161,2315],"product_class":"MODULE","repositories":[{"installer_updates":false,"name":"SLE-Module-DevTools15-SP5-Updates","description":"SLE-Module-DevTools15-SP5-Updates for sle-15-x86_64","enabled":true,"id":5788,"distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15-SP5/x86_64/update/"},{"installer_updates":false,"name":"SLE-Module-DevTools15-SP5-Debuginfo-Updates","description":"SLE-Module-DevTools15-SP5-Debuginfo-Updates for sle-15-x86_64","id":5789,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15-SP5/x86_64/update_debug/","distro_target":"sle-15-x86_64","autorefresh":true},{"installer_updates":false,"name":"SLE-Module-DevTools15-SP5-Pool","description":"SLE-Module-DevTools15-SP5-Pool for sle-15-x86_64","id":5790,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP5/x86_64/product/","distro_target":"sle-15-x86_64","autorefresh":false},{"id":5791,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP5/x86_64/product_debug/","distro_target":"sle-15-x86_64","autorefresh":false,"installer_updates":false,"name":"SLE-Module-DevTools15-SP5-Debuginfo-Pool","description":"SLE-Module-DevTools15-SP5-Debuginfo-Pool for sle-15-x86_64"},{"enabled":false,"id":5792,"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP5/x86_64/product_source/","installer_updates":false,"name":"SLE-Module-DevTools15-SP5-Source-Pool","description":"SLE-Module-DevTools15-SP5-Source-Pool for sle-15-x86_64"}]},{"eula_url":"","arch":"aarch64","description":"

The SUSE Linux Enterprise Web and Scripting Module should contains additional packages that are helpful when running a webserver.

Access to the Web and Scripting Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself: Package versions in this module are usually supported for at most three years. We are planning to release more recent versions on a schedule of approximately 18 month; the exact dates may differ per package.

","shortname":"Web-Scripting-Module","free":true,"cpe":"cpe:/o:suse:sle-module-web-scripting:15:sp5","product_type":"module","predecessor_ids":[1718,1795,1973,2162,2316],"product_class":"MODULE","online_predecessor_ids":[1718,1795,1973,2162,2316],"repositories":[{"description":"SLE-Module-Web-Scripting15-SP5-Updates for sle-15-aarch64","name":"SLE-Module-Web-Scripting15-SP5-Updates","installer_updates":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/15-SP5/aarch64/update/","autorefresh":true,"distro_target":"sle-15-aarch64","id":5793,"enabled":true},{"id":5794,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/15-SP5/aarch64/update_debug/","autorefresh":true,"distro_target":"sle-15-aarch64","name":"SLE-Module-Web-Scripting15-SP5-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-Web-Scripting15-SP5-Debuginfo-Updates for sle-15-aarch64"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP5/aarch64/product/","distro_target":"sle-15-aarch64","autorefresh":false,"id":5795,"enabled":true,"description":"SLE-Module-Web-Scripting15-SP5-Pool for sle-15-aarch64","installer_updates":false,"name":"SLE-Module-Web-Scripting15-SP5-Pool"},{"name":"SLE-Module-Web-Scripting15-SP5-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-Web-Scripting15-SP5-Debuginfo-Pool for sle-15-aarch64","enabled":false,"id":5796,"autorefresh":false,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP5/aarch64/product_debug/"},{"name":"SLE-Module-Web-Scripting15-SP5-Source-Pool","installer_updates":false,"description":"SLE-Module-Web-Scripting15-SP5-Source-Pool for sle-15-aarch64","enabled":false,"id":5797,"autorefresh":false,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP5/aarch64/product_source/"}],"name":"Web and Scripting Module","offline_predecessor_ids":[1539],"friendly_name":"Web and Scripting Module 15 SP5 aarch64","migration_extra":false,"release_type":null,"former_identifier":"sle-module-web-scripting","recommended":false,"version":"15.5","extensions":[],"id":2491,"release_stage":"released","identifier":"sle-module-web-scripting","friendly_version":"15 SP5"},{"description":"

The SUSE Linux Enterprise Web and Scripting Module should contains additional packages that are helpful when running a webserver.

Access to the Web and Scripting Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself: Package versions in this module are usually supported for at most three years. We are planning to release more recent versions on a schedule of approximately 18 month; the exact dates may differ per package.

","shortname":"Web-Scripting-Module","free":true,"arch":"ppc64le","eula_url":"","online_predecessor_ids":[1719,1796,1974,2163,2317],"product_class":"MODULE","repositories":[{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/15-SP5/ppc64le/update/","distro_target":"sle-15-ppc64le","autorefresh":true,"id":5798,"enabled":true,"description":"SLE-Module-Web-Scripting15-SP5-Updates for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-Web-Scripting15-SP5-Updates"},{"installer_updates":false,"name":"SLE-Module-Web-Scripting15-SP5-Debuginfo-Updates","description":"SLE-Module-Web-Scripting15-SP5-Debuginfo-Updates for sle-15-ppc64le","id":5799,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/15-SP5/ppc64le/update_debug/","distro_target":"sle-15-ppc64le","autorefresh":true},{"installer_updates":false,"name":"SLE-Module-Web-Scripting15-SP5-Pool","description":"SLE-Module-Web-Scripting15-SP5-Pool for sle-15-ppc64le","id":5800,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP5/ppc64le/product/","distro_target":"sle-15-ppc64le","autorefresh":false},{"name":"SLE-Module-Web-Scripting15-SP5-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-Web-Scripting15-SP5-Debuginfo-Pool for sle-15-ppc64le","id":5801,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP5/ppc64le/product_debug/","autorefresh":false,"distro_target":"sle-15-ppc64le"},{"name":"SLE-Module-Web-Scripting15-SP5-Source-Pool","installer_updates":false,"description":"SLE-Module-Web-Scripting15-SP5-Source-Pool for sle-15-ppc64le","id":5802,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP5/ppc64le/product_source/","autorefresh":false,"distro_target":"sle-15-ppc64le"}],"predecessor_ids":[1719,1796,1974,2163,2317],"cpe":"cpe:/o:suse:sle-module-web-scripting:15:sp5","product_type":"module","version":"15.5","recommended":false,"friendly_name":"Web and Scripting Module 15 SP5 ppc64le","migration_extra":false,"release_type":null,"former_identifier":"sle-module-web-scripting","name":"Web and Scripting Module","offline_predecessor_ids":[1151],"friendly_version":"15 SP5","release_stage":"released","id":2492,"identifier":"sle-module-web-scripting","extensions":[]},{"friendly_version":"15 SP5","extensions":[],"release_stage":"released","identifier":"sle-module-web-scripting","id":2493,"recommended":false,"version":"15.5","name":"Web and Scripting Module","offline_predecessor_ids":[1152],"friendly_name":"Web and Scripting Module 15 SP5 s390x","migration_extra":false,"release_type":null,"former_identifier":"sle-module-web-scripting","predecessor_ids":[1720,1797,1975,2164,2318],"online_predecessor_ids":[1720,1797,1975,2164,2318],"repositories":[{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/15-SP5/s390x/update/","distro_target":"sle-15-s390x","autorefresh":true,"id":5803,"enabled":true,"description":"SLE-Module-Web-Scripting15-SP5-Updates for sle-15-s390x","installer_updates":false,"name":"SLE-Module-Web-Scripting15-SP5-Updates"},{"autorefresh":true,"distro_target":"sle-15-s390x","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/15-SP5/s390x/update_debug/","enabled":false,"id":5804,"description":"SLE-Module-Web-Scripting15-SP5-Debuginfo-Updates for sle-15-s390x","name":"SLE-Module-Web-Scripting15-SP5-Debuginfo-Updates","installer_updates":false},{"name":"SLE-Module-Web-Scripting15-SP5-Pool","installer_updates":false,"description":"SLE-Module-Web-Scripting15-SP5-Pool for sle-15-s390x","enabled":true,"id":5805,"autorefresh":false,"distro_target":"sle-15-s390x","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP5/s390x/product/"},{"id":5806,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP5/s390x/product_debug/","autorefresh":false,"distro_target":"sle-15-s390x","name":"SLE-Module-Web-Scripting15-SP5-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-Web-Scripting15-SP5-Debuginfo-Pool for sle-15-s390x"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP5/s390x/product_source/","distro_target":"sle-15-s390x","autorefresh":false,"id":5807,"enabled":false,"description":"SLE-Module-Web-Scripting15-SP5-Source-Pool for sle-15-s390x","installer_updates":false,"name":"SLE-Module-Web-Scripting15-SP5-Source-Pool"}],"product_class":"MODULE","cpe":"cpe:/o:suse:sle-module-web-scripting:15:sp5","product_type":"module","shortname":"Web-Scripting-Module","description":"

The SUSE Linux Enterprise Web and Scripting Module should contains additional packages that are helpful when running a webserver.

Access to the Web and Scripting Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself: Package versions in this module are usually supported for at most three years. We are planning to release more recent versions on a schedule of approximately 18 month; the exact dates may differ per package.

","free":true,"eula_url":"","arch":"s390x"},{"description":"

The SUSE Linux Enterprise Web and Scripting Module should contains additional packages that are helpful when running a webserver.

Access to the Web and Scripting Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself: Package versions in this module are usually supported for at most three years. We are planning to release more recent versions on a schedule of approximately 18 month; the exact dates may differ per package.

","shortname":"Web-Scripting-Module","free":true,"eula_url":"","arch":"x86_64","predecessor_ids":[1721,1798,1976,2165,2319],"online_predecessor_ids":[1721,1798,1976,2165,2319],"product_class":"MODULE","repositories":[{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/15-SP5/x86_64/update/","autorefresh":true,"distro_target":"sle-15-x86_64","id":5808,"enabled":true,"description":"SLE-Module-Web-Scripting15-SP5-Updates for sle-15-x86_64","name":"SLE-Module-Web-Scripting15-SP5-Updates","installer_updates":false},{"name":"SLE-Module-Web-Scripting15-SP5-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-Web-Scripting15-SP5-Debuginfo-Updates for sle-15-x86_64","enabled":false,"id":5809,"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/15-SP5/x86_64/update_debug/"},{"installer_updates":false,"name":"SLE-Module-Web-Scripting15-SP5-Pool","description":"SLE-Module-Web-Scripting15-SP5-Pool for sle-15-x86_64","enabled":true,"id":5810,"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP5/x86_64/product/"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP5/x86_64/product_debug/","distro_target":"sle-15-x86_64","autorefresh":false,"id":5811,"enabled":false,"description":"SLE-Module-Web-Scripting15-SP5-Debuginfo-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Web-Scripting15-SP5-Debuginfo-Pool"},{"name":"SLE-Module-Web-Scripting15-SP5-Source-Pool","installer_updates":false,"description":"SLE-Module-Web-Scripting15-SP5-Source-Pool for sle-15-x86_64","enabled":false,"id":5812,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP5/x86_64/product_source/"}],"cpe":"cpe:/o:suse:sle-module-web-scripting:15:sp5","product_type":"module","recommended":false,"version":"15.5","name":"Web and Scripting Module","offline_predecessor_ids":[1153],"migration_extra":false,"friendly_name":"Web and Scripting Module 15 SP5 x86_64","former_identifier":"sle-module-web-scripting","release_type":null,"friendly_version":"15 SP5","extensions":[],"identifier":"sle-module-web-scripting","release_stage":"released","id":2494},{"extensions":[],"id":2495,"release_stage":"released","identifier":"sle-module-hpc","friendly_version":"15 SP5","offline_predecessor_ids":[1522],"name":"HPC Module","former_identifier":"sle-module-hpc","release_type":null,"friendly_name":"HPC Module 15 SP5 aarch64","migration_extra":false,"recommended":false,"version":"15.5","product_type":"module","cpe":"cpe:/o:suse:sle-module-hpc:15:sp5","predecessor_ids":[1733,1799,1977,2166,2355],"repositories":[{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-HPC/15-SP5/aarch64/update/","distro_target":"sle-15-aarch64","autorefresh":true,"id":5813,"enabled":true,"description":"SLE-Module-HPC15-SP5-Updates for sle-15-aarch64","installer_updates":false,"name":"SLE-Module-HPC15-SP5-Updates"},{"installer_updates":false,"name":"SLE-Module-HPC15-SP5-Debuginfo-Updates","description":"SLE-Module-HPC15-SP5-Debuginfo-Updates for sle-15-aarch64","enabled":false,"id":5814,"distro_target":"sle-15-aarch64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-HPC/15-SP5/aarch64/update_debug/"},{"enabled":true,"id":5815,"autorefresh":false,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-HPC/15-SP5/aarch64/product/","name":"SLE-Module-HPC15-SP5-Pool","installer_updates":false,"description":"SLE-Module-HPC15-SP5-Pool for sle-15-aarch64"},{"name":"SLE-Module-HPC15-SP5-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-HPC15-SP5-Debuginfo-Pool for sle-15-aarch64","enabled":false,"id":5816,"autorefresh":false,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-HPC/15-SP5/aarch64/product_debug/"},{"autorefresh":false,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-HPC/15-SP5/aarch64/product_source/","enabled":false,"id":5817,"description":"SLE-Module-HPC15-SP5-Source-Pool for sle-15-aarch64","name":"SLE-Module-HPC15-SP5-Source-Pool","installer_updates":false}],"online_predecessor_ids":[1733,1799,1977,2166,2355],"product_class":"MODULE","eula_url":"","arch":"aarch64","free":true,"shortname":"HPC-Module","description":"

The SUSE Linux Enterprise Server High Performance Computing (HPC) module delivers specific tools commonly used for high performance, numerically intensive workloads.

SUSE packages these tools in the SLES HPC Module to provide greater flexibility to deliver new versions or new tools more rapidly than the standard SUSE Linux Enterprise lifecycle would permit.

Packages in this module are generally supported until a newer version of the package is released or the package is dropped from the module.

"},{"recommended":false,"version":"15.5","offline_predecessor_ids":[1440],"name":"HPC Module","release_type":null,"former_identifier":"sle-module-hpc","migration_extra":false,"friendly_name":"HPC Module 15 SP5 x86_64","friendly_version":"15 SP5","extensions":[],"id":2496,"release_stage":"released","identifier":"sle-module-hpc","free":true,"shortname":"HPC-Module","description":"

The SUSE Linux Enterprise Server High Performance Computing (HPC) module delivers specific tools commonly used for high performance, numerically intensive workloads.

SUSE packages these tools in the SLES HPC Module to provide greater flexibility to deliver new versions or new tools more rapidly than the standard SUSE Linux Enterprise lifecycle would permit.

Packages in this module are generally supported until a newer version of the package is released or the package is dropped from the module.

","eula_url":"","arch":"x86_64","predecessor_ids":[1734,1800,1978,2167,2356],"repositories":[{"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-HPC/15-SP5/x86_64/update/","enabled":true,"id":5818,"description":"SLE-Module-HPC15-SP5-Updates for sle-15-x86_64","name":"SLE-Module-HPC15-SP5-Updates","installer_updates":false},{"name":"SLE-Module-HPC15-SP5-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-HPC15-SP5-Debuginfo-Updates for sle-15-x86_64","enabled":false,"id":5819,"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-HPC/15-SP5/x86_64/update_debug/"},{"enabled":true,"id":5820,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-HPC/15-SP5/x86_64/product/","name":"SLE-Module-HPC15-SP5-Pool","installer_updates":false,"description":"SLE-Module-HPC15-SP5-Pool for sle-15-x86_64"},{"id":5821,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-HPC/15-SP5/x86_64/product_debug/","distro_target":"sle-15-x86_64","autorefresh":false,"installer_updates":false,"name":"SLE-Module-HPC15-SP5-Debuginfo-Pool","description":"SLE-Module-HPC15-SP5-Debuginfo-Pool for sle-15-x86_64"},{"installer_updates":false,"name":"SLE-Module-HPC15-SP5-Source-Pool","description":"SLE-Module-HPC15-SP5-Source-Pool for sle-15-x86_64","enabled":false,"id":5822,"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-HPC/15-SP5/x86_64/product_source/"}],"online_predecessor_ids":[1734,1800,1978,2167,2356],"product_class":"MODULE","product_type":"module","cpe":"cpe:/o:suse:sle-module-hpc:15:sp5"},{"product_type":"module","cpe":"cpe:/o:suse:sle-module-legacy:15:sp5","online_predecessor_ids":[1604,1801,1979,2168,2320],"product_class":"MODULE","repositories":[{"installer_updates":false,"name":"SLE-Module-Legacy15-SP5-Updates","description":"SLE-Module-Legacy15-SP5-Updates for sle-15-aarch64","id":5823,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/15-SP5/aarch64/update/","distro_target":"sle-15-aarch64","autorefresh":true},{"id":5824,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/15-SP5/aarch64/update_debug/","autorefresh":true,"distro_target":"sle-15-aarch64","name":"SLE-Module-Legacy15-SP5-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-Legacy15-SP5-Debuginfo-Updates for sle-15-aarch64"},{"name":"SLE-Module-Legacy15-SP5-Pool","installer_updates":false,"description":"SLE-Module-Legacy15-SP5-Pool for sle-15-aarch64","id":5825,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15-SP5/aarch64/product/","autorefresh":false,"distro_target":"sle-15-aarch64"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15-SP5/aarch64/product_debug/","distro_target":"sle-15-aarch64","autorefresh":false,"id":5826,"enabled":false,"description":"SLE-Module-Legacy15-SP5-Debuginfo-Pool for sle-15-aarch64","installer_updates":false,"name":"SLE-Module-Legacy15-SP5-Debuginfo-Pool"},{"name":"SLE-Module-Legacy15-SP5-Source-Pool","installer_updates":false,"description":"SLE-Module-Legacy15-SP5-Source-Pool for sle-15-aarch64","id":5827,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15-SP5/aarch64/product_source/","autorefresh":false,"distro_target":"sle-15-aarch64"}],"predecessor_ids":[1604,1801,1979,2168,2320],"arch":"aarch64","eula_url":"","free":true,"description":"

The Legacy Module helps you migrating applications from SUSE Linux Enterprise 12 and other systems to SUSE Linux Enterprise 15, by providing packages which are discontinued on SUSE Linux Enterprise Server, such as: ntp, IBM Java 8, and a number of libraries.

Access to the Legacy Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself. Packages in the this module are usually supported for at most three years.

","shortname":"Legacy-Module","id":2497,"release_stage":"released","identifier":"sle-module-legacy","extensions":[],"friendly_version":"15 SP5","release_type":null,"former_identifier":"sle-module-legacy","migration_extra":false,"friendly_name":"Legacy Module 15 SP5 aarch64","offline_predecessor_ids":[],"name":"Legacy Module","version":"15.5","recommended":false},{"product_class":"MODULE","online_predecessor_ids":[1603,1802,1980,2169,2321],"repositories":[{"autorefresh":true,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/15-SP5/ppc64le/update/","enabled":true,"id":5828,"description":"SLE-Module-Legacy15-SP5-Updates for sle-15-ppc64le","name":"SLE-Module-Legacy15-SP5-Updates","installer_updates":false},{"installer_updates":false,"name":"SLE-Module-Legacy15-SP5-Debuginfo-Updates","description":"SLE-Module-Legacy15-SP5-Debuginfo-Updates for sle-15-ppc64le","id":5829,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/15-SP5/ppc64le/update_debug/","distro_target":"sle-15-ppc64le","autorefresh":true},{"enabled":true,"id":5830,"distro_target":"sle-15-ppc64le","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15-SP5/ppc64le/product/","installer_updates":false,"name":"SLE-Module-Legacy15-SP5-Pool","description":"SLE-Module-Legacy15-SP5-Pool for sle-15-ppc64le"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15-SP5/ppc64le/product_debug/","distro_target":"sle-15-ppc64le","autorefresh":false,"id":5831,"enabled":false,"description":"SLE-Module-Legacy15-SP5-Debuginfo-Pool for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-Legacy15-SP5-Debuginfo-Pool"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15-SP5/ppc64le/product_source/","distro_target":"sle-15-ppc64le","autorefresh":false,"id":5832,"enabled":false,"description":"SLE-Module-Legacy15-SP5-Source-Pool for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-Legacy15-SP5-Source-Pool"}],"predecessor_ids":[1603,1802,1980,2169,2321],"product_type":"module","cpe":"cpe:/o:suse:sle-module-legacy:15:sp5","free":true,"shortname":"Legacy-Module","description":"

The Legacy Module helps you migrating applications from SUSE Linux Enterprise 12 and other systems to SUSE Linux Enterprise 15, by providing packages which are discontinued on SUSE Linux Enterprise Server, such as: ntp, IBM Java 8, and a number of libraries.

Access to the Legacy Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself. Packages in the this module are usually supported for at most three years.

","arch":"ppc64le","eula_url":"","friendly_version":"15 SP5","identifier":"sle-module-legacy","release_stage":"released","id":2498,"extensions":[],"version":"15.5","recommended":false,"former_identifier":"sle-module-legacy","release_type":null,"migration_extra":false,"friendly_name":"Legacy Module 15 SP5 ppc64le","offline_predecessor_ids":[1148],"name":"Legacy Module"},{"description":"

The Legacy Module helps you migrating applications from SUSE Linux Enterprise 12 and other systems to SUSE Linux Enterprise 15, by providing packages which are discontinued on SUSE Linux Enterprise Server, such as: ntp, IBM Java 8, and a number of libraries.

Access to the Legacy Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself. Packages in the this module are usually supported for at most three years.

","shortname":"Legacy-Module","free":true,"arch":"s390x","eula_url":"","repositories":[{"installer_updates":false,"name":"SLE-Module-Legacy15-SP5-Updates","description":"SLE-Module-Legacy15-SP5-Updates for sle-15-s390x","id":5833,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/15-SP5/s390x/update/","distro_target":"sle-15-s390x","autorefresh":true},{"id":5834,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/15-SP5/s390x/update_debug/","autorefresh":true,"distro_target":"sle-15-s390x","name":"SLE-Module-Legacy15-SP5-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-Legacy15-SP5-Debuginfo-Updates for sle-15-s390x"},{"installer_updates":false,"name":"SLE-Module-Legacy15-SP5-Pool","description":"SLE-Module-Legacy15-SP5-Pool for sle-15-s390x","id":5835,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15-SP5/s390x/product/","distro_target":"sle-15-s390x","autorefresh":false},{"description":"SLE-Module-Legacy15-SP5-Debuginfo-Pool for sle-15-s390x","name":"SLE-Module-Legacy15-SP5-Debuginfo-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15-SP5/s390x/product_debug/","autorefresh":false,"distro_target":"sle-15-s390x","id":5836,"enabled":false},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15-SP5/s390x/product_source/","distro_target":"sle-15-s390x","autorefresh":false,"id":5837,"enabled":false,"description":"SLE-Module-Legacy15-SP5-Source-Pool for sle-15-s390x","installer_updates":false,"name":"SLE-Module-Legacy15-SP5-Source-Pool"}],"online_predecessor_ids":[1602,1803,1981,2170,2322],"product_class":"MODULE","predecessor_ids":[1602,1803,1981,2170,2322],"cpe":"cpe:/o:suse:sle-module-legacy:15:sp5","product_type":"module","version":"15.5","recommended":false,"migration_extra":false,"friendly_name":"Legacy Module 15 SP5 s390x","former_identifier":"sle-module-legacy","release_type":null,"name":"Legacy Module","offline_predecessor_ids":[1149],"friendly_version":"15 SP5","identifier":"sle-module-legacy","release_stage":"released","id":2499,"extensions":[]},{"name":"Legacy Module","offline_predecessor_ids":[1150],"migration_extra":false,"friendly_name":"Legacy Module 15 SP5 x86_64","former_identifier":"sle-module-legacy","release_type":null,"recommended":false,"version":"15.5","extensions":[],"identifier":"sle-module-legacy","release_stage":"released","id":2500,"friendly_version":"15 SP5","eula_url":"","arch":"x86_64","description":"

The Legacy Module helps you migrating applications from SUSE Linux Enterprise 12 and other systems to SUSE Linux Enterprise 15, by providing packages which are discontinued on SUSE Linux Enterprise Server, such as: ntp, IBM Java 8, and a number of libraries.

Access to the Legacy Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself. Packages in the this module are usually supported for at most three years.

","shortname":"Legacy-Module","free":true,"cpe":"cpe:/o:suse:sle-module-legacy:15:sp5","product_type":"module","predecessor_ids":[1581,1804,1982,2171,2323],"product_class":"MODULE","online_predecessor_ids":[1581,1804,1982,2171,2323],"repositories":[{"distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/15-SP5/x86_64/update/","enabled":true,"id":5838,"description":"SLE-Module-Legacy15-SP5-Updates for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Legacy15-SP5-Updates"},{"name":"SLE-Module-Legacy15-SP5-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-Legacy15-SP5-Debuginfo-Updates for sle-15-x86_64","id":5839,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/15-SP5/x86_64/update_debug/","autorefresh":true,"distro_target":"sle-15-x86_64"},{"enabled":true,"id":5840,"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15-SP5/x86_64/product/","installer_updates":false,"name":"SLE-Module-Legacy15-SP5-Pool","description":"SLE-Module-Legacy15-SP5-Pool for sle-15-x86_64"},{"name":"SLE-Module-Legacy15-SP5-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-Legacy15-SP5-Debuginfo-Pool for sle-15-x86_64","enabled":false,"id":5841,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15-SP5/x86_64/product_debug/"},{"description":"SLE-Module-Legacy15-SP5-Source-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Legacy15-SP5-Source-Pool","distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15-SP5/x86_64/product_source/","enabled":false,"id":5842}]},{"friendly_version":"15 SP5","extensions":[],"id":2501,"release_stage":"released","identifier":"sle-module-public-cloud","recommended":false,"version":"15.5","name":"Public Cloud Module","offline_predecessor_ids":[1528],"migration_extra":false,"friendly_name":"Public Cloud Module 15 SP5 aarch64","former_identifier":"sle-module-public-cloud","release_type":null,"predecessor_ids":[1645,1805,1985,2172,2324],"online_predecessor_ids":[1645,1805,1985,2172,2324],"repositories":[{"enabled":true,"id":5843,"distro_target":"sle-15-aarch64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/15-SP5/aarch64/update/","installer_updates":false,"name":"SLE-Module-Public-Cloud15-SP5-Updates","description":"SLE-Module-Public-Cloud15-SP5-Updates for sle-15-aarch64"},{"description":"SLE-Module-Public-Cloud15-SP5-Debuginfo-Updates for sle-15-aarch64","installer_updates":false,"name":"SLE-Module-Public-Cloud15-SP5-Debuginfo-Updates","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/15-SP5/aarch64/update_debug/","distro_target":"sle-15-aarch64","autorefresh":true,"id":5844,"enabled":false},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP5/aarch64/product/","distro_target":"sle-15-aarch64","autorefresh":false,"id":5845,"enabled":true,"description":"SLE-Module-Public-Cloud15-SP5-Pool for sle-15-aarch64","installer_updates":false,"name":"SLE-Module-Public-Cloud15-SP5-Pool"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP5/aarch64/product_debug/","distro_target":"sle-15-aarch64","autorefresh":false,"id":5846,"enabled":false,"description":"SLE-Module-Public-Cloud15-SP5-Debuginfo-Pool for sle-15-aarch64","installer_updates":false,"name":"SLE-Module-Public-Cloud15-SP5-Debuginfo-Pool"},{"autorefresh":false,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP5/aarch64/product_source/","enabled":false,"id":5847,"description":"SLE-Module-Public-Cloud15-SP5-Source-Pool for sle-15-aarch64","name":"SLE-Module-Public-Cloud15-SP5-Source-Pool","installer_updates":false}],"product_class":"MODULE","cpe":"cpe:/o:suse:sle-module-public-cloud:15:sp5","product_type":"module","description":"

The Public Cloud Module is a collection of tools that enables you to create and manage cloud images from the commandline on SUSE Linux Enterprise Server. When building your own images with KIWI or SUSE Studio, initialization code specific to the target cloud is included in that image.

Access to the Public Cloud Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself; please check the Release Notes for further details.

","shortname":"Public-Cloud-Module","free":true,"eula_url":"","arch":"aarch64"},{"friendly_name":"Public Cloud Module 15 SP5 ppc64le","migration_extra":false,"former_identifier":"sle-module-public-cloud","release_type":null,"name":"Public Cloud Module","offline_predecessor_ids":[1218],"version":"15.5","recommended":false,"identifier":"sle-module-public-cloud","release_stage":"released","id":2502,"extensions":[],"friendly_version":"15 SP5","arch":"ppc64le","eula_url":"","shortname":"Public-Cloud-Module","description":"

The Public Cloud Module is a collection of tools that enables you to create and manage cloud images from the commandline on SUSE Linux Enterprise Server. When building your own images with KIWI or SUSE Studio, initialization code specific to the target cloud is included in that image.

Access to the Public Cloud Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself; please check the Release Notes for further details.

","free":true,"cpe":"cpe:/o:suse:sle-module-public-cloud:15:sp5","product_type":"module","product_class":"MODULE","online_predecessor_ids":[1616,1806,1986,2173,2325],"repositories":[{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/15-SP5/ppc64le/update/","distro_target":"sle-15-ppc64le","autorefresh":true,"id":5848,"enabled":true,"description":"SLE-Module-Public-Cloud15-SP5-Updates for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-Public-Cloud15-SP5-Updates"},{"enabled":false,"id":5849,"autorefresh":true,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/15-SP5/ppc64le/update_debug/","name":"SLE-Module-Public-Cloud15-SP5-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-Public-Cloud15-SP5-Debuginfo-Updates for sle-15-ppc64le"},{"installer_updates":false,"name":"SLE-Module-Public-Cloud15-SP5-Pool","description":"SLE-Module-Public-Cloud15-SP5-Pool for sle-15-ppc64le","id":5850,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP5/ppc64le/product/","distro_target":"sle-15-ppc64le","autorefresh":false},{"description":"SLE-Module-Public-Cloud15-SP5-Debuginfo-Pool for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-Public-Cloud15-SP5-Debuginfo-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP5/ppc64le/product_debug/","distro_target":"sle-15-ppc64le","autorefresh":false,"id":5851,"enabled":false},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP5/ppc64le/product_source/","distro_target":"sle-15-ppc64le","autorefresh":false,"id":5852,"enabled":false,"description":"SLE-Module-Public-Cloud15-SP5-Source-Pool for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-Public-Cloud15-SP5-Source-Pool"}],"predecessor_ids":[1616,1806,1986,2173,2325]},{"cpe":"cpe:/o:suse:sle-module-public-cloud:15:sp5","product_type":"module","online_predecessor_ids":[1646,1807,1987,2174,2326],"product_class":"MODULE","repositories":[{"enabled":true,"id":5853,"distro_target":"sle-15-s390x","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/15-SP5/s390x/update/","installer_updates":false,"name":"SLE-Module-Public-Cloud15-SP5-Updates","description":"SLE-Module-Public-Cloud15-SP5-Updates for sle-15-s390x"},{"enabled":false,"id":5854,"autorefresh":true,"distro_target":"sle-15-s390x","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/15-SP5/s390x/update_debug/","name":"SLE-Module-Public-Cloud15-SP5-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-Public-Cloud15-SP5-Debuginfo-Updates for sle-15-s390x"},{"description":"SLE-Module-Public-Cloud15-SP5-Pool for sle-15-s390x","installer_updates":false,"name":"SLE-Module-Public-Cloud15-SP5-Pool","distro_target":"sle-15-s390x","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP5/s390x/product/","enabled":true,"id":5855},{"installer_updates":false,"name":"SLE-Module-Public-Cloud15-SP5-Debuginfo-Pool","description":"SLE-Module-Public-Cloud15-SP5-Debuginfo-Pool for sle-15-s390x","id":5856,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP5/s390x/product_debug/","distro_target":"sle-15-s390x","autorefresh":false},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP5/s390x/product_source/","distro_target":"sle-15-s390x","autorefresh":false,"id":5857,"enabled":false,"description":"SLE-Module-Public-Cloud15-SP5-Source-Pool for sle-15-s390x","installer_updates":false,"name":"SLE-Module-Public-Cloud15-SP5-Source-Pool"}],"predecessor_ids":[1646,1807,1987,2174,2326],"arch":"s390x","eula_url":"","shortname":"Public-Cloud-Module","description":"

The Public Cloud Module is a collection of tools that enables you to create and manage cloud images from the commandline on SUSE Linux Enterprise Server. When building your own images with KIWI or SUSE Studio, initialization code specific to the target cloud is included in that image.

Access to the Public Cloud Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself; please check the Release Notes for further details.

","free":true,"release_stage":"released","identifier":"sle-module-public-cloud","id":2503,"extensions":[],"friendly_version":"15 SP5","migration_extra":false,"friendly_name":"Public Cloud Module 15 SP5 s390x","release_type":null,"former_identifier":"sle-module-public-cloud","name":"Public Cloud Module","offline_predecessor_ids":[1219],"version":"15.5","recommended":false},{"product_type":"module","cpe":"cpe:/o:suse:sle-module-public-cloud:15:sp5","online_predecessor_ids":[1611,1808,1988,2175,2327],"product_class":"MODULE","repositories":[{"id":5858,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/15-SP5/x86_64/update/","autorefresh":true,"distro_target":"sle-15-x86_64","name":"SLE-Module-Public-Cloud15-SP5-Updates","installer_updates":false,"description":"SLE-Module-Public-Cloud15-SP5-Updates for sle-15-x86_64"},{"description":"SLE-Module-Public-Cloud15-SP5-Debuginfo-Updates for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Public-Cloud15-SP5-Debuginfo-Updates","distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/15-SP5/x86_64/update_debug/","enabled":false,"id":5859},{"installer_updates":false,"name":"SLE-Module-Public-Cloud15-SP5-Pool","description":"SLE-Module-Public-Cloud15-SP5-Pool for sle-15-x86_64","id":5860,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP5/x86_64/product/","distro_target":"sle-15-x86_64","autorefresh":false},{"id":5861,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP5/x86_64/product_debug/","autorefresh":false,"distro_target":"sle-15-x86_64","name":"SLE-Module-Public-Cloud15-SP5-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-Public-Cloud15-SP5-Debuginfo-Pool for sle-15-x86_64"},{"name":"SLE-Module-Public-Cloud15-SP5-Source-Pool","installer_updates":false,"description":"SLE-Module-Public-Cloud15-SP5-Source-Pool for sle-15-x86_64","id":5862,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP5/x86_64/product_source/","autorefresh":false,"distro_target":"sle-15-x86_64"}],"predecessor_ids":[1611,1808,1988,2175,2327],"arch":"x86_64","eula_url":"","free":true,"description":"

The Public Cloud Module is a collection of tools that enables you to create and manage cloud images from the commandline on SUSE Linux Enterprise Server. When building your own images with KIWI or SUSE Studio, initialization code specific to the target cloud is included in that image.

Access to the Public Cloud Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself; please check the Release Notes for further details.

","shortname":"Public-Cloud-Module","release_stage":"released","id":2504,"identifier":"sle-module-public-cloud","extensions":[],"friendly_version":"15 SP5","former_identifier":"sle-module-public-cloud","release_type":null,"migration_extra":false,"friendly_name":"Public Cloud Module 15 SP5 x86_64","offline_predecessor_ids":[1220],"name":"Public Cloud Module","version":"15.5","recommended":false},{"former_identifier":"sle-module-transactional-server","release_type":null,"friendly_name":"Transactional Server Module 15 SP5 aarch64","migration_extra":false,"offline_predecessor_ids":[],"name":"Transactional Server Module","version":"15.5","recommended":false,"release_stage":"released","identifier":"sle-module-transactional-server","id":2505,"extensions":[],"friendly_version":"15 SP5","arch":"aarch64","eula_url":"","free":true,"shortname":"Transactional-Server-Module","description":"

Transactional Updates provide SUSE Linux Enterprise systems with a method of updating the operating system and its packages in an entirely ‘atomic’ way. Updates are either applied to the system all together in a single transaction, or not at all. This happens without influencing the running system. If an update fails, or if the successful update is deemed to be incompatible or otherwise incorrect, it can be discarded to immediately return the system to its previous functioning state.

Access to theTransactional Server Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself: Package versions in the this module are usually supported for at most three years. We are planning to release more recent versions on a schedule of approximately 18 month; the exact dates may differ per package.

","product_type":"module","cpe":"cpe:/o:suse:sle-module-transactional-server:15:sp5","product_class":"MODULE","online_predecessor_ids":[1822,1995,2177,2328],"repositories":[{"description":"SLE-Module-Transactional-Server15-SP5-Updates for sle-15-aarch64","installer_updates":false,"name":"SLE-Module-Transactional-Server15-SP5-Updates","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Transactional-Server/15-SP5/aarch64/update/","distro_target":"sle-15-aarch64","autorefresh":true,"id":5863,"enabled":true},{"description":"SLE-Module-Transactional-Server15-SP5-Debuginfo-Updates for sle-15-aarch64","installer_updates":false,"name":"SLE-Module-Transactional-Server15-SP5-Debuginfo-Updates","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Transactional-Server/15-SP5/aarch64/update_debug/","distro_target":"sle-15-aarch64","autorefresh":true,"id":5864,"enabled":false},{"enabled":true,"id":5865,"distro_target":"sle-15-aarch64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Transactional-Server/15-SP5/aarch64/product/","installer_updates":false,"name":"SLE-Module-Transactional-Server15-SP5-Pool","description":"SLE-Module-Transactional-Server15-SP5-Pool for sle-15-aarch64"},{"autorefresh":false,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Transactional-Server/15-SP5/aarch64/product_debug/","enabled":false,"id":5866,"description":"SLE-Module-Transactional-Server15-SP5-Debuginfo-Pool for sle-15-aarch64","name":"SLE-Module-Transactional-Server15-SP5-Debuginfo-Pool","installer_updates":false},{"autorefresh":false,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Transactional-Server/15-SP5/aarch64/product_source/","enabled":false,"id":5867,"description":"SLE-Module-Transactional-Server15-SP5-Source-Pool for sle-15-aarch64","name":"SLE-Module-Transactional-Server15-SP5-Source-Pool","installer_updates":false}],"predecessor_ids":[1822,1995,2177,2328]},{"shortname":"Transactional-Server-Module","description":"

Transactional Updates provide SUSE Linux Enterprise systems with a method of updating the operating system and its packages in an entirely ‘atomic’ way. Updates are either applied to the system all together in a single transaction, or not at all. This happens without influencing the running system. If an update fails, or if the successful update is deemed to be incompatible or otherwise incorrect, it can be discarded to immediately return the system to its previous functioning state.

Access to theTransactional Server Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself: Package versions in the this module are usually supported for at most three years. We are planning to release more recent versions on a schedule of approximately 18 month; the exact dates may differ per package.

","free":true,"eula_url":"","arch":"ppc64le","predecessor_ids":[1823,1996,2178,2329],"repositories":[{"enabled":true,"id":5868,"autorefresh":true,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Transactional-Server/15-SP5/ppc64le/update/","name":"SLE-Module-Transactional-Server15-SP5-Updates","installer_updates":false,"description":"SLE-Module-Transactional-Server15-SP5-Updates for sle-15-ppc64le"},{"description":"SLE-Module-Transactional-Server15-SP5-Debuginfo-Updates for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-Transactional-Server15-SP5-Debuginfo-Updates","distro_target":"sle-15-ppc64le","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Transactional-Server/15-SP5/ppc64le/update_debug/","enabled":false,"id":5869},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Transactional-Server/15-SP5/ppc64le/product/","autorefresh":false,"distro_target":"sle-15-ppc64le","id":5870,"enabled":true,"description":"SLE-Module-Transactional-Server15-SP5-Pool for sle-15-ppc64le","name":"SLE-Module-Transactional-Server15-SP5-Pool","installer_updates":false},{"id":5871,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Transactional-Server/15-SP5/ppc64le/product_debug/","distro_target":"sle-15-ppc64le","autorefresh":false,"installer_updates":false,"name":"SLE-Module-Transactional-Server15-SP5-Debuginfo-Pool","description":"SLE-Module-Transactional-Server15-SP5-Debuginfo-Pool for sle-15-ppc64le"},{"description":"SLE-Module-Transactional-Server15-SP5-Source-Pool for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-Transactional-Server15-SP5-Source-Pool","distro_target":"sle-15-ppc64le","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Transactional-Server/15-SP5/ppc64le/product_source/","enabled":false,"id":5872}],"online_predecessor_ids":[1823,1996,2178,2329],"product_class":"MODULE","cpe":"cpe:/o:suse:sle-module-transactional-server:15:sp5","product_type":"module","recommended":false,"version":"15.5","name":"Transactional Server Module","offline_predecessor_ids":[],"friendly_name":"Transactional Server Module 15 SP5 ppc64le","migration_extra":false,"former_identifier":"sle-module-transactional-server","release_type":null,"friendly_version":"15 SP5","extensions":[],"id":2506,"release_stage":"released","identifier":"sle-module-transactional-server"},{"free":true,"description":"

Transactional Updates provide SUSE Linux Enterprise systems with a method of updating the operating system and its packages in an entirely ‘atomic’ way. Updates are either applied to the system all together in a single transaction, or not at all. This happens without influencing the running system. If an update fails, or if the successful update is deemed to be incompatible or otherwise incorrect, it can be discarded to immediately return the system to its previous functioning state.

Access to theTransactional Server Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself: Package versions in the this module are usually supported for at most three years. We are planning to release more recent versions on a schedule of approximately 18 month; the exact dates may differ per package.

","shortname":"Transactional-Server-Module","arch":"s390x","eula_url":"","repositories":[{"description":"SLE-Module-Transactional-Server15-SP5-Updates for sle-15-s390x","name":"SLE-Module-Transactional-Server15-SP5-Updates","installer_updates":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Transactional-Server/15-SP5/s390x/update/","autorefresh":true,"distro_target":"sle-15-s390x","id":5873,"enabled":true},{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Transactional-Server/15-SP5/s390x/update_debug/","autorefresh":true,"distro_target":"sle-15-s390x","id":5874,"enabled":false,"description":"SLE-Module-Transactional-Server15-SP5-Debuginfo-Updates for sle-15-s390x","name":"SLE-Module-Transactional-Server15-SP5-Debuginfo-Updates","installer_updates":false},{"description":"SLE-Module-Transactional-Server15-SP5-Pool for sle-15-s390x","name":"SLE-Module-Transactional-Server15-SP5-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-15-s390x","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Transactional-Server/15-SP5/s390x/product/","enabled":true,"id":5875},{"name":"SLE-Module-Transactional-Server15-SP5-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-Transactional-Server15-SP5-Debuginfo-Pool for sle-15-s390x","enabled":false,"id":5876,"autorefresh":false,"distro_target":"sle-15-s390x","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Transactional-Server/15-SP5/s390x/product_debug/"},{"id":5877,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Transactional-Server/15-SP5/s390x/product_source/","distro_target":"sle-15-s390x","autorefresh":false,"installer_updates":false,"name":"SLE-Module-Transactional-Server15-SP5-Source-Pool","description":"SLE-Module-Transactional-Server15-SP5-Source-Pool for sle-15-s390x"}],"online_predecessor_ids":[1824,1997,2179,2330],"product_class":"MODULE","predecessor_ids":[1824,1997,2179,2330],"product_type":"module","cpe":"cpe:/o:suse:sle-module-transactional-server:15:sp5","version":"15.5","recommended":false,"former_identifier":"sle-module-transactional-server","release_type":null,"friendly_name":"Transactional Server Module 15 SP5 s390x","migration_extra":false,"offline_predecessor_ids":[],"name":"Transactional Server Module","friendly_version":"15 SP5","identifier":"sle-module-transactional-server","release_stage":"released","id":2507,"extensions":[]},{"offline_predecessor_ids":[],"name":"Transactional Server Module","release_type":null,"former_identifier":"sle-module-transactional-server","migration_extra":false,"friendly_name":"Transactional Server Module 15 SP5 x86_64","recommended":false,"version":"15.5","extensions":[],"release_stage":"released","id":2508,"identifier":"sle-module-transactional-server","friendly_version":"15 SP5","eula_url":"","arch":"x86_64","free":true,"shortname":"Transactional-Server-Module","description":"

Transactional Updates provide SUSE Linux Enterprise systems with a method of updating the operating system and its packages in an entirely ‘atomic’ way. Updates are either applied to the system all together in a single transaction, or not at all. This happens without influencing the running system. If an update fails, or if the successful update is deemed to be incompatible or otherwise incorrect, it can be discarded to immediately return the system to its previous functioning state.

Access to theTransactional Server Module is included in your SUSE Linux Enterprise Server subscription. The module has a different lifecycle than SUSE Linux Enterprise Server itself: Package versions in the this module are usually supported for at most three years. We are planning to release more recent versions on a schedule of approximately 18 month; the exact dates may differ per package.

","product_type":"module","cpe":"cpe:/o:suse:sle-module-transactional-server:15:sp5","predecessor_ids":[1825,1998,2180,2331],"repositories":[{"description":"SLE-Module-Transactional-Server15-SP5-Updates for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Transactional-Server15-SP5-Updates","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Transactional-Server/15-SP5/x86_64/update/","distro_target":"sle-15-x86_64","autorefresh":true,"id":5878,"enabled":true},{"id":5879,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Transactional-Server/15-SP5/x86_64/update_debug/","distro_target":"sle-15-x86_64","autorefresh":true,"installer_updates":false,"name":"SLE-Module-Transactional-Server15-SP5-Debuginfo-Updates","description":"SLE-Module-Transactional-Server15-SP5-Debuginfo-Updates for sle-15-x86_64"},{"installer_updates":false,"name":"SLE-Module-Transactional-Server15-SP5-Pool","description":"SLE-Module-Transactional-Server15-SP5-Pool for sle-15-x86_64","id":5880,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Transactional-Server/15-SP5/x86_64/product/","distro_target":"sle-15-x86_64","autorefresh":false},{"description":"SLE-Module-Transactional-Server15-SP5-Debuginfo-Pool for sle-15-x86_64","name":"SLE-Module-Transactional-Server15-SP5-Debuginfo-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Transactional-Server/15-SP5/x86_64/product_debug/","autorefresh":false,"distro_target":"sle-15-x86_64","id":5881,"enabled":false},{"installer_updates":false,"name":"SLE-Module-Transactional-Server15-SP5-Source-Pool","description":"SLE-Module-Transactional-Server15-SP5-Source-Pool for sle-15-x86_64","id":5882,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Transactional-Server/15-SP5/x86_64/product_source/","distro_target":"sle-15-x86_64","autorefresh":false}],"online_predecessor_ids":[1825,1998,2180,2331],"product_class":"MODULE"},{"recommended":false,"version":"15.5","name":"SUSE Linux Enterprise Live Patching","offline_predecessor_ids":[1537,1756,1887],"friendly_name":"SUSE Linux Enterprise Live Patching 15 SP5 ppc64le (BETA)","migration_extra":false,"former_identifier":"sle-module-live-patching","release_type":null,"friendly_version":"15 SP5","extensions":[],"release_stage":"beta","identifier":"sle-module-live-patching","id":2509,"shortname":"Live-Patching","description":"

SUSE Linux Enterprise Live Patching provides packages to update critical components in SUSE Linux Enterprise. With SUSE Linux Enterprise Live Patching, you can perform critical patching without shutting down your system, reducing the need for planned downtime and increasing service availability.

","free":false,"eula_url":"","arch":"ppc64le","predecessor_ids":[1735,1827,1983,2185,2332],"repositories":[{"distro_target":"sle-15-ppc64le","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Live-Patching/15-SP5/ppc64le/update/","enabled":true,"id":5883,"description":"SLE-Module-Live-Patching15-SP5-Updates for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-Live-Patching15-SP5-Updates"},{"installer_updates":false,"name":"SLE-Module-Live-Patching15-SP5-Debuginfo-Updates","description":"SLE-Module-Live-Patching15-SP5-Debuginfo-Updates for sle-15-ppc64le","id":5884,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Live-Patching/15-SP5/ppc64le/update_debug/","distro_target":"sle-15-ppc64le","autorefresh":true},{"name":"SLE-Module-Live-Patching15-SP5-Pool","installer_updates":false,"description":"SLE-Module-Live-Patching15-SP5-Pool for sle-15-ppc64le","id":5885,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Live-Patching/15-SP5/ppc64le/product/","autorefresh":false,"distro_target":"sle-15-ppc64le"},{"id":5886,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Live-Patching/15-SP5/ppc64le/product_debug/","distro_target":"sle-15-ppc64le","autorefresh":false,"installer_updates":false,"name":"SLE-Module-Live-Patching15-SP5-Debuginfo-Pool","description":"SLE-Module-Live-Patching15-SP5-Debuginfo-Pool for sle-15-ppc64le"},{"enabled":false,"id":5887,"distro_target":"sle-15-ppc64le","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Live-Patching/15-SP5/ppc64le/product_source/","installer_updates":false,"name":"SLE-Module-Live-Patching15-SP5-Source-Pool","description":"SLE-Module-Live-Patching15-SP5-Source-Pool for sle-15-ppc64le"}],"online_predecessor_ids":[1735,1827,1983,2185,2332],"product_class":"SLE-LP-PPC-BETA","cpe":"cpe:/o:suse:sle-module-live-patching:15:sp5","product_type":"extension"},{"offline_predecessor_ids":[2079,2080],"name":"SUSE Linux Enterprise Live Patching","release_type":null,"former_identifier":"sle-module-live-patching","migration_extra":false,"friendly_name":"SUSE Linux Enterprise Live Patching 15 SP5 s390x (BETA)","recommended":false,"version":"15.5","extensions":[],"identifier":"sle-module-live-patching","release_stage":"beta","id":2510,"friendly_version":"15 SP5","eula_url":"","arch":"s390x","free":false,"shortname":"Live-Patching","description":"

SUSE Linux Enterprise Live Patching provides packages to update critical components in SUSE Linux Enterprise. With SUSE Linux Enterprise Live Patching, you can perform critical patching without shutting down your system, reducing the need for planned downtime and increasing service availability.

","product_type":"extension","cpe":"cpe:/o:suse:sle-module-live-patching:15:sp5","predecessor_ids":[2081,2186,2333],"online_predecessor_ids":[2081,2186,2333],"product_class":"SLE-LP-Z-BETA","repositories":[{"enabled":true,"id":5888,"autorefresh":true,"distro_target":"sle-15-s390x","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Live-Patching/15-SP5/s390x/update/","name":"SLE-Module-Live-Patching15-SP5-Updates","installer_updates":false,"description":"SLE-Module-Live-Patching15-SP5-Updates for sle-15-s390x"},{"description":"SLE-Module-Live-Patching15-SP5-Debuginfo-Updates for sle-15-s390x","name":"SLE-Module-Live-Patching15-SP5-Debuginfo-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-15-s390x","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Live-Patching/15-SP5/s390x/update_debug/","enabled":false,"id":5889},{"description":"SLE-Module-Live-Patching15-SP5-Pool for sle-15-s390x","name":"SLE-Module-Live-Patching15-SP5-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-15-s390x","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Live-Patching/15-SP5/s390x/product/","enabled":true,"id":5890},{"distro_target":"sle-15-s390x","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Live-Patching/15-SP5/s390x/product_debug/","enabled":false,"id":5891,"description":"SLE-Module-Live-Patching15-SP5-Debuginfo-Pool for sle-15-s390x","installer_updates":false,"name":"SLE-Module-Live-Patching15-SP5-Debuginfo-Pool"},{"enabled":false,"id":5892,"autorefresh":false,"distro_target":"sle-15-s390x","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Live-Patching/15-SP5/s390x/product_source/","name":"SLE-Module-Live-Patching15-SP5-Source-Pool","installer_updates":false,"description":"SLE-Module-Live-Patching15-SP5-Source-Pool for sle-15-s390x"}]},{"eula_url":"","arch":"x86_64","free":false,"shortname":"Live-Patching","description":"

SUSE Linux Enterprise Live Patching provides packages to update critical components in SUSE Linux Enterprise. With SUSE Linux Enterprise Live Patching, you can perform critical patching without shutting down your system, reducing the need for planned downtime and increasing service availability.

","product_type":"extension","cpe":"cpe:/o:suse:sle-module-live-patching:15:sp5","predecessor_ids":[1736,1828,1984,2187,2334],"online_predecessor_ids":[1736,1828,1984,2187,2334],"repositories":[{"name":"SLE-Module-Live-Patching15-SP5-Updates","installer_updates":false,"description":"SLE-Module-Live-Patching15-SP5-Updates for sle-15-x86_64","enabled":true,"id":5893,"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Live-Patching/15-SP5/x86_64/update/"},{"description":"SLE-Module-Live-Patching15-SP5-Debuginfo-Updates for sle-15-x86_64","name":"SLE-Module-Live-Patching15-SP5-Debuginfo-Updates","installer_updates":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Live-Patching/15-SP5/x86_64/update_debug/","autorefresh":true,"distro_target":"sle-15-x86_64","id":5894,"enabled":false},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Live-Patching/15-SP5/x86_64/product/","autorefresh":false,"distro_target":"sle-15-x86_64","id":5895,"enabled":true,"description":"SLE-Module-Live-Patching15-SP5-Pool for sle-15-x86_64","name":"SLE-Module-Live-Patching15-SP5-Pool","installer_updates":false},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Live-Patching/15-SP5/x86_64/product_debug/","autorefresh":false,"distro_target":"sle-15-x86_64","id":5896,"enabled":false,"description":"SLE-Module-Live-Patching15-SP5-Debuginfo-Pool for sle-15-x86_64","name":"SLE-Module-Live-Patching15-SP5-Debuginfo-Pool","installer_updates":false},{"description":"SLE-Module-Live-Patching15-SP5-Source-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Live-Patching15-SP5-Source-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Live-Patching/15-SP5/x86_64/product_source/","distro_target":"sle-15-x86_64","autorefresh":false,"id":5897,"enabled":false}],"product_class":"SLE-LP-BETA","offline_predecessor_ids":[1536,1757,1888],"name":"SUSE Linux Enterprise Live Patching","former_identifier":"sle-module-live-patching","release_type":null,"friendly_name":"SUSE Linux Enterprise Live Patching 15 SP5 x86_64 (BETA)","migration_extra":false,"recommended":false,"version":"15.5","extensions":[],"id":2511,"release_stage":"beta","identifier":"sle-module-live-patching","friendly_version":"15 SP5"},{"product_type":"extension","cpe":"cpe:/o:suse:sle-we:15:sp5","product_class":"SLE-WE-BETA","online_predecessor_ids":[1781,1999,2196,2343],"repositories":[{"installer_updates":false,"name":"SLE-15-SP5-Desktop-NVIDIA-Driver","description":"SLE-15-SP5-Desktop-NVIDIA-Driver","id":5680,"enabled":true,"url":"https://download.nvidia.com/suse/sle15sp5/","distro_target":null,"autorefresh":true},{"id":5903,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-WE/15-SP5/x86_64/update/","distro_target":"sle-15-x86_64","autorefresh":true,"installer_updates":false,"name":"SLE-Product-WE15-SP5-Updates","description":"SLE-Product-WE15-SP5-Updates for sle-15-x86_64"},{"installer_updates":false,"name":"SLE-Product-WE15-SP5-Debuginfo-Updates","description":"SLE-Product-WE15-SP5-Debuginfo-Updates for sle-15-x86_64","id":5904,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-WE/15-SP5/x86_64/update_debug/","distro_target":"sle-15-x86_64","autorefresh":true},{"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-WE/15-SP5/x86_64/product/","enabled":true,"id":5905,"description":"SLE-Product-WE15-SP5-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Product-WE15-SP5-Pool"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Product-WE/15-SP5/x86_64/product_debug/","autorefresh":false,"distro_target":"sle-15-x86_64","id":5906,"enabled":false,"description":"SLE-Product-WE15-SP5-Debuginfo-Pool for sle-15-x86_64","name":"SLE-Product-WE15-SP5-Debuginfo-Pool","installer_updates":false},{"name":"SLE-Product-WE15-SP5-Source-Pool","installer_updates":false,"description":"SLE-Product-WE15-SP5-Source-Pool for sle-15-x86_64","enabled":false,"id":5907,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Product-WE/15-SP5/x86_64/product_source/"}],"predecessor_ids":[1781,1999,2196,2343],"arch":"x86_64","eula_url":"https://updates.suse.com/SUSE/Products/SLE-Product-WE/15-SP5/x86_64/product.license/","free":false,"description":"SUSE Linux Enterprise Workstation Extension adds additional functionality to a base SUSE Linux Enterprise installation. The Workstation Extension offers additional desktop applications (office suite, email client, graphical editor, multimedia tools) and libraries. Workstation Extension is enabled and installed by default on SUSE Linux Enterprise Desktop installation. Adding the Workstation Extension to a SUSE Linux Enterprise Server installation allows to seamlessly combine both products to create a full featured server workstation.","shortname":"SLEWE15-SP5","id":2513,"release_stage":"beta","identifier":"sle-we","extensions":[],"friendly_version":"15 SP5","release_type":null,"former_identifier":"sle-we","migration_extra":false,"friendly_name":"SUSE Linux Enterprise Workstation Extension 15 SP5 x86_64 (BETA)","offline_predecessor_ids":[1639,1893],"name":"SUSE Linux Enterprise Workstation Extension","version":"15.5","recommended":false},{"arch":"aarch64","eula_url":"","shortname":"SLEHA15-SP5","description":"SUSE Linux High Availability Extension provides mature, industry-leading open-source high-availability clustering technologies that are easy to set up and use. It can be deployed in physical and/or virtual environments, and can cluster physical servers, virtual servers, or any combination of the two to suit your business’ needs.","free":false,"cpe":"cpe:/o:suse:sle-ha:15:sp5","product_type":"extension","repositories":[{"enabled":true,"id":5908,"distro_target":"sle-15-aarch64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-HA/15-SP5/aarch64/update/","installer_updates":false,"name":"SLE-Product-HA15-SP5-Updates","description":"SLE-Product-HA15-SP5-Updates for sle-15-aarch64"},{"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-HA/15-SP5/aarch64/update_debug/","autorefresh":true,"distro_target":"sle-15-aarch64","id":5909,"enabled":false,"description":"SLE-Product-HA15-SP5-Debuginfo-Updates for sle-15-aarch64","name":"SLE-Product-HA15-SP5-Debuginfo-Updates","installer_updates":false},{"autorefresh":false,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP5/aarch64/product/","enabled":true,"id":5910,"description":"SLE-Product-HA15-SP5-Pool for sle-15-aarch64","name":"SLE-Product-HA15-SP5-Pool","installer_updates":false},{"url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP5/aarch64/product_debug/","distro_target":"sle-15-aarch64","autorefresh":false,"id":5911,"enabled":false,"description":"SLE-Product-HA15-SP5-Debuginfo-Pool for sle-15-aarch64","installer_updates":false,"name":"SLE-Product-HA15-SP5-Debuginfo-Pool"},{"name":"SLE-Product-HA15-SP5-Source-Pool","installer_updates":false,"description":"SLE-Product-HA15-SP5-Source-Pool for sle-15-aarch64","enabled":false,"id":5912,"autorefresh":false,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP5/aarch64/product_source/"}],"online_predecessor_ids":[1608,1782,1956,2192,2337],"product_class":"SLE-HAE-ARM64-BETA","predecessor_ids":[1608,1782,1956,2192,2337],"friendly_name":"SUSE Linux Enterprise High Availability Extension 15 SP5 aarch64 (BETA)","migration_extra":false,"former_identifier":"sle-ha","release_type":null,"name":"SUSE Linux Enterprise High Availability Extension","offline_predecessor_ids":[],"version":"15.5","recommended":false,"release_stage":"beta","id":2514,"identifier":"sle-ha","extensions":[],"friendly_version":"15 SP5"},{"predecessor_ids":[1606,1783,1957,2193,2338],"repositories":[{"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-HA/15-SP5/ppc64le/update/","autorefresh":true,"distro_target":"sle-15-ppc64le","id":5913,"enabled":true,"description":"SLE-Product-HA15-SP5-Updates for sle-15-ppc64le","name":"SLE-Product-HA15-SP5-Updates","installer_updates":false},{"id":5914,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-HA/15-SP5/ppc64le/update_debug/","autorefresh":true,"distro_target":"sle-15-ppc64le","name":"SLE-Product-HA15-SP5-Debuginfo-Updates","installer_updates":false,"description":"SLE-Product-HA15-SP5-Debuginfo-Updates for sle-15-ppc64le"},{"name":"SLE-Product-HA15-SP5-Pool","installer_updates":false,"description":"SLE-Product-HA15-SP5-Pool for sle-15-ppc64le","id":5915,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP5/ppc64le/product/","autorefresh":false,"distro_target":"sle-15-ppc64le"},{"description":"SLE-Product-HA15-SP5-Debuginfo-Pool for sle-15-ppc64le","installer_updates":false,"name":"SLE-Product-HA15-SP5-Debuginfo-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP5/ppc64le/product_debug/","distro_target":"sle-15-ppc64le","autorefresh":false,"id":5916,"enabled":false},{"url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP5/ppc64le/product_source/","autorefresh":false,"distro_target":"sle-15-ppc64le","id":5917,"enabled":false,"description":"SLE-Product-HA15-SP5-Source-Pool for sle-15-ppc64le","name":"SLE-Product-HA15-SP5-Source-Pool","installer_updates":false}],"online_predecessor_ids":[1606,1783,1957,2193,2338],"product_class":"SLE-HAE-PPC-BETA","cpe":"cpe:/o:suse:sle-ha:15:sp5","product_type":"extension","description":"SUSE Linux High Availability Extension provides mature, industry-leading open-source high-availability clustering technologies that are easy to set up and use. It can be deployed in physical and/or virtual environments, and can cluster physical servers, virtual servers, or any combination of the two to suit your business’ needs.","shortname":"SLEHA15-SP5","free":false,"eula_url":"","arch":"ppc64le","friendly_version":"15 SP5","extensions":[],"release_stage":"beta","id":2515,"identifier":"sle-ha","recommended":false,"version":"15.5","name":"SUSE Linux Enterprise High Availability Extension","offline_predecessor_ids":[1433,1635,1882],"friendly_name":"SUSE Linux Enterprise High Availability Extension 15 SP5 ppc64le (BETA)","migration_extra":false,"former_identifier":"sle-ha","release_type":null},{"friendly_version":"15 SP5","identifier":"sle-ha","release_stage":"beta","id":2516,"extensions":[],"version":"15.5","recommended":false,"release_type":null,"former_identifier":"sle-ha","friendly_name":"SUSE Linux Enterprise High Availability Extension 15 SP5 s390x (BETA)","migration_extra":false,"offline_predecessor_ids":[1080,1082,1084,1086,1109,1110,1257,1287,1436,1636,1638,1883,1885],"name":"SUSE Linux Enterprise High Availability Extension","repositories":[{"distro_target":"sle-15-s390x","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-HA/15-SP5/s390x/update/","enabled":true,"id":5918,"description":"SLE-Product-HA15-SP5-Updates for sle-15-s390x","installer_updates":false,"name":"SLE-Product-HA15-SP5-Updates"},{"enabled":false,"id":5919,"distro_target":"sle-15-s390x","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-HA/15-SP5/s390x/update_debug/","installer_updates":false,"name":"SLE-Product-HA15-SP5-Debuginfo-Updates","description":"SLE-Product-HA15-SP5-Debuginfo-Updates for sle-15-s390x"},{"distro_target":"sle-15-s390x","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP5/s390x/product/","enabled":true,"id":5920,"description":"SLE-Product-HA15-SP5-Pool for sle-15-s390x","installer_updates":false,"name":"SLE-Product-HA15-SP5-Pool"},{"description":"SLE-Product-HA15-SP5-Debuginfo-Pool for sle-15-s390x","installer_updates":false,"name":"SLE-Product-HA15-SP5-Debuginfo-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP5/s390x/product_debug/","distro_target":"sle-15-s390x","autorefresh":false,"id":5921,"enabled":false},{"id":5922,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP5/s390x/product_source/","autorefresh":false,"distro_target":"sle-15-s390x","name":"SLE-Product-HA15-SP5-Source-Pool","installer_updates":false,"description":"SLE-Product-HA15-SP5-Source-Pool for sle-15-s390x"}],"online_predecessor_ids":[1784,1958,2194,2339],"product_class":"SLE-HAE-Z-BETA","predecessor_ids":[1784,1958,2194,2339],"product_type":"extension","cpe":"cpe:/o:suse:sle-ha:15:sp5","free":false,"description":"SUSE Linux High Availability Extension provides mature, industry-leading open-source high-availability clustering technologies that are easy to set up and use. It can be deployed in physical and/or virtual environments, and can cluster physical servers, virtual servers, or any combination of the two to suit your business’ needs.","shortname":"SLEHA15-SP5","arch":"s390x","eula_url":""},{"online_predecessor_ids":[1785,1959,2195,2340],"repositories":[{"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Product-HA/15-SP5/x86_64/update/","enabled":true,"id":5923,"description":"SLE-Product-HA15-SP5-Updates for sle-15-x86_64","name":"SLE-Product-HA15-SP5-Updates","installer_updates":false},{"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-HA/15-SP5/x86_64/update_debug/","autorefresh":true,"distro_target":"sle-15-x86_64","id":5924,"enabled":false,"description":"SLE-Product-HA15-SP5-Debuginfo-Updates for sle-15-x86_64","name":"SLE-Product-HA15-SP5-Debuginfo-Updates","installer_updates":false},{"name":"SLE-Product-HA15-SP5-Pool","installer_updates":false,"description":"SLE-Product-HA15-SP5-Pool for sle-15-x86_64","id":5925,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP5/x86_64/product/","autorefresh":false,"distro_target":"sle-15-x86_64"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP5/x86_64/product_debug/","autorefresh":false,"distro_target":"sle-15-x86_64","id":5926,"enabled":false,"description":"SLE-Product-HA15-SP5-Debuginfo-Pool for sle-15-x86_64","name":"SLE-Product-HA15-SP5-Debuginfo-Pool","installer_updates":false},{"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP5/x86_64/product_source/","enabled":false,"id":5927,"description":"SLE-Product-HA15-SP5-Source-Pool for sle-15-x86_64","name":"SLE-Product-HA15-SP5-Source-Pool","installer_updates":false}],"product_class":"SLE-HAE-X86-BETA","predecessor_ids":[1785,1959,2195,2340],"product_type":"extension","cpe":"cpe:/o:suse:sle-ha:15:sp5","free":false,"description":"SUSE Linux High Availability Extension provides mature, industry-leading open-source high-availability clustering technologies that are easy to set up and use. It can be deployed in physical and/or virtual environments, and can cluster physical servers, virtual servers, or any combination of the two to suit your business’ needs.","shortname":"SLEHA15-SP5","arch":"x86_64","eula_url":"","friendly_version":"15 SP5","release_stage":"beta","id":2517,"identifier":"sle-ha","extensions":[],"version":"15.5","recommended":false,"release_type":null,"former_identifier":"sle-ha","friendly_name":"SUSE Linux Enterprise High Availability Extension 15 SP5 x86_64 (BETA)","migration_extra":false,"offline_predecessor_ids":[958,961,967,971,1101,1107,1256,1286,1435,1634,1637,1884,1886],"name":"SUSE Linux Enterprise High Availability Extension"},{"cpe":"cpe:/o:suse:sle-module-sap-applications:15:sp5","product_type":"module","predecessor_ids":[1726,1786,1993,2197,2341],"product_class":"MODULE","online_predecessor_ids":[1726,1786,1993,2197,2341],"repositories":[{"id":5928,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-SAP-Applications/15-SP5/ppc64le/update/","distro_target":"sle-15-ppc64le","autorefresh":true,"installer_updates":false,"name":"SLE-Module-SAP-Applications15-SP5-Updates","description":"SLE-Module-SAP-Applications15-SP5-Updates for sle-15-ppc64le"},{"installer_updates":false,"name":"SLE-Module-SAP-Applications15-SP5-Debuginfo-Updates","description":"SLE-Module-SAP-Applications15-SP5-Debuginfo-Updates for sle-15-ppc64le","enabled":false,"id":5929,"distro_target":"sle-15-ppc64le","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-SAP-Applications/15-SP5/ppc64le/update_debug/"},{"description":"SLE-Module-SAP-Applications15-SP5-Pool for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-SAP-Applications15-SP5-Pool","distro_target":"sle-15-ppc64le","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-SAP-Applications/15-SP5/ppc64le/product/","enabled":true,"id":5930},{"description":"SLE-Module-SAP-Applications15-SP5-Debuginfo-Pool for sle-15-ppc64le","name":"SLE-Module-SAP-Applications15-SP5-Debuginfo-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Products/SLE-Module-SAP-Applications/15-SP5/ppc64le/product_debug/","enabled":false,"id":5931},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-SAP-Applications/15-SP5/ppc64le/product_source/","autorefresh":false,"distro_target":"sle-15-ppc64le","id":5932,"enabled":false,"description":"SLE-Module-SAP-Applications15-SP5-Source-Pool for sle-15-ppc64le","name":"SLE-Module-SAP-Applications15-SP5-Source-Pool","installer_updates":false}],"eula_url":"","arch":"ppc64le","shortname":"SAP-Applications-Module","description":"

The SAP Applications module contains the specialized tools for SAP Applications administration.

The module is maintained and supported by the SUSE Linux Enterprise Server for SAP Applications product subscription.

","free":true,"extensions":[],"id":2518,"release_stage":"released","identifier":"sle-module-sap-applications","friendly_version":"15 SP5","name":"SAP Applications Module","offline_predecessor_ids":[],"friendly_name":"SAP Applications Module 15 SP5 ppc64le","migration_extra":false,"former_identifier":"sle-module-sap-applications","release_type":null,"recommended":false,"version":"15.5"},{"eula_url":"","arch":"x86_64","description":"

The SAP Applications module contains the specialized tools for SAP Applications administration.

The module is maintained and supported by the SUSE Linux Enterprise Server for SAP Applications product subscription.

","shortname":"SAP-Applications-Module","free":true,"cpe":"cpe:/o:suse:sle-module-sap-applications:15:sp5","product_type":"module","predecessor_ids":[1727,1787,1994,2198,2342],"product_class":"MODULE","online_predecessor_ids":[1727,1787,1994,2198,2342],"repositories":[{"distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-SAP-Applications/15-SP5/x86_64/update/","enabled":true,"id":5933,"description":"SLE-Module-SAP-Applications15-SP5-Updates for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-SAP-Applications15-SP5-Updates"},{"description":"SLE-Module-SAP-Applications15-SP5-Debuginfo-Updates for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-SAP-Applications15-SP5-Debuginfo-Updates","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-SAP-Applications/15-SP5/x86_64/update_debug/","distro_target":"sle-15-x86_64","autorefresh":true,"id":5934,"enabled":false},{"description":"SLE-Module-SAP-Applications15-SP5-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-SAP-Applications15-SP5-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-SAP-Applications/15-SP5/x86_64/product/","distro_target":"sle-15-x86_64","autorefresh":false,"id":5935,"enabled":true},{"installer_updates":false,"name":"SLE-Module-SAP-Applications15-SP5-Debuginfo-Pool","description":"SLE-Module-SAP-Applications15-SP5-Debuginfo-Pool for sle-15-x86_64","enabled":false,"id":5936,"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-SAP-Applications/15-SP5/x86_64/product_debug/"},{"description":"SLE-Module-SAP-Applications15-SP5-Source-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-SAP-Applications15-SP5-Source-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-SAP-Applications/15-SP5/x86_64/product_source/","distro_target":"sle-15-x86_64","autorefresh":false,"id":5937,"enabled":false}],"name":"SAP Applications Module","offline_predecessor_ids":[],"friendly_name":"SAP Applications Module 15 SP5 x86_64","migration_extra":false,"release_type":null,"former_identifier":"sle-module-sap-applications","recommended":false,"version":"15.5","extensions":[],"id":2519,"release_stage":"released","identifier":"sle-module-sap-applications","friendly_version":"15 SP5"},{"shortname":"openSUSE Leap Micro","description":"openSUSE Leap Micro 5.2","free":false,"eula_url":"","arch":"aarch64","predecessor_ids":[],"product_class":"OPENSUSE","online_predecessor_ids":[],"repositories":[{"id":5938,"enabled":true,"url":"https://download.opensuse.org/distribution/leap-micro/5.2/product/repo/Leap-Micro-5.2-aarch64-Media/","autorefresh":false,"distro_target":null,"name":"openSUSE-Leap-Micro-5.2-Pool","installer_updates":false,"description":"openSUSE-Leap-Micro-5.2-Pool"}],"cpe":"cpe:/o:opensuse:leap-micro:5.2","product_type":"base","recommended":false,"version":"5.2","name":"openSUSE Leap Micro","offline_predecessor_ids":[],"friendly_name":"openSUSE Leap Micro 5.2 aarch64","migration_extra":false,"release_type":null,"former_identifier":"Leap-Micro","friendly_version":"5.2","extensions":[],"release_stage":"released","id":2520,"identifier":"Leap-Micro"},{"description":"openSUSE Leap Micro 5.2","shortname":"openSUSE Leap Micro","free":false,"arch":"x86_64","eula_url":"","online_predecessor_ids":[],"repositories":[{"description":"openSUSE-Leap-Micro-5.2-Pool","installer_updates":false,"name":"openSUSE-Leap-Micro-5.2-Pool","distro_target":null,"autorefresh":false,"url":"https://download.opensuse.org/distribution/leap-micro/5.2/product/repo/Leap-Micro-5.2-x86_64-Media/","enabled":true,"id":5939}],"product_class":"OPENSUSE","predecessor_ids":[],"cpe":"cpe:/o:opensuse:leap-micro:5.2","product_type":"base","version":"5.2","recommended":false,"friendly_name":"openSUSE Leap Micro 5.2 x86_64","migration_extra":false,"release_type":null,"former_identifier":"Leap-Micro","name":"openSUSE Leap Micro","offline_predecessor_ids":[],"friendly_version":"5.2","identifier":"Leap-Micro","release_stage":"released","id":2521,"extensions":[]},{"shortname":"SUSE Linux Enterprise Micro for Rancher","description":"SUSE Linux Enterprise Micro for Rancher 5.3","free":false,"eula_url":"","arch":"aarch64","predecessor_ids":[2412],"repositories":[{"url":"https://updates.suse.com/SUSE/Updates/SLE-Micro/5.3/aarch64/update/","distro_target":"sle-15-aarch64","autorefresh":true,"id":5620,"enabled":true,"description":"SLE-Micro-5.3-Updates for sle-15-aarch64","installer_updates":false,"name":"SLE-Micro-5.3-Updates"},{"description":"SLE-Micro-5.3-Debuginfo-Updates for sle-15-aarch64","name":"SLE-Micro-5.3-Debuginfo-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Updates/SLE-Micro/5.3/aarch64/update_debug/","enabled":false,"id":5621},{"description":"SLE-Micro-5.3-Pool for sle-15-aarch64","installer_updates":false,"name":"SLE-Micro-5.3-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Micro/5.3/aarch64/product/","distro_target":"sle-15-aarch64","autorefresh":false,"id":5622,"enabled":true},{"name":"SLE-Micro-5.3-Debuginfo-Pool","installer_updates":false,"description":"SLE-Micro-5.3-Debuginfo-Pool for sle-15-aarch64","id":5623,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Micro/5.3/aarch64/product_debug/","autorefresh":false,"distro_target":"sle-15-aarch64"},{"description":"SLE-Micro-5.3-Source-Pool for sle-15-aarch64","installer_updates":false,"name":"SLE-Micro-5.3-Source-Pool","distro_target":"sle-15-aarch64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Micro/5.3/aarch64/product_source/","enabled":false,"id":5624}],"online_predecessor_ids":[2412],"product_class":"MICROOS-ARM64-BETA","cpe":"cpe:/o:suse:sle-micro-rancher:5.3","product_type":"base","recommended":false,"version":"5.3","name":"SUSE Linux Enterprise Micro for Rancher","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Micro for Rancher 5.3 aarch64 (BETA)","former_identifier":"SLE-Micro-Rancher","release_type":null,"friendly_version":"5.3","extensions":[],"id":2522,"release_stage":"beta","identifier":"SLE-Micro-Rancher"},{"extensions":[],"release_stage":"beta","id":2523,"identifier":"SLE-Micro-Rancher","friendly_version":"5.3","name":"SUSE Linux Enterprise Micro for Rancher","offline_predecessor_ids":[],"friendly_name":"SUSE Linux Enterprise Micro for Rancher 5.3 x86_64 (BETA)","migration_extra":false,"former_identifier":"SLE-Micro-Rancher","release_type":null,"recommended":false,"version":"5.3","cpe":"cpe:/o:suse:sle-micro-rancher:5.3","product_type":"base","predecessor_ids":[2413],"online_predecessor_ids":[2413],"repositories":[{"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Micro/5.3/x86_64/update/","enabled":true,"id":5630,"description":"SLE-Micro-5.3-Updates for sle-15-x86_64","name":"SLE-Micro-5.3-Updates","installer_updates":false},{"id":5631,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Micro/5.3/x86_64/update_debug/","distro_target":"sle-15-x86_64","autorefresh":true,"installer_updates":false,"name":"SLE-Micro-5.3-Debuginfo-Updates","description":"SLE-Micro-5.3-Debuginfo-Updates for sle-15-x86_64"},{"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Micro/5.3/x86_64/product/","enabled":true,"id":5632,"description":"SLE-Micro-5.3-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Micro-5.3-Pool"},{"id":5633,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Micro/5.3/x86_64/product_debug/","autorefresh":false,"distro_target":"sle-15-x86_64","name":"SLE-Micro-5.3-Debuginfo-Pool","installer_updates":false,"description":"SLE-Micro-5.3-Debuginfo-Pool for sle-15-x86_64"},{"id":5634,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Micro/5.3/x86_64/product_source/","autorefresh":false,"distro_target":"sle-15-x86_64","name":"SLE-Micro-5.3-Source-Pool","installer_updates":false,"description":"SLE-Micro-5.3-Source-Pool for sle-15-x86_64"}],"product_class":"MICROOS-X86-BETA","eula_url":"","arch":"x86_64","shortname":"SUSE Linux Enterprise Micro for Rancher","description":"SUSE Linux Enterprise Micro for Rancher 5.3","free":false},{"friendly_version":"2.6.7","release_stage":"released","id":2524,"identifier":"rancher","extensions":[],"version":"2.6.7","recommended":false,"release_type":null,"former_identifier":"rancher","migration_extra":false,"friendly_name":"SUSE Rancher 2.6.7","offline_predecessor_ids":[],"name":"SUSE Rancher","online_predecessor_ids":[],"repositories":[],"product_class":"RANCHER-X86","predecessor_ids":[],"product_type":"base","cpe":"cpe:/o:suse:rancher:2.6.7","free":false,"description":null,"shortname":"Rancher","arch":null,"eula_url":""},{"description":null,"shortname":"Rancher","free":false,"eula_url":"","arch":null,"predecessor_ids":[],"repositories":[],"online_predecessor_ids":[],"product_class":"RANCHER-X86","cpe":"cpe:/o:suse:rancher:2.5.16","product_type":"base","recommended":false,"version":"2.5.16","name":"SUSE Rancher","offline_predecessor_ids":[],"friendly_name":"SUSE Rancher 2.5.16","migration_extra":false,"former_identifier":"rancher","release_type":null,"friendly_version":"2.5.16","extensions":[],"release_stage":"released","id":2525,"identifier":"rancher"},{"shortname":"Rancher","description":null,"free":false,"arch":null,"eula_url":"","online_predecessor_ids":[],"repositories":[],"product_class":"RANCHER-X86","predecessor_ids":[],"cpe":"cpe:/o:suse:rancher:2.5.15","product_type":"base","version":"2.5.15","recommended":false,"migration_extra":false,"friendly_name":"SUSE Rancher 2.5.15","release_type":null,"former_identifier":"rancher","name":"SUSE Rancher","offline_predecessor_ids":[],"friendly_version":"2.5.15","identifier":"rancher","release_stage":"released","id":2526,"extensions":[]},{"identifier":"longhorn","release_stage":"released","id":2527,"extensions":[],"friendly_version":"1.3.1","release_type":null,"former_identifier":"longhorn","friendly_name":"SUSE Longhorn 1.3.1","migration_extra":false,"offline_predecessor_ids":[],"name":"SUSE Longhorn","version":"1.3.1","recommended":false,"product_type":"base","cpe":"cpe:/o:suse:longhorn:1.3.1","repositories":[],"online_predecessor_ids":[],"product_class":"LONGHORN-X86","predecessor_ids":[],"arch":null,"eula_url":"","free":false,"description":null,"shortname":"Longhorn"},{"description":null,"shortname":"Longhorn","free":false,"arch":null,"eula_url":"","repositories":[],"online_predecessor_ids":[],"product_class":"LONGHORN-X86","predecessor_ids":[],"cpe":"cpe:/o:suse:longhorn:1.3.0","product_type":"base","version":"1.3.0","recommended":false,"migration_extra":false,"friendly_name":"SUSE Longhorn 1.3.0","former_identifier":"longhorn","release_type":null,"name":"SUSE Longhorn","offline_predecessor_ids":[],"friendly_version":"1.3.0","identifier":"longhorn","release_stage":"released","id":2528,"extensions":[]},{"predecessor_ids":[],"repositories":[],"online_predecessor_ids":[],"product_class":"NEUVECTOR","cpe":"cpe:/o:suse:neuvector:5.0.2","product_type":"base","description":null,"shortname":"NV","free":false,"eula_url":"","arch":null,"friendly_version":"5.0.2","extensions":[],"identifier":"neuvector","release_stage":"released","id":2529,"recommended":false,"version":"5.0.2","name":"NeuVector","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"NeuVector 5.0.2","former_identifier":"neuvector","release_type":null},{"description":null,"shortname":"Harvester","free":false,"eula_url":"","arch":null,"predecessor_ids":[],"online_predecessor_ids":[],"product_class":"HARVESTER-X86","repositories":[],"cpe":"cpe:/o:suse:harvester:1.0.3","product_type":"base","recommended":false,"version":"1.0.3","name":"Harvester","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"Harvester 1.0.3","release_type":null,"former_identifier":"harvester","friendly_version":"1.0.3","extensions":[],"identifier":"harvester","release_stage":"released","id":2530},{"product_type":"extension","cpe":"cpe:/o:suse:ubuntu-manager-client:2204","repositories":[{"url":"https://updates.suse.com/SUSE/Updates/Ubuntu/22.04-CLIENT-TOOLS/x86_64/update/","distro_target":"amd64","autorefresh":true,"id":5940,"enabled":true,"description":"Ubuntu-22.04-SUSE-Manager-Tools for amd64","installer_updates":false,"name":"Ubuntu-22.04-SUSE-Manager-Tools"}],"online_predecessor_ids":[],"product_class":"SLE-M-T","predecessor_ids":[],"arch":"amd64","eula_url":"","free":false,"description":"SUSE Manager Client Tools for Ubuntu 22.04","shortname":"Manager-Tools","release_stage":"released","id":2531,"identifier":"ubuntu-manager-client","extensions":[],"friendly_version":"2204","release_type":null,"former_identifier":"ubuntu-manager-client","friendly_name":"SUSE Manager Client Tools for Ubuntu 2204 amd64","migration_extra":false,"offline_predecessor_ids":[],"name":"SUSE Manager Client Tools for Ubuntu","version":"2204","recommended":false},{"offline_predecessor_ids":[],"name":"SUSE Manager Client Tools Beta for Ubuntu","release_type":null,"former_identifier":"ubuntu-manager-client-beta","migration_extra":false,"friendly_name":"SUSE Manager Client Tools Beta for Ubuntu 2204 amd64 (BETA)","recommended":false,"version":"2204","extensions":[],"id":2532,"release_stage":"beta","identifier":"ubuntu-manager-client-beta","friendly_version":"2204","eula_url":"","arch":"amd64","free":false,"description":"SUSE Manager Client Tools Beta for Ubuntu 22.04","shortname":"Manager-Tools-Beta","product_type":"extension","cpe":"cpe:/o:suse:ubuntu-manager-client-beta:2204","predecessor_ids":[],"online_predecessor_ids":[],"product_class":"SLE-M-T-BETA","repositories":[{"name":"Ubuntu-22.04-SUSE-Manager-Tools-Beta","installer_updates":false,"description":"Ubuntu-22.04-SUSE-Manager-Tools-Beta for amd64","enabled":true,"id":5941,"autorefresh":true,"distro_target":"amd64","url":"https://updates.suse.com/SUSE/Updates/Ubuntu/22.04-CLIENT-TOOLS-BETA/x86_64/update/"}]},{"version":"15.5","recommended":false,"migration_extra":false,"friendly_name":"Python 3 Module 15 SP5 aarch64","release_type":null,"former_identifier":"sle-module-python3","name":"Python 3 Module","offline_predecessor_ids":[],"friendly_version":"15 SP5","identifier":"sle-module-python3","release_stage":"released","id":2533,"extensions":[],"description":"

This module contains the Python 3 packages.

Access to the Python 3 Module is included in your SUSE Linux Enterprise subscription. The module has a different lifecycle than SUSE Linux Enterprise itself; please check the Release Notes for further details.

","shortname":"Python 3-Module","free":true,"arch":"aarch64","eula_url":"","online_predecessor_ids":[2402],"product_class":"MODULE","repositories":[{"description":"SLE-Module-Python3-15-SP5-Updates for sle-15-aarch64","name":"SLE-Module-Python3-15-SP5-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Python3/15-SP5/aarch64/update/","enabled":true,"id":5943},{"installer_updates":false,"name":"SLE-Module-Python3-15-SP5-Debuginfo-Updates","description":"SLE-Module-Python3-15-SP5-Debuginfo-Updates for sle-15-aarch64","enabled":false,"id":5944,"distro_target":"sle-15-aarch64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Python3/15-SP5/aarch64/update_debug/"},{"enabled":true,"id":5945,"autorefresh":false,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Python3/15-SP5/aarch64/product/","name":"SLE-Module-Python3-15-SP5-Pool","installer_updates":false,"description":"SLE-Module-Python3-15-SP5-Pool for sle-15-aarch64"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Python3/15-SP5/aarch64/product_debug/","autorefresh":false,"distro_target":"sle-15-aarch64","id":5946,"enabled":false,"description":"SLE-Module-Python3-15-SP5-Debuginfo-Pool for sle-15-aarch64","name":"SLE-Module-Python3-15-SP5-Debuginfo-Pool","installer_updates":false},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Python3/15-SP5/aarch64/product_source/","autorefresh":false,"distro_target":"sle-15-aarch64","id":5947,"enabled":false,"description":"SLE-Module-Python3-15-SP5-Source-Pool for sle-15-aarch64","name":"SLE-Module-Python3-15-SP5-Source-Pool","installer_updates":false}],"predecessor_ids":[2402],"cpe":"cpe:/o:suse:sle-module-python3:15:sp5","product_type":"module"},{"description":"

This module contains the Python 3 packages.

Access to the Python 3 Module is included in your SUSE Linux Enterprise subscription. The module has a different lifecycle than SUSE Linux Enterprise itself; please check the Release Notes for further details.

","shortname":"Python 3-Module","free":true,"arch":"ppc64le","eula_url":"","repositories":[{"id":5948,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Python3/15-SP5/ppc64le/update/","autorefresh":true,"distro_target":"sle-15-ppc64le","name":"SLE-Module-Python3-15-SP5-Updates","installer_updates":false,"description":"SLE-Module-Python3-15-SP5-Updates for sle-15-ppc64le"},{"installer_updates":false,"name":"SLE-Module-Python3-15-SP5-Debuginfo-Updates","description":"SLE-Module-Python3-15-SP5-Debuginfo-Updates for sle-15-ppc64le","enabled":false,"id":5949,"distro_target":"sle-15-ppc64le","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Python3/15-SP5/ppc64le/update_debug/"},{"name":"SLE-Module-Python3-15-SP5-Pool","installer_updates":false,"description":"SLE-Module-Python3-15-SP5-Pool for sle-15-ppc64le","id":5950,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Python3/15-SP5/ppc64le/product/","autorefresh":false,"distro_target":"sle-15-ppc64le"},{"enabled":false,"id":5951,"distro_target":"sle-15-ppc64le","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Python3/15-SP5/ppc64le/product_debug/","installer_updates":false,"name":"SLE-Module-Python3-15-SP5-Debuginfo-Pool","description":"SLE-Module-Python3-15-SP5-Debuginfo-Pool for sle-15-ppc64le"},{"enabled":false,"id":5952,"distro_target":"sle-15-ppc64le","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Python3/15-SP5/ppc64le/product_source/","installer_updates":false,"name":"SLE-Module-Python3-15-SP5-Source-Pool","description":"SLE-Module-Python3-15-SP5-Source-Pool for sle-15-ppc64le"}],"online_predecessor_ids":[2403],"product_class":"MODULE","predecessor_ids":[2403],"cpe":"cpe:/o:suse:sle-module-python3:15:sp5","product_type":"module","version":"15.5","recommended":false,"friendly_name":"Python 3 Module 15 SP5 ppc64le","migration_extra":false,"former_identifier":"sle-module-python3","release_type":null,"name":"Python 3 Module","offline_predecessor_ids":[],"friendly_version":"15 SP5","release_stage":"released","identifier":"sle-module-python3","id":2534,"extensions":[]},{"friendly_version":"15 SP5","release_stage":"released","identifier":"sle-module-python3","id":2535,"extensions":[],"version":"15.5","recommended":false,"former_identifier":"sle-module-python3","release_type":null,"friendly_name":"Python 3 Module 15 SP5 s390x","migration_extra":false,"offline_predecessor_ids":[],"name":"Python 3 Module","online_predecessor_ids":[2404],"product_class":"MODULE","repositories":[{"installer_updates":false,"name":"SLE-Module-Python3-15-SP5-Updates","description":"SLE-Module-Python3-15-SP5-Updates for sle-15-s390x","enabled":true,"id":5953,"distro_target":"sle-15-s390x","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Python3/15-SP5/s390x/update/"},{"description":"SLE-Module-Python3-15-SP5-Debuginfo-Updates for sle-15-s390x","installer_updates":false,"name":"SLE-Module-Python3-15-SP5-Debuginfo-Updates","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Python3/15-SP5/s390x/update_debug/","distro_target":"sle-15-s390x","autorefresh":true,"id":5954,"enabled":false},{"name":"SLE-Module-Python3-15-SP5-Pool","installer_updates":false,"description":"SLE-Module-Python3-15-SP5-Pool for sle-15-s390x","enabled":true,"id":5955,"autorefresh":false,"distro_target":"sle-15-s390x","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Python3/15-SP5/s390x/product/"},{"description":"SLE-Module-Python3-15-SP5-Debuginfo-Pool for sle-15-s390x","name":"SLE-Module-Python3-15-SP5-Debuginfo-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Python3/15-SP5/s390x/product_debug/","autorefresh":false,"distro_target":"sle-15-s390x","id":5956,"enabled":false},{"id":5957,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Python3/15-SP5/s390x/product_source/","autorefresh":false,"distro_target":"sle-15-s390x","name":"SLE-Module-Python3-15-SP5-Source-Pool","installer_updates":false,"description":"SLE-Module-Python3-15-SP5-Source-Pool for sle-15-s390x"}],"predecessor_ids":[2404],"product_type":"module","cpe":"cpe:/o:suse:sle-module-python3:15:sp5","free":true,"shortname":"Python 3-Module","description":"

This module contains the Python 3 packages.

Access to the Python 3 Module is included in your SUSE Linux Enterprise subscription. The module has a different lifecycle than SUSE Linux Enterprise itself; please check the Release Notes for further details.

","arch":"s390x","eula_url":""},{"product_type":"module","cpe":"cpe:/o:suse:sle-module-python3:15:sp5","repositories":[{"name":"SLE-Module-Python3-15-SP5-Updates","installer_updates":false,"description":"SLE-Module-Python3-15-SP5-Updates for sle-15-x86_64","id":5958,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Python3/15-SP5/x86_64/update/","autorefresh":true,"distro_target":"sle-15-x86_64"},{"description":"SLE-Module-Python3-15-SP5-Debuginfo-Updates for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Python3-15-SP5-Debuginfo-Updates","distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Python3/15-SP5/x86_64/update_debug/","enabled":false,"id":5959},{"id":5960,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Python3/15-SP5/x86_64/product/","distro_target":"sle-15-x86_64","autorefresh":false,"installer_updates":false,"name":"SLE-Module-Python3-15-SP5-Pool","description":"SLE-Module-Python3-15-SP5-Pool for sle-15-x86_64"},{"description":"SLE-Module-Python3-15-SP5-Debuginfo-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Python3-15-SP5-Debuginfo-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Python3/15-SP5/x86_64/product_debug/","distro_target":"sle-15-x86_64","autorefresh":false,"id":5961,"enabled":false},{"id":5962,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Python3/15-SP5/x86_64/product_source/","distro_target":"sle-15-x86_64","autorefresh":false,"installer_updates":false,"name":"SLE-Module-Python3-15-SP5-Source-Pool","description":"SLE-Module-Python3-15-SP5-Source-Pool for sle-15-x86_64"}],"online_predecessor_ids":[2405],"product_class":"MODULE","predecessor_ids":[2405],"arch":"x86_64","eula_url":"","free":true,"shortname":"Python 3-Module","description":"

This module contains the Python 3 packages.

Access to the Python 3 Module is included in your SUSE Linux Enterprise subscription. The module has a different lifecycle than SUSE Linux Enterprise itself; please check the Release Notes for further details.

","release_stage":"released","identifier":"sle-module-python3","id":2536,"extensions":[],"friendly_version":"15 SP5","former_identifier":"sle-module-python3","release_type":null,"migration_extra":false,"friendly_name":"Python 3 Module 15 SP5 x86_64","offline_predecessor_ids":[],"name":"Python 3 Module","version":"15.5","recommended":false},{"release_type":null,"former_identifier":"rancher","migration_extra":false,"friendly_name":"SUSE Rancher 2.6.8","offline_predecessor_ids":[],"name":"SUSE Rancher","version":"2.6.8","recommended":false,"release_stage":"released","id":2537,"identifier":"rancher","extensions":[],"friendly_version":"2.6.8","arch":null,"eula_url":"","free":false,"shortname":"Rancher","description":null,"product_type":"base","cpe":"cpe:/o:suse:rancher:2.6.8","repositories":[],"online_predecessor_ids":[],"product_class":"RANCHER-X86","predecessor_ids":[]},{"arch":"x86_64","eula_url":"","description":"SUSE Liberty Linux 9","shortname":"","free":false,"cpe":"cpe:/o:suse:sll:9","product_type":"base","online_predecessor_ids":[],"product_class":"RES","repositories":[{"url":"https://updates.suse.com/SUSE/Updates/SLL/9/x86_64/update/","distro_target":"x86_64","autorefresh":true,"id":5963,"enabled":true,"description":"SLL-9-Updates for x86_64","installer_updates":false,"name":"SLL-9-Updates"},{"distro_target":"x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLL/9/src/update/","enabled":false,"id":5964,"description":"SLL-9-Source-Updates for x86_64","installer_updates":false,"name":"SLL-9-Source-Updates"},{"description":"SLL-9-Debug-Updates for x86_64","installer_updates":false,"name":"SLL-9-Debug-Updates","distro_target":"x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLL/9/debug/update/","enabled":false,"id":5965},{"name":"SLL-AS-9-Updates","installer_updates":false,"description":"SLL-AS-9-Updates for x86_64","enabled":true,"id":5966,"autorefresh":true,"distro_target":"x86_64","url":"https://updates.suse.com/SUSE/Updates/SLL-AS/9/x86_64/update/"},{"description":"SLL-AS-9-Source-Updates for x86_64","name":"SLL-AS-9-Source-Updates","installer_updates":false,"autorefresh":true,"distro_target":"x86_64","url":"https://updates.suse.com/SUSE/Updates/SLL-AS/9/src/update/","enabled":false,"id":5967},{"installer_updates":false,"name":"SLL-AS-9-Debug-Updates","description":"SLL-AS-9-Debug-Updates for x86_64","id":5968,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLL-AS/9/debug/update/","distro_target":"x86_64","autorefresh":true},{"description":"SLL-CB-9-Updates for x86_64","installer_updates":false,"name":"SLL-CB-9-Updates","url":"https://updates.suse.com/SUSE/Updates/SLL-CB/9/x86_64/update/","distro_target":"x86_64","autorefresh":true,"id":5969,"enabled":true},{"description":"SLL-CB-9-Source-Updates for x86_64","name":"SLL-CB-9-Source-Updates","installer_updates":false,"url":"https://updates.suse.com/SUSE/Updates/SLL-CB/9/src/update/","autorefresh":true,"distro_target":"x86_64","id":5970,"enabled":false},{"autorefresh":true,"distro_target":"x86_64","url":"https://updates.suse.com/SUSE/Updates/SLL-CB/9/debug/update/","enabled":false,"id":5971,"description":"SLL-CB-9-Debug-Updates for x86_64","name":"SLL-CB-9-Debug-Updates","installer_updates":false}],"predecessor_ids":[],"friendly_name":"SUSE Liberty Linux 9 x86_64","migration_extra":false,"release_type":null,"former_identifier":"SLL","name":"SUSE Liberty Linux","offline_predecessor_ids":[],"version":"9","recommended":false,"id":2538,"release_stage":"released","identifier":"SLL","extensions":[{"online_predecessor_ids":[],"repositories":[{"installer_updates":false,"name":"SLL-9-HA-Updates","description":"SLL-9-HA-Updates for x86_64","enabled":true,"id":5972,"distro_target":"x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLL-HA/9/x86_64/update/"},{"url":"https://updates.suse.com/SUSE/Updates/SLL-HA/9/src/update/","distro_target":"x86_64","autorefresh":true,"id":5973,"enabled":false,"description":"SLL-9-HA-Source-Updates for x86_64","installer_updates":false,"name":"SLL-9-HA-Source-Updates"},{"description":"SLL-9-HA-Debug-Updates for x86_64","name":"SLL-9-HA-Debug-Updates","installer_updates":false,"url":"https://updates.suse.com/SUSE/Updates/SLL-HA/9/debug/update/","autorefresh":true,"distro_target":"x86_64","id":5974,"enabled":false}],"product_class":"RES-HA","predecessor_ids":[],"product_type":"extension","cpe":"cpe:/o:suse:sll-ha:9","free":false,"description":"SUSE Liberty Linux High Availability Extension 9","shortname":"SLL HA 9","arch":"x86_64","eula_url":"","friendly_version":"9","release_stage":"released","id":2539,"identifier":"SLL-HA","extensions":[],"version":"9","recommended":false,"former_identifier":"SLL-HA","release_type":null,"friendly_name":"SUSE Liberty Linux High Availability Extension 9 x86_64","migration_extra":false,"offline_predecessor_ids":[],"name":"SUSE Liberty Linux High Availability Extension"}],"friendly_version":"9"},{"cpe":"cpe:/o:suse:sll-ha:9","product_type":"extension","predecessor_ids":[],"online_predecessor_ids":[],"product_class":"RES-HA","repositories":[{"name":"SLL-9-HA-Updates","installer_updates":false,"description":"SLL-9-HA-Updates for x86_64","id":5972,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLL-HA/9/x86_64/update/","autorefresh":true,"distro_target":"x86_64"},{"description":"SLL-9-HA-Source-Updates for x86_64","name":"SLL-9-HA-Source-Updates","installer_updates":false,"autorefresh":true,"distro_target":"x86_64","url":"https://updates.suse.com/SUSE/Updates/SLL-HA/9/src/update/","enabled":false,"id":5973},{"enabled":false,"id":5974,"autorefresh":true,"distro_target":"x86_64","url":"https://updates.suse.com/SUSE/Updates/SLL-HA/9/debug/update/","name":"SLL-9-HA-Debug-Updates","installer_updates":false,"description":"SLL-9-HA-Debug-Updates for x86_64"}],"eula_url":"","arch":"x86_64","description":"SUSE Liberty Linux High Availability Extension 9","shortname":"SLL HA 9","free":false,"extensions":[],"release_stage":"released","id":2539,"identifier":"SLL-HA","friendly_version":"9","name":"SUSE Liberty Linux High Availability Extension","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"SUSE Liberty Linux High Availability Extension 9 x86_64","release_type":null,"former_identifier":"SLL-HA","recommended":false,"version":"9"},{"version":"5.0.3","recommended":false,"migration_extra":false,"friendly_name":"NeuVector 5.0.3","release_type":null,"former_identifier":"neuvector","name":"NeuVector","offline_predecessor_ids":[],"friendly_version":"5.0.3","identifier":"neuvector","release_stage":"released","id":2540,"extensions":[],"description":null,"shortname":"NV","free":false,"arch":null,"eula_url":"","product_class":"NEUVECTOR","online_predecessor_ids":[],"repositories":[],"predecessor_ids":[],"cpe":"cpe:/o:suse:neuvector:5.0.3","product_type":"base"},{"free":false,"shortname":"SLES15-SP4 Teradata","description":"SUSE Linux Enterprise offers a comprehensive suite of products built on a single code base. The platform addresses business needs from the smallest thin-client devices to the world's most powerful high-performance computing and mainframe servers. SUSE Linux Enterprise offers common management tools and technology certifications across the platform, and each product is enterprise-class.","eula_url":"","arch":"x86_64","predecessor_ids":[],"online_predecessor_ids":[],"product_class":"Teradata","repositories":[{"description":"SLE-Product-SLES15-SP4-Teradata-Updates for sle-15-x86_64","name":"SLE-Product-SLES15-SP4-Teradata-Updates","installer_updates":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-SLES/15-SP4-TERADATA/x86_64/update/","autorefresh":true,"distro_target":"sle-15-x86_64","id":5975,"enabled":true},{"description":"SLE-Product-SLES15-SP4-Teradata-Debuginfo-Updates for sle-15-x86_64","installer_updates":false,"name":"SLE-Product-SLES15-SP4-Teradata-Debuginfo-Updates","distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-SLES/15-SP4-TERADATA/x86_64/update_debug/","enabled":false,"id":5976},{"name":"SLE-Product-SLES15-SP4-Teradata-Pool","installer_updates":false,"description":"SLE-Product-SLES15-SP4-Teradata-Pool for sle-15-x86_64","enabled":true,"id":5977,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Product-SLES/15-SP4-TERADATA/x86_64/product/"},{"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Product-SLES/15-SP4-TERADATA/x86_64/product_debug/","enabled":false,"id":5978,"description":"SLE-Product-SLES15-SP4-Teradata-Debuginfo-Pool for sle-15-x86_64","name":"SLE-Product-SLES15-SP4-Teradata-Debuginfo-Pool","installer_updates":false},{"description":"SLE-Product-SLES15-SP4-Teradata-Source-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Product-SLES15-SP4-Teradata-Source-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Product-SLES/15-SP4-TERADATA/x86_64/product_source/","distro_target":"sle-15-x86_64","autorefresh":false,"id":5979,"enabled":false}],"product_type":"base","cpe":"cpe:/o:suse:sles_teradata:15:sp4","recommended":false,"version":"15.4","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Server Teradata","former_identifier":"SLES_TERADATA","release_type":null,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Server Teradata 15 SP4 x86_64","friendly_version":"15 SP4","extensions":[],"id":2541,"release_stage":"released","identifier":"SLES_TERADATA"},{"cpe":"cpe:/o:suse:el-managertools:9","product_type":"extension","predecessor_ids":[],"online_predecessor_ids":[],"product_class":"SLE-M-T","repositories":[{"name":"EL9-Manager-Tools-Updates","installer_updates":false,"description":"EL9-Manager-Tools-Updates for aarch64","id":6003,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/EL/9-CLIENT-TOOLS/aarch64/update/","autorefresh":true,"distro_target":"aarch64"},{"autorefresh":true,"distro_target":"aarch64","url":"https://updates.suse.com/SUSE/Updates/EL/9-CLIENT-TOOLS/aarch64/update_debug/","enabled":false,"id":6004,"description":"EL9-Manager-Tools-Debuginfo-Updates for aarch64","name":"EL9-Manager-Tools-Debuginfo-Updates","installer_updates":false},{"installer_updates":false,"name":"EL9-Manager-Tools-Pool","description":"EL9-Manager-Tools-Pool for aarch64","id":6005,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/EL/9-CLIENT-TOOLS/aarch64/product/","distro_target":"aarch64","autorefresh":false},{"name":"EL9-Manager-Tools-Debuginfo-Pool","installer_updates":false,"description":"EL9-Manager-Tools-Debuginfo-Pool for aarch64","enabled":false,"id":6006,"autorefresh":false,"distro_target":"aarch64","url":"https://updates.suse.com/SUSE/Products/EL/9-CLIENT-TOOLS/aarch64/product_debug/"},{"installer_updates":false,"name":"EL9-Manager-Tools-Source-Pool","description":"EL9-Manager-Tools-Source-Pool for aarch64","id":6007,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/EL/9-CLIENT-TOOLS/aarch64/product_source/","distro_target":"aarch64","autorefresh":false}],"eula_url":"","arch":"aarch64","shortname":"Manager-Tools","description":"SUSE Manager Client Tools for RHEL, Liberty and Clones 9","free":false,"extensions":[],"release_stage":"released","id":2542,"identifier":"el-managertools","friendly_version":"9","name":"SUSE Manager Client Tools for RHEL, Liberty and Clones","offline_predecessor_ids":[],"friendly_name":"SUSE Manager Client Tools for RHEL, Liberty and Clones 9 aarch64","migration_extra":false,"release_type":null,"former_identifier":"el-managertools","recommended":false,"version":"9"},{"description":"SUSE Manager Client Tools for RHEL, Liberty and Clones 9","shortname":"Manager-Tools","free":false,"arch":"x86_64","eula_url":"","online_predecessor_ids":[],"product_class":"SLE-M-T","repositories":[{"name":"EL9-Manager-Tools-Updates","installer_updates":false,"description":"EL9-Manager-Tools-Updates for x86_64","enabled":true,"id":6008,"autorefresh":true,"distro_target":"x86_64","url":"https://updates.suse.com/SUSE/Updates/EL/9-CLIENT-TOOLS/x86_64/update/"},{"url":"https://updates.suse.com/SUSE/Updates/EL/9-CLIENT-TOOLS/x86_64/update_debug/","autorefresh":true,"distro_target":"x86_64","id":6009,"enabled":false,"description":"EL9-Manager-Tools-Debuginfo-Updates for x86_64","name":"EL9-Manager-Tools-Debuginfo-Updates","installer_updates":false},{"url":"https://updates.suse.com/SUSE/Products/EL/9-CLIENT-TOOLS/x86_64/product/","autorefresh":false,"distro_target":"x86_64","id":6010,"enabled":true,"description":"EL9-Manager-Tools-Pool for x86_64","name":"EL9-Manager-Tools-Pool","installer_updates":false},{"url":"https://updates.suse.com/SUSE/Products/EL/9-CLIENT-TOOLS/x86_64/product_debug/","distro_target":"x86_64","autorefresh":false,"id":6011,"enabled":false,"description":"EL9-Manager-Tools-Debuginfo-Pool for x86_64","installer_updates":false,"name":"EL9-Manager-Tools-Debuginfo-Pool"},{"autorefresh":false,"distro_target":"x86_64","url":"https://updates.suse.com/SUSE/Products/EL/9-CLIENT-TOOLS/x86_64/product_source/","enabled":false,"id":6012,"description":"EL9-Manager-Tools-Source-Pool for x86_64","name":"EL9-Manager-Tools-Source-Pool","installer_updates":false}],"predecessor_ids":[],"cpe":"cpe:/o:suse:el-managertools:9","product_type":"extension","version":"9","recommended":false,"migration_extra":false,"friendly_name":"SUSE Manager Client Tools for RHEL, Liberty and Clones 9 x86_64","former_identifier":"el-managertools","release_type":null,"name":"SUSE Manager Client Tools for RHEL, Liberty and Clones","offline_predecessor_ids":[],"friendly_version":"9","release_stage":"released","id":2543,"identifier":"el-managertools","extensions":[]},{"eula_url":"","arch":null,"free":false,"description":null,"shortname":"Harvester","product_type":"base","cpe":"cpe:/o:suse:harvester:1.1.0","predecessor_ids":[],"online_predecessor_ids":[],"product_class":"HARVESTER-X86","repositories":[],"offline_predecessor_ids":[],"name":"Harvester","former_identifier":"harvester","release_type":null,"migration_extra":false,"friendly_name":"Harvester 1.1.0","recommended":false,"version":"1.1.0","extensions":[],"release_stage":"released","id":2544,"identifier":"harvester","friendly_version":"1.1.0"},{"free":false,"description":null,"shortname":"NV","arch":null,"eula_url":"","product_class":"NEUVECTOR","online_predecessor_ids":[],"repositories":[],"predecessor_ids":[],"product_type":"base","cpe":"cpe:/o:suse:neuvector:5.0.4","version":"5.0.4","recommended":false,"former_identifier":"neuvector","release_type":null,"friendly_name":"NeuVector 5.0.4","migration_extra":false,"offline_predecessor_ids":[],"name":"NeuVector","friendly_version":"5.0.4","id":2545,"release_stage":"released","identifier":"neuvector","extensions":[]},{"online_predecessor_ids":[],"repositories":[],"product_class":"RANCHER-X86","predecessor_ids":[],"product_type":"base","cpe":"cpe:/o:suse:rancher:2.6.9","free":false,"description":null,"shortname":"Rancher","arch":null,"eula_url":"","friendly_version":"2.6.9","release_stage":"released","identifier":"rancher","id":2546,"extensions":[],"version":"2.6.9","recommended":false,"former_identifier":"rancher","release_type":null,"migration_extra":false,"friendly_name":"SUSE Rancher 2.6.9","offline_predecessor_ids":[],"name":"SUSE Rancher"},{"online_predecessor_ids":[],"repositories":[{"id":6022,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/EL/9-CLIENT-TOOLS-BETA/aarch64/update/","autorefresh":true,"distro_target":"aarch64","name":"EL9-Manager-Tools-Beta-Updates","installer_updates":false,"description":"EL9-Manager-Tools-Beta-Updates for aarch64"},{"id":6023,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/EL/9-CLIENT-TOOLS-BETA/aarch64/update_debug/","distro_target":"aarch64","autorefresh":true,"installer_updates":false,"name":"EL9-Manager-Tools-Beta-Debuginfo-Updates","description":"EL9-Manager-Tools-Beta-Debuginfo-Updates for aarch64"},{"url":"https://updates.suse.com/SUSE/Products/EL/9-CLIENT-TOOLS-BETA/aarch64/product/","distro_target":"aarch64","autorefresh":false,"id":6024,"enabled":true,"description":"EL9-Manager-Tools-Beta-Pool for aarch64","installer_updates":false,"name":"EL9-Manager-Tools-Beta-Pool"},{"url":"https://updates.suse.com/SUSE/Products/EL/9-CLIENT-TOOLS-BETA/aarch64/product_debug/","autorefresh":false,"distro_target":"aarch64","id":6025,"enabled":false,"description":"EL9-Manager-Tools-Beta-Debuginfo-Pool for aarch64","name":"EL9-Manager-Tools-Beta-Debuginfo-Pool","installer_updates":false},{"description":"EL9-Manager-Tools-Beta-Source-Pool for aarch64","name":"EL9-Manager-Tools-Beta-Source-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/EL/9-CLIENT-TOOLS-BETA/aarch64/product_source/","autorefresh":false,"distro_target":"aarch64","id":6026,"enabled":false}],"product_class":"SLE-M-T-ALPHA","predecessor_ids":[],"cpe":"cpe:/o:suse:el-managertools-beta:9","product_type":"extension","description":"SUSE Manager Client Tools Beta for RHEL, Liberty and Clones 9","shortname":"Manager-Tools-Beta","free":false,"arch":"aarch64","eula_url":"","friendly_version":"9","id":2547,"release_stage":"alpha","identifier":"el-managertools-beta","extensions":[],"version":"9","recommended":false,"friendly_name":"SUSE Manager Client Tools Beta for RHEL, Liberty and Clones 9 aarch64 (ALPHA)","migration_extra":false,"former_identifier":"el-managertools-beta","release_type":null,"name":"SUSE Manager Client Tools Beta for RHEL, Liberty and Clones","offline_predecessor_ids":[]},{"online_predecessor_ids":[],"product_class":"SLE-M-T-ALPHA","repositories":[{"url":"https://updates.suse.com/SUSE/Updates/EL/9-CLIENT-TOOLS-BETA/x86_64/update/","distro_target":"x86_64","autorefresh":true,"id":6027,"enabled":true,"description":"EL9-Manager-Tools-Beta-Updates for x86_64","installer_updates":false,"name":"EL9-Manager-Tools-Beta-Updates"},{"name":"EL9-Manager-Tools-Beta-Debuginfo-Updates","installer_updates":false,"description":"EL9-Manager-Tools-Beta-Debuginfo-Updates for x86_64","enabled":false,"id":6028,"autorefresh":true,"distro_target":"x86_64","url":"https://updates.suse.com/SUSE/Updates/EL/9-CLIENT-TOOLS-BETA/x86_64/update_debug/"},{"installer_updates":false,"name":"EL9-Manager-Tools-Beta-Pool","description":"EL9-Manager-Tools-Beta-Pool for x86_64","enabled":true,"id":6029,"distro_target":"x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/EL/9-CLIENT-TOOLS-BETA/x86_64/product/"},{"id":6030,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/EL/9-CLIENT-TOOLS-BETA/x86_64/product_debug/","autorefresh":false,"distro_target":"x86_64","name":"EL9-Manager-Tools-Beta-Debuginfo-Pool","installer_updates":false,"description":"EL9-Manager-Tools-Beta-Debuginfo-Pool for x86_64"},{"installer_updates":false,"name":"EL9-Manager-Tools-Beta-Source-Pool","description":"EL9-Manager-Tools-Beta-Source-Pool for x86_64","enabled":false,"id":6031,"distro_target":"x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/EL/9-CLIENT-TOOLS-BETA/x86_64/product_source/"}],"predecessor_ids":[],"product_type":"extension","cpe":"cpe:/o:suse:el-managertools-beta:9","free":false,"description":"SUSE Manager Client Tools Beta for RHEL, Liberty and Clones 9","shortname":"Manager-Tools-Beta","arch":"x86_64","eula_url":"","friendly_version":"9","release_stage":"alpha","id":2548,"identifier":"el-managertools-beta","extensions":[],"version":"9","recommended":false,"release_type":null,"former_identifier":"el-managertools-beta","friendly_name":"SUSE Manager Client Tools Beta for RHEL, Liberty and Clones 9 x86_64 (ALPHA)","migration_extra":false,"offline_predecessor_ids":[],"name":"SUSE Manager Client Tools Beta for RHEL, Liberty and Clones"},{"extensions":[],"release_stage":"released","identifier":"sle-manager-tools-micro","id":2549,"friendly_version":"5","offline_predecessor_ids":[],"name":"SUSE Manager Client Tools for SLE Micro","release_type":null,"former_identifier":"sle-manager-tools-micro","migration_extra":false,"friendly_name":"SUSE Manager Client Tools for SLE Micro 5 aarch64","recommended":false,"version":"5","product_type":"extension","cpe":"cpe:/o:suse:sle-manager-tools-micro:5","predecessor_ids":[],"online_predecessor_ids":[],"repositories":[{"autorefresh":true,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools-For-Micro/5/aarch64/update/","enabled":true,"id":6032,"description":"SLE-Manager-Tools-For-Micro5-Updates for sle-15-aarch64","name":"SLE-Manager-Tools-For-Micro5-Updates","installer_updates":false},{"installer_updates":false,"name":"SLE-Manager-Tools-For-Micro5-Debuginfo-Updates","description":"SLE-Manager-Tools-For-Micro5-Debuginfo-Updates for sle-15-aarch64","id":6033,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools-For-Micro/5/aarch64/update_debug/","distro_target":"sle-15-aarch64","autorefresh":true},{"id":6034,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Manager-Tools-For-Micro/5/aarch64/product/","distro_target":"sle-15-aarch64","autorefresh":false,"installer_updates":false,"name":"SLE-Manager-Tools-For-Micro5-Pool","description":"SLE-Manager-Tools-For-Micro5-Pool for sle-15-aarch64"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Manager-Tools-For-Micro/5/aarch64/product_debug/","autorefresh":false,"distro_target":"sle-15-aarch64","id":6035,"enabled":false,"description":"SLE-Manager-Tools-For-Micro5-Debuginfo-Pool for sle-15-aarch64","name":"SLE-Manager-Tools-For-Micro5-Debuginfo-Pool","installer_updates":false},{"id":6036,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Manager-Tools-For-Micro/5/aarch64/product_source/","autorefresh":false,"distro_target":"sle-15-aarch64","name":"SLE-Manager-Tools-For-Micro5-Source-Pool","installer_updates":false,"description":"SLE-Manager-Tools-For-Micro5-Source-Pool for sle-15-aarch64"}],"product_class":"SLE-M-T","eula_url":"","arch":"aarch64","free":false,"shortname":"Manager-Tools-Beta","description":"SUSE Manager Client Tools for SLE Micro 5"},{"version":"5","recommended":false,"release_type":null,"former_identifier":"sle-manager-tools-micro","friendly_name":"SUSE Manager Client Tools for SLE Micro 5 s390x","migration_extra":false,"offline_predecessor_ids":[],"name":"SUSE Manager Client Tools for SLE Micro","friendly_version":"5","id":2550,"release_stage":"released","identifier":"sle-manager-tools-micro","extensions":[],"free":false,"shortname":"Manager-Tools-Beta","description":"SUSE Manager Client Tools for SLE Micro 5","arch":"s390x","eula_url":"","repositories":[{"name":"SLE-Manager-Tools-For-Micro5-Updates","installer_updates":false,"description":"SLE-Manager-Tools-For-Micro5-Updates for sle-15-s390x","enabled":true,"id":6037,"autorefresh":true,"distro_target":"sle-15-s390x","url":"https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools-For-Micro/5/s390x/update/"},{"description":"SLE-Manager-Tools-For-Micro5-Debuginfo-Updates for sle-15-s390x","name":"SLE-Manager-Tools-For-Micro5-Debuginfo-Updates","installer_updates":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools-For-Micro/5/s390x/update_debug/","autorefresh":true,"distro_target":"sle-15-s390x","id":6038,"enabled":false},{"distro_target":"sle-15-s390x","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Manager-Tools-For-Micro/5/s390x/product/","enabled":true,"id":6039,"description":"SLE-Manager-Tools-For-Micro5-Pool for sle-15-s390x","installer_updates":false,"name":"SLE-Manager-Tools-For-Micro5-Pool"},{"autorefresh":false,"distro_target":"sle-15-s390x","url":"https://updates.suse.com/SUSE/Products/SLE-Manager-Tools-For-Micro/5/s390x/product_debug/","enabled":false,"id":6040,"description":"SLE-Manager-Tools-For-Micro5-Debuginfo-Pool for sle-15-s390x","name":"SLE-Manager-Tools-For-Micro5-Debuginfo-Pool","installer_updates":false},{"enabled":false,"id":6041,"distro_target":"sle-15-s390x","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Manager-Tools-For-Micro/5/s390x/product_source/","installer_updates":false,"name":"SLE-Manager-Tools-For-Micro5-Source-Pool","description":"SLE-Manager-Tools-For-Micro5-Source-Pool for sle-15-s390x"}],"online_predecessor_ids":[],"product_class":"SLE-M-T","predecessor_ids":[],"product_type":"extension","cpe":"cpe:/o:suse:sle-manager-tools-micro:5"},{"description":"SUSE Manager Client Tools for SLE Micro 5","shortname":"Manager-Tools-Beta","free":false,"eula_url":"","arch":"x86_64","predecessor_ids":[],"online_predecessor_ids":[],"product_class":"SLE-M-T","repositories":[{"enabled":true,"id":6042,"distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools-For-Micro/5/x86_64/update/","installer_updates":false,"name":"SLE-Manager-Tools-For-Micro5-Updates","description":"SLE-Manager-Tools-For-Micro5-Updates for sle-15-x86_64"},{"url":"https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools-For-Micro/5/x86_64/update_debug/","distro_target":"sle-15-x86_64","autorefresh":true,"id":6043,"enabled":false,"description":"SLE-Manager-Tools-For-Micro5-Debuginfo-Updates for sle-15-x86_64","installer_updates":false,"name":"SLE-Manager-Tools-For-Micro5-Debuginfo-Updates"},{"name":"SLE-Manager-Tools-For-Micro5-Pool","installer_updates":false,"description":"SLE-Manager-Tools-For-Micro5-Pool for sle-15-x86_64","id":6044,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Manager-Tools-For-Micro/5/x86_64/product/","autorefresh":false,"distro_target":"sle-15-x86_64"},{"id":6045,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Manager-Tools-For-Micro/5/x86_64/product_debug/","autorefresh":false,"distro_target":"sle-15-x86_64","name":"SLE-Manager-Tools-For-Micro5-Debuginfo-Pool","installer_updates":false,"description":"SLE-Manager-Tools-For-Micro5-Debuginfo-Pool for sle-15-x86_64"},{"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Manager-Tools-For-Micro/5/x86_64/product_source/","enabled":false,"id":6046,"description":"SLE-Manager-Tools-For-Micro5-Source-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Manager-Tools-For-Micro5-Source-Pool"}],"cpe":"cpe:/o:suse:sle-manager-tools-micro:5","product_type":"extension","recommended":false,"version":"5","name":"SUSE Manager Client Tools for SLE Micro","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"SUSE Manager Client Tools for SLE Micro 5 x86_64","former_identifier":"sle-manager-tools-micro","release_type":null,"friendly_version":"5","extensions":[],"id":2551,"release_stage":"released","identifier":"sle-manager-tools-micro"},{"id":2552,"release_stage":"beta","identifier":"sle-manager-tools-beta-micro","extensions":[],"friendly_version":"5","former_identifier":"sle-manager-tools-beta-micro","release_type":null,"friendly_name":"SUSE Manager Client Tools Beta for SLE Micro 5 aarch64 (BETA)","migration_extra":false,"offline_predecessor_ids":[],"name":"SUSE Manager Client Tools Beta for SLE Micro","version":"5","recommended":false,"product_type":"extension","cpe":"cpe:/o:suse:sle-manager-tools-beta-micro:5","online_predecessor_ids":[],"repositories":[{"name":"SLE-Manager-Tools-Beta-For-Micro5-Updates","installer_updates":false,"description":"SLE-Manager-Tools-Beta-For-Micro5-Updates for sle-15-aarch64","enabled":true,"id":6047,"autorefresh":true,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools-Beta-For-Micro/5/aarch64/update/"},{"installer_updates":false,"name":"SLE-Manager-Tools-Beta-For-Micro5-Debuginfo-Updates","description":"SLE-Manager-Tools-Beta-For-Micro5-Debuginfo-Updates for sle-15-aarch64","id":6048,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools-Beta-For-Micro/5/aarch64/update_debug/","distro_target":"sle-15-aarch64","autorefresh":true},{"description":"SLE-Manager-Tools-Beta-For-Micro5-Pool for sle-15-aarch64","installer_updates":false,"name":"SLE-Manager-Tools-Beta-For-Micro5-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Manager-Tools-Beta-For-Micro/5/aarch64/product/","distro_target":"sle-15-aarch64","autorefresh":false,"id":6049,"enabled":true},{"description":"SLE-Manager-Tools-Beta-For-Micro5-Debuginfo-Pool for sle-15-aarch64","name":"SLE-Manager-Tools-Beta-For-Micro5-Debuginfo-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Products/SLE-Manager-Tools-Beta-For-Micro/5/aarch64/product_debug/","enabled":false,"id":6050},{"description":"SLE-Manager-Tools-Beta-For-Micro5-Source-Pool for sle-15-aarch64","name":"SLE-Manager-Tools-Beta-For-Micro5-Source-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Products/SLE-Manager-Tools-Beta-For-Micro/5/aarch64/product_source/","enabled":false,"id":6051}],"product_class":"SLE-M-T-BETA","predecessor_ids":[],"arch":"aarch64","eula_url":"","free":false,"description":"SUSE Manager Client Tools Beta for SLE Micro 5","shortname":"Manager-Tools-Beta"},{"recommended":false,"version":"5","offline_predecessor_ids":[],"name":"SUSE Manager Client Tools Beta for SLE Micro","release_type":null,"former_identifier":"sle-manager-tools-beta-micro","friendly_name":"SUSE Manager Client Tools Beta for SLE Micro 5 s390x (BETA)","migration_extra":false,"friendly_version":"5","extensions":[],"release_stage":"beta","id":2553,"identifier":"sle-manager-tools-beta-micro","free":false,"description":"SUSE Manager Client Tools Beta for SLE Micro 5","shortname":"Manager-Tools-Beta","eula_url":"","arch":"s390x","predecessor_ids":[],"repositories":[{"autorefresh":true,"distro_target":"sle-15-s390x","url":"https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools-Beta-For-Micro/5/s390x/update/","enabled":true,"id":6052,"description":"SLE-Manager-Tools-Beta-For-Micro5-Updates for sle-15-s390x","name":"SLE-Manager-Tools-Beta-For-Micro5-Updates","installer_updates":false},{"installer_updates":false,"name":"SLE-Manager-Tools-Beta-For-Micro5-Debuginfo-Updates","description":"SLE-Manager-Tools-Beta-For-Micro5-Debuginfo-Updates for sle-15-s390x","id":6053,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools-Beta-For-Micro/5/s390x/update_debug/","distro_target":"sle-15-s390x","autorefresh":true},{"url":"https://updates.suse.com/SUSE/Products/SLE-Manager-Tools-Beta-For-Micro/5/s390x/product/","autorefresh":false,"distro_target":"sle-15-s390x","id":6054,"enabled":true,"description":"SLE-Manager-Tools-Beta-For-Micro5-Pool for sle-15-s390x","name":"SLE-Manager-Tools-Beta-For-Micro5-Pool","installer_updates":false},{"description":"SLE-Manager-Tools-Beta-For-Micro5-Debuginfo-Pool for sle-15-s390x","installer_updates":false,"name":"SLE-Manager-Tools-Beta-For-Micro5-Debuginfo-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Manager-Tools-Beta-For-Micro/5/s390x/product_debug/","distro_target":"sle-15-s390x","autorefresh":false,"id":6055,"enabled":false},{"enabled":false,"id":6056,"distro_target":"sle-15-s390x","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Manager-Tools-Beta-For-Micro/5/s390x/product_source/","installer_updates":false,"name":"SLE-Manager-Tools-Beta-For-Micro5-Source-Pool","description":"SLE-Manager-Tools-Beta-For-Micro5-Source-Pool for sle-15-s390x"}],"online_predecessor_ids":[],"product_class":"SLE-M-T-BETA","product_type":"extension","cpe":"cpe:/o:suse:sle-manager-tools-beta-micro:5"},{"recommended":false,"version":"5","name":"SUSE Manager Client Tools Beta for SLE Micro","offline_predecessor_ids":[],"friendly_name":"SUSE Manager Client Tools Beta for SLE Micro 5 x86_64 (BETA)","migration_extra":false,"former_identifier":"sle-manager-tools-beta-micro","release_type":null,"friendly_version":"5","extensions":[],"release_stage":"beta","identifier":"sle-manager-tools-beta-micro","id":2554,"shortname":"Manager-Tools-Beta","description":"SUSE Manager Client Tools Beta for SLE Micro 5","free":false,"eula_url":"","arch":"x86_64","predecessor_ids":[],"online_predecessor_ids":[],"product_class":"SLE-M-T-BETA","repositories":[{"distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools-Beta-For-Micro/5/x86_64/update/","enabled":true,"id":6057,"description":"SLE-Manager-Tools-Beta-For-Micro5-Updates for sle-15-x86_64","installer_updates":false,"name":"SLE-Manager-Tools-Beta-For-Micro5-Updates"},{"installer_updates":false,"name":"SLE-Manager-Tools-Beta-For-Micro5-Debuginfo-Updates","description":"SLE-Manager-Tools-Beta-For-Micro5-Debuginfo-Updates for sle-15-x86_64","enabled":false,"id":6058,"distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools-Beta-For-Micro/5/x86_64/update_debug/"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Manager-Tools-Beta-For-Micro/5/x86_64/product/","distro_target":"sle-15-x86_64","autorefresh":false,"id":6059,"enabled":true,"description":"SLE-Manager-Tools-Beta-For-Micro5-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Manager-Tools-Beta-For-Micro5-Pool"},{"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Manager-Tools-Beta-For-Micro/5/x86_64/product_debug/","enabled":false,"id":6060,"description":"SLE-Manager-Tools-Beta-For-Micro5-Debuginfo-Pool for sle-15-x86_64","name":"SLE-Manager-Tools-Beta-For-Micro5-Debuginfo-Pool","installer_updates":false},{"installer_updates":false,"name":"SLE-Manager-Tools-Beta-For-Micro5-Source-Pool","description":"SLE-Manager-Tools-Beta-For-Micro5-Source-Pool for sle-15-x86_64","id":6061,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Manager-Tools-Beta-For-Micro/5/x86_64/product_source/","distro_target":"sle-15-x86_64","autorefresh":false}],"cpe":"cpe:/o:suse:sle-manager-tools-beta-micro:5","product_type":"extension"},{"product_type":"module","cpe":"cpe:/o:suse:sle-module-certifications:15:sp5","online_predecessor_ids":[2390],"product_class":"MODULE","repositories":[{"enabled":true,"id":6065,"autorefresh":true,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Certifications/15-SP5/aarch64/update/","name":"SLE-Module-Certifications-15-SP5-Updates","installer_updates":false,"description":"SLE-Module-Certifications-15-SP5-Updates for sle-15-aarch64"},{"id":6066,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Certifications/15-SP5/aarch64/update_debug/","distro_target":"sle-15-aarch64","autorefresh":true,"installer_updates":false,"name":"SLE-Module-Certifications-15-SP5-Debuginfo-Updates","description":"SLE-Module-Certifications-15-SP5-Debuginfo-Updates for sle-15-aarch64"},{"name":"SLE-Module-Certifications-15-SP5-Pool","installer_updates":false,"description":"SLE-Module-Certifications-15-SP5-Pool for sle-15-aarch64","enabled":true,"id":6067,"autorefresh":false,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Certifications/15-SP5/aarch64/product/"},{"description":"SLE-Module-Certifications-15-SP5-Debuginfo-Pool for sle-15-aarch64","installer_updates":false,"name":"SLE-Module-Certifications-15-SP5-Debuginfo-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Certifications/15-SP5/aarch64/product_debug/","distro_target":"sle-15-aarch64","autorefresh":false,"id":6068,"enabled":false},{"enabled":false,"id":6069,"distro_target":"sle-15-aarch64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Certifications/15-SP5/aarch64/product_source/","installer_updates":false,"name":"SLE-Module-Certifications-15-SP5-Source-Pool","description":"SLE-Module-Certifications-15-SP5-Source-Pool for sle-15-aarch64"}],"predecessor_ids":[2390],"arch":"aarch64","eula_url":"","free":true,"description":"

This module contains the certification packages.

Access to the Certifications Module is included in your SUSE Linux Enterprise subscription. The module has a different lifecycle than SUSE Linux Enterprise itself; please check the Release Notes for further details.

","shortname":"Certifications-Module","release_stage":"released","id":2555,"identifier":"sle-module-certifications","extensions":[],"friendly_version":"15 SP5","former_identifier":"sle-module-certifications","release_type":null,"friendly_name":"Certifications Module 15 SP5 aarch64","migration_extra":false,"offline_predecessor_ids":[],"name":"Certifications Module","version":"15.5","recommended":false},{"release_stage":"released","identifier":"sle-module-certifications","id":2556,"extensions":[],"friendly_version":"15 SP5","former_identifier":"sle-module-certifications","release_type":null,"migration_extra":false,"friendly_name":"Certifications Module 15 SP5 ppc64le","offline_predecessor_ids":[],"name":"Certifications Module","version":"15.5","recommended":false,"product_type":"module","cpe":"cpe:/o:suse:sle-module-certifications:15:sp5","online_predecessor_ids":[2391],"repositories":[{"enabled":true,"id":6070,"autorefresh":true,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Certifications/15-SP5/ppc64le/update/","name":"SLE-Module-Certifications-15-SP5-Updates","installer_updates":false,"description":"SLE-Module-Certifications-15-SP5-Updates for sle-15-ppc64le"},{"enabled":false,"id":6071,"distro_target":"sle-15-ppc64le","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Certifications/15-SP5/ppc64le/update_debug/","installer_updates":false,"name":"SLE-Module-Certifications-15-SP5-Debuginfo-Updates","description":"SLE-Module-Certifications-15-SP5-Debuginfo-Updates for sle-15-ppc64le"},{"id":6072,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Certifications/15-SP5/ppc64le/product/","autorefresh":false,"distro_target":"sle-15-ppc64le","name":"SLE-Module-Certifications-15-SP5-Pool","installer_updates":false,"description":"SLE-Module-Certifications-15-SP5-Pool for sle-15-ppc64le"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Certifications/15-SP5/ppc64le/product_debug/","autorefresh":false,"distro_target":"sle-15-ppc64le","id":6073,"enabled":false,"description":"SLE-Module-Certifications-15-SP5-Debuginfo-Pool for sle-15-ppc64le","name":"SLE-Module-Certifications-15-SP5-Debuginfo-Pool","installer_updates":false},{"description":"SLE-Module-Certifications-15-SP5-Source-Pool for sle-15-ppc64le","name":"SLE-Module-Certifications-15-SP5-Source-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Certifications/15-SP5/ppc64le/product_source/","enabled":false,"id":6074}],"product_class":"MODULE","predecessor_ids":[2391],"arch":"ppc64le","eula_url":"","free":true,"shortname":"Certifications-Module","description":"

This module contains the certification packages.

Access to the Certifications Module is included in your SUSE Linux Enterprise subscription. The module has a different lifecycle than SUSE Linux Enterprise itself; please check the Release Notes for further details.

"},{"description":"

This module contains the certification packages.

Access to the Certifications Module is included in your SUSE Linux Enterprise subscription. The module has a different lifecycle than SUSE Linux Enterprise itself; please check the Release Notes for further details.

","shortname":"Certifications-Module","free":true,"eula_url":"","arch":"s390x","predecessor_ids":[2392],"online_predecessor_ids":[2392],"product_class":"MODULE","repositories":[{"distro_target":"sle-15-s390x","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Certifications/15-SP5/s390x/update/","enabled":true,"id":6075,"description":"SLE-Module-Certifications-15-SP5-Updates for sle-15-s390x","installer_updates":false,"name":"SLE-Module-Certifications-15-SP5-Updates"},{"installer_updates":false,"name":"SLE-Module-Certifications-15-SP5-Debuginfo-Updates","description":"SLE-Module-Certifications-15-SP5-Debuginfo-Updates for sle-15-s390x","id":6076,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Certifications/15-SP5/s390x/update_debug/","distro_target":"sle-15-s390x","autorefresh":true},{"description":"SLE-Module-Certifications-15-SP5-Pool for sle-15-s390x","name":"SLE-Module-Certifications-15-SP5-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Certifications/15-SP5/s390x/product/","autorefresh":false,"distro_target":"sle-15-s390x","id":6077,"enabled":true},{"description":"SLE-Module-Certifications-15-SP5-Debuginfo-Pool for sle-15-s390x","name":"SLE-Module-Certifications-15-SP5-Debuginfo-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-15-s390x","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Certifications/15-SP5/s390x/product_debug/","enabled":false,"id":6078},{"name":"SLE-Module-Certifications-15-SP5-Source-Pool","installer_updates":false,"description":"SLE-Module-Certifications-15-SP5-Source-Pool for sle-15-s390x","id":6079,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Certifications/15-SP5/s390x/product_source/","autorefresh":false,"distro_target":"sle-15-s390x"}],"cpe":"cpe:/o:suse:sle-module-certifications:15:sp5","product_type":"module","recommended":false,"version":"15.5","name":"Certifications Module","offline_predecessor_ids":[],"friendly_name":"Certifications Module 15 SP5 s390x","migration_extra":false,"former_identifier":"sle-module-certifications","release_type":null,"friendly_version":"15 SP5","extensions":[],"identifier":"sle-module-certifications","release_stage":"released","id":2557},{"cpe":"cpe:/o:suse:sle-module-certifications:15:sp5","product_type":"module","predecessor_ids":[2393],"online_predecessor_ids":[2393],"product_class":"MODULE","repositories":[{"installer_updates":false,"name":"SLE-Module-Certifications-15-SP5-Updates","description":"SLE-Module-Certifications-15-SP5-Updates for sle-15-x86_64","id":6080,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Certifications/15-SP5/x86_64/update/","distro_target":"sle-15-x86_64","autorefresh":true},{"name":"SLE-Module-Certifications-15-SP5-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-Certifications-15-SP5-Debuginfo-Updates for sle-15-x86_64","id":6081,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Certifications/15-SP5/x86_64/update_debug/","autorefresh":true,"distro_target":"sle-15-x86_64"},{"installer_updates":false,"name":"SLE-Module-Certifications-15-SP5-Pool","description":"SLE-Module-Certifications-15-SP5-Pool for sle-15-x86_64","enabled":true,"id":6082,"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Certifications/15-SP5/x86_64/product/"},{"enabled":false,"id":6083,"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Certifications/15-SP5/x86_64/product_debug/","installer_updates":false,"name":"SLE-Module-Certifications-15-SP5-Debuginfo-Pool","description":"SLE-Module-Certifications-15-SP5-Debuginfo-Pool for sle-15-x86_64"},{"description":"SLE-Module-Certifications-15-SP5-Source-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Certifications-15-SP5-Source-Pool","distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Certifications/15-SP5/x86_64/product_source/","enabled":false,"id":6084}],"eula_url":"","arch":"x86_64","shortname":"Certifications-Module","description":"

This module contains the certification packages.

Access to the Certifications Module is included in your SUSE Linux Enterprise subscription. The module has a different lifecycle than SUSE Linux Enterprise itself; please check the Release Notes for further details.

","free":true,"extensions":[],"id":2558,"release_stage":"released","identifier":"sle-module-certifications","friendly_version":"15 SP5","name":"Certifications Module","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"Certifications Module 15 SP5 x86_64","former_identifier":"sle-module-certifications","release_type":null,"recommended":false,"version":"15.5"},{"friendly_version":"15 SP5","release_stage":"released","id":2559,"identifier":"PackageHub","extensions":[],"version":"15.5","recommended":false,"former_identifier":"PackageHub","release_type":null,"migration_extra":false,"friendly_name":"SUSE Package Hub 15 SP5 aarch64","offline_predecessor_ids":[1532,1810,1912],"name":"SUSE Package Hub","repositories":[{"id":6089,"enabled":true,"url":"https://updates.suse.com/SUSE/Backports/SLE-15-SP5_aarch64/standard/","distro_target":"sle-15-aarch64","autorefresh":false,"installer_updates":false,"name":"SUSE-PackageHub-15-SP5-Backports-Pool","description":"SUSE-PackageHub-15-SP5-Backports-Pool for sle-15-aarch64"},{"distro_target":"sle-15-aarch64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Backports/SLE-15-SP5_aarch64/standard_debug/","enabled":false,"id":6090,"description":"SUSE-PackageHub-15-SP5-Backports-Debuginfo for sle-15-aarch64","installer_updates":false,"name":"SUSE-PackageHub-15-SP5-Backports-Debuginfo"},{"enabled":true,"id":6091,"distro_target":"sle-15-aarch64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP5/aarch64/update/","installer_updates":false,"name":"SLE-Module-Packagehub-Subpackages15-SP5-Updates","description":"SLE-Module-Packagehub-Subpackages15-SP5-Updates for sle-15-aarch64"},{"installer_updates":false,"name":"SLE-Module-Packagehub-Subpackages15-SP5-Debuginfo-Updates","description":"SLE-Module-Packagehub-Subpackages15-SP5-Debuginfo-Updates for sle-15-aarch64","enabled":false,"id":6092,"distro_target":"sle-15-aarch64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP5/aarch64/update_debug/"},{"description":"SUSE-PackageHub-15-SP5-Pool for sle-15-aarch64","name":"SUSE-PackageHub-15-SP5-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Backports/SLE-15-SP5_aarch64/product/","autorefresh":false,"distro_target":"sle-15-aarch64","id":6093,"enabled":true},{"enabled":true,"id":6094,"distro_target":"sle-15-aarch64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP5/aarch64/product/","installer_updates":false,"name":"SLE-Module-Packagehub-Subpackages15-SP5-Pool","description":"SLE-Module-Packagehub-Subpackages15-SP5-Pool for sle-15-aarch64"},{"description":"SLE-Module-Packagehub-Subpackages15-SP5-Debuginfo-Pool for sle-15-aarch64","installer_updates":false,"name":"SLE-Module-Packagehub-Subpackages15-SP5-Debuginfo-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP5/aarch64/product_debug/","distro_target":"sle-15-aarch64","autorefresh":false,"id":6095,"enabled":false},{"id":6096,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP5/aarch64/product_source/","distro_target":"sle-15-aarch64","autorefresh":false,"installer_updates":false,"name":"SLE-Module-Packagehub-Subpackages15-SP5-Source-Pool","description":"SLE-Module-Packagehub-Subpackages15-SP5-Source-Pool for sle-15-aarch64"}],"online_predecessor_ids":[1740,1868,1947,2188,2344],"product_class":"MODULE","predecessor_ids":[1740,1868,1947,2188,2344],"product_type":"module","cpe":"cpe:/o:suse:packagehub:15:sp5","free":true,"shortname":"SUSE-PackageHub-15","description":"SUSE Package Hub is a free of charge module providing access to community maintained packages built to run on SUSE Linux Enterprise Server. Built from the same sources used in the openSUSE distributions, these quality packages provide additional software to what is found in the SUSE Linux Enterprise Server product. Packages from the Package Hub are delivered without L3 support from SUSE. General updates and fixes to the packages in SUSE Package Hub are provided by the openSUSE community based on their discretion, though SUSE will monitor and ensure that any known critical security issues will be addressed. Packages in the Package Hub are approved by SUSE for use with SUSE Linux Enterprise Server 15-SP5 and to not interfere with the supportability of SUSE Linux Enterprise Server, its modules and extensions. For more information about SUSE Package Hub please visit https://packagehub.suse.com.","arch":"aarch64","eula_url":""},{"cpe":"cpe:/o:suse:packagehub:15:sp5","product_type":"module","product_class":"MODULE","online_predecessor_ids":[1741,1869,1948,2189,2345],"repositories":[{"installer_updates":false,"name":"SUSE-PackageHub-15-SP5-Backports-Pool","description":"SUSE-PackageHub-15-SP5-Backports-Pool for sle-15-ppc64le","id":6097,"enabled":true,"url":"https://updates.suse.com/SUSE/Backports/SLE-15-SP5_ppc64le/standard/","distro_target":"sle-15-ppc64le","autorefresh":false},{"id":6098,"enabled":false,"url":"https://updates.suse.com/SUSE/Backports/SLE-15-SP5_ppc64le/standard_debug/","autorefresh":true,"distro_target":"sle-15-ppc64le","name":"SUSE-PackageHub-15-SP5-Backports-Debuginfo","installer_updates":false,"description":"SUSE-PackageHub-15-SP5-Backports-Debuginfo for sle-15-ppc64le"},{"enabled":true,"id":6099,"distro_target":"sle-15-ppc64le","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP5/ppc64le/update/","installer_updates":false,"name":"SLE-Module-Packagehub-Subpackages15-SP5-Updates","description":"SLE-Module-Packagehub-Subpackages15-SP5-Updates for sle-15-ppc64le"},{"installer_updates":false,"name":"SLE-Module-Packagehub-Subpackages15-SP5-Debuginfo-Updates","description":"SLE-Module-Packagehub-Subpackages15-SP5-Debuginfo-Updates for sle-15-ppc64le","id":6100,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP5/ppc64le/update_debug/","distro_target":"sle-15-ppc64le","autorefresh":true},{"distro_target":"sle-15-ppc64le","autorefresh":false,"url":"https://updates.suse.com/SUSE/Backports/SLE-15-SP5_ppc64le/product/","enabled":true,"id":6101,"description":"SUSE-PackageHub-15-SP5-Pool for sle-15-ppc64le","installer_updates":false,"name":"SUSE-PackageHub-15-SP5-Pool"},{"name":"SLE-Module-Packagehub-Subpackages15-SP5-Pool","installer_updates":false,"description":"SLE-Module-Packagehub-Subpackages15-SP5-Pool for sle-15-ppc64le","enabled":true,"id":6102,"autorefresh":false,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP5/ppc64le/product/"},{"description":"SLE-Module-Packagehub-Subpackages15-SP5-Debuginfo-Pool for sle-15-ppc64le","installer_updates":false,"name":"SLE-Module-Packagehub-Subpackages15-SP5-Debuginfo-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP5/ppc64le/product_debug/","distro_target":"sle-15-ppc64le","autorefresh":false,"id":6103,"enabled":false},{"description":"SLE-Module-Packagehub-Subpackages15-SP5-Source-Pool for sle-15-ppc64le","name":"SLE-Module-Packagehub-Subpackages15-SP5-Source-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-15-ppc64le","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP5/ppc64le/product_source/","enabled":false,"id":6104}],"predecessor_ids":[1741,1869,1948,2189,2345],"arch":"ppc64le","eula_url":"","shortname":"SUSE-PackageHub-15","description":"SUSE Package Hub is a free of charge module providing access to community maintained packages built to run on SUSE Linux Enterprise Server. Built from the same sources used in the openSUSE distributions, these quality packages provide additional software to what is found in the SUSE Linux Enterprise Server product. Packages from the Package Hub are delivered without L3 support from SUSE. General updates and fixes to the packages in SUSE Package Hub are provided by the openSUSE community based on their discretion, though SUSE will monitor and ensure that any known critical security issues will be addressed. Packages in the Package Hub are approved by SUSE for use with SUSE Linux Enterprise Server 15-SP5 and to not interfere with the supportability of SUSE Linux Enterprise Server, its modules and extensions. For more information about SUSE Package Hub please visit https://packagehub.suse.com.","free":true,"identifier":"PackageHub","release_stage":"released","id":2560,"extensions":[],"friendly_version":"15 SP5","friendly_name":"SUSE Package Hub 15 SP5 ppc64le","migration_extra":false,"former_identifier":"PackageHub","release_type":null,"name":"SUSE Package Hub","offline_predecessor_ids":[1531,1811,1913],"version":"15.5","recommended":false},{"id":2561,"release_stage":"released","identifier":"PackageHub","extensions":[],"friendly_version":"15 SP5","migration_extra":false,"friendly_name":"SUSE Package Hub 15 SP5 s390x","former_identifier":"PackageHub","release_type":null,"name":"SUSE Package Hub","offline_predecessor_ids":[1530,1812,1914],"version":"15.5","recommended":false,"cpe":"cpe:/o:suse:packagehub:15:sp5","product_type":"module","product_class":"MODULE","online_predecessor_ids":[1742,1870,1949,2190,2346],"repositories":[{"description":"SUSE-PackageHub-15-SP5-Backports-Pool for sle-15-s390x","name":"SUSE-PackageHub-15-SP5-Backports-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Backports/SLE-15-SP5_s390x/standard/","autorefresh":false,"distro_target":"sle-15-s390x","id":6105,"enabled":true},{"description":"SUSE-PackageHub-15-SP5-Backports-Debuginfo for sle-15-s390x","name":"SUSE-PackageHub-15-SP5-Backports-Debuginfo","installer_updates":false,"autorefresh":true,"distro_target":"sle-15-s390x","url":"https://updates.suse.com/SUSE/Backports/SLE-15-SP5_s390x/standard_debug/","enabled":false,"id":6106},{"installer_updates":false,"name":"SLE-Module-Packagehub-Subpackages15-SP5-Updates","description":"SLE-Module-Packagehub-Subpackages15-SP5-Updates for sle-15-s390x","id":6107,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP5/s390x/update/","distro_target":"sle-15-s390x","autorefresh":true},{"description":"SLE-Module-Packagehub-Subpackages15-SP5-Debuginfo-Updates for sle-15-s390x","name":"SLE-Module-Packagehub-Subpackages15-SP5-Debuginfo-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-15-s390x","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP5/s390x/update_debug/","enabled":false,"id":6108},{"description":"SUSE-PackageHub-15-SP5-Pool for sle-15-s390x","name":"SUSE-PackageHub-15-SP5-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-15-s390x","url":"https://updates.suse.com/SUSE/Backports/SLE-15-SP5_s390x/product/","enabled":true,"id":6109},{"name":"SLE-Module-Packagehub-Subpackages15-SP5-Pool","installer_updates":false,"description":"SLE-Module-Packagehub-Subpackages15-SP5-Pool for sle-15-s390x","enabled":true,"id":6110,"autorefresh":false,"distro_target":"sle-15-s390x","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP5/s390x/product/"},{"name":"SLE-Module-Packagehub-Subpackages15-SP5-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-Packagehub-Subpackages15-SP5-Debuginfo-Pool for sle-15-s390x","enabled":false,"id":6111,"autorefresh":false,"distro_target":"sle-15-s390x","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP5/s390x/product_debug/"},{"distro_target":"sle-15-s390x","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP5/s390x/product_source/","enabled":false,"id":6112,"description":"SLE-Module-Packagehub-Subpackages15-SP5-Source-Pool for sle-15-s390x","installer_updates":false,"name":"SLE-Module-Packagehub-Subpackages15-SP5-Source-Pool"}],"predecessor_ids":[1742,1870,1949,2190,2346],"arch":"s390x","eula_url":"","shortname":"SUSE-PackageHub-15","description":"SUSE Package Hub is a free of charge module providing access to community maintained packages built to run on SUSE Linux Enterprise Server. Built from the same sources used in the openSUSE distributions, these quality packages provide additional software to what is found in the SUSE Linux Enterprise Server product. Packages from the Package Hub are delivered without L3 support from SUSE. General updates and fixes to the packages in SUSE Package Hub are provided by the openSUSE community based on their discretion, though SUSE will monitor and ensure that any known critical security issues will be addressed. Packages in the Package Hub are approved by SUSE for use with SUSE Linux Enterprise Server 15-SP5 and to not interfere with the supportability of SUSE Linux Enterprise Server, its modules and extensions. For more information about SUSE Package Hub please visit https://packagehub.suse.com.","free":true},{"name":"SUSE Package Hub","offline_predecessor_ids":[1529,1813,1915],"migration_extra":false,"friendly_name":"SUSE Package Hub 15 SP5 x86_64","former_identifier":"PackageHub","release_type":null,"recommended":false,"version":"15.5","extensions":[],"identifier":"PackageHub","release_stage":"released","id":2562,"friendly_version":"15 SP5","eula_url":"","arch":"x86_64","description":"SUSE Package Hub is a free of charge module providing access to community maintained packages built to run on SUSE Linux Enterprise Server. Built from the same sources used in the openSUSE distributions, these quality packages provide additional software to what is found in the SUSE Linux Enterprise Server product. Packages from the Package Hub are delivered without L3 support from SUSE. General updates and fixes to the packages in SUSE Package Hub are provided by the openSUSE community based on their discretion, though SUSE will monitor and ensure that any known critical security issues will be addressed. Packages in the Package Hub are approved by SUSE for use with SUSE Linux Enterprise Server 15-SP5 and to not interfere with the supportability of SUSE Linux Enterprise Server, its modules and extensions. For more information about SUSE Package Hub please visit https://packagehub.suse.com.","shortname":"SUSE-PackageHub-15","free":true,"cpe":"cpe:/o:suse:packagehub:15:sp5","product_type":"module","predecessor_ids":[1743,1871,1950,2191,2347],"repositories":[{"installer_updates":false,"name":"SUSE-PackageHub-15-SP5-Backports-Pool","description":"SUSE-PackageHub-15-SP5-Backports-Pool for sle-15-x86_64","enabled":true,"id":6113,"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Backports/SLE-15-SP5_x86_64/standard/"},{"url":"https://updates.suse.com/SUSE/Backports/SLE-15-SP5_x86_64/standard_debug/","autorefresh":true,"distro_target":"sle-15-x86_64","id":6114,"enabled":false,"description":"SUSE-PackageHub-15-SP5-Backports-Debuginfo for sle-15-x86_64","name":"SUSE-PackageHub-15-SP5-Backports-Debuginfo","installer_updates":false},{"id":6115,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP5/x86_64/update/","autorefresh":true,"distro_target":"sle-15-x86_64","name":"SLE-Module-Packagehub-Subpackages15-SP5-Updates","installer_updates":false,"description":"SLE-Module-Packagehub-Subpackages15-SP5-Updates for sle-15-x86_64"},{"description":"SLE-Module-Packagehub-Subpackages15-SP5-Debuginfo-Updates for sle-15-x86_64","name":"SLE-Module-Packagehub-Subpackages15-SP5-Debuginfo-Updates","installer_updates":false,"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP5/x86_64/update_debug/","enabled":false,"id":6116},{"id":6117,"enabled":true,"url":"https://updates.suse.com/SUSE/Backports/SLE-15-SP5_x86_64/product/","distro_target":"sle-15-x86_64","autorefresh":false,"installer_updates":false,"name":"SUSE-PackageHub-15-SP5-Pool","description":"SUSE-PackageHub-15-SP5-Pool for sle-15-x86_64"},{"id":6118,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP5/x86_64/product/","autorefresh":false,"distro_target":"sle-15-x86_64","name":"SLE-Module-Packagehub-Subpackages15-SP5-Pool","installer_updates":false,"description":"SLE-Module-Packagehub-Subpackages15-SP5-Pool for sle-15-x86_64"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP5/x86_64/product_debug/","autorefresh":false,"distro_target":"sle-15-x86_64","id":6119,"enabled":false,"description":"SLE-Module-Packagehub-Subpackages15-SP5-Debuginfo-Pool for sle-15-x86_64","name":"SLE-Module-Packagehub-Subpackages15-SP5-Debuginfo-Pool","installer_updates":false},{"description":"SLE-Module-Packagehub-Subpackages15-SP5-Source-Pool for sle-15-x86_64","name":"SLE-Module-Packagehub-Subpackages15-SP5-Source-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP5/x86_64/product_source/","enabled":false,"id":6120}],"online_predecessor_ids":[1743,1871,1950,2191,2347],"product_class":"MODULE"},{"eula_url":"https://download.opensuse.org/distribution/leap-micro/5.3/product/repo/Leap-Micro-5.3-aarch64-Media1.license/","arch":"aarch64","shortname":"openSUSE Leap Micro","description":"openSUSE Leap Micro 5.3","free":false,"cpe":"cpe:/o:opensuse:leap-micro:5.3","product_type":"base","predecessor_ids":[],"repositories":[{"url":"http://download.opensuse.org/repositories/SUSE:/Updates:/openSUSE-Leap-Micro:/5.3/standard/","distro_target":null,"autorefresh":true,"id":6123,"enabled":true,"description":"openSUSE-Leap-Micro-5.3-Updates","installer_updates":false,"name":"openSUSE-Leap-Micro-5.3-Updates"},{"enabled":true,"id":6124,"distro_target":null,"autorefresh":false,"url":"https://download.opensuse.org/distribution/leap-micro/5.3/product/repo/Leap-Micro-5.3-aarch64-Media1/","installer_updates":false,"name":"openSUSE-Leap-Micro-5.3-Pool","description":"openSUSE-Leap-Micro-5.3-Pool"}],"online_predecessor_ids":[],"product_class":"OPENSUSE","name":"openSUSE Leap Micro","offline_predecessor_ids":[],"friendly_name":"openSUSE Leap Micro 5.3 aarch64","migration_extra":false,"release_type":null,"former_identifier":"Leap-Micro","recommended":false,"version":"5.3","extensions":[],"release_stage":"released","id":2563,"identifier":"Leap-Micro","friendly_version":"5.3"},{"recommended":false,"version":"5.3","offline_predecessor_ids":[],"name":"openSUSE Leap Micro","release_type":null,"former_identifier":"Leap-Micro","migration_extra":false,"friendly_name":"openSUSE Leap Micro 5.3 x86_64","friendly_version":"5.3","extensions":[],"identifier":"Leap-Micro","release_stage":"released","id":2564,"free":false,"shortname":"openSUSE Leap Micro","description":"openSUSE Leap Micro 5.3","eula_url":"https://download.opensuse.org/distribution/leap-micro/5.3/product/repo/Leap-Micro-5.3-x86_64-Media1.license/","arch":"x86_64","predecessor_ids":[],"repositories":[{"url":"http://download.opensuse.org/repositories/SUSE:/Updates:/openSUSE-Leap-Micro:/5.3/standard/","autorefresh":true,"distro_target":null,"id":6123,"enabled":true,"description":"openSUSE-Leap-Micro-5.3-Updates","name":"openSUSE-Leap-Micro-5.3-Updates","installer_updates":false},{"name":"openSUSE-Leap-Micro-5.3-Pool","installer_updates":false,"description":"openSUSE-Leap-Micro-5.3-Pool","id":6125,"enabled":true,"url":"https://download.opensuse.org/distribution/leap-micro/5.3/product/repo/Leap-Micro-5.3-x86_64-Media1/","autorefresh":false,"distro_target":null}],"online_predecessor_ids":[],"product_class":"OPENSUSE","product_type":"base","cpe":"cpe:/o:opensuse:leap-micro:5.3"},{"eula_url":"","arch":null,"description":null,"shortname":"Rancher","free":false,"cpe":"cpe:/o:suse:rancher:2.7.0","product_type":"base","predecessor_ids":[],"online_predecessor_ids":[],"repositories":[],"product_class":"RANCHER-X86","name":"SUSE Rancher","offline_predecessor_ids":[],"friendly_name":"SUSE Rancher 2.7.0","migration_extra":false,"former_identifier":"rancher","release_type":null,"recommended":false,"version":"2.7.0","extensions":[],"release_stage":"released","id":2565,"identifier":"rancher","friendly_version":"2.7.0"},{"arch":null,"eula_url":"","shortname":"NV","description":null,"free":false,"cpe":"cpe:/o:suse:neuvector:5.0.5","product_type":"base","repositories":[],"online_predecessor_ids":[],"product_class":"NEUVECTOR","predecessor_ids":[],"migration_extra":false,"friendly_name":"NeuVector 5.0.5","former_identifier":"neuvector","release_type":null,"name":"NeuVector","offline_predecessor_ids":[],"version":"5.0.5","recommended":false,"id":2566,"release_stage":"released","identifier":"neuvector","extensions":[],"friendly_version":"5.0.5"},{"eula_url":"","arch":"aarch64","free":false,"description":"SUSE Linux Enterprise offers a comprehensive suite of products built on a single code base. The platform addresses business needs from the smallest thin-client devices to the world's most powerful high-performance computing and mainframe servers. SUSE Linux Enterprise offers common management tools and technology certifications across the platform, and each product is enterprise-class.","shortname":"SLES15-SP3-LTSS","product_type":"extension","cpe":"cpe:/o:suse:sles-ltss:15:sp3","predecessor_ids":[],"product_class":"SLES15-SP3-LTSS-ARM64","online_predecessor_ids":[],"repositories":[{"enabled":true,"id":6129,"distro_target":"sle-15-aarch64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-SLES/15-SP3-LTSS/aarch64/update/","installer_updates":false,"name":"SLE-Product-SLES15-SP3-LTSS-Updates","description":"SLE-Product-SLES15-SP3-LTSS-Updates for sle-15-aarch64"},{"autorefresh":true,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Updates/SLE-Product-SLES/15-SP3-LTSS/aarch64/update_debug/","enabled":false,"id":6130,"description":"SLE-Product-SLES15-SP3-Debuginfo-LTSS-Updates for sle-15-aarch64","name":"SLE-Product-SLES15-SP3-Debuginfo-LTSS-Updates","installer_updates":false}],"offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Server LTSS","release_type":null,"former_identifier":"SLES-LTSS","friendly_name":"SUSE Linux Enterprise Server LTSS 15 SP3 aarch64","migration_extra":false,"recommended":false,"version":"15.3","extensions":[],"identifier":"SLES-LTSS","release_stage":"released","id":2567,"friendly_version":"15 SP3"},{"arch":"ppc64le","eula_url":"","shortname":"SLES15-SP3-LTSS","description":"SUSE Linux Enterprise offers a comprehensive suite of products built on a single code base. The platform addresses business needs from the smallest thin-client devices to the world's most powerful high-performance computing and mainframe servers. SUSE Linux Enterprise offers common management tools and technology certifications across the platform, and each product is enterprise-class.","free":false,"cpe":"cpe:/o:suse:sles-ltss:15:sp3","product_type":"extension","online_predecessor_ids":[],"repositories":[{"description":"SLE-Product-SLES15-SP3-LTSS-Updates for sle-15-ppc64le","installer_updates":false,"name":"SLE-Product-SLES15-SP3-LTSS-Updates","url":"https://updates.suse.com/SUSE/Updates/SLE-Product-SLES/15-SP3-LTSS/ppc64le/update/","distro_target":"sle-15-ppc64le","autorefresh":true,"id":6131,"enabled":true},{"description":"SLE-Product-SLES15-SP3-Debuginfo-LTSS-Updates for sle-15-ppc64le","name":"SLE-Product-SLES15-SP3-Debuginfo-LTSS-Updates","installer_updates":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-SLES/15-SP3-LTSS/ppc64le/update_debug/","autorefresh":true,"distro_target":"sle-15-ppc64le","id":6132,"enabled":false}],"product_class":"SLES15-SP3-LTSS-PPC","predecessor_ids":[],"friendly_name":"SUSE Linux Enterprise Server LTSS 15 SP3 ppc64le","migration_extra":false,"release_type":null,"former_identifier":"SLES-LTSS","name":"SUSE Linux Enterprise Server LTSS","offline_predecessor_ids":[],"version":"15.3","recommended":false,"release_stage":"released","id":2568,"identifier":"SLES-LTSS","extensions":[],"friendly_version":"15 SP3"},{"friendly_name":"SUSE Linux Enterprise Server LTSS 15 SP3 s390x","migration_extra":false,"former_identifier":"SLES-LTSS","release_type":null,"name":"SUSE Linux Enterprise Server LTSS","offline_predecessor_ids":[],"version":"15.3","recommended":false,"release_stage":"released","id":2569,"identifier":"SLES-LTSS","extensions":[],"friendly_version":"15 SP3","arch":"s390x","eula_url":"","description":"SUSE Linux Enterprise offers a comprehensive suite of products built on a single code base. The platform addresses business needs from the smallest thin-client devices to the world's most powerful high-performance computing and mainframe servers. SUSE Linux Enterprise offers common management tools and technology certifications across the platform, and each product is enterprise-class.","shortname":"SLES15-SP3-LTSS","free":false,"cpe":"cpe:/o:suse:sles-ltss:15:sp3","product_type":"extension","online_predecessor_ids":[],"repositories":[{"description":"SLE-Product-SLES15-SP3-LTSS-Updates for sle-15-s390x","installer_updates":false,"name":"SLE-Product-SLES15-SP3-LTSS-Updates","distro_target":"sle-15-s390x","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-SLES/15-SP3-LTSS/s390x/update/","enabled":true,"id":6133},{"installer_updates":false,"name":"SLE-Product-SLES15-SP3-Debuginfo-LTSS-Updates","description":"SLE-Product-SLES15-SP3-Debuginfo-LTSS-Updates for sle-15-s390x","id":6134,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-SLES/15-SP3-LTSS/s390x/update_debug/","distro_target":"sle-15-s390x","autorefresh":true}],"product_class":"SLES15-SP3-LTSS-Z","predecessor_ids":[]},{"extensions":[],"identifier":"SLES-LTSS","release_stage":"released","id":2570,"friendly_version":"15 SP3","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Server LTSS","release_type":null,"former_identifier":"SLES-LTSS","friendly_name":"SUSE Linux Enterprise Server LTSS 15 SP3 x86_64","migration_extra":false,"recommended":false,"version":"15.3","product_type":"extension","cpe":"cpe:/o:suse:sles-ltss:15:sp3","predecessor_ids":[],"repositories":[{"description":"SLE-Product-SLES15-SP3-LTSS-Updates for sle-15-x86_64","installer_updates":false,"name":"SLE-Product-SLES15-SP3-LTSS-Updates","distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-SLES/15-SP3-LTSS/x86_64/update/","enabled":true,"id":6135},{"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Product-SLES/15-SP3-LTSS/x86_64/update_debug/","enabled":false,"id":6136,"description":"SLE-Product-SLES15-SP3-Debuginfo-LTSS-Updates for sle-15-x86_64","name":"SLE-Product-SLES15-SP3-Debuginfo-LTSS-Updates","installer_updates":false}],"online_predecessor_ids":[],"product_class":"SLES15-SP3-LTSS-X86","eula_url":"","arch":"x86_64","free":false,"shortname":"SLES15-SP3-LTSS","description":"SUSE Linux Enterprise offers a comprehensive suite of products built on a single code base. The platform addresses business needs from the smallest thin-client devices to the world's most powerful high-performance computing and mainframe servers. SUSE Linux Enterprise offers common management tools and technology certifications across the platform, and each product is enterprise-class."},{"recommended":false,"version":"1.1.1","name":"Harvester","offline_predecessor_ids":[],"friendly_name":"Harvester 1.1.1","migration_extra":false,"release_type":null,"former_identifier":"harvester","friendly_version":"1.1.1","extensions":[],"identifier":"harvester","release_stage":"released","id":2571,"description":null,"shortname":"Harvester","free":false,"eula_url":"","arch":null,"predecessor_ids":[],"product_class":"HARVESTER-X86","online_predecessor_ids":[],"repositories":[],"cpe":"cpe:/o:suse:harvester:1.1.1","product_type":"base"},{"eula_url":"","arch":"aarch64","description":"SUSE Linux Enterprise Micro 5.4","shortname":"SUSE Linux Enterprise Micro","free":false,"cpe":"cpe:/o:suse:sle-micro:5.4","product_type":"base","predecessor_ids":[2282,2399,2426],"online_predecessor_ids":[2282,2399,2426],"product_class":"MICROOS-ARM64","repositories":[{"enabled":true,"id":6140,"autorefresh":true,"distro_target":"sle-15-aarch64","url":"https://updates.suse.com/SUSE/Updates/SLE-Micro/5.4/aarch64/update/","name":"SLE-Micro-5.4-Updates","installer_updates":false,"description":"SLE-Micro-5.4-Updates for sle-15-aarch64"},{"description":"SLE-Micro-5.4-Debuginfo-Updates for sle-15-aarch64","name":"SLE-Micro-5.4-Debuginfo-Updates","installer_updates":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Micro/5.4/aarch64/update_debug/","autorefresh":true,"distro_target":"sle-15-aarch64","id":6141,"enabled":false},{"url":"https://updates.suse.com/SUSE/Products/SLE-Micro/5.4/aarch64/product/","distro_target":"sle-15-aarch64","autorefresh":false,"id":6142,"enabled":true,"description":"SLE-Micro-5.4-Pool for sle-15-aarch64","installer_updates":false,"name":"SLE-Micro-5.4-Pool"},{"description":"SLE-Micro-5.4-Debuginfo-Pool for sle-15-aarch64","name":"SLE-Micro-5.4-Debuginfo-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Micro/5.4/aarch64/product_debug/","autorefresh":false,"distro_target":"sle-15-aarch64","id":6143,"enabled":false},{"name":"SLE-Micro-5.4-Source-Pool","installer_updates":false,"description":"SLE-Micro-5.4-Source-Pool for sle-15-aarch64","id":6144,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Micro/5.4/aarch64/product_source/","autorefresh":false,"distro_target":"sle-15-aarch64"}],"name":"SUSE Linux Enterprise Micro","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Micro 5.4 aarch64","release_type":null,"former_identifier":"SLE-Micro","recommended":false,"version":"5.4","extensions":[{"extensions":[],"release_stage":"released","identifier":"PackageHub","id":2344,"friendly_version":"15 SP4","offline_predecessor_ids":[1532,1810,1912],"name":"SUSE Package Hub","release_type":null,"former_identifier":"PackageHub","friendly_name":"SUSE Package Hub 15 SP4 aarch64","migration_extra":false,"recommended":false,"version":"15.4","product_type":"module","cpe":"cpe:/o:suse:packagehub:15:sp4","predecessor_ids":[1740,1868,1947,2188],"online_predecessor_ids":[1740,1868,1947,2188],"product_class":"MODULE","repositories":[{"installer_updates":false,"name":"SUSE-PackageHub-15-SP4-Backports-Pool","description":"SUSE-PackageHub-15-SP4-Backports-Pool for sle-15-aarch64","enabled":true,"id":5364,"distro_target":"sle-15-aarch64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Backports/SLE-15-SP4_aarch64/standard/"},{"description":"SUSE-PackageHub-15-SP4-Backports-Debuginfo for sle-15-aarch64","name":"SUSE-PackageHub-15-SP4-Backports-Debuginfo","installer_updates":false,"url":"https://updates.suse.com/SUSE/Backports/SLE-15-SP4_aarch64/standard_debug/","autorefresh":true,"distro_target":"sle-15-aarch64","id":5365,"enabled":false},{"description":"SLE-Module-Packagehub-Subpackages15-SP4-Updates for sle-15-aarch64","name":"SLE-Module-Packagehub-Subpackages15-SP4-Updates","installer_updates":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP4/aarch64/update/","autorefresh":true,"distro_target":"sle-15-aarch64","id":5366,"enabled":true},{"id":5367,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP4/aarch64/update_debug/","distro_target":"sle-15-aarch64","autorefresh":true,"installer_updates":false,"name":"SLE-Module-Packagehub-Subpackages15-SP4-Debuginfo-Updates","description":"SLE-Module-Packagehub-Subpackages15-SP4-Debuginfo-Updates for sle-15-aarch64"},{"description":"SUSE-PackageHub-15-SP4-Pool for sle-15-aarch64","installer_updates":false,"name":"SUSE-PackageHub-15-SP4-Pool","url":"https://updates.suse.com/SUSE/Backports/SLE-15-SP4_aarch64/product/","distro_target":"sle-15-aarch64","autorefresh":false,"id":5368,"enabled":true},{"distro_target":"sle-15-aarch64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP4/aarch64/product/","enabled":true,"id":5369,"description":"SLE-Module-Packagehub-Subpackages15-SP4-Pool for sle-15-aarch64","installer_updates":false,"name":"SLE-Module-Packagehub-Subpackages15-SP4-Pool"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP4/aarch64/product_debug/","distro_target":"sle-15-aarch64","autorefresh":false,"id":5370,"enabled":false,"description":"SLE-Module-Packagehub-Subpackages15-SP4-Debuginfo-Pool for sle-15-aarch64","installer_updates":false,"name":"SLE-Module-Packagehub-Subpackages15-SP4-Debuginfo-Pool"},{"enabled":false,"id":5371,"distro_target":"sle-15-aarch64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP4/aarch64/product_source/","installer_updates":false,"name":"SLE-Module-Packagehub-Subpackages15-SP4-Source-Pool","description":"SLE-Module-Packagehub-Subpackages15-SP4-Source-Pool for sle-15-aarch64"}],"eula_url":"","arch":"aarch64","free":true,"description":"SUSE Package Hub is a free of charge module providing access to community maintained packages built to run on SUSE Linux Enterprise Server. Built from the same sources used in the openSUSE distributions, these quality packages provide additional software to what is found in the SUSE Linux Enterprise Server product. Packages from the Package Hub are delivered without L3 support from SUSE. General updates and fixes to the packages in SUSE Package Hub are provided by the openSUSE community based on their discretion, though SUSE will monitor and ensure that any known critical security issues will be addressed. Packages in the Package Hub are approved by SUSE for use with SUSE Linux Enterprise Server 15-SP4 and to not interfere with the supportability of SUSE Linux Enterprise Server, its modules and extensions. For more information about SUSE Package Hub please visit https://packagehub.suse.com.","shortname":"SUSE-PackageHub-15"}],"release_stage":"released","id":2572,"identifier":"SLE-Micro","friendly_version":"5.4"},{"extensions":[{"arch":"s390x","eula_url":"","shortname":"Live-Patching","description":"

SUSE Linux Enterprise Live Patching provides packages to update critical components in SUSE Linux Enterprise. With SUSE Linux Enterprise Live Patching, you can perform critical patching without shutting down your system, reducing the need for planned downtime and increasing service availability.

","free":false,"cpe":"cpe:/o:suse:sle-module-live-patching:15:sp4","product_type":"extension","repositories":[{"enabled":true,"id":5307,"autorefresh":true,"distro_target":"sle-15-s390x","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Live-Patching/15-SP4/s390x/update/","name":"SLE-Module-Live-Patching15-SP4-Updates","installer_updates":false,"description":"SLE-Module-Live-Patching15-SP4-Updates for sle-15-s390x"},{"description":"SLE-Module-Live-Patching15-SP4-Debuginfo-Updates for sle-15-s390x","name":"SLE-Module-Live-Patching15-SP4-Debuginfo-Updates","installer_updates":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Live-Patching/15-SP4/s390x/update_debug/","autorefresh":true,"distro_target":"sle-15-s390x","id":5308,"enabled":false},{"description":"SLE-Module-Live-Patching15-SP4-Pool for sle-15-s390x","installer_updates":false,"name":"SLE-Module-Live-Patching15-SP4-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Live-Patching/15-SP4/s390x/product/","distro_target":"sle-15-s390x","autorefresh":false,"id":5309,"enabled":true},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Live-Patching/15-SP4/s390x/product_debug/","distro_target":"sle-15-s390x","autorefresh":false,"id":5310,"enabled":false,"description":"SLE-Module-Live-Patching15-SP4-Debuginfo-Pool for sle-15-s390x","installer_updates":false,"name":"SLE-Module-Live-Patching15-SP4-Debuginfo-Pool"},{"installer_updates":false,"name":"SLE-Module-Live-Patching15-SP4-Source-Pool","description":"SLE-Module-Live-Patching15-SP4-Source-Pool for sle-15-s390x","id":5311,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Live-Patching/15-SP4/s390x/product_source/","distro_target":"sle-15-s390x","autorefresh":false}],"online_predecessor_ids":[2081,2186],"product_class":"SLE-LP-Z","predecessor_ids":[2081,2186],"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Live Patching 15 SP4 s390x","release_type":null,"former_identifier":"sle-module-live-patching","name":"SUSE Linux Enterprise Live Patching","offline_predecessor_ids":[2079,2080],"version":"15.4","recommended":false,"id":2333,"release_stage":"released","identifier":"sle-module-live-patching","extensions":[],"friendly_version":"15 SP4"},{"offline_predecessor_ids":[1530,1812,1914],"name":"SUSE Package Hub","former_identifier":"PackageHub","release_type":null,"migration_extra":false,"friendly_name":"SUSE Package Hub 15 SP4 s390x","recommended":false,"version":"15.4","extensions":[],"id":2346,"release_stage":"released","identifier":"PackageHub","friendly_version":"15 SP4","eula_url":"","arch":"s390x","free":true,"description":"SUSE Package Hub is a free of charge module providing access to community maintained packages built to run on SUSE Linux Enterprise Server. Built from the same sources used in the openSUSE distributions, these quality packages provide additional software to what is found in the SUSE Linux Enterprise Server product. Packages from the Package Hub are delivered without L3 support from SUSE. General updates and fixes to the packages in SUSE Package Hub are provided by the openSUSE community based on their discretion, though SUSE will monitor and ensure that any known critical security issues will be addressed. Packages in the Package Hub are approved by SUSE for use with SUSE Linux Enterprise Server 15-SP4 and to not interfere with the supportability of SUSE Linux Enterprise Server, its modules and extensions. For more information about SUSE Package Hub please visit https://packagehub.suse.com.","shortname":"SUSE-PackageHub-15","product_type":"module","cpe":"cpe:/o:suse:packagehub:15:sp4","predecessor_ids":[1742,1870,1949,2190],"online_predecessor_ids":[1742,1870,1949,2190],"repositories":[{"id":5380,"enabled":true,"url":"https://updates.suse.com/SUSE/Backports/SLE-15-SP4_s390x/standard/","autorefresh":false,"distro_target":"sle-15-s390x","name":"SUSE-PackageHub-15-SP4-Backports-Pool","installer_updates":false,"description":"SUSE-PackageHub-15-SP4-Backports-Pool for sle-15-s390x"},{"autorefresh":true,"distro_target":"sle-15-s390x","url":"https://updates.suse.com/SUSE/Backports/SLE-15-SP4_s390x/standard_debug/","enabled":false,"id":5381,"description":"SUSE-PackageHub-15-SP4-Backports-Debuginfo for sle-15-s390x","name":"SUSE-PackageHub-15-SP4-Backports-Debuginfo","installer_updates":false},{"enabled":true,"id":5382,"distro_target":"sle-15-s390x","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP4/s390x/update/","installer_updates":false,"name":"SLE-Module-Packagehub-Subpackages15-SP4-Updates","description":"SLE-Module-Packagehub-Subpackages15-SP4-Updates for sle-15-s390x"},{"name":"SLE-Module-Packagehub-Subpackages15-SP4-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-Packagehub-Subpackages15-SP4-Debuginfo-Updates for sle-15-s390x","id":5383,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP4/s390x/update_debug/","autorefresh":true,"distro_target":"sle-15-s390x"},{"url":"https://updates.suse.com/SUSE/Backports/SLE-15-SP4_s390x/product/","autorefresh":false,"distro_target":"sle-15-s390x","id":5384,"enabled":true,"description":"SUSE-PackageHub-15-SP4-Pool for sle-15-s390x","name":"SUSE-PackageHub-15-SP4-Pool","installer_updates":false},{"description":"SLE-Module-Packagehub-Subpackages15-SP4-Pool for sle-15-s390x","name":"SLE-Module-Packagehub-Subpackages15-SP4-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP4/s390x/product/","autorefresh":false,"distro_target":"sle-15-s390x","id":5385,"enabled":true},{"enabled":false,"id":5386,"distro_target":"sle-15-s390x","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP4/s390x/product_debug/","installer_updates":false,"name":"SLE-Module-Packagehub-Subpackages15-SP4-Debuginfo-Pool","description":"SLE-Module-Packagehub-Subpackages15-SP4-Debuginfo-Pool for sle-15-s390x"},{"autorefresh":false,"distro_target":"sle-15-s390x","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP4/s390x/product_source/","enabled":false,"id":5387,"description":"SLE-Module-Packagehub-Subpackages15-SP4-Source-Pool for sle-15-s390x","name":"SLE-Module-Packagehub-Subpackages15-SP4-Source-Pool","installer_updates":false}],"product_class":"MODULE"}],"identifier":"SLE-Micro","release_stage":"released","id":2573,"friendly_version":"5.4","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Micro","former_identifier":"SLE-Micro","release_type":null,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Micro 5.4 s390x","recommended":false,"version":"5.4","product_type":"base","cpe":"cpe:/o:suse:sle-micro:5.4","predecessor_ids":[2287,2400,2427],"repositories":[{"enabled":true,"id":6145,"autorefresh":true,"distro_target":"sle-15-s390x","url":"https://updates.suse.com/SUSE/Updates/SLE-Micro/5.4/s390x/update/","name":"SLE-Micro-5.4-Updates","installer_updates":false,"description":"SLE-Micro-5.4-Updates for sle-15-s390x"},{"autorefresh":true,"distro_target":"sle-15-s390x","url":"https://updates.suse.com/SUSE/Updates/SLE-Micro/5.4/s390x/update_debug/","enabled":false,"id":6146,"description":"SLE-Micro-5.4-Debuginfo-Updates for sle-15-s390x","name":"SLE-Micro-5.4-Debuginfo-Updates","installer_updates":false},{"description":"SLE-Micro-5.4-Pool for sle-15-s390x","installer_updates":false,"name":"SLE-Micro-5.4-Pool","url":"https://updates.suse.com/SUSE/Products/SLE-Micro/5.4/s390x/product/","distro_target":"sle-15-s390x","autorefresh":false,"id":6147,"enabled":true},{"description":"SLE-Micro-5.4-Debuginfo-Pool for sle-15-s390x","name":"SLE-Micro-5.4-Debuginfo-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-15-s390x","url":"https://updates.suse.com/SUSE/Products/SLE-Micro/5.4/s390x/product_debug/","enabled":false,"id":6148},{"name":"SLE-Micro-5.4-Source-Pool","installer_updates":false,"description":"SLE-Micro-5.4-Source-Pool for sle-15-s390x","id":6149,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Micro/5.4/s390x/product_source/","autorefresh":false,"distro_target":"sle-15-s390x"}],"online_predecessor_ids":[2287,2400,2427],"product_class":"MICROOS-Z","eula_url":"","arch":"s390x","free":false,"description":"SUSE Linux Enterprise Micro 5.4","shortname":"SUSE Linux Enterprise Micro"},{"product_class":"MICROOS-X86","online_predecessor_ids":[2283,2401,2428],"repositories":[{"description":"SLE-Micro-5.4-Updates for sle-15-x86_64","installer_updates":false,"name":"SLE-Micro-5.4-Updates","url":"https://updates.suse.com/SUSE/Updates/SLE-Micro/5.4/x86_64/update/","distro_target":"sle-15-x86_64","autorefresh":true,"id":6150,"enabled":true},{"enabled":false,"id":6151,"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Micro/5.4/x86_64/update_debug/","name":"SLE-Micro-5.4-Debuginfo-Updates","installer_updates":false,"description":"SLE-Micro-5.4-Debuginfo-Updates for sle-15-x86_64"},{"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Micro/5.4/x86_64/product/","enabled":true,"id":6152,"description":"SLE-Micro-5.4-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Micro-5.4-Pool"},{"enabled":false,"id":6153,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Micro/5.4/x86_64/product_debug/","name":"SLE-Micro-5.4-Debuginfo-Pool","installer_updates":false,"description":"SLE-Micro-5.4-Debuginfo-Pool for sle-15-x86_64"},{"enabled":false,"id":6154,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Micro/5.4/x86_64/product_source/","name":"SLE-Micro-5.4-Source-Pool","installer_updates":false,"description":"SLE-Micro-5.4-Source-Pool for sle-15-x86_64"}],"predecessor_ids":[2283,2401,2428],"product_type":"base","cpe":"cpe:/o:suse:sle-micro:5.4","free":false,"description":"SUSE Linux Enterprise Micro 5.4","shortname":"SUSE Linux Enterprise Micro","arch":"x86_64","eula_url":"","friendly_version":"5.4","identifier":"SLE-Micro","release_stage":"released","id":2574,"extensions":[{"free":false,"description":"

SUSE Linux Enterprise Live Patching provides packages to update critical components in SUSE Linux Enterprise. With SUSE Linux Enterprise Live Patching, you can perform critical patching without shutting down your system, reducing the need for planned downtime and increasing service availability.

","shortname":"Live-Patching","arch":"x86_64","eula_url":"","online_predecessor_ids":[1736,1828,1984,2187],"repositories":[{"name":"SLE-Module-Live-Patching15-SP4-Updates","installer_updates":false,"description":"SLE-Module-Live-Patching15-SP4-Updates for sle-15-x86_64","enabled":true,"id":5312,"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Live-Patching/15-SP4/x86_64/update/"},{"id":5313,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Live-Patching/15-SP4/x86_64/update_debug/","distro_target":"sle-15-x86_64","autorefresh":true,"installer_updates":false,"name":"SLE-Module-Live-Patching15-SP4-Debuginfo-Updates","description":"SLE-Module-Live-Patching15-SP4-Debuginfo-Updates for sle-15-x86_64"},{"installer_updates":false,"name":"SLE-Module-Live-Patching15-SP4-Pool","description":"SLE-Module-Live-Patching15-SP4-Pool for sle-15-x86_64","enabled":true,"id":5314,"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Live-Patching/15-SP4/x86_64/product/"},{"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Live-Patching/15-SP4/x86_64/product_debug/","enabled":false,"id":5315,"description":"SLE-Module-Live-Patching15-SP4-Debuginfo-Pool for sle-15-x86_64","name":"SLE-Module-Live-Patching15-SP4-Debuginfo-Pool","installer_updates":false},{"description":"SLE-Module-Live-Patching15-SP4-Source-Pool for sle-15-x86_64","name":"SLE-Module-Live-Patching15-SP4-Source-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Live-Patching/15-SP4/x86_64/product_source/","autorefresh":false,"distro_target":"sle-15-x86_64","id":5316,"enabled":false}],"product_class":"SLE-LP","predecessor_ids":[1736,1828,1984,2187],"product_type":"extension","cpe":"cpe:/o:suse:sle-module-live-patching:15:sp4","version":"15.4","recommended":false,"release_type":null,"former_identifier":"sle-module-live-patching","friendly_name":"SUSE Linux Enterprise Live Patching 15 SP4 x86_64","migration_extra":false,"offline_predecessor_ids":[1536,1757,1888],"name":"SUSE Linux Enterprise Live Patching","friendly_version":"15 SP4","release_stage":"released","identifier":"sle-module-live-patching","id":2334,"extensions":[]},{"product_class":"MODULE","online_predecessor_ids":[1743,1871,1950,2191],"repositories":[{"installer_updates":false,"name":"SUSE-PackageHub-15-SP4-Backports-Pool","description":"SUSE-PackageHub-15-SP4-Backports-Pool for sle-15-x86_64","enabled":true,"id":5388,"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Backports/SLE-15-SP4_x86_64/standard/"},{"id":5389,"enabled":false,"url":"https://updates.suse.com/SUSE/Backports/SLE-15-SP4_x86_64/standard_debug/","autorefresh":true,"distro_target":"sle-15-x86_64","name":"SUSE-PackageHub-15-SP4-Backports-Debuginfo","installer_updates":false,"description":"SUSE-PackageHub-15-SP4-Backports-Debuginfo for sle-15-x86_64"},{"name":"SLE-Module-Packagehub-Subpackages15-SP4-Updates","installer_updates":false,"description":"SLE-Module-Packagehub-Subpackages15-SP4-Updates for sle-15-x86_64","id":5390,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP4/x86_64/update/","autorefresh":true,"distro_target":"sle-15-x86_64"},{"installer_updates":false,"name":"SLE-Module-Packagehub-Subpackages15-SP4-Debuginfo-Updates","description":"SLE-Module-Packagehub-Subpackages15-SP4-Debuginfo-Updates for sle-15-x86_64","enabled":false,"id":5391,"distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP4/x86_64/update_debug/"},{"url":"https://updates.suse.com/SUSE/Backports/SLE-15-SP4_x86_64/product/","distro_target":"sle-15-x86_64","autorefresh":false,"id":5392,"enabled":true,"description":"SUSE-PackageHub-15-SP4-Pool for sle-15-x86_64","installer_updates":false,"name":"SUSE-PackageHub-15-SP4-Pool"},{"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP4/x86_64/product/","enabled":true,"id":5393,"description":"SLE-Module-Packagehub-Subpackages15-SP4-Pool for sle-15-x86_64","name":"SLE-Module-Packagehub-Subpackages15-SP4-Pool","installer_updates":false},{"id":5394,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP4/x86_64/product_debug/","autorefresh":false,"distro_target":"sle-15-x86_64","name":"SLE-Module-Packagehub-Subpackages15-SP4-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-Packagehub-Subpackages15-SP4-Debuginfo-Pool for sle-15-x86_64"},{"description":"SLE-Module-Packagehub-Subpackages15-SP4-Source-Pool for sle-15-x86_64","name":"SLE-Module-Packagehub-Subpackages15-SP4-Source-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP4/x86_64/product_source/","enabled":false,"id":5395}],"predecessor_ids":[1743,1871,1950,2191],"product_type":"module","cpe":"cpe:/o:suse:packagehub:15:sp4","free":true,"shortname":"SUSE-PackageHub-15","description":"SUSE Package Hub is a free of charge module providing access to community maintained packages built to run on SUSE Linux Enterprise Server. Built from the same sources used in the openSUSE distributions, these quality packages provide additional software to what is found in the SUSE Linux Enterprise Server product. Packages from the Package Hub are delivered without L3 support from SUSE. General updates and fixes to the packages in SUSE Package Hub are provided by the openSUSE community based on their discretion, though SUSE will monitor and ensure that any known critical security issues will be addressed. Packages in the Package Hub are approved by SUSE for use with SUSE Linux Enterprise Server 15-SP4 and to not interfere with the supportability of SUSE Linux Enterprise Server, its modules and extensions. For more information about SUSE Package Hub please visit https://packagehub.suse.com.","arch":"x86_64","eula_url":"","friendly_version":"15 SP4","release_stage":"released","identifier":"PackageHub","id":2347,"extensions":[],"version":"15.4","recommended":false,"former_identifier":"PackageHub","release_type":null,"friendly_name":"SUSE Package Hub 15 SP4 x86_64","migration_extra":false,"offline_predecessor_ids":[1529,1813,1915],"name":"SUSE Package Hub"}],"version":"5.4","recommended":false,"release_type":null,"former_identifier":"SLE-Micro","friendly_name":"SUSE Linux Enterprise Micro 5.4 x86_64","migration_extra":false,"offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Micro"},{"offline_predecessor_ids":[],"name":"NeuVector","release_type":null,"former_identifier":"neuvector","migration_extra":false,"friendly_name":"NeuVector 5.1.0","recommended":false,"version":"5.1.0","extensions":[],"id":2575,"release_stage":"released","identifier":"neuvector","friendly_version":"5.1.0","eula_url":"","arch":null,"free":false,"description":null,"shortname":"NV","product_type":"base","cpe":"cpe:/o:suse:neuvector:5.1.0","predecessor_ids":[],"online_predecessor_ids":[],"product_class":"NEUVECTOR","repositories":[]},{"former_identifier":"rancher","release_type":null,"migration_extra":false,"friendly_name":"SUSE Rancher 2.7.1","offline_predecessor_ids":[],"name":"SUSE Rancher","version":"2.7.1","recommended":false,"id":2576,"release_stage":"released","identifier":"rancher","extensions":[],"friendly_version":"2.7.1","arch":null,"eula_url":"","free":false,"description":null,"shortname":"Rancher","product_type":"base","cpe":"cpe:/o:suse:rancher:2.7.1","online_predecessor_ids":[],"repositories":[],"product_class":"RANCHER-X86","predecessor_ids":[]},{"description":null,"shortname":"Rancher","free":false,"eula_url":"","arch":null,"predecessor_ids":[],"online_predecessor_ids":[],"product_class":"RANCHER-X86","repositories":[],"cpe":"cpe:/o:suse:rancher:2.6.10","product_type":"base","recommended":false,"version":"2.6.10","name":"SUSE Rancher","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"SUSE Rancher 2.6.10","release_type":null,"former_identifier":"rancher","friendly_version":"2.6.10","extensions":[],"release_stage":"released","identifier":"rancher","id":2577},{"product_type":"base","cpe":"cpe:/o:suse:rancher:2.5.17","product_class":"RANCHER-X86","online_predecessor_ids":[],"repositories":[],"predecessor_ids":[],"arch":null,"eula_url":"","free":false,"shortname":"Rancher","description":null,"release_stage":"released","identifier":"rancher","id":2578,"extensions":[],"friendly_version":"2.5.17","former_identifier":"rancher","release_type":null,"friendly_name":"SUSE Rancher 2.5.17","migration_extra":false,"offline_predecessor_ids":[],"name":"SUSE Rancher","version":"2.5.17","recommended":false},{"product_type":"base","cpe":"cpe:/o:suse:longhorn:1.4.0","online_predecessor_ids":[],"product_class":"LONGHORN-X86","repositories":[],"predecessor_ids":[],"arch":null,"eula_url":"","free":false,"shortname":"Longhorn","description":null,"release_stage":"released","identifier":"longhorn","id":2579,"extensions":[],"friendly_version":"1.4.0","release_type":null,"former_identifier":"longhorn","migration_extra":false,"friendly_name":"SUSE Longhorn 1.4.0","offline_predecessor_ids":[],"name":"SUSE Longhorn","version":"1.4.0","recommended":false},{"offline_predecessor_ids":[],"name":"SUSE Longhorn","release_type":null,"former_identifier":"longhorn","friendly_name":"SUSE Longhorn 1.3.2","migration_extra":false,"recommended":false,"version":"1.3.2","extensions":[],"release_stage":"released","identifier":"longhorn","id":2580,"friendly_version":"1.3.2","eula_url":"","arch":null,"free":false,"description":null,"shortname":"Longhorn","product_type":"base","cpe":"cpe:/o:suse:longhorn:1.3.2","predecessor_ids":[],"online_predecessor_ids":[],"repositories":[],"product_class":"LONGHORN-X86"},{"release_stage":"released","identifier":"neuvector","id":2581,"extensions":[],"friendly_version":"5.1.1","former_identifier":"neuvector","release_type":null,"migration_extra":false,"friendly_name":"NeuVector 5.1.1","offline_predecessor_ids":[],"name":"NeuVector","version":"5.1.1","recommended":false,"product_type":"base","cpe":"cpe:/o:suse:neuvector:5.1.1","repositories":[],"online_predecessor_ids":[],"product_class":"NEUVECTOR","predecessor_ids":[],"arch":null,"eula_url":"","free":false,"description":null,"shortname":"NV"},{"arch":"x86_64","eula_url":"https://updates.suse.com/SUSE/Products/SLE-Product-RT/15-SP5/x86_64/product.license/","free":false,"shortname":"SLE-15-SP5-RT","description":"

The SUSE Linux Enterprise Real Time aims to reduce the latency and increase the predictability and reliability of time-sensitive mission-critical applications.

","product_type":"base","cpe":"cpe:/o:suse:sle_rt:15:sp5","online_predecessor_ids":[2421],"repositories":[{"id":6171,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-RT/15-SP5/x86_64/update/","autorefresh":true,"distro_target":"sle-15-x86_64","name":"SLE-Product-RT-15-SP5-Updates","installer_updates":false,"description":"SLE-Product-RT-15-SP5-Updates for sle-15-x86_64"},{"installer_updates":false,"name":"SLE-Product-RT15-SP5-Debuginfo-Updates","description":"SLE-Product-RT15-SP5-Debuginfo-Updates for sle-15-x86_64","id":6172,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Product-RT/15-SP5/x86_64/update_debug/","distro_target":"sle-15-x86_64","autorefresh":true},{"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Product-RT/15-SP5/x86_64/product/","enabled":true,"id":6173,"description":"SLE-Product-RT-15-SP5-Pool for sle-15-x86_64","name":"SLE-Product-RT-15-SP5-Pool","installer_updates":false},{"enabled":false,"id":6174,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Product-RT/15-SP5/x86_64/product_debug/","name":"SLE-Product-RT15-SP5-Debuginfo-Pool","installer_updates":false,"description":"SLE-Product-RT15-SP5-Debuginfo-Pool for sle-15-x86_64"},{"enabled":false,"id":6175,"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Product-RT/15-SP5/x86_64/product_source/","installer_updates":false,"name":"SLE-Product-RT15-SP5-Source-Pool","description":"SLE-Product-RT15-SP5-Source-Pool for sle-15-x86_64"}],"product_class":"SUSE_RT-BETA","predecessor_ids":[2421],"former_identifier":"SLE_RT","release_type":null,"migration_extra":false,"friendly_name":"SUSE Linux Enterprise Real Time 15 SP5 x86_64 (BETA)","offline_predecessor_ids":[],"name":"SUSE Linux Enterprise Real Time","version":"15.5","recommended":false,"release_stage":"beta","id":2582,"identifier":"SLE_RT","extensions":[{"friendly_version":"15 SP5","extensions":[{"recommended":true,"version":"15.5","name":"Desktop Applications Module","offline_predecessor_ids":[],"friendly_name":"Desktop Applications Module 15 SP5 x86_64","migration_extra":false,"release_type":null,"former_identifier":"sle-module-desktop-applications","friendly_version":"15 SP5","extensions":[{"free":true,"description":"

The Development Tools Module helps you developing applications for SUSE Linux Enterprise 15.

Access to the Development Tools Module is included in your SUSE Linux Enterprise product subscription. The module has a different lifecycle than SUSE Linux Enterprise itself.

","shortname":"Development-Tools-Module","arch":"x86_64","eula_url":"","product_class":"MODULE","online_predecessor_ids":[1579,1794,1971,2161,2315],"repositories":[{"enabled":true,"id":5788,"distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15-SP5/x86_64/update/","installer_updates":false,"name":"SLE-Module-DevTools15-SP5-Updates","description":"SLE-Module-DevTools15-SP5-Updates for sle-15-x86_64"},{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15-SP5/x86_64/update_debug/","distro_target":"sle-15-x86_64","autorefresh":true,"id":5789,"enabled":false,"description":"SLE-Module-DevTools15-SP5-Debuginfo-Updates for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-DevTools15-SP5-Debuginfo-Updates"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP5/x86_64/product/","autorefresh":false,"distro_target":"sle-15-x86_64","id":5790,"enabled":true,"description":"SLE-Module-DevTools15-SP5-Pool for sle-15-x86_64","name":"SLE-Module-DevTools15-SP5-Pool","installer_updates":false},{"description":"SLE-Module-DevTools15-SP5-Debuginfo-Pool for sle-15-x86_64","name":"SLE-Module-DevTools15-SP5-Debuginfo-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP5/x86_64/product_debug/","autorefresh":false,"distro_target":"sle-15-x86_64","id":5791,"enabled":false},{"name":"SLE-Module-DevTools15-SP5-Source-Pool","installer_updates":false,"description":"SLE-Module-DevTools15-SP5-Source-Pool for sle-15-x86_64","id":5792,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP5/x86_64/product_source/","autorefresh":false,"distro_target":"sle-15-x86_64"}],"predecessor_ids":[1579,1794,1971,2161,2315],"product_type":"module","cpe":"cpe:/o:suse:sle-module-development-tools:15:sp5","version":"15.5","recommended":true,"former_identifier":"sle-sdk","release_type":null,"migration_extra":false,"friendly_name":"Development Tools Module 15 SP5 x86_64","offline_predecessor_ids":[1341,1427,1630,1892],"name":"Development Tools Module","friendly_version":"15 SP5","release_stage":"released","id":2490,"identifier":"sle-module-development-tools","extensions":[]}],"identifier":"sle-module-desktop-applications","release_stage":"released","id":2478,"shortname":"Desktop-Applications-Module","description":"

The SUSE Linux Enterprise Desktop Applications Module delivers a basic set of Desktop functionality.

Access to the Desktop Applications Module is included in your SUSE Linux Enterprise product subscription.

","free":true,"eula_url":"","arch":"x86_64","predecessor_ids":[1578,1776,1967,2149,2303],"online_predecessor_ids":[1578,1776,1967,2149,2303],"repositories":[{"description":"SLE-Module-Desktop-Applications15-SP5-Updates for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Desktop-Applications15-SP5-Updates","distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15-SP5/x86_64/update/","enabled":true,"id":5728},{"id":5729,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15-SP5/x86_64/update_debug/","distro_target":"sle-15-x86_64","autorefresh":true,"installer_updates":false,"name":"SLE-Module-Desktop-Applications15-SP5-Debuginfo-Updates","description":"SLE-Module-Desktop-Applications15-SP5-Debuginfo-Updates for sle-15-x86_64"},{"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP5/x86_64/product/","enabled":true,"id":5730,"description":"SLE-Module-Desktop-Applications15-SP5-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Desktop-Applications15-SP5-Pool"},{"name":"SLE-Module-Desktop-Applications15-SP5-Debuginfo-Pool","installer_updates":false,"description":"SLE-Module-Desktop-Applications15-SP5-Debuginfo-Pool for sle-15-x86_64","enabled":false,"id":5731,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP5/x86_64/product_debug/"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP5/x86_64/product_source/","distro_target":"sle-15-x86_64","autorefresh":false,"id":5732,"enabled":false,"description":"SLE-Module-Desktop-Applications15-SP5-Source-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Desktop-Applications15-SP5-Source-Pool"}],"product_class":"MODULE","cpe":"cpe:/o:suse:sle-module-desktop-applications:15:sp5","product_type":"module"},{"description":"

The SUSE Linux Enterprise Server Applications Module delivers a basic set of Server functionality.

Access to the Server Applications Module is included in your SUSE Linux Enterprise Server subscription.

","shortname":"Server-Applications-Module","free":true,"arch":"x86_64","eula_url":"","product_class":"MODULE","online_predecessor_ids":[1580,1780,1955,2153,2307],"repositories":[{"id":5748,"enabled":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15-SP5/x86_64/update/","distro_target":"sle-15-x86_64","autorefresh":true,"installer_updates":false,"name":"SLE-Module-Server-Applications15-SP5-Updates","description":"SLE-Module-Server-Applications15-SP5-Updates for sle-15-x86_64"},{"enabled":false,"id":5749,"distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15-SP5/x86_64/update_debug/","installer_updates":false,"name":"SLE-Module-Server-Applications15-SP5-Debuginfo-Updates","description":"SLE-Module-Server-Applications15-SP5-Debuginfo-Updates for sle-15-x86_64"},{"installer_updates":false,"name":"SLE-Module-Server-Applications15-SP5-Pool","description":"SLE-Module-Server-Applications15-SP5-Pool for sle-15-x86_64","enabled":true,"id":5750,"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP5/x86_64/product/"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP5/x86_64/product_debug/","autorefresh":false,"distro_target":"sle-15-x86_64","id":5751,"enabled":false,"description":"SLE-Module-Server-Applications15-SP5-Debuginfo-Pool for sle-15-x86_64","name":"SLE-Module-Server-Applications15-SP5-Debuginfo-Pool","installer_updates":false},{"name":"SLE-Module-Server-Applications15-SP5-Source-Pool","installer_updates":false,"description":"SLE-Module-Server-Applications15-SP5-Source-Pool for sle-15-x86_64","id":5752,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP5/x86_64/product_source/","autorefresh":false,"distro_target":"sle-15-x86_64"}],"predecessor_ids":[1580,1780,1955,2153,2307],"cpe":"cpe:/o:suse:sle-module-server-applications:15:sp5","product_type":"module","version":"15.5","recommended":true,"friendly_name":"Server Applications Module 15 SP5 x86_64","migration_extra":false,"release_type":null,"former_identifier":"sle-module-server-applications","name":"Server Applications Module","offline_predecessor_ids":[],"friendly_version":"15 SP5","id":2482,"release_stage":"released","identifier":"sle-module-server-applications","extensions":[{"product_type":"module","cpe":"cpe:/o:suse:sle-module-rt:15:sp5","predecessor_ids":[2422],"online_predecessor_ids":[2422],"product_class":"MODULE","repositories":[{"description":"SLE-Module-RT15-SP5-Updates for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-RT15-SP5-Updates","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-RT/15-SP5/x86_64/update/","distro_target":"sle-15-x86_64","autorefresh":true,"id":6176,"enabled":true},{"description":"SLE-Module-RT15-SP5-Debuginfo-Updates for sle-15-x86_64","name":"SLE-Module-RT15-SP5-Debuginfo-Updates","installer_updates":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-RT/15-SP5/x86_64/update_debug/","autorefresh":true,"distro_target":"sle-15-x86_64","id":6177,"enabled":false},{"installer_updates":false,"name":"SLE-Module-RT15-SP5-Pool","description":"SLE-Module-RT15-SP5-Pool for sle-15-x86_64","enabled":true,"id":6178,"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-RT/15-SP5/x86_64/product/"},{"enabled":false,"id":6179,"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-RT/15-SP5/x86_64/product_debug/","installer_updates":false,"name":"SLE-Module-RT15-SP5-Debuginfo-Pool","description":"SLE-Module-RT15-SP5-Debuginfo-Pool for sle-15-x86_64"},{"enabled":false,"id":6180,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-RT/15-SP5/x86_64/product_source/","name":"SLE-Module-RT15-SP5-Source-Pool","installer_updates":false,"description":"SLE-Module-RT15-SP5-Source-Pool for sle-15-x86_64"}],"eula_url":"","arch":"x86_64","free":true,"description":"

The SUSE Linux Enterprise Real Time aims to reduce the latency and increase the predictability and reliability of time-sensitive mission-critical applications.

Packages in this module are generally supported until a newer version of the package is released or the package is dropped from the module.

","shortname":"SUSE-Real-Time-Module","extensions":[],"identifier":"sle-module-rt","release_stage":"released","id":2583,"friendly_version":"15 SP5","offline_predecessor_ids":[],"name":"SUSE Real Time Module","former_identifier":"sle-module-rt","release_type":null,"friendly_name":"SUSE Real Time Module 15 SP5 x86_64","migration_extra":false,"recommended":true,"version":"15.5"}]},{"id":2486,"release_stage":"released","identifier":"sle-module-containers","extensions":[],"friendly_version":"15 SP5","former_identifier":"sle-module-containers","release_type":null,"migration_extra":false,"friendly_name":"Containers Module 15 SP5 x86_64","offline_predecessor_ids":[1332],"name":"Containers Module","version":"15.5","recommended":false,"product_type":"module","cpe":"cpe:/o:suse:sle-module-containers:15:sp5","repositories":[{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/15-SP5/x86_64/update/","autorefresh":true,"distro_target":"sle-15-x86_64","id":5768,"enabled":true,"description":"SLE-Module-Containers15-SP5-Updates for sle-15-x86_64","name":"SLE-Module-Containers15-SP5-Updates","installer_updates":false},{"description":"SLE-Module-Containers15-SP5-Debuginfo-Updates for sle-15-x86_64","name":"SLE-Module-Containers15-SP5-Debuginfo-Updates","installer_updates":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/15-SP5/x86_64/update_debug/","autorefresh":true,"distro_target":"sle-15-x86_64","id":5769,"enabled":false},{"description":"SLE-Module-Containers15-SP5-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Containers15-SP5-Pool","distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP5/x86_64/product/","enabled":true,"id":5770},{"id":5771,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP5/x86_64/product_debug/","distro_target":"sle-15-x86_64","autorefresh":false,"installer_updates":false,"name":"SLE-Module-Containers15-SP5-Debuginfo-Pool","description":"SLE-Module-Containers15-SP5-Debuginfo-Pool for sle-15-x86_64"},{"installer_updates":false,"name":"SLE-Module-Containers15-SP5-Source-Pool","description":"SLE-Module-Containers15-SP5-Source-Pool for sle-15-x86_64","enabled":false,"id":5772,"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP5/x86_64/product_source/"}],"online_predecessor_ids":[1642,1790,1963,2157,2311],"product_class":"MODULE","predecessor_ids":[1642,1790,1963,2157,2311],"arch":"x86_64","eula_url":"","free":true,"description":"

This Module contains several packages revolving around containers and related tools.

","shortname":"Containers-Module"},{"former_identifier":"sle-module-live-patching","release_type":null,"friendly_name":"SUSE Linux Enterprise Live Patching 15 SP5 x86_64 (BETA)","migration_extra":false,"offline_predecessor_ids":[1536,1757,1888],"name":"SUSE Linux Enterprise Live Patching","version":"15.5","recommended":false,"identifier":"sle-module-live-patching","release_stage":"beta","id":2511,"extensions":[],"friendly_version":"15 SP5","arch":"x86_64","eula_url":"","free":false,"description":"

SUSE Linux Enterprise Live Patching provides packages to update critical components in SUSE Linux Enterprise. With SUSE Linux Enterprise Live Patching, you can perform critical patching without shutting down your system, reducing the need for planned downtime and increasing service availability.

","shortname":"Live-Patching","product_type":"extension","cpe":"cpe:/o:suse:sle-module-live-patching:15:sp5","online_predecessor_ids":[1736,1828,1984,2187,2334],"repositories":[{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Live-Patching/15-SP5/x86_64/update/","autorefresh":true,"distro_target":"sle-15-x86_64","id":5893,"enabled":true,"description":"SLE-Module-Live-Patching15-SP5-Updates for sle-15-x86_64","name":"SLE-Module-Live-Patching15-SP5-Updates","installer_updates":false},{"enabled":false,"id":5894,"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Live-Patching/15-SP5/x86_64/update_debug/","name":"SLE-Module-Live-Patching15-SP5-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-Live-Patching15-SP5-Debuginfo-Updates for sle-15-x86_64"},{"installer_updates":false,"name":"SLE-Module-Live-Patching15-SP5-Pool","description":"SLE-Module-Live-Patching15-SP5-Pool for sle-15-x86_64","id":5895,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Live-Patching/15-SP5/x86_64/product/","distro_target":"sle-15-x86_64","autorefresh":false},{"description":"SLE-Module-Live-Patching15-SP5-Debuginfo-Pool for sle-15-x86_64","name":"SLE-Module-Live-Patching15-SP5-Debuginfo-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Live-Patching/15-SP5/x86_64/product_debug/","enabled":false,"id":5896},{"enabled":false,"id":5897,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Live-Patching/15-SP5/x86_64/product_source/","name":"SLE-Module-Live-Patching15-SP5-Source-Pool","installer_updates":false,"description":"SLE-Module-Live-Patching15-SP5-Source-Pool for sle-15-x86_64"}],"product_class":"SLE-LP-BETA","predecessor_ids":[1736,1828,1984,2187,2334]},{"id":2562,"release_stage":"released","identifier":"PackageHub","extensions":[],"friendly_version":"15 SP5","former_identifier":"PackageHub","release_type":null,"friendly_name":"SUSE Package Hub 15 SP5 x86_64","migration_extra":false,"offline_predecessor_ids":[1529,1813,1915],"name":"SUSE Package Hub","version":"15.5","recommended":false,"product_type":"module","cpe":"cpe:/o:suse:packagehub:15:sp5","online_predecessor_ids":[1743,1871,1950,2191,2347],"repositories":[{"enabled":true,"id":6113,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Backports/SLE-15-SP5_x86_64/standard/","name":"SUSE-PackageHub-15-SP5-Backports-Pool","installer_updates":false,"description":"SUSE-PackageHub-15-SP5-Backports-Pool for sle-15-x86_64"},{"description":"SUSE-PackageHub-15-SP5-Backports-Debuginfo for sle-15-x86_64","installer_updates":false,"name":"SUSE-PackageHub-15-SP5-Backports-Debuginfo","distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Backports/SLE-15-SP5_x86_64/standard_debug/","enabled":false,"id":6114},{"distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP5/x86_64/update/","enabled":true,"id":6115,"description":"SLE-Module-Packagehub-Subpackages15-SP5-Updates for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Packagehub-Subpackages15-SP5-Updates"},{"installer_updates":false,"name":"SLE-Module-Packagehub-Subpackages15-SP5-Debuginfo-Updates","description":"SLE-Module-Packagehub-Subpackages15-SP5-Debuginfo-Updates for sle-15-x86_64","id":6116,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP5/x86_64/update_debug/","distro_target":"sle-15-x86_64","autorefresh":true},{"name":"SUSE-PackageHub-15-SP5-Pool","installer_updates":false,"description":"SUSE-PackageHub-15-SP5-Pool for sle-15-x86_64","id":6117,"enabled":true,"url":"https://updates.suse.com/SUSE/Backports/SLE-15-SP5_x86_64/product/","autorefresh":false,"distro_target":"sle-15-x86_64"},{"enabled":true,"id":6118,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP5/x86_64/product/","name":"SLE-Module-Packagehub-Subpackages15-SP5-Pool","installer_updates":false,"description":"SLE-Module-Packagehub-Subpackages15-SP5-Pool for sle-15-x86_64"},{"installer_updates":false,"name":"SLE-Module-Packagehub-Subpackages15-SP5-Debuginfo-Pool","description":"SLE-Module-Packagehub-Subpackages15-SP5-Debuginfo-Pool for sle-15-x86_64","enabled":false,"id":6119,"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP5/x86_64/product_debug/"},{"description":"SLE-Module-Packagehub-Subpackages15-SP5-Source-Pool for sle-15-x86_64","name":"SLE-Module-Packagehub-Subpackages15-SP5-Source-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP5/x86_64/product_source/","enabled":false,"id":6120}],"product_class":"MODULE","predecessor_ids":[1743,1871,1950,2191,2347],"arch":"x86_64","eula_url":"","free":true,"description":"SUSE Package Hub is a free of charge module providing access to community maintained packages built to run on SUSE Linux Enterprise Server. Built from the same sources used in the openSUSE distributions, these quality packages provide additional software to what is found in the SUSE Linux Enterprise Server product. Packages from the Package Hub are delivered without L3 support from SUSE. General updates and fixes to the packages in SUSE Package Hub are provided by the openSUSE community based on their discretion, though SUSE will monitor and ensure that any known critical security issues will be addressed. Packages in the Package Hub are approved by SUSE for use with SUSE Linux Enterprise Server 15-SP5 and to not interfere with the supportability of SUSE Linux Enterprise Server, its modules and extensions. For more information about SUSE Package Hub please visit https://packagehub.suse.com.","shortname":"SUSE-PackageHub-15"}],"release_stage":"released","id":2474,"identifier":"sle-module-basesystem","recommended":true,"version":"15.5","offline_predecessor_ids":[1212,1368,1440],"name":"Basesystem Module","former_identifier":"sle-module-basesystem","release_type":null,"migration_extra":false,"friendly_name":"Basesystem Module 15 SP5 x86_64","predecessor_ids":[1576,1772,1946,2145,2299],"repositories":[{"enabled":true,"id":5708,"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15-SP5/x86_64/update/","name":"SLE-Module-Basesystem15-SP5-Updates","installer_updates":false,"description":"SLE-Module-Basesystem15-SP5-Updates for sle-15-x86_64"},{"description":"SLE-Module-Basesystem15-SP5-Debuginfo-Updates for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Basesystem15-SP5-Debuginfo-Updates","distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15-SP5/x86_64/update_debug/","enabled":false,"id":5709},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP5/x86_64/product/","distro_target":"sle-15-x86_64","autorefresh":false,"id":5710,"enabled":true,"description":"SLE-Module-Basesystem15-SP5-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Basesystem15-SP5-Pool"},{"enabled":false,"id":5711,"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP5/x86_64/product_debug/","installer_updates":false,"name":"SLE-Module-Basesystem15-SP5-Debuginfo-Pool","description":"SLE-Module-Basesystem15-SP5-Debuginfo-Pool for sle-15-x86_64"},{"description":"SLE-Module-Basesystem15-SP5-Source-Pool for sle-15-x86_64","name":"SLE-Module-Basesystem15-SP5-Source-Pool","installer_updates":false,"autorefresh":false,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP5/x86_64/product_source/","enabled":false,"id":5712}],"online_predecessor_ids":[1576,1772,1946,2145,2299],"product_class":"MODULE","product_type":"module","cpe":"cpe:/o:suse:sle-module-basesystem:15:sp5","free":true,"description":"

The SUSE Linux Enterprise Basesystem Module delivers the base system of the product.

","shortname":"Basesystem-Module","eula_url":"","arch":"x86_64"},{"friendly_version":"15 SP5","release_stage":"released","identifier":"sle-module-certifications","id":2558,"extensions":[],"version":"15.5","recommended":false,"release_type":null,"former_identifier":"sle-module-certifications","friendly_name":"Certifications Module 15 SP5 x86_64","migration_extra":false,"offline_predecessor_ids":[],"name":"Certifications Module","online_predecessor_ids":[2393],"product_class":"MODULE","repositories":[{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Certifications/15-SP5/x86_64/update/","distro_target":"sle-15-x86_64","autorefresh":true,"id":6080,"enabled":true,"description":"SLE-Module-Certifications-15-SP5-Updates for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Certifications-15-SP5-Updates"},{"enabled":false,"id":6081,"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-Certifications/15-SP5/x86_64/update_debug/","name":"SLE-Module-Certifications-15-SP5-Debuginfo-Updates","installer_updates":false,"description":"SLE-Module-Certifications-15-SP5-Debuginfo-Updates for sle-15-x86_64"},{"description":"SLE-Module-Certifications-15-SP5-Pool for sle-15-x86_64","name":"SLE-Module-Certifications-15-SP5-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Certifications/15-SP5/x86_64/product/","autorefresh":false,"distro_target":"sle-15-x86_64","id":6082,"enabled":true},{"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Certifications/15-SP5/x86_64/product_debug/","enabled":false,"id":6083,"description":"SLE-Module-Certifications-15-SP5-Debuginfo-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Certifications-15-SP5-Debuginfo-Pool"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-Certifications/15-SP5/x86_64/product_source/","distro_target":"sle-15-x86_64","autorefresh":false,"id":6084,"enabled":false,"description":"SLE-Module-Certifications-15-SP5-Source-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-Certifications-15-SP5-Source-Pool"}],"predecessor_ids":[2393],"product_type":"module","cpe":"cpe:/o:suse:sle-module-certifications:15:sp5","free":true,"description":"

This module contains the certification packages.

Access to the Certifications Module is included in your SUSE Linux Enterprise subscription. The module has a different lifecycle than SUSE Linux Enterprise itself; please check the Release Notes for further details.

","shortname":"Certifications-Module","arch":"x86_64","eula_url":""}],"friendly_version":"15 SP5"},{"cpe":"cpe:/o:suse:sle-module-rt:15:sp5","product_type":"module","product_class":"MODULE","online_predecessor_ids":[2422],"repositories":[{"installer_updates":false,"name":"SLE-Module-RT15-SP5-Updates","description":"SLE-Module-RT15-SP5-Updates for sle-15-x86_64","enabled":true,"id":6176,"distro_target":"sle-15-x86_64","autorefresh":true,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-RT/15-SP5/x86_64/update/"},{"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-RT/15-SP5/x86_64/update_debug/","distro_target":"sle-15-x86_64","autorefresh":true,"id":6177,"enabled":false,"description":"SLE-Module-RT15-SP5-Debuginfo-Updates for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-RT15-SP5-Debuginfo-Updates"},{"id":6178,"enabled":true,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-RT/15-SP5/x86_64/product/","distro_target":"sle-15-x86_64","autorefresh":false,"installer_updates":false,"name":"SLE-Module-RT15-SP5-Pool","description":"SLE-Module-RT15-SP5-Pool for sle-15-x86_64"},{"url":"https://updates.suse.com/SUSE/Products/SLE-Module-RT/15-SP5/x86_64/product_debug/","autorefresh":false,"distro_target":"sle-15-x86_64","id":6179,"enabled":false,"description":"SLE-Module-RT15-SP5-Debuginfo-Pool for sle-15-x86_64","name":"SLE-Module-RT15-SP5-Debuginfo-Pool","installer_updates":false},{"id":6180,"enabled":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-RT/15-SP5/x86_64/product_source/","autorefresh":false,"distro_target":"sle-15-x86_64","name":"SLE-Module-RT15-SP5-Source-Pool","installer_updates":false,"description":"SLE-Module-RT15-SP5-Source-Pool for sle-15-x86_64"}],"predecessor_ids":[2422],"arch":"x86_64","eula_url":"","shortname":"SUSE-Real-Time-Module","description":"

The SUSE Linux Enterprise Real Time aims to reduce the latency and increase the predictability and reliability of time-sensitive mission-critical applications.

Packages in this module are generally supported until a newer version of the package is released or the package is dropped from the module.

","free":true,"release_stage":"released","id":2583,"identifier":"sle-module-rt","extensions":[],"friendly_version":"15 SP5","migration_extra":false,"friendly_name":"SUSE Real Time Module 15 SP5 x86_64","former_identifier":"sle-module-rt","release_type":null,"name":"SUSE Real Time Module","offline_predecessor_ids":[],"version":"15.5","recommended":false},{"arch":null,"eula_url":"","description":null,"shortname":"NV","free":false,"cpe":"cpe:/o:suse:neuvector:5.0.6","product_type":"base","product_class":"NEUVECTOR","online_predecessor_ids":[],"repositories":[],"predecessor_ids":[],"friendly_name":"NeuVector 5.0.6","migration_extra":false,"former_identifier":"neuvector","release_type":null,"name":"NeuVector","offline_predecessor_ids":[],"version":"5.0.6","recommended":false,"release_stage":"released","id":2584,"identifier":"neuvector","extensions":[],"friendly_version":"5.0.6"},{"friendly_name":"openSUSE Leap 15.5 aarch64 (BETA)","migration_extra":false,"release_type":null,"former_identifier":"Leap","name":"openSUSE Leap","offline_predecessor_ids":[],"version":"15.5","recommended":false,"release_stage":"beta","identifier":"Leap","id":2585,"extensions":[],"friendly_version":"15.5","arch":"aarch64","eula_url":"","description":"openSUSE Leap 15.5.","shortname":"openSUSE Leap","free":false,"cpe":"cpe:/o:opensuse:leap:15.5","product_type":"base","repositories":[{"url":"http://download.opensuse.org/update/leap/15.5/oss/","distro_target":null,"autorefresh":true,"id":6189,"enabled":true,"description":"openSUSE-Leap-15.5-Updates","installer_updates":false,"name":"openSUSE-Leap-15.5-Updates"},{"description":"openSUSE-Leap-15.5-NonOss-Updates","name":"openSUSE-Leap-15.5-NonOss-Updates","installer_updates":false,"url":"http://download.opensuse.org/update/leap/15.5/non-oss/","autorefresh":true,"distro_target":null,"id":6190,"enabled":false},{"enabled":true,"id":6193,"autorefresh":false,"distro_target":null,"url":"http://download.opensuse.org/distribution/leap/15.5/repo/oss/","name":"openSUSE-Leap-15.5-Pool","installer_updates":false,"description":"openSUSE-Leap-15.5-Pool"},{"description":"openSUSE-Leap-15.5-NonOss-Pool","name":"openSUSE-Leap-15.5-NonOss-Pool","installer_updates":false,"autorefresh":false,"distro_target":null,"url":"http://download.opensuse.org/distribution/leap/15.5/repo/non-oss/","enabled":false,"id":6194},{"name":"openSUSE-SLE-15.5-Updates","installer_updates":false,"description":"openSUSE-SLE-15.5-Updates","id":6197,"enabled":true,"url":"http://download.opensuse.org/update/leap/15.5/sle/","autorefresh":true,"distro_target":null},{"description":"openSUSE-Backports-15.5-Updates","installer_updates":false,"name":"openSUSE-Backports-15.5-Updates","url":"http://download.opensuse.org/update/leap/15.5/backports/","distro_target":null,"autorefresh":true,"id":6198,"enabled":true}],"online_predecessor_ids":[2406],"product_class":"OPENSUSE-BETA","predecessor_ids":[2406]},{"recommended":false,"version":"15.5","name":"openSUSE Leap","offline_predecessor_ids":[],"migration_extra":false,"friendly_name":"openSUSE Leap 15.5 ppc64le (BETA)","former_identifier":"Leap","release_type":null,"friendly_version":"15.5","extensions":[],"id":2586,"release_stage":"beta","identifier":"Leap","description":"openSUSE Leap 15.5.","shortname":"openSUSE Leap","free":false,"eula_url":"","arch":"ppc64le","predecessor_ids":[2407],"product_class":"OPENSUSE-BETA","online_predecessor_ids":[2407],"repositories":[{"autorefresh":true,"distro_target":null,"url":"http://download.opensuse.org/update/leap/15.5/oss/","enabled":true,"id":6189,"description":"openSUSE-Leap-15.5-Updates","name":"openSUSE-Leap-15.5-Updates","installer_updates":false},{"name":"openSUSE-Leap-15.5-NonOss-Updates","installer_updates":false,"description":"openSUSE-Leap-15.5-NonOss-Updates","id":6190,"enabled":false,"url":"http://download.opensuse.org/update/leap/15.5/non-oss/","autorefresh":true,"distro_target":null},{"installer_updates":false,"name":"openSUSE-Leap-15.5-Pool","description":"openSUSE-Leap-15.5-Pool","id":6193,"enabled":true,"url":"http://download.opensuse.org/distribution/leap/15.5/repo/oss/","distro_target":null,"autorefresh":false},{"id":6194,"enabled":false,"url":"http://download.opensuse.org/distribution/leap/15.5/repo/non-oss/","autorefresh":false,"distro_target":null,"name":"openSUSE-Leap-15.5-NonOss-Pool","installer_updates":false,"description":"openSUSE-Leap-15.5-NonOss-Pool"},{"distro_target":null,"autorefresh":true,"url":"http://download.opensuse.org/update/leap/15.5/sle/","enabled":true,"id":6197,"description":"openSUSE-SLE-15.5-Updates","installer_updates":false,"name":"openSUSE-SLE-15.5-Updates"},{"description":"openSUSE-Backports-15.5-Updates","installer_updates":false,"name":"openSUSE-Backports-15.5-Updates","url":"http://download.opensuse.org/update/leap/15.5/backports/","distro_target":null,"autorefresh":true,"id":6198,"enabled":true}],"cpe":"cpe:/o:opensuse:leap:15.5","product_type":"base"},{"product_class":"OPENSUSE-BETA","online_predecessor_ids":[2408],"repositories":[{"distro_target":null,"autorefresh":true,"url":"http://download.opensuse.org/update/leap/15.5/oss/","enabled":true,"id":6189,"description":"openSUSE-Leap-15.5-Updates","installer_updates":false,"name":"openSUSE-Leap-15.5-Updates"},{"installer_updates":false,"name":"openSUSE-Leap-15.5-NonOss-Updates","description":"openSUSE-Leap-15.5-NonOss-Updates","enabled":false,"id":6190,"distro_target":null,"autorefresh":true,"url":"http://download.opensuse.org/update/leap/15.5/non-oss/"},{"description":"openSUSE-Leap-15.5-Pool","name":"openSUSE-Leap-15.5-Pool","installer_updates":false,"autorefresh":false,"distro_target":null,"url":"http://download.opensuse.org/distribution/leap/15.5/repo/oss/","enabled":true,"id":6193},{"enabled":false,"id":6194,"distro_target":null,"autorefresh":false,"url":"http://download.opensuse.org/distribution/leap/15.5/repo/non-oss/","installer_updates":false,"name":"openSUSE-Leap-15.5-NonOss-Pool","description":"openSUSE-Leap-15.5-NonOss-Pool"},{"name":"openSUSE-SLE-15.5-Updates","installer_updates":false,"description":"openSUSE-SLE-15.5-Updates","enabled":true,"id":6197,"autorefresh":true,"distro_target":null,"url":"http://download.opensuse.org/update/leap/15.5/sle/"},{"autorefresh":true,"distro_target":null,"url":"http://download.opensuse.org/update/leap/15.5/backports/","enabled":true,"id":6198,"description":"openSUSE-Backports-15.5-Updates","name":"openSUSE-Backports-15.5-Updates","installer_updates":false}],"predecessor_ids":[2408],"product_type":"base","cpe":"cpe:/o:opensuse:leap:15.5","free":false,"shortname":"openSUSE Leap","description":"openSUSE Leap 15.5.","arch":"s390x","eula_url":"","friendly_version":"15.5","release_stage":"beta","identifier":"Leap","id":2587,"extensions":[],"version":"15.5","recommended":false,"former_identifier":"Leap","release_type":null,"friendly_name":"openSUSE Leap 15.5 s390x (BETA)","migration_extra":false,"offline_predecessor_ids":[],"name":"openSUSE Leap"},{"offline_predecessor_ids":[],"name":"openSUSE Leap","former_identifier":"Leap","release_type":null,"friendly_name":"openSUSE Leap 15.5 x86_64 (BETA)","migration_extra":false,"recommended":false,"version":"15.5","extensions":[],"identifier":"Leap","release_stage":"beta","id":2588,"friendly_version":"15.5","eula_url":"","arch":"x86_64","free":false,"shortname":"openSUSE Leap","description":"openSUSE Leap 15.5.","product_type":"base","cpe":"cpe:/o:opensuse:leap:15.5","predecessor_ids":[2409],"product_class":"OPENSUSE-BETA","online_predecessor_ids":[2409],"repositories":[{"enabled":true,"id":6189,"autorefresh":true,"distro_target":null,"url":"http://download.opensuse.org/update/leap/15.5/oss/","name":"openSUSE-Leap-15.5-Updates","installer_updates":false,"description":"openSUSE-Leap-15.5-Updates"},{"url":"http://download.opensuse.org/update/leap/15.5/non-oss/","distro_target":null,"autorefresh":true,"id":6190,"enabled":false,"description":"openSUSE-Leap-15.5-NonOss-Updates","installer_updates":false,"name":"openSUSE-Leap-15.5-NonOss-Updates"},{"installer_updates":false,"name":"openSUSE-Leap-15.5-Pool","description":"openSUSE-Leap-15.5-Pool","id":6193,"enabled":true,"url":"http://download.opensuse.org/distribution/leap/15.5/repo/oss/","distro_target":null,"autorefresh":false},{"enabled":false,"id":6194,"distro_target":null,"autorefresh":false,"url":"http://download.opensuse.org/distribution/leap/15.5/repo/non-oss/","installer_updates":false,"name":"openSUSE-Leap-15.5-NonOss-Pool","description":"openSUSE-Leap-15.5-NonOss-Pool"},{"name":"openSUSE-SLE-15.5-Updates","installer_updates":false,"description":"openSUSE-SLE-15.5-Updates","enabled":true,"id":6197,"autorefresh":true,"distro_target":null,"url":"http://download.opensuse.org/update/leap/15.5/sle/"},{"id":6198,"enabled":true,"url":"http://download.opensuse.org/update/leap/15.5/backports/","distro_target":null,"autorefresh":true,"installer_updates":false,"name":"openSUSE-Backports-15.5-Updates","description":"openSUSE-Backports-15.5-Updates"}]},{"cpe":"cpe:/o:suse:sle-module-sap-business-one:15:sp5","product_type":"module","predecessor_ids":[],"online_predecessor_ids":[],"repositories":[{"autorefresh":true,"distro_target":"sle-15-x86_64","url":"https://updates.suse.com/SUSE/Updates/SLE-Module-SAP-Business-One/15-SP5/x86_64/update/","enabled":true,"id":6203,"description":"SLE-Module-SAP-Business-One15-SP5-Updates for sle-15-x86_64","name":"SLE-Module-SAP-Business-One15-SP5-Updates","installer_updates":false},{"id":6204,"enabled":false,"url":"https://updates.suse.com/SUSE/Updates/SLE-Module-SAP-Business-One/15-SP5/x86_64/update_debug/","distro_target":"sle-15-x86_64","autorefresh":true,"installer_updates":false,"name":"SLE-Module-SAP-Business-One15-SP5-Debuginfo-Updates","description":"SLE-Module-SAP-Business-One15-SP5-Debuginfo-Updates for sle-15-x86_64"},{"description":"SLE-Module-SAP-Business-One15-SP5-Pool for sle-15-x86_64","name":"SLE-Module-SAP-Business-One15-SP5-Pool","installer_updates":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-SAP-Business-One/15-SP5/x86_64/product/","autorefresh":false,"distro_target":"sle-15-x86_64","id":6205,"enabled":true},{"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-SAP-Business-One/15-SP5/x86_64/product_debug/","enabled":false,"id":6206,"description":"SLE-Module-SAP-Business-One15-SP5-Debuginfo-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-SAP-Business-One15-SP5-Debuginfo-Pool"},{"distro_target":"sle-15-x86_64","autorefresh":false,"url":"https://updates.suse.com/SUSE/Products/SLE-Module-SAP-Business-One/15-SP5/x86_64/product_source/","enabled":false,"id":6207,"description":"SLE-Module-SAP-Business-One15-SP5-Source-Pool for sle-15-x86_64","installer_updates":false,"name":"SLE-Module-SAP-Business-One15-SP5-Source-Pool"}],"product_class":"MODULE","eula_url":"","arch":"x86_64","description":"

The SAP Business One module contains the specialized tools for the installation of SAP Business One product.

The module is maintained and supported by the SUSE Linux Enterprise Server product subscription.

","shortname":"SAP-Business-One-Module","free":true,"extensions":[],"release_stage":"released","identifier":"sle-module-sap-business-one","id":2589,"friendly_version":"15 SP5","name":"SAP Business One Module","offline_predecessor_ids":[],"friendly_name":"SAP Business One Module 15 SP5 x86_64","migration_extra":false,"release_type":null,"former_identifier":"sle-module-sap-business-one","recommended":false,"version":"15.5"},{"friendly_version":"5.1.2","release_stage":"released","id":2590,"identifier":"neuvector","extensions":[],"version":"5.1.2","recommended":false,"release_type":null,"former_identifier":"neuvector","migration_extra":false,"friendly_name":"NeuVector 5.1.2","offline_predecessor_ids":[],"name":"NeuVector","repositories":[],"online_predecessor_ids":[],"product_class":"NEUVECTOR","predecessor_ids":[],"product_type":"base","cpe":"cpe:/o:suse:neuvector:5.1.2","free":false,"description":null,"shortname":"NV","arch":null,"eula_url":""},{"free":false,"shortname":"Rancher","description":null,"arch":null,"eula_url":"","repositories":[],"online_predecessor_ids":[],"product_class":"RANCHER-X86","predecessor_ids":[],"product_type":"base","cpe":"cpe:/o:suse:rancher:2.6.11","version":"2.6.11","recommended":false,"former_identifier":"rancher","release_type":null,"migration_extra":false,"friendly_name":"SUSE Rancher 2.6.11","offline_predecessor_ids":[],"name":"SUSE Rancher","friendly_version":"2.6.11","identifier":"rancher","release_stage":"released","id":2591,"extensions":[]},{"friendly_name":"SUSE Rancher 2.7.2","migration_extra":false,"former_identifier":"rancher","release_type":null,"name":"SUSE Rancher","offline_predecessor_ids":[],"version":"2.7.2","recommended":false,"release_stage":"released","identifier":"rancher","id":2592,"extensions":[],"friendly_version":"2.7.2","arch":null,"eula_url":"","shortname":"Rancher","description":null,"free":false,"cpe":"cpe:/o:suse:rancher:2.7.2","product_type":"base","repositories":[],"online_predecessor_ids":[],"product_class":"RANCHER-X86","predecessor_ids":[]},{"identifier":"neuvector","release_stage":"released","id":2593,"extensions":[],"friendly_version":"5.0.7","migration_extra":false,"friendly_name":"NeuVector 5.0.7","former_identifier":"neuvector","release_type":null,"name":"NeuVector","offline_predecessor_ids":[],"version":"5.0.7","recommended":false,"cpe":"cpe:/o:suse:neuvector:5.0.7","product_type":"base","product_class":"NEUVECTOR","online_predecessor_ids":[],"repositories":[],"predecessor_ids":[],"arch":null,"eula_url":"","description":null,"shortname":"NV","free":false},{"online_predecessor_ids":[],"repositories":[],"product_class":"RANCHER-X86","predecessor_ids":[],"product_type":"base","cpe":"cpe:/o:suse:rancher:2.7.3","free":false,"description":null,"shortname":"Rancher","arch":null,"eula_url":"","friendly_version":"2.7.3","release_stage":"released","id":2594,"identifier":"rancher","extensions":[],"version":"2.7.3","recommended":false,"former_identifier":"rancher","release_type":null,"migration_extra":false,"friendly_name":"SUSE Rancher 2.7.3","offline_predecessor_ids":[],"name":"SUSE Rancher"},{"product_class":"HARVESTER-X86","online_predecessor_ids":[],"repositories":[],"predecessor_ids":[],"cpe":"cpe:/o:suse:harvester:1.1.2","product_type":"base","shortname":"Harvester","description":null,"free":false,"arch":null,"eula_url":"","friendly_version":"1.1.2","id":2595,"release_stage":"released","identifier":"harvester","extensions":[],"version":"1.1.2","recommended":false,"friendly_name":"Harvester 1.1.2","migration_extra":false,"former_identifier":"harvester","release_type":null,"name":"Harvester","offline_predecessor_ids":[]},{"version":"2.6.12","recommended":false,"friendly_name":"SUSE Rancher 2.6.12","migration_extra":false,"former_identifier":"rancher","release_type":null,"name":"SUSE Rancher","offline_predecessor_ids":[],"friendly_version":"2.6.12","identifier":"rancher","release_stage":"released","id":2596,"extensions":[],"shortname":"Rancher","description":null,"free":false,"arch":null,"eula_url":"","repositories":[],"online_predecessor_ids":[],"product_class":"RANCHER-X86","predecessor_ids":[],"cpe":"cpe:/o:suse:rancher:2.6.12","product_type":"base"},{"arch":null,"eula_url":"","free":false,"shortname":"NV","description":null,"product_type":"base","cpe":"cpe:/o:suse:neuvector:5.1.3","product_class":"NEUVECTOR","online_predecessor_ids":[],"repositories":[],"predecessor_ids":[],"former_identifier":"neuvector","release_type":null,"migration_extra":false,"friendly_name":"NeuVector 5.1.3","offline_predecessor_ids":[],"name":"NeuVector","version":"5.1.3","recommended":false,"release_stage":"released","id":2597,"identifier":"neuvector","extensions":[],"friendly_version":"5.1.3"}] \ No newline at end of file diff --git a/java/code/src/com/redhat/rhn/manager/content/test/rmtclouddata/organizations_repositories.json b/java/code/src/com/redhat/rhn/manager/content/test/rmtclouddata/organizations_repositories.json new file mode 100644 index 000000000000..fe51488c7066 --- /dev/null +++ b/java/code/src/com/redhat/rhn/manager/content/test/rmtclouddata/organizations_repositories.json @@ -0,0 +1 @@ +[] diff --git a/java/code/src/com/redhat/rhn/manager/content/test/rmtclouddata/product_tree.json b/java/code/src/com/redhat/rhn/manager/content/test/rmtclouddata/product_tree.json new file mode 100644 index 000000000000..1b48cb59236d --- /dev/null +++ b/java/code/src/com/redhat/rhn/manager/content/test/rmtclouddata/product_tree.json @@ -0,0 +1,213390 @@ +[ + { + "channel_label": "oraclelinux9-developer-x86_64", + "parent_channel_label": "oraclelinux9-x86_64", + "product_id": -41, + "repository_id": -495, + "parent_product_id": null, + "root_product_id": -41, + "update_tag": null, + "url": "https://yum.oracle.com/repo/OracleLinux/OL9/developer/x86_64/", + "release_stage": "released", + "mandatory": false, + "signed": false, + "recommended": false, + "channel_name": "oraclelinux9-developer for x86_64", + "product_type": "base", + "gpg_info": [ + { + "url": "file:///etc/pki/rpm-gpg/RPM-GPG-KEY-oracle", + "keyId": "8D8B756F", + "fingerprint": "3E6D826D3FBAB389C2F38E34BC4D06A08D8B756F" + } + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "oraclelinux9-developer-uek-r7-x86_64", + "parent_channel_label": "oraclelinux9-x86_64", + "product_id": -41, + "repository_id": -494, + "parent_product_id": null, + "root_product_id": -41, + "update_tag": null, + "url": "https://yum.oracle.com/repo/OracleLinux/OL9/developer/UEKR7/x86_64/", + "release_stage": "released", + "mandatory": false, + "signed": false, + "recommended": false, + "channel_name": "oraclelinux9-developer-uek-r7 for x86_64", + "product_type": "base", + "gpg_info": [ + { + "url": "file:///etc/pki/rpm-gpg/RPM-GPG-KEY-oracle", + "keyId": "8D8B756F", + "fingerprint": "3E6D826D3FBAB389C2F38E34BC4D06A08D8B756F" + } + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "oraclelinux9-codereadybuilder-x86_64", + "parent_channel_label": "oraclelinux9-x86_64", + "product_id": -41, + "repository_id": -493, + "parent_product_id": null, + "root_product_id": -41, + "update_tag": null, + "url": "https://yum.oracle.com/repo/OracleLinux/OL9/codeready/builder/x86_64/", + "release_stage": "released", + "mandatory": false, + "signed": false, + "recommended": false, + "channel_name": "oraclelinux9-codereadybuilder for x86_64", + "product_type": "base", + "gpg_info": [ + { + "url": "file:///etc/pki/rpm-gpg/RPM-GPG-KEY-oracle", + "keyId": "8D8B756F", + "fingerprint": "3E6D826D3FBAB389C2F38E34BC4D06A08D8B756F" + } + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "oraclelinux9-addons-x86_64", + "parent_channel_label": "oraclelinux9-x86_64", + "product_id": -41, + "repository_id": -492, + "parent_product_id": null, + "root_product_id": -41, + "update_tag": null, + "url": "https://yum.oracle.com/repo/OracleLinux/OL9/addons/x86_64/", + "release_stage": "released", + "mandatory": false, + "signed": false, + "recommended": false, + "channel_name": "oraclelinux9-addons for x86_64", + "product_type": "base", + "gpg_info": [ + { + "url": "file:///etc/pki/rpm-gpg/RPM-GPG-KEY-oracle", + "keyId": "8D8B756F", + "fingerprint": "3E6D826D3FBAB389C2F38E34BC4D06A08D8B756F" + } + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "oraclelinux9-appstream-x86_64", + "parent_channel_label": "oraclelinux9-x86_64", + "product_id": -41, + "repository_id": -491, + "parent_product_id": null, + "root_product_id": -41, + "update_tag": null, + "url": "https://yum.oracle.com/repo/OracleLinux/OL9/appstream/x86_64/", + "release_stage": "released", + "mandatory": true, + "signed": false, + "recommended": false, + "channel_name": "oraclelinux9-appstream for x86_64", + "product_type": "base", + "gpg_info": [ + { + "url": "file:///etc/pki/rpm-gpg/RPM-GPG-KEY-oracle", + "keyId": "8D8B756F", + "fingerprint": "3E6D826D3FBAB389C2F38E34BC4D06A08D8B756F" + } + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "oraclelinux9-x86_64", + "parent_channel_label": null, + "product_id": -41, + "repository_id": -490, + "parent_product_id": null, + "root_product_id": -41, + "update_tag": null, + "url": "https://yum.oracle.com/repo/OracleLinux/OL9/baseos/latest/x86_64/", + "release_stage": "released", + "mandatory": true, + "signed": false, + "recommended": false, + "channel_name": "oraclelinux9 for x86_64", + "product_type": "base", + "gpg_info": [ + { + "url": "file:///etc/pki/rpm-gpg/RPM-GPG-KEY-oracle", + "keyId": "8D8B756F", + "fingerprint": "3E6D826D3FBAB389C2F38E34BC4D06A08D8B756F" + } + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "oraclelinux9-uek-r7-x86_64", + "parent_channel_label": "oraclelinux9-x86_64", + "product_id": -41, + "repository_id": -489, + "parent_product_id": null, + "root_product_id": -41, + "update_tag": null, + "url": "https://yum.oracle.com/repo/OracleLinux/OL9/UEKR7/x86_64/", + "release_stage": "released", + "mandatory": false, + "signed": false, + "recommended": false, + "channel_name": "oraclelinux9-uek-r7 for x86_64", + "product_type": "base", + "gpg_info": [ + { + "url": "file:///etc/pki/rpm-gpg/RPM-GPG-KEY-oracle", + "keyId": "8D8B756F", + "fingerprint": "3E6D826D3FBAB389C2F38E34BC4D06A08D8B756F" + } + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "oraclelinux9-rdma-x86_64", + "parent_channel_label": "oraclelinux9-x86_64", + "product_id": -41, + "repository_id": -488, + "parent_product_id": null, + "root_product_id": -41, + "update_tag": null, + "url": "https://yum.oracle.com/repo/OracleLinux/OL9/RDMA/x86_64/", + "release_stage": "released", + "mandatory": false, + "signed": false, + "recommended": false, + "channel_name": "oraclelinux9-rdma for x86_64", + "product_type": "base", + "gpg_info": [ + { + "url": "file:///etc/pki/rpm-gpg/RPM-GPG-KEY-oracle", + "keyId": "8D8B756F", + "fingerprint": "3E6D826D3FBAB389C2F38E34BC4D06A08D8B756F" + } + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "el9-manager-tools-updates-x86_64-ol9", + "parent_channel_label": "oraclelinux9-x86_64", + "product_id": 2543, + "repository_id": 6008, + "parent_product_id": -41, + "root_product_id": -41, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Updates/EL/9-CLIENT-TOOLS/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "EL9-Manager-Tools-Updates for x86_64 OL9", + "product_type": "extension", + "gpg_info": [ + { + "url": "file:///etc/pki/rpm-gpg/el-tools-gpg-pubkey-39db7c82.key", + "keyId": "39DB7C82", + "fingerprint": "FEAB502539D846DB2C0961CA70AF9E8139DB7C82" + }, + { + "url": "file:///etc/pki/rpm-gpg/suse-addon-97a636db0bad8ecc.key", + "keyId": "97A636DB0BAD8ECC", + "fingerprint": "CCB57F6E2FA5D41B256E02B897A636DB0BAD8ECC" + } + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "el9-manager-tools-debuginfo-updates-x86_64-ol9", + "parent_channel_label": "oraclelinux9-x86_64", + "product_id": 2543, + "repository_id": 6009, + "parent_product_id": -41, + "root_product_id": -41, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Updates/EL/9-CLIENT-TOOLS/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "EL9-Manager-Tools-Debuginfo-Updates for x86_64 OL9", + "product_type": "extension", + "gpg_info": [ + { + "url": "file:///etc/pki/rpm-gpg/el-tools-gpg-pubkey-39db7c82.key", + "keyId": "39DB7C82", + "fingerprint": "FEAB502539D846DB2C0961CA70AF9E8139DB7C82" + }, + { + "url": "file:///etc/pki/rpm-gpg/suse-addon-97a636db0bad8ecc.key", + "keyId": "97A636DB0BAD8ECC", + "fingerprint": "CCB57F6E2FA5D41B256E02B897A636DB0BAD8ECC" + } + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "el9-manager-tools-pool-x86_64-ol9", + "parent_channel_label": "oraclelinux9-x86_64", + "product_id": 2543, + "repository_id": 6010, + "parent_product_id": -41, + "root_product_id": -41, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Products/EL/9-CLIENT-TOOLS/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "EL9-Manager-Tools-Pool for x86_64 OL9", + "product_type": "extension", + "gpg_info": [ + { + "url": "file:///etc/pki/rpm-gpg/el-tools-gpg-pubkey-39db7c82.key", + "keyId": "39DB7C82", + "fingerprint": "FEAB502539D846DB2C0961CA70AF9E8139DB7C82" + }, + { + "url": "file:///etc/pki/rpm-gpg/suse-addon-97a636db0bad8ecc.key", + "keyId": "97A636DB0BAD8ECC", + "fingerprint": "CCB57F6E2FA5D41B256E02B897A636DB0BAD8ECC" + } + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "el9-manager-tools-debuginfo-pool-x86_64-ol9", + "parent_channel_label": "oraclelinux9-x86_64", + "product_id": 2543, + "repository_id": 6011, + "parent_product_id": -41, + "root_product_id": -41, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Products/EL/9-CLIENT-TOOLS/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "EL9-Manager-Tools-Debuginfo-Pool for x86_64 OL9", + "product_type": "extension", + "gpg_info": [ + { + "url": "file:///etc/pki/rpm-gpg/el-tools-gpg-pubkey-39db7c82.key", + "keyId": "39DB7C82", + "fingerprint": "FEAB502539D846DB2C0961CA70AF9E8139DB7C82" + }, + { + "url": "file:///etc/pki/rpm-gpg/suse-addon-97a636db0bad8ecc.key", + "keyId": "97A636DB0BAD8ECC", + "fingerprint": "CCB57F6E2FA5D41B256E02B897A636DB0BAD8ECC" + } + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "el9-manager-tools-beta-updates-x86_64-ol9", + "parent_channel_label": "oraclelinux9-x86_64", + "product_id": 2548, + "repository_id": 6027, + "parent_product_id": 2543, + "root_product_id": -41, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Updates/EL/9-CLIENT-TOOLS-BETA/x86_64/update/", + "release_stage": "alpha", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "EL9-Manager-Tools-Beta-Updates for x86_64 OL9", + "product_type": "extension", + "gpg_info": [ + { + "url": "file:///etc/pki/rpm-gpg/el-tools-gpg-pubkey-39db7c82.key", + "keyId": "39DB7C82", + "fingerprint": "FEAB502539D846DB2C0961CA70AF9E8139DB7C82" + }, + { + "url": "file:///etc/pki/rpm-gpg/suse-addon-97a636db0bad8ecc.key", + "keyId": "97A636DB0BAD8ECC", + "fingerprint": "CCB57F6E2FA5D41B256E02B897A636DB0BAD8ECC" + } + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "el9-manager-tools-beta-debuginfo-updates-x86_64-ol9", + "parent_channel_label": "oraclelinux9-x86_64", + "product_id": 2548, + "repository_id": 6028, + "parent_product_id": 2543, + "root_product_id": -41, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Updates/EL/9-CLIENT-TOOLS-BETA/x86_64/update_debug/", + "release_stage": "alpha", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "EL9-Manager-Tools-Beta-Debuginfo-Updates for x86_64 OL9", + "product_type": "extension", + "gpg_info": [ + { + "url": "file:///etc/pki/rpm-gpg/el-tools-gpg-pubkey-39db7c82.key", + "keyId": "39DB7C82", + "fingerprint": "FEAB502539D846DB2C0961CA70AF9E8139DB7C82" + }, + { + "url": "file:///etc/pki/rpm-gpg/suse-addon-97a636db0bad8ecc.key", + "keyId": "97A636DB0BAD8ECC", + "fingerprint": "CCB57F6E2FA5D41B256E02B897A636DB0BAD8ECC" + } + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "el9-manager-tools-beta-pool-x86_64-ol9", + "parent_channel_label": "oraclelinux9-x86_64", + "product_id": 2548, + "repository_id": 6029, + "parent_product_id": 2543, + "root_product_id": -41, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Products/EL/9-CLIENT-TOOLS-BETA/x86_64/product/", + "release_stage": "alpha", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "EL9-Manager-Tools-Beta-Pool for x86_64 OL9", + "product_type": "extension", + "gpg_info": [ + { + "url": "file:///etc/pki/rpm-gpg/el-tools-gpg-pubkey-39db7c82.key", + "keyId": "39DB7C82", + "fingerprint": "FEAB502539D846DB2C0961CA70AF9E8139DB7C82" + }, + { + "url": "file:///etc/pki/rpm-gpg/suse-addon-97a636db0bad8ecc.key", + "keyId": "97A636DB0BAD8ECC", + "fingerprint": "CCB57F6E2FA5D41B256E02B897A636DB0BAD8ECC" + } + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "el9-manager-tools-beta-debuginfo-pool-x86_64-ol9", + "parent_channel_label": "oraclelinux9-x86_64", + "product_id": 2548, + "repository_id": 6030, + "parent_product_id": 2543, + "root_product_id": -41, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Products/EL/9-CLIENT-TOOLS-BETA/x86_64/product_debug/", + "release_stage": "alpha", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "EL9-Manager-Tools-Beta-Debuginfo-Pool for x86_64 OL9", + "product_type": "extension", + "gpg_info": [ + { + "url": "file:///etc/pki/rpm-gpg/el-tools-gpg-pubkey-39db7c82.key", + "keyId": "39DB7C82", + "fingerprint": "FEAB502539D846DB2C0961CA70AF9E8139DB7C82" + }, + { + "url": "file:///etc/pki/rpm-gpg/suse-addon-97a636db0bad8ecc.key", + "keyId": "97A636DB0BAD8ECC", + "fingerprint": "CCB57F6E2FA5D41B256E02B897A636DB0BAD8ECC" + } + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "oraclelinux9-developer-aarch64", + "parent_channel_label": "oraclelinux9-aarch64", + "product_id": -40, + "repository_id": -487, + "parent_product_id": null, + "root_product_id": -40, + "update_tag": null, + "url": "https://yum.oracle.com/repo/OracleLinux/OL9/developer/aarch64/", + "release_stage": "released", + "mandatory": false, + "signed": false, + "recommended": false, + "channel_name": "oraclelinux9-developer for aarch64", + "product_type": "base", + "gpg_info": [ + { + "url": "file:///etc/pki/rpm-gpg/RPM-GPG-KEY-oracle", + "keyId": "8D8B756F", + "fingerprint": "3E6D826D3FBAB389C2F38E34BC4D06A08D8B756F" + } + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "oraclelinux9-developer-uek-r7-aarch64", + "parent_channel_label": "oraclelinux9-aarch64", + "product_id": -40, + "repository_id": -486, + "parent_product_id": null, + "root_product_id": -40, + "update_tag": null, + "url": "https://yum.oracle.com/repo/OracleLinux/OL9/developer/UEKR7/aarch64/", + "release_stage": "released", + "mandatory": false, + "signed": false, + "recommended": false, + "channel_name": "oraclelinux9-developer-uek-r7 for aarch64", + "product_type": "base", + "gpg_info": [ + { + "url": "file:///etc/pki/rpm-gpg/RPM-GPG-KEY-oracle", + "keyId": "8D8B756F", + "fingerprint": "3E6D826D3FBAB389C2F38E34BC4D06A08D8B756F" + } + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "oraclelinux9-codereadybuilder-aarch64", + "parent_channel_label": "oraclelinux9-aarch64", + "product_id": -40, + "repository_id": -485, + "parent_product_id": null, + "root_product_id": -40, + "update_tag": null, + "url": "https://yum.oracle.com/repo/OracleLinux/OL9/codeready/builder/aarch64/", + "release_stage": "released", + "mandatory": false, + "signed": false, + "recommended": false, + "channel_name": "oraclelinux9-codereadybuilder for aarch64", + "product_type": "base", + "gpg_info": [ + { + "url": "file:///etc/pki/rpm-gpg/RPM-GPG-KEY-oracle", + "keyId": "8D8B756F", + "fingerprint": "3E6D826D3FBAB389C2F38E34BC4D06A08D8B756F" + } + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "oraclelinux9-addons-aarch64", + "parent_channel_label": "oraclelinux9-aarch64", + "product_id": -40, + "repository_id": -484, + "parent_product_id": null, + "root_product_id": -40, + "update_tag": null, + "url": "https://yum.oracle.com/repo/OracleLinux/OL9/addons/aarch64/", + "release_stage": "released", + "mandatory": false, + "signed": false, + "recommended": false, + "channel_name": "oraclelinux9-addons for aarch64", + "product_type": "base", + "gpg_info": [ + { + "url": "file:///etc/pki/rpm-gpg/RPM-GPG-KEY-oracle", + "keyId": "8D8B756F", + "fingerprint": "3E6D826D3FBAB389C2F38E34BC4D06A08D8B756F" + } + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "oraclelinux9-appstream-aarch64", + "parent_channel_label": "oraclelinux9-aarch64", + "product_id": -40, + "repository_id": -483, + "parent_product_id": null, + "root_product_id": -40, + "update_tag": null, + "url": "https://yum.oracle.com/repo/OracleLinux/OL9/appstream/aarch64/", + "release_stage": "released", + "mandatory": true, + "signed": false, + "recommended": false, + "channel_name": "oraclelinux9-appstream for aarch64", + "product_type": "base", + "gpg_info": [ + { + "url": "file:///etc/pki/rpm-gpg/RPM-GPG-KEY-oracle", + "keyId": "8D8B756F", + "fingerprint": "3E6D826D3FBAB389C2F38E34BC4D06A08D8B756F" + } + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "oraclelinux9-aarch64", + "parent_channel_label": null, + "product_id": -40, + "repository_id": -482, + "parent_product_id": null, + "root_product_id": -40, + "update_tag": null, + "url": "https://yum.oracle.com/repo/OracleLinux/OL9/baseos/latest/aarch64/", + "release_stage": "released", + "mandatory": true, + "signed": false, + "recommended": false, + "channel_name": "oraclelinux9 for aarch64", + "product_type": "base", + "gpg_info": [ + { + "url": "file:///etc/pki/rpm-gpg/RPM-GPG-KEY-oracle", + "keyId": "8D8B756F", + "fingerprint": "3E6D826D3FBAB389C2F38E34BC4D06A08D8B756F" + } + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "oraclelinux9-uek-r7-aarch64", + "parent_channel_label": "oraclelinux9-aarch64", + "product_id": -40, + "repository_id": -481, + "parent_product_id": null, + "root_product_id": -40, + "update_tag": null, + "url": "https://yum.oracle.com/repo/OracleLinux/OL9/UEKR7/aarch64/", + "release_stage": "released", + "mandatory": false, + "signed": false, + "recommended": false, + "channel_name": "oraclelinux9-uek-r7 for aarch64", + "product_type": "base", + "gpg_info": [ + { + "url": "file:///etc/pki/rpm-gpg/RPM-GPG-KEY-oracle", + "keyId": "8D8B756F", + "fingerprint": "3E6D826D3FBAB389C2F38E34BC4D06A08D8B756F" + } + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "el9-manager-tools-updates-aarch64-ol9", + "parent_channel_label": "oraclelinux9-aarch64", + "product_id": 2542, + "repository_id": 6003, + "parent_product_id": -40, + "root_product_id": -40, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Updates/EL/9-CLIENT-TOOLS/aarch64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "EL9-Manager-Tools-Updates for aarch64 OL9", + "product_type": "extension", + "gpg_info": [ + { + "url": "file:///etc/pki/rpm-gpg/el-tools-gpg-pubkey-39db7c82.key", + "keyId": "39DB7C82", + "fingerprint": "FEAB502539D846DB2C0961CA70AF9E8139DB7C82" + }, + { + "url": "file:///etc/pki/rpm-gpg/suse-addon-97a636db0bad8ecc.key", + "keyId": "97A636DB0BAD8ECC", + "fingerprint": "CCB57F6E2FA5D41B256E02B897A636DB0BAD8ECC" + } + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "el9-manager-tools-debuginfo-updates-aarch64-ol9", + "parent_channel_label": "oraclelinux9-aarch64", + "product_id": 2542, + "repository_id": 6004, + "parent_product_id": -40, + "root_product_id": -40, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Updates/EL/9-CLIENT-TOOLS/aarch64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "EL9-Manager-Tools-Debuginfo-Updates for aarch64 OL9", + "product_type": "extension", + "gpg_info": [ + { + "url": "file:///etc/pki/rpm-gpg/el-tools-gpg-pubkey-39db7c82.key", + "keyId": "39DB7C82", + "fingerprint": "FEAB502539D846DB2C0961CA70AF9E8139DB7C82" + }, + { + "url": "file:///etc/pki/rpm-gpg/suse-addon-97a636db0bad8ecc.key", + "keyId": "97A636DB0BAD8ECC", + "fingerprint": "CCB57F6E2FA5D41B256E02B897A636DB0BAD8ECC" + } + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "el9-manager-tools-pool-aarch64-ol9", + "parent_channel_label": "oraclelinux9-aarch64", + "product_id": 2542, + "repository_id": 6005, + "parent_product_id": -40, + "root_product_id": -40, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Products/EL/9-CLIENT-TOOLS/aarch64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "EL9-Manager-Tools-Pool for aarch64 OL9", + "product_type": "extension", + "gpg_info": [ + { + "url": "file:///etc/pki/rpm-gpg/el-tools-gpg-pubkey-39db7c82.key", + "keyId": "39DB7C82", + "fingerprint": "FEAB502539D846DB2C0961CA70AF9E8139DB7C82" + }, + { + "url": "file:///etc/pki/rpm-gpg/suse-addon-97a636db0bad8ecc.key", + "keyId": "97A636DB0BAD8ECC", + "fingerprint": "CCB57F6E2FA5D41B256E02B897A636DB0BAD8ECC" + } + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "el9-manager-tools-debuginfo-pool-aarch64-ol9", + "parent_channel_label": "oraclelinux9-aarch64", + "product_id": 2542, + "repository_id": 6006, + "parent_product_id": -40, + "root_product_id": -40, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Products/EL/9-CLIENT-TOOLS/aarch64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "EL9-Manager-Tools-Debuginfo-Pool for aarch64 OL9", + "product_type": "extension", + "gpg_info": [ + { + "url": "file:///etc/pki/rpm-gpg/el-tools-gpg-pubkey-39db7c82.key", + "keyId": "39DB7C82", + "fingerprint": "FEAB502539D846DB2C0961CA70AF9E8139DB7C82" + }, + { + "url": "file:///etc/pki/rpm-gpg/suse-addon-97a636db0bad8ecc.key", + "keyId": "97A636DB0BAD8ECC", + "fingerprint": "CCB57F6E2FA5D41B256E02B897A636DB0BAD8ECC" + } + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "el9-manager-tools-beta-updates-aarch64-ol9", + "parent_channel_label": "oraclelinux9-aarch64", + "product_id": 2547, + "repository_id": 6022, + "parent_product_id": 2542, + "root_product_id": -40, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Updates/EL/9-CLIENT-TOOLS-BETA/aarch64/update/", + "release_stage": "alpha", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "EL9-Manager-Tools-Beta-Updates for aarch64 OL9", + "product_type": "extension", + "gpg_info": [ + { + "url": "file:///etc/pki/rpm-gpg/el-tools-gpg-pubkey-39db7c82.key", + "keyId": "39DB7C82", + "fingerprint": "FEAB502539D846DB2C0961CA70AF9E8139DB7C82" + }, + { + "url": "file:///etc/pki/rpm-gpg/suse-addon-97a636db0bad8ecc.key", + "keyId": "97A636DB0BAD8ECC", + "fingerprint": "CCB57F6E2FA5D41B256E02B897A636DB0BAD8ECC" + } + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "el9-manager-tools-beta-debuginfo-updates-aarch64-ol9", + "parent_channel_label": "oraclelinux9-aarch64", + "product_id": 2547, + "repository_id": 6023, + "parent_product_id": 2542, + "root_product_id": -40, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Updates/EL/9-CLIENT-TOOLS-BETA/aarch64/update_debug/", + "release_stage": "alpha", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "EL9-Manager-Tools-Beta-Debuginfo-Updates for aarch64 OL9", + "product_type": "extension", + "gpg_info": [ + { + "url": "file:///etc/pki/rpm-gpg/el-tools-gpg-pubkey-39db7c82.key", + "keyId": "39DB7C82", + "fingerprint": "FEAB502539D846DB2C0961CA70AF9E8139DB7C82" + }, + { + "url": "file:///etc/pki/rpm-gpg/suse-addon-97a636db0bad8ecc.key", + "keyId": "97A636DB0BAD8ECC", + "fingerprint": "CCB57F6E2FA5D41B256E02B897A636DB0BAD8ECC" + } + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "el9-manager-tools-beta-pool-aarch64-ol9", + "parent_channel_label": "oraclelinux9-aarch64", + "product_id": 2547, + "repository_id": 6024, + "parent_product_id": 2542, + "root_product_id": -40, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Products/EL/9-CLIENT-TOOLS-BETA/aarch64/product/", + "release_stage": "alpha", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "EL9-Manager-Tools-Beta-Pool for aarch64 OL9", + "product_type": "extension", + "gpg_info": [ + { + "url": "file:///etc/pki/rpm-gpg/el-tools-gpg-pubkey-39db7c82.key", + "keyId": "39DB7C82", + "fingerprint": "FEAB502539D846DB2C0961CA70AF9E8139DB7C82" + }, + { + "url": "file:///etc/pki/rpm-gpg/suse-addon-97a636db0bad8ecc.key", + "keyId": "97A636DB0BAD8ECC", + "fingerprint": "CCB57F6E2FA5D41B256E02B897A636DB0BAD8ECC" + } + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "el9-manager-tools-beta-debuginfo-pool-aarch64-ol9", + "parent_channel_label": "oraclelinux9-aarch64", + "product_id": 2547, + "repository_id": 6025, + "parent_product_id": 2542, + "root_product_id": -40, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Products/EL/9-CLIENT-TOOLS-BETA/aarch64/product_debug/", + "release_stage": "alpha", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "EL9-Manager-Tools-Beta-Debuginfo-Pool for aarch64 OL9", + "product_type": "extension", + "gpg_info": [ + { + "url": "file:///etc/pki/rpm-gpg/el-tools-gpg-pubkey-39db7c82.key", + "keyId": "39DB7C82", + "fingerprint": "FEAB502539D846DB2C0961CA70AF9E8139DB7C82" + }, + { + "url": "file:///etc/pki/rpm-gpg/suse-addon-97a636db0bad8ecc.key", + "keyId": "97A636DB0BAD8ECC", + "fingerprint": "CCB57F6E2FA5D41B256E02B897A636DB0BAD8ECC" + } + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "almalinux9-ha-aarch64", + "parent_channel_label": "almalinux9-aarch64", + "product_id": -39, + "repository_id": -475, + "parent_product_id": null, + "root_product_id": -39, + "update_tag": null, + "url": "https://mirrors.almalinux.org/mirrorlist/9/ha", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "almalinux9-ha for aarch64", + "product_type": "base", + "gpg_info": [ + { + "url": "file:///etc/pki/rpm-gpg/RPM-GPG-KEY-AlmaLinux-9", + "keyId": "B86B3716", + "fingerprint": "BF18AC2876178908D6E71267D36CB86CB86B3716" + } + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "almalinux9-powertools-aarch64", + "parent_channel_label": "almalinux9-aarch64", + "product_id": -39, + "repository_id": -474, + "parent_product_id": null, + "root_product_id": -39, + "update_tag": null, + "url": "https://mirrors.almalinux.org/mirrorlist/9/powertools", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "almalinux9-powertools for aarch64", + "product_type": "base", + "gpg_info": [ + { + "url": "file:///etc/pki/rpm-gpg/RPM-GPG-KEY-AlmaLinux-9", + "keyId": "B86B3716", + "fingerprint": "BF18AC2876178908D6E71267D36CB86CB86B3716" + } + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "almalinux9-extras-aarch64", + "parent_channel_label": "almalinux9-aarch64", + "product_id": -39, + "repository_id": -473, + "parent_product_id": null, + "root_product_id": -39, + "update_tag": null, + "url": "https://mirrors.almalinux.org/mirrorlist/9/extras", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "almalinux9-extras for aarch64", + "product_type": "base", + "gpg_info": [ + { + "url": "file:///etc/pki/rpm-gpg/RPM-GPG-KEY-AlmaLinux-9", + "keyId": "B86B3716", + "fingerprint": "BF18AC2876178908D6E71267D36CB86CB86B3716" + } + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "almalinux9-appstream-aarch64", + "parent_channel_label": "almalinux9-aarch64", + "product_id": -39, + "repository_id": -472, + "parent_product_id": null, + "root_product_id": -39, + "update_tag": null, + "url": "https://mirrors.almalinux.org/mirrorlist/9/appstream", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "almalinux9-appstream for aarch64", + "product_type": "base", + "gpg_info": [ + { + "url": "file:///etc/pki/rpm-gpg/RPM-GPG-KEY-AlmaLinux-9", + "keyId": "B86B3716", + "fingerprint": "BF18AC2876178908D6E71267D36CB86CB86B3716" + } + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "almalinux9-aarch64", + "parent_channel_label": null, + "product_id": -39, + "repository_id": -471, + "parent_product_id": null, + "root_product_id": -39, + "update_tag": null, + "url": "https://mirrors.almalinux.org/mirrorlist/9/baseos", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "almalinux9 for aarch64", + "product_type": "base", + "gpg_info": [ + { + "url": "file:///etc/pki/rpm-gpg/RPM-GPG-KEY-AlmaLinux-9", + "keyId": "B86B3716", + "fingerprint": "BF18AC2876178908D6E71267D36CB86CB86B3716" + } + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "el9-manager-tools-updates-aarch64-alma", + "parent_channel_label": "almalinux9-aarch64", + "product_id": 2542, + "repository_id": 6003, + "parent_product_id": -39, + "root_product_id": -39, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Updates/EL/9-CLIENT-TOOLS/aarch64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "EL9-Manager-Tools-Updates for aarch64 Alma", + "product_type": "extension", + "gpg_info": [ + { + "url": "file:///etc/pki/rpm-gpg/el-tools-gpg-pubkey-39db7c82.key", + "keyId": "39DB7C82", + "fingerprint": "FEAB502539D846DB2C0961CA70AF9E8139DB7C82" + }, + { + "url": "file:///etc/pki/rpm-gpg/suse-addon-97a636db0bad8ecc.key", + "keyId": "97A636DB0BAD8ECC", + "fingerprint": "CCB57F6E2FA5D41B256E02B897A636DB0BAD8ECC" + } + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "el9-manager-tools-debuginfo-updates-aarch64-alma", + "parent_channel_label": "almalinux9-aarch64", + "product_id": 2542, + "repository_id": 6004, + "parent_product_id": -39, + "root_product_id": -39, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Updates/EL/9-CLIENT-TOOLS/aarch64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "EL9-Manager-Tools-Debuginfo-Updates for aarch64 Alma", + "product_type": "extension", + "gpg_info": [ + { + "url": "file:///etc/pki/rpm-gpg/el-tools-gpg-pubkey-39db7c82.key", + "keyId": "39DB7C82", + "fingerprint": "FEAB502539D846DB2C0961CA70AF9E8139DB7C82" + }, + { + "url": "file:///etc/pki/rpm-gpg/suse-addon-97a636db0bad8ecc.key", + "keyId": "97A636DB0BAD8ECC", + "fingerprint": "CCB57F6E2FA5D41B256E02B897A636DB0BAD8ECC" + } + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "el9-manager-tools-pool-aarch64-alma", + "parent_channel_label": "almalinux9-aarch64", + "product_id": 2542, + "repository_id": 6005, + "parent_product_id": -39, + "root_product_id": -39, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Products/EL/9-CLIENT-TOOLS/aarch64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "EL9-Manager-Tools-Pool for aarch64 Alma", + "product_type": "extension", + "gpg_info": [ + { + "url": "file:///etc/pki/rpm-gpg/el-tools-gpg-pubkey-39db7c82.key", + "keyId": "39DB7C82", + "fingerprint": "FEAB502539D846DB2C0961CA70AF9E8139DB7C82" + }, + { + "url": "file:///etc/pki/rpm-gpg/suse-addon-97a636db0bad8ecc.key", + "keyId": "97A636DB0BAD8ECC", + "fingerprint": "CCB57F6E2FA5D41B256E02B897A636DB0BAD8ECC" + } + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "el9-manager-tools-debuginfo-pool-aarch64-alma", + "parent_channel_label": "almalinux9-aarch64", + "product_id": 2542, + "repository_id": 6006, + "parent_product_id": -39, + "root_product_id": -39, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Products/EL/9-CLIENT-TOOLS/aarch64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "EL9-Manager-Tools-Debuginfo-Pool for aarch64 Alma", + "product_type": "extension", + "gpg_info": [ + { + "url": "file:///etc/pki/rpm-gpg/el-tools-gpg-pubkey-39db7c82.key", + "keyId": "39DB7C82", + "fingerprint": "FEAB502539D846DB2C0961CA70AF9E8139DB7C82" + }, + { + "url": "file:///etc/pki/rpm-gpg/suse-addon-97a636db0bad8ecc.key", + "keyId": "97A636DB0BAD8ECC", + "fingerprint": "CCB57F6E2FA5D41B256E02B897A636DB0BAD8ECC" + } + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "el9-manager-tools-beta-updates-aarch64-alma", + "parent_channel_label": "almalinux9-aarch64", + "product_id": 2547, + "repository_id": 6022, + "parent_product_id": 2542, + "root_product_id": -39, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Updates/EL/9-CLIENT-TOOLS-BETA/aarch64/update/", + "release_stage": "alpha", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "EL9-Manager-Tools-Beta-Updates for aarch64 Alma", + "product_type": "extension", + "gpg_info": [ + { + "url": "file:///etc/pki/rpm-gpg/el-tools-gpg-pubkey-39db7c82.key", + "keyId": "39DB7C82", + "fingerprint": "FEAB502539D846DB2C0961CA70AF9E8139DB7C82" + }, + { + "url": "file:///etc/pki/rpm-gpg/suse-addon-97a636db0bad8ecc.key", + "keyId": "97A636DB0BAD8ECC", + "fingerprint": "CCB57F6E2FA5D41B256E02B897A636DB0BAD8ECC" + } + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "el9-manager-tools-beta-debuginfo-updates-aarch64-alma", + "parent_channel_label": "almalinux9-aarch64", + "product_id": 2547, + "repository_id": 6023, + "parent_product_id": 2542, + "root_product_id": -39, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Updates/EL/9-CLIENT-TOOLS-BETA/aarch64/update_debug/", + "release_stage": "alpha", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "EL9-Manager-Tools-Beta-Debuginfo-Updates for aarch64 Alma", + "product_type": "extension", + "gpg_info": [ + { + "url": "file:///etc/pki/rpm-gpg/el-tools-gpg-pubkey-39db7c82.key", + "keyId": "39DB7C82", + "fingerprint": "FEAB502539D846DB2C0961CA70AF9E8139DB7C82" + }, + { + "url": "file:///etc/pki/rpm-gpg/suse-addon-97a636db0bad8ecc.key", + "keyId": "97A636DB0BAD8ECC", + "fingerprint": "CCB57F6E2FA5D41B256E02B897A636DB0BAD8ECC" + } + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "el9-manager-tools-beta-pool-aarch64-alma", + "parent_channel_label": "almalinux9-aarch64", + "product_id": 2547, + "repository_id": 6024, + "parent_product_id": 2542, + "root_product_id": -39, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Products/EL/9-CLIENT-TOOLS-BETA/aarch64/product/", + "release_stage": "alpha", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "EL9-Manager-Tools-Beta-Pool for aarch64 Alma", + "product_type": "extension", + "gpg_info": [ + { + "url": "file:///etc/pki/rpm-gpg/el-tools-gpg-pubkey-39db7c82.key", + "keyId": "39DB7C82", + "fingerprint": "FEAB502539D846DB2C0961CA70AF9E8139DB7C82" + }, + { + "url": "file:///etc/pki/rpm-gpg/suse-addon-97a636db0bad8ecc.key", + "keyId": "97A636DB0BAD8ECC", + "fingerprint": "CCB57F6E2FA5D41B256E02B897A636DB0BAD8ECC" + } + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "el9-manager-tools-beta-debuginfo-pool-aarch64-alma", + "parent_channel_label": "almalinux9-aarch64", + "product_id": 2547, + "repository_id": 6025, + "parent_product_id": 2542, + "root_product_id": -39, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Products/EL/9-CLIENT-TOOLS-BETA/aarch64/product_debug/", + "release_stage": "alpha", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "EL9-Manager-Tools-Beta-Debuginfo-Pool for aarch64 Alma", + "product_type": "extension", + "gpg_info": [ + { + "url": "file:///etc/pki/rpm-gpg/el-tools-gpg-pubkey-39db7c82.key", + "keyId": "39DB7C82", + "fingerprint": "FEAB502539D846DB2C0961CA70AF9E8139DB7C82" + }, + { + "url": "file:///etc/pki/rpm-gpg/suse-addon-97a636db0bad8ecc.key", + "keyId": "97A636DB0BAD8ECC", + "fingerprint": "CCB57F6E2FA5D41B256E02B897A636DB0BAD8ECC" + } + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "almalinux9-ha-x86_64", + "parent_channel_label": "almalinux9-x86_64", + "product_id": -38, + "repository_id": -480, + "parent_product_id": null, + "root_product_id": -38, + "update_tag": null, + "url": "https://mirrors.almalinux.org/mirrorlist/9/ha", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "almalinux9-ha for x86_64", + "product_type": "base", + "gpg_info": [ + { + "url": "file:///etc/pki/rpm-gpg/RPM-GPG-KEY-AlmaLinux-9", + "keyId": "B86B3716", + "fingerprint": "BF18AC2876178908D6E71267D36CB86CB86B3716" + } + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "almalinux9-powertools-x86_64", + "parent_channel_label": "almalinux9-x86_64", + "product_id": -38, + "repository_id": -479, + "parent_product_id": null, + "root_product_id": -38, + "update_tag": null, + "url": "https://mirrors.almalinux.org/mirrorlist/9/powertools", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "almalinux9-powertools for x86_64", + "product_type": "base", + "gpg_info": [ + { + "url": "file:///etc/pki/rpm-gpg/RPM-GPG-KEY-AlmaLinux-9", + "keyId": "B86B3716", + "fingerprint": "BF18AC2876178908D6E71267D36CB86CB86B3716" + } + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "almalinux9-extras-x86_64", + "parent_channel_label": "almalinux9-x86_64", + "product_id": -38, + "repository_id": -478, + "parent_product_id": null, + "root_product_id": -38, + "update_tag": null, + "url": "https://mirrors.almalinux.org/mirrorlist/9/extras", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "almalinux9-extras for x86_64", + "product_type": "base", + "gpg_info": [ + { + "url": "file:///etc/pki/rpm-gpg/RPM-GPG-KEY-AlmaLinux-9", + "keyId": "B86B3716", + "fingerprint": "BF18AC2876178908D6E71267D36CB86CB86B3716" + } + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "almalinux9-appstream-x86_64", + "parent_channel_label": "almalinux9-x86_64", + "product_id": -38, + "repository_id": -477, + "parent_product_id": null, + "root_product_id": -38, + "update_tag": null, + "url": "https://mirrors.almalinux.org/mirrorlist/9/appstream", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "almalinux9-appstream for x86_64", + "product_type": "base", + "gpg_info": [ + { + "url": "file:///etc/pki/rpm-gpg/RPM-GPG-KEY-AlmaLinux-9", + "keyId": "B86B3716", + "fingerprint": "BF18AC2876178908D6E71267D36CB86CB86B3716" + } + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "almalinux9-x86_64", + "parent_channel_label": null, + "product_id": -38, + "repository_id": -476, + "parent_product_id": null, + "root_product_id": -38, + "update_tag": null, + "url": "https://mirrors.almalinux.org/mirrorlist/9/baseos", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "almalinux9 for x86_64", + "product_type": "base", + "gpg_info": [ + { + "url": "file:///etc/pki/rpm-gpg/RPM-GPG-KEY-AlmaLinux-9", + "keyId": "B86B3716", + "fingerprint": "BF18AC2876178908D6E71267D36CB86CB86B3716" + } + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "el9-manager-tools-updates-x86_64-alma", + "parent_channel_label": "almalinux9-x86_64", + "product_id": 2543, + "repository_id": 6008, + "parent_product_id": -38, + "root_product_id": -38, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Updates/EL/9-CLIENT-TOOLS/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "EL9-Manager-Tools-Updates for x86_64 Alma", + "product_type": "extension", + "gpg_info": [ + { + "url": "file:///etc/pki/rpm-gpg/el-tools-gpg-pubkey-39db7c82.key", + "keyId": "39DB7C82", + "fingerprint": "FEAB502539D846DB2C0961CA70AF9E8139DB7C82" + }, + { + "url": "file:///etc/pki/rpm-gpg/suse-addon-97a636db0bad8ecc.key", + "keyId": "97A636DB0BAD8ECC", + "fingerprint": "CCB57F6E2FA5D41B256E02B897A636DB0BAD8ECC" + } + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "el9-manager-tools-debuginfo-updates-x86_64-alma", + "parent_channel_label": "almalinux9-x86_64", + "product_id": 2543, + "repository_id": 6009, + "parent_product_id": -38, + "root_product_id": -38, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Updates/EL/9-CLIENT-TOOLS/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "EL9-Manager-Tools-Debuginfo-Updates for x86_64 Alma", + "product_type": "extension", + "gpg_info": [ + { + "url": "file:///etc/pki/rpm-gpg/el-tools-gpg-pubkey-39db7c82.key", + "keyId": "39DB7C82", + "fingerprint": "FEAB502539D846DB2C0961CA70AF9E8139DB7C82" + }, + { + "url": "file:///etc/pki/rpm-gpg/suse-addon-97a636db0bad8ecc.key", + "keyId": "97A636DB0BAD8ECC", + "fingerprint": "CCB57F6E2FA5D41B256E02B897A636DB0BAD8ECC" + } + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "el9-manager-tools-pool-x86_64-alma", + "parent_channel_label": "almalinux9-x86_64", + "product_id": 2543, + "repository_id": 6010, + "parent_product_id": -38, + "root_product_id": -38, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Products/EL/9-CLIENT-TOOLS/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "EL9-Manager-Tools-Pool for x86_64 Alma", + "product_type": "extension", + "gpg_info": [ + { + "url": "file:///etc/pki/rpm-gpg/el-tools-gpg-pubkey-39db7c82.key", + "keyId": "39DB7C82", + "fingerprint": "FEAB502539D846DB2C0961CA70AF9E8139DB7C82" + }, + { + "url": "file:///etc/pki/rpm-gpg/suse-addon-97a636db0bad8ecc.key", + "keyId": "97A636DB0BAD8ECC", + "fingerprint": "CCB57F6E2FA5D41B256E02B897A636DB0BAD8ECC" + } + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "el9-manager-tools-debuginfo-pool-x86_64-alma", + "parent_channel_label": "almalinux9-x86_64", + "product_id": 2543, + "repository_id": 6011, + "parent_product_id": -38, + "root_product_id": -38, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Products/EL/9-CLIENT-TOOLS/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "EL9-Manager-Tools-Debuginfo-Pool for x86_64 Alma", + "product_type": "extension", + "gpg_info": [ + { + "url": "file:///etc/pki/rpm-gpg/el-tools-gpg-pubkey-39db7c82.key", + "keyId": "39DB7C82", + "fingerprint": "FEAB502539D846DB2C0961CA70AF9E8139DB7C82" + }, + { + "url": "file:///etc/pki/rpm-gpg/suse-addon-97a636db0bad8ecc.key", + "keyId": "97A636DB0BAD8ECC", + "fingerprint": "CCB57F6E2FA5D41B256E02B897A636DB0BAD8ECC" + } + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "el9-manager-tools-beta-updates-x86_64-alma", + "parent_channel_label": "almalinux9-x86_64", + "product_id": 2548, + "repository_id": 6027, + "parent_product_id": 2543, + "root_product_id": -38, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Updates/EL/9-CLIENT-TOOLS-BETA/x86_64/update/", + "release_stage": "alpha", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "EL9-Manager-Tools-Beta-Updates for x86_64 Alma", + "product_type": "extension", + "gpg_info": [ + { + "url": "file:///etc/pki/rpm-gpg/el-tools-gpg-pubkey-39db7c82.key", + "keyId": "39DB7C82", + "fingerprint": "FEAB502539D846DB2C0961CA70AF9E8139DB7C82" + }, + { + "url": "file:///etc/pki/rpm-gpg/suse-addon-97a636db0bad8ecc.key", + "keyId": "97A636DB0BAD8ECC", + "fingerprint": "CCB57F6E2FA5D41B256E02B897A636DB0BAD8ECC" + } + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "el9-manager-tools-beta-debuginfo-updates-x86_64-alma", + "parent_channel_label": "almalinux9-x86_64", + "product_id": 2548, + "repository_id": 6028, + "parent_product_id": 2543, + "root_product_id": -38, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Updates/EL/9-CLIENT-TOOLS-BETA/x86_64/update_debug/", + "release_stage": "alpha", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "EL9-Manager-Tools-Beta-Debuginfo-Updates for x86_64 Alma", + "product_type": "extension", + "gpg_info": [ + { + "url": "file:///etc/pki/rpm-gpg/el-tools-gpg-pubkey-39db7c82.key", + "keyId": "39DB7C82", + "fingerprint": "FEAB502539D846DB2C0961CA70AF9E8139DB7C82" + }, + { + "url": "file:///etc/pki/rpm-gpg/suse-addon-97a636db0bad8ecc.key", + "keyId": "97A636DB0BAD8ECC", + "fingerprint": "CCB57F6E2FA5D41B256E02B897A636DB0BAD8ECC" + } + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "el9-manager-tools-beta-pool-x86_64-alma", + "parent_channel_label": "almalinux9-x86_64", + "product_id": 2548, + "repository_id": 6029, + "parent_product_id": 2543, + "root_product_id": -38, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Products/EL/9-CLIENT-TOOLS-BETA/x86_64/product/", + "release_stage": "alpha", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "EL9-Manager-Tools-Beta-Pool for x86_64 Alma", + "product_type": "extension", + "gpg_info": [ + { + "url": "file:///etc/pki/rpm-gpg/el-tools-gpg-pubkey-39db7c82.key", + "keyId": "39DB7C82", + "fingerprint": "FEAB502539D846DB2C0961CA70AF9E8139DB7C82" + }, + { + "url": "file:///etc/pki/rpm-gpg/suse-addon-97a636db0bad8ecc.key", + "keyId": "97A636DB0BAD8ECC", + "fingerprint": "CCB57F6E2FA5D41B256E02B897A636DB0BAD8ECC" + } + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "el9-manager-tools-beta-debuginfo-pool-x86_64-alma", + "parent_channel_label": "almalinux9-x86_64", + "product_id": 2548, + "repository_id": 6030, + "parent_product_id": 2543, + "root_product_id": -38, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Products/EL/9-CLIENT-TOOLS-BETA/x86_64/product_debug/", + "release_stage": "alpha", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "EL9-Manager-Tools-Beta-Debuginfo-Pool for x86_64 Alma", + "product_type": "extension", + "gpg_info": [ + { + "url": "file:///etc/pki/rpm-gpg/el-tools-gpg-pubkey-39db7c82.key", + "keyId": "39DB7C82", + "fingerprint": "FEAB502539D846DB2C0961CA70AF9E8139DB7C82" + }, + { + "url": "file:///etc/pki/rpm-gpg/suse-addon-97a636db0bad8ecc.key", + "keyId": "97A636DB0BAD8ECC", + "fingerprint": "CCB57F6E2FA5D41B256E02B897A636DB0BAD8ECC" + } + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "rockylinux-9-ha-aarch64", + "parent_channel_label": "rockylinux-9-aarch64", + "product_id": -37, + "repository_id": -470, + "parent_product_id": null, + "root_product_id": -37, + "update_tag": null, + "url": "https://mirrors.rockylinux.org/mirrorlist?repo=HighAvailability-9&arch=aarch64", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "rockylinux-9-ha for aarch64", + "product_type": "base", + "gpg_info": [ + { + "url": "file:///etc/pki/rpm-gpg/RPM-GPG-KEY-Rocky-9", + "keyId": "350D275D", + "fingerprint": "21CB256AE16FC54C6E652949702D426D350D275D" + } + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "rockylinux-9-extras-aarch64", + "parent_channel_label": "rockylinux-9-aarch64", + "product_id": -37, + "repository_id": -468, + "parent_product_id": null, + "root_product_id": -37, + "update_tag": null, + "url": "https://mirrors.rockylinux.org/mirrorlist?repo=extras-9&arch=aarch64", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "rockylinux-9-extras for aarch64", + "product_type": "base", + "gpg_info": [ + { + "url": "file:///etc/pki/rpm-gpg/RPM-GPG-KEY-Rocky-9", + "keyId": "350D275D", + "fingerprint": "21CB256AE16FC54C6E652949702D426D350D275D" + } + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "rockylinux-9-appstream-aarch64", + "parent_channel_label": "rockylinux-9-aarch64", + "product_id": -37, + "repository_id": -467, + "parent_product_id": null, + "root_product_id": -37, + "update_tag": null, + "url": "https://mirrors.rockylinux.org/mirrorlist?repo=AppStream-9&arch=aarch64", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "rockylinux-9-appstream for aarch64", + "product_type": "base", + "gpg_info": [ + { + "url": "file:///etc/pki/rpm-gpg/RPM-GPG-KEY-Rocky-9", + "keyId": "350D275D", + "fingerprint": "21CB256AE16FC54C6E652949702D426D350D275D" + } + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "rockylinux-9-aarch64", + "parent_channel_label": null, + "product_id": -37, + "repository_id": -466, + "parent_product_id": null, + "root_product_id": -37, + "update_tag": null, + "url": "https://mirrors.rockylinux.org/mirrorlist?repo=BaseOS-9&arch=aarch64", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "rockylinux-9 for aarch64", + "product_type": "base", + "gpg_info": [ + { + "url": "file:///etc/pki/rpm-gpg/RPM-GPG-KEY-Rocky-9", + "keyId": "350D275D", + "fingerprint": "21CB256AE16FC54C6E652949702D426D350D275D" + } + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "el9-manager-tools-updates-aarch64-rocky", + "parent_channel_label": "rockylinux-9-aarch64", + "product_id": 2542, + "repository_id": 6003, + "parent_product_id": -37, + "root_product_id": -37, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Updates/EL/9-CLIENT-TOOLS/aarch64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "EL9-Manager-Tools-Updates for aarch64 Rocky", + "product_type": "extension", + "gpg_info": [ + { + "url": "file:///etc/pki/rpm-gpg/el-tools-gpg-pubkey-39db7c82.key", + "keyId": "39DB7C82", + "fingerprint": "FEAB502539D846DB2C0961CA70AF9E8139DB7C82" + }, + { + "url": "file:///etc/pki/rpm-gpg/suse-addon-97a636db0bad8ecc.key", + "keyId": "97A636DB0BAD8ECC", + "fingerprint": "CCB57F6E2FA5D41B256E02B897A636DB0BAD8ECC" + } + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "el9-manager-tools-debuginfo-updates-aarch64-rocky", + "parent_channel_label": "rockylinux-9-aarch64", + "product_id": 2542, + "repository_id": 6004, + "parent_product_id": -37, + "root_product_id": -37, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Updates/EL/9-CLIENT-TOOLS/aarch64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "EL9-Manager-Tools-Debuginfo-Updates for aarch64 Rocky", + "product_type": "extension", + "gpg_info": [ + { + "url": "file:///etc/pki/rpm-gpg/el-tools-gpg-pubkey-39db7c82.key", + "keyId": "39DB7C82", + "fingerprint": "FEAB502539D846DB2C0961CA70AF9E8139DB7C82" + }, + { + "url": "file:///etc/pki/rpm-gpg/suse-addon-97a636db0bad8ecc.key", + "keyId": "97A636DB0BAD8ECC", + "fingerprint": "CCB57F6E2FA5D41B256E02B897A636DB0BAD8ECC" + } + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "el9-manager-tools-pool-aarch64-rocky", + "parent_channel_label": "rockylinux-9-aarch64", + "product_id": 2542, + "repository_id": 6005, + "parent_product_id": -37, + "root_product_id": -37, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Products/EL/9-CLIENT-TOOLS/aarch64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "EL9-Manager-Tools-Pool for aarch64 Rocky", + "product_type": "extension", + "gpg_info": [ + { + "url": "file:///etc/pki/rpm-gpg/el-tools-gpg-pubkey-39db7c82.key", + "keyId": "39DB7C82", + "fingerprint": "FEAB502539D846DB2C0961CA70AF9E8139DB7C82" + }, + { + "url": "file:///etc/pki/rpm-gpg/suse-addon-97a636db0bad8ecc.key", + "keyId": "97A636DB0BAD8ECC", + "fingerprint": "CCB57F6E2FA5D41B256E02B897A636DB0BAD8ECC" + } + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "el9-manager-tools-debuginfo-pool-aarch64-rocky", + "parent_channel_label": "rockylinux-9-aarch64", + "product_id": 2542, + "repository_id": 6006, + "parent_product_id": -37, + "root_product_id": -37, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Products/EL/9-CLIENT-TOOLS/aarch64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "EL9-Manager-Tools-Debuginfo-Pool for aarch64 Rocky", + "product_type": "extension", + "gpg_info": [ + { + "url": "file:///etc/pki/rpm-gpg/el-tools-gpg-pubkey-39db7c82.key", + "keyId": "39DB7C82", + "fingerprint": "FEAB502539D846DB2C0961CA70AF9E8139DB7C82" + }, + { + "url": "file:///etc/pki/rpm-gpg/suse-addon-97a636db0bad8ecc.key", + "keyId": "97A636DB0BAD8ECC", + "fingerprint": "CCB57F6E2FA5D41B256E02B897A636DB0BAD8ECC" + } + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "el9-manager-tools-beta-updates-aarch64-rocky", + "parent_channel_label": "rockylinux-9-aarch64", + "product_id": 2547, + "repository_id": 6022, + "parent_product_id": 2542, + "root_product_id": -37, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Updates/EL/9-CLIENT-TOOLS-BETA/aarch64/update/", + "release_stage": "alpha", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "EL9-Manager-Tools-Beta-Updates for aarch64 Rocky", + "product_type": "extension", + "gpg_info": [ + { + "url": "file:///etc/pki/rpm-gpg/el-tools-gpg-pubkey-39db7c82.key", + "keyId": "39DB7C82", + "fingerprint": "FEAB502539D846DB2C0961CA70AF9E8139DB7C82" + }, + { + "url": "file:///etc/pki/rpm-gpg/suse-addon-97a636db0bad8ecc.key", + "keyId": "97A636DB0BAD8ECC", + "fingerprint": "CCB57F6E2FA5D41B256E02B897A636DB0BAD8ECC" + } + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "el9-manager-tools-beta-debuginfo-updates-aarch64-rocky", + "parent_channel_label": "rockylinux-9-aarch64", + "product_id": 2547, + "repository_id": 6023, + "parent_product_id": 2542, + "root_product_id": -37, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Updates/EL/9-CLIENT-TOOLS-BETA/aarch64/update_debug/", + "release_stage": "alpha", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "EL9-Manager-Tools-Beta-Debuginfo-Updates for aarch64 Rocky", + "product_type": "extension", + "gpg_info": [ + { + "url": "file:///etc/pki/rpm-gpg/el-tools-gpg-pubkey-39db7c82.key", + "keyId": "39DB7C82", + "fingerprint": "FEAB502539D846DB2C0961CA70AF9E8139DB7C82" + }, + { + "url": "file:///etc/pki/rpm-gpg/suse-addon-97a636db0bad8ecc.key", + "keyId": "97A636DB0BAD8ECC", + "fingerprint": "CCB57F6E2FA5D41B256E02B897A636DB0BAD8ECC" + } + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "el9-manager-tools-beta-pool-aarch64-rocky", + "parent_channel_label": "rockylinux-9-aarch64", + "product_id": 2547, + "repository_id": 6024, + "parent_product_id": 2542, + "root_product_id": -37, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Products/EL/9-CLIENT-TOOLS-BETA/aarch64/product/", + "release_stage": "alpha", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "EL9-Manager-Tools-Beta-Pool for aarch64 Rocky", + "product_type": "extension", + "gpg_info": [ + { + "url": "file:///etc/pki/rpm-gpg/el-tools-gpg-pubkey-39db7c82.key", + "keyId": "39DB7C82", + "fingerprint": "FEAB502539D846DB2C0961CA70AF9E8139DB7C82" + }, + { + "url": "file:///etc/pki/rpm-gpg/suse-addon-97a636db0bad8ecc.key", + "keyId": "97A636DB0BAD8ECC", + "fingerprint": "CCB57F6E2FA5D41B256E02B897A636DB0BAD8ECC" + } + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "el9-manager-tools-beta-debuginfo-pool-aarch64-rocky", + "parent_channel_label": "rockylinux-9-aarch64", + "product_id": 2547, + "repository_id": 6025, + "parent_product_id": 2542, + "root_product_id": -37, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Products/EL/9-CLIENT-TOOLS-BETA/aarch64/product_debug/", + "release_stage": "alpha", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "EL9-Manager-Tools-Beta-Debuginfo-Pool for aarch64 Rocky", + "product_type": "extension", + "gpg_info": [ + { + "url": "file:///etc/pki/rpm-gpg/el-tools-gpg-pubkey-39db7c82.key", + "keyId": "39DB7C82", + "fingerprint": "FEAB502539D846DB2C0961CA70AF9E8139DB7C82" + }, + { + "url": "file:///etc/pki/rpm-gpg/suse-addon-97a636db0bad8ecc.key", + "keyId": "97A636DB0BAD8ECC", + "fingerprint": "CCB57F6E2FA5D41B256E02B897A636DB0BAD8ECC" + } + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "rockylinux-9-ha-x86_64", + "parent_channel_label": "rockylinux-9-x86_64", + "product_id": -36, + "repository_id": -465, + "parent_product_id": null, + "root_product_id": -36, + "update_tag": null, + "url": "https://mirrors.rockylinux.org/mirrorlist?repo=HighAvailability-9&arch=x86_64", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "rockylinux-9-ha for x86_64", + "product_type": "base", + "gpg_info": [ + { + "url": "file:///etc/pki/rpm-gpg/RPM-GPG-KEY-Rocky-9", + "keyId": "350D275D", + "fingerprint": "21CB256AE16FC54C6E652949702D426D350D275D" + } + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "rockylinux-9-extras-x86_64", + "parent_channel_label": "rockylinux-9-x86_64", + "product_id": -36, + "repository_id": -463, + "parent_product_id": null, + "root_product_id": -36, + "update_tag": null, + "url": "https://mirrors.rockylinux.org/mirrorlist?repo=extras-9&arch=x86_64", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "rockylinux-9-extras for x86_64", + "product_type": "base", + "gpg_info": [ + { + "url": "file:///etc/pki/rpm-gpg/RPM-GPG-KEY-Rocky-9", + "keyId": "350D275D", + "fingerprint": "21CB256AE16FC54C6E652949702D426D350D275D" + } + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "rockylinux-9-appstream-x86_64", + "parent_channel_label": "rockylinux-9-x86_64", + "product_id": -36, + "repository_id": -462, + "parent_product_id": null, + "root_product_id": -36, + "update_tag": null, + "url": "https://mirrors.rockylinux.org/mirrorlist?repo=AppStream-9&arch=x86_64", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "rockylinux-9-appstream for x86_64", + "product_type": "base", + "gpg_info": [ + { + "url": "file:///etc/pki/rpm-gpg/RPM-GPG-KEY-Rocky-9", + "keyId": "350D275D", + "fingerprint": "21CB256AE16FC54C6E652949702D426D350D275D" + } + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "rockylinux-9-x86_64", + "parent_channel_label": null, + "product_id": -36, + "repository_id": -461, + "parent_product_id": null, + "root_product_id": -36, + "update_tag": null, + "url": "https://mirrors.rockylinux.org/mirrorlist?repo=BaseOS-9&arch=x86_64", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "rockylinux-9 for x86_64", + "product_type": "base", + "gpg_info": [ + { + "url": "file:///etc/pki/rpm-gpg/RPM-GPG-KEY-Rocky-9", + "keyId": "350D275D", + "fingerprint": "21CB256AE16FC54C6E652949702D426D350D275D" + } + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "el9-manager-tools-updates-x86_64-rocky", + "parent_channel_label": "rockylinux-9-x86_64", + "product_id": 2543, + "repository_id": 6008, + "parent_product_id": -36, + "root_product_id": -36, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Updates/EL/9-CLIENT-TOOLS/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "EL9-Manager-Tools-Updates for x86_64 Rocky", + "product_type": "extension", + "gpg_info": [ + { + "url": "file:///etc/pki/rpm-gpg/el-tools-gpg-pubkey-39db7c82.key", + "keyId": "39DB7C82", + "fingerprint": "FEAB502539D846DB2C0961CA70AF9E8139DB7C82" + }, + { + "url": "file:///etc/pki/rpm-gpg/suse-addon-97a636db0bad8ecc.key", + "keyId": "97A636DB0BAD8ECC", + "fingerprint": "CCB57F6E2FA5D41B256E02B897A636DB0BAD8ECC" + } + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "el9-manager-tools-debuginfo-updates-x86_64-rocky", + "parent_channel_label": "rockylinux-9-x86_64", + "product_id": 2543, + "repository_id": 6009, + "parent_product_id": -36, + "root_product_id": -36, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Updates/EL/9-CLIENT-TOOLS/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "EL9-Manager-Tools-Debuginfo-Updates for x86_64 Rocky", + "product_type": "extension", + "gpg_info": [ + { + "url": "file:///etc/pki/rpm-gpg/el-tools-gpg-pubkey-39db7c82.key", + "keyId": "39DB7C82", + "fingerprint": "FEAB502539D846DB2C0961CA70AF9E8139DB7C82" + }, + { + "url": "file:///etc/pki/rpm-gpg/suse-addon-97a636db0bad8ecc.key", + "keyId": "97A636DB0BAD8ECC", + "fingerprint": "CCB57F6E2FA5D41B256E02B897A636DB0BAD8ECC" + } + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "el9-manager-tools-pool-x86_64-rocky", + "parent_channel_label": "rockylinux-9-x86_64", + "product_id": 2543, + "repository_id": 6010, + "parent_product_id": -36, + "root_product_id": -36, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Products/EL/9-CLIENT-TOOLS/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "EL9-Manager-Tools-Pool for x86_64 Rocky", + "product_type": "extension", + "gpg_info": [ + { + "url": "file:///etc/pki/rpm-gpg/el-tools-gpg-pubkey-39db7c82.key", + "keyId": "39DB7C82", + "fingerprint": "FEAB502539D846DB2C0961CA70AF9E8139DB7C82" + }, + { + "url": "file:///etc/pki/rpm-gpg/suse-addon-97a636db0bad8ecc.key", + "keyId": "97A636DB0BAD8ECC", + "fingerprint": "CCB57F6E2FA5D41B256E02B897A636DB0BAD8ECC" + } + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "el9-manager-tools-debuginfo-pool-x86_64-rocky", + "parent_channel_label": "rockylinux-9-x86_64", + "product_id": 2543, + "repository_id": 6011, + "parent_product_id": -36, + "root_product_id": -36, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Products/EL/9-CLIENT-TOOLS/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "EL9-Manager-Tools-Debuginfo-Pool for x86_64 Rocky", + "product_type": "extension", + "gpg_info": [ + { + "url": "file:///etc/pki/rpm-gpg/el-tools-gpg-pubkey-39db7c82.key", + "keyId": "39DB7C82", + "fingerprint": "FEAB502539D846DB2C0961CA70AF9E8139DB7C82" + }, + { + "url": "file:///etc/pki/rpm-gpg/suse-addon-97a636db0bad8ecc.key", + "keyId": "97A636DB0BAD8ECC", + "fingerprint": "CCB57F6E2FA5D41B256E02B897A636DB0BAD8ECC" + } + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "el9-manager-tools-beta-updates-x86_64-rocky", + "parent_channel_label": "rockylinux-9-x86_64", + "product_id": 2548, + "repository_id": 6027, + "parent_product_id": 2543, + "root_product_id": -36, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Updates/EL/9-CLIENT-TOOLS-BETA/x86_64/update/", + "release_stage": "alpha", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "EL9-Manager-Tools-Beta-Updates for x86_64 Rocky", + "product_type": "extension", + "gpg_info": [ + { + "url": "file:///etc/pki/rpm-gpg/el-tools-gpg-pubkey-39db7c82.key", + "keyId": "39DB7C82", + "fingerprint": "FEAB502539D846DB2C0961CA70AF9E8139DB7C82" + }, + { + "url": "file:///etc/pki/rpm-gpg/suse-addon-97a636db0bad8ecc.key", + "keyId": "97A636DB0BAD8ECC", + "fingerprint": "CCB57F6E2FA5D41B256E02B897A636DB0BAD8ECC" + } + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "el9-manager-tools-beta-debuginfo-updates-x86_64-rocky", + "parent_channel_label": "rockylinux-9-x86_64", + "product_id": 2548, + "repository_id": 6028, + "parent_product_id": 2543, + "root_product_id": -36, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Updates/EL/9-CLIENT-TOOLS-BETA/x86_64/update_debug/", + "release_stage": "alpha", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "EL9-Manager-Tools-Beta-Debuginfo-Updates for x86_64 Rocky", + "product_type": "extension", + "gpg_info": [ + { + "url": "file:///etc/pki/rpm-gpg/el-tools-gpg-pubkey-39db7c82.key", + "keyId": "39DB7C82", + "fingerprint": "FEAB502539D846DB2C0961CA70AF9E8139DB7C82" + }, + { + "url": "file:///etc/pki/rpm-gpg/suse-addon-97a636db0bad8ecc.key", + "keyId": "97A636DB0BAD8ECC", + "fingerprint": "CCB57F6E2FA5D41B256E02B897A636DB0BAD8ECC" + } + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "el9-manager-tools-beta-pool-x86_64-rocky", + "parent_channel_label": "rockylinux-9-x86_64", + "product_id": 2548, + "repository_id": 6029, + "parent_product_id": 2543, + "root_product_id": -36, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Products/EL/9-CLIENT-TOOLS-BETA/x86_64/product/", + "release_stage": "alpha", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "EL9-Manager-Tools-Beta-Pool for x86_64 Rocky", + "product_type": "extension", + "gpg_info": [ + { + "url": "file:///etc/pki/rpm-gpg/el-tools-gpg-pubkey-39db7c82.key", + "keyId": "39DB7C82", + "fingerprint": "FEAB502539D846DB2C0961CA70AF9E8139DB7C82" + }, + { + "url": "file:///etc/pki/rpm-gpg/suse-addon-97a636db0bad8ecc.key", + "keyId": "97A636DB0BAD8ECC", + "fingerprint": "CCB57F6E2FA5D41B256E02B897A636DB0BAD8ECC" + } + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "el9-manager-tools-beta-debuginfo-pool-x86_64-rocky", + "parent_channel_label": "rockylinux-9-x86_64", + "product_id": 2548, + "repository_id": 6030, + "parent_product_id": 2543, + "root_product_id": -36, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Products/EL/9-CLIENT-TOOLS-BETA/x86_64/product_debug/", + "release_stage": "alpha", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "EL9-Manager-Tools-Beta-Debuginfo-Pool for x86_64 Rocky", + "product_type": "extension", + "gpg_info": [ + { + "url": "file:///etc/pki/rpm-gpg/el-tools-gpg-pubkey-39db7c82.key", + "keyId": "39DB7C82", + "fingerprint": "FEAB502539D846DB2C0961CA70AF9E8139DB7C82" + }, + { + "url": "file:///etc/pki/rpm-gpg/suse-addon-97a636db0bad8ecc.key", + "keyId": "97A636DB0BAD8ECC", + "fingerprint": "CCB57F6E2FA5D41B256E02B897A636DB0BAD8ECC" + } + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "el9-pool-x86_64", + "parent_channel_label": null, + "product_id": -35, + "repository_id": -460, + "parent_product_id": null, + "root_product_id": -35, + "update_tag": null, + "url": "http://localhost/pub/repositories/empty/", + "release_stage": "released", + "mandatory": true, + "signed": false, + "recommended": false, + "channel_name": "EL9-Pool for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Uyuni", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sll-9-updates-x86_64", + "parent_channel_label": "el9-pool-x86_64", + "product_id": 2538, + "repository_id": 5963, + "parent_product_id": -35, + "root_product_id": -35, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Updates/SLL/9/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLL-9-Updates for x86_64", + "product_type": "extension", + "gpg_info": [ + { + "url": "file:///etc/pki/rpm-gpg/suse-liberty-v2-gpg-pubkey-177086FAB0F9C64F.key", + "keyId": "B0F9C64F", + "fingerprint": "F8CD9BBD5C9614F95CA85788177086FAB0F9C64F" + } + ], + "tags": [ + "SUMA4.3", + "Uyuni", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sll-9-debug-updates-x86_64", + "parent_channel_label": "el9-pool-x86_64", + "product_id": 2538, + "repository_id": 5965, + "parent_product_id": -35, + "root_product_id": -35, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Updates/SLL/9/debug/update/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLL-9-Debug-Updates for x86_64", + "product_type": "extension", + "gpg_info": [ + { + "url": "file:///etc/pki/rpm-gpg/suse-liberty-v2-gpg-pubkey-177086FAB0F9C64F.key", + "keyId": "B0F9C64F", + "fingerprint": "F8CD9BBD5C9614F95CA85788177086FAB0F9C64F" + } + ], + "tags": [ + "SUMA4.3", + "Uyuni", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sll-as-9-updates-x86_64", + "parent_channel_label": "el9-pool-x86_64", + "product_id": 2538, + "repository_id": 5966, + "parent_product_id": -35, + "root_product_id": -35, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Updates/SLL-AS/9/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLL-AS-9-Updates for x86_64", + "product_type": "extension", + "gpg_info": [ + { + "url": "file:///etc/pki/rpm-gpg/suse-liberty-v2-gpg-pubkey-177086FAB0F9C64F.key", + "keyId": "B0F9C64F", + "fingerprint": "F8CD9BBD5C9614F95CA85788177086FAB0F9C64F" + } + ], + "tags": [ + "SUMA4.3", + "Uyuni", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sll-as-9-debug-updates-x86_64", + "parent_channel_label": "el9-pool-x86_64", + "product_id": 2538, + "repository_id": 5968, + "parent_product_id": -35, + "root_product_id": -35, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Updates/SLL-AS/9/debug/update/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLL-AS-9-Debug-Updates for x86_64", + "product_type": "extension", + "gpg_info": [ + { + "url": "file:///etc/pki/rpm-gpg/suse-liberty-v2-gpg-pubkey-177086FAB0F9C64F.key", + "keyId": "B0F9C64F", + "fingerprint": "F8CD9BBD5C9614F95CA85788177086FAB0F9C64F" + } + ], + "tags": [ + "SUMA4.3", + "Uyuni", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sll-cb-9-updates-x86_64", + "parent_channel_label": "el9-pool-x86_64", + "product_id": 2538, + "repository_id": 5969, + "parent_product_id": -35, + "root_product_id": -35, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Updates/SLL-CB/9/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLL-CB-9-Updates for x86_64", + "product_type": "extension", + "gpg_info": [ + { + "url": "file:///etc/pki/rpm-gpg/suse-liberty-v2-gpg-pubkey-177086FAB0F9C64F.key", + "keyId": "B0F9C64F", + "fingerprint": "F8CD9BBD5C9614F95CA85788177086FAB0F9C64F" + } + ], + "tags": [ + "SUMA4.3", + "Uyuni", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sll-cb-9-debug-updates-x86_64", + "parent_channel_label": "el9-pool-x86_64", + "product_id": 2538, + "repository_id": 5971, + "parent_product_id": -35, + "root_product_id": -35, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Updates/SLL-CB/9/debug/update/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLL-CB-9-Debug-Updates for x86_64", + "product_type": "extension", + "gpg_info": [ + { + "url": "file:///etc/pki/rpm-gpg/suse-liberty-v2-gpg-pubkey-177086FAB0F9C64F.key", + "keyId": "B0F9C64F", + "fingerprint": "F8CD9BBD5C9614F95CA85788177086FAB0F9C64F" + } + ], + "tags": [ + "SUMA4.3", + "Uyuni", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sll-9-ha-updates-x86_64", + "parent_channel_label": "el9-pool-x86_64", + "product_id": 2539, + "repository_id": 5972, + "parent_product_id": 2538, + "root_product_id": -35, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Updates/SLL-HA/9/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLL-9-HA-Updates for x86_64", + "product_type": "extension", + "gpg_info": [ + { + "url": "file:///etc/pki/rpm-gpg/suse-liberty-v2-gpg-pubkey-177086FAB0F9C64F.key", + "keyId": "B0F9C64F", + "fingerprint": "F8CD9BBD5C9614F95CA85788177086FAB0F9C64F" + } + ], + "tags": [ + "SUMA4.3", + "Uyuni", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sll-9-ha-debug-updates-x86_64", + "parent_channel_label": "el9-pool-x86_64", + "product_id": 2539, + "repository_id": 5974, + "parent_product_id": 2538, + "root_product_id": -35, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Updates/SLL-HA/9/debug/update/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLL-9-HA-Debug-Updates for x86_64", + "product_type": "extension", + "gpg_info": [ + { + "url": "file:///etc/pki/rpm-gpg/suse-liberty-v2-gpg-pubkey-177086FAB0F9C64F.key", + "keyId": "B0F9C64F", + "fingerprint": "F8CD9BBD5C9614F95CA85788177086FAB0F9C64F" + } + ], + "tags": [ + "SUMA4.3", + "Uyuni", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "el9-manager-tools-updates-x86_64", + "parent_channel_label": "el9-pool-x86_64", + "product_id": 2543, + "repository_id": 6008, + "parent_product_id": -35, + "root_product_id": -35, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Updates/EL/9-CLIENT-TOOLS/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "EL9-Manager-Tools-Updates for x86_64", + "product_type": "extension", + "gpg_info": [ + { + "url": "file:///etc/pki/rpm-gpg/el-tools-gpg-pubkey-39db7c82.key", + "keyId": "39DB7C82", + "fingerprint": "FEAB502539D846DB2C0961CA70AF9E8139DB7C82" + }, + { + "url": "file:///etc/pki/rpm-gpg/suse-addon-97a636db0bad8ecc.key", + "keyId": "97A636DB0BAD8ECC", + "fingerprint": "CCB57F6E2FA5D41B256E02B897A636DB0BAD8ECC" + } + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "el9-manager-tools-debuginfo-updates-x86_64", + "parent_channel_label": "el9-pool-x86_64", + "product_id": 2543, + "repository_id": 6009, + "parent_product_id": -35, + "root_product_id": -35, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Updates/EL/9-CLIENT-TOOLS/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "EL9-Manager-Tools-Debuginfo-Updates for x86_64", + "product_type": "extension", + "gpg_info": [ + { + "url": "file:///etc/pki/rpm-gpg/el-tools-gpg-pubkey-39db7c82.key", + "keyId": "39DB7C82", + "fingerprint": "FEAB502539D846DB2C0961CA70AF9E8139DB7C82" + }, + { + "url": "file:///etc/pki/rpm-gpg/suse-addon-97a636db0bad8ecc.key", + "keyId": "97A636DB0BAD8ECC", + "fingerprint": "CCB57F6E2FA5D41B256E02B897A636DB0BAD8ECC" + } + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "el9-manager-tools-pool-x86_64", + "parent_channel_label": "el9-pool-x86_64", + "product_id": 2543, + "repository_id": 6010, + "parent_product_id": -35, + "root_product_id": -35, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Products/EL/9-CLIENT-TOOLS/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "EL9-Manager-Tools-Pool for x86_64", + "product_type": "extension", + "gpg_info": [ + { + "url": "file:///etc/pki/rpm-gpg/el-tools-gpg-pubkey-39db7c82.key", + "keyId": "39DB7C82", + "fingerprint": "FEAB502539D846DB2C0961CA70AF9E8139DB7C82" + }, + { + "url": "file:///etc/pki/rpm-gpg/suse-addon-97a636db0bad8ecc.key", + "keyId": "97A636DB0BAD8ECC", + "fingerprint": "CCB57F6E2FA5D41B256E02B897A636DB0BAD8ECC" + } + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "el9-manager-tools-debuginfo-pool-x86_64", + "parent_channel_label": "el9-pool-x86_64", + "product_id": 2543, + "repository_id": 6011, + "parent_product_id": -35, + "root_product_id": -35, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Products/EL/9-CLIENT-TOOLS/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "EL9-Manager-Tools-Debuginfo-Pool for x86_64", + "product_type": "extension", + "gpg_info": [ + { + "url": "file:///etc/pki/rpm-gpg/el-tools-gpg-pubkey-39db7c82.key", + "keyId": "39DB7C82", + "fingerprint": "FEAB502539D846DB2C0961CA70AF9E8139DB7C82" + }, + { + "url": "file:///etc/pki/rpm-gpg/suse-addon-97a636db0bad8ecc.key", + "keyId": "97A636DB0BAD8ECC", + "fingerprint": "CCB57F6E2FA5D41B256E02B897A636DB0BAD8ECC" + } + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "el9-manager-tools-beta-updates-x86_64", + "parent_channel_label": "el9-pool-x86_64", + "product_id": 2548, + "repository_id": 6027, + "parent_product_id": 2543, + "root_product_id": -35, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Updates/EL/9-CLIENT-TOOLS-BETA/x86_64/update/", + "release_stage": "alpha", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "EL9-Manager-Tools-Beta-Updates for x86_64", + "product_type": "extension", + "gpg_info": [ + { + "url": "file:///etc/pki/rpm-gpg/el-tools-gpg-pubkey-39db7c82.key", + "keyId": "39DB7C82", + "fingerprint": "FEAB502539D846DB2C0961CA70AF9E8139DB7C82" + }, + { + "url": "file:///etc/pki/rpm-gpg/suse-addon-97a636db0bad8ecc.key", + "keyId": "97A636DB0BAD8ECC", + "fingerprint": "CCB57F6E2FA5D41B256E02B897A636DB0BAD8ECC" + } + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "el9-manager-tools-beta-debuginfo-updates-x86_64", + "parent_channel_label": "el9-pool-x86_64", + "product_id": 2548, + "repository_id": 6028, + "parent_product_id": 2543, + "root_product_id": -35, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Updates/EL/9-CLIENT-TOOLS-BETA/x86_64/update_debug/", + "release_stage": "alpha", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "EL9-Manager-Tools-Beta-Debuginfo-Updates for x86_64", + "product_type": "extension", + "gpg_info": [ + { + "url": "file:///etc/pki/rpm-gpg/el-tools-gpg-pubkey-39db7c82.key", + "keyId": "39DB7C82", + "fingerprint": "FEAB502539D846DB2C0961CA70AF9E8139DB7C82" + }, + { + "url": "file:///etc/pki/rpm-gpg/suse-addon-97a636db0bad8ecc.key", + "keyId": "97A636DB0BAD8ECC", + "fingerprint": "CCB57F6E2FA5D41B256E02B897A636DB0BAD8ECC" + } + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "el9-manager-tools-beta-pool-x86_64", + "parent_channel_label": "el9-pool-x86_64", + "product_id": 2548, + "repository_id": 6029, + "parent_product_id": 2543, + "root_product_id": -35, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Products/EL/9-CLIENT-TOOLS-BETA/x86_64/product/", + "release_stage": "alpha", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "EL9-Manager-Tools-Beta-Pool for x86_64", + "product_type": "extension", + "gpg_info": [ + { + "url": "file:///etc/pki/rpm-gpg/el-tools-gpg-pubkey-39db7c82.key", + "keyId": "39DB7C82", + "fingerprint": "FEAB502539D846DB2C0961CA70AF9E8139DB7C82" + }, + { + "url": "file:///etc/pki/rpm-gpg/suse-addon-97a636db0bad8ecc.key", + "keyId": "97A636DB0BAD8ECC", + "fingerprint": "CCB57F6E2FA5D41B256E02B897A636DB0BAD8ECC" + } + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "el9-manager-tools-beta-debuginfo-pool-x86_64", + "parent_channel_label": "el9-pool-x86_64", + "product_id": 2548, + "repository_id": 6030, + "parent_product_id": 2543, + "root_product_id": -35, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Products/EL/9-CLIENT-TOOLS-BETA/x86_64/product_debug/", + "release_stage": "alpha", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "EL9-Manager-Tools-Beta-Debuginfo-Pool for x86_64", + "product_type": "extension", + "gpg_info": [ + { + "url": "file:///etc/pki/rpm-gpg/el-tools-gpg-pubkey-39db7c82.key", + "keyId": "39DB7C82", + "fingerprint": "FEAB502539D846DB2C0961CA70AF9E8139DB7C82" + }, + { + "url": "file:///etc/pki/rpm-gpg/suse-addon-97a636db0bad8ecc.key", + "keyId": "97A636DB0BAD8ECC", + "fingerprint": "CCB57F6E2FA5D41B256E02B897A636DB0BAD8ECC" + } + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "oes2023-sle-module-legacy15-sp4-debuginfo-updates-x86_64", + "parent_channel_label": "oes2023-pool-x86_64", + "product_id": -34, + "repository_id": -457, + "parent_product_id": null, + "root_product_id": -34, + "update_tag": null, + "url": "https://nu.novell.com/repo/$RCE/OES2023-SLE-Module-Legacy15-SP4-Debuginfo-Updates/sle-15-x86_64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "OES2023-SLE-Module-Legacy15-SP4-Debuginfo-Updates for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Uyuni", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "oes2023-sle-module-legacy15-sp4-debuginfo-pool-x86_64", + "parent_channel_label": "oes2023-pool-x86_64", + "product_id": -34, + "repository_id": -456, + "parent_product_id": null, + "root_product_id": -34, + "update_tag": null, + "url": "https://nu.novell.com/repo/$RCE/OES2023-SLE-Module-Legacy15-SP4-Debuginfo-Pool/sle-15-x86_64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "OES2023-SLE-Module-Legacy15-SP4-Debuginfo-Pool for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Uyuni", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "oes2023-sle-module-legacy15-sp4-updates-x86_64", + "parent_channel_label": "oes2023-pool-x86_64", + "product_id": -34, + "repository_id": -454, + "parent_product_id": null, + "root_product_id": -34, + "update_tag": null, + "url": "https://nu.novell.com/repo/$RCE/OES2023-SLE-Module-Legacy15-SP4-Updates/sle-15-x86_64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "OES2023-SLE-Module-Legacy15-SP4-Updates for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Uyuni", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "oes2023-sle-module-legacy15-sp4-pool-x86_64", + "parent_channel_label": "oes2023-pool-x86_64", + "product_id": -34, + "repository_id": -453, + "parent_product_id": null, + "root_product_id": -34, + "update_tag": null, + "url": "https://nu.novell.com/repo/$RCE/OES2023-SLE-Module-Legacy15-SP4-Pool/sle-15-x86_64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "OES2023-SLE-Module-Legacy15-SP4-Pool for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Uyuni", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "oes2023-sle-manager-tools15-debuginfo-updates-x86_64", + "parent_channel_label": "oes2023-pool-x86_64", + "product_id": -34, + "repository_id": -452, + "parent_product_id": null, + "root_product_id": -34, + "update_tag": null, + "url": "https://nu.novell.com/repo/$RCE/OES2023-SLE-Manager-Tools15-Debuginfo-Updates/sle-15-x86_64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "OES2023-SLE-Manager-Tools15-Debuginfo-Updates for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Uyuni", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "oes2023-sle-manager-tools15-debuginfo-pool-x86_64", + "parent_channel_label": "oes2023-pool-x86_64", + "product_id": -34, + "repository_id": -451, + "parent_product_id": null, + "root_product_id": -34, + "update_tag": null, + "url": "https://nu.novell.com/repo/$RCE/OES2023-SLE-Manager-Tools15-Debuginfo-Pool/sle-15-x86_64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "OES2023-SLE-Manager-Tools15-Debuginfo-Pool for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Uyuni", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "oes2023-sle-manager-tools15-updates-x86_64", + "parent_channel_label": "oes2023-pool-x86_64", + "product_id": -34, + "repository_id": -449, + "parent_product_id": null, + "root_product_id": -34, + "update_tag": null, + "url": "https://nu.novell.com/repo/$RCE/OES2023-SLE-Manager-Tools15-Updates/sle-15-x86_64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "OES2023-SLE-Manager-Tools15-Updates for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Uyuni", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "oes2023-sle-manager-tools15-pool-x86_64", + "parent_channel_label": "oes2023-pool-x86_64", + "product_id": -34, + "repository_id": -448, + "parent_product_id": null, + "root_product_id": -34, + "update_tag": null, + "url": "https://nu.novell.com/repo/$RCE/OES2023-SLE-Manager-Tools15-Pool/sle-15-x86_64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "OES2023-SLE-Manager-Tools15-Pool for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Uyuni", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "oes2023-sle-module-python3-15-sp4-debuginfo-updates-x86_64", + "parent_channel_label": "oes2023-pool-x86_64", + "product_id": -34, + "repository_id": -447, + "parent_product_id": null, + "root_product_id": -34, + "update_tag": null, + "url": "https://nu.novell.com/repo/$RCE/OES2023-SLE-Module-Python3-15-SP4-Debuginfo-Updates/sle-15-x86_64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "OES2023-SLE-Module-Python3-15-SP4-Debuginfo-Updates for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Uyuni", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "oes2023-sle-module-python3-15-sp4-debuginfo-pool-x86_64", + "parent_channel_label": "oes2023-pool-x86_64", + "product_id": -34, + "repository_id": -446, + "parent_product_id": null, + "root_product_id": -34, + "update_tag": null, + "url": "https://nu.novell.com/repo/$RCE/OES2023-SLE-Module-Python3-15-SP4-Debuginfo-Pool/sle-15-x86_64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "OES2023-SLE-Module-Python3-15-SP4-Debuginfo-Pool for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Uyuni", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "oes2023-sle-module-python3-15-sp4-updates-x86_64", + "parent_channel_label": "oes2023-pool-x86_64", + "product_id": -34, + "repository_id": -444, + "parent_product_id": null, + "root_product_id": -34, + "update_tag": null, + "url": "https://nu.novell.com/repo/$RCE/OES2023-SLE-Module-Python3-15-SP4-Updates/sle-15-x86_64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "OES2023-SLE-Module-Python3-15-SP4-Updates for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Uyuni", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "oes2023-sle-module-python3-15-sp4-pool-x86_64", + "parent_channel_label": "oes2023-pool-x86_64", + "product_id": -34, + "repository_id": -443, + "parent_product_id": null, + "root_product_id": -34, + "update_tag": null, + "url": "https://nu.novell.com/repo/$RCE/OES2023-SLE-Module-Python3-15-SP4-Pool/sle-15-x86_64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "OES2023-SLE-Module-Python3-15-SP4-Pool for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Uyuni", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "oes2023-sle-module-public-cloud15-sp4-debuginfo-updates-x86_64", + "parent_channel_label": "oes2023-pool-x86_64", + "product_id": -34, + "repository_id": -442, + "parent_product_id": null, + "root_product_id": -34, + "update_tag": null, + "url": "https://nu.novell.com/repo/$RCE/OES2023-SLE-Module-Public-Cloud15-SP4-Debuginfo-Updates/sle-15-x86_64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "OES2023-SLE-Module-Public-Cloud15-SP4-Debuginfo-Updates for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Uyuni", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "oes2023-sle-module-public-cloud15-sp4-debuginfo-pool-x86_64", + "parent_channel_label": "oes2023-pool-x86_64", + "product_id": -34, + "repository_id": -441, + "parent_product_id": null, + "root_product_id": -34, + "update_tag": null, + "url": "https://nu.novell.com/repo/$RCE/OES2023-SLE-Module-Public-Cloud15-SP4-Debuginfo-Pool/sle-15-x86_64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "OES2023-SLE-Module-Public-Cloud15-SP4-Debuginfo-Pool for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Uyuni", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "oes2023-sle-module-public-cloud15-sp4-updates-x86_64", + "parent_channel_label": "oes2023-pool-x86_64", + "product_id": -34, + "repository_id": -439, + "parent_product_id": null, + "root_product_id": -34, + "update_tag": null, + "url": "https://nu.novell.com/repo/$RCE/OES2023-SLE-Module-Public-Cloud15-SP4-Updates/sle-15-x86_64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "OES2023-SLE-Module-Public-Cloud15-SP4-Updates for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Uyuni", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "oes2023-sle-module-public-cloud15-sp4-pool-x86_64", + "parent_channel_label": "oes2023-pool-x86_64", + "product_id": -34, + "repository_id": -438, + "parent_product_id": null, + "root_product_id": -34, + "update_tag": null, + "url": "https://nu.novell.com/repo/$RCE/OES2023-SLE-Module-Public-Cloud15-SP4-Pool/sle-15-x86_64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "OES2023-SLE-Module-Public-Cloud15-SP4-Pool for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Uyuni", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "oes2023-sle-module-web-scripting15-sp4-debuginfo-updates-x86_64", + "parent_channel_label": "oes2023-pool-x86_64", + "product_id": -34, + "repository_id": -437, + "parent_product_id": null, + "root_product_id": -34, + "update_tag": null, + "url": "https://nu.novell.com/repo/$RCE/OES2023-SLE-Module-Web-Scripting15-SP4-Debuginfo-Updates/sle-15-x86_64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "OES2023-SLE-Module-Web-Scripting15-SP4-Debuginfo-Updates for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Uyuni", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "oes2023-sle-module-web-scripting15-sp4-debuginfo-pool-x86_64", + "parent_channel_label": "oes2023-pool-x86_64", + "product_id": -34, + "repository_id": -436, + "parent_product_id": null, + "root_product_id": -34, + "update_tag": null, + "url": "https://nu.novell.com/repo/$RCE/OES2023-SLE-Module-Web-Scripting15-SP4-Debuginfo-Pool/sle-15-x86_64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "OES2023-SLE-Module-Web-Scripting15-SP4-Debuginfo-Pool for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Uyuni", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "oes2023-sle-module-web-scripting15-sp4-updates-x86_64", + "parent_channel_label": "oes2023-pool-x86_64", + "product_id": -34, + "repository_id": -434, + "parent_product_id": null, + "root_product_id": -34, + "update_tag": null, + "url": "https://nu.novell.com/repo/$RCE/OES2023-SLE-Module-Web-Scripting15-SP4-Updates/sle-15-x86_64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "OES2023-SLE-Module-Web-Scripting15-SP4-Updates for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Uyuni", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "oes2023-sle-module-web-scripting15-sp4-pool-x86_64", + "parent_channel_label": "oes2023-pool-x86_64", + "product_id": -34, + "repository_id": -433, + "parent_product_id": null, + "root_product_id": -34, + "update_tag": null, + "url": "https://nu.novell.com/repo/$RCE/OES2023-SLE-Module-Web-Scripting15-SP4-Pool/sle-15-x86_64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "OES2023-SLE-Module-Web-Scripting15-SP4-Pool for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Uyuni", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "oes2023-sle-module-desktop-applications15-sp4-debuginfo-updates-x86_64", + "parent_channel_label": "oes2023-pool-x86_64", + "product_id": -34, + "repository_id": -432, + "parent_product_id": null, + "root_product_id": -34, + "update_tag": null, + "url": "https://nu.novell.com/repo/$RCE/OES2023-SLE-Module-Desktop-Applications15-SP4-Debuginfo-Updates/sle-15-x86_64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "OES2023-SLE-Module-Desktop-Applications15-SP4-Debuginfo-Updates for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Uyuni", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "oes2023-sle-module-desktop-applications15-sp4-debuginfo-pool-x86_64", + "parent_channel_label": "oes2023-pool-x86_64", + "product_id": -34, + "repository_id": -431, + "parent_product_id": null, + "root_product_id": -34, + "update_tag": null, + "url": "https://nu.novell.com/repo/$RCE/OES2023-SLE-Module-Desktop-Applications15-SP4-Debuginfo-Pool/sle-15-x86_64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "OES2023-SLE-Module-Desktop-Applications15-SP4-Debuginfo-Pool for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Uyuni", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "oes2023-sle-module-desktop-applications15-sp4-updates-x86_64", + "parent_channel_label": "oes2023-pool-x86_64", + "product_id": -34, + "repository_id": -429, + "parent_product_id": null, + "root_product_id": -34, + "update_tag": null, + "url": "https://nu.novell.com/repo/$RCE/OES2023-SLE-Module-Desktop-Applications15-SP4-Updates/sle-15-x86_64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "OES2023-SLE-Module-Desktop-Applications15-SP4-Updates for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Uyuni", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "oes2023-sle-module-desktop-applications15-sp4-pool-x86_64", + "parent_channel_label": "oes2023-pool-x86_64", + "product_id": -34, + "repository_id": -428, + "parent_product_id": null, + "root_product_id": -34, + "update_tag": null, + "url": "https://nu.novell.com/repo/$RCE/OES2023-SLE-Module-Desktop-Applications15-SP4-Pool/sle-15-x86_64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "OES2023-SLE-Module-Desktop-Applications15-SP4-Pool for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Uyuni", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "oes2023-sle-module-devtools15-sp4-debuginfo-updates-x86_64", + "parent_channel_label": "oes2023-pool-x86_64", + "product_id": -34, + "repository_id": -427, + "parent_product_id": null, + "root_product_id": -34, + "update_tag": null, + "url": "https://nu.novell.com/repo/$RCE/OES2023-SLE-Module-DevTools15-SP4-Debuginfo-Updates/sle-15-x86_64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "OES2023-SLE-Module-DevTools15-SP4-Debuginfo-Updates for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Uyuni", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "oes2023-sle-module-devtools15-sp4-debuginfo-pool-x86_64", + "parent_channel_label": "oes2023-pool-x86_64", + "product_id": -34, + "repository_id": -426, + "parent_product_id": null, + "root_product_id": -34, + "update_tag": null, + "url": "https://nu.novell.com/repo/$RCE/OES2023-SLE-Module-DevTools15-SP4-Debuginfo-Pool/sle-15-x86_64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "OES2023-SLE-Module-DevTools15-SP4-Debuginfo-Pool for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Uyuni", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "oes2023-sle-module-devtools15-sp4-updates-x86_64", + "parent_channel_label": "oes2023-pool-x86_64", + "product_id": -34, + "repository_id": -424, + "parent_product_id": null, + "root_product_id": -34, + "update_tag": null, + "url": "https://nu.novell.com/repo/$RCE/OES2023-SLE-Module-DevTools15-SP4-Updates/sle-15-x86_64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "OES2023-SLE-Module-DevTools15-SP4-Updates for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Uyuni", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "oes2023-sle-module-devtools15-sp4-pool-x86_64", + "parent_channel_label": "oes2023-pool-x86_64", + "product_id": -34, + "repository_id": -423, + "parent_product_id": null, + "root_product_id": -34, + "update_tag": null, + "url": "https://nu.novell.com/repo/$RCE/OES2023-SLE-Module-DevTools15-SP4-Pool/sle-15-x86_64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "OES2023-SLE-Module-DevTools15-SP4-Pool for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Uyuni", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "oes2023-sle-module-containers15-sp4-debuginfo-updates-x86_64", + "parent_channel_label": "oes2023-pool-x86_64", + "product_id": -34, + "repository_id": -422, + "parent_product_id": null, + "root_product_id": -34, + "update_tag": null, + "url": "https://nu.novell.com/repo/$RCE/OES2023-SLE-Module-Containers15-SP4-Debuginfo-Updates/sle-15-x86_64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "OES2023-SLE-Module-Containers15-SP4-Debuginfo-Updates for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Uyuni", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "oes2023-sle-module-containers15-sp4-debuginfo-pool-x86_64", + "parent_channel_label": "oes2023-pool-x86_64", + "product_id": -34, + "repository_id": -421, + "parent_product_id": null, + "root_product_id": -34, + "update_tag": null, + "url": "https://nu.novell.com/repo/$RCE/OES2023-SLE-Module-Containers15-SP4-Debuginfo-Pool/sle-15-x86_64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "OES2023-SLE-Module-Containers15-SP4-Debuginfo-Pool for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Uyuni", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "oes2023-sle-module-server-applications15-sp4-debuginfo-updates-x86_64", + "parent_channel_label": "oes2023-pool-x86_64", + "product_id": -34, + "repository_id": -419, + "parent_product_id": null, + "root_product_id": -34, + "update_tag": null, + "url": "https://nu.novell.com/repo/$RCE/OES2023-SLE-Module-Server-Applications15-SP4-Debuginfo-Updates/sle-15-x86_64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "OES2023-SLE-Module-Server-Applications15-SP4-Debuginfo-Updates for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Uyuni", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "oes2023-sle-module-server-applications15-sp4-debuginfo-pool-x86_64", + "parent_channel_label": "oes2023-pool-x86_64", + "product_id": -34, + "repository_id": -418, + "parent_product_id": null, + "root_product_id": -34, + "update_tag": null, + "url": "https://nu.novell.com/repo/$RCE/OES2023-SLE-Module-Server-Applications15-SP4-Debuginfo-Pool/sle-15-x86_64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "OES2023-SLE-Module-Server-Applications15-SP4-Debuginfo-Pool for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Uyuni", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "oes2023-sle-product-sles15-sp4-debuginfo-updates-x86_64", + "parent_channel_label": "oes2023-pool-x86_64", + "product_id": -34, + "repository_id": -416, + "parent_product_id": null, + "root_product_id": -34, + "update_tag": null, + "url": "https://nu.novell.com/repo/$RCE/OES2023-SLE-Product-SLES15-SP4-Debuginfo-Updates/sle-15-x86_64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "OES2023-SLE-Product-SLES15-SP4-Debuginfo-Updates for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Uyuni", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "oes2023-sle-product-sles15-sp4-debuginfo-pool-x86_64", + "parent_channel_label": "oes2023-pool-x86_64", + "product_id": -34, + "repository_id": -415, + "parent_product_id": null, + "root_product_id": -34, + "update_tag": null, + "url": "https://nu.novell.com/repo/$RCE/OES2023-SLE-Product-SLES15-SP4-Debuginfo-Pool/sle-15-x86_64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "OES2023-SLE-Product-SLES15-SP4-Debuginfo-Pool for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Uyuni", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "oes2023-sle-module-basesystem15-sp4-debuginfo-updates-x86_64", + "parent_channel_label": "oes2023-pool-x86_64", + "product_id": -34, + "repository_id": -413, + "parent_product_id": null, + "root_product_id": -34, + "update_tag": null, + "url": "https://nu.novell.com/repo/$RCE/OES2023-SLE-Module-Basesystem15-SP4-Debuginfo-Updates/sle-15-x86_64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "OES2023-SLE-Module-Basesystem15-SP4-Debuginfo-Updates for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Uyuni", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "oes2023-sle-module-basesystem15-sp4-debuginfo-pool-x86_64", + "parent_channel_label": "oes2023-pool-x86_64", + "product_id": -34, + "repository_id": -412, + "parent_product_id": null, + "root_product_id": -34, + "update_tag": null, + "url": "https://nu.novell.com/repo/$RCE/OES2023-SLE-Module-Basesystem15-SP4-Debuginfo-Pool/sle-15-x86_64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "OES2023-SLE-Module-Basesystem15-SP4-Debuginfo-Pool for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Uyuni", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "oes2023-sle-module-containers15-sp4-updates-x86_64", + "parent_channel_label": "oes2023-pool-x86_64", + "product_id": -34, + "repository_id": -410, + "parent_product_id": null, + "root_product_id": -34, + "update_tag": null, + "url": "https://nu.novell.com/repo/$RCE/OES2023-SLE-Module-Containers15-SP4-Updates/sle-15-x86_64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "OES2023-SLE-Module-Containers15-SP4-Updates for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Uyuni", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "oes2023-sle-module-containers15-sp4-pool-x86_64", + "parent_channel_label": "oes2023-pool-x86_64", + "product_id": -34, + "repository_id": -409, + "parent_product_id": null, + "root_product_id": -34, + "update_tag": null, + "url": "https://nu.novell.com/repo/$RCE/OES2023-SLE-Module-Containers15-SP4-Pool/sle-15-x86_64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "OES2023-SLE-Module-Containers15-SP4-Pool for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Uyuni", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "oes2023-sle-module-server-applications15-sp4-updates-x86_64", + "parent_channel_label": "oes2023-pool-x86_64", + "product_id": -34, + "repository_id": -408, + "parent_product_id": null, + "root_product_id": -34, + "update_tag": null, + "url": "https://nu.novell.com/repo/$RCE/OES2023-SLE-Module-Server-Applications15-SP4-Updates/sle-15-x86_64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "OES2023-SLE-Module-Server-Applications15-SP4-Updates for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Uyuni", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "oes2023-sle-module-server-applications15-sp4-pool-x86_64", + "parent_channel_label": "oes2023-pool-x86_64", + "product_id": -34, + "repository_id": -407, + "parent_product_id": null, + "root_product_id": -34, + "update_tag": null, + "url": "https://nu.novell.com/repo/$RCE/OES2023-SLE-Module-Server-Applications15-SP4-Pool/sle-15-x86_64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "OES2023-SLE-Module-Server-Applications15-SP4-Pool for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Uyuni", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "oes2023-sle-product-sles15-sp4-updates-x86_64", + "parent_channel_label": "oes2023-pool-x86_64", + "product_id": -34, + "repository_id": -406, + "parent_product_id": null, + "root_product_id": -34, + "update_tag": null, + "url": "https://nu.novell.com/repo/$RCE/OES2023-SLE-Product-SLES15-SP4-Updates/sle-15-x86_64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "OES2023-SLE-Product-SLES15-SP4-Updates for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Uyuni", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "oes2023-sle-product-sles15-sp4-pool-x86_64", + "parent_channel_label": "oes2023-pool-x86_64", + "product_id": -34, + "repository_id": -405, + "parent_product_id": null, + "root_product_id": -34, + "update_tag": null, + "url": "https://nu.novell.com/repo/$RCE/OES2023-SLE-Product-SLES15-SP4-Pool/sle-15-x86_64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "OES2023-SLE-Product-SLES15-SP4-Pool for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Uyuni", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "oes2023-sle-module-basesystem15-sp4-updates-x86_64", + "parent_channel_label": "oes2023-pool-x86_64", + "product_id": -34, + "repository_id": -404, + "parent_product_id": null, + "root_product_id": -34, + "update_tag": null, + "url": "https://nu.novell.com/repo/$RCE/OES2023-SLE-Module-Basesystem15-SP4-Updates/sle-15-x86_64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "OES2023-SLE-Module-Basesystem15-SP4-Updates for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Uyuni", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "oes2023-sle-module-basesystem15-sp4-pool-x86_64", + "parent_channel_label": "oes2023-pool-x86_64", + "product_id": -34, + "repository_id": -403, + "parent_product_id": null, + "root_product_id": -34, + "update_tag": null, + "url": "https://nu.novell.com/repo/$RCE/OES2023-SLE-Module-Basesystem15-SP4-Pool/sle-15-x86_64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "OES2023-SLE-Module-Basesystem15-SP4-Pool for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Uyuni", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "oes2023-updates-x86_64", + "parent_channel_label": "oes2023-pool-x86_64", + "product_id": -34, + "repository_id": -402, + "parent_product_id": null, + "root_product_id": -34, + "update_tag": null, + "url": "https://nu.novell.com/repo/$RCE/OES2023-Updates/sle-15-x86_64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "OES2023-Updates for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Uyuni", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "oes2023-pool-x86_64", + "parent_channel_label": null, + "product_id": -34, + "repository_id": -401, + "parent_product_id": null, + "root_product_id": -34, + "update_tag": null, + "url": "https://nu.novell.com/repo/$RCE/OES2023-Pool/sle-15-x86_64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "OES2023-Pool for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Uyuni", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "ubuntu-2204-amd64-universe-updates-amd64", + "parent_channel_label": "ubuntu-2204-amd64-main-amd64", + "product_id": -33, + "repository_id": -400, + "parent_product_id": null, + "root_product_id": -33, + "update_tag": null, + "url": "http://archive.ubuntu.com/ubuntu/dists/jammy-updates/universe/binary-amd64/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "ubuntu-2204-amd64-universe-updates for amd64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "ubuntu-2204-amd64-restricted-updates-amd64", + "parent_channel_label": "ubuntu-2204-amd64-main-amd64", + "product_id": -33, + "repository_id": -399, + "parent_product_id": null, + "root_product_id": -33, + "update_tag": null, + "url": "http://archive.ubuntu.com/ubuntu/dists/jammy-updates/restricted/binary-amd64/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "ubuntu-2204-amd64-restricted-updates for amd64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "ubuntu-2204-amd64-multiverse-updates-amd64", + "parent_channel_label": "ubuntu-2204-amd64-main-amd64", + "product_id": -33, + "repository_id": -398, + "parent_product_id": null, + "root_product_id": -33, + "update_tag": null, + "url": "http://archive.ubuntu.com/ubuntu/dists/jammy-updates/multiverse/binary-amd64/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "ubuntu-2204-amd64-multiverse-updates for amd64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "ubuntu-2204-amd64-main-updates-amd64", + "parent_channel_label": "ubuntu-2204-amd64-main-amd64", + "product_id": -33, + "repository_id": -397, + "parent_product_id": null, + "root_product_id": -33, + "update_tag": null, + "url": "http://archive.ubuntu.com/ubuntu/dists/jammy-updates/main/binary-amd64/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "ubuntu-2204-amd64-main-updates for amd64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "ubuntu-2204-amd64-universe-security-amd64", + "parent_channel_label": "ubuntu-2204-amd64-main-amd64", + "product_id": -33, + "repository_id": -396, + "parent_product_id": null, + "root_product_id": -33, + "update_tag": null, + "url": "http://security.ubuntu.com/ubuntu/dists/jammy-security/universe/binary-amd64/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "ubuntu-2204-amd64-universe-security for amd64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "ubuntu-2204-amd64-restricted-security-amd64", + "parent_channel_label": "ubuntu-2204-amd64-main-amd64", + "product_id": -33, + "repository_id": -395, + "parent_product_id": null, + "root_product_id": -33, + "update_tag": null, + "url": "http://security.ubuntu.com/ubuntu/dists/jammy-security/restricted/binary-amd64/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "ubuntu-2204-amd64-restricted-security for amd64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "ubuntu-2204-amd64-multiverse-security-amd64", + "parent_channel_label": "ubuntu-2204-amd64-main-amd64", + "product_id": -33, + "repository_id": -394, + "parent_product_id": null, + "root_product_id": -33, + "update_tag": null, + "url": "http://security.ubuntu.com/ubuntu/dists/jammy-security/multiverse/binary-amd64/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "ubuntu-2204-amd64-multiverse-security for amd64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "ubuntu-2204-amd64-main-security-amd64", + "parent_channel_label": "ubuntu-2204-amd64-main-amd64", + "product_id": -33, + "repository_id": -393, + "parent_product_id": null, + "root_product_id": -33, + "update_tag": null, + "url": "http://security.ubuntu.com/ubuntu/dists/jammy-security/main/binary-amd64/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "ubuntu-2204-amd64-main-security for amd64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "ubuntu-2204-amd64-universe-backports-amd64", + "parent_channel_label": "ubuntu-2204-amd64-main-amd64", + "product_id": -33, + "repository_id": -392, + "parent_product_id": null, + "root_product_id": -33, + "update_tag": null, + "url": "http://archive.ubuntu.com/ubuntu/dists/jammy-backports/universe/binary-amd64/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "ubuntu-2204-amd64-universe-backports for amd64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "ubuntu-2204-amd64-restricted-backports-amd64", + "parent_channel_label": "ubuntu-2204-amd64-main-amd64", + "product_id": -33, + "repository_id": -391, + "parent_product_id": null, + "root_product_id": -33, + "update_tag": null, + "url": "http://archive.ubuntu.com/ubuntu/dists/jammy-backports/restricted/binary-amd64/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "ubuntu-2204-amd64-restricted-backports for amd64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "ubuntu-2204-amd64-multiverse-backports-amd64", + "parent_channel_label": "ubuntu-2204-amd64-main-amd64", + "product_id": -33, + "repository_id": -390, + "parent_product_id": null, + "root_product_id": -33, + "update_tag": null, + "url": "http://archive.ubuntu.com/ubuntu/dists/jammy-backports/multiverse/binary-amd64/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "ubuntu-2204-amd64-multiverse-backports for amd64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "ubuntu-2204-amd64-main-backports-amd64", + "parent_channel_label": "ubuntu-2204-amd64-main-amd64", + "product_id": -33, + "repository_id": -389, + "parent_product_id": null, + "root_product_id": -33, + "update_tag": null, + "url": "http://archive.ubuntu.com/ubuntu/dists/jammy-backports/main/binary-amd64/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "ubuntu-2204-amd64-main-backports for amd64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "ubuntu-2204-amd64-universe-amd64", + "parent_channel_label": "ubuntu-2204-amd64-main-amd64", + "product_id": -33, + "repository_id": -388, + "parent_product_id": null, + "root_product_id": -33, + "update_tag": null, + "url": "http://archive.ubuntu.com/ubuntu/dists/jammy/universe/binary-amd64/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "ubuntu-2204-amd64-universe for amd64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "ubuntu-2204-amd64-restricted-amd64", + "parent_channel_label": "ubuntu-2204-amd64-main-amd64", + "product_id": -33, + "repository_id": -387, + "parent_product_id": null, + "root_product_id": -33, + "update_tag": null, + "url": "http://archive.ubuntu.com/ubuntu/dists/jammy/restricted/binary-amd64/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "ubuntu-2204-amd64-restricted for amd64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "ubuntu-2204-amd64-multiverse-amd64", + "parent_channel_label": "ubuntu-2204-amd64-main-amd64", + "product_id": -33, + "repository_id": -386, + "parent_product_id": null, + "root_product_id": -33, + "update_tag": null, + "url": "http://archive.ubuntu.com/ubuntu/dists/jammy/multiverse/binary-amd64/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "ubuntu-2204-amd64-multiverse for amd64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "ubuntu-2204-amd64-main-amd64", + "parent_channel_label": null, + "product_id": -33, + "repository_id": -385, + "parent_product_id": null, + "root_product_id": -33, + "update_tag": null, + "url": "http://archive.ubuntu.com/ubuntu/dists/jammy/main/binary-amd64/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "ubuntu-2204-amd64-main for amd64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "ubuntu-22.04-suse-manager-tools-amd64", + "parent_channel_label": "ubuntu-2204-amd64-main-amd64", + "product_id": 2531, + "repository_id": 5940, + "parent_product_id": -33, + "root_product_id": -33, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Updates/Ubuntu/22.04-CLIENT-TOOLS/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "Ubuntu-22.04-SUSE-Manager-Tools for amd64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "ubuntu-22.04-suse-manager-tools-beta-amd64", + "parent_channel_label": "ubuntu-2204-amd64-main-amd64", + "product_id": 2532, + "repository_id": 5941, + "parent_product_id": 2531, + "root_product_id": -33, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Updates/Ubuntu/22.04-CLIENT-TOOLS-BETA/x86_64/update/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "Ubuntu-22.04-SUSE-Manager-Tools-Beta for amd64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "debian-11-main-security-amd64", + "parent_channel_label": "debian-11-pool-amd64", + "product_id": -32, + "repository_id": -382, + "parent_product_id": null, + "root_product_id": -32, + "update_tag": null, + "url": "http://security.debian.org/debian-security/dists/bullseye-security/updates/main/binary-amd64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "debian-11-main-security for amd64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "debian-11-main-updates-amd64", + "parent_channel_label": "debian-11-pool-amd64", + "product_id": -32, + "repository_id": -381, + "parent_product_id": null, + "root_product_id": -32, + "update_tag": null, + "url": "http://deb.debian.org/debian/dists/bullseye-updates/main/binary-amd64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "debian-11-main-updates for amd64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "debian-11-pool-amd64", + "parent_channel_label": null, + "product_id": -32, + "repository_id": -380, + "parent_product_id": null, + "root_product_id": -32, + "update_tag": null, + "url": "http://deb.debian.org/debian/dists/bullseye/main/binary-amd64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "debian-11-pool for amd64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "debian-11-suse-manager-tools-amd64", + "parent_channel_label": "debian-11-pool-amd64", + "product_id": 2410, + "repository_id": 5594, + "parent_product_id": -32, + "root_product_id": -32, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Updates/Debian/11-CLIENT-TOOLS/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "Debian-11-SUSE-Manager-Tools for amd64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "debian-11-suse-manager-tools-beta-amd64", + "parent_channel_label": "debian-11-pool-amd64", + "product_id": 2411, + "repository_id": 5595, + "parent_product_id": 2410, + "root_product_id": -32, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Updates/Debian/11-CLIENT-TOOLS-BETA/x86_64/update/", + "release_stage": "alpha", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "Debian-11-SUSE-Manager-Tools-Beta for amd64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "epel7-aarch64", + "parent_channel_label": "centos7-aarch64", + "product_id": -31, + "repository_id": -342, + "parent_product_id": null, + "root_product_id": -31, + "update_tag": null, + "url": "http://mirrors.fedoraproject.org/mirrorlist?repo=epel-7&arch=aarch64", + "release_stage": "released", + "mandatory": false, + "signed": false, + "recommended": false, + "channel_name": "epel7 for aarch64", + "product_type": "base", + "gpg_info": [ + { + "url": "file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7", + "keyId": "F4A80EB5", + "fingerprint": "6341AB2753D78A78A7C27BB124C6A8A7F4A80EB5" + } + ], + "tags": [ + ] + }, + { + "channel_label": "centos7-updates-aarch64", + "parent_channel_label": "centos7-aarch64", + "product_id": -31, + "repository_id": -341, + "parent_product_id": null, + "root_product_id": -31, + "update_tag": null, + "url": "http://mirrorlist.centos.org/?release=7&arch=aarch64&repo=updates", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "centos7-updates for aarch64", + "product_type": "base", + "gpg_info": [ + { + "url": "file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7", + "keyId": "F4A80EB5", + "fingerprint": "6341AB2753D78A78A7C27BB124C6A8A7F4A80EB5" + } + ], + "tags": [ + ] + }, + { + "channel_label": "centos7-fasttrack-aarch64", + "parent_channel_label": "centos7-aarch64", + "product_id": -31, + "repository_id": -339, + "parent_product_id": null, + "root_product_id": -31, + "update_tag": null, + "url": "http://mirrorlist.centos.org/?release=7&arch=aarch64&repo=fasttrack", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "centos7-fasttrack for aarch64", + "product_type": "base", + "gpg_info": [ + { + "url": "file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7", + "keyId": "F4A80EB5", + "fingerprint": "6341AB2753D78A78A7C27BB124C6A8A7F4A80EB5" + } + ], + "tags": [ + ] + }, + { + "channel_label": "centos7-extras-aarch64", + "parent_channel_label": "centos7-aarch64", + "product_id": -31, + "repository_id": -338, + "parent_product_id": null, + "root_product_id": -31, + "update_tag": null, + "url": "http://mirrorlist.centos.org/?release=7&arch=aarch64&repo=extras", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "centos7-extras for aarch64", + "product_type": "base", + "gpg_info": [ + { + "url": "file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7", + "keyId": "F4A80EB5", + "fingerprint": "6341AB2753D78A78A7C27BB124C6A8A7F4A80EB5" + } + ], + "tags": [ + ] + }, + { + "channel_label": "centos7-cr-aarch64", + "parent_channel_label": "centos7-aarch64", + "product_id": -31, + "repository_id": -337, + "parent_product_id": null, + "root_product_id": -31, + "update_tag": null, + "url": "http://mirrorlist.centos.org/?release=7&arch=aarch64&repo=cr", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "centos7-cr for aarch64", + "product_type": "base", + "gpg_info": [ + { + "url": "file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7", + "keyId": "F4A80EB5", + "fingerprint": "6341AB2753D78A78A7C27BB124C6A8A7F4A80EB5" + } + ], + "tags": [ + ] + }, + { + "channel_label": "centos7-centosplus-aarch64", + "parent_channel_label": "centos7-aarch64", + "product_id": -31, + "repository_id": -336, + "parent_product_id": null, + "root_product_id": -31, + "update_tag": null, + "url": "http://mirrorlist.centos.org/?release=7&arch=aarch64&repo=centosplus", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "centos7-centosplus for aarch64", + "product_type": "base", + "gpg_info": [ + { + "url": "file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7", + "keyId": "F4A80EB5", + "fingerprint": "6341AB2753D78A78A7C27BB124C6A8A7F4A80EB5" + } + ], + "tags": [ + ] + }, + { + "channel_label": "centos7-aarch64", + "parent_channel_label": null, + "product_id": -31, + "repository_id": -334, + "parent_product_id": null, + "root_product_id": -31, + "update_tag": null, + "url": "http://mirrorlist.centos.org/?release=7&arch=aarch64&repo=os", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "centos7 for aarch64", + "product_type": "base", + "gpg_info": [ + { + "url": "file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7", + "keyId": "F4A80EB5", + "fingerprint": "6341AB2753D78A78A7C27BB124C6A8A7F4A80EB5" + } + ], + "tags": [ + ] + }, + { + "channel_label": "res-7-suse-manager-tools-aarch64-centos7", + "parent_channel_label": "centos7-aarch64", + "product_id": 2361, + "repository_id": 5436, + "parent_product_id": -31, + "root_product_id": -31, + "update_tag": null, + "url": "https://updates.suse.com/repo/$RCE/RES7-SUSE-Manager-Tools/aarch64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "RES-7-SUSE-Manager-Tools for aarch64 CentOS7", + "product_type": "extension", + "gpg_info": [ + { + "url": "file:///etc/pki/rpm-gpg/el-tools-gpg-pubkey-39db7c82.key", + "keyId": "39DB7C82", + "fingerprint": "FEAB502539D846DB2C0961CA70AF9E8139DB7C82" + } + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "res-7-suse-manager-tools-beta-aarch64-centos7", + "parent_channel_label": "centos7-aarch64", + "product_id": 2363, + "repository_id": 5442, + "parent_product_id": 2361, + "root_product_id": -31, + "update_tag": null, + "url": "https://updates.suse.com/repo/$RCE/RES7-SUSE-Manager-Tools-Beta/aarch64/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "RES-7-SUSE-Manager-Tools-Beta for aarch64 CentOS7", + "product_type": "extension", + "gpg_info": [ + { + "url": "file:///etc/pki/rpm-gpg/el-tools-gpg-pubkey-39db7c82.key", + "keyId": "39DB7C82", + "fingerprint": "FEAB502539D846DB2C0961CA70AF9E8139DB7C82" + } + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "centos8-powertools-aarch64", + "parent_channel_label": "centos8-aarch64", + "product_id": -30, + "repository_id": -378, + "parent_product_id": null, + "root_product_id": -30, + "update_tag": null, + "url": "https://vault.centos.org/centos/8/PowerTools/aarch64/os/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "centos8-powertools for aarch64", + "product_type": "base", + "gpg_info": [ + { + "url": "file:////etc/pki/rpm-gpg/RPM-GPG-KEY-centosofficial", + "keyId": "8483C65D", + "fingerprint": "99DB70FAE1D7CE227FB6488205B555B38483C65D" + } + ], + "tags": [ + ] + }, + { + "channel_label": "centos8-fasttrack-aarch64", + "parent_channel_label": "centos8-aarch64", + "product_id": -30, + "repository_id": -377, + "parent_product_id": null, + "root_product_id": -30, + "update_tag": null, + "url": "https://vault.centos.org/centos/8/fasttrack/aarch64/os/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "centos8-fasttrack for aarch64", + "product_type": "base", + "gpg_info": [ + { + "url": "file:////etc/pki/rpm-gpg/RPM-GPG-KEY-centosofficial", + "keyId": "8483C65D", + "fingerprint": "99DB70FAE1D7CE227FB6488205B555B38483C65D" + } + ], + "tags": [ + ] + }, + { + "channel_label": "centos8-extras-aarch64", + "parent_channel_label": "centos8-aarch64", + "product_id": -30, + "repository_id": -376, + "parent_product_id": null, + "root_product_id": -30, + "update_tag": null, + "url": "https://vault.centos.org/centos/8/extras/aarch64/os/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "centos8-extras for aarch64", + "product_type": "base", + "gpg_info": [ + { + "url": "file:////etc/pki/rpm-gpg/RPM-GPG-KEY-centosofficial", + "keyId": "8483C65D", + "fingerprint": "99DB70FAE1D7CE227FB6488205B555B38483C65D" + } + ], + "tags": [ + ] + }, + { + "channel_label": "centos8-cr-aarch64", + "parent_channel_label": "centos8-aarch64", + "product_id": -30, + "repository_id": -375, + "parent_product_id": null, + "root_product_id": -30, + "update_tag": null, + "url": "https://vault.centos.org/centos/8/cr/aarch64/os/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "centos8-cr for aarch64", + "product_type": "base", + "gpg_info": [ + { + "url": "file:////etc/pki/rpm-gpg/RPM-GPG-KEY-centosofficial", + "keyId": "8483C65D", + "fingerprint": "99DB70FAE1D7CE227FB6488205B555B38483C65D" + } + ], + "tags": [ + ] + }, + { + "channel_label": "centos8-centosplus-aarch64", + "parent_channel_label": "centos8-aarch64", + "product_id": -30, + "repository_id": -374, + "parent_product_id": null, + "root_product_id": -30, + "update_tag": null, + "url": "https://vault.centos.org/centos/8/centosplus/aarch64/os/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "centos8-centosplus for aarch64", + "product_type": "base", + "gpg_info": [ + { + "url": "file:////etc/pki/rpm-gpg/RPM-GPG-KEY-centosofficial", + "keyId": "8483C65D", + "fingerprint": "99DB70FAE1D7CE227FB6488205B555B38483C65D" + } + ], + "tags": [ + ] + }, + { + "channel_label": "centos8-appstream-aarch64", + "parent_channel_label": "centos8-aarch64", + "product_id": -30, + "repository_id": -373, + "parent_product_id": null, + "root_product_id": -30, + "update_tag": null, + "url": "https://vault.centos.org/centos/8/AppStream/aarch64/os/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "centos8-appstream for aarch64", + "product_type": "base", + "gpg_info": [ + { + "url": "file:////etc/pki/rpm-gpg/RPM-GPG-KEY-centosofficial", + "keyId": "8483C65D", + "fingerprint": "99DB70FAE1D7CE227FB6488205B555B38483C65D" + } + ], + "tags": [ + ] + }, + { + "channel_label": "centos8-aarch64", + "parent_channel_label": null, + "product_id": -30, + "repository_id": -372, + "parent_product_id": null, + "root_product_id": -30, + "update_tag": null, + "url": "https://vault.centos.org/centos/8/BaseOS/aarch64/os/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "centos8 for aarch64", + "product_type": "base", + "gpg_info": [ + { + "url": "file:////etc/pki/rpm-gpg/RPM-GPG-KEY-centosofficial", + "keyId": "8483C65D", + "fingerprint": "99DB70FAE1D7CE227FB6488205B555B38483C65D" + } + ], + "tags": [ + ] + }, + { + "channel_label": "epel8-aarch64", + "parent_channel_label": "centos8-aarch64", + "product_id": -30, + "repository_id": -351, + "parent_product_id": null, + "root_product_id": -30, + "update_tag": null, + "url": "http://mirrors.fedoraproject.org/mirrorlist?repo=epel-8&arch=aarch64", + "release_stage": "released", + "mandatory": false, + "signed": false, + "recommended": false, + "channel_name": "epel8 for aarch64", + "product_type": "base", + "gpg_info": [ + { + "url": "file:////etc/pki/rpm-gpg/RPM-GPG-KEY-centosofficial", + "keyId": "8483C65D", + "fingerprint": "99DB70FAE1D7CE227FB6488205B555B38483C65D" + } + ], + "tags": [ + ] + }, + { + "channel_label": "res8-manager-tools-updates-aarch64-centos8", + "parent_channel_label": "centos8-aarch64", + "product_id": 2362, + "repository_id": 5437, + "parent_product_id": -30, + "root_product_id": -30, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Updates/RES/8-CLIENT-TOOLS/aarch64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "RES8-Manager-Tools-Updates for aarch64 CentOS8", + "product_type": "extension", + "gpg_info": [ + { + "url": "file:///etc/pki/rpm-gpg/el-tools-gpg-pubkey-39db7c82.key", + "keyId": "39DB7C82", + "fingerprint": "FEAB502539D846DB2C0961CA70AF9E8139DB7C82" + } + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "res8-manager-tools-debuginfo-updates-aarch64-centos8", + "parent_channel_label": "centos8-aarch64", + "product_id": 2362, + "repository_id": 5438, + "parent_product_id": -30, + "root_product_id": -30, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Updates/RES/8-CLIENT-TOOLS/aarch64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "RES8-Manager-Tools-Debuginfo-Updates for aarch64 CentOS8", + "product_type": "extension", + "gpg_info": [ + { + "url": "file:///etc/pki/rpm-gpg/el-tools-gpg-pubkey-39db7c82.key", + "keyId": "39DB7C82", + "fingerprint": "FEAB502539D846DB2C0961CA70AF9E8139DB7C82" + } + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "res8-manager-tools-pool-aarch64-centos8", + "parent_channel_label": "centos8-aarch64", + "product_id": 2362, + "repository_id": 5439, + "parent_product_id": -30, + "root_product_id": -30, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Products/RES/8-CLIENT-TOOLS/aarch64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "RES8-Manager-Tools-Pool for aarch64 CentOS8", + "product_type": "extension", + "gpg_info": [ + { + "url": "file:///etc/pki/rpm-gpg/el-tools-gpg-pubkey-39db7c82.key", + "keyId": "39DB7C82", + "fingerprint": "FEAB502539D846DB2C0961CA70AF9E8139DB7C82" + } + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "res8-manager-tools-debuginfo-pool-aarch64-centos8", + "parent_channel_label": "centos8-aarch64", + "product_id": 2362, + "repository_id": 5440, + "parent_product_id": -30, + "root_product_id": -30, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Products/RES/8-CLIENT-TOOLS/aarch64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "RES8-Manager-Tools-Debuginfo-Pool for aarch64 CentOS8", + "product_type": "extension", + "gpg_info": [ + { + "url": "file:///etc/pki/rpm-gpg/el-tools-gpg-pubkey-39db7c82.key", + "keyId": "39DB7C82", + "fingerprint": "FEAB502539D846DB2C0961CA70AF9E8139DB7C82" + } + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "res8-manager-tools-beta-updates-aarch64-centos8", + "parent_channel_label": "centos8-aarch64", + "product_id": 2364, + "repository_id": 5443, + "parent_product_id": 2362, + "root_product_id": -30, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Updates/RES/8-CLIENT-TOOLS-BETA/aarch64/update/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "RES8-Manager-Tools-Beta-Updates for aarch64 CentOS8", + "product_type": "extension", + "gpg_info": [ + { + "url": "file:///etc/pki/rpm-gpg/el-tools-gpg-pubkey-39db7c82.key", + "keyId": "39DB7C82", + "fingerprint": "FEAB502539D846DB2C0961CA70AF9E8139DB7C82" + } + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "res8-manager-tools-beta-debuginfo-updates-aarch64-centos8", + "parent_channel_label": "centos8-aarch64", + "product_id": 2364, + "repository_id": 5444, + "parent_product_id": 2362, + "root_product_id": -30, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Updates/RES/8-CLIENT-TOOLS-BETA/aarch64/update_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "RES8-Manager-Tools-Beta-Debuginfo-Updates for aarch64 CentOS8", + "product_type": "extension", + "gpg_info": [ + { + "url": "file:///etc/pki/rpm-gpg/el-tools-gpg-pubkey-39db7c82.key", + "keyId": "39DB7C82", + "fingerprint": "FEAB502539D846DB2C0961CA70AF9E8139DB7C82" + } + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "res8-manager-tools-beta-pool-aarch64-centos8", + "parent_channel_label": "centos8-aarch64", + "product_id": 2364, + "repository_id": 5445, + "parent_product_id": 2362, + "root_product_id": -30, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Products/RES/8-CLIENT-TOOLS-BETA/aarch64/product/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "RES8-Manager-Tools-Beta-Pool for aarch64 CentOS8", + "product_type": "extension", + "gpg_info": [ + { + "url": "file:///etc/pki/rpm-gpg/el-tools-gpg-pubkey-39db7c82.key", + "keyId": "39DB7C82", + "fingerprint": "FEAB502539D846DB2C0961CA70AF9E8139DB7C82" + } + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "res8-manager-tools-beta-debuginfo-pool-aarch64-centos8", + "parent_channel_label": "centos8-aarch64", + "product_id": 2364, + "repository_id": 5446, + "parent_product_id": 2362, + "root_product_id": -30, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Products/RES/8-CLIENT-TOOLS-BETA/aarch64/product_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "RES8-Manager-Tools-Beta-Debuginfo-Pool for aarch64 CentOS8", + "product_type": "extension", + "gpg_info": [ + { + "url": "file:///etc/pki/rpm-gpg/el-tools-gpg-pubkey-39db7c82.key", + "keyId": "39DB7C82", + "fingerprint": "FEAB502539D846DB2C0961CA70AF9E8139DB7C82" + } + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "oraclelinux8-developer-aarch64", + "parent_channel_label": "oraclelinux8-aarch64", + "product_id": -29, + "repository_id": -321, + "parent_product_id": null, + "root_product_id": -29, + "update_tag": null, + "url": "https://yum.oracle.com/repo/OracleLinux/OL8/developer/aarch64/", + "release_stage": "released", + "mandatory": false, + "signed": false, + "recommended": false, + "channel_name": "oraclelinux8-developer for aarch64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "oraclelinux8-developer-uek-r6-aarch64", + "parent_channel_label": "oraclelinux8-aarch64", + "product_id": -29, + "repository_id": -320, + "parent_product_id": null, + "root_product_id": -29, + "update_tag": null, + "url": "https://yum.oracle.com/repo/OracleLinux/OL8/developer/UEKR6/aarch64/", + "release_stage": "released", + "mandatory": false, + "signed": false, + "recommended": false, + "channel_name": "oraclelinux8-developer-uek-r6 for aarch64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "oraclelinux8-codereadybuilder-aarch64", + "parent_channel_label": "oraclelinux8-aarch64", + "product_id": -29, + "repository_id": -319, + "parent_product_id": null, + "root_product_id": -29, + "update_tag": null, + "url": "https://yum.oracle.com/repo/OracleLinux/OL8/codeready/builder/aarch64/", + "release_stage": "released", + "mandatory": false, + "signed": false, + "recommended": false, + "channel_name": "oraclelinux8-codereadybuilder for aarch64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "oraclelinux8-addons-aarch64", + "parent_channel_label": "oraclelinux8-aarch64", + "product_id": -29, + "repository_id": -318, + "parent_product_id": null, + "root_product_id": -29, + "update_tag": null, + "url": "https://yum.oracle.com/repo/OracleLinux/OL8/addons/aarch64/", + "release_stage": "released", + "mandatory": false, + "signed": false, + "recommended": false, + "channel_name": "oraclelinux8-addons for aarch64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "oraclelinux8-appstream-aarch64", + "parent_channel_label": "oraclelinux8-aarch64", + "product_id": -29, + "repository_id": -317, + "parent_product_id": null, + "root_product_id": -29, + "update_tag": null, + "url": "https://yum.oracle.com/repo/OracleLinux/OL8/appstream/aarch64/", + "release_stage": "released", + "mandatory": true, + "signed": false, + "recommended": false, + "channel_name": "oraclelinux8-appstream for aarch64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "oraclelinux8-aarch64", + "parent_channel_label": null, + "product_id": -29, + "repository_id": -316, + "parent_product_id": null, + "root_product_id": -29, + "update_tag": null, + "url": "https://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/aarch64/", + "release_stage": "released", + "mandatory": true, + "signed": false, + "recommended": false, + "channel_name": "oraclelinux8 for aarch64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "res8-manager-tools-updates-aarch64-ol8", + "parent_channel_label": "oraclelinux8-aarch64", + "product_id": 2362, + "repository_id": 5437, + "parent_product_id": -29, + "root_product_id": -29, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Updates/RES/8-CLIENT-TOOLS/aarch64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "RES8-Manager-Tools-Updates for aarch64 OL8", + "product_type": "extension", + "gpg_info": [ + { + "url": "file:///etc/pki/rpm-gpg/el-tools-gpg-pubkey-39db7c82.key", + "keyId": "39DB7C82", + "fingerprint": "FEAB502539D846DB2C0961CA70AF9E8139DB7C82" + } + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "res8-manager-tools-debuginfo-updates-aarch64-ol8", + "parent_channel_label": "oraclelinux8-aarch64", + "product_id": 2362, + "repository_id": 5438, + "parent_product_id": -29, + "root_product_id": -29, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Updates/RES/8-CLIENT-TOOLS/aarch64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "RES8-Manager-Tools-Debuginfo-Updates for aarch64 OL8", + "product_type": "extension", + "gpg_info": [ + { + "url": "file:///etc/pki/rpm-gpg/el-tools-gpg-pubkey-39db7c82.key", + "keyId": "39DB7C82", + "fingerprint": "FEAB502539D846DB2C0961CA70AF9E8139DB7C82" + } + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "res8-manager-tools-pool-aarch64-ol8", + "parent_channel_label": "oraclelinux8-aarch64", + "product_id": 2362, + "repository_id": 5439, + "parent_product_id": -29, + "root_product_id": -29, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Products/RES/8-CLIENT-TOOLS/aarch64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "RES8-Manager-Tools-Pool for aarch64 OL8", + "product_type": "extension", + "gpg_info": [ + { + "url": "file:///etc/pki/rpm-gpg/el-tools-gpg-pubkey-39db7c82.key", + "keyId": "39DB7C82", + "fingerprint": "FEAB502539D846DB2C0961CA70AF9E8139DB7C82" + } + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "res8-manager-tools-debuginfo-pool-aarch64-ol8", + "parent_channel_label": "oraclelinux8-aarch64", + "product_id": 2362, + "repository_id": 5440, + "parent_product_id": -29, + "root_product_id": -29, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Products/RES/8-CLIENT-TOOLS/aarch64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "RES8-Manager-Tools-Debuginfo-Pool for aarch64 OL8", + "product_type": "extension", + "gpg_info": [ + { + "url": "file:///etc/pki/rpm-gpg/el-tools-gpg-pubkey-39db7c82.key", + "keyId": "39DB7C82", + "fingerprint": "FEAB502539D846DB2C0961CA70AF9E8139DB7C82" + } + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "res8-manager-tools-beta-updates-aarch64-ol8", + "parent_channel_label": "oraclelinux8-aarch64", + "product_id": 2364, + "repository_id": 5443, + "parent_product_id": 2362, + "root_product_id": -29, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Updates/RES/8-CLIENT-TOOLS-BETA/aarch64/update/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "RES8-Manager-Tools-Beta-Updates for aarch64 OL8", + "product_type": "extension", + "gpg_info": [ + { + "url": "file:///etc/pki/rpm-gpg/el-tools-gpg-pubkey-39db7c82.key", + "keyId": "39DB7C82", + "fingerprint": "FEAB502539D846DB2C0961CA70AF9E8139DB7C82" + } + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "res8-manager-tools-beta-debuginfo-updates-aarch64-ol8", + "parent_channel_label": "oraclelinux8-aarch64", + "product_id": 2364, + "repository_id": 5444, + "parent_product_id": 2362, + "root_product_id": -29, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Updates/RES/8-CLIENT-TOOLS-BETA/aarch64/update_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "RES8-Manager-Tools-Beta-Debuginfo-Updates for aarch64 OL8", + "product_type": "extension", + "gpg_info": [ + { + "url": "file:///etc/pki/rpm-gpg/el-tools-gpg-pubkey-39db7c82.key", + "keyId": "39DB7C82", + "fingerprint": "FEAB502539D846DB2C0961CA70AF9E8139DB7C82" + } + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "res8-manager-tools-beta-pool-aarch64-ol8", + "parent_channel_label": "oraclelinux8-aarch64", + "product_id": 2364, + "repository_id": 5445, + "parent_product_id": 2362, + "root_product_id": -29, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Products/RES/8-CLIENT-TOOLS-BETA/aarch64/product/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "RES8-Manager-Tools-Beta-Pool for aarch64 OL8", + "product_type": "extension", + "gpg_info": [ + { + "url": "file:///etc/pki/rpm-gpg/el-tools-gpg-pubkey-39db7c82.key", + "keyId": "39DB7C82", + "fingerprint": "FEAB502539D846DB2C0961CA70AF9E8139DB7C82" + } + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "res8-manager-tools-beta-debuginfo-pool-aarch64-ol8", + "parent_channel_label": "oraclelinux8-aarch64", + "product_id": 2364, + "repository_id": 5446, + "parent_product_id": 2362, + "root_product_id": -29, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Products/RES/8-CLIENT-TOOLS-BETA/aarch64/product_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "RES8-Manager-Tools-Beta-Debuginfo-Pool for aarch64 OL8", + "product_type": "extension", + "gpg_info": [ + { + "url": "file:///etc/pki/rpm-gpg/el-tools-gpg-pubkey-39db7c82.key", + "keyId": "39DB7C82", + "fingerprint": "FEAB502539D846DB2C0961CA70AF9E8139DB7C82" + } + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "oraclelinux7-scl-aarch64", + "parent_channel_label": "oraclelinux7-aarch64", + "product_id": -28, + "repository_id": -312, + "parent_product_id": null, + "root_product_id": -28, + "update_tag": null, + "url": "https://yum.oracle.com/repo/OracleLinux/OL7/SoftwareCollections/aarch64/", + "release_stage": "released", + "mandatory": false, + "signed": false, + "recommended": false, + "channel_name": "oraclelinux7-scl for aarch64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "oraclelinux7-uek-r6-aarch64", + "parent_channel_label": "oraclelinux7-aarch64", + "product_id": -28, + "repository_id": -301, + "parent_product_id": null, + "root_product_id": -28, + "update_tag": null, + "url": "https://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/aarch64/", + "release_stage": "released", + "mandatory": false, + "signed": false, + "recommended": false, + "channel_name": "oraclelinux7-uek-r6 for aarch64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "oraclelinux7-addons-aarch64", + "parent_channel_label": "oraclelinux7-aarch64", + "product_id": -28, + "repository_id": -298, + "parent_product_id": null, + "root_product_id": -28, + "update_tag": null, + "url": "https://yum.oracle.com/repo/OracleLinux/OL7/addons/aarch64/", + "release_stage": "released", + "mandatory": false, + "signed": false, + "recommended": false, + "channel_name": "oraclelinux7-addons for aarch64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "oraclelinux7-aarch64", + "parent_channel_label": null, + "product_id": -28, + "repository_id": -297, + "parent_product_id": null, + "root_product_id": -28, + "update_tag": null, + "url": "https://yum.oracle.com/repo/OracleLinux/OL7/latest/aarch64/", + "release_stage": "released", + "mandatory": true, + "signed": false, + "recommended": false, + "channel_name": "oraclelinux7 for aarch64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "res-7-suse-manager-tools-aarch64-ol7", + "parent_channel_label": "oraclelinux7-aarch64", + "product_id": 2361, + "repository_id": 5436, + "parent_product_id": -28, + "root_product_id": -28, + "update_tag": null, + "url": "https://updates.suse.com/repo/$RCE/RES7-SUSE-Manager-Tools/aarch64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "RES-7-SUSE-Manager-Tools for aarch64 OL7", + "product_type": "extension", + "gpg_info": [ + { + "url": "file:///etc/pki/rpm-gpg/el-tools-gpg-pubkey-39db7c82.key", + "keyId": "39DB7C82", + "fingerprint": "FEAB502539D846DB2C0961CA70AF9E8139DB7C82" + } + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "res-7-suse-manager-tools-beta-aarch64-ol7", + "parent_channel_label": "oraclelinux7-aarch64", + "product_id": 2363, + "repository_id": 5442, + "parent_product_id": 2361, + "root_product_id": -28, + "update_tag": null, + "url": "https://updates.suse.com/repo/$RCE/RES7-SUSE-Manager-Tools-Beta/aarch64/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "RES-7-SUSE-Manager-Tools-Beta for aarch64 OL7", + "product_type": "extension", + "gpg_info": [ + { + "url": "file:///etc/pki/rpm-gpg/el-tools-gpg-pubkey-39db7c82.key", + "keyId": "39DB7C82", + "fingerprint": "FEAB502539D846DB2C0961CA70AF9E8139DB7C82" + } + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "rockylinux-8-ha-aarch64", + "parent_channel_label": "rockylinux-8-aarch64", + "product_id": -27, + "repository_id": -333, + "parent_product_id": null, + "root_product_id": -27, + "update_tag": null, + "url": "https://mirrors.rockylinux.org/mirrorlist?repo=HighAvailability-8&arch=aarch64", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "rockylinux-8-ha for aarch64", + "product_type": "base", + "gpg_info": [ + { + "url": "file:///etc/pki/rpm-gpg/RPM-GPG-KEY-rockyofficial", + "keyId": "6D745A60", + "fingerprint": "7051C470A929F454CEBE37B715AF5DAC6D745A60" + } + ], + "tags": [ + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "rockylinux-8-powertools-aarch64", + "parent_channel_label": "rockylinux-8-aarch64", + "product_id": -27, + "repository_id": -332, + "parent_product_id": null, + "root_product_id": -27, + "update_tag": null, + "url": "https://mirrors.rockylinux.org/mirrorlist?repo=PowerTools-8&arch=aarch64", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "rockylinux-8-powertools for aarch64", + "product_type": "base", + "gpg_info": [ + { + "url": "file:///etc/pki/rpm-gpg/RPM-GPG-KEY-rockyofficial", + "keyId": "6D745A60", + "fingerprint": "7051C470A929F454CEBE37B715AF5DAC6D745A60" + } + ], + "tags": [ + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "rockylinux-8-extras-aarch64", + "parent_channel_label": "rockylinux-8-aarch64", + "product_id": -27, + "repository_id": -331, + "parent_product_id": null, + "root_product_id": -27, + "update_tag": null, + "url": "https://mirrors.rockylinux.org/mirrorlist?repo=extras-8&arch=aarch64", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "rockylinux-8-extras for aarch64", + "product_type": "base", + "gpg_info": [ + { + "url": "file:///etc/pki/rpm-gpg/RPM-GPG-KEY-rockyofficial", + "keyId": "6D745A60", + "fingerprint": "7051C470A929F454CEBE37B715AF5DAC6D745A60" + } + ], + "tags": [ + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "rockylinux-8-appstream-aarch64", + "parent_channel_label": "rockylinux-8-aarch64", + "product_id": -27, + "repository_id": -330, + "parent_product_id": null, + "root_product_id": -27, + "update_tag": null, + "url": "https://mirrors.rockylinux.org/mirrorlist?repo=AppStream-8&arch=aarch64", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "rockylinux-8-appstream for aarch64", + "product_type": "base", + "gpg_info": [ + { + "url": "file:///etc/pki/rpm-gpg/RPM-GPG-KEY-rockyofficial", + "keyId": "6D745A60", + "fingerprint": "7051C470A929F454CEBE37B715AF5DAC6D745A60" + } + ], + "tags": [ + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "rockylinux-8-aarch64", + "parent_channel_label": null, + "product_id": -27, + "repository_id": -329, + "parent_product_id": null, + "root_product_id": -27, + "update_tag": null, + "url": "https://mirrors.rockylinux.org/mirrorlist?repo=BaseOS-8&arch=aarch64", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "rockylinux-8 for aarch64", + "product_type": "base", + "gpg_info": [ + { + "url": "file:///etc/pki/rpm-gpg/RPM-GPG-KEY-rockyofficial", + "keyId": "6D745A60", + "fingerprint": "7051C470A929F454CEBE37B715AF5DAC6D745A60" + } + ], + "tags": [ + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "res8-manager-tools-updates-aarch64-rocky", + "parent_channel_label": "rockylinux-8-aarch64", + "product_id": 2362, + "repository_id": 5437, + "parent_product_id": -27, + "root_product_id": -27, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Updates/RES/8-CLIENT-TOOLS/aarch64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "RES8-Manager-Tools-Updates for aarch64 Rocky", + "product_type": "extension", + "gpg_info": [ + { + "url": "file:///etc/pki/rpm-gpg/el-tools-gpg-pubkey-39db7c82.key", + "keyId": "39DB7C82", + "fingerprint": "FEAB502539D846DB2C0961CA70AF9E8139DB7C82" + } + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "res8-manager-tools-debuginfo-updates-aarch64-rocky", + "parent_channel_label": "rockylinux-8-aarch64", + "product_id": 2362, + "repository_id": 5438, + "parent_product_id": -27, + "root_product_id": -27, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Updates/RES/8-CLIENT-TOOLS/aarch64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "RES8-Manager-Tools-Debuginfo-Updates for aarch64 Rocky", + "product_type": "extension", + "gpg_info": [ + { + "url": "file:///etc/pki/rpm-gpg/el-tools-gpg-pubkey-39db7c82.key", + "keyId": "39DB7C82", + "fingerprint": "FEAB502539D846DB2C0961CA70AF9E8139DB7C82" + } + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "res8-manager-tools-pool-aarch64-rocky", + "parent_channel_label": "rockylinux-8-aarch64", + "product_id": 2362, + "repository_id": 5439, + "parent_product_id": -27, + "root_product_id": -27, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Products/RES/8-CLIENT-TOOLS/aarch64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "RES8-Manager-Tools-Pool for aarch64 Rocky", + "product_type": "extension", + "gpg_info": [ + { + "url": "file:///etc/pki/rpm-gpg/el-tools-gpg-pubkey-39db7c82.key", + "keyId": "39DB7C82", + "fingerprint": "FEAB502539D846DB2C0961CA70AF9E8139DB7C82" + } + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "res8-manager-tools-debuginfo-pool-aarch64-rocky", + "parent_channel_label": "rockylinux-8-aarch64", + "product_id": 2362, + "repository_id": 5440, + "parent_product_id": -27, + "root_product_id": -27, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Products/RES/8-CLIENT-TOOLS/aarch64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "RES8-Manager-Tools-Debuginfo-Pool for aarch64 Rocky", + "product_type": "extension", + "gpg_info": [ + { + "url": "file:///etc/pki/rpm-gpg/el-tools-gpg-pubkey-39db7c82.key", + "keyId": "39DB7C82", + "fingerprint": "FEAB502539D846DB2C0961CA70AF9E8139DB7C82" + } + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "res8-manager-tools-beta-updates-aarch64-rocky", + "parent_channel_label": "rockylinux-8-aarch64", + "product_id": 2364, + "repository_id": 5443, + "parent_product_id": 2362, + "root_product_id": -27, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Updates/RES/8-CLIENT-TOOLS-BETA/aarch64/update/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "RES8-Manager-Tools-Beta-Updates for aarch64 Rocky", + "product_type": "extension", + "gpg_info": [ + { + "url": "file:///etc/pki/rpm-gpg/el-tools-gpg-pubkey-39db7c82.key", + "keyId": "39DB7C82", + "fingerprint": "FEAB502539D846DB2C0961CA70AF9E8139DB7C82" + } + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "res8-manager-tools-beta-debuginfo-updates-aarch64-rocky", + "parent_channel_label": "rockylinux-8-aarch64", + "product_id": 2364, + "repository_id": 5444, + "parent_product_id": 2362, + "root_product_id": -27, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Updates/RES/8-CLIENT-TOOLS-BETA/aarch64/update_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "RES8-Manager-Tools-Beta-Debuginfo-Updates for aarch64 Rocky", + "product_type": "extension", + "gpg_info": [ + { + "url": "file:///etc/pki/rpm-gpg/el-tools-gpg-pubkey-39db7c82.key", + "keyId": "39DB7C82", + "fingerprint": "FEAB502539D846DB2C0961CA70AF9E8139DB7C82" + } + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "res8-manager-tools-beta-pool-aarch64-rocky", + "parent_channel_label": "rockylinux-8-aarch64", + "product_id": 2364, + "repository_id": 5445, + "parent_product_id": 2362, + "root_product_id": -27, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Products/RES/8-CLIENT-TOOLS-BETA/aarch64/product/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "RES8-Manager-Tools-Beta-Pool for aarch64 Rocky", + "product_type": "extension", + "gpg_info": [ + { + "url": "file:///etc/pki/rpm-gpg/el-tools-gpg-pubkey-39db7c82.key", + "keyId": "39DB7C82", + "fingerprint": "FEAB502539D846DB2C0961CA70AF9E8139DB7C82" + } + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "res8-manager-tools-beta-debuginfo-pool-aarch64-rocky", + "parent_channel_label": "rockylinux-8-aarch64", + "product_id": 2364, + "repository_id": 5446, + "parent_product_id": 2362, + "root_product_id": -27, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Products/RES/8-CLIENT-TOOLS-BETA/aarch64/product_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "RES8-Manager-Tools-Beta-Debuginfo-Pool for aarch64 Rocky", + "product_type": "extension", + "gpg_info": [ + { + "url": "file:///etc/pki/rpm-gpg/el-tools-gpg-pubkey-39db7c82.key", + "keyId": "39DB7C82", + "fingerprint": "FEAB502539D846DB2C0961CA70AF9E8139DB7C82" + } + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "almalinux8-ha-aarch64", + "parent_channel_label": "almalinux8-aarch64", + "product_id": -26, + "repository_id": -364, + "parent_product_id": null, + "root_product_id": -26, + "update_tag": null, + "url": "https://mirrors.almalinux.org/mirrorlist/8/ha", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "almalinux8-ha for aarch64", + "product_type": "base", + "gpg_info": [ + { + "url": "file:///etc/pki/rpm-gpg/RPM-GPG-KEY-AlmaLinux", + "keyId": "3ABB34F8", + "fingerprint": "5E9B8F5617B5066CE92057C3488FCF7C3ABB34F8" + } + ], + "tags": [ + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "almalinux8-powertools-aarch64", + "parent_channel_label": "almalinux8-aarch64", + "product_id": -26, + "repository_id": -363, + "parent_product_id": null, + "root_product_id": -26, + "update_tag": null, + "url": "https://mirrors.almalinux.org/mirrorlist/8/powertools", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "almalinux8-powertools for aarch64", + "product_type": "base", + "gpg_info": [ + { + "url": "file:///etc/pki/rpm-gpg/RPM-GPG-KEY-AlmaLinux", + "keyId": "3ABB34F8", + "fingerprint": "5E9B8F5617B5066CE92057C3488FCF7C3ABB34F8" + } + ], + "tags": [ + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "almalinux8-extras-aarch64", + "parent_channel_label": "almalinux8-aarch64", + "product_id": -26, + "repository_id": -362, + "parent_product_id": null, + "root_product_id": -26, + "update_tag": null, + "url": "https://mirrors.almalinux.org/mirrorlist/8/extras", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "almalinux8-extras for aarch64", + "product_type": "base", + "gpg_info": [ + { + "url": "file:///etc/pki/rpm-gpg/RPM-GPG-KEY-AlmaLinux", + "keyId": "3ABB34F8", + "fingerprint": "5E9B8F5617B5066CE92057C3488FCF7C3ABB34F8" + } + ], + "tags": [ + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "almalinux8-appstream-aarch64", + "parent_channel_label": "almalinux8-aarch64", + "product_id": -26, + "repository_id": -361, + "parent_product_id": null, + "root_product_id": -26, + "update_tag": null, + "url": "https://mirrors.almalinux.org/mirrorlist/8/appstream", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "almalinux8-appstream for aarch64", + "product_type": "base", + "gpg_info": [ + { + "url": "file:///etc/pki/rpm-gpg/RPM-GPG-KEY-AlmaLinux", + "keyId": "3ABB34F8", + "fingerprint": "5E9B8F5617B5066CE92057C3488FCF7C3ABB34F8" + } + ], + "tags": [ + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "almalinux8-aarch64", + "parent_channel_label": null, + "product_id": -26, + "repository_id": -360, + "parent_product_id": null, + "root_product_id": -26, + "update_tag": null, + "url": "https://mirrors.almalinux.org/mirrorlist/8/baseos", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "almalinux8 for aarch64", + "product_type": "base", + "gpg_info": [ + { + "url": "file:///etc/pki/rpm-gpg/RPM-GPG-KEY-AlmaLinux", + "keyId": "3ABB34F8", + "fingerprint": "5E9B8F5617B5066CE92057C3488FCF7C3ABB34F8" + } + ], + "tags": [ + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "res8-manager-tools-updates-aarch64-alma", + "parent_channel_label": "almalinux8-aarch64", + "product_id": 2362, + "repository_id": 5437, + "parent_product_id": -26, + "root_product_id": -26, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Updates/RES/8-CLIENT-TOOLS/aarch64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "RES8-Manager-Tools-Updates for aarch64 Alma", + "product_type": "extension", + "gpg_info": [ + { + "url": "file:///etc/pki/rpm-gpg/el-tools-gpg-pubkey-39db7c82.key", + "keyId": "39DB7C82", + "fingerprint": "FEAB502539D846DB2C0961CA70AF9E8139DB7C82" + } + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "res8-manager-tools-debuginfo-updates-aarch64-alma", + "parent_channel_label": "almalinux8-aarch64", + "product_id": 2362, + "repository_id": 5438, + "parent_product_id": -26, + "root_product_id": -26, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Updates/RES/8-CLIENT-TOOLS/aarch64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "RES8-Manager-Tools-Debuginfo-Updates for aarch64 Alma", + "product_type": "extension", + "gpg_info": [ + { + "url": "file:///etc/pki/rpm-gpg/el-tools-gpg-pubkey-39db7c82.key", + "keyId": "39DB7C82", + "fingerprint": "FEAB502539D846DB2C0961CA70AF9E8139DB7C82" + } + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "res8-manager-tools-pool-aarch64-alma", + "parent_channel_label": "almalinux8-aarch64", + "product_id": 2362, + "repository_id": 5439, + "parent_product_id": -26, + "root_product_id": -26, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Products/RES/8-CLIENT-TOOLS/aarch64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "RES8-Manager-Tools-Pool for aarch64 Alma", + "product_type": "extension", + "gpg_info": [ + { + "url": "file:///etc/pki/rpm-gpg/el-tools-gpg-pubkey-39db7c82.key", + "keyId": "39DB7C82", + "fingerprint": "FEAB502539D846DB2C0961CA70AF9E8139DB7C82" + } + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "res8-manager-tools-debuginfo-pool-aarch64-alma", + "parent_channel_label": "almalinux8-aarch64", + "product_id": 2362, + "repository_id": 5440, + "parent_product_id": -26, + "root_product_id": -26, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Products/RES/8-CLIENT-TOOLS/aarch64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "RES8-Manager-Tools-Debuginfo-Pool for aarch64 Alma", + "product_type": "extension", + "gpg_info": [ + { + "url": "file:///etc/pki/rpm-gpg/el-tools-gpg-pubkey-39db7c82.key", + "keyId": "39DB7C82", + "fingerprint": "FEAB502539D846DB2C0961CA70AF9E8139DB7C82" + } + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "res8-manager-tools-beta-updates-aarch64-alma", + "parent_channel_label": "almalinux8-aarch64", + "product_id": 2364, + "repository_id": 5443, + "parent_product_id": 2362, + "root_product_id": -26, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Updates/RES/8-CLIENT-TOOLS-BETA/aarch64/update/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "RES8-Manager-Tools-Beta-Updates for aarch64 Alma", + "product_type": "extension", + "gpg_info": [ + { + "url": "file:///etc/pki/rpm-gpg/el-tools-gpg-pubkey-39db7c82.key", + "keyId": "39DB7C82", + "fingerprint": "FEAB502539D846DB2C0961CA70AF9E8139DB7C82" + } + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "res8-manager-tools-beta-debuginfo-updates-aarch64-alma", + "parent_channel_label": "almalinux8-aarch64", + "product_id": 2364, + "repository_id": 5444, + "parent_product_id": 2362, + "root_product_id": -26, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Updates/RES/8-CLIENT-TOOLS-BETA/aarch64/update_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "RES8-Manager-Tools-Beta-Debuginfo-Updates for aarch64 Alma", + "product_type": "extension", + "gpg_info": [ + { + "url": "file:///etc/pki/rpm-gpg/el-tools-gpg-pubkey-39db7c82.key", + "keyId": "39DB7C82", + "fingerprint": "FEAB502539D846DB2C0961CA70AF9E8139DB7C82" + } + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "res8-manager-tools-beta-pool-aarch64-alma", + "parent_channel_label": "almalinux8-aarch64", + "product_id": 2364, + "repository_id": 5445, + "parent_product_id": 2362, + "root_product_id": -26, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Products/RES/8-CLIENT-TOOLS-BETA/aarch64/product/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "RES8-Manager-Tools-Beta-Pool for aarch64 Alma", + "product_type": "extension", + "gpg_info": [ + { + "url": "file:///etc/pki/rpm-gpg/el-tools-gpg-pubkey-39db7c82.key", + "keyId": "39DB7C82", + "fingerprint": "FEAB502539D846DB2C0961CA70AF9E8139DB7C82" + } + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "res8-manager-tools-beta-debuginfo-pool-aarch64-alma", + "parent_channel_label": "almalinux8-aarch64", + "product_id": 2364, + "repository_id": 5446, + "parent_product_id": 2362, + "root_product_id": -26, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Products/RES/8-CLIENT-TOOLS-BETA/aarch64/product_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "RES8-Manager-Tools-Beta-Debuginfo-Pool for aarch64 Alma", + "product_type": "extension", + "gpg_info": [ + { + "url": "file:///etc/pki/rpm-gpg/el-tools-gpg-pubkey-39db7c82.key", + "keyId": "39DB7C82", + "fingerprint": "FEAB502539D846DB2C0961CA70AF9E8139DB7C82" + } + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "amazonlinux2-extras-docker-aarch64", + "parent_channel_label": "amazonlinux2-core-aarch64", + "product_id": -25, + "repository_id": -323, + "parent_product_id": null, + "root_product_id": -25, + "update_tag": null, + "url": "https://amazonlinux.default.amazonlinux.com/2/extras/docker/latest/aarch64/mirror.list", + "release_stage": "released", + "mandatory": false, + "signed": false, + "recommended": false, + "channel_name": "amazonlinux2-extras-docker for aarch64", + "product_type": "base", + "gpg_info": [ + { + "url": "file:///etc/pki/rpm-gpg/RPM-GPG-KEY-amazon-linux-2", + "keyId": "C87F5B1A", + "fingerprint": "99E617FE5DB527C0D8BD5F8E11CF1F95C87F5B1A" + } + ], + "tags": [ + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "amazonlinux2-core-aarch64", + "parent_channel_label": null, + "product_id": -25, + "repository_id": -322, + "parent_product_id": null, + "root_product_id": -25, + "update_tag": null, + "url": "https://amazonlinux.default.amazonlinux.com/2/core/latest/aarch64/mirror.list", + "release_stage": "released", + "mandatory": true, + "signed": false, + "recommended": false, + "channel_name": "amazonlinux2-core for aarch64", + "product_type": "base", + "gpg_info": [ + { + "url": "file:///etc/pki/rpm-gpg/RPM-GPG-KEY-amazon-linux-2", + "keyId": "C87F5B1A", + "fingerprint": "99E617FE5DB527C0D8BD5F8E11CF1F95C87F5B1A" + } + ], + "tags": [ + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "res-7-suse-manager-tools-aarch64-amazon", + "parent_channel_label": "amazonlinux2-core-aarch64", + "product_id": 2361, + "repository_id": 5436, + "parent_product_id": -25, + "root_product_id": -25, + "update_tag": null, + "url": "https://updates.suse.com/repo/$RCE/RES7-SUSE-Manager-Tools/aarch64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "RES-7-SUSE-Manager-Tools for aarch64 Amazon", + "product_type": "extension", + "gpg_info": [ + { + "url": "file:///etc/pki/rpm-gpg/el-tools-gpg-pubkey-39db7c82.key", + "keyId": "39DB7C82", + "fingerprint": "FEAB502539D846DB2C0961CA70AF9E8139DB7C82" + } + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "res-7-suse-manager-tools-beta-aarch64-amazon", + "parent_channel_label": "amazonlinux2-core-aarch64", + "product_id": 2363, + "repository_id": 5442, + "parent_product_id": 2361, + "root_product_id": -25, + "update_tag": null, + "url": "https://updates.suse.com/repo/$RCE/RES7-SUSE-Manager-Tools-Beta/aarch64/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "RES-7-SUSE-Manager-Tools-Beta for aarch64 Amazon", + "product_type": "extension", + "gpg_info": [ + { + "url": "file:///etc/pki/rpm-gpg/el-tools-gpg-pubkey-39db7c82.key", + "keyId": "39DB7C82", + "fingerprint": "FEAB502539D846DB2C0961CA70AF9E8139DB7C82" + } + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "rockylinux-8-ha-x86_64", + "parent_channel_label": "rockylinux-8-x86_64", + "product_id": -24, + "repository_id": -296, + "parent_product_id": null, + "root_product_id": -24, + "update_tag": null, + "url": "https://mirrors.rockylinux.org/mirrorlist?repo=HighAvailability-8&arch=x86_64", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "rockylinux-8-ha for x86_64", + "product_type": "base", + "gpg_info": [ + { + "url": "file:///etc/pki/rpm-gpg/RPM-GPG-KEY-rockyofficial", + "keyId": "6D745A60", + "fingerprint": "7051C470A929F454CEBE37B715AF5DAC6D745A60" + } + ], + "tags": [ + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "rockylinux-8-powertools-x86_64", + "parent_channel_label": "rockylinux-8-x86_64", + "product_id": -24, + "repository_id": -295, + "parent_product_id": null, + "root_product_id": -24, + "update_tag": null, + "url": "https://mirrors.rockylinux.org/mirrorlist?repo=PowerTools-8&arch=x86_64", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "rockylinux-8-powertools for x86_64", + "product_type": "base", + "gpg_info": [ + { + "url": "file:///etc/pki/rpm-gpg/RPM-GPG-KEY-rockyofficial", + "keyId": "6D745A60", + "fingerprint": "7051C470A929F454CEBE37B715AF5DAC6D745A60" + } + ], + "tags": [ + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "rockylinux-8-extras-x86_64", + "parent_channel_label": "rockylinux-8-x86_64", + "product_id": -24, + "repository_id": -294, + "parent_product_id": null, + "root_product_id": -24, + "update_tag": null, + "url": "https://mirrors.rockylinux.org/mirrorlist?repo=extras-8&arch=x86_64", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "rockylinux-8-extras for x86_64", + "product_type": "base", + "gpg_info": [ + { + "url": "file:///etc/pki/rpm-gpg/RPM-GPG-KEY-rockyofficial", + "keyId": "6D745A60", + "fingerprint": "7051C470A929F454CEBE37B715AF5DAC6D745A60" + } + ], + "tags": [ + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "rockylinux-8-appstream-x86_64", + "parent_channel_label": "rockylinux-8-x86_64", + "product_id": -24, + "repository_id": -293, + "parent_product_id": null, + "root_product_id": -24, + "update_tag": null, + "url": "https://mirrors.rockylinux.org/mirrorlist?repo=AppStream-8&arch=x86_64", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "rockylinux-8-appstream for x86_64", + "product_type": "base", + "gpg_info": [ + { + "url": "file:///etc/pki/rpm-gpg/RPM-GPG-KEY-rockyofficial", + "keyId": "6D745A60", + "fingerprint": "7051C470A929F454CEBE37B715AF5DAC6D745A60" + } + ], + "tags": [ + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "rockylinux-8-x86_64", + "parent_channel_label": null, + "product_id": -24, + "repository_id": -292, + "parent_product_id": null, + "root_product_id": -24, + "update_tag": null, + "url": "https://mirrors.rockylinux.org/mirrorlist?repo=BaseOS-8&arch=x86_64", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "rockylinux-8 for x86_64", + "product_type": "base", + "gpg_info": [ + { + "url": "file:///etc/pki/rpm-gpg/RPM-GPG-KEY-rockyofficial", + "keyId": "6D745A60", + "fingerprint": "7051C470A929F454CEBE37B715AF5DAC6D745A60" + } + ], + "tags": [ + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "res8-manager-tools-updates-x86_64-rocky", + "parent_channel_label": "rockylinux-8-x86_64", + "product_id": 2007, + "repository_id": 4311, + "parent_product_id": -24, + "root_product_id": -24, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Updates/RES/8-CLIENT-TOOLS/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "RES8-Manager-Tools-Updates for x86_64 Rocky", + "product_type": "extension", + "gpg_info": [ + { + "url": "file:///etc/pki/rpm-gpg/el-tools-gpg-pubkey-39db7c82.key", + "keyId": "39DB7C82", + "fingerprint": "FEAB502539D846DB2C0961CA70AF9E8139DB7C82" + } + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "res8-manager-tools-debuginfo-updates-x86_64-rocky", + "parent_channel_label": "rockylinux-8-x86_64", + "product_id": 2007, + "repository_id": 4312, + "parent_product_id": -24, + "root_product_id": -24, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Updates/RES/8-CLIENT-TOOLS/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "RES8-Manager-Tools-Debuginfo-Updates for x86_64 Rocky", + "product_type": "extension", + "gpg_info": [ + { + "url": "file:///etc/pki/rpm-gpg/el-tools-gpg-pubkey-39db7c82.key", + "keyId": "39DB7C82", + "fingerprint": "FEAB502539D846DB2C0961CA70AF9E8139DB7C82" + } + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "res8-manager-tools-pool-x86_64-rocky", + "parent_channel_label": "rockylinux-8-x86_64", + "product_id": 2007, + "repository_id": 4313, + "parent_product_id": -24, + "root_product_id": -24, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Products/RES/8-CLIENT-TOOLS/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "RES8-Manager-Tools-Pool for x86_64 Rocky", + "product_type": "extension", + "gpg_info": [ + { + "url": "file:///etc/pki/rpm-gpg/el-tools-gpg-pubkey-39db7c82.key", + "keyId": "39DB7C82", + "fingerprint": "FEAB502539D846DB2C0961CA70AF9E8139DB7C82" + } + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "res8-manager-tools-debuginfo-pool-x86_64-rocky", + "parent_channel_label": "rockylinux-8-x86_64", + "product_id": 2007, + "repository_id": 4314, + "parent_product_id": -24, + "root_product_id": -24, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Products/RES/8-CLIENT-TOOLS/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "RES8-Manager-Tools-Debuginfo-Pool for x86_64 Rocky", + "product_type": "extension", + "gpg_info": [ + { + "url": "file:///etc/pki/rpm-gpg/el-tools-gpg-pubkey-39db7c82.key", + "keyId": "39DB7C82", + "fingerprint": "FEAB502539D846DB2C0961CA70AF9E8139DB7C82" + } + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "res8-manager-tools-beta-updates-x86_64-rocky", + "parent_channel_label": "rockylinux-8-x86_64", + "product_id": 2066, + "repository_id": 4411, + "parent_product_id": 2007, + "root_product_id": -24, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Updates/RES/8-CLIENT-TOOLS-BETA/x86_64/update/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "RES8-Manager-Tools-Beta-Updates for x86_64 Rocky", + "product_type": "extension", + "gpg_info": [ + { + "url": "file:///etc/pki/rpm-gpg/el-tools-gpg-pubkey-39db7c82.key", + "keyId": "39DB7C82", + "fingerprint": "FEAB502539D846DB2C0961CA70AF9E8139DB7C82" + } + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "res8-manager-tools-beta-debuginfo-updates-x86_64-rocky", + "parent_channel_label": "rockylinux-8-x86_64", + "product_id": 2066, + "repository_id": 4412, + "parent_product_id": 2007, + "root_product_id": -24, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Updates/RES/8-CLIENT-TOOLS-BETA/x86_64/update_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "RES8-Manager-Tools-Beta-Debuginfo-Updates for x86_64 Rocky", + "product_type": "extension", + "gpg_info": [ + { + "url": "file:///etc/pki/rpm-gpg/el-tools-gpg-pubkey-39db7c82.key", + "keyId": "39DB7C82", + "fingerprint": "FEAB502539D846DB2C0961CA70AF9E8139DB7C82" + } + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "res8-manager-tools-beta-pool-x86_64-rocky", + "parent_channel_label": "rockylinux-8-x86_64", + "product_id": 2066, + "repository_id": 4413, + "parent_product_id": 2007, + "root_product_id": -24, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Products/RES/8-CLIENT-TOOLS-BETA/x86_64/product/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "RES8-Manager-Tools-Beta-Pool for x86_64 Rocky", + "product_type": "extension", + "gpg_info": [ + { + "url": "file:///etc/pki/rpm-gpg/el-tools-gpg-pubkey-39db7c82.key", + "keyId": "39DB7C82", + "fingerprint": "FEAB502539D846DB2C0961CA70AF9E8139DB7C82" + } + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "res8-manager-tools-beta-debuginfo-pool-x86_64-rocky", + "parent_channel_label": "rockylinux-8-x86_64", + "product_id": 2066, + "repository_id": 4414, + "parent_product_id": 2007, + "root_product_id": -24, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Products/RES/8-CLIENT-TOOLS-BETA/x86_64/product_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "RES8-Manager-Tools-Beta-Debuginfo-Pool for x86_64 Rocky", + "product_type": "extension", + "gpg_info": [ + { + "url": "file:///etc/pki/rpm-gpg/el-tools-gpg-pubkey-39db7c82.key", + "keyId": "39DB7C82", + "fingerprint": "FEAB502539D846DB2C0961CA70AF9E8139DB7C82" + } + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "almalinux8-ha-x86_64", + "parent_channel_label": "almalinux8-x86_64", + "product_id": -23, + "repository_id": -364, + "parent_product_id": null, + "root_product_id": -23, + "update_tag": null, + "url": "https://mirrors.almalinux.org/mirrorlist/8/ha", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "almalinux8-ha for x86_64", + "product_type": "base", + "gpg_info": [ + { + "url": "file:///etc/pki/rpm-gpg/RPM-GPG-KEY-AlmaLinux", + "keyId": "3ABB34F8", + "fingerprint": "5E9B8F5617B5066CE92057C3488FCF7C3ABB34F8" + } + ], + "tags": [ + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "almalinux8-powertools-x86_64", + "parent_channel_label": "almalinux8-x86_64", + "product_id": -23, + "repository_id": -363, + "parent_product_id": null, + "root_product_id": -23, + "update_tag": null, + "url": "https://mirrors.almalinux.org/mirrorlist/8/powertools", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "almalinux8-powertools for x86_64", + "product_type": "base", + "gpg_info": [ + { + "url": "file:///etc/pki/rpm-gpg/RPM-GPG-KEY-AlmaLinux", + "keyId": "3ABB34F8", + "fingerprint": "5E9B8F5617B5066CE92057C3488FCF7C3ABB34F8" + } + ], + "tags": [ + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "almalinux8-extras-x86_64", + "parent_channel_label": "almalinux8-x86_64", + "product_id": -23, + "repository_id": -362, + "parent_product_id": null, + "root_product_id": -23, + "update_tag": null, + "url": "https://mirrors.almalinux.org/mirrorlist/8/extras", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "almalinux8-extras for x86_64", + "product_type": "base", + "gpg_info": [ + { + "url": "file:///etc/pki/rpm-gpg/RPM-GPG-KEY-AlmaLinux", + "keyId": "3ABB34F8", + "fingerprint": "5E9B8F5617B5066CE92057C3488FCF7C3ABB34F8" + } + ], + "tags": [ + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "almalinux8-appstream-x86_64", + "parent_channel_label": "almalinux8-x86_64", + "product_id": -23, + "repository_id": -361, + "parent_product_id": null, + "root_product_id": -23, + "update_tag": null, + "url": "https://mirrors.almalinux.org/mirrorlist/8/appstream", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "almalinux8-appstream for x86_64", + "product_type": "base", + "gpg_info": [ + { + "url": "file:///etc/pki/rpm-gpg/RPM-GPG-KEY-AlmaLinux", + "keyId": "3ABB34F8", + "fingerprint": "5E9B8F5617B5066CE92057C3488FCF7C3ABB34F8" + } + ], + "tags": [ + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "almalinux8-x86_64", + "parent_channel_label": null, + "product_id": -23, + "repository_id": -360, + "parent_product_id": null, + "root_product_id": -23, + "update_tag": null, + "url": "https://mirrors.almalinux.org/mirrorlist/8/baseos", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "almalinux8 for x86_64", + "product_type": "base", + "gpg_info": [ + { + "url": "file:///etc/pki/rpm-gpg/RPM-GPG-KEY-AlmaLinux", + "keyId": "3ABB34F8", + "fingerprint": "5E9B8F5617B5066CE92057C3488FCF7C3ABB34F8" + } + ], + "tags": [ + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "res8-manager-tools-updates-x86_64-alma", + "parent_channel_label": "almalinux8-x86_64", + "product_id": 2007, + "repository_id": 4311, + "parent_product_id": -23, + "root_product_id": -23, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Updates/RES/8-CLIENT-TOOLS/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "RES8-Manager-Tools-Updates for x86_64 Alma", + "product_type": "extension", + "gpg_info": [ + { + "url": "file:///etc/pki/rpm-gpg/el-tools-gpg-pubkey-39db7c82.key", + "keyId": "39DB7C82", + "fingerprint": "FEAB502539D846DB2C0961CA70AF9E8139DB7C82" + } + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "res8-manager-tools-debuginfo-updates-x86_64-alma", + "parent_channel_label": "almalinux8-x86_64", + "product_id": 2007, + "repository_id": 4312, + "parent_product_id": -23, + "root_product_id": -23, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Updates/RES/8-CLIENT-TOOLS/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "RES8-Manager-Tools-Debuginfo-Updates for x86_64 Alma", + "product_type": "extension", + "gpg_info": [ + { + "url": "file:///etc/pki/rpm-gpg/el-tools-gpg-pubkey-39db7c82.key", + "keyId": "39DB7C82", + "fingerprint": "FEAB502539D846DB2C0961CA70AF9E8139DB7C82" + } + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "res8-manager-tools-pool-x86_64-alma", + "parent_channel_label": "almalinux8-x86_64", + "product_id": 2007, + "repository_id": 4313, + "parent_product_id": -23, + "root_product_id": -23, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Products/RES/8-CLIENT-TOOLS/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "RES8-Manager-Tools-Pool for x86_64 Alma", + "product_type": "extension", + "gpg_info": [ + { + "url": "file:///etc/pki/rpm-gpg/el-tools-gpg-pubkey-39db7c82.key", + "keyId": "39DB7C82", + "fingerprint": "FEAB502539D846DB2C0961CA70AF9E8139DB7C82" + } + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "res8-manager-tools-debuginfo-pool-x86_64-alma", + "parent_channel_label": "almalinux8-x86_64", + "product_id": 2007, + "repository_id": 4314, + "parent_product_id": -23, + "root_product_id": -23, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Products/RES/8-CLIENT-TOOLS/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "RES8-Manager-Tools-Debuginfo-Pool for x86_64 Alma", + "product_type": "extension", + "gpg_info": [ + { + "url": "file:///etc/pki/rpm-gpg/el-tools-gpg-pubkey-39db7c82.key", + "keyId": "39DB7C82", + "fingerprint": "FEAB502539D846DB2C0961CA70AF9E8139DB7C82" + } + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "res8-manager-tools-beta-updates-x86_64-alma", + "parent_channel_label": "almalinux8-x86_64", + "product_id": 2066, + "repository_id": 4411, + "parent_product_id": 2007, + "root_product_id": -23, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Updates/RES/8-CLIENT-TOOLS-BETA/x86_64/update/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "RES8-Manager-Tools-Beta-Updates for x86_64 Alma", + "product_type": "extension", + "gpg_info": [ + { + "url": "file:///etc/pki/rpm-gpg/el-tools-gpg-pubkey-39db7c82.key", + "keyId": "39DB7C82", + "fingerprint": "FEAB502539D846DB2C0961CA70AF9E8139DB7C82" + } + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "res8-manager-tools-beta-debuginfo-updates-x86_64-alma", + "parent_channel_label": "almalinux8-x86_64", + "product_id": 2066, + "repository_id": 4412, + "parent_product_id": 2007, + "root_product_id": -23, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Updates/RES/8-CLIENT-TOOLS-BETA/x86_64/update_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "RES8-Manager-Tools-Beta-Debuginfo-Updates for x86_64 Alma", + "product_type": "extension", + "gpg_info": [ + { + "url": "file:///etc/pki/rpm-gpg/el-tools-gpg-pubkey-39db7c82.key", + "keyId": "39DB7C82", + "fingerprint": "FEAB502539D846DB2C0961CA70AF9E8139DB7C82" + } + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "res8-manager-tools-beta-pool-x86_64-alma", + "parent_channel_label": "almalinux8-x86_64", + "product_id": 2066, + "repository_id": 4413, + "parent_product_id": 2007, + "root_product_id": -23, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Products/RES/8-CLIENT-TOOLS-BETA/x86_64/product/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "RES8-Manager-Tools-Beta-Pool for x86_64 Alma", + "product_type": "extension", + "gpg_info": [ + { + "url": "file:///etc/pki/rpm-gpg/el-tools-gpg-pubkey-39db7c82.key", + "keyId": "39DB7C82", + "fingerprint": "FEAB502539D846DB2C0961CA70AF9E8139DB7C82" + } + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "res8-manager-tools-beta-debuginfo-pool-x86_64-alma", + "parent_channel_label": "almalinux8-x86_64", + "product_id": 2066, + "repository_id": 4414, + "parent_product_id": 2007, + "root_product_id": -23, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Products/RES/8-CLIENT-TOOLS-BETA/x86_64/product_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "RES8-Manager-Tools-Beta-Debuginfo-Pool for x86_64 Alma", + "product_type": "extension", + "gpg_info": [ + { + "url": "file:///etc/pki/rpm-gpg/el-tools-gpg-pubkey-39db7c82.key", + "keyId": "39DB7C82", + "fingerprint": "FEAB502539D846DB2C0961CA70AF9E8139DB7C82" + } + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "amazonlinux2-extras-docker-x86_64", + "parent_channel_label": "amazonlinux2-core-x86_64", + "product_id": -22, + "repository_id": -286, + "parent_product_id": null, + "root_product_id": -22, + "update_tag": null, + "url": "https://amazonlinux.default.amazonlinux.com/2/extras/docker/latest/x86_64/mirror.list", + "release_stage": "released", + "mandatory": false, + "signed": false, + "recommended": false, + "channel_name": "amazonlinux2-extras-docker for x86_64", + "product_type": "base", + "gpg_info": [ + { + "url": "file:///etc/pki/rpm-gpg/RPM-GPG-KEY-amazon-linux-2", + "keyId": "C87F5B1A", + "fingerprint": "99E617FE5DB527C0D8BD5F8E11CF1F95C87F5B1A" + } + ], + "tags": [ + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "amazonlinux2-core-x86_64", + "parent_channel_label": null, + "product_id": -22, + "repository_id": -285, + "parent_product_id": null, + "root_product_id": -22, + "update_tag": null, + "url": "https://amazonlinux.default.amazonlinux.com/2/core/latest/x86_64/mirror.list", + "release_stage": "released", + "mandatory": true, + "signed": false, + "recommended": false, + "channel_name": "amazonlinux2-core for x86_64", + "product_type": "base", + "gpg_info": [ + { + "url": "file:///etc/pki/rpm-gpg/RPM-GPG-KEY-amazon-linux-2", + "keyId": "C87F5B1A", + "fingerprint": "99E617FE5DB527C0D8BD5F8E11CF1F95C87F5B1A" + } + ], + "tags": [ + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "res-7-suse-manager-tools-x86_64-amazon", + "parent_channel_label": "amazonlinux2-core-x86_64", + "product_id": 1683, + "repository_id": 1746, + "parent_product_id": -22, + "root_product_id": -22, + "update_tag": "suse-res7ct", + "url": "https://updates.suse.com/repo/$RCE/RES7-SUSE-Manager-Tools/x86_64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "RES-7-SUSE-Manager-Tools for x86_64 Amazon", + "product_type": "extension", + "gpg_info": [ + { + "url": "file:///etc/pki/rpm-gpg/el-tools-gpg-pubkey-39db7c82.key", + "keyId": "39DB7C82", + "fingerprint": "FEAB502539D846DB2C0961CA70AF9E8139DB7C82" + } + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "res-7-suse-manager-tools-beta-x86_64-amazon", + "parent_channel_label": "amazonlinux2-core-x86_64", + "product_id": 2065, + "repository_id": 4410, + "parent_product_id": 1683, + "root_product_id": -22, + "update_tag": null, + "url": "https://updates.suse.com/repo/$RCE/RES7-SUSE-Manager-Tools-Beta/x86_64/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "RES-7-SUSE-Manager-Tools-Beta for x86_64 Amazon", + "product_type": "extension", + "gpg_info": [ + { + "url": "file:///etc/pki/rpm-gpg/el-tools-gpg-pubkey-39db7c82.key", + "keyId": "39DB7C82", + "fingerprint": "FEAB502539D846DB2C0961CA70AF9E8139DB7C82" + } + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "oes2018-sp3-sle-module-toolchain12-debuginfo-updates-x86_64", + "parent_channel_label": "oes2018-sp3-pool-x86_64", + "product_id": -21, + "repository_id": -284, + "parent_product_id": null, + "root_product_id": -21, + "update_tag": null, + "url": "https://nu.novell.com/repo/$RCE/OES2018-SP3-SLE-Module-Toolchain12-Debuginfo-Updates/sle-12-x86_64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "OES2018-SP3-SLE-Module-Toolchain12-Debuginfo-Updates for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "oes2018-sp3-sle-module-toolchain12-debuginfo-pool-x86_64", + "parent_channel_label": "oes2018-sp3-pool-x86_64", + "product_id": -21, + "repository_id": -283, + "parent_product_id": null, + "root_product_id": -21, + "update_tag": null, + "url": "https://nu.novell.com/repo/$RCE/OES2018-SP3-SLE-Module-Toolchain12-Debuginfo-Pool/sle-12-x86_64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "OES2018-SP3-SLE-Module-Toolchain12-Debuginfo-Pool for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "oes2018-sp3-sle-module-toolchain12-updates-x86_64", + "parent_channel_label": "oes2018-sp3-pool-x86_64", + "product_id": -21, + "repository_id": -282, + "parent_product_id": null, + "root_product_id": -21, + "update_tag": null, + "url": "https://nu.novell.com/repo/$RCE/OES2018-SP3-SLE-Module-Toolchain12-Updates/sle-12-x86_64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "OES2018-SP3-SLE-Module-Toolchain12-Updates for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "oes2018-sp3-sle-module-toolchain12-pool-x86_64", + "parent_channel_label": "oes2018-sp3-pool-x86_64", + "product_id": -21, + "repository_id": -281, + "parent_product_id": null, + "root_product_id": -21, + "update_tag": null, + "url": "https://nu.novell.com/repo/$RCE/OES2018-SP3-SLE-Module-Toolchain12-Pool/sle-12-x86_64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "OES2018-SP3-SLE-Module-Toolchain12-Pool for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "oes2018-sp3-sle-module-web-scripting12-debuginfo-updates-x86_64", + "parent_channel_label": "oes2018-sp3-pool-x86_64", + "product_id": -21, + "repository_id": -280, + "parent_product_id": null, + "root_product_id": -21, + "update_tag": null, + "url": "https://nu.novell.com/repo/$RCE/OES2018-SP3-SLE-Module-Web-Scripting12-Debuginfo-Updates/sle-12-x86_64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "OES2018-SP3-SLE-Module-Web-Scripting12-Debuginfo-Updates for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "oes2018-sp3-sle-module-web-scripting12-debuginfo-pool-x86_64", + "parent_channel_label": "oes2018-sp3-pool-x86_64", + "product_id": -21, + "repository_id": -279, + "parent_product_id": null, + "root_product_id": -21, + "update_tag": null, + "url": "https://nu.novell.com/repo/$RCE/OES2018-SP3-SLE-Module-Web-Scripting12-Debuginfo-Pool/sle-12-x86_64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "OES2018-SP3-SLE-Module-Web-Scripting12-Debuginfo-Pool for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "oes2018-sp3-sle-module-web-scripting12-updates-x86_64", + "parent_channel_label": "oes2018-sp3-pool-x86_64", + "product_id": -21, + "repository_id": -278, + "parent_product_id": null, + "root_product_id": -21, + "update_tag": null, + "url": "https://nu.novell.com/repo/$RCE/OES2018-SP3-SLE-Module-Web-Scripting12-Updates/sle-12-x86_64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "OES2018-SP3-SLE-Module-Web-Scripting12-Updates for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "oes2018-sp3-sle-module-web-scripting12-pool-x86_64", + "parent_channel_label": "oes2018-sp3-pool-x86_64", + "product_id": -21, + "repository_id": -277, + "parent_product_id": null, + "root_product_id": -21, + "update_tag": null, + "url": "https://nu.novell.com/repo/$RCE/OES2018-SP3-SLE-Module-Web-Scripting12-Pool/sle-12-x86_64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "OES2018-SP3-SLE-Module-Web-Scripting12-Pool for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "oes2018-sp3-sle-module-public-cloud12-debuginfo-updates-x86_64", + "parent_channel_label": "oes2018-sp3-pool-x86_64", + "product_id": -21, + "repository_id": -276, + "parent_product_id": null, + "root_product_id": -21, + "update_tag": null, + "url": "https://nu.novell.com/repo/$RCE/OES2018-SP3-SLE-Module-Public-Cloud12-Debuginfo-Updates/sle-12-x86_64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "OES2018-SP3-SLE-Module-Public-Cloud12-Debuginfo-Updates for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "oes2018-sp3-sle-module-public-cloud12-debuginfo-pool-x86_64", + "parent_channel_label": "oes2018-sp3-pool-x86_64", + "product_id": -21, + "repository_id": -275, + "parent_product_id": null, + "root_product_id": -21, + "update_tag": null, + "url": "https://nu.novell.com/repo/$RCE/OES2018-SP3-SLE-Module-Public-Cloud12-Debuginfo-Pool/sle-12-x86_64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "OES2018-SP3-SLE-Module-Public-Cloud12-Debuginfo-Pool for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "oes2018-sp3-sle-module-public-cloud12-updates-x86_64", + "parent_channel_label": "oes2018-sp3-pool-x86_64", + "product_id": -21, + "repository_id": -274, + "parent_product_id": null, + "root_product_id": -21, + "update_tag": null, + "url": "https://nu.novell.com/repo/$RCE/OES2018-SP3-SLE-Module-Public-Cloud12-Updates/sle-12-x86_64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "OES2018-SP3-SLE-Module-Public-Cloud12-Updates for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "oes2018-sp3-sle-module-public-cloud12-pool-x86_64", + "parent_channel_label": "oes2018-sp3-pool-x86_64", + "product_id": -21, + "repository_id": -273, + "parent_product_id": null, + "root_product_id": -21, + "update_tag": null, + "url": "https://nu.novell.com/repo/$RCE/OES2018-SP3-SLE-Module-Public-Cloud12-Pool/sle-12-x86_64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "OES2018-SP3-SLE-Module-Public-Cloud12-Pool for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "oes2018-sp3-sle-sdk-12-sp5-debuginfo-updates-x86_64", + "parent_channel_label": "oes2018-sp3-pool-x86_64", + "product_id": -21, + "repository_id": -272, + "parent_product_id": null, + "root_product_id": -21, + "update_tag": null, + "url": "https://nu.novell.com/repo/$RCE/OES2018-SP3-SLE-SDK-12-SP5-Debuginfo-Updates/sle-12-x86_64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "OES2018-SP3-SLE-SDK-12-SP5-Debuginfo-Updates for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "oes2018-sp3-sle-sdk-12-sp5-debuginfo-pool-x86_64", + "parent_channel_label": "oes2018-sp3-pool-x86_64", + "product_id": -21, + "repository_id": -271, + "parent_product_id": null, + "root_product_id": -21, + "update_tag": null, + "url": "https://nu.novell.com/repo/$RCE/OES2018-SP3-SLE-SDK-12-SP5-Debuginfo-Pool/sle-12-x86_64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "OES2018-SP3-SLE-SDK-12-SP5-Debuginfo-Pool for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "oes2018-sp3-sle-sdk-12-sp5-updates-x86_64", + "parent_channel_label": "oes2018-sp3-pool-x86_64", + "product_id": -21, + "repository_id": -270, + "parent_product_id": null, + "root_product_id": -21, + "update_tag": null, + "url": "https://nu.novell.com/repo/$RCE/OES2018-SP3-SLE-SDK-12-SP5-Updates/sle-12-x86_64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "OES2018-SP3-SLE-SDK-12-SP5-Updates for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "oes2018-sp3-sle-sdk-12-sp5-pool-x86_64", + "parent_channel_label": "oes2018-sp3-pool-x86_64", + "product_id": -21, + "repository_id": -269, + "parent_product_id": null, + "root_product_id": -21, + "update_tag": null, + "url": "https://nu.novell.com/repo/$RCE/OES2018-SP3-SLE-SDK-12-SP5-Pool/sle-12-x86_64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "OES2018-SP3-SLE-SDK-12-SP5-Pool for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "oes2018-sp3-sle-manager-tools12-updates-x86_64", + "parent_channel_label": "oes2018-sp3-pool-x86_64", + "product_id": -21, + "repository_id": -268, + "parent_product_id": null, + "root_product_id": -21, + "update_tag": null, + "url": "https://nu.novell.com/repo/$RCE/OES2018-SP3-SLE-Manager-Tools12-Updates/sle-12-x86_64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "OES2018-SP3-SLE-Manager-Tools12-Updates for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "oes2018-sp3-sle-manager-tools12-pool-x86_64", + "parent_channel_label": "oes2018-sp3-pool-x86_64", + "product_id": -21, + "repository_id": -267, + "parent_product_id": null, + "root_product_id": -21, + "update_tag": null, + "url": "https://nu.novell.com/repo/$RCE/OES2018-SP3-SLE-Manager-Tools12-Pool/sle-12-x86_64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "OES2018-SP3-SLE-Manager-Tools12-Pool for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "oes2018-sp3-sle-manager-tools12-debuginfo-updates-x86_64", + "parent_channel_label": "oes2018-sp3-pool-x86_64", + "product_id": -21, + "repository_id": -266, + "parent_product_id": null, + "root_product_id": -21, + "update_tag": null, + "url": "https://nu.novell.com/repo/$RCE/OES2018-SP3-SLE-Manager-Tools12-Debuginfo-Updates/sle-12-x86_64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "OES2018-SP3-SLE-Manager-Tools12-Debuginfo-Updates for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "oes2018-sp3-sle-manager-tools12-debuginfo-pool-x86_64", + "parent_channel_label": "oes2018-sp3-pool-x86_64", + "product_id": -21, + "repository_id": -265, + "parent_product_id": null, + "root_product_id": -21, + "update_tag": null, + "url": "https://nu.novell.com/repo/$RCE/OES2018-SP3-SLE-Manager-Tools12-Debuginfo-Pool/sle-12-x86_64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "OES2018-SP3-SLE-Manager-Tools12-Debuginfo-Pool for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "oes2018-sp3-sle-module-containers12-debuginfo-updates-x86_64", + "parent_channel_label": "oes2018-sp3-pool-x86_64", + "product_id": -21, + "repository_id": -264, + "parent_product_id": null, + "root_product_id": -21, + "update_tag": null, + "url": "https://nu.novell.com/repo/$RCE/OES2018-SP3-SLE-Module-Containers12-Debuginfo-Updates/sle-12-x86_64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "OES2018-SP3-SLE-Module-Containers12-Debuginfo-Updates for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "oes2018-sp3-sle-module-containers12-debuginfo-pool-x86_64", + "parent_channel_label": "oes2018-sp3-pool-x86_64", + "product_id": -21, + "repository_id": -263, + "parent_product_id": null, + "root_product_id": -21, + "update_tag": null, + "url": "https://nu.novell.com/repo/$RCE/OES2018-SP3-SLE-Module-Containers12-Debuginfo-Pool/sle-12-x86_64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "OES2018-SP3-SLE-Module-Containers12-Debuginfo-Pool for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "oes2018-sp3-sle-module-containers12-updates-x86_64", + "parent_channel_label": "oes2018-sp3-pool-x86_64", + "product_id": -21, + "repository_id": -262, + "parent_product_id": null, + "root_product_id": -21, + "update_tag": null, + "url": "https://nu.novell.com/repo/$RCE/OES2018-SP3-SLE-Module-Containers12-Updates/sle-12-x86_64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "OES2018-SP3-SLE-Module-Containers12-Updates for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "oes2018-sp3-sle-module-containers12-pool-x86_64", + "parent_channel_label": "oes2018-sp3-pool-x86_64", + "product_id": -21, + "repository_id": -261, + "parent_product_id": null, + "root_product_id": -21, + "update_tag": null, + "url": "https://nu.novell.com/repo/$RCE/OES2018-SP3-SLE-Module-Containers12-Pool/sle-12-x86_64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "OES2018-SP3-SLE-Module-Containers12-Pool for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "oes2018-sp3-sles12-sp5-updates-x86_64", + "parent_channel_label": "oes2018-sp3-pool-x86_64", + "product_id": -21, + "repository_id": -260, + "parent_product_id": null, + "root_product_id": -21, + "update_tag": null, + "url": "https://nu.novell.com/repo/$RCE/OES2018-SP3-SLES12-SP5-Updates/sle-12-x86_64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "OES2018-SP3-SLES12-SP5-Updates for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "oes2018-sp3-sles12-sp5-pool-x86_64", + "parent_channel_label": "oes2018-sp3-pool-x86_64", + "product_id": -21, + "repository_id": -259, + "parent_product_id": null, + "root_product_id": -21, + "update_tag": null, + "url": "https://nu.novell.com/repo/$RCE/OES2018-SP3-SLES12-SP5-Pool/sle-12-x86_64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "OES2018-SP3-SLES12-SP5-Pool for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "oes2018-sp3-sles12-sp5-debuginfo-updates-x86_64", + "parent_channel_label": "oes2018-sp3-pool-x86_64", + "product_id": -21, + "repository_id": -258, + "parent_product_id": null, + "root_product_id": -21, + "update_tag": null, + "url": "https://nu.novell.com/repo/$RCE/OES2018-SP3-SLES12-SP5-Debuginfo-Updates/sle-12-x86_64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "OES2018-SP3-SLES12-SP5-Debuginfo-Updates for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "oes2018-sp3-sles12-sp5-debuginfo-pool-x86_64", + "parent_channel_label": "oes2018-sp3-pool-x86_64", + "product_id": -21, + "repository_id": -257, + "parent_product_id": null, + "root_product_id": -21, + "update_tag": null, + "url": "https://nu.novell.com/repo/$RCE/OES2018-SP3-SLES12-SP5-Debuginfo-Pool/sle-12-x86_64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "OES2018-SP3-SLES12-SP5-Debuginfo-Pool for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "oes2018-sp3-updates-x86_64", + "parent_channel_label": "oes2018-sp3-pool-x86_64", + "product_id": -21, + "repository_id": -256, + "parent_product_id": null, + "root_product_id": -21, + "update_tag": null, + "url": "https://nu.novell.com/repo/$RCE/OES2018-SP3-Updates/sle-12-x86_64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "OES2018-SP3-Updates for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "oes2018-sp3-pool-x86_64", + "parent_channel_label": null, + "product_id": -21, + "repository_id": -255, + "parent_product_id": null, + "root_product_id": -21, + "update_tag": null, + "url": "https://nu.novell.com/repo/$RCE/OES2018-SP3-Pool/sle-12-x86_64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "OES2018-SP3-Pool for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "debian-10-main-security-amd64", + "parent_channel_label": "debian-10-pool-amd64", + "product_id": -20, + "repository_id": -219, + "parent_product_id": null, + "root_product_id": -20, + "update_tag": null, + "url": "http://security-cdn.debian.org/debian-security/dists/buster/updates/main/binary-amd64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "debian-10-main-security for amd64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "debian-10-main-updates-amd64", + "parent_channel_label": "debian-10-pool-amd64", + "product_id": -20, + "repository_id": -218, + "parent_product_id": null, + "root_product_id": -20, + "update_tag": null, + "url": "http://deb.debian.org/debian/dists/buster-updates/main/binary-amd64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "debian-10-main-updates for amd64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "debian-10-pool-amd64", + "parent_channel_label": null, + "product_id": -20, + "repository_id": -217, + "parent_product_id": null, + "root_product_id": -20, + "update_tag": null, + "url": "http://deb.debian.org/debian/dists/buster/main/binary-amd64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "debian-10-pool for amd64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "debian-10-suse-manager-tools-amd64", + "parent_channel_label": "debian-10-pool-amd64", + "product_id": 2210, + "repository_id": 4949, + "parent_product_id": -20, + "root_product_id": -20, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Updates/Debian/10-CLIENT-TOOLS/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "Debian-10-SUSE-Manager-Tools for amd64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "debian-10-suse-manager-tools-beta-amd64", + "parent_channel_label": "debian-10-pool-amd64", + "product_id": 2211, + "repository_id": 4950, + "parent_product_id": 2210, + "root_product_id": -20, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Updates/Debian/10-CLIENT-TOOLS-BETA/x86_64/update/", + "release_stage": "alpha", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "Debian-10-SUSE-Manager-Tools-Beta for amd64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "debian-9-main-security-amd64", + "parent_channel_label": "debian-9-pool-amd64", + "product_id": -19, + "repository_id": -384, + "parent_product_id": null, + "root_product_id": -19, + "update_tag": null, + "url": "https://archive.debian.org/debian-security/dists/stretch/updates/main/binary-amd64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "debian-9-main-security for amd64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "debian-9-pool-amd64", + "parent_channel_label": null, + "product_id": -19, + "repository_id": -383, + "parent_product_id": null, + "root_product_id": -19, + "update_tag": null, + "url": "https://archive.debian.org/debian/dists/stretch/main/binary-amd64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "debian-9-pool for amd64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "debian-9-suse-manager-tools-amd64", + "parent_channel_label": "debian-9-pool-amd64", + "product_id": 2208, + "repository_id": 4947, + "parent_product_id": -19, + "root_product_id": -19, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Updates/Debian/9.0-CLIENT-TOOLS/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "Debian-9-SUSE-Manager-Tools for amd64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "debian-9-suse-manager-tools-beta-amd64", + "parent_channel_label": "debian-9-pool-amd64", + "product_id": 2209, + "repository_id": 4948, + "parent_product_id": 2208, + "root_product_id": -19, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Updates/Debian/9.0-CLIENT-TOOLS-BETA/x86_64/update/", + "release_stage": "alpha", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "Debian-9-SUSE-Manager-Tools-Beta for amd64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "ubuntu-2004-amd64-main-security-amd64", + "parent_channel_label": "ubuntu-2004-amd64-main-amd64", + "product_id": -18, + "repository_id": -248, + "parent_product_id": null, + "root_product_id": -18, + "update_tag": null, + "url": "http://security.ubuntu.com/ubuntu/dists/focal-security/main/binary-amd64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "ubuntu-2004-amd64-main-security for amd64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "ubuntu-2004-amd64-universe-updates-amd64", + "parent_channel_label": "ubuntu-2004-amd64-main-amd64", + "product_id": -18, + "repository_id": -247, + "parent_product_id": null, + "root_product_id": -18, + "update_tag": null, + "url": "http://archive.ubuntu.com/ubuntu/dists/focal-updates/universe/binary-amd64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "ubuntu-2004-amd64-universe-updates for amd64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "ubuntu-2004-amd64-restricted-updates-amd64", + "parent_channel_label": "ubuntu-2004-amd64-main-amd64", + "product_id": -18, + "repository_id": -246, + "parent_product_id": null, + "root_product_id": -18, + "update_tag": null, + "url": "http://archive.ubuntu.com/ubuntu/dists/focal-updates/restricted/binary-amd64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "ubuntu-2004-amd64-restricted-updates for amd64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "ubuntu-2004-amd64-multiverse-updates-amd64", + "parent_channel_label": "ubuntu-2004-amd64-main-amd64", + "product_id": -18, + "repository_id": -245, + "parent_product_id": null, + "root_product_id": -18, + "update_tag": null, + "url": "http://archive.ubuntu.com/ubuntu/dists/focal-updates/multiverse/binary-amd64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "ubuntu-2004-amd64-multiverse-updates for amd64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "ubuntu-2004-amd64-universe-security-amd64", + "parent_channel_label": "ubuntu-2004-amd64-main-amd64", + "product_id": -18, + "repository_id": -244, + "parent_product_id": null, + "root_product_id": -18, + "update_tag": null, + "url": "http://security.ubuntu.com/ubuntu/dists/focal-security/universe/binary-amd64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "ubuntu-2004-amd64-universe-security for amd64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "ubuntu-2004-amd64-restricted-security-amd64", + "parent_channel_label": "ubuntu-2004-amd64-main-amd64", + "product_id": -18, + "repository_id": -243, + "parent_product_id": null, + "root_product_id": -18, + "update_tag": null, + "url": "http://security.ubuntu.com/ubuntu/dists/focal-security/restricted/binary-amd64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "ubuntu-2004-amd64-restricted-security for amd64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "ubuntu-2004-amd64-multiverse-security-amd64", + "parent_channel_label": "ubuntu-2004-amd64-main-amd64", + "product_id": -18, + "repository_id": -242, + "parent_product_id": null, + "root_product_id": -18, + "update_tag": null, + "url": "http://security.ubuntu.com/ubuntu/dists/focal-security/multiverse/binary-amd64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "ubuntu-2004-amd64-multiverse-security for amd64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "ubuntu-2004-amd64-universe-backports-amd64", + "parent_channel_label": "ubuntu-2004-amd64-main-amd64", + "product_id": -18, + "repository_id": -241, + "parent_product_id": null, + "root_product_id": -18, + "update_tag": null, + "url": "http://archive.ubuntu.com/ubuntu/dists/focal-backports/universe/binary-amd64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "ubuntu-2004-amd64-universe-backports for amd64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "ubuntu-2004-amd64-restricted-backports-amd64", + "parent_channel_label": "ubuntu-2004-amd64-main-amd64", + "product_id": -18, + "repository_id": -240, + "parent_product_id": null, + "root_product_id": -18, + "update_tag": null, + "url": "http://archive.ubuntu.com/ubuntu/dists/focal-backports/restricted/binary-amd64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "ubuntu-2004-amd64-restricted-backports for amd64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "ubuntu-2004-amd64-multiverse-backports-amd64", + "parent_channel_label": "ubuntu-2004-amd64-main-amd64", + "product_id": -18, + "repository_id": -239, + "parent_product_id": null, + "root_product_id": -18, + "update_tag": null, + "url": "http://archive.ubuntu.com/ubuntu/dists/focal-backports/multiverse/binary-amd64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "ubuntu-2004-amd64-multiverse-backports for amd64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "ubuntu-2004-amd64-main-backports-amd64", + "parent_channel_label": "ubuntu-2004-amd64-main-amd64", + "product_id": -18, + "repository_id": -238, + "parent_product_id": null, + "root_product_id": -18, + "update_tag": null, + "url": "http://archive.ubuntu.com/ubuntu/dists/focal-backports/main/binary-amd64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "ubuntu-2004-amd64-main-backports for amd64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "ubuntu-2004-amd64-restricted-amd64", + "parent_channel_label": "ubuntu-2004-amd64-main-amd64", + "product_id": -18, + "repository_id": -237, + "parent_product_id": null, + "root_product_id": -18, + "update_tag": null, + "url": "http://archive.ubuntu.com/ubuntu/dists/focal/restricted/binary-amd64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "ubuntu-2004-amd64-restricted for amd64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "ubuntu-2004-amd64-multiverse-amd64", + "parent_channel_label": "ubuntu-2004-amd64-main-amd64", + "product_id": -18, + "repository_id": -236, + "parent_product_id": null, + "root_product_id": -18, + "update_tag": null, + "url": "http://archive.ubuntu.com/ubuntu/dists/focal/multiverse/binary-amd64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "ubuntu-2004-amd64-multiverse for amd64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "ubuntu-2004-amd64-universe-amd64", + "parent_channel_label": "ubuntu-2004-amd64-main-amd64", + "product_id": -18, + "repository_id": -213, + "parent_product_id": null, + "root_product_id": -18, + "update_tag": null, + "url": "http://archive.ubuntu.com/ubuntu/dists/focal/universe/binary-amd64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "ubuntu-2004-amd64-universe for amd64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "ubuntu-2004-amd64-main-updates-amd64", + "parent_channel_label": "ubuntu-2004-amd64-main-amd64", + "product_id": -18, + "repository_id": -211, + "parent_product_id": null, + "root_product_id": -18, + "update_tag": null, + "url": "http://archive.ubuntu.com/ubuntu/dists/focal-updates/main/binary-amd64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "ubuntu-2004-amd64-main-updates for amd64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "ubuntu-2004-amd64-main-amd64", + "parent_channel_label": null, + "product_id": -18, + "repository_id": -210, + "parent_product_id": null, + "root_product_id": -18, + "update_tag": null, + "url": "http://archive.ubuntu.com/ubuntu/dists/focal/main/binary-amd64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "ubuntu-2004-amd64-main for amd64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "ubuntu-20.04-suse-manager-tools-amd64", + "parent_channel_label": "ubuntu-2004-amd64-main-amd64", + "product_id": 2113, + "repository_id": 4485, + "parent_product_id": -18, + "root_product_id": -18, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Updates/Ubuntu/20.04-CLIENT-TOOLS/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "Ubuntu-20.04-SUSE-Manager-Tools for amd64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "ubuntu-20.04-suse-manager-tools-beta-amd64", + "parent_channel_label": "ubuntu-2004-amd64-main-amd64", + "product_id": 2112, + "repository_id": 4483, + "parent_product_id": 2113, + "root_product_id": -18, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Updates/Ubuntu/20.04-CLIENT-TOOLS-BETA/x86_64/update/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "Ubuntu-20.04-SUSE-Manager-Tools-Beta for amd64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "oraclelinux8-uek-r6-rdma-x86_64", + "parent_channel_label": "oraclelinux8-x86_64", + "product_id": -17, + "repository_id": -254, + "parent_product_id": null, + "root_product_id": -17, + "update_tag": null, + "url": "https://yum.oracle.com/repo/OracleLinux/OL8/UEKR6/RDMA/x86_64/", + "release_stage": "released", + "mandatory": false, + "signed": false, + "recommended": false, + "channel_name": "oraclelinux8-uek-r6-rdma for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "oraclelinux8-uek-r6-x86_64", + "parent_channel_label": "oraclelinux8-x86_64", + "product_id": -17, + "repository_id": -253, + "parent_product_id": null, + "root_product_id": -17, + "update_tag": null, + "url": "https://yum.oracle.com/repo/OracleLinux/OL8/UEKR6/x86_64/", + "release_stage": "released", + "mandatory": false, + "signed": false, + "recommended": false, + "channel_name": "oraclelinux8-uek-r6 for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "oraclelinux8-developer-x86_64", + "parent_channel_label": "oraclelinux8-x86_64", + "product_id": -17, + "repository_id": -208, + "parent_product_id": null, + "root_product_id": -17, + "update_tag": null, + "url": "https://yum.oracle.com/repo/OracleLinux/OL8/developer/x86_64/", + "release_stage": "released", + "mandatory": false, + "signed": false, + "recommended": false, + "channel_name": "oraclelinux8-developer for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "oraclelinux8-developer-uek-r6-x86_64", + "parent_channel_label": "oraclelinux8-x86_64", + "product_id": -17, + "repository_id": -207, + "parent_product_id": null, + "root_product_id": -17, + "update_tag": null, + "url": "https://yum.oracle.com/repo/OracleLinux/OL8/developer/UEKR6/x86_64/", + "release_stage": "released", + "mandatory": false, + "signed": false, + "recommended": false, + "channel_name": "oraclelinux8-developer-uek-r6 for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "oraclelinux8-codereadybuilder-x86_64", + "parent_channel_label": "oraclelinux8-x86_64", + "product_id": -17, + "repository_id": -206, + "parent_product_id": null, + "root_product_id": -17, + "update_tag": null, + "url": "https://yum.oracle.com/repo/OracleLinux/OL8/codeready/builder/x86_64/", + "release_stage": "released", + "mandatory": false, + "signed": false, + "recommended": false, + "channel_name": "oraclelinux8-codereadybuilder for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "oraclelinux8-addons-x86_64", + "parent_channel_label": "oraclelinux8-x86_64", + "product_id": -17, + "repository_id": -205, + "parent_product_id": null, + "root_product_id": -17, + "update_tag": null, + "url": "https://yum.oracle.com/repo/OracleLinux/OL8/addons/x86_64/", + "release_stage": "released", + "mandatory": false, + "signed": false, + "recommended": false, + "channel_name": "oraclelinux8-addons for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "oraclelinux8-appstream-x86_64", + "parent_channel_label": "oraclelinux8-x86_64", + "product_id": -17, + "repository_id": -204, + "parent_product_id": null, + "root_product_id": -17, + "update_tag": null, + "url": "https://yum.oracle.com/repo/OracleLinux/OL8/appstream/x86_64/", + "release_stage": "released", + "mandatory": true, + "signed": false, + "recommended": false, + "channel_name": "oraclelinux8-appstream for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "oraclelinux8-x86_64", + "parent_channel_label": null, + "product_id": -17, + "repository_id": -203, + "parent_product_id": null, + "root_product_id": -17, + "update_tag": null, + "url": "https://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/", + "release_stage": "released", + "mandatory": true, + "signed": false, + "recommended": false, + "channel_name": "oraclelinux8 for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "res8-manager-tools-updates-x86_64-ol8", + "parent_channel_label": "oraclelinux8-x86_64", + "product_id": 2007, + "repository_id": 4311, + "parent_product_id": -17, + "root_product_id": -17, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Updates/RES/8-CLIENT-TOOLS/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "RES8-Manager-Tools-Updates for x86_64 OL8", + "product_type": "extension", + "gpg_info": [ + { + "url": "file:///etc/pki/rpm-gpg/el-tools-gpg-pubkey-39db7c82.key", + "keyId": "39DB7C82", + "fingerprint": "FEAB502539D846DB2C0961CA70AF9E8139DB7C82" + } + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "res8-manager-tools-debuginfo-updates-x86_64-ol8", + "parent_channel_label": "oraclelinux8-x86_64", + "product_id": 2007, + "repository_id": 4312, + "parent_product_id": -17, + "root_product_id": -17, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Updates/RES/8-CLIENT-TOOLS/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "RES8-Manager-Tools-Debuginfo-Updates for x86_64 OL8", + "product_type": "extension", + "gpg_info": [ + { + "url": "file:///etc/pki/rpm-gpg/el-tools-gpg-pubkey-39db7c82.key", + "keyId": "39DB7C82", + "fingerprint": "FEAB502539D846DB2C0961CA70AF9E8139DB7C82" + } + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "res8-manager-tools-pool-x86_64-ol8", + "parent_channel_label": "oraclelinux8-x86_64", + "product_id": 2007, + "repository_id": 4313, + "parent_product_id": -17, + "root_product_id": -17, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Products/RES/8-CLIENT-TOOLS/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "RES8-Manager-Tools-Pool for x86_64 OL8", + "product_type": "extension", + "gpg_info": [ + { + "url": "file:///etc/pki/rpm-gpg/el-tools-gpg-pubkey-39db7c82.key", + "keyId": "39DB7C82", + "fingerprint": "FEAB502539D846DB2C0961CA70AF9E8139DB7C82" + } + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "res8-manager-tools-debuginfo-pool-x86_64-ol8", + "parent_channel_label": "oraclelinux8-x86_64", + "product_id": 2007, + "repository_id": 4314, + "parent_product_id": -17, + "root_product_id": -17, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Products/RES/8-CLIENT-TOOLS/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "RES8-Manager-Tools-Debuginfo-Pool for x86_64 OL8", + "product_type": "extension", + "gpg_info": [ + { + "url": "file:///etc/pki/rpm-gpg/el-tools-gpg-pubkey-39db7c82.key", + "keyId": "39DB7C82", + "fingerprint": "FEAB502539D846DB2C0961CA70AF9E8139DB7C82" + } + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "res8-manager-tools-beta-updates-x86_64-ol8", + "parent_channel_label": "oraclelinux8-x86_64", + "product_id": 2066, + "repository_id": 4411, + "parent_product_id": 2007, + "root_product_id": -17, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Updates/RES/8-CLIENT-TOOLS-BETA/x86_64/update/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "RES8-Manager-Tools-Beta-Updates for x86_64 OL8", + "product_type": "extension", + "gpg_info": [ + { + "url": "file:///etc/pki/rpm-gpg/el-tools-gpg-pubkey-39db7c82.key", + "keyId": "39DB7C82", + "fingerprint": "FEAB502539D846DB2C0961CA70AF9E8139DB7C82" + } + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "res8-manager-tools-beta-debuginfo-updates-x86_64-ol8", + "parent_channel_label": "oraclelinux8-x86_64", + "product_id": 2066, + "repository_id": 4412, + "parent_product_id": 2007, + "root_product_id": -17, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Updates/RES/8-CLIENT-TOOLS-BETA/x86_64/update_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "RES8-Manager-Tools-Beta-Debuginfo-Updates for x86_64 OL8", + "product_type": "extension", + "gpg_info": [ + { + "url": "file:///etc/pki/rpm-gpg/el-tools-gpg-pubkey-39db7c82.key", + "keyId": "39DB7C82", + "fingerprint": "FEAB502539D846DB2C0961CA70AF9E8139DB7C82" + } + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "res8-manager-tools-beta-pool-x86_64-ol8", + "parent_channel_label": "oraclelinux8-x86_64", + "product_id": 2066, + "repository_id": 4413, + "parent_product_id": 2007, + "root_product_id": -17, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Products/RES/8-CLIENT-TOOLS-BETA/x86_64/product/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "RES8-Manager-Tools-Beta-Pool for x86_64 OL8", + "product_type": "extension", + "gpg_info": [ + { + "url": "file:///etc/pki/rpm-gpg/el-tools-gpg-pubkey-39db7c82.key", + "keyId": "39DB7C82", + "fingerprint": "FEAB502539D846DB2C0961CA70AF9E8139DB7C82" + } + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "res8-manager-tools-beta-debuginfo-pool-x86_64-ol8", + "parent_channel_label": "oraclelinux8-x86_64", + "product_id": 2066, + "repository_id": 4414, + "parent_product_id": 2007, + "root_product_id": -17, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Products/RES/8-CLIENT-TOOLS-BETA/x86_64/product_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "RES8-Manager-Tools-Beta-Debuginfo-Pool for x86_64 OL8", + "product_type": "extension", + "gpg_info": [ + { + "url": "file:///etc/pki/rpm-gpg/el-tools-gpg-pubkey-39db7c82.key", + "keyId": "39DB7C82", + "fingerprint": "FEAB502539D846DB2C0961CA70AF9E8139DB7C82" + } + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "oraclelinux6-mysql56-i386", + "parent_channel_label": "oraclelinux6-i386", + "product_id": -16, + "repository_id": -191, + "parent_product_id": null, + "root_product_id": -16, + "update_tag": null, + "url": "https://yum.oracle.com/repo/OracleLinux/OL6/MySQL56/i386/", + "release_stage": "released", + "mandatory": false, + "signed": false, + "recommended": false, + "channel_name": "oraclelinux6-mysql56 for i386", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "oraclelinux6-mysql55-i386", + "parent_channel_label": "oraclelinux6-i386", + "product_id": -16, + "repository_id": -190, + "parent_product_id": null, + "root_product_id": -16, + "update_tag": null, + "url": "https://yum.oracle.com/repo/OracleLinux/OL6/MySQL/i386/", + "release_stage": "released", + "mandatory": false, + "signed": false, + "recommended": false, + "channel_name": "oraclelinux6-mysql55 for i386", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "oraclelinux6-uek-r2-i386", + "parent_channel_label": "oraclelinux6-i386", + "product_id": -16, + "repository_id": -187, + "parent_product_id": null, + "root_product_id": -16, + "update_tag": null, + "url": "https://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/i386/", + "release_stage": "released", + "mandatory": false, + "signed": false, + "recommended": false, + "channel_name": "oraclelinux6-uek-r2 for i386", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "oraclelinux6-addons-i386", + "parent_channel_label": "oraclelinux6-i386", + "product_id": -16, + "repository_id": -186, + "parent_product_id": null, + "root_product_id": -16, + "update_tag": null, + "url": "https://yum.oracle.com/repo/OracleLinux/OL6/addons/i386/", + "release_stage": "released", + "mandatory": false, + "signed": false, + "recommended": false, + "channel_name": "oraclelinux6-addons for i386", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "oraclelinux6-i386", + "parent_channel_label": null, + "product_id": -16, + "repository_id": -185, + "parent_product_id": null, + "root_product_id": -16, + "update_tag": null, + "url": "https://yum.oracle.com/repo/OracleLinux/OL6/latest/i386/", + "release_stage": "released", + "mandatory": true, + "signed": false, + "recommended": false, + "channel_name": "oraclelinux6 for i386", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "res-6-suse-manager-tools-i386-ol6", + "parent_channel_label": "oraclelinux6-i386", + "product_id": 1681, + "repository_id": 994, + "parent_product_id": -16, + "root_product_id": -16, + "update_tag": "res6ct", + "url": "https://updates.suse.com/repo/$RCE/RES6-SUSE-Manager-Tools/i386/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "RES-6-SUSE-Manager-Tools for i386 OL6", + "product_type": "extension", + "gpg_info": [ + { + "url": "file:///etc/pki/rpm-gpg/el6-tools-gpg-pubkey-307e3d54.key", + "keyId": "307E3D54", + "fingerprint": "4E98E67519D98DC7362A5990E3A5C360307E3D54" + } + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "res-6-suse-manager-tools-beta-i386-ol6", + "parent_channel_label": "oraclelinux6-i386", + "product_id": 2063, + "repository_id": 4408, + "parent_product_id": 1681, + "root_product_id": -16, + "update_tag": null, + "url": "https://updates.suse.com/repo/$RCE/RES6-SUSE-Manager-Tools-Beta/i386/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "RES-6-SUSE-Manager-Tools-Beta for i386 OL6", + "product_type": "extension", + "gpg_info": [ + { + "url": "file:///etc/pki/rpm-gpg/el6-tools-gpg-pubkey-307e3d54.key", + "keyId": "307E3D54", + "fingerprint": "4E98E67519D98DC7362A5990E3A5C360307E3D54" + } + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "oraclelinux6-openstack30-x86_64", + "parent_channel_label": "oraclelinux6-x86_64", + "product_id": -15, + "repository_id": -184, + "parent_product_id": null, + "root_product_id": -15, + "update_tag": null, + "url": "https://yum.oracle.com/repo/OracleLinux/OL6/openstack30/x86_64/", + "release_stage": "released", + "mandatory": false, + "signed": false, + "recommended": false, + "channel_name": "oraclelinux6-openstack30 for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "oraclelinux6-scl-x86_64", + "parent_channel_label": "oraclelinux6-x86_64", + "product_id": -15, + "repository_id": -183, + "parent_product_id": null, + "root_product_id": -15, + "update_tag": null, + "url": "https://public-yum.oracle.com/repo/OracleLinux/OL6/SoftwareCollections/x86_64/", + "release_stage": "released", + "mandatory": false, + "signed": false, + "recommended": false, + "channel_name": "oraclelinux6-scl for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "oraclelinux6-playground-x86_64", + "parent_channel_label": "oraclelinux6-x86_64", + "product_id": -15, + "repository_id": -178, + "parent_product_id": null, + "root_product_id": -15, + "update_tag": null, + "url": "https://yum.oracle.com/repo/OracleLinux/OL6/playground/latest/x86_64/", + "release_stage": "released", + "mandatory": false, + "signed": false, + "recommended": false, + "channel_name": "oraclelinux6-playground for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "oraclelinux6-mysql56-x86_64", + "parent_channel_label": "oraclelinux6-x86_64", + "product_id": -15, + "repository_id": -177, + "parent_product_id": null, + "root_product_id": -15, + "update_tag": null, + "url": "https://yum.oracle.com/repo/OracleLinux/OL6/MySQL56/x86_64/", + "release_stage": "released", + "mandatory": false, + "signed": false, + "recommended": false, + "channel_name": "oraclelinux6-mysql56 for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "oraclelinux6-mysql55-x86_64", + "parent_channel_label": "oraclelinux6-x86_64", + "product_id": -15, + "repository_id": -176, + "parent_product_id": null, + "root_product_id": -15, + "update_tag": null, + "url": "https://yum.oracle.com/repo/OracleLinux/OL6/MySQL/x86_64/", + "release_stage": "released", + "mandatory": false, + "signed": false, + "recommended": false, + "channel_name": "oraclelinux6-mysql55 for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "oraclelinux6-uek-r3-x86_64", + "parent_channel_label": "oraclelinux6-x86_64", + "product_id": -15, + "repository_id": -174, + "parent_product_id": null, + "root_product_id": -15, + "update_tag": null, + "url": "https://yum.oracle.com/repo/OracleLinux/OL6/UEKR3/latest/x86_64/", + "release_stage": "released", + "mandatory": false, + "signed": false, + "recommended": false, + "channel_name": "oraclelinux6-uek-r3 for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "oraclelinux6-uek-r2-x86_64", + "parent_channel_label": "oraclelinux6-x86_64", + "product_id": -15, + "repository_id": -173, + "parent_product_id": null, + "root_product_id": -15, + "update_tag": null, + "url": "https://yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/x86_64/", + "release_stage": "released", + "mandatory": false, + "signed": false, + "recommended": false, + "channel_name": "oraclelinux6-uek-r2 for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "oraclelinux6-addons-x86_64", + "parent_channel_label": "oraclelinux6-x86_64", + "product_id": -15, + "repository_id": -172, + "parent_product_id": null, + "root_product_id": -15, + "update_tag": null, + "url": "https://yum.oracle.com/repo/OracleLinux/OL6/addons/x86_64/", + "release_stage": "released", + "mandatory": false, + "signed": false, + "recommended": false, + "channel_name": "oraclelinux6-addons for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "oraclelinux6-x86_64", + "parent_channel_label": null, + "product_id": -15, + "repository_id": -171, + "parent_product_id": null, + "root_product_id": -15, + "update_tag": null, + "url": "https://yum.oracle.com/repo/OracleLinux/OL6/latest/x86_64/", + "release_stage": "released", + "mandatory": true, + "signed": false, + "recommended": false, + "channel_name": "oraclelinux6 for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "res-6-suse-manager-tools-x86_64-ol6", + "parent_channel_label": "oraclelinux6-x86_64", + "product_id": 1682, + "repository_id": 977, + "parent_product_id": -15, + "root_product_id": -15, + "update_tag": "res6ct", + "url": "https://updates.suse.com/repo/$RCE/RES6-SUSE-Manager-Tools/x86_64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "RES-6-SUSE-Manager-Tools for x86_64 OL6", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "res-6-suse-manager-tools-beta-x86_64-ol6", + "parent_channel_label": "oraclelinux6-x86_64", + "product_id": 2064, + "repository_id": 4409, + "parent_product_id": 1682, + "root_product_id": -15, + "update_tag": null, + "url": "https://updates.suse.com/repo/$RCE/RES6-SUSE-Manager-Tools-Beta/x86_64/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "RES-6-SUSE-Manager-Tools-Beta for x86_64 OL6", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "oraclelinux7-uek-r5-rdma-x86_64", + "parent_channel_label": "oraclelinux7-x86_64", + "product_id": -14, + "repository_id": -252, + "parent_product_id": null, + "root_product_id": -14, + "update_tag": null, + "url": "https://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/RDMA/x86_64/", + "release_stage": "released", + "mandatory": false, + "signed": false, + "recommended": false, + "channel_name": "oraclelinux7-uek-r5-rdma for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "oraclelinux7-uek-r6-rdma-x86_64", + "parent_channel_label": "oraclelinux7-x86_64", + "product_id": -14, + "repository_id": -251, + "parent_product_id": null, + "root_product_id": -14, + "update_tag": null, + "url": "https://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/RDMA/x86_64/", + "release_stage": "released", + "mandatory": false, + "signed": false, + "recommended": false, + "channel_name": "oraclelinux7-uek-r6-rdma for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "oraclelinux7-uek-r6-x86_64", + "parent_channel_label": "oraclelinux7-x86_64", + "product_id": -14, + "repository_id": -250, + "parent_product_id": null, + "root_product_id": -14, + "update_tag": null, + "url": "https://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/", + "release_stage": "released", + "mandatory": false, + "signed": false, + "recommended": false, + "channel_name": "oraclelinux7-uek-r6 for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "oraclelinux7-uek-r5-x86_64", + "parent_channel_label": "oraclelinux7-x86_64", + "product_id": -14, + "repository_id": -249, + "parent_product_id": null, + "root_product_id": -14, + "update_tag": null, + "url": "https://yum.oracle.com/repo/OracleLinux/OL7/UEKR5/x86_64/", + "release_stage": "released", + "mandatory": false, + "signed": false, + "recommended": false, + "channel_name": "oraclelinux7-uek-r5 for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "oraclelinux7-ceph-x86_64", + "parent_channel_label": "oraclelinux7-x86_64", + "product_id": -14, + "repository_id": -170, + "parent_product_id": null, + "root_product_id": -14, + "update_tag": null, + "url": "https://yum.oracle.com/repo/OracleLinux/OL7/ceph/x86_64/", + "release_stage": "released", + "mandatory": false, + "signed": false, + "recommended": false, + "channel_name": "oraclelinux7-ceph for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "oraclelinux7-scl-x86_64", + "parent_channel_label": "oraclelinux7-x86_64", + "product_id": -14, + "repository_id": -169, + "parent_product_id": null, + "root_product_id": -14, + "update_tag": null, + "url": "https://yum.oracle.com/repo/OracleLinux/OL7/SoftwareCollections/x86_64/", + "release_stage": "released", + "mandatory": false, + "signed": false, + "recommended": false, + "channel_name": "oraclelinux7-scl for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "oraclelinux7-openstack30-extras-x86_64", + "parent_channel_label": "oraclelinux7-x86_64", + "product_id": -14, + "repository_id": -168, + "parent_product_id": null, + "root_product_id": -14, + "update_tag": null, + "url": "https://yum.oracle.com/repo/OracleLinux/OL7/openstack_extras/x86_64/", + "release_stage": "released", + "mandatory": false, + "signed": false, + "recommended": false, + "channel_name": "oraclelinux7-openstack30-extras for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "oraclelinux7-openstack30-x86_64", + "parent_channel_label": "oraclelinux7-x86_64", + "product_id": -14, + "repository_id": -167, + "parent_product_id": null, + "root_product_id": -14, + "update_tag": null, + "url": "https://yum.oracle.com/repo/OracleLinux/OL7/openstack30/x86_64/", + "release_stage": "released", + "mandatory": false, + "signed": false, + "recommended": false, + "channel_name": "oraclelinux7-openstack30 for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "oraclelinux7-openstack21-x86_64", + "parent_channel_label": "oraclelinux7-x86_64", + "product_id": -14, + "repository_id": -166, + "parent_product_id": null, + "root_product_id": -14, + "update_tag": null, + "url": "https://yum.oracle.com/repo/OracleLinux/OL7/openstack21/x86_64/", + "release_stage": "released", + "mandatory": false, + "signed": false, + "recommended": false, + "channel_name": "oraclelinux7-openstack21 for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "oraclelinux7-openstack20-x86_64", + "parent_channel_label": "oraclelinux7-x86_64", + "product_id": -14, + "repository_id": -165, + "parent_product_id": null, + "root_product_id": -14, + "update_tag": null, + "url": "https://yum.oracle.com/repo/OracleLinux/OL7/openstack20/x86_64/", + "release_stage": "released", + "mandatory": false, + "signed": false, + "recommended": false, + "channel_name": "oraclelinux7-openstack20 for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "oraclelinux7-mysql57-x86_64", + "parent_channel_label": "oraclelinux7-x86_64", + "product_id": -14, + "repository_id": -160, + "parent_product_id": null, + "root_product_id": -14, + "update_tag": null, + "url": "https://yum.oracle.com/repo/OracleLinux/OL7/MySQL57_community/x86_64/", + "release_stage": "released", + "mandatory": false, + "signed": false, + "recommended": false, + "channel_name": "oraclelinux7-mysql57 for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "oraclelinux7-mysql56-x86_64", + "parent_channel_label": "oraclelinux7-x86_64", + "product_id": -14, + "repository_id": -159, + "parent_product_id": null, + "root_product_id": -14, + "update_tag": null, + "url": "https://yum.oracle.com/repo/OracleLinux/OL7/MySQL56/x86_64/", + "release_stage": "released", + "mandatory": false, + "signed": false, + "recommended": false, + "channel_name": "oraclelinux7-mysql56 for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "oraclelinux7-mysql55-x86_64", + "parent_channel_label": "oraclelinux7-x86_64", + "product_id": -14, + "repository_id": -158, + "parent_product_id": null, + "root_product_id": -14, + "update_tag": null, + "url": "https://yum.oracle.com/repo/OracleLinux/OL7/MySQL55/x86_64/", + "release_stage": "released", + "mandatory": false, + "signed": false, + "recommended": false, + "channel_name": "oraclelinux7-mysql55 for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "oraclelinux7-uek-r3-x86_64", + "parent_channel_label": "oraclelinux7-x86_64", + "product_id": -14, + "repository_id": -157, + "parent_product_id": null, + "root_product_id": -14, + "update_tag": null, + "url": "https://yum.oracle.com/repo/OracleLinux/OL7/UEKR3/x86_64/", + "release_stage": "released", + "mandatory": false, + "signed": false, + "recommended": false, + "channel_name": "oraclelinux7-uek-r3 for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "oraclelinux7-uek-r4-x86_64", + "parent_channel_label": "oraclelinux7-x86_64", + "product_id": -14, + "repository_id": -156, + "parent_product_id": null, + "root_product_id": -14, + "update_tag": null, + "url": "https://yum.oracle.com/repo/OracleLinux/OL7/UEKR4/x86_64/", + "release_stage": "released", + "mandatory": false, + "signed": false, + "recommended": false, + "channel_name": "oraclelinux7-uek-r4 for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "oraclelinux7-addons-x86_64", + "parent_channel_label": "oraclelinux7-x86_64", + "product_id": -14, + "repository_id": -155, + "parent_product_id": null, + "root_product_id": -14, + "update_tag": null, + "url": "https://yum.oracle.com/repo/OracleLinux/OL7/addons/x86_64/", + "release_stage": "released", + "mandatory": false, + "signed": false, + "recommended": false, + "channel_name": "oraclelinux7-addons for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "oraclelinux7-x86_64", + "parent_channel_label": null, + "product_id": -14, + "repository_id": -154, + "parent_product_id": null, + "root_product_id": -14, + "update_tag": null, + "url": "https://yum.oracle.com/repo/OracleLinux/OL7/latest/x86_64/", + "release_stage": "released", + "mandatory": true, + "signed": false, + "recommended": false, + "channel_name": "oraclelinux7 for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "res-7-suse-manager-tools-x86_64-ol7", + "parent_channel_label": "oraclelinux7-x86_64", + "product_id": 1683, + "repository_id": 1746, + "parent_product_id": -14, + "root_product_id": -14, + "update_tag": "suse-res7ct", + "url": "https://updates.suse.com/repo/$RCE/RES7-SUSE-Manager-Tools/x86_64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "RES-7-SUSE-Manager-Tools for x86_64 OL7", + "product_type": "extension", + "gpg_info": [ + { + "url": "file:///etc/pki/rpm-gpg/el-tools-gpg-pubkey-39db7c82.key", + "keyId": "39DB7C82", + "fingerprint": "FEAB502539D846DB2C0961CA70AF9E8139DB7C82" + } + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "res-7-suse-manager-tools-beta-x86_64-ol7", + "parent_channel_label": "oraclelinux7-x86_64", + "product_id": 2065, + "repository_id": 4410, + "parent_product_id": 1683, + "root_product_id": -14, + "update_tag": null, + "url": "https://updates.suse.com/repo/$RCE/RES7-SUSE-Manager-Tools-Beta/x86_64/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "RES-7-SUSE-Manager-Tools-Beta for x86_64 OL7", + "product_type": "extension", + "gpg_info": [ + { + "url": "file:///etc/pki/rpm-gpg/el-tools-gpg-pubkey-39db7c82.key", + "keyId": "39DB7C82", + "fingerprint": "FEAB502539D846DB2C0961CA70AF9E8139DB7C82" + } + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "centos8-powertools-x86_64", + "parent_channel_label": "centos8-x86_64", + "product_id": -13, + "repository_id": -371, + "parent_product_id": null, + "root_product_id": -13, + "update_tag": null, + "url": "https://vault.centos.org/centos/8/PowerTools/x86_64/os/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "centos8-powertools for x86_64", + "product_type": "base", + "gpg_info": [ + { + "url": "file:////etc/pki/rpm-gpg/RPM-GPG-KEY-centosofficial", + "keyId": "8483C65D", + "fingerprint": "99DB70FAE1D7CE227FB6488205B555B38483C65D" + } + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "centos8-fasttrack-x86_64", + "parent_channel_label": "centos8-x86_64", + "product_id": -13, + "repository_id": -370, + "parent_product_id": null, + "root_product_id": -13, + "update_tag": null, + "url": "https://vault.centos.org/centos/8/fasttrack/x86_64/os/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "centos8-fasttrack for x86_64", + "product_type": "base", + "gpg_info": [ + { + "url": "file:////etc/pki/rpm-gpg/RPM-GPG-KEY-centosofficial", + "keyId": "8483C65D", + "fingerprint": "99DB70FAE1D7CE227FB6488205B555B38483C65D" + } + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "centos8-extras-x86_64", + "parent_channel_label": "centos8-x86_64", + "product_id": -13, + "repository_id": -369, + "parent_product_id": null, + "root_product_id": -13, + "update_tag": null, + "url": "https://vault.centos.org/centos/8/extras/x86_64/os/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "centos8-extras for x86_64", + "product_type": "base", + "gpg_info": [ + { + "url": "file:////etc/pki/rpm-gpg/RPM-GPG-KEY-centosofficial", + "keyId": "8483C65D", + "fingerprint": "99DB70FAE1D7CE227FB6488205B555B38483C65D" + } + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "centos8-cr-x86_64", + "parent_channel_label": "centos8-x86_64", + "product_id": -13, + "repository_id": -368, + "parent_product_id": null, + "root_product_id": -13, + "update_tag": null, + "url": "https://vault.centos.org/centos/8/cr/x86_64/os/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "centos8-cr for x86_64", + "product_type": "base", + "gpg_info": [ + { + "url": "file:////etc/pki/rpm-gpg/RPM-GPG-KEY-centosofficial", + "keyId": "8483C65D", + "fingerprint": "99DB70FAE1D7CE227FB6488205B555B38483C65D" + } + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "centos8-centosplus-x86_64", + "parent_channel_label": "centos8-x86_64", + "product_id": -13, + "repository_id": -367, + "parent_product_id": null, + "root_product_id": -13, + "update_tag": null, + "url": "https://vault.centos.org/centos/8/centosplus/x86_64/os/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "centos8-centosplus for x86_64", + "product_type": "base", + "gpg_info": [ + { + "url": "file:////etc/pki/rpm-gpg/RPM-GPG-KEY-centosofficial", + "keyId": "8483C65D", + "fingerprint": "99DB70FAE1D7CE227FB6488205B555B38483C65D" + } + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "centos8-appstream-x86_64", + "parent_channel_label": "centos8-x86_64", + "product_id": -13, + "repository_id": -366, + "parent_product_id": null, + "root_product_id": -13, + "update_tag": null, + "url": "https://vault.centos.org/centos/8/AppStream/x86_64/os/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "centos8-appstream for x86_64", + "product_type": "base", + "gpg_info": [ + { + "url": "file:////etc/pki/rpm-gpg/RPM-GPG-KEY-centosofficial", + "keyId": "8483C65D", + "fingerprint": "99DB70FAE1D7CE227FB6488205B555B38483C65D" + } + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "centos8-x86_64", + "parent_channel_label": null, + "product_id": -13, + "repository_id": -365, + "parent_product_id": null, + "root_product_id": -13, + "update_tag": null, + "url": "https://vault.centos.org/centos/8/BaseOS/x86_64/os/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "centos8 for x86_64", + "product_type": "base", + "gpg_info": [ + { + "url": "file:////etc/pki/rpm-gpg/RPM-GPG-KEY-centosofficial", + "keyId": "8483C65D", + "fingerprint": "99DB70FAE1D7CE227FB6488205B555B38483C65D" + } + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "res8-manager-tools-updates-x86_64-centos8", + "parent_channel_label": "centos8-x86_64", + "product_id": 2007, + "repository_id": 4311, + "parent_product_id": -13, + "root_product_id": -13, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Updates/RES/8-CLIENT-TOOLS/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "RES8-Manager-Tools-Updates for x86_64 CentOS8", + "product_type": "extension", + "gpg_info": [ + { + "url": "file:///etc/pki/rpm-gpg/el-tools-gpg-pubkey-39db7c82.key", + "keyId": "39DB7C82", + "fingerprint": "FEAB502539D846DB2C0961CA70AF9E8139DB7C82" + } + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "res8-manager-tools-debuginfo-updates-x86_64-centos8", + "parent_channel_label": "centos8-x86_64", + "product_id": 2007, + "repository_id": 4312, + "parent_product_id": -13, + "root_product_id": -13, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Updates/RES/8-CLIENT-TOOLS/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "RES8-Manager-Tools-Debuginfo-Updates for x86_64 CentOS8", + "product_type": "extension", + "gpg_info": [ + { + "url": "file:///etc/pki/rpm-gpg/el-tools-gpg-pubkey-39db7c82.key", + "keyId": "39DB7C82", + "fingerprint": "FEAB502539D846DB2C0961CA70AF9E8139DB7C82" + } + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "res8-manager-tools-pool-x86_64-centos8", + "parent_channel_label": "centos8-x86_64", + "product_id": 2007, + "repository_id": 4313, + "parent_product_id": -13, + "root_product_id": -13, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Products/RES/8-CLIENT-TOOLS/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "RES8-Manager-Tools-Pool for x86_64 CentOS8", + "product_type": "extension", + "gpg_info": [ + { + "url": "file:///etc/pki/rpm-gpg/el-tools-gpg-pubkey-39db7c82.key", + "keyId": "39DB7C82", + "fingerprint": "FEAB502539D846DB2C0961CA70AF9E8139DB7C82" + } + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "res8-manager-tools-debuginfo-pool-x86_64-centos8", + "parent_channel_label": "centos8-x86_64", + "product_id": 2007, + "repository_id": 4314, + "parent_product_id": -13, + "root_product_id": -13, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Products/RES/8-CLIENT-TOOLS/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "RES8-Manager-Tools-Debuginfo-Pool for x86_64 CentOS8", + "product_type": "extension", + "gpg_info": [ + { + "url": "file:///etc/pki/rpm-gpg/el-tools-gpg-pubkey-39db7c82.key", + "keyId": "39DB7C82", + "fingerprint": "FEAB502539D846DB2C0961CA70AF9E8139DB7C82" + } + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "res8-manager-tools-beta-updates-x86_64-centos8", + "parent_channel_label": "centos8-x86_64", + "product_id": 2066, + "repository_id": 4411, + "parent_product_id": 2007, + "root_product_id": -13, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Updates/RES/8-CLIENT-TOOLS-BETA/x86_64/update/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "RES8-Manager-Tools-Beta-Updates for x86_64 CentOS8", + "product_type": "extension", + "gpg_info": [ + { + "url": "file:///etc/pki/rpm-gpg/el-tools-gpg-pubkey-39db7c82.key", + "keyId": "39DB7C82", + "fingerprint": "FEAB502539D846DB2C0961CA70AF9E8139DB7C82" + } + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "res8-manager-tools-beta-debuginfo-updates-x86_64-centos8", + "parent_channel_label": "centos8-x86_64", + "product_id": 2066, + "repository_id": 4412, + "parent_product_id": 2007, + "root_product_id": -13, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Updates/RES/8-CLIENT-TOOLS-BETA/x86_64/update_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "RES8-Manager-Tools-Beta-Debuginfo-Updates for x86_64 CentOS8", + "product_type": "extension", + "gpg_info": [ + { + "url": "file:///etc/pki/rpm-gpg/el-tools-gpg-pubkey-39db7c82.key", + "keyId": "39DB7C82", + "fingerprint": "FEAB502539D846DB2C0961CA70AF9E8139DB7C82" + } + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "res8-manager-tools-beta-pool-x86_64-centos8", + "parent_channel_label": "centos8-x86_64", + "product_id": 2066, + "repository_id": 4413, + "parent_product_id": 2007, + "root_product_id": -13, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Products/RES/8-CLIENT-TOOLS-BETA/x86_64/product/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "RES8-Manager-Tools-Beta-Pool for x86_64 CentOS8", + "product_type": "extension", + "gpg_info": [ + { + "url": "file:///etc/pki/rpm-gpg/el-tools-gpg-pubkey-39db7c82.key", + "keyId": "39DB7C82", + "fingerprint": "FEAB502539D846DB2C0961CA70AF9E8139DB7C82" + } + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "res8-manager-tools-beta-debuginfo-pool-x86_64-centos8", + "parent_channel_label": "centos8-x86_64", + "product_id": 2066, + "repository_id": 4414, + "parent_product_id": 2007, + "root_product_id": -13, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Products/RES/8-CLIENT-TOOLS-BETA/x86_64/product_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "RES8-Manager-Tools-Beta-Debuginfo-Pool for x86_64 CentOS8", + "product_type": "extension", + "gpg_info": [ + { + "url": "file:///etc/pki/rpm-gpg/el-tools-gpg-pubkey-39db7c82.key", + "keyId": "39DB7C82", + "fingerprint": "FEAB502539D846DB2C0961CA70AF9E8139DB7C82" + } + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "centos7-updates-x86_64", + "parent_channel_label": "centos7-x86_64", + "product_id": -12, + "repository_id": -141, + "parent_product_id": null, + "root_product_id": -12, + "update_tag": null, + "url": "http://mirrorlist.centos.org/?release=7&arch=x86_64&repo=updates", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "centos7-updates for x86_64", + "product_type": "base", + "gpg_info": [ + { + "url": "file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7", + "keyId": "F4A80EB5", + "fingerprint": "6341AB2753D78A78A7C27BB124C6A8A7F4A80EB5" + } + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "centos7-rt-x86_64", + "parent_channel_label": "centos7-x86_64", + "product_id": -12, + "repository_id": -138, + "parent_product_id": null, + "root_product_id": -12, + "update_tag": null, + "url": "http://mirror.centos.org/centos-7/7/rt/x86_64", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "centos7-rt for x86_64", + "product_type": "base", + "gpg_info": [ + { + "url": "file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7", + "keyId": "F4A80EB5", + "fingerprint": "6341AB2753D78A78A7C27BB124C6A8A7F4A80EB5" + } + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "centos7-fasttrack-x86_64", + "parent_channel_label": "centos7-x86_64", + "product_id": -12, + "repository_id": -135, + "parent_product_id": null, + "root_product_id": -12, + "update_tag": null, + "url": "http://mirrorlist.centos.org/?release=7&arch=x86_64&repo=fasttrack", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "centos7-fasttrack for x86_64", + "product_type": "base", + "gpg_info": [ + { + "url": "file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7", + "keyId": "F4A80EB5", + "fingerprint": "6341AB2753D78A78A7C27BB124C6A8A7F4A80EB5" + } + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "centos7-extras-x86_64", + "parent_channel_label": "centos7-x86_64", + "product_id": -12, + "repository_id": -134, + "parent_product_id": null, + "root_product_id": -12, + "update_tag": null, + "url": "http://mirrorlist.centos.org/?release=7&arch=x86_64&repo=extras", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "centos7-extras for x86_64", + "product_type": "base", + "gpg_info": [ + { + "url": "file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7", + "keyId": "F4A80EB5", + "fingerprint": "6341AB2753D78A78A7C27BB124C6A8A7F4A80EB5" + } + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "centos7-cr-x86_64", + "parent_channel_label": "centos7-x86_64", + "product_id": -12, + "repository_id": -133, + "parent_product_id": null, + "root_product_id": -12, + "update_tag": null, + "url": "http://mirrorlist.centos.org/?release=7&arch=x86_64&repo=cr", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "centos7-cr for x86_64", + "product_type": "base", + "gpg_info": [ + { + "url": "file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7", + "keyId": "F4A80EB5", + "fingerprint": "6341AB2753D78A78A7C27BB124C6A8A7F4A80EB5" + } + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "centos7-centosplus-x86_64", + "parent_channel_label": "centos7-x86_64", + "product_id": -12, + "repository_id": -131, + "parent_product_id": null, + "root_product_id": -12, + "update_tag": null, + "url": "http://mirrorlist.centos.org/?release=7&arch=x86_64&repo=centosplus", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "centos7-centosplus for x86_64", + "product_type": "base", + "gpg_info": [ + { + "url": "file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7", + "keyId": "F4A80EB5", + "fingerprint": "6341AB2753D78A78A7C27BB124C6A8A7F4A80EB5" + } + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "centos7-atomic-x86_64", + "parent_channel_label": "centos7-x86_64", + "product_id": -12, + "repository_id": -130, + "parent_product_id": null, + "root_product_id": -12, + "update_tag": null, + "url": "http://mirror.centos.org/centos-7/7/atomic/x86_64", + "release_stage": "released", + "mandatory": false, + "signed": false, + "recommended": false, + "channel_name": "centos7-atomic for x86_64", + "product_type": "base", + "gpg_info": [ + { + "url": "file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7", + "keyId": "F4A80EB5", + "fingerprint": "6341AB2753D78A78A7C27BB124C6A8A7F4A80EB5" + } + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "centos7-x86_64", + "parent_channel_label": null, + "product_id": -12, + "repository_id": -129, + "parent_product_id": null, + "root_product_id": -12, + "update_tag": null, + "url": "http://mirrorlist.centos.org/?release=7&arch=x86_64&repo=os", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "centos7 for x86_64", + "product_type": "base", + "gpg_info": [ + { + "url": "file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7", + "keyId": "F4A80EB5", + "fingerprint": "6341AB2753D78A78A7C27BB124C6A8A7F4A80EB5" + } + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "res-7-suse-manager-tools-x86_64-centos7", + "parent_channel_label": "centos7-x86_64", + "product_id": 1683, + "repository_id": 1746, + "parent_product_id": -12, + "root_product_id": -12, + "update_tag": "suse-res7ct", + "url": "https://updates.suse.com/repo/$RCE/RES7-SUSE-Manager-Tools/x86_64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "RES-7-SUSE-Manager-Tools for x86_64 CentOS7", + "product_type": "extension", + "gpg_info": [ + { + "url": "file:///etc/pki/rpm-gpg/el-tools-gpg-pubkey-39db7c82.key", + "keyId": "39DB7C82", + "fingerprint": "FEAB502539D846DB2C0961CA70AF9E8139DB7C82" + } + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "res-7-suse-manager-tools-beta-x86_64-centos7", + "parent_channel_label": "centos7-x86_64", + "product_id": 2065, + "repository_id": 4410, + "parent_product_id": 1683, + "root_product_id": -12, + "update_tag": null, + "url": "https://updates.suse.com/repo/$RCE/RES7-SUSE-Manager-Tools-Beta/x86_64/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "RES-7-SUSE-Manager-Tools-Beta for x86_64 CentOS7", + "product_type": "extension", + "gpg_info": [ + { + "url": "file:///etc/pki/rpm-gpg/el-tools-gpg-pubkey-39db7c82.key", + "keyId": "39DB7C82", + "fingerprint": "FEAB502539D846DB2C0961CA70AF9E8139DB7C82" + } + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "centos6-updates-x86_64", + "parent_channel_label": "centos6-x86_64", + "product_id": -11, + "repository_id": -235, + "parent_product_id": null, + "root_product_id": -11, + "update_tag": null, + "url": "https://vault.centos.org/centos/6/updates/x86_64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "centos6-updates for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "centos6-fasttrack-x86_64", + "parent_channel_label": "centos6-x86_64", + "product_id": -11, + "repository_id": -234, + "parent_product_id": null, + "root_product_id": -11, + "update_tag": null, + "url": "https://vault.centos.org/centos/6/fasttrack/x86_64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "centos6-fasttrack for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "centos6-extras-x86_64", + "parent_channel_label": "centos6-x86_64", + "product_id": -11, + "repository_id": -233, + "parent_product_id": null, + "root_product_id": -11, + "update_tag": null, + "url": "https://vault.centos.org/centos/6/extras/x86_64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "centos6-extras for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "centos6-contrib-x86_64", + "parent_channel_label": "centos6-x86_64", + "product_id": -11, + "repository_id": -232, + "parent_product_id": null, + "root_product_id": -11, + "update_tag": null, + "url": "https://vault.centos.org/centos/6/contrib/x86_64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "centos6-contrib for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "centos6-centosplus-x86_64", + "parent_channel_label": "centos6-x86_64", + "product_id": -11, + "repository_id": -231, + "parent_product_id": null, + "root_product_id": -11, + "update_tag": null, + "url": "https://vault.centos.org/centos/6/centosplus/x86_64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "centos6-centosplus for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "centos6-x86_64", + "parent_channel_label": null, + "product_id": -11, + "repository_id": -230, + "parent_product_id": null, + "root_product_id": -11, + "update_tag": null, + "url": "https://vault.centos.org/centos/6/os/x86_64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "centos6 for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "res-6-suse-manager-tools-x86_64-centos6", + "parent_channel_label": "centos6-x86_64", + "product_id": 1682, + "repository_id": 977, + "parent_product_id": -11, + "root_product_id": -11, + "update_tag": "res6ct", + "url": "https://updates.suse.com/repo/$RCE/RES6-SUSE-Manager-Tools/x86_64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "RES-6-SUSE-Manager-Tools for x86_64 CentOS6", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "res-6-suse-manager-tools-beta-x86_64-centos6", + "parent_channel_label": "centos6-x86_64", + "product_id": 2064, + "repository_id": 4409, + "parent_product_id": 1682, + "root_product_id": -11, + "update_tag": null, + "url": "https://updates.suse.com/repo/$RCE/RES6-SUSE-Manager-Tools-Beta/x86_64/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "RES-6-SUSE-Manager-Tools-Beta for x86_64 CentOS6", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "centos6-updates-i386", + "parent_channel_label": "centos6-i386", + "product_id": -10, + "repository_id": -225, + "parent_product_id": null, + "root_product_id": -10, + "update_tag": null, + "url": "https://vault.centos.org/centos/6/updates/i386/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "centos6-updates for i386", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "centos6-fasttrack-i386", + "parent_channel_label": "centos6-i386", + "product_id": -10, + "repository_id": -224, + "parent_product_id": null, + "root_product_id": -10, + "update_tag": null, + "url": "https://vault.centos.org/centos/6/fasttrack/i386/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "centos6-fasttrack for i386", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "centos6-extras-i386", + "parent_channel_label": "centos6-i386", + "product_id": -10, + "repository_id": -223, + "parent_product_id": null, + "root_product_id": -10, + "update_tag": null, + "url": "https://vault.centos.org/centos/6/extras/i386/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "centos6-extras for i386", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "centos6-contrib-i386", + "parent_channel_label": "centos6-i386", + "product_id": -10, + "repository_id": -222, + "parent_product_id": null, + "root_product_id": -10, + "update_tag": null, + "url": "https://vault.centos.org/centos/6/contrib/i386/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "centos6-contrib for i386", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "centos6-centosplus-i386", + "parent_channel_label": "centos6-i386", + "product_id": -10, + "repository_id": -221, + "parent_product_id": null, + "root_product_id": -10, + "update_tag": null, + "url": "https://vault.centos.org/centos/6/centosplus/i386/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "centos6-centosplus for i386", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "centos6-i386", + "parent_channel_label": null, + "product_id": -10, + "repository_id": -220, + "parent_product_id": null, + "root_product_id": -10, + "update_tag": null, + "url": "https://vault.centos.org/centos/6/os/i386/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "centos6 for i386", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "res-6-suse-manager-tools-i386-centos6", + "parent_channel_label": "centos6-i386", + "product_id": 1681, + "repository_id": 994, + "parent_product_id": -10, + "root_product_id": -10, + "update_tag": "res6ct", + "url": "https://updates.suse.com/repo/$RCE/RES6-SUSE-Manager-Tools/i386/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "RES-6-SUSE-Manager-Tools for i386 CentOS6", + "product_type": "extension", + "gpg_info": [ + { + "url": "file:///etc/pki/rpm-gpg/el6-tools-gpg-pubkey-307e3d54.key", + "keyId": "307E3D54", + "fingerprint": "4E98E67519D98DC7362A5990E3A5C360307E3D54" + } + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "res-6-suse-manager-tools-beta-i386-centos6", + "parent_channel_label": "centos6-i386", + "product_id": 2063, + "repository_id": 4408, + "parent_product_id": 1681, + "root_product_id": -10, + "update_tag": null, + "url": "https://updates.suse.com/repo/$RCE/RES6-SUSE-Manager-Tools-Beta/i386/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "RES-6-SUSE-Manager-Tools-Beta for i386 CentOS6", + "product_type": "extension", + "gpg_info": [ + { + "url": "file:///etc/pki/rpm-gpg/el6-tools-gpg-pubkey-307e3d54.key", + "keyId": "307E3D54", + "fingerprint": "4E98E67519D98DC7362A5990E3A5C360307E3D54" + } + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "oes2018-sp2-sle-module-toolchain12-debuginfo-updates-x86_64", + "parent_channel_label": "oes2018-sp2-pool-x86_64", + "product_id": -9, + "repository_id": -113, + "parent_product_id": null, + "root_product_id": -9, + "update_tag": null, + "url": "https://nu.novell.com/repo/$RCE/OES2018-SP2-SLE-Module-Toolchain12-Debuginfo-Updates/sle-12-x86_64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "OES2018-SP2-SLE-Module-Toolchain12-Debuginfo-Updates for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "oes2018-sp2-sle-module-toolchain12-debuginfo-pool-x86_64", + "parent_channel_label": "oes2018-sp2-pool-x86_64", + "product_id": -9, + "repository_id": -112, + "parent_product_id": null, + "root_product_id": -9, + "update_tag": null, + "url": "https://nu.novell.com/repo/$RCE/OES2018-SP2-SLE-Module-Toolchain12-Debuginfo-Pool/sle-12-x86_64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "OES2018-SP2-SLE-Module-Toolchain12-Debuginfo-Pool for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "oes2018-sp2-sle-module-toolchain12-updates-x86_64", + "parent_channel_label": "oes2018-sp2-pool-x86_64", + "product_id": -9, + "repository_id": -111, + "parent_product_id": null, + "root_product_id": -9, + "update_tag": null, + "url": "https://nu.novell.com/repo/$RCE/OES2018-SP2-SLE-Module-Toolchain12-Updates/sle-12-x86_64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "OES2018-SP2-SLE-Module-Toolchain12-Updates for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "oes2018-sp2-sle-module-toolchain12-pool-x86_64", + "parent_channel_label": "oes2018-sp2-pool-x86_64", + "product_id": -9, + "repository_id": -110, + "parent_product_id": null, + "root_product_id": -9, + "update_tag": null, + "url": "https://nu.novell.com/repo/$RCE/OES2018-SP2-SLE-Module-Toolchain12-Pool/sle-12-x86_64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "OES2018-SP2-SLE-Module-Toolchain12-Pool for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "oes2018-sp2-sle-module-web-scripting12-debuginfo-updates-x86_64", + "parent_channel_label": "oes2018-sp2-pool-x86_64", + "product_id": -9, + "repository_id": -109, + "parent_product_id": null, + "root_product_id": -9, + "update_tag": null, + "url": "https://nu.novell.com/repo/$RCE/OES2018-SP2-SLE-Module-Web-Scripting12-Debuginfo-Updates/sle-12-x86_64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "OES2018-SP2-SLE-Module-Web-Scripting12-Debuginfo-Updates for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "oes2018-sp2-sle-module-web-scripting12-debuginfo-pool-x86_64", + "parent_channel_label": "oes2018-sp2-pool-x86_64", + "product_id": -9, + "repository_id": -108, + "parent_product_id": null, + "root_product_id": -9, + "update_tag": null, + "url": "https://nu.novell.com/repo/$RCE/OES2018-SP2-SLE-Module-Web-Scripting12-Debuginfo-Pool/sle-12-x86_64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "OES2018-SP2-SLE-Module-Web-Scripting12-Debuginfo-Pool for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "oes2018-sp2-sle-module-web-scripting12-updates-x86_64", + "parent_channel_label": "oes2018-sp2-pool-x86_64", + "product_id": -9, + "repository_id": -107, + "parent_product_id": null, + "root_product_id": -9, + "update_tag": null, + "url": "https://nu.novell.com/repo/$RCE/OES2018-SP2-SLE-Module-Web-Scripting12-Updates/sle-12-x86_64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "OES2018-SP2-SLE-Module-Web-Scripting12-Updates for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "oes2018-sp2-sle-module-web-scripting12-pool-x86_64", + "parent_channel_label": "oes2018-sp2-pool-x86_64", + "product_id": -9, + "repository_id": -106, + "parent_product_id": null, + "root_product_id": -9, + "update_tag": null, + "url": "https://nu.novell.com/repo/$RCE/OES2018-SP2-SLE-Module-Web-Scripting12-Pool/sle-12-x86_64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "OES2018-SP2-SLE-Module-Web-Scripting12-Pool for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "oes2018-sp2-sle-module-public-cloud12-debuginfo-updates-x86_64", + "parent_channel_label": "oes2018-sp2-pool-x86_64", + "product_id": -9, + "repository_id": -105, + "parent_product_id": null, + "root_product_id": -9, + "update_tag": null, + "url": "https://nu.novell.com/repo/$RCE/OES2018-SP2-SLE-Module-Public-Cloud12-Debuginfo-Updates/sle-12-x86_64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "OES2018-SP2-SLE-Module-Public-Cloud12-Debuginfo-Updates for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "oes2018-sp2-sle-module-public-cloud12-debuginfo-pool-x86_64", + "parent_channel_label": "oes2018-sp2-pool-x86_64", + "product_id": -9, + "repository_id": -104, + "parent_product_id": null, + "root_product_id": -9, + "update_tag": null, + "url": "https://nu.novell.com/repo/$RCE/OES2018-SP2-SLE-Module-Public-Cloud12-Debuginfo-Pool/sle-12-x86_64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "OES2018-SP2-SLE-Module-Public-Cloud12-Debuginfo-Pool for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "oes2018-sp2-sle-module-public-cloud12-updates-x86_64", + "parent_channel_label": "oes2018-sp2-pool-x86_64", + "product_id": -9, + "repository_id": -103, + "parent_product_id": null, + "root_product_id": -9, + "update_tag": null, + "url": "https://nu.novell.com/repo/$RCE/OES2018-SP2-SLE-Module-Public-Cloud12-Updates/sle-12-x86_64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "OES2018-SP2-SLE-Module-Public-Cloud12-Updates for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "oes2018-sp2-sle-module-public-cloud12-pool-x86_64", + "parent_channel_label": "oes2018-sp2-pool-x86_64", + "product_id": -9, + "repository_id": -102, + "parent_product_id": null, + "root_product_id": -9, + "update_tag": null, + "url": "https://nu.novell.com/repo/$RCE/OES2018-SP2-SLE-Module-Public-Cloud12-Pool/sle-12-x86_64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "OES2018-SP2-SLE-Module-Public-Cloud12-Pool for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "oes2018-sp2-sle-sdk-12-sp5-debuginfo-updates-x86_64", + "parent_channel_label": "oes2018-sp2-pool-x86_64", + "product_id": -9, + "repository_id": -101, + "parent_product_id": null, + "root_product_id": -9, + "update_tag": null, + "url": "https://nu.novell.com/repo/$RCE/OES2018-SP2-SLE-SDK-12-SP5-Debuginfo-Updates/sle-12-x86_64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "OES2018-SP2-SLE-SDK-12-SP5-Debuginfo-Updates for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "oes2018-sp2-sle-sdk-12-sp5-debuginfo-pool-x86_64", + "parent_channel_label": "oes2018-sp2-pool-x86_64", + "product_id": -9, + "repository_id": -100, + "parent_product_id": null, + "root_product_id": -9, + "update_tag": null, + "url": "https://nu.novell.com/repo/$RCE/OES2018-SP2-SLE-SDK-12-SP5-Debuginfo-Pool/sle-12-x86_64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "OES2018-SP2-SLE-SDK-12-SP5-Debuginfo-Pool for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "oes2018-sp2-sle-sdk-12-sp5-updates-x86_64", + "parent_channel_label": "oes2018-sp2-pool-x86_64", + "product_id": -9, + "repository_id": -99, + "parent_product_id": null, + "root_product_id": -9, + "update_tag": null, + "url": "https://nu.novell.com/repo/$RCE/OES2018-SP2-SLE-SDK-12-SP5-Updates/sle-12-x86_64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "OES2018-SP2-SLE-SDK-12-SP5-Updates for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "oes2018-sp2-sle-sdk-12-sp5-pool-x86_64", + "parent_channel_label": "oes2018-sp2-pool-x86_64", + "product_id": -9, + "repository_id": -98, + "parent_product_id": null, + "root_product_id": -9, + "update_tag": null, + "url": "https://nu.novell.com/repo/$RCE/OES2018-SP2-SLE-SDK-12-SP5-Pool/sle-12-x86_64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "OES2018-SP2-SLE-SDK-12-SP5-Pool for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "oes2018-sp2-sle-manager-tools12-updates-x86_64", + "parent_channel_label": "oes2018-sp2-pool-x86_64", + "product_id": -9, + "repository_id": -97, + "parent_product_id": null, + "root_product_id": -9, + "update_tag": null, + "url": "https://nu.novell.com/repo/$RCE/OES2018-SP2-SLE-Manager-Tools12-Updates/sle-12-x86_64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "OES2018-SP2-SLE-Manager-Tools12-Updates for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "oes2018-sp2-sle-manager-tools12-pool-x86_64", + "parent_channel_label": "oes2018-sp2-pool-x86_64", + "product_id": -9, + "repository_id": -96, + "parent_product_id": null, + "root_product_id": -9, + "update_tag": null, + "url": "https://nu.novell.com/repo/$RCE/OES2018-SP2-SLE-Manager-Tools12-Pool/sle-12-x86_64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "OES2018-SP2-SLE-Manager-Tools12-Pool for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "oes2018-sp2-sle-manager-tools12-debuginfo-updates-x86_64", + "parent_channel_label": "oes2018-sp2-pool-x86_64", + "product_id": -9, + "repository_id": -95, + "parent_product_id": null, + "root_product_id": -9, + "update_tag": null, + "url": "https://nu.novell.com/repo/$RCE/OES2018-SP2-SLE-Manager-Tools12-Debuginfo-Updates/sle-12-x86_64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "OES2018-SP2-SLE-Manager-Tools12-Debuginfo-Updates for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "oes2018-sp2-sle-manager-tools12-debuginfo-pool-x86_64", + "parent_channel_label": "oes2018-sp2-pool-x86_64", + "product_id": -9, + "repository_id": -94, + "parent_product_id": null, + "root_product_id": -9, + "update_tag": null, + "url": "https://nu.novell.com/repo/$RCE/OES2018-SP2-SLE-Manager-Tools12-Debuginfo-Pool/sle-12-x86_64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "OES2018-SP2-SLE-Manager-Tools12-Debuginfo-Pool for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "oes2018-sp2-sle-module-containers12-debuginfo-updates-x86_64", + "parent_channel_label": "oes2018-sp2-pool-x86_64", + "product_id": -9, + "repository_id": -93, + "parent_product_id": null, + "root_product_id": -9, + "update_tag": null, + "url": "https://nu.novell.com/repo/$RCE/OES2018-SP2-SLE-Module-Containers12-Debuginfo-Updates/sle-12-x86_64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "OES2018-SP2-SLE-Module-Containers12-Debuginfo-Updates for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "oes2018-sp2-sle-module-containers12-debuginfo-pool-x86_64", + "parent_channel_label": "oes2018-sp2-pool-x86_64", + "product_id": -9, + "repository_id": -92, + "parent_product_id": null, + "root_product_id": -9, + "update_tag": null, + "url": "https://nu.novell.com/repo/$RCE/OES2018-SP2-SLE-Module-Containers12-Debuginfo-Pool/sle-12-x86_64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "OES2018-SP2-SLE-Module-Containers12-Debuginfo-Pool for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "oes2018-sp2-sle-module-containers12-updates-x86_64", + "parent_channel_label": "oes2018-sp2-pool-x86_64", + "product_id": -9, + "repository_id": -91, + "parent_product_id": null, + "root_product_id": -9, + "update_tag": null, + "url": "https://nu.novell.com/repo/$RCE/OES2018-SP2-SLE-Module-Containers12-Updates/sle-12-x86_64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "OES2018-SP2-SLE-Module-Containers12-Updates for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "oes2018-sp2-sle-module-containers12-pool-x86_64", + "parent_channel_label": "oes2018-sp2-pool-x86_64", + "product_id": -9, + "repository_id": -90, + "parent_product_id": null, + "root_product_id": -9, + "update_tag": null, + "url": "https://nu.novell.com/repo/$RCE/OES2018-SP2-SLE-Module-Containers12-Pool/sle-12-x86_64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "OES2018-SP2-SLE-Module-Containers12-Pool for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "oes2018-sp2-sles12-sp5-updates-x86_64", + "parent_channel_label": "oes2018-sp2-pool-x86_64", + "product_id": -9, + "repository_id": -89, + "parent_product_id": null, + "root_product_id": -9, + "update_tag": null, + "url": "https://nu.novell.com/repo/$RCE/OES2018-SP2-SLES12-SP5-Updates/sle-12-x86_64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "OES2018-SP2-SLES12-SP5-Updates for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "oes2018-sp2-sles12-sp5-pool-x86_64", + "parent_channel_label": "oes2018-sp2-pool-x86_64", + "product_id": -9, + "repository_id": -88, + "parent_product_id": null, + "root_product_id": -9, + "update_tag": null, + "url": "https://nu.novell.com/repo/$RCE/OES2018-SP2-SLES12-SP5-Pool/sle-12-x86_64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "OES2018-SP2-SLES12-SP5-Pool for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "oes2018-sp2-sles12-sp5-debuginfo-updates-x86_64", + "parent_channel_label": "oes2018-sp2-pool-x86_64", + "product_id": -9, + "repository_id": -87, + "parent_product_id": null, + "root_product_id": -9, + "update_tag": null, + "url": "https://nu.novell.com/repo/$RCE/OES2018-SP2-SLES12-SP5-Debuginfo-Updates/sle-12-x86_64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "OES2018-SP2-SLES12-SP5-Debuginfo-Updates for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "oes2018-sp2-sles12-sp5-debuginfo-pool-x86_64", + "parent_channel_label": "oes2018-sp2-pool-x86_64", + "product_id": -9, + "repository_id": -86, + "parent_product_id": null, + "root_product_id": -9, + "update_tag": null, + "url": "https://nu.novell.com/repo/$RCE/OES2018-SP2-SLES12-SP5-Debuginfo-Pool/sle-12-x86_64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "OES2018-SP2-SLES12-SP5-Debuginfo-Pool for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "oes2018-sp2-updates-x86_64", + "parent_channel_label": "oes2018-sp2-pool-x86_64", + "product_id": -9, + "repository_id": -85, + "parent_product_id": null, + "root_product_id": -9, + "update_tag": null, + "url": "https://nu.novell.com/repo/$RCE/OES2018-SP2-Updates/sle-12-x86_64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "OES2018-SP2-Updates for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "oes2018-sp2-pool-x86_64", + "parent_channel_label": null, + "product_id": -9, + "repository_id": -84, + "parent_product_id": null, + "root_product_id": -9, + "update_tag": null, + "url": "https://nu.novell.com/repo/$RCE/OES2018-SP2-Pool/sle-12-x86_64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "OES2018-SP2-Pool for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "rhel8-pool-x86_64", + "parent_channel_label": null, + "product_id": -8, + "repository_id": -82, + "parent_product_id": null, + "root_product_id": -8, + "update_tag": null, + "url": "http://localhost/pub/repositories/empty/", + "release_stage": "released", + "mandatory": true, + "signed": false, + "recommended": false, + "channel_name": "RHEL8-Pool for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "res-8-updates-x86_64", + "parent_channel_label": "rhel8-pool-x86_64", + "product_id": 1921, + "repository_id": 3878, + "parent_product_id": -8, + "root_product_id": -8, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Updates/RES/8/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "RES-8-Updates for x86_64", + "product_type": "extension", + "gpg_info": [ + { + "url": "file:///etc/pki/rpm-gpg/res-gpg-pubkey-0182b964.key", + "keyId": "0182B964", + "fingerprint": "4F7439C1114F453FAA5F06218055F0400182B964" + } + ], + "tags": [ + ] + }, + { + "channel_label": "res-8-debug-updates-x86_64", + "parent_channel_label": "rhel8-pool-x86_64", + "product_id": 1921, + "repository_id": 3881, + "parent_product_id": -8, + "root_product_id": -8, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Updates/RES/8/debug/update/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "RES-8-Debug-Updates for x86_64", + "product_type": "extension", + "gpg_info": [ + { + "url": "file:///etc/pki/rpm-gpg/res-gpg-pubkey-0182b964.key", + "keyId": "0182B964", + "fingerprint": "4F7439C1114F453FAA5F06218055F0400182B964" + } + ], + "tags": [ + ] + }, + { + "channel_label": "res-as-8-updates-x86_64", + "parent_channel_label": "rhel8-pool-x86_64", + "product_id": 1921, + "repository_id": 3921, + "parent_product_id": -8, + "root_product_id": -8, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Updates/RES-AS/8/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "RES-AS-8-Updates for x86_64", + "product_type": "extension", + "gpg_info": [ + { + "url": "file:///etc/pki/rpm-gpg/res-gpg-pubkey-0182b964.key", + "keyId": "0182B964", + "fingerprint": "4F7439C1114F453FAA5F06218055F0400182B964" + } + ], + "tags": [ + ] + }, + { + "channel_label": "res-as-8-debug-updates-x86_64", + "parent_channel_label": "rhel8-pool-x86_64", + "product_id": 1921, + "repository_id": 3923, + "parent_product_id": -8, + "root_product_id": -8, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Updates/RES-AS/8/debug/update/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "RES-AS-8-Debug-Updates for x86_64", + "product_type": "extension", + "gpg_info": [ + { + "url": "file:///etc/pki/rpm-gpg/res-gpg-pubkey-0182b964.key", + "keyId": "0182B964", + "fingerprint": "4F7439C1114F453FAA5F06218055F0400182B964" + } + ], + "tags": [ + ] + }, + { + "channel_label": "res-cb-8-updates-x86_64", + "parent_channel_label": "rhel8-pool-x86_64", + "product_id": 1921, + "repository_id": 3924, + "parent_product_id": -8, + "root_product_id": -8, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Updates/RES-CB/8/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "RES-CB-8-Updates for x86_64", + "product_type": "extension", + "gpg_info": [ + { + "url": "file:///etc/pki/rpm-gpg/res-gpg-pubkey-0182b964.key", + "keyId": "0182B964", + "fingerprint": "4F7439C1114F453FAA5F06218055F0400182B964" + } + ], + "tags": [ + ] + }, + { + "channel_label": "res-cb-8-debug-updates-x86_64", + "parent_channel_label": "rhel8-pool-x86_64", + "product_id": 1921, + "repository_id": 3926, + "parent_product_id": -8, + "root_product_id": -8, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Updates/RES-CB/8/debug/update/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "RES-CB-8-Debug-Updates for x86_64", + "product_type": "extension", + "gpg_info": [ + { + "url": "file:///etc/pki/rpm-gpg/res-gpg-pubkey-0182b964.key", + "keyId": "0182B964", + "fingerprint": "4F7439C1114F453FAA5F06218055F0400182B964" + } + ], + "tags": [ + ] + }, + { + "channel_label": "res-8-ha-updates-x86_64", + "parent_channel_label": "rhel8-pool-x86_64", + "product_id": 1922, + "repository_id": 3882, + "parent_product_id": 1921, + "root_product_id": -8, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Updates/RES-HA/8/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "RES-8-HA-Updates for x86_64", + "product_type": "extension", + "gpg_info": [ + { + "url": "file:///etc/pki/rpm-gpg/res-gpg-pubkey-0182b964.key", + "keyId": "0182B964", + "fingerprint": "4F7439C1114F453FAA5F06218055F0400182B964" + } + ], + "tags": [ + ] + }, + { + "channel_label": "res-8-ha-debug-updates-x86_64", + "parent_channel_label": "rhel8-pool-x86_64", + "product_id": 1922, + "repository_id": 3884, + "parent_product_id": 1921, + "root_product_id": -8, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Updates/RES-HA/8/debug/update/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "RES-8-HA-Debug-Updates for x86_64", + "product_type": "extension", + "gpg_info": [ + { + "url": "file:///etc/pki/rpm-gpg/res-gpg-pubkey-0182b964.key", + "keyId": "0182B964", + "fingerprint": "4F7439C1114F453FAA5F06218055F0400182B964" + } + ], + "tags": [ + ] + }, + { + "channel_label": "res8-manager-tools-updates-x86_64", + "parent_channel_label": "rhel8-pool-x86_64", + "product_id": 2007, + "repository_id": 4311, + "parent_product_id": -8, + "root_product_id": -8, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Updates/RES/8-CLIENT-TOOLS/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "RES8-Manager-Tools-Updates for x86_64", + "product_type": "extension", + "gpg_info": [ + { + "url": "file:///etc/pki/rpm-gpg/el-tools-gpg-pubkey-39db7c82.key", + "keyId": "39DB7C82", + "fingerprint": "FEAB502539D846DB2C0961CA70AF9E8139DB7C82" + } + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "res8-manager-tools-debuginfo-updates-x86_64", + "parent_channel_label": "rhel8-pool-x86_64", + "product_id": 2007, + "repository_id": 4312, + "parent_product_id": -8, + "root_product_id": -8, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Updates/RES/8-CLIENT-TOOLS/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "RES8-Manager-Tools-Debuginfo-Updates for x86_64", + "product_type": "extension", + "gpg_info": [ + { + "url": "file:///etc/pki/rpm-gpg/el-tools-gpg-pubkey-39db7c82.key", + "keyId": "39DB7C82", + "fingerprint": "FEAB502539D846DB2C0961CA70AF9E8139DB7C82" + } + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "res8-manager-tools-pool-x86_64", + "parent_channel_label": "rhel8-pool-x86_64", + "product_id": 2007, + "repository_id": 4313, + "parent_product_id": -8, + "root_product_id": -8, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Products/RES/8-CLIENT-TOOLS/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "RES8-Manager-Tools-Pool for x86_64", + "product_type": "extension", + "gpg_info": [ + { + "url": "file:///etc/pki/rpm-gpg/el-tools-gpg-pubkey-39db7c82.key", + "keyId": "39DB7C82", + "fingerprint": "FEAB502539D846DB2C0961CA70AF9E8139DB7C82" + } + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "res8-manager-tools-debuginfo-pool-x86_64", + "parent_channel_label": "rhel8-pool-x86_64", + "product_id": 2007, + "repository_id": 4314, + "parent_product_id": -8, + "root_product_id": -8, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Products/RES/8-CLIENT-TOOLS/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "RES8-Manager-Tools-Debuginfo-Pool for x86_64", + "product_type": "extension", + "gpg_info": [ + { + "url": "file:///etc/pki/rpm-gpg/el-tools-gpg-pubkey-39db7c82.key", + "keyId": "39DB7C82", + "fingerprint": "FEAB502539D846DB2C0961CA70AF9E8139DB7C82" + } + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "res8-manager-tools-beta-updates-x86_64", + "parent_channel_label": "rhel8-pool-x86_64", + "product_id": 2066, + "repository_id": 4411, + "parent_product_id": 2007, + "root_product_id": -8, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Updates/RES/8-CLIENT-TOOLS-BETA/x86_64/update/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "RES8-Manager-Tools-Beta-Updates for x86_64", + "product_type": "extension", + "gpg_info": [ + { + "url": "file:///etc/pki/rpm-gpg/el-tools-gpg-pubkey-39db7c82.key", + "keyId": "39DB7C82", + "fingerprint": "FEAB502539D846DB2C0961CA70AF9E8139DB7C82" + } + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "res8-manager-tools-beta-debuginfo-updates-x86_64", + "parent_channel_label": "rhel8-pool-x86_64", + "product_id": 2066, + "repository_id": 4412, + "parent_product_id": 2007, + "root_product_id": -8, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Updates/RES/8-CLIENT-TOOLS-BETA/x86_64/update_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "RES8-Manager-Tools-Beta-Debuginfo-Updates for x86_64", + "product_type": "extension", + "gpg_info": [ + { + "url": "file:///etc/pki/rpm-gpg/el-tools-gpg-pubkey-39db7c82.key", + "keyId": "39DB7C82", + "fingerprint": "FEAB502539D846DB2C0961CA70AF9E8139DB7C82" + } + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "res8-manager-tools-beta-pool-x86_64", + "parent_channel_label": "rhel8-pool-x86_64", + "product_id": 2066, + "repository_id": 4413, + "parent_product_id": 2007, + "root_product_id": -8, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Products/RES/8-CLIENT-TOOLS-BETA/x86_64/product/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "RES8-Manager-Tools-Beta-Pool for x86_64", + "product_type": "extension", + "gpg_info": [ + { + "url": "file:///etc/pki/rpm-gpg/el-tools-gpg-pubkey-39db7c82.key", + "keyId": "39DB7C82", + "fingerprint": "FEAB502539D846DB2C0961CA70AF9E8139DB7C82" + } + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "res8-manager-tools-beta-debuginfo-pool-x86_64", + "parent_channel_label": "rhel8-pool-x86_64", + "product_id": 2066, + "repository_id": 4414, + "parent_product_id": 2007, + "root_product_id": -8, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Products/RES/8-CLIENT-TOOLS-BETA/x86_64/product_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "RES8-Manager-Tools-Beta-Debuginfo-Pool for x86_64", + "product_type": "extension", + "gpg_info": [ + { + "url": "file:///etc/pki/rpm-gpg/el-tools-gpg-pubkey-39db7c82.key", + "keyId": "39DB7C82", + "fingerprint": "FEAB502539D846DB2C0961CA70AF9E8139DB7C82" + } + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "rhel7-pool-x86_64", + "parent_channel_label": null, + "product_id": -7, + "repository_id": -83, + "parent_product_id": null, + "root_product_id": -7, + "update_tag": null, + "url": "http://localhost/pub/repositories/empty/", + "release_stage": "released", + "mandatory": true, + "signed": false, + "recommended": false, + "channel_name": "RHEL7-Pool for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "rhel7-suse-manager-tools-x86_64", + "parent_channel_label": "rhel7-pool-x86_64", + "product_id": 1683, + "repository_id": 1746, + "parent_product_id": -7, + "root_product_id": -7, + "update_tag": "suse-res7ct", + "url": "https://updates.suse.com/repo/$RCE/RES7-SUSE-Manager-Tools/x86_64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "RHEL7-SUSE-Manager-Tools for x86_64", + "product_type": "extension", + "gpg_info": [ + { + "url": "file:///etc/pki/rpm-gpg/el-tools-gpg-pubkey-39db7c82.key", + "keyId": "39DB7C82", + "fingerprint": "FEAB502539D846DB2C0961CA70AF9E8139DB7C82" + } + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "rhel-7-suse-manager-tools-beta-x86_64", + "parent_channel_label": "rhel7-pool-x86_64", + "product_id": 2065, + "repository_id": 4410, + "parent_product_id": 1683, + "root_product_id": -7, + "update_tag": null, + "url": "https://updates.suse.com/repo/$RCE/RES7-SUSE-Manager-Tools-Beta/x86_64/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "RHEL-7-SUSE-Manager-Tools-Beta for x86_64", + "product_type": "extension", + "gpg_info": [ + { + "url": "file:///etc/pki/rpm-gpg/el-tools-gpg-pubkey-39db7c82.key", + "keyId": "39DB7C82", + "fingerprint": "FEAB502539D846DB2C0961CA70AF9E8139DB7C82" + } + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "rhel6-pool-i386", + "parent_channel_label": null, + "product_id": -6, + "repository_id": -81, + "parent_product_id": null, + "root_product_id": -6, + "update_tag": null, + "url": "http://localhost/pub/repositories/empty/", + "release_stage": "released", + "mandatory": true, + "signed": false, + "recommended": false, + "channel_name": "RHEL6-Pool for i386", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "rhel6-suse-manager-tools-i386", + "parent_channel_label": "rhel6-pool-i386", + "product_id": 1681, + "repository_id": 994, + "parent_product_id": -6, + "root_product_id": -6, + "update_tag": "res6ct", + "url": "https://updates.suse.com/repo/$RCE/RES6-SUSE-Manager-Tools/i386/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "RHEL6-SUSE-Manager-Tools for i386", + "product_type": "extension", + "gpg_info": [ + { + "url": "file:///etc/pki/rpm-gpg/el6-tools-gpg-pubkey-307e3d54.key", + "keyId": "307E3D54", + "fingerprint": "4E98E67519D98DC7362A5990E3A5C360307E3D54" + } + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "res-6-suse-manager-tools-beta-i386", + "parent_channel_label": "rhel6-pool-i386", + "product_id": 2063, + "repository_id": 4408, + "parent_product_id": 1681, + "root_product_id": -6, + "update_tag": null, + "url": "https://updates.suse.com/repo/$RCE/RES6-SUSE-Manager-Tools-Beta/i386/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "RES-6-SUSE-Manager-Tools-Beta for i386", + "product_type": "extension", + "gpg_info": [ + { + "url": "file:///etc/pki/rpm-gpg/el6-tools-gpg-pubkey-307e3d54.key", + "keyId": "307E3D54", + "fingerprint": "4E98E67519D98DC7362A5990E3A5C360307E3D54" + } + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "rhel6-pool-x86_64", + "parent_channel_label": null, + "product_id": -5, + "repository_id": -80, + "parent_product_id": null, + "root_product_id": -5, + "update_tag": null, + "url": "http://localhost/pub/repositories/empty/", + "release_stage": "released", + "mandatory": true, + "signed": false, + "recommended": false, + "channel_name": "RHEL6-Pool for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "rhel6-suse-manager-tools-x86_64", + "parent_channel_label": "rhel6-pool-x86_64", + "product_id": 1682, + "repository_id": 977, + "parent_product_id": -5, + "root_product_id": -5, + "update_tag": "res6ct", + "url": "https://updates.suse.com/repo/$RCE/RES6-SUSE-Manager-Tools/x86_64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "RHEL6-SUSE-Manager-Tools for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "res-6-suse-manager-tools-beta-x86_64", + "parent_channel_label": "rhel6-pool-x86_64", + "product_id": 2064, + "repository_id": 4409, + "parent_product_id": 1682, + "root_product_id": -5, + "update_tag": null, + "url": "https://updates.suse.com/repo/$RCE/RES6-SUSE-Manager-Tools-Beta/x86_64/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "RES-6-SUSE-Manager-Tools-Beta for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "rhel5-pool-i386", + "parent_channel_label": null, + "product_id": -4, + "repository_id": -79, + "parent_product_id": null, + "root_product_id": -4, + "update_tag": null, + "url": "http://localhost/pub/repositories/empty/", + "release_stage": "released", + "mandatory": true, + "signed": false, + "recommended": false, + "channel_name": "RHEL5-Pool for i386", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "rhel5-suse-manager-tools-i386", + "parent_channel_label": "rhel5-pool-i386", + "product_id": 1679, + "repository_id": 990, + "parent_product_id": -4, + "root_product_id": -4, + "update_tag": "res5ct", + "url": "https://updates.suse.com/repo/$RCE/RES5-SUSE-Manager-Tools/i386/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "RHEL5-SUSE-Manager-Tools for i386", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "rhel5-pool-x86_64", + "parent_channel_label": null, + "product_id": -3, + "repository_id": -78, + "parent_product_id": null, + "root_product_id": -3, + "update_tag": null, + "url": "http://localhost/pub/repositories/empty/", + "release_stage": "released", + "mandatory": true, + "signed": false, + "recommended": false, + "channel_name": "RHEL5-Pool for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "rhel5-suse-manager-tools-x86_64", + "parent_channel_label": "rhel5-pool-x86_64", + "product_id": 1680, + "repository_id": 979, + "parent_product_id": -3, + "root_product_id": -3, + "update_tag": "res5ct", + "url": "https://updates.suse.com/repo/$RCE/RES5-SUSE-Manager-Tools/x86_64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "RHEL5-SUSE-Manager-Tools for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "ubuntu-16.04-pool-amd64", + "parent_channel_label": null, + "product_id": -2, + "repository_id": -76, + "parent_product_id": null, + "root_product_id": -2, + "update_tag": null, + "url": "http://localhost/pub/repositories/empty-deb/", + "release_stage": "released", + "mandatory": true, + "signed": false, + "recommended": false, + "channel_name": "ubuntu-16.04-pool for amd64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "ubuntu-16.04-suse-manager-tools-amd64", + "parent_channel_label": "ubuntu-16.04-pool-amd64", + "product_id": 1917, + "repository_id": 3869, + "parent_product_id": -2, + "root_product_id": -2, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Updates/Ubuntu/16.04-CLIENT-TOOLS/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "Ubuntu-16.04-SUSE-Manager-Tools for amd64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "ubuntu-16.04-suse-manager-tools-beta-amd64", + "parent_channel_label": "ubuntu-16.04-pool-amd64", + "product_id": 2061, + "repository_id": 4406, + "parent_product_id": 1917, + "root_product_id": -2, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Updates/Ubuntu/16.04-CLIENT-TOOLS-BETA/x86_64/update/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "Ubuntu-16.04-SUSE-Manager-Tools-Beta for amd64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "ubuntu-18.04-pool-amd64", + "parent_channel_label": null, + "product_id": -1, + "repository_id": -77, + "parent_product_id": null, + "root_product_id": -1, + "update_tag": null, + "url": "http://localhost/pub/repositories/empty-deb/", + "release_stage": "released", + "mandatory": true, + "signed": false, + "recommended": false, + "channel_name": "ubuntu-18.04-pool for amd64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "ubuntu-18.04-suse-manager-tools-amd64", + "parent_channel_label": "ubuntu-18.04-pool-amd64", + "product_id": 1918, + "repository_id": 3870, + "parent_product_id": -1, + "root_product_id": -1, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Updates/Ubuntu/18.04-CLIENT-TOOLS/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "Ubuntu-18.04-SUSE-Manager-Tools for amd64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "ubuntu-18.04-suse-manager-tools-beta-amd64", + "parent_channel_label": "ubuntu-18.04-pool-amd64", + "product_id": 2062, + "repository_id": 4407, + "parent_product_id": 1918, + "root_product_id": -1, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Updates/Ubuntu/18.04-CLIENT-TOOLS-BETA/x86_64/update/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "Ubuntu-18.04-SUSE-Manager-Tools-Beta for amd64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "oes2018-sle-module-web-scripting-12-sp2-updates-x86_64", + "parent_channel_label": "oes2018-pool-x86_64", + "product_id": 45, + "repository_id": -69, + "parent_product_id": null, + "root_product_id": 45, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://nu.novell.com/repo/$RCE/OES2018-SLE-Modules-Web-Scripting-12-SP2-Updates/sle-12-x86_64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "OES2018-SLE-Module-Web-Scripting-12-SP2-Updates for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "oes2018-sle-module-web-scripting-12-sp2-pool-x86_64", + "parent_channel_label": "oes2018-pool-x86_64", + "product_id": 45, + "repository_id": -68, + "parent_product_id": null, + "root_product_id": 45, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://nu.novell.com/repo/$RCE/OES2018-SLE-Modules-Web-Scripting-12-SP2-Pool/sle-12-x86_64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "OES2018-SLE-Module-Web-Scripting-12-SP2-Pool for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "oes2018-sle-sdk-12-sp2-debuginfo-updates-x86_64", + "parent_channel_label": "oes2018-pool-x86_64", + "product_id": 45, + "repository_id": -30, + "parent_product_id": null, + "root_product_id": 45, + "update_tag": "SLE-SDK", + "url": "https://nu.novell.com/repo/$RCE/OES2018-SLE-SDK-12-SP2-Debuginfo-Updates/sle-12-x86_64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "OES2018-SLE-SDK-12-SP2-Debuginfo-Updates for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "oes2018-sle-sdk-12-sp2-debuginfo-pool-x86_64", + "parent_channel_label": "oes2018-pool-x86_64", + "product_id": 45, + "repository_id": -29, + "parent_product_id": null, + "root_product_id": 45, + "update_tag": "SLE-SDK", + "url": "https://nu.novell.com/repo/$RCE/OES2018-SLE-SDK-12-SP2-Debuginfo-Pool/sle-12-x86_64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "OES2018-SLE-SDK-12-SP2-Debuginfo-Pool for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "oes2018-sle-sdk-12-sp2-updates-x86_64", + "parent_channel_label": "oes2018-pool-x86_64", + "product_id": 45, + "repository_id": -28, + "parent_product_id": null, + "root_product_id": 45, + "update_tag": "SLE-SDK", + "url": "https://nu.novell.com/repo/$RCE/OES2018-SLE-SDK-12-SP2-Updates/sle-12-x86_64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "OES2018-SLE-SDK-12-SP2-Updates for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "oes2018-sle-sdk-12-sp2-pool-x86_64", + "parent_channel_label": "oes2018-pool-x86_64", + "product_id": 45, + "repository_id": -27, + "parent_product_id": null, + "root_product_id": 45, + "update_tag": "SLE-SDK", + "url": "https://nu.novell.com/repo/$RCE/OES2018-SLE-SDK-12-SP2-Pool/sle-12-x86_64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "OES2018-SLE-SDK-12-SP2-Pool for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "oes2018-sle-manager-tools-12-sp2-updates-x86_64", + "parent_channel_label": "oes2018-pool-x86_64", + "product_id": 45, + "repository_id": -26, + "parent_product_id": null, + "root_product_id": 45, + "update_tag": "SLE-Manager-Tools", + "url": "https://nu.novell.com/repo/$RCE/OES2018-SLE-Manager-Tools-12-SP2-Updates/sle-12-x86_64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "OES2018-SLE-Manager-Tools-12-SP2-Updates for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "oes2018-sle-manager-tools-12-sp2-pool-x86_64", + "parent_channel_label": "oes2018-pool-x86_64", + "product_id": 45, + "repository_id": -25, + "parent_product_id": null, + "root_product_id": 45, + "update_tag": "SLE-Manager-Tools", + "url": "https://nu.novell.com/repo/$RCE/OES2018-SLE-Manager-Tools-12-SP2-Pool/sle-12-x86_64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "OES2018-SLE-Manager-Tools-12-SP2-Pool for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "oes2018-sle-manager-tools-12-sp2-debuginfo-updates-x86_64", + "parent_channel_label": "oes2018-pool-x86_64", + "product_id": 45, + "repository_id": -24, + "parent_product_id": null, + "root_product_id": 45, + "update_tag": "SLE-Manager-Tools", + "url": "https://nu.novell.com/repo/$RCE/OES2018-SLE-Manager-Tools-12-SP2-Debuginfo-Updates/sle-12-x86_64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "OES2018-SLE-Manager-Tools-12-SP2-Debuginfo-Updates for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "oes2018-sle-manager-tools-12-sp2-debuginfo-pool-x86_64", + "parent_channel_label": "oes2018-pool-x86_64", + "product_id": 45, + "repository_id": -23, + "parent_product_id": null, + "root_product_id": 45, + "update_tag": "SLE-Manager-Tools", + "url": "https://nu.novell.com/repo/$RCE/OES2018-SLE-Manager-Tools-12-SP2-Debuginfo-Pool/sle-12-x86_64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "OES2018-SLE-Manager-Tools-12-SP2-Debuginfo-Pool for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "oes2018-sle-module-containers-12-sp2-debuginfo-updates-x86_64", + "parent_channel_label": "oes2018-pool-x86_64", + "product_id": 45, + "repository_id": -22, + "parent_product_id": null, + "root_product_id": 45, + "update_tag": "SLE-Module-Containers", + "url": "https://nu.novell.com/repo/$RCE/OES2018-SLE-Module-Containers-12-SP2-Debuginfo-Updates/sle-12-x86_64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "OES2018-SLE-Module-Containers-12-SP2-Debuginfo-Updates for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "oes2018-sle-module-containers-12-sp2-debuginfo-pool-x86_64", + "parent_channel_label": "oes2018-pool-x86_64", + "product_id": 45, + "repository_id": -21, + "parent_product_id": null, + "root_product_id": 45, + "update_tag": "SLE-Module-Containers", + "url": "https://nu.novell.com/repo/$RCE/OES2018-SLE-Module-Containers-12-SP2-Debuginfo-Pool/sle-12-x86_64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "OES2018-SLE-Module-Containers-12-SP2-Debuginfo-Pool for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "oes2018-sle-module-containers-12-sp2-updates-x86_64", + "parent_channel_label": "oes2018-pool-x86_64", + "product_id": 45, + "repository_id": -20, + "parent_product_id": null, + "root_product_id": 45, + "update_tag": "SLE-Module-Containers", + "url": "https://nu.novell.com/repo/$RCE/OES2018-SLE-Module-Containers-12-SP2-Updates/sle-12-x86_64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "OES2018-SLE-Module-Containers-12-SP2-Updates for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "oes2018-sle-module-containers-12-sp2-pool-x86_64", + "parent_channel_label": "oes2018-pool-x86_64", + "product_id": 45, + "repository_id": -19, + "parent_product_id": null, + "root_product_id": 45, + "update_tag": "SLE-Module-Containers", + "url": "https://nu.novell.com/repo/$RCE/OES2018-SLE-Module-Containers-12-SP2-Pool/sle-12-x86_64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "OES2018-SLE-Module-Containers-12-SP2-Pool for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "oes2018-sles12-sp2-updates-x86_64", + "parent_channel_label": "oes2018-pool-x86_64", + "product_id": 45, + "repository_id": -18, + "parent_product_id": null, + "root_product_id": 45, + "update_tag": "SLE-SERVER", + "url": "https://nu.novell.com/repo/$RCE/OES2018-SLES12-SP2-Updates/sle-12-x86_64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "OES2018-SLES12-SP2-Updates for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "oes2018-sles12-sp2-pool-x86_64", + "parent_channel_label": "oes2018-pool-x86_64", + "product_id": 45, + "repository_id": -17, + "parent_product_id": null, + "root_product_id": 45, + "update_tag": "SLE-SERVER", + "url": "https://nu.novell.com/repo/$RCE/OES2018-SLES12-SP2-Pool/sle-12-x86_64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "OES2018-SLES12-SP2-Pool for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "oes2018-sles12-sp2-debuginfo-updates-x86_64", + "parent_channel_label": "oes2018-pool-x86_64", + "product_id": 45, + "repository_id": -16, + "parent_product_id": null, + "root_product_id": 45, + "update_tag": "SLE-SERVER", + "url": "https://nu.novell.com/repo/$RCE/OES2018-SLES12-SP2-Debuginfo-Updates/sle-12-x86_64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "OES2018-SLES12-SP2-Debuginfo-Updates for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "oes2018-sles12-sp2-debuginfo-pool-x86_64", + "parent_channel_label": "oes2018-pool-x86_64", + "product_id": 45, + "repository_id": -15, + "parent_product_id": null, + "root_product_id": 45, + "update_tag": "SLE-SERVER", + "url": "https://nu.novell.com/repo/$RCE/OES2018-SLES12-SP2-Debuginfo-Pool/sle-12-x86_64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "OES2018-SLES12-SP2-Debuginfo-Pool for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "oes2018-updates-x86_64", + "parent_channel_label": "oes2018-pool-x86_64", + "product_id": 45, + "repository_id": -14, + "parent_product_id": null, + "root_product_id": 45, + "update_tag": "oes2018", + "url": "https://nu.novell.com/repo/$RCE/OES2018-Updates/sle-12-x86_64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "OES2018-Updates for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "oes2018-pool-x86_64", + "parent_channel_label": null, + "product_id": 45, + "repository_id": -13, + "parent_product_id": null, + "root_product_id": 45, + "update_tag": "oes2018", + "url": "https://nu.novell.com/repo/$RCE/OES2018-Pool/sle-12-x86_64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "OES2018-Pool for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "oes2018-sp1-sle-module-toolchain12-debuginfo-updates-x86_64", + "parent_channel_label": "oes2018-sp1-pool-x86_64", + "product_id": 46, + "repository_id": -60, + "parent_product_id": null, + "root_product_id": 46, + "update_tag": "SLE-Module-Toolchain", + "url": "https://nu.novell.com/repo/$RCE/OES2018-SP1-SLE-Module-Toolchain12-Debuginfo-Updates/sle-12-x86_64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "OES2018-SP1-SLE-Module-Toolchain12-Debuginfo-Updates for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "oes2018-sp1-sle-module-toolchain12-debuginfo-pool-x86_64", + "parent_channel_label": "oes2018-sp1-pool-x86_64", + "product_id": 46, + "repository_id": -59, + "parent_product_id": null, + "root_product_id": 46, + "update_tag": "SLE-Module-Toolchain", + "url": "https://nu.novell.com/repo/$RCE/OES2018-SP1-SLE-Module-Toolchain12-Debuginfo-Pool/sle-12-x86_64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "OES2018-SP1-SLE-Module-Toolchain12-Debuginfo-Pool for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "oes2018-sp1-sle-module-toolchain12-updates-x86_64", + "parent_channel_label": "oes2018-sp1-pool-x86_64", + "product_id": 46, + "repository_id": -58, + "parent_product_id": null, + "root_product_id": 46, + "update_tag": "SLE-Module-Toolchain", + "url": "https://nu.novell.com/repo/$RCE/OES2018-SP1-SLE-Module-Toolchain12-Updates/sle-12-x86_64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "OES2018-SP1-SLE-Module-Toolchain12-Updates for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "oes2018-sp1-sle-module-toolchain12-pool-x86_64", + "parent_channel_label": "oes2018-sp1-pool-x86_64", + "product_id": 46, + "repository_id": -57, + "parent_product_id": null, + "root_product_id": 46, + "update_tag": "SLE-Module-Toolchain", + "url": "https://nu.novell.com/repo/$RCE/OES2018-SP1-SLE-Module-Toolchain12-Pool/sle-12-x86_64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "OES2018-SP1-SLE-Module-Toolchain12-Pool for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "oes2018-sp1-sle-module-web-scripting12-debuginfo-updates-x86_64", + "parent_channel_label": "oes2018-sp1-pool-x86_64", + "product_id": 46, + "repository_id": -56, + "parent_product_id": null, + "root_product_id": 46, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://nu.novell.com/repo/$RCE/OES2018-SP1-SLE-Module-Web-Scripting12-Debuginfo-Updates/sle-12-x86_64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "OES2018-SP1-SLE-Module-Web-Scripting12-Debuginfo-Updates for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "oes2018-sp1-sle-module-web-scripting12-debuginfo-pool-x86_64", + "parent_channel_label": "oes2018-sp1-pool-x86_64", + "product_id": 46, + "repository_id": -55, + "parent_product_id": null, + "root_product_id": 46, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://nu.novell.com/repo/$RCE/OES2018-SP1-SLE-Module-Web-Scripting12-Debuginfo-Pool/sle-12-x86_64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "OES2018-SP1-SLE-Module-Web-Scripting12-Debuginfo-Pool for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "oes2018-sp1-sle-module-web-scripting12-updates-x86_64", + "parent_channel_label": "oes2018-sp1-pool-x86_64", + "product_id": 46, + "repository_id": -54, + "parent_product_id": null, + "root_product_id": 46, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://nu.novell.com/repo/$RCE/OES2018-SP1-SLE-Module-Web-Scripting12-Updates/sle-12-x86_64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "OES2018-SP1-SLE-Module-Web-Scripting12-Updates for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "oes2018-sp1-sle-module-web-scripting12-pool-x86_64", + "parent_channel_label": "oes2018-sp1-pool-x86_64", + "product_id": 46, + "repository_id": -53, + "parent_product_id": null, + "root_product_id": 46, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://nu.novell.com/repo/$RCE/OES2018-SP1-SLE-Module-Web-Scripting12-Pool/sle-12-x86_64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "OES2018-SP1-SLE-Module-Web-Scripting12-Pool for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "oes2018-sp1-sle-module-public-cloud12-debuginfo-updates-x86_64", + "parent_channel_label": "oes2018-sp1-pool-x86_64", + "product_id": 46, + "repository_id": -52, + "parent_product_id": null, + "root_product_id": 46, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://nu.novell.com/repo/$RCE/OES2018-SP1-SLE-Module-Public-Cloud12-Debuginfo-Updates/sle-12-x86_64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "OES2018-SP1-SLE-Module-Public-Cloud12-Debuginfo-Updates for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "oes2018-sp1-sle-module-public-cloud12-debuginfo-pool-x86_64", + "parent_channel_label": "oes2018-sp1-pool-x86_64", + "product_id": 46, + "repository_id": -51, + "parent_product_id": null, + "root_product_id": 46, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://nu.novell.com/repo/$RCE/OES2018-SP1-SLE-Module-Public-Cloud12-Debuginfo-Pool/sle-12-x86_64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "OES2018-SP1-SLE-Module-Public-Cloud12-Debuginfo-Pool for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "oes2018-sp1-sle-module-public-cloud12-updates-x86_64", + "parent_channel_label": "oes2018-sp1-pool-x86_64", + "product_id": 46, + "repository_id": -50, + "parent_product_id": null, + "root_product_id": 46, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://nu.novell.com/repo/$RCE/OES2018-SP1-SLE-Module-Public-Cloud12-Updates/sle-12-x86_64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "OES2018-SP1-SLE-Module-Public-Cloud12-Updates for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "oes2018-sp1-sle-module-public-cloud12-pool-x86_64", + "parent_channel_label": "oes2018-sp1-pool-x86_64", + "product_id": 46, + "repository_id": -49, + "parent_product_id": null, + "root_product_id": 46, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://nu.novell.com/repo/$RCE/OES2018-SP1-SLE-Module-Public-Cloud12-Pool/sle-12-x86_64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "OES2018-SP1-SLE-Module-Public-Cloud12-Pool for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "oes2018-sp1-sle-sdk-12-sp3-debuginfo-updates-x86_64", + "parent_channel_label": "oes2018-sp1-pool-x86_64", + "product_id": 46, + "repository_id": -48, + "parent_product_id": null, + "root_product_id": 46, + "update_tag": "SLE-SDK", + "url": "https://nu.novell.com/repo/$RCE/OES2018-SP1-SLE-SDK-12-SP3-Debuginfo-Updates/sle-12-x86_64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "OES2018-SP1-SLE-SDK-12-SP3-Debuginfo-Updates for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "oes2018-sp1-sle-sdk-12-sp3-debuginfo-pool-x86_64", + "parent_channel_label": "oes2018-sp1-pool-x86_64", + "product_id": 46, + "repository_id": -47, + "parent_product_id": null, + "root_product_id": 46, + "update_tag": "SLE-SDK", + "url": "https://nu.novell.com/repo/$RCE/OES2018-SP1-SLE-SDK-12-SP3-Debuginfo-Pool/sle-12-x86_64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "OES2018-SP1-SLE-SDK-12-SP3-Debuginfo-Pool for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "oes2018-sp1-sle-sdk-12-sp3-updates-x86_64", + "parent_channel_label": "oes2018-sp1-pool-x86_64", + "product_id": 46, + "repository_id": -46, + "parent_product_id": null, + "root_product_id": 46, + "update_tag": "SLE-SDK", + "url": "https://nu.novell.com/repo/$RCE/OES2018-SP1-SLE-SDK-12-SP3-Updates/sle-12-x86_64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "OES2018-SP1-SLE-SDK-12-SP3-Updates for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "oes2018-sp1-sle-sdk-12-sp3-pool-x86_64", + "parent_channel_label": "oes2018-sp1-pool-x86_64", + "product_id": 46, + "repository_id": -45, + "parent_product_id": null, + "root_product_id": 46, + "update_tag": "SLE-SDK", + "url": "https://nu.novell.com/repo/$RCE/OES2018-SP1-SLE-SDK-12-SP3-Pool/sle-12-x86_64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "OES2018-SP1-SLE-SDK-12-SP3-Pool for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "oes2018-sp1-sle-manager-tools12-updates-x86_64", + "parent_channel_label": "oes2018-sp1-pool-x86_64", + "product_id": 46, + "repository_id": -44, + "parent_product_id": null, + "root_product_id": 46, + "update_tag": "SLE-Manager-Tools", + "url": "https://nu.novell.com/repo/$RCE/OES2018-SP1-SLE-Manager-Tools12-Updates/sle-12-x86_64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "OES2018-SP1-SLE-Manager-Tools12-Updates for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "oes2018-sp1-sle-manager-tools12-pool-x86_64", + "parent_channel_label": "oes2018-sp1-pool-x86_64", + "product_id": 46, + "repository_id": -43, + "parent_product_id": null, + "root_product_id": 46, + "update_tag": "SLE-Manager-Tools", + "url": "https://nu.novell.com/repo/$RCE/OES2018-SP1-SLE-Manager-Tools12-Pool/sle-12-x86_64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "OES2018-SP1-SLE-Manager-Tools12-Pool for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "oes2018-sp1-sle-manager-tools12-debuginfo-updates-x86_64", + "parent_channel_label": "oes2018-sp1-pool-x86_64", + "product_id": 46, + "repository_id": -42, + "parent_product_id": null, + "root_product_id": 46, + "update_tag": "SLE-Manager-Tools", + "url": "https://nu.novell.com/repo/$RCE/OES2018-SP1-SLE-Manager-Tools12-Debuginfo-Updates/sle-12-x86_64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "OES2018-SP1-SLE-Manager-Tools12-Debuginfo-Updates for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "oes2018-sp1-sle-manager-tools12-debuginfo-pool-x86_64", + "parent_channel_label": "oes2018-sp1-pool-x86_64", + "product_id": 46, + "repository_id": -41, + "parent_product_id": null, + "root_product_id": 46, + "update_tag": "SLE-Manager-Tools", + "url": "https://nu.novell.com/repo/$RCE/OES2018-SP1-SLE-Manager-Tools12-Debuginfo-Pool/sle-12-x86_64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "OES2018-SP1-SLE-Manager-Tools12-Debuginfo-Pool for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "oes2018-sp1-sle-module-containers12-debuginfo-updates-x86_64", + "parent_channel_label": "oes2018-sp1-pool-x86_64", + "product_id": 46, + "repository_id": -40, + "parent_product_id": null, + "root_product_id": 46, + "update_tag": "SLE-Module-Containers", + "url": "https://nu.novell.com/repo/$RCE/OES2018-SP1-SLE-Module-Containers12-Debuginfo-Updates/sle-12-x86_64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "OES2018-SP1-SLE-Module-Containers12-Debuginfo-Updates for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "oes2018-sp1-sle-module-containers12-debuginfo-pool-x86_64", + "parent_channel_label": "oes2018-sp1-pool-x86_64", + "product_id": 46, + "repository_id": -39, + "parent_product_id": null, + "root_product_id": 46, + "update_tag": "SLE-Module-Containers", + "url": "https://nu.novell.com/repo/$RCE/OES2018-SP1-SLE-Module-Containers12-Debuginfo-Pool/sle-12-x86_64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "OES2018-SP1-SLE-Module-Containers12-Debuginfo-Pool for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "oes2018-sp1-sle-module-containers12-updates-x86_64", + "parent_channel_label": "oes2018-sp1-pool-x86_64", + "product_id": 46, + "repository_id": -38, + "parent_product_id": null, + "root_product_id": 46, + "update_tag": "SLE-Module-Containers", + "url": "https://nu.novell.com/repo/$RCE/OES2018-SP1-SLE-Module-Containers12-Updates/sle-12-x86_64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "OES2018-SP1-SLE-Module-Containers12-Updates for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "oes2018-sp1-sle-module-containers12-pool-x86_64", + "parent_channel_label": "oes2018-sp1-pool-x86_64", + "product_id": 46, + "repository_id": -37, + "parent_product_id": null, + "root_product_id": 46, + "update_tag": "SLE-Module-Containers", + "url": "https://nu.novell.com/repo/$RCE/OES2018-SP1-SLE-Module-Containers12-Pool/sle-12-x86_64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "OES2018-SP1-SLE-Module-Containers12-Pool for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "oes2018-sp1-sles12-sp3-updates-x86_64", + "parent_channel_label": "oes2018-sp1-pool-x86_64", + "product_id": 46, + "repository_id": -36, + "parent_product_id": null, + "root_product_id": 46, + "update_tag": "SLE-SERVER", + "url": "https://nu.novell.com/repo/$RCE/OES2018-SP1-SLES12-SP3-Updates/sle-12-x86_64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "OES2018-SP1-SLES12-SP3-Updates for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "oes2018-sp1-sles12-sp3-pool-x86_64", + "parent_channel_label": "oes2018-sp1-pool-x86_64", + "product_id": 46, + "repository_id": -35, + "parent_product_id": null, + "root_product_id": 46, + "update_tag": "SLE-SERVER", + "url": "https://nu.novell.com/repo/$RCE/OES2018-SP1-SLES12-SP3-Pool/sle-12-x86_64/", + "release_stage": "released", + "mandatory": true, + "signed": false, + "recommended": false, + "channel_name": "OES2018-SP1-SLES12-SP3-Pool for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "oes2018-sp1-sles12-sp3-debuginfo-updates-x86_64", + "parent_channel_label": "oes2018-sp1-pool-x86_64", + "product_id": 46, + "repository_id": -34, + "parent_product_id": null, + "root_product_id": 46, + "update_tag": "SLE-SERVER", + "url": "https://nu.novell.com/repo/$RCE/OES2018-SP1-SLES12-SP3-Debuginfo-Updates/sle-12-x86_64/", + "release_stage": "released", + "mandatory": false, + "signed": false, + "recommended": false, + "channel_name": "OES2018-SP1-SLES12-SP3-Debuginfo-Updates for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "oes2018-sp1-sles12-sp3-debuginfo-pool-x86_64", + "parent_channel_label": "oes2018-sp1-pool-x86_64", + "product_id": 46, + "repository_id": -33, + "parent_product_id": null, + "root_product_id": 46, + "update_tag": "SLE-SERVER", + "url": "https://nu.novell.com/repo/$RCE/OES2018-SP1-SLES12-SP3-Debuginfo-Pool/sle-12-x86_64/", + "release_stage": "released", + "mandatory": false, + "signed": false, + "recommended": false, + "channel_name": "OES2018-SP1-SLES12-SP3-Debuginfo-Pool for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "oes2018-sp1-updates-x86_64", + "parent_channel_label": "oes2018-sp1-pool-x86_64", + "product_id": 46, + "repository_id": -32, + "parent_product_id": null, + "root_product_id": 46, + "update_tag": null, + "url": "https://nu.novell.com/repo/$RCE/OES2018-SP1-Updates/sle-12-x86_64/", + "release_stage": "released", + "mandatory": true, + "signed": false, + "recommended": false, + "channel_name": "OES2018-SP1-Updates for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "oes2018-sp1-pool-x86_64", + "parent_channel_label": null, + "product_id": 46, + "repository_id": -31, + "parent_product_id": null, + "root_product_id": 46, + "update_tag": null, + "url": "https://nu.novell.com/repo/$RCE/OES2018-SP1-Pool/sle-12-x86_64/", + "release_stage": "released", + "mandatory": true, + "signed": false, + "recommended": false, + "channel_name": "OES2018-SP1-Pool for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles10-sp3-pool-s390x", + "parent_channel_label": null, + "product_id": 682, + "repository_id": 673, + "parent_product_id": null, + "root_product_id": 682, + "update_tag": "slesp3", + "url": "https://updates.suse.com/repo/$RCE/SLES10-SP3-Pool/sles-10-s390x/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLES10-SP3-Pool for s390x", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2" + ] + }, + { + "channel_label": "sles10-sp3-ltss-updates-s390x", + "parent_channel_label": "sles10-sp3-pool-s390x", + "product_id": 682, + "repository_id": 674, + "parent_product_id": null, + "root_product_id": 682, + "update_tag": "slesp3", + "url": "https://updates.suse.com/repo/$RCE/SLES10-SP3-LTSS-Updates/sles-10-s390x/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLES10-SP3-LTSS-Updates for s390x", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2" + ] + }, + { + "channel_label": "sles10-sp3-updates-s390x", + "parent_channel_label": "sles10-sp3-pool-s390x", + "product_id": 682, + "repository_id": 677, + "parent_product_id": null, + "root_product_id": 682, + "update_tag": "slesp3", + "url": "https://updates.suse.com/repo/$RCE/SLES10-SP3-Updates/sles-10-s390x/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLES10-SP3-Updates for s390x", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2" + ] + }, + { + "channel_label": "sles10-sp3-gplv3-extras-s390x", + "parent_channel_label": "sles10-sp3-pool-s390x", + "product_id": 682, + "repository_id": 678, + "parent_product_id": null, + "root_product_id": 682, + "update_tag": "slemp3", + "url": "https://updates.suse.com/repo/$RCE/SLES10-GPLv3-Extras/sles-10-s390x/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLES10-SP3-GPLv3-Extras for s390x", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2" + ] + }, + { + "channel_label": "sle10-sp3-suse-manager-tools-s390x", + "parent_channel_label": "sles10-sp3-pool-s390x", + "product_id": 682, + "repository_id": 992, + "parent_product_id": null, + "root_product_id": 682, + "update_tag": "smcl3", + "url": "https://updates.suse.com/repo/$RCE/SLE10-SUSE-Manager-Tools/sles-10-s390x/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE10-SP3 SUSE-Manager-Tools s390x", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2" + ] + }, + { + "channel_label": "sle10-sdk-sp3-pool-s390x", + "parent_channel_label": "sles10-sp3-pool-s390x", + "product_id": 1179, + "repository_id": 1337, + "parent_product_id": 682, + "root_product_id": 682, + "update_tag": "sdkp3", + "url": "https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Pool/sles-10-s390x/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE10-SDK-SP3-Pool for s390x", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2" + ] + }, + { + "channel_label": "sle10-sdk-sp3-updates-s390x", + "parent_channel_label": "sles10-sp3-pool-s390x", + "product_id": 1179, + "repository_id": 1339, + "parent_product_id": 682, + "root_product_id": 682, + "update_tag": "sdkp3", + "url": "https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Updates/sles-10-s390x/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE10-SDK-SP3-Updates for s390x", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2" + ] + }, + { + "channel_label": "sles11-extras-i586", + "parent_channel_label": "sles11-sp1-pool-i586", + "product_id": 684, + "repository_id": 679, + "parent_product_id": null, + "root_product_id": 684, + "update_tag": null, + "url": "https://updates.suse.com/repo/$RCE/SLES11-Extras/sle-11-i586/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLES11-Extras for i586", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-sp1-debuginfo-pool-i586", + "parent_channel_label": "sles11-sp1-pool-i586", + "product_id": 684, + "repository_id": 680, + "parent_product_id": null, + "root_product_id": 684, + "update_tag": "dbgsp1", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Pool/sle-11-i586/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SP1-Debuginfo-Pool for i586", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-webyast-sp1-pool-i586", + "parent_channel_label": "sles11-sp1-pool-i586", + "product_id": 684, + "repository_id": 681, + "parent_product_id": null, + "root_product_id": 684, + "update_tag": "slewystsp1", + "url": "https://updates.suse.com/repo/$RCE/SLE11-WebYaST-SP1-Pool/sle-11-i586/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE11-WebYaST-SP1-Pool for i586", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-sp1-debuginfo-updates-i586", + "parent_channel_label": "sles11-sp1-pool-i586", + "product_id": 684, + "repository_id": 682, + "parent_product_id": null, + "root_product_id": 684, + "update_tag": "dbgsp1", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Updates/sle-11-i586/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SP1-Debuginfo-Updates for i586", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles11-sp1-ltss-updates-i586", + "parent_channel_label": "sles11-sp1-pool-i586", + "product_id": 684, + "repository_id": 683, + "parent_product_id": null, + "root_product_id": 684, + "update_tag": "slessp1", + "url": "https://updates.suse.com/repo/$RCE/SLES11-SP1-LTSS-Updates/sle-11-i586/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLES11-SP1-LTSS-Updates for i586", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles11-sp1-updates-i586", + "parent_channel_label": "sles11-sp1-pool-i586", + "product_id": 684, + "repository_id": 684, + "parent_product_id": null, + "root_product_id": 684, + "update_tag": "slessp1", + "url": "https://updates.suse.com/repo/$RCE/SLES11-SP1-Updates/sle-11-i586/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLES11-SP1-Updates for i586", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-webyast-sp1-updates-i586", + "parent_channel_label": "sles11-sp1-pool-i586", + "product_id": 684, + "repository_id": 685, + "parent_product_id": null, + "root_product_id": 684, + "update_tag": "slewystsp1", + "url": "https://updates.suse.com/repo/$RCE/SLE11-WebYaST-SP1-Updates/sle-11-i586/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE11-WebYaST-SP1-Updates for i586", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles11-sp1-pool-i586", + "parent_channel_label": null, + "product_id": 684, + "repository_id": 686, + "parent_product_id": null, + "root_product_id": 684, + "update_tag": "slessp1", + "url": "https://updates.suse.com/repo/$RCE/SLES11-SP1-Pool/sle-11-i586/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLES11-SP1-Pool for i586", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles11-sp1-suse-manager-tools-i586", + "parent_channel_label": "sles11-sp1-pool-i586", + "product_id": 684, + "repository_id": 976, + "parent_product_id": null, + "root_product_id": 684, + "update_tag": "slesctsp1", + "url": "https://updates.suse.com/repo/$RCE/SLES11-SP1-SUSE-Manager-Tools/sle-11-i586/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLES11-SP1-SUSE-Manager-Tools i586", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle11-hae-sp1-updates-i586", + "parent_channel_label": "sles11-sp1-pool-i586", + "product_id": 959, + "repository_id": 944, + "parent_product_id": 684, + "root_product_id": 684, + "update_tag": "sleshasp1", + "url": "https://updates.suse.com/repo/$RCE/SLE11-HAE-SP1-Updates/sle-11-i586/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE11-HAE-SP1-Updates for i586", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-hae-sp1-pool-i586", + "parent_channel_label": "sles11-sp1-pool-i586", + "product_id": 959, + "repository_id": 945, + "parent_product_id": 684, + "root_product_id": 684, + "update_tag": "sleshasp1", + "url": "https://updates.suse.com/repo/$RCE/SLE11-HAE-SP1-Pool/sle-11-i586/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE11-HAE-SP1-Pool for i586", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-pos-sp1-pool-i586", + "parent_channel_label": "sles11-sp1-pool-i586", + "product_id": 1072, + "repository_id": 1072, + "parent_product_id": 684, + "root_product_id": 684, + "update_tag": "sleposp1", + "url": "https://updates.suse.com/repo/$RCE/SLE11-POS-SP1-Pool/sle-11-i586/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE11-POS-SP1-Pool for i586", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-pos-sp1-updates-i586", + "parent_channel_label": "sles11-sp1-pool-i586", + "product_id": 1072, + "repository_id": 1083, + "parent_product_id": 684, + "root_product_id": 684, + "update_tag": "sleposp1", + "url": "https://updates.suse.com/repo/$RCE/SLE11-POS-SP1-Updates/sle-11-i586/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE11-POS-SP1-Updates for i586", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-sdk-sp1-updates-i586", + "parent_channel_label": "sles11-sp1-pool-i586", + "product_id": 1159, + "repository_id": 1262, + "parent_product_id": 684, + "root_product_id": 684, + "update_tag": "sdksp1", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Updates/sle-11-i586/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SDK-SP1-Updates for i586", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-sdk-sp1-pool-i586", + "parent_channel_label": "sles11-sp1-pool-i586", + "product_id": 1159, + "repository_id": 1263, + "parent_product_id": 684, + "root_product_id": 684, + "update_tag": "sdksp1", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-i586/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SDK-SP1-Pool for i586", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-smt-updates-i586", + "parent_channel_label": "sles11-sp1-pool-i586", + "product_id": 1196, + "repository_id": 1402, + "parent_product_id": 684, + "root_product_id": 684, + "update_tag": "slesmtsp0", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SMT-Updates/sle-11-i586/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SMT-Updates for i586", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles11-sp1-updates-x86_64", + "parent_channel_label": "sles11-sp1-pool-x86_64", + "product_id": 690, + "repository_id": 705, + "parent_product_id": null, + "root_product_id": 690, + "update_tag": "slessp1", + "url": "https://updates.suse.com/repo/$RCE/SLES11-SP1-Updates/sle-11-x86_64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLES11-SP1-Updates for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-webyast-sp2-pool-x86_64", + "parent_channel_label": "sles11-sp1-pool-x86_64", + "product_id": 690, + "repository_id": 706, + "parent_product_id": null, + "root_product_id": 690, + "update_tag": "slewystsp1", + "url": "https://updates.suse.com/repo/$RCE/SLE11-WebYaST-SP2-Pool/sle-11-x86_64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE11-WebYaST-SP2-Pool for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-sp1-debuginfo-pool-x86_64", + "parent_channel_label": "sles11-sp1-pool-x86_64", + "product_id": 690, + "repository_id": 707, + "parent_product_id": null, + "root_product_id": 690, + "update_tag": "dbgsp1", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Pool/sle-11-x86_64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SP1-Debuginfo-Pool for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-webyast-sp2-updates-x86_64", + "parent_channel_label": "sles11-sp1-pool-x86_64", + "product_id": 690, + "repository_id": 708, + "parent_product_id": null, + "root_product_id": 690, + "update_tag": "slewystsp1", + "url": "https://updates.suse.com/repo/$RCE/SLE11-WebYaST-SP2-Updates/sle-11-x86_64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE11-WebYaST-SP2-Updates for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles11-sp2-core-x86_64", + "parent_channel_label": "sles11-sp1-pool-x86_64", + "product_id": 690, + "repository_id": 709, + "parent_product_id": null, + "root_product_id": 690, + "update_tag": "slessp2", + "url": "https://updates.suse.com/repo/$RCE/SLES11-SP2-Core/sle-11-x86_64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLES11-SP2-Core for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles11-extras-x86_64", + "parent_channel_label": "sles11-sp1-pool-x86_64", + "product_id": 690, + "repository_id": 710, + "parent_product_id": null, + "root_product_id": 690, + "update_tag": null, + "url": "https://updates.suse.com/repo/$RCE/SLES11-Extras/sle-11-x86_64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLES11-Extras for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles11-sp1-pool-x86_64", + "parent_channel_label": null, + "product_id": 690, + "repository_id": 711, + "parent_product_id": null, + "root_product_id": 690, + "update_tag": "slessp1", + "url": "https://updates.suse.com/repo/$RCE/SLES11-SP1-Pool/sle-11-x86_64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLES11-SP1-Pool for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-sp2-debuginfo-updates-x86_64", + "parent_channel_label": "sles11-sp1-pool-x86_64", + "product_id": 690, + "repository_id": 712, + "parent_product_id": null, + "root_product_id": 690, + "update_tag": "dbgsp2", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SP2-Debuginfo-Updates/sle-11-x86_64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SP2-Debuginfo-Updates for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles11-sp2-extension-store-x86_64", + "parent_channel_label": "sles11-sp1-pool-x86_64", + "product_id": 690, + "repository_id": 713, + "parent_product_id": null, + "root_product_id": 690, + "update_tag": "slessp2", + "url": "https://updates.suse.com/repo/$RCE/SLES11-SP2-Extension-Store/sle-11-x86_64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLES11-SP2-Extension-Store for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles11-sp2-updates-x86_64", + "parent_channel_label": "sles11-sp1-pool-x86_64", + "product_id": 690, + "repository_id": 714, + "parent_product_id": null, + "root_product_id": 690, + "update_tag": "slessp2", + "url": "https://updates.suse.com/repo/$RCE/SLES11-SP2-Updates/sle-11-x86_64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLES11-SP2-Updates for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-sp1-debuginfo-updates-x86_64", + "parent_channel_label": "sles11-sp1-pool-x86_64", + "product_id": 690, + "repository_id": 715, + "parent_product_id": null, + "root_product_id": 690, + "update_tag": "dbgsp1", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Updates/sle-11-x86_64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SP1-Debuginfo-Updates for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-sp2-debuginfo-core-x86_64", + "parent_channel_label": "sles11-sp1-pool-x86_64", + "product_id": 690, + "repository_id": 716, + "parent_product_id": null, + "root_product_id": 690, + "update_tag": "dbgsp2", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SP2-Debuginfo-Core/sle-11-x86_64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SP2-Debuginfo-Core for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles11-sp2-ltss-updates-x86_64", + "parent_channel_label": "sles11-sp1-pool-x86_64", + "product_id": 690, + "repository_id": 1157, + "parent_product_id": null, + "root_product_id": 690, + "update_tag": "slessp2", + "url": "https://updates.suse.com/repo/$RCE/SLES11-SP2-LTSS-Updates/sle-11-x86_64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLES11-SP2-LTSS-Updates for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles11-sp2-suse-manager-tools-x86_64", + "parent_channel_label": "sles11-sp1-pool-x86_64", + "product_id": 690, + "repository_id": 1571, + "parent_product_id": null, + "root_product_id": 690, + "update_tag": "slesctsp2", + "url": "https://updates.suse.com/repo/$RCE/SLES11-SP2-SUSE-Manager-Tools/sle-11-x86_64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLES11-SP2-SUSE-Manager-Tools x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle11-sp2-slms-1.3-pool-x86_64", + "parent_channel_label": "sles11-sp1-pool-x86_64", + "product_id": 937, + "repository_id": 916, + "parent_product_id": 690, + "root_product_id": 690, + "update_tag": "sleslms13", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SP2-SLMS-1.3-Pool/sle-11-x86_64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SP2-SLMS-1.3-Pool for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-sp2-slms-1.3-updates-x86_64", + "parent_channel_label": "sles11-sp1-pool-x86_64", + "product_id": 937, + "repository_id": 917, + "parent_product_id": 690, + "root_product_id": 690, + "update_tag": "sleslms13", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SP2-SLMS-1.3-Updates/sle-11-x86_64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SP2-SLMS-1.3-Updates for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles11-sp2-ltss-updates-x86_64-slms13", + "parent_channel_label": "sles11-sp1-pool-x86_64", + "product_id": 937, + "repository_id": 1157, + "parent_product_id": 690, + "root_product_id": 690, + "update_tag": "slessp2", + "url": "https://updates.suse.com/repo/$RCE/SLES11-SP2-LTSS-Updates/sle-11-x86_64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLES11-SP2-LTSS-Updates for x86_64 SLMS13", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-hae-sp2-pool-x86_64", + "parent_channel_label": "sles11-sp1-pool-x86_64", + "product_id": 961, + "repository_id": 947, + "parent_product_id": 690, + "root_product_id": 690, + "update_tag": "sleshasp2", + "url": "https://updates.suse.com/repo/$RCE/SLE11-HAE-SP2-Pool/sle-11-x86_64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE11-HAE-SP2-Pool for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-hae-sp2-updates-x86_64", + "parent_channel_label": "sles11-sp1-pool-x86_64", + "product_id": 961, + "repository_id": 948, + "parent_product_id": 690, + "root_product_id": 690, + "update_tag": "sleshasp2", + "url": "https://updates.suse.com/repo/$RCE/SLE11-HAE-SP2-Updates/sle-11-x86_64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE11-HAE-SP2-Updates for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "slert11-sp2-updates-x86_64", + "parent_channel_label": "sles11-sp1-pool-x86_64", + "product_id": 1052, + "repository_id": 1051, + "parent_product_id": 690, + "root_product_id": 690, + "update_tag": "slertesp2", + "url": "https://updates.suse.com/repo/$RCE/SLERT11-SP2-Updates/sle-11-x86_64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLERT11-SP2-Updates for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "slert11-sp2-pool-x86_64", + "parent_channel_label": "sles11-sp1-pool-x86_64", + "product_id": 1052, + "repository_id": 1052, + "parent_product_id": 690, + "root_product_id": 690, + "update_tag": "slertesp2", + "url": "https://updates.suse.com/repo/$RCE/SLERT11-SP2-Pool/sle-11-x86_64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLERT11-SP2-Pool for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-pos-sp2-updates-x86_64", + "parent_channel_label": "sles11-sp1-pool-x86_64", + "product_id": 1068, + "repository_id": 1075, + "parent_product_id": 690, + "root_product_id": 690, + "update_tag": "sleposp2", + "url": "https://updates.suse.com/repo/$RCE/SLE11-POS-SP2-Updates/sle-11-x86_64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE11-POS-SP2-Updates for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-pos-sp2-pool-x86_64", + "parent_channel_label": "sles11-sp1-pool-x86_64", + "product_id": 1068, + "repository_id": 1076, + "parent_product_id": 690, + "root_product_id": 690, + "update_tag": "sleposp2", + "url": "https://updates.suse.com/repo/$RCE/SLE11-POS-SP2-Pool/sle-11-x86_64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE11-POS-SP2-Pool for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-cloud-1.0-pool-x86_64", + "parent_channel_label": "sles11-sp1-pool-x86_64", + "product_id": 1090, + "repository_id": 1102, + "parent_product_id": 690, + "root_product_id": 690, + "update_tag": "sleclo10sp2", + "url": "https://updates.suse.com/repo/$RCE/SUSE-Cloud-1.0-Pool/sle-11-x86_64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-Cloud-1.0-Pool for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-cloud-1.0-updates-x86_64", + "parent_channel_label": "sles11-sp1-pool-x86_64", + "product_id": 1090, + "repository_id": 1103, + "parent_product_id": 690, + "root_product_id": 690, + "update_tag": "sleclo10sp2", + "url": "https://updates.suse.com/repo/$RCE/SUSE-Cloud-1.0-Updates/sle-11-x86_64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-Cloud-1.0-Updates for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-sdk-sp1-pool-x86_64", + "parent_channel_label": "sles11-sp1-pool-x86_64", + "product_id": 1160, + "repository_id": 1264, + "parent_product_id": 690, + "root_product_id": 690, + "update_tag": "sdksp1", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-x86_64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SDK-SP1-Pool for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-sdk-sp1-updates-x86_64", + "parent_channel_label": "sles11-sp1-pool-x86_64", + "product_id": 1160, + "repository_id": 1265, + "parent_product_id": 690, + "root_product_id": 690, + "update_tag": "sdksp1", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Updates/sle-11-x86_64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SDK-SP1-Updates for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-sdk-sp2-core-x86_64", + "parent_channel_label": "sles11-sp1-pool-x86_64", + "product_id": 1160, + "repository_id": 1275, + "parent_product_id": 690, + "root_product_id": 690, + "update_tag": "sdksp2", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-x86_64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SDK-SP2-Core for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-sdk-sp2-updates-x86_64", + "parent_channel_label": "sles11-sp1-pool-x86_64", + "product_id": 1160, + "repository_id": 1276, + "parent_product_id": 690, + "root_product_id": 690, + "update_tag": "sdksp2", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-x86_64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SDK-SP2-Updates for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-smt-sp2-pool-x86_64", + "parent_channel_label": "sles11-sp1-pool-x86_64", + "product_id": 1193, + "repository_id": 1392, + "parent_product_id": 690, + "root_product_id": 690, + "update_tag": "slesmtsp0", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SMT-SP2-Pool/sle-11-x86_64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SMT-SP2-Pool for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-smt-sp2-updates-x86_64", + "parent_channel_label": "sles11-sp1-pool-x86_64", + "product_id": 1193, + "repository_id": 1397, + "parent_product_id": 690, + "root_product_id": 690, + "update_tag": "slesmtsp0", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SMT-SP2-Updates/sle-11-x86_64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SMT-SP2-Updates for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-sp2-webyast-1.3-pool-x86_64", + "parent_channel_label": "sles11-sp1-pool-x86_64", + "product_id": 1206, + "repository_id": 1185, + "parent_product_id": 690, + "root_product_id": 690, + "update_tag": "slewyst13", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SP2-WebYaST-1.3-Pool/sle-11-x86_64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SP2-WebYaST-1.3-Pool for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-sp2-webyast-1.3-updates-x86_64", + "parent_channel_label": "sles11-sp1-pool-x86_64", + "product_id": 1206, + "repository_id": 1188, + "parent_product_id": 690, + "root_product_id": 690, + "update_tag": "slewyst13", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SP2-WebYaST-1.3-Updates/sle-11-x86_64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SP2-WebYaST-1.3-Updates for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "oes11-sp1-updates-x86_64", + "parent_channel_label": "sles11-sp1-pool-x86_64", + "product_id": 1241, + "repository_id": -4, + "parent_product_id": 690, + "root_product_id": 690, + "update_tag": "oes11sp1", + "url": "https://nu.novell.com/repo/$RCE/OES11-SP1-Updates/sle-11-x86_64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "OES11-SP1-Updates for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "oes11-sp1-pool-x86_64", + "parent_channel_label": "sles11-sp1-pool-x86_64", + "product_id": 1241, + "repository_id": -3, + "parent_product_id": 690, + "root_product_id": 690, + "update_tag": "oes11sp1", + "url": "https://nu.novell.com/repo/$RCE/OES11-SP1-Pool/sle-11-x86_64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "OES11-SP1-Pool for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles11-sp1-pool-s390x-sles-sp3", + "parent_channel_label": "sles11-sp3-pool-s390x", + "product_id": 693, + "repository_id": 687, + "parent_product_id": null, + "root_product_id": 693, + "update_tag": "slessp1", + "url": "https://updates.suse.com/repo/$RCE/SLES11-SP1-Pool/sle-11-s390x/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLES11-SP1-Pool for s390x SLES-SP3", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-sp1-debuginfo-updates-s390x-sles-sp3", + "parent_channel_label": "sles11-sp3-pool-s390x", + "product_id": 693, + "repository_id": 688, + "parent_product_id": null, + "root_product_id": 693, + "update_tag": "dbgsp1", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Updates/sle-11-s390x/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SP1-Debuginfo-Updates for s390x SLES-SP3", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles11-extras-s390x-sles-sp3", + "parent_channel_label": "sles11-sp3-pool-s390x", + "product_id": 693, + "repository_id": 689, + "parent_product_id": null, + "root_product_id": 693, + "update_tag": null, + "url": "https://updates.suse.com/repo/$RCE/SLES11-Extras/sle-11-s390x/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLES11-Extras for s390x SLES-SP3", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles11-sp1-updates-s390x-sles-sp3", + "parent_channel_label": "sles11-sp3-pool-s390x", + "product_id": 693, + "repository_id": 691, + "parent_product_id": null, + "root_product_id": 693, + "update_tag": "slessp1", + "url": "https://updates.suse.com/repo/$RCE/SLES11-SP1-Updates/sle-11-s390x/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLES11-SP1-Updates for s390x SLES-SP3", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-sp1-debuginfo-pool-s390x-sles-sp3", + "parent_channel_label": "sles11-sp3-pool-s390x", + "product_id": 693, + "repository_id": 692, + "parent_product_id": null, + "root_product_id": 693, + "update_tag": "dbgsp1", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Pool/sle-11-s390x/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SP1-Debuginfo-Pool for s390x SLES-SP3", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles11-sp2-updates-s390x-sles-sp3", + "parent_channel_label": "sles11-sp3-pool-s390x", + "product_id": 693, + "repository_id": 724, + "parent_product_id": null, + "root_product_id": 693, + "update_tag": "slessp2", + "url": "https://updates.suse.com/repo/$RCE/SLES11-SP2-Updates/sle-11-s390x/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLES11-SP2-Updates for s390x SLES-SP3", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-sp2-debuginfo-updates-s390x-sles-sp3", + "parent_channel_label": "sles11-sp3-pool-s390x", + "product_id": 693, + "repository_id": 725, + "parent_product_id": null, + "root_product_id": 693, + "update_tag": "dbgsp2", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SP2-Debuginfo-Updates/sle-11-s390x/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SP2-Debuginfo-Updates for s390x SLES-SP3", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles11-sp2-core-s390x-sles-sp3", + "parent_channel_label": "sles11-sp3-pool-s390x", + "product_id": 693, + "repository_id": 726, + "parent_product_id": null, + "root_product_id": 693, + "update_tag": "slessp2", + "url": "https://updates.suse.com/repo/$RCE/SLES11-SP2-Core/sle-11-s390x/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLES11-SP2-Core for s390x SLES-SP3", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-sp2-debuginfo-core-s390x-sles-sp3", + "parent_channel_label": "sles11-sp3-pool-s390x", + "product_id": 693, + "repository_id": 728, + "parent_product_id": null, + "root_product_id": 693, + "update_tag": "dbgsp2", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SP2-Debuginfo-Core/sle-11-s390x/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SP2-Debuginfo-Core for s390x SLES-SP3", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles11-sp3-pool-s390x", + "parent_channel_label": null, + "product_id": 693, + "repository_id": 729, + "parent_product_id": null, + "root_product_id": 693, + "update_tag": "slessp3", + "url": "https://updates.suse.com/repo/$RCE/SLES11-SP3-Pool/sle-11-s390x/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLES11-SP3-Pool for s390x", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles11-sp3-extension-store-s390x", + "parent_channel_label": "sles11-sp3-pool-s390x", + "product_id": 693, + "repository_id": 730, + "parent_product_id": null, + "root_product_id": 693, + "update_tag": "slessp3", + "url": "https://updates.suse.com/repo/$RCE/SLES11-SP3-Extension-Store/sle-11-s390x/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLES11-SP3-Extension-Store for s390x", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles11-sp3-updates-s390x", + "parent_channel_label": "sles11-sp3-pool-s390x", + "product_id": 693, + "repository_id": 731, + "parent_product_id": null, + "root_product_id": 693, + "update_tag": "slessp3", + "url": "https://updates.suse.com/repo/$RCE/SLES11-SP3-Updates/sle-11-s390x/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLES11-SP3-Updates for s390x", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-sp3-debuginfo-pool-s390x", + "parent_channel_label": "sles11-sp3-pool-s390x", + "product_id": 693, + "repository_id": 732, + "parent_product_id": null, + "root_product_id": 693, + "update_tag": "dbgsp3", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SP3-Debuginfo-Pool/sle-11-s390x/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SP3-Debuginfo-Pool for s390x", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-sp3-debuginfo-updates-s390x", + "parent_channel_label": "sles11-sp3-pool-s390x", + "product_id": 693, + "repository_id": 733, + "parent_product_id": null, + "root_product_id": 693, + "update_tag": "dbgsp3", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SP3-Debuginfo-Updates/sle-11-s390x/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SP3-Debuginfo-Updates for s390x", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles11-sp2-extension-store-s390x-sles-sp3", + "parent_channel_label": "sles11-sp3-pool-s390x", + "product_id": 693, + "repository_id": 734, + "parent_product_id": null, + "root_product_id": 693, + "update_tag": "slessp2", + "url": "https://updates.suse.com/repo/$RCE/SLES11-SP2-Extension-Store/sle-11-s390x/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLES11-SP2-Extension-Store for s390x SLES-SP3", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-security-module-s390x", + "parent_channel_label": "sles11-sp3-pool-s390x", + "product_id": 693, + "repository_id": 1446, + "parent_product_id": null, + "root_product_id": 693, + "update_tag": "secsp3", + "url": "https://updates.suse.com/repo/$RCE/SLE11-Security-Module/sle-11-s390x/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE11-Security-Module for s390x", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles11-sp3-suse-manager-tools-s390x", + "parent_channel_label": "sles11-sp3-pool-s390x", + "product_id": 693, + "repository_id": 1473, + "parent_product_id": null, + "root_product_id": 693, + "update_tag": "slesctsp3", + "url": "https://updates.suse.com/repo/$RCE/SLES11-SP3-SUSE-Manager-Tools/sle-11-s390x/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLES11-SP3-SUSE-Manager-Tools s390x", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sles11-sp2-suse-manager-tools-s390x-sp3", + "parent_channel_label": "sles11-sp3-pool-s390x", + "product_id": 693, + "repository_id": 1570, + "parent_product_id": null, + "root_product_id": 693, + "update_tag": "slesctsp2", + "url": "https://updates.suse.com/repo/$RCE/SLES11-SP2-SUSE-Manager-Tools/sle-11-s390x/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLES11-SP2-SUSE-Manager-Tools s390x SP3", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle11-public-cloud-module-s390x", + "parent_channel_label": "sles11-sp3-pool-s390x", + "product_id": 693, + "repository_id": 1778, + "parent_product_id": null, + "root_product_id": 693, + "update_tag": "pubclsp3", + "url": "https://updates.suse.com/repo/$RCE/SLE11-Public-Cloud-Module/sle-11-s390x/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE11-Public-Cloud-Module for s390x", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles11-sp3-ltss-updates-s390x", + "parent_channel_label": "sles11-sp3-pool-s390x", + "product_id": 693, + "repository_id": 1965, + "parent_product_id": null, + "root_product_id": 693, + "update_tag": "slessp3", + "url": "https://updates.suse.com/repo/$RCE/SLES11-SP3-LTSS-Updates/sle-11-s390x/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLES11-SP3-LTSS-Updates for s390x", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-hae-sp3-pool-s390x", + "parent_channel_label": "sles11-sp3-pool-s390x", + "product_id": 1080, + "repository_id": 1096, + "parent_product_id": 693, + "root_product_id": 693, + "update_tag": "sleshasp3", + "url": "https://updates.suse.com/repo/$RCE/SLE11-HAE-SP3-Pool/sle-11-s390x/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE11-HAE-SP3-Pool for s390x", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-hae-sp3-updates-s390x", + "parent_channel_label": "sles11-sp3-pool-s390x", + "product_id": 1080, + "repository_id": 1097, + "parent_product_id": 693, + "root_product_id": 693, + "update_tag": "sleshasp3", + "url": "https://updates.suse.com/repo/$RCE/SLE11-HAE-SP3-Updates/sle-11-s390x/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE11-HAE-SP3-Updates for s390x", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-hae-geo-sp3-updates-s390x", + "parent_channel_label": "sles11-sp3-pool-s390x", + "product_id": 1110, + "repository_id": 1121, + "parent_product_id": 1080, + "root_product_id": 693, + "update_tag": "sleshagsp3", + "url": "https://updates.suse.com/repo/$RCE/SLE11-HAE-GEO-SP3-Updates/sle-11-s390x/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE11-HAE-GEO-SP3-Updates for s390x", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-sdk-sp1-pool-s390x-sdk-sp3", + "parent_channel_label": "sles11-sp3-pool-s390x", + "product_id": 1161, + "repository_id": 1259, + "parent_product_id": 693, + "root_product_id": 693, + "update_tag": "sdksp1", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-s390x/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SDK-SP1-Pool for s390x SDK-SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-sdk-sp1-updates-s390x-sdk-sp3", + "parent_channel_label": "sles11-sp3-pool-s390x", + "product_id": 1161, + "repository_id": 1266, + "parent_product_id": 693, + "root_product_id": 693, + "update_tag": "sdksp1", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Updates/sle-11-s390x/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SDK-SP1-Updates for s390x SDK-SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-sdk-sp2-core-s390x-sdk-sp3", + "parent_channel_label": "sles11-sp3-pool-s390x", + "product_id": 1161, + "repository_id": 1268, + "parent_product_id": 693, + "root_product_id": 693, + "update_tag": "sdksp2", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-s390x/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SDK-SP2-Core for s390x SDK-SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-sdk-sp2-updates-s390x-sdk-sp3", + "parent_channel_label": "sles11-sp3-pool-s390x", + "product_id": 1161, + "repository_id": 1269, + "parent_product_id": 693, + "root_product_id": 693, + "update_tag": "sdksp2", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-s390x/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SDK-SP2-Updates for s390x SDK-SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-sdk-sp3-updates-s390x", + "parent_channel_label": "sles11-sp3-pool-s390x", + "product_id": 1161, + "repository_id": 1282, + "parent_product_id": 693, + "root_product_id": 693, + "update_tag": "sdksp3", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Updates/sle-11-s390x/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SDK-SP3-Updates for s390x", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-sdk-sp3-pool-s390x", + "parent_channel_label": "sles11-sp3-pool-s390x", + "product_id": 1161, + "repository_id": 1286, + "parent_product_id": 693, + "root_product_id": 693, + "update_tag": "sdksp3", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Pool/sle-11-s390x/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SDK-SP3-Pool for s390x", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-smt-sp3-updates-s390x", + "parent_channel_label": "sles11-sp3-pool-s390x", + "product_id": 1198, + "repository_id": 1407, + "parent_product_id": 693, + "root_product_id": 693, + "update_tag": "slesmtsp3", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SMT-SP3-Updates/sle-11-s390x/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SMT-SP3-Updates for s390x", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-smt-sp3-pool-s390x", + "parent_channel_label": "sles11-sp3-pool-s390x", + "product_id": 1198, + "repository_id": 1408, + "parent_product_id": 693, + "root_product_id": 693, + "update_tag": "slesmtsp3", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SMT-SP3-Pool/sle-11-s390x/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SMT-SP3-Pool for s390x", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-sp2-webyast-1.3-pool-s390x-sp3", + "parent_channel_label": "sles11-sp3-pool-s390x", + "product_id": 1206, + "repository_id": 1411, + "parent_product_id": 693, + "root_product_id": 693, + "update_tag": "slewyst13", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SP2-WebYaST-1.3-Pool/sle-11-s390x/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SP2-WebYaST-1.3-Pool for s390x SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-sp2-webyast-1.3-updates-s390x-sp3", + "parent_channel_label": "sles11-sp3-pool-s390x", + "product_id": 1206, + "repository_id": 1412, + "parent_product_id": 693, + "root_product_id": 693, + "update_tag": "slewyst13", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SP2-WebYaST-1.3-Updates/sle-11-s390x/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SP2-WebYaST-1.3-Updates for s390x SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles10-sp4-pool-ppc", + "parent_channel_label": null, + "product_id": 711, + "repository_id": 700, + "parent_product_id": null, + "root_product_id": 711, + "update_tag": "slesp4", + "url": "https://updates.suse.com/repo/$RCE/SLES10-SP4-Pool/sles-10-ppc/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLES10-SP4-Pool for ppc", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2" + ] + }, + { + "channel_label": "sles10-sp4-updates-ppc", + "parent_channel_label": "sles10-sp4-pool-ppc", + "product_id": 711, + "repository_id": 702, + "parent_product_id": null, + "root_product_id": 711, + "update_tag": "slesp4", + "url": "https://updates.suse.com/repo/$RCE/SLES10-SP4-Updates/sles-10-ppc/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLES10-SP4-Updates for ppc", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2" + ] + }, + { + "channel_label": "sles10-sp4-gplv3-extras-ppc", + "parent_channel_label": "sles10-sp4-pool-ppc", + "product_id": 711, + "repository_id": 704, + "parent_product_id": null, + "root_product_id": 711, + "update_tag": "slemp3", + "url": "https://updates.suse.com/repo/$RCE/SLES10-GPLv3-Extras/sles-10-ppc/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLES10-SP4-GPLv3-Extras for ppc", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2" + ] + }, + { + "channel_label": "sle10-sp4-suse-manager-tools-ppc", + "parent_channel_label": "sles10-sp4-pool-ppc", + "product_id": 711, + "repository_id": 978, + "parent_product_id": null, + "root_product_id": 711, + "update_tag": "smcl3", + "url": "https://updates.suse.com/repo/$RCE/SLE10-SUSE-Manager-Tools/sles-10-ppc/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE10-SP4 SUSE-Manager-Tools ppc", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2" + ] + }, + { + "channel_label": "sle10-sdk-sp4-pool-ppc", + "parent_channel_label": "sles10-sp4-pool-ppc", + "product_id": 1181, + "repository_id": 1344, + "parent_product_id": 711, + "root_product_id": 711, + "update_tag": "sdkp4", + "url": "https://updates.suse.com/repo/$RCE/SLE10-SDK-SP4-Pool/sles-10-ppc/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE10-SDK-SP4-Pool for ppc", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2" + ] + }, + { + "channel_label": "sle10-sdk-sp4-updates-ppc", + "parent_channel_label": "sles10-sp4-pool-ppc", + "product_id": 1181, + "repository_id": 1352, + "parent_product_id": 711, + "root_product_id": 711, + "update_tag": "sdkp4", + "url": "https://updates.suse.com/repo/$RCE/SLE10-SDK-SP4-Updates/sles-10-ppc/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE10-SDK-SP4-Updates for ppc", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2" + ] + }, + { + "channel_label": "sles10-sp3-ltss-updates-x86_64", + "parent_channel_label": "sles10-sp3-pool-x86_64", + "product_id": 721, + "repository_id": 753, + "parent_product_id": null, + "root_product_id": 721, + "update_tag": "slesp3", + "url": "https://updates.suse.com/repo/$RCE/SLES10-SP3-LTSS-Updates/sles-10-x86_64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLES10-SP3-LTSS-Updates for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2" + ] + }, + { + "channel_label": "sles10-sp3-pool-x86_64", + "parent_channel_label": null, + "product_id": 721, + "repository_id": 754, + "parent_product_id": null, + "root_product_id": 721, + "update_tag": "slesp3", + "url": "https://updates.suse.com/repo/$RCE/SLES10-SP3-Pool/sles-10-x86_64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLES10-SP3-Pool for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2" + ] + }, + { + "channel_label": "sles10-sp3-updates-x86_64", + "parent_channel_label": "sles10-sp3-pool-x86_64", + "product_id": 721, + "repository_id": 757, + "parent_product_id": null, + "root_product_id": 721, + "update_tag": "slesp3", + "url": "https://updates.suse.com/repo/$RCE/SLES10-SP3-Updates/sles-10-x86_64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLES10-SP3-Updates for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2" + ] + }, + { + "channel_label": "sles10-sp3-gplv3-extras-x86_64", + "parent_channel_label": "sles10-sp3-pool-x86_64", + "product_id": 721, + "repository_id": 768, + "parent_product_id": null, + "root_product_id": 721, + "update_tag": "slemp3", + "url": "https://updates.suse.com/repo/$RCE/SLES10-GPLv3-Extras/sles-10-x86_64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLES10-SP3-GPLv3-Extras for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2" + ] + }, + { + "channel_label": "sle10-sp3-suse-manager-tools-x86_64", + "parent_channel_label": "sles10-sp3-pool-x86_64", + "product_id": 721, + "repository_id": 993, + "parent_product_id": null, + "root_product_id": 721, + "update_tag": "smcl3", + "url": "https://updates.suse.com/repo/$RCE/SLE10-SUSE-Manager-Tools/sles-10-x86_64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE10-SP3 SUSE-Manager-Tools x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2" + ] + }, + { + "channel_label": "sle10-sdk-sp3-pool-x86_64", + "parent_channel_label": "sles10-sp3-pool-x86_64", + "product_id": 1179, + "repository_id": 1323, + "parent_product_id": 721, + "root_product_id": 721, + "update_tag": "sdkp3", + "url": "https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Pool/sles-10-x86_64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE10-SDK-SP3-Pool for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2" + ] + }, + { + "channel_label": "sle10-sdk-sp3-updates-x86_64", + "parent_channel_label": "sles10-sp3-pool-x86_64", + "product_id": 1179, + "repository_id": 1332, + "parent_product_id": 721, + "root_product_id": 721, + "update_tag": "sdkp3", + "url": "https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Updates/sles-10-x86_64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE10-SDK-SP3-Updates for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2" + ] + }, + { + "channel_label": "sles10-sp3-gplv3-extras-ia64", + "parent_channel_label": "sles10-sp3-pool-ia64", + "product_id": 740, + "repository_id": 784, + "parent_product_id": null, + "root_product_id": 740, + "update_tag": "slemp3", + "url": "https://updates.suse.com/repo/$RCE/SLES10-GPLv3-Extras/sles-10-ia64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLES10-SP3-GPLv3-Extras for ia64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2" + ] + }, + { + "channel_label": "sles10-sp3-updates-ia64", + "parent_channel_label": "sles10-sp3-pool-ia64", + "product_id": 740, + "repository_id": 786, + "parent_product_id": null, + "root_product_id": 740, + "update_tag": "slesp3", + "url": "https://updates.suse.com/repo/$RCE/SLES10-SP3-Updates/sles-10-ia64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLES10-SP3-Updates for ia64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2" + ] + }, + { + "channel_label": "sles10-sp3-pool-ia64", + "parent_channel_label": null, + "product_id": 740, + "repository_id": 787, + "parent_product_id": null, + "root_product_id": 740, + "update_tag": "slesp3", + "url": "https://updates.suse.com/repo/$RCE/SLES10-SP3-Pool/sles-10-ia64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLES10-SP3-Pool for ia64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2" + ] + }, + { + "channel_label": "sle10-sp3-suse-manager-tools-ia64", + "parent_channel_label": "sles10-sp3-pool-ia64", + "product_id": 740, + "repository_id": 988, + "parent_product_id": null, + "root_product_id": 740, + "update_tag": "smcl3", + "url": "https://updates.suse.com/repo/$RCE/SLE10-SUSE-Manager-Tools/sles-10-ia64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE10-SP3 SUSE-Manager-Tools ia64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2" + ] + }, + { + "channel_label": "sle10-sdk-sp3-updates-ia64", + "parent_channel_label": "sles10-sp3-pool-ia64", + "product_id": 1179, + "repository_id": 1329, + "parent_product_id": 740, + "root_product_id": 740, + "update_tag": "sdkp3", + "url": "https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Updates/sles-10-ia64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE10-SDK-SP3-Updates for ia64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2" + ] + }, + { + "channel_label": "sle10-sdk-sp3-pool-ia64", + "parent_channel_label": "sles10-sp3-pool-ia64", + "product_id": 1179, + "repository_id": 1331, + "parent_product_id": 740, + "root_product_id": 740, + "update_tag": "sdkp3", + "url": "https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Pool/sles-10-ia64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE10-SDK-SP3-Pool for ia64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2" + ] + }, + { + "channel_label": "sles11-sp1-pool-s390x", + "parent_channel_label": null, + "product_id": 745, + "repository_id": 687, + "parent_product_id": null, + "root_product_id": 745, + "update_tag": "slessp1", + "url": "https://updates.suse.com/repo/$RCE/SLES11-SP1-Pool/sle-11-s390x/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLES11-SP1-Pool for s390x", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-sp1-debuginfo-updates-s390x", + "parent_channel_label": "sles11-sp1-pool-s390x", + "product_id": 745, + "repository_id": 688, + "parent_product_id": null, + "root_product_id": 745, + "update_tag": "dbgsp1", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Updates/sle-11-s390x/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SP1-Debuginfo-Updates for s390x", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles11-extras-s390x", + "parent_channel_label": "sles11-sp1-pool-s390x", + "product_id": 745, + "repository_id": 689, + "parent_product_id": null, + "root_product_id": 745, + "update_tag": null, + "url": "https://updates.suse.com/repo/$RCE/SLES11-Extras/sle-11-s390x/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLES11-Extras for s390x", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-webyast-sp1-updates-s390x", + "parent_channel_label": "sles11-sp1-pool-s390x", + "product_id": 745, + "repository_id": 690, + "parent_product_id": null, + "root_product_id": 745, + "update_tag": "slewystsp1", + "url": "https://updates.suse.com/repo/$RCE/SLE11-WebYaST-SP1-Updates/sle-11-s390x/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE11-WebYaST-SP1-Updates for s390x", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles11-sp1-updates-s390x", + "parent_channel_label": "sles11-sp1-pool-s390x", + "product_id": 745, + "repository_id": 691, + "parent_product_id": null, + "root_product_id": 745, + "update_tag": "slessp1", + "url": "https://updates.suse.com/repo/$RCE/SLES11-SP1-Updates/sle-11-s390x/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLES11-SP1-Updates for s390x", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-sp1-debuginfo-pool-s390x", + "parent_channel_label": "sles11-sp1-pool-s390x", + "product_id": 745, + "repository_id": 692, + "parent_product_id": null, + "root_product_id": 745, + "update_tag": "dbgsp1", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Pool/sle-11-s390x/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SP1-Debuginfo-Pool for s390x", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-webyast-sp1-pool-s390x", + "parent_channel_label": "sles11-sp1-pool-s390x", + "product_id": 745, + "repository_id": 693, + "parent_product_id": null, + "root_product_id": 745, + "update_tag": "slewystsp1", + "url": "https://updates.suse.com/repo/$RCE/SLE11-WebYaST-SP1-Pool/sle-11-s390x/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE11-WebYaST-SP1-Pool for s390x", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles11-sp1-ltss-updates-s390x", + "parent_channel_label": "sles11-sp1-pool-s390x", + "product_id": 745, + "repository_id": 790, + "parent_product_id": null, + "root_product_id": 745, + "update_tag": "slessp1", + "url": "https://updates.suse.com/repo/$RCE/SLES11-SP1-LTSS-Updates/sle-11-s390x/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLES11-SP1-LTSS-Updates for s390x", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles11-sp1-suse-manager-tools-s390x", + "parent_channel_label": "sles11-sp1-pool-s390x", + "product_id": 745, + "repository_id": 982, + "parent_product_id": null, + "root_product_id": 745, + "update_tag": "slesctsp1", + "url": "https://updates.suse.com/repo/$RCE/SLES11-SP1-SUSE-Manager-Tools/sle-11-s390x/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLES11-SP1-SUSE-Manager-Tools s390x", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle11-hae-sp1-pool-s390x", + "parent_channel_label": "sles11-sp1-pool-s390x", + "product_id": 1084, + "repository_id": 1094, + "parent_product_id": 745, + "root_product_id": 745, + "update_tag": "sleshasp1", + "url": "https://updates.suse.com/repo/$RCE/SLE11-HAE-SP1-Pool/sle-11-s390x/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE11-HAE-SP1-Pool for s390x", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-hae-sp1-updates-s390x", + "parent_channel_label": "sles11-sp1-pool-s390x", + "product_id": 1084, + "repository_id": 1095, + "parent_product_id": 745, + "root_product_id": 745, + "update_tag": "sleshasp1", + "url": "https://updates.suse.com/repo/$RCE/SLE11-HAE-SP1-Updates/sle-11-s390x/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE11-HAE-SP1-Updates for s390x", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-sdk-sp1-pool-s390x", + "parent_channel_label": "sles11-sp1-pool-s390x", + "product_id": 1159, + "repository_id": 1259, + "parent_product_id": 745, + "root_product_id": 745, + "update_tag": "sdksp1", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-s390x/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SDK-SP1-Pool for s390x", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-sdk-sp1-updates-s390x", + "parent_channel_label": "sles11-sp1-pool-s390x", + "product_id": 1159, + "repository_id": 1266, + "parent_product_id": 745, + "root_product_id": 745, + "update_tag": "sdksp1", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Updates/sle-11-s390x/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SDK-SP1-Updates for s390x", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles10-sp4-gplv3-extras-i586", + "parent_channel_label": "sles10-sp4-pool-i586", + "product_id": 752, + "repository_id": 665, + "parent_product_id": null, + "root_product_id": 752, + "update_tag": "slemp3", + "url": "https://updates.suse.com/repo/$RCE/SLES10-GPLv3-Extras/sles-10-i586/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLES10-SP4-GPLv3-Extras for i586", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2" + ] + }, + { + "channel_label": "sles10-sp4-pool-i586", + "parent_channel_label": null, + "product_id": 752, + "repository_id": 695, + "parent_product_id": null, + "root_product_id": 752, + "update_tag": "slesp4", + "url": "https://updates.suse.com/repo/$RCE/SLES10-SP4-Pool/sles-10-i586/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLES10-SP4-Pool for i586", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2" + ] + }, + { + "channel_label": "sles10-sp4-ltss-updates-i586", + "parent_channel_label": "sles10-sp4-pool-i586", + "product_id": 752, + "repository_id": 697, + "parent_product_id": null, + "root_product_id": 752, + "update_tag": "slesp4", + "url": "https://updates.suse.com/repo/$RCE/SLES10-SP4-LTSS-Updates/sles-10-i586/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLES10-SP4-LTSS-Updates for i586", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2" + ] + }, + { + "channel_label": "sles10-sp4-updates-i586", + "parent_channel_label": "sles10-sp4-pool-i586", + "product_id": 752, + "repository_id": 699, + "parent_product_id": null, + "root_product_id": 752, + "update_tag": "slesp4", + "url": "https://updates.suse.com/repo/$RCE/SLES10-SP4-Updates/sles-10-i586/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLES10-SP4-Updates for i586", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2" + ] + }, + { + "channel_label": "sle10-sp4-suse-manager-tools-i586", + "parent_channel_label": "sles10-sp4-pool-i586", + "product_id": 752, + "repository_id": 1827, + "parent_product_id": null, + "root_product_id": 752, + "update_tag": "smcl3", + "url": "https://updates.suse.com/repo/$RCE/SLE10-SUSE-Manager-Tools/sles-10-i586/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE10-SP4 SUSE-Manager-Tools i586", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2" + ] + }, + { + "channel_label": "sle10-sdk-sp4-pool-i586", + "parent_channel_label": "sles10-sp4-pool-i586", + "product_id": 1181, + "repository_id": 1345, + "parent_product_id": 752, + "root_product_id": 752, + "update_tag": "sdkp4", + "url": "https://updates.suse.com/repo/$RCE/SLE10-SDK-SP4-Pool/sles-10-i586/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE10-SDK-SP4-Pool for i586", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2" + ] + }, + { + "channel_label": "sle10-sdk-sp4-updates-i586", + "parent_channel_label": "sles10-sp4-pool-i586", + "product_id": 1181, + "repository_id": 1353, + "parent_product_id": 752, + "root_product_id": 752, + "update_tag": "sdkp4", + "url": "https://updates.suse.com/repo/$RCE/SLE10-SDK-SP4-Updates/sles-10-i586/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE10-SDK-SP4-Updates for i586", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2" + ] + }, + { + "channel_label": "sles11-sp1-pool-s390x", + "parent_channel_label": null, + "product_id": 755, + "repository_id": 687, + "parent_product_id": null, + "root_product_id": 755, + "update_tag": "slessp1", + "url": "https://updates.suse.com/repo/$RCE/SLES11-SP1-Pool/sle-11-s390x/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLES11-SP1-Pool for s390x", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-sp1-debuginfo-updates-s390x", + "parent_channel_label": "sles11-sp1-pool-s390x", + "product_id": 755, + "repository_id": 688, + "parent_product_id": null, + "root_product_id": 755, + "update_tag": "dbgsp1", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Updates/sle-11-s390x/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SP1-Debuginfo-Updates for s390x", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles11-extras-s390x", + "parent_channel_label": "sles11-sp1-pool-s390x", + "product_id": 755, + "repository_id": 689, + "parent_product_id": null, + "root_product_id": 755, + "update_tag": null, + "url": "https://updates.suse.com/repo/$RCE/SLES11-Extras/sle-11-s390x/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLES11-Extras for s390x", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles11-sp1-updates-s390x", + "parent_channel_label": "sles11-sp1-pool-s390x", + "product_id": 755, + "repository_id": 691, + "parent_product_id": null, + "root_product_id": 755, + "update_tag": "slessp1", + "url": "https://updates.suse.com/repo/$RCE/SLES11-SP1-Updates/sle-11-s390x/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLES11-SP1-Updates for s390x", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-sp1-debuginfo-pool-s390x", + "parent_channel_label": "sles11-sp1-pool-s390x", + "product_id": 755, + "repository_id": 692, + "parent_product_id": null, + "root_product_id": 755, + "update_tag": "dbgsp1", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Pool/sle-11-s390x/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SP1-Debuginfo-Pool for s390x", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-webyast-sp2-updates-s390x", + "parent_channel_label": "sles11-sp1-pool-s390x", + "product_id": 755, + "repository_id": 723, + "parent_product_id": null, + "root_product_id": 755, + "update_tag": "slewystsp1", + "url": "https://updates.suse.com/repo/$RCE/SLE11-WebYaST-SP2-Updates/sle-11-s390x/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE11-WebYaST-SP2-Updates for s390x", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles11-sp2-updates-s390x", + "parent_channel_label": "sles11-sp1-pool-s390x", + "product_id": 755, + "repository_id": 724, + "parent_product_id": null, + "root_product_id": 755, + "update_tag": "slessp2", + "url": "https://updates.suse.com/repo/$RCE/SLES11-SP2-Updates/sle-11-s390x/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLES11-SP2-Updates for s390x", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-sp2-debuginfo-updates-s390x", + "parent_channel_label": "sles11-sp1-pool-s390x", + "product_id": 755, + "repository_id": 725, + "parent_product_id": null, + "root_product_id": 755, + "update_tag": "dbgsp2", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SP2-Debuginfo-Updates/sle-11-s390x/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SP2-Debuginfo-Updates for s390x", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles11-sp2-core-s390x", + "parent_channel_label": "sles11-sp1-pool-s390x", + "product_id": 755, + "repository_id": 726, + "parent_product_id": null, + "root_product_id": 755, + "update_tag": "slessp2", + "url": "https://updates.suse.com/repo/$RCE/SLES11-SP2-Core/sle-11-s390x/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLES11-SP2-Core for s390x", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-webyast-sp2-pool-s390x", + "parent_channel_label": "sles11-sp1-pool-s390x", + "product_id": 755, + "repository_id": 727, + "parent_product_id": null, + "root_product_id": 755, + "update_tag": "slewystsp1", + "url": "https://updates.suse.com/repo/$RCE/SLE11-WebYaST-SP2-Pool/sle-11-s390x/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE11-WebYaST-SP2-Pool for s390x", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-sp2-debuginfo-core-s390x", + "parent_channel_label": "sles11-sp1-pool-s390x", + "product_id": 755, + "repository_id": 728, + "parent_product_id": null, + "root_product_id": 755, + "update_tag": "dbgsp2", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SP2-Debuginfo-Core/sle-11-s390x/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SP2-Debuginfo-Core for s390x", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles11-sp2-extension-store-s390x", + "parent_channel_label": "sles11-sp1-pool-s390x", + "product_id": 755, + "repository_id": 734, + "parent_product_id": null, + "root_product_id": 755, + "update_tag": "slessp2", + "url": "https://updates.suse.com/repo/$RCE/SLES11-SP2-Extension-Store/sle-11-s390x/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLES11-SP2-Extension-Store for s390x", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles11-sp2-ltss-updates-s390x", + "parent_channel_label": "sles11-sp1-pool-s390x", + "product_id": 755, + "repository_id": 1165, + "parent_product_id": null, + "root_product_id": 755, + "update_tag": "slessp2", + "url": "https://updates.suse.com/repo/$RCE/SLES11-SP2-LTSS-Updates/sle-11-s390x/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLES11-SP2-LTSS-Updates for s390x", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles11-sp2-suse-manager-tools-s390x", + "parent_channel_label": "sles11-sp1-pool-s390x", + "product_id": 755, + "repository_id": 1570, + "parent_product_id": null, + "root_product_id": 755, + "update_tag": "slesctsp2", + "url": "https://updates.suse.com/repo/$RCE/SLES11-SP2-SUSE-Manager-Tools/sle-11-s390x/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLES11-SP2-SUSE-Manager-Tools s390x", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle11-hae-sp2-pool-s390x", + "parent_channel_label": "sles11-sp1-pool-s390x", + "product_id": 1082, + "repository_id": 1098, + "parent_product_id": 755, + "root_product_id": 755, + "update_tag": "sleshasp2", + "url": "https://updates.suse.com/repo/$RCE/SLE11-HAE-SP2-Pool/sle-11-s390x/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE11-HAE-SP2-Pool for s390x", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-hae-sp2-updates-s390x", + "parent_channel_label": "sles11-sp1-pool-s390x", + "product_id": 1082, + "repository_id": 1099, + "parent_product_id": 755, + "root_product_id": 755, + "update_tag": "sleshasp2", + "url": "https://updates.suse.com/repo/$RCE/SLE11-HAE-SP2-Updates/sle-11-s390x/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE11-HAE-SP2-Updates for s390x", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-sdk-sp1-pool-s390x", + "parent_channel_label": "sles11-sp1-pool-s390x", + "product_id": 1160, + "repository_id": 1259, + "parent_product_id": 755, + "root_product_id": 755, + "update_tag": "sdksp1", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-s390x/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SDK-SP1-Pool for s390x", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-sdk-sp1-updates-s390x", + "parent_channel_label": "sles11-sp1-pool-s390x", + "product_id": 1160, + "repository_id": 1266, + "parent_product_id": 755, + "root_product_id": 755, + "update_tag": "sdksp1", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Updates/sle-11-s390x/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SDK-SP1-Updates for s390x", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-sdk-sp2-core-s390x", + "parent_channel_label": "sles11-sp1-pool-s390x", + "product_id": 1160, + "repository_id": 1268, + "parent_product_id": 755, + "root_product_id": 755, + "update_tag": "sdksp2", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-s390x/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SDK-SP2-Core for s390x", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-sdk-sp2-updates-s390x", + "parent_channel_label": "sles11-sp1-pool-s390x", + "product_id": 1160, + "repository_id": 1269, + "parent_product_id": 755, + "root_product_id": 755, + "update_tag": "sdksp2", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-s390x/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SDK-SP2-Updates for s390x", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-smt-sp2-updates-s390x", + "parent_channel_label": "sles11-sp1-pool-s390x", + "product_id": 1193, + "repository_id": 1393, + "parent_product_id": 755, + "root_product_id": 755, + "update_tag": "slesmtsp0", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SMT-SP2-Updates/sle-11-s390x/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SMT-SP2-Updates for s390x", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-smt-sp2-pool-s390x", + "parent_channel_label": "sles11-sp1-pool-s390x", + "product_id": 1193, + "repository_id": 1396, + "parent_product_id": 755, + "root_product_id": 755, + "update_tag": "slesmtsp0", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SMT-SP2-Pool/sle-11-s390x/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SMT-SP2-Pool for s390x", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-sp2-webyast-1.3-pool-s390x", + "parent_channel_label": "sles11-sp1-pool-s390x", + "product_id": 1206, + "repository_id": 1411, + "parent_product_id": 755, + "root_product_id": 755, + "update_tag": "slewyst13", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SP2-WebYaST-1.3-Pool/sle-11-s390x/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SP2-WebYaST-1.3-Pool for s390x", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-sp2-webyast-1.3-updates-s390x", + "parent_channel_label": "sles11-sp1-pool-s390x", + "product_id": 1206, + "repository_id": 1412, + "parent_product_id": 755, + "root_product_id": 755, + "update_tag": "slewyst13", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SP2-WebYaST-1.3-Updates/sle-11-s390x/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SP2-WebYaST-1.3-Updates for s390x", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles11-sp1-updates-x86_64", + "parent_channel_label": "sles11-sp1-pool-x86_64", + "product_id": 769, + "repository_id": 705, + "parent_product_id": null, + "root_product_id": 769, + "update_tag": "slessp1", + "url": "https://updates.suse.com/repo/$RCE/SLES11-SP1-Updates/sle-11-x86_64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLES11-SP1-Updates for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-sp1-debuginfo-pool-x86_64", + "parent_channel_label": "sles11-sp1-pool-x86_64", + "product_id": 769, + "repository_id": 707, + "parent_product_id": null, + "root_product_id": 769, + "update_tag": "dbgsp1", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Pool/sle-11-x86_64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SP1-Debuginfo-Pool for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles11-extras-x86_64", + "parent_channel_label": "sles11-sp1-pool-x86_64", + "product_id": 769, + "repository_id": 710, + "parent_product_id": null, + "root_product_id": 769, + "update_tag": null, + "url": "https://updates.suse.com/repo/$RCE/SLES11-Extras/sle-11-x86_64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLES11-Extras for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles11-sp1-pool-x86_64", + "parent_channel_label": null, + "product_id": 769, + "repository_id": 711, + "parent_product_id": null, + "root_product_id": 769, + "update_tag": "slessp1", + "url": "https://updates.suse.com/repo/$RCE/SLES11-SP1-Pool/sle-11-x86_64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLES11-SP1-Pool for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-sp1-debuginfo-updates-x86_64", + "parent_channel_label": "sles11-sp1-pool-x86_64", + "product_id": 769, + "repository_id": 715, + "parent_product_id": null, + "root_product_id": 769, + "update_tag": "dbgsp1", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Updates/sle-11-x86_64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SP1-Debuginfo-Updates for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles11-sp1-ltss-updates-x86_64", + "parent_channel_label": "sles11-sp1-pool-x86_64", + "product_id": 769, + "repository_id": 796, + "parent_product_id": null, + "root_product_id": 769, + "update_tag": "slessp1", + "url": "https://updates.suse.com/repo/$RCE/SLES11-SP1-LTSS-Updates/sle-11-x86_64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLES11-SP1-LTSS-Updates for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-webyast-sp1-updates-x86_64", + "parent_channel_label": "sles11-sp1-pool-x86_64", + "product_id": 769, + "repository_id": 797, + "parent_product_id": null, + "root_product_id": 769, + "update_tag": "slewystsp1", + "url": "https://updates.suse.com/repo/$RCE/SLE11-WebYaST-SP1-Updates/sle-11-x86_64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE11-WebYaST-SP1-Updates for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-webyast-sp1-pool-x86_64", + "parent_channel_label": "sles11-sp1-pool-x86_64", + "product_id": 769, + "repository_id": 798, + "parent_product_id": null, + "root_product_id": 769, + "update_tag": "slewystsp1", + "url": "https://updates.suse.com/repo/$RCE/SLE11-WebYaST-SP1-Pool/sle-11-x86_64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE11-WebYaST-SP1-Pool for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles11-sp1-suse-manager-tools-x86_64", + "parent_channel_label": "sles11-sp1-pool-x86_64", + "product_id": 769, + "repository_id": 985, + "parent_product_id": null, + "root_product_id": 769, + "update_tag": "slesctsp1", + "url": "https://updates.suse.com/repo/$RCE/SLES11-SP1-SUSE-Manager-Tools/sle-11-x86_64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLES11-SP1-SUSE-Manager-Tools x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle11-hae-sp1-pool-x86_64", + "parent_channel_label": "sles11-sp1-pool-x86_64", + "product_id": 967, + "repository_id": 946, + "parent_product_id": 769, + "root_product_id": 769, + "update_tag": "sleshasp1", + "url": "https://updates.suse.com/repo/$RCE/SLE11-HAE-SP1-Pool/sle-11-x86_64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE11-HAE-SP1-Pool for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-hae-sp1-updates-x86_64", + "parent_channel_label": "sles11-sp1-pool-x86_64", + "product_id": 967, + "repository_id": 953, + "parent_product_id": 769, + "root_product_id": 769, + "update_tag": "sleshasp1", + "url": "https://updates.suse.com/repo/$RCE/SLE11-HAE-SP1-Updates/sle-11-x86_64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE11-HAE-SP1-Updates for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "slert11-sp1-updates-x86_64", + "parent_channel_label": "sles11-sp1-pool-x86_64", + "product_id": 1051, + "repository_id": 1049, + "parent_product_id": 769, + "root_product_id": 769, + "update_tag": "slertesp1", + "url": "https://updates.suse.com/repo/$RCE/SLERT11-SP1-Updates/sle-11-x86_64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLERT11-SP1-Updates for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "slert11-sp1-pool-x86_64", + "parent_channel_label": "sles11-sp1-pool-x86_64", + "product_id": 1051, + "repository_id": 1050, + "parent_product_id": 769, + "root_product_id": 769, + "update_tag": "slertesp1", + "url": "https://updates.suse.com/repo/$RCE/SLERT11-SP1-Pool/sle-11-x86_64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLERT11-SP1-Pool for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-pos-sp1-pool-x86_64", + "parent_channel_label": "sles11-sp1-pool-x86_64", + "product_id": 1072, + "repository_id": 1071, + "parent_product_id": 769, + "root_product_id": 769, + "update_tag": "sleposp1", + "url": "https://updates.suse.com/repo/$RCE/SLE11-POS-SP1-Pool/sle-11-x86_64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE11-POS-SP1-Pool for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-pos-sp1-updates-x86_64", + "parent_channel_label": "sles11-sp1-pool-x86_64", + "product_id": 1072, + "repository_id": 1082, + "parent_product_id": 769, + "root_product_id": 769, + "update_tag": "sleposp1", + "url": "https://updates.suse.com/repo/$RCE/SLE11-POS-SP1-Updates/sle-11-x86_64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE11-POS-SP1-Updates for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-sdk-sp1-pool-x86_64", + "parent_channel_label": "sles11-sp1-pool-x86_64", + "product_id": 1159, + "repository_id": 1264, + "parent_product_id": 769, + "root_product_id": 769, + "update_tag": "sdksp1", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-x86_64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SDK-SP1-Pool for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-sdk-sp1-updates-x86_64", + "parent_channel_label": "sles11-sp1-pool-x86_64", + "product_id": 1159, + "repository_id": 1265, + "parent_product_id": 769, + "root_product_id": 769, + "update_tag": "sdksp1", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Updates/sle-11-x86_64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SDK-SP1-Updates for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-smt-updates-x86_64", + "parent_channel_label": "sles11-sp1-pool-x86_64", + "product_id": 1196, + "repository_id": 1401, + "parent_product_id": 769, + "root_product_id": 769, + "update_tag": "slesmtsp0", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SMT-Updates/sle-11-x86_64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SMT-Updates for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "oes11-updates-x86_64", + "parent_channel_label": "sles11-sp1-pool-x86_64", + "product_id": 1232, + "repository_id": -2, + "parent_product_id": 769, + "root_product_id": 769, + "update_tag": "oes11", + "url": "https://nu.novell.com/repo/$RCE/OES11-Updates/sle-11-x86_64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "OES11-Updates for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "oes11-pool-x86_64", + "parent_channel_label": "sles11-sp1-pool-x86_64", + "product_id": 1232, + "repository_id": -1, + "parent_product_id": 769, + "root_product_id": 769, + "update_tag": "oes11", + "url": "https://nu.novell.com/repo/$RCE/OES11-Pool/sle-11-x86_64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "OES11-Pool for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles10-sp4-gplv3-extras-ia64", + "parent_channel_label": "sles10-sp4-pool-ia64", + "product_id": 770, + "repository_id": 784, + "parent_product_id": null, + "root_product_id": 770, + "update_tag": "slemp3", + "url": "https://updates.suse.com/repo/$RCE/SLES10-GPLv3-Extras/sles-10-ia64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLES10-SP4-GPLv3-Extras for ia64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2" + ] + }, + { + "channel_label": "sles10-sp4-pool-ia64", + "parent_channel_label": null, + "product_id": 770, + "repository_id": 799, + "parent_product_id": null, + "root_product_id": 770, + "update_tag": "slesp4", + "url": "https://updates.suse.com/repo/$RCE/SLES10-SP4-Pool/sles-10-ia64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLES10-SP4-Pool for ia64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2" + ] + }, + { + "channel_label": "sles10-sp4-updates-ia64", + "parent_channel_label": "sles10-sp4-pool-ia64", + "product_id": 770, + "repository_id": 800, + "parent_product_id": null, + "root_product_id": 770, + "update_tag": "slesp4", + "url": "https://updates.suse.com/repo/$RCE/SLES10-SP4-Updates/sles-10-ia64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLES10-SP4-Updates for ia64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2" + ] + }, + { + "channel_label": "sle10-sp4-suse-manager-tools-ia64", + "parent_channel_label": "sles10-sp4-pool-ia64", + "product_id": 770, + "repository_id": 988, + "parent_product_id": null, + "root_product_id": 770, + "update_tag": "smcl3", + "url": "https://updates.suse.com/repo/$RCE/SLE10-SUSE-Manager-Tools/sles-10-ia64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE10-SP4 SUSE-Manager-Tools ia64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2" + ] + }, + { + "channel_label": "sle10-sdk-sp4-updates-ia64", + "parent_channel_label": "sles10-sp4-pool-ia64", + "product_id": 1181, + "repository_id": 1354, + "parent_product_id": 770, + "root_product_id": 770, + "update_tag": "sdkp4", + "url": "https://updates.suse.com/repo/$RCE/SLE10-SDK-SP4-Updates/sles-10-ia64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE10-SDK-SP4-Updates for ia64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2" + ] + }, + { + "channel_label": "sle10-sdk-sp4-pool-ia64", + "parent_channel_label": "sles10-sp4-pool-ia64", + "product_id": 1181, + "repository_id": 1356, + "parent_product_id": 770, + "root_product_id": 770, + "update_tag": "sdkp4", + "url": "https://updates.suse.com/repo/$RCE/SLE10-SDK-SP4-Pool/sles-10-ia64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE10-SDK-SP4-Pool for ia64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2" + ] + }, + { + "channel_label": "sles10-sp4-gplv3-extras-s390x", + "parent_channel_label": "sles10-sp4-pool-s390x", + "product_id": 771, + "repository_id": 678, + "parent_product_id": null, + "root_product_id": 771, + "update_tag": "slemp3", + "url": "https://updates.suse.com/repo/$RCE/SLES10-GPLv3-Extras/sles-10-s390x/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLES10-SP4-GPLv3-Extras for s390x", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2" + ] + }, + { + "channel_label": "sles10-sp4-pool-s390x", + "parent_channel_label": null, + "product_id": 771, + "repository_id": 770, + "parent_product_id": null, + "root_product_id": 771, + "update_tag": "slesp4", + "url": "https://updates.suse.com/repo/$RCE/SLES10-SP4-Pool/sles-10-s390x/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLES10-SP4-Pool for s390x", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2" + ] + }, + { + "channel_label": "sles10-sp4-updates-s390x", + "parent_channel_label": "sles10-sp4-pool-s390x", + "product_id": 771, + "repository_id": 772, + "parent_product_id": null, + "root_product_id": 771, + "update_tag": "slesp4", + "url": "https://updates.suse.com/repo/$RCE/SLES10-SP4-Updates/sles-10-s390x/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLES10-SP4-Updates for s390x", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2" + ] + }, + { + "channel_label": "sles10-sp4-ltss-updates-s390x", + "parent_channel_label": "sles10-sp4-pool-s390x", + "product_id": 771, + "repository_id": 803, + "parent_product_id": null, + "root_product_id": 771, + "update_tag": "slesp4", + "url": "https://updates.suse.com/repo/$RCE/SLES10-SP4-LTSS-Updates/sles-10-s390x/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLES10-SP4-LTSS-Updates for s390x", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2" + ] + }, + { + "channel_label": "sle10-sp4-suse-manager-tools-s390x", + "parent_channel_label": "sles10-sp4-pool-s390x", + "product_id": 771, + "repository_id": 992, + "parent_product_id": null, + "root_product_id": 771, + "update_tag": "smcl3", + "url": "https://updates.suse.com/repo/$RCE/SLE10-SUSE-Manager-Tools/sles-10-s390x/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE10-SP4 SUSE-Manager-Tools s390x", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2" + ] + }, + { + "channel_label": "sle10-sdk-sp4-pool-s390x", + "parent_channel_label": "sles10-sp4-pool-s390x", + "product_id": 1181, + "repository_id": 1348, + "parent_product_id": 771, + "root_product_id": 771, + "update_tag": "sdkp4", + "url": "https://updates.suse.com/repo/$RCE/SLE10-SDK-SP4-Pool/sles-10-s390x/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE10-SDK-SP4-Pool for s390x", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2" + ] + }, + { + "channel_label": "sle10-sdk-sp4-updates-s390x", + "parent_channel_label": "sles10-sp4-pool-s390x", + "product_id": 1181, + "repository_id": 1350, + "parent_product_id": 771, + "root_product_id": 771, + "update_tag": "sdkp4", + "url": "https://updates.suse.com/repo/$RCE/SLE10-SDK-SP4-Updates/sles-10-s390x/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE10-SDK-SP4-Updates for s390x", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2" + ] + }, + { + "channel_label": "sles10-sp3-gplv3-extras-i586", + "parent_channel_label": "sles10-sp3-pool-i586", + "product_id": 785, + "repository_id": 665, + "parent_product_id": null, + "root_product_id": 785, + "update_tag": "slemp3", + "url": "https://updates.suse.com/repo/$RCE/SLES10-GPLv3-Extras/sles-10-i586/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLES10-SP3-GPLv3-Extras for i586", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2" + ] + }, + { + "channel_label": "sles10-sp3-ltss-updates-i586", + "parent_channel_label": "sles10-sp3-pool-i586", + "product_id": 785, + "repository_id": 666, + "parent_product_id": null, + "root_product_id": 785, + "update_tag": "slesp3", + "url": "https://updates.suse.com/repo/$RCE/SLES10-SP3-LTSS-Updates/sles-10-i586/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLES10-SP3-LTSS-Updates for i586", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2" + ] + }, + { + "channel_label": "sles10-sp3-pool-i586", + "parent_channel_label": null, + "product_id": 785, + "repository_id": 668, + "parent_product_id": null, + "root_product_id": 785, + "update_tag": "slesp3", + "url": "https://updates.suse.com/repo/$RCE/SLES10-SP3-Pool/sles-10-i586/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLES10-SP3-Pool for i586", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2" + ] + }, + { + "channel_label": "sles10-sp3-updates-i586", + "parent_channel_label": "sles10-sp3-pool-i586", + "product_id": 785, + "repository_id": 670, + "parent_product_id": null, + "root_product_id": 785, + "update_tag": "slesp3", + "url": "https://updates.suse.com/repo/$RCE/SLES10-SP3-Updates/sles-10-i586/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLES10-SP3-Updates for i586", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2" + ] + }, + { + "channel_label": "sle10-sp3-suse-manager-tools-i586", + "parent_channel_label": "sles10-sp3-pool-i586", + "product_id": 785, + "repository_id": 1827, + "parent_product_id": null, + "root_product_id": 785, + "update_tag": "smcl3", + "url": "https://updates.suse.com/repo/$RCE/SLE10-SUSE-Manager-Tools/sles-10-i586/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE10-SP3 SUSE-Manager-Tools i586", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2" + ] + }, + { + "channel_label": "sle10-sdk-sp3-pool-i586", + "parent_channel_label": "sles10-sp3-pool-i586", + "product_id": 1179, + "repository_id": 1333, + "parent_product_id": 785, + "root_product_id": 785, + "update_tag": "sdkp3", + "url": "https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Pool/sles-10-i586/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE10-SDK-SP3-Pool for i586", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2" + ] + }, + { + "channel_label": "sle10-sdk-sp3-updates-i586", + "parent_channel_label": "sles10-sp3-pool-i586", + "product_id": 1179, + "repository_id": 1334, + "parent_product_id": 785, + "root_product_id": 785, + "update_tag": "sdkp3", + "url": "https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Updates/sles-10-i586/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE10-SDK-SP3-Updates for i586", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2" + ] + }, + { + "channel_label": "sles10-sp3-gplv3-extras-ppc", + "parent_channel_label": "sles10-sp3-pool-ppc", + "product_id": 787, + "repository_id": 704, + "parent_product_id": null, + "root_product_id": 787, + "update_tag": "slemp3", + "url": "https://updates.suse.com/repo/$RCE/SLES10-GPLv3-Extras/sles-10-ppc/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLES10-SP3-GPLv3-Extras for ppc", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2" + ] + }, + { + "channel_label": "sles10-sp3-pool-ppc", + "parent_channel_label": null, + "product_id": 787, + "repository_id": 781, + "parent_product_id": null, + "root_product_id": 787, + "update_tag": "slesp3", + "url": "https://updates.suse.com/repo/$RCE/SLES10-SP3-Pool/sles-10-ppc/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLES10-SP3-Pool for ppc", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2" + ] + }, + { + "channel_label": "sles10-sp3-updates-ppc", + "parent_channel_label": "sles10-sp3-pool-ppc", + "product_id": 787, + "repository_id": 783, + "parent_product_id": null, + "root_product_id": 787, + "update_tag": "slesp3", + "url": "https://updates.suse.com/repo/$RCE/SLES10-SP3-Updates/sles-10-ppc/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLES10-SP3-Updates for ppc", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2" + ] + }, + { + "channel_label": "sle10-sp3-suse-manager-tools-ppc", + "parent_channel_label": "sles10-sp3-pool-ppc", + "product_id": 787, + "repository_id": 978, + "parent_product_id": null, + "root_product_id": 787, + "update_tag": "smcl3", + "url": "https://updates.suse.com/repo/$RCE/SLE10-SUSE-Manager-Tools/sles-10-ppc/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE10-SP3 SUSE-Manager-Tools ppc", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2" + ] + }, + { + "channel_label": "sle10-sdk-sp3-pool-ppc", + "parent_channel_label": "sles10-sp3-pool-ppc", + "product_id": 1179, + "repository_id": 1322, + "parent_product_id": 787, + "root_product_id": 787, + "update_tag": "sdkp3", + "url": "https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Pool/sles-10-ppc/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE10-SDK-SP3-Pool for ppc", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2" + ] + }, + { + "channel_label": "sle10-sdk-sp3-updates-ppc", + "parent_channel_label": "sles10-sp3-pool-ppc", + "product_id": 1179, + "repository_id": 1336, + "parent_product_id": 787, + "root_product_id": 787, + "update_tag": "sdkp3", + "url": "https://updates.suse.com/repo/$RCE/SLE10-SDK-SP3-Updates/sles-10-ppc/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE10-SDK-SP3-Updates for ppc", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2" + ] + }, + { + "channel_label": "sles11-extras-i586-sles-sp3", + "parent_channel_label": "sles11-sp3-pool-i586", + "product_id": 793, + "repository_id": 679, + "parent_product_id": null, + "root_product_id": 793, + "update_tag": null, + "url": "https://updates.suse.com/repo/$RCE/SLES11-Extras/sle-11-i586/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLES11-Extras for i586 SLES-SP3", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-sp1-debuginfo-pool-i586-sles-sp3", + "parent_channel_label": "sles11-sp3-pool-i586", + "product_id": 793, + "repository_id": 680, + "parent_product_id": null, + "root_product_id": 793, + "update_tag": "dbgsp1", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Pool/sle-11-i586/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SP1-Debuginfo-Pool for i586 SLES-SP3", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-sp1-debuginfo-updates-i586-sles-sp3", + "parent_channel_label": "sles11-sp3-pool-i586", + "product_id": 793, + "repository_id": 682, + "parent_product_id": null, + "root_product_id": 793, + "update_tag": "dbgsp1", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Updates/sle-11-i586/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SP1-Debuginfo-Updates for i586 SLES-SP3", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles11-sp1-updates-i586-sles-sp3", + "parent_channel_label": "sles11-sp3-pool-i586", + "product_id": 793, + "repository_id": 684, + "parent_product_id": null, + "root_product_id": 793, + "update_tag": "slessp1", + "url": "https://updates.suse.com/repo/$RCE/SLES11-SP1-Updates/sle-11-i586/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLES11-SP1-Updates for i586 SLES-SP3", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles11-sp1-pool-i586-sles-sp3", + "parent_channel_label": "sles11-sp3-pool-i586", + "product_id": 793, + "repository_id": 686, + "parent_product_id": null, + "root_product_id": 793, + "update_tag": "slessp1", + "url": "https://updates.suse.com/repo/$RCE/SLES11-SP1-Pool/sle-11-i586/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLES11-SP1-Pool for i586 SLES-SP3", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-sp2-debuginfo-core-i586-sles-sp3", + "parent_channel_label": "sles11-sp3-pool-i586", + "product_id": 793, + "repository_id": 717, + "parent_product_id": null, + "root_product_id": 793, + "update_tag": "dbgsp2", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SP2-Debuginfo-Core/sle-11-i586/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SP2-Debuginfo-Core for i586 SLES-SP3", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-sp2-debuginfo-updates-i586-sles-sp3", + "parent_channel_label": "sles11-sp3-pool-i586", + "product_id": 793, + "repository_id": 719, + "parent_product_id": null, + "root_product_id": 793, + "update_tag": "dbgsp2", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SP2-Debuginfo-Updates/sle-11-i586/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SP2-Debuginfo-Updates for i586 SLES-SP3", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles11-sp2-updates-i586-sles-sp3", + "parent_channel_label": "sles11-sp3-pool-i586", + "product_id": 793, + "repository_id": 720, + "parent_product_id": null, + "root_product_id": 793, + "update_tag": "slessp2", + "url": "https://updates.suse.com/repo/$RCE/SLES11-SP2-Updates/sle-11-i586/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLES11-SP2-Updates for i586 SLES-SP3", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles11-sp2-core-i586-sles-sp3", + "parent_channel_label": "sles11-sp3-pool-i586", + "product_id": 793, + "repository_id": 722, + "parent_product_id": null, + "root_product_id": 793, + "update_tag": "slessp2", + "url": "https://updates.suse.com/repo/$RCE/SLES11-SP2-Core/sle-11-i586/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLES11-SP2-Core for i586 SLES-SP3", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles11-sp3-extension-store-i586", + "parent_channel_label": "sles11-sp3-pool-i586", + "product_id": 793, + "repository_id": 758, + "parent_product_id": null, + "root_product_id": 793, + "update_tag": "slessp3", + "url": "https://updates.suse.com/repo/$RCE/SLES11-SP3-Extension-Store/sle-11-i586/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLES11-SP3-Extension-Store for i586", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-sp3-debuginfo-updates-i586", + "parent_channel_label": "sles11-sp3-pool-i586", + "product_id": 793, + "repository_id": 759, + "parent_product_id": null, + "root_product_id": 793, + "update_tag": "dbgsp3", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SP3-Debuginfo-Updates/sle-11-i586/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SP3-Debuginfo-Updates for i586", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles11-sp3-pool-i586", + "parent_channel_label": null, + "product_id": 793, + "repository_id": 760, + "parent_product_id": null, + "root_product_id": 793, + "update_tag": "slessp3", + "url": "https://updates.suse.com/repo/$RCE/SLES11-SP3-Pool/sle-11-i586/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLES11-SP3-Pool for i586", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles11-sp2-extension-store-i586-sles-sp3", + "parent_channel_label": "sles11-sp3-pool-i586", + "product_id": 793, + "repository_id": 761, + "parent_product_id": null, + "root_product_id": 793, + "update_tag": "slessp2", + "url": "https://updates.suse.com/repo/$RCE/SLES11-SP2-Extension-Store/sle-11-i586/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLES11-SP2-Extension-Store for i586 SLES-SP3", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles11-sp3-updates-i586", + "parent_channel_label": "sles11-sp3-pool-i586", + "product_id": 793, + "repository_id": 762, + "parent_product_id": null, + "root_product_id": 793, + "update_tag": "slessp3", + "url": "https://updates.suse.com/repo/$RCE/SLES11-SP3-Updates/sle-11-i586/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLES11-SP3-Updates for i586", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-sp3-debuginfo-pool-i586", + "parent_channel_label": "sles11-sp3-pool-i586", + "product_id": 793, + "repository_id": 763, + "parent_product_id": null, + "root_product_id": 793, + "update_tag": "dbgsp3", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SP3-Debuginfo-Pool/sle-11-i586/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SP3-Debuginfo-Pool for i586", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-security-module-i586", + "parent_channel_label": "sles11-sp3-pool-i586", + "product_id": 793, + "repository_id": 1379, + "parent_product_id": null, + "root_product_id": 793, + "update_tag": "secsp3", + "url": "https://updates.suse.com/repo/$RCE/SLE11-Security-Module/sle-11-i586/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE11-Security-Module for i586", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles11-sp2-suse-manager-tools-i586-sp3", + "parent_channel_label": "sles11-sp3-pool-i586", + "product_id": 793, + "repository_id": 1567, + "parent_product_id": null, + "root_product_id": 793, + "update_tag": "slesctsp2", + "url": "https://updates.suse.com/repo/$RCE/SLES11-SP2-SUSE-Manager-Tools/sle-11-i586/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLES11-SP2-SUSE-Manager-Tools i586 SP3", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sles11-sp3-suse-manager-tools-i586", + "parent_channel_label": "sles11-sp3-pool-i586", + "product_id": 793, + "repository_id": 1572, + "parent_product_id": null, + "root_product_id": 793, + "update_tag": "slesctsp3", + "url": "https://updates.suse.com/repo/$RCE/SLES11-SP3-SUSE-Manager-Tools/sle-11-i586/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLES11-SP3-SUSE-Manager-Tools i586", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle11-public-cloud-module-i586", + "parent_channel_label": "sles11-sp3-pool-i586", + "product_id": 793, + "repository_id": 1776, + "parent_product_id": null, + "root_product_id": 793, + "update_tag": "pubclsp3", + "url": "https://updates.suse.com/repo/$RCE/SLE11-Public-Cloud-Module/sle-11-i586/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE11-Public-Cloud-Module for i586", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles11-sp3-ltss-updates-i586", + "parent_channel_label": "sles11-sp3-pool-i586", + "product_id": 793, + "repository_id": 1966, + "parent_product_id": null, + "root_product_id": 793, + "update_tag": "slessp3", + "url": "https://updates.suse.com/repo/$RCE/SLES11-SP3-LTSS-Updates/sle-11-i586/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLES11-SP3-LTSS-Updates for i586", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-hae-sp3-pool-i586", + "parent_channel_label": "sles11-sp3-pool-i586", + "product_id": 977, + "repository_id": 951, + "parent_product_id": 793, + "root_product_id": 793, + "update_tag": "sleshasp3", + "url": "https://updates.suse.com/repo/$RCE/SLE11-HAE-SP3-Pool/sle-11-i586/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE11-HAE-SP3-Pool for i586", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-hae-sp3-updates-i586", + "parent_channel_label": "sles11-sp3-pool-i586", + "product_id": 977, + "repository_id": 952, + "parent_product_id": 793, + "root_product_id": 793, + "update_tag": "sleshasp3", + "url": "https://updates.suse.com/repo/$RCE/SLE11-HAE-SP3-Updates/sle-11-i586/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE11-HAE-SP3-Updates for i586", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-hae-geo-sp3-updates-i586", + "parent_channel_label": "sles11-sp3-pool-i586", + "product_id": 1102, + "repository_id": 1117, + "parent_product_id": 977, + "root_product_id": 793, + "update_tag": "sleshagsp3", + "url": "https://updates.suse.com/repo/$RCE/SLE11-HAE-GEO-SP3-Updates/sle-11-i586/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE11-HAE-GEO-SP3-Updates for i586", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-pos-sp3-pool-i586", + "parent_channel_label": "sles11-sp3-pool-i586", + "product_id": 1073, + "repository_id": 1084, + "parent_product_id": 793, + "root_product_id": 793, + "update_tag": "sleposp3", + "url": "https://updates.suse.com/repo/$RCE/SLE11-POS-SP3-Pool/sle-11-i586/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE11-POS-SP3-Pool for i586", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-pos-sp3-updates-i586", + "parent_channel_label": "sles11-sp3-pool-i586", + "product_id": 1073, + "repository_id": 1085, + "parent_product_id": 793, + "root_product_id": 793, + "update_tag": "sleposp3", + "url": "https://updates.suse.com/repo/$RCE/SLE11-POS-SP3-Updates/sle-11-i586/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE11-POS-SP3-Updates for i586", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-sdk-sp1-updates-i586-sdk-sp3", + "parent_channel_label": "sles11-sp3-pool-i586", + "product_id": 1161, + "repository_id": 1262, + "parent_product_id": 793, + "root_product_id": 793, + "update_tag": "sdksp1", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Updates/sle-11-i586/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SDK-SP1-Updates for i586 SDK-SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-sdk-sp1-pool-i586-sdk-sp3", + "parent_channel_label": "sles11-sp3-pool-i586", + "product_id": 1161, + "repository_id": 1263, + "parent_product_id": 793, + "root_product_id": 793, + "update_tag": "sdksp1", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-i586/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SDK-SP1-Pool for i586 SDK-SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-sdk-sp2-updates-i586-sdk-sp3", + "parent_channel_label": "sles11-sp3-pool-i586", + "product_id": 1161, + "repository_id": 1271, + "parent_product_id": 793, + "root_product_id": 793, + "update_tag": "sdksp2", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-i586/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SDK-SP2-Updates for i586 SDK-SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-sdk-sp2-core-i586-sdk-sp3", + "parent_channel_label": "sles11-sp3-pool-i586", + "product_id": 1161, + "repository_id": 1274, + "parent_product_id": 793, + "root_product_id": 793, + "update_tag": "sdksp2", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-i586/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SDK-SP2-Core for i586 SDK-SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-sdk-sp3-pool-i586", + "parent_channel_label": "sles11-sp3-pool-i586", + "product_id": 1161, + "repository_id": 1277, + "parent_product_id": 793, + "root_product_id": 793, + "update_tag": "sdksp3", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Pool/sle-11-i586/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SDK-SP3-Pool for i586", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-sdk-sp3-updates-i586", + "parent_channel_label": "sles11-sp3-pool-i586", + "product_id": 1161, + "repository_id": 1285, + "parent_product_id": 793, + "root_product_id": 793, + "update_tag": "sdksp3", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Updates/sle-11-i586/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SDK-SP3-Updates for i586", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-smt-sp3-updates-i586", + "parent_channel_label": "sles11-sp3-pool-i586", + "product_id": 1198, + "repository_id": 1406, + "parent_product_id": 793, + "root_product_id": 793, + "update_tag": "slesmtsp3", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SMT-SP3-Updates/sle-11-i586/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SMT-SP3-Updates for i586", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-smt-sp3-pool-i586", + "parent_channel_label": "sles11-sp3-pool-i586", + "product_id": 1198, + "repository_id": 1410, + "parent_product_id": 793, + "root_product_id": 793, + "update_tag": "slesmtsp3", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SMT-SP3-Pool/sle-11-i586/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SMT-SP3-Pool for i586", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-sp2-webyast-1.3-updates-i586-sp3", + "parent_channel_label": "sles11-sp3-pool-i586", + "product_id": 1206, + "repository_id": 1413, + "parent_product_id": 793, + "root_product_id": 793, + "update_tag": "slewyst13", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SP2-WebYaST-1.3-Updates/sle-11-i586/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SP2-WebYaST-1.3-Updates for i586 SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-sp2-webyast-1.3-pool-i586-sp3", + "parent_channel_label": "sles11-sp3-pool-i586", + "product_id": 1206, + "repository_id": 1417, + "parent_product_id": 793, + "root_product_id": 793, + "update_tag": "slewyst13", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SP2-WebYaST-1.3-Pool/sle-11-i586/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SP2-WebYaST-1.3-Pool for i586 SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles11-extras-i586", + "parent_channel_label": "sles11-sp1-pool-i586", + "product_id": 811, + "repository_id": 679, + "parent_product_id": null, + "root_product_id": 811, + "update_tag": null, + "url": "https://updates.suse.com/repo/$RCE/SLES11-Extras/sle-11-i586/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLES11-Extras for i586", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-sp1-debuginfo-pool-i586", + "parent_channel_label": "sles11-sp1-pool-i586", + "product_id": 811, + "repository_id": 680, + "parent_product_id": null, + "root_product_id": 811, + "update_tag": "dbgsp1", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Pool/sle-11-i586/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SP1-Debuginfo-Pool for i586", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-sp1-debuginfo-updates-i586", + "parent_channel_label": "sles11-sp1-pool-i586", + "product_id": 811, + "repository_id": 682, + "parent_product_id": null, + "root_product_id": 811, + "update_tag": "dbgsp1", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Updates/sle-11-i586/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SP1-Debuginfo-Updates for i586", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles11-sp1-updates-i586", + "parent_channel_label": "sles11-sp1-pool-i586", + "product_id": 811, + "repository_id": 684, + "parent_product_id": null, + "root_product_id": 811, + "update_tag": "slessp1", + "url": "https://updates.suse.com/repo/$RCE/SLES11-SP1-Updates/sle-11-i586/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLES11-SP1-Updates for i586", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles11-sp1-pool-i586", + "parent_channel_label": null, + "product_id": 811, + "repository_id": 686, + "parent_product_id": null, + "root_product_id": 811, + "update_tag": "slessp1", + "url": "https://updates.suse.com/repo/$RCE/SLES11-SP1-Pool/sle-11-i586/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLES11-SP1-Pool for i586", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-sp2-debuginfo-core-i586", + "parent_channel_label": "sles11-sp1-pool-i586", + "product_id": 811, + "repository_id": 717, + "parent_product_id": null, + "root_product_id": 811, + "update_tag": "dbgsp2", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SP2-Debuginfo-Core/sle-11-i586/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SP2-Debuginfo-Core for i586", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-webyast-sp2-pool-i586", + "parent_channel_label": "sles11-sp1-pool-i586", + "product_id": 811, + "repository_id": 718, + "parent_product_id": null, + "root_product_id": 811, + "update_tag": "slewystsp1", + "url": "https://updates.suse.com/repo/$RCE/SLE11-WebYaST-SP2-Pool/sle-11-i586/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE11-WebYaST-SP2-Pool for i586", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-sp2-debuginfo-updates-i586", + "parent_channel_label": "sles11-sp1-pool-i586", + "product_id": 811, + "repository_id": 719, + "parent_product_id": null, + "root_product_id": 811, + "update_tag": "dbgsp2", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SP2-Debuginfo-Updates/sle-11-i586/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SP2-Debuginfo-Updates for i586", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles11-sp2-updates-i586", + "parent_channel_label": "sles11-sp1-pool-i586", + "product_id": 811, + "repository_id": 720, + "parent_product_id": null, + "root_product_id": 811, + "update_tag": "slessp2", + "url": "https://updates.suse.com/repo/$RCE/SLES11-SP2-Updates/sle-11-i586/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLES11-SP2-Updates for i586", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-webyast-sp2-updates-i586", + "parent_channel_label": "sles11-sp1-pool-i586", + "product_id": 811, + "repository_id": 721, + "parent_product_id": null, + "root_product_id": 811, + "update_tag": "slewystsp1", + "url": "https://updates.suse.com/repo/$RCE/SLE11-WebYaST-SP2-Updates/sle-11-i586/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE11-WebYaST-SP2-Updates for i586", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles11-sp2-core-i586", + "parent_channel_label": "sles11-sp1-pool-i586", + "product_id": 811, + "repository_id": 722, + "parent_product_id": null, + "root_product_id": 811, + "update_tag": "slessp2", + "url": "https://updates.suse.com/repo/$RCE/SLES11-SP2-Core/sle-11-i586/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLES11-SP2-Core for i586", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles11-sp2-extension-store-i586", + "parent_channel_label": "sles11-sp1-pool-i586", + "product_id": 811, + "repository_id": 761, + "parent_product_id": null, + "root_product_id": 811, + "update_tag": "slessp2", + "url": "https://updates.suse.com/repo/$RCE/SLES11-SP2-Extension-Store/sle-11-i586/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLES11-SP2-Extension-Store for i586", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles11-sp2-ltss-updates-i586", + "parent_channel_label": "sles11-sp1-pool-i586", + "product_id": 811, + "repository_id": 1156, + "parent_product_id": null, + "root_product_id": 811, + "update_tag": "slessp2", + "url": "https://updates.suse.com/repo/$RCE/SLES11-SP2-LTSS-Updates/sle-11-i586/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLES11-SP2-LTSS-Updates for i586", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles11-sp2-suse-manager-tools-i586", + "parent_channel_label": "sles11-sp1-pool-i586", + "product_id": 811, + "repository_id": 1567, + "parent_product_id": null, + "root_product_id": 811, + "update_tag": "slesctsp2", + "url": "https://updates.suse.com/repo/$RCE/SLES11-SP2-SUSE-Manager-Tools/sle-11-i586/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLES11-SP2-SUSE-Manager-Tools i586", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle11-hae-sp2-pool-i586", + "parent_channel_label": "sles11-sp1-pool-i586", + "product_id": 975, + "repository_id": 949, + "parent_product_id": 811, + "root_product_id": 811, + "update_tag": "sleshasp2", + "url": "https://updates.suse.com/repo/$RCE/SLE11-HAE-SP2-Pool/sle-11-i586/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE11-HAE-SP2-Pool for i586", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-hae-sp2-updates-i586", + "parent_channel_label": "sles11-sp1-pool-i586", + "product_id": 975, + "repository_id": 950, + "parent_product_id": 811, + "root_product_id": 811, + "update_tag": "sleshasp2", + "url": "https://updates.suse.com/repo/$RCE/SLE11-HAE-SP2-Updates/sle-11-i586/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE11-HAE-SP2-Updates for i586", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-pos-sp2-updates-i586", + "parent_channel_label": "sles11-sp1-pool-i586", + "product_id": 1068, + "repository_id": 1073, + "parent_product_id": 811, + "root_product_id": 811, + "update_tag": "sleposp2", + "url": "https://updates.suse.com/repo/$RCE/SLE11-POS-SP2-Updates/sle-11-i586/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE11-POS-SP2-Updates for i586", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-pos-sp2-pool-i586", + "parent_channel_label": "sles11-sp1-pool-i586", + "product_id": 1068, + "repository_id": 1074, + "parent_product_id": 811, + "root_product_id": 811, + "update_tag": "sleposp2", + "url": "https://updates.suse.com/repo/$RCE/SLE11-POS-SP2-Pool/sle-11-i586/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE11-POS-SP2-Pool for i586", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-sdk-sp1-updates-i586", + "parent_channel_label": "sles11-sp1-pool-i586", + "product_id": 1160, + "repository_id": 1262, + "parent_product_id": 811, + "root_product_id": 811, + "update_tag": "sdksp1", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Updates/sle-11-i586/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SDK-SP1-Updates for i586", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-sdk-sp1-pool-i586", + "parent_channel_label": "sles11-sp1-pool-i586", + "product_id": 1160, + "repository_id": 1263, + "parent_product_id": 811, + "root_product_id": 811, + "update_tag": "sdksp1", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-i586/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SDK-SP1-Pool for i586", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-sdk-sp2-updates-i586", + "parent_channel_label": "sles11-sp1-pool-i586", + "product_id": 1160, + "repository_id": 1271, + "parent_product_id": 811, + "root_product_id": 811, + "update_tag": "sdksp2", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-i586/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SDK-SP2-Updates for i586", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-sdk-sp2-core-i586", + "parent_channel_label": "sles11-sp1-pool-i586", + "product_id": 1160, + "repository_id": 1274, + "parent_product_id": 811, + "root_product_id": 811, + "update_tag": "sdksp2", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-i586/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SDK-SP2-Core for i586", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-smt-sp2-pool-i586", + "parent_channel_label": "sles11-sp1-pool-i586", + "product_id": 1193, + "repository_id": 1394, + "parent_product_id": 811, + "root_product_id": 811, + "update_tag": "slesmtsp0", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SMT-SP2-Pool/sle-11-i586/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SMT-SP2-Pool for i586", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-smt-sp2-updates-i586", + "parent_channel_label": "sles11-sp1-pool-i586", + "product_id": 1193, + "repository_id": 1395, + "parent_product_id": 811, + "root_product_id": 811, + "update_tag": "slesmtsp0", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SMT-SP2-Updates/sle-11-i586/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SMT-SP2-Updates for i586", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-sp2-webyast-1.3-updates-i586", + "parent_channel_label": "sles11-sp1-pool-i586", + "product_id": 1206, + "repository_id": 1413, + "parent_product_id": 811, + "root_product_id": 811, + "update_tag": "slewyst13", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SP2-WebYaST-1.3-Updates/sle-11-i586/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SP2-WebYaST-1.3-Updates for i586", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-sp2-webyast-1.3-pool-i586", + "parent_channel_label": "sles11-sp1-pool-i586", + "product_id": 1206, + "repository_id": 1417, + "parent_product_id": 811, + "root_product_id": 811, + "update_tag": "slewyst13", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SP2-WebYaST-1.3-Pool/sle-11-i586/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SP2-WebYaST-1.3-Pool for i586", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles11-sp1-updates-x86_64-sles-sp3", + "parent_channel_label": "sles11-sp3-pool-x86_64", + "product_id": 814, + "repository_id": 705, + "parent_product_id": null, + "root_product_id": 814, + "update_tag": "slessp1", + "url": "https://updates.suse.com/repo/$RCE/SLES11-SP1-Updates/sle-11-x86_64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLES11-SP1-Updates for x86_64 SLES-SP3", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-sp1-debuginfo-pool-x86_64-sles-sp3", + "parent_channel_label": "sles11-sp3-pool-x86_64", + "product_id": 814, + "repository_id": 707, + "parent_product_id": null, + "root_product_id": 814, + "update_tag": "dbgsp1", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Pool/sle-11-x86_64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SP1-Debuginfo-Pool for x86_64 SLES-SP3", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles11-sp2-core-x86_64-sles-sp3", + "parent_channel_label": "sles11-sp3-pool-x86_64", + "product_id": 814, + "repository_id": 709, + "parent_product_id": null, + "root_product_id": 814, + "update_tag": "slessp2", + "url": "https://updates.suse.com/repo/$RCE/SLES11-SP2-Core/sle-11-x86_64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLES11-SP2-Core for x86_64 SLES-SP3", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles11-extras-x86_64-sles-sp3", + "parent_channel_label": "sles11-sp3-pool-x86_64", + "product_id": 814, + "repository_id": 710, + "parent_product_id": null, + "root_product_id": 814, + "update_tag": null, + "url": "https://updates.suse.com/repo/$RCE/SLES11-Extras/sle-11-x86_64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLES11-Extras for x86_64 SLES-SP3", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles11-sp1-pool-x86_64-sles-sp3", + "parent_channel_label": "sles11-sp3-pool-x86_64", + "product_id": 814, + "repository_id": 711, + "parent_product_id": null, + "root_product_id": 814, + "update_tag": "slessp1", + "url": "https://updates.suse.com/repo/$RCE/SLES11-SP1-Pool/sle-11-x86_64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLES11-SP1-Pool for x86_64 SLES-SP3", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-sp2-debuginfo-updates-x86_64-sles-sp3", + "parent_channel_label": "sles11-sp3-pool-x86_64", + "product_id": 814, + "repository_id": 712, + "parent_product_id": null, + "root_product_id": 814, + "update_tag": "dbgsp2", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SP2-Debuginfo-Updates/sle-11-x86_64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SP2-Debuginfo-Updates for x86_64 SLES-SP3", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles11-sp2-extension-store-x86_64-sles-sp3", + "parent_channel_label": "sles11-sp3-pool-x86_64", + "product_id": 814, + "repository_id": 713, + "parent_product_id": null, + "root_product_id": 814, + "update_tag": "slessp2", + "url": "https://updates.suse.com/repo/$RCE/SLES11-SP2-Extension-Store/sle-11-x86_64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLES11-SP2-Extension-Store for x86_64 SLES-SP3", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles11-sp2-updates-x86_64-sles-sp3", + "parent_channel_label": "sles11-sp3-pool-x86_64", + "product_id": 814, + "repository_id": 714, + "parent_product_id": null, + "root_product_id": 814, + "update_tag": "slessp2", + "url": "https://updates.suse.com/repo/$RCE/SLES11-SP2-Updates/sle-11-x86_64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLES11-SP2-Updates for x86_64 SLES-SP3", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-sp1-debuginfo-updates-x86_64-sles-sp3", + "parent_channel_label": "sles11-sp3-pool-x86_64", + "product_id": 814, + "repository_id": 715, + "parent_product_id": null, + "root_product_id": 814, + "update_tag": "dbgsp1", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Updates/sle-11-x86_64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SP1-Debuginfo-Updates for x86_64 SLES-SP3", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-sp2-debuginfo-core-x86_64-sles-sp3", + "parent_channel_label": "sles11-sp3-pool-x86_64", + "product_id": 814, + "repository_id": 716, + "parent_product_id": null, + "root_product_id": 814, + "update_tag": "dbgsp2", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SP2-Debuginfo-Core/sle-11-x86_64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SP2-Debuginfo-Core for x86_64 SLES-SP3", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-sp3-debuginfo-updates-x86_64", + "parent_channel_label": "sles11-sp3-pool-x86_64", + "product_id": 814, + "repository_id": 735, + "parent_product_id": null, + "root_product_id": 814, + "update_tag": "dbgsp3", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SP3-Debuginfo-Updates/sle-11-x86_64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SP3-Debuginfo-Updates for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-sp3-debuginfo-pool-x86_64", + "parent_channel_label": "sles11-sp3-pool-x86_64", + "product_id": 814, + "repository_id": 736, + "parent_product_id": null, + "root_product_id": 814, + "update_tag": "dbgsp3", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SP3-Debuginfo-Pool/sle-11-x86_64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SP3-Debuginfo-Pool for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles11-sp3-pool-x86_64", + "parent_channel_label": null, + "product_id": 814, + "repository_id": 737, + "parent_product_id": null, + "root_product_id": 814, + "update_tag": "slessp3", + "url": "https://updates.suse.com/repo/$RCE/SLES11-SP3-Pool/sle-11-x86_64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLES11-SP3-Pool for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles11-sp3-updates-x86_64", + "parent_channel_label": "sles11-sp3-pool-x86_64", + "product_id": 814, + "repository_id": 738, + "parent_product_id": null, + "root_product_id": 814, + "update_tag": "slessp3", + "url": "https://updates.suse.com/repo/$RCE/SLES11-SP3-Updates/sle-11-x86_64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLES11-SP3-Updates for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles11-sp3-extension-store-x86_64", + "parent_channel_label": "sles11-sp3-pool-x86_64", + "product_id": 814, + "repository_id": 739, + "parent_product_id": null, + "root_product_id": 814, + "update_tag": "slessp3", + "url": "https://updates.suse.com/repo/$RCE/SLES11-SP3-Extension-Store/sle-11-x86_64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLES11-SP3-Extension-Store for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles11-sp3-suse-manager-tools-x86_64", + "parent_channel_label": "sles11-sp3-pool-x86_64", + "product_id": 814, + "repository_id": 1208, + "parent_product_id": null, + "root_product_id": 814, + "update_tag": "slesctsp3", + "url": "https://updates.suse.com/repo/$RCE/SLES11-SP3-SUSE-Manager-Tools/sle-11-x86_64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLES11-SP3-SUSE-Manager-Tools x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle11-security-module-x86_64", + "parent_channel_label": "sles11-sp3-pool-x86_64", + "product_id": 814, + "repository_id": 1447, + "parent_product_id": null, + "root_product_id": 814, + "update_tag": "secsp3", + "url": "https://updates.suse.com/repo/$RCE/SLE11-Security-Module/sle-11-x86_64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE11-Security-Module for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles11-sp2-suse-manager-tools-x86_64-sp3", + "parent_channel_label": "sles11-sp3-pool-x86_64", + "product_id": 814, + "repository_id": 1571, + "parent_product_id": null, + "root_product_id": 814, + "update_tag": "slesctsp2", + "url": "https://updates.suse.com/repo/$RCE/SLES11-SP2-SUSE-Manager-Tools/sle-11-x86_64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLES11-SP2-SUSE-Manager-Tools x86_64 SP3", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle11-public-cloud-module-x86_64", + "parent_channel_label": "sles11-sp3-pool-x86_64", + "product_id": 814, + "repository_id": 1777, + "parent_product_id": null, + "root_product_id": 814, + "update_tag": "pubclsp3", + "url": "https://updates.suse.com/repo/$RCE/SLE11-Public-Cloud-Module/sle-11-x86_64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE11-Public-Cloud-Module for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles11-sp3-ltss-updates-x86_64", + "parent_channel_label": "sles11-sp3-pool-x86_64", + "product_id": 814, + "repository_id": 1967, + "parent_product_id": null, + "root_product_id": 814, + "update_tag": "slessp3", + "url": "https://updates.suse.com/repo/$RCE/SLES11-SP3-LTSS-Updates/sle-11-x86_64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLES11-SP3-LTSS-Updates for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "oes2015-updates-x86_64", + "parent_channel_label": "sles11-sp3-pool-x86_64", + "product_id": 42, + "repository_id": -10, + "parent_product_id": 814, + "root_product_id": 814, + "update_tag": "oes2015", + "url": "https://nu.novell.com/repo/$RCE/OES2015-Updates/sle-11-x86_64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "OES2015-Updates for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "oes2015-pool-x86_64", + "parent_channel_label": "sles11-sp3-pool-x86_64", + "product_id": 42, + "repository_id": -9, + "parent_product_id": 814, + "root_product_id": 814, + "update_tag": "oes2015", + "url": "https://nu.novell.com/repo/$RCE/OES2015-Pool/sle-11-x86_64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "OES2015-Pool for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-hae-sp3-updates-x86_64", + "parent_channel_label": "sles11-sp3-pool-x86_64", + "product_id": 971, + "repository_id": 956, + "parent_product_id": 814, + "root_product_id": 814, + "update_tag": "sleshasp3", + "url": "https://updates.suse.com/repo/$RCE/SLE11-HAE-SP3-Updates/sle-11-x86_64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE11-HAE-SP3-Updates for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-hae-sp3-pool-x86_64", + "parent_channel_label": "sles11-sp3-pool-x86_64", + "product_id": 971, + "repository_id": 3037, + "parent_product_id": 814, + "root_product_id": 814, + "update_tag": "sleshasp3", + "url": "https://updates.suse.com/repo/$RCE/SLE11-HAE-SP3-Pool/sle-11-x86_64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE11-HAE-SP3-Pool for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-hae-geo-sp3-updates-x86_64", + "parent_channel_label": "sles11-sp3-pool-x86_64", + "product_id": 1107, + "repository_id": 1120, + "parent_product_id": 971, + "root_product_id": 814, + "update_tag": "sleshagsp3", + "url": "https://updates.suse.com/repo/$RCE/SLE11-HAE-GEO-SP3-Updates/sle-11-x86_64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE11-HAE-GEO-SP3-Updates for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "slert11-sp3-pool-x86_64", + "parent_channel_label": "sles11-sp3-pool-x86_64", + "product_id": 1058, + "repository_id": 1061, + "parent_product_id": 814, + "root_product_id": 814, + "update_tag": "slertesp3", + "url": "https://updates.suse.com/repo/$RCE/SLERT11-SP3-Pool/sle-11-x86_64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLERT11-SP3-Pool for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "slert11-sp3-updates-x86_64", + "parent_channel_label": "sles11-sp3-pool-x86_64", + "product_id": 1058, + "repository_id": 1062, + "parent_product_id": 814, + "root_product_id": 814, + "update_tag": "slertesp3", + "url": "https://updates.suse.com/repo/$RCE/SLERT11-SP3-Updates/sle-11-x86_64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLERT11-SP3-Updates for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-pos-sp3-pool-x86_64", + "parent_channel_label": "sles11-sp3-pool-x86_64", + "product_id": 1073, + "repository_id": 1086, + "parent_product_id": 814, + "root_product_id": 814, + "update_tag": "sleposp3", + "url": "https://updates.suse.com/repo/$RCE/SLE11-POS-SP3-Pool/sle-11-x86_64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE11-POS-SP3-Pool for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-pos-sp3-updates-x86_64", + "parent_channel_label": "sles11-sp3-pool-x86_64", + "product_id": 1073, + "repository_id": 1087, + "parent_product_id": 814, + "root_product_id": 814, + "update_tag": "sleposp3", + "url": "https://updates.suse.com/repo/$RCE/SLE11-POS-SP3-Updates/sle-11-x86_64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE11-POS-SP3-Updates for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-cloud-2.0-updates-x86_64", + "parent_channel_label": "sles11-sp3-pool-x86_64", + "product_id": 1091, + "repository_id": 1104, + "parent_product_id": 814, + "root_product_id": 814, + "update_tag": "sleclo20sp3", + "url": "https://updates.suse.com/repo/$RCE/SUSE-Cloud-2.0-Updates/sle-11-x86_64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-Cloud-2.0-Updates for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-cloud-2.0-pool-x86_64", + "parent_channel_label": "sles11-sp3-pool-x86_64", + "product_id": 1091, + "repository_id": 1105, + "parent_product_id": 814, + "root_product_id": 814, + "update_tag": "sleclo20sp3", + "url": "https://updates.suse.com/repo/$RCE/SUSE-Cloud-2.0-Pool/sle-11-x86_64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-Cloud-2.0-Pool for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-cloud-3.0-pool-x86_64", + "parent_channel_label": "sles11-sp3-pool-x86_64", + "product_id": 1114, + "repository_id": 1158, + "parent_product_id": 814, + "root_product_id": 814, + "update_tag": "sleclo30sp3", + "url": "https://updates.suse.com/repo/$RCE/SUSE-Cloud-3.0-Pool/sle-11-x86_64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-Cloud-3.0-Pool for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-cloud-3.0-updates-x86_64", + "parent_channel_label": "sles11-sp3-pool-x86_64", + "product_id": 1114, + "repository_id": 1159, + "parent_product_id": 814, + "root_product_id": 814, + "update_tag": "sleclo30sp3", + "url": "https://updates.suse.com/repo/$RCE/SUSE-Cloud-3.0-Updates/sle-11-x86_64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-Cloud-3.0-Updates for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-sdk-sp1-pool-x86_64-sdk-sp3", + "parent_channel_label": "sles11-sp3-pool-x86_64", + "product_id": 1161, + "repository_id": 1264, + "parent_product_id": 814, + "root_product_id": 814, + "update_tag": "sdksp1", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-x86_64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SDK-SP1-Pool for x86_64 SDK-SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-sdk-sp1-updates-x86_64-sdk-sp3", + "parent_channel_label": "sles11-sp3-pool-x86_64", + "product_id": 1161, + "repository_id": 1265, + "parent_product_id": 814, + "root_product_id": 814, + "update_tag": "sdksp1", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Updates/sle-11-x86_64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SDK-SP1-Updates for x86_64 SDK-SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-sdk-sp2-core-x86_64-sdk-sp3", + "parent_channel_label": "sles11-sp3-pool-x86_64", + "product_id": 1161, + "repository_id": 1275, + "parent_product_id": 814, + "root_product_id": 814, + "update_tag": "sdksp2", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-x86_64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SDK-SP2-Core for x86_64 SDK-SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-sdk-sp2-updates-x86_64-sdk-sp3", + "parent_channel_label": "sles11-sp3-pool-x86_64", + "product_id": 1161, + "repository_id": 1276, + "parent_product_id": 814, + "root_product_id": 814, + "update_tag": "sdksp2", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-x86_64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SDK-SP2-Updates for x86_64 SDK-SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-sdk-sp3-pool-x86_64", + "parent_channel_label": "sles11-sp3-pool-x86_64", + "product_id": 1161, + "repository_id": 1281, + "parent_product_id": 814, + "root_product_id": 814, + "update_tag": "sdksp3", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Pool/sle-11-x86_64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SDK-SP3-Pool for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-sdk-sp3-updates-x86_64", + "parent_channel_label": "sles11-sp3-pool-x86_64", + "product_id": 1161, + "repository_id": 1284, + "parent_product_id": 814, + "root_product_id": 814, + "update_tag": "sdksp3", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Updates/sle-11-x86_64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SDK-SP3-Updates for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-smt-sp3-updates-x86_64", + "parent_channel_label": "sles11-sp3-pool-x86_64", + "product_id": 1198, + "repository_id": 1405, + "parent_product_id": 814, + "root_product_id": 814, + "update_tag": "slesmtsp3", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SMT-SP3-Updates/sle-11-x86_64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SMT-SP3-Updates for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-smt-sp3-pool-x86_64", + "parent_channel_label": "sles11-sp3-pool-x86_64", + "product_id": 1198, + "repository_id": 1409, + "parent_product_id": 814, + "root_product_id": 814, + "update_tag": "slesmtsp3", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SMT-SP3-Pool/sle-11-x86_64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SMT-SP3-Pool for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-sp2-webyast-1.3-pool-x86_64-sp3", + "parent_channel_label": "sles11-sp3-pool-x86_64", + "product_id": 1206, + "repository_id": 1185, + "parent_product_id": 814, + "root_product_id": 814, + "update_tag": "slewyst13", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SP2-WebYaST-1.3-Pool/sle-11-x86_64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SP2-WebYaST-1.3-Pool for x86_64 SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-sp2-webyast-1.3-updates-x86_64-sp3", + "parent_channel_label": "sles11-sp3-pool-x86_64", + "product_id": 1206, + "repository_id": 1188, + "parent_product_id": 814, + "root_product_id": 814, + "update_tag": "slewyst13", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SP2-WebYaST-1.3-Updates/sle-11-x86_64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SP2-WebYaST-1.3-Updates for x86_64 SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-cloud-4-pool-x86_64", + "parent_channel_label": "sles11-sp3-pool-x86_64", + "product_id": 1221, + "repository_id": 1466, + "parent_product_id": 814, + "root_product_id": 814, + "update_tag": "sleclo40sp3", + "url": "https://updates.suse.com/repo/$RCE/SUSE-Cloud-4-Pool/sle-11-x86_64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-Cloud-4-Pool for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-cloud-4-updates-x86_64", + "parent_channel_label": "sles11-sp3-pool-x86_64", + "product_id": 1221, + "repository_id": 1467, + "parent_product_id": 814, + "root_product_id": 814, + "update_tag": "sleclo40sp3", + "url": "https://updates.suse.com/repo/$RCE/SUSE-Cloud-4-Updates/sle-11-x86_64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-Cloud-4-Updates for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "oes11-sp2-updates-x86_64", + "parent_channel_label": "sles11-sp3-pool-x86_64", + "product_id": 1242, + "repository_id": -6, + "parent_product_id": 814, + "root_product_id": 814, + "update_tag": "oes11sp2", + "url": "https://nu.novell.com/repo/$RCE/OES11-SP2-Updates/sle-11-x86_64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "OES11-SP2-Updates for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "oes11-sp2-pool-x86_64", + "parent_channel_label": "sles11-sp3-pool-x86_64", + "product_id": 1242, + "repository_id": -5, + "parent_product_id": 814, + "root_product_id": 814, + "update_tag": "oes11sp2", + "url": "https://nu.novell.com/repo/$RCE/OES11-SP2-Pool/sle-11-x86_64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "OES11-SP2-Pool for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-cloud-5-pool-x86_64", + "parent_channel_label": "sles11-sp3-pool-x86_64", + "product_id": 1288, + "repository_id": 1770, + "parent_product_id": 814, + "root_product_id": 814, + "update_tag": "sleclo50sp3", + "url": "https://updates.suse.com/repo/$RCE/SUSE-Cloud-5-Pool/sle-11-x86_64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-Cloud-5-Pool for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-cloud-5-updates-x86_64", + "parent_channel_label": "sles11-sp3-pool-x86_64", + "product_id": 1288, + "repository_id": 1771, + "parent_product_id": 814, + "root_product_id": 814, + "update_tag": "sleclo50sp3", + "url": "https://updates.suse.com/repo/$RCE/SUSE-Cloud-5-Updates/sle-11-x86_64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-Cloud-5-Updates for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles10-sp4-gplv3-extras-x86_64", + "parent_channel_label": "sles10-sp4-pool-x86_64", + "product_id": 832, + "repository_id": 768, + "parent_product_id": null, + "root_product_id": 832, + "update_tag": "slemp3", + "url": "https://updates.suse.com/repo/$RCE/SLES10-GPLv3-Extras/sles-10-x86_64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLES10-SP4-GPLv3-Extras for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2" + ] + }, + { + "channel_label": "sles10-sp4-pool-x86_64", + "parent_channel_label": null, + "product_id": 832, + "repository_id": 820, + "parent_product_id": null, + "root_product_id": 832, + "update_tag": "slesp4", + "url": "https://updates.suse.com/repo/$RCE/SLES10-SP4-Pool/sles-10-x86_64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLES10-SP4-Pool for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2" + ] + }, + { + "channel_label": "sles10-sp4-updates-x86_64", + "parent_channel_label": "sles10-sp4-pool-x86_64", + "product_id": 832, + "repository_id": 821, + "parent_product_id": null, + "root_product_id": 832, + "update_tag": "slesp4", + "url": "https://updates.suse.com/repo/$RCE/SLES10-SP4-Updates/sles-10-x86_64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLES10-SP4-Updates for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2" + ] + }, + { + "channel_label": "sles10-sp4-ltss-updates-x86_64", + "parent_channel_label": "sles10-sp4-pool-x86_64", + "product_id": 832, + "repository_id": 822, + "parent_product_id": null, + "root_product_id": 832, + "update_tag": "slesp4", + "url": "https://updates.suse.com/repo/$RCE/SLES10-SP4-LTSS-Updates/sles-10-x86_64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLES10-SP4-LTSS-Updates for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2" + ] + }, + { + "channel_label": "sle10-sp4-suse-manager-tools-x86_64", + "parent_channel_label": "sles10-sp4-pool-x86_64", + "product_id": 832, + "repository_id": 993, + "parent_product_id": null, + "root_product_id": 832, + "update_tag": "smcl3", + "url": "https://updates.suse.com/repo/$RCE/SLE10-SUSE-Manager-Tools/sles-10-x86_64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE10-SP4 SUSE-Manager-Tools x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2" + ] + }, + { + "channel_label": "sle10-sdk-sp4-pool-x86_64", + "parent_channel_label": "sles10-sp4-pool-x86_64", + "product_id": 1181, + "repository_id": 1343, + "parent_product_id": 832, + "root_product_id": 832, + "update_tag": "sdkp4", + "url": "https://updates.suse.com/repo/$RCE/SLE10-SDK-SP4-Pool/sles-10-x86_64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE10-SDK-SP4-Pool for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2" + ] + }, + { + "channel_label": "sle10-sdk-sp4-updates-x86_64", + "parent_channel_label": "sles10-sp4-pool-x86_64", + "product_id": 1181, + "repository_id": 1349, + "parent_product_id": 832, + "root_product_id": 832, + "update_tag": "sdkp4", + "url": "https://updates.suse.com/repo/$RCE/SLE10-SDK-SP4-Updates/sles-10-x86_64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE10-SDK-SP4-Updates for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2" + ] + }, + { + "channel_label": "sle11-sp1-debuginfo-pool-i586-sled", + "parent_channel_label": "sled11-sp1-pool-i586", + "product_id": 843, + "repository_id": 680, + "parent_product_id": null, + "root_product_id": 843, + "update_tag": "dbgsp1", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Pool/sle-11-i586/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SP1-Debuginfo-Pool for i586 SLED", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-sp1-debuginfo-updates-i586-sled", + "parent_channel_label": "sled11-sp1-pool-i586", + "product_id": 843, + "repository_id": 682, + "parent_product_id": null, + "root_product_id": 843, + "update_tag": "dbgsp1", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Updates/sle-11-i586/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SP1-Debuginfo-Updates for i586 SLED", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-sp2-debuginfo-core-i586-sled", + "parent_channel_label": "sled11-sp1-pool-i586", + "product_id": 843, + "repository_id": 717, + "parent_product_id": null, + "root_product_id": 843, + "update_tag": "dbgsp2", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SP2-Debuginfo-Core/sle-11-i586/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SP2-Debuginfo-Core for i586 SLED", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-sp2-debuginfo-updates-i586-sled", + "parent_channel_label": "sled11-sp1-pool-i586", + "product_id": 843, + "repository_id": 719, + "parent_product_id": null, + "root_product_id": 843, + "update_tag": "dbgsp2", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SP2-Debuginfo-Updates/sle-11-i586/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SP2-Debuginfo-Updates for i586 SLED", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sled11-extras-i586", + "parent_channel_label": "sled11-sp1-pool-i586", + "product_id": 843, + "repository_id": 846, + "parent_product_id": null, + "root_product_id": 843, + "update_tag": null, + "url": "https://updates.suse.com/repo/$RCE/SLED11-Extras/sle-11-i586/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLED11-Extras for i586", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sled11-sp1-updates-i586", + "parent_channel_label": "sled11-sp1-pool-i586", + "product_id": 843, + "repository_id": 851, + "parent_product_id": null, + "root_product_id": 843, + "update_tag": "sledsp1", + "url": "https://updates.suse.com/repo/$RCE/SLED11-SP1-Updates/sle-11-i586/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLED11-SP1-Updates for i586", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sled11-sp1-pool-i586", + "parent_channel_label": null, + "product_id": 843, + "repository_id": 852, + "parent_product_id": null, + "root_product_id": 843, + "update_tag": "sledsp1", + "url": "https://updates.suse.com/repo/$RCE/SLED11-SP1-Pool/sle-11-i586/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLED11-SP1-Pool for i586", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sled11-sp2-core-i586", + "parent_channel_label": "sled11-sp1-pool-i586", + "product_id": 843, + "repository_id": 856, + "parent_product_id": null, + "root_product_id": 843, + "update_tag": "sledsp2", + "url": "https://updates.suse.com/repo/$RCE/SLED11-SP2-Core/sle-11-i586/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLED11-SP2-Core for i586", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sled11-sp2-updates-i586", + "parent_channel_label": "sled11-sp1-pool-i586", + "product_id": 843, + "repository_id": 857, + "parent_product_id": null, + "root_product_id": 843, + "update_tag": "sledsp2", + "url": "https://updates.suse.com/repo/$RCE/SLED11-SP2-Updates/sle-11-i586/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLED11-SP2-Updates for i586", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "nvidia-driver-sle11-sp2-i586", + "parent_channel_label": "sled11-sp1-pool-i586", + "product_id": 843, + "repository_id": 885, + "parent_product_id": null, + "root_product_id": 843, + "update_tag": null, + "url": "http://download.nvidia.com/novell/sle11sp2/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "nVidia-Driver-SLE11-SP2 i586", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sled11-sp2-suse-manager-tools-i586", + "parent_channel_label": "sled11-sp1-pool-i586", + "product_id": 843, + "repository_id": 1567, + "parent_product_id": null, + "root_product_id": 843, + "update_tag": "slesctsp2", + "url": "https://updates.suse.com/repo/$RCE/SLES11-SP2-SUSE-Manager-Tools/sle-11-i586/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLED11-SP2-SUSE-Manager-Tools i586", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle11-sdk-sp1-updates-i586-sled", + "parent_channel_label": "sled11-sp1-pool-i586", + "product_id": 1160, + "repository_id": 1262, + "parent_product_id": 843, + "root_product_id": 843, + "update_tag": "sdksp1", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Updates/sle-11-i586/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SDK-SP1-Updates for i586 SLED", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-sdk-sp1-pool-i586-sled", + "parent_channel_label": "sled11-sp1-pool-i586", + "product_id": 1160, + "repository_id": 1263, + "parent_product_id": 843, + "root_product_id": 843, + "update_tag": "sdksp1", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-i586/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SDK-SP1-Pool for i586 SLED", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-sdk-sp2-updates-i586-sled", + "parent_channel_label": "sled11-sp1-pool-i586", + "product_id": 1160, + "repository_id": 1271, + "parent_product_id": 843, + "root_product_id": 843, + "update_tag": "sdksp2", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-i586/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SDK-SP2-Updates for i586 SLED", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-sdk-sp2-core-i586-sled", + "parent_channel_label": "sled11-sp1-pool-i586", + "product_id": 1160, + "repository_id": 1274, + "parent_product_id": 843, + "root_product_id": 843, + "update_tag": "sdksp2", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-i586/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SDK-SP2-Core for i586 SLED", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-sp1-debuginfo-pool-i586-sled-sp3", + "parent_channel_label": "sled11-sp3-pool-i586", + "product_id": 892, + "repository_id": 680, + "parent_product_id": null, + "root_product_id": 892, + "update_tag": "dbgsp1", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Pool/sle-11-i586/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SP1-Debuginfo-Pool for i586 SLED-SP3", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-sp1-debuginfo-updates-i586-sled-sp3", + "parent_channel_label": "sled11-sp3-pool-i586", + "product_id": 892, + "repository_id": 682, + "parent_product_id": null, + "root_product_id": 892, + "update_tag": "dbgsp1", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Updates/sle-11-i586/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SP1-Debuginfo-Updates for i586 SLED-SP3", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-sp2-debuginfo-core-i586-sled-sp3", + "parent_channel_label": "sled11-sp3-pool-i586", + "product_id": 892, + "repository_id": 717, + "parent_product_id": null, + "root_product_id": 892, + "update_tag": "dbgsp2", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SP2-Debuginfo-Core/sle-11-i586/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SP2-Debuginfo-Core for i586 SLED-SP3", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-sp2-debuginfo-updates-i586-sled-sp3", + "parent_channel_label": "sled11-sp3-pool-i586", + "product_id": 892, + "repository_id": 719, + "parent_product_id": null, + "root_product_id": 892, + "update_tag": "dbgsp2", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SP2-Debuginfo-Updates/sle-11-i586/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SP2-Debuginfo-Updates for i586 SLED-SP3", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-sp3-debuginfo-updates-i586-sled-sp3", + "parent_channel_label": "sled11-sp3-pool-i586", + "product_id": 892, + "repository_id": 759, + "parent_product_id": null, + "root_product_id": 892, + "update_tag": "dbgsp3", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SP3-Debuginfo-Updates/sle-11-i586/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SP3-Debuginfo-Updates for i586 SLED-SP3", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-sp3-debuginfo-pool-i586-sled-sp3", + "parent_channel_label": "sled11-sp3-pool-i586", + "product_id": 892, + "repository_id": 763, + "parent_product_id": null, + "root_product_id": 892, + "update_tag": "dbgsp3", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SP3-Debuginfo-Pool/sle-11-i586/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SP3-Debuginfo-Pool for i586 SLED-SP3", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sled11-extras-i586-sled-sp3", + "parent_channel_label": "sled11-sp3-pool-i586", + "product_id": 892, + "repository_id": 846, + "parent_product_id": null, + "root_product_id": 892, + "update_tag": null, + "url": "https://updates.suse.com/repo/$RCE/SLED11-Extras/sle-11-i586/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLED11-Extras for i586 SLED-SP3", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sled11-sp1-updates-i586-sled-sp3", + "parent_channel_label": "sled11-sp3-pool-i586", + "product_id": 892, + "repository_id": 851, + "parent_product_id": null, + "root_product_id": 892, + "update_tag": "sledsp1", + "url": "https://updates.suse.com/repo/$RCE/SLED11-SP1-Updates/sle-11-i586/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLED11-SP1-Updates for i586 SLED-SP3", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sled11-sp1-pool-i586-sled-sp3", + "parent_channel_label": "sled11-sp3-pool-i586", + "product_id": 892, + "repository_id": 852, + "parent_product_id": null, + "root_product_id": 892, + "update_tag": "sledsp1", + "url": "https://updates.suse.com/repo/$RCE/SLED11-SP1-Pool/sle-11-i586/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLED11-SP1-Pool for i586 SLED-SP3", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sled11-sp2-core-i586-sled-sp3", + "parent_channel_label": "sled11-sp3-pool-i586", + "product_id": 892, + "repository_id": 856, + "parent_product_id": null, + "root_product_id": 892, + "update_tag": "sledsp2", + "url": "https://updates.suse.com/repo/$RCE/SLED11-SP2-Core/sle-11-i586/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLED11-SP2-Core for i586 SLED-SP3", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sled11-sp2-updates-i586-sled-sp3", + "parent_channel_label": "sled11-sp3-pool-i586", + "product_id": 892, + "repository_id": 857, + "parent_product_id": null, + "root_product_id": 892, + "update_tag": "sledsp2", + "url": "https://updates.suse.com/repo/$RCE/SLED11-SP2-Updates/sle-11-i586/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLED11-SP2-Updates for i586 SLED-SP3", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "nvidia-driver-sle11-sp3-i586", + "parent_channel_label": "sled11-sp3-pool-i586", + "product_id": 892, + "repository_id": 889, + "parent_product_id": null, + "root_product_id": 892, + "update_tag": null, + "url": "http://download.nvidia.com/novell/sle11sp3/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "nVidia-Driver-SLE11-SP3 i586", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sled11-sp3-updates-i586", + "parent_channel_label": "sled11-sp3-pool-i586", + "product_id": 892, + "repository_id": 890, + "parent_product_id": null, + "root_product_id": 892, + "update_tag": "sledsp3", + "url": "https://updates.suse.com/repo/$RCE/SLED11-SP3-Updates/sle-11-i586/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLED11-SP3-Updates for i586", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sled11-sp3-pool-i586", + "parent_channel_label": null, + "product_id": 892, + "repository_id": 891, + "parent_product_id": null, + "root_product_id": 892, + "update_tag": "sledsp3", + "url": "https://updates.suse.com/repo/$RCE/SLED11-SP3-Pool/sle-11-i586/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLED11-SP3-Pool for i586", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles11-sp2-suse-manager-tools-i586-sled-sp3", + "parent_channel_label": "sled11-sp3-pool-i586", + "product_id": 892, + "repository_id": 1567, + "parent_product_id": null, + "root_product_id": 892, + "update_tag": "slesctsp2", + "url": "https://updates.suse.com/repo/$RCE/SLES11-SP2-SUSE-Manager-Tools/sle-11-i586/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLES11-SP2-SUSE-Manager-Tools i586 SLED-SP3", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sles11-sp3-suse-manager-tools-i586-sled-sp3", + "parent_channel_label": "sled11-sp3-pool-i586", + "product_id": 892, + "repository_id": 1572, + "parent_product_id": null, + "root_product_id": 892, + "update_tag": "slesctsp3", + "url": "https://updates.suse.com/repo/$RCE/SLES11-SP3-SUSE-Manager-Tools/sle-11-i586/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLES11-SP3-SUSE-Manager-Tools i586 SLED-SP3", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle11-sdk-sp1-updates-i586-sled-sp3", + "parent_channel_label": "sled11-sp3-pool-i586", + "product_id": 1161, + "repository_id": 1262, + "parent_product_id": 892, + "root_product_id": 892, + "update_tag": "sdksp1", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Updates/sle-11-i586/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SDK-SP1-Updates for i586 SLED-SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-sdk-sp1-pool-i586-sled-sp3", + "parent_channel_label": "sled11-sp3-pool-i586", + "product_id": 1161, + "repository_id": 1263, + "parent_product_id": 892, + "root_product_id": 892, + "update_tag": "sdksp1", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-i586/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SDK-SP1-Pool for i586 SLED-SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-sdk-sp2-updates-i586-sled-sp3", + "parent_channel_label": "sled11-sp3-pool-i586", + "product_id": 1161, + "repository_id": 1271, + "parent_product_id": 892, + "root_product_id": 892, + "update_tag": "sdksp2", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-i586/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SDK-SP2-Updates for i586 SLED-SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-sdk-sp2-core-i586-sled-sp3", + "parent_channel_label": "sled11-sp3-pool-i586", + "product_id": 1161, + "repository_id": 1274, + "parent_product_id": 892, + "root_product_id": 892, + "update_tag": "sdksp2", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-i586/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SDK-SP2-Core for i586 SLED-SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-sdk-sp3-pool-i586-sled-sp3", + "parent_channel_label": "sled11-sp3-pool-i586", + "product_id": 1161, + "repository_id": 1277, + "parent_product_id": 892, + "root_product_id": 892, + "update_tag": "sdksp3", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Pool/sle-11-i586/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SDK-SP3-Pool for i586 SLED-SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-sdk-sp3-updates-i586-sled-sp3", + "parent_channel_label": "sled11-sp3-pool-i586", + "product_id": 1161, + "repository_id": 1285, + "parent_product_id": 892, + "root_product_id": 892, + "update_tag": "sdksp3", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Updates/sle-11-i586/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SDK-SP3-Updates for i586 SLED-SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-sp1-debuginfo-pool-x86_64-sled", + "parent_channel_label": "sled11-sp1-pool-x86_64", + "product_id": 901, + "repository_id": 707, + "parent_product_id": null, + "root_product_id": 901, + "update_tag": "dbgsp1", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Pool/sle-11-x86_64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SP1-Debuginfo-Pool for x86_64 SLED", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-sp2-debuginfo-updates-x86_64-sled", + "parent_channel_label": "sled11-sp1-pool-x86_64", + "product_id": 901, + "repository_id": 712, + "parent_product_id": null, + "root_product_id": 901, + "update_tag": "dbgsp2", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SP2-Debuginfo-Updates/sle-11-x86_64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SP2-Debuginfo-Updates for x86_64 SLED", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-sp1-debuginfo-updates-x86_64-sled", + "parent_channel_label": "sled11-sp1-pool-x86_64", + "product_id": 901, + "repository_id": 715, + "parent_product_id": null, + "root_product_id": 901, + "update_tag": "dbgsp1", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Updates/sle-11-x86_64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SP1-Debuginfo-Updates for x86_64 SLED", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-sp2-debuginfo-core-x86_64-sled", + "parent_channel_label": "sled11-sp1-pool-x86_64", + "product_id": 901, + "repository_id": 716, + "parent_product_id": null, + "root_product_id": 901, + "update_tag": "dbgsp2", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SP2-Debuginfo-Core/sle-11-x86_64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SP2-Debuginfo-Core for x86_64 SLED", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "nvidia-driver-sle11-sp2-x86_64", + "parent_channel_label": "sled11-sp1-pool-x86_64", + "product_id": 901, + "repository_id": 885, + "parent_product_id": null, + "root_product_id": 901, + "update_tag": null, + "url": "http://download.nvidia.com/novell/sle11sp2/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "nVidia-Driver-SLE11-SP2 x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sled11-sp2-updates-x86_64", + "parent_channel_label": "sled11-sp1-pool-x86_64", + "product_id": 901, + "repository_id": 886, + "parent_product_id": null, + "root_product_id": 901, + "update_tag": "sledsp2", + "url": "https://updates.suse.com/repo/$RCE/SLED11-SP2-Updates/sle-11-x86_64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLED11-SP2-Updates for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sled11-sp2-core-x86_64", + "parent_channel_label": "sled11-sp1-pool-x86_64", + "product_id": 901, + "repository_id": 887, + "parent_product_id": null, + "root_product_id": 901, + "update_tag": "sledsp2", + "url": "https://updates.suse.com/repo/$RCE/SLED11-SP2-Core/sle-11-x86_64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLED11-SP2-Core for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sled11-sp1-updates-x86_64", + "parent_channel_label": "sled11-sp1-pool-x86_64", + "product_id": 901, + "repository_id": 902, + "parent_product_id": null, + "root_product_id": 901, + "update_tag": "sledsp1", + "url": "https://updates.suse.com/repo/$RCE/SLED11-SP1-Updates/sle-11-x86_64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLED11-SP1-Updates for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sled11-extras-x86_64", + "parent_channel_label": "sled11-sp1-pool-x86_64", + "product_id": 901, + "repository_id": 903, + "parent_product_id": null, + "root_product_id": 901, + "update_tag": null, + "url": "https://updates.suse.com/repo/$RCE/SLED11-Extras/sle-11-x86_64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLED11-Extras for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sled11-sp1-pool-x86_64", + "parent_channel_label": null, + "product_id": 901, + "repository_id": 905, + "parent_product_id": null, + "root_product_id": 901, + "update_tag": "sledsp1", + "url": "https://updates.suse.com/repo/$RCE/SLED11-SP1-Pool/sle-11-x86_64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLED11-SP1-Pool for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sled11-sp2-suse-manager-tools-x86_64", + "parent_channel_label": "sled11-sp1-pool-x86_64", + "product_id": 901, + "repository_id": 1571, + "parent_product_id": null, + "root_product_id": 901, + "update_tag": "slesctsp2", + "url": "https://updates.suse.com/repo/$RCE/SLES11-SP2-SUSE-Manager-Tools/sle-11-x86_64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLED11-SP2-SUSE-Manager-Tools x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle11-sdk-sp1-pool-x86_64-sled", + "parent_channel_label": "sled11-sp1-pool-x86_64", + "product_id": 1160, + "repository_id": 1264, + "parent_product_id": 901, + "root_product_id": 901, + "update_tag": "sdksp1", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-x86_64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SDK-SP1-Pool for x86_64 SLED", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-sdk-sp1-updates-x86_64-sled", + "parent_channel_label": "sled11-sp1-pool-x86_64", + "product_id": 1160, + "repository_id": 1265, + "parent_product_id": 901, + "root_product_id": 901, + "update_tag": "sdksp1", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Updates/sle-11-x86_64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SDK-SP1-Updates for x86_64 SLED", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-sdk-sp2-core-x86_64-sled", + "parent_channel_label": "sled11-sp1-pool-x86_64", + "product_id": 1160, + "repository_id": 1275, + "parent_product_id": 901, + "root_product_id": 901, + "update_tag": "sdksp2", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-x86_64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SDK-SP2-Core for x86_64 SLED", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-sdk-sp2-updates-x86_64-sled", + "parent_channel_label": "sled11-sp1-pool-x86_64", + "product_id": 1160, + "repository_id": 1276, + "parent_product_id": 901, + "root_product_id": 901, + "update_tag": "sdksp2", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-x86_64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SDK-SP2-Updates for x86_64 SLED", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-sp1-debuginfo-pool-x86_64-sled-sp3", + "parent_channel_label": "sled11-sp3-pool-x86_64", + "product_id": 902, + "repository_id": 707, + "parent_product_id": null, + "root_product_id": 902, + "update_tag": "dbgsp1", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Pool/sle-11-x86_64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SP1-Debuginfo-Pool for x86_64 SLED-SP3", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-sp2-debuginfo-updates-x86_64-sled-sp3", + "parent_channel_label": "sled11-sp3-pool-x86_64", + "product_id": 902, + "repository_id": 712, + "parent_product_id": null, + "root_product_id": 902, + "update_tag": "dbgsp2", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SP2-Debuginfo-Updates/sle-11-x86_64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SP2-Debuginfo-Updates for x86_64 SLED-SP3", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-sp1-debuginfo-updates-x86_64-sled-sp3", + "parent_channel_label": "sled11-sp3-pool-x86_64", + "product_id": 902, + "repository_id": 715, + "parent_product_id": null, + "root_product_id": 902, + "update_tag": "dbgsp1", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Updates/sle-11-x86_64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SP1-Debuginfo-Updates for x86_64 SLED-SP3", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-sp2-debuginfo-core-x86_64-sled-sp3", + "parent_channel_label": "sled11-sp3-pool-x86_64", + "product_id": 902, + "repository_id": 716, + "parent_product_id": null, + "root_product_id": 902, + "update_tag": "dbgsp2", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SP2-Debuginfo-Core/sle-11-x86_64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SP2-Debuginfo-Core for x86_64 SLED-SP3", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-sp3-debuginfo-updates-x86_64-sled-sp3", + "parent_channel_label": "sled11-sp3-pool-x86_64", + "product_id": 902, + "repository_id": 735, + "parent_product_id": null, + "root_product_id": 902, + "update_tag": "dbgsp3", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SP3-Debuginfo-Updates/sle-11-x86_64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SP3-Debuginfo-Updates for x86_64 SLED-SP3", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-sp3-debuginfo-pool-x86_64-sled-sp3", + "parent_channel_label": "sled11-sp3-pool-x86_64", + "product_id": 902, + "repository_id": 736, + "parent_product_id": null, + "root_product_id": 902, + "update_tag": "dbgsp3", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SP3-Debuginfo-Pool/sle-11-x86_64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SP3-Debuginfo-Pool for x86_64 SLED-SP3", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sled11-sp2-updates-x86_64-sled-sp3", + "parent_channel_label": "sled11-sp3-pool-x86_64", + "product_id": 902, + "repository_id": 886, + "parent_product_id": null, + "root_product_id": 902, + "update_tag": "sledsp2", + "url": "https://updates.suse.com/repo/$RCE/SLED11-SP2-Updates/sle-11-x86_64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLED11-SP2-Updates for x86_64 SLED-SP3", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sled11-sp2-core-x86_64-sled-sp3", + "parent_channel_label": "sled11-sp3-pool-x86_64", + "product_id": 902, + "repository_id": 887, + "parent_product_id": null, + "root_product_id": 902, + "update_tag": "sledsp2", + "url": "https://updates.suse.com/repo/$RCE/SLED11-SP2-Core/sle-11-x86_64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLED11-SP2-Core for x86_64 SLED-SP3", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "nvidia-driver-sle11-sp3-x86_64", + "parent_channel_label": "sled11-sp3-pool-x86_64", + "product_id": 902, + "repository_id": 889, + "parent_product_id": null, + "root_product_id": 902, + "update_tag": null, + "url": "http://download.nvidia.com/novell/sle11sp3/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "nVidia-Driver-SLE11-SP3 x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sled11-sp3-pool-x86_64", + "parent_channel_label": null, + "product_id": 902, + "repository_id": 901, + "parent_product_id": null, + "root_product_id": 902, + "update_tag": "sledsp3", + "url": "https://updates.suse.com/repo/$RCE/SLED11-SP3-Pool/sle-11-x86_64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLED11-SP3-Pool for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sled11-sp1-updates-x86_64-sled-sp3", + "parent_channel_label": "sled11-sp3-pool-x86_64", + "product_id": 902, + "repository_id": 902, + "parent_product_id": null, + "root_product_id": 902, + "update_tag": "sledsp1", + "url": "https://updates.suse.com/repo/$RCE/SLED11-SP1-Updates/sle-11-x86_64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLED11-SP1-Updates for x86_64 SLED-SP3", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sled11-extras-x86_64-sled-sp3", + "parent_channel_label": "sled11-sp3-pool-x86_64", + "product_id": 902, + "repository_id": 903, + "parent_product_id": null, + "root_product_id": 902, + "update_tag": null, + "url": "https://updates.suse.com/repo/$RCE/SLED11-Extras/sle-11-x86_64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLED11-Extras for x86_64 SLED-SP3", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sled11-sp3-updates-x86_64", + "parent_channel_label": "sled11-sp3-pool-x86_64", + "product_id": 902, + "repository_id": 904, + "parent_product_id": null, + "root_product_id": 902, + "update_tag": "sledsp3", + "url": "https://updates.suse.com/repo/$RCE/SLED11-SP3-Updates/sle-11-x86_64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLED11-SP3-Updates for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sled11-sp1-pool-x86_64-sled-sp3", + "parent_channel_label": "sled11-sp3-pool-x86_64", + "product_id": 902, + "repository_id": 905, + "parent_product_id": null, + "root_product_id": 902, + "update_tag": "sledsp1", + "url": "https://updates.suse.com/repo/$RCE/SLED11-SP1-Pool/sle-11-x86_64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLED11-SP1-Pool for x86_64 SLED-SP3", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles11-sp3-suse-manager-tools-x86_64-sled-sp3", + "parent_channel_label": "sled11-sp3-pool-x86_64", + "product_id": 902, + "repository_id": 1208, + "parent_product_id": null, + "root_product_id": 902, + "update_tag": "slesctsp3", + "url": "https://updates.suse.com/repo/$RCE/SLES11-SP3-SUSE-Manager-Tools/sle-11-x86_64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLES11-SP3-SUSE-Manager-Tools x86_64 SLED-SP3", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sles11-sp2-suse-manager-tools-x86_64-sled-sp3", + "parent_channel_label": "sled11-sp3-pool-x86_64", + "product_id": 902, + "repository_id": 1571, + "parent_product_id": null, + "root_product_id": 902, + "update_tag": "slesctsp2", + "url": "https://updates.suse.com/repo/$RCE/SLES11-SP2-SUSE-Manager-Tools/sle-11-x86_64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLES11-SP2-SUSE-Manager-Tools x86_64 SLED-SP3", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle11-sdk-sp1-pool-x86_64-sled-sp3", + "parent_channel_label": "sled11-sp3-pool-x86_64", + "product_id": 1161, + "repository_id": 1264, + "parent_product_id": 902, + "root_product_id": 902, + "update_tag": "sdksp1", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-x86_64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SDK-SP1-Pool for x86_64 SLED-SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-sdk-sp1-updates-x86_64-sled-sp3", + "parent_channel_label": "sled11-sp3-pool-x86_64", + "product_id": 1161, + "repository_id": 1265, + "parent_product_id": 902, + "root_product_id": 902, + "update_tag": "sdksp1", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Updates/sle-11-x86_64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SDK-SP1-Updates for x86_64 SLED-SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-sdk-sp2-core-x86_64-sled-sp3", + "parent_channel_label": "sled11-sp3-pool-x86_64", + "product_id": 1161, + "repository_id": 1275, + "parent_product_id": 902, + "root_product_id": 902, + "update_tag": "sdksp2", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-x86_64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SDK-SP2-Core for x86_64 SLED-SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-sdk-sp2-updates-x86_64-sled-sp3", + "parent_channel_label": "sled11-sp3-pool-x86_64", + "product_id": 1161, + "repository_id": 1276, + "parent_product_id": 902, + "root_product_id": 902, + "update_tag": "sdksp2", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-x86_64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SDK-SP2-Updates for x86_64 SLED-SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-sdk-sp3-pool-x86_64-sled-sp3", + "parent_channel_label": "sled11-sp3-pool-x86_64", + "product_id": 1161, + "repository_id": 1281, + "parent_product_id": 902, + "root_product_id": 902, + "update_tag": "sdksp3", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Pool/sle-11-x86_64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SDK-SP3-Pool for x86_64 SLED-SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-sdk-sp3-updates-x86_64-sled-sp3", + "parent_channel_label": "sled11-sp3-pool-x86_64", + "product_id": 1161, + "repository_id": 1284, + "parent_product_id": 902, + "root_product_id": 902, + "update_tag": "sdksp3", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Updates/sle-11-x86_64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SDK-SP3-Updates for x86_64 SLED-SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles11-sp1-pool-ppc64", + "parent_channel_label": null, + "product_id": 940, + "repository_id": 919, + "parent_product_id": null, + "root_product_id": 940, + "update_tag": "slessp1", + "url": "https://updates.suse.com/repo/$RCE/SLES11-SP1-Pool/sle-11-ppc64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLES11-SP1-Pool for ppc64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles11-extras-ppc64", + "parent_channel_label": "sles11-sp1-pool-ppc64", + "product_id": 940, + "repository_id": 920, + "parent_product_id": null, + "root_product_id": 940, + "update_tag": null, + "url": "https://updates.suse.com/repo/$RCE/SLES11-Extras/sle-11-ppc64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLES11-Extras for ppc64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-webyast-sp1-updates-ppc64", + "parent_channel_label": "sles11-sp1-pool-ppc64", + "product_id": 940, + "repository_id": 921, + "parent_product_id": null, + "root_product_id": 940, + "update_tag": "slewystsp1", + "url": "https://updates.suse.com/repo/$RCE/SLE11-WebYaST-SP1-Updates/sle-11-ppc64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE11-WebYaST-SP1-Updates for ppc64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles11-sp1-updates-ppc64", + "parent_channel_label": "sles11-sp1-pool-ppc64", + "product_id": 940, + "repository_id": 922, + "parent_product_id": null, + "root_product_id": 940, + "update_tag": "slessp1", + "url": "https://updates.suse.com/repo/$RCE/SLES11-SP1-Updates/sle-11-ppc64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLES11-SP1-Updates for ppc64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-webyast-sp1-pool-ppc64", + "parent_channel_label": "sles11-sp1-pool-ppc64", + "product_id": 940, + "repository_id": 923, + "parent_product_id": null, + "root_product_id": 940, + "update_tag": "slewystsp1", + "url": "https://updates.suse.com/repo/$RCE/SLE11-WebYaST-SP1-Pool/sle-11-ppc64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE11-WebYaST-SP1-Pool for ppc64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-sp1-debuginfo-updates-ppc64", + "parent_channel_label": "sles11-sp1-pool-ppc64", + "product_id": 940, + "repository_id": 924, + "parent_product_id": null, + "root_product_id": 940, + "update_tag": "dbgsp1", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Updates/sle-11-ppc64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SP1-Debuginfo-Updates for ppc64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-sp1-debuginfo-pool-ppc64", + "parent_channel_label": "sles11-sp1-pool-ppc64", + "product_id": 940, + "repository_id": 925, + "parent_product_id": null, + "root_product_id": 940, + "update_tag": "dbgsp1", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Pool/sle-11-ppc64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SP1-Debuginfo-Pool for ppc64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles11-sp1-suse-manager-tools-ppc64", + "parent_channel_label": "sles11-sp1-pool-ppc64", + "product_id": 940, + "repository_id": 983, + "parent_product_id": null, + "root_product_id": 940, + "update_tag": "slesctsp1", + "url": "https://updates.suse.com/repo/$RCE/SLES11-SP1-SUSE-Manager-Tools/sle-11-ppc64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLES11-SP1-SUSE-Manager-Tools ppc64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle11-hae-sp1-pool-ppc64", + "parent_channel_label": "sles11-sp1-pool-ppc64", + "product_id": 1046, + "repository_id": 1043, + "parent_product_id": 940, + "root_product_id": 940, + "update_tag": "sleshasp1", + "url": "https://updates.suse.com/repo/$RCE/SLE11-HAE-SP1-Pool/sle-11-ppc64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE11-HAE-SP1-Pool for ppc64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-hae-sp1-updates-ppc64", + "parent_channel_label": "sles11-sp1-pool-ppc64", + "product_id": 1046, + "repository_id": 1044, + "parent_product_id": 940, + "root_product_id": 940, + "update_tag": "sleshasp1", + "url": "https://updates.suse.com/repo/$RCE/SLE11-HAE-SP1-Updates/sle-11-ppc64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE11-HAE-SP1-Updates for ppc64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-sdk-sp1-updates-ppc64", + "parent_channel_label": "sles11-sp1-pool-ppc64", + "product_id": 1159, + "repository_id": 1260, + "parent_product_id": 940, + "root_product_id": 940, + "update_tag": "sdksp1", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Updates/sle-11-ppc64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SDK-SP1-Updates for ppc64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-sdk-sp1-pool-ppc64", + "parent_channel_label": "sles11-sp1-pool-ppc64", + "product_id": 1159, + "repository_id": 1261, + "parent_product_id": 940, + "root_product_id": 940, + "update_tag": "sdksp1", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-ppc64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SDK-SP1-Pool for ppc64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles11-sp1-pool-ppc64", + "parent_channel_label": null, + "product_id": 946, + "repository_id": 919, + "parent_product_id": null, + "root_product_id": 946, + "update_tag": "slessp1", + "url": "https://updates.suse.com/repo/$RCE/SLES11-SP1-Pool/sle-11-ppc64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLES11-SP1-Pool for ppc64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles11-extras-ppc64", + "parent_channel_label": "sles11-sp1-pool-ppc64", + "product_id": 946, + "repository_id": 920, + "parent_product_id": null, + "root_product_id": 946, + "update_tag": null, + "url": "https://updates.suse.com/repo/$RCE/SLES11-Extras/sle-11-ppc64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLES11-Extras for ppc64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles11-sp1-updates-ppc64", + "parent_channel_label": "sles11-sp1-pool-ppc64", + "product_id": 946, + "repository_id": 922, + "parent_product_id": null, + "root_product_id": 946, + "update_tag": "slessp1", + "url": "https://updates.suse.com/repo/$RCE/SLES11-SP1-Updates/sle-11-ppc64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLES11-SP1-Updates for ppc64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-sp1-debuginfo-updates-ppc64", + "parent_channel_label": "sles11-sp1-pool-ppc64", + "product_id": 946, + "repository_id": 924, + "parent_product_id": null, + "root_product_id": 946, + "update_tag": "dbgsp1", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Updates/sle-11-ppc64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SP1-Debuginfo-Updates for ppc64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-sp1-debuginfo-pool-ppc64", + "parent_channel_label": "sles11-sp1-pool-ppc64", + "product_id": 946, + "repository_id": 925, + "parent_product_id": null, + "root_product_id": 946, + "update_tag": "dbgsp1", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Pool/sle-11-ppc64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SP1-Debuginfo-Pool for ppc64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-sp2-debuginfo-updates-ppc64", + "parent_channel_label": "sles11-sp1-pool-ppc64", + "product_id": 946, + "repository_id": 926, + "parent_product_id": null, + "root_product_id": 946, + "update_tag": "dbgsp2", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SP2-Debuginfo-Updates/sle-11-ppc64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SP2-Debuginfo-Updates for ppc64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles11-sp2-core-ppc64", + "parent_channel_label": "sles11-sp1-pool-ppc64", + "product_id": 946, + "repository_id": 927, + "parent_product_id": null, + "root_product_id": 946, + "update_tag": "slessp2", + "url": "https://updates.suse.com/repo/$RCE/SLES11-SP2-Core/sle-11-ppc64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLES11-SP2-Core for ppc64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles11-sp2-updates-ppc64", + "parent_channel_label": "sles11-sp1-pool-ppc64", + "product_id": 946, + "repository_id": 928, + "parent_product_id": null, + "root_product_id": 946, + "update_tag": "slessp2", + "url": "https://updates.suse.com/repo/$RCE/SLES11-SP2-Updates/sle-11-ppc64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLES11-SP2-Updates for ppc64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-webyast-sp2-pool-ppc64", + "parent_channel_label": "sles11-sp1-pool-ppc64", + "product_id": 946, + "repository_id": 929, + "parent_product_id": null, + "root_product_id": 946, + "update_tag": "slewystsp1", + "url": "https://updates.suse.com/repo/$RCE/SLE11-WebYaST-SP2-Pool/sle-11-ppc64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE11-WebYaST-SP2-Pool for ppc64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-sp2-debuginfo-core-ppc64", + "parent_channel_label": "sles11-sp1-pool-ppc64", + "product_id": 946, + "repository_id": 930, + "parent_product_id": null, + "root_product_id": 946, + "update_tag": "dbgsp2", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SP2-Debuginfo-Core/sle-11-ppc64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SP2-Debuginfo-Core for ppc64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-webyast-sp2-updates-ppc64", + "parent_channel_label": "sles11-sp1-pool-ppc64", + "product_id": 946, + "repository_id": 931, + "parent_product_id": null, + "root_product_id": 946, + "update_tag": "slewystsp1", + "url": "https://updates.suse.com/repo/$RCE/SLE11-WebYaST-SP2-Updates/sle-11-ppc64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE11-WebYaST-SP2-Updates for ppc64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles11-sp2-extension-store-ppc64", + "parent_channel_label": "sles11-sp1-pool-ppc64", + "product_id": 946, + "repository_id": 940, + "parent_product_id": null, + "root_product_id": 946, + "update_tag": "slessp2", + "url": "https://updates.suse.com/repo/$RCE/SLES11-SP2-Extension-Store/sle-11-ppc64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLES11-SP2-Extension-Store for ppc64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles11-sp2-suse-manager-tools-ppc64", + "parent_channel_label": "sles11-sp1-pool-ppc64", + "product_id": 946, + "repository_id": 1569, + "parent_product_id": null, + "root_product_id": 946, + "update_tag": "slesctsp2", + "url": "https://updates.suse.com/repo/$RCE/SLES11-SP2-SUSE-Manager-Tools/sle-11-ppc64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLES11-SP2-SUSE-Manager-Tools ppc64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle11-hae-sp2-pool-ppc64", + "parent_channel_label": "sles11-sp1-pool-ppc64", + "product_id": 1044, + "repository_id": 1041, + "parent_product_id": 946, + "root_product_id": 946, + "update_tag": "sleshasp2", + "url": "https://updates.suse.com/repo/$RCE/SLE11-HAE-SP2-Pool/sle-11-ppc64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE11-HAE-SP2-Pool for ppc64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-hae-sp2-updates-ppc64", + "parent_channel_label": "sles11-sp1-pool-ppc64", + "product_id": 1044, + "repository_id": 1042, + "parent_product_id": 946, + "root_product_id": 946, + "update_tag": "sleshasp2", + "url": "https://updates.suse.com/repo/$RCE/SLE11-HAE-SP2-Updates/sle-11-ppc64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE11-HAE-SP2-Updates for ppc64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-sdk-sp1-updates-ppc64", + "parent_channel_label": "sles11-sp1-pool-ppc64", + "product_id": 1160, + "repository_id": 1260, + "parent_product_id": 946, + "root_product_id": 946, + "update_tag": "sdksp1", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Updates/sle-11-ppc64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SDK-SP1-Updates for ppc64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-sdk-sp1-pool-ppc64", + "parent_channel_label": "sles11-sp1-pool-ppc64", + "product_id": 1160, + "repository_id": 1261, + "parent_product_id": 946, + "root_product_id": 946, + "update_tag": "sdksp1", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-ppc64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SDK-SP1-Pool for ppc64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-sdk-sp2-updates-ppc64", + "parent_channel_label": "sles11-sp1-pool-ppc64", + "product_id": 1160, + "repository_id": 1270, + "parent_product_id": 946, + "root_product_id": 946, + "update_tag": "sdksp2", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-ppc64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SDK-SP2-Updates for ppc64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-sdk-sp2-core-ppc64", + "parent_channel_label": "sles11-sp1-pool-ppc64", + "product_id": 1160, + "repository_id": 1273, + "parent_product_id": 946, + "root_product_id": 946, + "update_tag": "sdksp2", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-ppc64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SDK-SP2-Core for ppc64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-sp2-webyast-1.3-pool-ppc64", + "parent_channel_label": "sles11-sp1-pool-ppc64", + "product_id": 1206, + "repository_id": 1414, + "parent_product_id": 946, + "root_product_id": 946, + "update_tag": "slewyst13", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SP2-WebYaST-1.3-Pool/sle-11-ppc64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SP2-WebYaST-1.3-Pool for ppc64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-sp2-webyast-1.3-updates-ppc64", + "parent_channel_label": "sles11-sp1-pool-ppc64", + "product_id": 1206, + "repository_id": 1418, + "parent_product_id": 946, + "root_product_id": 946, + "update_tag": "slewyst13", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SP2-WebYaST-1.3-Updates/sle-11-ppc64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SP2-WebYaST-1.3-Updates for ppc64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles11-sp1-pool-ppc64-sles-sp3", + "parent_channel_label": "sles11-sp3-pool-ppc64", + "product_id": 949, + "repository_id": 919, + "parent_product_id": null, + "root_product_id": 949, + "update_tag": "slessp1", + "url": "https://updates.suse.com/repo/$RCE/SLES11-SP1-Pool/sle-11-ppc64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLES11-SP1-Pool for ppc64 SLES-SP3", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles11-extras-ppc64-sles-sp3", + "parent_channel_label": "sles11-sp3-pool-ppc64", + "product_id": 949, + "repository_id": 920, + "parent_product_id": null, + "root_product_id": 949, + "update_tag": null, + "url": "https://updates.suse.com/repo/$RCE/SLES11-Extras/sle-11-ppc64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLES11-Extras for ppc64 SLES-SP3", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles11-sp1-updates-ppc64-sles-sp3", + "parent_channel_label": "sles11-sp3-pool-ppc64", + "product_id": 949, + "repository_id": 922, + "parent_product_id": null, + "root_product_id": 949, + "update_tag": "slessp1", + "url": "https://updates.suse.com/repo/$RCE/SLES11-SP1-Updates/sle-11-ppc64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLES11-SP1-Updates for ppc64 SLES-SP3", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-sp1-debuginfo-updates-ppc64-sles-sp3", + "parent_channel_label": "sles11-sp3-pool-ppc64", + "product_id": 949, + "repository_id": 924, + "parent_product_id": null, + "root_product_id": 949, + "update_tag": "dbgsp1", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Updates/sle-11-ppc64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SP1-Debuginfo-Updates for ppc64 SLES-SP3", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-sp1-debuginfo-pool-ppc64-sles-sp3", + "parent_channel_label": "sles11-sp3-pool-ppc64", + "product_id": 949, + "repository_id": 925, + "parent_product_id": null, + "root_product_id": 949, + "update_tag": "dbgsp1", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Pool/sle-11-ppc64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SP1-Debuginfo-Pool for ppc64 SLES-SP3", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-sp2-debuginfo-updates-ppc64-sles-sp3", + "parent_channel_label": "sles11-sp3-pool-ppc64", + "product_id": 949, + "repository_id": 926, + "parent_product_id": null, + "root_product_id": 949, + "update_tag": "dbgsp2", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SP2-Debuginfo-Updates/sle-11-ppc64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SP2-Debuginfo-Updates for ppc64 SLES-SP3", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles11-sp2-core-ppc64-sles-sp3", + "parent_channel_label": "sles11-sp3-pool-ppc64", + "product_id": 949, + "repository_id": 927, + "parent_product_id": null, + "root_product_id": 949, + "update_tag": "slessp2", + "url": "https://updates.suse.com/repo/$RCE/SLES11-SP2-Core/sle-11-ppc64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLES11-SP2-Core for ppc64 SLES-SP3", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles11-sp2-updates-ppc64-sles-sp3", + "parent_channel_label": "sles11-sp3-pool-ppc64", + "product_id": 949, + "repository_id": 928, + "parent_product_id": null, + "root_product_id": 949, + "update_tag": "slessp2", + "url": "https://updates.suse.com/repo/$RCE/SLES11-SP2-Updates/sle-11-ppc64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLES11-SP2-Updates for ppc64 SLES-SP3", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-sp2-debuginfo-core-ppc64-sles-sp3", + "parent_channel_label": "sles11-sp3-pool-ppc64", + "product_id": 949, + "repository_id": 930, + "parent_product_id": null, + "root_product_id": 949, + "update_tag": "dbgsp2", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SP2-Debuginfo-Core/sle-11-ppc64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SP2-Debuginfo-Core for ppc64 SLES-SP3", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles11-sp3-updates-ppc64", + "parent_channel_label": "sles11-sp3-pool-ppc64", + "product_id": 949, + "repository_id": 936, + "parent_product_id": null, + "root_product_id": 949, + "update_tag": "slessp3", + "url": "https://updates.suse.com/repo/$RCE/SLES11-SP3-Updates/sle-11-ppc64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLES11-SP3-Updates for ppc64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-sp3-debuginfo-pool-ppc64", + "parent_channel_label": "sles11-sp3-pool-ppc64", + "product_id": 949, + "repository_id": 937, + "parent_product_id": null, + "root_product_id": 949, + "update_tag": "dbgsp3", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SP3-Debuginfo-Pool/sle-11-ppc64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SP3-Debuginfo-Pool for ppc64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles11-sp3-extension-store-ppc64", + "parent_channel_label": "sles11-sp3-pool-ppc64", + "product_id": 949, + "repository_id": 938, + "parent_product_id": null, + "root_product_id": 949, + "update_tag": "slessp3", + "url": "https://updates.suse.com/repo/$RCE/SLES11-SP3-Extension-Store/sle-11-ppc64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLES11-SP3-Extension-Store for ppc64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles11-sp3-pool-ppc64", + "parent_channel_label": null, + "product_id": 949, + "repository_id": 939, + "parent_product_id": null, + "root_product_id": 949, + "update_tag": "slessp3", + "url": "https://updates.suse.com/repo/$RCE/SLES11-SP3-Pool/sle-11-ppc64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLES11-SP3-Pool for ppc64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles11-sp2-extension-store-ppc64-sles-sp3", + "parent_channel_label": "sles11-sp3-pool-ppc64", + "product_id": 949, + "repository_id": 940, + "parent_product_id": null, + "root_product_id": 949, + "update_tag": "slessp2", + "url": "https://updates.suse.com/repo/$RCE/SLES11-SP2-Extension-Store/sle-11-ppc64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLES11-SP2-Extension-Store for ppc64 SLES-SP3", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-sp3-debuginfo-updates-ppc64", + "parent_channel_label": "sles11-sp3-pool-ppc64", + "product_id": 949, + "repository_id": 941, + "parent_product_id": null, + "root_product_id": 949, + "update_tag": "dbgsp3", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SP3-Debuginfo-Updates/sle-11-ppc64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SP3-Debuginfo-Updates for ppc64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-security-module-ppc64", + "parent_channel_label": "sles11-sp3-pool-ppc64", + "product_id": 949, + "repository_id": 1380, + "parent_product_id": null, + "root_product_id": 949, + "update_tag": "secsp3", + "url": "https://updates.suse.com/repo/$RCE/SLE11-Security-Module/sle-11-ppc64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE11-Security-Module for ppc64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles11-sp2-suse-manager-tools-ppc64-sp3", + "parent_channel_label": "sles11-sp3-pool-ppc64", + "product_id": 949, + "repository_id": 1569, + "parent_product_id": null, + "root_product_id": 949, + "update_tag": "slesctsp2", + "url": "https://updates.suse.com/repo/$RCE/SLES11-SP2-SUSE-Manager-Tools/sle-11-ppc64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLES11-SP2-SUSE-Manager-Tools ppc64 SP3", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sles11-sp3-suse-manager-tools-ppc64", + "parent_channel_label": "sles11-sp3-pool-ppc64", + "product_id": 949, + "repository_id": 1574, + "parent_product_id": null, + "root_product_id": 949, + "update_tag": "slesctsp3", + "url": "https://updates.suse.com/repo/$RCE/SLES11-SP3-SUSE-Manager-Tools/sle-11-ppc64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLES11-SP3-SUSE-Manager-Tools ppc64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle11-public-cloud-module-ppc64", + "parent_channel_label": "sles11-sp3-pool-ppc64", + "product_id": 949, + "repository_id": 1780, + "parent_product_id": null, + "root_product_id": 949, + "update_tag": "pubclsp3", + "url": "https://updates.suse.com/repo/$RCE/SLE11-Public-Cloud-Module/sle-11-ppc64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE11-Public-Cloud-Module for ppc64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-hae-sp3-pool-ppc64", + "parent_channel_label": "sles11-sp3-pool-ppc64", + "product_id": 1042, + "repository_id": 1045, + "parent_product_id": 949, + "root_product_id": 949, + "update_tag": "sleshasp3", + "url": "https://updates.suse.com/repo/$RCE/SLE11-HAE-SP3-Pool/sle-11-ppc64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE11-HAE-SP3-Pool for ppc64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-hae-sp3-updates-ppc64", + "parent_channel_label": "sles11-sp3-pool-ppc64", + "product_id": 1042, + "repository_id": 1046, + "parent_product_id": 949, + "root_product_id": 949, + "update_tag": "sleshasp3", + "url": "https://updates.suse.com/repo/$RCE/SLE11-HAE-SP3-Updates/sle-11-ppc64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE11-HAE-SP3-Updates for ppc64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-sdk-sp1-updates-ppc64-sdk-sp3", + "parent_channel_label": "sles11-sp3-pool-ppc64", + "product_id": 1161, + "repository_id": 1260, + "parent_product_id": 949, + "root_product_id": 949, + "update_tag": "sdksp1", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Updates/sle-11-ppc64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SDK-SP1-Updates for ppc64 SDK-SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-sdk-sp1-pool-ppc64-sdk-sp3", + "parent_channel_label": "sles11-sp3-pool-ppc64", + "product_id": 1161, + "repository_id": 1261, + "parent_product_id": 949, + "root_product_id": 949, + "update_tag": "sdksp1", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-ppc64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SDK-SP1-Pool for ppc64 SDK-SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-sdk-sp2-updates-ppc64-sdk-sp3", + "parent_channel_label": "sles11-sp3-pool-ppc64", + "product_id": 1161, + "repository_id": 1270, + "parent_product_id": 949, + "root_product_id": 949, + "update_tag": "sdksp2", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-ppc64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SDK-SP2-Updates for ppc64 SDK-SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-sdk-sp2-core-ppc64-sdk-sp3", + "parent_channel_label": "sles11-sp3-pool-ppc64", + "product_id": 1161, + "repository_id": 1273, + "parent_product_id": 949, + "root_product_id": 949, + "update_tag": "sdksp2", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-ppc64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SDK-SP2-Core for ppc64 SDK-SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-sdk-sp3-updates-ppc64", + "parent_channel_label": "sles11-sp3-pool-ppc64", + "product_id": 1161, + "repository_id": 1279, + "parent_product_id": 949, + "root_product_id": 949, + "update_tag": "sdksp3", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Updates/sle-11-ppc64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SDK-SP3-Updates for ppc64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-sdk-sp3-pool-ppc64", + "parent_channel_label": "sles11-sp3-pool-ppc64", + "product_id": 1161, + "repository_id": 1283, + "parent_product_id": 949, + "root_product_id": 949, + "update_tag": "sdksp3", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Pool/sle-11-ppc64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SDK-SP3-Pool for ppc64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-sp2-webyast-1.3-pool-ppc64-sp3", + "parent_channel_label": "sles11-sp3-pool-ppc64", + "product_id": 1206, + "repository_id": 1414, + "parent_product_id": 949, + "root_product_id": 949, + "update_tag": "slewyst13", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SP2-WebYaST-1.3-Pool/sle-11-ppc64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SP2-WebYaST-1.3-Pool for ppc64 SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-sp2-webyast-1.3-updates-ppc64-sp3", + "parent_channel_label": "sles11-sp3-pool-ppc64", + "product_id": 1206, + "repository_id": 1418, + "parent_product_id": 949, + "root_product_id": 949, + "update_tag": "slewyst13", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SP2-WebYaST-1.3-Updates/sle-11-ppc64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SP2-WebYaST-1.3-Updates for ppc64 SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles11-extras-i586-vmware-sp3", + "parent_channel_label": "sles11-sp3-vmware-pool-i586", + "product_id": 993, + "repository_id": 679, + "parent_product_id": null, + "root_product_id": 993, + "update_tag": null, + "url": "https://updates.suse.com/repo/$RCE/SLES11-Extras/sle-11-i586/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLES11-Extras for i586 VMWare-SP3", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-sp1-debuginfo-pool-i586-vmware-sp3", + "parent_channel_label": "sles11-sp3-vmware-pool-i586", + "product_id": 993, + "repository_id": 680, + "parent_product_id": null, + "root_product_id": 993, + "update_tag": "dbgsp1", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Pool/sle-11-i586/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SP1-Debuginfo-Pool for i586 VMWare-SP3", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-sp1-debuginfo-updates-i586-vmware-sp3", + "parent_channel_label": "sles11-sp3-vmware-pool-i586", + "product_id": 993, + "repository_id": 682, + "parent_product_id": null, + "root_product_id": 993, + "update_tag": "dbgsp1", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Updates/sle-11-i586/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SP1-Debuginfo-Updates for i586 VMWare-SP3", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-sp1-debuginfo-pool-x86_64-vmware-sp3", + "parent_channel_label": "sles11-sp3-vmware-pool-x86_64", + "product_id": 993, + "repository_id": 707, + "parent_product_id": null, + "root_product_id": 993, + "update_tag": "dbgsp1", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Pool/sle-11-x86_64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SP1-Debuginfo-Pool for x86_64 VMWare-SP3", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles11-extras-x86_64-vmware-sp3", + "parent_channel_label": "sles11-sp3-vmware-pool-x86_64", + "product_id": 993, + "repository_id": 710, + "parent_product_id": null, + "root_product_id": 993, + "update_tag": null, + "url": "https://updates.suse.com/repo/$RCE/SLES11-Extras/sle-11-x86_64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLES11-Extras for x86_64 VMWare-SP3", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-sp2-debuginfo-updates-x86_64-vmware-sp3", + "parent_channel_label": "sles11-sp3-vmware-pool-x86_64", + "product_id": 993, + "repository_id": 712, + "parent_product_id": null, + "root_product_id": 993, + "update_tag": "dbgsp2", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SP2-Debuginfo-Updates/sle-11-x86_64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SP2-Debuginfo-Updates for x86_64 VMWare-SP3", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles11-sp2-extension-store-x86_64-vmware-sp3", + "parent_channel_label": "sles11-sp3-vmware-pool-x86_64", + "product_id": 993, + "repository_id": 713, + "parent_product_id": null, + "root_product_id": 993, + "update_tag": "slessp2", + "url": "https://updates.suse.com/repo/$RCE/SLES11-SP2-Extension-Store/sle-11-x86_64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLES11-SP2-Extension-Store for x86_64 VMWare-SP3", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-sp1-debuginfo-updates-x86_64-vmware-sp3", + "parent_channel_label": "sles11-sp3-vmware-pool-x86_64", + "product_id": 993, + "repository_id": 715, + "parent_product_id": null, + "root_product_id": 993, + "update_tag": "dbgsp1", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Updates/sle-11-x86_64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SP1-Debuginfo-Updates for x86_64 VMWare-SP3", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-sp2-debuginfo-core-x86_64-vmware-sp3", + "parent_channel_label": "sles11-sp3-vmware-pool-x86_64", + "product_id": 993, + "repository_id": 716, + "parent_product_id": null, + "root_product_id": 993, + "update_tag": "dbgsp2", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SP2-Debuginfo-Core/sle-11-x86_64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SP2-Debuginfo-Core for x86_64 VMWare-SP3", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-sp2-debuginfo-core-i586-vmware-sp3", + "parent_channel_label": "sles11-sp3-vmware-pool-i586", + "product_id": 993, + "repository_id": 717, + "parent_product_id": null, + "root_product_id": 993, + "update_tag": "dbgsp2", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SP2-Debuginfo-Core/sle-11-i586/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SP2-Debuginfo-Core for i586 VMWare-SP3", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-sp2-debuginfo-updates-i586-vmware-sp3", + "parent_channel_label": "sles11-sp3-vmware-pool-i586", + "product_id": 993, + "repository_id": 719, + "parent_product_id": null, + "root_product_id": 993, + "update_tag": "dbgsp2", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SP2-Debuginfo-Updates/sle-11-i586/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SP2-Debuginfo-Updates for i586 VMWare-SP3", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-sp3-debuginfo-updates-x86_64-vmware-sp3", + "parent_channel_label": "sles11-sp3-vmware-pool-x86_64", + "product_id": 993, + "repository_id": 735, + "parent_product_id": null, + "root_product_id": 993, + "update_tag": "dbgsp3", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SP3-Debuginfo-Updates/sle-11-x86_64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SP3-Debuginfo-Updates for x86_64 VMWare-SP3", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-sp3-debuginfo-pool-x86_64-vmware-sp3", + "parent_channel_label": "sles11-sp3-vmware-pool-x86_64", + "product_id": 993, + "repository_id": 736, + "parent_product_id": null, + "root_product_id": 993, + "update_tag": "dbgsp3", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SP3-Debuginfo-Pool/sle-11-x86_64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SP3-Debuginfo-Pool for x86_64 VMWare-SP3", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-sp3-debuginfo-updates-i586-vmware-sp3", + "parent_channel_label": "sles11-sp3-vmware-pool-i586", + "product_id": 993, + "repository_id": 759, + "parent_product_id": null, + "root_product_id": 993, + "update_tag": "dbgsp3", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SP3-Debuginfo-Updates/sle-11-i586/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SP3-Debuginfo-Updates for i586 VMWare-SP3", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles11-sp2-extension-store-i586-vmware-sp3", + "parent_channel_label": "sles11-sp3-vmware-pool-i586", + "product_id": 993, + "repository_id": 761, + "parent_product_id": null, + "root_product_id": 993, + "update_tag": "slessp2", + "url": "https://updates.suse.com/repo/$RCE/SLES11-SP2-Extension-Store/sle-11-i586/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLES11-SP2-Extension-Store for i586 VMWare-SP3", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-sp3-debuginfo-pool-i586-vmware-sp3", + "parent_channel_label": "sles11-sp3-vmware-pool-i586", + "product_id": 993, + "repository_id": 763, + "parent_product_id": null, + "root_product_id": 993, + "update_tag": "dbgsp3", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SP3-Debuginfo-Pool/sle-11-i586/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SP3-Debuginfo-Pool for i586 VMWare-SP3", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles11-sp2-vmware-updates-i586-vmware-sp3", + "parent_channel_label": "sles11-sp3-vmware-pool-i586", + "product_id": 993, + "repository_id": 958, + "parent_product_id": null, + "root_product_id": 993, + "update_tag": "slessp2", + "url": "https://updates.suse.com/repo/$RCE/SLES11-SP2-VMware-Updates/sle-11-i586/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLES11-SP2-VMware-Updates for i586 VMWare-SP3", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles11-sp1-vmware-pool-i586-vmware-sp3", + "parent_channel_label": "sles11-sp3-vmware-pool-i586", + "product_id": 993, + "repository_id": 959, + "parent_product_id": null, + "root_product_id": 993, + "update_tag": "slessp1", + "url": "https://updates.suse.com/repo/$RCE/SLES11-SP1-VMware-Pool/sle-11-i586/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLES11-SP1-VMware-Pool for i586 VMWare-SP3", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles11-sp3-vmware-updates-i586", + "parent_channel_label": "sles11-sp3-vmware-pool-i586", + "product_id": 993, + "repository_id": 960, + "parent_product_id": null, + "root_product_id": 993, + "update_tag": "slessp3", + "url": "https://updates.suse.com/repo/$RCE/SLES11-SP3-VMware-Updates/sle-11-i586/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLES11-SP3-VMware-Updates for i586", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles11-sp1-vmware-updates-i586-vmware-sp3", + "parent_channel_label": "sles11-sp3-vmware-pool-i586", + "product_id": 993, + "repository_id": 961, + "parent_product_id": null, + "root_product_id": 993, + "update_tag": "slessp1", + "url": "https://updates.suse.com/repo/$RCE/SLES11-SP1-VMware-Updates/sle-11-i586/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLES11-SP1-VMware-Updates for i586 VMWare-SP3", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles11-sp2-vmware-core-i586-vmware-sp3", + "parent_channel_label": "sles11-sp3-vmware-pool-i586", + "product_id": 993, + "repository_id": 962, + "parent_product_id": null, + "root_product_id": 993, + "update_tag": "slessp2", + "url": "https://updates.suse.com/repo/$RCE/SLES11-SP2-VMware-Core/sle-11-i586/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLES11-SP2-VMware-Core for i586 VMWare-SP3", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles11-sp3-vmware-pool-i586", + "parent_channel_label": null, + "product_id": 993, + "repository_id": 963, + "parent_product_id": null, + "root_product_id": 993, + "update_tag": "slessp3", + "url": "https://updates.suse.com/repo/$RCE/SLES11-SP3-VMware-Pool/sle-11-i586/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLES11-SP3-VMware-Pool for i586", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles11-sp2-vmware-core-x86_64-vmware-sp3", + "parent_channel_label": "sles11-sp3-vmware-pool-x86_64", + "product_id": 993, + "repository_id": 964, + "parent_product_id": null, + "root_product_id": 993, + "update_tag": "slessp2", + "url": "https://updates.suse.com/repo/$RCE/SLES11-SP2-VMware-Core/sle-11-x86_64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLES11-SP2-VMware-Core for x86_64 VMWare-SP3", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles11-sp2-vmware-updates-x86_64-vmware-sp3", + "parent_channel_label": "sles11-sp3-vmware-pool-x86_64", + "product_id": 993, + "repository_id": 965, + "parent_product_id": null, + "root_product_id": 993, + "update_tag": "slessp2", + "url": "https://updates.suse.com/repo/$RCE/SLES11-SP2-VMware-Updates/sle-11-x86_64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLES11-SP2-VMware-Updates for x86_64 VMWare-SP3", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles11-sp1-vmware-updates-x86_64-vmware-sp3", + "parent_channel_label": "sles11-sp3-vmware-pool-x86_64", + "product_id": 993, + "repository_id": 966, + "parent_product_id": null, + "root_product_id": 993, + "update_tag": "slessp1", + "url": "https://updates.suse.com/repo/$RCE/SLES11-SP1-VMware-Updates/sle-11-x86_64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLES11-SP1-VMware-Updates for x86_64 VMWare-SP3", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles11-sp1-vmware-pool-x86_64-vmware-sp3", + "parent_channel_label": "sles11-sp3-vmware-pool-x86_64", + "product_id": 993, + "repository_id": 967, + "parent_product_id": null, + "root_product_id": 993, + "update_tag": "slessp1", + "url": "https://updates.suse.com/repo/$RCE/SLES11-SP1-VMware-Pool/sle-11-x86_64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLES11-SP1-VMware-Pool for x86_64 VMWare-SP3", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles11-sp3-vmware-pool-x86_64", + "parent_channel_label": null, + "product_id": 993, + "repository_id": 968, + "parent_product_id": null, + "root_product_id": 993, + "update_tag": "slessp3", + "url": "https://updates.suse.com/repo/$RCE/SLES11-SP3-VMware-Pool/sle-11-x86_64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLES11-SP3-VMware-Pool for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles11-sp3-vmware-updates-x86_64", + "parent_channel_label": "sles11-sp3-vmware-pool-x86_64", + "product_id": 993, + "repository_id": 969, + "parent_product_id": null, + "root_product_id": 993, + "update_tag": "slessp3", + "url": "https://updates.suse.com/repo/$RCE/SLES11-SP3-VMware-Updates/sle-11-x86_64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLES11-SP3-VMware-Updates for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles11-sp3-suse-manager-tools-x86_64-vmware-sp3", + "parent_channel_label": "sles11-sp3-vmware-pool-x86_64", + "product_id": 993, + "repository_id": 1208, + "parent_product_id": null, + "root_product_id": 993, + "update_tag": "slesctsp3", + "url": "https://updates.suse.com/repo/$RCE/SLES11-SP3-SUSE-Manager-Tools/sle-11-x86_64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLES11-SP3-SUSE-Manager-Tools x86_64 VMWare-SP3", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sles11-sp2-suse-manager-tools-i586-vmware-sp3", + "parent_channel_label": "sles11-sp3-vmware-pool-i586", + "product_id": 993, + "repository_id": 1567, + "parent_product_id": null, + "root_product_id": 993, + "update_tag": "slesctsp2", + "url": "https://updates.suse.com/repo/$RCE/SLES11-SP2-SUSE-Manager-Tools/sle-11-i586/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLES11-SP2-SUSE-Manager-Tools i586 VMWare-SP3", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sles11-sp2-suse-manager-tools-x86_64-vmware-sp3", + "parent_channel_label": "sles11-sp3-vmware-pool-x86_64", + "product_id": 993, + "repository_id": 1571, + "parent_product_id": null, + "root_product_id": 993, + "update_tag": "slesctsp2", + "url": "https://updates.suse.com/repo/$RCE/SLES11-SP2-SUSE-Manager-Tools/sle-11-x86_64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLES11-SP2-SUSE-Manager-Tools x86_64 VMWare-SP3", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sles11-sp3-suse-manager-tools-i586-vmware-sp3", + "parent_channel_label": "sles11-sp3-vmware-pool-i586", + "product_id": 993, + "repository_id": 1572, + "parent_product_id": null, + "root_product_id": 993, + "update_tag": "slesctsp3", + "url": "https://updates.suse.com/repo/$RCE/SLES11-SP3-SUSE-Manager-Tools/sle-11-i586/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLES11-SP3-SUSE-Manager-Tools i586 VMWare-SP3", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle11-hae-sp3-updates-x86_64-vmware-sp3", + "parent_channel_label": "sles11-sp3-vmware-pool-x86_64", + "product_id": 971, + "repository_id": 956, + "parent_product_id": 993, + "root_product_id": 993, + "update_tag": "sleshasp3", + "url": "https://updates.suse.com/repo/$RCE/SLE11-HAE-SP3-Updates/sle-11-x86_64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE11-HAE-SP3-Updates for x86_64 VMWare-SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-hae-sp3-pool-x86_64-vmware-sp3", + "parent_channel_label": "sles11-sp3-vmware-pool-x86_64", + "product_id": 971, + "repository_id": 3037, + "parent_product_id": 993, + "root_product_id": 993, + "update_tag": "sleshasp3", + "url": "https://updates.suse.com/repo/$RCE/SLE11-HAE-SP3-Pool/sle-11-x86_64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE11-HAE-SP3-Pool for x86_64 VMWare-SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-hae-geo-sp3-updates-x86_64-vmware-sp3", + "parent_channel_label": "sles11-sp3-vmware-pool-x86_64", + "product_id": 1107, + "repository_id": 1120, + "parent_product_id": 971, + "root_product_id": 993, + "update_tag": "sleshagsp3", + "url": "https://updates.suse.com/repo/$RCE/SLE11-HAE-GEO-SP3-Updates/sle-11-x86_64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE11-HAE-GEO-SP3-Updates for x86_64 VMWare-SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-hae-sp3-pool-i586-vmware-sp3", + "parent_channel_label": "sles11-sp3-vmware-pool-i586", + "product_id": 977, + "repository_id": 951, + "parent_product_id": 993, + "root_product_id": 993, + "update_tag": "sleshasp3", + "url": "https://updates.suse.com/repo/$RCE/SLE11-HAE-SP3-Pool/sle-11-i586/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE11-HAE-SP3-Pool for i586 VMWare-SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-hae-sp3-updates-i586-vmware-sp3", + "parent_channel_label": "sles11-sp3-vmware-pool-i586", + "product_id": 977, + "repository_id": 952, + "parent_product_id": 993, + "root_product_id": 993, + "update_tag": "sleshasp3", + "url": "https://updates.suse.com/repo/$RCE/SLE11-HAE-SP3-Updates/sle-11-i586/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE11-HAE-SP3-Updates for i586 VMWare-SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-hae-geo-sp3-updates-i586-vmware-sp3", + "parent_channel_label": "sles11-sp3-vmware-pool-i586", + "product_id": 1102, + "repository_id": 1117, + "parent_product_id": 977, + "root_product_id": 993, + "update_tag": "sleshagsp3", + "url": "https://updates.suse.com/repo/$RCE/SLE11-HAE-GEO-SP3-Updates/sle-11-i586/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE11-HAE-GEO-SP3-Updates for i586 VMWare-SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-sdk-sp1-updates-i586-vmware-sp3", + "parent_channel_label": "sles11-sp3-vmware-pool-i586", + "product_id": 1161, + "repository_id": 1262, + "parent_product_id": 993, + "root_product_id": 993, + "update_tag": "sdksp1", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Updates/sle-11-i586/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SDK-SP1-Updates for i586 VMWare-SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-sdk-sp1-pool-i586-vmware-sp3", + "parent_channel_label": "sles11-sp3-vmware-pool-i586", + "product_id": 1161, + "repository_id": 1263, + "parent_product_id": 993, + "root_product_id": 993, + "update_tag": "sdksp1", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-i586/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SDK-SP1-Pool for i586 VMWare-SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-sdk-sp1-pool-x86_64-vmware-sp3", + "parent_channel_label": "sles11-sp3-vmware-pool-x86_64", + "product_id": 1161, + "repository_id": 1264, + "parent_product_id": 993, + "root_product_id": 993, + "update_tag": "sdksp1", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-x86_64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SDK-SP1-Pool for x86_64 VMWare-SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-sdk-sp1-updates-x86_64-vmware-sp3", + "parent_channel_label": "sles11-sp3-vmware-pool-x86_64", + "product_id": 1161, + "repository_id": 1265, + "parent_product_id": 993, + "root_product_id": 993, + "update_tag": "sdksp1", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Updates/sle-11-x86_64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SDK-SP1-Updates for x86_64 VMWare-SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-sdk-sp2-updates-i586-vmware-sp3", + "parent_channel_label": "sles11-sp3-vmware-pool-i586", + "product_id": 1161, + "repository_id": 1271, + "parent_product_id": 993, + "root_product_id": 993, + "update_tag": "sdksp2", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-i586/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SDK-SP2-Updates for i586 VMWare-SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-sdk-sp2-core-i586-vmware-sp3", + "parent_channel_label": "sles11-sp3-vmware-pool-i586", + "product_id": 1161, + "repository_id": 1274, + "parent_product_id": 993, + "root_product_id": 993, + "update_tag": "sdksp2", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-i586/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SDK-SP2-Core for i586 VMWare-SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-sdk-sp2-core-x86_64-vmware-sp3", + "parent_channel_label": "sles11-sp3-vmware-pool-x86_64", + "product_id": 1161, + "repository_id": 1275, + "parent_product_id": 993, + "root_product_id": 993, + "update_tag": "sdksp2", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-x86_64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SDK-SP2-Core for x86_64 VMWare-SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-sdk-sp2-updates-x86_64-vmware-sp3", + "parent_channel_label": "sles11-sp3-vmware-pool-x86_64", + "product_id": 1161, + "repository_id": 1276, + "parent_product_id": 993, + "root_product_id": 993, + "update_tag": "sdksp2", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-x86_64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SDK-SP2-Updates for x86_64 VMWare-SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-sdk-sp3-pool-i586-vmware-sp3", + "parent_channel_label": "sles11-sp3-vmware-pool-i586", + "product_id": 1161, + "repository_id": 1277, + "parent_product_id": 993, + "root_product_id": 993, + "update_tag": "sdksp3", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Pool/sle-11-i586/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SDK-SP3-Pool for i586 VMWare-SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-sdk-sp3-pool-x86_64-vmware-sp3", + "parent_channel_label": "sles11-sp3-vmware-pool-x86_64", + "product_id": 1161, + "repository_id": 1281, + "parent_product_id": 993, + "root_product_id": 993, + "update_tag": "sdksp3", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Pool/sle-11-x86_64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SDK-SP3-Pool for x86_64 VMWare-SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-sdk-sp3-updates-x86_64-vmware-sp3", + "parent_channel_label": "sles11-sp3-vmware-pool-x86_64", + "product_id": 1161, + "repository_id": 1284, + "parent_product_id": 993, + "root_product_id": 993, + "update_tag": "sdksp3", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Updates/sle-11-x86_64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SDK-SP3-Updates for x86_64 VMWare-SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-sdk-sp3-updates-i586-vmware-sp3", + "parent_channel_label": "sles11-sp3-vmware-pool-i586", + "product_id": 1161, + "repository_id": 1285, + "parent_product_id": 993, + "root_product_id": 993, + "update_tag": "sdksp3", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Updates/sle-11-i586/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SDK-SP3-Updates for i586 VMWare-SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-smt-sp3-updates-x86_64-vmware-sp3", + "parent_channel_label": "sles11-sp3-vmware-pool-x86_64", + "product_id": 1198, + "repository_id": 1405, + "parent_product_id": 993, + "root_product_id": 993, + "update_tag": "slesmtsp3", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SMT-SP3-Updates/sle-11-x86_64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SMT-SP3-Updates for x86_64 VMWare-SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-smt-sp3-updates-i586-vmware-sp3", + "parent_channel_label": "sles11-sp3-vmware-pool-i586", + "product_id": 1198, + "repository_id": 1406, + "parent_product_id": 993, + "root_product_id": 993, + "update_tag": "slesmtsp3", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SMT-SP3-Updates/sle-11-i586/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SMT-SP3-Updates for i586 VMWare-SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-smt-sp3-pool-x86_64-vmware-sp3", + "parent_channel_label": "sles11-sp3-vmware-pool-x86_64", + "product_id": 1198, + "repository_id": 1409, + "parent_product_id": 993, + "root_product_id": 993, + "update_tag": "slesmtsp3", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SMT-SP3-Pool/sle-11-x86_64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SMT-SP3-Pool for x86_64 VMWare-SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-smt-sp3-pool-i586-vmware-sp3", + "parent_channel_label": "sles11-sp3-vmware-pool-i586", + "product_id": 1198, + "repository_id": 1410, + "parent_product_id": 993, + "root_product_id": 993, + "update_tag": "slesmtsp3", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SMT-SP3-Pool/sle-11-i586/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SMT-SP3-Pool for i586 VMWare-SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-sp2-webyast-1.3-pool-x86_64-vmware-sp3", + "parent_channel_label": "sles11-sp3-vmware-pool-x86_64", + "product_id": 1206, + "repository_id": 1185, + "parent_product_id": 993, + "root_product_id": 993, + "update_tag": "slewyst13", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SP2-WebYaST-1.3-Pool/sle-11-x86_64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SP2-WebYaST-1.3-Pool for x86_64 VMWare-SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-sp2-webyast-1.3-updates-x86_64-vmware-sp3", + "parent_channel_label": "sles11-sp3-vmware-pool-x86_64", + "product_id": 1206, + "repository_id": 1188, + "parent_product_id": 993, + "root_product_id": 993, + "update_tag": "slewyst13", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SP2-WebYaST-1.3-Updates/sle-11-x86_64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SP2-WebYaST-1.3-Updates for x86_64 VMWare-SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-sp2-webyast-1.3-updates-i586-vmware-sp3", + "parent_channel_label": "sles11-sp3-vmware-pool-i586", + "product_id": 1206, + "repository_id": 1413, + "parent_product_id": 993, + "root_product_id": 993, + "update_tag": "slewyst13", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SP2-WebYaST-1.3-Updates/sle-11-i586/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SP2-WebYaST-1.3-Updates for i586 VMWare-SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-sp2-webyast-1.3-pool-i586-vmware-sp3", + "parent_channel_label": "sles11-sp3-vmware-pool-i586", + "product_id": 1206, + "repository_id": 1417, + "parent_product_id": 993, + "root_product_id": 993, + "update_tag": "slewyst13", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SP2-WebYaST-1.3-Pool/sle-11-i586/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SP2-WebYaST-1.3-Pool for i586 VMWare-SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles11-extras-i586-vmware", + "parent_channel_label": "sles11-sp1-vmware-pool-i586", + "product_id": 995, + "repository_id": 679, + "parent_product_id": null, + "root_product_id": 995, + "update_tag": null, + "url": "https://updates.suse.com/repo/$RCE/SLES11-Extras/sle-11-i586/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLES11-Extras for i586 VMWare", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-sp1-debuginfo-pool-i586-vmware", + "parent_channel_label": "sles11-sp1-vmware-pool-i586", + "product_id": 995, + "repository_id": 680, + "parent_product_id": null, + "root_product_id": 995, + "update_tag": "dbgsp1", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Pool/sle-11-i586/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SP1-Debuginfo-Pool for i586 VMWare", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-sp1-debuginfo-updates-i586-vmware", + "parent_channel_label": "sles11-sp1-vmware-pool-i586", + "product_id": 995, + "repository_id": 682, + "parent_product_id": null, + "root_product_id": 995, + "update_tag": "dbgsp1", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Updates/sle-11-i586/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SP1-Debuginfo-Updates for i586 VMWare", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-sp1-debuginfo-pool-x86_64-vmware", + "parent_channel_label": "sles11-sp1-vmware-pool-x86_64", + "product_id": 995, + "repository_id": 707, + "parent_product_id": null, + "root_product_id": 995, + "update_tag": "dbgsp1", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Pool/sle-11-x86_64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SP1-Debuginfo-Pool for x86_64 VMWare", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles11-extras-x86_64-vmware", + "parent_channel_label": "sles11-sp1-vmware-pool-x86_64", + "product_id": 995, + "repository_id": 710, + "parent_product_id": null, + "root_product_id": 995, + "update_tag": null, + "url": "https://updates.suse.com/repo/$RCE/SLES11-Extras/sle-11-x86_64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLES11-Extras for x86_64 VMWare", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-sp1-debuginfo-updates-x86_64-vmware", + "parent_channel_label": "sles11-sp1-vmware-pool-x86_64", + "product_id": 995, + "repository_id": 715, + "parent_product_id": null, + "root_product_id": 995, + "update_tag": "dbgsp1", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Updates/sle-11-x86_64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SP1-Debuginfo-Updates for x86_64 VMWare", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles11-sp1-vmware-pool-i586", + "parent_channel_label": null, + "product_id": 995, + "repository_id": 959, + "parent_product_id": null, + "root_product_id": 995, + "update_tag": "slessp1", + "url": "https://updates.suse.com/repo/$RCE/SLES11-SP1-VMware-Pool/sle-11-i586/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLES11-SP1-VMware-Pool for i586", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles11-sp1-vmware-updates-i586", + "parent_channel_label": "sles11-sp1-vmware-pool-i586", + "product_id": 995, + "repository_id": 961, + "parent_product_id": null, + "root_product_id": 995, + "update_tag": "slessp1", + "url": "https://updates.suse.com/repo/$RCE/SLES11-SP1-VMware-Updates/sle-11-i586/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLES11-SP1-VMware-Updates for i586", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles11-sp1-vmware-updates-x86_64", + "parent_channel_label": "sles11-sp1-vmware-pool-x86_64", + "product_id": 995, + "repository_id": 966, + "parent_product_id": null, + "root_product_id": 995, + "update_tag": "slessp1", + "url": "https://updates.suse.com/repo/$RCE/SLES11-SP1-VMware-Updates/sle-11-x86_64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLES11-SP1-VMware-Updates for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles11-sp1-vmware-pool-x86_64", + "parent_channel_label": null, + "product_id": 995, + "repository_id": 967, + "parent_product_id": null, + "root_product_id": 995, + "update_tag": "slessp1", + "url": "https://updates.suse.com/repo/$RCE/SLES11-SP1-VMware-Pool/sle-11-x86_64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLES11-SP1-VMware-Pool for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles11-sp1-suse-manager-tools-i586-vmware", + "parent_channel_label": "sles11-sp1-vmware-pool-i586", + "product_id": 995, + "repository_id": 976, + "parent_product_id": null, + "root_product_id": 995, + "update_tag": "slesctsp1", + "url": "https://updates.suse.com/repo/$RCE/SLES11-SP1-SUSE-Manager-Tools/sle-11-i586/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLES11-SP1-SUSE-Manager-Tools i586 VMWare", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sles11-sp1-suse-manager-tools-x86_64-vmware", + "parent_channel_label": "sles11-sp1-vmware-pool-x86_64", + "product_id": 995, + "repository_id": 985, + "parent_product_id": null, + "root_product_id": 995, + "update_tag": "slesctsp1", + "url": "https://updates.suse.com/repo/$RCE/SLES11-SP1-SUSE-Manager-Tools/sle-11-x86_64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLES11-SP1-SUSE-Manager-Tools x86_64 VMWare", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle11-sdk-sp1-updates-i586-vmware", + "parent_channel_label": "sles11-sp1-vmware-pool-i586", + "product_id": 1159, + "repository_id": 1262, + "parent_product_id": 995, + "root_product_id": 995, + "update_tag": "sdksp1", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Updates/sle-11-i586/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SDK-SP1-Updates for i586 VMWare", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-sdk-sp1-pool-i586-vmware", + "parent_channel_label": "sles11-sp1-vmware-pool-i586", + "product_id": 1159, + "repository_id": 1263, + "parent_product_id": 995, + "root_product_id": 995, + "update_tag": "sdksp1", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-i586/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SDK-SP1-Pool for i586 VMWare", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-sdk-sp1-pool-x86_64-vmware", + "parent_channel_label": "sles11-sp1-vmware-pool-x86_64", + "product_id": 1159, + "repository_id": 1264, + "parent_product_id": 995, + "root_product_id": 995, + "update_tag": "sdksp1", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-x86_64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SDK-SP1-Pool for x86_64 VMWare", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-sdk-sp1-updates-x86_64-vmware", + "parent_channel_label": "sles11-sp1-vmware-pool-x86_64", + "product_id": 1159, + "repository_id": 1265, + "parent_product_id": 995, + "root_product_id": 995, + "update_tag": "sdksp1", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Updates/sle-11-x86_64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SDK-SP1-Updates for x86_64 VMWare", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles11-extras-i586-vmware", + "parent_channel_label": "sles11-sp1-vmware-pool-i586", + "product_id": 996, + "repository_id": 679, + "parent_product_id": null, + "root_product_id": 996, + "update_tag": null, + "url": "https://updates.suse.com/repo/$RCE/SLES11-Extras/sle-11-i586/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLES11-Extras for i586 VMWare", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-sp1-debuginfo-pool-i586-vmware", + "parent_channel_label": "sles11-sp1-vmware-pool-i586", + "product_id": 996, + "repository_id": 680, + "parent_product_id": null, + "root_product_id": 996, + "update_tag": "dbgsp1", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Pool/sle-11-i586/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SP1-Debuginfo-Pool for i586 VMWare", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-sp1-debuginfo-updates-i586-vmware", + "parent_channel_label": "sles11-sp1-vmware-pool-i586", + "product_id": 996, + "repository_id": 682, + "parent_product_id": null, + "root_product_id": 996, + "update_tag": "dbgsp1", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Updates/sle-11-i586/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SP1-Debuginfo-Updates for i586 VMWare", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-sp1-debuginfo-pool-x86_64-vmware", + "parent_channel_label": "sles11-sp1-vmware-pool-x86_64", + "product_id": 996, + "repository_id": 707, + "parent_product_id": null, + "root_product_id": 996, + "update_tag": "dbgsp1", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Pool/sle-11-x86_64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SP1-Debuginfo-Pool for x86_64 VMWare", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles11-extras-x86_64-vmware", + "parent_channel_label": "sles11-sp1-vmware-pool-x86_64", + "product_id": 996, + "repository_id": 710, + "parent_product_id": null, + "root_product_id": 996, + "update_tag": null, + "url": "https://updates.suse.com/repo/$RCE/SLES11-Extras/sle-11-x86_64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLES11-Extras for x86_64 VMWare", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-sp2-debuginfo-updates-x86_64-vmware", + "parent_channel_label": "sles11-sp1-vmware-pool-x86_64", + "product_id": 996, + "repository_id": 712, + "parent_product_id": null, + "root_product_id": 996, + "update_tag": "dbgsp2", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SP2-Debuginfo-Updates/sle-11-x86_64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SP2-Debuginfo-Updates for x86_64 VMWare", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles11-sp2-extension-store-x86_64-vmware", + "parent_channel_label": "sles11-sp1-vmware-pool-x86_64", + "product_id": 996, + "repository_id": 713, + "parent_product_id": null, + "root_product_id": 996, + "update_tag": "slessp2", + "url": "https://updates.suse.com/repo/$RCE/SLES11-SP2-Extension-Store/sle-11-x86_64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLES11-SP2-Extension-Store for x86_64 VMWare", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-sp1-debuginfo-updates-x86_64-vmware", + "parent_channel_label": "sles11-sp1-vmware-pool-x86_64", + "product_id": 996, + "repository_id": 715, + "parent_product_id": null, + "root_product_id": 996, + "update_tag": "dbgsp1", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Updates/sle-11-x86_64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SP1-Debuginfo-Updates for x86_64 VMWare", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-sp2-debuginfo-core-x86_64-vmware", + "parent_channel_label": "sles11-sp1-vmware-pool-x86_64", + "product_id": 996, + "repository_id": 716, + "parent_product_id": null, + "root_product_id": 996, + "update_tag": "dbgsp2", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SP2-Debuginfo-Core/sle-11-x86_64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SP2-Debuginfo-Core for x86_64 VMWare", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-sp2-debuginfo-core-i586-vmware", + "parent_channel_label": "sles11-sp1-vmware-pool-i586", + "product_id": 996, + "repository_id": 717, + "parent_product_id": null, + "root_product_id": 996, + "update_tag": "dbgsp2", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SP2-Debuginfo-Core/sle-11-i586/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SP2-Debuginfo-Core for i586 VMWare", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-sp2-debuginfo-updates-i586-vmware", + "parent_channel_label": "sles11-sp1-vmware-pool-i586", + "product_id": 996, + "repository_id": 719, + "parent_product_id": null, + "root_product_id": 996, + "update_tag": "dbgsp2", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SP2-Debuginfo-Updates/sle-11-i586/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SP2-Debuginfo-Updates for i586 VMWare", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles11-sp2-extension-store-i586-vmware", + "parent_channel_label": "sles11-sp1-vmware-pool-i586", + "product_id": 996, + "repository_id": 761, + "parent_product_id": null, + "root_product_id": 996, + "update_tag": "slessp2", + "url": "https://updates.suse.com/repo/$RCE/SLES11-SP2-Extension-Store/sle-11-i586/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLES11-SP2-Extension-Store for i586 VMWare", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles11-sp2-vmware-updates-i586", + "parent_channel_label": "sles11-sp1-vmware-pool-i586", + "product_id": 996, + "repository_id": 958, + "parent_product_id": null, + "root_product_id": 996, + "update_tag": "slessp2", + "url": "https://updates.suse.com/repo/$RCE/SLES11-SP2-VMware-Updates/sle-11-i586/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLES11-SP2-VMware-Updates for i586", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles11-sp1-vmware-pool-i586", + "parent_channel_label": null, + "product_id": 996, + "repository_id": 959, + "parent_product_id": null, + "root_product_id": 996, + "update_tag": "slessp1", + "url": "https://updates.suse.com/repo/$RCE/SLES11-SP1-VMware-Pool/sle-11-i586/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLES11-SP1-VMware-Pool for i586", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles11-sp1-vmware-updates-i586", + "parent_channel_label": "sles11-sp1-vmware-pool-i586", + "product_id": 996, + "repository_id": 961, + "parent_product_id": null, + "root_product_id": 996, + "update_tag": "slessp1", + "url": "https://updates.suse.com/repo/$RCE/SLES11-SP1-VMware-Updates/sle-11-i586/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLES11-SP1-VMware-Updates for i586", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles11-sp2-vmware-core-i586", + "parent_channel_label": "sles11-sp1-vmware-pool-i586", + "product_id": 996, + "repository_id": 962, + "parent_product_id": null, + "root_product_id": 996, + "update_tag": "slessp2", + "url": "https://updates.suse.com/repo/$RCE/SLES11-SP2-VMware-Core/sle-11-i586/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLES11-SP2-VMware-Core for i586", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles11-sp2-vmware-core-x86_64", + "parent_channel_label": "sles11-sp1-vmware-pool-x86_64", + "product_id": 996, + "repository_id": 964, + "parent_product_id": null, + "root_product_id": 996, + "update_tag": "slessp2", + "url": "https://updates.suse.com/repo/$RCE/SLES11-SP2-VMware-Core/sle-11-x86_64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLES11-SP2-VMware-Core for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles11-sp2-vmware-updates-x86_64", + "parent_channel_label": "sles11-sp1-vmware-pool-x86_64", + "product_id": 996, + "repository_id": 965, + "parent_product_id": null, + "root_product_id": 996, + "update_tag": "slessp2", + "url": "https://updates.suse.com/repo/$RCE/SLES11-SP2-VMware-Updates/sle-11-x86_64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLES11-SP2-VMware-Updates for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles11-sp1-vmware-updates-x86_64", + "parent_channel_label": "sles11-sp1-vmware-pool-x86_64", + "product_id": 996, + "repository_id": 966, + "parent_product_id": null, + "root_product_id": 996, + "update_tag": "slessp1", + "url": "https://updates.suse.com/repo/$RCE/SLES11-SP1-VMware-Updates/sle-11-x86_64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLES11-SP1-VMware-Updates for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles11-sp1-vmware-pool-x86_64", + "parent_channel_label": null, + "product_id": 996, + "repository_id": 967, + "parent_product_id": null, + "root_product_id": 996, + "update_tag": "slessp1", + "url": "https://updates.suse.com/repo/$RCE/SLES11-SP1-VMware-Pool/sle-11-x86_64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLES11-SP1-VMware-Pool for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles11-sp2-suse-manager-tools-i586-vmware", + "parent_channel_label": "sles11-sp1-vmware-pool-i586", + "product_id": 996, + "repository_id": 1567, + "parent_product_id": null, + "root_product_id": 996, + "update_tag": "slesctsp2", + "url": "https://updates.suse.com/repo/$RCE/SLES11-SP2-SUSE-Manager-Tools/sle-11-i586/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLES11-SP2-SUSE-Manager-Tools i586 VMWare", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sles11-sp2-suse-manager-tools-x86_64-vmware", + "parent_channel_label": "sles11-sp1-vmware-pool-x86_64", + "product_id": 996, + "repository_id": 1571, + "parent_product_id": null, + "root_product_id": 996, + "update_tag": "slesctsp2", + "url": "https://updates.suse.com/repo/$RCE/SLES11-SP2-SUSE-Manager-Tools/sle-11-x86_64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLES11-SP2-SUSE-Manager-Tools x86_64 VMWare", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle11-hae-sp2-pool-x86_64-vmware", + "parent_channel_label": "sles11-sp1-vmware-pool-x86_64", + "product_id": 961, + "repository_id": 947, + "parent_product_id": 996, + "root_product_id": 996, + "update_tag": "sleshasp2", + "url": "https://updates.suse.com/repo/$RCE/SLE11-HAE-SP2-Pool/sle-11-x86_64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE11-HAE-SP2-Pool for x86_64 VMWare", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-hae-sp2-updates-x86_64-vmware", + "parent_channel_label": "sles11-sp1-vmware-pool-x86_64", + "product_id": 961, + "repository_id": 948, + "parent_product_id": 996, + "root_product_id": 996, + "update_tag": "sleshasp2", + "url": "https://updates.suse.com/repo/$RCE/SLE11-HAE-SP2-Updates/sle-11-x86_64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE11-HAE-SP2-Updates for x86_64 VMWare", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-hae-sp2-pool-i586-vmware", + "parent_channel_label": "sles11-sp1-vmware-pool-i586", + "product_id": 975, + "repository_id": 949, + "parent_product_id": 996, + "root_product_id": 996, + "update_tag": "sleshasp2", + "url": "https://updates.suse.com/repo/$RCE/SLE11-HAE-SP2-Pool/sle-11-i586/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE11-HAE-SP2-Pool for i586 VMWare", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-hae-sp2-updates-i586-vmware", + "parent_channel_label": "sles11-sp1-vmware-pool-i586", + "product_id": 975, + "repository_id": 950, + "parent_product_id": 996, + "root_product_id": 996, + "update_tag": "sleshasp2", + "url": "https://updates.suse.com/repo/$RCE/SLE11-HAE-SP2-Updates/sle-11-i586/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE11-HAE-SP2-Updates for i586 VMWare", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-sdk-sp1-updates-i586-vmware", + "parent_channel_label": "sles11-sp1-vmware-pool-i586", + "product_id": 1160, + "repository_id": 1262, + "parent_product_id": 996, + "root_product_id": 996, + "update_tag": "sdksp1", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Updates/sle-11-i586/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SDK-SP1-Updates for i586 VMWare", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-sdk-sp1-pool-i586-vmware", + "parent_channel_label": "sles11-sp1-vmware-pool-i586", + "product_id": 1160, + "repository_id": 1263, + "parent_product_id": 996, + "root_product_id": 996, + "update_tag": "sdksp1", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-i586/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SDK-SP1-Pool for i586 VMWare", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-sdk-sp1-pool-x86_64-vmware", + "parent_channel_label": "sles11-sp1-vmware-pool-x86_64", + "product_id": 1160, + "repository_id": 1264, + "parent_product_id": 996, + "root_product_id": 996, + "update_tag": "sdksp1", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-x86_64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SDK-SP1-Pool for x86_64 VMWare", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-sdk-sp1-updates-x86_64-vmware", + "parent_channel_label": "sles11-sp1-vmware-pool-x86_64", + "product_id": 1160, + "repository_id": 1265, + "parent_product_id": 996, + "root_product_id": 996, + "update_tag": "sdksp1", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Updates/sle-11-x86_64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SDK-SP1-Updates for x86_64 VMWare", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-sdk-sp2-updates-i586-vmware", + "parent_channel_label": "sles11-sp1-vmware-pool-i586", + "product_id": 1160, + "repository_id": 1271, + "parent_product_id": 996, + "root_product_id": 996, + "update_tag": "sdksp2", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-i586/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SDK-SP2-Updates for i586 VMWare", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-sdk-sp2-core-i586-vmware", + "parent_channel_label": "sles11-sp1-vmware-pool-i586", + "product_id": 1160, + "repository_id": 1274, + "parent_product_id": 996, + "root_product_id": 996, + "update_tag": "sdksp2", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-i586/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SDK-SP2-Core for i586 VMWare", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-sdk-sp2-core-x86_64-vmware", + "parent_channel_label": "sles11-sp1-vmware-pool-x86_64", + "product_id": 1160, + "repository_id": 1275, + "parent_product_id": 996, + "root_product_id": 996, + "update_tag": "sdksp2", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-x86_64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SDK-SP2-Core for x86_64 VMWare", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-sdk-sp2-updates-x86_64-vmware", + "parent_channel_label": "sles11-sp1-vmware-pool-x86_64", + "product_id": 1160, + "repository_id": 1276, + "parent_product_id": 996, + "root_product_id": 996, + "update_tag": "sdksp2", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-x86_64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SDK-SP2-Updates for x86_64 VMWare", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-smt-sp2-pool-x86_64-vmware", + "parent_channel_label": "sles11-sp1-vmware-pool-x86_64", + "product_id": 1193, + "repository_id": 1392, + "parent_product_id": 996, + "root_product_id": 996, + "update_tag": "slesmtsp0", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SMT-SP2-Pool/sle-11-x86_64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SMT-SP2-Pool for x86_64 VMWare", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-smt-sp2-pool-i586-vmware", + "parent_channel_label": "sles11-sp1-vmware-pool-i586", + "product_id": 1193, + "repository_id": 1394, + "parent_product_id": 996, + "root_product_id": 996, + "update_tag": "slesmtsp0", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SMT-SP2-Pool/sle-11-i586/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SMT-SP2-Pool for i586 VMWare", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-smt-sp2-updates-i586-vmware", + "parent_channel_label": "sles11-sp1-vmware-pool-i586", + "product_id": 1193, + "repository_id": 1395, + "parent_product_id": 996, + "root_product_id": 996, + "update_tag": "slesmtsp0", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SMT-SP2-Updates/sle-11-i586/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SMT-SP2-Updates for i586 VMWare", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-smt-sp2-updates-x86_64-vmware", + "parent_channel_label": "sles11-sp1-vmware-pool-x86_64", + "product_id": 1193, + "repository_id": 1397, + "parent_product_id": 996, + "root_product_id": 996, + "update_tag": "slesmtsp0", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SMT-SP2-Updates/sle-11-x86_64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SMT-SP2-Updates for x86_64 VMWare", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles11-sp1-updates-x86_64-proxy", + "parent_channel_label": "suse-manager-proxy-1.2-pool-x86_64", + "product_id": 1000, + "repository_id": 705, + "parent_product_id": null, + "root_product_id": 1000, + "update_tag": "slessp1", + "url": "https://updates.suse.com/repo/$RCE/SLES11-SP1-Updates/sle-11-x86_64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLES11-SP1-Updates for x86_64 Proxy", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-sp1-debuginfo-pool-x86_64-proxy", + "parent_channel_label": "suse-manager-proxy-1.2-pool-x86_64", + "product_id": 1000, + "repository_id": 707, + "parent_product_id": null, + "root_product_id": 1000, + "update_tag": "dbgsp1", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Pool/sle-11-x86_64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SP1-Debuginfo-Pool for x86_64 Proxy", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles11-extras-x86_64-proxy", + "parent_channel_label": "suse-manager-proxy-1.2-pool-x86_64", + "product_id": 1000, + "repository_id": 710, + "parent_product_id": null, + "root_product_id": 1000, + "update_tag": null, + "url": "https://updates.suse.com/repo/$RCE/SLES11-Extras/sle-11-x86_64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLES11-Extras for x86_64 Proxy", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles11-sp1-pool-x86_64-proxy", + "parent_channel_label": "suse-manager-proxy-1.2-pool-x86_64", + "product_id": 1000, + "repository_id": 711, + "parent_product_id": null, + "root_product_id": 1000, + "update_tag": "slessp1", + "url": "https://updates.suse.com/repo/$RCE/SLES11-SP1-Pool/sle-11-x86_64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLES11-SP1-Pool for x86_64 Proxy", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-sp1-debuginfo-updates-x86_64-proxy", + "parent_channel_label": "suse-manager-proxy-1.2-pool-x86_64", + "product_id": 1000, + "repository_id": 715, + "parent_product_id": null, + "root_product_id": 1000, + "update_tag": "dbgsp1", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Updates/sle-11-x86_64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SP1-Debuginfo-Updates for x86_64 Proxy", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles11-sp1-suse-manager-tools-x86_64-proxy", + "parent_channel_label": "suse-manager-proxy-1.2-pool-x86_64", + "product_id": 1000, + "repository_id": 985, + "parent_product_id": null, + "root_product_id": 1000, + "update_tag": "slesctsp1", + "url": "https://updates.suse.com/repo/$RCE/SLES11-SP1-SUSE-Manager-Tools/sle-11-x86_64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLES11-SP1-SUSE-Manager-Tools x86_64 Proxy", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "suse-manager-proxy-1.2-updates-x86_64", + "parent_channel_label": "suse-manager-proxy-1.2-pool-x86_64", + "product_id": 1000, + "repository_id": 997, + "parent_product_id": null, + "root_product_id": 1000, + "update_tag": "slemap12sp1", + "url": "https://updates.suse.com/repo/$RCE/SUSE-Manager-Proxy-1.2-Updates/sle-11-x86_64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-Manager-Proxy-1.2-Updates for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-manager-proxy-1.2-pool-x86_64", + "parent_channel_label": null, + "product_id": 1000, + "repository_id": 998, + "parent_product_id": null, + "root_product_id": 1000, + "update_tag": "slemap12sp1", + "url": "https://updates.suse.com/repo/$RCE/SUSE-Manager-Proxy-1.2-Pool/sle-11-x86_64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-Manager-Proxy-1.2-Pool for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles11-sp1-updates-x86_64-proxy-1.7", + "parent_channel_label": "suse-manager-proxy-1.7-pool-x86_64", + "product_id": 1002, + "repository_id": 705, + "parent_product_id": null, + "root_product_id": 1002, + "update_tag": "slessp1", + "url": "https://updates.suse.com/repo/$RCE/SLES11-SP1-Updates/sle-11-x86_64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLES11-SP1-Updates for x86_64 Proxy 1.7", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-sp1-debuginfo-pool-x86_64-proxy-1.7", + "parent_channel_label": "suse-manager-proxy-1.7-pool-x86_64", + "product_id": 1002, + "repository_id": 707, + "parent_product_id": null, + "root_product_id": 1002, + "update_tag": "dbgsp1", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Pool/sle-11-x86_64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SP1-Debuginfo-Pool for x86_64 Proxy 1.7", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles11-sp2-core-x86_64-proxy-1.7", + "parent_channel_label": "suse-manager-proxy-1.7-pool-x86_64", + "product_id": 1002, + "repository_id": 709, + "parent_product_id": null, + "root_product_id": 1002, + "update_tag": "slessp2", + "url": "https://updates.suse.com/repo/$RCE/SLES11-SP2-Core/sle-11-x86_64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLES11-SP2-Core for x86_64 Proxy 1.7", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles11-extras-x86_64-proxy-1.7", + "parent_channel_label": "suse-manager-proxy-1.7-pool-x86_64", + "product_id": 1002, + "repository_id": 710, + "parent_product_id": null, + "root_product_id": 1002, + "update_tag": null, + "url": "https://updates.suse.com/repo/$RCE/SLES11-Extras/sle-11-x86_64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLES11-Extras for x86_64 Proxy 1.7", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles11-sp1-pool-x86_64-proxy-1.7", + "parent_channel_label": "suse-manager-proxy-1.7-pool-x86_64", + "product_id": 1002, + "repository_id": 711, + "parent_product_id": null, + "root_product_id": 1002, + "update_tag": "slessp1", + "url": "https://updates.suse.com/repo/$RCE/SLES11-SP1-Pool/sle-11-x86_64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLES11-SP1-Pool for x86_64 Proxy 1.7", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-sp2-debuginfo-updates-x86_64-proxy-1.7", + "parent_channel_label": "suse-manager-proxy-1.7-pool-x86_64", + "product_id": 1002, + "repository_id": 712, + "parent_product_id": null, + "root_product_id": 1002, + "update_tag": "dbgsp2", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SP2-Debuginfo-Updates/sle-11-x86_64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SP2-Debuginfo-Updates for x86_64 Proxy 1.7", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles11-sp2-updates-x86_64-proxy-1.7", + "parent_channel_label": "suse-manager-proxy-1.7-pool-x86_64", + "product_id": 1002, + "repository_id": 714, + "parent_product_id": null, + "root_product_id": 1002, + "update_tag": "slessp2", + "url": "https://updates.suse.com/repo/$RCE/SLES11-SP2-Updates/sle-11-x86_64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLES11-SP2-Updates for x86_64 Proxy 1.7", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-sp1-debuginfo-updates-x86_64-proxy-1.7", + "parent_channel_label": "suse-manager-proxy-1.7-pool-x86_64", + "product_id": 1002, + "repository_id": 715, + "parent_product_id": null, + "root_product_id": 1002, + "update_tag": "dbgsp1", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Updates/sle-11-x86_64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SP1-Debuginfo-Updates for x86_64 Proxy 1.7", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-sp2-debuginfo-core-x86_64-proxy-1.7", + "parent_channel_label": "suse-manager-proxy-1.7-pool-x86_64", + "product_id": 1002, + "repository_id": 716, + "parent_product_id": null, + "root_product_id": 1002, + "update_tag": "dbgsp2", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SP2-Debuginfo-Core/sle-11-x86_64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SP2-Debuginfo-Core for x86_64 Proxy 1.7", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-manager-proxy-1.7-updates-x86_64", + "parent_channel_label": "suse-manager-proxy-1.7-pool-x86_64", + "product_id": 1002, + "repository_id": 999, + "parent_product_id": null, + "root_product_id": 1002, + "update_tag": "slemap17sp2", + "url": "https://updates.suse.com/repo/$RCE/SUSE-Manager-Proxy-1.7-Updates/sle-11-x86_64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-Manager-Proxy-1.7-Updates for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-manager-proxy-1.7-pool-x86_64", + "parent_channel_label": null, + "product_id": 1002, + "repository_id": 1000, + "parent_product_id": null, + "root_product_id": 1002, + "update_tag": "slemap17sp2", + "url": "https://updates.suse.com/repo/$RCE/SUSE-Manager-Proxy-1.7-Pool/sle-11-x86_64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-Manager-Proxy-1.7-Pool for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles11-sp1-updates-x86_64-studio13", + "parent_channel_label": "sle11-sp2-studioonsite-1.3-pool-x86_64", + "product_id": 1008, + "repository_id": 705, + "parent_product_id": null, + "root_product_id": 1008, + "update_tag": "slessp1", + "url": "https://updates.suse.com/repo/$RCE/SLES11-SP1-Updates/sle-11-x86_64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLES11-SP1-Updates for x86_64 Studio13", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-sp1-debuginfo-pool-x86_64-studio13", + "parent_channel_label": "sle11-sp2-studioonsite-1.3-pool-x86_64", + "product_id": 1008, + "repository_id": 707, + "parent_product_id": null, + "root_product_id": 1008, + "update_tag": "dbgsp1", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Pool/sle-11-x86_64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SP1-Debuginfo-Pool for x86_64 Studio13", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles11-sp2-core-x86_64-studio13", + "parent_channel_label": "sle11-sp2-studioonsite-1.3-pool-x86_64", + "product_id": 1008, + "repository_id": 709, + "parent_product_id": null, + "root_product_id": 1008, + "update_tag": "slessp2", + "url": "https://updates.suse.com/repo/$RCE/SLES11-SP2-Core/sle-11-x86_64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLES11-SP2-Core for x86_64 Studio13", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles11-sp1-pool-x86_64-studio13", + "parent_channel_label": "sle11-sp2-studioonsite-1.3-pool-x86_64", + "product_id": 1008, + "repository_id": 711, + "parent_product_id": null, + "root_product_id": 1008, + "update_tag": "slessp1", + "url": "https://updates.suse.com/repo/$RCE/SLES11-SP1-Pool/sle-11-x86_64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLES11-SP1-Pool for x86_64 Studio13", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-sp2-debuginfo-updates-x86_64-studio13", + "parent_channel_label": "sle11-sp2-studioonsite-1.3-pool-x86_64", + "product_id": 1008, + "repository_id": 712, + "parent_product_id": null, + "root_product_id": 1008, + "update_tag": "dbgsp2", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SP2-Debuginfo-Updates/sle-11-x86_64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SP2-Debuginfo-Updates for x86_64 Studio13", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles11-sp2-updates-x86_64-studio13", + "parent_channel_label": "sle11-sp2-studioonsite-1.3-pool-x86_64", + "product_id": 1008, + "repository_id": 714, + "parent_product_id": null, + "root_product_id": 1008, + "update_tag": "slessp2", + "url": "https://updates.suse.com/repo/$RCE/SLES11-SP2-Updates/sle-11-x86_64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLES11-SP2-Updates for x86_64 Studio13", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-sp1-debuginfo-updates-x86_64-studio13", + "parent_channel_label": "sle11-sp2-studioonsite-1.3-pool-x86_64", + "product_id": 1008, + "repository_id": 715, + "parent_product_id": null, + "root_product_id": 1008, + "update_tag": "dbgsp1", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Updates/sle-11-x86_64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SP1-Debuginfo-Updates for x86_64 Studio13", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-sp2-debuginfo-core-x86_64-studio13", + "parent_channel_label": "sle11-sp2-studioonsite-1.3-pool-x86_64", + "product_id": 1008, + "repository_id": 716, + "parent_product_id": null, + "root_product_id": 1008, + "update_tag": "dbgsp2", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SP2-Debuginfo-Core/sle-11-x86_64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SP2-Debuginfo-Core for x86_64 Studio13", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-sp2-studioonsite-1.3-pool-x86_64", + "parent_channel_label": null, + "product_id": 1008, + "repository_id": 1012, + "parent_product_id": null, + "root_product_id": 1008, + "update_tag": "slestso13", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SP2-StudioOnsite-1.3-Pool/sle-11-x86_64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SP2-StudioOnsite-1.3-Pool for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-sp2-studioonsite-1.3-updates-x86_64", + "parent_channel_label": "sle11-sp2-studioonsite-1.3-pool-x86_64", + "product_id": 1008, + "repository_id": 1013, + "parent_product_id": null, + "root_product_id": 1008, + "update_tag": "slestso13", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SP2-StudioOnsite-1.3-Updates/sle-11-x86_64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SP2-StudioOnsite-1.3-Updates for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles11-sp2-ltss-updates-x86_64-studio13", + "parent_channel_label": "sle11-sp2-studioonsite-1.3-pool-x86_64", + "product_id": 1008, + "repository_id": 1157, + "parent_product_id": null, + "root_product_id": 1008, + "update_tag": "slessp2", + "url": "https://updates.suse.com/repo/$RCE/SLES11-SP2-LTSS-Updates/sle-11-x86_64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLES11-SP2-LTSS-Updates for x86_64 Studio13", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles11-sp2-suse-manager-tools-x86_64-studio13", + "parent_channel_label": "sle11-sp2-studioonsite-1.3-pool-x86_64", + "product_id": 1008, + "repository_id": 1571, + "parent_product_id": null, + "root_product_id": 1008, + "update_tag": "slesctsp2", + "url": "https://updates.suse.com/repo/$RCE/SLES11-SP2-SUSE-Manager-Tools/sle-11-x86_64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLES11-SP2-SUSE-Manager-Tools x86_64 Studio13", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle11-sp1-debuginfo-pool-ia64", + "parent_channel_label": "sles11-sp1-pool-ia64", + "product_id": 1033, + "repository_id": 970, + "parent_product_id": null, + "root_product_id": 1033, + "update_tag": "dbgsp1", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Pool/sle-11-ia64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SP1-Debuginfo-Pool for ia64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-sp1-debuginfo-updates-ia64", + "parent_channel_label": "sles11-sp1-pool-ia64", + "product_id": 1033, + "repository_id": 971, + "parent_product_id": null, + "root_product_id": 1033, + "update_tag": "dbgsp1", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Updates/sle-11-ia64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SP1-Debuginfo-Updates for ia64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles11-extras-ia64", + "parent_channel_label": "sles11-sp1-pool-ia64", + "product_id": 1033, + "repository_id": 972, + "parent_product_id": null, + "root_product_id": 1033, + "update_tag": null, + "url": "https://updates.suse.com/repo/$RCE/SLES11-Extras/sle-11-ia64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLES11-Extras for ia64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles11-sp1-suse-manager-tools-ia64", + "parent_channel_label": "sles11-sp1-pool-ia64", + "product_id": 1033, + "repository_id": 984, + "parent_product_id": null, + "root_product_id": 1033, + "update_tag": "slesctsp1", + "url": "https://updates.suse.com/repo/$RCE/SLES11-SP1-SUSE-Manager-Tools/sle-11-ia64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLES11-SP1-SUSE-Manager-Tools ia64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sles11-sp1-updates-ia64", + "parent_channel_label": "sles11-sp1-pool-ia64", + "product_id": 1033, + "repository_id": 987, + "parent_product_id": null, + "root_product_id": 1033, + "update_tag": "slessp1", + "url": "https://updates.suse.com/repo/$RCE/SLES11-SP1-Updates/sle-11-ia64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLES11-SP1-Updates for ia64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles11-sp1-pool-ia64", + "parent_channel_label": null, + "product_id": 1033, + "repository_id": 991, + "parent_product_id": null, + "root_product_id": 1033, + "update_tag": "slessp1", + "url": "https://updates.suse.com/repo/$RCE/SLES11-SP1-Pool/sle-11-ia64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLES11-SP1-Pool for ia64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-webyast-sp1-pool-ia64", + "parent_channel_label": "sles11-sp1-pool-ia64", + "product_id": 1033, + "repository_id": 1032, + "parent_product_id": null, + "root_product_id": 1033, + "update_tag": "slewystsp1", + "url": "https://updates.suse.com/repo/$RCE/SLE11-WebYaST-SP1-Pool/sle-11-ia64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE11-WebYaST-SP1-Pool for ia64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-webyast-sp1-updates-ia64", + "parent_channel_label": "sles11-sp1-pool-ia64", + "product_id": 1033, + "repository_id": 1033, + "parent_product_id": null, + "root_product_id": 1033, + "update_tag": "slewystsp1", + "url": "https://updates.suse.com/repo/$RCE/SLE11-WebYaST-SP1-Updates/sle-11-ia64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE11-WebYaST-SP1-Updates for ia64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-hae-sp1-updates-ia64", + "parent_channel_label": "sles11-sp1-pool-ia64", + "product_id": 1061, + "repository_id": 1065, + "parent_product_id": 1033, + "root_product_id": 1033, + "update_tag": "sleshasp1", + "url": "https://updates.suse.com/repo/$RCE/SLE11-HAE-SP1-Updates/sle-11-ia64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE11-HAE-SP1-Updates for ia64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-hae-sp1-pool-ia64", + "parent_channel_label": "sles11-sp1-pool-ia64", + "product_id": 1061, + "repository_id": 1066, + "parent_product_id": 1033, + "root_product_id": 1033, + "update_tag": "sleshasp1", + "url": "https://updates.suse.com/repo/$RCE/SLE11-HAE-SP1-Pool/sle-11-ia64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE11-HAE-SP1-Pool for ia64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-sdk-sp1-updates-ia64", + "parent_channel_label": "sles11-sp1-pool-ia64", + "product_id": 1159, + "repository_id": 1257, + "parent_product_id": 1033, + "root_product_id": 1033, + "update_tag": "sdksp1", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Updates/sle-11-ia64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SDK-SP1-Updates for ia64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-sdk-sp1-pool-ia64", + "parent_channel_label": "sles11-sp1-pool-ia64", + "product_id": 1159, + "repository_id": 1258, + "parent_product_id": 1033, + "root_product_id": 1033, + "update_tag": "sdksp1", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-ia64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SDK-SP1-Pool for ia64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-sp1-debuginfo-pool-ia64", + "parent_channel_label": "sles11-sp1-pool-ia64", + "product_id": 1034, + "repository_id": 970, + "parent_product_id": null, + "root_product_id": 1034, + "update_tag": "dbgsp1", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Pool/sle-11-ia64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SP1-Debuginfo-Pool for ia64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-sp1-debuginfo-updates-ia64", + "parent_channel_label": "sles11-sp1-pool-ia64", + "product_id": 1034, + "repository_id": 971, + "parent_product_id": null, + "root_product_id": 1034, + "update_tag": "dbgsp1", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Updates/sle-11-ia64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SP1-Debuginfo-Updates for ia64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles11-extras-ia64", + "parent_channel_label": "sles11-sp1-pool-ia64", + "product_id": 1034, + "repository_id": 972, + "parent_product_id": null, + "root_product_id": 1034, + "update_tag": null, + "url": "https://updates.suse.com/repo/$RCE/SLES11-Extras/sle-11-ia64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLES11-Extras for ia64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-sp2-debuginfo-core-ia64", + "parent_channel_label": "sles11-sp1-pool-ia64", + "product_id": 1034, + "repository_id": 973, + "parent_product_id": null, + "root_product_id": 1034, + "update_tag": "dbgsp2", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SP2-Debuginfo-Core/sle-11-ia64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SP2-Debuginfo-Core for ia64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles11-sp2-extension-store-ia64", + "parent_channel_label": "sles11-sp1-pool-ia64", + "product_id": 1034, + "repository_id": 974, + "parent_product_id": null, + "root_product_id": 1034, + "update_tag": "slessp2", + "url": "https://updates.suse.com/repo/$RCE/SLES11-SP2-Extension-Store/sle-11-ia64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLES11-SP2-Extension-Store for ia64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-sp2-debuginfo-updates-ia64", + "parent_channel_label": "sles11-sp1-pool-ia64", + "product_id": 1034, + "repository_id": 975, + "parent_product_id": null, + "root_product_id": 1034, + "update_tag": "dbgsp2", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SP2-Debuginfo-Updates/sle-11-ia64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SP2-Debuginfo-Updates for ia64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles11-sp1-updates-ia64", + "parent_channel_label": "sles11-sp1-pool-ia64", + "product_id": 1034, + "repository_id": 987, + "parent_product_id": null, + "root_product_id": 1034, + "update_tag": "slessp1", + "url": "https://updates.suse.com/repo/$RCE/SLES11-SP1-Updates/sle-11-ia64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLES11-SP1-Updates for ia64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles11-sp1-pool-ia64", + "parent_channel_label": null, + "product_id": 1034, + "repository_id": 991, + "parent_product_id": null, + "root_product_id": 1034, + "update_tag": "slessp1", + "url": "https://updates.suse.com/repo/$RCE/SLES11-SP1-Pool/sle-11-ia64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLES11-SP1-Pool for ia64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles11-sp2-updates-ia64", + "parent_channel_label": "sles11-sp1-pool-ia64", + "product_id": 1034, + "repository_id": 1011, + "parent_product_id": null, + "root_product_id": 1034, + "update_tag": "slessp2", + "url": "https://updates.suse.com/repo/$RCE/SLES11-SP2-Updates/sle-11-ia64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLES11-SP2-Updates for ia64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles11-sp2-core-ia64", + "parent_channel_label": "sles11-sp1-pool-ia64", + "product_id": 1034, + "repository_id": 1014, + "parent_product_id": null, + "root_product_id": 1034, + "update_tag": "slessp2", + "url": "https://updates.suse.com/repo/$RCE/SLES11-SP2-Core/sle-11-ia64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLES11-SP2-Core for ia64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-webyast-sp2-updates-ia64", + "parent_channel_label": "sles11-sp1-pool-ia64", + "product_id": 1034, + "repository_id": 1034, + "parent_product_id": null, + "root_product_id": 1034, + "update_tag": "slewystsp1", + "url": "https://updates.suse.com/repo/$RCE/SLE11-WebYaST-SP2-Updates/sle-11-ia64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE11-WebYaST-SP2-Updates for ia64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-webyast-sp2-pool-ia64", + "parent_channel_label": "sles11-sp1-pool-ia64", + "product_id": 1034, + "repository_id": 1035, + "parent_product_id": null, + "root_product_id": 1034, + "update_tag": "slewystsp1", + "url": "https://updates.suse.com/repo/$RCE/SLE11-WebYaST-SP2-Pool/sle-11-ia64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE11-WebYaST-SP2-Pool for ia64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles11-sp2-suse-manager-tools-ia64", + "parent_channel_label": "sles11-sp1-pool-ia64", + "product_id": 1034, + "repository_id": 1568, + "parent_product_id": null, + "root_product_id": 1034, + "update_tag": "slesctsp2", + "url": "https://updates.suse.com/repo/$RCE/SLES11-SP2-SUSE-Manager-Tools/sle-11-ia64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLES11-SP2-SUSE-Manager-Tools ia64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle11-hae-sp2-updates-ia64", + "parent_channel_label": "sles11-sp1-pool-ia64", + "product_id": 1060, + "repository_id": 1063, + "parent_product_id": 1034, + "root_product_id": 1034, + "update_tag": "sleshasp2", + "url": "https://updates.suse.com/repo/$RCE/SLE11-HAE-SP2-Updates/sle-11-ia64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE11-HAE-SP2-Updates for ia64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-hae-sp2-pool-ia64", + "parent_channel_label": "sles11-sp1-pool-ia64", + "product_id": 1060, + "repository_id": 1064, + "parent_product_id": 1034, + "root_product_id": 1034, + "update_tag": "sleshasp2", + "url": "https://updates.suse.com/repo/$RCE/SLE11-HAE-SP2-Pool/sle-11-ia64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE11-HAE-SP2-Pool for ia64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-sdk-sp1-updates-ia64", + "parent_channel_label": "sles11-sp1-pool-ia64", + "product_id": 1160, + "repository_id": 1257, + "parent_product_id": 1034, + "root_product_id": 1034, + "update_tag": "sdksp1", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Updates/sle-11-ia64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SDK-SP1-Updates for ia64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-sdk-sp1-pool-ia64", + "parent_channel_label": "sles11-sp1-pool-ia64", + "product_id": 1160, + "repository_id": 1258, + "parent_product_id": 1034, + "root_product_id": 1034, + "update_tag": "sdksp1", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-ia64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SDK-SP1-Pool for ia64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-sdk-sp2-core-ia64", + "parent_channel_label": "sles11-sp1-pool-ia64", + "product_id": 1160, + "repository_id": 1267, + "parent_product_id": 1034, + "root_product_id": 1034, + "update_tag": "sdksp2", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-ia64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SDK-SP2-Core for ia64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-sdk-sp2-updates-ia64", + "parent_channel_label": "sles11-sp1-pool-ia64", + "product_id": 1160, + "repository_id": 1272, + "parent_product_id": 1034, + "root_product_id": 1034, + "update_tag": "sdksp2", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-ia64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SDK-SP2-Updates for ia64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-sp2-webyast-1.3-updates-ia64", + "parent_channel_label": "sles11-sp1-pool-ia64", + "product_id": 1206, + "repository_id": 1415, + "parent_product_id": 1034, + "root_product_id": 1034, + "update_tag": "slewyst13", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SP2-WebYaST-1.3-Updates/sle-11-ia64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SP2-WebYaST-1.3-Updates for ia64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-sp2-webyast-1.3-pool-ia64", + "parent_channel_label": "sles11-sp1-pool-ia64", + "product_id": 1206, + "repository_id": 1416, + "parent_product_id": 1034, + "root_product_id": 1034, + "update_tag": "slewyst13", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SP2-WebYaST-1.3-Pool/sle-11-ia64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SP2-WebYaST-1.3-Pool for ia64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-sp1-debuginfo-pool-ia64-sles-sp3", + "parent_channel_label": "sles11-sp3-pool-ia64", + "product_id": 1037, + "repository_id": 970, + "parent_product_id": null, + "root_product_id": 1037, + "update_tag": "dbgsp1", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Pool/sle-11-ia64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SP1-Debuginfo-Pool for ia64 SLES-SP3", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-sp1-debuginfo-updates-ia64-sles-sp3", + "parent_channel_label": "sles11-sp3-pool-ia64", + "product_id": 1037, + "repository_id": 971, + "parent_product_id": null, + "root_product_id": 1037, + "update_tag": "dbgsp1", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Updates/sle-11-ia64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SP1-Debuginfo-Updates for ia64 SLES-SP3", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles11-extras-ia64-sles-sp3", + "parent_channel_label": "sles11-sp3-pool-ia64", + "product_id": 1037, + "repository_id": 972, + "parent_product_id": null, + "root_product_id": 1037, + "update_tag": null, + "url": "https://updates.suse.com/repo/$RCE/SLES11-Extras/sle-11-ia64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLES11-Extras for ia64 SLES-SP3", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-sp2-debuginfo-core-ia64-sles-sp3", + "parent_channel_label": "sles11-sp3-pool-ia64", + "product_id": 1037, + "repository_id": 973, + "parent_product_id": null, + "root_product_id": 1037, + "update_tag": "dbgsp2", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SP2-Debuginfo-Core/sle-11-ia64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SP2-Debuginfo-Core for ia64 SLES-SP3", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles11-sp2-extension-store-ia64-sles-sp3", + "parent_channel_label": "sles11-sp3-pool-ia64", + "product_id": 1037, + "repository_id": 974, + "parent_product_id": null, + "root_product_id": 1037, + "update_tag": "slessp2", + "url": "https://updates.suse.com/repo/$RCE/SLES11-SP2-Extension-Store/sle-11-ia64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLES11-SP2-Extension-Store for ia64 SLES-SP3", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-sp2-debuginfo-updates-ia64-sles-sp3", + "parent_channel_label": "sles11-sp3-pool-ia64", + "product_id": 1037, + "repository_id": 975, + "parent_product_id": null, + "root_product_id": 1037, + "update_tag": "dbgsp2", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SP2-Debuginfo-Updates/sle-11-ia64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SP2-Debuginfo-Updates for ia64 SLES-SP3", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles11-sp1-updates-ia64-sles-sp3", + "parent_channel_label": "sles11-sp3-pool-ia64", + "product_id": 1037, + "repository_id": 987, + "parent_product_id": null, + "root_product_id": 1037, + "update_tag": "slessp1", + "url": "https://updates.suse.com/repo/$RCE/SLES11-SP1-Updates/sle-11-ia64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLES11-SP1-Updates for ia64 SLES-SP3", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles11-sp1-pool-ia64-sles-sp3", + "parent_channel_label": "sles11-sp3-pool-ia64", + "product_id": 1037, + "repository_id": 991, + "parent_product_id": null, + "root_product_id": 1037, + "update_tag": "slessp1", + "url": "https://updates.suse.com/repo/$RCE/SLES11-SP1-Pool/sle-11-ia64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLES11-SP1-Pool for ia64 SLES-SP3", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles11-sp2-updates-ia64-sles-sp3", + "parent_channel_label": "sles11-sp3-pool-ia64", + "product_id": 1037, + "repository_id": 1011, + "parent_product_id": null, + "root_product_id": 1037, + "update_tag": "slessp2", + "url": "https://updates.suse.com/repo/$RCE/SLES11-SP2-Updates/sle-11-ia64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLES11-SP2-Updates for ia64 SLES-SP3", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles11-sp2-core-ia64-sles-sp3", + "parent_channel_label": "sles11-sp3-pool-ia64", + "product_id": 1037, + "repository_id": 1014, + "parent_product_id": null, + "root_product_id": 1037, + "update_tag": "slessp2", + "url": "https://updates.suse.com/repo/$RCE/SLES11-SP2-Core/sle-11-ia64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLES11-SP2-Core for ia64 SLES-SP3", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-sp3-debuginfo-updates-ia64", + "parent_channel_label": "sles11-sp3-pool-ia64", + "product_id": 1037, + "repository_id": 1028, + "parent_product_id": null, + "root_product_id": 1037, + "update_tag": "dbgsp3", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SP3-Debuginfo-Updates/sle-11-ia64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SP3-Debuginfo-Updates for ia64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-sp3-debuginfo-pool-ia64", + "parent_channel_label": "sles11-sp3-pool-ia64", + "product_id": 1037, + "repository_id": 1030, + "parent_product_id": null, + "root_product_id": 1037, + "update_tag": "dbgsp3", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SP3-Debuginfo-Pool/sle-11-ia64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SP3-Debuginfo-Pool for ia64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles11-sp3-updates-ia64", + "parent_channel_label": "sles11-sp3-pool-ia64", + "product_id": 1037, + "repository_id": 1036, + "parent_product_id": null, + "root_product_id": 1037, + "update_tag": "slessp3", + "url": "https://updates.suse.com/repo/$RCE/SLES11-SP3-Updates/sle-11-ia64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLES11-SP3-Updates for ia64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles11-sp3-pool-ia64", + "parent_channel_label": null, + "product_id": 1037, + "repository_id": 1037, + "parent_product_id": null, + "root_product_id": 1037, + "update_tag": "slessp3", + "url": "https://updates.suse.com/repo/$RCE/SLES11-SP3-Pool/sle-11-ia64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLES11-SP3-Pool for ia64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles11-sp3-extension-store-ia64", + "parent_channel_label": "sles11-sp3-pool-ia64", + "product_id": 1037, + "repository_id": 1038, + "parent_product_id": null, + "root_product_id": 1037, + "update_tag": "slessp3", + "url": "https://updates.suse.com/repo/$RCE/SLES11-SP3-Extension-Store/sle-11-ia64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLES11-SP3-Extension-Store for ia64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-security-module-ia64", + "parent_channel_label": "sles11-sp3-pool-ia64", + "product_id": 1037, + "repository_id": 1385, + "parent_product_id": null, + "root_product_id": 1037, + "update_tag": "secsp3", + "url": "https://updates.suse.com/repo/$RCE/SLE11-Security-Module/sle-11-ia64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE11-Security-Module for ia64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles11-sp2-suse-manager-tools-ia64-sp3", + "parent_channel_label": "sles11-sp3-pool-ia64", + "product_id": 1037, + "repository_id": 1568, + "parent_product_id": null, + "root_product_id": 1037, + "update_tag": "slesctsp2", + "url": "https://updates.suse.com/repo/$RCE/SLES11-SP2-SUSE-Manager-Tools/sle-11-ia64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLES11-SP2-SUSE-Manager-Tools ia64 SP3", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sles11-sp3-suse-manager-tools-ia64", + "parent_channel_label": "sles11-sp3-pool-ia64", + "product_id": 1037, + "repository_id": 1573, + "parent_product_id": null, + "root_product_id": 1037, + "update_tag": "slesctsp3", + "url": "https://updates.suse.com/repo/$RCE/SLES11-SP3-SUSE-Manager-Tools/sle-11-ia64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLES11-SP3-SUSE-Manager-Tools ia64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle11-public-cloud-module-ia64", + "parent_channel_label": "sles11-sp3-pool-ia64", + "product_id": 1037, + "repository_id": 1783, + "parent_product_id": null, + "root_product_id": 1037, + "update_tag": "pubclsp3", + "url": "https://updates.suse.com/repo/$RCE/SLE11-Public-Cloud-Module/sle-11-ia64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE11-Public-Cloud-Module for ia64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-hae-sp3-updates-ia64", + "parent_channel_label": "sles11-sp3-pool-ia64", + "product_id": 1063, + "repository_id": 1069, + "parent_product_id": 1037, + "root_product_id": 1037, + "update_tag": "sleshasp3", + "url": "https://updates.suse.com/repo/$RCE/SLE11-HAE-SP3-Updates/sle-11-ia64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE11-HAE-SP3-Updates for ia64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-hae-sp3-pool-ia64", + "parent_channel_label": "sles11-sp3-pool-ia64", + "product_id": 1063, + "repository_id": 1070, + "parent_product_id": 1037, + "root_product_id": 1037, + "update_tag": "sleshasp3", + "url": "https://updates.suse.com/repo/$RCE/SLE11-HAE-SP3-Pool/sle-11-ia64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE11-HAE-SP3-Pool for ia64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-sdk-sp1-updates-ia64-sdk-sp3", + "parent_channel_label": "sles11-sp3-pool-ia64", + "product_id": 1161, + "repository_id": 1257, + "parent_product_id": 1037, + "root_product_id": 1037, + "update_tag": "sdksp1", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Updates/sle-11-ia64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SDK-SP1-Updates for ia64 SDK-SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-sdk-sp1-pool-ia64-sdk-sp3", + "parent_channel_label": "sles11-sp3-pool-ia64", + "product_id": 1161, + "repository_id": 1258, + "parent_product_id": 1037, + "root_product_id": 1037, + "update_tag": "sdksp1", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-ia64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SDK-SP1-Pool for ia64 SDK-SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-sdk-sp2-core-ia64-sdk-sp3", + "parent_channel_label": "sles11-sp3-pool-ia64", + "product_id": 1161, + "repository_id": 1267, + "parent_product_id": 1037, + "root_product_id": 1037, + "update_tag": "sdksp2", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-ia64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SDK-SP2-Core for ia64 SDK-SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-sdk-sp2-updates-ia64-sdk-sp3", + "parent_channel_label": "sles11-sp3-pool-ia64", + "product_id": 1161, + "repository_id": 1272, + "parent_product_id": 1037, + "root_product_id": 1037, + "update_tag": "sdksp2", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-ia64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SDK-SP2-Updates for ia64 SDK-SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-sdk-sp3-pool-ia64", + "parent_channel_label": "sles11-sp3-pool-ia64", + "product_id": 1161, + "repository_id": 1278, + "parent_product_id": 1037, + "root_product_id": 1037, + "update_tag": "sdksp3", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Pool/sle-11-ia64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SDK-SP3-Pool for ia64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-sdk-sp3-updates-ia64", + "parent_channel_label": "sles11-sp3-pool-ia64", + "product_id": 1161, + "repository_id": 1280, + "parent_product_id": 1037, + "root_product_id": 1037, + "update_tag": "sdksp3", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Updates/sle-11-ia64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SDK-SP3-Updates for ia64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-sp2-webyast-1.3-updates-ia64-sp3", + "parent_channel_label": "sles11-sp3-pool-ia64", + "product_id": 1206, + "repository_id": 1415, + "parent_product_id": 1037, + "root_product_id": 1037, + "update_tag": "slewyst13", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SP2-WebYaST-1.3-Updates/sle-11-ia64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SP2-WebYaST-1.3-Updates for ia64 SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-sp2-webyast-1.3-pool-ia64-sp3", + "parent_channel_label": "sles11-sp3-pool-ia64", + "product_id": 1206, + "repository_id": 1416, + "parent_product_id": 1037, + "root_product_id": 1037, + "update_tag": "slewyst13", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SP2-WebYaST-1.3-Pool/sle-11-ia64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SP2-WebYaST-1.3-Pool for ia64 SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles12-updates-s390x", + "parent_channel_label": "sles12-pool-s390x", + "product_id": 1115, + "repository_id": 1628, + "parent_product_id": null, + "root_product_id": 1115, + "update_tag": "SLE-SERVER", + "url": "https://updates.suse.com/SUSE/Updates/SLE-SERVER/12/s390x/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLES12-Updates for s390x", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles12-debuginfo-updates-s390x", + "parent_channel_label": "sles12-pool-s390x", + "product_id": 1115, + "repository_id": 1629, + "parent_product_id": null, + "root_product_id": 1115, + "update_tag": "SLE-SERVER", + "url": "https://updates.suse.com/SUSE/Updates/SLE-SERVER/12/s390x/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLES12-Debuginfo-Updates for s390x", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles12-pool-s390x", + "parent_channel_label": null, + "product_id": 1115, + "repository_id": 1630, + "parent_product_id": null, + "root_product_id": 1115, + "update_tag": "SLE-SERVER", + "url": "https://updates.suse.com/SUSE/Products/SLE-SERVER/12/s390x/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLES12-Pool for s390x", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles12-debuginfo-pool-s390x", + "parent_channel_label": "sles12-pool-s390x", + "product_id": 1115, + "repository_id": 1631, + "parent_product_id": null, + "root_product_id": 1115, + "update_tag": "SLE-SERVER", + "url": "https://updates.suse.com/SUSE/Products/SLE-SERVER/12/s390x/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLES12-Debuginfo-Pool for s390x", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-manager-tools12-updates-s390x", + "parent_channel_label": "sles12-pool-s390x", + "product_id": 1115, + "repository_id": 1728, + "parent_product_id": null, + "root_product_id": 1115, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/12/s390x/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Manager-Tools12-Updates for s390x", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools12-debuginfo-updates-s390x", + "parent_channel_label": "sles12-pool-s390x", + "product_id": 1115, + "repository_id": 1729, + "parent_product_id": null, + "root_product_id": 1115, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/12/s390x/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Manager-Tools12-Debuginfo-Updates for s390x", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools12-pool-s390x", + "parent_channel_label": "sles12-pool-s390x", + "product_id": 1115, + "repository_id": 1730, + "parent_product_id": null, + "root_product_id": 1115, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/12/s390x/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Manager-Tools12-Pool for s390x", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools12-debuginfo-pool-s390x", + "parent_channel_label": "sles12-pool-s390x", + "product_id": 1115, + "repository_id": 1731, + "parent_product_id": null, + "root_product_id": 1115, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/12/s390x/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Manager-Tools12-Debuginfo-Pool for s390x", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-sdk12-updates-s390x", + "parent_channel_label": "sles12-pool-s390x", + "product_id": 1146, + "repository_id": 1660, + "parent_product_id": 1115, + "root_product_id": 1115, + "update_tag": "SLE-SDK", + "url": "https://updates.suse.com/SUSE/Updates/SLE-SDK/12/s390x/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-SDK12-Updates for s390x", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-sdk12-debuginfo-updates-s390x", + "parent_channel_label": "sles12-pool-s390x", + "product_id": 1146, + "repository_id": 1661, + "parent_product_id": 1115, + "root_product_id": 1115, + "update_tag": "SLE-SDK", + "url": "https://updates.suse.com/SUSE/Updates/SLE-SDK/12/s390x/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-SDK12-Debuginfo-Updates for s390x", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-sdk12-pool-s390x", + "parent_channel_label": "sles12-pool-s390x", + "product_id": 1146, + "repository_id": 1662, + "parent_product_id": 1115, + "root_product_id": 1115, + "update_tag": "SLE-SDK", + "url": "https://updates.suse.com/SUSE/Products/SLE-SDK/12/s390x/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-SDK12-Pool for s390x", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-sdk12-debuginfo-pool-s390x", + "parent_channel_label": "sles12-pool-s390x", + "product_id": 1146, + "repository_id": 1663, + "parent_product_id": 1115, + "root_product_id": 1115, + "update_tag": "SLE-SDK", + "url": "https://updates.suse.com/SUSE/Products/SLE-SDK/12/s390x/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-SDK12-Debuginfo-Pool for s390x", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-legacy12-updates-s390x", + "parent_channel_label": "sles12-pool-s390x", + "product_id": 1149, + "repository_id": 1672, + "parent_product_id": 1115, + "root_product_id": 1115, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/12/s390x/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy12-Updates for s390x", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-legacy12-debuginfo-updates-s390x", + "parent_channel_label": "sles12-pool-s390x", + "product_id": 1149, + "repository_id": 1673, + "parent_product_id": 1115, + "root_product_id": 1115, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/12/s390x/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy12-Debuginfo-Updates for s390x", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-legacy12-pool-s390x", + "parent_channel_label": "sles12-pool-s390x", + "product_id": 1149, + "repository_id": 1674, + "parent_product_id": 1115, + "root_product_id": 1115, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/12/s390x/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy12-Pool for s390x", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-legacy12-debuginfo-pool-s390x", + "parent_channel_label": "sles12-pool-s390x", + "product_id": 1149, + "repository_id": 1675, + "parent_product_id": 1115, + "root_product_id": 1115, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/12/s390x/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy12-Debuginfo-Pool for s390x", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting12-updates-s390x", + "parent_channel_label": "sles12-pool-s390x", + "product_id": 1152, + "repository_id": 1684, + "parent_product_id": 1115, + "root_product_id": 1115, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/12/s390x/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Web-Scripting12-Updates for s390x", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting12-debuginfo-updates-s390x", + "parent_channel_label": "sles12-pool-s390x", + "product_id": 1152, + "repository_id": 1685, + "parent_product_id": 1115, + "root_product_id": 1115, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/12/s390x/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Web-Scripting12-Debuginfo-Updates for s390x", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting12-pool-s390x", + "parent_channel_label": "sles12-pool-s390x", + "product_id": 1152, + "repository_id": 1686, + "parent_product_id": 1115, + "root_product_id": 1115, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/12/s390x/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Web-Scripting12-Pool for s390x", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting12-debuginfo-pool-s390x", + "parent_channel_label": "sles12-pool-s390x", + "product_id": 1152, + "repository_id": 1687, + "parent_product_id": 1115, + "root_product_id": 1115, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/12/s390x/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Web-Scripting12-Debuginfo-Pool for s390x", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud12-updates-s390x", + "parent_channel_label": "sles12-pool-s390x", + "product_id": 1219, + "repository_id": 1696, + "parent_product_id": 1115, + "root_product_id": 1115, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/12/s390x/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud12-Updates for s390x", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud12-debuginfo-updates-s390x", + "parent_channel_label": "sles12-pool-s390x", + "product_id": 1219, + "repository_id": 1697, + "parent_product_id": 1115, + "root_product_id": 1115, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/12/s390x/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud12-Debuginfo-Updates for s390x", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud12-pool-s390x", + "parent_channel_label": "sles12-pool-s390x", + "product_id": 1219, + "repository_id": 1698, + "parent_product_id": 1115, + "root_product_id": 1115, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/12/s390x/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud12-Pool for s390x", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud12-debuginfo-pool-s390x", + "parent_channel_label": "sles12-pool-s390x", + "product_id": 1219, + "repository_id": 1699, + "parent_product_id": 1115, + "root_product_id": 1115, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/12/s390x/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud12-Debuginfo-Pool for s390x", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-ha12-updates-s390x", + "parent_channel_label": "sles12-pool-s390x", + "product_id": 1244, + "repository_id": 1708, + "parent_product_id": 1115, + "root_product_id": 1115, + "update_tag": "SLE-HA", + "url": "https://updates.suse.com/SUSE/Updates/SLE-HA/12/s390x/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-HA12-Updates for s390x", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-ha12-debuginfo-updates-s390x", + "parent_channel_label": "sles12-pool-s390x", + "product_id": 1244, + "repository_id": 1709, + "parent_product_id": 1115, + "root_product_id": 1115, + "update_tag": "SLE-HA", + "url": "https://updates.suse.com/SUSE/Updates/SLE-HA/12/s390x/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-HA12-Debuginfo-Updates for s390x", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-ha12-pool-s390x", + "parent_channel_label": "sles12-pool-s390x", + "product_id": 1244, + "repository_id": 1710, + "parent_product_id": 1115, + "root_product_id": 1115, + "update_tag": "SLE-HA", + "url": "https://updates.suse.com/SUSE/Products/SLE-HA/12/s390x/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-HA12-Pool for s390x", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-ha12-debuginfo-pool-s390x", + "parent_channel_label": "sles12-pool-s390x", + "product_id": 1244, + "repository_id": 1711, + "parent_product_id": 1115, + "root_product_id": 1115, + "update_tag": "SLE-HA", + "url": "https://updates.suse.com/SUSE/Products/SLE-HA/12/s390x/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-HA12-Debuginfo-Pool for s390x", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-ha-geo12-updates-s390x", + "parent_channel_label": "sles12-pool-s390x", + "product_id": 1156, + "repository_id": 1716, + "parent_product_id": 1244, + "root_product_id": 1115, + "update_tag": "SLE-HA-GEO", + "url": "https://updates.suse.com/SUSE/Updates/SLE-HA-GEO/12/s390x/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-HA-GEO12-Updates for s390x", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-ha-geo12-debuginfo-updates-s390x", + "parent_channel_label": "sles12-pool-s390x", + "product_id": 1156, + "repository_id": 1717, + "parent_product_id": 1244, + "root_product_id": 1115, + "update_tag": "SLE-HA-GEO", + "url": "https://updates.suse.com/SUSE/Updates/SLE-HA-GEO/12/s390x/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-HA-GEO12-Debuginfo-Updates for s390x", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-ha-geo12-pool-s390x", + "parent_channel_label": "sles12-pool-s390x", + "product_id": 1156, + "repository_id": 1718, + "parent_product_id": 1244, + "root_product_id": 1115, + "update_tag": "SLE-HA-GEO", + "url": "https://updates.suse.com/SUSE/Products/SLE-HA-GEO/12/s390x/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-HA-GEO12-Pool for s390x", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-ha-geo12-debuginfo-pool-s390x", + "parent_channel_label": "sles12-pool-s390x", + "product_id": 1156, + "repository_id": 1719, + "parent_product_id": 1244, + "root_product_id": 1115, + "update_tag": "SLE-HA-GEO", + "url": "https://updates.suse.com/SUSE/Products/SLE-HA-GEO/12/s390x/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-HA-GEO12-Debuginfo-Pool for s390x", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-manager-tools12-updates-s390x-slemt", + "parent_channel_label": "sles12-pool-s390x", + "product_id": 1247, + "repository_id": 1728, + "parent_product_id": 1115, + "root_product_id": 1115, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/12/s390x/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Manager-Tools12-Updates for s390x SLE-M-T", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools12-debuginfo-updates-s390x-slemt", + "parent_channel_label": "sles12-pool-s390x", + "product_id": 1247, + "repository_id": 1729, + "parent_product_id": 1115, + "root_product_id": 1115, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/12/s390x/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Manager-Tools12-Debuginfo-Updates for s390x SLE-M-T", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools12-pool-s390x-slemt", + "parent_channel_label": "sles12-pool-s390x", + "product_id": 1247, + "repository_id": 1730, + "parent_product_id": 1115, + "root_product_id": 1115, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/12/s390x/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Manager-Tools12-Pool for s390x SLE-M-T", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools12-debuginfo-pool-s390x-slemt", + "parent_channel_label": "sles12-pool-s390x", + "product_id": 1247, + "repository_id": 1731, + "parent_product_id": 1115, + "root_product_id": 1115, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/12/s390x/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Manager-Tools12-Debuginfo-Pool for s390x SLE-M-T", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-adv-systems-management12-updates-s390x", + "parent_channel_label": "sles12-pool-s390x", + "product_id": 1295, + "repository_id": 1766, + "parent_product_id": 1115, + "root_product_id": 1115, + "update_tag": "SLE-Module-Adv-Systems-Management", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Adv-Systems-Management/12/s390x/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Adv-Systems-Management12-Updates for s390x", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-adv-systems-management12-debuginfo-updates-s390x", + "parent_channel_label": "sles12-pool-s390x", + "product_id": 1295, + "repository_id": 1767, + "parent_product_id": 1115, + "root_product_id": 1115, + "update_tag": "SLE-Module-Adv-Systems-Management", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Adv-Systems-Management/12/s390x/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Adv-Systems-Management12-Debuginfo-Updates for s390x", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-adv-systems-management12-pool-s390x", + "parent_channel_label": "sles12-pool-s390x", + "product_id": 1295, + "repository_id": 1768, + "parent_product_id": 1115, + "root_product_id": 1115, + "update_tag": "SLE-Module-Adv-Systems-Management", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Adv-Systems-Management/12/s390x/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Adv-Systems-Management12-Pool for s390x", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-adv-systems-management12-debuginfo-pool-s390x", + "parent_channel_label": "sles12-pool-s390x", + "product_id": 1295, + "repository_id": 1769, + "parent_product_id": 1115, + "root_product_id": 1115, + "update_tag": "SLE-Module-Adv-Systems-Management", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Adv-Systems-Management/12/s390x/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Adv-Systems-Management12-Debuginfo-Pool for s390x", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-toolchain12-updates-s390x", + "parent_channel_label": "sles12-pool-s390x", + "product_id": 1340, + "repository_id": 1899, + "parent_product_id": 1115, + "root_product_id": 1115, + "update_tag": "SLE-Module-Toolchain", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Toolchain/12/s390x/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Toolchain12-Updates for s390x", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-toolchain12-debuginfo-updates-s390x", + "parent_channel_label": "sles12-pool-s390x", + "product_id": 1340, + "repository_id": 1900, + "parent_product_id": 1115, + "root_product_id": 1115, + "update_tag": "SLE-Module-Toolchain", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Toolchain/12/s390x/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Toolchain12-Debuginfo-Updates for s390x", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-toolchain12-pool-s390x", + "parent_channel_label": "sles12-pool-s390x", + "product_id": 1340, + "repository_id": 1901, + "parent_product_id": 1115, + "root_product_id": 1115, + "update_tag": "SLE-Module-Toolchain", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Toolchain/12/s390x/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Toolchain12-Pool for s390x", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-toolchain12-debuginfo-pool-s390x", + "parent_channel_label": "sles12-pool-s390x", + "product_id": 1340, + "repository_id": 1902, + "parent_product_id": 1115, + "root_product_id": 1115, + "update_tag": "SLE-Module-Toolchain", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Toolchain/12/s390x/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Toolchain12-Debuginfo-Pool for s390x", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-containers12-updates-s390x", + "parent_channel_label": "sles12-pool-s390x", + "product_id": 1354, + "repository_id": 1977, + "parent_product_id": 1115, + "root_product_id": 1115, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/12/s390x/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers12-Updates for s390x", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-containers12-debuginfo-updates-s390x", + "parent_channel_label": "sles12-pool-s390x", + "product_id": 1354, + "repository_id": 1978, + "parent_product_id": 1115, + "root_product_id": 1115, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/12/s390x/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers12-Debuginfo-Updates for s390x", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-containers12-pool-s390x", + "parent_channel_label": "sles12-pool-s390x", + "product_id": 1354, + "repository_id": 1979, + "parent_product_id": 1115, + "root_product_id": 1115, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Containers/12/s390x/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers12-Pool for s390x", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-containers12-debuginfo-pool-s390x", + "parent_channel_label": "sles12-pool-s390x", + "product_id": 1354, + "repository_id": 1980, + "parent_product_id": 1115, + "root_product_id": 1115, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Containers/12/s390x/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers12-Debuginfo-Pool for s390x", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-certifications12-updates-s390x", + "parent_channel_label": "sles12-pool-s390x", + "product_id": 1367, + "repository_id": 2064, + "parent_product_id": 1115, + "root_product_id": 1115, + "update_tag": "SLE-Module-Certifications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Certifications/12/s390x/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Certifications12-Updates for s390x", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-certifications12-debuginfo-updates-s390x", + "parent_channel_label": "sles12-pool-s390x", + "product_id": 1367, + "repository_id": 2065, + "parent_product_id": 1115, + "root_product_id": 1115, + "update_tag": "SLE-Module-Certifications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Certifications/12/s390x/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Certifications12-Debuginfo-Updates for s390x", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-certifications12-pool-s390x", + "parent_channel_label": "sles12-pool-s390x", + "product_id": 1367, + "repository_id": 2066, + "parent_product_id": 1115, + "root_product_id": 1115, + "update_tag": "SLE-Module-Certifications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Certifications/12/s390x/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Certifications12-Pool for s390x", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-certifications12-debuginfo-pool-s390x", + "parent_channel_label": "sles12-pool-s390x", + "product_id": 1367, + "repository_id": 2067, + "parent_product_id": 1115, + "root_product_id": 1115, + "update_tag": "SLE-Module-Certifications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Certifications/12/s390x/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Certifications12-Debuginfo-Pool for s390x", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles12-ltss-updates-s390x", + "parent_channel_label": "sles12-pool-s390x", + "product_id": 1380, + "repository_id": 2107, + "parent_product_id": 1115, + "root_product_id": 1115, + "update_tag": "SLE-SERVER", + "url": "https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-LTSS/s390x/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLES12-LTSS-Updates for s390x", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles12-ltss-debuginfo-updates-s390x", + "parent_channel_label": "sles12-pool-s390x", + "product_id": 1380, + "repository_id": 2108, + "parent_product_id": 1115, + "root_product_id": 1115, + "update_tag": "SLE-SERVER", + "url": "https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-LTSS/s390x/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLES12-LTSS-Debuginfo-Updates for s390x", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-packagehub-12-s390x", + "parent_channel_label": "sles12-pool-s390x", + "product_id": 1474, + "repository_id": 2330, + "parent_product_id": 1115, + "root_product_id": 1115, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-12_s390x/standard/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-12-Standard-Pool for s390x", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-packagehub-12-debuginfo-s390x", + "parent_channel_label": "sles12-pool-s390x", + "product_id": 1474, + "repository_id": 2331, + "parent_product_id": 1115, + "root_product_id": 1115, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-12_s390x/standard_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-12-Debuginfo for s390x", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-packagehub-12-pool-s390x", + "parent_channel_label": "sles12-pool-s390x", + "product_id": 1474, + "repository_id": 2332, + "parent_product_id": 1115, + "root_product_id": 1115, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-12_s390x/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-12-Pool for s390x", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-manager-tools12-beta-updates-s390x", + "parent_channel_label": "sles12-pool-s390x", + "product_id": 1746, + "repository_id": 3072, + "parent_product_id": 1115, + "root_product_id": 1115, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/12-BETA/s390x/update/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools12-BETA-Updates for s390x", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools12-beta-debuginfo-updates-s390x", + "parent_channel_label": "sles12-pool-s390x", + "product_id": 1746, + "repository_id": 3073, + "parent_product_id": 1115, + "root_product_id": 1115, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/12-BETA/s390x/update_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools12-BETA-Debuginfo-Updates for s390x", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools12-beta-pool-s390x", + "parent_channel_label": "sles12-pool-s390x", + "product_id": 1746, + "repository_id": 3074, + "parent_product_id": 1115, + "root_product_id": 1115, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/12-BETA/s390x/product/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools12-BETA-Pool for s390x", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools12-beta-debuginfo-pool-s390x", + "parent_channel_label": "sles12-pool-s390x", + "product_id": 1746, + "repository_id": 3075, + "parent_product_id": 1115, + "root_product_id": 1115, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/12-BETA/s390x/product_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools12-BETA-Debuginfo-Pool for s390x", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sles12-updates-ppc64le", + "parent_channel_label": "sles12-pool-ppc64le", + "product_id": 1116, + "repository_id": 1624, + "parent_product_id": null, + "root_product_id": 1116, + "update_tag": "SLE-SERVER", + "url": "https://updates.suse.com/SUSE/Updates/SLE-SERVER/12/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLES12-Updates for ppc64le", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles12-debuginfo-updates-ppc64le", + "parent_channel_label": "sles12-pool-ppc64le", + "product_id": 1116, + "repository_id": 1625, + "parent_product_id": null, + "root_product_id": 1116, + "update_tag": "SLE-SERVER", + "url": "https://updates.suse.com/SUSE/Updates/SLE-SERVER/12/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLES12-Debuginfo-Updates for ppc64le", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles12-pool-ppc64le", + "parent_channel_label": null, + "product_id": 1116, + "repository_id": 1626, + "parent_product_id": null, + "root_product_id": 1116, + "update_tag": "SLE-SERVER", + "url": "https://updates.suse.com/SUSE/Products/SLE-SERVER/12/ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLES12-Pool for ppc64le", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles12-debuginfo-pool-ppc64le", + "parent_channel_label": "sles12-pool-ppc64le", + "product_id": 1116, + "repository_id": 1627, + "parent_product_id": null, + "root_product_id": 1116, + "update_tag": "SLE-SERVER", + "url": "https://updates.suse.com/SUSE/Products/SLE-SERVER/12/ppc64le/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLES12-Debuginfo-Pool for ppc64le", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-manager-tools12-updates-ppc64le", + "parent_channel_label": "sles12-pool-ppc64le", + "product_id": 1116, + "repository_id": 1724, + "parent_product_id": null, + "root_product_id": 1116, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/12/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Manager-Tools12-Updates for ppc64le", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools12-debuginfo-updates-ppc64le", + "parent_channel_label": "sles12-pool-ppc64le", + "product_id": 1116, + "repository_id": 1725, + "parent_product_id": null, + "root_product_id": 1116, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/12/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Manager-Tools12-Debuginfo-Updates for ppc64le", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools12-pool-ppc64le", + "parent_channel_label": "sles12-pool-ppc64le", + "product_id": 1116, + "repository_id": 1726, + "parent_product_id": null, + "root_product_id": 1116, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/12/ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Manager-Tools12-Pool for ppc64le", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools12-debuginfo-pool-ppc64le", + "parent_channel_label": "sles12-pool-ppc64le", + "product_id": 1116, + "repository_id": 1727, + "parent_product_id": null, + "root_product_id": 1116, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/12/ppc64le/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Manager-Tools12-Debuginfo-Pool for ppc64le", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-sdk12-updates-ppc64le", + "parent_channel_label": "sles12-pool-ppc64le", + "product_id": 1145, + "repository_id": 1656, + "parent_product_id": 1116, + "root_product_id": 1116, + "update_tag": "SLE-SDK", + "url": "https://updates.suse.com/SUSE/Updates/SLE-SDK/12/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-SDK12-Updates for ppc64le", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-sdk12-debuginfo-updates-ppc64le", + "parent_channel_label": "sles12-pool-ppc64le", + "product_id": 1145, + "repository_id": 1657, + "parent_product_id": 1116, + "root_product_id": 1116, + "update_tag": "SLE-SDK", + "url": "https://updates.suse.com/SUSE/Updates/SLE-SDK/12/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-SDK12-Debuginfo-Updates for ppc64le", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-sdk12-pool-ppc64le", + "parent_channel_label": "sles12-pool-ppc64le", + "product_id": 1145, + "repository_id": 1658, + "parent_product_id": 1116, + "root_product_id": 1116, + "update_tag": "SLE-SDK", + "url": "https://updates.suse.com/SUSE/Products/SLE-SDK/12/ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-SDK12-Pool for ppc64le", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-sdk12-debuginfo-pool-ppc64le", + "parent_channel_label": "sles12-pool-ppc64le", + "product_id": 1145, + "repository_id": 1659, + "parent_product_id": 1116, + "root_product_id": 1116, + "update_tag": "SLE-SDK", + "url": "https://updates.suse.com/SUSE/Products/SLE-SDK/12/ppc64le/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-SDK12-Debuginfo-Pool for ppc64le", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-legacy12-updates-ppc64le", + "parent_channel_label": "sles12-pool-ppc64le", + "product_id": 1148, + "repository_id": 1668, + "parent_product_id": 1116, + "root_product_id": 1116, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/12/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy12-Updates for ppc64le", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-legacy12-debuginfo-updates-ppc64le", + "parent_channel_label": "sles12-pool-ppc64le", + "product_id": 1148, + "repository_id": 1669, + "parent_product_id": 1116, + "root_product_id": 1116, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/12/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy12-Debuginfo-Updates for ppc64le", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-legacy12-pool-ppc64le", + "parent_channel_label": "sles12-pool-ppc64le", + "product_id": 1148, + "repository_id": 1670, + "parent_product_id": 1116, + "root_product_id": 1116, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/12/ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy12-Pool for ppc64le", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-legacy12-debuginfo-pool-ppc64le", + "parent_channel_label": "sles12-pool-ppc64le", + "product_id": 1148, + "repository_id": 1671, + "parent_product_id": 1116, + "root_product_id": 1116, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/12/ppc64le/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy12-Debuginfo-Pool for ppc64le", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting12-updates-ppc64le", + "parent_channel_label": "sles12-pool-ppc64le", + "product_id": 1151, + "repository_id": 1680, + "parent_product_id": 1116, + "root_product_id": 1116, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/12/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Web-Scripting12-Updates for ppc64le", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting12-debuginfo-updates-ppc64le", + "parent_channel_label": "sles12-pool-ppc64le", + "product_id": 1151, + "repository_id": 1681, + "parent_product_id": 1116, + "root_product_id": 1116, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/12/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Web-Scripting12-Debuginfo-Updates for ppc64le", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting12-pool-ppc64le", + "parent_channel_label": "sles12-pool-ppc64le", + "product_id": 1151, + "repository_id": 1682, + "parent_product_id": 1116, + "root_product_id": 1116, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/12/ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Web-Scripting12-Pool for ppc64le", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting12-debuginfo-pool-ppc64le", + "parent_channel_label": "sles12-pool-ppc64le", + "product_id": 1151, + "repository_id": 1683, + "parent_product_id": 1116, + "root_product_id": 1116, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/12/ppc64le/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Web-Scripting12-Debuginfo-Pool for ppc64le", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud12-updates-ppc64le", + "parent_channel_label": "sles12-pool-ppc64le", + "product_id": 1218, + "repository_id": 1692, + "parent_product_id": 1116, + "root_product_id": 1116, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/12/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud12-Updates for ppc64le", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud12-debuginfo-updates-ppc64le", + "parent_channel_label": "sles12-pool-ppc64le", + "product_id": 1218, + "repository_id": 1693, + "parent_product_id": 1116, + "root_product_id": 1116, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/12/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud12-Debuginfo-Updates for ppc64le", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud12-pool-ppc64le", + "parent_channel_label": "sles12-pool-ppc64le", + "product_id": 1218, + "repository_id": 1694, + "parent_product_id": 1116, + "root_product_id": 1116, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/12/ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud12-Pool for ppc64le", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud12-debuginfo-pool-ppc64le", + "parent_channel_label": "sles12-pool-ppc64le", + "product_id": 1218, + "repository_id": 1695, + "parent_product_id": 1116, + "root_product_id": 1116, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/12/ppc64le/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud12-Debuginfo-Pool for ppc64le", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-manager-tools12-updates-ppc64le-slemt", + "parent_channel_label": "sles12-pool-ppc64le", + "product_id": 1246, + "repository_id": 1724, + "parent_product_id": 1116, + "root_product_id": 1116, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/12/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Manager-Tools12-Updates for ppc64le SLE-M-T", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools12-debuginfo-updates-ppc64le-slemt", + "parent_channel_label": "sles12-pool-ppc64le", + "product_id": 1246, + "repository_id": 1725, + "parent_product_id": 1116, + "root_product_id": 1116, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/12/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Manager-Tools12-Debuginfo-Updates for ppc64le SLE-M-T", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools12-pool-ppc64le-slemt", + "parent_channel_label": "sles12-pool-ppc64le", + "product_id": 1246, + "repository_id": 1726, + "parent_product_id": 1116, + "root_product_id": 1116, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/12/ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Manager-Tools12-Pool for ppc64le SLE-M-T", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools12-debuginfo-pool-ppc64le-slemt", + "parent_channel_label": "sles12-pool-ppc64le", + "product_id": 1246, + "repository_id": 1727, + "parent_product_id": 1116, + "root_product_id": 1116, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/12/ppc64le/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Manager-Tools12-Debuginfo-Pool for ppc64le SLE-M-T", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "ibm-dlpar-adv-toolchain", + "parent_channel_label": "sles12-pool-ppc64le", + "product_id": 1249, + "repository_id": 4429, + "parent_product_id": 1116, + "root_product_id": 1116, + "update_tag": null, + "url": "https://public.dhe.ibm.com/software/server/POWER/Linux/toolchain/at/suse/SLES_12/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "IBM-DLPAR-Adv-Toolchain for ppc64le", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "ibm-dlpar-utils", + "parent_channel_label": "sles12-pool-ppc64le", + "product_id": 1250, + "repository_id": 6216, + "parent_product_id": 1116, + "root_product_id": 1116, + "update_tag": null, + "url": "https://public.dhe.ibm.com/software/server/POWER/Linux/yum/OSS/SLES/12/ppc64le/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "IBM-DLPAR-utils for ppc64le", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-adv-systems-management12-updates-ppc64le", + "parent_channel_label": "sles12-pool-ppc64le", + "product_id": 1294, + "repository_id": 1762, + "parent_product_id": 1116, + "root_product_id": 1116, + "update_tag": "SLE-Module-Adv-Systems-Management", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Adv-Systems-Management/12/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Adv-Systems-Management12-Updates for ppc64le", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-adv-systems-management12-debuginfo-updates-ppc64le", + "parent_channel_label": "sles12-pool-ppc64le", + "product_id": 1294, + "repository_id": 1763, + "parent_product_id": 1116, + "root_product_id": 1116, + "update_tag": "SLE-Module-Adv-Systems-Management", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Adv-Systems-Management/12/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Adv-Systems-Management12-Debuginfo-Updates for ppc64le", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-adv-systems-management12-pool-ppc64le", + "parent_channel_label": "sles12-pool-ppc64le", + "product_id": 1294, + "repository_id": 1764, + "parent_product_id": 1116, + "root_product_id": 1116, + "update_tag": "SLE-Module-Adv-Systems-Management", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Adv-Systems-Management/12/ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Adv-Systems-Management12-Pool for ppc64le", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-adv-systems-management12-debuginfo-pool-ppc64le", + "parent_channel_label": "sles12-pool-ppc64le", + "product_id": 1294, + "repository_id": 1765, + "parent_product_id": 1116, + "root_product_id": 1116, + "update_tag": "SLE-Module-Adv-Systems-Management", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Adv-Systems-Management/12/ppc64le/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Adv-Systems-Management12-Debuginfo-Pool for ppc64le", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-toolchain12-updates-ppc64le", + "parent_channel_label": "sles12-pool-ppc64le", + "product_id": 1339, + "repository_id": 1895, + "parent_product_id": 1116, + "root_product_id": 1116, + "update_tag": "SLE-Module-Toolchain", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Toolchain/12/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Toolchain12-Updates for ppc64le", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-toolchain12-debuginfo-updates-ppc64le", + "parent_channel_label": "sles12-pool-ppc64le", + "product_id": 1339, + "repository_id": 1896, + "parent_product_id": 1116, + "root_product_id": 1116, + "update_tag": "SLE-Module-Toolchain", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Toolchain/12/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Toolchain12-Debuginfo-Updates for ppc64le", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-toolchain12-pool-ppc64le", + "parent_channel_label": "sles12-pool-ppc64le", + "product_id": 1339, + "repository_id": 1897, + "parent_product_id": 1116, + "root_product_id": 1116, + "update_tag": "SLE-Module-Toolchain", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Toolchain/12/ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Toolchain12-Pool for ppc64le", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-toolchain12-debuginfo-pool-ppc64le", + "parent_channel_label": "sles12-pool-ppc64le", + "product_id": 1339, + "repository_id": 1898, + "parent_product_id": 1116, + "root_product_id": 1116, + "update_tag": "SLE-Module-Toolchain", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Toolchain/12/ppc64le/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Toolchain12-Debuginfo-Pool for ppc64le", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-containers12-updates-ppc64le", + "parent_channel_label": "sles12-pool-ppc64le", + "product_id": 1353, + "repository_id": 1972, + "parent_product_id": 1116, + "root_product_id": 1116, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/12/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers12-Updates for ppc64le", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-containers12-debuginfo-updates-ppc64le", + "parent_channel_label": "sles12-pool-ppc64le", + "product_id": 1353, + "repository_id": 1973, + "parent_product_id": 1116, + "root_product_id": 1116, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/12/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers12-Debuginfo-Updates for ppc64le", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-containers12-pool-ppc64le", + "parent_channel_label": "sles12-pool-ppc64le", + "product_id": 1353, + "repository_id": 1974, + "parent_product_id": 1116, + "root_product_id": 1116, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Containers/12/ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers12-Pool for ppc64le", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-containers12-debuginfo-pool-ppc64le", + "parent_channel_label": "sles12-pool-ppc64le", + "product_id": 1353, + "repository_id": 1975, + "parent_product_id": 1116, + "root_product_id": 1116, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Containers/12/ppc64le/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers12-Debuginfo-Pool for ppc64le", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-packagehub-12-ppc64le", + "parent_channel_label": "sles12-pool-ppc64le", + "product_id": 1475, + "repository_id": 2333, + "parent_product_id": 1116, + "root_product_id": 1116, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-12_ppc64le/standard/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-12-Standard-Pool for ppc64le", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-packagehub-12-debuginfo-ppc64le", + "parent_channel_label": "sles12-pool-ppc64le", + "product_id": 1475, + "repository_id": 2334, + "parent_product_id": 1116, + "root_product_id": 1116, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-12_ppc64le/standard_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-12-Debuginfo for ppc64le", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-packagehub-12-pool-ppc64le", + "parent_channel_label": "sles12-pool-ppc64le", + "product_id": 1475, + "repository_id": 2335, + "parent_product_id": 1116, + "root_product_id": 1116, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-12_ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-12-Pool for ppc64le", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-manager-tools12-beta-updates-ppc64le", + "parent_channel_label": "sles12-pool-ppc64le", + "product_id": 1745, + "repository_id": 3067, + "parent_product_id": 1116, + "root_product_id": 1116, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/12-BETA/ppc64le/update/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools12-BETA-Updates for ppc64le", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools12-beta-debuginfo-updates-ppc64le", + "parent_channel_label": "sles12-pool-ppc64le", + "product_id": 1745, + "repository_id": 3068, + "parent_product_id": 1116, + "root_product_id": 1116, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/12-BETA/ppc64le/update_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools12-BETA-Debuginfo-Updates for ppc64le", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools12-beta-pool-ppc64le", + "parent_channel_label": "sles12-pool-ppc64le", + "product_id": 1745, + "repository_id": 3069, + "parent_product_id": 1116, + "root_product_id": 1116, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/12-BETA/ppc64le/product/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools12-BETA-Pool for ppc64le", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools12-beta-debuginfo-pool-ppc64le", + "parent_channel_label": "sles12-pool-ppc64le", + "product_id": 1745, + "repository_id": 3070, + "parent_product_id": 1116, + "root_product_id": 1116, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/12-BETA/ppc64le/product_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools12-BETA-Debuginfo-Pool for ppc64le", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sles12-updates-x86_64", + "parent_channel_label": "sles12-pool-x86_64", + "product_id": 1117, + "repository_id": 1632, + "parent_product_id": null, + "root_product_id": 1117, + "update_tag": "SLE-SERVER", + "url": "https://updates.suse.com/SUSE/Updates/SLE-SERVER/12/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLES12-Updates for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles12-debuginfo-updates-x86_64", + "parent_channel_label": "sles12-pool-x86_64", + "product_id": 1117, + "repository_id": 1633, + "parent_product_id": null, + "root_product_id": 1117, + "update_tag": "SLE-SERVER", + "url": "https://updates.suse.com/SUSE/Updates/SLE-SERVER/12/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLES12-Debuginfo-Updates for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles12-pool-x86_64", + "parent_channel_label": null, + "product_id": 1117, + "repository_id": 1634, + "parent_product_id": null, + "root_product_id": 1117, + "update_tag": "SLE-SERVER", + "url": "https://updates.suse.com/SUSE/Products/SLE-SERVER/12/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLES12-Pool for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles12-debuginfo-pool-x86_64", + "parent_channel_label": "sles12-pool-x86_64", + "product_id": 1117, + "repository_id": 1635, + "parent_product_id": null, + "root_product_id": 1117, + "update_tag": "SLE-SERVER", + "url": "https://updates.suse.com/SUSE/Products/SLE-SERVER/12/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLES12-Debuginfo-Pool for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-manager-tools12-updates-x86_64", + "parent_channel_label": "sles12-pool-x86_64", + "product_id": 1117, + "repository_id": 1732, + "parent_product_id": null, + "root_product_id": 1117, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/12/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Manager-Tools12-Updates for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools12-debuginfo-updates-x86_64", + "parent_channel_label": "sles12-pool-x86_64", + "product_id": 1117, + "repository_id": 1733, + "parent_product_id": null, + "root_product_id": 1117, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/12/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Manager-Tools12-Debuginfo-Updates for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools12-pool-x86_64", + "parent_channel_label": "sles12-pool-x86_64", + "product_id": 1117, + "repository_id": 1734, + "parent_product_id": null, + "root_product_id": 1117, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/12/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Manager-Tools12-Pool for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools12-debuginfo-pool-x86_64", + "parent_channel_label": "sles12-pool-x86_64", + "product_id": 1117, + "repository_id": 1735, + "parent_product_id": null, + "root_product_id": 1117, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/12/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Manager-Tools12-Debuginfo-Pool for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-legacy12-updates-x86_64", + "parent_channel_label": "sles12-pool-x86_64", + "product_id": 1150, + "repository_id": 1676, + "parent_product_id": 1117, + "root_product_id": 1117, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/12/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy12-Updates for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-legacy12-debuginfo-updates-x86_64", + "parent_channel_label": "sles12-pool-x86_64", + "product_id": 1150, + "repository_id": 1677, + "parent_product_id": 1117, + "root_product_id": 1117, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/12/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy12-Debuginfo-Updates for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-legacy12-pool-x86_64", + "parent_channel_label": "sles12-pool-x86_64", + "product_id": 1150, + "repository_id": 1678, + "parent_product_id": 1117, + "root_product_id": 1117, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/12/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy12-Pool for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-legacy12-debuginfo-pool-x86_64", + "parent_channel_label": "sles12-pool-x86_64", + "product_id": 1150, + "repository_id": 1679, + "parent_product_id": 1117, + "root_product_id": 1117, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/12/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy12-Debuginfo-Pool for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting12-updates-x86_64", + "parent_channel_label": "sles12-pool-x86_64", + "product_id": 1153, + "repository_id": 1688, + "parent_product_id": 1117, + "root_product_id": 1117, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/12/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Web-Scripting12-Updates for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting12-debuginfo-updates-x86_64", + "parent_channel_label": "sles12-pool-x86_64", + "product_id": 1153, + "repository_id": 1689, + "parent_product_id": 1117, + "root_product_id": 1117, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/12/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Web-Scripting12-Debuginfo-Updates for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting12-pool-x86_64", + "parent_channel_label": "sles12-pool-x86_64", + "product_id": 1153, + "repository_id": 1690, + "parent_product_id": 1117, + "root_product_id": 1117, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/12/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Web-Scripting12-Pool for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting12-debuginfo-pool-x86_64", + "parent_channel_label": "sles12-pool-x86_64", + "product_id": 1153, + "repository_id": 1691, + "parent_product_id": 1117, + "root_product_id": 1117, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/12/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Web-Scripting12-Debuginfo-Pool for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-adv-systems-management12-updates-x86_64", + "parent_channel_label": "sles12-pool-x86_64", + "product_id": 1212, + "repository_id": 1704, + "parent_product_id": 1117, + "root_product_id": 1117, + "update_tag": "SLE-Module-Adv-Systems-Management", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Adv-Systems-Management/12/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Adv-Systems-Management12-Updates for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-adv-systems-management12-debuginfo-updates-x86_64", + "parent_channel_label": "sles12-pool-x86_64", + "product_id": 1212, + "repository_id": 1705, + "parent_product_id": 1117, + "root_product_id": 1117, + "update_tag": "SLE-Module-Adv-Systems-Management", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Adv-Systems-Management/12/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Adv-Systems-Management12-Debuginfo-Updates for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-adv-systems-management12-pool-x86_64", + "parent_channel_label": "sles12-pool-x86_64", + "product_id": 1212, + "repository_id": 1706, + "parent_product_id": 1117, + "root_product_id": 1117, + "update_tag": "SLE-Module-Adv-Systems-Management", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Adv-Systems-Management/12/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Adv-Systems-Management12-Pool for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-adv-systems-management12-debuginfo-pool-x86_64", + "parent_channel_label": "sles12-pool-x86_64", + "product_id": 1212, + "repository_id": 1707, + "parent_product_id": 1117, + "root_product_id": 1117, + "update_tag": "SLE-Module-Adv-Systems-Management", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Adv-Systems-Management/12/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Adv-Systems-Management12-Debuginfo-Pool for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud12-updates-x86_64", + "parent_channel_label": "sles12-pool-x86_64", + "product_id": 1220, + "repository_id": 1700, + "parent_product_id": 1117, + "root_product_id": 1117, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/12/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud12-Updates for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud12-debuginfo-updates-x86_64", + "parent_channel_label": "sles12-pool-x86_64", + "product_id": 1220, + "repository_id": 1701, + "parent_product_id": 1117, + "root_product_id": 1117, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/12/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud12-Debuginfo-Updates for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud12-pool-x86_64", + "parent_channel_label": "sles12-pool-x86_64", + "product_id": 1220, + "repository_id": 1702, + "parent_product_id": 1117, + "root_product_id": 1117, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/12/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud12-Pool for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud12-debuginfo-pool-x86_64", + "parent_channel_label": "sles12-pool-x86_64", + "product_id": 1220, + "repository_id": 1703, + "parent_product_id": 1117, + "root_product_id": 1117, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/12/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud12-Debuginfo-Pool for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-12-ga-desktop-nvidia-driver-x86_64-we", + "parent_channel_label": "sles12-pool-x86_64", + "product_id": 1222, + "repository_id": 1503, + "parent_product_id": 1117, + "root_product_id": 1117, + "update_tag": null, + "url": "http://download.nvidia.com/novell/sle12/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-12-GA-Desktop-NVIDIA-Driver for x86_64 WE", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-we12-updates-x86_64", + "parent_channel_label": "sles12-pool-x86_64", + "product_id": 1222, + "repository_id": 1652, + "parent_product_id": 1117, + "root_product_id": 1117, + "update_tag": "SLE-WE", + "url": "https://updates.suse.com/SUSE/Updates/SLE-WE/12/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-WE12-Updates for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-we12-debuginfo-updates-x86_64", + "parent_channel_label": "sles12-pool-x86_64", + "product_id": 1222, + "repository_id": 1653, + "parent_product_id": 1117, + "root_product_id": 1117, + "update_tag": "SLE-WE", + "url": "https://updates.suse.com/SUSE/Updates/SLE-WE/12/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-WE12-Debuginfo-Updates for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-we12-pool-x86_64", + "parent_channel_label": "sles12-pool-x86_64", + "product_id": 1222, + "repository_id": 1654, + "parent_product_id": 1117, + "root_product_id": 1117, + "update_tag": "SLE-WE", + "url": "https://updates.suse.com/SUSE/Products/SLE-WE/12/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-WE12-Pool for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-we12-debuginfo-pool-x86_64", + "parent_channel_label": "sles12-pool-x86_64", + "product_id": 1222, + "repository_id": 1655, + "parent_product_id": 1117, + "root_product_id": 1117, + "update_tag": "SLE-WE", + "url": "https://updates.suse.com/SUSE/Products/SLE-WE/12/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-WE12-Debuginfo-Pool for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-sdk12-updates-x86_64", + "parent_channel_label": "sles12-pool-x86_64", + "product_id": 1223, + "repository_id": 1664, + "parent_product_id": 1117, + "root_product_id": 1117, + "update_tag": "SLE-SDK", + "url": "https://updates.suse.com/SUSE/Updates/SLE-SDK/12/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-SDK12-Updates for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-sdk12-debuginfo-updates-x86_64", + "parent_channel_label": "sles12-pool-x86_64", + "product_id": 1223, + "repository_id": 1665, + "parent_product_id": 1117, + "root_product_id": 1117, + "update_tag": "SLE-SDK", + "url": "https://updates.suse.com/SUSE/Updates/SLE-SDK/12/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-SDK12-Debuginfo-Updates for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-sdk12-pool-x86_64", + "parent_channel_label": "sles12-pool-x86_64", + "product_id": 1223, + "repository_id": 1666, + "parent_product_id": 1117, + "root_product_id": 1117, + "update_tag": "SLE-SDK", + "url": "https://updates.suse.com/SUSE/Products/SLE-SDK/12/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-SDK12-Pool for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-sdk12-debuginfo-pool-x86_64", + "parent_channel_label": "sles12-pool-x86_64", + "product_id": 1223, + "repository_id": 1667, + "parent_product_id": 1117, + "root_product_id": 1117, + "update_tag": "SLE-SDK", + "url": "https://updates.suse.com/SUSE/Products/SLE-SDK/12/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-SDK12-Debuginfo-Pool for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-ha12-updates-x86_64", + "parent_channel_label": "sles12-pool-x86_64", + "product_id": 1245, + "repository_id": 1712, + "parent_product_id": 1117, + "root_product_id": 1117, + "update_tag": "SLE-HA", + "url": "https://updates.suse.com/SUSE/Updates/SLE-HA/12/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-HA12-Updates for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-ha12-debuginfo-updates-x86_64", + "parent_channel_label": "sles12-pool-x86_64", + "product_id": 1245, + "repository_id": 1713, + "parent_product_id": 1117, + "root_product_id": 1117, + "update_tag": "SLE-HA", + "url": "https://updates.suse.com/SUSE/Updates/SLE-HA/12/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-HA12-Debuginfo-Updates for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-ha12-pool-x86_64", + "parent_channel_label": "sles12-pool-x86_64", + "product_id": 1245, + "repository_id": 1714, + "parent_product_id": 1117, + "root_product_id": 1117, + "update_tag": "SLE-HA", + "url": "https://updates.suse.com/SUSE/Products/SLE-HA/12/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-HA12-Pool for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-ha12-debuginfo-pool-x86_64", + "parent_channel_label": "sles12-pool-x86_64", + "product_id": 1245, + "repository_id": 1715, + "parent_product_id": 1117, + "root_product_id": 1117, + "update_tag": "SLE-HA", + "url": "https://updates.suse.com/SUSE/Products/SLE-HA/12/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-HA12-Debuginfo-Pool for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-ha-geo12-updates-x86_64", + "parent_channel_label": "sles12-pool-x86_64", + "product_id": 1157, + "repository_id": 1720, + "parent_product_id": 1245, + "root_product_id": 1117, + "update_tag": "SLE-HA-GEO", + "url": "https://updates.suse.com/SUSE/Updates/SLE-HA-GEO/12/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-HA-GEO12-Updates for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-ha-geo12-debuginfo-updates-x86_64", + "parent_channel_label": "sles12-pool-x86_64", + "product_id": 1157, + "repository_id": 1721, + "parent_product_id": 1245, + "root_product_id": 1117, + "update_tag": "SLE-HA-GEO", + "url": "https://updates.suse.com/SUSE/Updates/SLE-HA-GEO/12/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-HA-GEO12-Debuginfo-Updates for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-ha-geo12-pool-x86_64", + "parent_channel_label": "sles12-pool-x86_64", + "product_id": 1157, + "repository_id": 1722, + "parent_product_id": 1245, + "root_product_id": 1117, + "update_tag": "SLE-HA-GEO", + "url": "https://updates.suse.com/SUSE/Products/SLE-HA-GEO/12/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-HA-GEO12-Pool for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-ha-geo12-debuginfo-pool-x86_64", + "parent_channel_label": "sles12-pool-x86_64", + "product_id": 1157, + "repository_id": 1723, + "parent_product_id": 1245, + "root_product_id": 1117, + "update_tag": "SLE-HA-GEO", + "url": "https://updates.suse.com/SUSE/Products/SLE-HA-GEO/12/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-HA-GEO12-Debuginfo-Pool for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-manager-tools12-updates-x86_64-slemt", + "parent_channel_label": "sles12-pool-x86_64", + "product_id": 1248, + "repository_id": 1732, + "parent_product_id": 1117, + "root_product_id": 1117, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/12/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Manager-Tools12-Updates for x86_64 SLE-M-T", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools12-debuginfo-updates-x86_64-slemt", + "parent_channel_label": "sles12-pool-x86_64", + "product_id": 1248, + "repository_id": 1733, + "parent_product_id": 1117, + "root_product_id": 1117, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/12/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Manager-Tools12-Debuginfo-Updates for x86_64 SLE-M-T", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools12-pool-x86_64-slemt", + "parent_channel_label": "sles12-pool-x86_64", + "product_id": 1248, + "repository_id": 1734, + "parent_product_id": 1117, + "root_product_id": 1117, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/12/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Manager-Tools12-Pool for x86_64 SLE-M-T", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools12-debuginfo-pool-x86_64-slemt", + "parent_channel_label": "sles12-pool-x86_64", + "product_id": 1248, + "repository_id": 1735, + "parent_product_id": 1117, + "root_product_id": 1117, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/12/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Manager-Tools12-Debuginfo-Pool for x86_64 SLE-M-T", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-live-patching12-updates-x86_64", + "parent_channel_label": "sles12-pool-x86_64", + "product_id": 1253, + "repository_id": 1741, + "parent_product_id": 1117, + "root_product_id": 1117, + "update_tag": "SLE-Live-Patching", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Live-Patching/12/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Live-Patching12-Updates for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-live-patching12-debuginfo-updates-x86_64", + "parent_channel_label": "sles12-pool-x86_64", + "product_id": 1253, + "repository_id": 1742, + "parent_product_id": 1117, + "root_product_id": 1117, + "update_tag": "SLE-Live-Patching", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Live-Patching/12/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Live-Patching12-Debuginfo-Updates for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-live-patching12-pool-x86_64", + "parent_channel_label": "sles12-pool-x86_64", + "product_id": 1253, + "repository_id": 1743, + "parent_product_id": 1117, + "root_product_id": 1117, + "update_tag": "SLE-Live-Patching", + "url": "https://updates.suse.com/SUSE/Products/SLE-Live-Patching/12/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Live-Patching12-Pool for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-live-patching12-debuginfo-pool-x86_64", + "parent_channel_label": "sles12-pool-x86_64", + "product_id": 1253, + "repository_id": 1744, + "parent_product_id": 1117, + "root_product_id": 1117, + "update_tag": "SLE-Live-Patching", + "url": "https://updates.suse.com/SUSE/Products/SLE-Live-Patching/12/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Live-Patching12-Debuginfo-Pool for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-enterprise-storage-1.0-updates-x86_64", + "parent_channel_label": "sles12-pool-x86_64", + "product_id": 1304, + "repository_id": 1772, + "parent_product_id": 1117, + "root_product_id": 1117, + "update_tag": "Storage-1.0", + "url": "https://updates.suse.com/SUSE/Updates/Storage/1.0/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-Enterprise-Storage-1.0-Updates for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-enterprise-storage-1.0-debuginfo-updates-x86_64", + "parent_channel_label": "sles12-pool-x86_64", + "product_id": 1304, + "repository_id": 1773, + "parent_product_id": 1117, + "root_product_id": 1117, + "update_tag": "Storage-1.0", + "url": "https://updates.suse.com/SUSE/Updates/Storage/1.0/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SUSE-Enterprise-Storage-1.0-Debuginfo-Updates for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-enterprise-storage-1.0-pool-x86_64", + "parent_channel_label": "sles12-pool-x86_64", + "product_id": 1304, + "repository_id": 1774, + "parent_product_id": 1117, + "root_product_id": 1117, + "update_tag": "Storage-1.0", + "url": "https://updates.suse.com/SUSE/Products/Storage/1.0/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-Enterprise-Storage-1.0-Pool for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-enterprise-storage-1.0-debuginfo-pool-x86_64", + "parent_channel_label": "sles12-pool-x86_64", + "product_id": 1304, + "repository_id": 1775, + "parent_product_id": 1117, + "root_product_id": 1117, + "update_tag": "Storage-1.0", + "url": "https://updates.suse.com/SUSE/Products/Storage/1.0/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SUSE-Enterprise-Storage-1.0-Debuginfo-Pool for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-12-cloud-compute5-updates-x86_64", + "parent_channel_label": "sles12-pool-x86_64", + "product_id": 1317, + "repository_id": 1813, + "parent_product_id": 1117, + "root_product_id": 1117, + "update_tag": "SLE12-CLOUD-5", + "url": "https://updates.suse.com/SUSE/Updates/12-Cloud-Compute/5/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-12-Cloud-Compute5-Updates for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-12-cloud-compute5-debuginfo-updates-x86_64", + "parent_channel_label": "sles12-pool-x86_64", + "product_id": 1317, + "repository_id": 1814, + "parent_product_id": 1117, + "root_product_id": 1117, + "update_tag": "SLE12-CLOUD-5", + "url": "https://updates.suse.com/SUSE/Updates/12-Cloud-Compute/5/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-12-Cloud-Compute5-Debuginfo-Updates for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-12-cloud-compute5-pool-x86_64", + "parent_channel_label": "sles12-pool-x86_64", + "product_id": 1317, + "repository_id": 1815, + "parent_product_id": 1117, + "root_product_id": 1117, + "update_tag": "SLE12-CLOUD-5", + "url": "https://updates.suse.com/SUSE/Products/12-Cloud-Compute/5/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-12-Cloud-Compute5-Pool for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-12-cloud-compute5-debuginfo-pool-x86_64", + "parent_channel_label": "sles12-pool-x86_64", + "product_id": 1317, + "repository_id": 1816, + "parent_product_id": 1117, + "root_product_id": 1117, + "update_tag": "SLE12-CLOUD-5", + "url": "https://updates.suse.com/SUSE/Products/12-Cloud-Compute/5/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-12-Cloud-Compute5-Debuginfo-Pool for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-containers12-updates-x86_64", + "parent_channel_label": "sles12-pool-x86_64", + "product_id": 1332, + "repository_id": 1864, + "parent_product_id": 1117, + "root_product_id": 1117, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/12/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers12-Updates for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-containers12-debuginfo-updates-x86_64", + "parent_channel_label": "sles12-pool-x86_64", + "product_id": 1332, + "repository_id": 1865, + "parent_product_id": 1117, + "root_product_id": 1117, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/12/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers12-Debuginfo-Updates for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-containers12-pool-x86_64", + "parent_channel_label": "sles12-pool-x86_64", + "product_id": 1332, + "repository_id": 1866, + "parent_product_id": 1117, + "root_product_id": 1117, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Containers/12/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers12-Pool for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-containers12-debuginfo-pool-x86_64", + "parent_channel_label": "sles12-pool-x86_64", + "product_id": 1332, + "repository_id": 1867, + "parent_product_id": 1117, + "root_product_id": 1117, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Containers/12/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers12-Debuginfo-Pool for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-toolchain12-updates-x86_64", + "parent_channel_label": "sles12-pool-x86_64", + "product_id": 1341, + "repository_id": 1903, + "parent_product_id": 1117, + "root_product_id": 1117, + "update_tag": "SLE-Module-Toolchain", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Toolchain/12/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Toolchain12-Updates for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-toolchain12-debuginfo-updates-x86_64", + "parent_channel_label": "sles12-pool-x86_64", + "product_id": 1341, + "repository_id": 1904, + "parent_product_id": 1117, + "root_product_id": 1117, + "update_tag": "SLE-Module-Toolchain", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Toolchain/12/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Toolchain12-Debuginfo-Updates for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-toolchain12-pool-x86_64", + "parent_channel_label": "sles12-pool-x86_64", + "product_id": 1341, + "repository_id": 1905, + "parent_product_id": 1117, + "root_product_id": 1117, + "update_tag": "SLE-Module-Toolchain", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Toolchain/12/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Toolchain12-Pool for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-toolchain12-debuginfo-pool-x86_64", + "parent_channel_label": "sles12-pool-x86_64", + "product_id": 1341, + "repository_id": 1906, + "parent_product_id": 1117, + "root_product_id": 1117, + "update_tag": "SLE-Module-Toolchain", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Toolchain/12/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Toolchain12-Debuginfo-Pool for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-enterprise-storage-2-updates-x86_64", + "parent_channel_label": "sles12-pool-x86_64", + "product_id": 1342, + "repository_id": 1917, + "parent_product_id": 1117, + "root_product_id": 1117, + "update_tag": "Storage-2", + "url": "https://updates.suse.com/SUSE/Updates/Storage/2/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-Enterprise-Storage-2-Updates for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-enterprise-storage-2-debuginfo-updates-x86_64", + "parent_channel_label": "sles12-pool-x86_64", + "product_id": 1342, + "repository_id": 1918, + "parent_product_id": 1117, + "root_product_id": 1117, + "update_tag": "Storage-2", + "url": "https://updates.suse.com/SUSE/Updates/Storage/2/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SUSE-Enterprise-Storage-2-Debuginfo-Updates for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-enterprise-storage-2-pool-x86_64", + "parent_channel_label": "sles12-pool-x86_64", + "product_id": 1342, + "repository_id": 1919, + "parent_product_id": 1117, + "root_product_id": 1117, + "update_tag": "Storage-2", + "url": "https://updates.suse.com/SUSE/Products/Storage/2/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-Enterprise-Storage-2-Pool for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-enterprise-storage-2-debuginfo-pool-x86_64", + "parent_channel_label": "sles12-pool-x86_64", + "product_id": 1342, + "repository_id": 1920, + "parent_product_id": 1117, + "root_product_id": 1117, + "update_tag": "Storage-2", + "url": "https://updates.suse.com/SUSE/Products/Storage/2/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SUSE-Enterprise-Storage-2-Debuginfo-Pool for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-certifications12-updates-x86_64", + "parent_channel_label": "sles12-pool-x86_64", + "product_id": 1368, + "repository_id": 2068, + "parent_product_id": 1117, + "root_product_id": 1117, + "update_tag": "SLE-Module-Certifications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Certifications/12/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Certifications12-Updates for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-certifications12-debuginfo-updates-x86_64", + "parent_channel_label": "sles12-pool-x86_64", + "product_id": 1368, + "repository_id": 2069, + "parent_product_id": 1117, + "root_product_id": 1117, + "update_tag": "SLE-Module-Certifications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Certifications/12/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Certifications12-Debuginfo-Updates for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-certifications12-pool-x86_64", + "parent_channel_label": "sles12-pool-x86_64", + "product_id": 1368, + "repository_id": 2070, + "parent_product_id": 1117, + "root_product_id": 1117, + "update_tag": "SLE-Module-Certifications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Certifications/12/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Certifications12-Pool for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-certifications12-debuginfo-pool-x86_64", + "parent_channel_label": "sles12-pool-x86_64", + "product_id": 1368, + "repository_id": 2071, + "parent_product_id": 1117, + "root_product_id": 1117, + "update_tag": "SLE-Module-Certifications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Certifications/12/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Certifications12-Debuginfo-Pool for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles12-ltss-updates-x86_64", + "parent_channel_label": "sles12-pool-x86_64", + "product_id": 1379, + "repository_id": 2105, + "parent_product_id": 1117, + "root_product_id": 1117, + "update_tag": "SLE-SERVER", + "url": "https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-LTSS/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLES12-LTSS-Updates for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles12-ltss-debuginfo-updates-x86_64", + "parent_channel_label": "sles12-pool-x86_64", + "product_id": 1379, + "repository_id": 2106, + "parent_product_id": 1117, + "root_product_id": 1117, + "update_tag": "SLE-SERVER", + "url": "https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-LTSS/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLES12-LTSS-Debuginfo-Updates for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-packagehub-12-x86_64", + "parent_channel_label": "sles12-pool-x86_64", + "product_id": 1473, + "repository_id": 2327, + "parent_product_id": 1117, + "root_product_id": 1117, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-12_x86_64/standard/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-12-Standard-Pool for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-packagehub-12-debuginfo-x86_64", + "parent_channel_label": "sles12-pool-x86_64", + "product_id": 1473, + "repository_id": 2328, + "parent_product_id": 1117, + "root_product_id": 1117, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-12_x86_64/standard_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-12-Debuginfo for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-packagehub-12-pool-x86_64", + "parent_channel_label": "sles12-pool-x86_64", + "product_id": 1473, + "repository_id": 2329, + "parent_product_id": 1117, + "root_product_id": 1117, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-12_x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-12-Pool for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-manager-tools12-beta-updates-x86_64", + "parent_channel_label": "sles12-pool-x86_64", + "product_id": 1747, + "repository_id": 3077, + "parent_product_id": 1117, + "root_product_id": 1117, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/12-BETA/x86_64/update/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools12-BETA-Updates for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools12-beta-debuginfo-updates-x86_64", + "parent_channel_label": "sles12-pool-x86_64", + "product_id": 1747, + "repository_id": 3078, + "parent_product_id": 1117, + "root_product_id": 1117, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/12-BETA/x86_64/update_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools12-BETA-Debuginfo-Updates for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools12-beta-pool-x86_64", + "parent_channel_label": "sles12-pool-x86_64", + "product_id": 1747, + "repository_id": 3079, + "parent_product_id": 1117, + "root_product_id": 1117, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/12-BETA/x86_64/product/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools12-BETA-Pool for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools12-beta-debuginfo-pool-x86_64", + "parent_channel_label": "sles12-pool-x86_64", + "product_id": 1747, + "repository_id": 3080, + "parent_product_id": 1117, + "root_product_id": 1117, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/12-BETA/x86_64/product_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools12-BETA-Debuginfo-Pool for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-12-ga-desktop-nvidia-driver-x86_64", + "parent_channel_label": "sled12-pool-x86_64", + "product_id": 1118, + "repository_id": 1503, + "parent_product_id": null, + "root_product_id": 1118, + "update_tag": null, + "url": "http://download.nvidia.com/novell/sle12/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-12-GA-Desktop-NVIDIA-Driver for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sled12-updates-x86_64", + "parent_channel_label": "sled12-pool-x86_64", + "product_id": 1118, + "repository_id": 1636, + "parent_product_id": null, + "root_product_id": 1118, + "update_tag": "SLE-DESKTOP", + "url": "https://updates.suse.com/SUSE/Updates/SLE-DESKTOP/12/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLED12-Updates for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sled12-debuginfo-updates-x86_64", + "parent_channel_label": "sled12-pool-x86_64", + "product_id": 1118, + "repository_id": 1637, + "parent_product_id": null, + "root_product_id": 1118, + "update_tag": "SLE-DESKTOP", + "url": "https://updates.suse.com/SUSE/Updates/SLE-DESKTOP/12/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLED12-Debuginfo-Updates for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sled12-pool-x86_64", + "parent_channel_label": null, + "product_id": 1118, + "repository_id": 1638, + "parent_product_id": null, + "root_product_id": 1118, + "update_tag": "SLE-DESKTOP", + "url": "https://updates.suse.com/SUSE/Products/SLE-DESKTOP/12/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLED12-Pool for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sled12-debuginfo-pool-x86_64", + "parent_channel_label": "sled12-pool-x86_64", + "product_id": 1118, + "repository_id": 1639, + "parent_product_id": null, + "root_product_id": 1118, + "update_tag": "SLE-DESKTOP", + "url": "https://updates.suse.com/SUSE/Products/SLE-DESKTOP/12/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLED12-Debuginfo-Pool for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-manager-tools12-updates-x86_64-sled", + "parent_channel_label": "sled12-pool-x86_64", + "product_id": 1118, + "repository_id": 1732, + "parent_product_id": null, + "root_product_id": 1118, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/12/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Manager-Tools12-Updates for x86_64 SLED", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools12-debuginfo-updates-x86_64-sled", + "parent_channel_label": "sled12-pool-x86_64", + "product_id": 1118, + "repository_id": 1733, + "parent_product_id": null, + "root_product_id": 1118, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/12/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Manager-Tools12-Debuginfo-Updates for x86_64 SLED", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools12-pool-x86_64-sled", + "parent_channel_label": "sled12-pool-x86_64", + "product_id": 1118, + "repository_id": 1734, + "parent_product_id": null, + "root_product_id": 1118, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/12/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Manager-Tools12-Pool for x86_64 SLED", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools12-debuginfo-pool-x86_64-sled", + "parent_channel_label": "sled12-pool-x86_64", + "product_id": 1118, + "repository_id": 1735, + "parent_product_id": null, + "root_product_id": 1118, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/12/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Manager-Tools12-Debuginfo-Pool for x86_64 SLED", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-sdk12-updates-x86_64-sled", + "parent_channel_label": "sled12-pool-x86_64", + "product_id": 1223, + "repository_id": 1664, + "parent_product_id": 1118, + "root_product_id": 1118, + "update_tag": "SLE-SDK", + "url": "https://updates.suse.com/SUSE/Updates/SLE-SDK/12/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-SDK12-Updates for x86_64 SLED", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-sdk12-debuginfo-updates-x86_64-sled", + "parent_channel_label": "sled12-pool-x86_64", + "product_id": 1223, + "repository_id": 1665, + "parent_product_id": 1118, + "root_product_id": 1118, + "update_tag": "SLE-SDK", + "url": "https://updates.suse.com/SUSE/Updates/SLE-SDK/12/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-SDK12-Debuginfo-Updates for x86_64 SLED", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-sdk12-pool-x86_64-sled", + "parent_channel_label": "sled12-pool-x86_64", + "product_id": 1223, + "repository_id": 1666, + "parent_product_id": 1118, + "root_product_id": 1118, + "update_tag": "SLE-SDK", + "url": "https://updates.suse.com/SUSE/Products/SLE-SDK/12/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-SDK12-Pool for x86_64 SLED", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-sdk12-debuginfo-pool-x86_64-sled", + "parent_channel_label": "sled12-pool-x86_64", + "product_id": 1223, + "repository_id": 1667, + "parent_product_id": 1118, + "root_product_id": 1118, + "update_tag": "SLE-SDK", + "url": "https://updates.suse.com/SUSE/Products/SLE-SDK/12/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-SDK12-Debuginfo-Pool for x86_64 SLED", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-packagehub-12-x86_64-sled", + "parent_channel_label": "sled12-pool-x86_64", + "product_id": 1473, + "repository_id": 2327, + "parent_product_id": 1118, + "root_product_id": 1118, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-12_x86_64/standard/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-12-Standard-Pool for x86_64 SLED", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-packagehub-12-debuginfo-x86_64-sled", + "parent_channel_label": "sled12-pool-x86_64", + "product_id": 1473, + "repository_id": 2328, + "parent_product_id": 1118, + "root_product_id": 1118, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-12_x86_64/standard_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-12-Debuginfo for x86_64 SLED", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-packagehub-12-pool-x86_64-sled", + "parent_channel_label": "sled12-pool-x86_64", + "product_id": 1473, + "repository_id": 2329, + "parent_product_id": 1118, + "root_product_id": 1118, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-12_x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-12-Pool for x86_64 SLED", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-manager-tools12-beta-updates-x86_64-sled", + "parent_channel_label": "sled12-pool-x86_64", + "product_id": 1747, + "repository_id": 3077, + "parent_product_id": 1118, + "root_product_id": 1118, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/12-BETA/x86_64/update/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools12-BETA-Updates for x86_64 SLED", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools12-beta-debuginfo-updates-x86_64-sled", + "parent_channel_label": "sled12-pool-x86_64", + "product_id": 1747, + "repository_id": 3078, + "parent_product_id": 1118, + "root_product_id": 1118, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/12-BETA/x86_64/update_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools12-BETA-Debuginfo-Updates for x86_64 SLED", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools12-beta-pool-x86_64-sled", + "parent_channel_label": "sled12-pool-x86_64", + "product_id": 1747, + "repository_id": 3079, + "parent_product_id": 1118, + "root_product_id": 1118, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/12-BETA/x86_64/product/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools12-BETA-Pool for x86_64 SLED", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools12-beta-debuginfo-pool-x86_64-sled", + "parent_channel_label": "sled12-pool-x86_64", + "product_id": 1747, + "repository_id": 3080, + "parent_product_id": 1118, + "root_product_id": 1118, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/12-BETA/x86_64/product_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools12-BETA-Debuginfo-Pool for x86_64 SLED", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "rhel-x86_64-server-5", + "parent_channel_label": null, + "product_id": 1122, + "repository_id": -72, + "parent_product_id": null, + "root_product_id": 1122, + "update_tag": null, + "url": "http://localhost/pub/repositories/empty/", + "release_stage": "released", + "mandatory": true, + "signed": false, + "recommended": false, + "channel_name": "RHEL x86_64 Server 5", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "rhel-i386-server-5", + "parent_channel_label": null, + "product_id": 1122, + "repository_id": -71, + "parent_product_id": null, + "root_product_id": 1122, + "update_tag": null, + "url": "http://localhost/pub/repositories/empty/", + "release_stage": "released", + "mandatory": true, + "signed": false, + "recommended": false, + "channel_name": "RHEL i386 Server 5", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "res5-suse-manager-tools-x86_64", + "parent_channel_label": "rhel-x86_64-server-5", + "product_id": 1122, + "repository_id": 979, + "parent_product_id": null, + "root_product_id": 1122, + "update_tag": "res5ct", + "url": "https://updates.suse.com/repo/$RCE/RES5-SUSE-Manager-Tools/x86_64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "RES5 SUSE-Manager-Tools x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "res5-suse-manager-tools-i386", + "parent_channel_label": "rhel-i386-server-5", + "product_id": 1122, + "repository_id": 990, + "parent_product_id": null, + "root_product_id": 1122, + "update_tag": "res5ct", + "url": "https://updates.suse.com/repo/$RCE/RES5-SUSE-Manager-Tools/i386/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "RES5 SUSE-Manager-Tools i386", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "res5-x86_64", + "parent_channel_label": "rhel-x86_64-server-5", + "product_id": 1122, + "repository_id": 1169, + "parent_product_id": null, + "root_product_id": 1122, + "update_tag": null, + "url": "https://updates.suse.com/repo/$RCE/RES5/x86_64/", + "release_stage": "released", + "mandatory": true, + "signed": false, + "recommended": false, + "channel_name": "RES5 for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "res5-i386", + "parent_channel_label": "rhel-i386-server-5", + "product_id": 1122, + "repository_id": 1170, + "parent_product_id": null, + "root_product_id": 1122, + "update_tag": null, + "url": "https://updates.suse.com/repo/$RCE/RES5/i386/", + "release_stage": "released", + "mandatory": true, + "signed": false, + "recommended": false, + "channel_name": "RES5 for i386", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles11-sp1-updates-x86_64-sap-aio", + "parent_channel_label": "sle11-sp1-sap-aio-pool-x86_64", + "product_id": 1129, + "repository_id": 705, + "parent_product_id": null, + "root_product_id": 1129, + "update_tag": "slessp1", + "url": "https://updates.suse.com/repo/$RCE/SLES11-SP1-Updates/sle-11-x86_64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLES11-SP1-Updates for x86_64 SAP-AiO", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-sp1-debuginfo-pool-x86_64-sap-aio", + "parent_channel_label": "sle11-sp1-sap-aio-pool-x86_64", + "product_id": 1129, + "repository_id": 707, + "parent_product_id": null, + "root_product_id": 1129, + "update_tag": "dbgsp1", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Pool/sle-11-x86_64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SP1-Debuginfo-Pool for x86_64 SAP-AiO", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles11-sp1-pool-x86_64-sap-aio", + "parent_channel_label": "sle11-sp1-sap-aio-pool-x86_64", + "product_id": 1129, + "repository_id": 711, + "parent_product_id": null, + "root_product_id": 1129, + "update_tag": "slessp1", + "url": "https://updates.suse.com/repo/$RCE/SLES11-SP1-Pool/sle-11-x86_64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLES11-SP1-Pool for x86_64 SAP-AiO", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-sp1-debuginfo-updates-x86_64-sap-aio", + "parent_channel_label": "sle11-sp1-sap-aio-pool-x86_64", + "product_id": 1129, + "repository_id": 715, + "parent_product_id": null, + "root_product_id": 1129, + "update_tag": "dbgsp1", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Updates/sle-11-x86_64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SP1-Debuginfo-Updates for x86_64 SAP-AiO", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles11-sp1-ltss-updates-x86_64-sap-aio", + "parent_channel_label": "sle11-sp1-sap-aio-pool-x86_64", + "product_id": 1129, + "repository_id": 796, + "parent_product_id": null, + "root_product_id": 1129, + "update_tag": "slessp1", + "url": "https://updates.suse.com/repo/$RCE/SLES11-SP1-LTSS-Updates/sle-11-x86_64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLES11-SP1-LTSS-Updates for x86_64 SAP-AiO", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-webyast-sp1-updates-x86_64-sap-aio", + "parent_channel_label": "sle11-sp1-sap-aio-pool-x86_64", + "product_id": 1129, + "repository_id": 797, + "parent_product_id": null, + "root_product_id": 1129, + "update_tag": "slewystsp1", + "url": "https://updates.suse.com/repo/$RCE/SLE11-WebYaST-SP1-Updates/sle-11-x86_64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE11-WebYaST-SP1-Updates for x86_64 SAP-AiO", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-webyast-sp1-pool-x86_64-sap-aio", + "parent_channel_label": "sle11-sp1-sap-aio-pool-x86_64", + "product_id": 1129, + "repository_id": 798, + "parent_product_id": null, + "root_product_id": 1129, + "update_tag": "slewystsp1", + "url": "https://updates.suse.com/repo/$RCE/SLE11-WebYaST-SP1-Pool/sle-11-x86_64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE11-WebYaST-SP1-Pool for x86_64 SAP-AiO", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-hae-sp1-pool-x86_64-sap-aio", + "parent_channel_label": "sle11-sp1-sap-aio-pool-x86_64", + "product_id": 1129, + "repository_id": 946, + "parent_product_id": null, + "root_product_id": 1129, + "update_tag": "sleshasp1", + "url": "https://updates.suse.com/repo/$RCE/SLE11-HAE-SP1-Pool/sle-11-x86_64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE11-HAE-SP1-Pool for x86_64 SAP-AiO", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-hae-sp1-updates-x86_64-sap-aio", + "parent_channel_label": "sle11-sp1-sap-aio-pool-x86_64", + "product_id": 1129, + "repository_id": 953, + "parent_product_id": null, + "root_product_id": 1129, + "update_tag": "sleshasp1", + "url": "https://updates.suse.com/repo/$RCE/SLE11-HAE-SP1-Updates/sle-11-x86_64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE11-HAE-SP1-Updates for x86_64 SAP-AiO", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles11-sp1-suse-manager-tools-x86_64-sap-aio", + "parent_channel_label": "sle11-sp1-sap-aio-pool-x86_64", + "product_id": 1129, + "repository_id": 985, + "parent_product_id": null, + "root_product_id": 1129, + "update_tag": "slesctsp1", + "url": "https://updates.suse.com/repo/$RCE/SLES11-SP1-SUSE-Manager-Tools/sle-11-x86_64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLES11-SP1-SUSE-Manager-Tools x86_64 SAP-AiO", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle11-sp1-sap-aio-updates-x86_64", + "parent_channel_label": "sle11-sp1-sap-aio-pool-x86_64", + "product_id": 1129, + "repository_id": 1190, + "parent_product_id": null, + "root_product_id": 1129, + "update_tag": "slesapp1", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SP1-SAP-AIO-Updates/sle-11-x86_64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SP1-SAP-AIO-Updates for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-sp1-sap-aio-pool-x86_64", + "parent_channel_label": null, + "product_id": 1129, + "repository_id": 1191, + "parent_product_id": null, + "root_product_id": 1129, + "update_tag": "slesapp1", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SP1-SAP-AIO-Pool/sle-11-x86_64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SP1-SAP-AIO-Pool for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles11-sp2-suse-manager-tools-x86_64-sap-aio", + "parent_channel_label": "sle11-sp1-sap-aio-pool-x86_64", + "product_id": 1129, + "repository_id": 1571, + "parent_product_id": null, + "root_product_id": 1129, + "update_tag": "slesctsp2", + "url": "https://updates.suse.com/repo/$RCE/SLES11-SP2-SUSE-Manager-Tools/sle-11-x86_64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLES11-SP2-SUSE-Manager-Tools x86_64 SAP-AiO", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle11-sdk-sp1-pool-x86_64-sap-aio", + "parent_channel_label": "sle11-sp1-sap-aio-pool-x86_64", + "product_id": 1159, + "repository_id": 1264, + "parent_product_id": 1129, + "root_product_id": 1129, + "update_tag": "sdksp1", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-x86_64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SDK-SP1-Pool for x86_64 SAP-AiO", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-sdk-sp1-updates-x86_64-sap-aio", + "parent_channel_label": "sle11-sp1-sap-aio-pool-x86_64", + "product_id": 1159, + "repository_id": 1265, + "parent_product_id": 1129, + "root_product_id": 1129, + "update_tag": "sdksp1", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Updates/sle-11-x86_64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SDK-SP1-Updates for x86_64 SAP-AiO", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles11-sp1-updates-x86_64-sap-sp2", + "parent_channel_label": "sle11-sp2-sap-updates-x86_64", + "product_id": 1130, + "repository_id": 705, + "parent_product_id": null, + "root_product_id": 1130, + "update_tag": "slessp1", + "url": "https://updates.suse.com/repo/$RCE/SLES11-SP1-Updates/sle-11-x86_64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLES11-SP1-Updates for x86_64 SAP-SP2", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-webyast-sp2-pool-x86_64-sap-sp2", + "parent_channel_label": "sle11-sp2-sap-updates-x86_64", + "product_id": 1130, + "repository_id": 706, + "parent_product_id": null, + "root_product_id": 1130, + "update_tag": "slewystsp1", + "url": "https://updates.suse.com/repo/$RCE/SLE11-WebYaST-SP2-Pool/sle-11-x86_64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE11-WebYaST-SP2-Pool for x86_64 SAP-SP2", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-sp1-debuginfo-pool-x86_64-sap-sp2", + "parent_channel_label": "sle11-sp2-sap-updates-x86_64", + "product_id": 1130, + "repository_id": 707, + "parent_product_id": null, + "root_product_id": 1130, + "update_tag": "dbgsp1", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Pool/sle-11-x86_64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SP1-Debuginfo-Pool for x86_64 SAP-SP2", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-webyast-sp2-updates-x86_64-sap-sp2", + "parent_channel_label": "sle11-sp2-sap-updates-x86_64", + "product_id": 1130, + "repository_id": 708, + "parent_product_id": null, + "root_product_id": 1130, + "update_tag": "slewystsp1", + "url": "https://updates.suse.com/repo/$RCE/SLE11-WebYaST-SP2-Updates/sle-11-x86_64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE11-WebYaST-SP2-Updates for x86_64 SAP-SP2", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles11-sp2-core-x86_64-sap-sp2", + "parent_channel_label": "sle11-sp2-sap-updates-x86_64", + "product_id": 1130, + "repository_id": 709, + "parent_product_id": null, + "root_product_id": 1130, + "update_tag": "slessp2", + "url": "https://updates.suse.com/repo/$RCE/SLES11-SP2-Core/sle-11-x86_64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLES11-SP2-Core for x86_64 SAP-SP2", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles11-extras-x86_64-sap-sp2", + "parent_channel_label": "sle11-sp2-sap-updates-x86_64", + "product_id": 1130, + "repository_id": 710, + "parent_product_id": null, + "root_product_id": 1130, + "update_tag": null, + "url": "https://updates.suse.com/repo/$RCE/SLES11-Extras/sle-11-x86_64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLES11-Extras for x86_64 SAP-SP2", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles11-sp1-pool-x86_64-sap-sp2", + "parent_channel_label": "sle11-sp2-sap-updates-x86_64", + "product_id": 1130, + "repository_id": 711, + "parent_product_id": null, + "root_product_id": 1130, + "update_tag": "slessp1", + "url": "https://updates.suse.com/repo/$RCE/SLES11-SP1-Pool/sle-11-x86_64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLES11-SP1-Pool for x86_64 SAP-SP2", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-sp2-debuginfo-updates-x86_64-sap-sp2", + "parent_channel_label": "sle11-sp2-sap-updates-x86_64", + "product_id": 1130, + "repository_id": 712, + "parent_product_id": null, + "root_product_id": 1130, + "update_tag": "dbgsp2", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SP2-Debuginfo-Updates/sle-11-x86_64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SP2-Debuginfo-Updates for x86_64 SAP-SP2", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles11-sp2-updates-x86_64-sap-sp2", + "parent_channel_label": "sle11-sp2-sap-updates-x86_64", + "product_id": 1130, + "repository_id": 714, + "parent_product_id": null, + "root_product_id": 1130, + "update_tag": "slessp2", + "url": "https://updates.suse.com/repo/$RCE/SLES11-SP2-Updates/sle-11-x86_64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLES11-SP2-Updates for x86_64 SAP-SP2", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-sp1-debuginfo-updates-x86_64-sap-sp2", + "parent_channel_label": "sle11-sp2-sap-updates-x86_64", + "product_id": 1130, + "repository_id": 715, + "parent_product_id": null, + "root_product_id": 1130, + "update_tag": "dbgsp1", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Updates/sle-11-x86_64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SP1-Debuginfo-Updates for x86_64 SAP-SP2", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-sp2-debuginfo-core-x86_64-sap-sp2", + "parent_channel_label": "sle11-sp2-sap-updates-x86_64", + "product_id": 1130, + "repository_id": 716, + "parent_product_id": null, + "root_product_id": 1130, + "update_tag": "dbgsp2", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SP2-Debuginfo-Core/sle-11-x86_64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SP2-Debuginfo-Core for x86_64 SAP-SP2", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-hae-sp2-pool-x86_64-sap-sp2", + "parent_channel_label": "sle11-sp2-sap-updates-x86_64", + "product_id": 1130, + "repository_id": 947, + "parent_product_id": null, + "root_product_id": 1130, + "update_tag": "sleshasp2", + "url": "https://updates.suse.com/repo/$RCE/SLE11-HAE-SP2-Pool/sle-11-x86_64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE11-HAE-SP2-Pool for x86_64 SAP-SP2", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-hae-sp2-updates-x86_64-sap-sp2", + "parent_channel_label": "sle11-sp2-sap-updates-x86_64", + "product_id": 1130, + "repository_id": 948, + "parent_product_id": null, + "root_product_id": 1130, + "update_tag": "sleshasp2", + "url": "https://updates.suse.com/repo/$RCE/SLE11-HAE-SP2-Updates/sle-11-x86_64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE11-HAE-SP2-Updates for x86_64 SAP-SP2", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles11-sp2-ltss-updates-x86_64-sap-sp2", + "parent_channel_label": "sle11-sp2-sap-updates-x86_64", + "product_id": 1130, + "repository_id": 1157, + "parent_product_id": null, + "root_product_id": 1130, + "update_tag": "slessp2", + "url": "https://updates.suse.com/repo/$RCE/SLES11-SP2-LTSS-Updates/sle-11-x86_64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLES11-SP2-LTSS-Updates for x86_64 sap-sp2", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-sp2-sap-updates-x86_64", + "parent_channel_label": null, + "product_id": 1130, + "repository_id": 1192, + "parent_product_id": null, + "root_product_id": 1130, + "update_tag": "slesapp2", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SP2-SAP-Updates/sle-11-x86_64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SP2-SAP-Updates for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles11-sp2-suse-manager-tools-x86_64-sap-sp2", + "parent_channel_label": "sle11-sp2-sap-updates-x86_64", + "product_id": 1130, + "repository_id": 1571, + "parent_product_id": null, + "root_product_id": 1130, + "update_tag": "slesctsp2", + "url": "https://updates.suse.com/repo/$RCE/SLES11-SP2-SUSE-Manager-Tools/sle-11-x86_64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLES11-SP2-SUSE-Manager-Tools x86_64 SAP-SP2", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle11-sdk-sp1-pool-x86_64-sap-sp2", + "parent_channel_label": "sle11-sp2-sap-updates-x86_64", + "product_id": 1160, + "repository_id": 1264, + "parent_product_id": 1130, + "root_product_id": 1130, + "update_tag": "sdksp1", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Pool/sle-11-x86_64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SDK-SP1-Pool for x86_64 SAP-SP2", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-sdk-sp1-updates-x86_64-sap-sp2", + "parent_channel_label": "sle11-sp2-sap-updates-x86_64", + "product_id": 1160, + "repository_id": 1265, + "parent_product_id": 1130, + "root_product_id": 1130, + "update_tag": "sdksp1", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SDK-SP1-Updates/sle-11-x86_64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SDK-SP1-Updates for x86_64 SAP-SP2", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-sdk-sp2-core-x86_64-sap-sp2", + "parent_channel_label": "sle11-sp2-sap-updates-x86_64", + "product_id": 1160, + "repository_id": 1275, + "parent_product_id": 1130, + "root_product_id": 1130, + "update_tag": "sdksp2", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Core/sle-11-x86_64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SDK-SP2-Core for x86_64 SAP-SP2", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-sdk-sp2-updates-x86_64-sap-sp2", + "parent_channel_label": "sle11-sp2-sap-updates-x86_64", + "product_id": 1160, + "repository_id": 1276, + "parent_product_id": 1130, + "root_product_id": 1130, + "update_tag": "sdksp2", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SDK-SP2-Updates/sle-11-x86_64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SDK-SP2-Updates for x86_64 SAP-SP2", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles11-sp1-updates-x86_64-sap-sp3", + "parent_channel_label": "sle11-sp3-sap-pool-x86_64", + "product_id": 1131, + "repository_id": 705, + "parent_product_id": null, + "root_product_id": 1131, + "update_tag": "slessp1", + "url": "https://updates.suse.com/repo/$RCE/SLES11-SP1-Updates/sle-11-x86_64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLES11-SP1-Updates for x86_64 SAP-SP3", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-sp1-debuginfo-pool-x86_64-sap-sp3", + "parent_channel_label": "sle11-sp3-sap-pool-x86_64", + "product_id": 1131, + "repository_id": 707, + "parent_product_id": null, + "root_product_id": 1131, + "update_tag": "dbgsp1", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Pool/sle-11-x86_64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SP1-Debuginfo-Pool for x86_64 SAP-SP3", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles11-sp2-core-x86_64-sap-sp3", + "parent_channel_label": "sle11-sp3-sap-pool-x86_64", + "product_id": 1131, + "repository_id": 709, + "parent_product_id": null, + "root_product_id": 1131, + "update_tag": "slessp2", + "url": "https://updates.suse.com/repo/$RCE/SLES11-SP2-Core/sle-11-x86_64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLES11-SP2-Core for x86_64 SAP-SP3", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles11-extras-x86_64-sap-sp3", + "parent_channel_label": "sle11-sp3-sap-pool-x86_64", + "product_id": 1131, + "repository_id": 710, + "parent_product_id": null, + "root_product_id": 1131, + "update_tag": null, + "url": "https://updates.suse.com/repo/$RCE/SLES11-Extras/sle-11-x86_64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLES11-Extras for x86_64 SAP-SP3", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles11-sp1-pool-x86_64-sap-sp3", + "parent_channel_label": "sle11-sp3-sap-pool-x86_64", + "product_id": 1131, + "repository_id": 711, + "parent_product_id": null, + "root_product_id": 1131, + "update_tag": "slessp1", + "url": "https://updates.suse.com/repo/$RCE/SLES11-SP1-Pool/sle-11-x86_64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLES11-SP1-Pool for x86_64 SAP-SP3", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-sp2-debuginfo-updates-x86_64-sap-sp3", + "parent_channel_label": "sle11-sp3-sap-pool-x86_64", + "product_id": 1131, + "repository_id": 712, + "parent_product_id": null, + "root_product_id": 1131, + "update_tag": "dbgsp2", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SP2-Debuginfo-Updates/sle-11-x86_64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SP2-Debuginfo-Updates for x86_64 SAP-SP3", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles11-sp2-extension-store-x86_64-sap-sp3", + "parent_channel_label": "sle11-sp3-sap-pool-x86_64", + "product_id": 1131, + "repository_id": 713, + "parent_product_id": null, + "root_product_id": 1131, + "update_tag": "slessp2", + "url": "https://updates.suse.com/repo/$RCE/SLES11-SP2-Extension-Store/sle-11-x86_64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLES11-SP2-Extension-Store for x86_64 SAP-SP3", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles11-sp2-updates-x86_64-sap-sp3", + "parent_channel_label": "sle11-sp3-sap-pool-x86_64", + "product_id": 1131, + "repository_id": 714, + "parent_product_id": null, + "root_product_id": 1131, + "update_tag": "slessp2", + "url": "https://updates.suse.com/repo/$RCE/SLES11-SP2-Updates/sle-11-x86_64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLES11-SP2-Updates for x86_64 SAP-SP3", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-sp1-debuginfo-updates-x86_64-sap-sp3", + "parent_channel_label": "sle11-sp3-sap-pool-x86_64", + "product_id": 1131, + "repository_id": 715, + "parent_product_id": null, + "root_product_id": 1131, + "update_tag": "dbgsp1", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Updates/sle-11-x86_64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SP1-Debuginfo-Updates for x86_64 SAP-SP3", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-sp2-debuginfo-core-x86_64-sap-sp3", + "parent_channel_label": "sle11-sp3-sap-pool-x86_64", + "product_id": 1131, + "repository_id": 716, + "parent_product_id": null, + "root_product_id": 1131, + "update_tag": "dbgsp2", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SP2-Debuginfo-Core/sle-11-x86_64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SP2-Debuginfo-Core for x86_64 SAP-SP3", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-sp3-debuginfo-updates-x86_64-sap-sp3", + "parent_channel_label": "sle11-sp3-sap-pool-x86_64", + "product_id": 1131, + "repository_id": 735, + "parent_product_id": null, + "root_product_id": 1131, + "update_tag": "dbgsp3", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SP3-Debuginfo-Updates/sle-11-x86_64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SP3-Debuginfo-Updates for x86_64 SAP-SP3", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-sp3-debuginfo-pool-x86_64-sap-sp3", + "parent_channel_label": "sle11-sp3-sap-pool-x86_64", + "product_id": 1131, + "repository_id": 736, + "parent_product_id": null, + "root_product_id": 1131, + "update_tag": "dbgsp3", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SP3-Debuginfo-Pool/sle-11-x86_64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SP3-Debuginfo-Pool for x86_64 SAP-SP3", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles11-sp3-pool-x86_64-sap-sp3", + "parent_channel_label": "sle11-sp3-sap-pool-x86_64", + "product_id": 1131, + "repository_id": 737, + "parent_product_id": null, + "root_product_id": 1131, + "update_tag": "slessp3", + "url": "https://updates.suse.com/repo/$RCE/SLES11-SP3-Pool/sle-11-x86_64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLES11-SP3-Pool for x86_64 SAP-SP3", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles11-sp3-updates-x86_64-sap-sp3", + "parent_channel_label": "sle11-sp3-sap-pool-x86_64", + "product_id": 1131, + "repository_id": 738, + "parent_product_id": null, + "root_product_id": 1131, + "update_tag": "slessp3", + "url": "https://updates.suse.com/repo/$RCE/SLES11-SP3-Updates/sle-11-x86_64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLES11-SP3-Updates for x86_64 SAP-SP3", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles11-sp3-extension-store-x86_64-sap-sp3", + "parent_channel_label": "sle11-sp3-sap-pool-x86_64", + "product_id": 1131, + "repository_id": 739, + "parent_product_id": null, + "root_product_id": 1131, + "update_tag": "slessp3", + "url": "https://updates.suse.com/repo/$RCE/SLES11-SP3-Extension-Store/sle-11-x86_64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLES11-SP3-Extension-Store for x86_64 SAP-SP3", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-hae-sp3-updates-x86_64-sap-sp3", + "parent_channel_label": "sle11-sp3-sap-pool-x86_64", + "product_id": 1131, + "repository_id": 956, + "parent_product_id": null, + "root_product_id": 1131, + "update_tag": "sleshasp3", + "url": "https://updates.suse.com/repo/$RCE/SLE11-HAE-SP3-Updates/sle-11-x86_64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE11-HAE-SP3-Updates for x86_64 SAP-SP3", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-sp2-webyast-1.3-pool-x86_64-sap-sp3", + "parent_channel_label": "sle11-sp3-sap-pool-x86_64", + "product_id": 1131, + "repository_id": 1185, + "parent_product_id": null, + "root_product_id": 1131, + "update_tag": "slewyst13", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SP2-WebYaST-1.3-Pool/sle-11-x86_64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SP2-WebYaST-1.3-Pool for x86_64 SAP-SP3", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-sp3-sap-updates-x86_64", + "parent_channel_label": "sle11-sp3-sap-pool-x86_64", + "product_id": 1131, + "repository_id": 1187, + "parent_product_id": null, + "root_product_id": 1131, + "update_tag": "slesappsp3", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SP3-SAP-Updates/sle-11-x86_64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SP3-SAP-Updates for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-sp2-webyast-1.3-updates-x86_64-sap-sp3", + "parent_channel_label": "sle11-sp3-sap-pool-x86_64", + "product_id": 1131, + "repository_id": 1188, + "parent_product_id": null, + "root_product_id": 1131, + "update_tag": "slewyst13", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SP2-WebYaST-1.3-Updates/sle-11-x86_64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SP2-WebYaST-1.3-Updates for x86_64 SAP-SP3", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-sp3-sap-pool-x86_64", + "parent_channel_label": null, + "product_id": 1131, + "repository_id": 1189, + "parent_product_id": null, + "root_product_id": 1131, + "update_tag": "slesappsp3", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SP3-SAP-Pool/sle-11-x86_64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SP3-SAP-Pool for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles11-sp3-suse-manager-tools-x86_64-sap-sp3", + "parent_channel_label": "sle11-sp3-sap-pool-x86_64", + "product_id": 1131, + "repository_id": 1208, + "parent_product_id": null, + "root_product_id": 1131, + "update_tag": "slesctsp3", + "url": "https://updates.suse.com/repo/$RCE/SLES11-SP3-SUSE-Manager-Tools/sle-11-x86_64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLES11-SP3-SUSE-Manager-Tools x86_64 SAP-SP3", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle11-security-module-x86_64-sap-sp3", + "parent_channel_label": "sle11-sp3-sap-pool-x86_64", + "product_id": 1131, + "repository_id": 1447, + "parent_product_id": null, + "root_product_id": 1131, + "update_tag": "secsp3", + "url": "https://updates.suse.com/repo/$RCE/SLE11-Security-Module/sle-11-x86_64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE11-Security-Module for x86_64 SAP-SP3", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles11-sp2-suse-manager-tools-x86_64-sap-sp3", + "parent_channel_label": "sle11-sp3-sap-pool-x86_64", + "product_id": 1131, + "repository_id": 1571, + "parent_product_id": null, + "root_product_id": 1131, + "update_tag": "slesctsp2", + "url": "https://updates.suse.com/repo/$RCE/SLES11-SP2-SUSE-Manager-Tools/sle-11-x86_64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLES11-SP2-SUSE-Manager-Tools x86_64 SAP-SP3", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sles11-sp3-ltss-updates-x86_64-sap-sp3", + "parent_channel_label": "sle11-sp3-sap-pool-x86_64", + "product_id": 1131, + "repository_id": 1967, + "parent_product_id": null, + "root_product_id": 1131, + "update_tag": "slessp3", + "url": "https://updates.suse.com/repo/$RCE/SLES11-SP3-LTSS-Updates/sle-11-x86_64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLES11-SP3-LTSS-Updates for x86_64 sap-sp3", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-hae-sp3-pool-x86_64-sap-sp3", + "parent_channel_label": "sle11-sp3-sap-pool-x86_64", + "product_id": 1131, + "repository_id": 3037, + "parent_product_id": null, + "root_product_id": 1131, + "update_tag": "sleshasp3", + "url": "https://updates.suse.com/repo/$RCE/SLE11-HAE-SP3-Pool/sle-11-x86_64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE11-HAE-SP3-Pool for x86_64 SAP-SP3", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-sdk-sp3-pool-x86_64-sap-sp3", + "parent_channel_label": "sle11-sp3-sap-pool-x86_64", + "product_id": 1161, + "repository_id": 1281, + "parent_product_id": 1131, + "root_product_id": 1131, + "update_tag": "sdksp3", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Pool/sle-11-x86_64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SDK-SP3-Pool for x86_64 SAP-SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-sdk-sp3-updates-x86_64-sap-sp3", + "parent_channel_label": "sle11-sp3-sap-pool-x86_64", + "product_id": 1161, + "repository_id": 1284, + "parent_product_id": 1131, + "root_product_id": 1131, + "update_tag": "sdksp3", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SDK-SP3-Updates/sle-11-x86_64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SDK-SP3-Updates for x86_64 SAP-SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-smt-sp3-updates-x86_64-sap-sp3", + "parent_channel_label": "sle11-sp3-sap-pool-x86_64", + "product_id": 1198, + "repository_id": 1405, + "parent_product_id": 1131, + "root_product_id": 1131, + "update_tag": "slesmtsp3", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SMT-SP3-Updates/sle-11-x86_64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SMT-SP3-Updates for x86_64 SAP-SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-smt-sp3-pool-x86_64-sap-sp3", + "parent_channel_label": "sle11-sp3-sap-pool-x86_64", + "product_id": 1198, + "repository_id": 1409, + "parent_product_id": 1131, + "root_product_id": 1131, + "update_tag": "slesmtsp3", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SMT-SP3-Pool/sle-11-x86_64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SMT-SP3-Pool for x86_64 SAP-SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "rhel-x86_64-server-6", + "parent_channel_label": null, + "product_id": 1138, + "repository_id": -74, + "parent_product_id": null, + "root_product_id": 1138, + "update_tag": null, + "url": "http://localhost/pub/repositories/empty/", + "release_stage": "released", + "mandatory": true, + "signed": false, + "recommended": false, + "channel_name": "RHEL x86_64 Server 6", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "rhel-i386-server-6", + "parent_channel_label": null, + "product_id": 1138, + "repository_id": -73, + "parent_product_id": null, + "root_product_id": 1138, + "update_tag": null, + "url": "http://localhost/pub/repositories/empty/", + "release_stage": "released", + "mandatory": true, + "signed": false, + "recommended": false, + "channel_name": "RHEL i386 Server 6", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "res6-suse-manager-tools-x86_64", + "parent_channel_label": "rhel-x86_64-server-6", + "product_id": 1138, + "repository_id": 977, + "parent_product_id": null, + "root_product_id": 1138, + "update_tag": "res6ct", + "url": "https://updates.suse.com/repo/$RCE/RES6-SUSE-Manager-Tools/x86_64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "RES6 SUSE-Manager-Tools x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "res6-suse-manager-tools-i386", + "parent_channel_label": "rhel-i386-server-6", + "product_id": 1138, + "repository_id": 994, + "parent_product_id": null, + "root_product_id": 1138, + "update_tag": "res6ct", + "url": "https://updates.suse.com/repo/$RCE/RES6-SUSE-Manager-Tools/i386/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "RES6 SUSE-Manager-Tools i386", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "res6-x86_64", + "parent_channel_label": "rhel-x86_64-server-6", + "product_id": 1138, + "repository_id": 1173, + "parent_product_id": null, + "root_product_id": 1138, + "update_tag": null, + "url": "https://updates.suse.com/repo/$RCE/RES6/x86_64/", + "release_stage": "released", + "mandatory": true, + "signed": false, + "recommended": false, + "channel_name": "RES6 for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "res6-i386", + "parent_channel_label": "rhel-i386-server-6", + "product_id": 1138, + "repository_id": 1175, + "parent_product_id": null, + "root_product_id": 1138, + "update_tag": null, + "url": "https://updates.suse.com/repo/$RCE/RES6/i386/", + "release_stage": "released", + "mandatory": true, + "signed": false, + "recommended": false, + "channel_name": "RES6 for i386", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "res6-ha-i386", + "parent_channel_label": "rhel-i386-server-6", + "product_id": 1132, + "repository_id": 1171, + "parent_product_id": 1138, + "root_product_id": 1138, + "update_tag": null, + "url": "https://updates.suse.com/repo/$RCE/RES6-HA/i386/", + "release_stage": "released", + "mandatory": true, + "signed": false, + "recommended": false, + "channel_name": "RES6-HA for i386", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "res6-ha-x86_64", + "parent_channel_label": "rhel-x86_64-server-6", + "product_id": 1132, + "repository_id": 1176, + "parent_product_id": 1138, + "root_product_id": 1138, + "update_tag": null, + "url": "https://updates.suse.com/repo/$RCE/RES6-HA/x86_64/", + "release_stage": "released", + "mandatory": true, + "signed": false, + "recommended": false, + "channel_name": "RES6-HA for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "res6-suse-manager-tools-beta-i386", + "parent_channel_label": "rhel-i386-server-6", + "product_id": 2063, + "repository_id": 4408, + "parent_product_id": 1138, + "root_product_id": 1138, + "update_tag": null, + "url": "https://updates.suse.com/repo/$RCE/RES6-SUSE-Manager-Tools-Beta/i386/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "RES6-SUSE-Manager-Tools-Beta for i386", + "product_type": "extension", + "gpg_info": [ + { + "url": "file:///etc/pki/rpm-gpg/el6-tools-gpg-pubkey-307e3d54.key", + "keyId": "307E3D54", + "fingerprint": "4E98E67519D98DC7362A5990E3A5C360307E3D54" + } + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "res6-suse-manager-tools-beta-x86_64", + "parent_channel_label": "rhel-x86_64-server-6", + "product_id": 2064, + "repository_id": 4409, + "parent_product_id": 1138, + "root_product_id": 1138, + "update_tag": null, + "url": "https://updates.suse.com/repo/$RCE/RES6-SUSE-Manager-Tools-Beta/x86_64/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "RES6-SUSE-Manager-Tools-Beta for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle11-sp3-debuginfo-updates-x86_64-proxy-2.1", + "parent_channel_label": "suse-manager-proxy-2.1-pool-x86_64", + "product_id": 1141, + "repository_id": 735, + "parent_product_id": null, + "root_product_id": 1141, + "update_tag": "dbgsp3", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SP3-Debuginfo-Updates/sle-11-x86_64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SP3-Debuginfo-Updates for x86_64 Proxy 2.1", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-sp3-debuginfo-pool-x86_64-proxy-2.1", + "parent_channel_label": "suse-manager-proxy-2.1-pool-x86_64", + "product_id": 1141, + "repository_id": 736, + "parent_product_id": null, + "root_product_id": 1141, + "update_tag": "dbgsp3", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SP3-Debuginfo-Pool/sle-11-x86_64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SP3-Debuginfo-Pool for x86_64 Proxy 2.1", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles11-sp3-pool-x86_64-proxy-2.1", + "parent_channel_label": "suse-manager-proxy-2.1-pool-x86_64", + "product_id": 1141, + "repository_id": 737, + "parent_product_id": null, + "root_product_id": 1141, + "update_tag": "slessp3", + "url": "https://updates.suse.com/repo/$RCE/SLES11-SP3-Pool/sle-11-x86_64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLES11-SP3-Pool for x86_64 Proxy 2.1", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles11-sp3-updates-x86_64-proxy-2.1", + "parent_channel_label": "suse-manager-proxy-2.1-pool-x86_64", + "product_id": 1141, + "repository_id": 738, + "parent_product_id": null, + "root_product_id": 1141, + "update_tag": "slessp3", + "url": "https://updates.suse.com/repo/$RCE/SLES11-SP3-Updates/sle-11-x86_64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLES11-SP3-Updates for x86_64 Proxy 2.1", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-manager-proxy-2.1-updates-x86_64", + "parent_channel_label": "suse-manager-proxy-2.1-pool-x86_64", + "product_id": 1141, + "repository_id": 1209, + "parent_product_id": null, + "root_product_id": 1141, + "update_tag": "slemap21", + "url": "https://updates.suse.com/repo/$RCE/SUSE-Manager-Proxy-2.1-Updates/sle-11-x86_64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-Manager-Proxy-2.1-Updates for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-manager-proxy-2.1-pool-x86_64", + "parent_channel_label": null, + "product_id": 1141, + "repository_id": 1210, + "parent_product_id": null, + "root_product_id": 1141, + "update_tag": "slemap21", + "url": "https://updates.suse.com/repo/$RCE/SUSE-Manager-Proxy-2.1-Pool/sle-11-x86_64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-Manager-Proxy-2.1-Pool for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "rhel-x86_64-server-7", + "parent_channel_label": null, + "product_id": 1251, + "repository_id": -75, + "parent_product_id": null, + "root_product_id": 1251, + "update_tag": null, + "url": "http://localhost/pub/repositories/empty/", + "release_stage": "released", + "mandatory": true, + "signed": false, + "recommended": false, + "channel_name": "RHEL x86_64 Server 7", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "res7-x86_64", + "parent_channel_label": "rhel-x86_64-server-7", + "product_id": 1251, + "repository_id": 1736, + "parent_product_id": null, + "root_product_id": 1251, + "update_tag": null, + "url": "https://updates.suse.com/repo/$RCE/RES7/x86_64/", + "release_stage": "released", + "mandatory": true, + "signed": false, + "recommended": false, + "channel_name": "RES7 for x86_64", + "product_type": "base", + "gpg_info": [ + { + "url": "file:///etc/pki/rpm-gpg/res-gpg-pubkey-0182b964.key", + "keyId": "0182B964", + "fingerprint": "4F7439C1114F453FAA5F06218055F0400182B964" + } + ], + "tags": [ + ] + }, + { + "channel_label": "res7-suse-manager-tools-x86_64", + "parent_channel_label": "rhel-x86_64-server-7", + "product_id": 1251, + "repository_id": 1746, + "parent_product_id": null, + "root_product_id": 1251, + "update_tag": "suse-res7ct", + "url": "https://updates.suse.com/repo/$RCE/RES7-SUSE-Manager-Tools/x86_64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "RES7 SUSE-Manager-Tools x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "res7-ha-x86_64", + "parent_channel_label": "rhel-x86_64-server-7", + "product_id": 1252, + "repository_id": 1737, + "parent_product_id": 1251, + "root_product_id": 1251, + "update_tag": null, + "url": "https://updates.suse.com/repo/$RCE/RES7-HA/x86_64/", + "release_stage": "released", + "mandatory": true, + "signed": false, + "recommended": false, + "channel_name": "RES7-HA for x86_64", + "product_type": "extension", + "gpg_info": [ + { + "url": "file:///etc/pki/rpm-gpg/res-gpg-pubkey-0182b964.key", + "keyId": "0182B964", + "fingerprint": "4F7439C1114F453FAA5F06218055F0400182B964" + } + ], + "tags": [ + ] + }, + { + "channel_label": "res-7-suse-manager-tools-beta-x86_64", + "parent_channel_label": "rhel-x86_64-server-7", + "product_id": 2065, + "repository_id": 4410, + "parent_product_id": 1251, + "root_product_id": 1251, + "update_tag": null, + "url": "https://updates.suse.com/repo/$RCE/RES7-SUSE-Manager-Tools-Beta/x86_64/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "RES-7-SUSE-Manager-Tools-Beta for x86_64", + "product_type": "extension", + "gpg_info": [ + { + "url": "file:///etc/pki/rpm-gpg/el-tools-gpg-pubkey-39db7c82.key", + "keyId": "39DB7C82", + "fingerprint": "FEAB502539D846DB2C0961CA70AF9E8139DB7C82" + } + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sles11-extras-i586-sles-sp4", + "parent_channel_label": "sles11-sp4-pool-i586", + "product_id": 1299, + "repository_id": 679, + "parent_product_id": null, + "root_product_id": 1299, + "update_tag": null, + "url": "https://updates.suse.com/repo/$RCE/SLES11-Extras/sle-11-i586/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLES11-Extras for i586 SLES-SP4", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-security-module-i586-sles-sp4", + "parent_channel_label": "sles11-sp4-pool-i586", + "product_id": 1299, + "repository_id": 1379, + "parent_product_id": null, + "root_product_id": 1299, + "update_tag": "secsp3", + "url": "https://updates.suse.com/repo/$RCE/SLE11-Security-Module/sle-11-i586/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE11-Security-Module for i586 SLES-SP4", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-public-cloud-module-i586-sles-sp4", + "parent_channel_label": "sles11-sp4-pool-i586", + "product_id": 1299, + "repository_id": 1776, + "parent_product_id": null, + "root_product_id": 1299, + "update_tag": "pubclsp3", + "url": "https://updates.suse.com/repo/$RCE/SLE11-Public-Cloud-Module/sle-11-i586/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE11-Public-Cloud-Module for i586 SLES-SP4", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles11-sp4-pool-i586", + "parent_channel_label": null, + "product_id": 1299, + "repository_id": 1797, + "parent_product_id": null, + "root_product_id": 1299, + "update_tag": "slessp4", + "url": "https://updates.suse.com/repo/$RCE/SLES11-SP4-Pool/sle-11-i586/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLES11-SP4-Pool for i586", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles11-sp4-updates-i586", + "parent_channel_label": "sles11-sp4-pool-i586", + "product_id": 1299, + "repository_id": 1799, + "parent_product_id": null, + "root_product_id": 1299, + "update_tag": "slessp4", + "url": "https://updates.suse.com/repo/$RCE/SLES11-SP4-Updates/sle-11-i586/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLES11-SP4-Updates for i586", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-sp4-debuginfo-pool-i586", + "parent_channel_label": "sles11-sp4-pool-i586", + "product_id": 1299, + "repository_id": 1800, + "parent_product_id": null, + "root_product_id": 1299, + "update_tag": "dbgsp4", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SP4-Debuginfo-Pool/sle-11-i586/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SP4-Debuginfo-Pool for i586", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-sp4-debuginfo-updates-i586", + "parent_channel_label": "sles11-sp4-pool-i586", + "product_id": 1299, + "repository_id": 1801, + "parent_product_id": null, + "root_product_id": 1299, + "update_tag": "dbgsp4", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SP4-Debuginfo-Updates/sle-11-i586/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SP4-Debuginfo-Updates for i586", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles11-sp4-suse-manager-tools-i586", + "parent_channel_label": "sles11-sp4-pool-i586", + "product_id": 1299, + "repository_id": 1841, + "parent_product_id": null, + "root_product_id": 1299, + "update_tag": "slesctsp4", + "url": "https://updates.suse.com/repo/$RCE/SLES11-SP4-SUSE-Manager-Tools/sle-11-i586/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLES11-SP4-SUSE-Manager-Tools i586", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sles11-sp4-ltss-updates-i586", + "parent_channel_label": "sles11-sp4-pool-i586", + "product_id": 1299, + "repository_id": 3759, + "parent_product_id": null, + "root_product_id": 1299, + "update_tag": "slessp4", + "url": "https://updates.suse.com/repo/$RCE/SLES11-SP4-LTSS-Updates/sle-11-i586/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLES11-SP4-LTSS-Updates for i586", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-pos-sp3-pool-i586-sp4", + "parent_channel_label": "sles11-sp4-pool-i586", + "product_id": 1073, + "repository_id": 1084, + "parent_product_id": 1299, + "root_product_id": 1299, + "update_tag": "sleposp3", + "url": "https://updates.suse.com/repo/$RCE/SLE11-POS-SP3-Pool/sle-11-i586/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE11-POS-SP3-Pool for i586 SP4", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-pos-sp3-updates-i586-sp4", + "parent_channel_label": "sles11-sp4-pool-i586", + "product_id": 1073, + "repository_id": 1085, + "parent_product_id": 1299, + "root_product_id": 1299, + "update_tag": "sleposp3", + "url": "https://updates.suse.com/repo/$RCE/SLE11-POS-SP3-Updates/sle-11-i586/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE11-POS-SP3-Updates for i586 SP4", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-smt-sp3-updates-i586-sp4", + "parent_channel_label": "sles11-sp4-pool-i586", + "product_id": 1198, + "repository_id": 1406, + "parent_product_id": 1299, + "root_product_id": 1299, + "update_tag": "slesmtsp3", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SMT-SP3-Updates/sle-11-i586/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SMT-SP3-Updates for i586 SP4", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-smt-sp3-pool-i586-sp4", + "parent_channel_label": "sles11-sp4-pool-i586", + "product_id": 1198, + "repository_id": 1410, + "parent_product_id": 1299, + "root_product_id": 1299, + "update_tag": "slesmtsp3", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SMT-SP3-Pool/sle-11-i586/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SMT-SP3-Pool for i586 SP4", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-hae-sp4-pool-i586", + "parent_channel_label": "sles11-sp4-pool-i586", + "product_id": 1255, + "repository_id": 1747, + "parent_product_id": 1299, + "root_product_id": 1299, + "update_tag": "sleshasp4", + "url": "https://updates.suse.com/repo/$RCE/SLE11-HAE-SP4-Pool/sle-11-i586/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE11-HAE-SP4-Pool for i586", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-hae-sp4-updates-i586", + "parent_channel_label": "sles11-sp4-pool-i586", + "product_id": 1255, + "repository_id": 1749, + "parent_product_id": 1299, + "root_product_id": 1299, + "update_tag": "sleshasp4", + "url": "https://updates.suse.com/repo/$RCE/SLE11-HAE-SP4-Updates/sle-11-i586/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE11-HAE-SP4-Updates for i586", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-sdk-sp4-pool-i586", + "parent_channel_label": "sles11-sp4-pool-i586", + "product_id": 1320, + "repository_id": 1817, + "parent_product_id": 1299, + "root_product_id": 1299, + "update_tag": "sdksp4", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SDK-SP4-Pool/sle-11-i586/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SDK-SP4-Pool for i586", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-sdk-sp4-updates-i586", + "parent_channel_label": "sles11-sp4-pool-i586", + "product_id": 1320, + "repository_id": 1822, + "parent_product_id": 1299, + "root_product_id": 1299, + "update_tag": "sdksp4", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SDK-SP4-Updates/sle-11-i586/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SDK-SP4-Updates for i586", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles11-sp4-suse-manager-tools-beta-i586", + "parent_channel_label": "sles11-sp4-pool-i586", + "product_id": 2071, + "repository_id": 4420, + "parent_product_id": 1299, + "root_product_id": 1299, + "update_tag": null, + "url": "https://updates.suse.com/repo/$RCE/SLES11-SP4-SUSE-Manager-Tools-Beta/sle-11-i586/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLES11-SP4-SUSE-Manager-Tools-Beta for i586", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sles11-extras-x86_64-sles-sp4", + "parent_channel_label": "sles11-sp4-pool-x86_64", + "product_id": 1300, + "repository_id": 710, + "parent_product_id": null, + "root_product_id": 1300, + "update_tag": null, + "url": "https://updates.suse.com/repo/$RCE/SLES11-Extras/sle-11-x86_64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLES11-Extras for x86_64 SLES-SP4", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-security-module-x86_64-sles-sp4", + "parent_channel_label": "sles11-sp4-pool-x86_64", + "product_id": 1300, + "repository_id": 1447, + "parent_product_id": null, + "root_product_id": 1300, + "update_tag": "secsp3", + "url": "https://updates.suse.com/repo/$RCE/SLE11-Security-Module/sle-11-x86_64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE11-Security-Module for x86_64 SLES-SP4", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-public-cloud-module-x86_64-sles-sp4", + "parent_channel_label": "sles11-sp4-pool-x86_64", + "product_id": 1300, + "repository_id": 1777, + "parent_product_id": null, + "root_product_id": 1300, + "update_tag": "pubclsp3", + "url": "https://updates.suse.com/repo/$RCE/SLE11-Public-Cloud-Module/sle-11-x86_64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE11-Public-Cloud-Module for x86_64 SLES-SP4", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles11-sp4-pool-x86_64", + "parent_channel_label": null, + "product_id": 1300, + "repository_id": 1802, + "parent_product_id": null, + "root_product_id": 1300, + "update_tag": "slessp4", + "url": "https://updates.suse.com/repo/$RCE/SLES11-SP4-Pool/sle-11-x86_64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLES11-SP4-Pool for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles11-sp4-updates-x86_64", + "parent_channel_label": "sles11-sp4-pool-x86_64", + "product_id": 1300, + "repository_id": 1803, + "parent_product_id": null, + "root_product_id": 1300, + "update_tag": "slessp4", + "url": "https://updates.suse.com/repo/$RCE/SLES11-SP4-Updates/sle-11-x86_64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLES11-SP4-Updates for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-sp4-debuginfo-pool-x86_64", + "parent_channel_label": "sles11-sp4-pool-x86_64", + "product_id": 1300, + "repository_id": 1804, + "parent_product_id": null, + "root_product_id": 1300, + "update_tag": "dbgsp4", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SP4-Debuginfo-Pool/sle-11-x86_64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SP4-Debuginfo-Pool for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-sp4-debuginfo-updates-x86_64", + "parent_channel_label": "sles11-sp4-pool-x86_64", + "product_id": 1300, + "repository_id": 1806, + "parent_product_id": null, + "root_product_id": 1300, + "update_tag": "dbgsp4", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SP4-Debuginfo-Updates/sle-11-x86_64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SP4-Debuginfo-Updates for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles11-sp4-suse-manager-tools-x86_64", + "parent_channel_label": "sles11-sp4-pool-x86_64", + "product_id": 1300, + "repository_id": 1842, + "parent_product_id": null, + "root_product_id": 1300, + "update_tag": "slesctsp4", + "url": "https://updates.suse.com/repo/$RCE/SLES11-SP4-SUSE-Manager-Tools/sle-11-x86_64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLES11-SP4-SUSE-Manager-Tools x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sles11-sp4-ltss-updates-x86_64", + "parent_channel_label": "sles11-sp4-pool-x86_64", + "product_id": 1300, + "repository_id": 3760, + "parent_product_id": null, + "root_product_id": 1300, + "update_tag": "slessp4", + "url": "https://updates.suse.com/repo/$RCE/SLES11-SP4-LTSS-Updates/sle-11-x86_64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLES11-SP4-LTSS-Updates for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "oes2015-sp1-updates-x86_64", + "parent_channel_label": "sles11-sp4-pool-x86_64", + "product_id": 43, + "repository_id": -12, + "parent_product_id": 1300, + "root_product_id": 1300, + "update_tag": "oes2015sp1", + "url": "https://nu.novell.com/repo/$RCE/OES2015-SP1-Updates/sle-11-x86_64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "OES2015-SP1-Updates for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "oes2015-sp1-pool-x86_64", + "parent_channel_label": "sles11-sp4-pool-x86_64", + "product_id": 43, + "repository_id": -11, + "parent_product_id": 1300, + "root_product_id": 1300, + "update_tag": "oes2015sp1", + "url": "https://nu.novell.com/repo/$RCE/OES2015-SP1-Pool/sle-11-x86_64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "OES2015-SP1-Pool for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "oes11-sp3-updates-x86_64", + "parent_channel_label": "sles11-sp4-pool-x86_64", + "product_id": 44, + "repository_id": -8, + "parent_product_id": 1300, + "root_product_id": 1300, + "update_tag": "oes11sp3", + "url": "https://nu.novell.com/repo/$RCE/OES11-SP3-Updates/sle-11-x86_64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "OES11-SP3-Updates for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "oes11-sp3-pool-x86_64", + "parent_channel_label": "sles11-sp4-pool-x86_64", + "product_id": 44, + "repository_id": -7, + "parent_product_id": 1300, + "root_product_id": 1300, + "update_tag": "oes11sp3", + "url": "https://nu.novell.com/repo/$RCE/OES11-SP3-Pool/sle-11-x86_64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "OES11-SP3-Pool for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-pos-sp3-pool-x86_64-sp4", + "parent_channel_label": "sles11-sp4-pool-x86_64", + "product_id": 1073, + "repository_id": 1086, + "parent_product_id": 1300, + "root_product_id": 1300, + "update_tag": "sleposp3", + "url": "https://updates.suse.com/repo/$RCE/SLE11-POS-SP3-Pool/sle-11-x86_64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE11-POS-SP3-Pool for x86_64 SP4", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-pos-sp3-updates-x86_64-sp4", + "parent_channel_label": "sles11-sp4-pool-x86_64", + "product_id": 1073, + "repository_id": 1087, + "parent_product_id": 1300, + "root_product_id": 1300, + "update_tag": "sleposp3", + "url": "https://updates.suse.com/repo/$RCE/SLE11-POS-SP3-Updates/sle-11-x86_64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE11-POS-SP3-Updates for x86_64 SP4", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-smt-sp3-updates-x86_64-sp4", + "parent_channel_label": "sles11-sp4-pool-x86_64", + "product_id": 1198, + "repository_id": 1405, + "parent_product_id": 1300, + "root_product_id": 1300, + "update_tag": "slesmtsp3", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SMT-SP3-Updates/sle-11-x86_64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SMT-SP3-Updates for x86_64 SP4", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-smt-sp3-pool-x86_64-sp4", + "parent_channel_label": "sles11-sp4-pool-x86_64", + "product_id": 1198, + "repository_id": 1409, + "parent_product_id": 1300, + "root_product_id": 1300, + "update_tag": "slesmtsp3", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SMT-SP3-Pool/sle-11-x86_64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SMT-SP3-Pool for x86_64 SP4", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-hae-sp4-pool-x86_64", + "parent_channel_label": "sles11-sp4-pool-x86_64", + "product_id": 1256, + "repository_id": 1750, + "parent_product_id": 1300, + "root_product_id": 1300, + "update_tag": "sleshasp4", + "url": "https://updates.suse.com/repo/$RCE/SLE11-HAE-SP4-Pool/sle-11-x86_64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE11-HAE-SP4-Pool for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-hae-sp4-updates-x86_64", + "parent_channel_label": "sles11-sp4-pool-x86_64", + "product_id": 1256, + "repository_id": 1753, + "parent_product_id": 1300, + "root_product_id": 1300, + "update_tag": "sleshasp4", + "url": "https://updates.suse.com/repo/$RCE/SLE11-HAE-SP4-Updates/sle-11-x86_64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE11-HAE-SP4-Updates for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-hae-geo-sp4-updates-x86_64", + "parent_channel_label": "sles11-sp4-pool-x86_64", + "product_id": 1286, + "repository_id": 1760, + "parent_product_id": 1256, + "root_product_id": 1300, + "update_tag": "sleshagsp4", + "url": "https://updates.suse.com/repo/$RCE/SLE11-HAE-GEO-SP4-Updates/sle-11-x86_64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE11-HAE-GEO-SP4-Updates for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-hae-geo-sp4-pool-x86_64", + "parent_channel_label": "sles11-sp4-pool-x86_64", + "product_id": 1286, + "repository_id": 1858, + "parent_product_id": 1256, + "root_product_id": 1300, + "update_tag": "sleshagsp4", + "url": "https://updates.suse.com/repo/$RCE/SLE11-HAE-GEO-SP4-Pool/sle-11-x86_64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE11-HAE-GEO-SP4-Pool for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "slert11-sp4-pool-x86_64", + "parent_channel_label": "sles11-sp4-pool-x86_64", + "product_id": 1296, + "repository_id": 1781, + "parent_product_id": 1300, + "root_product_id": 1300, + "update_tag": "slertesp4", + "url": "https://updates.suse.com/repo/$RCE/SLERT11-SP4-Pool/sle-11-x86_64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLERT11-SP4-Pool for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "slert11-sp4-updates-x86_64", + "parent_channel_label": "sles11-sp4-pool-x86_64", + "product_id": 1296, + "repository_id": 1782, + "parent_product_id": 1300, + "root_product_id": 1300, + "update_tag": "slertesp4", + "url": "https://updates.suse.com/repo/$RCE/SLERT11-SP4-Updates/sle-11-x86_64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLERT11-SP4-Updates for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-sdk-sp4-pool-x86_64", + "parent_channel_label": "sles11-sp4-pool-x86_64", + "product_id": 1320, + "repository_id": 1821, + "parent_product_id": 1300, + "root_product_id": 1300, + "update_tag": "sdksp4", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SDK-SP4-Pool/sle-11-x86_64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SDK-SP4-Pool for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-sdk-sp4-updates-x86_64", + "parent_channel_label": "sles11-sp4-pool-x86_64", + "product_id": 1320, + "repository_id": 1826, + "parent_product_id": 1300, + "root_product_id": 1300, + "update_tag": "sdksp4", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SDK-SP4-Updates/sle-11-x86_64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SDK-SP4-Updates for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles11-sp4-suse-manager-tools-beta-x86_64", + "parent_channel_label": "sles11-sp4-pool-x86_64", + "product_id": 2074, + "repository_id": 4423, + "parent_product_id": 1300, + "root_product_id": 1300, + "update_tag": null, + "url": "https://updates.suse.com/repo/$RCE/SLES11-SP4-SUSE-Manager-Tools-Beta/sle-11-x86_64/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLES11-SP4-SUSE-Manager-Tools-Beta for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sles11-extras-ppc64-sles-sp4", + "parent_channel_label": "sles11-sp4-pool-ppc64", + "product_id": 1301, + "repository_id": 920, + "parent_product_id": null, + "root_product_id": 1301, + "update_tag": null, + "url": "https://updates.suse.com/repo/$RCE/SLES11-Extras/sle-11-ppc64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLES11-Extras for ppc64 SLES-SP4", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-security-module-ppc64-sles-sp4", + "parent_channel_label": "sles11-sp4-pool-ppc64", + "product_id": 1301, + "repository_id": 1380, + "parent_product_id": null, + "root_product_id": 1301, + "update_tag": "secsp3", + "url": "https://updates.suse.com/repo/$RCE/SLE11-Security-Module/sle-11-ppc64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE11-Security-Module for ppc64 SLES-SP4", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-public-cloud-module-ppc64-sles-sp4", + "parent_channel_label": "sles11-sp4-pool-ppc64", + "product_id": 1301, + "repository_id": 1780, + "parent_product_id": null, + "root_product_id": 1301, + "update_tag": "pubclsp3", + "url": "https://updates.suse.com/repo/$RCE/SLE11-Public-Cloud-Module/sle-11-ppc64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE11-Public-Cloud-Module for ppc64 SLES-SP4", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles11-sp4-pool-ppc64", + "parent_channel_label": null, + "product_id": 1301, + "repository_id": 1785, + "parent_product_id": null, + "root_product_id": 1301, + "update_tag": "slessp4", + "url": "https://updates.suse.com/repo/$RCE/SLES11-SP4-Pool/sle-11-ppc64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLES11-SP4-Pool for ppc64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles11-sp4-updates-ppc64", + "parent_channel_label": "sles11-sp4-pool-ppc64", + "product_id": 1301, + "repository_id": 1786, + "parent_product_id": null, + "root_product_id": 1301, + "update_tag": "slessp4", + "url": "https://updates.suse.com/repo/$RCE/SLES11-SP4-Updates/sle-11-ppc64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLES11-SP4-Updates for ppc64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-sp4-debuginfo-pool-ppc64", + "parent_channel_label": "sles11-sp4-pool-ppc64", + "product_id": 1301, + "repository_id": 1787, + "parent_product_id": null, + "root_product_id": 1301, + "update_tag": "dbgsp4", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SP4-Debuginfo-Pool/sle-11-ppc64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SP4-Debuginfo-Pool for ppc64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-sp4-debuginfo-updates-ppc64", + "parent_channel_label": "sles11-sp4-pool-ppc64", + "product_id": 1301, + "repository_id": 1788, + "parent_product_id": null, + "root_product_id": 1301, + "update_tag": "dbgsp4", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SP4-Debuginfo-Updates/sle-11-ppc64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SP4-Debuginfo-Updates for ppc64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles11-sp4-suse-manager-tools-ppc64", + "parent_channel_label": "sles11-sp4-pool-ppc64", + "product_id": 1301, + "repository_id": 1843, + "parent_product_id": null, + "root_product_id": 1301, + "update_tag": "slesctsp4", + "url": "https://updates.suse.com/repo/$RCE/SLES11-SP4-SUSE-Manager-Tools/sle-11-ppc64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLES11-SP4-SUSE-Manager-Tools ppc64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sles11-sp4-ltss-updates-ppc64", + "parent_channel_label": "sles11-sp4-pool-ppc64", + "product_id": 1301, + "repository_id": 3880, + "parent_product_id": null, + "root_product_id": 1301, + "update_tag": "slessp4", + "url": "https://updates.suse.com/repo/$RCE/SLES11-SP4-LTSS-Updates/sle-11-ppc64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLES11-SP4-LTSS-Updates for ppc64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-hae-sp4-pool-ppc64", + "parent_channel_label": "sles11-sp4-pool-ppc64", + "product_id": 1258, + "repository_id": 1756, + "parent_product_id": 1301, + "root_product_id": 1301, + "update_tag": "sleshasp4", + "url": "https://updates.suse.com/repo/$RCE/SLE11-HAE-SP4-Pool/sle-11-ppc64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE11-HAE-SP4-Pool for ppc64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-hae-sp4-updates-ppc64", + "parent_channel_label": "sles11-sp4-pool-ppc64", + "product_id": 1258, + "repository_id": 1757, + "parent_product_id": 1301, + "root_product_id": 1301, + "update_tag": "sleshasp4", + "url": "https://updates.suse.com/repo/$RCE/SLE11-HAE-SP4-Updates/sle-11-ppc64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE11-HAE-SP4-Updates for ppc64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-sdk-sp4-pool-ppc64", + "parent_channel_label": "sles11-sp4-pool-ppc64", + "product_id": 1320, + "repository_id": 1819, + "parent_product_id": 1301, + "root_product_id": 1301, + "update_tag": "sdksp4", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SDK-SP4-Pool/sle-11-ppc64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SDK-SP4-Pool for ppc64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-sdk-sp4-updates-ppc64", + "parent_channel_label": "sles11-sp4-pool-ppc64", + "product_id": 1320, + "repository_id": 1824, + "parent_product_id": 1301, + "root_product_id": 1301, + "update_tag": "sdksp4", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SDK-SP4-Updates/sle-11-ppc64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SDK-SP4-Updates for ppc64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles11-sp4-suse-manager-tools-beta-ppc64", + "parent_channel_label": "sles11-sp4-pool-ppc64", + "product_id": 2072, + "repository_id": 4421, + "parent_product_id": 1301, + "root_product_id": 1301, + "update_tag": null, + "url": "https://updates.suse.com/repo/$RCE/SLES11-SP4-SUSE-Manager-Tools-Beta/sle-11-ppc64/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLES11-SP4-SUSE-Manager-Tools-Beta for ppc64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sles11-extras-ia64-sles-sp4", + "parent_channel_label": "sles11-sp4-pool-ia64", + "product_id": 1302, + "repository_id": 972, + "parent_product_id": null, + "root_product_id": 1302, + "update_tag": null, + "url": "https://updates.suse.com/repo/$RCE/SLES11-Extras/sle-11-ia64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLES11-Extras for ia64 SLES-SP4", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-security-module-ia64-sles-sp4", + "parent_channel_label": "sles11-sp4-pool-ia64", + "product_id": 1302, + "repository_id": 1385, + "parent_product_id": null, + "root_product_id": 1302, + "update_tag": "secsp3", + "url": "https://updates.suse.com/repo/$RCE/SLE11-Security-Module/sle-11-ia64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE11-Security-Module for ia64 SLES-SP4", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-public-cloud-module-ia64-sles-sp4", + "parent_channel_label": "sles11-sp4-pool-ia64", + "product_id": 1302, + "repository_id": 1783, + "parent_product_id": null, + "root_product_id": 1302, + "update_tag": "pubclsp3", + "url": "https://updates.suse.com/repo/$RCE/SLE11-Public-Cloud-Module/sle-11-ia64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE11-Public-Cloud-Module for ia64 SLES-SP4", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles11-sp4-pool-ia64", + "parent_channel_label": null, + "product_id": 1302, + "repository_id": 1793, + "parent_product_id": null, + "root_product_id": 1302, + "update_tag": "slessp4", + "url": "https://updates.suse.com/repo/$RCE/SLES11-SP4-Pool/sle-11-ia64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLES11-SP4-Pool for ia64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles11-sp4-updates-ia64", + "parent_channel_label": "sles11-sp4-pool-ia64", + "product_id": 1302, + "repository_id": 1794, + "parent_product_id": null, + "root_product_id": 1302, + "update_tag": "slessp4", + "url": "https://updates.suse.com/repo/$RCE/SLES11-SP4-Updates/sle-11-ia64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLES11-SP4-Updates for ia64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-sp4-debuginfo-pool-ia64", + "parent_channel_label": "sles11-sp4-pool-ia64", + "product_id": 1302, + "repository_id": 1795, + "parent_product_id": null, + "root_product_id": 1302, + "update_tag": "dbgsp4", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SP4-Debuginfo-Pool/sle-11-ia64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SP4-Debuginfo-Pool for ia64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-sp4-debuginfo-updates-ia64", + "parent_channel_label": "sles11-sp4-pool-ia64", + "product_id": 1302, + "repository_id": 1796, + "parent_product_id": null, + "root_product_id": 1302, + "update_tag": "dbgsp4", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SP4-Debuginfo-Updates/sle-11-ia64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SP4-Debuginfo-Updates for ia64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles11-sp4-suse-manager-tools-ia64", + "parent_channel_label": "sles11-sp4-pool-ia64", + "product_id": 1302, + "repository_id": 1844, + "parent_product_id": null, + "root_product_id": 1302, + "update_tag": "slesctsp4", + "url": "https://updates.suse.com/repo/$RCE/SLES11-SP4-SUSE-Manager-Tools/sle-11-ia64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLES11-SP4-SUSE-Manager-Tools ia64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle11-hae-sp4-pool-ia64", + "parent_channel_label": "sles11-sp4-pool-ia64", + "product_id": 1259, + "repository_id": 1754, + "parent_product_id": 1302, + "root_product_id": 1302, + "update_tag": "sleshasp4", + "url": "https://updates.suse.com/repo/$RCE/SLE11-HAE-SP4-Pool/sle-11-ia64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE11-HAE-SP4-Pool for ia64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-hae-sp4-updates-ia64", + "parent_channel_label": "sles11-sp4-pool-ia64", + "product_id": 1259, + "repository_id": 1755, + "parent_product_id": 1302, + "root_product_id": 1302, + "update_tag": "sleshasp4", + "url": "https://updates.suse.com/repo/$RCE/SLE11-HAE-SP4-Updates/sle-11-ia64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE11-HAE-SP4-Updates for ia64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-sdk-sp4-pool-ia64", + "parent_channel_label": "sles11-sp4-pool-ia64", + "product_id": 1320, + "repository_id": 1818, + "parent_product_id": 1302, + "root_product_id": 1302, + "update_tag": "sdksp4", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SDK-SP4-Pool/sle-11-ia64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SDK-SP4-Pool for ia64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-sdk-sp4-updates-ia64", + "parent_channel_label": "sles11-sp4-pool-ia64", + "product_id": 1320, + "repository_id": 1823, + "parent_product_id": 1302, + "root_product_id": 1302, + "update_tag": "sdksp4", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SDK-SP4-Updates/sle-11-ia64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SDK-SP4-Updates for ia64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles11-extras-s390x-sles-sp4", + "parent_channel_label": "sles11-sp4-pool-s390x", + "product_id": 1303, + "repository_id": 689, + "parent_product_id": null, + "root_product_id": 1303, + "update_tag": null, + "url": "https://updates.suse.com/repo/$RCE/SLES11-Extras/sle-11-s390x/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLES11-Extras for s390x SLES-SP4", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-security-module-s390x-sles-sp4", + "parent_channel_label": "sles11-sp4-pool-s390x", + "product_id": 1303, + "repository_id": 1446, + "parent_product_id": null, + "root_product_id": 1303, + "update_tag": "secsp3", + "url": "https://updates.suse.com/repo/$RCE/SLE11-Security-Module/sle-11-s390x/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE11-Security-Module for s390x SLES-SP4", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-public-cloud-module-s390x-sles-sp4", + "parent_channel_label": "sles11-sp4-pool-s390x", + "product_id": 1303, + "repository_id": 1778, + "parent_product_id": null, + "root_product_id": 1303, + "update_tag": "pubclsp3", + "url": "https://updates.suse.com/repo/$RCE/SLE11-Public-Cloud-Module/sle-11-s390x/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE11-Public-Cloud-Module for s390x SLES-SP4", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-sp4-debuginfo-pool-s390x", + "parent_channel_label": "sles11-sp4-pool-s390x", + "product_id": 1303, + "repository_id": 1789, + "parent_product_id": null, + "root_product_id": 1303, + "update_tag": "dbgsp4", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SP4-Debuginfo-Pool/sle-11-s390x/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SP4-Debuginfo-Pool for s390x", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-sp4-debuginfo-updates-s390x", + "parent_channel_label": "sles11-sp4-pool-s390x", + "product_id": 1303, + "repository_id": 1790, + "parent_product_id": null, + "root_product_id": 1303, + "update_tag": "dbgsp4", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SP4-Debuginfo-Updates/sle-11-s390x/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SP4-Debuginfo-Updates for s390x", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles11-sp4-pool-s390x", + "parent_channel_label": null, + "product_id": 1303, + "repository_id": 1791, + "parent_product_id": null, + "root_product_id": 1303, + "update_tag": "slessp4", + "url": "https://updates.suse.com/repo/$RCE/SLES11-SP4-Pool/sle-11-s390x/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLES11-SP4-Pool for s390x", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles11-sp4-updates-s390x", + "parent_channel_label": "sles11-sp4-pool-s390x", + "product_id": 1303, + "repository_id": 1792, + "parent_product_id": null, + "root_product_id": 1303, + "update_tag": "slessp4", + "url": "https://updates.suse.com/repo/$RCE/SLES11-SP4-Updates/sle-11-s390x/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLES11-SP4-Updates for s390x", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles11-sp4-suse-manager-tools-s390x", + "parent_channel_label": "sles11-sp4-pool-s390x", + "product_id": 1303, + "repository_id": 1845, + "parent_product_id": null, + "root_product_id": 1303, + "update_tag": "slesctsp4", + "url": "https://updates.suse.com/repo/$RCE/SLES11-SP4-SUSE-Manager-Tools/sle-11-s390x/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLES11-SP4-SUSE-Manager-Tools s390x", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sles11-sp4-ltss-updates-s390x", + "parent_channel_label": "sles11-sp4-pool-s390x", + "product_id": 1303, + "repository_id": 3761, + "parent_product_id": null, + "root_product_id": 1303, + "update_tag": "slessp4", + "url": "https://updates.suse.com/repo/$RCE/SLES11-SP4-LTSS-Updates/sle-11-s390x/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLES11-SP4-LTSS-Updates for s390x", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-smt-sp3-updates-s390x-sp4", + "parent_channel_label": "sles11-sp4-pool-s390x", + "product_id": 1198, + "repository_id": 1407, + "parent_product_id": 1303, + "root_product_id": 1303, + "update_tag": "slesmtsp3", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SMT-SP3-Updates/sle-11-s390x/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SMT-SP3-Updates for s390x SP4", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-smt-sp3-pool-s390x-sp4", + "parent_channel_label": "sles11-sp4-pool-s390x", + "product_id": 1198, + "repository_id": 1408, + "parent_product_id": 1303, + "root_product_id": 1303, + "update_tag": "slesmtsp3", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SMT-SP3-Pool/sle-11-s390x/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SMT-SP3-Pool for s390x SP4", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-hae-sp4-pool-s390x", + "parent_channel_label": "sles11-sp4-pool-s390x", + "product_id": 1257, + "repository_id": 1758, + "parent_product_id": 1303, + "root_product_id": 1303, + "update_tag": "sleshasp4", + "url": "https://updates.suse.com/repo/$RCE/SLE11-HAE-SP4-Pool/sle-11-s390x/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE11-HAE-SP4-Pool for s390x", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-hae-sp4-updates-s390x", + "parent_channel_label": "sles11-sp4-pool-s390x", + "product_id": 1257, + "repository_id": 1759, + "parent_product_id": 1303, + "root_product_id": 1303, + "update_tag": "sleshasp4", + "url": "https://updates.suse.com/repo/$RCE/SLE11-HAE-SP4-Updates/sle-11-s390x/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE11-HAE-SP4-Updates for s390x", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-hae-geo-sp4-updates-s390x", + "parent_channel_label": "sles11-sp4-pool-s390x", + "product_id": 1287, + "repository_id": 1761, + "parent_product_id": 1257, + "root_product_id": 1303, + "update_tag": "sleshagsp4", + "url": "https://updates.suse.com/repo/$RCE/SLE11-HAE-GEO-SP4-Updates/sle-11-s390x/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE11-HAE-GEO-SP4-Updates for s390x", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-hae-geo-sp4-pool-s390x", + "parent_channel_label": "sles11-sp4-pool-s390x", + "product_id": 1287, + "repository_id": 1859, + "parent_product_id": 1257, + "root_product_id": 1303, + "update_tag": "sleshagsp4", + "url": "https://updates.suse.com/repo/$RCE/SLE11-HAE-GEO-SP4-Pool/sle-11-s390x/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE11-HAE-GEO-SP4-Pool for s390x", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-sdk-sp4-pool-s390x", + "parent_channel_label": "sles11-sp4-pool-s390x", + "product_id": 1320, + "repository_id": 1820, + "parent_product_id": 1303, + "root_product_id": 1303, + "update_tag": "sdksp4", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SDK-SP4-Pool/sle-11-s390x/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SDK-SP4-Pool for s390x", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-sdk-sp4-updates-s390x", + "parent_channel_label": "sles11-sp4-pool-s390x", + "product_id": 1320, + "repository_id": 1825, + "parent_product_id": 1303, + "root_product_id": 1303, + "update_tag": "sdksp4", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SDK-SP4-Updates/sle-11-s390x/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SDK-SP4-Updates for s390x", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles11-sp4-suse-manager-tools-beta-s390x", + "parent_channel_label": "sles11-sp4-pool-s390x", + "product_id": 2073, + "repository_id": 4422, + "parent_product_id": 1303, + "root_product_id": 1303, + "update_tag": null, + "url": "https://updates.suse.com/repo/$RCE/SLES11-SP4-SUSE-Manager-Tools-Beta/sle-11-s390x/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLES11-SP4-SUSE-Manager-Tools-Beta for s390x", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sled11-extras-i586-sled-sp4", + "parent_channel_label": "sled11-sp4-pool-i586", + "product_id": 1312, + "repository_id": 846, + "parent_product_id": null, + "root_product_id": 1312, + "update_tag": null, + "url": "https://updates.suse.com/repo/$RCE/SLED11-Extras/sle-11-i586/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLED11-Extras for i586 SLED-SP4", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-sp4-debuginfo-pool-i586-sled-sp4", + "parent_channel_label": "sled11-sp4-pool-i586", + "product_id": 1312, + "repository_id": 1800, + "parent_product_id": null, + "root_product_id": 1312, + "update_tag": "dbgsp4", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SP4-Debuginfo-Pool/sle-11-i586/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SP4-Debuginfo-Pool for i586 SLED-SP4", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-sp4-debuginfo-updates-i586-sled-sp4", + "parent_channel_label": "sled11-sp4-pool-i586", + "product_id": 1312, + "repository_id": 1801, + "parent_product_id": null, + "root_product_id": 1312, + "update_tag": "dbgsp4", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SP4-Debuginfo-Updates/sle-11-i586/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SP4-Debuginfo-Updates for i586 SLED-SP4", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sled11-sp4-updates-i586", + "parent_channel_label": "sled11-sp4-pool-i586", + "product_id": 1312, + "repository_id": 1807, + "parent_product_id": null, + "root_product_id": 1312, + "update_tag": "sledsp4", + "url": "https://updates.suse.com/repo/$RCE/SLED11-SP4-Updates/sle-11-i586/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLED11-SP4-Updates for i586", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sled11-sp4-pool-i586", + "parent_channel_label": null, + "product_id": 1312, + "repository_id": 1808, + "parent_product_id": null, + "root_product_id": 1312, + "update_tag": "sledsp4", + "url": "https://updates.suse.com/repo/$RCE/SLED11-SP4-Pool/sle-11-i586/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLED11-SP4-Pool for i586", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles11-sp4-suse-manager-tools-i586-sled-sp4", + "parent_channel_label": "sled11-sp4-pool-i586", + "product_id": 1312, + "repository_id": 1841, + "parent_product_id": null, + "root_product_id": 1312, + "update_tag": "slesctsp4", + "url": "https://updates.suse.com/repo/$RCE/SLES11-SP4-SUSE-Manager-Tools/sle-11-i586/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLES11-SP4-SUSE-Manager-Tools i586 SLED-SP4", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "nvidia-driver-sle11-sp4-i586", + "parent_channel_label": "sled11-sp4-pool-i586", + "product_id": 1312, + "repository_id": 1869, + "parent_product_id": null, + "root_product_id": 1312, + "update_tag": null, + "url": "http://download.nvidia.com/novell/sle11sp4/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "nVidia-Driver-SLE11-SP4 i586", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-sdk-sp4-pool-i586-sled-sp4", + "parent_channel_label": "sled11-sp4-pool-i586", + "product_id": 1320, + "repository_id": 1817, + "parent_product_id": 1312, + "root_product_id": 1312, + "update_tag": "sdksp4", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SDK-SP4-Pool/sle-11-i586/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SDK-SP4-Pool for i586 SLED-SP4", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-sdk-sp4-updates-i586-sled-sp4", + "parent_channel_label": "sled11-sp4-pool-i586", + "product_id": 1320, + "repository_id": 1822, + "parent_product_id": 1312, + "root_product_id": 1312, + "update_tag": "sdksp4", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SDK-SP4-Updates/sle-11-i586/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SDK-SP4-Updates for i586 SLED-SP4", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sled11-extras-x86_64-sled-sp4", + "parent_channel_label": "sled11-sp4-pool-x86_64", + "product_id": 1313, + "repository_id": 903, + "parent_product_id": null, + "root_product_id": 1313, + "update_tag": null, + "url": "https://updates.suse.com/repo/$RCE/SLED11-Extras/sle-11-x86_64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLED11-Extras for x86_64 SLED-SP4", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-sp4-debuginfo-pool-x86_64-sled-sp4", + "parent_channel_label": "sled11-sp4-pool-x86_64", + "product_id": 1313, + "repository_id": 1804, + "parent_product_id": null, + "root_product_id": 1313, + "update_tag": "dbgsp4", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SP4-Debuginfo-Pool/sle-11-x86_64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SP4-Debuginfo-Pool for x86_64 SLED-SP4", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-sp4-debuginfo-updates-x86_64-sled-sp4", + "parent_channel_label": "sled11-sp4-pool-x86_64", + "product_id": 1313, + "repository_id": 1806, + "parent_product_id": null, + "root_product_id": 1313, + "update_tag": "dbgsp4", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SP4-Debuginfo-Updates/sle-11-x86_64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SP4-Debuginfo-Updates for x86_64 SLED-SP4", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sled11-sp4-pool-x86_64", + "parent_channel_label": null, + "product_id": 1313, + "repository_id": 1809, + "parent_product_id": null, + "root_product_id": 1313, + "update_tag": "sledsp4", + "url": "https://updates.suse.com/repo/$RCE/SLED11-SP4-Pool/sle-11-x86_64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLED11-SP4-Pool for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sled11-sp4-updates-x86_64", + "parent_channel_label": "sled11-sp4-pool-x86_64", + "product_id": 1313, + "repository_id": 1810, + "parent_product_id": null, + "root_product_id": 1313, + "update_tag": "sledsp4", + "url": "https://updates.suse.com/repo/$RCE/SLED11-SP4-Updates/sle-11-x86_64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLED11-SP4-Updates for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles11-sp4-suse-manager-tools-x86_64-sled-sp4", + "parent_channel_label": "sled11-sp4-pool-x86_64", + "product_id": 1313, + "repository_id": 1842, + "parent_product_id": null, + "root_product_id": 1313, + "update_tag": "slesctsp4", + "url": "https://updates.suse.com/repo/$RCE/SLES11-SP4-SUSE-Manager-Tools/sle-11-x86_64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLES11-SP4-SUSE-Manager-Tools x86_64 SLED-SP4", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "nvidia-driver-sle11-sp4-x86_64", + "parent_channel_label": "sled11-sp4-pool-x86_64", + "product_id": 1313, + "repository_id": 1869, + "parent_product_id": null, + "root_product_id": 1313, + "update_tag": null, + "url": "http://download.nvidia.com/novell/sle11sp4/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "nVidia-Driver-SLE11-SP4 x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-sdk-sp4-pool-x86_64-sled-sp4", + "parent_channel_label": "sled11-sp4-pool-x86_64", + "product_id": 1320, + "repository_id": 1821, + "parent_product_id": 1313, + "root_product_id": 1313, + "update_tag": "sdksp4", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SDK-SP4-Pool/sle-11-x86_64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SDK-SP4-Pool for x86_64 SLED-SP4", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-sdk-sp4-updates-x86_64-sled-sp4", + "parent_channel_label": "sled11-sp4-pool-x86_64", + "product_id": 1320, + "repository_id": 1826, + "parent_product_id": 1313, + "root_product_id": 1313, + "update_tag": "sdksp4", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SDK-SP4-Updates/sle-11-x86_64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SDK-SP4-Updates for x86_64 SLED-SP4", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles12-updates-x86_64-sap", + "parent_channel_label": "sle12-sap-pool-x86_64", + "product_id": 1319, + "repository_id": 1632, + "parent_product_id": null, + "root_product_id": 1319, + "update_tag": "SLE-SERVER", + "url": "https://updates.suse.com/SUSE/Updates/SLE-SERVER/12/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLES12-Updates for x86_64 SAP", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles12-debuginfo-updates-x86_64-sap", + "parent_channel_label": "sle12-sap-pool-x86_64", + "product_id": 1319, + "repository_id": 1633, + "parent_product_id": null, + "root_product_id": 1319, + "update_tag": "SLE-SERVER", + "url": "https://updates.suse.com/SUSE/Updates/SLE-SERVER/12/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLES12-Debuginfo-Updates for x86_64 SAP", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles12-pool-x86_64-sap", + "parent_channel_label": "sle12-sap-pool-x86_64", + "product_id": 1319, + "repository_id": 1634, + "parent_product_id": null, + "root_product_id": 1319, + "update_tag": "SLE-SERVER", + "url": "https://updates.suse.com/SUSE/Products/SLE-SERVER/12/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLES12-Pool for x86_64 SAP", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles12-debuginfo-pool-x86_64-sap", + "parent_channel_label": "sle12-sap-pool-x86_64", + "product_id": 1319, + "repository_id": 1635, + "parent_product_id": null, + "root_product_id": 1319, + "update_tag": "SLE-SERVER", + "url": "https://updates.suse.com/SUSE/Products/SLE-SERVER/12/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLES12-Debuginfo-Pool for x86_64 SAP", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-ha12-updates-x86_64-sap", + "parent_channel_label": "sle12-sap-pool-x86_64", + "product_id": 1319, + "repository_id": 1712, + "parent_product_id": null, + "root_product_id": 1319, + "update_tag": "SLE-HA", + "url": "https://updates.suse.com/SUSE/Updates/SLE-HA/12/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-HA12-Updates for x86_64 SAP", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-ha12-debuginfo-updates-x86_64-sap", + "parent_channel_label": "sle12-sap-pool-x86_64", + "product_id": 1319, + "repository_id": 1713, + "parent_product_id": null, + "root_product_id": 1319, + "update_tag": "SLE-HA", + "url": "https://updates.suse.com/SUSE/Updates/SLE-HA/12/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-HA12-Debuginfo-Updates for x86_64 SAP", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-ha12-pool-x86_64-sap", + "parent_channel_label": "sle12-sap-pool-x86_64", + "product_id": 1319, + "repository_id": 1714, + "parent_product_id": null, + "root_product_id": 1319, + "update_tag": "SLE-HA", + "url": "https://updates.suse.com/SUSE/Products/SLE-HA/12/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-HA12-Pool for x86_64 SAP", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-ha12-debuginfo-pool-x86_64-sap", + "parent_channel_label": "sle12-sap-pool-x86_64", + "product_id": 1319, + "repository_id": 1715, + "parent_product_id": null, + "root_product_id": 1319, + "update_tag": "SLE-HA", + "url": "https://updates.suse.com/SUSE/Products/SLE-HA/12/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-HA12-Debuginfo-Pool for x86_64 SAP", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-manager-tools12-updates-x86_64-sap", + "parent_channel_label": "sle12-sap-pool-x86_64", + "product_id": 1319, + "repository_id": 1732, + "parent_product_id": null, + "root_product_id": 1319, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/12/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Manager-Tools12-Updates for x86_64 SAP", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools12-debuginfo-updates-x86_64-sap", + "parent_channel_label": "sle12-sap-pool-x86_64", + "product_id": 1319, + "repository_id": 1733, + "parent_product_id": null, + "root_product_id": 1319, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/12/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Manager-Tools12-Debuginfo-Updates for x86_64 SAP", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools12-pool-x86_64-sap", + "parent_channel_label": "sle12-sap-pool-x86_64", + "product_id": 1319, + "repository_id": 1734, + "parent_product_id": null, + "root_product_id": 1319, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/12/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Manager-Tools12-Pool for x86_64 SAP", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools12-debuginfo-pool-x86_64-sap", + "parent_channel_label": "sle12-sap-pool-x86_64", + "product_id": 1319, + "repository_id": 1735, + "parent_product_id": null, + "root_product_id": 1319, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/12/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Manager-Tools12-Debuginfo-Pool for x86_64 SAP", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-12-sap-updates-x86_64", + "parent_channel_label": "sle12-sap-pool-x86_64", + "product_id": 1319, + "repository_id": 1836, + "parent_product_id": null, + "root_product_id": 1319, + "update_tag": "SLE-SAP-12", + "url": "https://updates.suse.com/SUSE/Updates/SLE-SAP/12/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-12-SAP-Updates for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-12-sap-debuginfo-updates-x86_64", + "parent_channel_label": "sle12-sap-pool-x86_64", + "product_id": 1319, + "repository_id": 1837, + "parent_product_id": null, + "root_product_id": 1319, + "update_tag": "SLE-SAP-12", + "url": "https://updates.suse.com/SUSE/Updates/SLE-SAP/12/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-12-SAP-Debuginfo-Updates for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle12-sap-pool-x86_64", + "parent_channel_label": null, + "product_id": 1319, + "repository_id": 1838, + "parent_product_id": null, + "root_product_id": 1319, + "update_tag": "SLE-SAP-12", + "url": "https://updates.suse.com/SUSE/Products/SLE-SAP/12/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE12-SAP-Pool for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle12-sap-debuginfo-pool-x86_64", + "parent_channel_label": "sle12-sap-pool-x86_64", + "product_id": 1319, + "repository_id": 1839, + "parent_product_id": null, + "root_product_id": 1319, + "update_tag": "SLE-SAP-12", + "url": "https://updates.suse.com/SUSE/Products/SLE-SAP/12/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE12-SAP-Debuginfo-Pool for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-legacy12-updates-x86_64-sap", + "parent_channel_label": "sle12-sap-pool-x86_64", + "product_id": 1150, + "repository_id": 1676, + "parent_product_id": 1319, + "root_product_id": 1319, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/12/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy12-Updates for x86_64 SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-legacy12-debuginfo-updates-x86_64-sap", + "parent_channel_label": "sle12-sap-pool-x86_64", + "product_id": 1150, + "repository_id": 1677, + "parent_product_id": 1319, + "root_product_id": 1319, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/12/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy12-Debuginfo-Updates for x86_64 SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-legacy12-pool-x86_64-sap", + "parent_channel_label": "sle12-sap-pool-x86_64", + "product_id": 1150, + "repository_id": 1678, + "parent_product_id": 1319, + "root_product_id": 1319, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/12/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy12-Pool for x86_64 SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-legacy12-debuginfo-pool-x86_64-sap", + "parent_channel_label": "sle12-sap-pool-x86_64", + "product_id": 1150, + "repository_id": 1679, + "parent_product_id": 1319, + "root_product_id": 1319, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/12/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy12-Debuginfo-Pool for x86_64 SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting12-updates-x86_64-sap", + "parent_channel_label": "sle12-sap-pool-x86_64", + "product_id": 1153, + "repository_id": 1688, + "parent_product_id": 1319, + "root_product_id": 1319, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/12/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Web-Scripting12-Updates for x86_64 SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting12-debuginfo-updates-x86_64-sap", + "parent_channel_label": "sle12-sap-pool-x86_64", + "product_id": 1153, + "repository_id": 1689, + "parent_product_id": 1319, + "root_product_id": 1319, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/12/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Web-Scripting12-Debuginfo-Updates for x86_64 SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting12-pool-x86_64-sap", + "parent_channel_label": "sle12-sap-pool-x86_64", + "product_id": 1153, + "repository_id": 1690, + "parent_product_id": 1319, + "root_product_id": 1319, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/12/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Web-Scripting12-Pool for x86_64 SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting12-debuginfo-pool-x86_64-sap", + "parent_channel_label": "sle12-sap-pool-x86_64", + "product_id": 1153, + "repository_id": 1691, + "parent_product_id": 1319, + "root_product_id": 1319, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/12/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Web-Scripting12-Debuginfo-Pool for x86_64 SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-ha-geo12-updates-x86_64-sap", + "parent_channel_label": "sle12-sap-pool-x86_64", + "product_id": 1157, + "repository_id": 1720, + "parent_product_id": 1319, + "root_product_id": 1319, + "update_tag": "SLE-HA-GEO", + "url": "https://updates.suse.com/SUSE/Updates/SLE-HA-GEO/12/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-HA-GEO12-Updates for x86_64 SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-ha-geo12-debuginfo-updates-x86_64-sap", + "parent_channel_label": "sle12-sap-pool-x86_64", + "product_id": 1157, + "repository_id": 1721, + "parent_product_id": 1319, + "root_product_id": 1319, + "update_tag": "SLE-HA-GEO", + "url": "https://updates.suse.com/SUSE/Updates/SLE-HA-GEO/12/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-HA-GEO12-Debuginfo-Updates for x86_64 SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-ha-geo12-pool-x86_64-sap", + "parent_channel_label": "sle12-sap-pool-x86_64", + "product_id": 1157, + "repository_id": 1722, + "parent_product_id": 1319, + "root_product_id": 1319, + "update_tag": "SLE-HA-GEO", + "url": "https://updates.suse.com/SUSE/Products/SLE-HA-GEO/12/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-HA-GEO12-Pool for x86_64 SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-ha-geo12-debuginfo-pool-x86_64-sap", + "parent_channel_label": "sle12-sap-pool-x86_64", + "product_id": 1157, + "repository_id": 1723, + "parent_product_id": 1319, + "root_product_id": 1319, + "update_tag": "SLE-HA-GEO", + "url": "https://updates.suse.com/SUSE/Products/SLE-HA-GEO/12/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-HA-GEO12-Debuginfo-Pool for x86_64 SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-adv-systems-management12-updates-x86_64-sap", + "parent_channel_label": "sle12-sap-pool-x86_64", + "product_id": 1212, + "repository_id": 1704, + "parent_product_id": 1319, + "root_product_id": 1319, + "update_tag": "SLE-Module-Adv-Systems-Management", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Adv-Systems-Management/12/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Adv-Systems-Management12-Updates for x86_64 SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-adv-systems-management12-debuginfo-updates-x86_64-sap", + "parent_channel_label": "sle12-sap-pool-x86_64", + "product_id": 1212, + "repository_id": 1705, + "parent_product_id": 1319, + "root_product_id": 1319, + "update_tag": "SLE-Module-Adv-Systems-Management", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Adv-Systems-Management/12/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Adv-Systems-Management12-Debuginfo-Updates for x86_64 SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-adv-systems-management12-pool-x86_64-sap", + "parent_channel_label": "sle12-sap-pool-x86_64", + "product_id": 1212, + "repository_id": 1706, + "parent_product_id": 1319, + "root_product_id": 1319, + "update_tag": "SLE-Module-Adv-Systems-Management", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Adv-Systems-Management/12/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Adv-Systems-Management12-Pool for x86_64 SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-adv-systems-management12-debuginfo-pool-x86_64-sap", + "parent_channel_label": "sle12-sap-pool-x86_64", + "product_id": 1212, + "repository_id": 1707, + "parent_product_id": 1319, + "root_product_id": 1319, + "update_tag": "SLE-Module-Adv-Systems-Management", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Adv-Systems-Management/12/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Adv-Systems-Management12-Debuginfo-Pool for x86_64 SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud12-updates-x86_64-sap", + "parent_channel_label": "sle12-sap-pool-x86_64", + "product_id": 1220, + "repository_id": 1700, + "parent_product_id": 1319, + "root_product_id": 1319, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/12/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud12-Updates for x86_64 SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud12-debuginfo-updates-x86_64-sap", + "parent_channel_label": "sle12-sap-pool-x86_64", + "product_id": 1220, + "repository_id": 1701, + "parent_product_id": 1319, + "root_product_id": 1319, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/12/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud12-Debuginfo-Updates for x86_64 SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud12-pool-x86_64-sap", + "parent_channel_label": "sle12-sap-pool-x86_64", + "product_id": 1220, + "repository_id": 1702, + "parent_product_id": 1319, + "root_product_id": 1319, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/12/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud12-Pool for x86_64 SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud12-debuginfo-pool-x86_64-sap", + "parent_channel_label": "sle12-sap-pool-x86_64", + "product_id": 1220, + "repository_id": 1703, + "parent_product_id": 1319, + "root_product_id": 1319, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/12/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud12-Debuginfo-Pool for x86_64 SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-12-ga-desktop-nvidia-driver-x86_64-we-sap", + "parent_channel_label": "sle12-sap-pool-x86_64", + "product_id": 1222, + "repository_id": 1503, + "parent_product_id": 1319, + "root_product_id": 1319, + "update_tag": null, + "url": "http://download.nvidia.com/novell/sle12/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-12-GA-Desktop-NVIDIA-Driver for x86_64 WE-SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-we12-updates-x86_64-sap", + "parent_channel_label": "sle12-sap-pool-x86_64", + "product_id": 1222, + "repository_id": 1652, + "parent_product_id": 1319, + "root_product_id": 1319, + "update_tag": "SLE-WE", + "url": "https://updates.suse.com/SUSE/Updates/SLE-WE/12/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-WE12-Updates for x86_64 SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-we12-debuginfo-updates-x86_64-sap", + "parent_channel_label": "sle12-sap-pool-x86_64", + "product_id": 1222, + "repository_id": 1653, + "parent_product_id": 1319, + "root_product_id": 1319, + "update_tag": "SLE-WE", + "url": "https://updates.suse.com/SUSE/Updates/SLE-WE/12/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-WE12-Debuginfo-Updates for x86_64 SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-we12-pool-x86_64-sap", + "parent_channel_label": "sle12-sap-pool-x86_64", + "product_id": 1222, + "repository_id": 1654, + "parent_product_id": 1319, + "root_product_id": 1319, + "update_tag": "SLE-WE", + "url": "https://updates.suse.com/SUSE/Products/SLE-WE/12/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-WE12-Pool for x86_64 SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-we12-debuginfo-pool-x86_64-sap", + "parent_channel_label": "sle12-sap-pool-x86_64", + "product_id": 1222, + "repository_id": 1655, + "parent_product_id": 1319, + "root_product_id": 1319, + "update_tag": "SLE-WE", + "url": "https://updates.suse.com/SUSE/Products/SLE-WE/12/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-WE12-Debuginfo-Pool for x86_64 SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-sdk12-updates-x86_64-sap", + "parent_channel_label": "sle12-sap-pool-x86_64", + "product_id": 1223, + "repository_id": 1664, + "parent_product_id": 1319, + "root_product_id": 1319, + "update_tag": "SLE-SDK", + "url": "https://updates.suse.com/SUSE/Updates/SLE-SDK/12/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-SDK12-Updates for x86_64 SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-sdk12-debuginfo-updates-x86_64-sap", + "parent_channel_label": "sle12-sap-pool-x86_64", + "product_id": 1223, + "repository_id": 1665, + "parent_product_id": 1319, + "root_product_id": 1319, + "update_tag": "SLE-SDK", + "url": "https://updates.suse.com/SUSE/Updates/SLE-SDK/12/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-SDK12-Debuginfo-Updates for x86_64 SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-sdk12-pool-x86_64-sap", + "parent_channel_label": "sle12-sap-pool-x86_64", + "product_id": 1223, + "repository_id": 1666, + "parent_product_id": 1319, + "root_product_id": 1319, + "update_tag": "SLE-SDK", + "url": "https://updates.suse.com/SUSE/Products/SLE-SDK/12/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-SDK12-Pool for x86_64 SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-sdk12-debuginfo-pool-x86_64-sap", + "parent_channel_label": "sle12-sap-pool-x86_64", + "product_id": 1223, + "repository_id": 1667, + "parent_product_id": 1319, + "root_product_id": 1319, + "update_tag": "SLE-SDK", + "url": "https://updates.suse.com/SUSE/Products/SLE-SDK/12/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-SDK12-Debuginfo-Pool for x86_64 SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-live-patching12-updates-x86_64-sap", + "parent_channel_label": "sle12-sap-pool-x86_64", + "product_id": 1253, + "repository_id": 1741, + "parent_product_id": 1319, + "root_product_id": 1319, + "update_tag": "SLE-Live-Patching", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Live-Patching/12/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Live-Patching12-Updates for x86_64 SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-live-patching12-debuginfo-updates-x86_64-sap", + "parent_channel_label": "sle12-sap-pool-x86_64", + "product_id": 1253, + "repository_id": 1742, + "parent_product_id": 1319, + "root_product_id": 1319, + "update_tag": "SLE-Live-Patching", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Live-Patching/12/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Live-Patching12-Debuginfo-Updates for x86_64 SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-live-patching12-pool-x86_64-sap", + "parent_channel_label": "sle12-sap-pool-x86_64", + "product_id": 1253, + "repository_id": 1743, + "parent_product_id": 1319, + "root_product_id": 1319, + "update_tag": "SLE-Live-Patching", + "url": "https://updates.suse.com/SUSE/Products/SLE-Live-Patching/12/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Live-Patching12-Pool for x86_64 SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-live-patching12-debuginfo-pool-x86_64-sap", + "parent_channel_label": "sle12-sap-pool-x86_64", + "product_id": 1253, + "repository_id": 1744, + "parent_product_id": 1319, + "root_product_id": 1319, + "update_tag": "SLE-Live-Patching", + "url": "https://updates.suse.com/SUSE/Products/SLE-Live-Patching/12/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Live-Patching12-Debuginfo-Pool for x86_64 SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-12-cloud-compute5-updates-x86_64-sap", + "parent_channel_label": "sle12-sap-pool-x86_64", + "product_id": 1317, + "repository_id": 1813, + "parent_product_id": 1319, + "root_product_id": 1319, + "update_tag": "SLE12-CLOUD-5", + "url": "https://updates.suse.com/SUSE/Updates/12-Cloud-Compute/5/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-12-Cloud-Compute5-Updates for x86_64 SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-12-cloud-compute5-debuginfo-updates-x86_64-sap", + "parent_channel_label": "sle12-sap-pool-x86_64", + "product_id": 1317, + "repository_id": 1814, + "parent_product_id": 1319, + "root_product_id": 1319, + "update_tag": "SLE12-CLOUD-5", + "url": "https://updates.suse.com/SUSE/Updates/12-Cloud-Compute/5/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-12-Cloud-Compute5-Debuginfo-Updates for x86_64 SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-12-cloud-compute5-pool-x86_64-sap", + "parent_channel_label": "sle12-sap-pool-x86_64", + "product_id": 1317, + "repository_id": 1815, + "parent_product_id": 1319, + "root_product_id": 1319, + "update_tag": "SLE12-CLOUD-5", + "url": "https://updates.suse.com/SUSE/Products/12-Cloud-Compute/5/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-12-Cloud-Compute5-Pool for x86_64 SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-12-cloud-compute5-debuginfo-pool-x86_64-sap", + "parent_channel_label": "sle12-sap-pool-x86_64", + "product_id": 1317, + "repository_id": 1816, + "parent_product_id": 1319, + "root_product_id": 1319, + "update_tag": "SLE12-CLOUD-5", + "url": "https://updates.suse.com/SUSE/Products/12-Cloud-Compute/5/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-12-Cloud-Compute5-Debuginfo-Pool for x86_64 SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-containers12-updates-x86_64-sap", + "parent_channel_label": "sle12-sap-pool-x86_64", + "product_id": 1332, + "repository_id": 1864, + "parent_product_id": 1319, + "root_product_id": 1319, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/12/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers12-Updates for x86_64 SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-containers12-debuginfo-updates-x86_64-sap", + "parent_channel_label": "sle12-sap-pool-x86_64", + "product_id": 1332, + "repository_id": 1865, + "parent_product_id": 1319, + "root_product_id": 1319, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/12/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers12-Debuginfo-Updates for x86_64 SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-containers12-pool-x86_64-sap", + "parent_channel_label": "sle12-sap-pool-x86_64", + "product_id": 1332, + "repository_id": 1866, + "parent_product_id": 1319, + "root_product_id": 1319, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Containers/12/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers12-Pool for x86_64 SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-containers12-debuginfo-pool-x86_64-sap", + "parent_channel_label": "sle12-sap-pool-x86_64", + "product_id": 1332, + "repository_id": 1867, + "parent_product_id": 1319, + "root_product_id": 1319, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Containers/12/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers12-Debuginfo-Pool for x86_64 SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-toolchain12-updates-x86_64-sap", + "parent_channel_label": "sle12-sap-pool-x86_64", + "product_id": 1341, + "repository_id": 1903, + "parent_product_id": 1319, + "root_product_id": 1319, + "update_tag": "SLE-Module-Toolchain", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Toolchain/12/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Toolchain12-Updates for x86_64 SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-toolchain12-debuginfo-updates-x86_64-sap", + "parent_channel_label": "sle12-sap-pool-x86_64", + "product_id": 1341, + "repository_id": 1904, + "parent_product_id": 1319, + "root_product_id": 1319, + "update_tag": "SLE-Module-Toolchain", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Toolchain/12/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Toolchain12-Debuginfo-Updates for x86_64 SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-toolchain12-pool-x86_64-sap", + "parent_channel_label": "sle12-sap-pool-x86_64", + "product_id": 1341, + "repository_id": 1905, + "parent_product_id": 1319, + "root_product_id": 1319, + "update_tag": "SLE-Module-Toolchain", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Toolchain/12/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Toolchain12-Pool for x86_64 SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-toolchain12-debuginfo-pool-x86_64-sap", + "parent_channel_label": "sle12-sap-pool-x86_64", + "product_id": 1341, + "repository_id": 1906, + "parent_product_id": 1319, + "root_product_id": 1319, + "update_tag": "SLE-Module-Toolchain", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Toolchain/12/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Toolchain12-Debuginfo-Pool for x86_64 SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-enterprise-storage-2-updates-x86_64-sap", + "parent_channel_label": "sle12-sap-pool-x86_64", + "product_id": 1342, + "repository_id": 1917, + "parent_product_id": 1319, + "root_product_id": 1319, + "update_tag": "Storage-2", + "url": "https://updates.suse.com/SUSE/Updates/Storage/2/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-Enterprise-Storage-2-Updates for x86_64 SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-enterprise-storage-2-debuginfo-updates-x86_64-sap", + "parent_channel_label": "sle12-sap-pool-x86_64", + "product_id": 1342, + "repository_id": 1918, + "parent_product_id": 1319, + "root_product_id": 1319, + "update_tag": "Storage-2", + "url": "https://updates.suse.com/SUSE/Updates/Storage/2/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SUSE-Enterprise-Storage-2-Debuginfo-Updates for x86_64 SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-enterprise-storage-2-pool-x86_64-sap", + "parent_channel_label": "sle12-sap-pool-x86_64", + "product_id": 1342, + "repository_id": 1919, + "parent_product_id": 1319, + "root_product_id": 1319, + "update_tag": "Storage-2", + "url": "https://updates.suse.com/SUSE/Products/Storage/2/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-Enterprise-Storage-2-Pool for x86_64 SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-enterprise-storage-2-debuginfo-pool-x86_64-sap", + "parent_channel_label": "sle12-sap-pool-x86_64", + "product_id": 1342, + "repository_id": 1920, + "parent_product_id": 1319, + "root_product_id": 1319, + "update_tag": "Storage-2", + "url": "https://updates.suse.com/SUSE/Products/Storage/2/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SUSE-Enterprise-Storage-2-Debuginfo-Pool for x86_64 SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-certifications12-updates-x86_64-sap", + "parent_channel_label": "sle12-sap-pool-x86_64", + "product_id": 1368, + "repository_id": 2068, + "parent_product_id": 1319, + "root_product_id": 1319, + "update_tag": "SLE-Module-Certifications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Certifications/12/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Certifications12-Updates for x86_64 SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-certifications12-debuginfo-updates-x86_64-sap", + "parent_channel_label": "sle12-sap-pool-x86_64", + "product_id": 1368, + "repository_id": 2069, + "parent_product_id": 1319, + "root_product_id": 1319, + "update_tag": "SLE-Module-Certifications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Certifications/12/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Certifications12-Debuginfo-Updates for x86_64 SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-certifications12-pool-x86_64-sap", + "parent_channel_label": "sle12-sap-pool-x86_64", + "product_id": 1368, + "repository_id": 2070, + "parent_product_id": 1319, + "root_product_id": 1319, + "update_tag": "SLE-Module-Certifications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Certifications/12/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Certifications12-Pool for x86_64 SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-certifications12-debuginfo-pool-x86_64-sap", + "parent_channel_label": "sle12-sap-pool-x86_64", + "product_id": 1368, + "repository_id": 2071, + "parent_product_id": 1319, + "root_product_id": 1319, + "update_tag": "SLE-Module-Certifications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Certifications/12/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Certifications12-Debuginfo-Pool for x86_64 SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles12-ltss-updates-x86_64-sap", + "parent_channel_label": "sle12-sap-pool-x86_64", + "product_id": 1379, + "repository_id": 2105, + "parent_product_id": 1319, + "root_product_id": 1319, + "update_tag": "SLE-SERVER", + "url": "https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-LTSS/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLES12-LTSS-Updates for x86_64 SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles12-ltss-debuginfo-updates-x86_64-sap", + "parent_channel_label": "sle12-sap-pool-x86_64", + "product_id": 1379, + "repository_id": 2106, + "parent_product_id": 1319, + "root_product_id": 1319, + "update_tag": "SLE-SERVER", + "url": "https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-LTSS/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLES12-LTSS-Debuginfo-Updates for x86_64 SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-packagehub-12-x86_64-sap", + "parent_channel_label": "sle12-sap-pool-x86_64", + "product_id": 1473, + "repository_id": 2327, + "parent_product_id": 1319, + "root_product_id": 1319, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-12_x86_64/standard/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-12-Standard-Pool for x86_64 SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-packagehub-12-debuginfo-x86_64-sap", + "parent_channel_label": "sle12-sap-pool-x86_64", + "product_id": 1473, + "repository_id": 2328, + "parent_product_id": 1319, + "root_product_id": 1319, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-12_x86_64/standard_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-12-Debuginfo for x86_64 SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-packagehub-12-pool-x86_64-sap", + "parent_channel_label": "sle12-sap-pool-x86_64", + "product_id": 1473, + "repository_id": 2329, + "parent_product_id": 1319, + "root_product_id": 1319, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-12_x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-12-Pool for x86_64 SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-manager-tools12-beta-updates-x86_64-sap", + "parent_channel_label": "sle12-sap-pool-x86_64", + "product_id": 1747, + "repository_id": 3077, + "parent_product_id": 1319, + "root_product_id": 1319, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/12-BETA/x86_64/update/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools12-BETA-Updates for x86_64 SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools12-beta-debuginfo-updates-x86_64-sap", + "parent_channel_label": "sle12-sap-pool-x86_64", + "product_id": 1747, + "repository_id": 3078, + "parent_product_id": 1319, + "root_product_id": 1319, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/12-BETA/x86_64/update_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools12-BETA-Debuginfo-Updates for x86_64 SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools12-beta-pool-x86_64-sap", + "parent_channel_label": "sle12-sap-pool-x86_64", + "product_id": 1747, + "repository_id": 3079, + "parent_product_id": 1319, + "root_product_id": 1319, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/12-BETA/x86_64/product/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools12-BETA-Pool for x86_64 SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools12-beta-debuginfo-pool-x86_64-sap", + "parent_channel_label": "sle12-sap-pool-x86_64", + "product_id": 1747, + "repository_id": 3080, + "parent_product_id": 1319, + "root_product_id": 1319, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/12-BETA/x86_64/product_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools12-BETA-Debuginfo-Pool for x86_64 SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools12-updates-x86_64-sp1", + "parent_channel_label": "sles12-sp1-pool-x86_64", + "product_id": 1322, + "repository_id": 1732, + "parent_product_id": null, + "root_product_id": 1322, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/12/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Manager-Tools12-Updates for x86_64 SP1", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools12-debuginfo-updates-x86_64-sp1", + "parent_channel_label": "sles12-sp1-pool-x86_64", + "product_id": 1322, + "repository_id": 1733, + "parent_product_id": null, + "root_product_id": 1322, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/12/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Manager-Tools12-Debuginfo-Updates for x86_64 SP1", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools12-pool-x86_64-sp1", + "parent_channel_label": "sles12-sp1-pool-x86_64", + "product_id": 1322, + "repository_id": 1734, + "parent_product_id": null, + "root_product_id": 1322, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/12/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Manager-Tools12-Pool for x86_64 SP1", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools12-debuginfo-pool-x86_64-sp1", + "parent_channel_label": "sles12-sp1-pool-x86_64", + "product_id": 1322, + "repository_id": 1735, + "parent_product_id": null, + "root_product_id": 1322, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/12/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Manager-Tools12-Debuginfo-Pool for x86_64 SP1", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sles12-sp1-updates-x86_64", + "parent_channel_label": "sles12-sp1-pool-x86_64", + "product_id": 1322, + "repository_id": 1846, + "parent_product_id": null, + "root_product_id": 1322, + "update_tag": "SLE-SERVER", + "url": "https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-SP1/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLES12-SP1-Updates for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles12-sp1-debuginfo-updates-x86_64", + "parent_channel_label": "sles12-sp1-pool-x86_64", + "product_id": 1322, + "repository_id": 1847, + "parent_product_id": null, + "root_product_id": 1322, + "update_tag": "SLE-SERVER", + "url": "https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-SP1/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLES12-SP1-Debuginfo-Updates for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles12-sp1-pool-x86_64", + "parent_channel_label": null, + "product_id": 1322, + "repository_id": 1848, + "parent_product_id": null, + "root_product_id": 1322, + "update_tag": "SLE-SERVER", + "url": "https://updates.suse.com/SUSE/Products/SLE-SERVER/12-SP1/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLES12-SP1-Pool for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles12-sp1-debuginfo-pool-x86_64", + "parent_channel_label": "sles12-sp1-pool-x86_64", + "product_id": 1322, + "repository_id": 1849, + "parent_product_id": null, + "root_product_id": 1322, + "update_tag": "SLE-SERVER", + "url": "https://updates.suse.com/SUSE/Products/SLE-SERVER/12-SP1/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLES12-SP1-Debuginfo-Pool for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-legacy12-updates-x86_64-sp1", + "parent_channel_label": "sles12-sp1-pool-x86_64", + "product_id": 1150, + "repository_id": 1676, + "parent_product_id": 1322, + "root_product_id": 1322, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/12/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy12-Updates for x86_64 SP1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-legacy12-debuginfo-updates-x86_64-sp1", + "parent_channel_label": "sles12-sp1-pool-x86_64", + "product_id": 1150, + "repository_id": 1677, + "parent_product_id": 1322, + "root_product_id": 1322, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/12/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy12-Debuginfo-Updates for x86_64 SP1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-legacy12-pool-x86_64-sp1", + "parent_channel_label": "sles12-sp1-pool-x86_64", + "product_id": 1150, + "repository_id": 1678, + "parent_product_id": 1322, + "root_product_id": 1322, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/12/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy12-Pool for x86_64 SP1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-legacy12-debuginfo-pool-x86_64-sp1", + "parent_channel_label": "sles12-sp1-pool-x86_64", + "product_id": 1150, + "repository_id": 1679, + "parent_product_id": 1322, + "root_product_id": 1322, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/12/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy12-Debuginfo-Pool for x86_64 SP1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting12-updates-x86_64-sp1", + "parent_channel_label": "sles12-sp1-pool-x86_64", + "product_id": 1153, + "repository_id": 1688, + "parent_product_id": 1322, + "root_product_id": 1322, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/12/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Web-Scripting12-Updates for x86_64 SP1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting12-debuginfo-updates-x86_64-sp1", + "parent_channel_label": "sles12-sp1-pool-x86_64", + "product_id": 1153, + "repository_id": 1689, + "parent_product_id": 1322, + "root_product_id": 1322, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/12/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Web-Scripting12-Debuginfo-Updates for x86_64 SP1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting12-pool-x86_64-sp1", + "parent_channel_label": "sles12-sp1-pool-x86_64", + "product_id": 1153, + "repository_id": 1690, + "parent_product_id": 1322, + "root_product_id": 1322, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/12/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Web-Scripting12-Pool for x86_64 SP1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting12-debuginfo-pool-x86_64-sp1", + "parent_channel_label": "sles12-sp1-pool-x86_64", + "product_id": 1153, + "repository_id": 1691, + "parent_product_id": 1322, + "root_product_id": 1322, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/12/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Web-Scripting12-Debuginfo-Pool for x86_64 SP1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-adv-systems-management12-updates-x86_64-sp1", + "parent_channel_label": "sles12-sp1-pool-x86_64", + "product_id": 1212, + "repository_id": 1704, + "parent_product_id": 1322, + "root_product_id": 1322, + "update_tag": "SLE-Module-Adv-Systems-Management", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Adv-Systems-Management/12/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Adv-Systems-Management12-Updates for x86_64 SP1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-adv-systems-management12-debuginfo-updates-x86_64-sp1", + "parent_channel_label": "sles12-sp1-pool-x86_64", + "product_id": 1212, + "repository_id": 1705, + "parent_product_id": 1322, + "root_product_id": 1322, + "update_tag": "SLE-Module-Adv-Systems-Management", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Adv-Systems-Management/12/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Adv-Systems-Management12-Debuginfo-Updates for x86_64 SP1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-adv-systems-management12-pool-x86_64-sp1", + "parent_channel_label": "sles12-sp1-pool-x86_64", + "product_id": 1212, + "repository_id": 1706, + "parent_product_id": 1322, + "root_product_id": 1322, + "update_tag": "SLE-Module-Adv-Systems-Management", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Adv-Systems-Management/12/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Adv-Systems-Management12-Pool for x86_64 SP1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-adv-systems-management12-debuginfo-pool-x86_64-sp1", + "parent_channel_label": "sles12-sp1-pool-x86_64", + "product_id": 1212, + "repository_id": 1707, + "parent_product_id": 1322, + "root_product_id": 1322, + "update_tag": "SLE-Module-Adv-Systems-Management", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Adv-Systems-Management/12/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Adv-Systems-Management12-Debuginfo-Pool for x86_64 SP1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud12-updates-x86_64-sp1", + "parent_channel_label": "sles12-sp1-pool-x86_64", + "product_id": 1220, + "repository_id": 1700, + "parent_product_id": 1322, + "root_product_id": 1322, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/12/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud12-Updates for x86_64 SP1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud12-debuginfo-updates-x86_64-sp1", + "parent_channel_label": "sles12-sp1-pool-x86_64", + "product_id": 1220, + "repository_id": 1701, + "parent_product_id": 1322, + "root_product_id": 1322, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/12/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud12-Debuginfo-Updates for x86_64 SP1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud12-pool-x86_64-sp1", + "parent_channel_label": "sles12-sp1-pool-x86_64", + "product_id": 1220, + "repository_id": 1702, + "parent_product_id": 1322, + "root_product_id": 1322, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/12/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud12-Pool for x86_64 SP1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud12-debuginfo-pool-x86_64-sp1", + "parent_channel_label": "sles12-sp1-pool-x86_64", + "product_id": 1220, + "repository_id": 1703, + "parent_product_id": 1322, + "root_product_id": 1322, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/12/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud12-Debuginfo-Pool for x86_64 SP1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-live-patching12-updates-x86_64-sp1", + "parent_channel_label": "sles12-sp1-pool-x86_64", + "product_id": 1253, + "repository_id": 1741, + "parent_product_id": 1322, + "root_product_id": 1322, + "update_tag": "SLE-Live-Patching", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Live-Patching/12/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Live-Patching12-Updates for x86_64 SP1", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-live-patching12-debuginfo-updates-x86_64-sp1", + "parent_channel_label": "sles12-sp1-pool-x86_64", + "product_id": 1253, + "repository_id": 1742, + "parent_product_id": 1322, + "root_product_id": 1322, + "update_tag": "SLE-Live-Patching", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Live-Patching/12/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Live-Patching12-Debuginfo-Updates for x86_64 SP1", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-live-patching12-pool-x86_64-sp1", + "parent_channel_label": "sles12-sp1-pool-x86_64", + "product_id": 1253, + "repository_id": 1743, + "parent_product_id": 1322, + "root_product_id": 1322, + "update_tag": "SLE-Live-Patching", + "url": "https://updates.suse.com/SUSE/Products/SLE-Live-Patching/12/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Live-Patching12-Pool for x86_64 SP1", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-live-patching12-debuginfo-pool-x86_64-sp1", + "parent_channel_label": "sles12-sp1-pool-x86_64", + "product_id": 1253, + "repository_id": 1744, + "parent_product_id": 1322, + "root_product_id": 1322, + "update_tag": "SLE-Live-Patching", + "url": "https://updates.suse.com/SUSE/Products/SLE-Live-Patching/12/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Live-Patching12-Debuginfo-Pool for x86_64 SP1", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-sdk12-sp1-updates-x86_64", + "parent_channel_label": "sles12-sp1-pool-x86_64", + "product_id": 1323, + "repository_id": 1850, + "parent_product_id": 1322, + "root_product_id": 1322, + "update_tag": "SLE-SDK", + "url": "https://updates.suse.com/SUSE/Updates/SLE-SDK/12-SP1/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-SDK12-SP1-Updates for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-sdk12-sp1-debuginfo-updates-x86_64", + "parent_channel_label": "sles12-sp1-pool-x86_64", + "product_id": 1323, + "repository_id": 1851, + "parent_product_id": 1322, + "root_product_id": 1322, + "update_tag": "SLE-SDK", + "url": "https://updates.suse.com/SUSE/Updates/SLE-SDK/12-SP1/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-SDK12-SP1-Debuginfo-Updates for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-sdk12-sp1-pool-x86_64", + "parent_channel_label": "sles12-sp1-pool-x86_64", + "product_id": 1323, + "repository_id": 1852, + "parent_product_id": 1322, + "root_product_id": 1322, + "update_tag": "SLE-SDK", + "url": "https://updates.suse.com/SUSE/Products/SLE-SDK/12-SP1/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-SDK12-SP1-Pool for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-sdk12-sp1-debuginfo-pool-x86_64", + "parent_channel_label": "sles12-sp1-pool-x86_64", + "product_id": 1323, + "repository_id": 1853, + "parent_product_id": 1322, + "root_product_id": 1322, + "update_tag": "SLE-SDK", + "url": "https://updates.suse.com/SUSE/Products/SLE-SDK/12-SP1/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-SDK12-SP1-Debuginfo-Pool for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-ha12-sp1-updates-x86_64", + "parent_channel_label": "sles12-sp1-pool-x86_64", + "product_id": 1324, + "repository_id": 1854, + "parent_product_id": 1322, + "root_product_id": 1322, + "update_tag": "SLE-HA", + "url": "https://updates.suse.com/SUSE/Updates/SLE-HA/12-SP1/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-HA12-SP1-Updates for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-ha12-sp1-debuginfo-updates-x86_64", + "parent_channel_label": "sles12-sp1-pool-x86_64", + "product_id": 1324, + "repository_id": 1855, + "parent_product_id": 1322, + "root_product_id": 1322, + "update_tag": "SLE-HA", + "url": "https://updates.suse.com/SUSE/Updates/SLE-HA/12-SP1/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-HA12-SP1-Debuginfo-Updates for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-ha12-sp1-pool-x86_64", + "parent_channel_label": "sles12-sp1-pool-x86_64", + "product_id": 1324, + "repository_id": 1856, + "parent_product_id": 1322, + "root_product_id": 1322, + "update_tag": "SLE-HA", + "url": "https://updates.suse.com/SUSE/Products/SLE-HA/12-SP1/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-HA12-SP1-Pool for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-ha12-sp1-debuginfo-pool-x86_64", + "parent_channel_label": "sles12-sp1-pool-x86_64", + "product_id": 1324, + "repository_id": 1857, + "parent_product_id": 1322, + "root_product_id": 1322, + "update_tag": "SLE-HA", + "url": "https://updates.suse.com/SUSE/Products/SLE-HA/12-SP1/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-HA12-SP1-Debuginfo-Pool for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-ha-geo12-sp1-updates-x86_64", + "parent_channel_label": "sles12-sp1-pool-x86_64", + "product_id": 1337, + "repository_id": 1887, + "parent_product_id": 1324, + "root_product_id": 1322, + "update_tag": "SLE-HA-GEO", + "url": "https://updates.suse.com/SUSE/Updates/SLE-HA-GEO/12-SP1/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-HA-GEO12-SP1-Updates for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-ha-geo12-sp1-debuginfo-updates-x86_64", + "parent_channel_label": "sles12-sp1-pool-x86_64", + "product_id": 1337, + "repository_id": 1888, + "parent_product_id": 1324, + "root_product_id": 1322, + "update_tag": "SLE-HA-GEO", + "url": "https://updates.suse.com/SUSE/Updates/SLE-HA-GEO/12-SP1/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-HA-GEO12-SP1-Debuginfo-Updates for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-ha-geo12-sp1-pool-x86_64", + "parent_channel_label": "sles12-sp1-pool-x86_64", + "product_id": 1337, + "repository_id": 1889, + "parent_product_id": 1324, + "root_product_id": 1322, + "update_tag": "SLE-HA-GEO", + "url": "https://updates.suse.com/SUSE/Products/SLE-HA-GEO/12-SP1/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-HA-GEO12-SP1-Pool for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-ha-geo12-sp1-debuginfo-pool-x86_64", + "parent_channel_label": "sles12-sp1-pool-x86_64", + "product_id": 1337, + "repository_id": 1890, + "parent_product_id": 1324, + "root_product_id": 1322, + "update_tag": "SLE-HA-GEO", + "url": "https://updates.suse.com/SUSE/Products/SLE-HA-GEO/12-SP1/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-HA-GEO12-SP1-Debuginfo-Pool for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-containers12-updates-x86_64-sp1", + "parent_channel_label": "sles12-sp1-pool-x86_64", + "product_id": 1332, + "repository_id": 1864, + "parent_product_id": 1322, + "root_product_id": 1322, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/12/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers12-Updates for x86_64 SP1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-containers12-debuginfo-updates-x86_64-sp1", + "parent_channel_label": "sles12-sp1-pool-x86_64", + "product_id": 1332, + "repository_id": 1865, + "parent_product_id": 1322, + "root_product_id": 1322, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/12/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers12-Debuginfo-Updates for x86_64 SP1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-containers12-pool-x86_64-sp1", + "parent_channel_label": "sles12-sp1-pool-x86_64", + "product_id": 1332, + "repository_id": 1866, + "parent_product_id": 1322, + "root_product_id": 1322, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Containers/12/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers12-Pool for x86_64 SP1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-containers12-debuginfo-pool-x86_64-sp1", + "parent_channel_label": "sles12-sp1-pool-x86_64", + "product_id": 1332, + "repository_id": 1867, + "parent_product_id": 1322, + "root_product_id": 1322, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Containers/12/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers12-Debuginfo-Pool for x86_64 SP1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-we12-sp1-updates-x86_64", + "parent_channel_label": "sles12-sp1-pool-x86_64", + "product_id": 1338, + "repository_id": 1891, + "parent_product_id": 1322, + "root_product_id": 1322, + "update_tag": "SLE-WE", + "url": "https://updates.suse.com/SUSE/Updates/SLE-WE/12-SP1/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-WE12-SP1-Updates for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-we12-sp1-debuginfo-updates-x86_64", + "parent_channel_label": "sles12-sp1-pool-x86_64", + "product_id": 1338, + "repository_id": 1892, + "parent_product_id": 1322, + "root_product_id": 1322, + "update_tag": "SLE-WE", + "url": "https://updates.suse.com/SUSE/Updates/SLE-WE/12-SP1/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-WE12-SP1-Debuginfo-Updates for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-we12-sp1-pool-x86_64", + "parent_channel_label": "sles12-sp1-pool-x86_64", + "product_id": 1338, + "repository_id": 1893, + "parent_product_id": 1322, + "root_product_id": 1322, + "update_tag": "SLE-WE", + "url": "https://updates.suse.com/SUSE/Products/SLE-WE/12-SP1/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-WE12-SP1-Pool for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-we12-sp1-debuginfo-pool-x86_64", + "parent_channel_label": "sles12-sp1-pool-x86_64", + "product_id": 1338, + "repository_id": 1894, + "parent_product_id": 1322, + "root_product_id": 1322, + "update_tag": "SLE-WE", + "url": "https://updates.suse.com/SUSE/Products/SLE-WE/12-SP1/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-WE12-SP1-Debuginfo-Pool for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-12-sp1-ga-desktop-nvidia-driver-x86_64-we-sp1", + "parent_channel_label": "sles12-sp1-pool-x86_64", + "product_id": 1338, + "repository_id": 1911, + "parent_product_id": 1322, + "root_product_id": 1322, + "update_tag": null, + "url": "http://download.nvidia.com/novell/sle12sp1/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-12-SP1-GA-Desktop-nVidia-Driver for x86_64 WE", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-toolchain12-updates-x86_64-sp1", + "parent_channel_label": "sles12-sp1-pool-x86_64", + "product_id": 1341, + "repository_id": 1903, + "parent_product_id": 1322, + "root_product_id": 1322, + "update_tag": "SLE-Module-Toolchain", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Toolchain/12/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Toolchain12-Updates for x86_64 SP1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-toolchain12-debuginfo-updates-x86_64-sp1", + "parent_channel_label": "sles12-sp1-pool-x86_64", + "product_id": 1341, + "repository_id": 1904, + "parent_product_id": 1322, + "root_product_id": 1322, + "update_tag": "SLE-Module-Toolchain", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Toolchain/12/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Toolchain12-Debuginfo-Updates for x86_64 SP1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-toolchain12-pool-x86_64-sp1", + "parent_channel_label": "sles12-sp1-pool-x86_64", + "product_id": 1341, + "repository_id": 1905, + "parent_product_id": 1322, + "root_product_id": 1322, + "update_tag": "SLE-Module-Toolchain", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Toolchain/12/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Toolchain12-Pool for x86_64 SP1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-toolchain12-debuginfo-pool-x86_64-sp1", + "parent_channel_label": "sles12-sp1-pool-x86_64", + "product_id": 1341, + "repository_id": 1906, + "parent_product_id": 1322, + "root_product_id": 1322, + "update_tag": "SLE-Module-Toolchain", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Toolchain/12/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Toolchain12-Debuginfo-Pool for x86_64 SP1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-openstack-cloud-6-updates-x86_64", + "parent_channel_label": "sles12-sp1-pool-x86_64", + "product_id": 1347, + "repository_id": 1941, + "parent_product_id": 1322, + "root_product_id": 1322, + "update_tag": "OpenStack-Cloud-6", + "url": "https://updates.suse.com/SUSE/Updates/OpenStack-Cloud/6/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-OpenStack-Cloud-6-Updates for x86_64 SP1", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-openstack-cloud-6-debuginfo-updates-x86_64", + "parent_channel_label": "sles12-sp1-pool-x86_64", + "product_id": 1347, + "repository_id": 1942, + "parent_product_id": 1322, + "root_product_id": 1322, + "update_tag": "OpenStack-Cloud-6", + "url": "https://updates.suse.com/SUSE/Updates/OpenStack-Cloud/6/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SUSE-OpenStack-Cloud-6-Debuginfo-Updates for x86_64 SP1", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-openstack-cloud-6-pool-x86_64", + "parent_channel_label": "sles12-sp1-pool-x86_64", + "product_id": 1347, + "repository_id": 1943, + "parent_product_id": 1322, + "root_product_id": 1322, + "update_tag": "OpenStack-Cloud-6", + "url": "https://updates.suse.com/SUSE/Products/OpenStack-Cloud/6/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-OpenStack-Cloud-6-Pool for x86_64 SP1", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-openstack-cloud-6-debuginfo-pool-x86_64", + "parent_channel_label": "sles12-sp1-pool-x86_64", + "product_id": 1347, + "repository_id": 1944, + "parent_product_id": 1322, + "root_product_id": 1322, + "update_tag": "OpenStack-Cloud-6", + "url": "https://updates.suse.com/SUSE/Products/OpenStack-Cloud/6/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SUSE-OpenStack-Cloud-6-Debuginfo-Pool for x86_64 SP1", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-openstack-cloud-continuous-delivery-6-updates-x86_64", + "parent_channel_label": "sles12-sp1-pool-x86_64", + "product_id": 1538, + "repository_id": 2471, + "parent_product_id": 1347, + "root_product_id": 1322, + "update_tag": "OpenStack-Cloud-6-Continuous", + "url": "https://updates.suse.com/SUSE/Updates/OpenStack-Cloud/6-Continuous/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-OpenStack-Cloud-Continuous-Delivery-6-Updates for x86_64 SP1", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-openstack-cloud-continuous-delivery-6-debuginfo-updates-x86_64", + "parent_channel_label": "sles12-sp1-pool-x86_64", + "product_id": 1538, + "repository_id": 2472, + "parent_product_id": 1347, + "root_product_id": 1322, + "update_tag": "OpenStack-Cloud-6-Continuous", + "url": "https://updates.suse.com/SUSE/Updates/OpenStack-Cloud/6-Continuous/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SUSE-OpenStack-Cloud-Continuous-Delivery-6-Debuginfo-Updates for x86_64 SP1", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-openstack-cloud-continuous-delivery-6-pool-x86_64", + "parent_channel_label": "sles12-sp1-pool-x86_64", + "product_id": 1538, + "repository_id": 2473, + "parent_product_id": 1347, + "root_product_id": 1322, + "update_tag": "OpenStack-Cloud-6-Continuous", + "url": "https://updates.suse.com/SUSE/Products/OpenStack-Cloud/6-Continuous/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-OpenStack-Cloud-Continuous-Delivery-6-Pool for x86_64 SP1", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-openstack-cloud-continuous-delivery-6-debuginfo-pool-x86_64", + "parent_channel_label": "sles12-sp1-pool-x86_64", + "product_id": 1538, + "repository_id": 2474, + "parent_product_id": 1347, + "root_product_id": 1322, + "update_tag": "OpenStack-Cloud-6-Continuous", + "url": "https://updates.suse.com/SUSE/Products/OpenStack-Cloud/6-Continuous/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SUSE-OpenStack-Cloud-Continuous-Delivery-6-Debuginfo-Pool for x86_64 SP1", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-manager-server-3.0-updates-x86_64", + "parent_channel_label": "sles12-sp1-pool-x86_64", + "product_id": 1349, + "repository_id": 1949, + "parent_product_id": 1322, + "root_product_id": 1322, + "update_tag": "SUSE-Manager-Server-3.0", + "url": "https://updates.suse.com/SUSE/Updates/SUSE-Manager-Server/3.0/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-Manager-Server-3.0-Updates for x86_64 SP1", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-manager-server-3.0-debuginfo-updates-x86_64", + "parent_channel_label": "sles12-sp1-pool-x86_64", + "product_id": 1349, + "repository_id": 1950, + "parent_product_id": 1322, + "root_product_id": 1322, + "update_tag": "SUSE-Manager-Server-3.0", + "url": "https://updates.suse.com/SUSE/Updates/SUSE-Manager-Server/3.0/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SUSE-Manager-Server-3.0-Debuginfo-Updates for x86_64 SP1", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-manager-server-3.0-pool-x86_64", + "parent_channel_label": "sles12-sp1-pool-x86_64", + "product_id": 1349, + "repository_id": 1951, + "parent_product_id": 1322, + "root_product_id": 1322, + "update_tag": "SUSE-Manager-Server-3.0", + "url": "https://updates.suse.com/SUSE/Products/SUSE-Manager-Server/3.0/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-Manager-Server-3.0-Pool for x86_64 SP1", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-manager-server-3.0-debuginfo-pool-x86_64", + "parent_channel_label": "sles12-sp1-pool-x86_64", + "product_id": 1349, + "repository_id": 1952, + "parent_product_id": 1322, + "root_product_id": 1322, + "update_tag": "SUSE-Manager-Server-3.0", + "url": "https://updates.suse.com/SUSE/Products/SUSE-Manager-Server/3.0/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SUSE-Manager-Server-3.0-Debuginfo-Pool for x86_64 SP1", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-rt12-sp1-updates-x86_64", + "parent_channel_label": "sles12-sp1-pool-x86_64", + "product_id": 1350, + "repository_id": 1953, + "parent_product_id": 1322, + "root_product_id": 1322, + "update_tag": "SLE-RT", + "url": "https://updates.suse.com/SUSE/Updates/SLE-RT/12-SP1/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-RT12-SP1-Updates for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-rt12-sp1-debuginfo-updates-x86_64", + "parent_channel_label": "sles12-sp1-pool-x86_64", + "product_id": 1350, + "repository_id": 1954, + "parent_product_id": 1322, + "root_product_id": 1322, + "update_tag": "SLE-RT", + "url": "https://updates.suse.com/SUSE/Updates/SLE-RT/12-SP1/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-RT12-SP1-Debuginfo-Updates for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-rt12-sp1-pool-x86_64", + "parent_channel_label": "sles12-sp1-pool-x86_64", + "product_id": 1350, + "repository_id": 1955, + "parent_product_id": 1322, + "root_product_id": 1322, + "update_tag": "SLE-RT", + "url": "https://updates.suse.com/SUSE/Products/SLE-RT/12-SP1/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-RT12-SP1-Pool for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-rt12-sp1-debuginfo-pool-x86_64", + "parent_channel_label": "sles12-sp1-pool-x86_64", + "product_id": 1350, + "repository_id": 1956, + "parent_product_id": 1322, + "root_product_id": 1322, + "update_tag": "SLE-RT", + "url": "https://updates.suse.com/SUSE/Products/SLE-RT/12-SP1/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-RT12-SP1-Debuginfo-Pool for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-enterprise-storage-2.1-updates-x86_64", + "parent_channel_label": "sles12-sp1-pool-x86_64", + "product_id": 1351, + "repository_id": 1958, + "parent_product_id": 1322, + "root_product_id": 1322, + "update_tag": "Storage-2.1", + "url": "https://updates.suse.com/SUSE/Updates/Storage/2.1/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-Enterprise-Storage-2.1-Updates for x86_64 SP1", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-enterprise-storage-2.1-debuginfo-updates-x86_64", + "parent_channel_label": "sles12-sp1-pool-x86_64", + "product_id": 1351, + "repository_id": 1959, + "parent_product_id": 1322, + "root_product_id": 1322, + "update_tag": "Storage-2.1", + "url": "https://updates.suse.com/SUSE/Updates/Storage/2.1/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SUSE-Enterprise-Storage-2.1-Debuginfo-Updates for x86_64 SP1", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-enterprise-storage-2.1-pool-x86_64", + "parent_channel_label": "sles12-sp1-pool-x86_64", + "product_id": 1351, + "repository_id": 1960, + "parent_product_id": 1322, + "root_product_id": 1322, + "update_tag": "Storage-2.1", + "url": "https://updates.suse.com/SUSE/Products/Storage/2.1/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-Enterprise-Storage-2.1-Pool for x86_64 SP1", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-enterprise-storage-2.1-debuginfo-pool-x86_64", + "parent_channel_label": "sles12-sp1-pool-x86_64", + "product_id": 1351, + "repository_id": 1961, + "parent_product_id": 1322, + "root_product_id": 1322, + "update_tag": "Storage-2.1", + "url": "https://updates.suse.com/SUSE/Products/Storage/2.1/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SUSE-Enterprise-Storage-2.1-Debuginfo-Pool for x86_64 SP1", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-manager-proxy-3.0-updates-x86_64", + "parent_channel_label": "sles12-sp1-pool-x86_64", + "product_id": 1352, + "repository_id": 1968, + "parent_product_id": 1322, + "root_product_id": 1322, + "update_tag": "SUSE-Manager-Proxy-3.0", + "url": "https://updates.suse.com/SUSE/Updates/SUSE-Manager-Proxy/3.0/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-Manager-Proxy-3.0-Updates for x86_64 SP1", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-manager-proxy-3.0-debuginfo-updates-x86_64", + "parent_channel_label": "sles12-sp1-pool-x86_64", + "product_id": 1352, + "repository_id": 1969, + "parent_product_id": 1322, + "root_product_id": 1322, + "update_tag": "SUSE-Manager-Proxy-3.0", + "url": "https://updates.suse.com/SUSE/Updates/SUSE-Manager-Proxy/3.0/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SUSE-Manager-Proxy-3.0-Debuginfo-Updates for x86_64 SP1", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-manager-proxy-3.0-pool-x86_64", + "parent_channel_label": "sles12-sp1-pool-x86_64", + "product_id": 1352, + "repository_id": 1970, + "parent_product_id": 1322, + "root_product_id": 1322, + "update_tag": "SUSE-Manager-Proxy-3.0", + "url": "https://updates.suse.com/SUSE/Products/SUSE-Manager-Proxy/3.0/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-Manager-Proxy-3.0-Pool for x86_64 SP1", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-manager-proxy-3.0-debuginfo-pool-x86_64", + "parent_channel_label": "sles12-sp1-pool-x86_64", + "product_id": 1352, + "repository_id": 1971, + "parent_product_id": 1322, + "root_product_id": 1322, + "update_tag": "SUSE-Manager-Proxy-3.0", + "url": "https://updates.suse.com/SUSE/Products/SUSE-Manager-Proxy/3.0/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SUSE-Manager-Proxy-3.0-Debuginfo-Pool for x86_64 SP1", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-certifications12-updates-x86_64-sp1", + "parent_channel_label": "sles12-sp1-pool-x86_64", + "product_id": 1368, + "repository_id": 2068, + "parent_product_id": 1322, + "root_product_id": 1322, + "update_tag": "SLE-Module-Certifications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Certifications/12/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Certifications12-Updates for x86_64 SP1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-certifications12-debuginfo-updates-x86_64-sp1", + "parent_channel_label": "sles12-sp1-pool-x86_64", + "product_id": 1368, + "repository_id": 2069, + "parent_product_id": 1322, + "root_product_id": 1322, + "update_tag": "SLE-Module-Certifications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Certifications/12/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Certifications12-Debuginfo-Updates for x86_64 SP1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-certifications12-pool-x86_64-sp1", + "parent_channel_label": "sles12-sp1-pool-x86_64", + "product_id": 1368, + "repository_id": 2070, + "parent_product_id": 1322, + "root_product_id": 1322, + "update_tag": "SLE-Module-Certifications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Certifications/12/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Certifications12-Pool for x86_64 SP1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-certifications12-debuginfo-pool-x86_64-sp1", + "parent_channel_label": "sles12-sp1-pool-x86_64", + "product_id": 1368, + "repository_id": 2071, + "parent_product_id": 1322, + "root_product_id": 1322, + "update_tag": "SLE-Module-Certifications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Certifications/12/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Certifications12-Debuginfo-Pool for x86_64 SP1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-enterprise-storage-3-updates-x86_64", + "parent_channel_label": "sles12-sp1-pool-x86_64", + "product_id": 1369, + "repository_id": 2072, + "parent_product_id": 1322, + "root_product_id": 1322, + "update_tag": "Storage-3", + "url": "https://updates.suse.com/SUSE/Updates/Storage/3/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-Enterprise-Storage-3-Updates for x86_64 SP1", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-enterprise-storage-3-debuginfo-updates-x86_64", + "parent_channel_label": "sles12-sp1-pool-x86_64", + "product_id": 1369, + "repository_id": 2073, + "parent_product_id": 1322, + "root_product_id": 1322, + "update_tag": "Storage-3", + "url": "https://updates.suse.com/SUSE/Updates/Storage/3/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SUSE-Enterprise-Storage-3-Debuginfo-Updates for x86_64 SP1", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-enterprise-storage-3-pool-x86_64", + "parent_channel_label": "sles12-sp1-pool-x86_64", + "product_id": 1369, + "repository_id": 2074, + "parent_product_id": 1322, + "root_product_id": 1322, + "update_tag": "Storage-3", + "url": "https://updates.suse.com/SUSE/Products/Storage/3/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-Enterprise-Storage-3-Pool for x86_64 SP1", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-enterprise-storage-3-debuginfo-pool-x86_64", + "parent_channel_label": "sles12-sp1-pool-x86_64", + "product_id": 1369, + "repository_id": 2075, + "parent_product_id": 1322, + "root_product_id": 1322, + "update_tag": "Storage-3", + "url": "https://updates.suse.com/SUSE/Products/Storage/3/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SUSE-Enterprise-Storage-3-Debuginfo-Pool for x86_64 SP1", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-packagehub-12-sp1-x86_64", + "parent_channel_label": "sles12-sp1-pool-x86_64", + "product_id": 1476, + "repository_id": 2336, + "parent_product_id": 1322, + "root_product_id": 1322, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-12-SP1_x86_64/standard/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-12-SP1-Standard-Pool for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-packagehub-12-sp1-debuginfo-x86_64", + "parent_channel_label": "sles12-sp1-pool-x86_64", + "product_id": 1476, + "repository_id": 2337, + "parent_product_id": 1322, + "root_product_id": 1322, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-12-SP1_x86_64/standard_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-12-SP1-Debuginfo for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-packagehub-12-sp1-pool-x86_64", + "parent_channel_label": "sles12-sp1-pool-x86_64", + "product_id": 1476, + "repository_id": 2338, + "parent_product_id": 1322, + "root_product_id": 1322, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-12-SP1_x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-12-SP1-Pool for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles12-sp1-ltss-updates-x86_64", + "parent_channel_label": "sles12-sp1-pool-x86_64", + "product_id": 1533, + "repository_id": 2457, + "parent_product_id": 1322, + "root_product_id": 1322, + "update_tag": "SLE-SERVER", + "url": "https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-SP1-LTSS/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLES12-SP1-LTSS-Updates for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles12-sp1-ltss-debuginfo-updates-x86_64", + "parent_channel_label": "sles12-sp1-pool-x86_64", + "product_id": 1533, + "repository_id": 2458, + "parent_product_id": 1322, + "root_product_id": 1322, + "update_tag": "SLE-SERVER", + "url": "https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-SP1-LTSS/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLES12-SP1-LTSS-Debuginfo-Updates for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-cap-tools-12-updates-x86_64-sp1", + "parent_channel_label": "sles12-sp1-pool-x86_64", + "product_id": 1678, + "repository_id": 2912, + "parent_product_id": 1322, + "root_product_id": 1322, + "update_tag": "SLE-Module-CAP-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-CAP-Tools/12/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-CAP-Tools-12-Updates for x86_64 SP1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-cap-tools-12-debuginfo-updates-x86_64-sp1", + "parent_channel_label": "sles12-sp1-pool-x86_64", + "product_id": 1678, + "repository_id": 2913, + "parent_product_id": 1322, + "root_product_id": 1322, + "update_tag": "SLE-Module-CAP-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-CAP-Tools/12/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-CAP-Tools-12-Debuginfo-Updates for x86_64 SP1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-cap-tools-12-pool-x86_64-sp1", + "parent_channel_label": "sles12-sp1-pool-x86_64", + "product_id": 1678, + "repository_id": 2914, + "parent_product_id": 1322, + "root_product_id": 1322, + "update_tag": "SLE-Module-CAP-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-CAP-Tools/12/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-CAP-Tools-12-Pool for x86_64 SP1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-cap-tools-12-debuginfo-pool-x86_64-sp1", + "parent_channel_label": "sles12-sp1-pool-x86_64", + "product_id": 1678, + "repository_id": 2915, + "parent_product_id": 1322, + "root_product_id": 1322, + "update_tag": "SLE-Module-CAP-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-CAP-Tools/12/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-CAP-Tools-12-Debuginfo-Pool for x86_64 SP1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-manager-tools12-beta-updates-x86_64-sp1", + "parent_channel_label": "sles12-sp1-pool-x86_64", + "product_id": 1747, + "repository_id": 3077, + "parent_product_id": 1322, + "root_product_id": 1322, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/12-BETA/x86_64/update/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools12-BETA-Updates for x86_64 SP1", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools12-beta-debuginfo-updates-x86_64-sp1", + "parent_channel_label": "sles12-sp1-pool-x86_64", + "product_id": 1747, + "repository_id": 3078, + "parent_product_id": 1322, + "root_product_id": 1322, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/12-BETA/x86_64/update_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools12-BETA-Debuginfo-Updates for x86_64 SP1", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools12-beta-pool-x86_64-sp1", + "parent_channel_label": "sles12-sp1-pool-x86_64", + "product_id": 1747, + "repository_id": 3079, + "parent_product_id": 1322, + "root_product_id": 1322, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/12-BETA/x86_64/product/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools12-BETA-Pool for x86_64 SP1", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools12-beta-debuginfo-pool-x86_64-sp1", + "parent_channel_label": "sles12-sp1-pool-x86_64", + "product_id": 1747, + "repository_id": 3080, + "parent_product_id": 1322, + "root_product_id": 1322, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/12-BETA/x86_64/product_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools12-BETA-Debuginfo-Pool for x86_64 SP1", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sles11-extras-x86_64-sap-sp4", + "parent_channel_label": "sle11-sp4-sap-pool-x86_64", + "product_id": 1329, + "repository_id": 710, + "parent_product_id": null, + "root_product_id": 1329, + "update_tag": null, + "url": "https://updates.suse.com/repo/$RCE/SLES11-Extras/sle-11-x86_64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLES11-Extras for x86_64 SAP-SP4", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-sp2-webyast-1.3-pool-x86_64-sap-sp4", + "parent_channel_label": "sle11-sp4-sap-pool-x86_64", + "product_id": 1329, + "repository_id": 1185, + "parent_product_id": null, + "root_product_id": 1329, + "update_tag": "slewyst13", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SP2-WebYaST-1.3-Pool/sle-11-x86_64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SP2-WebYaST-1.3-Pool for x86_64 SAP-SP4", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-sp2-webyast-1.3-updates-x86_64-sap-sp4", + "parent_channel_label": "sle11-sp4-sap-pool-x86_64", + "product_id": 1329, + "repository_id": 1188, + "parent_product_id": null, + "root_product_id": 1329, + "update_tag": "slewyst13", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SP2-WebYaST-1.3-Updates/sle-11-x86_64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SP2-WebYaST-1.3-Updates for x86_64 SAP-SP4", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-security-module-x86_64-sap-sp4", + "parent_channel_label": "sle11-sp4-sap-pool-x86_64", + "product_id": 1329, + "repository_id": 1447, + "parent_product_id": null, + "root_product_id": 1329, + "update_tag": "secsp3", + "url": "https://updates.suse.com/repo/$RCE/SLE11-Security-Module/sle-11-x86_64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE11-Security-Module for x86_64 SAP-SP4", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-hae-sp4-pool-x86_64-sap-sp4", + "parent_channel_label": "sle11-sp4-sap-pool-x86_64", + "product_id": 1329, + "repository_id": 1750, + "parent_product_id": null, + "root_product_id": 1329, + "update_tag": "sleshasp4", + "url": "https://updates.suse.com/repo/$RCE/SLE11-HAE-SP4-Pool/sle-11-x86_64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE11-HAE-SP4-Pool for x86_64 SAP-SP4", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-hae-sp4-updates-x86_64-sap-sp4", + "parent_channel_label": "sle11-sp4-sap-pool-x86_64", + "product_id": 1329, + "repository_id": 1753, + "parent_product_id": null, + "root_product_id": 1329, + "update_tag": "sleshasp4", + "url": "https://updates.suse.com/repo/$RCE/SLE11-HAE-SP4-Updates/sle-11-x86_64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE11-HAE-SP4-Updates for x86_64 SAP-SP4", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles11-sp4-pool-x86_64-sap-sp4", + "parent_channel_label": "sle11-sp4-sap-pool-x86_64", + "product_id": 1329, + "repository_id": 1802, + "parent_product_id": null, + "root_product_id": 1329, + "update_tag": "slessp4", + "url": "https://updates.suse.com/repo/$RCE/SLES11-SP4-Pool/sle-11-x86_64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLES11-SP4-Pool for x86_64 SAP-SP4", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles11-sp4-updates-x86_64-sap-sp4", + "parent_channel_label": "sle11-sp4-sap-pool-x86_64", + "product_id": 1329, + "repository_id": 1803, + "parent_product_id": null, + "root_product_id": 1329, + "update_tag": "slessp4", + "url": "https://updates.suse.com/repo/$RCE/SLES11-SP4-Updates/sle-11-x86_64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLES11-SP4-Updates for x86_64 SAP-SP4", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-sp4-debuginfo-pool-x86_64-sap-sp4", + "parent_channel_label": "sle11-sp4-sap-pool-x86_64", + "product_id": 1329, + "repository_id": 1804, + "parent_product_id": null, + "root_product_id": 1329, + "update_tag": "dbgsp4", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SP4-Debuginfo-Pool/sle-11-x86_64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SP4-Debuginfo-Pool for x86_64 SAP-SP4", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-sp4-debuginfo-updates-x86_64-sap-sp4", + "parent_channel_label": "sle11-sp4-sap-pool-x86_64", + "product_id": 1329, + "repository_id": 1806, + "parent_product_id": null, + "root_product_id": 1329, + "update_tag": "dbgsp4", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SP4-Debuginfo-Updates/sle-11-x86_64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SP4-Debuginfo-Updates for x86_64 SAP-SP4", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles11-sp4-suse-manager-tools-x86_64-sap-sp4", + "parent_channel_label": "sle11-sp4-sap-pool-x86_64", + "product_id": 1329, + "repository_id": 1842, + "parent_product_id": null, + "root_product_id": 1329, + "update_tag": "slesctsp4", + "url": "https://updates.suse.com/repo/$RCE/SLES11-SP4-SUSE-Manager-Tools/sle-11-x86_64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLES11-SP4-SUSE-Manager-Tools x86_64 SAP-SP4", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle11-sp4-sap-pool-x86_64", + "parent_channel_label": null, + "product_id": 1329, + "repository_id": 1860, + "parent_product_id": null, + "root_product_id": 1329, + "update_tag": "slesappsp4", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SP4-SAP-Pool/sle-11-x86_64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SP4-SAP-Pool for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-sp4-sap-updates-x86_64", + "parent_channel_label": "sle11-sp4-sap-pool-x86_64", + "product_id": 1329, + "repository_id": 1861, + "parent_product_id": null, + "root_product_id": 1329, + "update_tag": "slesappsp4", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SP4-SAP-Updates/sle-11-x86_64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SP4-SAP-Updates for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles11-sp4-ltss-updates-x86_64-sap", + "parent_channel_label": "sle11-sp4-sap-pool-x86_64", + "product_id": 1329, + "repository_id": 3760, + "parent_product_id": null, + "root_product_id": 1329, + "update_tag": "slessp4", + "url": "https://updates.suse.com/repo/$RCE/SLES11-SP4-LTSS-Updates/sle-11-x86_64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLES11-SP4-LTSS-Updates for x86_64 SAP", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-smt-sp3-updates-x86_64-sap-sp4", + "parent_channel_label": "sle11-sp4-sap-pool-x86_64", + "product_id": 1198, + "repository_id": 1405, + "parent_product_id": 1329, + "root_product_id": 1329, + "update_tag": "slesmtsp3", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SMT-SP3-Updates/sle-11-x86_64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SMT-SP3-Updates for x86_64 SAP-SP4", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-smt-sp3-pool-x86_64-sap-sp4", + "parent_channel_label": "sle11-sp4-sap-pool-x86_64", + "product_id": 1198, + "repository_id": 1409, + "parent_product_id": 1329, + "root_product_id": 1329, + "update_tag": "slesmtsp3", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SMT-SP3-Pool/sle-11-x86_64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SMT-SP3-Pool for x86_64 SAP-SP4", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-hae-geo-sp4-updates-x86_64-sap-sp4", + "parent_channel_label": "sle11-sp4-sap-pool-x86_64", + "product_id": 1286, + "repository_id": 1760, + "parent_product_id": 1329, + "root_product_id": 1329, + "update_tag": "sleshagsp4", + "url": "https://updates.suse.com/repo/$RCE/SLE11-HAE-GEO-SP4-Updates/sle-11-x86_64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE11-HAE-GEO-SP4-Updates for x86_64 SAP-SP4", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-hae-geo-sp4-pool-x86_64-sap-sp4", + "parent_channel_label": "sle11-sp4-sap-pool-x86_64", + "product_id": 1286, + "repository_id": 1858, + "parent_product_id": 1329, + "root_product_id": 1329, + "update_tag": "sleshagsp4", + "url": "https://updates.suse.com/repo/$RCE/SLE11-HAE-GEO-SP4-Pool/sle-11-x86_64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE11-HAE-GEO-SP4-Pool for x86_64 SAP-SP4", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-sdk-sp4-pool-x86_64-sap-sp4", + "parent_channel_label": "sle11-sp4-sap-pool-x86_64", + "product_id": 1320, + "repository_id": 1821, + "parent_product_id": 1329, + "root_product_id": 1329, + "update_tag": "sdksp4", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SDK-SP4-Pool/sle-11-x86_64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SDK-SP4-Pool for x86_64 SAP-SP4", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-sdk-sp4-updates-x86_64-sap-sp4", + "parent_channel_label": "sle11-sp4-sap-pool-x86_64", + "product_id": 1320, + "repository_id": 1826, + "parent_product_id": 1329, + "root_product_id": 1329, + "update_tag": "sdksp4", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SDK-SP4-Updates/sle-11-x86_64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SDK-SP4-Updates for x86_64 SAP-SP4", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles11-sp4-suse-manager-tools-beta-x86_64-sap", + "parent_channel_label": "sle11-sp4-sap-pool-x86_64", + "product_id": 2074, + "repository_id": 4423, + "parent_product_id": 1329, + "root_product_id": 1329, + "update_tag": null, + "url": "https://updates.suse.com/repo/$RCE/SLES11-SP4-SUSE-Manager-Tools-Beta/sle-11-x86_64/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLES11-SP4-SUSE-Manager-Tools-Beta for x86_64 SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sles11-extras-ppc64-sap-sp4", + "parent_channel_label": "sle11-sp4-sap-pool-ppc64", + "product_id": 1331, + "repository_id": 920, + "parent_product_id": null, + "root_product_id": 1331, + "update_tag": null, + "url": "https://updates.suse.com/repo/$RCE/SLES11-Extras/sle-11-ppc64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLES11-Extras for ppc64 SAP-SP4", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-security-module-ppc64-sap-sp4", + "parent_channel_label": "sle11-sp4-sap-pool-ppc64", + "product_id": 1331, + "repository_id": 1380, + "parent_product_id": null, + "root_product_id": 1331, + "update_tag": "secsp3", + "url": "https://updates.suse.com/repo/$RCE/SLE11-Security-Module/sle-11-ppc64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE11-Security-Module for ppc64 SAP-SP4", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-sp2-webyast-1.3-pool-ppc64-sap-sp4", + "parent_channel_label": "sle11-sp4-sap-pool-ppc64", + "product_id": 1331, + "repository_id": 1414, + "parent_product_id": null, + "root_product_id": 1331, + "update_tag": "slewyst13", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SP2-WebYaST-1.3-Pool/sle-11-ppc64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SP2-WebYaST-1.3-Pool for ppc64 SAP-SP4", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-sp2-webyast-1.3-updates-ppc64-sap-sp4", + "parent_channel_label": "sle11-sp4-sap-pool-ppc64", + "product_id": 1331, + "repository_id": 1418, + "parent_product_id": null, + "root_product_id": 1331, + "update_tag": "slewyst13", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SP2-WebYaST-1.3-Updates/sle-11-ppc64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SP2-WebYaST-1.3-Updates for ppc64 SAP-SP4", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-hae-sp4-pool-ppc64-sap-sp4", + "parent_channel_label": "sle11-sp4-sap-pool-ppc64", + "product_id": 1331, + "repository_id": 1756, + "parent_product_id": null, + "root_product_id": 1331, + "update_tag": "sleshasp4", + "url": "https://updates.suse.com/repo/$RCE/SLE11-HAE-SP4-Pool/sle-11-ppc64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE11-HAE-SP4-Pool for ppc64 SAP-SP4", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-hae-sp4-updates-ppc64-sap-sp4", + "parent_channel_label": "sle11-sp4-sap-pool-ppc64", + "product_id": 1331, + "repository_id": 1757, + "parent_product_id": null, + "root_product_id": 1331, + "update_tag": "sleshasp4", + "url": "https://updates.suse.com/repo/$RCE/SLE11-HAE-SP4-Updates/sle-11-ppc64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE11-HAE-SP4-Updates for ppc64 SAP-SP4", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles11-sp4-pool-ppc64-sap-sp4", + "parent_channel_label": "sle11-sp4-sap-pool-ppc64", + "product_id": 1331, + "repository_id": 1785, + "parent_product_id": null, + "root_product_id": 1331, + "update_tag": "slessp4", + "url": "https://updates.suse.com/repo/$RCE/SLES11-SP4-Pool/sle-11-ppc64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLES11-SP4-Pool for ppc64 SAP-SP4", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles11-sp4-updates-ppc64-sap-sp4", + "parent_channel_label": "sle11-sp4-sap-pool-ppc64", + "product_id": 1331, + "repository_id": 1786, + "parent_product_id": null, + "root_product_id": 1331, + "update_tag": "slessp4", + "url": "https://updates.suse.com/repo/$RCE/SLES11-SP4-Updates/sle-11-ppc64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLES11-SP4-Updates for ppc64 SAP-SP4", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-sp4-debuginfo-pool-ppc64-sap-sp4", + "parent_channel_label": "sle11-sp4-sap-pool-ppc64", + "product_id": 1331, + "repository_id": 1787, + "parent_product_id": null, + "root_product_id": 1331, + "update_tag": "dbgsp4", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SP4-Debuginfo-Pool/sle-11-ppc64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SP4-Debuginfo-Pool for ppc64 SAP-SP4", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-sp4-debuginfo-updates-ppc64-sap-sp4", + "parent_channel_label": "sle11-sp4-sap-pool-ppc64", + "product_id": 1331, + "repository_id": 1788, + "parent_product_id": null, + "root_product_id": 1331, + "update_tag": "dbgsp4", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SP4-Debuginfo-Updates/sle-11-ppc64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SP4-Debuginfo-Updates for ppc64 SAP-SP4", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles11-sp4-suse-manager-tools-ppc64-sap-sp4", + "parent_channel_label": "sle11-sp4-sap-pool-ppc64", + "product_id": 1331, + "repository_id": 1843, + "parent_product_id": null, + "root_product_id": 1331, + "update_tag": "slesctsp4", + "url": "https://updates.suse.com/repo/$RCE/SLES11-SP4-SUSE-Manager-Tools/sle-11-ppc64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLES11-SP4-SUSE-Manager-Tools ppc64 SAP-SP4", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle11-sp4-sap-updates-ppc64", + "parent_channel_label": "sle11-sp4-sap-pool-ppc64", + "product_id": 1331, + "repository_id": 1862, + "parent_product_id": null, + "root_product_id": 1331, + "update_tag": "slesappsp4", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SP4-SAP-Updates/sle-11-ppc64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SP4-SAP-Updates for ppc64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-sp4-sap-pool-ppc64", + "parent_channel_label": null, + "product_id": 1331, + "repository_id": 1863, + "parent_product_id": null, + "root_product_id": 1331, + "update_tag": "slesappsp4", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SP4-SAP-Pool/sle-11-ppc64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SP4-SAP-Pool for ppc64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles11-sp4-ltss-updates-ppc64-sap", + "parent_channel_label": "sle11-sp4-sap-pool-ppc64", + "product_id": 1331, + "repository_id": 3880, + "parent_product_id": null, + "root_product_id": 1331, + "update_tag": "slessp4", + "url": "https://updates.suse.com/repo/$RCE/SLES11-SP4-LTSS-Updates/sle-11-ppc64/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLES11-SP4-LTSS-Updates for ppc64 SAP", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-sdk-sp4-pool-ppc64-sap-sp4", + "parent_channel_label": "sle11-sp4-sap-pool-ppc64", + "product_id": 1320, + "repository_id": 1819, + "parent_product_id": 1331, + "root_product_id": 1331, + "update_tag": "sdksp4", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SDK-SP4-Pool/sle-11-ppc64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SDK-SP4-Pool for ppc64 SAP-SP4", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle11-sdk-sp4-updates-ppc64-sap-sp4", + "parent_channel_label": "sle11-sp4-sap-pool-ppc64", + "product_id": 1320, + "repository_id": 1824, + "parent_product_id": 1331, + "root_product_id": 1331, + "update_tag": "sdksp4", + "url": "https://updates.suse.com/repo/$RCE/SLE11-SDK-SP4-Updates/sle-11-ppc64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE11-SDK-SP4-Updates for ppc64 SAP-SP4", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles11-sp4-suse-manager-tools-beta-ppc64-sap", + "parent_channel_label": "sle11-sp4-sap-pool-ppc64", + "product_id": 2072, + "repository_id": 4421, + "parent_product_id": 1331, + "root_product_id": 1331, + "update_tag": null, + "url": "https://updates.suse.com/repo/$RCE/SLES11-SP4-SUSE-Manager-Tools-Beta/sle-11-ppc64/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLES11-SP4-SUSE-Manager-Tools-Beta for ppc64 SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools12-updates-x86_64-sled-sp1", + "parent_channel_label": "sled12-sp1-pool-x86_64", + "product_id": 1333, + "repository_id": 1732, + "parent_product_id": null, + "root_product_id": 1333, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/12/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Manager-Tools12-Updates for x86_64 SLED SP1", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools12-debuginfo-updates-x86_64-sled-sp1", + "parent_channel_label": "sled12-sp1-pool-x86_64", + "product_id": 1333, + "repository_id": 1733, + "parent_product_id": null, + "root_product_id": 1333, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/12/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Manager-Tools12-Debuginfo-Updates for x86_64 SLED SP1", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools12-pool-x86_64-sled-sp1", + "parent_channel_label": "sled12-sp1-pool-x86_64", + "product_id": 1333, + "repository_id": 1734, + "parent_product_id": null, + "root_product_id": 1333, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/12/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Manager-Tools12-Pool for x86_64 SLED SP1", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools12-debuginfo-pool-x86_64-sled-sp1", + "parent_channel_label": "sled12-sp1-pool-x86_64", + "product_id": 1333, + "repository_id": 1735, + "parent_product_id": null, + "root_product_id": 1333, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/12/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Manager-Tools12-Debuginfo-Pool for x86_64 SLED SP1", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sled12-sp1-updates-x86_64", + "parent_channel_label": "sled12-sp1-pool-x86_64", + "product_id": 1333, + "repository_id": 1870, + "parent_product_id": null, + "root_product_id": 1333, + "update_tag": "SLE-DESKTOP", + "url": "https://updates.suse.com/SUSE/Updates/SLE-DESKTOP/12-SP1/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLED12-SP1-Updates for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sled12-sp1-debuginfo-updates-x86_64", + "parent_channel_label": "sled12-sp1-pool-x86_64", + "product_id": 1333, + "repository_id": 1871, + "parent_product_id": null, + "root_product_id": 1333, + "update_tag": "SLE-DESKTOP", + "url": "https://updates.suse.com/SUSE/Updates/SLE-DESKTOP/12-SP1/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLED12-SP1-Debuginfo-Updates for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sled12-sp1-pool-x86_64", + "parent_channel_label": null, + "product_id": 1333, + "repository_id": 1872, + "parent_product_id": null, + "root_product_id": 1333, + "update_tag": "SLE-DESKTOP", + "url": "https://updates.suse.com/SUSE/Products/SLE-DESKTOP/12-SP1/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLED12-SP1-Pool for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sled12-sp1-debuginfo-pool-x86_64", + "parent_channel_label": "sled12-sp1-pool-x86_64", + "product_id": 1333, + "repository_id": 1874, + "parent_product_id": null, + "root_product_id": 1333, + "update_tag": "SLE-DESKTOP", + "url": "https://updates.suse.com/SUSE/Products/SLE-DESKTOP/12-SP1/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLED12-SP1-Debuginfo-Pool for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-12-sp1-ga-desktop-nvidia-driver-x86_64", + "parent_channel_label": "sled12-sp1-pool-x86_64", + "product_id": 1333, + "repository_id": 1911, + "parent_product_id": null, + "root_product_id": 1333, + "update_tag": null, + "url": "http://download.nvidia.com/novell/sle12sp1/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-12-SP1-GA-Desktop-nVidia-Driver for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-sdk12-sp1-updates-x86_64-sled-sp1", + "parent_channel_label": "sled12-sp1-pool-x86_64", + "product_id": 1323, + "repository_id": 1850, + "parent_product_id": 1333, + "root_product_id": 1333, + "update_tag": "SLE-SDK", + "url": "https://updates.suse.com/SUSE/Updates/SLE-SDK/12-SP1/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-SDK12-SP1-Updates for x86_64 SLED", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-sdk12-sp1-debuginfo-updates-x86_64-sled-sp1", + "parent_channel_label": "sled12-sp1-pool-x86_64", + "product_id": 1323, + "repository_id": 1851, + "parent_product_id": 1333, + "root_product_id": 1333, + "update_tag": "SLE-SDK", + "url": "https://updates.suse.com/SUSE/Updates/SLE-SDK/12-SP1/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-SDK12-SP1-Debuginfo-Updates for x86_64 SLED", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-sdk12-sp1-pool-x86_64-sled-sp1", + "parent_channel_label": "sled12-sp1-pool-x86_64", + "product_id": 1323, + "repository_id": 1852, + "parent_product_id": 1333, + "root_product_id": 1333, + "update_tag": "SLE-SDK", + "url": "https://updates.suse.com/SUSE/Products/SLE-SDK/12-SP1/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-SDK12-SP1-Pool for x86_64 SLED", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-sdk12-sp1-debuginfo-pool-x86_64-sled-sp1", + "parent_channel_label": "sled12-sp1-pool-x86_64", + "product_id": 1323, + "repository_id": 1853, + "parent_product_id": 1333, + "root_product_id": 1333, + "update_tag": "SLE-SDK", + "url": "https://updates.suse.com/SUSE/Products/SLE-SDK/12-SP1/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-SDK12-SP1-Debuginfo-Pool for x86_64 SLED", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-packagehub-12-sp1-x86_64-sled-sp1", + "parent_channel_label": "sled12-sp1-pool-x86_64", + "product_id": 1476, + "repository_id": 2336, + "parent_product_id": 1333, + "root_product_id": 1333, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-12-SP1_x86_64/standard/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-12-SP1-Standard-Pool for x86_64 SLED", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-packagehub-12-sp1-debuginfo-x86_64-sled-sp1", + "parent_channel_label": "sled12-sp1-pool-x86_64", + "product_id": 1476, + "repository_id": 2337, + "parent_product_id": 1333, + "root_product_id": 1333, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-12-SP1_x86_64/standard_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-12-SP1-Debuginfo for x86_64 SLED", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-packagehub-12-sp1-pool-x86_64-sled-sp1", + "parent_channel_label": "sled12-sp1-pool-x86_64", + "product_id": 1476, + "repository_id": 2338, + "parent_product_id": 1333, + "root_product_id": 1333, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-12-SP1_x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-12-SP1-Pool for x86_64 SLED", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-cap-tools-12-updates-x86_64-sled-sp1", + "parent_channel_label": "sled12-sp1-pool-x86_64", + "product_id": 1678, + "repository_id": 2912, + "parent_product_id": 1333, + "root_product_id": 1333, + "update_tag": "SLE-Module-CAP-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-CAP-Tools/12/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-CAP-Tools-12-Updates for x86_64 SLED SP1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-cap-tools-12-debuginfo-updates-x86_64-sled-sp1", + "parent_channel_label": "sled12-sp1-pool-x86_64", + "product_id": 1678, + "repository_id": 2913, + "parent_product_id": 1333, + "root_product_id": 1333, + "update_tag": "SLE-Module-CAP-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-CAP-Tools/12/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-CAP-Tools-12-Debuginfo-Updates for x86_64 SLED SP1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-cap-tools-12-pool-x86_64-sled-sp1", + "parent_channel_label": "sled12-sp1-pool-x86_64", + "product_id": 1678, + "repository_id": 2914, + "parent_product_id": 1333, + "root_product_id": 1333, + "update_tag": "SLE-Module-CAP-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-CAP-Tools/12/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-CAP-Tools-12-Pool for x86_64 SLED SP1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-cap-tools-12-debuginfo-pool-x86_64-sled-sp1", + "parent_channel_label": "sled12-sp1-pool-x86_64", + "product_id": 1678, + "repository_id": 2915, + "parent_product_id": 1333, + "root_product_id": 1333, + "update_tag": "SLE-Module-CAP-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-CAP-Tools/12/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-CAP-Tools-12-Debuginfo-Pool for x86_64 SLED SP1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-manager-tools12-beta-updates-x86_64-sled-sp1", + "parent_channel_label": "sled12-sp1-pool-x86_64", + "product_id": 1747, + "repository_id": 3077, + "parent_product_id": 1333, + "root_product_id": 1333, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/12-BETA/x86_64/update/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools12-BETA-Updates for x86_64 SLED SP1", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools12-beta-debuginfo-updates-x86_64-sled-sp1", + "parent_channel_label": "sled12-sp1-pool-x86_64", + "product_id": 1747, + "repository_id": 3078, + "parent_product_id": 1333, + "root_product_id": 1333, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/12-BETA/x86_64/update_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools12-BETA-Debuginfo-Updates for x86_64 SLED SP1", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools12-beta-pool-x86_64-sled-sp1", + "parent_channel_label": "sled12-sp1-pool-x86_64", + "product_id": 1747, + "repository_id": 3079, + "parent_product_id": 1333, + "root_product_id": 1333, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/12-BETA/x86_64/product/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools12-BETA-Pool for x86_64 SLED SP1", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools12-beta-debuginfo-pool-x86_64-sled-sp1", + "parent_channel_label": "sled12-sp1-pool-x86_64", + "product_id": 1747, + "repository_id": 3080, + "parent_product_id": 1333, + "root_product_id": 1333, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/12-BETA/x86_64/product_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools12-BETA-Debuginfo-Pool for x86_64 SLED SP1", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools12-updates-ppc64le-sp1", + "parent_channel_label": "sles12-sp1-pool-ppc64le", + "product_id": 1334, + "repository_id": 1724, + "parent_product_id": null, + "root_product_id": 1334, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/12/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Manager-Tools12-Updates for ppc64le SP1", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools12-debuginfo-updates-ppc64le-sp1", + "parent_channel_label": "sles12-sp1-pool-ppc64le", + "product_id": 1334, + "repository_id": 1725, + "parent_product_id": null, + "root_product_id": 1334, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/12/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Manager-Tools12-Debuginfo-Updates for ppc64le SP1", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools12-pool-ppc64le-sp1", + "parent_channel_label": "sles12-sp1-pool-ppc64le", + "product_id": 1334, + "repository_id": 1726, + "parent_product_id": null, + "root_product_id": 1334, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/12/ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Manager-Tools12-Pool for ppc64le SP1", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools12-debuginfo-pool-ppc64le-sp1", + "parent_channel_label": "sles12-sp1-pool-ppc64le", + "product_id": 1334, + "repository_id": 1727, + "parent_product_id": null, + "root_product_id": 1334, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/12/ppc64le/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Manager-Tools12-Debuginfo-Pool for ppc64le SP1", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sles12-sp1-updates-ppc64le", + "parent_channel_label": "sles12-sp1-pool-ppc64le", + "product_id": 1334, + "repository_id": 1875, + "parent_product_id": null, + "root_product_id": 1334, + "update_tag": "SLE-SERVER", + "url": "https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-SP1/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLES12-SP1-Updates for ppc64le", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles12-sp1-debuginfo-updates-ppc64le", + "parent_channel_label": "sles12-sp1-pool-ppc64le", + "product_id": 1334, + "repository_id": 1876, + "parent_product_id": null, + "root_product_id": 1334, + "update_tag": "SLE-SERVER", + "url": "https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-SP1/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLES12-SP1-Debuginfo-Updates for ppc64le", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles12-sp1-pool-ppc64le", + "parent_channel_label": null, + "product_id": 1334, + "repository_id": 1877, + "parent_product_id": null, + "root_product_id": 1334, + "update_tag": "SLE-SERVER", + "url": "https://updates.suse.com/SUSE/Products/SLE-SERVER/12-SP1/ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLES12-SP1-Pool for ppc64le", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles12-sp1-debuginfo-pool-ppc64le", + "parent_channel_label": "sles12-sp1-pool-ppc64le", + "product_id": 1334, + "repository_id": 1878, + "parent_product_id": null, + "root_product_id": 1334, + "update_tag": "SLE-SERVER", + "url": "https://updates.suse.com/SUSE/Products/SLE-SERVER/12-SP1/ppc64le/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLES12-SP1-Debuginfo-Pool for ppc64le", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-legacy12-updates-ppc64le-sp1", + "parent_channel_label": "sles12-sp1-pool-ppc64le", + "product_id": 1148, + "repository_id": 1668, + "parent_product_id": 1334, + "root_product_id": 1334, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/12/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy12-Updates for ppc64le SP1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-legacy12-debuginfo-updates-ppc64le-sp1", + "parent_channel_label": "sles12-sp1-pool-ppc64le", + "product_id": 1148, + "repository_id": 1669, + "parent_product_id": 1334, + "root_product_id": 1334, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/12/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy12-Debuginfo-Updates for ppc64le SP1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-legacy12-pool-ppc64le-sp1", + "parent_channel_label": "sles12-sp1-pool-ppc64le", + "product_id": 1148, + "repository_id": 1670, + "parent_product_id": 1334, + "root_product_id": 1334, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/12/ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy12-Pool for ppc64le SP1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-legacy12-debuginfo-pool-ppc64le-sp1", + "parent_channel_label": "sles12-sp1-pool-ppc64le", + "product_id": 1148, + "repository_id": 1671, + "parent_product_id": 1334, + "root_product_id": 1334, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/12/ppc64le/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy12-Debuginfo-Pool for ppc64le SP1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting12-updates-ppc64le-sp1", + "parent_channel_label": "sles12-sp1-pool-ppc64le", + "product_id": 1151, + "repository_id": 1680, + "parent_product_id": 1334, + "root_product_id": 1334, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/12/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Web-Scripting12-Updates for ppc64le SP1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting12-debuginfo-updates-ppc64le-sp1", + "parent_channel_label": "sles12-sp1-pool-ppc64le", + "product_id": 1151, + "repository_id": 1681, + "parent_product_id": 1334, + "root_product_id": 1334, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/12/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Web-Scripting12-Debuginfo-Updates for ppc64le SP1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting12-pool-ppc64le-sp1", + "parent_channel_label": "sles12-sp1-pool-ppc64le", + "product_id": 1151, + "repository_id": 1682, + "parent_product_id": 1334, + "root_product_id": 1334, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/12/ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Web-Scripting12-Pool for ppc64le SP1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting12-debuginfo-pool-ppc64le-sp1", + "parent_channel_label": "sles12-sp1-pool-ppc64le", + "product_id": 1151, + "repository_id": 1683, + "parent_product_id": 1334, + "root_product_id": 1334, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/12/ppc64le/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Web-Scripting12-Debuginfo-Pool for ppc64le SP1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud12-updates-ppc64le-sp1", + "parent_channel_label": "sles12-sp1-pool-ppc64le", + "product_id": 1218, + "repository_id": 1692, + "parent_product_id": 1334, + "root_product_id": 1334, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/12/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud12-Updates for ppc64le SP1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud12-debuginfo-updates-ppc64le-sp1", + "parent_channel_label": "sles12-sp1-pool-ppc64le", + "product_id": 1218, + "repository_id": 1693, + "parent_product_id": 1334, + "root_product_id": 1334, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/12/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud12-Debuginfo-Updates for ppc64le SP1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud12-pool-ppc64le-sp1", + "parent_channel_label": "sles12-sp1-pool-ppc64le", + "product_id": 1218, + "repository_id": 1694, + "parent_product_id": 1334, + "root_product_id": 1334, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/12/ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud12-Pool for ppc64le SP1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud12-debuginfo-pool-ppc64le-sp1", + "parent_channel_label": "sles12-sp1-pool-ppc64le", + "product_id": 1218, + "repository_id": 1695, + "parent_product_id": 1334, + "root_product_id": 1334, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/12/ppc64le/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud12-Debuginfo-Pool for ppc64le SP1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "ibm-dlpar-adv-toolchain-sp1", + "parent_channel_label": "sles12-sp1-pool-ppc64le", + "product_id": 1249, + "repository_id": 4429, + "parent_product_id": 1334, + "root_product_id": 1334, + "update_tag": null, + "url": "https://public.dhe.ibm.com/software/server/POWER/Linux/toolchain/at/suse/SLES_12/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "IBM-DLPAR-Adv-Toolchain for ppc64le SP1", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "ibm-dlpar-utils-sp1", + "parent_channel_label": "sles12-sp1-pool-ppc64le", + "product_id": 1250, + "repository_id": 6216, + "parent_product_id": 1334, + "root_product_id": 1334, + "update_tag": null, + "url": "https://public.dhe.ibm.com/software/server/POWER/Linux/yum/OSS/SLES/12/ppc64le/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "IBM-DLPAR-utils for ppc64le SP1", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-adv-systems-management12-updates-ppc64le-sp1", + "parent_channel_label": "sles12-sp1-pool-ppc64le", + "product_id": 1294, + "repository_id": 1762, + "parent_product_id": 1334, + "root_product_id": 1334, + "update_tag": "SLE-Module-Adv-Systems-Management", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Adv-Systems-Management/12/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Adv-Systems-Management12-Updates for ppc64le SP1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-adv-systems-management12-debuginfo-updates-ppc64le-sp1", + "parent_channel_label": "sles12-sp1-pool-ppc64le", + "product_id": 1294, + "repository_id": 1763, + "parent_product_id": 1334, + "root_product_id": 1334, + "update_tag": "SLE-Module-Adv-Systems-Management", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Adv-Systems-Management/12/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Adv-Systems-Management12-Debuginfo-Updates for ppc64le SP1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-adv-systems-management12-pool-ppc64le-sp1", + "parent_channel_label": "sles12-sp1-pool-ppc64le", + "product_id": 1294, + "repository_id": 1764, + "parent_product_id": 1334, + "root_product_id": 1334, + "update_tag": "SLE-Module-Adv-Systems-Management", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Adv-Systems-Management/12/ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Adv-Systems-Management12-Pool for ppc64le SP1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-adv-systems-management12-debuginfo-pool-ppc64le-sp1", + "parent_channel_label": "sles12-sp1-pool-ppc64le", + "product_id": 1294, + "repository_id": 1765, + "parent_product_id": 1334, + "root_product_id": 1334, + "update_tag": "SLE-Module-Adv-Systems-Management", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Adv-Systems-Management/12/ppc64le/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Adv-Systems-Management12-Debuginfo-Pool for ppc64le SP1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-toolchain12-updates-ppc64le-sp1", + "parent_channel_label": "sles12-sp1-pool-ppc64le", + "product_id": 1339, + "repository_id": 1895, + "parent_product_id": 1334, + "root_product_id": 1334, + "update_tag": "SLE-Module-Toolchain", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Toolchain/12/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Toolchain12-Updates for ppc64le SP1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-toolchain12-debuginfo-updates-ppc64le-sp1", + "parent_channel_label": "sles12-sp1-pool-ppc64le", + "product_id": 1339, + "repository_id": 1896, + "parent_product_id": 1334, + "root_product_id": 1334, + "update_tag": "SLE-Module-Toolchain", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Toolchain/12/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Toolchain12-Debuginfo-Updates for ppc64le SP1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-toolchain12-pool-ppc64le-sp1", + "parent_channel_label": "sles12-sp1-pool-ppc64le", + "product_id": 1339, + "repository_id": 1897, + "parent_product_id": 1334, + "root_product_id": 1334, + "update_tag": "SLE-Module-Toolchain", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Toolchain/12/ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Toolchain12-Pool for ppc64le SP1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-toolchain12-debuginfo-pool-ppc64le-sp1", + "parent_channel_label": "sles12-sp1-pool-ppc64le", + "product_id": 1339, + "repository_id": 1898, + "parent_product_id": 1334, + "root_product_id": 1334, + "update_tag": "SLE-Module-Toolchain", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Toolchain/12/ppc64le/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Toolchain12-Debuginfo-Pool for ppc64le SP1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-sdk12-sp1-updates-ppc64le", + "parent_channel_label": "sles12-sp1-pool-ppc64le", + "product_id": 1343, + "repository_id": 1922, + "parent_product_id": 1334, + "root_product_id": 1334, + "update_tag": "SLE-SDK", + "url": "https://updates.suse.com/SUSE/Updates/SLE-SDK/12-SP1/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-SDK12-SP1-Updates for ppc64le", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-sdk12-sp1-debuginfo-updates-ppc64le", + "parent_channel_label": "sles12-sp1-pool-ppc64le", + "product_id": 1343, + "repository_id": 1923, + "parent_product_id": 1334, + "root_product_id": 1334, + "update_tag": "SLE-SDK", + "url": "https://updates.suse.com/SUSE/Updates/SLE-SDK/12-SP1/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-SDK12-SP1-Debuginfo-Updates for ppc64le", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-sdk12-sp1-pool-ppc64le", + "parent_channel_label": "sles12-sp1-pool-ppc64le", + "product_id": 1343, + "repository_id": 1924, + "parent_product_id": 1334, + "root_product_id": 1334, + "update_tag": "SLE-SDK", + "url": "https://updates.suse.com/SUSE/Products/SLE-SDK/12-SP1/ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-SDK12-SP1-Pool for ppc64le", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-sdk12-sp1-debuginfo-pool-ppc64le", + "parent_channel_label": "sles12-sp1-pool-ppc64le", + "product_id": 1343, + "repository_id": 1925, + "parent_product_id": 1334, + "root_product_id": 1334, + "update_tag": "SLE-SDK", + "url": "https://updates.suse.com/SUSE/Products/SLE-SDK/12-SP1/ppc64le/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-SDK12-SP1-Debuginfo-Pool for ppc64le", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-containers12-updates-ppc64le-sp1", + "parent_channel_label": "sles12-sp1-pool-ppc64le", + "product_id": 1353, + "repository_id": 1972, + "parent_product_id": 1334, + "root_product_id": 1334, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/12/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers12-Updates for ppc64le SP1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-containers12-debuginfo-updates-ppc64le-sp1", + "parent_channel_label": "sles12-sp1-pool-ppc64le", + "product_id": 1353, + "repository_id": 1973, + "parent_product_id": 1334, + "root_product_id": 1334, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/12/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers12-Debuginfo-Updates for ppc64le SP1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-containers12-pool-ppc64le-sp1", + "parent_channel_label": "sles12-sp1-pool-ppc64le", + "product_id": 1353, + "repository_id": 1974, + "parent_product_id": 1334, + "root_product_id": 1334, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Containers/12/ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers12-Pool for ppc64le SP1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-containers12-debuginfo-pool-ppc64le-sp1", + "parent_channel_label": "sles12-sp1-pool-ppc64le", + "product_id": 1353, + "repository_id": 1975, + "parent_product_id": 1334, + "root_product_id": 1334, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Containers/12/ppc64le/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers12-Debuginfo-Pool for ppc64le SP1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-packagehub-12-sp1-ppc64le", + "parent_channel_label": "sles12-sp1-pool-ppc64le", + "product_id": 1478, + "repository_id": 2342, + "parent_product_id": 1334, + "root_product_id": 1334, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-12-SP1_ppc64le/standard/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-12-SP1-Standard-Pool for ppc64le", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-packagehub-12-sp1-debuginfo-ppc64le", + "parent_channel_label": "sles12-sp1-pool-ppc64le", + "product_id": 1478, + "repository_id": 2343, + "parent_product_id": 1334, + "root_product_id": 1334, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-12-SP1_ppc64le/standard_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-12-SP1-Debuginfo for ppc64le", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-packagehub-12-sp1-pool-ppc64le", + "parent_channel_label": "sles12-sp1-pool-ppc64le", + "product_id": 1478, + "repository_id": 2344, + "parent_product_id": 1334, + "root_product_id": 1334, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-12-SP1_ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-12-SP1-Pool for ppc64le", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-manager-tools12-beta-updates-ppc64le-sp1", + "parent_channel_label": "sles12-sp1-pool-ppc64le", + "product_id": 1745, + "repository_id": 3067, + "parent_product_id": 1334, + "root_product_id": 1334, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/12-BETA/ppc64le/update/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools12-BETA-Updates for ppc64le SP1", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools12-beta-debuginfo-updates-ppc64le-sp1", + "parent_channel_label": "sles12-sp1-pool-ppc64le", + "product_id": 1745, + "repository_id": 3068, + "parent_product_id": 1334, + "root_product_id": 1334, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/12-BETA/ppc64le/update_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools12-BETA-Debuginfo-Updates for ppc64le SP1", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools12-beta-pool-ppc64le-sp1", + "parent_channel_label": "sles12-sp1-pool-ppc64le", + "product_id": 1745, + "repository_id": 3069, + "parent_product_id": 1334, + "root_product_id": 1334, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/12-BETA/ppc64le/product/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools12-BETA-Pool for ppc64le SP1", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools12-beta-debuginfo-pool-ppc64le-sp1", + "parent_channel_label": "sles12-sp1-pool-ppc64le", + "product_id": 1745, + "repository_id": 3070, + "parent_product_id": 1334, + "root_product_id": 1334, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/12-BETA/ppc64le/product_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools12-BETA-Debuginfo-Pool for ppc64le SP1", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools12-updates-s390x-sp1", + "parent_channel_label": "sles12-sp1-pool-s390x", + "product_id": 1335, + "repository_id": 1728, + "parent_product_id": null, + "root_product_id": 1335, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/12/s390x/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Manager-Tools12-Updates for s390x SP1", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools12-debuginfo-updates-s390x-sp1", + "parent_channel_label": "sles12-sp1-pool-s390x", + "product_id": 1335, + "repository_id": 1729, + "parent_product_id": null, + "root_product_id": 1335, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/12/s390x/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Manager-Tools12-Debuginfo-Updates for s390x SP1", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools12-pool-s390x-sp1", + "parent_channel_label": "sles12-sp1-pool-s390x", + "product_id": 1335, + "repository_id": 1730, + "parent_product_id": null, + "root_product_id": 1335, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/12/s390x/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Manager-Tools12-Pool for s390x SP1", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools12-debuginfo-pool-s390x-sp1", + "parent_channel_label": "sles12-sp1-pool-s390x", + "product_id": 1335, + "repository_id": 1731, + "parent_product_id": null, + "root_product_id": 1335, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/12/s390x/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Manager-Tools12-Debuginfo-Pool for s390x SP1", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sles12-sp1-updates-s390x", + "parent_channel_label": "sles12-sp1-pool-s390x", + "product_id": 1335, + "repository_id": 1879, + "parent_product_id": null, + "root_product_id": 1335, + "update_tag": "SLE-SERVER", + "url": "https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-SP1/s390x/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLES12-SP1-Updates for s390x", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles12-sp1-debuginfo-updates-s390x", + "parent_channel_label": "sles12-sp1-pool-s390x", + "product_id": 1335, + "repository_id": 1880, + "parent_product_id": null, + "root_product_id": 1335, + "update_tag": "SLE-SERVER", + "url": "https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-SP1/s390x/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLES12-SP1-Debuginfo-Updates for s390x", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles12-sp1-pool-s390x", + "parent_channel_label": null, + "product_id": 1335, + "repository_id": 1881, + "parent_product_id": null, + "root_product_id": 1335, + "update_tag": "SLE-SERVER", + "url": "https://updates.suse.com/SUSE/Products/SLE-SERVER/12-SP1/s390x/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLES12-SP1-Pool for s390x", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles12-sp1-debuginfo-pool-s390x", + "parent_channel_label": "sles12-sp1-pool-s390x", + "product_id": 1335, + "repository_id": 1882, + "parent_product_id": null, + "root_product_id": 1335, + "update_tag": "SLE-SERVER", + "url": "https://updates.suse.com/SUSE/Products/SLE-SERVER/12-SP1/s390x/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLES12-SP1-Debuginfo-Pool for s390x", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-legacy12-updates-s390x-sp1", + "parent_channel_label": "sles12-sp1-pool-s390x", + "product_id": 1149, + "repository_id": 1672, + "parent_product_id": 1335, + "root_product_id": 1335, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/12/s390x/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy12-Updates for s390x SP1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-legacy12-debuginfo-updates-s390x-sp1", + "parent_channel_label": "sles12-sp1-pool-s390x", + "product_id": 1149, + "repository_id": 1673, + "parent_product_id": 1335, + "root_product_id": 1335, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/12/s390x/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy12-Debuginfo-Updates for s390x SP1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-legacy12-pool-s390x-sp1", + "parent_channel_label": "sles12-sp1-pool-s390x", + "product_id": 1149, + "repository_id": 1674, + "parent_product_id": 1335, + "root_product_id": 1335, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/12/s390x/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy12-Pool for s390x SP1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-legacy12-debuginfo-pool-s390x-sp1", + "parent_channel_label": "sles12-sp1-pool-s390x", + "product_id": 1149, + "repository_id": 1675, + "parent_product_id": 1335, + "root_product_id": 1335, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/12/s390x/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy12-Debuginfo-Pool for s390x SP1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting12-updates-s390x-sp1", + "parent_channel_label": "sles12-sp1-pool-s390x", + "product_id": 1152, + "repository_id": 1684, + "parent_product_id": 1335, + "root_product_id": 1335, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/12/s390x/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Web-Scripting12-Updates for s390x SP1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting12-debuginfo-updates-s390x-sp1", + "parent_channel_label": "sles12-sp1-pool-s390x", + "product_id": 1152, + "repository_id": 1685, + "parent_product_id": 1335, + "root_product_id": 1335, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/12/s390x/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Web-Scripting12-Debuginfo-Updates for s390x SP1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting12-pool-s390x-sp1", + "parent_channel_label": "sles12-sp1-pool-s390x", + "product_id": 1152, + "repository_id": 1686, + "parent_product_id": 1335, + "root_product_id": 1335, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/12/s390x/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Web-Scripting12-Pool for s390x SP1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting12-debuginfo-pool-s390x-sp1", + "parent_channel_label": "sles12-sp1-pool-s390x", + "product_id": 1152, + "repository_id": 1687, + "parent_product_id": 1335, + "root_product_id": 1335, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/12/s390x/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Web-Scripting12-Debuginfo-Pool for s390x SP1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud12-updates-s390x-sp1", + "parent_channel_label": "sles12-sp1-pool-s390x", + "product_id": 1219, + "repository_id": 1696, + "parent_product_id": 1335, + "root_product_id": 1335, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/12/s390x/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud12-Updates for s390x SP1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud12-debuginfo-updates-s390x-sp1", + "parent_channel_label": "sles12-sp1-pool-s390x", + "product_id": 1219, + "repository_id": 1697, + "parent_product_id": 1335, + "root_product_id": 1335, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/12/s390x/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud12-Debuginfo-Updates for s390x SP1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud12-pool-s390x-sp1", + "parent_channel_label": "sles12-sp1-pool-s390x", + "product_id": 1219, + "repository_id": 1698, + "parent_product_id": 1335, + "root_product_id": 1335, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/12/s390x/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud12-Pool for s390x SP1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud12-debuginfo-pool-s390x-sp1", + "parent_channel_label": "sles12-sp1-pool-s390x", + "product_id": 1219, + "repository_id": 1699, + "parent_product_id": 1335, + "root_product_id": 1335, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/12/s390x/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud12-Debuginfo-Pool for s390x SP1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-adv-systems-management12-updates-s390x-sp1", + "parent_channel_label": "sles12-sp1-pool-s390x", + "product_id": 1295, + "repository_id": 1766, + "parent_product_id": 1335, + "root_product_id": 1335, + "update_tag": "SLE-Module-Adv-Systems-Management", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Adv-Systems-Management/12/s390x/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Adv-Systems-Management12-Updates for s390x SP1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-adv-systems-management12-debuginfo-updates-s390x-sp1", + "parent_channel_label": "sles12-sp1-pool-s390x", + "product_id": 1295, + "repository_id": 1767, + "parent_product_id": 1335, + "root_product_id": 1335, + "update_tag": "SLE-Module-Adv-Systems-Management", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Adv-Systems-Management/12/s390x/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Adv-Systems-Management12-Debuginfo-Updates for s390x SP1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-adv-systems-management12-pool-s390x-sp1", + "parent_channel_label": "sles12-sp1-pool-s390x", + "product_id": 1295, + "repository_id": 1768, + "parent_product_id": 1335, + "root_product_id": 1335, + "update_tag": "SLE-Module-Adv-Systems-Management", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Adv-Systems-Management/12/s390x/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Adv-Systems-Management12-Pool for s390x SP1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-adv-systems-management12-debuginfo-pool-s390x-sp1", + "parent_channel_label": "sles12-sp1-pool-s390x", + "product_id": 1295, + "repository_id": 1769, + "parent_product_id": 1335, + "root_product_id": 1335, + "update_tag": "SLE-Module-Adv-Systems-Management", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Adv-Systems-Management/12/s390x/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Adv-Systems-Management12-Debuginfo-Pool for s390x SP1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-ha12-sp1-updates-s390x", + "parent_channel_label": "sles12-sp1-pool-s390x", + "product_id": 1336, + "repository_id": 1883, + "parent_product_id": 1335, + "root_product_id": 1335, + "update_tag": "SLE-HA", + "url": "https://updates.suse.com/SUSE/Updates/SLE-HA/12-SP1/s390x/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-HA12-SP1-Updates for s390x", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-ha12-sp1-debuginfo-updates-s390x", + "parent_channel_label": "sles12-sp1-pool-s390x", + "product_id": 1336, + "repository_id": 1884, + "parent_product_id": 1335, + "root_product_id": 1335, + "update_tag": "SLE-HA", + "url": "https://updates.suse.com/SUSE/Updates/SLE-HA/12-SP1/s390x/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-HA12-SP1-Debuginfo-Updates for s390x", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-ha12-sp1-pool-s390x", + "parent_channel_label": "sles12-sp1-pool-s390x", + "product_id": 1336, + "repository_id": 1885, + "parent_product_id": 1335, + "root_product_id": 1335, + "update_tag": "SLE-HA", + "url": "https://updates.suse.com/SUSE/Products/SLE-HA/12-SP1/s390x/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-HA12-SP1-Pool for s390x", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-ha12-sp1-debuginfo-pool-s390x", + "parent_channel_label": "sles12-sp1-pool-s390x", + "product_id": 1336, + "repository_id": 1886, + "parent_product_id": 1335, + "root_product_id": 1335, + "update_tag": "SLE-HA", + "url": "https://updates.suse.com/SUSE/Products/SLE-HA/12-SP1/s390x/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-HA12-SP1-Debuginfo-Pool for s390x", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-ha-geo12-sp1-updates-s390x", + "parent_channel_label": "sles12-sp1-pool-s390x", + "product_id": 1345, + "repository_id": 1932, + "parent_product_id": 1336, + "root_product_id": 1335, + "update_tag": "SLE-HA-GEO", + "url": "https://updates.suse.com/SUSE/Updates/SLE-HA-GEO/12-SP1/s390x/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-HA-GEO12-SP1-Updates for s390x", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-ha-geo12-sp1-debuginfo-updates-s390x", + "parent_channel_label": "sles12-sp1-pool-s390x", + "product_id": 1345, + "repository_id": 1933, + "parent_product_id": 1336, + "root_product_id": 1335, + "update_tag": "SLE-HA-GEO", + "url": "https://updates.suse.com/SUSE/Updates/SLE-HA-GEO/12-SP1/s390x/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-HA-GEO12-SP1-Debuginfo-Updates for s390x", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-ha-geo12-sp1-pool-s390x", + "parent_channel_label": "sles12-sp1-pool-s390x", + "product_id": 1345, + "repository_id": 1934, + "parent_product_id": 1336, + "root_product_id": 1335, + "update_tag": "SLE-HA-GEO", + "url": "https://updates.suse.com/SUSE/Products/SLE-HA-GEO/12-SP1/s390x/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-HA-GEO12-SP1-Pool for s390x", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-ha-geo12-sp1-debuginfo-pool-s390x", + "parent_channel_label": "sles12-sp1-pool-s390x", + "product_id": 1345, + "repository_id": 1935, + "parent_product_id": 1336, + "root_product_id": 1335, + "update_tag": "SLE-HA-GEO", + "url": "https://updates.suse.com/SUSE/Products/SLE-HA-GEO/12-SP1/s390x/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-HA-GEO12-SP1-Debuginfo-Pool for s390x", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-toolchain12-updates-s390x-sp1", + "parent_channel_label": "sles12-sp1-pool-s390x", + "product_id": 1340, + "repository_id": 1899, + "parent_product_id": 1335, + "root_product_id": 1335, + "update_tag": "SLE-Module-Toolchain", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Toolchain/12/s390x/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Toolchain12-Updates for s390x SP1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-toolchain12-debuginfo-updates-s390x-sp1", + "parent_channel_label": "sles12-sp1-pool-s390x", + "product_id": 1340, + "repository_id": 1900, + "parent_product_id": 1335, + "root_product_id": 1335, + "update_tag": "SLE-Module-Toolchain", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Toolchain/12/s390x/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Toolchain12-Debuginfo-Updates for s390x SP1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-toolchain12-pool-s390x-sp1", + "parent_channel_label": "sles12-sp1-pool-s390x", + "product_id": 1340, + "repository_id": 1901, + "parent_product_id": 1335, + "root_product_id": 1335, + "update_tag": "SLE-Module-Toolchain", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Toolchain/12/s390x/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Toolchain12-Pool for s390x SP1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-toolchain12-debuginfo-pool-s390x-sp1", + "parent_channel_label": "sles12-sp1-pool-s390x", + "product_id": 1340, + "repository_id": 1902, + "parent_product_id": 1335, + "root_product_id": 1335, + "update_tag": "SLE-Module-Toolchain", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Toolchain/12/s390x/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Toolchain12-Debuginfo-Pool for s390x SP1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-sdk12-sp1-updates-s390x", + "parent_channel_label": "sles12-sp1-pool-s390x", + "product_id": 1344, + "repository_id": 1927, + "parent_product_id": 1335, + "root_product_id": 1335, + "update_tag": "SLE-SDK", + "url": "https://updates.suse.com/SUSE/Updates/SLE-SDK/12-SP1/s390x/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-SDK12-SP1-Updates for s390x", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-sdk12-sp1-debuginfo-updates-s390x", + "parent_channel_label": "sles12-sp1-pool-s390x", + "product_id": 1344, + "repository_id": 1928, + "parent_product_id": 1335, + "root_product_id": 1335, + "update_tag": "SLE-SDK", + "url": "https://updates.suse.com/SUSE/Updates/SLE-SDK/12-SP1/s390x/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-SDK12-SP1-Debuginfo-Updates for s390x", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-sdk12-sp1-pool-s390x", + "parent_channel_label": "sles12-sp1-pool-s390x", + "product_id": 1344, + "repository_id": 1929, + "parent_product_id": 1335, + "root_product_id": 1335, + "update_tag": "SLE-SDK", + "url": "https://updates.suse.com/SUSE/Products/SLE-SDK/12-SP1/s390x/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-SDK12-SP1-Pool for s390x", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-sdk12-sp1-debuginfo-pool-s390x", + "parent_channel_label": "sles12-sp1-pool-s390x", + "product_id": 1344, + "repository_id": 1930, + "parent_product_id": 1335, + "root_product_id": 1335, + "update_tag": "SLE-SDK", + "url": "https://updates.suse.com/SUSE/Products/SLE-SDK/12-SP1/s390x/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-SDK12-SP1-Debuginfo-Pool for s390x", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-manager-server-3.0-updates-s390x", + "parent_channel_label": "sles12-sp1-pool-s390x", + "product_id": 1348, + "repository_id": 1945, + "parent_product_id": 1335, + "root_product_id": 1335, + "update_tag": "SUSE-Manager-Server-3.0", + "url": "https://updates.suse.com/SUSE/Updates/SUSE-Manager-Server/3.0/s390x/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-Manager-Server-3.0-Updates for s390x SP1", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-manager-server-3.0-debuginfo-updates-s390x", + "parent_channel_label": "sles12-sp1-pool-s390x", + "product_id": 1348, + "repository_id": 1946, + "parent_product_id": 1335, + "root_product_id": 1335, + "update_tag": "SUSE-Manager-Server-3.0", + "url": "https://updates.suse.com/SUSE/Updates/SUSE-Manager-Server/3.0/s390x/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SUSE-Manager-Server-3.0-Debuginfo-Updates for s390x SP1", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-manager-server-3.0-pool-s390x", + "parent_channel_label": "sles12-sp1-pool-s390x", + "product_id": 1348, + "repository_id": 1947, + "parent_product_id": 1335, + "root_product_id": 1335, + "update_tag": "SUSE-Manager-Server-3.0", + "url": "https://updates.suse.com/SUSE/Products/SUSE-Manager-Server/3.0/s390x/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-Manager-Server-3.0-Pool for s390x SP1", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-manager-server-3.0-debuginfo-pool-s390x", + "parent_channel_label": "sles12-sp1-pool-s390x", + "product_id": 1348, + "repository_id": 1948, + "parent_product_id": 1335, + "root_product_id": 1335, + "update_tag": "SUSE-Manager-Server-3.0", + "url": "https://updates.suse.com/SUSE/Products/SUSE-Manager-Server/3.0/s390x/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SUSE-Manager-Server-3.0-Debuginfo-Pool for s390x SP1", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-containers12-updates-s390x-sp1", + "parent_channel_label": "sles12-sp1-pool-s390x", + "product_id": 1354, + "repository_id": 1977, + "parent_product_id": 1335, + "root_product_id": 1335, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/12/s390x/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers12-Updates for s390x SP1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-containers12-debuginfo-updates-s390x-sp1", + "parent_channel_label": "sles12-sp1-pool-s390x", + "product_id": 1354, + "repository_id": 1978, + "parent_product_id": 1335, + "root_product_id": 1335, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/12/s390x/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers12-Debuginfo-Updates for s390x SP1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-containers12-pool-s390x-sp1", + "parent_channel_label": "sles12-sp1-pool-s390x", + "product_id": 1354, + "repository_id": 1979, + "parent_product_id": 1335, + "root_product_id": 1335, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Containers/12/s390x/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers12-Pool for s390x SP1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-containers12-debuginfo-pool-s390x-sp1", + "parent_channel_label": "sles12-sp1-pool-s390x", + "product_id": 1354, + "repository_id": 1980, + "parent_product_id": 1335, + "root_product_id": 1335, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Containers/12/s390x/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers12-Debuginfo-Pool for s390x SP1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-certifications12-updates-s390x-sp1", + "parent_channel_label": "sles12-sp1-pool-s390x", + "product_id": 1367, + "repository_id": 2064, + "parent_product_id": 1335, + "root_product_id": 1335, + "update_tag": "SLE-Module-Certifications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Certifications/12/s390x/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Certifications12-Updates for s390x SP1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-certifications12-debuginfo-updates-s390x-sp1", + "parent_channel_label": "sles12-sp1-pool-s390x", + "product_id": 1367, + "repository_id": 2065, + "parent_product_id": 1335, + "root_product_id": 1335, + "update_tag": "SLE-Module-Certifications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Certifications/12/s390x/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Certifications12-Debuginfo-Updates for s390x SP1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-certifications12-pool-s390x-sp1", + "parent_channel_label": "sles12-sp1-pool-s390x", + "product_id": 1367, + "repository_id": 2066, + "parent_product_id": 1335, + "root_product_id": 1335, + "update_tag": "SLE-Module-Certifications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Certifications/12/s390x/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Certifications12-Pool for s390x SP1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-certifications12-debuginfo-pool-s390x-sp1", + "parent_channel_label": "sles12-sp1-pool-s390x", + "product_id": 1367, + "repository_id": 2067, + "parent_product_id": 1335, + "root_product_id": 1335, + "update_tag": "SLE-Module-Certifications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Certifications/12/s390x/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Certifications12-Debuginfo-Pool for s390x SP1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-packagehub-12-sp1-s390x", + "parent_channel_label": "sles12-sp1-pool-s390x", + "product_id": 1477, + "repository_id": 2339, + "parent_product_id": 1335, + "root_product_id": 1335, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-12-SP1_s390x/standard/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-12-SP1-Standard-Pool for s390x", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-packagehub-12-sp1-debuginfo-s390x", + "parent_channel_label": "sles12-sp1-pool-s390x", + "product_id": 1477, + "repository_id": 2340, + "parent_product_id": 1335, + "root_product_id": 1335, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-12-SP1_s390x/standard_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-12-SP1-Debuginfo for s390x", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-packagehub-12-sp1-pool-s390x", + "parent_channel_label": "sles12-sp1-pool-s390x", + "product_id": 1477, + "repository_id": 2341, + "parent_product_id": 1335, + "root_product_id": 1335, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-12-SP1_s390x/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-12-SP1-Pool for s390x", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles12-sp1-ltss-updates-s390x", + "parent_channel_label": "sles12-sp1-pool-s390x", + "product_id": 1535, + "repository_id": 2461, + "parent_product_id": 1335, + "root_product_id": 1335, + "update_tag": "SLE-SERVER", + "url": "https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-SP1-LTSS/s390x/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLES12-SP1-LTSS-Updates for s390x", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles12-sp1-ltss-debuginfo-updates-s390x", + "parent_channel_label": "sles12-sp1-pool-s390x", + "product_id": 1535, + "repository_id": 2462, + "parent_product_id": 1335, + "root_product_id": 1335, + "update_tag": "SLE-SERVER", + "url": "https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-SP1-LTSS/s390x/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLES12-SP1-LTSS-Debuginfo-Updates for s390x", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-manager-tools12-beta-updates-s390x-sp1", + "parent_channel_label": "sles12-sp1-pool-s390x", + "product_id": 1746, + "repository_id": 3072, + "parent_product_id": 1335, + "root_product_id": 1335, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/12-BETA/s390x/update/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools12-BETA-Updates for s390x SP1", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools12-beta-debuginfo-updates-s390x-sp1", + "parent_channel_label": "sles12-sp1-pool-s390x", + "product_id": 1746, + "repository_id": 3073, + "parent_product_id": 1335, + "root_product_id": 1335, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/12-BETA/s390x/update_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools12-BETA-Debuginfo-Updates for s390x SP1", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools12-beta-pool-s390x-sp1", + "parent_channel_label": "sles12-sp1-pool-s390x", + "product_id": 1746, + "repository_id": 3074, + "parent_product_id": 1335, + "root_product_id": 1335, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/12-BETA/s390x/product/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools12-BETA-Pool for s390x SP1", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools12-beta-debuginfo-pool-s390x-sp1", + "parent_channel_label": "sles12-sp1-pool-s390x", + "product_id": 1746, + "repository_id": 3075, + "parent_product_id": 1335, + "root_product_id": 1335, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/12-BETA/s390x/product_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools12-BETA-Debuginfo-Pool for s390x SP1", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools12-updates-x86_64-sap-sp1", + "parent_channel_label": "sle12-sp1-sap-pool-x86_64", + "product_id": 1346, + "repository_id": 1732, + "parent_product_id": null, + "root_product_id": 1346, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/12/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Manager-Tools12-Updates for x86_64 SAP SP1", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools12-debuginfo-updates-x86_64-sap-sp1", + "parent_channel_label": "sle12-sp1-sap-pool-x86_64", + "product_id": 1346, + "repository_id": 1733, + "parent_product_id": null, + "root_product_id": 1346, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/12/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Manager-Tools12-Debuginfo-Updates for x86_64 SAP SP1", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools12-pool-x86_64-sap-sp1", + "parent_channel_label": "sle12-sp1-sap-pool-x86_64", + "product_id": 1346, + "repository_id": 1734, + "parent_product_id": null, + "root_product_id": 1346, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/12/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Manager-Tools12-Pool for x86_64 SAP SP1", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools12-debuginfo-pool-x86_64-sap-sp1", + "parent_channel_label": "sle12-sp1-sap-pool-x86_64", + "product_id": 1346, + "repository_id": 1735, + "parent_product_id": null, + "root_product_id": 1346, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/12/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Manager-Tools12-Debuginfo-Pool for x86_64 SAP SP1", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sles12-sp1-updates-x86_64-sap-sp1", + "parent_channel_label": "sle12-sp1-sap-pool-x86_64", + "product_id": 1346, + "repository_id": 1846, + "parent_product_id": null, + "root_product_id": 1346, + "update_tag": "SLE-SERVER", + "url": "https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-SP1/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLES12-SP1-Updates for x86_64 SAP", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles12-sp1-debuginfo-updates-x86_64-sap-sp1", + "parent_channel_label": "sle12-sp1-sap-pool-x86_64", + "product_id": 1346, + "repository_id": 1847, + "parent_product_id": null, + "root_product_id": 1346, + "update_tag": "SLE-SERVER", + "url": "https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-SP1/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLES12-SP1-Debuginfo-Updates for x86_64 SAP", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles12-sp1-pool-x86_64-sap-sp1", + "parent_channel_label": "sle12-sp1-sap-pool-x86_64", + "product_id": 1346, + "repository_id": 1848, + "parent_product_id": null, + "root_product_id": 1346, + "update_tag": "SLE-SERVER", + "url": "https://updates.suse.com/SUSE/Products/SLE-SERVER/12-SP1/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLES12-SP1-Pool for x86_64 SAP", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles12-sp1-debuginfo-pool-x86_64-sap-sp1", + "parent_channel_label": "sle12-sp1-sap-pool-x86_64", + "product_id": 1346, + "repository_id": 1849, + "parent_product_id": null, + "root_product_id": 1346, + "update_tag": "SLE-SERVER", + "url": "https://updates.suse.com/SUSE/Products/SLE-SERVER/12-SP1/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLES12-SP1-Debuginfo-Pool for x86_64 SAP", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-ha12-sp1-updates-x86_64-sap-sp1", + "parent_channel_label": "sle12-sp1-sap-pool-x86_64", + "product_id": 1346, + "repository_id": 1854, + "parent_product_id": null, + "root_product_id": 1346, + "update_tag": "SLE-HA", + "url": "https://updates.suse.com/SUSE/Updates/SLE-HA/12-SP1/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-HA12-SP1-Updates for x86_64 SAP", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-ha12-sp1-debuginfo-updates-x86_64-sap-sp1", + "parent_channel_label": "sle12-sp1-sap-pool-x86_64", + "product_id": 1346, + "repository_id": 1855, + "parent_product_id": null, + "root_product_id": 1346, + "update_tag": "SLE-HA", + "url": "https://updates.suse.com/SUSE/Updates/SLE-HA/12-SP1/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-HA12-SP1-Debuginfo-Updates for x86_64 SAP", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-ha12-sp1-pool-x86_64-sap-sp1", + "parent_channel_label": "sle12-sp1-sap-pool-x86_64", + "product_id": 1346, + "repository_id": 1856, + "parent_product_id": null, + "root_product_id": 1346, + "update_tag": "SLE-HA", + "url": "https://updates.suse.com/SUSE/Products/SLE-HA/12-SP1/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-HA12-SP1-Pool for x86_64 SAP", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-ha12-sp1-debuginfo-pool-x86_64-sap-sp1", + "parent_channel_label": "sle12-sp1-sap-pool-x86_64", + "product_id": 1346, + "repository_id": 1857, + "parent_product_id": null, + "root_product_id": 1346, + "update_tag": "SLE-HA", + "url": "https://updates.suse.com/SUSE/Products/SLE-HA/12-SP1/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-HA12-SP1-Debuginfo-Pool for x86_64 SAP", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-12-sp1-sap-updates-x86_64", + "parent_channel_label": "sle12-sp1-sap-pool-x86_64", + "product_id": 1346, + "repository_id": 1937, + "parent_product_id": null, + "root_product_id": 1346, + "update_tag": "SLE-SAP-12-SP1", + "url": "https://updates.suse.com/SUSE/Updates/SLE-SAP/12-SP1/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-12-SP1-SAP-Updates for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-12-sp1-sap-debuginfo-updates-x86_64", + "parent_channel_label": "sle12-sp1-sap-pool-x86_64", + "product_id": 1346, + "repository_id": 1938, + "parent_product_id": null, + "root_product_id": 1346, + "update_tag": "SLE-SAP-12-SP1", + "url": "https://updates.suse.com/SUSE/Updates/SLE-SAP/12-SP1/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-12-SP1-SAP-Debuginfo-Updates for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle12-sp1-sap-pool-x86_64", + "parent_channel_label": null, + "product_id": 1346, + "repository_id": 1939, + "parent_product_id": null, + "root_product_id": 1346, + "update_tag": "SLE-SAP-12-SP1", + "url": "https://updates.suse.com/SUSE/Products/SLE-SAP/12-SP1/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE12-SP1-SAP-Pool for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle12-sp1-sap-debuginfo-pool-x86_64", + "parent_channel_label": "sle12-sp1-sap-pool-x86_64", + "product_id": 1346, + "repository_id": 1940, + "parent_product_id": null, + "root_product_id": 1346, + "update_tag": "SLE-SAP-12-SP1", + "url": "https://updates.suse.com/SUSE/Products/SLE-SAP/12-SP1/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE12-SP1-SAP-Debuginfo-Pool for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-legacy12-updates-x86_64-sap-sp1", + "parent_channel_label": "sle12-sp1-sap-pool-x86_64", + "product_id": 1150, + "repository_id": 1676, + "parent_product_id": 1346, + "root_product_id": 1346, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/12/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy12-Updates for x86_64 SAP SP1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-legacy12-debuginfo-updates-x86_64-sap-sp1", + "parent_channel_label": "sle12-sp1-sap-pool-x86_64", + "product_id": 1150, + "repository_id": 1677, + "parent_product_id": 1346, + "root_product_id": 1346, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/12/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy12-Debuginfo-Updates for x86_64 SAP SP1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-legacy12-pool-x86_64-sap-sp1", + "parent_channel_label": "sle12-sp1-sap-pool-x86_64", + "product_id": 1150, + "repository_id": 1678, + "parent_product_id": 1346, + "root_product_id": 1346, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/12/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy12-Pool for x86_64 SAP SP1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-legacy12-debuginfo-pool-x86_64-sap-sp1", + "parent_channel_label": "sle12-sp1-sap-pool-x86_64", + "product_id": 1150, + "repository_id": 1679, + "parent_product_id": 1346, + "root_product_id": 1346, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/12/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy12-Debuginfo-Pool for x86_64 SAP SP1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting12-updates-x86_64-sap-sp1", + "parent_channel_label": "sle12-sp1-sap-pool-x86_64", + "product_id": 1153, + "repository_id": 1688, + "parent_product_id": 1346, + "root_product_id": 1346, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/12/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Web-Scripting12-Updates for x86_64 SAP SP1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting12-debuginfo-updates-x86_64-sap-sp1", + "parent_channel_label": "sle12-sp1-sap-pool-x86_64", + "product_id": 1153, + "repository_id": 1689, + "parent_product_id": 1346, + "root_product_id": 1346, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/12/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Web-Scripting12-Debuginfo-Updates for x86_64 SAP SP1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting12-pool-x86_64-sap-sp1", + "parent_channel_label": "sle12-sp1-sap-pool-x86_64", + "product_id": 1153, + "repository_id": 1690, + "parent_product_id": 1346, + "root_product_id": 1346, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/12/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Web-Scripting12-Pool for x86_64 SAP SP1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting12-debuginfo-pool-x86_64-sap-sp1", + "parent_channel_label": "sle12-sp1-sap-pool-x86_64", + "product_id": 1153, + "repository_id": 1691, + "parent_product_id": 1346, + "root_product_id": 1346, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/12/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Web-Scripting12-Debuginfo-Pool for x86_64 SAP SP1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-adv-systems-management12-updates-x86_64-sap-sp1", + "parent_channel_label": "sle12-sp1-sap-pool-x86_64", + "product_id": 1212, + "repository_id": 1704, + "parent_product_id": 1346, + "root_product_id": 1346, + "update_tag": "SLE-Module-Adv-Systems-Management", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Adv-Systems-Management/12/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Adv-Systems-Management12-Updates for x86_64 SAP SP1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-adv-systems-management12-debuginfo-updates-x86_64-sap-sp1", + "parent_channel_label": "sle12-sp1-sap-pool-x86_64", + "product_id": 1212, + "repository_id": 1705, + "parent_product_id": 1346, + "root_product_id": 1346, + "update_tag": "SLE-Module-Adv-Systems-Management", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Adv-Systems-Management/12/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Adv-Systems-Management12-Debuginfo-Updates for x86_64 SAP SP1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-adv-systems-management12-pool-x86_64-sap-sp1", + "parent_channel_label": "sle12-sp1-sap-pool-x86_64", + "product_id": 1212, + "repository_id": 1706, + "parent_product_id": 1346, + "root_product_id": 1346, + "update_tag": "SLE-Module-Adv-Systems-Management", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Adv-Systems-Management/12/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Adv-Systems-Management12-Pool for x86_64 SAP SP1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-adv-systems-management12-debuginfo-pool-x86_64-sap-sp1", + "parent_channel_label": "sle12-sp1-sap-pool-x86_64", + "product_id": 1212, + "repository_id": 1707, + "parent_product_id": 1346, + "root_product_id": 1346, + "update_tag": "SLE-Module-Adv-Systems-Management", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Adv-Systems-Management/12/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Adv-Systems-Management12-Debuginfo-Pool for x86_64 SAP SP1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud12-updates-x86_64-sap-sp1", + "parent_channel_label": "sle12-sp1-sap-pool-x86_64", + "product_id": 1220, + "repository_id": 1700, + "parent_product_id": 1346, + "root_product_id": 1346, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/12/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud12-Updates for x86_64 SAP SP1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud12-debuginfo-updates-x86_64-sap-sp1", + "parent_channel_label": "sle12-sp1-sap-pool-x86_64", + "product_id": 1220, + "repository_id": 1701, + "parent_product_id": 1346, + "root_product_id": 1346, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/12/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud12-Debuginfo-Updates for x86_64 SAP SP1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud12-pool-x86_64-sap-sp1", + "parent_channel_label": "sle12-sp1-sap-pool-x86_64", + "product_id": 1220, + "repository_id": 1702, + "parent_product_id": 1346, + "root_product_id": 1346, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/12/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud12-Pool for x86_64 SAP SP1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud12-debuginfo-pool-x86_64-sap-sp1", + "parent_channel_label": "sle12-sp1-sap-pool-x86_64", + "product_id": 1220, + "repository_id": 1703, + "parent_product_id": 1346, + "root_product_id": 1346, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/12/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud12-Debuginfo-Pool for x86_64 SAP SP1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-live-patching12-updates-x86_64-sap-sp1", + "parent_channel_label": "sle12-sp1-sap-pool-x86_64", + "product_id": 1253, + "repository_id": 1741, + "parent_product_id": 1346, + "root_product_id": 1346, + "update_tag": "SLE-Live-Patching", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Live-Patching/12/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Live-Patching12-Updates for x86_64 SAP SP1", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-live-patching12-debuginfo-updates-x86_64-sap-sp1", + "parent_channel_label": "sle12-sp1-sap-pool-x86_64", + "product_id": 1253, + "repository_id": 1742, + "parent_product_id": 1346, + "root_product_id": 1346, + "update_tag": "SLE-Live-Patching", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Live-Patching/12/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Live-Patching12-Debuginfo-Updates for x86_64 SAP SP1", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-live-patching12-pool-x86_64-sap-sp1", + "parent_channel_label": "sle12-sp1-sap-pool-x86_64", + "product_id": 1253, + "repository_id": 1743, + "parent_product_id": 1346, + "root_product_id": 1346, + "update_tag": "SLE-Live-Patching", + "url": "https://updates.suse.com/SUSE/Products/SLE-Live-Patching/12/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Live-Patching12-Pool for x86_64 SAP SP1", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-live-patching12-debuginfo-pool-x86_64-sap-sp1", + "parent_channel_label": "sle12-sp1-sap-pool-x86_64", + "product_id": 1253, + "repository_id": 1744, + "parent_product_id": 1346, + "root_product_id": 1346, + "update_tag": "SLE-Live-Patching", + "url": "https://updates.suse.com/SUSE/Products/SLE-Live-Patching/12/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Live-Patching12-Debuginfo-Pool for x86_64 SAP SP1", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-sdk12-sp1-updates-x86_64-sap-sp1", + "parent_channel_label": "sle12-sp1-sap-pool-x86_64", + "product_id": 1323, + "repository_id": 1850, + "parent_product_id": 1346, + "root_product_id": 1346, + "update_tag": "SLE-SDK", + "url": "https://updates.suse.com/SUSE/Updates/SLE-SDK/12-SP1/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-SDK12-SP1-Updates for x86_64 SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-sdk12-sp1-debuginfo-updates-x86_64-sap-sp1", + "parent_channel_label": "sle12-sp1-sap-pool-x86_64", + "product_id": 1323, + "repository_id": 1851, + "parent_product_id": 1346, + "root_product_id": 1346, + "update_tag": "SLE-SDK", + "url": "https://updates.suse.com/SUSE/Updates/SLE-SDK/12-SP1/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-SDK12-SP1-Debuginfo-Updates for x86_64 SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-sdk12-sp1-pool-x86_64-sap-sp1", + "parent_channel_label": "sle12-sp1-sap-pool-x86_64", + "product_id": 1323, + "repository_id": 1852, + "parent_product_id": 1346, + "root_product_id": 1346, + "update_tag": "SLE-SDK", + "url": "https://updates.suse.com/SUSE/Products/SLE-SDK/12-SP1/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-SDK12-SP1-Pool for x86_64 SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-sdk12-sp1-debuginfo-pool-x86_64-sap-sp1", + "parent_channel_label": "sle12-sp1-sap-pool-x86_64", + "product_id": 1323, + "repository_id": 1853, + "parent_product_id": 1346, + "root_product_id": 1346, + "update_tag": "SLE-SDK", + "url": "https://updates.suse.com/SUSE/Products/SLE-SDK/12-SP1/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-SDK12-SP1-Debuginfo-Pool for x86_64 SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-containers12-updates-x86_64-sap-sp1", + "parent_channel_label": "sle12-sp1-sap-pool-x86_64", + "product_id": 1332, + "repository_id": 1864, + "parent_product_id": 1346, + "root_product_id": 1346, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/12/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers12-Updates for x86_64 SAP SP1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-containers12-debuginfo-updates-x86_64-sap-sp1", + "parent_channel_label": "sle12-sp1-sap-pool-x86_64", + "product_id": 1332, + "repository_id": 1865, + "parent_product_id": 1346, + "root_product_id": 1346, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/12/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers12-Debuginfo-Updates for x86_64 SAP SP1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-containers12-pool-x86_64-sap-sp1", + "parent_channel_label": "sle12-sp1-sap-pool-x86_64", + "product_id": 1332, + "repository_id": 1866, + "parent_product_id": 1346, + "root_product_id": 1346, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Containers/12/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers12-Pool for x86_64 SAP SP1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-containers12-debuginfo-pool-x86_64-sap-sp1", + "parent_channel_label": "sle12-sp1-sap-pool-x86_64", + "product_id": 1332, + "repository_id": 1867, + "parent_product_id": 1346, + "root_product_id": 1346, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Containers/12/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers12-Debuginfo-Pool for x86_64 SAP SP1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-ha-geo12-sp1-updates-x86_64-sap-sp1", + "parent_channel_label": "sle12-sp1-sap-pool-x86_64", + "product_id": 1337, + "repository_id": 1887, + "parent_product_id": 1346, + "root_product_id": 1346, + "update_tag": "SLE-HA-GEO", + "url": "https://updates.suse.com/SUSE/Updates/SLE-HA-GEO/12-SP1/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-HA-GEO12-SP1-Updates for x86_64 SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-ha-geo12-sp1-debuginfo-updates-x86_64-sap-sp1", + "parent_channel_label": "sle12-sp1-sap-pool-x86_64", + "product_id": 1337, + "repository_id": 1888, + "parent_product_id": 1346, + "root_product_id": 1346, + "update_tag": "SLE-HA-GEO", + "url": "https://updates.suse.com/SUSE/Updates/SLE-HA-GEO/12-SP1/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-HA-GEO12-SP1-Debuginfo-Updates for x86_64 SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-ha-geo12-sp1-pool-x86_64-sap-sp1", + "parent_channel_label": "sle12-sp1-sap-pool-x86_64", + "product_id": 1337, + "repository_id": 1889, + "parent_product_id": 1346, + "root_product_id": 1346, + "update_tag": "SLE-HA-GEO", + "url": "https://updates.suse.com/SUSE/Products/SLE-HA-GEO/12-SP1/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-HA-GEO12-SP1-Pool for x86_64 SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-ha-geo12-sp1-debuginfo-pool-x86_64-sap-sp1", + "parent_channel_label": "sle12-sp1-sap-pool-x86_64", + "product_id": 1337, + "repository_id": 1890, + "parent_product_id": 1346, + "root_product_id": 1346, + "update_tag": "SLE-HA-GEO", + "url": "https://updates.suse.com/SUSE/Products/SLE-HA-GEO/12-SP1/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-HA-GEO12-SP1-Debuginfo-Pool for x86_64 SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-we12-sp1-updates-x86_64-sap-sp1", + "parent_channel_label": "sle12-sp1-sap-pool-x86_64", + "product_id": 1338, + "repository_id": 1891, + "parent_product_id": 1346, + "root_product_id": 1346, + "update_tag": "SLE-WE", + "url": "https://updates.suse.com/SUSE/Updates/SLE-WE/12-SP1/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-WE12-SP1-Updates for x86_64 SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-we12-sp1-debuginfo-updates-x86_64-sap-sp1", + "parent_channel_label": "sle12-sp1-sap-pool-x86_64", + "product_id": 1338, + "repository_id": 1892, + "parent_product_id": 1346, + "root_product_id": 1346, + "update_tag": "SLE-WE", + "url": "https://updates.suse.com/SUSE/Updates/SLE-WE/12-SP1/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-WE12-SP1-Debuginfo-Updates for x86_64 SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-we12-sp1-pool-x86_64-sap-sp1", + "parent_channel_label": "sle12-sp1-sap-pool-x86_64", + "product_id": 1338, + "repository_id": 1893, + "parent_product_id": 1346, + "root_product_id": 1346, + "update_tag": "SLE-WE", + "url": "https://updates.suse.com/SUSE/Products/SLE-WE/12-SP1/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-WE12-SP1-Pool for x86_64 SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-we12-sp1-debuginfo-pool-x86_64-sap-sp1", + "parent_channel_label": "sle12-sp1-sap-pool-x86_64", + "product_id": 1338, + "repository_id": 1894, + "parent_product_id": 1346, + "root_product_id": 1346, + "update_tag": "SLE-WE", + "url": "https://updates.suse.com/SUSE/Products/SLE-WE/12-SP1/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-WE12-SP1-Debuginfo-Pool for x86_64 SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-12-sp1-ga-desktop-nvidia-driver-x86_64-we-sap-sp1", + "parent_channel_label": "sle12-sp1-sap-pool-x86_64", + "product_id": 1338, + "repository_id": 1911, + "parent_product_id": 1346, + "root_product_id": 1346, + "update_tag": null, + "url": "http://download.nvidia.com/novell/sle12sp1/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-12-SP1-GA-Desktop-nVidia-Driver for x86_64 WE-SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-toolchain12-updates-x86_64-sap-sp1", + "parent_channel_label": "sle12-sp1-sap-pool-x86_64", + "product_id": 1341, + "repository_id": 1903, + "parent_product_id": 1346, + "root_product_id": 1346, + "update_tag": "SLE-Module-Toolchain", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Toolchain/12/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Toolchain12-Updates for x86_64 SAP SP1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-toolchain12-debuginfo-updates-x86_64-sap-sp1", + "parent_channel_label": "sle12-sp1-sap-pool-x86_64", + "product_id": 1341, + "repository_id": 1904, + "parent_product_id": 1346, + "root_product_id": 1346, + "update_tag": "SLE-Module-Toolchain", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Toolchain/12/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Toolchain12-Debuginfo-Updates for x86_64 SAP SP1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-toolchain12-pool-x86_64-sap-sp1", + "parent_channel_label": "sle12-sp1-sap-pool-x86_64", + "product_id": 1341, + "repository_id": 1905, + "parent_product_id": 1346, + "root_product_id": 1346, + "update_tag": "SLE-Module-Toolchain", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Toolchain/12/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Toolchain12-Pool for x86_64 SAP SP1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-toolchain12-debuginfo-pool-x86_64-sap-sp1", + "parent_channel_label": "sle12-sp1-sap-pool-x86_64", + "product_id": 1341, + "repository_id": 1906, + "parent_product_id": 1346, + "root_product_id": 1346, + "update_tag": "SLE-Module-Toolchain", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Toolchain/12/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Toolchain12-Debuginfo-Pool for x86_64 SAP SP1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-openstack-cloud-6-updates-x86_64-sap-sp1", + "parent_channel_label": "sle12-sp1-sap-pool-x86_64", + "product_id": 1347, + "repository_id": 1941, + "parent_product_id": 1346, + "root_product_id": 1346, + "update_tag": "OpenStack-Cloud-6", + "url": "https://updates.suse.com/SUSE/Updates/OpenStack-Cloud/6/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-OpenStack-Cloud-6-Updates for x86_64 SAP SP1", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-openstack-cloud-6-debuginfo-updates-x86_64-sap-sp1", + "parent_channel_label": "sle12-sp1-sap-pool-x86_64", + "product_id": 1347, + "repository_id": 1942, + "parent_product_id": 1346, + "root_product_id": 1346, + "update_tag": "OpenStack-Cloud-6", + "url": "https://updates.suse.com/SUSE/Updates/OpenStack-Cloud/6/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SUSE-OpenStack-Cloud-6-Debuginfo-Updates for x86_64 SAP SP1", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-openstack-cloud-6-pool-x86_64-sap-sp1", + "parent_channel_label": "sle12-sp1-sap-pool-x86_64", + "product_id": 1347, + "repository_id": 1943, + "parent_product_id": 1346, + "root_product_id": 1346, + "update_tag": "OpenStack-Cloud-6", + "url": "https://updates.suse.com/SUSE/Products/OpenStack-Cloud/6/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-OpenStack-Cloud-6-Pool for x86_64 SAP SP1", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-openstack-cloud-6-debuginfo-pool-x86_64-sap-sp1", + "parent_channel_label": "sle12-sp1-sap-pool-x86_64", + "product_id": 1347, + "repository_id": 1944, + "parent_product_id": 1346, + "root_product_id": 1346, + "update_tag": "OpenStack-Cloud-6", + "url": "https://updates.suse.com/SUSE/Products/OpenStack-Cloud/6/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SUSE-OpenStack-Cloud-6-Debuginfo-Pool for x86_64 SAP SP1", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-openstack-cloud-continuous-delivery-6-updates-x86_64-sap-sp1", + "parent_channel_label": "sle12-sp1-sap-pool-x86_64", + "product_id": 1538, + "repository_id": 2471, + "parent_product_id": 1347, + "root_product_id": 1346, + "update_tag": "OpenStack-Cloud-6-Continuous", + "url": "https://updates.suse.com/SUSE/Updates/OpenStack-Cloud/6-Continuous/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-OpenStack-Cloud-Continuous-Delivery-6-Updates for x86_64 SAP SP1", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-openstack-cloud-continuous-delivery-6-debuginfo-updates-x86_64-sap-sp1", + "parent_channel_label": "sle12-sp1-sap-pool-x86_64", + "product_id": 1538, + "repository_id": 2472, + "parent_product_id": 1347, + "root_product_id": 1346, + "update_tag": "OpenStack-Cloud-6-Continuous", + "url": "https://updates.suse.com/SUSE/Updates/OpenStack-Cloud/6-Continuous/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SUSE-OpenStack-Cloud-Continuous-Delivery-6-Debuginfo-Updates for x86_64 SAP SP1", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-openstack-cloud-continuous-delivery-6-pool-x86_64-sap-sp1", + "parent_channel_label": "sle12-sp1-sap-pool-x86_64", + "product_id": 1538, + "repository_id": 2473, + "parent_product_id": 1347, + "root_product_id": 1346, + "update_tag": "OpenStack-Cloud-6-Continuous", + "url": "https://updates.suse.com/SUSE/Products/OpenStack-Cloud/6-Continuous/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-OpenStack-Cloud-Continuous-Delivery-6-Pool for x86_64 SAP SP1", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-openstack-cloud-continuous-delivery-6-debuginfo-pool-x86_64-sap-sp1", + "parent_channel_label": "sle12-sp1-sap-pool-x86_64", + "product_id": 1538, + "repository_id": 2474, + "parent_product_id": 1347, + "root_product_id": 1346, + "update_tag": "OpenStack-Cloud-6-Continuous", + "url": "https://updates.suse.com/SUSE/Products/OpenStack-Cloud/6-Continuous/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SUSE-OpenStack-Cloud-Continuous-Delivery-6-Debuginfo-Pool for x86_64 SAP SP1", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-rt12-sp1-updates-x86_64-sap-sp1", + "parent_channel_label": "sle12-sp1-sap-pool-x86_64", + "product_id": 1350, + "repository_id": 1953, + "parent_product_id": 1346, + "root_product_id": 1346, + "update_tag": "SLE-RT", + "url": "https://updates.suse.com/SUSE/Updates/SLE-RT/12-SP1/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-RT12-SP1-Updates for x86_64 SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-rt12-sp1-debuginfo-updates-x86_64-sap-sp1", + "parent_channel_label": "sle12-sp1-sap-pool-x86_64", + "product_id": 1350, + "repository_id": 1954, + "parent_product_id": 1346, + "root_product_id": 1346, + "update_tag": "SLE-RT", + "url": "https://updates.suse.com/SUSE/Updates/SLE-RT/12-SP1/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-RT12-SP1-Debuginfo-Updates for x86_64 SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-rt12-sp1-pool-x86_64-sap-sp1", + "parent_channel_label": "sle12-sp1-sap-pool-x86_64", + "product_id": 1350, + "repository_id": 1955, + "parent_product_id": 1346, + "root_product_id": 1346, + "update_tag": "SLE-RT", + "url": "https://updates.suse.com/SUSE/Products/SLE-RT/12-SP1/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-RT12-SP1-Pool for x86_64 SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-rt12-sp1-debuginfo-pool-x86_64-sap-sp1", + "parent_channel_label": "sle12-sp1-sap-pool-x86_64", + "product_id": 1350, + "repository_id": 1956, + "parent_product_id": 1346, + "root_product_id": 1346, + "update_tag": "SLE-RT", + "url": "https://updates.suse.com/SUSE/Products/SLE-RT/12-SP1/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-RT12-SP1-Debuginfo-Pool for x86_64 SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-enterprise-storage-2.1-updates-x86_64-sap-sp1", + "parent_channel_label": "sle12-sp1-sap-pool-x86_64", + "product_id": 1351, + "repository_id": 1958, + "parent_product_id": 1346, + "root_product_id": 1346, + "update_tag": "Storage-2.1", + "url": "https://updates.suse.com/SUSE/Updates/Storage/2.1/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-Enterprise-Storage-2.1-Updates for x86_64 SAP SP1", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-enterprise-storage-2.1-debuginfo-updates-x86_64-sap-sp1", + "parent_channel_label": "sle12-sp1-sap-pool-x86_64", + "product_id": 1351, + "repository_id": 1959, + "parent_product_id": 1346, + "root_product_id": 1346, + "update_tag": "Storage-2.1", + "url": "https://updates.suse.com/SUSE/Updates/Storage/2.1/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SUSE-Enterprise-Storage-2.1-Debuginfo-Updates for x86_64 SAP SP1", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-enterprise-storage-2.1-pool-x86_64-sap-sp1", + "parent_channel_label": "sle12-sp1-sap-pool-x86_64", + "product_id": 1351, + "repository_id": 1960, + "parent_product_id": 1346, + "root_product_id": 1346, + "update_tag": "Storage-2.1", + "url": "https://updates.suse.com/SUSE/Products/Storage/2.1/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-Enterprise-Storage-2.1-Pool for x86_64 SAP SP1", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-enterprise-storage-2.1-debuginfo-pool-x86_64-sap-sp1", + "parent_channel_label": "sle12-sp1-sap-pool-x86_64", + "product_id": 1351, + "repository_id": 1961, + "parent_product_id": 1346, + "root_product_id": 1346, + "update_tag": "Storage-2.1", + "url": "https://updates.suse.com/SUSE/Products/Storage/2.1/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SUSE-Enterprise-Storage-2.1-Debuginfo-Pool for x86_64 SAP SP1", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-manager-proxy-3.0-updates-x86_64-sap-sp1", + "parent_channel_label": "sle12-sp1-sap-pool-x86_64", + "product_id": 1352, + "repository_id": 1968, + "parent_product_id": 1346, + "root_product_id": 1346, + "update_tag": "SUSE-Manager-Proxy-3.0", + "url": "https://updates.suse.com/SUSE/Updates/SUSE-Manager-Proxy/3.0/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-Manager-Proxy-3.0-Updates for x86_64 SAP SP1", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-manager-proxy-3.0-debuginfo-updates-x86_64-sap-sp1", + "parent_channel_label": "sle12-sp1-sap-pool-x86_64", + "product_id": 1352, + "repository_id": 1969, + "parent_product_id": 1346, + "root_product_id": 1346, + "update_tag": "SUSE-Manager-Proxy-3.0", + "url": "https://updates.suse.com/SUSE/Updates/SUSE-Manager-Proxy/3.0/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SUSE-Manager-Proxy-3.0-Debuginfo-Updates for x86_64 SAP SP1", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-manager-proxy-3.0-pool-x86_64-sap-sp1", + "parent_channel_label": "sle12-sp1-sap-pool-x86_64", + "product_id": 1352, + "repository_id": 1970, + "parent_product_id": 1346, + "root_product_id": 1346, + "update_tag": "SUSE-Manager-Proxy-3.0", + "url": "https://updates.suse.com/SUSE/Products/SUSE-Manager-Proxy/3.0/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-Manager-Proxy-3.0-Pool for x86_64 SAP SP1", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-manager-proxy-3.0-debuginfo-pool-x86_64-sap-sp1", + "parent_channel_label": "sle12-sp1-sap-pool-x86_64", + "product_id": 1352, + "repository_id": 1971, + "parent_product_id": 1346, + "root_product_id": 1346, + "update_tag": "SUSE-Manager-Proxy-3.0", + "url": "https://updates.suse.com/SUSE/Products/SUSE-Manager-Proxy/3.0/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SUSE-Manager-Proxy-3.0-Debuginfo-Pool for x86_64 SAP SP1", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-certifications12-updates-x86_64-sap-sp1", + "parent_channel_label": "sle12-sp1-sap-pool-x86_64", + "product_id": 1368, + "repository_id": 2068, + "parent_product_id": 1346, + "root_product_id": 1346, + "update_tag": "SLE-Module-Certifications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Certifications/12/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Certifications12-Updates for x86_64 SAP SP1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-certifications12-debuginfo-updates-x86_64-sap-sp1", + "parent_channel_label": "sle12-sp1-sap-pool-x86_64", + "product_id": 1368, + "repository_id": 2069, + "parent_product_id": 1346, + "root_product_id": 1346, + "update_tag": "SLE-Module-Certifications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Certifications/12/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Certifications12-Debuginfo-Updates for x86_64 SAP SP1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-certifications12-pool-x86_64-sap-sp1", + "parent_channel_label": "sle12-sp1-sap-pool-x86_64", + "product_id": 1368, + "repository_id": 2070, + "parent_product_id": 1346, + "root_product_id": 1346, + "update_tag": "SLE-Module-Certifications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Certifications/12/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Certifications12-Pool for x86_64 SAP SP1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-certifications12-debuginfo-pool-x86_64-sap-sp1", + "parent_channel_label": "sle12-sp1-sap-pool-x86_64", + "product_id": 1368, + "repository_id": 2071, + "parent_product_id": 1346, + "root_product_id": 1346, + "update_tag": "SLE-Module-Certifications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Certifications/12/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Certifications12-Debuginfo-Pool for x86_64 SAP SP1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-enterprise-storage-3-updates-x86_64-sap-sp1", + "parent_channel_label": "sle12-sp1-sap-pool-x86_64", + "product_id": 1369, + "repository_id": 2072, + "parent_product_id": 1346, + "root_product_id": 1346, + "update_tag": "Storage-3", + "url": "https://updates.suse.com/SUSE/Updates/Storage/3/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-Enterprise-Storage-3-Updates for x86_64 SAP SP1", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-enterprise-storage-3-debuginfo-updates-x86_64-sap-sp1", + "parent_channel_label": "sle12-sp1-sap-pool-x86_64", + "product_id": 1369, + "repository_id": 2073, + "parent_product_id": 1346, + "root_product_id": 1346, + "update_tag": "Storage-3", + "url": "https://updates.suse.com/SUSE/Updates/Storage/3/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SUSE-Enterprise-Storage-3-Debuginfo-Updates for x86_64 SAP SP1", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-enterprise-storage-3-pool-x86_64-sap-sp1", + "parent_channel_label": "sle12-sp1-sap-pool-x86_64", + "product_id": 1369, + "repository_id": 2074, + "parent_product_id": 1346, + "root_product_id": 1346, + "update_tag": "Storage-3", + "url": "https://updates.suse.com/SUSE/Products/Storage/3/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-Enterprise-Storage-3-Pool for x86_64 SAP SP1", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-enterprise-storage-3-debuginfo-pool-x86_64-sap-sp1", + "parent_channel_label": "sle12-sp1-sap-pool-x86_64", + "product_id": 1369, + "repository_id": 2075, + "parent_product_id": 1346, + "root_product_id": 1346, + "update_tag": "Storage-3", + "url": "https://updates.suse.com/SUSE/Products/Storage/3/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SUSE-Enterprise-Storage-3-Debuginfo-Pool for x86_64 SAP SP1", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-packagehub-12-sp1-x86_64-sap-sp1", + "parent_channel_label": "sle12-sp1-sap-pool-x86_64", + "product_id": 1476, + "repository_id": 2336, + "parent_product_id": 1346, + "root_product_id": 1346, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-12-SP1_x86_64/standard/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-12-SP1-Standard-Pool for x86_64 SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-packagehub-12-sp1-debuginfo-x86_64-sap-sp1", + "parent_channel_label": "sle12-sp1-sap-pool-x86_64", + "product_id": 1476, + "repository_id": 2337, + "parent_product_id": 1346, + "root_product_id": 1346, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-12-SP1_x86_64/standard_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-12-SP1-Debuginfo for x86_64 SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-packagehub-12-sp1-pool-x86_64-sap-sp1", + "parent_channel_label": "sle12-sp1-sap-pool-x86_64", + "product_id": 1476, + "repository_id": 2338, + "parent_product_id": 1346, + "root_product_id": 1346, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-12-SP1_x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-12-SP1-Pool for x86_64 SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles12-sp1-ltss-updates-x86_64-sap-sp1", + "parent_channel_label": "sle12-sp1-sap-pool-x86_64", + "product_id": 1533, + "repository_id": 2457, + "parent_product_id": 1346, + "root_product_id": 1346, + "update_tag": "SLE-SERVER", + "url": "https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-SP1-LTSS/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLES12-SP1-LTSS-Updates for x86_64 SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles12-sp1-ltss-debuginfo-updates-x86_64-sap-sp1", + "parent_channel_label": "sle12-sp1-sap-pool-x86_64", + "product_id": 1533, + "repository_id": 2458, + "parent_product_id": 1346, + "root_product_id": 1346, + "update_tag": "SLE-SERVER", + "url": "https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-SP1-LTSS/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLES12-SP1-LTSS-Debuginfo-Updates for x86_64 SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-manager-tools12-beta-updates-x86_64-sap-sp1", + "parent_channel_label": "sle12-sp1-sap-pool-x86_64", + "product_id": 1747, + "repository_id": 3077, + "parent_product_id": 1346, + "root_product_id": 1346, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/12-BETA/x86_64/update/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools12-BETA-Updates for x86_64 SAP SP1", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools12-beta-debuginfo-updates-x86_64-sap-sp1", + "parent_channel_label": "sle12-sp1-sap-pool-x86_64", + "product_id": 1747, + "repository_id": 3078, + "parent_product_id": 1346, + "root_product_id": 1346, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/12-BETA/x86_64/update_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools12-BETA-Debuginfo-Updates for x86_64 SAP SP1", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools12-beta-pool-x86_64-sap-sp1", + "parent_channel_label": "sle12-sp1-sap-pool-x86_64", + "product_id": 1747, + "repository_id": 3079, + "parent_product_id": 1346, + "root_product_id": 1346, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/12-BETA/x86_64/product/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools12-BETA-Pool for x86_64 SAP SP1", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools12-beta-debuginfo-pool-x86_64-sap-sp1", + "parent_channel_label": "sle12-sp1-sap-pool-x86_64", + "product_id": 1747, + "repository_id": 3080, + "parent_product_id": 1346, + "root_product_id": 1346, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/12-BETA/x86_64/product_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools12-BETA-Debuginfo-Pool for x86_64 SAP SP1", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools12-updates-ppc64le-sp2", + "parent_channel_label": "sles12-sp2-pool-ppc64le", + "product_id": 1355, + "repository_id": 1724, + "parent_product_id": null, + "root_product_id": 1355, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/12/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Manager-Tools12-Updates for ppc64le SP2", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools12-debuginfo-updates-ppc64le-sp2", + "parent_channel_label": "sles12-sp2-pool-ppc64le", + "product_id": 1355, + "repository_id": 1725, + "parent_product_id": null, + "root_product_id": 1355, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/12/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Manager-Tools12-Debuginfo-Updates for ppc64le SP2", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools12-pool-ppc64le-sp2", + "parent_channel_label": "sles12-sp2-pool-ppc64le", + "product_id": 1355, + "repository_id": 1726, + "parent_product_id": null, + "root_product_id": 1355, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/12/ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Manager-Tools12-Pool for ppc64le SP2", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools12-debuginfo-pool-ppc64le-sp2", + "parent_channel_label": "sles12-sp2-pool-ppc64le", + "product_id": 1355, + "repository_id": 1727, + "parent_product_id": null, + "root_product_id": 1355, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/12/ppc64le/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Manager-Tools12-Debuginfo-Pool for ppc64le SP2", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sles12-sp2-updates-ppc64le", + "parent_channel_label": "sles12-sp2-pool-ppc64le", + "product_id": 1355, + "repository_id": 2003, + "parent_product_id": null, + "root_product_id": 1355, + "update_tag": "SLE-SERVER", + "url": "https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-SP2/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLES12-SP2-Updates for ppc64le", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles12-sp2-debuginfo-updates-ppc64le", + "parent_channel_label": "sles12-sp2-pool-ppc64le", + "product_id": 1355, + "repository_id": 2004, + "parent_product_id": null, + "root_product_id": 1355, + "update_tag": "SLE-SERVER", + "url": "https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-SP2/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLES12-SP2-Debuginfo-Updates for ppc64le", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles12-sp2-pool-ppc64le", + "parent_channel_label": null, + "product_id": 1355, + "repository_id": 2005, + "parent_product_id": null, + "root_product_id": 1355, + "update_tag": "SLE-SERVER", + "url": "https://updates.suse.com/SUSE/Products/SLE-SERVER/12-SP2/ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLES12-SP2-Pool for ppc64le", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles12-sp2-debuginfo-pool-ppc64le", + "parent_channel_label": "sles12-sp2-pool-ppc64le", + "product_id": 1355, + "repository_id": 2006, + "parent_product_id": null, + "root_product_id": 1355, + "update_tag": "SLE-SERVER", + "url": "https://updates.suse.com/SUSE/Products/SLE-SERVER/12-SP2/ppc64le/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLES12-SP2-Debuginfo-Pool for ppc64le", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles12-sp2-installer-updates-ppc64le", + "parent_channel_label": "sles12-sp2-pool-ppc64le", + "product_id": 1355, + "repository_id": 2102, + "parent_product_id": null, + "root_product_id": 1355, + "update_tag": "SLE-SERVER-INSTALLER", + "url": "https://updates.suse.com/SUSE/Updates/SLE-SERVER-INSTALLER/12-SP2/ppc64le/update/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLES12-SP2-Installer-Updates for ppc64le", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-legacy12-updates-ppc64le-sp2", + "parent_channel_label": "sles12-sp2-pool-ppc64le", + "product_id": 1148, + "repository_id": 1668, + "parent_product_id": 1355, + "root_product_id": 1355, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/12/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy12-Updates for ppc64le SP2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-legacy12-debuginfo-updates-ppc64le-sp2", + "parent_channel_label": "sles12-sp2-pool-ppc64le", + "product_id": 1148, + "repository_id": 1669, + "parent_product_id": 1355, + "root_product_id": 1355, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/12/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy12-Debuginfo-Updates for ppc64le SP2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-legacy12-pool-ppc64le-sp2", + "parent_channel_label": "sles12-sp2-pool-ppc64le", + "product_id": 1148, + "repository_id": 1670, + "parent_product_id": 1355, + "root_product_id": 1355, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/12/ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy12-Pool for ppc64le SP2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-legacy12-debuginfo-pool-ppc64le-sp2", + "parent_channel_label": "sles12-sp2-pool-ppc64le", + "product_id": 1148, + "repository_id": 1671, + "parent_product_id": 1355, + "root_product_id": 1355, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/12/ppc64le/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy12-Debuginfo-Pool for ppc64le SP2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting12-updates-ppc64le-sp2", + "parent_channel_label": "sles12-sp2-pool-ppc64le", + "product_id": 1151, + "repository_id": 1680, + "parent_product_id": 1355, + "root_product_id": 1355, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/12/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Web-Scripting12-Updates for ppc64le SP2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting12-debuginfo-updates-ppc64le-sp2", + "parent_channel_label": "sles12-sp2-pool-ppc64le", + "product_id": 1151, + "repository_id": 1681, + "parent_product_id": 1355, + "root_product_id": 1355, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/12/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Web-Scripting12-Debuginfo-Updates for ppc64le SP2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting12-pool-ppc64le-sp2", + "parent_channel_label": "sles12-sp2-pool-ppc64le", + "product_id": 1151, + "repository_id": 1682, + "parent_product_id": 1355, + "root_product_id": 1355, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/12/ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Web-Scripting12-Pool for ppc64le SP2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting12-debuginfo-pool-ppc64le-sp2", + "parent_channel_label": "sles12-sp2-pool-ppc64le", + "product_id": 1151, + "repository_id": 1683, + "parent_product_id": 1355, + "root_product_id": 1355, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/12/ppc64le/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Web-Scripting12-Debuginfo-Pool for ppc64le SP2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud12-updates-ppc64le-sp2", + "parent_channel_label": "sles12-sp2-pool-ppc64le", + "product_id": 1218, + "repository_id": 1692, + "parent_product_id": 1355, + "root_product_id": 1355, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/12/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud12-Updates for ppc64le SP2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud12-debuginfo-updates-ppc64le-sp2", + "parent_channel_label": "sles12-sp2-pool-ppc64le", + "product_id": 1218, + "repository_id": 1693, + "parent_product_id": 1355, + "root_product_id": 1355, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/12/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud12-Debuginfo-Updates for ppc64le SP2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud12-pool-ppc64le-sp2", + "parent_channel_label": "sles12-sp2-pool-ppc64le", + "product_id": 1218, + "repository_id": 1694, + "parent_product_id": 1355, + "root_product_id": 1355, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/12/ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud12-Pool for ppc64le SP2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud12-debuginfo-pool-ppc64le-sp2", + "parent_channel_label": "sles12-sp2-pool-ppc64le", + "product_id": 1218, + "repository_id": 1695, + "parent_product_id": 1355, + "root_product_id": 1355, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/12/ppc64le/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud12-Debuginfo-Pool for ppc64le SP2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "ibm-dlpar-adv-toolchain-sp2", + "parent_channel_label": "sles12-sp2-pool-ppc64le", + "product_id": 1249, + "repository_id": 4429, + "parent_product_id": 1355, + "root_product_id": 1355, + "update_tag": null, + "url": "https://public.dhe.ibm.com/software/server/POWER/Linux/toolchain/at/suse/SLES_12/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "IBM-DLPAR-Adv-Toolchain for ppc64le SP2", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "ibm-dlpar-utils-sp2", + "parent_channel_label": "sles12-sp2-pool-ppc64le", + "product_id": 1250, + "repository_id": 6216, + "parent_product_id": 1355, + "root_product_id": 1355, + "update_tag": null, + "url": "https://public.dhe.ibm.com/software/server/POWER/Linux/yum/OSS/SLES/12/ppc64le/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "IBM-DLPAR-utils for ppc64le SP2", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-adv-systems-management12-updates-ppc64le-sp2", + "parent_channel_label": "sles12-sp2-pool-ppc64le", + "product_id": 1294, + "repository_id": 1762, + "parent_product_id": 1355, + "root_product_id": 1355, + "update_tag": "SLE-Module-Adv-Systems-Management", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Adv-Systems-Management/12/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Adv-Systems-Management12-Updates for ppc64le SP2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-adv-systems-management12-debuginfo-updates-ppc64le-sp2", + "parent_channel_label": "sles12-sp2-pool-ppc64le", + "product_id": 1294, + "repository_id": 1763, + "parent_product_id": 1355, + "root_product_id": 1355, + "update_tag": "SLE-Module-Adv-Systems-Management", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Adv-Systems-Management/12/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Adv-Systems-Management12-Debuginfo-Updates for ppc64le SP2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-adv-systems-management12-pool-ppc64le-sp2", + "parent_channel_label": "sles12-sp2-pool-ppc64le", + "product_id": 1294, + "repository_id": 1764, + "parent_product_id": 1355, + "root_product_id": 1355, + "update_tag": "SLE-Module-Adv-Systems-Management", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Adv-Systems-Management/12/ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Adv-Systems-Management12-Pool for ppc64le SP2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-adv-systems-management12-debuginfo-pool-ppc64le-sp2", + "parent_channel_label": "sles12-sp2-pool-ppc64le", + "product_id": 1294, + "repository_id": 1765, + "parent_product_id": 1355, + "root_product_id": 1355, + "update_tag": "SLE-Module-Adv-Systems-Management", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Adv-Systems-Management/12/ppc64le/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Adv-Systems-Management12-Debuginfo-Pool for ppc64le SP2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-toolchain12-updates-ppc64le-sp2", + "parent_channel_label": "sles12-sp2-pool-ppc64le", + "product_id": 1339, + "repository_id": 1895, + "parent_product_id": 1355, + "root_product_id": 1355, + "update_tag": "SLE-Module-Toolchain", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Toolchain/12/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Toolchain12-Updates for ppc64le SP2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-toolchain12-debuginfo-updates-ppc64le-sp2", + "parent_channel_label": "sles12-sp2-pool-ppc64le", + "product_id": 1339, + "repository_id": 1896, + "parent_product_id": 1355, + "root_product_id": 1355, + "update_tag": "SLE-Module-Toolchain", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Toolchain/12/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Toolchain12-Debuginfo-Updates for ppc64le SP2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-toolchain12-pool-ppc64le-sp2", + "parent_channel_label": "sles12-sp2-pool-ppc64le", + "product_id": 1339, + "repository_id": 1897, + "parent_product_id": 1355, + "root_product_id": 1355, + "update_tag": "SLE-Module-Toolchain", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Toolchain/12/ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Toolchain12-Pool for ppc64le SP2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-toolchain12-debuginfo-pool-ppc64le-sp2", + "parent_channel_label": "sles12-sp2-pool-ppc64le", + "product_id": 1339, + "repository_id": 1898, + "parent_product_id": 1355, + "root_product_id": 1355, + "update_tag": "SLE-Module-Toolchain", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Toolchain/12/ppc64le/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Toolchain12-Debuginfo-Pool for ppc64le SP2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-containers12-updates-ppc64le-sp2", + "parent_channel_label": "sles12-sp2-pool-ppc64le", + "product_id": 1353, + "repository_id": 1972, + "parent_product_id": 1355, + "root_product_id": 1355, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/12/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers12-Updates for ppc64le SP2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-containers12-debuginfo-updates-ppc64le-sp2", + "parent_channel_label": "sles12-sp2-pool-ppc64le", + "product_id": 1353, + "repository_id": 1973, + "parent_product_id": 1355, + "root_product_id": 1355, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/12/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers12-Debuginfo-Updates for ppc64le SP2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-containers12-pool-ppc64le-sp2", + "parent_channel_label": "sles12-sp2-pool-ppc64le", + "product_id": 1353, + "repository_id": 1974, + "parent_product_id": 1355, + "root_product_id": 1355, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Containers/12/ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers12-Pool for ppc64le SP2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-containers12-debuginfo-pool-ppc64le-sp2", + "parent_channel_label": "sles12-sp2-pool-ppc64le", + "product_id": 1353, + "repository_id": 1975, + "parent_product_id": 1355, + "root_product_id": 1355, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Containers/12/ppc64le/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers12-Debuginfo-Pool for ppc64le SP2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-sdk12-sp2-updates-ppc64le", + "parent_channel_label": "sles12-sp2-pool-ppc64le", + "product_id": 1364, + "repository_id": 2049, + "parent_product_id": 1355, + "root_product_id": 1355, + "update_tag": "SLE-SDK", + "url": "https://updates.suse.com/SUSE/Updates/SLE-SDK/12-SP2/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-SDK12-SP2-Updates for ppc64le", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-sdk12-sp2-debuginfo-updates-ppc64le", + "parent_channel_label": "sles12-sp2-pool-ppc64le", + "product_id": 1364, + "repository_id": 2050, + "parent_product_id": 1355, + "root_product_id": 1355, + "update_tag": "SLE-SDK", + "url": "https://updates.suse.com/SUSE/Updates/SLE-SDK/12-SP2/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-SDK12-SP2-Debuginfo-Updates for ppc64le", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-sdk12-sp2-pool-ppc64le", + "parent_channel_label": "sles12-sp2-pool-ppc64le", + "product_id": 1364, + "repository_id": 2051, + "parent_product_id": 1355, + "root_product_id": 1355, + "update_tag": "SLE-SDK", + "url": "https://updates.suse.com/SUSE/Products/SLE-SDK/12-SP2/ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-SDK12-SP2-Pool for ppc64le", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-sdk12-sp2-debuginfo-pool-ppc64le", + "parent_channel_label": "sles12-sp2-pool-ppc64le", + "product_id": 1364, + "repository_id": 2052, + "parent_product_id": 1355, + "root_product_id": 1355, + "update_tag": "SLE-SDK", + "url": "https://updates.suse.com/SUSE/Products/SLE-SDK/12-SP2/ppc64le/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-SDK12-SP2-Debuginfo-Pool for ppc64le", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-ha12-sp2-updates-ppc64le", + "parent_channel_label": "sles12-sp2-pool-ppc64le", + "product_id": 1420, + "repository_id": 2183, + "parent_product_id": 1355, + "root_product_id": 1355, + "update_tag": "SLE-HA", + "url": "https://updates.suse.com/SUSE/Updates/SLE-HA/12-SP2/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-HA12-SP2-Updates for ppc64le", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-ha12-sp2-debuginfo-updates-ppc64le", + "parent_channel_label": "sles12-sp2-pool-ppc64le", + "product_id": 1420, + "repository_id": 2184, + "parent_product_id": 1355, + "root_product_id": 1355, + "update_tag": "SLE-HA", + "url": "https://updates.suse.com/SUSE/Updates/SLE-HA/12-SP2/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-HA12-SP2-Debuginfo-Updates for ppc64le", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-ha12-sp2-pool-ppc64le", + "parent_channel_label": "sles12-sp2-pool-ppc64le", + "product_id": 1420, + "repository_id": 2185, + "parent_product_id": 1355, + "root_product_id": 1355, + "update_tag": "SLE-HA", + "url": "https://updates.suse.com/SUSE/Products/SLE-HA/12-SP2/ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-HA12-SP2-Pool for ppc64le", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-ha12-sp2-debuginfo-pool-ppc64le", + "parent_channel_label": "sles12-sp2-pool-ppc64le", + "product_id": 1420, + "repository_id": 2186, + "parent_product_id": 1355, + "root_product_id": 1355, + "update_tag": "SLE-HA", + "url": "https://updates.suse.com/SUSE/Products/SLE-HA/12-SP2/ppc64le/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-HA12-SP2-Debuginfo-Pool for ppc64le", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-packagehub-12-sp2-ppc64le", + "parent_channel_label": "sles12-sp2-pool-ppc64le", + "product_id": 1481, + "repository_id": 2351, + "parent_product_id": 1355, + "root_product_id": 1355, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-12-SP2_ppc64le/standard/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-12-SP2-Standard-Pool for ppc64le", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-packagehub-12-sp2-debuginfo-ppc64le", + "parent_channel_label": "sles12-sp2-pool-ppc64le", + "product_id": 1481, + "repository_id": 2352, + "parent_product_id": 1355, + "root_product_id": 1355, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-12-SP2_ppc64le/standard_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-12-SP2-Debuginfo for ppc64le", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-packagehub-12-sp2-pool-ppc64le", + "parent_channel_label": "sles12-sp2-pool-ppc64le", + "product_id": 1481, + "repository_id": 2353, + "parent_product_id": 1355, + "root_product_id": 1355, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-12-SP2_ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-12-SP2-Pool for ppc64le", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles12-sp2-ltss-updates-ppc64le", + "parent_channel_label": "sles12-sp2-pool-ppc64le", + "product_id": 1737, + "repository_id": 3044, + "parent_product_id": 1355, + "root_product_id": 1355, + "update_tag": "SLE-SERVER", + "url": "https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-SP2-LTSS/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLES12-SP2-LTSS-Updates for ppc64le", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles12-sp2-ltss-debuginfo-updates-ppc64le", + "parent_channel_label": "sles12-sp2-pool-ppc64le", + "product_id": 1737, + "repository_id": 3045, + "parent_product_id": 1355, + "root_product_id": 1355, + "update_tag": "SLE-SERVER", + "url": "https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-SP2-LTSS/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLES12-SP2-LTSS-Debuginfo-Updates for ppc64le", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-manager-tools12-beta-updates-ppc64le-sp2", + "parent_channel_label": "sles12-sp2-pool-ppc64le", + "product_id": 1745, + "repository_id": 3067, + "parent_product_id": 1355, + "root_product_id": 1355, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/12-BETA/ppc64le/update/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools12-BETA-Updates for ppc64le SP2", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools12-beta-debuginfo-updates-ppc64le-sp2", + "parent_channel_label": "sles12-sp2-pool-ppc64le", + "product_id": 1745, + "repository_id": 3068, + "parent_product_id": 1355, + "root_product_id": 1355, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/12-BETA/ppc64le/update_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools12-BETA-Debuginfo-Updates for ppc64le SP2", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools12-beta-pool-ppc64le-sp2", + "parent_channel_label": "sles12-sp2-pool-ppc64le", + "product_id": 1745, + "repository_id": 3069, + "parent_product_id": 1355, + "root_product_id": 1355, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/12-BETA/ppc64le/product/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools12-BETA-Pool for ppc64le SP2", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools12-beta-debuginfo-pool-ppc64le-sp2", + "parent_channel_label": "sles12-sp2-pool-ppc64le", + "product_id": 1745, + "repository_id": 3070, + "parent_product_id": 1355, + "root_product_id": 1355, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/12-BETA/ppc64le/product_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools12-BETA-Debuginfo-Pool for ppc64le SP2", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-live-patching12-updates-ppc64le-sp2", + "parent_channel_label": "sles12-sp2-pool-ppc64le", + "product_id": 1860, + "repository_id": 3563, + "parent_product_id": 1355, + "root_product_id": 1355, + "update_tag": "SLE-Live-Patching", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Live-Patching/12/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Live-Patching12-Updates for ppc64le SP2", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-live-patching12-debuginfo-updates-ppc64le-sp2", + "parent_channel_label": "sles12-sp2-pool-ppc64le", + "product_id": 1860, + "repository_id": 3564, + "parent_product_id": 1355, + "root_product_id": 1355, + "update_tag": "SLE-Live-Patching", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Live-Patching/12/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Live-Patching12-Debuginfo-Updates for ppc64le SP2", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-live-patching12-pool-ppc64le-sp2", + "parent_channel_label": "sles12-sp2-pool-ppc64le", + "product_id": 1860, + "repository_id": 3565, + "parent_product_id": 1355, + "root_product_id": 1355, + "update_tag": "SLE-Live-Patching", + "url": "https://updates.suse.com/SUSE/Products/SLE-Live-Patching/12/ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Live-Patching12-Pool for ppc64le SP2", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-live-patching12-debuginfo-pool-ppc64le-sp2", + "parent_channel_label": "sles12-sp2-pool-ppc64le", + "product_id": 1860, + "repository_id": 3566, + "parent_product_id": 1355, + "root_product_id": 1355, + "update_tag": "SLE-Live-Patching", + "url": "https://updates.suse.com/SUSE/Products/SLE-Live-Patching/12/ppc64le/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Live-Patching12-Debuginfo-Pool for ppc64le SP2", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-manager-tools12-updates-s390x-sp2", + "parent_channel_label": "sles12-sp2-pool-s390x", + "product_id": 1356, + "repository_id": 1728, + "parent_product_id": null, + "root_product_id": 1356, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/12/s390x/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Manager-Tools12-Updates for s390x SP2", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools12-debuginfo-updates-s390x-sp2", + "parent_channel_label": "sles12-sp2-pool-s390x", + "product_id": 1356, + "repository_id": 1729, + "parent_product_id": null, + "root_product_id": 1356, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/12/s390x/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Manager-Tools12-Debuginfo-Updates for s390x SP2", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools12-pool-s390x-sp2", + "parent_channel_label": "sles12-sp2-pool-s390x", + "product_id": 1356, + "repository_id": 1730, + "parent_product_id": null, + "root_product_id": 1356, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/12/s390x/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Manager-Tools12-Pool for s390x SP2", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools12-debuginfo-pool-s390x-sp2", + "parent_channel_label": "sles12-sp2-pool-s390x", + "product_id": 1356, + "repository_id": 1731, + "parent_product_id": null, + "root_product_id": 1356, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/12/s390x/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Manager-Tools12-Debuginfo-Pool for s390x SP2", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sles12-sp2-updates-s390x", + "parent_channel_label": "sles12-sp2-pool-s390x", + "product_id": 1356, + "repository_id": 2008, + "parent_product_id": null, + "root_product_id": 1356, + "update_tag": "SLE-SERVER", + "url": "https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-SP2/s390x/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLES12-SP2-Updates for s390x", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles12-sp2-debuginfo-updates-s390x", + "parent_channel_label": "sles12-sp2-pool-s390x", + "product_id": 1356, + "repository_id": 2009, + "parent_product_id": null, + "root_product_id": 1356, + "update_tag": "SLE-SERVER", + "url": "https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-SP2/s390x/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLES12-SP2-Debuginfo-Updates for s390x", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles12-sp2-pool-s390x", + "parent_channel_label": null, + "product_id": 1356, + "repository_id": 2010, + "parent_product_id": null, + "root_product_id": 1356, + "update_tag": "SLE-SERVER", + "url": "https://updates.suse.com/SUSE/Products/SLE-SERVER/12-SP2/s390x/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLES12-SP2-Pool for s390x", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles12-sp2-debuginfo-pool-s390x", + "parent_channel_label": "sles12-sp2-pool-s390x", + "product_id": 1356, + "repository_id": 2011, + "parent_product_id": null, + "root_product_id": 1356, + "update_tag": "SLE-SERVER", + "url": "https://updates.suse.com/SUSE/Products/SLE-SERVER/12-SP2/s390x/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLES12-SP2-Debuginfo-Pool for s390x", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles12-sp2-installer-updates-s390x", + "parent_channel_label": "sles12-sp2-pool-s390x", + "product_id": 1356, + "repository_id": 2103, + "parent_product_id": null, + "root_product_id": 1356, + "update_tag": "SLE-SERVER-INSTALLER", + "url": "https://updates.suse.com/SUSE/Updates/SLE-SERVER-INSTALLER/12-SP2/s390x/update/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLES12-SP2-Installer-Updates for s390x", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-legacy12-updates-s390x-sp2", + "parent_channel_label": "sles12-sp2-pool-s390x", + "product_id": 1149, + "repository_id": 1672, + "parent_product_id": 1356, + "root_product_id": 1356, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/12/s390x/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy12-Updates for s390x SP2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-legacy12-debuginfo-updates-s390x-sp2", + "parent_channel_label": "sles12-sp2-pool-s390x", + "product_id": 1149, + "repository_id": 1673, + "parent_product_id": 1356, + "root_product_id": 1356, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/12/s390x/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy12-Debuginfo-Updates for s390x SP2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-legacy12-pool-s390x-sp2", + "parent_channel_label": "sles12-sp2-pool-s390x", + "product_id": 1149, + "repository_id": 1674, + "parent_product_id": 1356, + "root_product_id": 1356, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/12/s390x/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy12-Pool for s390x SP2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-legacy12-debuginfo-pool-s390x-sp2", + "parent_channel_label": "sles12-sp2-pool-s390x", + "product_id": 1149, + "repository_id": 1675, + "parent_product_id": 1356, + "root_product_id": 1356, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/12/s390x/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy12-Debuginfo-Pool for s390x SP2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting12-updates-s390x-sp2", + "parent_channel_label": "sles12-sp2-pool-s390x", + "product_id": 1152, + "repository_id": 1684, + "parent_product_id": 1356, + "root_product_id": 1356, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/12/s390x/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Web-Scripting12-Updates for s390x SP2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting12-debuginfo-updates-s390x-sp2", + "parent_channel_label": "sles12-sp2-pool-s390x", + "product_id": 1152, + "repository_id": 1685, + "parent_product_id": 1356, + "root_product_id": 1356, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/12/s390x/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Web-Scripting12-Debuginfo-Updates for s390x SP2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting12-pool-s390x-sp2", + "parent_channel_label": "sles12-sp2-pool-s390x", + "product_id": 1152, + "repository_id": 1686, + "parent_product_id": 1356, + "root_product_id": 1356, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/12/s390x/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Web-Scripting12-Pool for s390x SP2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting12-debuginfo-pool-s390x-sp2", + "parent_channel_label": "sles12-sp2-pool-s390x", + "product_id": 1152, + "repository_id": 1687, + "parent_product_id": 1356, + "root_product_id": 1356, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/12/s390x/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Web-Scripting12-Debuginfo-Pool for s390x SP2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud12-updates-s390x-sp2", + "parent_channel_label": "sles12-sp2-pool-s390x", + "product_id": 1219, + "repository_id": 1696, + "parent_product_id": 1356, + "root_product_id": 1356, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/12/s390x/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud12-Updates for s390x SP2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud12-debuginfo-updates-s390x-sp2", + "parent_channel_label": "sles12-sp2-pool-s390x", + "product_id": 1219, + "repository_id": 1697, + "parent_product_id": 1356, + "root_product_id": 1356, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/12/s390x/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud12-Debuginfo-Updates for s390x SP2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud12-pool-s390x-sp2", + "parent_channel_label": "sles12-sp2-pool-s390x", + "product_id": 1219, + "repository_id": 1698, + "parent_product_id": 1356, + "root_product_id": 1356, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/12/s390x/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud12-Pool for s390x SP2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud12-debuginfo-pool-s390x-sp2", + "parent_channel_label": "sles12-sp2-pool-s390x", + "product_id": 1219, + "repository_id": 1699, + "parent_product_id": 1356, + "root_product_id": 1356, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/12/s390x/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud12-Debuginfo-Pool for s390x SP2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-adv-systems-management12-updates-s390x-sp2", + "parent_channel_label": "sles12-sp2-pool-s390x", + "product_id": 1295, + "repository_id": 1766, + "parent_product_id": 1356, + "root_product_id": 1356, + "update_tag": "SLE-Module-Adv-Systems-Management", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Adv-Systems-Management/12/s390x/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Adv-Systems-Management12-Updates for s390x SP2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-adv-systems-management12-debuginfo-updates-s390x-sp2", + "parent_channel_label": "sles12-sp2-pool-s390x", + "product_id": 1295, + "repository_id": 1767, + "parent_product_id": 1356, + "root_product_id": 1356, + "update_tag": "SLE-Module-Adv-Systems-Management", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Adv-Systems-Management/12/s390x/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Adv-Systems-Management12-Debuginfo-Updates for s390x SP2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-adv-systems-management12-pool-s390x-sp2", + "parent_channel_label": "sles12-sp2-pool-s390x", + "product_id": 1295, + "repository_id": 1768, + "parent_product_id": 1356, + "root_product_id": 1356, + "update_tag": "SLE-Module-Adv-Systems-Management", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Adv-Systems-Management/12/s390x/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Adv-Systems-Management12-Pool for s390x SP2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-adv-systems-management12-debuginfo-pool-s390x-sp2", + "parent_channel_label": "sles12-sp2-pool-s390x", + "product_id": 1295, + "repository_id": 1769, + "parent_product_id": 1356, + "root_product_id": 1356, + "update_tag": "SLE-Module-Adv-Systems-Management", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Adv-Systems-Management/12/s390x/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Adv-Systems-Management12-Debuginfo-Pool for s390x SP2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-toolchain12-updates-s390x-sp2", + "parent_channel_label": "sles12-sp2-pool-s390x", + "product_id": 1340, + "repository_id": 1899, + "parent_product_id": 1356, + "root_product_id": 1356, + "update_tag": "SLE-Module-Toolchain", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Toolchain/12/s390x/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Toolchain12-Updates for s390x SP2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-toolchain12-debuginfo-updates-s390x-sp2", + "parent_channel_label": "sles12-sp2-pool-s390x", + "product_id": 1340, + "repository_id": 1900, + "parent_product_id": 1356, + "root_product_id": 1356, + "update_tag": "SLE-Module-Toolchain", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Toolchain/12/s390x/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Toolchain12-Debuginfo-Updates for s390x SP2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-toolchain12-pool-s390x-sp2", + "parent_channel_label": "sles12-sp2-pool-s390x", + "product_id": 1340, + "repository_id": 1901, + "parent_product_id": 1356, + "root_product_id": 1356, + "update_tag": "SLE-Module-Toolchain", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Toolchain/12/s390x/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Toolchain12-Pool for s390x SP2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-toolchain12-debuginfo-pool-s390x-sp2", + "parent_channel_label": "sles12-sp2-pool-s390x", + "product_id": 1340, + "repository_id": 1902, + "parent_product_id": 1356, + "root_product_id": 1356, + "update_tag": "SLE-Module-Toolchain", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Toolchain/12/s390x/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Toolchain12-Debuginfo-Pool for s390x SP2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-manager-server-3.0-updates-s390x-sp2", + "parent_channel_label": "sles12-sp2-pool-s390x", + "product_id": 1348, + "repository_id": 1945, + "parent_product_id": 1356, + "root_product_id": 1356, + "update_tag": "SUSE-Manager-Server-3.0", + "url": "https://updates.suse.com/SUSE/Updates/SUSE-Manager-Server/3.0/s390x/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-Manager-Server-3.0-Updates for s390x SP2", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-manager-server-3.0-debuginfo-updates-s390x-sp2", + "parent_channel_label": "sles12-sp2-pool-s390x", + "product_id": 1348, + "repository_id": 1946, + "parent_product_id": 1356, + "root_product_id": 1356, + "update_tag": "SUSE-Manager-Server-3.0", + "url": "https://updates.suse.com/SUSE/Updates/SUSE-Manager-Server/3.0/s390x/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SUSE-Manager-Server-3.0-Debuginfo-Updates for s390x SP2", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-manager-server-3.0-pool-s390x-sp2", + "parent_channel_label": "sles12-sp2-pool-s390x", + "product_id": 1348, + "repository_id": 1947, + "parent_product_id": 1356, + "root_product_id": 1356, + "update_tag": "SUSE-Manager-Server-3.0", + "url": "https://updates.suse.com/SUSE/Products/SUSE-Manager-Server/3.0/s390x/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-Manager-Server-3.0-Pool for s390x SP2", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-manager-server-3.0-debuginfo-pool-s390x-sp2", + "parent_channel_label": "sles12-sp2-pool-s390x", + "product_id": 1348, + "repository_id": 1948, + "parent_product_id": 1356, + "root_product_id": 1356, + "update_tag": "SUSE-Manager-Server-3.0", + "url": "https://updates.suse.com/SUSE/Products/SUSE-Manager-Server/3.0/s390x/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SUSE-Manager-Server-3.0-Debuginfo-Pool for s390x SP2", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-containers12-updates-s390x-sp2", + "parent_channel_label": "sles12-sp2-pool-s390x", + "product_id": 1354, + "repository_id": 1977, + "parent_product_id": 1356, + "root_product_id": 1356, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/12/s390x/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers12-Updates for s390x SP2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-containers12-debuginfo-updates-s390x-sp2", + "parent_channel_label": "sles12-sp2-pool-s390x", + "product_id": 1354, + "repository_id": 1978, + "parent_product_id": 1356, + "root_product_id": 1356, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/12/s390x/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers12-Debuginfo-Updates for s390x SP2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-containers12-pool-s390x-sp2", + "parent_channel_label": "sles12-sp2-pool-s390x", + "product_id": 1354, + "repository_id": 1979, + "parent_product_id": 1356, + "root_product_id": 1356, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Containers/12/s390x/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers12-Pool for s390x SP2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-containers12-debuginfo-pool-s390x-sp2", + "parent_channel_label": "sles12-sp2-pool-s390x", + "product_id": 1354, + "repository_id": 1980, + "parent_product_id": 1356, + "root_product_id": 1356, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Containers/12/s390x/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers12-Debuginfo-Pool for s390x SP2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-ha12-sp2-updates-s390x", + "parent_channel_label": "sles12-sp2-pool-s390x", + "product_id": 1360, + "repository_id": 2029, + "parent_product_id": 1356, + "root_product_id": 1356, + "update_tag": "SLE-HA", + "url": "https://updates.suse.com/SUSE/Updates/SLE-HA/12-SP2/s390x/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-HA12-SP2-Updates for s390x", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-ha12-sp2-debuginfo-updates-s390x", + "parent_channel_label": "sles12-sp2-pool-s390x", + "product_id": 1360, + "repository_id": 2030, + "parent_product_id": 1356, + "root_product_id": 1356, + "update_tag": "SLE-HA", + "url": "https://updates.suse.com/SUSE/Updates/SLE-HA/12-SP2/s390x/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-HA12-SP2-Debuginfo-Updates for s390x", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-ha12-sp2-pool-s390x", + "parent_channel_label": "sles12-sp2-pool-s390x", + "product_id": 1360, + "repository_id": 2031, + "parent_product_id": 1356, + "root_product_id": 1356, + "update_tag": "SLE-HA", + "url": "https://updates.suse.com/SUSE/Products/SLE-HA/12-SP2/s390x/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-HA12-SP2-Pool for s390x", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-ha12-sp2-debuginfo-pool-s390x", + "parent_channel_label": "sles12-sp2-pool-s390x", + "product_id": 1360, + "repository_id": 2032, + "parent_product_id": 1356, + "root_product_id": 1356, + "update_tag": "SLE-HA", + "url": "https://updates.suse.com/SUSE/Products/SLE-HA/12-SP2/s390x/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-HA12-SP2-Debuginfo-Pool for s390x", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-ha-geo12-sp2-updates-s390x", + "parent_channel_label": "sles12-sp2-pool-s390x", + "product_id": 1362, + "repository_id": 2039, + "parent_product_id": 1360, + "root_product_id": 1356, + "update_tag": "SLE-HA-GEO", + "url": "https://updates.suse.com/SUSE/Updates/SLE-HA-GEO/12-SP2/s390x/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-HA-GEO12-SP2-Updates for s390x", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-ha-geo12-sp2-debuginfo-updates-s390x", + "parent_channel_label": "sles12-sp2-pool-s390x", + "product_id": 1362, + "repository_id": 2040, + "parent_product_id": 1360, + "root_product_id": 1356, + "update_tag": "SLE-HA-GEO", + "url": "https://updates.suse.com/SUSE/Updates/SLE-HA-GEO/12-SP2/s390x/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-HA-GEO12-SP2-Debuginfo-Updates for s390x", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-ha-geo12-sp2-pool-s390x", + "parent_channel_label": "sles12-sp2-pool-s390x", + "product_id": 1362, + "repository_id": 2041, + "parent_product_id": 1360, + "root_product_id": 1356, + "update_tag": "SLE-HA-GEO", + "url": "https://updates.suse.com/SUSE/Products/SLE-HA-GEO/12-SP2/s390x/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-HA-GEO12-SP2-Pool for s390x", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-ha-geo12-sp2-debuginfo-pool-s390x", + "parent_channel_label": "sles12-sp2-pool-s390x", + "product_id": 1362, + "repository_id": 2042, + "parent_product_id": 1360, + "root_product_id": 1356, + "update_tag": "SLE-HA-GEO", + "url": "https://updates.suse.com/SUSE/Products/SLE-HA-GEO/12-SP2/s390x/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-HA-GEO12-SP2-Debuginfo-Pool for s390x", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-sdk12-sp2-updates-s390x", + "parent_channel_label": "sles12-sp2-pool-s390x", + "product_id": 1365, + "repository_id": 2054, + "parent_product_id": 1356, + "root_product_id": 1356, + "update_tag": "SLE-SDK", + "url": "https://updates.suse.com/SUSE/Updates/SLE-SDK/12-SP2/s390x/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-SDK12-SP2-Updates for s390x", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-sdk12-sp2-debuginfo-updates-s390x", + "parent_channel_label": "sles12-sp2-pool-s390x", + "product_id": 1365, + "repository_id": 2055, + "parent_product_id": 1356, + "root_product_id": 1356, + "update_tag": "SLE-SDK", + "url": "https://updates.suse.com/SUSE/Updates/SLE-SDK/12-SP2/s390x/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-SDK12-SP2-Debuginfo-Updates for s390x", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-sdk12-sp2-pool-s390x", + "parent_channel_label": "sles12-sp2-pool-s390x", + "product_id": 1365, + "repository_id": 2056, + "parent_product_id": 1356, + "root_product_id": 1356, + "update_tag": "SLE-SDK", + "url": "https://updates.suse.com/SUSE/Products/SLE-SDK/12-SP2/s390x/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-SDK12-SP2-Pool for s390x", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-sdk12-sp2-debuginfo-pool-s390x", + "parent_channel_label": "sles12-sp2-pool-s390x", + "product_id": 1365, + "repository_id": 2057, + "parent_product_id": 1356, + "root_product_id": 1356, + "update_tag": "SLE-SDK", + "url": "https://updates.suse.com/SUSE/Products/SLE-SDK/12-SP2/s390x/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-SDK12-SP2-Debuginfo-Pool for s390x", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-packagehub-12-sp2-s390x", + "parent_channel_label": "sles12-sp2-pool-s390x", + "product_id": 1480, + "repository_id": 2348, + "parent_product_id": 1356, + "root_product_id": 1356, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-12-SP2_s390x/standard/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-12-SP2-Standard-Pool for s390x", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-packagehub-12-sp2-debuginfo-s390x", + "parent_channel_label": "sles12-sp2-pool-s390x", + "product_id": 1480, + "repository_id": 2349, + "parent_product_id": 1356, + "root_product_id": 1356, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-12-SP2_s390x/standard_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-12-SP2-Debuginfo for s390x", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-packagehub-12-sp2-pool-s390x", + "parent_channel_label": "sles12-sp2-pool-s390x", + "product_id": 1480, + "repository_id": 2350, + "parent_product_id": 1356, + "root_product_id": 1356, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-12-SP2_s390x/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-12-SP2-Pool for s390x", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-manager-server-3.1-updates-s390x", + "parent_channel_label": "sles12-sp2-pool-s390x", + "product_id": 1519, + "repository_id": 2405, + "parent_product_id": 1356, + "root_product_id": 1356, + "update_tag": "SUSE-Manager-Server-3.1", + "url": "https://updates.suse.com/SUSE/Updates/SUSE-Manager-Server/3.1/s390x/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-Manager-Server-3.1-Updates for s390x SP2", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-manager-server-3.1-debuginfo-updates-s390x", + "parent_channel_label": "sles12-sp2-pool-s390x", + "product_id": 1519, + "repository_id": 2406, + "parent_product_id": 1356, + "root_product_id": 1356, + "update_tag": "SUSE-Manager-Server-3.1", + "url": "https://updates.suse.com/SUSE/Updates/SUSE-Manager-Server/3.1/s390x/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SUSE-Manager-Server-3.1-Debuginfo-Updates for s390x SP2", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-manager-server-3.1-pool-s390x", + "parent_channel_label": "sles12-sp2-pool-s390x", + "product_id": 1519, + "repository_id": 2407, + "parent_product_id": 1356, + "root_product_id": 1356, + "update_tag": "SUSE-Manager-Server-3.1", + "url": "https://updates.suse.com/SUSE/Products/SUSE-Manager-Server/3.1/s390x/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-Manager-Server-3.1-Pool for s390x SP2", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-manager-server-3.1-debuginfo-pool-s390x", + "parent_channel_label": "sles12-sp2-pool-s390x", + "product_id": 1519, + "repository_id": 2408, + "parent_product_id": 1356, + "root_product_id": 1356, + "update_tag": "SUSE-Manager-Server-3.1", + "url": "https://updates.suse.com/SUSE/Products/SUSE-Manager-Server/3.1/s390x/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SUSE-Manager-Server-3.1-Debuginfo-Pool for s390x SP2", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles12-sp2-ltss-updates-s390x", + "parent_channel_label": "sles12-sp2-pool-s390x", + "product_id": 1738, + "repository_id": 3046, + "parent_product_id": 1356, + "root_product_id": 1356, + "update_tag": "SLE-SERVER", + "url": "https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-SP2-LTSS/s390x/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLES12-SP2-LTSS-Updates for s390x", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles12-sp2-ltss-debuginfo-updates-s390x", + "parent_channel_label": "sles12-sp2-pool-s390x", + "product_id": 1738, + "repository_id": 3047, + "parent_product_id": 1356, + "root_product_id": 1356, + "update_tag": "SLE-SERVER", + "url": "https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-SP2-LTSS/s390x/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLES12-SP2-LTSS-Debuginfo-Updates for s390x", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-manager-tools12-beta-updates-s390x-sp2", + "parent_channel_label": "sles12-sp2-pool-s390x", + "product_id": 1746, + "repository_id": 3072, + "parent_product_id": 1356, + "root_product_id": 1356, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/12-BETA/s390x/update/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools12-BETA-Updates for s390x SP2", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools12-beta-debuginfo-updates-s390x-sp2", + "parent_channel_label": "sles12-sp2-pool-s390x", + "product_id": 1746, + "repository_id": 3073, + "parent_product_id": 1356, + "root_product_id": 1356, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/12-BETA/s390x/update_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools12-BETA-Debuginfo-Updates for s390x SP2", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools12-beta-pool-s390x-sp2", + "parent_channel_label": "sles12-sp2-pool-s390x", + "product_id": 1746, + "repository_id": 3074, + "parent_product_id": 1356, + "root_product_id": 1356, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/12-BETA/s390x/product/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools12-BETA-Pool for s390x SP2", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools12-beta-debuginfo-pool-s390x-sp2", + "parent_channel_label": "sles12-sp2-pool-s390x", + "product_id": 1746, + "repository_id": 3075, + "parent_product_id": 1356, + "root_product_id": 1356, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/12-BETA/s390x/product_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools12-BETA-Debuginfo-Pool for s390x SP2", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools12-updates-x86_64-sp2", + "parent_channel_label": "sles12-sp2-pool-x86_64", + "product_id": 1357, + "repository_id": 1732, + "parent_product_id": null, + "root_product_id": 1357, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/12/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Manager-Tools12-Updates for x86_64 SP2", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools12-debuginfo-updates-x86_64-sp2", + "parent_channel_label": "sles12-sp2-pool-x86_64", + "product_id": 1357, + "repository_id": 1733, + "parent_product_id": null, + "root_product_id": 1357, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/12/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Manager-Tools12-Debuginfo-Updates for x86_64 SP2", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools12-pool-x86_64-sp2", + "parent_channel_label": "sles12-sp2-pool-x86_64", + "product_id": 1357, + "repository_id": 1734, + "parent_product_id": null, + "root_product_id": 1357, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/12/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Manager-Tools12-Pool for x86_64 SP2", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools12-debuginfo-pool-x86_64-sp2", + "parent_channel_label": "sles12-sp2-pool-x86_64", + "product_id": 1357, + "repository_id": 1735, + "parent_product_id": null, + "root_product_id": 1357, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/12/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Manager-Tools12-Debuginfo-Pool for x86_64 SP2", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sles12-sp2-updates-x86_64", + "parent_channel_label": "sles12-sp2-pool-x86_64", + "product_id": 1357, + "repository_id": 2013, + "parent_product_id": null, + "root_product_id": 1357, + "update_tag": "SLE-SERVER", + "url": "https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-SP2/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLES12-SP2-Updates for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles12-sp2-debuginfo-updates-x86_64", + "parent_channel_label": "sles12-sp2-pool-x86_64", + "product_id": 1357, + "repository_id": 2014, + "parent_product_id": null, + "root_product_id": 1357, + "update_tag": "SLE-SERVER", + "url": "https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-SP2/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLES12-SP2-Debuginfo-Updates for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles12-sp2-pool-x86_64", + "parent_channel_label": null, + "product_id": 1357, + "repository_id": 2015, + "parent_product_id": null, + "root_product_id": 1357, + "update_tag": "SLE-SERVER", + "url": "https://updates.suse.com/SUSE/Products/SLE-SERVER/12-SP2/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLES12-SP2-Pool for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles12-sp2-debuginfo-pool-x86_64", + "parent_channel_label": "sles12-sp2-pool-x86_64", + "product_id": 1357, + "repository_id": 2016, + "parent_product_id": null, + "root_product_id": 1357, + "update_tag": "SLE-SERVER", + "url": "https://updates.suse.com/SUSE/Products/SLE-SERVER/12-SP2/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLES12-SP2-Debuginfo-Pool for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles12-sp2-installer-updates-x86_64", + "parent_channel_label": "sles12-sp2-pool-x86_64", + "product_id": 1357, + "repository_id": 2101, + "parent_product_id": null, + "root_product_id": 1357, + "update_tag": "SLE-SERVER-INSTALLER", + "url": "https://updates.suse.com/SUSE/Updates/SLE-SERVER-INSTALLER/12-SP2/x86_64/update/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLES12-SP2-Installer-Updates for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-legacy12-updates-x86_64-sp2", + "parent_channel_label": "sles12-sp2-pool-x86_64", + "product_id": 1150, + "repository_id": 1676, + "parent_product_id": 1357, + "root_product_id": 1357, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/12/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy12-Updates for x86_64 SP2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-legacy12-debuginfo-updates-x86_64-sp2", + "parent_channel_label": "sles12-sp2-pool-x86_64", + "product_id": 1150, + "repository_id": 1677, + "parent_product_id": 1357, + "root_product_id": 1357, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/12/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy12-Debuginfo-Updates for x86_64 SP2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-legacy12-pool-x86_64-sp2", + "parent_channel_label": "sles12-sp2-pool-x86_64", + "product_id": 1150, + "repository_id": 1678, + "parent_product_id": 1357, + "root_product_id": 1357, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/12/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy12-Pool for x86_64 SP2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-legacy12-debuginfo-pool-x86_64-sp2", + "parent_channel_label": "sles12-sp2-pool-x86_64", + "product_id": 1150, + "repository_id": 1679, + "parent_product_id": 1357, + "root_product_id": 1357, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/12/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy12-Debuginfo-Pool for x86_64 SP2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting12-updates-x86_64-sp2", + "parent_channel_label": "sles12-sp2-pool-x86_64", + "product_id": 1153, + "repository_id": 1688, + "parent_product_id": 1357, + "root_product_id": 1357, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/12/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Web-Scripting12-Updates for x86_64 SP2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting12-debuginfo-updates-x86_64-sp2", + "parent_channel_label": "sles12-sp2-pool-x86_64", + "product_id": 1153, + "repository_id": 1689, + "parent_product_id": 1357, + "root_product_id": 1357, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/12/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Web-Scripting12-Debuginfo-Updates for x86_64 SP2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting12-pool-x86_64-sp2", + "parent_channel_label": "sles12-sp2-pool-x86_64", + "product_id": 1153, + "repository_id": 1690, + "parent_product_id": 1357, + "root_product_id": 1357, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/12/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Web-Scripting12-Pool for x86_64 SP2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting12-debuginfo-pool-x86_64-sp2", + "parent_channel_label": "sles12-sp2-pool-x86_64", + "product_id": 1153, + "repository_id": 1691, + "parent_product_id": 1357, + "root_product_id": 1357, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/12/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Web-Scripting12-Debuginfo-Pool for x86_64 SP2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-adv-systems-management12-updates-x86_64-sp2", + "parent_channel_label": "sles12-sp2-pool-x86_64", + "product_id": 1212, + "repository_id": 1704, + "parent_product_id": 1357, + "root_product_id": 1357, + "update_tag": "SLE-Module-Adv-Systems-Management", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Adv-Systems-Management/12/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Adv-Systems-Management12-Updates for x86_64 SP2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-adv-systems-management12-debuginfo-updates-x86_64-sp2", + "parent_channel_label": "sles12-sp2-pool-x86_64", + "product_id": 1212, + "repository_id": 1705, + "parent_product_id": 1357, + "root_product_id": 1357, + "update_tag": "SLE-Module-Adv-Systems-Management", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Adv-Systems-Management/12/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Adv-Systems-Management12-Debuginfo-Updates for x86_64 SP2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-adv-systems-management12-pool-x86_64-sp2", + "parent_channel_label": "sles12-sp2-pool-x86_64", + "product_id": 1212, + "repository_id": 1706, + "parent_product_id": 1357, + "root_product_id": 1357, + "update_tag": "SLE-Module-Adv-Systems-Management", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Adv-Systems-Management/12/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Adv-Systems-Management12-Pool for x86_64 SP2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-adv-systems-management12-debuginfo-pool-x86_64-sp2", + "parent_channel_label": "sles12-sp2-pool-x86_64", + "product_id": 1212, + "repository_id": 1707, + "parent_product_id": 1357, + "root_product_id": 1357, + "update_tag": "SLE-Module-Adv-Systems-Management", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Adv-Systems-Management/12/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Adv-Systems-Management12-Debuginfo-Pool for x86_64 SP2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud12-updates-x86_64-sp2", + "parent_channel_label": "sles12-sp2-pool-x86_64", + "product_id": 1220, + "repository_id": 1700, + "parent_product_id": 1357, + "root_product_id": 1357, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/12/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud12-Updates for x86_64 SP2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud12-debuginfo-updates-x86_64-sp2", + "parent_channel_label": "sles12-sp2-pool-x86_64", + "product_id": 1220, + "repository_id": 1701, + "parent_product_id": 1357, + "root_product_id": 1357, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/12/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud12-Debuginfo-Updates for x86_64 SP2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud12-pool-x86_64-sp2", + "parent_channel_label": "sles12-sp2-pool-x86_64", + "product_id": 1220, + "repository_id": 1702, + "parent_product_id": 1357, + "root_product_id": 1357, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/12/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud12-Pool for x86_64 SP2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud12-debuginfo-pool-x86_64-sp2", + "parent_channel_label": "sles12-sp2-pool-x86_64", + "product_id": 1220, + "repository_id": 1703, + "parent_product_id": 1357, + "root_product_id": 1357, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/12/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud12-Debuginfo-Pool for x86_64 SP2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-live-patching12-updates-x86_64-sp2", + "parent_channel_label": "sles12-sp2-pool-x86_64", + "product_id": 1253, + "repository_id": 1741, + "parent_product_id": 1357, + "root_product_id": 1357, + "update_tag": "SLE-Live-Patching", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Live-Patching/12/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Live-Patching12-Updates for x86_64 SP2", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-live-patching12-debuginfo-updates-x86_64-sp2", + "parent_channel_label": "sles12-sp2-pool-x86_64", + "product_id": 1253, + "repository_id": 1742, + "parent_product_id": 1357, + "root_product_id": 1357, + "update_tag": "SLE-Live-Patching", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Live-Patching/12/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Live-Patching12-Debuginfo-Updates for x86_64 SP2", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-live-patching12-pool-x86_64-sp2", + "parent_channel_label": "sles12-sp2-pool-x86_64", + "product_id": 1253, + "repository_id": 1743, + "parent_product_id": 1357, + "root_product_id": 1357, + "update_tag": "SLE-Live-Patching", + "url": "https://updates.suse.com/SUSE/Products/SLE-Live-Patching/12/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Live-Patching12-Pool for x86_64 SP2", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-live-patching12-debuginfo-pool-x86_64-sp2", + "parent_channel_label": "sles12-sp2-pool-x86_64", + "product_id": 1253, + "repository_id": 1744, + "parent_product_id": 1357, + "root_product_id": 1357, + "update_tag": "SLE-Live-Patching", + "url": "https://updates.suse.com/SUSE/Products/SLE-Live-Patching/12/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Live-Patching12-Debuginfo-Pool for x86_64 SP2", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-containers12-updates-x86_64-sp2", + "parent_channel_label": "sles12-sp2-pool-x86_64", + "product_id": 1332, + "repository_id": 1864, + "parent_product_id": 1357, + "root_product_id": 1357, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/12/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers12-Updates for x86_64 SP2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-containers12-debuginfo-updates-x86_64-sp2", + "parent_channel_label": "sles12-sp2-pool-x86_64", + "product_id": 1332, + "repository_id": 1865, + "parent_product_id": 1357, + "root_product_id": 1357, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/12/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers12-Debuginfo-Updates for x86_64 SP2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-containers12-pool-x86_64-sp2", + "parent_channel_label": "sles12-sp2-pool-x86_64", + "product_id": 1332, + "repository_id": 1866, + "parent_product_id": 1357, + "root_product_id": 1357, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Containers/12/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers12-Pool for x86_64 SP2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-containers12-debuginfo-pool-x86_64-sp2", + "parent_channel_label": "sles12-sp2-pool-x86_64", + "product_id": 1332, + "repository_id": 1867, + "parent_product_id": 1357, + "root_product_id": 1357, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Containers/12/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers12-Debuginfo-Pool for x86_64 SP2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-toolchain12-updates-x86_64-sp2", + "parent_channel_label": "sles12-sp2-pool-x86_64", + "product_id": 1341, + "repository_id": 1903, + "parent_product_id": 1357, + "root_product_id": 1357, + "update_tag": "SLE-Module-Toolchain", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Toolchain/12/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Toolchain12-Updates for x86_64 SP2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-toolchain12-debuginfo-updates-x86_64-sp2", + "parent_channel_label": "sles12-sp2-pool-x86_64", + "product_id": 1341, + "repository_id": 1904, + "parent_product_id": 1357, + "root_product_id": 1357, + "update_tag": "SLE-Module-Toolchain", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Toolchain/12/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Toolchain12-Debuginfo-Updates for x86_64 SP2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-toolchain12-pool-x86_64-sp2", + "parent_channel_label": "sles12-sp2-pool-x86_64", + "product_id": 1341, + "repository_id": 1905, + "parent_product_id": 1357, + "root_product_id": 1357, + "update_tag": "SLE-Module-Toolchain", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Toolchain/12/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Toolchain12-Pool for x86_64 SP2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-toolchain12-debuginfo-pool-x86_64-sp2", + "parent_channel_label": "sles12-sp2-pool-x86_64", + "product_id": 1341, + "repository_id": 1906, + "parent_product_id": 1357, + "root_product_id": 1357, + "update_tag": "SLE-Module-Toolchain", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Toolchain/12/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Toolchain12-Debuginfo-Pool for x86_64 SP2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-manager-server-3.0-updates-x86_64-sp2", + "parent_channel_label": "sles12-sp2-pool-x86_64", + "product_id": 1349, + "repository_id": 1949, + "parent_product_id": 1357, + "root_product_id": 1357, + "update_tag": "SUSE-Manager-Server-3.0", + "url": "https://updates.suse.com/SUSE/Updates/SUSE-Manager-Server/3.0/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-Manager-Server-3.0-Updates for x86_64 SP2", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-manager-server-3.0-debuginfo-updates-x86_64-sp2", + "parent_channel_label": "sles12-sp2-pool-x86_64", + "product_id": 1349, + "repository_id": 1950, + "parent_product_id": 1357, + "root_product_id": 1357, + "update_tag": "SUSE-Manager-Server-3.0", + "url": "https://updates.suse.com/SUSE/Updates/SUSE-Manager-Server/3.0/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SUSE-Manager-Server-3.0-Debuginfo-Updates for x86_64 SP2", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-manager-server-3.0-pool-x86_64-sp2", + "parent_channel_label": "sles12-sp2-pool-x86_64", + "product_id": 1349, + "repository_id": 1951, + "parent_product_id": 1357, + "root_product_id": 1357, + "update_tag": "SUSE-Manager-Server-3.0", + "url": "https://updates.suse.com/SUSE/Products/SUSE-Manager-Server/3.0/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-Manager-Server-3.0-Pool for x86_64 SP2", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-manager-server-3.0-debuginfo-pool-x86_64-sp2", + "parent_channel_label": "sles12-sp2-pool-x86_64", + "product_id": 1349, + "repository_id": 1952, + "parent_product_id": 1357, + "root_product_id": 1357, + "update_tag": "SUSE-Manager-Server-3.0", + "url": "https://updates.suse.com/SUSE/Products/SUSE-Manager-Server/3.0/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SUSE-Manager-Server-3.0-Debuginfo-Pool for x86_64 SP2", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-manager-proxy-3.0-updates-x86_64-sp2", + "parent_channel_label": "sles12-sp2-pool-x86_64", + "product_id": 1352, + "repository_id": 1968, + "parent_product_id": 1357, + "root_product_id": 1357, + "update_tag": "SUSE-Manager-Proxy-3.0", + "url": "https://updates.suse.com/SUSE/Updates/SUSE-Manager-Proxy/3.0/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-Manager-Proxy-3.0-Updates for x86_64 SP2", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-manager-proxy-3.0-debuginfo-updates-x86_64-sp2", + "parent_channel_label": "sles12-sp2-pool-x86_64", + "product_id": 1352, + "repository_id": 1969, + "parent_product_id": 1357, + "root_product_id": 1357, + "update_tag": "SUSE-Manager-Proxy-3.0", + "url": "https://updates.suse.com/SUSE/Updates/SUSE-Manager-Proxy/3.0/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SUSE-Manager-Proxy-3.0-Debuginfo-Updates for x86_64 SP2", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-manager-proxy-3.0-pool-x86_64-sp2", + "parent_channel_label": "sles12-sp2-pool-x86_64", + "product_id": 1352, + "repository_id": 1970, + "parent_product_id": 1357, + "root_product_id": 1357, + "update_tag": "SUSE-Manager-Proxy-3.0", + "url": "https://updates.suse.com/SUSE/Products/SUSE-Manager-Proxy/3.0/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-Manager-Proxy-3.0-Pool for x86_64 SP2", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-manager-proxy-3.0-debuginfo-pool-x86_64-sp2", + "parent_channel_label": "sles12-sp2-pool-x86_64", + "product_id": 1352, + "repository_id": 1971, + "parent_product_id": 1357, + "root_product_id": 1357, + "update_tag": "SUSE-Manager-Proxy-3.0", + "url": "https://updates.suse.com/SUSE/Products/SUSE-Manager-Proxy/3.0/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SUSE-Manager-Proxy-3.0-Debuginfo-Pool for x86_64 SP2", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-we12-sp2-updates-x86_64", + "parent_channel_label": "sles12-sp2-pool-x86_64", + "product_id": 1359, + "repository_id": 2024, + "parent_product_id": 1357, + "root_product_id": 1357, + "update_tag": "SLE-WE", + "url": "https://updates.suse.com/SUSE/Updates/SLE-WE/12-SP2/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-WE12-SP2-Updates for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-we12-sp2-debuginfo-updates-x86_64", + "parent_channel_label": "sles12-sp2-pool-x86_64", + "product_id": 1359, + "repository_id": 2025, + "parent_product_id": 1357, + "root_product_id": 1357, + "update_tag": "SLE-WE", + "url": "https://updates.suse.com/SUSE/Updates/SLE-WE/12-SP2/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-WE12-SP2-Debuginfo-Updates for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-we12-sp2-pool-x86_64", + "parent_channel_label": "sles12-sp2-pool-x86_64", + "product_id": 1359, + "repository_id": 2026, + "parent_product_id": 1357, + "root_product_id": 1357, + "update_tag": "SLE-WE", + "url": "https://updates.suse.com/SUSE/Products/SLE-WE/12-SP2/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-WE12-SP2-Pool for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-we12-sp2-debuginfo-pool-x86_64", + "parent_channel_label": "sles12-sp2-pool-x86_64", + "product_id": 1359, + "repository_id": 2027, + "parent_product_id": 1357, + "root_product_id": 1357, + "update_tag": "SLE-WE", + "url": "https://updates.suse.com/SUSE/Products/SLE-WE/12-SP2/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-WE12-SP2-Debuginfo-Pool for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-12-sp2-ga-desktop-nvidia-driver-we-sp2", + "parent_channel_label": "sles12-sp2-pool-x86_64", + "product_id": 1359, + "repository_id": 2149, + "parent_product_id": 1357, + "root_product_id": 1357, + "update_tag": null, + "url": "http://download.nvidia.com/suse/sle12sp2/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-12-SP2-GA-Desktop-nVidia-Driver for x86_64 WE", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-ha12-sp2-updates-x86_64", + "parent_channel_label": "sles12-sp2-pool-x86_64", + "product_id": 1361, + "repository_id": 2034, + "parent_product_id": 1357, + "root_product_id": 1357, + "update_tag": "SLE-HA", + "url": "https://updates.suse.com/SUSE/Updates/SLE-HA/12-SP2/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-HA12-SP2-Updates for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-ha12-sp2-debuginfo-updates-x86_64", + "parent_channel_label": "sles12-sp2-pool-x86_64", + "product_id": 1361, + "repository_id": 2035, + "parent_product_id": 1357, + "root_product_id": 1357, + "update_tag": "SLE-HA", + "url": "https://updates.suse.com/SUSE/Updates/SLE-HA/12-SP2/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-HA12-SP2-Debuginfo-Updates for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-ha12-sp2-pool-x86_64", + "parent_channel_label": "sles12-sp2-pool-x86_64", + "product_id": 1361, + "repository_id": 2036, + "parent_product_id": 1357, + "root_product_id": 1357, + "update_tag": "SLE-HA", + "url": "https://updates.suse.com/SUSE/Products/SLE-HA/12-SP2/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-HA12-SP2-Pool for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-ha12-sp2-debuginfo-pool-x86_64", + "parent_channel_label": "sles12-sp2-pool-x86_64", + "product_id": 1361, + "repository_id": 2037, + "parent_product_id": 1357, + "root_product_id": 1357, + "update_tag": "SLE-HA", + "url": "https://updates.suse.com/SUSE/Products/SLE-HA/12-SP2/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-HA12-SP2-Debuginfo-Pool for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-ha-geo12-sp2-updates-x86_64", + "parent_channel_label": "sles12-sp2-pool-x86_64", + "product_id": 1363, + "repository_id": 2044, + "parent_product_id": 1361, + "root_product_id": 1357, + "update_tag": "SLE-HA-GEO", + "url": "https://updates.suse.com/SUSE/Updates/SLE-HA-GEO/12-SP2/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-HA-GEO12-SP2-Updates for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-ha-geo12-sp2-debuginfo-updates-x86_64", + "parent_channel_label": "sles12-sp2-pool-x86_64", + "product_id": 1363, + "repository_id": 2045, + "parent_product_id": 1361, + "root_product_id": 1357, + "update_tag": "SLE-HA-GEO", + "url": "https://updates.suse.com/SUSE/Updates/SLE-HA-GEO/12-SP2/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-HA-GEO12-SP2-Debuginfo-Updates for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-ha-geo12-sp2-pool-x86_64", + "parent_channel_label": "sles12-sp2-pool-x86_64", + "product_id": 1363, + "repository_id": 2046, + "parent_product_id": 1361, + "root_product_id": 1357, + "update_tag": "SLE-HA-GEO", + "url": "https://updates.suse.com/SUSE/Products/SLE-HA-GEO/12-SP2/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-HA-GEO12-SP2-Pool for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-ha-geo12-sp2-debuginfo-pool-x86_64", + "parent_channel_label": "sles12-sp2-pool-x86_64", + "product_id": 1363, + "repository_id": 2047, + "parent_product_id": 1361, + "root_product_id": 1357, + "update_tag": "SLE-HA-GEO", + "url": "https://updates.suse.com/SUSE/Products/SLE-HA-GEO/12-SP2/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-HA-GEO12-SP2-Debuginfo-Pool for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-sdk12-sp2-updates-x86_64", + "parent_channel_label": "sles12-sp2-pool-x86_64", + "product_id": 1366, + "repository_id": 2059, + "parent_product_id": 1357, + "root_product_id": 1357, + "update_tag": "SLE-SDK", + "url": "https://updates.suse.com/SUSE/Updates/SLE-SDK/12-SP2/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-SDK12-SP2-Updates for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-sdk12-sp2-debuginfo-updates-x86_64", + "parent_channel_label": "sles12-sp2-pool-x86_64", + "product_id": 1366, + "repository_id": 2060, + "parent_product_id": 1357, + "root_product_id": 1357, + "update_tag": "SLE-SDK", + "url": "https://updates.suse.com/SUSE/Updates/SLE-SDK/12-SP2/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-SDK12-SP2-Debuginfo-Updates for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-sdk12-sp2-pool-x86_64", + "parent_channel_label": "sles12-sp2-pool-x86_64", + "product_id": 1366, + "repository_id": 2061, + "parent_product_id": 1357, + "root_product_id": 1357, + "update_tag": "SLE-SDK", + "url": "https://updates.suse.com/SUSE/Products/SLE-SDK/12-SP2/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-SDK12-SP2-Pool for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-sdk12-sp2-debuginfo-pool-x86_64", + "parent_channel_label": "sles12-sp2-pool-x86_64", + "product_id": 1366, + "repository_id": 2062, + "parent_product_id": 1357, + "root_product_id": 1357, + "update_tag": "SLE-SDK", + "url": "https://updates.suse.com/SUSE/Products/SLE-SDK/12-SP2/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-SDK12-SP2-Debuginfo-Pool for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-openstack-cloud-7-updates-x86_64", + "parent_channel_label": "sles12-sp2-pool-x86_64", + "product_id": 1381, + "repository_id": 2109, + "parent_product_id": 1357, + "root_product_id": 1357, + "update_tag": "OpenStack-Cloud-7", + "url": "https://updates.suse.com/SUSE/Updates/OpenStack-Cloud/7/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-OpenStack-Cloud-7-Updates for x86_64 SP2", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-openstack-cloud-7-debuginfo-updates-x86_64", + "parent_channel_label": "sles12-sp2-pool-x86_64", + "product_id": 1381, + "repository_id": 2110, + "parent_product_id": 1357, + "root_product_id": 1357, + "update_tag": "OpenStack-Cloud-7", + "url": "https://updates.suse.com/SUSE/Updates/OpenStack-Cloud/7/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SUSE-OpenStack-Cloud-7-Debuginfo-Updates for x86_64 SP2", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-openstack-cloud-7-pool-x86_64", + "parent_channel_label": "sles12-sp2-pool-x86_64", + "product_id": 1381, + "repository_id": 2111, + "parent_product_id": 1357, + "root_product_id": 1357, + "update_tag": "OpenStack-Cloud-7", + "url": "https://updates.suse.com/SUSE/Products/OpenStack-Cloud/7/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-OpenStack-Cloud-7-Pool for x86_64 SP2", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-openstack-cloud-7-debuginfo-pool-x86_64", + "parent_channel_label": "sles12-sp2-pool-x86_64", + "product_id": 1381, + "repository_id": 2112, + "parent_product_id": 1357, + "root_product_id": 1357, + "update_tag": "OpenStack-Cloud-7", + "url": "https://updates.suse.com/SUSE/Products/OpenStack-Cloud/7/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SUSE-OpenStack-Cloud-7-Debuginfo-Pool for x86_64 SP2", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "openstack-cloud-magnum-orchestration-updates-x86_64", + "parent_channel_label": "sles12-sp2-pool-x86_64", + "product_id": 1485, + "repository_id": 2367, + "parent_product_id": 1381, + "root_product_id": 1357, + "update_tag": "OpenStack-Cloud-Magnum-Orchestration-7", + "url": "https://updates.suse.com/SUSE/Updates/OpenStack-Cloud-Magnum-Orchestration/7/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "OpenStack-Cloud-Magnum-Orchestration-Updates for x86_64 SP2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "openstack-cloud-magnum-orchestration-debuginfo-updates-x86_64", + "parent_channel_label": "sles12-sp2-pool-x86_64", + "product_id": 1485, + "repository_id": 2368, + "parent_product_id": 1381, + "root_product_id": 1357, + "update_tag": "OpenStack-Cloud-Magnum-Orchestration-7", + "url": "https://updates.suse.com/SUSE/Updates/OpenStack-Cloud-Magnum-Orchestration/7/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "OpenStack-Cloud-Magnum-Orchestration-Debuginfo-Updates for x86_64 SP2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "openstack-cloud-magnum-orchestration-pool-x86_64", + "parent_channel_label": "sles12-sp2-pool-x86_64", + "product_id": 1485, + "repository_id": 2369, + "parent_product_id": 1381, + "root_product_id": 1357, + "update_tag": "OpenStack-Cloud-Magnum-Orchestration-7", + "url": "https://updates.suse.com/SUSE/Products/OpenStack-Cloud-Magnum-Orchestration/7/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "OpenStack-Cloud-Magnum-Orchestration-Pool for x86_64 SP2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "openstack-cloud-magnum-orchestration-debuginfo-pool-x86_64", + "parent_channel_label": "sles12-sp2-pool-x86_64", + "product_id": 1485, + "repository_id": 2370, + "parent_product_id": 1381, + "root_product_id": 1357, + "update_tag": "OpenStack-Cloud-Magnum-Orchestration-7", + "url": "https://updates.suse.com/SUSE/Products/OpenStack-Cloud-Magnum-Orchestration/7/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "OpenStack-Cloud-Magnum-Orchestration-Debuginfo-Pool for x86_64 SP2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-enterprise-storage-4-updates-x86_64", + "parent_channel_label": "sles12-sp2-pool-x86_64", + "product_id": 1416, + "repository_id": 2163, + "parent_product_id": 1357, + "root_product_id": 1357, + "update_tag": "Storage-4", + "url": "https://updates.suse.com/SUSE/Updates/Storage/4/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-Enterprise-Storage-4-Updates for x86_64 SP2", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-enterprise-storage-4-debuginfo-updates-x86_64", + "parent_channel_label": "sles12-sp2-pool-x86_64", + "product_id": 1416, + "repository_id": 2164, + "parent_product_id": 1357, + "root_product_id": 1357, + "update_tag": "Storage-4", + "url": "https://updates.suse.com/SUSE/Updates/Storage/4/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SUSE-Enterprise-Storage-4-Debuginfo-Updates for x86_64 SP2", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-enterprise-storage-4-pool-x86_64", + "parent_channel_label": "sles12-sp2-pool-x86_64", + "product_id": 1416, + "repository_id": 2165, + "parent_product_id": 1357, + "root_product_id": 1357, + "update_tag": "Storage-4", + "url": "https://updates.suse.com/SUSE/Products/Storage/4/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-Enterprise-Storage-4-Pool for x86_64 SP2", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-enterprise-storage-4-debuginfo-pool-x86_64", + "parent_channel_label": "sles12-sp2-pool-x86_64", + "product_id": 1416, + "repository_id": 2166, + "parent_product_id": 1357, + "root_product_id": 1357, + "update_tag": "Storage-4", + "url": "https://updates.suse.com/SUSE/Products/Storage/4/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SUSE-Enterprise-Storage-4-Debuginfo-Pool for x86_64 SP2", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-rt12-sp2-updates-x86_64", + "parent_channel_label": "sles12-sp2-pool-x86_64", + "product_id": 1438, + "repository_id": 2285, + "parent_product_id": 1357, + "root_product_id": 1357, + "update_tag": "SLE-RT", + "url": "https://updates.suse.com/SUSE/Updates/SLE-RT/12-SP2/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-RT12-SP2-Updates for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-rt12-sp2-debuginfo-updates-x86_64", + "parent_channel_label": "sles12-sp2-pool-x86_64", + "product_id": 1438, + "repository_id": 2286, + "parent_product_id": 1357, + "root_product_id": 1357, + "update_tag": "SLE-RT", + "url": "https://updates.suse.com/SUSE/Updates/SLE-RT/12-SP2/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-RT12-SP2-Debuginfo-Updates for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-rt12-sp2-pool-x86_64", + "parent_channel_label": "sles12-sp2-pool-x86_64", + "product_id": 1438, + "repository_id": 2287, + "parent_product_id": 1357, + "root_product_id": 1357, + "update_tag": "SLE-RT", + "url": "https://updates.suse.com/SUSE/Products/SLE-RT/12-SP2/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-RT12-SP2-Pool for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-rt12-sp2-debuginfo-pool-x86_64", + "parent_channel_label": "sles12-sp2-pool-x86_64", + "product_id": 1438, + "repository_id": 2288, + "parent_product_id": 1357, + "root_product_id": 1357, + "update_tag": "SLE-RT", + "url": "https://updates.suse.com/SUSE/Products/SLE-RT/12-SP2/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-RT12-SP2-Debuginfo-Pool for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-pos12-sp2-updates-x86_64", + "parent_channel_label": "sles12-sp2-pool-x86_64", + "product_id": 1439, + "repository_id": 2289, + "parent_product_id": 1357, + "root_product_id": 1357, + "update_tag": "SLE-POS", + "url": "https://updates.suse.com/SUSE/Updates/SLE-POS/12-SP2/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-POS12-SP2-Updates for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-pos12-sp2-debuginfo-updates-x86_64", + "parent_channel_label": "sles12-sp2-pool-x86_64", + "product_id": 1439, + "repository_id": 2290, + "parent_product_id": 1357, + "root_product_id": 1357, + "update_tag": "SLE-POS", + "url": "https://updates.suse.com/SUSE/Updates/SLE-POS/12-SP2/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-POS12-SP2-Debuginfo-Updates for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-pos12-sp2-pool-x86_64", + "parent_channel_label": "sles12-sp2-pool-x86_64", + "product_id": 1439, + "repository_id": 2291, + "parent_product_id": 1357, + "root_product_id": 1357, + "update_tag": "SLE-POS", + "url": "https://updates.suse.com/SUSE/Products/SLE-POS/12-SP2/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-POS12-SP2-Pool for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-pos12-sp2-debuginfo-pool-x86_64", + "parent_channel_label": "sles12-sp2-pool-x86_64", + "product_id": 1439, + "repository_id": 2292, + "parent_product_id": 1357, + "root_product_id": 1357, + "update_tag": "SLE-POS", + "url": "https://updates.suse.com/SUSE/Products/SLE-POS/12-SP2/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-POS12-SP2-Debuginfo-Pool for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-pos12-sp2-client-updates-x86_64", + "parent_channel_label": "sles12-sp2-pool-x86_64", + "product_id": 1439, + "repository_id": 3130, + "parent_product_id": 1357, + "root_product_id": 1357, + "update_tag": "SLE-POS", + "url": "https://updates.suse.com/SUSE/Updates/SLE-POS/12-SP2-CLIENT/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-POS12-SP2-CLIENT-Updates for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-pos12-sp2-client-debuginfo-updates-x86_64", + "parent_channel_label": "sles12-sp2-pool-x86_64", + "product_id": 1439, + "repository_id": 3131, + "parent_product_id": 1357, + "root_product_id": 1357, + "update_tag": "SLE-POS", + "url": "https://updates.suse.com/SUSE/Updates/SLE-POS/12-SP2-CLIENT/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-POS12-SP2-CLIENT-Debuginfo-Updates for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-hpc12-updates-x86_64", + "parent_channel_label": "sles12-sp2-pool-x86_64", + "product_id": 1440, + "repository_id": 2294, + "parent_product_id": 1357, + "root_product_id": 1357, + "update_tag": "SLE-Module-HPC", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-HPC/12/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-HPC12-Updates for x86_64 SP2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-hpc12-debuginfo-updates-x86_64", + "parent_channel_label": "sles12-sp2-pool-x86_64", + "product_id": 1440, + "repository_id": 2295, + "parent_product_id": 1357, + "root_product_id": 1357, + "update_tag": "SLE-Module-HPC", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-HPC/12/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-HPC12-Debuginfo-Updates for x86_64 SP2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-hpc12-pool-x86_64", + "parent_channel_label": "sles12-sp2-pool-x86_64", + "product_id": 1440, + "repository_id": 2296, + "parent_product_id": 1357, + "root_product_id": 1357, + "update_tag": "SLE-Module-HPC", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-HPC/12/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-HPC12-Pool for x86_64 SP2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-hpc12-debuginfo-pool-x86_64", + "parent_channel_label": "sles12-sp2-pool-x86_64", + "product_id": 1440, + "repository_id": 2297, + "parent_product_id": 1357, + "root_product_id": 1357, + "update_tag": "SLE-Module-HPC", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-HPC/12/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-HPC12-Debuginfo-Pool for x86_64 SP2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-packagehub-12-sp2-x86_64", + "parent_channel_label": "sles12-sp2-pool-x86_64", + "product_id": 1479, + "repository_id": 2345, + "parent_product_id": 1357, + "root_product_id": 1357, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-12-SP2_x86_64/standard/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-12-SP2-Standard-Pool for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-packagehub-12-sp2-debuginfo-x86_64", + "parent_channel_label": "sles12-sp2-pool-x86_64", + "product_id": 1479, + "repository_id": 2346, + "parent_product_id": 1357, + "root_product_id": 1357, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-12-SP2_x86_64/standard_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-12-SP2-Debuginfo for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-packagehub-12-sp2-pool-x86_64", + "parent_channel_label": "sles12-sp2-pool-x86_64", + "product_id": 1479, + "repository_id": 2347, + "parent_product_id": 1357, + "root_product_id": 1357, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-12-SP2_x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-12-SP2-Pool for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-manager-server-3.1-updates-x86_64", + "parent_channel_label": "sles12-sp2-pool-x86_64", + "product_id": 1518, + "repository_id": 2400, + "parent_product_id": 1357, + "root_product_id": 1357, + "update_tag": "SUSE-Manager-Server-3.1", + "url": "https://updates.suse.com/SUSE/Updates/SUSE-Manager-Server/3.1/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-Manager-Server-3.1-Updates for x86_64 SP2", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-manager-server-3.1-debuginfo-updates-x86_64", + "parent_channel_label": "sles12-sp2-pool-x86_64", + "product_id": 1518, + "repository_id": 2401, + "parent_product_id": 1357, + "root_product_id": 1357, + "update_tag": "SUSE-Manager-Server-3.1", + "url": "https://updates.suse.com/SUSE/Updates/SUSE-Manager-Server/3.1/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SUSE-Manager-Server-3.1-Debuginfo-Updates for x86_64 SP2", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-manager-server-3.1-pool-x86_64", + "parent_channel_label": "sles12-sp2-pool-x86_64", + "product_id": 1518, + "repository_id": 2402, + "parent_product_id": 1357, + "root_product_id": 1357, + "update_tag": "SUSE-Manager-Server-3.1", + "url": "https://updates.suse.com/SUSE/Products/SUSE-Manager-Server/3.1/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-Manager-Server-3.1-Pool for x86_64 SP2", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-manager-server-3.1-debuginfo-pool-x86_64", + "parent_channel_label": "sles12-sp2-pool-x86_64", + "product_id": 1518, + "repository_id": 2403, + "parent_product_id": 1357, + "root_product_id": 1357, + "update_tag": "SUSE-Manager-Server-3.1", + "url": "https://updates.suse.com/SUSE/Products/SUSE-Manager-Server/3.1/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SUSE-Manager-Server-3.1-Debuginfo-Pool for x86_64 SP2", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-manager-proxy-3.1-updates-x86_64", + "parent_channel_label": "sles12-sp2-pool-x86_64", + "product_id": 1520, + "repository_id": 2410, + "parent_product_id": 1357, + "root_product_id": 1357, + "update_tag": "SUSE-Manager-Proxy-3.1", + "url": "https://updates.suse.com/SUSE/Updates/SUSE-Manager-Proxy/3.1/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-Manager-Proxy-3.1-Updates for x86_64 SP2", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-manager-proxy-3.1-debuginfo-updates-x86_64", + "parent_channel_label": "sles12-sp2-pool-x86_64", + "product_id": 1520, + "repository_id": 2411, + "parent_product_id": 1357, + "root_product_id": 1357, + "update_tag": "SUSE-Manager-Proxy-3.1", + "url": "https://updates.suse.com/SUSE/Updates/SUSE-Manager-Proxy/3.1/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SUSE-Manager-Proxy-3.1-Debuginfo-Updates for x86_64 SP2", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-manager-proxy-3.1-pool-x86_64", + "parent_channel_label": "sles12-sp2-pool-x86_64", + "product_id": 1520, + "repository_id": 2412, + "parent_product_id": 1357, + "root_product_id": 1357, + "update_tag": "SUSE-Manager-Proxy-3.1", + "url": "https://updates.suse.com/SUSE/Products/SUSE-Manager-Proxy/3.1/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-Manager-Proxy-3.1-Pool for x86_64 SP2", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-manager-proxy-3.1-debuginfo-pool-x86_64", + "parent_channel_label": "sles12-sp2-pool-x86_64", + "product_id": 1520, + "repository_id": 2413, + "parent_product_id": 1357, + "root_product_id": 1357, + "update_tag": "SUSE-Manager-Proxy-3.1", + "url": "https://updates.suse.com/SUSE/Products/SUSE-Manager-Proxy/3.1/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SUSE-Manager-Proxy-3.1-Debuginfo-Pool for x86_64 SP2", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-manager-retail-3.1-updates-x86_64", + "parent_channel_label": "sles12-sp2-pool-x86_64", + "product_id": 1574, + "repository_id": 2519, + "parent_product_id": 1357, + "root_product_id": 1357, + "update_tag": "SUSE-Manager-Retail-3.1", + "url": "https://updates.suse.com/SUSE/Updates/SUSE-Manager-Retail/3.1/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-Manager-Retail-3.1-Updates for x86_64 SP2", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-manager-retail-3.1-debuginfo-updates-x86_64", + "parent_channel_label": "sles12-sp2-pool-x86_64", + "product_id": 1574, + "repository_id": 2520, + "parent_product_id": 1357, + "root_product_id": 1357, + "update_tag": "SUSE-Manager-Retail-3.1", + "url": "https://updates.suse.com/SUSE/Updates/SUSE-Manager-Retail/3.1/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SUSE-Manager-Retail-3.1-Debuginfo-Updates for x86_64 SP2", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-manager-retail-3.1-pool-x86_64", + "parent_channel_label": "sles12-sp2-pool-x86_64", + "product_id": 1574, + "repository_id": 2521, + "parent_product_id": 1357, + "root_product_id": 1357, + "update_tag": "SUSE-Manager-Retail-3.1", + "url": "https://updates.suse.com/SUSE/Products/SUSE-Manager-Retail/3.1/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-Manager-Retail-3.1-Pool for x86_64 SP2", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-manager-retail-3.1-debuginfo-pool-x86_64", + "parent_channel_label": "sles12-sp2-pool-x86_64", + "product_id": 1574, + "repository_id": 2522, + "parent_product_id": 1357, + "root_product_id": 1357, + "update_tag": "SUSE-Manager-Retail-3.1", + "url": "https://updates.suse.com/SUSE/Products/SUSE-Manager-Retail/3.1/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SUSE-Manager-Retail-3.1-Debuginfo-Pool for x86_64 SP2", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-cap-tools-12-updates-x86_64-sp2", + "parent_channel_label": "sles12-sp2-pool-x86_64", + "product_id": 1678, + "repository_id": 2912, + "parent_product_id": 1357, + "root_product_id": 1357, + "update_tag": "SLE-Module-CAP-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-CAP-Tools/12/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-CAP-Tools-12-Updates for x86_64 SP2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-cap-tools-12-debuginfo-updates-x86_64-sp2", + "parent_channel_label": "sles12-sp2-pool-x86_64", + "product_id": 1678, + "repository_id": 2913, + "parent_product_id": 1357, + "root_product_id": 1357, + "update_tag": "SLE-Module-CAP-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-CAP-Tools/12/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-CAP-Tools-12-Debuginfo-Updates for x86_64 SP2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-cap-tools-12-pool-x86_64-sp2", + "parent_channel_label": "sles12-sp2-pool-x86_64", + "product_id": 1678, + "repository_id": 2914, + "parent_product_id": 1357, + "root_product_id": 1357, + "update_tag": "SLE-Module-CAP-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-CAP-Tools/12/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-CAP-Tools-12-Pool for x86_64 SP2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-cap-tools-12-debuginfo-pool-x86_64-sp2", + "parent_channel_label": "sles12-sp2-pool-x86_64", + "product_id": 1678, + "repository_id": 2915, + "parent_product_id": 1357, + "root_product_id": 1357, + "update_tag": "SLE-Module-CAP-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-CAP-Tools/12/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-CAP-Tools-12-Debuginfo-Pool for x86_64 SP2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles12-sp2-ltss-updates-x86_64", + "parent_channel_label": "sles12-sp2-pool-x86_64", + "product_id": 1739, + "repository_id": 3048, + "parent_product_id": 1357, + "root_product_id": 1357, + "update_tag": "SLE-SERVER", + "url": "https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-SP2-LTSS/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLES12-SP2-LTSS-Updates for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles12-sp2-ltss-debuginfo-updates-x86_64", + "parent_channel_label": "sles12-sp2-pool-x86_64", + "product_id": 1739, + "repository_id": 3049, + "parent_product_id": 1357, + "root_product_id": 1357, + "update_tag": "SLE-SERVER", + "url": "https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-SP2-LTSS/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLES12-SP2-LTSS-Debuginfo-Updates for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-manager-tools12-beta-updates-x86_64-sp2", + "parent_channel_label": "sles12-sp2-pool-x86_64", + "product_id": 1747, + "repository_id": 3077, + "parent_product_id": 1357, + "root_product_id": 1357, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/12-BETA/x86_64/update/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools12-BETA-Updates for x86_64 SP2", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools12-beta-debuginfo-updates-x86_64-sp2", + "parent_channel_label": "sles12-sp2-pool-x86_64", + "product_id": 1747, + "repository_id": 3078, + "parent_product_id": 1357, + "root_product_id": 1357, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/12-BETA/x86_64/update_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools12-BETA-Debuginfo-Updates for x86_64 SP2", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools12-beta-pool-x86_64-sp2", + "parent_channel_label": "sles12-sp2-pool-x86_64", + "product_id": 1747, + "repository_id": 3079, + "parent_product_id": 1357, + "root_product_id": 1357, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/12-BETA/x86_64/product/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools12-BETA-Pool for x86_64 SP2", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools12-beta-debuginfo-pool-x86_64-sp2", + "parent_channel_label": "sles12-sp2-pool-x86_64", + "product_id": 1747, + "repository_id": 3080, + "parent_product_id": 1357, + "root_product_id": 1357, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/12-BETA/x86_64/product_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools12-BETA-Debuginfo-Pool for x86_64 SP2", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools12-updates-x86_64-sled-sp2", + "parent_channel_label": "sled12-sp2-pool-x86_64", + "product_id": 1358, + "repository_id": 1732, + "parent_product_id": null, + "root_product_id": 1358, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/12/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Manager-Tools12-Updates for x86_64 SLED SP2", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools12-debuginfo-updates-x86_64-sled-sp2", + "parent_channel_label": "sled12-sp2-pool-x86_64", + "product_id": 1358, + "repository_id": 1733, + "parent_product_id": null, + "root_product_id": 1358, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/12/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Manager-Tools12-Debuginfo-Updates for x86_64 SLED SP2", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools12-pool-x86_64-sled-sp2", + "parent_channel_label": "sled12-sp2-pool-x86_64", + "product_id": 1358, + "repository_id": 1734, + "parent_product_id": null, + "root_product_id": 1358, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/12/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Manager-Tools12-Pool for x86_64 SLED SP2", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools12-debuginfo-pool-x86_64-sled-sp2", + "parent_channel_label": "sled12-sp2-pool-x86_64", + "product_id": 1358, + "repository_id": 1735, + "parent_product_id": null, + "root_product_id": 1358, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/12/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Manager-Tools12-Debuginfo-Pool for x86_64 SLED SP2", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sled12-sp2-updates-x86_64", + "parent_channel_label": "sled12-sp2-pool-x86_64", + "product_id": 1358, + "repository_id": 2018, + "parent_product_id": null, + "root_product_id": 1358, + "update_tag": "SLE-DESKTOP", + "url": "https://updates.suse.com/SUSE/Updates/SLE-DESKTOP/12-SP2/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLED12-SP2-Updates for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sled12-sp2-debuginfo-updates-x86_64", + "parent_channel_label": "sled12-sp2-pool-x86_64", + "product_id": 1358, + "repository_id": 2019, + "parent_product_id": null, + "root_product_id": 1358, + "update_tag": "SLE-DESKTOP", + "url": "https://updates.suse.com/SUSE/Updates/SLE-DESKTOP/12-SP2/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLED12-SP2-Debuginfo-Updates for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sled12-sp2-pool-x86_64", + "parent_channel_label": null, + "product_id": 1358, + "repository_id": 2020, + "parent_product_id": null, + "root_product_id": 1358, + "update_tag": "SLE-DESKTOP", + "url": "https://updates.suse.com/SUSE/Products/SLE-DESKTOP/12-SP2/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLED12-SP2-Pool for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sled12-sp2-debuginfo-pool-x86_64", + "parent_channel_label": "sled12-sp2-pool-x86_64", + "product_id": 1358, + "repository_id": 2022, + "parent_product_id": null, + "root_product_id": 1358, + "update_tag": "SLE-DESKTOP", + "url": "https://updates.suse.com/SUSE/Products/SLE-DESKTOP/12-SP2/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLED12-SP2-Debuginfo-Pool for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sled12-sp2-installer-updates-x86_64", + "parent_channel_label": "sled12-sp2-pool-x86_64", + "product_id": 1358, + "repository_id": 2148, + "parent_product_id": null, + "root_product_id": 1358, + "update_tag": "SLE-DESKTOP-INSTALLER", + "url": "https://updates.suse.com/SUSE/Updates/SLE-DESKTOP-INSTALLER/12-SP2/x86_64/update/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLED12-SP2-Installer-Updates for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-12-sp2-ga-desktop-nvidia-driver", + "parent_channel_label": "sled12-sp2-pool-x86_64", + "product_id": 1358, + "repository_id": 2149, + "parent_product_id": null, + "root_product_id": 1358, + "update_tag": null, + "url": "http://download.nvidia.com/suse/sle12sp2/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-12-SP2-GA-Desktop-nVidia-Driver for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-sdk12-sp2-updates-x86_64-sled-sp2", + "parent_channel_label": "sled12-sp2-pool-x86_64", + "product_id": 1366, + "repository_id": 2059, + "parent_product_id": 1358, + "root_product_id": 1358, + "update_tag": "SLE-SDK", + "url": "https://updates.suse.com/SUSE/Updates/SLE-SDK/12-SP2/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-SDK12-SP2-Updates for x86_64 SLED", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-sdk12-sp2-debuginfo-updates-x86_64-sled-sp2", + "parent_channel_label": "sled12-sp2-pool-x86_64", + "product_id": 1366, + "repository_id": 2060, + "parent_product_id": 1358, + "root_product_id": 1358, + "update_tag": "SLE-SDK", + "url": "https://updates.suse.com/SUSE/Updates/SLE-SDK/12-SP2/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-SDK12-SP2-Debuginfo-Updates for x86_64 SLED", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-sdk12-sp2-pool-x86_64-sled-sp2", + "parent_channel_label": "sled12-sp2-pool-x86_64", + "product_id": 1366, + "repository_id": 2061, + "parent_product_id": 1358, + "root_product_id": 1358, + "update_tag": "SLE-SDK", + "url": "https://updates.suse.com/SUSE/Products/SLE-SDK/12-SP2/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-SDK12-SP2-Pool for x86_64 SLED", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-sdk12-sp2-debuginfo-pool-x86_64-sled-sp2", + "parent_channel_label": "sled12-sp2-pool-x86_64", + "product_id": 1366, + "repository_id": 2062, + "parent_product_id": 1358, + "root_product_id": 1358, + "update_tag": "SLE-SDK", + "url": "https://updates.suse.com/SUSE/Products/SLE-SDK/12-SP2/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-SDK12-SP2-Debuginfo-Pool for x86_64 SLED", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-packagehub-12-sp2-x86_64-sled-sp2", + "parent_channel_label": "sled12-sp2-pool-x86_64", + "product_id": 1479, + "repository_id": 2345, + "parent_product_id": 1358, + "root_product_id": 1358, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-12-SP2_x86_64/standard/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-12-SP2-Standard-Pool for x86_64 SLED", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-packagehub-12-sp2-debuginfo-x86_64-sled-sp2", + "parent_channel_label": "sled12-sp2-pool-x86_64", + "product_id": 1479, + "repository_id": 2346, + "parent_product_id": 1358, + "root_product_id": 1358, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-12-SP2_x86_64/standard_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-12-SP2-Debuginfo for x86_64 SLED", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-packagehub-12-sp2-pool-x86_64-sled-sp2", + "parent_channel_label": "sled12-sp2-pool-x86_64", + "product_id": 1479, + "repository_id": 2347, + "parent_product_id": 1358, + "root_product_id": 1358, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-12-SP2_x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-12-SP2-Pool for x86_64 SLED", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-cap-tools-12-updates-x86_64-sled-sp2", + "parent_channel_label": "sled12-sp2-pool-x86_64", + "product_id": 1678, + "repository_id": 2912, + "parent_product_id": 1358, + "root_product_id": 1358, + "update_tag": "SLE-Module-CAP-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-CAP-Tools/12/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-CAP-Tools-12-Updates for x86_64 SLED SP2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-cap-tools-12-debuginfo-updates-x86_64-sled-sp2", + "parent_channel_label": "sled12-sp2-pool-x86_64", + "product_id": 1678, + "repository_id": 2913, + "parent_product_id": 1358, + "root_product_id": 1358, + "update_tag": "SLE-Module-CAP-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-CAP-Tools/12/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-CAP-Tools-12-Debuginfo-Updates for x86_64 SLED SP2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-cap-tools-12-pool-x86_64-sled-sp2", + "parent_channel_label": "sled12-sp2-pool-x86_64", + "product_id": 1678, + "repository_id": 2914, + "parent_product_id": 1358, + "root_product_id": 1358, + "update_tag": "SLE-Module-CAP-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-CAP-Tools/12/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-CAP-Tools-12-Pool for x86_64 SLED SP2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-cap-tools-12-debuginfo-pool-x86_64-sled-sp2", + "parent_channel_label": "sled12-sp2-pool-x86_64", + "product_id": 1678, + "repository_id": 2915, + "parent_product_id": 1358, + "root_product_id": 1358, + "update_tag": "SLE-Module-CAP-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-CAP-Tools/12/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-CAP-Tools-12-Debuginfo-Pool for x86_64 SLED SP2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-manager-tools12-beta-updates-x86_64-sled-sp2", + "parent_channel_label": "sled12-sp2-pool-x86_64", + "product_id": 1747, + "repository_id": 3077, + "parent_product_id": 1358, + "root_product_id": 1358, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/12-BETA/x86_64/update/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools12-BETA-Updates for x86_64 SLED SP2", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools12-beta-debuginfo-updates-x86_64-sled-sp2", + "parent_channel_label": "sled12-sp2-pool-x86_64", + "product_id": 1747, + "repository_id": 3078, + "parent_product_id": 1358, + "root_product_id": 1358, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/12-BETA/x86_64/update_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools12-BETA-Debuginfo-Updates for x86_64 SLED SP2", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools12-beta-pool-x86_64-sled-sp2", + "parent_channel_label": "sled12-sp2-pool-x86_64", + "product_id": 1747, + "repository_id": 3079, + "parent_product_id": 1358, + "root_product_id": 1358, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/12-BETA/x86_64/product/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools12-BETA-Pool for x86_64 SLED SP2", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools12-beta-debuginfo-pool-x86_64-sled-sp2", + "parent_channel_label": "sled12-sp2-pool-x86_64", + "product_id": 1747, + "repository_id": 3080, + "parent_product_id": 1358, + "root_product_id": 1358, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/12-BETA/x86_64/product_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools12-BETA-Debuginfo-Pool for x86_64 SLED SP2", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sles12-sp2-updates-aarch64", + "parent_channel_label": "sles12-sp2-pool-aarch64", + "product_id": 1375, + "repository_id": 2081, + "parent_product_id": null, + "root_product_id": 1375, + "update_tag": "SLE-SERVER", + "url": "https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-SP2/aarch64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLES12-SP2-Updates for aarch64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles12-sp2-debuginfo-updates-aarch64", + "parent_channel_label": "sles12-sp2-pool-aarch64", + "product_id": 1375, + "repository_id": 2082, + "parent_product_id": null, + "root_product_id": 1375, + "update_tag": "SLE-SERVER", + "url": "https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-SP2/aarch64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLES12-SP2-Debuginfo-Updates for aarch64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles12-sp2-pool-aarch64", + "parent_channel_label": null, + "product_id": 1375, + "repository_id": 2083, + "parent_product_id": null, + "root_product_id": 1375, + "update_tag": "SLE-SERVER", + "url": "https://updates.suse.com/SUSE/Products/SLE-SERVER/12-SP2/aarch64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLES12-SP2-Pool for aarch64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles12-sp2-debuginfo-pool-aarch64", + "parent_channel_label": "sles12-sp2-pool-aarch64", + "product_id": 1375, + "repository_id": 2084, + "parent_product_id": null, + "root_product_id": 1375, + "update_tag": "SLE-SERVER", + "url": "https://updates.suse.com/SUSE/Products/SLE-SERVER/12-SP2/aarch64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLES12-SP2-Debuginfo-Pool for aarch64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles12-sp2-installer-updates-aarch64", + "parent_channel_label": "sles12-sp2-pool-aarch64", + "product_id": 1375, + "repository_id": 2104, + "parent_product_id": null, + "root_product_id": 1375, + "update_tag": "SLE-SERVER-INSTALLER", + "url": "https://updates.suse.com/SUSE/Updates/SLE-SERVER-INSTALLER/12-SP2/aarch64/update/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLES12-SP2-Installer-Updates for aarch64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-manager-tools12-updates-aarch64", + "parent_channel_label": "sles12-sp2-pool-aarch64", + "product_id": 1375, + "repository_id": 2179, + "parent_product_id": null, + "root_product_id": 1375, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/12/aarch64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Manager-Tools12-Updates for aarch64 SP2", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools12-debuginfo-updates-aarch64", + "parent_channel_label": "sles12-sp2-pool-aarch64", + "product_id": 1375, + "repository_id": 2180, + "parent_product_id": null, + "root_product_id": 1375, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/12/aarch64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Manager-Tools12-Debuginfo-Updates for aarch64 SP2", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools12-pool-aarch64", + "parent_channel_label": "sles12-sp2-pool-aarch64", + "product_id": 1375, + "repository_id": 2181, + "parent_product_id": null, + "root_product_id": 1375, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/12/aarch64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Manager-Tools12-Pool for aarch64 SP2", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools12-debuginfo-pool-aarch64", + "parent_channel_label": "sles12-sp2-pool-aarch64", + "product_id": 1375, + "repository_id": 2182, + "parent_product_id": null, + "root_product_id": 1375, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/12/aarch64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Manager-Tools12-Debuginfo-Pool for aarch64 SP2", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-toolchain12-updates-aarch64", + "parent_channel_label": "sles12-sp2-pool-aarch64", + "product_id": 1376, + "repository_id": 2086, + "parent_product_id": 1375, + "root_product_id": 1375, + "update_tag": "SLE-Module-Toolchain", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Toolchain/12/aarch64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Toolchain12-Updates for aarch64 SP2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-toolchain12-debuginfo-updates-aarch64", + "parent_channel_label": "sles12-sp2-pool-aarch64", + "product_id": 1376, + "repository_id": 2087, + "parent_product_id": 1375, + "root_product_id": 1375, + "update_tag": "SLE-Module-Toolchain", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Toolchain/12/aarch64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Toolchain12-Debuginfo-Updates for aarch64 SP2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-toolchain12-pool-aarch64", + "parent_channel_label": "sles12-sp2-pool-aarch64", + "product_id": 1376, + "repository_id": 2088, + "parent_product_id": 1375, + "root_product_id": 1375, + "update_tag": "SLE-Module-Toolchain", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Toolchain/12/aarch64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Toolchain12-Pool for aarch64 SP2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-toolchain12-debuginfo-pool-aarch64", + "parent_channel_label": "sles12-sp2-pool-aarch64", + "product_id": 1376, + "repository_id": 2089, + "parent_product_id": 1375, + "root_product_id": 1375, + "update_tag": "SLE-Module-Toolchain", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Toolchain/12/aarch64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Toolchain12-Debuginfo-Pool for aarch64 SP2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-sdk12-sp2-updates-aarch64", + "parent_channel_label": "sles12-sp2-pool-aarch64", + "product_id": 1378, + "repository_id": 2095, + "parent_product_id": 1375, + "root_product_id": 1375, + "update_tag": "SLE-SDK", + "url": "https://updates.suse.com/SUSE/Updates/SLE-SDK/12-SP2/aarch64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-SDK12-SP2-Updates for aarch64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-sdk12-sp2-debuginfo-updates-aarch64", + "parent_channel_label": "sles12-sp2-pool-aarch64", + "product_id": 1378, + "repository_id": 2096, + "parent_product_id": 1375, + "root_product_id": 1375, + "update_tag": "SLE-SDK", + "url": "https://updates.suse.com/SUSE/Updates/SLE-SDK/12-SP2/aarch64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-SDK12-SP2-Debuginfo-Updates for aarch64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-sdk12-sp2-pool-aarch64", + "parent_channel_label": "sles12-sp2-pool-aarch64", + "product_id": 1378, + "repository_id": 2097, + "parent_product_id": 1375, + "root_product_id": 1375, + "update_tag": "SLE-SDK", + "url": "https://updates.suse.com/SUSE/Products/SLE-SDK/12-SP2/aarch64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-SDK12-SP2-Pool for aarch64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-sdk12-sp2-debuginfo-pool-aarch64", + "parent_channel_label": "sles12-sp2-pool-aarch64", + "product_id": 1378, + "repository_id": 2098, + "parent_product_id": 1375, + "root_product_id": 1375, + "update_tag": "SLE-SDK", + "url": "https://updates.suse.com/SUSE/Products/SLE-SDK/12-SP2/aarch64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-SDK12-SP2-Debuginfo-Pool for aarch64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-enterprise-storage-4-updates-aarch64-sp2", + "parent_channel_label": "sles12-sp2-pool-aarch64", + "product_id": 1417, + "repository_id": 2168, + "parent_product_id": 1375, + "root_product_id": 1375, + "update_tag": "Storage-4", + "url": "https://updates.suse.com/SUSE/Updates/Storage/4/aarch64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-Enterprise-Storage-4-Updates for aarch64 SP2", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-enterprise-storage-4-debuginfo-updates-aarch64-sp2", + "parent_channel_label": "sles12-sp2-pool-aarch64", + "product_id": 1417, + "repository_id": 2169, + "parent_product_id": 1375, + "root_product_id": 1375, + "update_tag": "Storage-4", + "url": "https://updates.suse.com/SUSE/Updates/Storage/4/aarch64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SUSE-Enterprise-Storage-4-Debuginfo-Updates for aarch64 SP2", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-enterprise-storage-4-pool-aarch64-sp2", + "parent_channel_label": "sles12-sp2-pool-aarch64", + "product_id": 1417, + "repository_id": 2170, + "parent_product_id": 1375, + "root_product_id": 1375, + "update_tag": "Storage-4", + "url": "https://updates.suse.com/SUSE/Products/Storage/4/aarch64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-Enterprise-Storage-4-Pool for aarch64 SP2", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-enterprise-storage-4-debuginfo-pool-aarch64-sp2", + "parent_channel_label": "sles12-sp2-pool-aarch64", + "product_id": 1417, + "repository_id": 2171, + "parent_product_id": 1375, + "root_product_id": 1375, + "update_tag": "Storage-4", + "url": "https://updates.suse.com/SUSE/Products/Storage/4/aarch64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SUSE-Enterprise-Storage-4-Debuginfo-Pool for aarch64 SP2", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-manager-tools12-updates-aarch64-sp2-slemt", + "parent_channel_label": "sles12-sp2-pool-aarch64", + "product_id": 1419, + "repository_id": 2179, + "parent_product_id": 1375, + "root_product_id": 1375, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/12/aarch64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Manager-Tools12-Updates for aarch64 SP2 SLE-M-T", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools12-debuginfo-updates-aarch64-sp2-slemt", + "parent_channel_label": "sles12-sp2-pool-aarch64", + "product_id": 1419, + "repository_id": 2180, + "parent_product_id": 1375, + "root_product_id": 1375, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/12/aarch64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Manager-Tools12-Debuginfo-Updates for aarch64 SP2 SLE-M-T", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools12-pool-aarch64-sp2-slemt", + "parent_channel_label": "sles12-sp2-pool-aarch64", + "product_id": 1419, + "repository_id": 2181, + "parent_product_id": 1375, + "root_product_id": 1375, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/12/aarch64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Manager-Tools12-Pool for aarch64 SP2 SLE-M-T", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools12-debuginfo-pool-aarch64-sp2-slemt", + "parent_channel_label": "sles12-sp2-pool-aarch64", + "product_id": 1419, + "repository_id": 2182, + "parent_product_id": 1375, + "root_product_id": 1375, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/12/aarch64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Manager-Tools12-Debuginfo-Pool for aarch64 SP2 SLE-M-T", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "suse-packagehub-12-sp2-aarch64", + "parent_channel_label": "sles12-sp2-pool-aarch64", + "product_id": 1482, + "repository_id": 2354, + "parent_product_id": 1375, + "root_product_id": 1375, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-12-SP2_aarch64/standard/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-12-SP2-Standard-Pool for aarch64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-packagehub-12-sp2-debuginfo-aarch64", + "parent_channel_label": "sles12-sp2-pool-aarch64", + "product_id": 1482, + "repository_id": 2355, + "parent_product_id": 1375, + "root_product_id": 1375, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-12-SP2_aarch64/standard_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-12-SP2-Debuginfo for aarch64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-packagehub-12-sp2-pool-aarch64", + "parent_channel_label": "sles12-sp2-pool-aarch64", + "product_id": 1482, + "repository_id": 2356, + "parent_product_id": 1375, + "root_product_id": 1375, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-12-SP2_aarch64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-12-SP2-Pool for aarch64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-hpc12-updates-aarch64", + "parent_channel_label": "sles12-sp2-pool-aarch64", + "product_id": 1522, + "repository_id": 2421, + "parent_product_id": 1375, + "root_product_id": 1375, + "update_tag": "SLE-Module-HPC", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-HPC/12/aarch64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-HPC12-Updates for aarch64 SP2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-hpc12-debuginfo-updates-aarch64", + "parent_channel_label": "sles12-sp2-pool-aarch64", + "product_id": 1522, + "repository_id": 2422, + "parent_product_id": 1375, + "root_product_id": 1375, + "update_tag": "SLE-Module-HPC", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-HPC/12/aarch64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-HPC12-Debuginfo-Updates for aarch64 SP2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-hpc12-pool-aarch64", + "parent_channel_label": "sles12-sp2-pool-aarch64", + "product_id": 1522, + "repository_id": 2423, + "parent_product_id": 1375, + "root_product_id": 1375, + "update_tag": "SLE-Module-HPC", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-HPC/12/aarch64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-HPC12-Pool for aarch64 SP2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-hpc12-debuginfo-pool-aarch64", + "parent_channel_label": "sles12-sp2-pool-aarch64", + "product_id": 1522, + "repository_id": 2424, + "parent_product_id": 1375, + "root_product_id": 1375, + "update_tag": "SLE-Module-HPC", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-HPC/12/aarch64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-HPC12-Debuginfo-Pool for aarch64 SP2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud12-updates-aarch64", + "parent_channel_label": "sles12-sp2-pool-aarch64", + "product_id": 1528, + "repository_id": 2157, + "parent_product_id": 1375, + "root_product_id": 1375, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/12/aarch64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud12-Updates for aarch64 SP2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud12-debuginfo-updates-aarch64", + "parent_channel_label": "sles12-sp2-pool-aarch64", + "product_id": 1528, + "repository_id": 2158, + "parent_product_id": 1375, + "root_product_id": 1375, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/12/aarch64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud12-Debuginfo-Updates for aarch64 SP2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud12-pool-aarch64", + "parent_channel_label": "sles12-sp2-pool-aarch64", + "product_id": 1528, + "repository_id": 2159, + "parent_product_id": 1375, + "root_product_id": 1375, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/12/aarch64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud12-Pool for aarch64 SP2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud12-debuginfo-pool-aarch64", + "parent_channel_label": "sles12-sp2-pool-aarch64", + "product_id": 1528, + "repository_id": 2160, + "parent_product_id": 1375, + "root_product_id": 1375, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/12/aarch64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud12-Debuginfo-Pool for aarch64 SP2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting12-updates-aarch64-sp2", + "parent_channel_label": "sles12-sp2-pool-aarch64", + "product_id": 1539, + "repository_id": 2476, + "parent_product_id": 1375, + "root_product_id": 1375, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/12/aarch64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Web-Scripting12-Updates for aarch64 SP2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting12-debuginfo-updates-aarch64-sp2", + "parent_channel_label": "sles12-sp2-pool-aarch64", + "product_id": 1539, + "repository_id": 2477, + "parent_product_id": 1375, + "root_product_id": 1375, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/12/aarch64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Web-Scripting12-Debuginfo-Updates for aarch64 SP2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting12-pool-aarch64-sp2", + "parent_channel_label": "sles12-sp2-pool-aarch64", + "product_id": 1539, + "repository_id": 2478, + "parent_product_id": 1375, + "root_product_id": 1375, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/12/aarch64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Web-Scripting12-Pool for aarch64 SP2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting12-debuginfo-pool-aarch64-sp2", + "parent_channel_label": "sles12-sp2-pool-aarch64", + "product_id": 1539, + "repository_id": 2479, + "parent_product_id": 1375, + "root_product_id": 1375, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/12/aarch64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Web-Scripting12-Debuginfo-Pool for aarch64 SP2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-manager-tools12-beta-updates-aarch64-sp2", + "parent_channel_label": "sles12-sp2-pool-aarch64", + "product_id": 1744, + "repository_id": 3062, + "parent_product_id": 1375, + "root_product_id": 1375, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/12-BETA/aarch64/update/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools12-BETA-Updates for aarch64 SP2", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools12-beta-debuginfo-updates-aarch64-sp2", + "parent_channel_label": "sles12-sp2-pool-aarch64", + "product_id": 1744, + "repository_id": 3063, + "parent_product_id": 1375, + "root_product_id": 1375, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/12-BETA/aarch64/update_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools12-BETA-Debuginfo-Updates for aarch64 SP2", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools12-beta-pool-aarch64-sp2", + "parent_channel_label": "sles12-sp2-pool-aarch64", + "product_id": 1744, + "repository_id": 3064, + "parent_product_id": 1375, + "root_product_id": 1375, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/12-BETA/aarch64/product/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools12-BETA-Pool for aarch64 SP2", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools12-beta-debuginfo-pool-aarch64-sp2", + "parent_channel_label": "sles12-sp2-pool-aarch64", + "product_id": 1744, + "repository_id": 3065, + "parent_product_id": 1375, + "root_product_id": 1375, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/12-BETA/aarch64/product_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools12-BETA-Debuginfo-Pool for aarch64 SP2", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools12-updates-x86_64-sap-sp2", + "parent_channel_label": "sle12-sp2-sap-pool-x86_64", + "product_id": 1414, + "repository_id": 1732, + "parent_product_id": null, + "root_product_id": 1414, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/12/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Manager-Tools12-Updates for x86_64 SAP SP2", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools12-debuginfo-updates-x86_64-sap-sp2", + "parent_channel_label": "sle12-sp2-sap-pool-x86_64", + "product_id": 1414, + "repository_id": 1733, + "parent_product_id": null, + "root_product_id": 1414, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/12/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Manager-Tools12-Debuginfo-Updates for x86_64 SAP SP2", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools12-pool-x86_64-sap-sp2", + "parent_channel_label": "sle12-sp2-sap-pool-x86_64", + "product_id": 1414, + "repository_id": 1734, + "parent_product_id": null, + "root_product_id": 1414, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/12/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Manager-Tools12-Pool for x86_64 SAP SP2", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools12-debuginfo-pool-x86_64-sap-sp2", + "parent_channel_label": "sle12-sp2-sap-pool-x86_64", + "product_id": 1414, + "repository_id": 1735, + "parent_product_id": null, + "root_product_id": 1414, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/12/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Manager-Tools12-Debuginfo-Pool for x86_64 SAP SP2", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sles12-sp2-updates-x86_64-sap-sp2", + "parent_channel_label": "sle12-sp2-sap-pool-x86_64", + "product_id": 1414, + "repository_id": 2013, + "parent_product_id": null, + "root_product_id": 1414, + "update_tag": "SLE-SERVER", + "url": "https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-SP2/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLES12-SP2-Updates for x86_64 SAP", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles12-sp2-debuginfo-updates-x86_64-sap-sp2", + "parent_channel_label": "sle12-sp2-sap-pool-x86_64", + "product_id": 1414, + "repository_id": 2014, + "parent_product_id": null, + "root_product_id": 1414, + "update_tag": "SLE-SERVER", + "url": "https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-SP2/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLES12-SP2-Debuginfo-Updates for x86_64 SAP", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles12-sp2-pool-x86_64-sap-sp2", + "parent_channel_label": "sle12-sp2-sap-pool-x86_64", + "product_id": 1414, + "repository_id": 2015, + "parent_product_id": null, + "root_product_id": 1414, + "update_tag": "SLE-SERVER", + "url": "https://updates.suse.com/SUSE/Products/SLE-SERVER/12-SP2/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLES12-SP2-Pool for x86_64 SAP", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles12-sp2-debuginfo-pool-x86_64-sap-sp2", + "parent_channel_label": "sle12-sp2-sap-pool-x86_64", + "product_id": 1414, + "repository_id": 2016, + "parent_product_id": null, + "root_product_id": 1414, + "update_tag": "SLE-SERVER", + "url": "https://updates.suse.com/SUSE/Products/SLE-SERVER/12-SP2/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLES12-SP2-Debuginfo-Pool for x86_64 SAP", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-ha12-sp2-updates-x86_64-sap-sp2", + "parent_channel_label": "sle12-sp2-sap-pool-x86_64", + "product_id": 1414, + "repository_id": 2034, + "parent_product_id": null, + "root_product_id": 1414, + "update_tag": "SLE-HA", + "url": "https://updates.suse.com/SUSE/Updates/SLE-HA/12-SP2/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-HA12-SP2-Updates for x86_64 SAP", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-ha12-sp2-debuginfo-updates-x86_64-sap-sp2", + "parent_channel_label": "sle12-sp2-sap-pool-x86_64", + "product_id": 1414, + "repository_id": 2035, + "parent_product_id": null, + "root_product_id": 1414, + "update_tag": "SLE-HA", + "url": "https://updates.suse.com/SUSE/Updates/SLE-HA/12-SP2/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-HA12-SP2-Debuginfo-Updates for x86_64 SAP", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-ha12-sp2-pool-x86_64-sap-sp2", + "parent_channel_label": "sle12-sp2-sap-pool-x86_64", + "product_id": 1414, + "repository_id": 2036, + "parent_product_id": null, + "root_product_id": 1414, + "update_tag": "SLE-HA", + "url": "https://updates.suse.com/SUSE/Products/SLE-HA/12-SP2/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-HA12-SP2-Pool for x86_64 SAP", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-ha12-sp2-debuginfo-pool-x86_64-sap-sp2", + "parent_channel_label": "sle12-sp2-sap-pool-x86_64", + "product_id": 1414, + "repository_id": 2037, + "parent_product_id": null, + "root_product_id": 1414, + "update_tag": "SLE-HA", + "url": "https://updates.suse.com/SUSE/Products/SLE-HA/12-SP2/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-HA12-SP2-Debuginfo-Pool for x86_64 SAP", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-12-sp2-sap-updates-x86_64", + "parent_channel_label": "sle12-sp2-sap-pool-x86_64", + "product_id": 1414, + "repository_id": 2150, + "parent_product_id": null, + "root_product_id": 1414, + "update_tag": "SLE-SAP", + "url": "https://updates.suse.com/SUSE/Updates/SLE-SAP/12-SP2/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-12-SP2-SAP-Updates for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-12-sp2-sap-debuginfo-updates-x86_64", + "parent_channel_label": "sle12-sp2-sap-pool-x86_64", + "product_id": 1414, + "repository_id": 2151, + "parent_product_id": null, + "root_product_id": 1414, + "update_tag": "SLE-SAP", + "url": "https://updates.suse.com/SUSE/Updates/SLE-SAP/12-SP2/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-12-SP2-SAP-Debuginfo-Updates for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle12-sp2-sap-pool-x86_64", + "parent_channel_label": null, + "product_id": 1414, + "repository_id": 2152, + "parent_product_id": null, + "root_product_id": 1414, + "update_tag": "SLE-SAP", + "url": "https://updates.suse.com/SUSE/Products/SLE-SAP/12-SP2/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE12-SP2-SAP-Pool for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle12-sp2-sap-debuginfo-pool-x86_64", + "parent_channel_label": "sle12-sp2-sap-pool-x86_64", + "product_id": 1414, + "repository_id": 2153, + "parent_product_id": null, + "root_product_id": 1414, + "update_tag": "SLE-SAP", + "url": "https://updates.suse.com/SUSE/Products/SLE-SAP/12-SP2/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE12-SP2-SAP-Debuginfo-Pool for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle12-sp2-sap-installer-updates-x86_64", + "parent_channel_label": "sle12-sp2-sap-pool-x86_64", + "product_id": 1414, + "repository_id": 2162, + "parent_product_id": null, + "root_product_id": 1414, + "update_tag": "SLE-SAP-INSTALLER", + "url": "https://updates.suse.com/SUSE/Updates/SLE-SAP-INSTALLER/12-SP2/x86_64/update/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE12-SP2-SAP-Installer-Updates for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-legacy12-updates-x86_64-sap-sp2", + "parent_channel_label": "sle12-sp2-sap-pool-x86_64", + "product_id": 1150, + "repository_id": 1676, + "parent_product_id": 1414, + "root_product_id": 1414, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/12/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy12-Updates for x86_64 SAP SP2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-legacy12-debuginfo-updates-x86_64-sap-sp2", + "parent_channel_label": "sle12-sp2-sap-pool-x86_64", + "product_id": 1150, + "repository_id": 1677, + "parent_product_id": 1414, + "root_product_id": 1414, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/12/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy12-Debuginfo-Updates for x86_64 SAP SP2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-legacy12-pool-x86_64-sap-sp2", + "parent_channel_label": "sle12-sp2-sap-pool-x86_64", + "product_id": 1150, + "repository_id": 1678, + "parent_product_id": 1414, + "root_product_id": 1414, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/12/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy12-Pool for x86_64 SAP SP2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-legacy12-debuginfo-pool-x86_64-sap-sp2", + "parent_channel_label": "sle12-sp2-sap-pool-x86_64", + "product_id": 1150, + "repository_id": 1679, + "parent_product_id": 1414, + "root_product_id": 1414, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/12/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy12-Debuginfo-Pool for x86_64 SAP SP2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting12-updates-x86_64-sap-sp2", + "parent_channel_label": "sle12-sp2-sap-pool-x86_64", + "product_id": 1153, + "repository_id": 1688, + "parent_product_id": 1414, + "root_product_id": 1414, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/12/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Web-Scripting12-Updates for x86_64 SAP SP2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting12-debuginfo-updates-x86_64-sap-sp2", + "parent_channel_label": "sle12-sp2-sap-pool-x86_64", + "product_id": 1153, + "repository_id": 1689, + "parent_product_id": 1414, + "root_product_id": 1414, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/12/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Web-Scripting12-Debuginfo-Updates for x86_64 SAP SP2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting12-pool-x86_64-sap-sp2", + "parent_channel_label": "sle12-sp2-sap-pool-x86_64", + "product_id": 1153, + "repository_id": 1690, + "parent_product_id": 1414, + "root_product_id": 1414, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/12/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Web-Scripting12-Pool for x86_64 SAP SP2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting12-debuginfo-pool-x86_64-sap-sp2", + "parent_channel_label": "sle12-sp2-sap-pool-x86_64", + "product_id": 1153, + "repository_id": 1691, + "parent_product_id": 1414, + "root_product_id": 1414, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/12/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Web-Scripting12-Debuginfo-Pool for x86_64 SAP SP2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-adv-systems-management12-updates-x86_64-sap-sp2", + "parent_channel_label": "sle12-sp2-sap-pool-x86_64", + "product_id": 1212, + "repository_id": 1704, + "parent_product_id": 1414, + "root_product_id": 1414, + "update_tag": "SLE-Module-Adv-Systems-Management", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Adv-Systems-Management/12/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Adv-Systems-Management12-Updates for x86_64 SAP SP2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-adv-systems-management12-debuginfo-updates-x86_64-sap-sp2", + "parent_channel_label": "sle12-sp2-sap-pool-x86_64", + "product_id": 1212, + "repository_id": 1705, + "parent_product_id": 1414, + "root_product_id": 1414, + "update_tag": "SLE-Module-Adv-Systems-Management", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Adv-Systems-Management/12/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Adv-Systems-Management12-Debuginfo-Updates for x86_64 SAP SP2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-adv-systems-management12-pool-x86_64-sap-sp2", + "parent_channel_label": "sle12-sp2-sap-pool-x86_64", + "product_id": 1212, + "repository_id": 1706, + "parent_product_id": 1414, + "root_product_id": 1414, + "update_tag": "SLE-Module-Adv-Systems-Management", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Adv-Systems-Management/12/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Adv-Systems-Management12-Pool for x86_64 SAP SP2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-adv-systems-management12-debuginfo-pool-x86_64-sap-sp2", + "parent_channel_label": "sle12-sp2-sap-pool-x86_64", + "product_id": 1212, + "repository_id": 1707, + "parent_product_id": 1414, + "root_product_id": 1414, + "update_tag": "SLE-Module-Adv-Systems-Management", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Adv-Systems-Management/12/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Adv-Systems-Management12-Debuginfo-Pool for x86_64 SAP SP2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud12-updates-x86_64-sap-sp2", + "parent_channel_label": "sle12-sp2-sap-pool-x86_64", + "product_id": 1220, + "repository_id": 1700, + "parent_product_id": 1414, + "root_product_id": 1414, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/12/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud12-Updates for x86_64 SAP SP2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud12-debuginfo-updates-x86_64-sap-sp2", + "parent_channel_label": "sle12-sp2-sap-pool-x86_64", + "product_id": 1220, + "repository_id": 1701, + "parent_product_id": 1414, + "root_product_id": 1414, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/12/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud12-Debuginfo-Updates for x86_64 SAP SP2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud12-pool-x86_64-sap-sp2", + "parent_channel_label": "sle12-sp2-sap-pool-x86_64", + "product_id": 1220, + "repository_id": 1702, + "parent_product_id": 1414, + "root_product_id": 1414, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/12/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud12-Pool for x86_64 SAP SP2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud12-debuginfo-pool-x86_64-sap-sp2", + "parent_channel_label": "sle12-sp2-sap-pool-x86_64", + "product_id": 1220, + "repository_id": 1703, + "parent_product_id": 1414, + "root_product_id": 1414, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/12/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud12-Debuginfo-Pool for x86_64 SAP SP2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-live-patching12-updates-x86_64-sap-sp2", + "parent_channel_label": "sle12-sp2-sap-pool-x86_64", + "product_id": 1253, + "repository_id": 1741, + "parent_product_id": 1414, + "root_product_id": 1414, + "update_tag": "SLE-Live-Patching", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Live-Patching/12/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Live-Patching12-Updates for x86_64 SAP SP2", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-live-patching12-debuginfo-updates-x86_64-sap-sp2", + "parent_channel_label": "sle12-sp2-sap-pool-x86_64", + "product_id": 1253, + "repository_id": 1742, + "parent_product_id": 1414, + "root_product_id": 1414, + "update_tag": "SLE-Live-Patching", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Live-Patching/12/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Live-Patching12-Debuginfo-Updates for x86_64 SAP SP2", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-live-patching12-pool-x86_64-sap-sp2", + "parent_channel_label": "sle12-sp2-sap-pool-x86_64", + "product_id": 1253, + "repository_id": 1743, + "parent_product_id": 1414, + "root_product_id": 1414, + "update_tag": "SLE-Live-Patching", + "url": "https://updates.suse.com/SUSE/Products/SLE-Live-Patching/12/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Live-Patching12-Pool for x86_64 SAP SP2", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-live-patching12-debuginfo-pool-x86_64-sap-sp2", + "parent_channel_label": "sle12-sp2-sap-pool-x86_64", + "product_id": 1253, + "repository_id": 1744, + "parent_product_id": 1414, + "root_product_id": 1414, + "update_tag": "SLE-Live-Patching", + "url": "https://updates.suse.com/SUSE/Products/SLE-Live-Patching/12/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Live-Patching12-Debuginfo-Pool for x86_64 SAP SP2", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-containers12-updates-x86_64-sap-sp2", + "parent_channel_label": "sle12-sp2-sap-pool-x86_64", + "product_id": 1332, + "repository_id": 1864, + "parent_product_id": 1414, + "root_product_id": 1414, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/12/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers12-Updates for x86_64 SAP SP2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-containers12-debuginfo-updates-x86_64-sap-sp2", + "parent_channel_label": "sle12-sp2-sap-pool-x86_64", + "product_id": 1332, + "repository_id": 1865, + "parent_product_id": 1414, + "root_product_id": 1414, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/12/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers12-Debuginfo-Updates for x86_64 SAP SP2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-containers12-pool-x86_64-sap-sp2", + "parent_channel_label": "sle12-sp2-sap-pool-x86_64", + "product_id": 1332, + "repository_id": 1866, + "parent_product_id": 1414, + "root_product_id": 1414, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Containers/12/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers12-Pool for x86_64 SAP SP2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-containers12-debuginfo-pool-x86_64-sap-sp2", + "parent_channel_label": "sle12-sp2-sap-pool-x86_64", + "product_id": 1332, + "repository_id": 1867, + "parent_product_id": 1414, + "root_product_id": 1414, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Containers/12/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers12-Debuginfo-Pool for x86_64 SAP SP2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-toolchain12-updates-x86_64-sap-sp2", + "parent_channel_label": "sle12-sp2-sap-pool-x86_64", + "product_id": 1341, + "repository_id": 1903, + "parent_product_id": 1414, + "root_product_id": 1414, + "update_tag": "SLE-Module-Toolchain", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Toolchain/12/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Toolchain12-Updates for x86_64 SAP SP2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-toolchain12-debuginfo-updates-x86_64-sap-sp2", + "parent_channel_label": "sle12-sp2-sap-pool-x86_64", + "product_id": 1341, + "repository_id": 1904, + "parent_product_id": 1414, + "root_product_id": 1414, + "update_tag": "SLE-Module-Toolchain", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Toolchain/12/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Toolchain12-Debuginfo-Updates for x86_64 SAP SP2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-toolchain12-pool-x86_64-sap-sp2", + "parent_channel_label": "sle12-sp2-sap-pool-x86_64", + "product_id": 1341, + "repository_id": 1905, + "parent_product_id": 1414, + "root_product_id": 1414, + "update_tag": "SLE-Module-Toolchain", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Toolchain/12/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Toolchain12-Pool for x86_64 SAP SP2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-toolchain12-debuginfo-pool-x86_64-sap-sp2", + "parent_channel_label": "sle12-sp2-sap-pool-x86_64", + "product_id": 1341, + "repository_id": 1906, + "parent_product_id": 1414, + "root_product_id": 1414, + "update_tag": "SLE-Module-Toolchain", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Toolchain/12/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Toolchain12-Debuginfo-Pool for x86_64 SAP SP2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-manager-proxy-3.0-updates-x86_64-sap-sp2", + "parent_channel_label": "sle12-sp2-sap-pool-x86_64", + "product_id": 1352, + "repository_id": 1968, + "parent_product_id": 1414, + "root_product_id": 1414, + "update_tag": "SUSE-Manager-Proxy-3.0", + "url": "https://updates.suse.com/SUSE/Updates/SUSE-Manager-Proxy/3.0/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-Manager-Proxy-3.0-Updates for x86_64 SAP SP2", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-manager-proxy-3.0-debuginfo-updates-x86_64-sap-sp2", + "parent_channel_label": "sle12-sp2-sap-pool-x86_64", + "product_id": 1352, + "repository_id": 1969, + "parent_product_id": 1414, + "root_product_id": 1414, + "update_tag": "SUSE-Manager-Proxy-3.0", + "url": "https://updates.suse.com/SUSE/Updates/SUSE-Manager-Proxy/3.0/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SUSE-Manager-Proxy-3.0-Debuginfo-Updates for x86_64 SAP SP2", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-manager-proxy-3.0-pool-x86_64-sap-sp2", + "parent_channel_label": "sle12-sp2-sap-pool-x86_64", + "product_id": 1352, + "repository_id": 1970, + "parent_product_id": 1414, + "root_product_id": 1414, + "update_tag": "SUSE-Manager-Proxy-3.0", + "url": "https://updates.suse.com/SUSE/Products/SUSE-Manager-Proxy/3.0/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-Manager-Proxy-3.0-Pool for x86_64 SAP SP2", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-manager-proxy-3.0-debuginfo-pool-x86_64-sap-sp2", + "parent_channel_label": "sle12-sp2-sap-pool-x86_64", + "product_id": 1352, + "repository_id": 1971, + "parent_product_id": 1414, + "root_product_id": 1414, + "update_tag": "SUSE-Manager-Proxy-3.0", + "url": "https://updates.suse.com/SUSE/Products/SUSE-Manager-Proxy/3.0/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SUSE-Manager-Proxy-3.0-Debuginfo-Pool for x86_64 SAP SP2", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-we12-sp2-updates-x86_64-sap-sp2", + "parent_channel_label": "sle12-sp2-sap-pool-x86_64", + "product_id": 1359, + "repository_id": 2024, + "parent_product_id": 1414, + "root_product_id": 1414, + "update_tag": "SLE-WE", + "url": "https://updates.suse.com/SUSE/Updates/SLE-WE/12-SP2/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-WE12-SP2-Updates for x86_64 SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-we12-sp2-debuginfo-updates-x86_64-sap-sp2", + "parent_channel_label": "sle12-sp2-sap-pool-x86_64", + "product_id": 1359, + "repository_id": 2025, + "parent_product_id": 1414, + "root_product_id": 1414, + "update_tag": "SLE-WE", + "url": "https://updates.suse.com/SUSE/Updates/SLE-WE/12-SP2/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-WE12-SP2-Debuginfo-Updates for x86_64 SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-we12-sp2-pool-x86_64-sap-sp2", + "parent_channel_label": "sle12-sp2-sap-pool-x86_64", + "product_id": 1359, + "repository_id": 2026, + "parent_product_id": 1414, + "root_product_id": 1414, + "update_tag": "SLE-WE", + "url": "https://updates.suse.com/SUSE/Products/SLE-WE/12-SP2/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-WE12-SP2-Pool for x86_64 SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-we12-sp2-debuginfo-pool-x86_64-sap-sp2", + "parent_channel_label": "sle12-sp2-sap-pool-x86_64", + "product_id": 1359, + "repository_id": 2027, + "parent_product_id": 1414, + "root_product_id": 1414, + "update_tag": "SLE-WE", + "url": "https://updates.suse.com/SUSE/Products/SLE-WE/12-SP2/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-WE12-SP2-Debuginfo-Pool for x86_64 SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-12-sp2-ga-desktop-nvidia-driver-we-sap-sp2", + "parent_channel_label": "sle12-sp2-sap-pool-x86_64", + "product_id": 1359, + "repository_id": 2149, + "parent_product_id": 1414, + "root_product_id": 1414, + "update_tag": null, + "url": "http://download.nvidia.com/suse/sle12sp2/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-12-SP2-GA-Desktop-nVidia-Driver for x86_64 WE-SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-ha-geo12-sp2-updates-x86_64-sap-sp2", + "parent_channel_label": "sle12-sp2-sap-pool-x86_64", + "product_id": 1363, + "repository_id": 2044, + "parent_product_id": 1414, + "root_product_id": 1414, + "update_tag": "SLE-HA-GEO", + "url": "https://updates.suse.com/SUSE/Updates/SLE-HA-GEO/12-SP2/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-HA-GEO12-SP2-Updates for x86_64 SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-ha-geo12-sp2-debuginfo-updates-x86_64-sap-sp2", + "parent_channel_label": "sle12-sp2-sap-pool-x86_64", + "product_id": 1363, + "repository_id": 2045, + "parent_product_id": 1414, + "root_product_id": 1414, + "update_tag": "SLE-HA-GEO", + "url": "https://updates.suse.com/SUSE/Updates/SLE-HA-GEO/12-SP2/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-HA-GEO12-SP2-Debuginfo-Updates for x86_64 SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-ha-geo12-sp2-pool-x86_64-sap-sp2", + "parent_channel_label": "sle12-sp2-sap-pool-x86_64", + "product_id": 1363, + "repository_id": 2046, + "parent_product_id": 1414, + "root_product_id": 1414, + "update_tag": "SLE-HA-GEO", + "url": "https://updates.suse.com/SUSE/Products/SLE-HA-GEO/12-SP2/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-HA-GEO12-SP2-Pool for x86_64 SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-ha-geo12-sp2-debuginfo-pool-x86_64-sap-sp2", + "parent_channel_label": "sle12-sp2-sap-pool-x86_64", + "product_id": 1363, + "repository_id": 2047, + "parent_product_id": 1414, + "root_product_id": 1414, + "update_tag": "SLE-HA-GEO", + "url": "https://updates.suse.com/SUSE/Products/SLE-HA-GEO/12-SP2/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-HA-GEO12-SP2-Debuginfo-Pool for x86_64 SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-sdk12-sp2-updates-x86_64-sap-sp2", + "parent_channel_label": "sle12-sp2-sap-pool-x86_64", + "product_id": 1366, + "repository_id": 2059, + "parent_product_id": 1414, + "root_product_id": 1414, + "update_tag": "SLE-SDK", + "url": "https://updates.suse.com/SUSE/Updates/SLE-SDK/12-SP2/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-SDK12-SP2-Updates for x86_64 SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-sdk12-sp2-debuginfo-updates-x86_64-sap-sp2", + "parent_channel_label": "sle12-sp2-sap-pool-x86_64", + "product_id": 1366, + "repository_id": 2060, + "parent_product_id": 1414, + "root_product_id": 1414, + "update_tag": "SLE-SDK", + "url": "https://updates.suse.com/SUSE/Updates/SLE-SDK/12-SP2/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-SDK12-SP2-Debuginfo-Updates for x86_64 SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-sdk12-sp2-pool-x86_64-sap-sp2", + "parent_channel_label": "sle12-sp2-sap-pool-x86_64", + "product_id": 1366, + "repository_id": 2061, + "parent_product_id": 1414, + "root_product_id": 1414, + "update_tag": "SLE-SDK", + "url": "https://updates.suse.com/SUSE/Products/SLE-SDK/12-SP2/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-SDK12-SP2-Pool for x86_64 SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-sdk12-sp2-debuginfo-pool-x86_64-sap-sp2", + "parent_channel_label": "sle12-sp2-sap-pool-x86_64", + "product_id": 1366, + "repository_id": 2062, + "parent_product_id": 1414, + "root_product_id": 1414, + "update_tag": "SLE-SDK", + "url": "https://updates.suse.com/SUSE/Products/SLE-SDK/12-SP2/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-SDK12-SP2-Debuginfo-Pool for x86_64 SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-openstack-cloud-7-updates-x86_64-sap-sp2", + "parent_channel_label": "sle12-sp2-sap-pool-x86_64", + "product_id": 1381, + "repository_id": 2109, + "parent_product_id": 1414, + "root_product_id": 1414, + "update_tag": "OpenStack-Cloud-7", + "url": "https://updates.suse.com/SUSE/Updates/OpenStack-Cloud/7/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-OpenStack-Cloud-7-Updates for x86_64 SAP SP2", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-openstack-cloud-7-debuginfo-updates-x86_64-sap-sp2", + "parent_channel_label": "sle12-sp2-sap-pool-x86_64", + "product_id": 1381, + "repository_id": 2110, + "parent_product_id": 1414, + "root_product_id": 1414, + "update_tag": "OpenStack-Cloud-7", + "url": "https://updates.suse.com/SUSE/Updates/OpenStack-Cloud/7/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SUSE-OpenStack-Cloud-7-Debuginfo-Updates for x86_64 SAP SP2", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-openstack-cloud-7-pool-x86_64-sap-sp2", + "parent_channel_label": "sle12-sp2-sap-pool-x86_64", + "product_id": 1381, + "repository_id": 2111, + "parent_product_id": 1414, + "root_product_id": 1414, + "update_tag": "OpenStack-Cloud-7", + "url": "https://updates.suse.com/SUSE/Products/OpenStack-Cloud/7/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-OpenStack-Cloud-7-Pool for x86_64 SAP SP2", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-openstack-cloud-7-debuginfo-pool-x86_64-sap-sp2", + "parent_channel_label": "sle12-sp2-sap-pool-x86_64", + "product_id": 1381, + "repository_id": 2112, + "parent_product_id": 1414, + "root_product_id": 1414, + "update_tag": "OpenStack-Cloud-7", + "url": "https://updates.suse.com/SUSE/Products/OpenStack-Cloud/7/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SUSE-OpenStack-Cloud-7-Debuginfo-Pool for x86_64 SAP SP2", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "openstack-cloud-magnum-orchestration-updates-x86_64-sap-sp2", + "parent_channel_label": "sle12-sp2-sap-pool-x86_64", + "product_id": 1485, + "repository_id": 2367, + "parent_product_id": 1381, + "root_product_id": 1414, + "update_tag": "OpenStack-Cloud-Magnum-Orchestration-7", + "url": "https://updates.suse.com/SUSE/Updates/OpenStack-Cloud-Magnum-Orchestration/7/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "OpenStack-Cloud-Magnum-Orchestration-Updates for x86_64 SAP SP2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "openstack-cloud-magnum-orchestration-debuginfo-updates-x86_64-sap-sp2", + "parent_channel_label": "sle12-sp2-sap-pool-x86_64", + "product_id": 1485, + "repository_id": 2368, + "parent_product_id": 1381, + "root_product_id": 1414, + "update_tag": "OpenStack-Cloud-Magnum-Orchestration-7", + "url": "https://updates.suse.com/SUSE/Updates/OpenStack-Cloud-Magnum-Orchestration/7/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "OpenStack-Cloud-Magnum-Orchestration-Debuginfo-Updates for x86_64 SAP SP2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "openstack-cloud-magnum-orchestration-pool-x86_64-sap-sp2", + "parent_channel_label": "sle12-sp2-sap-pool-x86_64", + "product_id": 1485, + "repository_id": 2369, + "parent_product_id": 1381, + "root_product_id": 1414, + "update_tag": "OpenStack-Cloud-Magnum-Orchestration-7", + "url": "https://updates.suse.com/SUSE/Products/OpenStack-Cloud-Magnum-Orchestration/7/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "OpenStack-Cloud-Magnum-Orchestration-Pool for x86_64 SAP SP2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "openstack-cloud-magnum-orchestration-debuginfo-pool-x86_64-sap-sp2", + "parent_channel_label": "sle12-sp2-sap-pool-x86_64", + "product_id": 1485, + "repository_id": 2370, + "parent_product_id": 1381, + "root_product_id": 1414, + "update_tag": "OpenStack-Cloud-Magnum-Orchestration-7", + "url": "https://updates.suse.com/SUSE/Products/OpenStack-Cloud-Magnum-Orchestration/7/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "OpenStack-Cloud-Magnum-Orchestration-Debuginfo-Pool for x86_64 SAP SP2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-enterprise-storage-4-updates-x86_64-sap-sp2", + "parent_channel_label": "sle12-sp2-sap-pool-x86_64", + "product_id": 1416, + "repository_id": 2163, + "parent_product_id": 1414, + "root_product_id": 1414, + "update_tag": "Storage-4", + "url": "https://updates.suse.com/SUSE/Updates/Storage/4/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-Enterprise-Storage-4-Updates for x86_64 SAP SP2", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-enterprise-storage-4-debuginfo-updates-x86_64-sap-sp2", + "parent_channel_label": "sle12-sp2-sap-pool-x86_64", + "product_id": 1416, + "repository_id": 2164, + "parent_product_id": 1414, + "root_product_id": 1414, + "update_tag": "Storage-4", + "url": "https://updates.suse.com/SUSE/Updates/Storage/4/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SUSE-Enterprise-Storage-4-Debuginfo-Updates for x86_64 SAP SP2", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-enterprise-storage-4-pool-x86_64-sap-sp2", + "parent_channel_label": "sle12-sp2-sap-pool-x86_64", + "product_id": 1416, + "repository_id": 2165, + "parent_product_id": 1414, + "root_product_id": 1414, + "update_tag": "Storage-4", + "url": "https://updates.suse.com/SUSE/Products/Storage/4/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-Enterprise-Storage-4-Pool for x86_64 SAP SP2", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-enterprise-storage-4-debuginfo-pool-x86_64-sap-sp2", + "parent_channel_label": "sle12-sp2-sap-pool-x86_64", + "product_id": 1416, + "repository_id": 2166, + "parent_product_id": 1414, + "root_product_id": 1414, + "update_tag": "Storage-4", + "url": "https://updates.suse.com/SUSE/Products/Storage/4/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SUSE-Enterprise-Storage-4-Debuginfo-Pool for x86_64 SAP SP2", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-rt12-sp2-updates-x86_64-sap-sp2", + "parent_channel_label": "sle12-sp2-sap-pool-x86_64", + "product_id": 1438, + "repository_id": 2285, + "parent_product_id": 1414, + "root_product_id": 1414, + "update_tag": "SLE-RT", + "url": "https://updates.suse.com/SUSE/Updates/SLE-RT/12-SP2/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-RT12-SP2-Updates for x86_64 SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-rt12-sp2-debuginfo-updates-x86_64-sap-sp2", + "parent_channel_label": "sle12-sp2-sap-pool-x86_64", + "product_id": 1438, + "repository_id": 2286, + "parent_product_id": 1414, + "root_product_id": 1414, + "update_tag": "SLE-RT", + "url": "https://updates.suse.com/SUSE/Updates/SLE-RT/12-SP2/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-RT12-SP2-Debuginfo-Updates for x86_64 SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-rt12-sp2-pool-x86_64-sap-sp2", + "parent_channel_label": "sle12-sp2-sap-pool-x86_64", + "product_id": 1438, + "repository_id": 2287, + "parent_product_id": 1414, + "root_product_id": 1414, + "update_tag": "SLE-RT", + "url": "https://updates.suse.com/SUSE/Products/SLE-RT/12-SP2/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-RT12-SP2-Pool for x86_64 SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-rt12-sp2-debuginfo-pool-x86_64-sap-sp2", + "parent_channel_label": "sle12-sp2-sap-pool-x86_64", + "product_id": 1438, + "repository_id": 2288, + "parent_product_id": 1414, + "root_product_id": 1414, + "update_tag": "SLE-RT", + "url": "https://updates.suse.com/SUSE/Products/SLE-RT/12-SP2/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-RT12-SP2-Debuginfo-Pool for x86_64 SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-pos12-sp2-updates-x86_64-sap-sp2", + "parent_channel_label": "sle12-sp2-sap-pool-x86_64", + "product_id": 1439, + "repository_id": 2289, + "parent_product_id": 1414, + "root_product_id": 1414, + "update_tag": "SLE-POS", + "url": "https://updates.suse.com/SUSE/Updates/SLE-POS/12-SP2/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-POS12-SP2-Updates for x86_64 SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-pos12-sp2-debuginfo-updates-x86_64-sap-sp2", + "parent_channel_label": "sle12-sp2-sap-pool-x86_64", + "product_id": 1439, + "repository_id": 2290, + "parent_product_id": 1414, + "root_product_id": 1414, + "update_tag": "SLE-POS", + "url": "https://updates.suse.com/SUSE/Updates/SLE-POS/12-SP2/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-POS12-SP2-Debuginfo-Updates for x86_64 SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-pos12-sp2-pool-x86_64-sap-sp2", + "parent_channel_label": "sle12-sp2-sap-pool-x86_64", + "product_id": 1439, + "repository_id": 2291, + "parent_product_id": 1414, + "root_product_id": 1414, + "update_tag": "SLE-POS", + "url": "https://updates.suse.com/SUSE/Products/SLE-POS/12-SP2/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-POS12-SP2-Pool for x86_64 SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-pos12-sp2-debuginfo-pool-x86_64-sap-sp2", + "parent_channel_label": "sle12-sp2-sap-pool-x86_64", + "product_id": 1439, + "repository_id": 2292, + "parent_product_id": 1414, + "root_product_id": 1414, + "update_tag": "SLE-POS", + "url": "https://updates.suse.com/SUSE/Products/SLE-POS/12-SP2/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-POS12-SP2-Debuginfo-Pool for x86_64 SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-pos12-sp2-client-updates-x86_64-sap-sp2", + "parent_channel_label": "sle12-sp2-sap-pool-x86_64", + "product_id": 1439, + "repository_id": 3130, + "parent_product_id": 1414, + "root_product_id": 1414, + "update_tag": "SLE-POS", + "url": "https://updates.suse.com/SUSE/Updates/SLE-POS/12-SP2-CLIENT/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-POS12-SP2-CLIENT-Updates for x86_64 SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-pos12-sp2-client-debuginfo-updates-x86_64-sap-sp2", + "parent_channel_label": "sle12-sp2-sap-pool-x86_64", + "product_id": 1439, + "repository_id": 3131, + "parent_product_id": 1414, + "root_product_id": 1414, + "update_tag": "SLE-POS", + "url": "https://updates.suse.com/SUSE/Updates/SLE-POS/12-SP2-CLIENT/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-POS12-SP2-CLIENT-Debuginfo-Updates for x86_64 SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-hpc12-updates-x86_64-sap-sp2", + "parent_channel_label": "sle12-sp2-sap-pool-x86_64", + "product_id": 1440, + "repository_id": 2294, + "parent_product_id": 1414, + "root_product_id": 1414, + "update_tag": "SLE-Module-HPC", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-HPC/12/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-HPC12-Updates for x86_64 SAP SP2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-hpc12-debuginfo-updates-x86_64-sap-sp2", + "parent_channel_label": "sle12-sp2-sap-pool-x86_64", + "product_id": 1440, + "repository_id": 2295, + "parent_product_id": 1414, + "root_product_id": 1414, + "update_tag": "SLE-Module-HPC", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-HPC/12/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-HPC12-Debuginfo-Updates for x86_64 SAP SP2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-hpc12-pool-x86_64-sap-sp2", + "parent_channel_label": "sle12-sp2-sap-pool-x86_64", + "product_id": 1440, + "repository_id": 2296, + "parent_product_id": 1414, + "root_product_id": 1414, + "update_tag": "SLE-Module-HPC", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-HPC/12/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-HPC12-Pool for x86_64 SAP SP2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-hpc12-debuginfo-pool-x86_64-sap-sp2", + "parent_channel_label": "sle12-sp2-sap-pool-x86_64", + "product_id": 1440, + "repository_id": 2297, + "parent_product_id": 1414, + "root_product_id": 1414, + "update_tag": "SLE-Module-HPC", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-HPC/12/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-HPC12-Debuginfo-Pool for x86_64 SAP SP2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-packagehub-12-sp2-x86_64-sap-sp2", + "parent_channel_label": "sle12-sp2-sap-pool-x86_64", + "product_id": 1479, + "repository_id": 2345, + "parent_product_id": 1414, + "root_product_id": 1414, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-12-SP2_x86_64/standard/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-12-SP2-Standard-Pool for x86_64 SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-packagehub-12-sp2-debuginfo-x86_64-sap-sp2", + "parent_channel_label": "sle12-sp2-sap-pool-x86_64", + "product_id": 1479, + "repository_id": 2346, + "parent_product_id": 1414, + "root_product_id": 1414, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-12-SP2_x86_64/standard_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-12-SP2-Debuginfo for x86_64 SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-packagehub-12-sp2-pool-x86_64-sap-sp2", + "parent_channel_label": "sle12-sp2-sap-pool-x86_64", + "product_id": 1479, + "repository_id": 2347, + "parent_product_id": 1414, + "root_product_id": 1414, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-12-SP2_x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-12-SP2-Pool for x86_64 SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-manager-proxy-3.1-updates-x86_64-sap-sp2", + "parent_channel_label": "sle12-sp2-sap-pool-x86_64", + "product_id": 1520, + "repository_id": 2410, + "parent_product_id": 1414, + "root_product_id": 1414, + "update_tag": "SUSE-Manager-Proxy-3.1", + "url": "https://updates.suse.com/SUSE/Updates/SUSE-Manager-Proxy/3.1/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-Manager-Proxy-3.1-Updates for x86_64 SAP SP2", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-manager-proxy-3.1-debuginfo-updates-x86_64-sap-sp2", + "parent_channel_label": "sle12-sp2-sap-pool-x86_64", + "product_id": 1520, + "repository_id": 2411, + "parent_product_id": 1414, + "root_product_id": 1414, + "update_tag": "SUSE-Manager-Proxy-3.1", + "url": "https://updates.suse.com/SUSE/Updates/SUSE-Manager-Proxy/3.1/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SUSE-Manager-Proxy-3.1-Debuginfo-Updates for x86_64 SAP SP2", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-manager-proxy-3.1-pool-x86_64-sap-sp2", + "parent_channel_label": "sle12-sp2-sap-pool-x86_64", + "product_id": 1520, + "repository_id": 2412, + "parent_product_id": 1414, + "root_product_id": 1414, + "update_tag": "SUSE-Manager-Proxy-3.1", + "url": "https://updates.suse.com/SUSE/Products/SUSE-Manager-Proxy/3.1/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-Manager-Proxy-3.1-Pool for x86_64 SAP SP2", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-manager-proxy-3.1-debuginfo-pool-x86_64-sap-sp2", + "parent_channel_label": "sle12-sp2-sap-pool-x86_64", + "product_id": 1520, + "repository_id": 2413, + "parent_product_id": 1414, + "root_product_id": 1414, + "update_tag": "SUSE-Manager-Proxy-3.1", + "url": "https://updates.suse.com/SUSE/Products/SUSE-Manager-Proxy/3.1/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SUSE-Manager-Proxy-3.1-Debuginfo-Pool for x86_64 SAP SP2", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles12-sp2-ltss-updates-x86_64-sap-sp2", + "parent_channel_label": "sle12-sp2-sap-pool-x86_64", + "product_id": 1739, + "repository_id": 3048, + "parent_product_id": 1414, + "root_product_id": 1414, + "update_tag": "SLE-SERVER", + "url": "https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-SP2-LTSS/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLES12-SP2-LTSS-Updates for x86_64 SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles12-sp2-ltss-debuginfo-updates-x86_64-sap-sp2", + "parent_channel_label": "sle12-sp2-sap-pool-x86_64", + "product_id": 1739, + "repository_id": 3049, + "parent_product_id": 1414, + "root_product_id": 1414, + "update_tag": "SLE-SERVER", + "url": "https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-SP2-LTSS/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLES12-SP2-LTSS-Debuginfo-Updates for x86_64 SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-manager-tools12-beta-updates-x86_64-sap-sp2", + "parent_channel_label": "sle12-sp2-sap-pool-x86_64", + "product_id": 1747, + "repository_id": 3077, + "parent_product_id": 1414, + "root_product_id": 1414, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/12-BETA/x86_64/update/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools12-BETA-Updates for x86_64 SAP SP2", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools12-beta-debuginfo-updates-x86_64-sap-sp2", + "parent_channel_label": "sle12-sp2-sap-pool-x86_64", + "product_id": 1747, + "repository_id": 3078, + "parent_product_id": 1414, + "root_product_id": 1414, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/12-BETA/x86_64/update_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools12-BETA-Debuginfo-Updates for x86_64 SAP SP2", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools12-beta-pool-x86_64-sap-sp2", + "parent_channel_label": "sle12-sp2-sap-pool-x86_64", + "product_id": 1747, + "repository_id": 3079, + "parent_product_id": 1414, + "root_product_id": 1414, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/12-BETA/x86_64/product/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools12-BETA-Pool for x86_64 SAP SP2", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools12-beta-debuginfo-pool-x86_64-sap-sp2", + "parent_channel_label": "sle12-sp2-sap-pool-x86_64", + "product_id": 1747, + "repository_id": 3080, + "parent_product_id": 1414, + "root_product_id": 1414, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/12-BETA/x86_64/product_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools12-BETA-Debuginfo-Pool for x86_64 SAP SP2", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sles12-sp2-rpi-updates-aarch64", + "parent_channel_label": "sles12-sp2-rpi-pool-aarch64", + "product_id": 1418, + "repository_id": 2173, + "parent_product_id": null, + "root_product_id": 1418, + "update_tag": "SLE-RPI", + "url": "https://updates.suse.com/SUSE/Updates/SLE-RPI/12-SP2/aarch64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLES12-SP2-RPI-Updates for aarch64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles12-sp2-rpi-debuginfo-updates-aarch64", + "parent_channel_label": "sles12-sp2-rpi-pool-aarch64", + "product_id": 1418, + "repository_id": 2174, + "parent_product_id": null, + "root_product_id": 1418, + "update_tag": "SLE-RPI", + "url": "https://updates.suse.com/SUSE/Updates/SLE-RPI/12-SP2/aarch64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLES12-SP2-RPI-Debuginfo-Updates for aarch64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles12-sp2-rpi-pool-aarch64", + "parent_channel_label": null, + "product_id": 1418, + "repository_id": 2175, + "parent_product_id": null, + "root_product_id": 1418, + "update_tag": "SLE-RPI", + "url": "https://updates.suse.com/SUSE/Products/SLE-RPI/12-SP2/aarch64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLES12-SP2-RPI-Pool for aarch64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles12-sp2-rpi-debuginfo-pool-aarch64", + "parent_channel_label": "sles12-sp2-rpi-pool-aarch64", + "product_id": 1418, + "repository_id": 2176, + "parent_product_id": null, + "root_product_id": 1418, + "update_tag": "SLE-RPI", + "url": "https://updates.suse.com/SUSE/Products/SLE-RPI/12-SP2/aarch64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLES12-SP2-RPI-Debuginfo-Pool for aarch64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles12-sp2-rpi-installer-updates-aarch64", + "parent_channel_label": "sles12-sp2-rpi-pool-aarch64", + "product_id": 1418, + "repository_id": 2178, + "parent_product_id": null, + "root_product_id": 1418, + "update_tag": "SLE-RPI-INSTALLER", + "url": "https://updates.suse.com/SUSE/Updates/SLE-RPI-INSTALLER/12-SP2/aarch64/update/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLES12-SP2-RPI-Installer-Updates for aarch64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-manager-tools12-updates-aarch64-rpi", + "parent_channel_label": "sles12-sp2-rpi-pool-aarch64", + "product_id": 1418, + "repository_id": 2179, + "parent_product_id": null, + "root_product_id": 1418, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/12/aarch64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Manager-Tools12-Updates for aarch64 RPI SP2", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools12-debuginfo-updates-aarch64-rpi", + "parent_channel_label": "sles12-sp2-rpi-pool-aarch64", + "product_id": 1418, + "repository_id": 2180, + "parent_product_id": null, + "root_product_id": 1418, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/12/aarch64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Manager-Tools12-Debuginfo-Updates for aarch64 RPI SP2", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools12-pool-aarch64-rpi", + "parent_channel_label": "sles12-sp2-rpi-pool-aarch64", + "product_id": 1418, + "repository_id": 2181, + "parent_product_id": null, + "root_product_id": 1418, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/12/aarch64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Manager-Tools12-Pool for aarch64 RPI SP2", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools12-debuginfo-pool-aarch64-rpi", + "parent_channel_label": "sles12-sp2-rpi-pool-aarch64", + "product_id": 1418, + "repository_id": 2182, + "parent_product_id": null, + "root_product_id": 1418, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/12/aarch64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Manager-Tools12-Debuginfo-Pool for aarch64 RPI SP2", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools12-beta-updates-aarch64-rpi-sp2", + "parent_channel_label": "sles12-sp2-rpi-pool-aarch64", + "product_id": 1744, + "repository_id": 3062, + "parent_product_id": 1418, + "root_product_id": 1418, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/12-BETA/aarch64/update/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools12-BETA-Updates for aarch64 RPI SP2", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools12-beta-debuginfo-updates-aarch64-rpi-sp2", + "parent_channel_label": "sles12-sp2-rpi-pool-aarch64", + "product_id": 1744, + "repository_id": 3063, + "parent_product_id": 1418, + "root_product_id": 1418, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/12-BETA/aarch64/update_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools12-BETA-Debuginfo-Updates for aarch64 RPI SP2", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools12-beta-pool-aarch64-rpi-sp2", + "parent_channel_label": "sles12-sp2-rpi-pool-aarch64", + "product_id": 1744, + "repository_id": 3064, + "parent_product_id": 1418, + "root_product_id": 1418, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/12-BETA/aarch64/product/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools12-BETA-Pool for aarch64 RPI SP2", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools12-beta-debuginfo-pool-aarch64-rpi-sp2", + "parent_channel_label": "sles12-sp2-rpi-pool-aarch64", + "product_id": 1744, + "repository_id": 3065, + "parent_product_id": 1418, + "root_product_id": 1418, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/12-BETA/aarch64/product_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools12-BETA-Debuginfo-Pool for aarch64 RPI SP2", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools12-updates-x86_64-sp3", + "parent_channel_label": "sles12-sp3-pool-x86_64", + "product_id": 1421, + "repository_id": 1732, + "parent_product_id": null, + "root_product_id": 1421, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/12/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Manager-Tools12-Updates for x86_64 SP3", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools12-debuginfo-updates-x86_64-sp3", + "parent_channel_label": "sles12-sp3-pool-x86_64", + "product_id": 1421, + "repository_id": 1733, + "parent_product_id": null, + "root_product_id": 1421, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/12/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Manager-Tools12-Debuginfo-Updates for x86_64 SP3", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools12-pool-x86_64-sp3", + "parent_channel_label": "sles12-sp3-pool-x86_64", + "product_id": 1421, + "repository_id": 1734, + "parent_product_id": null, + "root_product_id": 1421, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/12/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Manager-Tools12-Pool for x86_64 SP3", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools12-debuginfo-pool-x86_64-sp3", + "parent_channel_label": "sles12-sp3-pool-x86_64", + "product_id": 1421, + "repository_id": 1735, + "parent_product_id": null, + "root_product_id": 1421, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/12/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Manager-Tools12-Debuginfo-Pool for x86_64 SP3", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sles12-sp3-updates-x86_64", + "parent_channel_label": "sles12-sp3-pool-x86_64", + "product_id": 1421, + "repository_id": 2189, + "parent_product_id": null, + "root_product_id": 1421, + "update_tag": "SLE-SERVER", + "url": "https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-SP3/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLES12-SP3-Updates for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles12-sp3-debuginfo-updates-x86_64", + "parent_channel_label": "sles12-sp3-pool-x86_64", + "product_id": 1421, + "repository_id": 2190, + "parent_product_id": null, + "root_product_id": 1421, + "update_tag": "SLE-SERVER", + "url": "https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-SP3/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLES12-SP3-Debuginfo-Updates for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles12-sp3-installer-updates-x86_64", + "parent_channel_label": "sles12-sp3-pool-x86_64", + "product_id": 1421, + "repository_id": 2191, + "parent_product_id": null, + "root_product_id": 1421, + "update_tag": "SLE-SERVER-INSTALLER", + "url": "https://updates.suse.com/SUSE/Updates/SLE-SERVER-INSTALLER/12-SP3/x86_64/update/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLES12-SP3-Installer-Updates for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles12-sp3-pool-x86_64", + "parent_channel_label": null, + "product_id": 1421, + "repository_id": 2192, + "parent_product_id": null, + "root_product_id": 1421, + "update_tag": "SLE-SERVER", + "url": "https://updates.suse.com/SUSE/Products/SLE-SERVER/12-SP3/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLES12-SP3-Pool for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles12-sp3-debuginfo-pool-x86_64", + "parent_channel_label": "sles12-sp3-pool-x86_64", + "product_id": 1421, + "repository_id": 2193, + "parent_product_id": null, + "root_product_id": 1421, + "update_tag": "SLE-SERVER", + "url": "https://updates.suse.com/SUSE/Products/SLE-SERVER/12-SP3/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLES12-SP3-Debuginfo-Pool for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-legacy12-updates-x86_64-sp3", + "parent_channel_label": "sles12-sp3-pool-x86_64", + "product_id": 1150, + "repository_id": 1676, + "parent_product_id": 1421, + "root_product_id": 1421, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/12/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy12-Updates for x86_64 SP3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-legacy12-debuginfo-updates-x86_64-sp3", + "parent_channel_label": "sles12-sp3-pool-x86_64", + "product_id": 1150, + "repository_id": 1677, + "parent_product_id": 1421, + "root_product_id": 1421, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/12/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy12-Debuginfo-Updates for x86_64 SP3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-legacy12-pool-x86_64-sp3", + "parent_channel_label": "sles12-sp3-pool-x86_64", + "product_id": 1150, + "repository_id": 1678, + "parent_product_id": 1421, + "root_product_id": 1421, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/12/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy12-Pool for x86_64 SP3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-legacy12-debuginfo-pool-x86_64-sp3", + "parent_channel_label": "sles12-sp3-pool-x86_64", + "product_id": 1150, + "repository_id": 1679, + "parent_product_id": 1421, + "root_product_id": 1421, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/12/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy12-Debuginfo-Pool for x86_64 SP3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting12-updates-x86_64-sp3", + "parent_channel_label": "sles12-sp3-pool-x86_64", + "product_id": 1153, + "repository_id": 1688, + "parent_product_id": 1421, + "root_product_id": 1421, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/12/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Web-Scripting12-Updates for x86_64 SP3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting12-debuginfo-updates-x86_64-sp3", + "parent_channel_label": "sles12-sp3-pool-x86_64", + "product_id": 1153, + "repository_id": 1689, + "parent_product_id": 1421, + "root_product_id": 1421, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/12/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Web-Scripting12-Debuginfo-Updates for x86_64 SP3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting12-pool-x86_64-sp3", + "parent_channel_label": "sles12-sp3-pool-x86_64", + "product_id": 1153, + "repository_id": 1690, + "parent_product_id": 1421, + "root_product_id": 1421, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/12/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Web-Scripting12-Pool for x86_64 SP3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting12-debuginfo-pool-x86_64-sp3", + "parent_channel_label": "sles12-sp3-pool-x86_64", + "product_id": 1153, + "repository_id": 1691, + "parent_product_id": 1421, + "root_product_id": 1421, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/12/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Web-Scripting12-Debuginfo-Pool for x86_64 SP3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-adv-systems-management12-updates-x86_64-sp3", + "parent_channel_label": "sles12-sp3-pool-x86_64", + "product_id": 1212, + "repository_id": 1704, + "parent_product_id": 1421, + "root_product_id": 1421, + "update_tag": "SLE-Module-Adv-Systems-Management", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Adv-Systems-Management/12/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Adv-Systems-Management12-Updates for x86_64 SP3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-adv-systems-management12-debuginfo-updates-x86_64-sp3", + "parent_channel_label": "sles12-sp3-pool-x86_64", + "product_id": 1212, + "repository_id": 1705, + "parent_product_id": 1421, + "root_product_id": 1421, + "update_tag": "SLE-Module-Adv-Systems-Management", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Adv-Systems-Management/12/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Adv-Systems-Management12-Debuginfo-Updates for x86_64 SP3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-adv-systems-management12-pool-x86_64-sp3", + "parent_channel_label": "sles12-sp3-pool-x86_64", + "product_id": 1212, + "repository_id": 1706, + "parent_product_id": 1421, + "root_product_id": 1421, + "update_tag": "SLE-Module-Adv-Systems-Management", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Adv-Systems-Management/12/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Adv-Systems-Management12-Pool for x86_64 SP3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-adv-systems-management12-debuginfo-pool-x86_64-sp3", + "parent_channel_label": "sles12-sp3-pool-x86_64", + "product_id": 1212, + "repository_id": 1707, + "parent_product_id": 1421, + "root_product_id": 1421, + "update_tag": "SLE-Module-Adv-Systems-Management", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Adv-Systems-Management/12/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Adv-Systems-Management12-Debuginfo-Pool for x86_64 SP3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud12-updates-x86_64-sp3", + "parent_channel_label": "sles12-sp3-pool-x86_64", + "product_id": 1220, + "repository_id": 1700, + "parent_product_id": 1421, + "root_product_id": 1421, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/12/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud12-Updates for x86_64 SP3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud12-debuginfo-updates-x86_64-sp3", + "parent_channel_label": "sles12-sp3-pool-x86_64", + "product_id": 1220, + "repository_id": 1701, + "parent_product_id": 1421, + "root_product_id": 1421, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/12/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud12-Debuginfo-Updates for x86_64 SP3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud12-pool-x86_64-sp3", + "parent_channel_label": "sles12-sp3-pool-x86_64", + "product_id": 1220, + "repository_id": 1702, + "parent_product_id": 1421, + "root_product_id": 1421, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/12/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud12-Pool for x86_64 SP3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud12-debuginfo-pool-x86_64-sp3", + "parent_channel_label": "sles12-sp3-pool-x86_64", + "product_id": 1220, + "repository_id": 1703, + "parent_product_id": 1421, + "root_product_id": 1421, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/12/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud12-Debuginfo-Pool for x86_64 SP3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-containers12-updates-x86_64-sp3", + "parent_channel_label": "sles12-sp3-pool-x86_64", + "product_id": 1332, + "repository_id": 1864, + "parent_product_id": 1421, + "root_product_id": 1421, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/12/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers12-Updates for x86_64 SP3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-containers12-debuginfo-updates-x86_64-sp3", + "parent_channel_label": "sles12-sp3-pool-x86_64", + "product_id": 1332, + "repository_id": 1865, + "parent_product_id": 1421, + "root_product_id": 1421, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/12/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers12-Debuginfo-Updates for x86_64 SP3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-containers12-pool-x86_64-sp3", + "parent_channel_label": "sles12-sp3-pool-x86_64", + "product_id": 1332, + "repository_id": 1866, + "parent_product_id": 1421, + "root_product_id": 1421, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Containers/12/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers12-Pool for x86_64 SP3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-containers12-debuginfo-pool-x86_64-sp3", + "parent_channel_label": "sles12-sp3-pool-x86_64", + "product_id": 1332, + "repository_id": 1867, + "parent_product_id": 1421, + "root_product_id": 1421, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Containers/12/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers12-Debuginfo-Pool for x86_64 SP3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-toolchain12-updates-x86_64-sp3", + "parent_channel_label": "sles12-sp3-pool-x86_64", + "product_id": 1341, + "repository_id": 1903, + "parent_product_id": 1421, + "root_product_id": 1421, + "update_tag": "SLE-Module-Toolchain", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Toolchain/12/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Toolchain12-Updates for x86_64 SP3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-toolchain12-debuginfo-updates-x86_64-sp3", + "parent_channel_label": "sles12-sp3-pool-x86_64", + "product_id": 1341, + "repository_id": 1904, + "parent_product_id": 1421, + "root_product_id": 1421, + "update_tag": "SLE-Module-Toolchain", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Toolchain/12/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Toolchain12-Debuginfo-Updates for x86_64 SP3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-toolchain12-pool-x86_64-sp3", + "parent_channel_label": "sles12-sp3-pool-x86_64", + "product_id": 1341, + "repository_id": 1905, + "parent_product_id": 1421, + "root_product_id": 1421, + "update_tag": "SLE-Module-Toolchain", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Toolchain/12/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Toolchain12-Pool for x86_64 SP3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-toolchain12-debuginfo-pool-x86_64-sp3", + "parent_channel_label": "sles12-sp3-pool-x86_64", + "product_id": 1341, + "repository_id": 1906, + "parent_product_id": 1421, + "root_product_id": 1421, + "update_tag": "SLE-Module-Toolchain", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Toolchain/12/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Toolchain12-Debuginfo-Pool for x86_64 SP3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-manager-server-3.0-updates-x86_64-sp3", + "parent_channel_label": "sles12-sp3-pool-x86_64", + "product_id": 1349, + "repository_id": 1949, + "parent_product_id": 1421, + "root_product_id": 1421, + "update_tag": "SUSE-Manager-Server-3.0", + "url": "https://updates.suse.com/SUSE/Updates/SUSE-Manager-Server/3.0/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-Manager-Server-3.0-Updates for x86_64 SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-manager-server-3.0-debuginfo-updates-x86_64-sp3", + "parent_channel_label": "sles12-sp3-pool-x86_64", + "product_id": 1349, + "repository_id": 1950, + "parent_product_id": 1421, + "root_product_id": 1421, + "update_tag": "SUSE-Manager-Server-3.0", + "url": "https://updates.suse.com/SUSE/Updates/SUSE-Manager-Server/3.0/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SUSE-Manager-Server-3.0-Debuginfo-Updates for x86_64 SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-manager-server-3.0-pool-x86_64-sp3", + "parent_channel_label": "sles12-sp3-pool-x86_64", + "product_id": 1349, + "repository_id": 1951, + "parent_product_id": 1421, + "root_product_id": 1421, + "update_tag": "SUSE-Manager-Server-3.0", + "url": "https://updates.suse.com/SUSE/Products/SUSE-Manager-Server/3.0/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-Manager-Server-3.0-Pool for x86_64 SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-manager-server-3.0-debuginfo-pool-x86_64-sp3", + "parent_channel_label": "sles12-sp3-pool-x86_64", + "product_id": 1349, + "repository_id": 1952, + "parent_product_id": 1421, + "root_product_id": 1421, + "update_tag": "SUSE-Manager-Server-3.0", + "url": "https://updates.suse.com/SUSE/Products/SUSE-Manager-Server/3.0/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SUSE-Manager-Server-3.0-Debuginfo-Pool for x86_64 SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-manager-proxy-3.0-updates-x86_64-sp3", + "parent_channel_label": "sles12-sp3-pool-x86_64", + "product_id": 1352, + "repository_id": 1968, + "parent_product_id": 1421, + "root_product_id": 1421, + "update_tag": "SUSE-Manager-Proxy-3.0", + "url": "https://updates.suse.com/SUSE/Updates/SUSE-Manager-Proxy/3.0/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-Manager-Proxy-3.0-Updates for x86_64 SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-manager-proxy-3.0-debuginfo-updates-x86_64-sp3", + "parent_channel_label": "sles12-sp3-pool-x86_64", + "product_id": 1352, + "repository_id": 1969, + "parent_product_id": 1421, + "root_product_id": 1421, + "update_tag": "SUSE-Manager-Proxy-3.0", + "url": "https://updates.suse.com/SUSE/Updates/SUSE-Manager-Proxy/3.0/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SUSE-Manager-Proxy-3.0-Debuginfo-Updates for x86_64 SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-manager-proxy-3.0-pool-x86_64-sp3", + "parent_channel_label": "sles12-sp3-pool-x86_64", + "product_id": 1352, + "repository_id": 1970, + "parent_product_id": 1421, + "root_product_id": 1421, + "update_tag": "SUSE-Manager-Proxy-3.0", + "url": "https://updates.suse.com/SUSE/Products/SUSE-Manager-Proxy/3.0/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-Manager-Proxy-3.0-Pool for x86_64 SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-manager-proxy-3.0-debuginfo-pool-x86_64-sp3", + "parent_channel_label": "sles12-sp3-pool-x86_64", + "product_id": 1352, + "repository_id": 1971, + "parent_product_id": 1421, + "root_product_id": 1421, + "update_tag": "SUSE-Manager-Proxy-3.0", + "url": "https://updates.suse.com/SUSE/Products/SUSE-Manager-Proxy/3.0/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SUSE-Manager-Proxy-3.0-Debuginfo-Pool for x86_64 SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-sdk12-sp3-updates-x86_64", + "parent_channel_label": "sles12-sp3-pool-x86_64", + "product_id": 1427, + "repository_id": 2230, + "parent_product_id": 1421, + "root_product_id": 1421, + "update_tag": "SLE-SDK", + "url": "https://updates.suse.com/SUSE/Updates/SLE-SDK/12-SP3/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-SDK12-SP3-Updates for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-sdk12-sp3-debuginfo-updates-x86_64", + "parent_channel_label": "sles12-sp3-pool-x86_64", + "product_id": 1427, + "repository_id": 2231, + "parent_product_id": 1421, + "root_product_id": 1421, + "update_tag": "SLE-SDK", + "url": "https://updates.suse.com/SUSE/Updates/SLE-SDK/12-SP3/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-SDK12-SP3-Debuginfo-Updates for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-sdk12-sp3-pool-x86_64", + "parent_channel_label": "sles12-sp3-pool-x86_64", + "product_id": 1427, + "repository_id": 2232, + "parent_product_id": 1421, + "root_product_id": 1421, + "update_tag": "SLE-SDK", + "url": "https://updates.suse.com/SUSE/Products/SLE-SDK/12-SP3/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-SDK12-SP3-Pool for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-sdk12-sp3-debuginfo-pool-x86_64", + "parent_channel_label": "sles12-sp3-pool-x86_64", + "product_id": 1427, + "repository_id": 2233, + "parent_product_id": 1421, + "root_product_id": 1421, + "update_tag": "SLE-SDK", + "url": "https://updates.suse.com/SUSE/Products/SLE-SDK/12-SP3/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-SDK12-SP3-Debuginfo-Pool for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-12-sp3-ga-desktop-nvidia-driver-we-sp3", + "parent_channel_label": "sles12-sp3-pool-x86_64", + "product_id": 1431, + "repository_id": 2217, + "parent_product_id": 1421, + "root_product_id": 1421, + "update_tag": null, + "url": "http://download.nvidia.com/suse/sle12sp3/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-12-SP3-GA-Desktop-nVidia-Driver for x86_64 WE", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-we12-sp3-updates-x86_64", + "parent_channel_label": "sles12-sp3-pool-x86_64", + "product_id": 1431, + "repository_id": 2250, + "parent_product_id": 1421, + "root_product_id": 1421, + "update_tag": "SLE-WE", + "url": "https://updates.suse.com/SUSE/Updates/SLE-WE/12-SP3/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-WE12-SP3-Updates for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-we12-sp3-debuginfo-updates-x86_64", + "parent_channel_label": "sles12-sp3-pool-x86_64", + "product_id": 1431, + "repository_id": 2251, + "parent_product_id": 1421, + "root_product_id": 1421, + "update_tag": "SLE-WE", + "url": "https://updates.suse.com/SUSE/Updates/SLE-WE/12-SP3/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-WE12-SP3-Debuginfo-Updates for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-we12-sp3-pool-x86_64", + "parent_channel_label": "sles12-sp3-pool-x86_64", + "product_id": 1431, + "repository_id": 2252, + "parent_product_id": 1421, + "root_product_id": 1421, + "update_tag": "SLE-WE", + "url": "https://updates.suse.com/SUSE/Products/SLE-WE/12-SP3/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-WE12-SP3-Pool for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-we12-sp3-debuginfo-pool-x86_64", + "parent_channel_label": "sles12-sp3-pool-x86_64", + "product_id": 1431, + "repository_id": 2253, + "parent_product_id": 1421, + "root_product_id": 1421, + "update_tag": "SLE-WE", + "url": "https://updates.suse.com/SUSE/Products/SLE-WE/12-SP3/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-WE12-SP3-Debuginfo-Pool for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-ha12-sp3-updates-x86_64", + "parent_channel_label": "sles12-sp3-pool-x86_64", + "product_id": 1432, + "repository_id": 2221, + "parent_product_id": 1421, + "root_product_id": 1421, + "update_tag": "SLE-HA", + "url": "https://updates.suse.com/SUSE/Updates/SLE-HA/12-SP3/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-HA12-SP3-Updates for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-ha12-sp3-debuginfo-updates-x86_64", + "parent_channel_label": "sles12-sp3-pool-x86_64", + "product_id": 1432, + "repository_id": 2223, + "parent_product_id": 1421, + "root_product_id": 1421, + "update_tag": "SLE-HA", + "url": "https://updates.suse.com/SUSE/Updates/SLE-HA/12-SP3/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-HA12-SP3-Debuginfo-Updates for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-ha12-sp3-pool-x86_64", + "parent_channel_label": "sles12-sp3-pool-x86_64", + "product_id": 1432, + "repository_id": 2225, + "parent_product_id": 1421, + "root_product_id": 1421, + "update_tag": "SLE-HA", + "url": "https://updates.suse.com/SUSE/Products/SLE-HA/12-SP3/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-HA12-SP3-Pool for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-ha12-sp3-debuginfo-pool-x86_64", + "parent_channel_label": "sles12-sp3-pool-x86_64", + "product_id": 1432, + "repository_id": 2227, + "parent_product_id": 1421, + "root_product_id": 1421, + "update_tag": "SLE-HA", + "url": "https://updates.suse.com/SUSE/Products/SLE-HA/12-SP3/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-HA12-SP3-Debuginfo-Pool for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-ha-geo12-sp3-updates-x86_64", + "parent_channel_label": "sles12-sp3-pool-x86_64", + "product_id": 1435, + "repository_id": 2265, + "parent_product_id": 1432, + "root_product_id": 1421, + "update_tag": "SLE-HA-GEO", + "url": "https://updates.suse.com/SUSE/Updates/SLE-HA-GEO/12-SP3/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-HA-GEO12-SP3-Updates for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-ha-geo12-sp3-debuginfo-updates-x86_64", + "parent_channel_label": "sles12-sp3-pool-x86_64", + "product_id": 1435, + "repository_id": 2266, + "parent_product_id": 1432, + "root_product_id": 1421, + "update_tag": "SLE-HA-GEO", + "url": "https://updates.suse.com/SUSE/Updates/SLE-HA-GEO/12-SP3/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-HA-GEO12-SP3-Debuginfo-Updates for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-ha-geo12-sp3-pool-x86_64", + "parent_channel_label": "sles12-sp3-pool-x86_64", + "product_id": 1435, + "repository_id": 2267, + "parent_product_id": 1432, + "root_product_id": 1421, + "update_tag": "SLE-HA-GEO", + "url": "https://updates.suse.com/SUSE/Products/SLE-HA-GEO/12-SP3/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-HA-GEO12-SP3-Pool for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-ha-geo12-sp3-debuginfo-pool-x86_64", + "parent_channel_label": "sles12-sp3-pool-x86_64", + "product_id": 1435, + "repository_id": 2268, + "parent_product_id": 1432, + "root_product_id": 1421, + "update_tag": "SLE-HA-GEO", + "url": "https://updates.suse.com/SUSE/Products/SLE-HA-GEO/12-SP3/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-HA-GEO12-SP3-Debuginfo-Pool for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-pos12-sp2-updates-x86_64-sp3", + "parent_channel_label": "sles12-sp3-pool-x86_64", + "product_id": 1439, + "repository_id": 2289, + "parent_product_id": 1421, + "root_product_id": 1421, + "update_tag": "SLE-POS", + "url": "https://updates.suse.com/SUSE/Updates/SLE-POS/12-SP2/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-POS12-SP2-Updates for x86_64 SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-pos12-sp2-debuginfo-updates-x86_64-sp3", + "parent_channel_label": "sles12-sp3-pool-x86_64", + "product_id": 1439, + "repository_id": 2290, + "parent_product_id": 1421, + "root_product_id": 1421, + "update_tag": "SLE-POS", + "url": "https://updates.suse.com/SUSE/Updates/SLE-POS/12-SP2/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-POS12-SP2-Debuginfo-Updates for x86_64 SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-pos12-sp2-pool-x86_64-sp3", + "parent_channel_label": "sles12-sp3-pool-x86_64", + "product_id": 1439, + "repository_id": 2291, + "parent_product_id": 1421, + "root_product_id": 1421, + "update_tag": "SLE-POS", + "url": "https://updates.suse.com/SUSE/Products/SLE-POS/12-SP2/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-POS12-SP2-Pool for x86_64 SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-pos12-sp2-debuginfo-pool-x86_64-sp3", + "parent_channel_label": "sles12-sp3-pool-x86_64", + "product_id": 1439, + "repository_id": 2292, + "parent_product_id": 1421, + "root_product_id": 1421, + "update_tag": "SLE-POS", + "url": "https://updates.suse.com/SUSE/Products/SLE-POS/12-SP2/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-POS12-SP2-Debuginfo-Pool for x86_64 SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-pos12-sp2-client-updates-x86_64-sp3", + "parent_channel_label": "sles12-sp3-pool-x86_64", + "product_id": 1439, + "repository_id": 3130, + "parent_product_id": 1421, + "root_product_id": 1421, + "update_tag": "SLE-POS", + "url": "https://updates.suse.com/SUSE/Updates/SLE-POS/12-SP2-CLIENT/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-POS12-SP2-CLIENT-Updates for x86_64 SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-pos12-sp2-client-debuginfo-updates-x86_64-sp3", + "parent_channel_label": "sles12-sp3-pool-x86_64", + "product_id": 1439, + "repository_id": 3131, + "parent_product_id": 1421, + "root_product_id": 1421, + "update_tag": "SLE-POS", + "url": "https://updates.suse.com/SUSE/Updates/SLE-POS/12-SP2-CLIENT/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-POS12-SP2-CLIENT-Debuginfo-Updates for x86_64 SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-hpc12-updates-x86_64-sp3", + "parent_channel_label": "sles12-sp3-pool-x86_64", + "product_id": 1440, + "repository_id": 2294, + "parent_product_id": 1421, + "root_product_id": 1421, + "update_tag": "SLE-Module-HPC", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-HPC/12/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-HPC12-Updates for x86_64 SP3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-hpc12-debuginfo-updates-x86_64-sp3", + "parent_channel_label": "sles12-sp3-pool-x86_64", + "product_id": 1440, + "repository_id": 2295, + "parent_product_id": 1421, + "root_product_id": 1421, + "update_tag": "SLE-Module-HPC", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-HPC/12/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-HPC12-Debuginfo-Updates for x86_64 SP3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-hpc12-pool-x86_64-sp3", + "parent_channel_label": "sles12-sp3-pool-x86_64", + "product_id": 1440, + "repository_id": 2296, + "parent_product_id": 1421, + "root_product_id": 1421, + "update_tag": "SLE-Module-HPC", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-HPC/12/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-HPC12-Pool for x86_64 SP3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-hpc12-debuginfo-pool-x86_64-sp3", + "parent_channel_label": "sles12-sp3-pool-x86_64", + "product_id": 1440, + "repository_id": 2297, + "parent_product_id": 1421, + "root_product_id": 1421, + "update_tag": "SLE-Module-HPC", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-HPC/12/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-HPC12-Debuginfo-Pool for x86_64 SP3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-manager-server-3.1-updates-x86_64-sp3", + "parent_channel_label": "sles12-sp3-pool-x86_64", + "product_id": 1518, + "repository_id": 2400, + "parent_product_id": 1421, + "root_product_id": 1421, + "update_tag": "SUSE-Manager-Server-3.1", + "url": "https://updates.suse.com/SUSE/Updates/SUSE-Manager-Server/3.1/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-Manager-Server-3.1-Updates for x86_64 SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-manager-server-3.1-debuginfo-updates-x86_64-sp3", + "parent_channel_label": "sles12-sp3-pool-x86_64", + "product_id": 1518, + "repository_id": 2401, + "parent_product_id": 1421, + "root_product_id": 1421, + "update_tag": "SUSE-Manager-Server-3.1", + "url": "https://updates.suse.com/SUSE/Updates/SUSE-Manager-Server/3.1/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SUSE-Manager-Server-3.1-Debuginfo-Updates for x86_64 SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-manager-server-3.1-pool-x86_64-sp3", + "parent_channel_label": "sles12-sp3-pool-x86_64", + "product_id": 1518, + "repository_id": 2402, + "parent_product_id": 1421, + "root_product_id": 1421, + "update_tag": "SUSE-Manager-Server-3.1", + "url": "https://updates.suse.com/SUSE/Products/SUSE-Manager-Server/3.1/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-Manager-Server-3.1-Pool for x86_64 SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-manager-server-3.1-debuginfo-pool-x86_64-sp3", + "parent_channel_label": "sles12-sp3-pool-x86_64", + "product_id": 1518, + "repository_id": 2403, + "parent_product_id": 1421, + "root_product_id": 1421, + "update_tag": "SUSE-Manager-Server-3.1", + "url": "https://updates.suse.com/SUSE/Products/SUSE-Manager-Server/3.1/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SUSE-Manager-Server-3.1-Debuginfo-Pool for x86_64 SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-manager-proxy-3.1-updates-x86_64-sp3", + "parent_channel_label": "sles12-sp3-pool-x86_64", + "product_id": 1520, + "repository_id": 2410, + "parent_product_id": 1421, + "root_product_id": 1421, + "update_tag": "SUSE-Manager-Proxy-3.1", + "url": "https://updates.suse.com/SUSE/Updates/SUSE-Manager-Proxy/3.1/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-Manager-Proxy-3.1-Updates for x86_64 SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-manager-proxy-3.1-debuginfo-updates-x86_64-sp3", + "parent_channel_label": "sles12-sp3-pool-x86_64", + "product_id": 1520, + "repository_id": 2411, + "parent_product_id": 1421, + "root_product_id": 1421, + "update_tag": "SUSE-Manager-Proxy-3.1", + "url": "https://updates.suse.com/SUSE/Updates/SUSE-Manager-Proxy/3.1/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SUSE-Manager-Proxy-3.1-Debuginfo-Updates for x86_64 SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-manager-proxy-3.1-pool-x86_64-sp3", + "parent_channel_label": "sles12-sp3-pool-x86_64", + "product_id": 1520, + "repository_id": 2412, + "parent_product_id": 1421, + "root_product_id": 1421, + "update_tag": "SUSE-Manager-Proxy-3.1", + "url": "https://updates.suse.com/SUSE/Products/SUSE-Manager-Proxy/3.1/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-Manager-Proxy-3.1-Pool for x86_64 SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-manager-proxy-3.1-debuginfo-pool-x86_64-sp3", + "parent_channel_label": "sles12-sp3-pool-x86_64", + "product_id": 1520, + "repository_id": 2413, + "parent_product_id": 1421, + "root_product_id": 1421, + "update_tag": "SUSE-Manager-Proxy-3.1", + "url": "https://updates.suse.com/SUSE/Products/SUSE-Manager-Proxy/3.1/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SUSE-Manager-Proxy-3.1-Debuginfo-Pool for x86_64 SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-enterprise-storage-5-updates-x86_64", + "parent_channel_label": "sles12-sp3-pool-x86_64", + "product_id": 1526, + "repository_id": 2432, + "parent_product_id": 1421, + "root_product_id": 1421, + "update_tag": "Storage-5", + "url": "https://updates.suse.com/SUSE/Updates/Storage/5/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-Enterprise-Storage-5-Updates for x86_64 SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-enterprise-storage-5-debuginfo-updates-x86_64", + "parent_channel_label": "sles12-sp3-pool-x86_64", + "product_id": 1526, + "repository_id": 2433, + "parent_product_id": 1421, + "root_product_id": 1421, + "update_tag": "Storage-5", + "url": "https://updates.suse.com/SUSE/Updates/Storage/5/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SUSE-Enterprise-Storage-5-Debuginfo-Updates for x86_64 SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-enterprise-storage-5-pool-x86_64", + "parent_channel_label": "sles12-sp3-pool-x86_64", + "product_id": 1526, + "repository_id": 2434, + "parent_product_id": 1421, + "root_product_id": 1421, + "update_tag": "Storage-5", + "url": "https://updates.suse.com/SUSE/Products/Storage/5/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-Enterprise-Storage-5-Pool for x86_64 SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-enterprise-storage-5-debuginfo-pool-x86_64", + "parent_channel_label": "sles12-sp3-pool-x86_64", + "product_id": 1526, + "repository_id": 2435, + "parent_product_id": 1421, + "root_product_id": 1421, + "update_tag": "Storage-5", + "url": "https://updates.suse.com/SUSE/Products/Storage/5/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SUSE-Enterprise-Storage-5-Debuginfo-Pool for x86_64 SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-packagehub-12-sp3-x86_64", + "parent_channel_label": "sles12-sp3-pool-x86_64", + "product_id": 1529, + "repository_id": 2445, + "parent_product_id": 1421, + "root_product_id": 1421, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-12-SP3_x86_64/standard/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-12-SP3 for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-packagehub-12-sp3-debuginfo-x86_64", + "parent_channel_label": "sles12-sp3-pool-x86_64", + "product_id": 1529, + "repository_id": 2446, + "parent_product_id": 1421, + "root_product_id": 1421, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-12-SP3_x86_64/standard_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-12-SP3-Debuginfo for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-packagehub-12-sp3-pool-x86_64", + "parent_channel_label": "sles12-sp3-pool-x86_64", + "product_id": 1529, + "repository_id": 2447, + "parent_product_id": 1421, + "root_product_id": 1421, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-12-SP3_x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-12-SP3-Pool for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-live-patching12-sp3-updates-x86_64", + "parent_channel_label": "sles12-sp3-pool-x86_64", + "product_id": 1536, + "repository_id": 2463, + "parent_product_id": 1421, + "root_product_id": 1421, + "update_tag": "SLE-Live-Patching", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Live-Patching/12-SP3/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Live-Patching12-SP3-Updates for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-live-patching12-sp3-debuginfo-updates-x86_64", + "parent_channel_label": "sles12-sp3-pool-x86_64", + "product_id": 1536, + "repository_id": 2464, + "parent_product_id": 1421, + "root_product_id": 1421, + "update_tag": "SLE-Live-Patching", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Live-Patching/12-SP3/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Live-Patching12-SP3-Debuginfo-Updates for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-live-patching12-sp3-pool-x86_64", + "parent_channel_label": "sles12-sp3-pool-x86_64", + "product_id": 1536, + "repository_id": 2465, + "parent_product_id": 1421, + "root_product_id": 1421, + "update_tag": "SLE-Live-Patching", + "url": "https://updates.suse.com/SUSE/Products/SLE-Live-Patching/12-SP3/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Live-Patching12-SP3-Pool for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-live-patching12-sp3-debuginfo-pool-x86_64", + "parent_channel_label": "sles12-sp3-pool-x86_64", + "product_id": 1536, + "repository_id": 2466, + "parent_product_id": 1421, + "root_product_id": 1421, + "update_tag": "SLE-Live-Patching", + "url": "https://updates.suse.com/SUSE/Products/SLE-Live-Patching/12-SP3/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Live-Patching12-SP3-Debuginfo-Pool for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-manager-retail-3.1-updates-x86_64-sp3", + "parent_channel_label": "sles12-sp3-pool-x86_64", + "product_id": 1574, + "repository_id": 2519, + "parent_product_id": 1421, + "root_product_id": 1421, + "update_tag": "SUSE-Manager-Retail-3.1", + "url": "https://updates.suse.com/SUSE/Updates/SUSE-Manager-Retail/3.1/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-Manager-Retail-3.1-Updates for x86_64 SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-manager-retail-3.1-debuginfo-updates-x86_64-sp3", + "parent_channel_label": "sles12-sp3-pool-x86_64", + "product_id": 1574, + "repository_id": 2520, + "parent_product_id": 1421, + "root_product_id": 1421, + "update_tag": "SUSE-Manager-Retail-3.1", + "url": "https://updates.suse.com/SUSE/Updates/SUSE-Manager-Retail/3.1/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SUSE-Manager-Retail-3.1-Debuginfo-Updates for x86_64 SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-manager-retail-3.1-pool-x86_64-sp3", + "parent_channel_label": "sles12-sp3-pool-x86_64", + "product_id": 1574, + "repository_id": 2521, + "parent_product_id": 1421, + "root_product_id": 1421, + "update_tag": "SUSE-Manager-Retail-3.1", + "url": "https://updates.suse.com/SUSE/Products/SUSE-Manager-Retail/3.1/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-Manager-Retail-3.1-Pool for x86_64 SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-manager-retail-3.1-debuginfo-pool-x86_64-sp3", + "parent_channel_label": "sles12-sp3-pool-x86_64", + "product_id": 1574, + "repository_id": 2522, + "parent_product_id": 1421, + "root_product_id": 1421, + "update_tag": "SUSE-Manager-Retail-3.1", + "url": "https://updates.suse.com/SUSE/Products/SUSE-Manager-Retail/3.1/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SUSE-Manager-Retail-3.1-Debuginfo-Pool for x86_64 SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-openstack-cloud-8-updates-x86_64", + "parent_channel_label": "sles12-sp3-pool-x86_64", + "product_id": 1617, + "repository_id": 2691, + "parent_product_id": 1421, + "root_product_id": 1421, + "update_tag": "OpenStack-Cloud-8", + "url": "https://updates.suse.com/SUSE/Updates/OpenStack-Cloud/8/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-OpenStack-Cloud-8-Updates for x86_64 SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-openstack-cloud-8-debuginfo-updates-x86_64", + "parent_channel_label": "sles12-sp3-pool-x86_64", + "product_id": 1617, + "repository_id": 2692, + "parent_product_id": 1421, + "root_product_id": 1421, + "update_tag": "OpenStack-Cloud-8", + "url": "https://updates.suse.com/SUSE/Updates/OpenStack-Cloud/8/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SUSE-OpenStack-Cloud-8-Debuginfo-Updates for x86_64 SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-openstack-cloud-8-pool-x86_64", + "parent_channel_label": "sles12-sp3-pool-x86_64", + "product_id": 1617, + "repository_id": 2693, + "parent_product_id": 1421, + "root_product_id": 1421, + "update_tag": "OpenStack-Cloud-8", + "url": "https://updates.suse.com/SUSE/Products/OpenStack-Cloud/8/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-OpenStack-Cloud-8-Pool for x86_64 SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-openstack-cloud-8-debuginfo-pool-x86_64", + "parent_channel_label": "sles12-sp3-pool-x86_64", + "product_id": 1617, + "repository_id": 2694, + "parent_product_id": 1421, + "root_product_id": 1421, + "update_tag": "OpenStack-Cloud-8", + "url": "https://updates.suse.com/SUSE/Products/OpenStack-Cloud/8/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SUSE-OpenStack-Cloud-8-Debuginfo-Pool for x86_64 SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-rt12-sp3-updates-x86_64", + "parent_channel_label": "sles12-sp3-pool-x86_64", + "product_id": 1619, + "repository_id": 2701, + "parent_product_id": 1421, + "root_product_id": 1421, + "update_tag": "SLE-RT", + "url": "https://updates.suse.com/SUSE/Updates/SLE-RT/12-SP3/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-RT12-SP3-Updates for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-rt12-sp3-debuginfo-updates-x86_64", + "parent_channel_label": "sles12-sp3-pool-x86_64", + "product_id": 1619, + "repository_id": 2702, + "parent_product_id": 1421, + "root_product_id": 1421, + "update_tag": "SLE-RT", + "url": "https://updates.suse.com/SUSE/Updates/SLE-RT/12-SP3/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-RT12-SP3-Debuginfo-Updates for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-rt12-sp3-pool-x86_64", + "parent_channel_label": "sles12-sp3-pool-x86_64", + "product_id": 1619, + "repository_id": 2703, + "parent_product_id": 1421, + "root_product_id": 1421, + "update_tag": "SLE-RT", + "url": "https://updates.suse.com/SUSE/Products/SLE-RT/12-SP3/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-RT12-SP3-Pool for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-rt12-sp3-debuginfo-pool-x86_64", + "parent_channel_label": "sles12-sp3-pool-x86_64", + "product_id": 1619, + "repository_id": 2704, + "parent_product_id": 1421, + "root_product_id": 1421, + "update_tag": "SLE-RT", + "url": "https://updates.suse.com/SUSE/Products/SLE-RT/12-SP3/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-RT12-SP3-Debuginfo-Pool for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-cap-tools-12-updates-x86_64-sp3", + "parent_channel_label": "sles12-sp3-pool-x86_64", + "product_id": 1678, + "repository_id": 2912, + "parent_product_id": 1421, + "root_product_id": 1421, + "update_tag": "SLE-Module-CAP-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-CAP-Tools/12/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-CAP-Tools-12-Updates for x86_64 SP3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-cap-tools-12-debuginfo-updates-x86_64-sp3", + "parent_channel_label": "sles12-sp3-pool-x86_64", + "product_id": 1678, + "repository_id": 2913, + "parent_product_id": 1421, + "root_product_id": 1421, + "update_tag": "SLE-Module-CAP-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-CAP-Tools/12/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-CAP-Tools-12-Debuginfo-Updates for x86_64 SP3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-cap-tools-12-pool-x86_64-sp3", + "parent_channel_label": "sles12-sp3-pool-x86_64", + "product_id": 1678, + "repository_id": 2914, + "parent_product_id": 1421, + "root_product_id": 1421, + "update_tag": "SLE-Module-CAP-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-CAP-Tools/12/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-CAP-Tools-12-Pool for x86_64 SP3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-cap-tools-12-debuginfo-pool-x86_64-sp3", + "parent_channel_label": "sles12-sp3-pool-x86_64", + "product_id": 1678, + "repository_id": 2915, + "parent_product_id": 1421, + "root_product_id": 1421, + "update_tag": "SLE-Module-CAP-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-CAP-Tools/12/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-CAP-Tools-12-Debuginfo-Pool for x86_64 SP3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-manager-server-3.2-updates-x86_64", + "parent_channel_label": "sles12-sp3-pool-x86_64", + "product_id": 1724, + "repository_id": 2987, + "parent_product_id": 1421, + "root_product_id": 1421, + "update_tag": "SUSE-Manager-Server-3.2", + "url": "https://updates.suse.com/SUSE/Updates/SUSE-Manager-Server/3.2/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-Manager-Server-3.2-Updates for x86_64 SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-manager-server-3.2-debuginfo-updates-x86_64", + "parent_channel_label": "sles12-sp3-pool-x86_64", + "product_id": 1724, + "repository_id": 2988, + "parent_product_id": 1421, + "root_product_id": 1421, + "update_tag": "SUSE-Manager-Server-3.2", + "url": "https://updates.suse.com/SUSE/Updates/SUSE-Manager-Server/3.2/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SUSE-Manager-Server-3.2-Debuginfo-Updates for x86_64 SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-manager-server-3.2-pool-x86_64", + "parent_channel_label": "sles12-sp3-pool-x86_64", + "product_id": 1724, + "repository_id": 2989, + "parent_product_id": 1421, + "root_product_id": 1421, + "update_tag": "SUSE-Manager-Server-3.2", + "url": "https://updates.suse.com/SUSE/Products/SUSE-Manager-Server/3.2/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-Manager-Server-3.2-Pool for x86_64 SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-manager-server-3.2-debuginfo-pool-x86_64", + "parent_channel_label": "sles12-sp3-pool-x86_64", + "product_id": 1724, + "repository_id": 2990, + "parent_product_id": 1421, + "root_product_id": 1421, + "update_tag": "SUSE-Manager-Server-3.2", + "url": "https://updates.suse.com/SUSE/Products/SUSE-Manager-Server/3.2/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SUSE-Manager-Server-3.2-Debuginfo-Pool for x86_64 SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-manager-proxy-3.2-updates-x86_64", + "parent_channel_label": "sles12-sp3-pool-x86_64", + "product_id": 1725, + "repository_id": 2992, + "parent_product_id": 1421, + "root_product_id": 1421, + "update_tag": "SUSE-Manager-Proxy-3.2", + "url": "https://updates.suse.com/SUSE/Updates/SUSE-Manager-Proxy/3.2/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-Manager-Proxy-3.2-Updates for x86_64 SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-manager-proxy-3.2-debuginfo-updates-x86_64", + "parent_channel_label": "sles12-sp3-pool-x86_64", + "product_id": 1725, + "repository_id": 2993, + "parent_product_id": 1421, + "root_product_id": 1421, + "update_tag": "SUSE-Manager-Proxy-3.2", + "url": "https://updates.suse.com/SUSE/Updates/SUSE-Manager-Proxy/3.2/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SUSE-Manager-Proxy-3.2-Debuginfo-Updates for x86_64 SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-manager-proxy-3.2-pool-x86_64", + "parent_channel_label": "sles12-sp3-pool-x86_64", + "product_id": 1725, + "repository_id": 2994, + "parent_product_id": 1421, + "root_product_id": 1421, + "update_tag": "SUSE-Manager-Proxy-3.2", + "url": "https://updates.suse.com/SUSE/Products/SUSE-Manager-Proxy/3.2/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-Manager-Proxy-3.2-Pool for x86_64 SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-manager-proxy-3.2-debuginfo-pool-x86_64", + "parent_channel_label": "sles12-sp3-pool-x86_64", + "product_id": 1725, + "repository_id": 2995, + "parent_product_id": 1421, + "root_product_id": 1421, + "update_tag": "SUSE-Manager-Proxy-3.2", + "url": "https://updates.suse.com/SUSE/Products/SUSE-Manager-Proxy/3.2/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SUSE-Manager-Proxy-3.2-Debuginfo-Pool for x86_64 SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-manager-retail-branch-server-3.2-updates-x86_64", + "parent_channel_label": "sles12-sp3-pool-x86_64", + "product_id": 1826, + "repository_id": 3517, + "parent_product_id": 1725, + "root_product_id": 1421, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Updates/SUSE-Manager-Retail-Branch-Server/3.2/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-Manager-Retail-Branch-Server-3.2-Updates for x86_64 SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-manager-retail-branch-server-3.2-debuginfo-updates-x86_64", + "parent_channel_label": "sles12-sp3-pool-x86_64", + "product_id": 1826, + "repository_id": 3518, + "parent_product_id": 1725, + "root_product_id": 1421, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Updates/SUSE-Manager-Retail-Branch-Server/3.2/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SUSE-Manager-Retail-Branch-Server-3.2-Debuginfo-Updates for x86_64 SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-manager-retail-branch-server-3.2-pool-x86_64", + "parent_channel_label": "sles12-sp3-pool-x86_64", + "product_id": 1826, + "repository_id": 3519, + "parent_product_id": 1725, + "root_product_id": 1421, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Products/SUSE-Manager-Retail-Branch-Server/3.2/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-Manager-Retail-Branch-Server-3.2-Pool for x86_64 SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-manager-retail-branch-server-3.2-debuginfo-pool-x86_64", + "parent_channel_label": "sles12-sp3-pool-x86_64", + "product_id": 1826, + "repository_id": 3520, + "parent_product_id": 1725, + "root_product_id": 1421, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Products/SUSE-Manager-Retail-Branch-Server/3.2/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SUSE-Manager-Retail-Branch-Server-3.2-Debuginfo-Pool for x86_64 SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-openstack-cloud-crowbar-8-updates-x86_64", + "parent_channel_label": "sles12-sp3-pool-x86_64", + "product_id": 1729, + "repository_id": 3004, + "parent_product_id": 1421, + "root_product_id": 1421, + "update_tag": "OpenStack-Cloud-Crowbar-8", + "url": "https://updates.suse.com/SUSE/Updates/OpenStack-Cloud-Crowbar/8/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-OpenStack-Cloud-Crowbar-8-Updates for x86_64 SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-openstack-cloud-crowbar-8-debuginfo-updates-x86_64", + "parent_channel_label": "sles12-sp3-pool-x86_64", + "product_id": 1729, + "repository_id": 3005, + "parent_product_id": 1421, + "root_product_id": 1421, + "update_tag": "OpenStack-Cloud-Crowbar-8", + "url": "https://updates.suse.com/SUSE/Updates/OpenStack-Cloud-Crowbar/8/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SUSE-OpenStack-Cloud-Crowbar-8-Debuginfo-Updates for x86_64 SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-openstack-cloud-crowbar-8-pool-x86_64", + "parent_channel_label": "sles12-sp3-pool-x86_64", + "product_id": 1729, + "repository_id": 3006, + "parent_product_id": 1421, + "root_product_id": 1421, + "update_tag": "OpenStack-Cloud-Crowbar-8", + "url": "https://updates.suse.com/SUSE/Products/OpenStack-Cloud-Crowbar/8/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-OpenStack-Cloud-Crowbar-8-Pool for x86_64 SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-openstack-cloud-crowbar-8-debuginfo-pool-x86_64", + "parent_channel_label": "sles12-sp3-pool-x86_64", + "product_id": 1729, + "repository_id": 3007, + "parent_product_id": 1421, + "root_product_id": 1421, + "update_tag": "OpenStack-Cloud-Crowbar-8", + "url": "https://updates.suse.com/SUSE/Products/OpenStack-Cloud-Crowbar/8/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SUSE-OpenStack-Cloud-Crowbar-8-Debuginfo-Pool for x86_64 SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "hpe-helion-openstack-8-updates-x86_64-sp3", + "parent_channel_label": "sles12-sp3-pool-x86_64", + "product_id": 1730, + "repository_id": 3139, + "parent_product_id": 1421, + "root_product_id": 1421, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Updates/HPE-Helion-OpenStack/8/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "HPE-Helion-OpenStack-8-Updates for x86_64 SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "hpe-helion-openstack-8-debuginfo-updates-x86_64-sp3", + "parent_channel_label": "sles12-sp3-pool-x86_64", + "product_id": 1730, + "repository_id": 3140, + "parent_product_id": 1421, + "root_product_id": 1421, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Updates/HPE-Helion-OpenStack/8/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "HPE-Helion-OpenStack-8-Debuginfo-Updates for x86_64 SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "hpe-helion-openstack-8-pool-x86_64-sp3", + "parent_channel_label": "sles12-sp3-pool-x86_64", + "product_id": 1730, + "repository_id": 3141, + "parent_product_id": 1421, + "root_product_id": 1421, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Products/HPE-Helion-OpenStack/8/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "HPE-Helion-OpenStack-8-Pool for x86_64 SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "hpe-helion-openstack-8-debuginfo-pool-x86_64-sp3", + "parent_channel_label": "sles12-sp3-pool-x86_64", + "product_id": 1730, + "repository_id": 3142, + "parent_product_id": 1421, + "root_product_id": 1421, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Products/HPE-Helion-OpenStack/8/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "HPE-Helion-OpenStack-8-Debuginfo-Pool for x86_64 SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-manager-tools12-beta-updates-x86_64-sp3", + "parent_channel_label": "sles12-sp3-pool-x86_64", + "product_id": 1747, + "repository_id": 3077, + "parent_product_id": 1421, + "root_product_id": 1421, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/12-BETA/x86_64/update/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools12-BETA-Updates for x86_64 SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools12-beta-debuginfo-updates-x86_64-sp3", + "parent_channel_label": "sles12-sp3-pool-x86_64", + "product_id": 1747, + "repository_id": 3078, + "parent_product_id": 1421, + "root_product_id": 1421, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/12-BETA/x86_64/update_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools12-BETA-Debuginfo-Updates for x86_64 SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools12-beta-pool-x86_64-sp3", + "parent_channel_label": "sles12-sp3-pool-x86_64", + "product_id": 1747, + "repository_id": 3079, + "parent_product_id": 1421, + "root_product_id": 1421, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/12-BETA/x86_64/product/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools12-BETA-Pool for x86_64 SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools12-beta-debuginfo-pool-x86_64-sp3", + "parent_channel_label": "sles12-sp3-pool-x86_64", + "product_id": 1747, + "repository_id": 3080, + "parent_product_id": 1421, + "root_product_id": 1421, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/12-BETA/x86_64/product_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools12-BETA-Debuginfo-Pool for x86_64 SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sles12-sp3-ltss-updates-x86_64", + "parent_channel_label": "sles12-sp3-pool-x86_64", + "product_id": 1932, + "repository_id": 3919, + "parent_product_id": 1421, + "root_product_id": 1421, + "update_tag": "SLE-SERVER", + "url": "https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-SP3-LTSS/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLES12-SP3-LTSS-Updates for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles12-sp3-ltss-debuginfo-updates-x86_64", + "parent_channel_label": "sles12-sp3-pool-x86_64", + "product_id": 1932, + "repository_id": 3920, + "parent_product_id": 1421, + "root_product_id": 1421, + "update_tag": "SLE-SERVER", + "url": "https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-SP3-LTSS/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLES12-SP3-LTSS-Debuginfo-Updates for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-manager-tools12-updates-ppc64le-sp3", + "parent_channel_label": "sles12-sp3-pool-ppc64le", + "product_id": 1422, + "repository_id": 1724, + "parent_product_id": null, + "root_product_id": 1422, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/12/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Manager-Tools12-Updates for ppc64le SP3", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools12-debuginfo-updates-ppc64le-sp3", + "parent_channel_label": "sles12-sp3-pool-ppc64le", + "product_id": 1422, + "repository_id": 1725, + "parent_product_id": null, + "root_product_id": 1422, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/12/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Manager-Tools12-Debuginfo-Updates for ppc64le SP3", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools12-pool-ppc64le-sp3", + "parent_channel_label": "sles12-sp3-pool-ppc64le", + "product_id": 1422, + "repository_id": 1726, + "parent_product_id": null, + "root_product_id": 1422, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/12/ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Manager-Tools12-Pool for ppc64le SP3", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools12-debuginfo-pool-ppc64le-sp3", + "parent_channel_label": "sles12-sp3-pool-ppc64le", + "product_id": 1422, + "repository_id": 1727, + "parent_product_id": null, + "root_product_id": 1422, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/12/ppc64le/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Manager-Tools12-Debuginfo-Pool for ppc64le SP3", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sles12-sp3-updates-ppc64le", + "parent_channel_label": "sles12-sp3-pool-ppc64le", + "product_id": 1422, + "repository_id": 2195, + "parent_product_id": null, + "root_product_id": 1422, + "update_tag": "SLE-SERVER", + "url": "https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-SP3/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLES12-SP3-Updates for ppc64le", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles12-sp3-debuginfo-updates-ppc64le", + "parent_channel_label": "sles12-sp3-pool-ppc64le", + "product_id": 1422, + "repository_id": 2196, + "parent_product_id": null, + "root_product_id": 1422, + "update_tag": "SLE-SERVER", + "url": "https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-SP3/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLES12-SP3-Debuginfo-Updates for ppc64le", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles12-sp3-installer-updates-ppc64le", + "parent_channel_label": "sles12-sp3-pool-ppc64le", + "product_id": 1422, + "repository_id": 2197, + "parent_product_id": null, + "root_product_id": 1422, + "update_tag": "SLE-SERVER-INSTALLER", + "url": "https://updates.suse.com/SUSE/Updates/SLE-SERVER-INSTALLER/12-SP3/ppc64le/update/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLES12-SP3-Installer-Updates for ppc64le", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles12-sp3-pool-ppc64le", + "parent_channel_label": null, + "product_id": 1422, + "repository_id": 2198, + "parent_product_id": null, + "root_product_id": 1422, + "update_tag": "SLE-SERVER", + "url": "https://updates.suse.com/SUSE/Products/SLE-SERVER/12-SP3/ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLES12-SP3-Pool for ppc64le", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles12-sp3-debuginfo-pool-ppc64le", + "parent_channel_label": "sles12-sp3-pool-ppc64le", + "product_id": 1422, + "repository_id": 2199, + "parent_product_id": null, + "root_product_id": 1422, + "update_tag": "SLE-SERVER", + "url": "https://updates.suse.com/SUSE/Products/SLE-SERVER/12-SP3/ppc64le/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLES12-SP3-Debuginfo-Pool for ppc64le", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-legacy12-updates-ppc64le-sp3", + "parent_channel_label": "sles12-sp3-pool-ppc64le", + "product_id": 1148, + "repository_id": 1668, + "parent_product_id": 1422, + "root_product_id": 1422, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/12/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy12-Updates for ppc64le SP3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-legacy12-debuginfo-updates-ppc64le-sp3", + "parent_channel_label": "sles12-sp3-pool-ppc64le", + "product_id": 1148, + "repository_id": 1669, + "parent_product_id": 1422, + "root_product_id": 1422, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/12/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy12-Debuginfo-Updates for ppc64le SP3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-legacy12-pool-ppc64le-sp3", + "parent_channel_label": "sles12-sp3-pool-ppc64le", + "product_id": 1148, + "repository_id": 1670, + "parent_product_id": 1422, + "root_product_id": 1422, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/12/ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy12-Pool for ppc64le SP3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-legacy12-debuginfo-pool-ppc64le-sp3", + "parent_channel_label": "sles12-sp3-pool-ppc64le", + "product_id": 1148, + "repository_id": 1671, + "parent_product_id": 1422, + "root_product_id": 1422, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/12/ppc64le/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy12-Debuginfo-Pool for ppc64le SP3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting12-updates-ppc64le-sp3", + "parent_channel_label": "sles12-sp3-pool-ppc64le", + "product_id": 1151, + "repository_id": 1680, + "parent_product_id": 1422, + "root_product_id": 1422, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/12/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Web-Scripting12-Updates for ppc64le SP3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting12-debuginfo-updates-ppc64le-sp3", + "parent_channel_label": "sles12-sp3-pool-ppc64le", + "product_id": 1151, + "repository_id": 1681, + "parent_product_id": 1422, + "root_product_id": 1422, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/12/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Web-Scripting12-Debuginfo-Updates for ppc64le SP3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting12-pool-ppc64le-sp3", + "parent_channel_label": "sles12-sp3-pool-ppc64le", + "product_id": 1151, + "repository_id": 1682, + "parent_product_id": 1422, + "root_product_id": 1422, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/12/ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Web-Scripting12-Pool for ppc64le SP3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting12-debuginfo-pool-ppc64le-sp3", + "parent_channel_label": "sles12-sp3-pool-ppc64le", + "product_id": 1151, + "repository_id": 1683, + "parent_product_id": 1422, + "root_product_id": 1422, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/12/ppc64le/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Web-Scripting12-Debuginfo-Pool for ppc64le SP3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud12-updates-ppc64le-sp3", + "parent_channel_label": "sles12-sp3-pool-ppc64le", + "product_id": 1218, + "repository_id": 1692, + "parent_product_id": 1422, + "root_product_id": 1422, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/12/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud12-Updates for ppc64le SP3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud12-debuginfo-updates-ppc64le-sp3", + "parent_channel_label": "sles12-sp3-pool-ppc64le", + "product_id": 1218, + "repository_id": 1693, + "parent_product_id": 1422, + "root_product_id": 1422, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/12/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud12-Debuginfo-Updates for ppc64le SP3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud12-pool-ppc64le-sp3", + "parent_channel_label": "sles12-sp3-pool-ppc64le", + "product_id": 1218, + "repository_id": 1694, + "parent_product_id": 1422, + "root_product_id": 1422, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/12/ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud12-Pool for ppc64le SP3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud12-debuginfo-pool-ppc64le-sp3", + "parent_channel_label": "sles12-sp3-pool-ppc64le", + "product_id": 1218, + "repository_id": 1695, + "parent_product_id": 1422, + "root_product_id": 1422, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/12/ppc64le/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud12-Debuginfo-Pool for ppc64le SP3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "ibm-dlpar-adv-toolchain-sp3", + "parent_channel_label": "sles12-sp3-pool-ppc64le", + "product_id": 1249, + "repository_id": 4429, + "parent_product_id": 1422, + "root_product_id": 1422, + "update_tag": null, + "url": "https://public.dhe.ibm.com/software/server/POWER/Linux/toolchain/at/suse/SLES_12/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "IBM-DLPAR-Adv-Toolchain for ppc64le SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "ibm-dlpar-utils-sp3", + "parent_channel_label": "sles12-sp3-pool-ppc64le", + "product_id": 1250, + "repository_id": 6216, + "parent_product_id": 1422, + "root_product_id": 1422, + "update_tag": null, + "url": "https://public.dhe.ibm.com/software/server/POWER/Linux/yum/OSS/SLES/12/ppc64le/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "IBM-DLPAR-utils for ppc64le SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-adv-systems-management12-updates-ppc64le-sp3", + "parent_channel_label": "sles12-sp3-pool-ppc64le", + "product_id": 1294, + "repository_id": 1762, + "parent_product_id": 1422, + "root_product_id": 1422, + "update_tag": "SLE-Module-Adv-Systems-Management", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Adv-Systems-Management/12/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Adv-Systems-Management12-Updates for ppc64le SP3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-adv-systems-management12-debuginfo-updates-ppc64le-sp3", + "parent_channel_label": "sles12-sp3-pool-ppc64le", + "product_id": 1294, + "repository_id": 1763, + "parent_product_id": 1422, + "root_product_id": 1422, + "update_tag": "SLE-Module-Adv-Systems-Management", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Adv-Systems-Management/12/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Adv-Systems-Management12-Debuginfo-Updates for ppc64le SP3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-adv-systems-management12-pool-ppc64le-sp3", + "parent_channel_label": "sles12-sp3-pool-ppc64le", + "product_id": 1294, + "repository_id": 1764, + "parent_product_id": 1422, + "root_product_id": 1422, + "update_tag": "SLE-Module-Adv-Systems-Management", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Adv-Systems-Management/12/ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Adv-Systems-Management12-Pool for ppc64le SP3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-adv-systems-management12-debuginfo-pool-ppc64le-sp3", + "parent_channel_label": "sles12-sp3-pool-ppc64le", + "product_id": 1294, + "repository_id": 1765, + "parent_product_id": 1422, + "root_product_id": 1422, + "update_tag": "SLE-Module-Adv-Systems-Management", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Adv-Systems-Management/12/ppc64le/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Adv-Systems-Management12-Debuginfo-Pool for ppc64le SP3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-toolchain12-updates-ppc64le-sp3", + "parent_channel_label": "sles12-sp3-pool-ppc64le", + "product_id": 1339, + "repository_id": 1895, + "parent_product_id": 1422, + "root_product_id": 1422, + "update_tag": "SLE-Module-Toolchain", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Toolchain/12/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Toolchain12-Updates for ppc64le SP3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-toolchain12-debuginfo-updates-ppc64le-sp3", + "parent_channel_label": "sles12-sp3-pool-ppc64le", + "product_id": 1339, + "repository_id": 1896, + "parent_product_id": 1422, + "root_product_id": 1422, + "update_tag": "SLE-Module-Toolchain", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Toolchain/12/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Toolchain12-Debuginfo-Updates for ppc64le SP3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-toolchain12-pool-ppc64le-sp3", + "parent_channel_label": "sles12-sp3-pool-ppc64le", + "product_id": 1339, + "repository_id": 1897, + "parent_product_id": 1422, + "root_product_id": 1422, + "update_tag": "SLE-Module-Toolchain", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Toolchain/12/ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Toolchain12-Pool for ppc64le SP3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-toolchain12-debuginfo-pool-ppc64le-sp3", + "parent_channel_label": "sles12-sp3-pool-ppc64le", + "product_id": 1339, + "repository_id": 1898, + "parent_product_id": 1422, + "root_product_id": 1422, + "update_tag": "SLE-Module-Toolchain", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Toolchain/12/ppc64le/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Toolchain12-Debuginfo-Pool for ppc64le SP3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-containers12-updates-ppc64le-sp3", + "parent_channel_label": "sles12-sp3-pool-ppc64le", + "product_id": 1353, + "repository_id": 1972, + "parent_product_id": 1422, + "root_product_id": 1422, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/12/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers12-Updates for ppc64le SP3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-containers12-debuginfo-updates-ppc64le-sp3", + "parent_channel_label": "sles12-sp3-pool-ppc64le", + "product_id": 1353, + "repository_id": 1973, + "parent_product_id": 1422, + "root_product_id": 1422, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/12/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers12-Debuginfo-Updates for ppc64le SP3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-containers12-pool-ppc64le-sp3", + "parent_channel_label": "sles12-sp3-pool-ppc64le", + "product_id": 1353, + "repository_id": 1974, + "parent_product_id": 1422, + "root_product_id": 1422, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Containers/12/ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers12-Pool for ppc64le SP3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-containers12-debuginfo-pool-ppc64le-sp3", + "parent_channel_label": "sles12-sp3-pool-ppc64le", + "product_id": 1353, + "repository_id": 1975, + "parent_product_id": 1422, + "root_product_id": 1422, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Containers/12/ppc64le/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers12-Debuginfo-Pool for ppc64le SP3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-sdk12-sp3-updates-ppc64le", + "parent_channel_label": "sles12-sp3-pool-ppc64le", + "product_id": 1428, + "repository_id": 2235, + "parent_product_id": 1422, + "root_product_id": 1422, + "update_tag": "SLE-SDK", + "url": "https://updates.suse.com/SUSE/Updates/SLE-SDK/12-SP3/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-SDK12-SP3-Updates for ppc64le", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-sdk12-sp3-debuginfo-updates-ppc64le", + "parent_channel_label": "sles12-sp3-pool-ppc64le", + "product_id": 1428, + "repository_id": 2236, + "parent_product_id": 1422, + "root_product_id": 1422, + "update_tag": "SLE-SDK", + "url": "https://updates.suse.com/SUSE/Updates/SLE-SDK/12-SP3/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-SDK12-SP3-Debuginfo-Updates for ppc64le", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-sdk12-sp3-pool-ppc64le", + "parent_channel_label": "sles12-sp3-pool-ppc64le", + "product_id": 1428, + "repository_id": 2237, + "parent_product_id": 1422, + "root_product_id": 1422, + "update_tag": "SLE-SDK", + "url": "https://updates.suse.com/SUSE/Products/SLE-SDK/12-SP3/ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-SDK12-SP3-Pool for ppc64le", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-sdk12-sp3-debuginfo-pool-ppc64le", + "parent_channel_label": "sles12-sp3-pool-ppc64le", + "product_id": 1428, + "repository_id": 2238, + "parent_product_id": 1422, + "root_product_id": 1422, + "update_tag": "SLE-SDK", + "url": "https://updates.suse.com/SUSE/Products/SLE-SDK/12-SP3/ppc64le/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-SDK12-SP3-Debuginfo-Pool for ppc64le", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-ha12-sp3-updates-ppc64le", + "parent_channel_label": "sles12-sp3-pool-ppc64le", + "product_id": 1433, + "repository_id": 2255, + "parent_product_id": 1422, + "root_product_id": 1422, + "update_tag": "SLE-HA", + "url": "https://updates.suse.com/SUSE/Updates/SLE-HA/12-SP3/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-HA12-SP3-Updates for ppc64le", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-ha12-sp3-debuginfo-updates-ppc64le", + "parent_channel_label": "sles12-sp3-pool-ppc64le", + "product_id": 1433, + "repository_id": 2256, + "parent_product_id": 1422, + "root_product_id": 1422, + "update_tag": "SLE-HA", + "url": "https://updates.suse.com/SUSE/Updates/SLE-HA/12-SP3/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-HA12-SP3-Debuginfo-Updates for ppc64le", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-ha12-sp3-pool-ppc64le", + "parent_channel_label": "sles12-sp3-pool-ppc64le", + "product_id": 1433, + "repository_id": 2257, + "parent_product_id": 1422, + "root_product_id": 1422, + "update_tag": "SLE-HA", + "url": "https://updates.suse.com/SUSE/Products/SLE-HA/12-SP3/ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-HA12-SP3-Pool for ppc64le", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-ha12-sp3-debuginfo-pool-ppc64le", + "parent_channel_label": "sles12-sp3-pool-ppc64le", + "product_id": 1433, + "repository_id": 2258, + "parent_product_id": 1422, + "root_product_id": 1422, + "update_tag": "SLE-HA", + "url": "https://updates.suse.com/SUSE/Products/SLE-HA/12-SP3/ppc64le/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-HA12-SP3-Debuginfo-Pool for ppc64le", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-packagehub-12-sp3-ppc64le", + "parent_channel_label": "sles12-sp3-pool-ppc64le", + "product_id": 1531, + "repository_id": 2451, + "parent_product_id": 1422, + "root_product_id": 1422, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-12-SP3_ppc64le/standard/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-12-SP3 for ppc64le", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-packagehub-12-sp3-debuginfo-ppc64le", + "parent_channel_label": "sles12-sp3-pool-ppc64le", + "product_id": 1531, + "repository_id": 2452, + "parent_product_id": 1422, + "root_product_id": 1422, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-12-SP3_ppc64le/standard_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-12-SP3-Debuginfo for ppc64le", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-packagehub-12-sp3-pool-ppc64le", + "parent_channel_label": "sles12-sp3-pool-ppc64le", + "product_id": 1531, + "repository_id": 2453, + "parent_product_id": 1422, + "root_product_id": 1422, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-12-SP3_ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-12-SP3-Pool for ppc64le", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-live-patching12-sp3-updates-ppc64le", + "parent_channel_label": "sles12-sp3-pool-ppc64le", + "product_id": 1537, + "repository_id": 2467, + "parent_product_id": 1422, + "root_product_id": 1422, + "update_tag": "SLE-Live-Patching", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Live-Patching/12-SP3/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Live-Patching12-SP3-Updates for ppc64le", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-live-patching12-sp3-debuginfo-updates-ppc64le", + "parent_channel_label": "sles12-sp3-pool-ppc64le", + "product_id": 1537, + "repository_id": 2468, + "parent_product_id": 1422, + "root_product_id": 1422, + "update_tag": "SLE-Live-Patching", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Live-Patching/12-SP3/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Live-Patching12-SP3-Debuginfo-Updates for ppc64le", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-live-patching12-sp3-pool-ppc64le", + "parent_channel_label": "sles12-sp3-pool-ppc64le", + "product_id": 1537, + "repository_id": 2469, + "parent_product_id": 1422, + "root_product_id": 1422, + "update_tag": "SLE-Live-Patching", + "url": "https://updates.suse.com/SUSE/Products/SLE-Live-Patching/12-SP3/ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Live-Patching12-SP3-Pool for ppc64le", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-live-patching12-sp3-debuginfo-pool-ppc64le", + "parent_channel_label": "sles12-sp3-pool-ppc64le", + "product_id": 1537, + "repository_id": 2470, + "parent_product_id": 1422, + "root_product_id": 1422, + "update_tag": "SLE-Live-Patching", + "url": "https://updates.suse.com/SUSE/Products/SLE-Live-Patching/12-SP3/ppc64le/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Live-Patching12-SP3-Debuginfo-Pool for ppc64le", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-manager-server-3.1-updates-ppc64le-sp3", + "parent_channel_label": "sles12-sp3-pool-ppc64le", + "product_id": 1622, + "repository_id": 2727, + "parent_product_id": 1422, + "root_product_id": 1422, + "update_tag": "SUSE-Manager-Server-3.1", + "url": "https://updates.suse.com/SUSE/Updates/SUSE-Manager-Server/3.1/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-Manager-Server-3.1-Updates for ppc64le SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-manager-server-3.1-debuginfo-updates-ppc64le-sp3", + "parent_channel_label": "sles12-sp3-pool-ppc64le", + "product_id": 1622, + "repository_id": 2728, + "parent_product_id": 1422, + "root_product_id": 1422, + "update_tag": "SUSE-Manager-Server-3.1", + "url": "https://updates.suse.com/SUSE/Updates/SUSE-Manager-Server/3.1/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SUSE-Manager-Server-3.1-Debuginfo-Updates for ppc64le SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-manager-server-3.1-pool-ppc64le-sp3", + "parent_channel_label": "sles12-sp3-pool-ppc64le", + "product_id": 1622, + "repository_id": 2729, + "parent_product_id": 1422, + "root_product_id": 1422, + "update_tag": "SUSE-Manager-Server-3.1", + "url": "https://updates.suse.com/SUSE/Products/SUSE-Manager-Server/3.1/ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-Manager-Server-3.1-Pool for ppc64le SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-manager-server-3.1-debuginfo-pool-ppc64le-sp3", + "parent_channel_label": "sles12-sp3-pool-ppc64le", + "product_id": 1622, + "repository_id": 2730, + "parent_product_id": 1422, + "root_product_id": 1422, + "update_tag": "SUSE-Manager-Server-3.1", + "url": "https://updates.suse.com/SUSE/Products/SUSE-Manager-Server/3.1/ppc64le/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SUSE-Manager-Server-3.1-Debuginfo-Pool for ppc64le SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-manager-server-3.2-updates-ppc64le", + "parent_channel_label": "sles12-sp3-pool-ppc64le", + "product_id": 1722, + "repository_id": 2977, + "parent_product_id": 1422, + "root_product_id": 1422, + "update_tag": "SUSE-Manager-Server-3.2", + "url": "https://updates.suse.com/SUSE/Updates/SUSE-Manager-Server/3.2/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-Manager-Server-3.2-Updates for ppc64le SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-manager-server-3.2-debuginfo-updates-ppc64le", + "parent_channel_label": "sles12-sp3-pool-ppc64le", + "product_id": 1722, + "repository_id": 2978, + "parent_product_id": 1422, + "root_product_id": 1422, + "update_tag": "SUSE-Manager-Server-3.2", + "url": "https://updates.suse.com/SUSE/Updates/SUSE-Manager-Server/3.2/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SUSE-Manager-Server-3.2-Debuginfo-Updates for ppc64le SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-manager-server-3.2-pool-ppc64le", + "parent_channel_label": "sles12-sp3-pool-ppc64le", + "product_id": 1722, + "repository_id": 2979, + "parent_product_id": 1422, + "root_product_id": 1422, + "update_tag": "SUSE-Manager-Server-3.2", + "url": "https://updates.suse.com/SUSE/Products/SUSE-Manager-Server/3.2/ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-Manager-Server-3.2-Pool for ppc64le SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-manager-server-3.2-debuginfo-pool-ppc64le", + "parent_channel_label": "sles12-sp3-pool-ppc64le", + "product_id": 1722, + "repository_id": 2980, + "parent_product_id": 1422, + "root_product_id": 1422, + "update_tag": "SUSE-Manager-Server-3.2", + "url": "https://updates.suse.com/SUSE/Products/SUSE-Manager-Server/3.2/ppc64le/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SUSE-Manager-Server-3.2-Debuginfo-Pool for ppc64le SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-manager-tools12-beta-updates-ppc64le-sp3", + "parent_channel_label": "sles12-sp3-pool-ppc64le", + "product_id": 1745, + "repository_id": 3067, + "parent_product_id": 1422, + "root_product_id": 1422, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/12-BETA/ppc64le/update/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools12-BETA-Updates for ppc64le SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools12-beta-debuginfo-updates-ppc64le-sp3", + "parent_channel_label": "sles12-sp3-pool-ppc64le", + "product_id": 1745, + "repository_id": 3068, + "parent_product_id": 1422, + "root_product_id": 1422, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/12-BETA/ppc64le/update_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools12-BETA-Debuginfo-Updates for ppc64le SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools12-beta-pool-ppc64le-sp3", + "parent_channel_label": "sles12-sp3-pool-ppc64le", + "product_id": 1745, + "repository_id": 3069, + "parent_product_id": 1422, + "root_product_id": 1422, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/12-BETA/ppc64le/product/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools12-BETA-Pool for ppc64le SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools12-beta-debuginfo-pool-ppc64le-sp3", + "parent_channel_label": "sles12-sp3-pool-ppc64le", + "product_id": 1745, + "repository_id": 3070, + "parent_product_id": 1422, + "root_product_id": 1422, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/12-BETA/ppc64le/product_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools12-BETA-Debuginfo-Pool for ppc64le SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sles12-sp3-ltss-updates-ppc64le", + "parent_channel_label": "sles12-sp3-pool-ppc64le", + "product_id": 1930, + "repository_id": 3915, + "parent_product_id": 1422, + "root_product_id": 1422, + "update_tag": "SLE-SERVER", + "url": "https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-SP3-LTSS/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLES12-SP3-LTSS-Updates for ppc64le", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles12-sp3-ltss-debuginfo-updates-ppc64le", + "parent_channel_label": "sles12-sp3-pool-ppc64le", + "product_id": 1930, + "repository_id": 3916, + "parent_product_id": 1422, + "root_product_id": 1422, + "update_tag": "SLE-SERVER", + "url": "https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-SP3-LTSS/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLES12-SP3-LTSS-Debuginfo-Updates for ppc64le", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-manager-tools12-updates-s390x-sp3", + "parent_channel_label": "sles12-sp3-pool-s390x", + "product_id": 1423, + "repository_id": 1728, + "parent_product_id": null, + "root_product_id": 1423, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/12/s390x/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Manager-Tools12-Updates for s390x SP3", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools12-debuginfo-updates-s390x-sp3", + "parent_channel_label": "sles12-sp3-pool-s390x", + "product_id": 1423, + "repository_id": 1729, + "parent_product_id": null, + "root_product_id": 1423, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/12/s390x/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Manager-Tools12-Debuginfo-Updates for s390x SP3", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools12-pool-s390x-sp3", + "parent_channel_label": "sles12-sp3-pool-s390x", + "product_id": 1423, + "repository_id": 1730, + "parent_product_id": null, + "root_product_id": 1423, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/12/s390x/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Manager-Tools12-Pool for s390x SP3", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools12-debuginfo-pool-s390x-sp3", + "parent_channel_label": "sles12-sp3-pool-s390x", + "product_id": 1423, + "repository_id": 1731, + "parent_product_id": null, + "root_product_id": 1423, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/12/s390x/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Manager-Tools12-Debuginfo-Pool for s390x SP3", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sles12-sp3-updates-s390x", + "parent_channel_label": "sles12-sp3-pool-s390x", + "product_id": 1423, + "repository_id": 2201, + "parent_product_id": null, + "root_product_id": 1423, + "update_tag": "SLE-SERVER", + "url": "https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-SP3/s390x/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLES12-SP3-Updates for s390x", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles12-sp3-debuginfo-updates-s390x", + "parent_channel_label": "sles12-sp3-pool-s390x", + "product_id": 1423, + "repository_id": 2202, + "parent_product_id": null, + "root_product_id": 1423, + "update_tag": "SLE-SERVER", + "url": "https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-SP3/s390x/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLES12-SP3-Debuginfo-Updates for s390x", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles12-sp3-installer-updates-s390x", + "parent_channel_label": "sles12-sp3-pool-s390x", + "product_id": 1423, + "repository_id": 2203, + "parent_product_id": null, + "root_product_id": 1423, + "update_tag": "SLE-SERVER-INSTALLER", + "url": "https://updates.suse.com/SUSE/Updates/SLE-SERVER-INSTALLER/12-SP3/s390x/update/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLES12-SP3-Installer-Updates for s390x", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles12-sp3-pool-s390x", + "parent_channel_label": null, + "product_id": 1423, + "repository_id": 2204, + "parent_product_id": null, + "root_product_id": 1423, + "update_tag": "SLE-SERVER", + "url": "https://updates.suse.com/SUSE/Products/SLE-SERVER/12-SP3/s390x/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLES12-SP3-Pool for s390x", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles12-sp3-debuginfo-pool-s390x", + "parent_channel_label": "sles12-sp3-pool-s390x", + "product_id": 1423, + "repository_id": 2205, + "parent_product_id": null, + "root_product_id": 1423, + "update_tag": "SLE-SERVER", + "url": "https://updates.suse.com/SUSE/Products/SLE-SERVER/12-SP3/s390x/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLES12-SP3-Debuginfo-Pool for s390x", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-legacy12-updates-s390x-sp3", + "parent_channel_label": "sles12-sp3-pool-s390x", + "product_id": 1149, + "repository_id": 1672, + "parent_product_id": 1423, + "root_product_id": 1423, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/12/s390x/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy12-Updates for s390x SP3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-legacy12-debuginfo-updates-s390x-sp3", + "parent_channel_label": "sles12-sp3-pool-s390x", + "product_id": 1149, + "repository_id": 1673, + "parent_product_id": 1423, + "root_product_id": 1423, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/12/s390x/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy12-Debuginfo-Updates for s390x SP3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-legacy12-pool-s390x-sp3", + "parent_channel_label": "sles12-sp3-pool-s390x", + "product_id": 1149, + "repository_id": 1674, + "parent_product_id": 1423, + "root_product_id": 1423, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/12/s390x/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy12-Pool for s390x SP3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-legacy12-debuginfo-pool-s390x-sp3", + "parent_channel_label": "sles12-sp3-pool-s390x", + "product_id": 1149, + "repository_id": 1675, + "parent_product_id": 1423, + "root_product_id": 1423, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/12/s390x/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy12-Debuginfo-Pool for s390x SP3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting12-updates-s390x-sp3", + "parent_channel_label": "sles12-sp3-pool-s390x", + "product_id": 1152, + "repository_id": 1684, + "parent_product_id": 1423, + "root_product_id": 1423, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/12/s390x/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Web-Scripting12-Updates for s390x SP3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting12-debuginfo-updates-s390x-sp3", + "parent_channel_label": "sles12-sp3-pool-s390x", + "product_id": 1152, + "repository_id": 1685, + "parent_product_id": 1423, + "root_product_id": 1423, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/12/s390x/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Web-Scripting12-Debuginfo-Updates for s390x SP3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting12-pool-s390x-sp3", + "parent_channel_label": "sles12-sp3-pool-s390x", + "product_id": 1152, + "repository_id": 1686, + "parent_product_id": 1423, + "root_product_id": 1423, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/12/s390x/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Web-Scripting12-Pool for s390x SP3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting12-debuginfo-pool-s390x-sp3", + "parent_channel_label": "sles12-sp3-pool-s390x", + "product_id": 1152, + "repository_id": 1687, + "parent_product_id": 1423, + "root_product_id": 1423, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/12/s390x/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Web-Scripting12-Debuginfo-Pool for s390x SP3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud12-updates-s390x-sp3", + "parent_channel_label": "sles12-sp3-pool-s390x", + "product_id": 1219, + "repository_id": 1696, + "parent_product_id": 1423, + "root_product_id": 1423, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/12/s390x/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud12-Updates for s390x SP3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud12-debuginfo-updates-s390x-sp3", + "parent_channel_label": "sles12-sp3-pool-s390x", + "product_id": 1219, + "repository_id": 1697, + "parent_product_id": 1423, + "root_product_id": 1423, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/12/s390x/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud12-Debuginfo-Updates for s390x SP3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud12-pool-s390x-sp3", + "parent_channel_label": "sles12-sp3-pool-s390x", + "product_id": 1219, + "repository_id": 1698, + "parent_product_id": 1423, + "root_product_id": 1423, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/12/s390x/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud12-Pool for s390x SP3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud12-debuginfo-pool-s390x-sp3", + "parent_channel_label": "sles12-sp3-pool-s390x", + "product_id": 1219, + "repository_id": 1699, + "parent_product_id": 1423, + "root_product_id": 1423, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/12/s390x/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud12-Debuginfo-Pool for s390x SP3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-adv-systems-management12-updates-s390x-sp3", + "parent_channel_label": "sles12-sp3-pool-s390x", + "product_id": 1295, + "repository_id": 1766, + "parent_product_id": 1423, + "root_product_id": 1423, + "update_tag": "SLE-Module-Adv-Systems-Management", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Adv-Systems-Management/12/s390x/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Adv-Systems-Management12-Updates for s390x SP3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-adv-systems-management12-debuginfo-updates-s390x-sp3", + "parent_channel_label": "sles12-sp3-pool-s390x", + "product_id": 1295, + "repository_id": 1767, + "parent_product_id": 1423, + "root_product_id": 1423, + "update_tag": "SLE-Module-Adv-Systems-Management", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Adv-Systems-Management/12/s390x/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Adv-Systems-Management12-Debuginfo-Updates for s390x SP3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-adv-systems-management12-pool-s390x-sp3", + "parent_channel_label": "sles12-sp3-pool-s390x", + "product_id": 1295, + "repository_id": 1768, + "parent_product_id": 1423, + "root_product_id": 1423, + "update_tag": "SLE-Module-Adv-Systems-Management", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Adv-Systems-Management/12/s390x/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Adv-Systems-Management12-Pool for s390x SP3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-adv-systems-management12-debuginfo-pool-s390x-sp3", + "parent_channel_label": "sles12-sp3-pool-s390x", + "product_id": 1295, + "repository_id": 1769, + "parent_product_id": 1423, + "root_product_id": 1423, + "update_tag": "SLE-Module-Adv-Systems-Management", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Adv-Systems-Management/12/s390x/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Adv-Systems-Management12-Debuginfo-Pool for s390x SP3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-toolchain12-updates-s390x-sp3", + "parent_channel_label": "sles12-sp3-pool-s390x", + "product_id": 1340, + "repository_id": 1899, + "parent_product_id": 1423, + "root_product_id": 1423, + "update_tag": "SLE-Module-Toolchain", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Toolchain/12/s390x/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Toolchain12-Updates for s390x SP3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-toolchain12-debuginfo-updates-s390x-sp3", + "parent_channel_label": "sles12-sp3-pool-s390x", + "product_id": 1340, + "repository_id": 1900, + "parent_product_id": 1423, + "root_product_id": 1423, + "update_tag": "SLE-Module-Toolchain", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Toolchain/12/s390x/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Toolchain12-Debuginfo-Updates for s390x SP3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-toolchain12-pool-s390x-sp3", + "parent_channel_label": "sles12-sp3-pool-s390x", + "product_id": 1340, + "repository_id": 1901, + "parent_product_id": 1423, + "root_product_id": 1423, + "update_tag": "SLE-Module-Toolchain", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Toolchain/12/s390x/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Toolchain12-Pool for s390x SP3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-toolchain12-debuginfo-pool-s390x-sp3", + "parent_channel_label": "sles12-sp3-pool-s390x", + "product_id": 1340, + "repository_id": 1902, + "parent_product_id": 1423, + "root_product_id": 1423, + "update_tag": "SLE-Module-Toolchain", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Toolchain/12/s390x/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Toolchain12-Debuginfo-Pool for s390x SP3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-manager-server-3.0-updates-s390x-sp3", + "parent_channel_label": "sles12-sp3-pool-s390x", + "product_id": 1348, + "repository_id": 1945, + "parent_product_id": 1423, + "root_product_id": 1423, + "update_tag": "SUSE-Manager-Server-3.0", + "url": "https://updates.suse.com/SUSE/Updates/SUSE-Manager-Server/3.0/s390x/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-Manager-Server-3.0-Updates for s390x SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-manager-server-3.0-debuginfo-updates-s390x-sp3", + "parent_channel_label": "sles12-sp3-pool-s390x", + "product_id": 1348, + "repository_id": 1946, + "parent_product_id": 1423, + "root_product_id": 1423, + "update_tag": "SUSE-Manager-Server-3.0", + "url": "https://updates.suse.com/SUSE/Updates/SUSE-Manager-Server/3.0/s390x/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SUSE-Manager-Server-3.0-Debuginfo-Updates for s390x SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-manager-server-3.0-pool-s390x-sp3", + "parent_channel_label": "sles12-sp3-pool-s390x", + "product_id": 1348, + "repository_id": 1947, + "parent_product_id": 1423, + "root_product_id": 1423, + "update_tag": "SUSE-Manager-Server-3.0", + "url": "https://updates.suse.com/SUSE/Products/SUSE-Manager-Server/3.0/s390x/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-Manager-Server-3.0-Pool for s390x SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-manager-server-3.0-debuginfo-pool-s390x-sp3", + "parent_channel_label": "sles12-sp3-pool-s390x", + "product_id": 1348, + "repository_id": 1948, + "parent_product_id": 1423, + "root_product_id": 1423, + "update_tag": "SUSE-Manager-Server-3.0", + "url": "https://updates.suse.com/SUSE/Products/SUSE-Manager-Server/3.0/s390x/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SUSE-Manager-Server-3.0-Debuginfo-Pool for s390x SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-containers12-updates-s390x-sp3", + "parent_channel_label": "sles12-sp3-pool-s390x", + "product_id": 1354, + "repository_id": 1977, + "parent_product_id": 1423, + "root_product_id": 1423, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/12/s390x/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers12-Updates for s390x SP3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-containers12-debuginfo-updates-s390x-sp3", + "parent_channel_label": "sles12-sp3-pool-s390x", + "product_id": 1354, + "repository_id": 1978, + "parent_product_id": 1423, + "root_product_id": 1423, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/12/s390x/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers12-Debuginfo-Updates for s390x SP3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-containers12-pool-s390x-sp3", + "parent_channel_label": "sles12-sp3-pool-s390x", + "product_id": 1354, + "repository_id": 1979, + "parent_product_id": 1423, + "root_product_id": 1423, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Containers/12/s390x/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers12-Pool for s390x SP3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-containers12-debuginfo-pool-s390x-sp3", + "parent_channel_label": "sles12-sp3-pool-s390x", + "product_id": 1354, + "repository_id": 1980, + "parent_product_id": 1423, + "root_product_id": 1423, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Containers/12/s390x/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers12-Debuginfo-Pool for s390x SP3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-sdk12-sp3-updates-s390x", + "parent_channel_label": "sles12-sp3-pool-s390x", + "product_id": 1429, + "repository_id": 2240, + "parent_product_id": 1423, + "root_product_id": 1423, + "update_tag": "SLE-SDK", + "url": "https://updates.suse.com/SUSE/Updates/SLE-SDK/12-SP3/s390x/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-SDK12-SP3-Updates for s390x", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-sdk12-sp3-debuginfo-updates-s390x", + "parent_channel_label": "sles12-sp3-pool-s390x", + "product_id": 1429, + "repository_id": 2241, + "parent_product_id": 1423, + "root_product_id": 1423, + "update_tag": "SLE-SDK", + "url": "https://updates.suse.com/SUSE/Updates/SLE-SDK/12-SP3/s390x/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-SDK12-SP3-Debuginfo-Updates for s390x", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-sdk12-sp3-pool-s390x", + "parent_channel_label": "sles12-sp3-pool-s390x", + "product_id": 1429, + "repository_id": 2242, + "parent_product_id": 1423, + "root_product_id": 1423, + "update_tag": "SLE-SDK", + "url": "https://updates.suse.com/SUSE/Products/SLE-SDK/12-SP3/s390x/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-SDK12-SP3-Pool for s390x", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-sdk12-sp3-debuginfo-pool-s390x", + "parent_channel_label": "sles12-sp3-pool-s390x", + "product_id": 1429, + "repository_id": 2243, + "parent_product_id": 1423, + "root_product_id": 1423, + "update_tag": "SLE-SDK", + "url": "https://updates.suse.com/SUSE/Products/SLE-SDK/12-SP3/s390x/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-SDK12-SP3-Debuginfo-Pool for s390x", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-ha12-sp3-updates-s390x", + "parent_channel_label": "sles12-sp3-pool-s390x", + "product_id": 1434, + "repository_id": 2260, + "parent_product_id": 1423, + "root_product_id": 1423, + "update_tag": "SLE-HA", + "url": "https://updates.suse.com/SUSE/Updates/SLE-HA/12-SP3/s390x/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-HA12-SP3-Updates for s390x", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-ha12-sp3-debuginfo-updates-s390x", + "parent_channel_label": "sles12-sp3-pool-s390x", + "product_id": 1434, + "repository_id": 2261, + "parent_product_id": 1423, + "root_product_id": 1423, + "update_tag": "SLE-HA", + "url": "https://updates.suse.com/SUSE/Updates/SLE-HA/12-SP3/s390x/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-HA12-SP3-Debuginfo-Updates for s390x", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-ha12-sp3-pool-s390x", + "parent_channel_label": "sles12-sp3-pool-s390x", + "product_id": 1434, + "repository_id": 2262, + "parent_product_id": 1423, + "root_product_id": 1423, + "update_tag": "SLE-HA", + "url": "https://updates.suse.com/SUSE/Products/SLE-HA/12-SP3/s390x/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-HA12-SP3-Pool for s390x", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-ha12-sp3-debuginfo-pool-s390x", + "parent_channel_label": "sles12-sp3-pool-s390x", + "product_id": 1434, + "repository_id": 2263, + "parent_product_id": 1423, + "root_product_id": 1423, + "update_tag": "SLE-HA", + "url": "https://updates.suse.com/SUSE/Products/SLE-HA/12-SP3/s390x/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-HA12-SP3-Debuginfo-Pool for s390x", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-ha-geo12-sp3-updates-s390x", + "parent_channel_label": "sles12-sp3-pool-s390x", + "product_id": 1436, + "repository_id": 2270, + "parent_product_id": 1434, + "root_product_id": 1423, + "update_tag": "SLE-HA-GEO", + "url": "https://updates.suse.com/SUSE/Updates/SLE-HA-GEO/12-SP3/s390x/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-HA-GEO12-SP3-Updates for s390x", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-ha-geo12-sp3-debuginfo-updates-s390x", + "parent_channel_label": "sles12-sp3-pool-s390x", + "product_id": 1436, + "repository_id": 2271, + "parent_product_id": 1434, + "root_product_id": 1423, + "update_tag": "SLE-HA-GEO", + "url": "https://updates.suse.com/SUSE/Updates/SLE-HA-GEO/12-SP3/s390x/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-HA-GEO12-SP3-Debuginfo-Updates for s390x", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-ha-geo12-sp3-pool-s390x", + "parent_channel_label": "sles12-sp3-pool-s390x", + "product_id": 1436, + "repository_id": 2272, + "parent_product_id": 1434, + "root_product_id": 1423, + "update_tag": "SLE-HA-GEO", + "url": "https://updates.suse.com/SUSE/Products/SLE-HA-GEO/12-SP3/s390x/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-HA-GEO12-SP3-Pool for s390x", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-ha-geo12-sp3-debuginfo-pool-s390x", + "parent_channel_label": "sles12-sp3-pool-s390x", + "product_id": 1436, + "repository_id": 2273, + "parent_product_id": 1434, + "root_product_id": 1423, + "update_tag": "SLE-HA-GEO", + "url": "https://updates.suse.com/SUSE/Products/SLE-HA-GEO/12-SP3/s390x/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-HA-GEO12-SP3-Debuginfo-Pool for s390x", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-manager-server-3.1-updates-s390x-sp3", + "parent_channel_label": "sles12-sp3-pool-s390x", + "product_id": 1519, + "repository_id": 2405, + "parent_product_id": 1423, + "root_product_id": 1423, + "update_tag": "SUSE-Manager-Server-3.1", + "url": "https://updates.suse.com/SUSE/Updates/SUSE-Manager-Server/3.1/s390x/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-Manager-Server-3.1-Updates for s390x SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-manager-server-3.1-debuginfo-updates-s390x-sp3", + "parent_channel_label": "sles12-sp3-pool-s390x", + "product_id": 1519, + "repository_id": 2406, + "parent_product_id": 1423, + "root_product_id": 1423, + "update_tag": "SUSE-Manager-Server-3.1", + "url": "https://updates.suse.com/SUSE/Updates/SUSE-Manager-Server/3.1/s390x/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SUSE-Manager-Server-3.1-Debuginfo-Updates for s390x SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-manager-server-3.1-pool-s390x-sp3", + "parent_channel_label": "sles12-sp3-pool-s390x", + "product_id": 1519, + "repository_id": 2407, + "parent_product_id": 1423, + "root_product_id": 1423, + "update_tag": "SUSE-Manager-Server-3.1", + "url": "https://updates.suse.com/SUSE/Products/SUSE-Manager-Server/3.1/s390x/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-Manager-Server-3.1-Pool for s390x SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-manager-server-3.1-debuginfo-pool-s390x-sp3", + "parent_channel_label": "sles12-sp3-pool-s390x", + "product_id": 1519, + "repository_id": 2408, + "parent_product_id": 1423, + "root_product_id": 1423, + "update_tag": "SUSE-Manager-Server-3.1", + "url": "https://updates.suse.com/SUSE/Products/SUSE-Manager-Server/3.1/s390x/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SUSE-Manager-Server-3.1-Debuginfo-Pool for s390x SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-packagehub-12-sp3-s390x", + "parent_channel_label": "sles12-sp3-pool-s390x", + "product_id": 1530, + "repository_id": 2448, + "parent_product_id": 1423, + "root_product_id": 1423, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-12-SP3_s390x/standard/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-12-SP3 for s390x", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-packagehub-12-sp3-debuginfo-s390x", + "parent_channel_label": "sles12-sp3-pool-s390x", + "product_id": 1530, + "repository_id": 2449, + "parent_product_id": 1423, + "root_product_id": 1423, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-12-SP3_s390x/standard_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-12-SP3-Debuginfo for s390x", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-packagehub-12-sp3-pool-s390x", + "parent_channel_label": "sles12-sp3-pool-s390x", + "product_id": 1530, + "repository_id": 2450, + "parent_product_id": 1423, + "root_product_id": 1423, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-12-SP3_s390x/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-12-SP3-Pool for s390x", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-manager-server-3.2-updates-s390x", + "parent_channel_label": "sles12-sp3-pool-s390x", + "product_id": 1723, + "repository_id": 2982, + "parent_product_id": 1423, + "root_product_id": 1423, + "update_tag": "SUSE-Manager-Server-3.2", + "url": "https://updates.suse.com/SUSE/Updates/SUSE-Manager-Server/3.2/s390x/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-Manager-Server-3.2-Updates for s390x SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-manager-server-3.2-debuginfo-updates-s390x", + "parent_channel_label": "sles12-sp3-pool-s390x", + "product_id": 1723, + "repository_id": 2983, + "parent_product_id": 1423, + "root_product_id": 1423, + "update_tag": "SUSE-Manager-Server-3.2", + "url": "https://updates.suse.com/SUSE/Updates/SUSE-Manager-Server/3.2/s390x/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SUSE-Manager-Server-3.2-Debuginfo-Updates for s390x SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-manager-server-3.2-pool-s390x", + "parent_channel_label": "sles12-sp3-pool-s390x", + "product_id": 1723, + "repository_id": 2984, + "parent_product_id": 1423, + "root_product_id": 1423, + "update_tag": "SUSE-Manager-Server-3.2", + "url": "https://updates.suse.com/SUSE/Products/SUSE-Manager-Server/3.2/s390x/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-Manager-Server-3.2-Pool for s390x SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-manager-server-3.2-debuginfo-pool-s390x", + "parent_channel_label": "sles12-sp3-pool-s390x", + "product_id": 1723, + "repository_id": 2985, + "parent_product_id": 1423, + "root_product_id": 1423, + "update_tag": "SUSE-Manager-Server-3.2", + "url": "https://updates.suse.com/SUSE/Products/SUSE-Manager-Server/3.2/s390x/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SUSE-Manager-Server-3.2-Debuginfo-Pool for s390x SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-manager-tools12-beta-updates-s390x-sp3", + "parent_channel_label": "sles12-sp3-pool-s390x", + "product_id": 1746, + "repository_id": 3072, + "parent_product_id": 1423, + "root_product_id": 1423, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/12-BETA/s390x/update/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools12-BETA-Updates for s390x SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools12-beta-debuginfo-updates-s390x-sp3", + "parent_channel_label": "sles12-sp3-pool-s390x", + "product_id": 1746, + "repository_id": 3073, + "parent_product_id": 1423, + "root_product_id": 1423, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/12-BETA/s390x/update_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools12-BETA-Debuginfo-Updates for s390x SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools12-beta-pool-s390x-sp3", + "parent_channel_label": "sles12-sp3-pool-s390x", + "product_id": 1746, + "repository_id": 3074, + "parent_product_id": 1423, + "root_product_id": 1423, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/12-BETA/s390x/product/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools12-BETA-Pool for s390x SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools12-beta-debuginfo-pool-s390x-sp3", + "parent_channel_label": "sles12-sp3-pool-s390x", + "product_id": 1746, + "repository_id": 3075, + "parent_product_id": 1423, + "root_product_id": 1423, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/12-BETA/s390x/product_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools12-BETA-Debuginfo-Pool for s390x SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sles12-sp3-ltss-updates-s390x", + "parent_channel_label": "sles12-sp3-pool-s390x", + "product_id": 1931, + "repository_id": 3917, + "parent_product_id": 1423, + "root_product_id": 1423, + "update_tag": "SLE-SERVER", + "url": "https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-SP3-LTSS/s390x/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLES12-SP3-LTSS-Updates for s390x", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles12-sp3-ltss-debuginfo-updates-s390x", + "parent_channel_label": "sles12-sp3-pool-s390x", + "product_id": 1931, + "repository_id": 3918, + "parent_product_id": 1423, + "root_product_id": 1423, + "update_tag": "SLE-SERVER", + "url": "https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-SP3-LTSS/s390x/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLES12-SP3-LTSS-Debuginfo-Updates for s390x", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-manager-tools12-updates-aarch64-sp3", + "parent_channel_label": "sles12-sp3-pool-aarch64", + "product_id": 1424, + "repository_id": 2179, + "parent_product_id": null, + "root_product_id": 1424, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/12/aarch64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Manager-Tools12-Updates for aarch64 SP3", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools12-debuginfo-updates-aarch64-sp3", + "parent_channel_label": "sles12-sp3-pool-aarch64", + "product_id": 1424, + "repository_id": 2180, + "parent_product_id": null, + "root_product_id": 1424, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/12/aarch64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Manager-Tools12-Debuginfo-Updates for aarch64 SP3", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools12-pool-aarch64-sp3", + "parent_channel_label": "sles12-sp3-pool-aarch64", + "product_id": 1424, + "repository_id": 2181, + "parent_product_id": null, + "root_product_id": 1424, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/12/aarch64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Manager-Tools12-Pool for aarch64 SP3", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools12-debuginfo-pool-aarch64-sp3", + "parent_channel_label": "sles12-sp3-pool-aarch64", + "product_id": 1424, + "repository_id": 2182, + "parent_product_id": null, + "root_product_id": 1424, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/12/aarch64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Manager-Tools12-Debuginfo-Pool for aarch64 SP3", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sles12-sp3-updates-aarch64", + "parent_channel_label": "sles12-sp3-pool-aarch64", + "product_id": 1424, + "repository_id": 2207, + "parent_product_id": null, + "root_product_id": 1424, + "update_tag": "SLE-SERVER", + "url": "https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-SP3/aarch64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLES12-SP3-Updates for aarch64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles12-sp3-debuginfo-updates-aarch64", + "parent_channel_label": "sles12-sp3-pool-aarch64", + "product_id": 1424, + "repository_id": 2208, + "parent_product_id": null, + "root_product_id": 1424, + "update_tag": "SLE-SERVER", + "url": "https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-SP3/aarch64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLES12-SP3-Debuginfo-Updates for aarch64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles12-sp3-installer-updates-aarch64", + "parent_channel_label": "sles12-sp3-pool-aarch64", + "product_id": 1424, + "repository_id": 2209, + "parent_product_id": null, + "root_product_id": 1424, + "update_tag": "SLE-SERVER-INSTALLER", + "url": "https://updates.suse.com/SUSE/Updates/SLE-SERVER-INSTALLER/12-SP3/aarch64/update/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLES12-SP3-Installer-Updates for aarch64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles12-sp3-pool-aarch64", + "parent_channel_label": null, + "product_id": 1424, + "repository_id": 2210, + "parent_product_id": null, + "root_product_id": 1424, + "update_tag": "SLE-SERVER", + "url": "https://updates.suse.com/SUSE/Products/SLE-SERVER/12-SP3/aarch64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLES12-SP3-Pool for aarch64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles12-sp3-debuginfo-pool-aarch64", + "parent_channel_label": "sles12-sp3-pool-aarch64", + "product_id": 1424, + "repository_id": 2211, + "parent_product_id": null, + "root_product_id": 1424, + "update_tag": "SLE-SERVER", + "url": "https://updates.suse.com/SUSE/Products/SLE-SERVER/12-SP3/aarch64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLES12-SP3-Debuginfo-Pool for aarch64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-toolchain12-updates-aarch64-sp3", + "parent_channel_label": "sles12-sp3-pool-aarch64", + "product_id": 1376, + "repository_id": 2086, + "parent_product_id": 1424, + "root_product_id": 1424, + "update_tag": "SLE-Module-Toolchain", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Toolchain/12/aarch64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Toolchain12-Updates for aarch64 SP3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-toolchain12-debuginfo-updates-aarch64-sp3", + "parent_channel_label": "sles12-sp3-pool-aarch64", + "product_id": 1376, + "repository_id": 2087, + "parent_product_id": 1424, + "root_product_id": 1424, + "update_tag": "SLE-Module-Toolchain", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Toolchain/12/aarch64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Toolchain12-Debuginfo-Updates for aarch64 SP3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-toolchain12-pool-aarch64-sp3", + "parent_channel_label": "sles12-sp3-pool-aarch64", + "product_id": 1376, + "repository_id": 2088, + "parent_product_id": 1424, + "root_product_id": 1424, + "update_tag": "SLE-Module-Toolchain", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Toolchain/12/aarch64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Toolchain12-Pool for aarch64 SP3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-toolchain12-debuginfo-pool-aarch64-sp3", + "parent_channel_label": "sles12-sp3-pool-aarch64", + "product_id": 1376, + "repository_id": 2089, + "parent_product_id": 1424, + "root_product_id": 1424, + "update_tag": "SLE-Module-Toolchain", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Toolchain/12/aarch64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Toolchain12-Debuginfo-Pool for aarch64 SP3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-sdk12-sp3-updates-aarch64", + "parent_channel_label": "sles12-sp3-pool-aarch64", + "product_id": 1430, + "repository_id": 2245, + "parent_product_id": 1424, + "root_product_id": 1424, + "update_tag": "SLE-SDK", + "url": "https://updates.suse.com/SUSE/Updates/SLE-SDK/12-SP3/aarch64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-SDK12-SP3-Updates for aarch64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-sdk12-sp3-debuginfo-updates-aarch64", + "parent_channel_label": "sles12-sp3-pool-aarch64", + "product_id": 1430, + "repository_id": 2246, + "parent_product_id": 1424, + "root_product_id": 1424, + "update_tag": "SLE-SDK", + "url": "https://updates.suse.com/SUSE/Updates/SLE-SDK/12-SP3/aarch64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-SDK12-SP3-Debuginfo-Updates for aarch64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-sdk12-sp3-pool-aarch64", + "parent_channel_label": "sles12-sp3-pool-aarch64", + "product_id": 1430, + "repository_id": 2247, + "parent_product_id": 1424, + "root_product_id": 1424, + "update_tag": "SLE-SDK", + "url": "https://updates.suse.com/SUSE/Products/SLE-SDK/12-SP3/aarch64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-SDK12-SP3-Pool for aarch64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-sdk12-sp3-debuginfo-pool-aarch64", + "parent_channel_label": "sles12-sp3-pool-aarch64", + "product_id": 1430, + "repository_id": 2248, + "parent_product_id": 1424, + "root_product_id": 1424, + "update_tag": "SLE-SDK", + "url": "https://updates.suse.com/SUSE/Products/SLE-SDK/12-SP3/aarch64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-SDK12-SP3-Debuginfo-Pool for aarch64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-hpc12-updates-aarch64-sp3", + "parent_channel_label": "sles12-sp3-pool-aarch64", + "product_id": 1522, + "repository_id": 2421, + "parent_product_id": 1424, + "root_product_id": 1424, + "update_tag": "SLE-Module-HPC", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-HPC/12/aarch64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-HPC12-Updates for aarch64 SP3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-hpc12-debuginfo-updates-aarch64-sp3", + "parent_channel_label": "sles12-sp3-pool-aarch64", + "product_id": 1522, + "repository_id": 2422, + "parent_product_id": 1424, + "root_product_id": 1424, + "update_tag": "SLE-Module-HPC", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-HPC/12/aarch64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-HPC12-Debuginfo-Updates for aarch64 SP3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-hpc12-pool-aarch64-sp3", + "parent_channel_label": "sles12-sp3-pool-aarch64", + "product_id": 1522, + "repository_id": 2423, + "parent_product_id": 1424, + "root_product_id": 1424, + "update_tag": "SLE-Module-HPC", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-HPC/12/aarch64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-HPC12-Pool for aarch64 SP3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-hpc12-debuginfo-pool-aarch64-sp3", + "parent_channel_label": "sles12-sp3-pool-aarch64", + "product_id": 1522, + "repository_id": 2424, + "parent_product_id": 1424, + "root_product_id": 1424, + "update_tag": "SLE-Module-HPC", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-HPC/12/aarch64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-HPC12-Debuginfo-Pool for aarch64 SP3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-enterprise-storage-5-updates-aarch64", + "parent_channel_label": "sles12-sp3-pool-aarch64", + "product_id": 1527, + "repository_id": 2437, + "parent_product_id": 1424, + "root_product_id": 1424, + "update_tag": "Storage-5", + "url": "https://updates.suse.com/SUSE/Updates/Storage/5/aarch64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-Enterprise-Storage-5-Updates for aarch64 SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-enterprise-storage-5-debuginfo-updates-aarch64", + "parent_channel_label": "sles12-sp3-pool-aarch64", + "product_id": 1527, + "repository_id": 2438, + "parent_product_id": 1424, + "root_product_id": 1424, + "update_tag": "Storage-5", + "url": "https://updates.suse.com/SUSE/Updates/Storage/5/aarch64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SUSE-Enterprise-Storage-5-Debuginfo-Updates for aarch64 SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-enterprise-storage-5-pool-aarch64", + "parent_channel_label": "sles12-sp3-pool-aarch64", + "product_id": 1527, + "repository_id": 2439, + "parent_product_id": 1424, + "root_product_id": 1424, + "update_tag": "Storage-5", + "url": "https://updates.suse.com/SUSE/Products/Storage/5/aarch64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-Enterprise-Storage-5-Pool for aarch64 SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-enterprise-storage-5-debuginfo-pool-aarch64", + "parent_channel_label": "sles12-sp3-pool-aarch64", + "product_id": 1527, + "repository_id": 2440, + "parent_product_id": 1424, + "root_product_id": 1424, + "update_tag": "Storage-5", + "url": "https://updates.suse.com/SUSE/Products/Storage/5/aarch64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SUSE-Enterprise-Storage-5-Debuginfo-Pool for aarch64 SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud12-updates-aarch64-sp3", + "parent_channel_label": "sles12-sp3-pool-aarch64", + "product_id": 1528, + "repository_id": 2157, + "parent_product_id": 1424, + "root_product_id": 1424, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/12/aarch64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud12-Updates for aarch64 SP3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud12-debuginfo-updates-aarch64-sp3", + "parent_channel_label": "sles12-sp3-pool-aarch64", + "product_id": 1528, + "repository_id": 2158, + "parent_product_id": 1424, + "root_product_id": 1424, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/12/aarch64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud12-Debuginfo-Updates for aarch64 SP3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud12-pool-aarch64-sp3", + "parent_channel_label": "sles12-sp3-pool-aarch64", + "product_id": 1528, + "repository_id": 2159, + "parent_product_id": 1424, + "root_product_id": 1424, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/12/aarch64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud12-Pool for aarch64 SP3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud12-debuginfo-pool-aarch64-sp3", + "parent_channel_label": "sles12-sp3-pool-aarch64", + "product_id": 1528, + "repository_id": 2160, + "parent_product_id": 1424, + "root_product_id": 1424, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/12/aarch64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud12-Debuginfo-Pool for aarch64 SP3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-packagehub-12-sp3-aarch64", + "parent_channel_label": "sles12-sp3-pool-aarch64", + "product_id": 1532, + "repository_id": 2454, + "parent_product_id": 1424, + "root_product_id": 1424, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-12-SP3_aarch64/standard/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-12-SP3 for aarch64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-packagehub-12-sp3-debuginfo-aarch64", + "parent_channel_label": "sles12-sp3-pool-aarch64", + "product_id": 1532, + "repository_id": 2455, + "parent_product_id": 1424, + "root_product_id": 1424, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-12-SP3_aarch64/standard_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-12-SP3-Debuginfo for aarch64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-packagehub-12-sp3-pool-aarch64", + "parent_channel_label": "sles12-sp3-pool-aarch64", + "product_id": 1532, + "repository_id": 2456, + "parent_product_id": 1424, + "root_product_id": 1424, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-12-SP3_aarch64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-12-SP3-Pool for aarch64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting12-updates-aarch64", + "parent_channel_label": "sles12-sp3-pool-aarch64", + "product_id": 1539, + "repository_id": 2476, + "parent_product_id": 1424, + "root_product_id": 1424, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/12/aarch64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Web-Scripting12-Updates for aarch64 SP3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting12-debuginfo-updates-aarch64", + "parent_channel_label": "sles12-sp3-pool-aarch64", + "product_id": 1539, + "repository_id": 2477, + "parent_product_id": 1424, + "root_product_id": 1424, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/12/aarch64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Web-Scripting12-Debuginfo-Updates for aarch64 SP3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting12-pool-aarch64", + "parent_channel_label": "sles12-sp3-pool-aarch64", + "product_id": 1539, + "repository_id": 2478, + "parent_product_id": 1424, + "root_product_id": 1424, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/12/aarch64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Web-Scripting12-Pool for aarch64 SP3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting12-debuginfo-pool-aarch64", + "parent_channel_label": "sles12-sp3-pool-aarch64", + "product_id": 1539, + "repository_id": 2479, + "parent_product_id": 1424, + "root_product_id": 1424, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/12/aarch64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Web-Scripting12-Debuginfo-Pool for aarch64 SP3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-manager-tools12-beta-updates-aarch64-sp3", + "parent_channel_label": "sles12-sp3-pool-aarch64", + "product_id": 1744, + "repository_id": 3062, + "parent_product_id": 1424, + "root_product_id": 1424, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/12-BETA/aarch64/update/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools12-BETA-Updates for aarch64 SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools12-beta-debuginfo-updates-aarch64-sp3", + "parent_channel_label": "sles12-sp3-pool-aarch64", + "product_id": 1744, + "repository_id": 3063, + "parent_product_id": 1424, + "root_product_id": 1424, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/12-BETA/aarch64/update_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools12-BETA-Debuginfo-Updates for aarch64 SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools12-beta-pool-aarch64-sp3", + "parent_channel_label": "sles12-sp3-pool-aarch64", + "product_id": 1744, + "repository_id": 3064, + "parent_product_id": 1424, + "root_product_id": 1424, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/12-BETA/aarch64/product/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools12-BETA-Pool for aarch64 SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools12-beta-debuginfo-pool-aarch64-sp3", + "parent_channel_label": "sles12-sp3-pool-aarch64", + "product_id": 1744, + "repository_id": 3065, + "parent_product_id": 1424, + "root_product_id": 1424, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/12-BETA/aarch64/product_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools12-BETA-Debuginfo-Pool for aarch64 SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sles12-sp3-ltss-updates-aarch64", + "parent_channel_label": "sles12-sp3-pool-aarch64", + "product_id": 2002, + "repository_id": 4290, + "parent_product_id": 1424, + "root_product_id": 1424, + "update_tag": "SLE-SERVER", + "url": "https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-SP3-LTSS/aarch64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLES12-SP3-LTSS-Updates for aarch64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles12-sp3-ltss-debuginfo-updates-aarch64", + "parent_channel_label": "sles12-sp3-pool-aarch64", + "product_id": 2002, + "repository_id": 4291, + "parent_product_id": 1424, + "root_product_id": 1424, + "update_tag": "SLE-SERVER", + "url": "https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-SP3-LTSS/aarch64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLES12-SP3-LTSS-Debuginfo-Updates for aarch64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-manager-tools12-updates-x86_64-sled-sp3", + "parent_channel_label": "sled12-sp3-pool-x86_64", + "product_id": 1425, + "repository_id": 1732, + "parent_product_id": null, + "root_product_id": 1425, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/12/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Manager-Tools12-Updates for x86_64 SLED SP3", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools12-debuginfo-updates-x86_64-sled-sp3", + "parent_channel_label": "sled12-sp3-pool-x86_64", + "product_id": 1425, + "repository_id": 1733, + "parent_product_id": null, + "root_product_id": 1425, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/12/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Manager-Tools12-Debuginfo-Updates for x86_64 SLED SP3", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools12-pool-x86_64-sled-sp3", + "parent_channel_label": "sled12-sp3-pool-x86_64", + "product_id": 1425, + "repository_id": 1734, + "parent_product_id": null, + "root_product_id": 1425, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/12/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Manager-Tools12-Pool for x86_64 SLED SP3", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools12-debuginfo-pool-x86_64-sled-sp3", + "parent_channel_label": "sled12-sp3-pool-x86_64", + "product_id": 1425, + "repository_id": 1735, + "parent_product_id": null, + "root_product_id": 1425, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/12/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Manager-Tools12-Debuginfo-Pool for x86_64 SLED SP3", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sled12-sp3-updates-x86_64", + "parent_channel_label": "sled12-sp3-pool-x86_64", + "product_id": 1425, + "repository_id": 2213, + "parent_product_id": null, + "root_product_id": 1425, + "update_tag": "SLE-DESKTOP", + "url": "https://updates.suse.com/SUSE/Updates/SLE-DESKTOP/12-SP3/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLED12-SP3-Updates for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sled12-sp3-debuginfo-updates-x86_64", + "parent_channel_label": "sled12-sp3-pool-x86_64", + "product_id": 1425, + "repository_id": 2214, + "parent_product_id": null, + "root_product_id": 1425, + "update_tag": "SLE-DESKTOP", + "url": "https://updates.suse.com/SUSE/Updates/SLE-DESKTOP/12-SP3/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLED12-SP3-Debuginfo-Updates for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sled12-sp3-installer-updates-x86_64", + "parent_channel_label": "sled12-sp3-pool-x86_64", + "product_id": 1425, + "repository_id": 2215, + "parent_product_id": null, + "root_product_id": 1425, + "update_tag": "SLE-DESKTOP-INSTALLER", + "url": "https://updates.suse.com/SUSE/Updates/SLE-DESKTOP-INSTALLER/12-SP3/x86_64/update/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLED12-SP3-Installer-Updates for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sled12-sp3-pool-x86_64", + "parent_channel_label": null, + "product_id": 1425, + "repository_id": 2216, + "parent_product_id": null, + "root_product_id": 1425, + "update_tag": "SLE-DESKTOP", + "url": "https://updates.suse.com/SUSE/Products/SLE-DESKTOP/12-SP3/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLED12-SP3-Pool for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-12-sp3-ga-desktop-nvidia-driver", + "parent_channel_label": "sled12-sp3-pool-x86_64", + "product_id": 1425, + "repository_id": 2217, + "parent_product_id": null, + "root_product_id": 1425, + "update_tag": null, + "url": "http://download.nvidia.com/suse/sle12sp3/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-12-SP3-GA-Desktop-nVidia-Driver for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sled12-sp3-debuginfo-pool-x86_64", + "parent_channel_label": "sled12-sp3-pool-x86_64", + "product_id": 1425, + "repository_id": 2218, + "parent_product_id": null, + "root_product_id": 1425, + "update_tag": "SLE-DESKTOP", + "url": "https://updates.suse.com/SUSE/Products/SLE-DESKTOP/12-SP3/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLED12-SP3-Debuginfo-Pool for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-sdk12-sp3-updates-x86_64-sled-sp3", + "parent_channel_label": "sled12-sp3-pool-x86_64", + "product_id": 1427, + "repository_id": 2230, + "parent_product_id": 1425, + "root_product_id": 1425, + "update_tag": "SLE-SDK", + "url": "https://updates.suse.com/SUSE/Updates/SLE-SDK/12-SP3/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-SDK12-SP3-Updates for x86_64 SLED", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-sdk12-sp3-debuginfo-updates-x86_64-sled-sp3", + "parent_channel_label": "sled12-sp3-pool-x86_64", + "product_id": 1427, + "repository_id": 2231, + "parent_product_id": 1425, + "root_product_id": 1425, + "update_tag": "SLE-SDK", + "url": "https://updates.suse.com/SUSE/Updates/SLE-SDK/12-SP3/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-SDK12-SP3-Debuginfo-Updates for x86_64 SLED", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-sdk12-sp3-pool-x86_64-sled-sp3", + "parent_channel_label": "sled12-sp3-pool-x86_64", + "product_id": 1427, + "repository_id": 2232, + "parent_product_id": 1425, + "root_product_id": 1425, + "update_tag": "SLE-SDK", + "url": "https://updates.suse.com/SUSE/Products/SLE-SDK/12-SP3/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-SDK12-SP3-Pool for x86_64 SLED", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-sdk12-sp3-debuginfo-pool-x86_64-sled-sp3", + "parent_channel_label": "sled12-sp3-pool-x86_64", + "product_id": 1427, + "repository_id": 2233, + "parent_product_id": 1425, + "root_product_id": 1425, + "update_tag": "SLE-SDK", + "url": "https://updates.suse.com/SUSE/Products/SLE-SDK/12-SP3/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-SDK12-SP3-Debuginfo-Pool for x86_64 SLED", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-packagehub-12-sp3-x86_64-sled-sp3", + "parent_channel_label": "sled12-sp3-pool-x86_64", + "product_id": 1529, + "repository_id": 2445, + "parent_product_id": 1425, + "root_product_id": 1425, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-12-SP3_x86_64/standard/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-12-SP3 for x86_64 SLED", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-packagehub-12-sp3-debuginfo-x86_64-sled-sp3", + "parent_channel_label": "sled12-sp3-pool-x86_64", + "product_id": 1529, + "repository_id": 2446, + "parent_product_id": 1425, + "root_product_id": 1425, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-12-SP3_x86_64/standard_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-12-SP3-Debuginfo for x86_64 SLED", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-packagehub-12-sp3-pool-x86_64-sled-sp3", + "parent_channel_label": "sled12-sp3-pool-x86_64", + "product_id": 1529, + "repository_id": 2447, + "parent_product_id": 1425, + "root_product_id": 1425, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-12-SP3_x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-12-SP3-Pool for x86_64 SLED", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-cap-tools-12-updates-x86_64-sled-sp3", + "parent_channel_label": "sled12-sp3-pool-x86_64", + "product_id": 1678, + "repository_id": 2912, + "parent_product_id": 1425, + "root_product_id": 1425, + "update_tag": "SLE-Module-CAP-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-CAP-Tools/12/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-CAP-Tools-12-Updates for x86_64 SLED SP3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-cap-tools-12-debuginfo-updates-x86_64-sled-sp3", + "parent_channel_label": "sled12-sp3-pool-x86_64", + "product_id": 1678, + "repository_id": 2913, + "parent_product_id": 1425, + "root_product_id": 1425, + "update_tag": "SLE-Module-CAP-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-CAP-Tools/12/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-CAP-Tools-12-Debuginfo-Updates for x86_64 SLED SP3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-cap-tools-12-pool-x86_64-sled-sp3", + "parent_channel_label": "sled12-sp3-pool-x86_64", + "product_id": 1678, + "repository_id": 2914, + "parent_product_id": 1425, + "root_product_id": 1425, + "update_tag": "SLE-Module-CAP-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-CAP-Tools/12/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-CAP-Tools-12-Pool for x86_64 SLED SP3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-cap-tools-12-debuginfo-pool-x86_64-sled-sp3", + "parent_channel_label": "sled12-sp3-pool-x86_64", + "product_id": 1678, + "repository_id": 2915, + "parent_product_id": 1425, + "root_product_id": 1425, + "update_tag": "SLE-Module-CAP-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-CAP-Tools/12/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-CAP-Tools-12-Debuginfo-Pool for x86_64 SLED SP3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-manager-tools12-beta-updates-x86_64-sled-sp3", + "parent_channel_label": "sled12-sp3-pool-x86_64", + "product_id": 1747, + "repository_id": 3077, + "parent_product_id": 1425, + "root_product_id": 1425, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/12-BETA/x86_64/update/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools12-BETA-Updates for x86_64 SLED SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools12-beta-debuginfo-updates-x86_64-sled-sp3", + "parent_channel_label": "sled12-sp3-pool-x86_64", + "product_id": 1747, + "repository_id": 3078, + "parent_product_id": 1425, + "root_product_id": 1425, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/12-BETA/x86_64/update_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools12-BETA-Debuginfo-Updates for x86_64 SLED SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools12-beta-pool-x86_64-sled-sp3", + "parent_channel_label": "sled12-sp3-pool-x86_64", + "product_id": 1747, + "repository_id": 3079, + "parent_product_id": 1425, + "root_product_id": 1425, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/12-BETA/x86_64/product/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools12-BETA-Pool for x86_64 SLED SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools12-beta-debuginfo-pool-x86_64-sled-sp3", + "parent_channel_label": "sled12-sp3-pool-x86_64", + "product_id": 1747, + "repository_id": 3080, + "parent_product_id": 1425, + "root_product_id": 1425, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/12-BETA/x86_64/product_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools12-BETA-Debuginfo-Pool for x86_64 SLED SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools12-updates-x86_64-sap-sp3", + "parent_channel_label": "sle12-sp3-sap-pool-x86_64", + "product_id": 1426, + "repository_id": 1732, + "parent_product_id": null, + "root_product_id": 1426, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/12/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Manager-Tools12-Updates for x86_64 SAP SP3", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools12-debuginfo-updates-x86_64-sap-sp3", + "parent_channel_label": "sle12-sp3-sap-pool-x86_64", + "product_id": 1426, + "repository_id": 1733, + "parent_product_id": null, + "root_product_id": 1426, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/12/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Manager-Tools12-Debuginfo-Updates for x86_64 SAP SP3", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools12-pool-x86_64-sap-sp3", + "parent_channel_label": "sle12-sp3-sap-pool-x86_64", + "product_id": 1426, + "repository_id": 1734, + "parent_product_id": null, + "root_product_id": 1426, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/12/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Manager-Tools12-Pool for x86_64 SAP SP3", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools12-debuginfo-pool-x86_64-sap-sp3", + "parent_channel_label": "sle12-sp3-sap-pool-x86_64", + "product_id": 1426, + "repository_id": 1735, + "parent_product_id": null, + "root_product_id": 1426, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/12/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Manager-Tools12-Debuginfo-Pool for x86_64 SAP SP3", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sles12-sp3-updates-x86_64-sap-sp3", + "parent_channel_label": "sle12-sp3-sap-pool-x86_64", + "product_id": 1426, + "repository_id": 2189, + "parent_product_id": null, + "root_product_id": 1426, + "update_tag": "SLE-SERVER", + "url": "https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-SP3/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLES12-SP3-Updates for x86_64 SAP", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles12-sp3-debuginfo-updates-x86_64-sap-sp3", + "parent_channel_label": "sle12-sp3-sap-pool-x86_64", + "product_id": 1426, + "repository_id": 2190, + "parent_product_id": null, + "root_product_id": 1426, + "update_tag": "SLE-SERVER", + "url": "https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-SP3/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLES12-SP3-Debuginfo-Updates for x86_64 SAP", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles12-sp3-pool-x86_64-sap-sp3", + "parent_channel_label": "sle12-sp3-sap-pool-x86_64", + "product_id": 1426, + "repository_id": 2192, + "parent_product_id": null, + "root_product_id": 1426, + "update_tag": "SLE-SERVER", + "url": "https://updates.suse.com/SUSE/Products/SLE-SERVER/12-SP3/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLES12-SP3-Pool for x86_64 SAP", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles12-sp3-debuginfo-pool-x86_64-sap-sp3", + "parent_channel_label": "sle12-sp3-sap-pool-x86_64", + "product_id": 1426, + "repository_id": 2193, + "parent_product_id": null, + "root_product_id": 1426, + "update_tag": "SLE-SERVER", + "url": "https://updates.suse.com/SUSE/Products/SLE-SERVER/12-SP3/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLES12-SP3-Debuginfo-Pool for x86_64 SAP", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-12-sp3-sap-updates-x86_64", + "parent_channel_label": "sle12-sp3-sap-pool-x86_64", + "product_id": 1426, + "repository_id": 2220, + "parent_product_id": null, + "root_product_id": 1426, + "update_tag": "SLE-SAP", + "url": "https://updates.suse.com/SUSE/Updates/SLE-SAP/12-SP3/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-12-SP3-SAP-Updates for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-ha12-sp3-updates-x86_64-sap-sp3", + "parent_channel_label": "sle12-sp3-sap-pool-x86_64", + "product_id": 1426, + "repository_id": 2221, + "parent_product_id": null, + "root_product_id": 1426, + "update_tag": "SLE-HA", + "url": "https://updates.suse.com/SUSE/Updates/SLE-HA/12-SP3/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-HA12-SP3-Updates for x86_64 SAP", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-12-sp3-sap-debuginfo-updates-x86_64", + "parent_channel_label": "sle12-sp3-sap-pool-x86_64", + "product_id": 1426, + "repository_id": 2222, + "parent_product_id": null, + "root_product_id": 1426, + "update_tag": "SLE-SAP", + "url": "https://updates.suse.com/SUSE/Updates/SLE-SAP/12-SP3/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-12-SP3-SAP-Debuginfo-Updates for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-ha12-sp3-debuginfo-updates-x86_64-sap-sp3", + "parent_channel_label": "sle12-sp3-sap-pool-x86_64", + "product_id": 1426, + "repository_id": 2223, + "parent_product_id": null, + "root_product_id": 1426, + "update_tag": "SLE-HA", + "url": "https://updates.suse.com/SUSE/Updates/SLE-HA/12-SP3/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-HA12-SP3-Debuginfo-Updates for x86_64 SAP", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle12-sp3-sap-pool-x86_64", + "parent_channel_label": null, + "product_id": 1426, + "repository_id": 2224, + "parent_product_id": null, + "root_product_id": 1426, + "update_tag": "SLE-SAP", + "url": "https://updates.suse.com/SUSE/Products/SLE-SAP/12-SP3/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE12-SP3-SAP-Pool for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-ha12-sp3-pool-x86_64-sap-sp3", + "parent_channel_label": "sle12-sp3-sap-pool-x86_64", + "product_id": 1426, + "repository_id": 2225, + "parent_product_id": null, + "root_product_id": 1426, + "update_tag": "SLE-HA", + "url": "https://updates.suse.com/SUSE/Products/SLE-HA/12-SP3/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-HA12-SP3-Pool for x86_64 SAP", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle12-sp3-sap-debuginfo-pool-x86_64", + "parent_channel_label": "sle12-sp3-sap-pool-x86_64", + "product_id": 1426, + "repository_id": 2226, + "parent_product_id": null, + "root_product_id": 1426, + "update_tag": "SLE-SAP", + "url": "https://updates.suse.com/SUSE/Products/SLE-SAP/12-SP3/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE12-SP3-SAP-Debuginfo-Pool for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-ha12-sp3-debuginfo-pool-x86_64-sap-sp3", + "parent_channel_label": "sle12-sp3-sap-pool-x86_64", + "product_id": 1426, + "repository_id": 2227, + "parent_product_id": null, + "root_product_id": 1426, + "update_tag": "SLE-HA", + "url": "https://updates.suse.com/SUSE/Products/SLE-HA/12-SP3/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-HA12-SP3-Debuginfo-Pool for x86_64 SAP", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-legacy12-updates-x86_64-sap-sp3", + "parent_channel_label": "sle12-sp3-sap-pool-x86_64", + "product_id": 1150, + "repository_id": 1676, + "parent_product_id": 1426, + "root_product_id": 1426, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/12/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy12-Updates for x86_64 SAP SP3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-legacy12-debuginfo-updates-x86_64-sap-sp3", + "parent_channel_label": "sle12-sp3-sap-pool-x86_64", + "product_id": 1150, + "repository_id": 1677, + "parent_product_id": 1426, + "root_product_id": 1426, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/12/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy12-Debuginfo-Updates for x86_64 SAP SP3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-legacy12-pool-x86_64-sap-sp3", + "parent_channel_label": "sle12-sp3-sap-pool-x86_64", + "product_id": 1150, + "repository_id": 1678, + "parent_product_id": 1426, + "root_product_id": 1426, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/12/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy12-Pool for x86_64 SAP SP3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-legacy12-debuginfo-pool-x86_64-sap-sp3", + "parent_channel_label": "sle12-sp3-sap-pool-x86_64", + "product_id": 1150, + "repository_id": 1679, + "parent_product_id": 1426, + "root_product_id": 1426, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/12/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy12-Debuginfo-Pool for x86_64 SAP SP3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting12-updates-x86_64-sap-sp3", + "parent_channel_label": "sle12-sp3-sap-pool-x86_64", + "product_id": 1153, + "repository_id": 1688, + "parent_product_id": 1426, + "root_product_id": 1426, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/12/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Web-Scripting12-Updates for x86_64 SAP SP3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting12-debuginfo-updates-x86_64-sap-sp3", + "parent_channel_label": "sle12-sp3-sap-pool-x86_64", + "product_id": 1153, + "repository_id": 1689, + "parent_product_id": 1426, + "root_product_id": 1426, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/12/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Web-Scripting12-Debuginfo-Updates for x86_64 SAP SP3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting12-pool-x86_64-sap-sp3", + "parent_channel_label": "sle12-sp3-sap-pool-x86_64", + "product_id": 1153, + "repository_id": 1690, + "parent_product_id": 1426, + "root_product_id": 1426, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/12/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Web-Scripting12-Pool for x86_64 SAP SP3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting12-debuginfo-pool-x86_64-sap-sp3", + "parent_channel_label": "sle12-sp3-sap-pool-x86_64", + "product_id": 1153, + "repository_id": 1691, + "parent_product_id": 1426, + "root_product_id": 1426, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/12/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Web-Scripting12-Debuginfo-Pool for x86_64 SAP SP3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-adv-systems-management12-updates-x86_64-sap-sp3", + "parent_channel_label": "sle12-sp3-sap-pool-x86_64", + "product_id": 1212, + "repository_id": 1704, + "parent_product_id": 1426, + "root_product_id": 1426, + "update_tag": "SLE-Module-Adv-Systems-Management", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Adv-Systems-Management/12/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Adv-Systems-Management12-Updates for x86_64 SAP SP3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-adv-systems-management12-debuginfo-updates-x86_64-sap-sp3", + "parent_channel_label": "sle12-sp3-sap-pool-x86_64", + "product_id": 1212, + "repository_id": 1705, + "parent_product_id": 1426, + "root_product_id": 1426, + "update_tag": "SLE-Module-Adv-Systems-Management", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Adv-Systems-Management/12/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Adv-Systems-Management12-Debuginfo-Updates for x86_64 SAP SP3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-adv-systems-management12-pool-x86_64-sap-sp3", + "parent_channel_label": "sle12-sp3-sap-pool-x86_64", + "product_id": 1212, + "repository_id": 1706, + "parent_product_id": 1426, + "root_product_id": 1426, + "update_tag": "SLE-Module-Adv-Systems-Management", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Adv-Systems-Management/12/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Adv-Systems-Management12-Pool for x86_64 SAP SP3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-adv-systems-management12-debuginfo-pool-x86_64-sap-sp3", + "parent_channel_label": "sle12-sp3-sap-pool-x86_64", + "product_id": 1212, + "repository_id": 1707, + "parent_product_id": 1426, + "root_product_id": 1426, + "update_tag": "SLE-Module-Adv-Systems-Management", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Adv-Systems-Management/12/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Adv-Systems-Management12-Debuginfo-Pool for x86_64 SAP SP3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud12-updates-x86_64-sap-sp3", + "parent_channel_label": "sle12-sp3-sap-pool-x86_64", + "product_id": 1220, + "repository_id": 1700, + "parent_product_id": 1426, + "root_product_id": 1426, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/12/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud12-Updates for x86_64 SAP SP3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud12-debuginfo-updates-x86_64-sap-sp3", + "parent_channel_label": "sle12-sp3-sap-pool-x86_64", + "product_id": 1220, + "repository_id": 1701, + "parent_product_id": 1426, + "root_product_id": 1426, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/12/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud12-Debuginfo-Updates for x86_64 SAP SP3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud12-pool-x86_64-sap-sp3", + "parent_channel_label": "sle12-sp3-sap-pool-x86_64", + "product_id": 1220, + "repository_id": 1702, + "parent_product_id": 1426, + "root_product_id": 1426, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/12/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud12-Pool for x86_64 SAP SP3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud12-debuginfo-pool-x86_64-sap-sp3", + "parent_channel_label": "sle12-sp3-sap-pool-x86_64", + "product_id": 1220, + "repository_id": 1703, + "parent_product_id": 1426, + "root_product_id": 1426, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/12/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud12-Debuginfo-Pool for x86_64 SAP SP3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-containers12-updates-x86_64-sap-sp3", + "parent_channel_label": "sle12-sp3-sap-pool-x86_64", + "product_id": 1332, + "repository_id": 1864, + "parent_product_id": 1426, + "root_product_id": 1426, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/12/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers12-Updates for x86_64 SAP SP3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-containers12-debuginfo-updates-x86_64-sap-sp3", + "parent_channel_label": "sle12-sp3-sap-pool-x86_64", + "product_id": 1332, + "repository_id": 1865, + "parent_product_id": 1426, + "root_product_id": 1426, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/12/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers12-Debuginfo-Updates for x86_64 SAP SP3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-containers12-pool-x86_64-sap-sp3", + "parent_channel_label": "sle12-sp3-sap-pool-x86_64", + "product_id": 1332, + "repository_id": 1866, + "parent_product_id": 1426, + "root_product_id": 1426, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Containers/12/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers12-Pool for x86_64 SAP SP3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-containers12-debuginfo-pool-x86_64-sap-sp3", + "parent_channel_label": "sle12-sp3-sap-pool-x86_64", + "product_id": 1332, + "repository_id": 1867, + "parent_product_id": 1426, + "root_product_id": 1426, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Containers/12/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers12-Debuginfo-Pool for x86_64 SAP SP3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-toolchain12-updates-x86_64-sap-sp3", + "parent_channel_label": "sle12-sp3-sap-pool-x86_64", + "product_id": 1341, + "repository_id": 1903, + "parent_product_id": 1426, + "root_product_id": 1426, + "update_tag": "SLE-Module-Toolchain", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Toolchain/12/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Toolchain12-Updates for x86_64 SAP SP3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-toolchain12-debuginfo-updates-x86_64-sap-sp3", + "parent_channel_label": "sle12-sp3-sap-pool-x86_64", + "product_id": 1341, + "repository_id": 1904, + "parent_product_id": 1426, + "root_product_id": 1426, + "update_tag": "SLE-Module-Toolchain", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Toolchain/12/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Toolchain12-Debuginfo-Updates for x86_64 SAP SP3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-toolchain12-pool-x86_64-sap-sp3", + "parent_channel_label": "sle12-sp3-sap-pool-x86_64", + "product_id": 1341, + "repository_id": 1905, + "parent_product_id": 1426, + "root_product_id": 1426, + "update_tag": "SLE-Module-Toolchain", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Toolchain/12/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Toolchain12-Pool for x86_64 SAP SP3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-toolchain12-debuginfo-pool-x86_64-sap-sp3", + "parent_channel_label": "sle12-sp3-sap-pool-x86_64", + "product_id": 1341, + "repository_id": 1906, + "parent_product_id": 1426, + "root_product_id": 1426, + "update_tag": "SLE-Module-Toolchain", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Toolchain/12/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Toolchain12-Debuginfo-Pool for x86_64 SAP SP3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-manager-proxy-3.0-updates-x86_64-sap-sp3", + "parent_channel_label": "sle12-sp3-sap-pool-x86_64", + "product_id": 1352, + "repository_id": 1968, + "parent_product_id": 1426, + "root_product_id": 1426, + "update_tag": "SUSE-Manager-Proxy-3.0", + "url": "https://updates.suse.com/SUSE/Updates/SUSE-Manager-Proxy/3.0/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-Manager-Proxy-3.0-Updates for x86_64 SAP SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-manager-proxy-3.0-debuginfo-updates-x86_64-sap-sp3", + "parent_channel_label": "sle12-sp3-sap-pool-x86_64", + "product_id": 1352, + "repository_id": 1969, + "parent_product_id": 1426, + "root_product_id": 1426, + "update_tag": "SUSE-Manager-Proxy-3.0", + "url": "https://updates.suse.com/SUSE/Updates/SUSE-Manager-Proxy/3.0/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SUSE-Manager-Proxy-3.0-Debuginfo-Updates for x86_64 SAP SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-manager-proxy-3.0-pool-x86_64-sap-sp3", + "parent_channel_label": "sle12-sp3-sap-pool-x86_64", + "product_id": 1352, + "repository_id": 1970, + "parent_product_id": 1426, + "root_product_id": 1426, + "update_tag": "SUSE-Manager-Proxy-3.0", + "url": "https://updates.suse.com/SUSE/Products/SUSE-Manager-Proxy/3.0/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-Manager-Proxy-3.0-Pool for x86_64 SAP SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-manager-proxy-3.0-debuginfo-pool-x86_64-sap-sp3", + "parent_channel_label": "sle12-sp3-sap-pool-x86_64", + "product_id": 1352, + "repository_id": 1971, + "parent_product_id": 1426, + "root_product_id": 1426, + "update_tag": "SUSE-Manager-Proxy-3.0", + "url": "https://updates.suse.com/SUSE/Products/SUSE-Manager-Proxy/3.0/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SUSE-Manager-Proxy-3.0-Debuginfo-Pool for x86_64 SAP SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-sdk12-sp3-updates-x86_64-sap-sp3", + "parent_channel_label": "sle12-sp3-sap-pool-x86_64", + "product_id": 1427, + "repository_id": 2230, + "parent_product_id": 1426, + "root_product_id": 1426, + "update_tag": "SLE-SDK", + "url": "https://updates.suse.com/SUSE/Updates/SLE-SDK/12-SP3/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-SDK12-SP3-Updates for x86_64 SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-sdk12-sp3-debuginfo-updates-x86_64-sap-sp3", + "parent_channel_label": "sle12-sp3-sap-pool-x86_64", + "product_id": 1427, + "repository_id": 2231, + "parent_product_id": 1426, + "root_product_id": 1426, + "update_tag": "SLE-SDK", + "url": "https://updates.suse.com/SUSE/Updates/SLE-SDK/12-SP3/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-SDK12-SP3-Debuginfo-Updates for x86_64 SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-sdk12-sp3-pool-x86_64-sap-sp3", + "parent_channel_label": "sle12-sp3-sap-pool-x86_64", + "product_id": 1427, + "repository_id": 2232, + "parent_product_id": 1426, + "root_product_id": 1426, + "update_tag": "SLE-SDK", + "url": "https://updates.suse.com/SUSE/Products/SLE-SDK/12-SP3/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-SDK12-SP3-Pool for x86_64 SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-sdk12-sp3-debuginfo-pool-x86_64-sap-sp3", + "parent_channel_label": "sle12-sp3-sap-pool-x86_64", + "product_id": 1427, + "repository_id": 2233, + "parent_product_id": 1426, + "root_product_id": 1426, + "update_tag": "SLE-SDK", + "url": "https://updates.suse.com/SUSE/Products/SLE-SDK/12-SP3/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-SDK12-SP3-Debuginfo-Pool for x86_64 SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-12-sp3-ga-desktop-nvidia-driver-we-sap-sp3", + "parent_channel_label": "sle12-sp3-sap-pool-x86_64", + "product_id": 1431, + "repository_id": 2217, + "parent_product_id": 1426, + "root_product_id": 1426, + "update_tag": null, + "url": "http://download.nvidia.com/suse/sle12sp3/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-12-SP3-GA-Desktop-nVidia-Driver for x86_64 WE-SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-we12-sp3-updates-x86_64-sap-sp3", + "parent_channel_label": "sle12-sp3-sap-pool-x86_64", + "product_id": 1431, + "repository_id": 2250, + "parent_product_id": 1426, + "root_product_id": 1426, + "update_tag": "SLE-WE", + "url": "https://updates.suse.com/SUSE/Updates/SLE-WE/12-SP3/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-WE12-SP3-Updates for x86_64 SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-we12-sp3-debuginfo-updates-x86_64-sap-sp3", + "parent_channel_label": "sle12-sp3-sap-pool-x86_64", + "product_id": 1431, + "repository_id": 2251, + "parent_product_id": 1426, + "root_product_id": 1426, + "update_tag": "SLE-WE", + "url": "https://updates.suse.com/SUSE/Updates/SLE-WE/12-SP3/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-WE12-SP3-Debuginfo-Updates for x86_64 SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-we12-sp3-pool-x86_64-sap-sp3", + "parent_channel_label": "sle12-sp3-sap-pool-x86_64", + "product_id": 1431, + "repository_id": 2252, + "parent_product_id": 1426, + "root_product_id": 1426, + "update_tag": "SLE-WE", + "url": "https://updates.suse.com/SUSE/Products/SLE-WE/12-SP3/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-WE12-SP3-Pool for x86_64 SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-we12-sp3-debuginfo-pool-x86_64-sap-sp3", + "parent_channel_label": "sle12-sp3-sap-pool-x86_64", + "product_id": 1431, + "repository_id": 2253, + "parent_product_id": 1426, + "root_product_id": 1426, + "update_tag": "SLE-WE", + "url": "https://updates.suse.com/SUSE/Products/SLE-WE/12-SP3/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-WE12-SP3-Debuginfo-Pool for x86_64 SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-ha-geo12-sp3-updates-x86_64-sap-sp3", + "parent_channel_label": "sle12-sp3-sap-pool-x86_64", + "product_id": 1435, + "repository_id": 2265, + "parent_product_id": 1426, + "root_product_id": 1426, + "update_tag": "SLE-HA-GEO", + "url": "https://updates.suse.com/SUSE/Updates/SLE-HA-GEO/12-SP3/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-HA-GEO12-SP3-Updates for x86_64 SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-ha-geo12-sp3-debuginfo-updates-x86_64-sap-sp3", + "parent_channel_label": "sle12-sp3-sap-pool-x86_64", + "product_id": 1435, + "repository_id": 2266, + "parent_product_id": 1426, + "root_product_id": 1426, + "update_tag": "SLE-HA-GEO", + "url": "https://updates.suse.com/SUSE/Updates/SLE-HA-GEO/12-SP3/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-HA-GEO12-SP3-Debuginfo-Updates for x86_64 SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-ha-geo12-sp3-pool-x86_64-sap-sp3", + "parent_channel_label": "sle12-sp3-sap-pool-x86_64", + "product_id": 1435, + "repository_id": 2267, + "parent_product_id": 1426, + "root_product_id": 1426, + "update_tag": "SLE-HA-GEO", + "url": "https://updates.suse.com/SUSE/Products/SLE-HA-GEO/12-SP3/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-HA-GEO12-SP3-Pool for x86_64 SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-ha-geo12-sp3-debuginfo-pool-x86_64-sap-sp3", + "parent_channel_label": "sle12-sp3-sap-pool-x86_64", + "product_id": 1435, + "repository_id": 2268, + "parent_product_id": 1426, + "root_product_id": 1426, + "update_tag": "SLE-HA-GEO", + "url": "https://updates.suse.com/SUSE/Products/SLE-HA-GEO/12-SP3/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-HA-GEO12-SP3-Debuginfo-Pool for x86_64 SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-pos12-sp2-updates-x86_64-sap-sp3", + "parent_channel_label": "sle12-sp3-sap-pool-x86_64", + "product_id": 1439, + "repository_id": 2289, + "parent_product_id": 1426, + "root_product_id": 1426, + "update_tag": "SLE-POS", + "url": "https://updates.suse.com/SUSE/Updates/SLE-POS/12-SP2/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-POS12-SP2-Updates for x86_64 SAP SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-pos12-sp2-debuginfo-updates-x86_64-sap-sp3", + "parent_channel_label": "sle12-sp3-sap-pool-x86_64", + "product_id": 1439, + "repository_id": 2290, + "parent_product_id": 1426, + "root_product_id": 1426, + "update_tag": "SLE-POS", + "url": "https://updates.suse.com/SUSE/Updates/SLE-POS/12-SP2/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-POS12-SP2-Debuginfo-Updates for x86_64 SAP SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-pos12-sp2-pool-x86_64-sap-sp3", + "parent_channel_label": "sle12-sp3-sap-pool-x86_64", + "product_id": 1439, + "repository_id": 2291, + "parent_product_id": 1426, + "root_product_id": 1426, + "update_tag": "SLE-POS", + "url": "https://updates.suse.com/SUSE/Products/SLE-POS/12-SP2/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-POS12-SP2-Pool for x86_64 SAP SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-pos12-sp2-debuginfo-pool-x86_64-sap-sp3", + "parent_channel_label": "sle12-sp3-sap-pool-x86_64", + "product_id": 1439, + "repository_id": 2292, + "parent_product_id": 1426, + "root_product_id": 1426, + "update_tag": "SLE-POS", + "url": "https://updates.suse.com/SUSE/Products/SLE-POS/12-SP2/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-POS12-SP2-Debuginfo-Pool for x86_64 SAP SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-pos12-sp2-client-updates-x86_64-sap-sp3", + "parent_channel_label": "sle12-sp3-sap-pool-x86_64", + "product_id": 1439, + "repository_id": 3130, + "parent_product_id": 1426, + "root_product_id": 1426, + "update_tag": "SLE-POS", + "url": "https://updates.suse.com/SUSE/Updates/SLE-POS/12-SP2-CLIENT/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-POS12-SP2-CLIENT-Updates for x86_64 SAP SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-pos12-sp2-client-debuginfo-updates-x86_64-sap-sp3", + "parent_channel_label": "sle12-sp3-sap-pool-x86_64", + "product_id": 1439, + "repository_id": 3131, + "parent_product_id": 1426, + "root_product_id": 1426, + "update_tag": "SLE-POS", + "url": "https://updates.suse.com/SUSE/Updates/SLE-POS/12-SP2-CLIENT/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-POS12-SP2-CLIENT-Debuginfo-Updates for x86_64 SAP SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-hpc12-updates-x86_64-sap-sp3", + "parent_channel_label": "sle12-sp3-sap-pool-x86_64", + "product_id": 1440, + "repository_id": 2294, + "parent_product_id": 1426, + "root_product_id": 1426, + "update_tag": "SLE-Module-HPC", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-HPC/12/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-HPC12-Updates for x86_64 SAP SP3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-hpc12-debuginfo-updates-x86_64-sap-sp3", + "parent_channel_label": "sle12-sp3-sap-pool-x86_64", + "product_id": 1440, + "repository_id": 2295, + "parent_product_id": 1426, + "root_product_id": 1426, + "update_tag": "SLE-Module-HPC", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-HPC/12/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-HPC12-Debuginfo-Updates for x86_64 SAP SP3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-hpc12-pool-x86_64-sap-sp3", + "parent_channel_label": "sle12-sp3-sap-pool-x86_64", + "product_id": 1440, + "repository_id": 2296, + "parent_product_id": 1426, + "root_product_id": 1426, + "update_tag": "SLE-Module-HPC", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-HPC/12/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-HPC12-Pool for x86_64 SAP SP3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-hpc12-debuginfo-pool-x86_64-sap-sp3", + "parent_channel_label": "sle12-sp3-sap-pool-x86_64", + "product_id": 1440, + "repository_id": 2297, + "parent_product_id": 1426, + "root_product_id": 1426, + "update_tag": "SLE-Module-HPC", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-HPC/12/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-HPC12-Debuginfo-Pool for x86_64 SAP SP3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-manager-proxy-3.1-updates-x86_64-sap-sp3", + "parent_channel_label": "sle12-sp3-sap-pool-x86_64", + "product_id": 1520, + "repository_id": 2410, + "parent_product_id": 1426, + "root_product_id": 1426, + "update_tag": "SUSE-Manager-Proxy-3.1", + "url": "https://updates.suse.com/SUSE/Updates/SUSE-Manager-Proxy/3.1/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-Manager-Proxy-3.1-Updates for x86_64 SAP SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-manager-proxy-3.1-debuginfo-updates-x86_64-sap-sp3", + "parent_channel_label": "sle12-sp3-sap-pool-x86_64", + "product_id": 1520, + "repository_id": 2411, + "parent_product_id": 1426, + "root_product_id": 1426, + "update_tag": "SUSE-Manager-Proxy-3.1", + "url": "https://updates.suse.com/SUSE/Updates/SUSE-Manager-Proxy/3.1/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SUSE-Manager-Proxy-3.1-Debuginfo-Updates for x86_64 SAP SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-manager-proxy-3.1-pool-x86_64-sap-sp3", + "parent_channel_label": "sle12-sp3-sap-pool-x86_64", + "product_id": 1520, + "repository_id": 2412, + "parent_product_id": 1426, + "root_product_id": 1426, + "update_tag": "SUSE-Manager-Proxy-3.1", + "url": "https://updates.suse.com/SUSE/Products/SUSE-Manager-Proxy/3.1/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-Manager-Proxy-3.1-Pool for x86_64 SAP SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-manager-proxy-3.1-debuginfo-pool-x86_64-sap-sp3", + "parent_channel_label": "sle12-sp3-sap-pool-x86_64", + "product_id": 1520, + "repository_id": 2413, + "parent_product_id": 1426, + "root_product_id": 1426, + "update_tag": "SUSE-Manager-Proxy-3.1", + "url": "https://updates.suse.com/SUSE/Products/SUSE-Manager-Proxy/3.1/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SUSE-Manager-Proxy-3.1-Debuginfo-Pool for x86_64 SAP SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-enterprise-storage-5-updates-x86_64-sap-sp3", + "parent_channel_label": "sle12-sp3-sap-pool-x86_64", + "product_id": 1526, + "repository_id": 2432, + "parent_product_id": 1426, + "root_product_id": 1426, + "update_tag": "Storage-5", + "url": "https://updates.suse.com/SUSE/Updates/Storage/5/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-Enterprise-Storage-5-Updates for x86_64 SAP SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-enterprise-storage-5-debuginfo-updates-x86_64-sap-sp3", + "parent_channel_label": "sle12-sp3-sap-pool-x86_64", + "product_id": 1526, + "repository_id": 2433, + "parent_product_id": 1426, + "root_product_id": 1426, + "update_tag": "Storage-5", + "url": "https://updates.suse.com/SUSE/Updates/Storage/5/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SUSE-Enterprise-Storage-5-Debuginfo-Updates for x86_64 SAP SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-enterprise-storage-5-pool-x86_64-sap-sp3", + "parent_channel_label": "sle12-sp3-sap-pool-x86_64", + "product_id": 1526, + "repository_id": 2434, + "parent_product_id": 1426, + "root_product_id": 1426, + "update_tag": "Storage-5", + "url": "https://updates.suse.com/SUSE/Products/Storage/5/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-Enterprise-Storage-5-Pool for x86_64 SAP SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-enterprise-storage-5-debuginfo-pool-x86_64-sap-sp3", + "parent_channel_label": "sle12-sp3-sap-pool-x86_64", + "product_id": 1526, + "repository_id": 2435, + "parent_product_id": 1426, + "root_product_id": 1426, + "update_tag": "Storage-5", + "url": "https://updates.suse.com/SUSE/Products/Storage/5/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SUSE-Enterprise-Storage-5-Debuginfo-Pool for x86_64 SAP SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-packagehub-12-sp3-x86_64-sap-sp3", + "parent_channel_label": "sle12-sp3-sap-pool-x86_64", + "product_id": 1529, + "repository_id": 2445, + "parent_product_id": 1426, + "root_product_id": 1426, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-12-SP3_x86_64/standard/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-12-SP3 for x86_64 SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-packagehub-12-sp3-debuginfo-x86_64-sap-sp3", + "parent_channel_label": "sle12-sp3-sap-pool-x86_64", + "product_id": 1529, + "repository_id": 2446, + "parent_product_id": 1426, + "root_product_id": 1426, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-12-SP3_x86_64/standard_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-12-SP3-Debuginfo for x86_64 SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-packagehub-12-sp3-pool-x86_64-sap-sp3", + "parent_channel_label": "sle12-sp3-sap-pool-x86_64", + "product_id": 1529, + "repository_id": 2447, + "parent_product_id": 1426, + "root_product_id": 1426, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-12-SP3_x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-12-SP3-Pool for x86_64 SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-live-patching12-sp3-updates-x86_64-sap-sp3", + "parent_channel_label": "sle12-sp3-sap-pool-x86_64", + "product_id": 1536, + "repository_id": 2463, + "parent_product_id": 1426, + "root_product_id": 1426, + "update_tag": "SLE-Live-Patching", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Live-Patching/12-SP3/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Live-Patching12-SP3-Updates for x86_64 SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-live-patching12-sp3-debuginfo-updates-x86_64-sap-sp3", + "parent_channel_label": "sle12-sp3-sap-pool-x86_64", + "product_id": 1536, + "repository_id": 2464, + "parent_product_id": 1426, + "root_product_id": 1426, + "update_tag": "SLE-Live-Patching", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Live-Patching/12-SP3/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Live-Patching12-SP3-Debuginfo-Updates for x86_64 SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-live-patching12-sp3-pool-x86_64-sap-sp3", + "parent_channel_label": "sle12-sp3-sap-pool-x86_64", + "product_id": 1536, + "repository_id": 2465, + "parent_product_id": 1426, + "root_product_id": 1426, + "update_tag": "SLE-Live-Patching", + "url": "https://updates.suse.com/SUSE/Products/SLE-Live-Patching/12-SP3/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Live-Patching12-SP3-Pool for x86_64 SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-live-patching12-sp3-debuginfo-pool-x86_64-sap-sp3", + "parent_channel_label": "sle12-sp3-sap-pool-x86_64", + "product_id": 1536, + "repository_id": 2466, + "parent_product_id": 1426, + "root_product_id": 1426, + "update_tag": "SLE-Live-Patching", + "url": "https://updates.suse.com/SUSE/Products/SLE-Live-Patching/12-SP3/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Live-Patching12-SP3-Debuginfo-Pool for x86_64 SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-rt12-sp3-updates-x86_64-sap-sp3", + "parent_channel_label": "sle12-sp3-sap-pool-x86_64", + "product_id": 1619, + "repository_id": 2701, + "parent_product_id": 1426, + "root_product_id": 1426, + "update_tag": "SLE-RT", + "url": "https://updates.suse.com/SUSE/Updates/SLE-RT/12-SP3/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-RT12-SP3-Updates for x86_64 SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-rt12-sp3-debuginfo-updates-x86_64-sap-sp3", + "parent_channel_label": "sle12-sp3-sap-pool-x86_64", + "product_id": 1619, + "repository_id": 2702, + "parent_product_id": 1426, + "root_product_id": 1426, + "update_tag": "SLE-RT", + "url": "https://updates.suse.com/SUSE/Updates/SLE-RT/12-SP3/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-RT12-SP3-Debuginfo-Updates for x86_64 SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-rt12-sp3-pool-x86_64-sap-sp3", + "parent_channel_label": "sle12-sp3-sap-pool-x86_64", + "product_id": 1619, + "repository_id": 2703, + "parent_product_id": 1426, + "root_product_id": 1426, + "update_tag": "SLE-RT", + "url": "https://updates.suse.com/SUSE/Products/SLE-RT/12-SP3/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-RT12-SP3-Pool for x86_64 SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-rt12-sp3-debuginfo-pool-x86_64-sap-sp3", + "parent_channel_label": "sle12-sp3-sap-pool-x86_64", + "product_id": 1619, + "repository_id": 2704, + "parent_product_id": 1426, + "root_product_id": 1426, + "update_tag": "SLE-RT", + "url": "https://updates.suse.com/SUSE/Products/SLE-RT/12-SP3/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-RT12-SP3-Debuginfo-Pool for x86_64 SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-manager-tools12-beta-updates-x86_64-sap-sp3", + "parent_channel_label": "sle12-sp3-sap-pool-x86_64", + "product_id": 1747, + "repository_id": 3077, + "parent_product_id": 1426, + "root_product_id": 1426, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/12-BETA/x86_64/update/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools12-BETA-Updates for x86_64 SAP SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools12-beta-debuginfo-updates-x86_64-sap-sp3", + "parent_channel_label": "sle12-sp3-sap-pool-x86_64", + "product_id": 1747, + "repository_id": 3078, + "parent_product_id": 1426, + "root_product_id": 1426, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/12-BETA/x86_64/update_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools12-BETA-Debuginfo-Updates for x86_64 SAP SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools12-beta-pool-x86_64-sap-sp3", + "parent_channel_label": "sle12-sp3-sap-pool-x86_64", + "product_id": 1747, + "repository_id": 3079, + "parent_product_id": 1426, + "root_product_id": 1426, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/12-BETA/x86_64/product/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools12-BETA-Pool for x86_64 SAP SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools12-beta-debuginfo-pool-x86_64-sap-sp3", + "parent_channel_label": "sle12-sp3-sap-pool-x86_64", + "product_id": 1747, + "repository_id": 3080, + "parent_product_id": 1426, + "root_product_id": 1426, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/12-BETA/x86_64/product_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools12-BETA-Debuginfo-Pool for x86_64 SAP SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sles12-sp3-ltss-updates-x86_64-sap", + "parent_channel_label": "sle12-sp3-sap-pool-x86_64", + "product_id": 1932, + "repository_id": 3919, + "parent_product_id": 1426, + "root_product_id": 1426, + "update_tag": "SLE-SERVER", + "url": "https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-SP3-LTSS/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLES12-SP3-LTSS-Updates for x86_64 SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles12-sp3-ltss-debuginfo-updates-x86_64-sap", + "parent_channel_label": "sle12-sp3-sap-pool-x86_64", + "product_id": 1932, + "repository_id": 3920, + "parent_product_id": 1426, + "root_product_id": 1426, + "update_tag": "SLE-SERVER", + "url": "https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-SP3-LTSS/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLES12-SP3-LTSS-Debuginfo-Updates for x86_64 SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-manager-tools12-updates-ppc64le-sap-sp1", + "parent_channel_label": "sle12-sp1-sap-pool-ppc64le", + "product_id": 1437, + "repository_id": 1724, + "parent_product_id": null, + "root_product_id": 1437, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/12/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Manager-Tools12-Updates for ppc64le SAP SP1", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools12-debuginfo-updates-ppc64le-sap-sp1", + "parent_channel_label": "sle12-sp1-sap-pool-ppc64le", + "product_id": 1437, + "repository_id": 1725, + "parent_product_id": null, + "root_product_id": 1437, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/12/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Manager-Tools12-Debuginfo-Updates for ppc64le SAP SP1", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools12-pool-ppc64le-sap-sp1", + "parent_channel_label": "sle12-sp1-sap-pool-ppc64le", + "product_id": 1437, + "repository_id": 1726, + "parent_product_id": null, + "root_product_id": 1437, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/12/ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Manager-Tools12-Pool for ppc64le SAP SP1", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools12-debuginfo-pool-ppc64le-sap-sp1", + "parent_channel_label": "sle12-sp1-sap-pool-ppc64le", + "product_id": 1437, + "repository_id": 1727, + "parent_product_id": null, + "root_product_id": 1437, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/12/ppc64le/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Manager-Tools12-Debuginfo-Pool for ppc64le SAP SP1", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sles12-sp1-updates-ppc64le-sap-sp1", + "parent_channel_label": "sle12-sp1-sap-pool-ppc64le", + "product_id": 1437, + "repository_id": 1875, + "parent_product_id": null, + "root_product_id": 1437, + "update_tag": "SLE-SERVER", + "url": "https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-SP1/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLES12-SP1-Updates for ppc64le SAP", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles12-sp1-debuginfo-updates-ppc64le-sap-sp1", + "parent_channel_label": "sle12-sp1-sap-pool-ppc64le", + "product_id": 1437, + "repository_id": 1876, + "parent_product_id": null, + "root_product_id": 1437, + "update_tag": "SLE-SERVER", + "url": "https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-SP1/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLES12-SP1-Debuginfo-Updates for ppc64le SAP", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles12-sp1-pool-ppc64le-sap-sp1", + "parent_channel_label": "sle12-sp1-sap-pool-ppc64le", + "product_id": 1437, + "repository_id": 1877, + "parent_product_id": null, + "root_product_id": 1437, + "update_tag": "SLE-SERVER", + "url": "https://updates.suse.com/SUSE/Products/SLE-SERVER/12-SP1/ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLES12-SP1-Pool for ppc64le SAP", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles12-sp1-debuginfo-pool-ppc64le-sap-sp1", + "parent_channel_label": "sle12-sp1-sap-pool-ppc64le", + "product_id": 1437, + "repository_id": 1878, + "parent_product_id": null, + "root_product_id": 1437, + "update_tag": "SLE-SERVER", + "url": "https://updates.suse.com/SUSE/Products/SLE-SERVER/12-SP1/ppc64le/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLES12-SP1-Debuginfo-Pool for ppc64le SAP", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-12-sp1-sap-updates-ppc64le", + "parent_channel_label": "sle12-sp1-sap-pool-ppc64le", + "product_id": 1437, + "repository_id": 2275, + "parent_product_id": null, + "root_product_id": 1437, + "update_tag": "SLE-SAP-12-SP1", + "url": "https://updates.suse.com/SUSE/Updates/SLE-SAP/12-SP1/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-12-SP1-SAP-Updates for ppc64le", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-ha12-sp1-updates-ppc64le-sap-sp1", + "parent_channel_label": "sle12-sp1-sap-pool-ppc64le", + "product_id": 1437, + "repository_id": 2276, + "parent_product_id": null, + "root_product_id": 1437, + "update_tag": "SLE-HA", + "url": "https://updates.suse.com/SUSE/Updates/SLE-HA/12-SP1/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-HA12-SP1-Updates for ppc64le SAP", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-12-sp1-sap-debuginfo-updates-ppc64le", + "parent_channel_label": "sle12-sp1-sap-pool-ppc64le", + "product_id": 1437, + "repository_id": 2277, + "parent_product_id": null, + "root_product_id": 1437, + "update_tag": "SLE-SAP-12-SP1", + "url": "https://updates.suse.com/SUSE/Updates/SLE-SAP/12-SP1/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-12-SP1-SAP-Debuginfo-Updates for ppc64le", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-ha12-sp1-debuginfo-updates-ppc64le-sap-sp1", + "parent_channel_label": "sle12-sp1-sap-pool-ppc64le", + "product_id": 1437, + "repository_id": 2278, + "parent_product_id": null, + "root_product_id": 1437, + "update_tag": "SLE-HA", + "url": "https://updates.suse.com/SUSE/Updates/SLE-HA/12-SP1/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-HA12-SP1-Debuginfo-Updates for ppc64le SAP", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle12-sp1-sap-pool-ppc64le", + "parent_channel_label": null, + "product_id": 1437, + "repository_id": 2279, + "parent_product_id": null, + "root_product_id": 1437, + "update_tag": "SLE-SAP-12-SP1", + "url": "https://updates.suse.com/SUSE/Products/SLE-SAP/12-SP1/ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE12-SP1-SAP-Pool for ppc64le", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-ha12-sp1-pool-ppc64le-sap-sp1", + "parent_channel_label": "sle12-sp1-sap-pool-ppc64le", + "product_id": 1437, + "repository_id": 2280, + "parent_product_id": null, + "root_product_id": 1437, + "update_tag": "SLE-HA", + "url": "https://updates.suse.com/SUSE/Products/SLE-HA/12-SP1/ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-HA12-SP1-Pool for ppc64le SAP", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle12-sp1-sap-debuginfo-pool-ppc64le", + "parent_channel_label": "sle12-sp1-sap-pool-ppc64le", + "product_id": 1437, + "repository_id": 2281, + "parent_product_id": null, + "root_product_id": 1437, + "update_tag": "SLE-SAP-12-SP1", + "url": "https://updates.suse.com/SUSE/Products/SLE-SAP/12-SP1/ppc64le/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE12-SP1-SAP-Debuginfo-Pool for ppc64le", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-ha12-sp1-debuginfo-pool-ppc64le-sap-sp1", + "parent_channel_label": "sle12-sp1-sap-pool-ppc64le", + "product_id": 1437, + "repository_id": 2282, + "parent_product_id": null, + "root_product_id": 1437, + "update_tag": "SLE-HA", + "url": "https://updates.suse.com/SUSE/Products/SLE-HA/12-SP1/ppc64le/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-HA12-SP1-Debuginfo-Pool for ppc64le SAP", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-legacy12-updates-ppc64le-sap-sp1", + "parent_channel_label": "sle12-sp1-sap-pool-ppc64le", + "product_id": 1148, + "repository_id": 1668, + "parent_product_id": 1437, + "root_product_id": 1437, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/12/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy12-Updates for ppc64le SAP SP1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-legacy12-debuginfo-updates-ppc64le-sap-sp1", + "parent_channel_label": "sle12-sp1-sap-pool-ppc64le", + "product_id": 1148, + "repository_id": 1669, + "parent_product_id": 1437, + "root_product_id": 1437, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/12/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy12-Debuginfo-Updates for ppc64le SAP SP1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-legacy12-pool-ppc64le-sap-sp1", + "parent_channel_label": "sle12-sp1-sap-pool-ppc64le", + "product_id": 1148, + "repository_id": 1670, + "parent_product_id": 1437, + "root_product_id": 1437, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/12/ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy12-Pool for ppc64le SAP SP1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-legacy12-debuginfo-pool-ppc64le-sap-sp1", + "parent_channel_label": "sle12-sp1-sap-pool-ppc64le", + "product_id": 1148, + "repository_id": 1671, + "parent_product_id": 1437, + "root_product_id": 1437, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/12/ppc64le/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy12-Debuginfo-Pool for ppc64le SAP SP1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting12-updates-ppc64le-sap-sp1", + "parent_channel_label": "sle12-sp1-sap-pool-ppc64le", + "product_id": 1151, + "repository_id": 1680, + "parent_product_id": 1437, + "root_product_id": 1437, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/12/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Web-Scripting12-Updates for ppc64le SAP SP1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting12-debuginfo-updates-ppc64le-sap-sp1", + "parent_channel_label": "sle12-sp1-sap-pool-ppc64le", + "product_id": 1151, + "repository_id": 1681, + "parent_product_id": 1437, + "root_product_id": 1437, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/12/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Web-Scripting12-Debuginfo-Updates for ppc64le SAP SP1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting12-pool-ppc64le-sap-sp1", + "parent_channel_label": "sle12-sp1-sap-pool-ppc64le", + "product_id": 1151, + "repository_id": 1682, + "parent_product_id": 1437, + "root_product_id": 1437, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/12/ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Web-Scripting12-Pool for ppc64le SAP SP1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting12-debuginfo-pool-ppc64le-sap-sp1", + "parent_channel_label": "sle12-sp1-sap-pool-ppc64le", + "product_id": 1151, + "repository_id": 1683, + "parent_product_id": 1437, + "root_product_id": 1437, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/12/ppc64le/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Web-Scripting12-Debuginfo-Pool for ppc64le SAP SP1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud12-updates-ppc64le-sap-sp1", + "parent_channel_label": "sle12-sp1-sap-pool-ppc64le", + "product_id": 1218, + "repository_id": 1692, + "parent_product_id": 1437, + "root_product_id": 1437, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/12/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud12-Updates for ppc64le SAP SP1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud12-debuginfo-updates-ppc64le-sap-sp1", + "parent_channel_label": "sle12-sp1-sap-pool-ppc64le", + "product_id": 1218, + "repository_id": 1693, + "parent_product_id": 1437, + "root_product_id": 1437, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/12/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud12-Debuginfo-Updates for ppc64le SAP SP1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud12-pool-ppc64le-sap-sp1", + "parent_channel_label": "sle12-sp1-sap-pool-ppc64le", + "product_id": 1218, + "repository_id": 1694, + "parent_product_id": 1437, + "root_product_id": 1437, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/12/ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud12-Pool for ppc64le SAP SP1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud12-debuginfo-pool-ppc64le-sap-sp1", + "parent_channel_label": "sle12-sp1-sap-pool-ppc64le", + "product_id": 1218, + "repository_id": 1695, + "parent_product_id": 1437, + "root_product_id": 1437, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/12/ppc64le/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud12-Debuginfo-Pool for ppc64le SAP SP1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "ibm-dlpar-adv-toolchain-sap-sp1", + "parent_channel_label": "sle12-sp1-sap-pool-ppc64le", + "product_id": 1249, + "repository_id": 4429, + "parent_product_id": 1437, + "root_product_id": 1437, + "update_tag": null, + "url": "https://public.dhe.ibm.com/software/server/POWER/Linux/toolchain/at/suse/SLES_12/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "IBM-DLPAR-Adv-Toolchain for ppc64le SAP SP1", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "ibm-dlpar-utils-sap-sp1", + "parent_channel_label": "sle12-sp1-sap-pool-ppc64le", + "product_id": 1250, + "repository_id": 6216, + "parent_product_id": 1437, + "root_product_id": 1437, + "update_tag": null, + "url": "https://public.dhe.ibm.com/software/server/POWER/Linux/yum/OSS/SLES/12/ppc64le/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "IBM-DLPAR-utils for ppc64le SAP SP1", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-adv-systems-management12-updates-ppc64le-sap-sp1", + "parent_channel_label": "sle12-sp1-sap-pool-ppc64le", + "product_id": 1294, + "repository_id": 1762, + "parent_product_id": 1437, + "root_product_id": 1437, + "update_tag": "SLE-Module-Adv-Systems-Management", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Adv-Systems-Management/12/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Adv-Systems-Management12-Updates for ppc64le SAP SP1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-adv-systems-management12-debuginfo-updates-ppc64le-sap-sp1", + "parent_channel_label": "sle12-sp1-sap-pool-ppc64le", + "product_id": 1294, + "repository_id": 1763, + "parent_product_id": 1437, + "root_product_id": 1437, + "update_tag": "SLE-Module-Adv-Systems-Management", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Adv-Systems-Management/12/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Adv-Systems-Management12-Debuginfo-Updates for ppc64le SAP SP1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-adv-systems-management12-pool-ppc64le-sap-sp1", + "parent_channel_label": "sle12-sp1-sap-pool-ppc64le", + "product_id": 1294, + "repository_id": 1764, + "parent_product_id": 1437, + "root_product_id": 1437, + "update_tag": "SLE-Module-Adv-Systems-Management", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Adv-Systems-Management/12/ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Adv-Systems-Management12-Pool for ppc64le SAP SP1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-adv-systems-management12-debuginfo-pool-ppc64le-sap-sp1", + "parent_channel_label": "sle12-sp1-sap-pool-ppc64le", + "product_id": 1294, + "repository_id": 1765, + "parent_product_id": 1437, + "root_product_id": 1437, + "update_tag": "SLE-Module-Adv-Systems-Management", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Adv-Systems-Management/12/ppc64le/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Adv-Systems-Management12-Debuginfo-Pool for ppc64le SAP SP1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-toolchain12-updates-ppc64le-sap-sp1", + "parent_channel_label": "sle12-sp1-sap-pool-ppc64le", + "product_id": 1339, + "repository_id": 1895, + "parent_product_id": 1437, + "root_product_id": 1437, + "update_tag": "SLE-Module-Toolchain", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Toolchain/12/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Toolchain12-Updates for ppc64le SAP SP1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-toolchain12-debuginfo-updates-ppc64le-sap-sp1", + "parent_channel_label": "sle12-sp1-sap-pool-ppc64le", + "product_id": 1339, + "repository_id": 1896, + "parent_product_id": 1437, + "root_product_id": 1437, + "update_tag": "SLE-Module-Toolchain", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Toolchain/12/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Toolchain12-Debuginfo-Updates for ppc64le SAP SP1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-toolchain12-pool-ppc64le-sap-sp1", + "parent_channel_label": "sle12-sp1-sap-pool-ppc64le", + "product_id": 1339, + "repository_id": 1897, + "parent_product_id": 1437, + "root_product_id": 1437, + "update_tag": "SLE-Module-Toolchain", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Toolchain/12/ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Toolchain12-Pool for ppc64le SAP SP1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-toolchain12-debuginfo-pool-ppc64le-sap-sp1", + "parent_channel_label": "sle12-sp1-sap-pool-ppc64le", + "product_id": 1339, + "repository_id": 1898, + "parent_product_id": 1437, + "root_product_id": 1437, + "update_tag": "SLE-Module-Toolchain", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Toolchain/12/ppc64le/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Toolchain12-Debuginfo-Pool for ppc64le SAP SP1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-sdk12-sp1-updates-ppc64le-sap-sp1", + "parent_channel_label": "sle12-sp1-sap-pool-ppc64le", + "product_id": 1343, + "repository_id": 1922, + "parent_product_id": 1437, + "root_product_id": 1437, + "update_tag": "SLE-SDK", + "url": "https://updates.suse.com/SUSE/Updates/SLE-SDK/12-SP1/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-SDK12-SP1-Updates for ppc64le SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-sdk12-sp1-debuginfo-updates-ppc64le-sap-sp1", + "parent_channel_label": "sle12-sp1-sap-pool-ppc64le", + "product_id": 1343, + "repository_id": 1923, + "parent_product_id": 1437, + "root_product_id": 1437, + "update_tag": "SLE-SDK", + "url": "https://updates.suse.com/SUSE/Updates/SLE-SDK/12-SP1/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-SDK12-SP1-Debuginfo-Updates for ppc64le SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-sdk12-sp1-pool-ppc64le-sap-sp1", + "parent_channel_label": "sle12-sp1-sap-pool-ppc64le", + "product_id": 1343, + "repository_id": 1924, + "parent_product_id": 1437, + "root_product_id": 1437, + "update_tag": "SLE-SDK", + "url": "https://updates.suse.com/SUSE/Products/SLE-SDK/12-SP1/ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-SDK12-SP1-Pool for ppc64le SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-sdk12-sp1-debuginfo-pool-ppc64le-sap-sp1", + "parent_channel_label": "sle12-sp1-sap-pool-ppc64le", + "product_id": 1343, + "repository_id": 1925, + "parent_product_id": 1437, + "root_product_id": 1437, + "update_tag": "SLE-SDK", + "url": "https://updates.suse.com/SUSE/Products/SLE-SDK/12-SP1/ppc64le/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-SDK12-SP1-Debuginfo-Pool for ppc64le SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-containers12-updates-ppc64le-sap-sp1", + "parent_channel_label": "sle12-sp1-sap-pool-ppc64le", + "product_id": 1353, + "repository_id": 1972, + "parent_product_id": 1437, + "root_product_id": 1437, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/12/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers12-Updates for ppc64le SAP SP1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-containers12-debuginfo-updates-ppc64le-sap-sp1", + "parent_channel_label": "sle12-sp1-sap-pool-ppc64le", + "product_id": 1353, + "repository_id": 1973, + "parent_product_id": 1437, + "root_product_id": 1437, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/12/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers12-Debuginfo-Updates for ppc64le SAP SP1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-containers12-pool-ppc64le-sap-sp1", + "parent_channel_label": "sle12-sp1-sap-pool-ppc64le", + "product_id": 1353, + "repository_id": 1974, + "parent_product_id": 1437, + "root_product_id": 1437, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Containers/12/ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers12-Pool for ppc64le SAP SP1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-containers12-debuginfo-pool-ppc64le-sap-sp1", + "parent_channel_label": "sle12-sp1-sap-pool-ppc64le", + "product_id": 1353, + "repository_id": 1975, + "parent_product_id": 1437, + "root_product_id": 1437, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Containers/12/ppc64le/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers12-Debuginfo-Pool for ppc64le SAP SP1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-packagehub-12-sp1-ppc64le-sap-sp1", + "parent_channel_label": "sle12-sp1-sap-pool-ppc64le", + "product_id": 1478, + "repository_id": 2342, + "parent_product_id": 1437, + "root_product_id": 1437, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-12-SP1_ppc64le/standard/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-12-SP1-Standard-Pool for ppc64le SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-packagehub-12-sp1-debuginfo-ppc64le-sap-sp1", + "parent_channel_label": "sle12-sp1-sap-pool-ppc64le", + "product_id": 1478, + "repository_id": 2343, + "parent_product_id": 1437, + "root_product_id": 1437, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-12-SP1_ppc64le/standard_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-12-SP1-Debuginfo for ppc64le SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-packagehub-12-sp1-pool-ppc64le-sap-sp1", + "parent_channel_label": "sle12-sp1-sap-pool-ppc64le", + "product_id": 1478, + "repository_id": 2344, + "parent_product_id": 1437, + "root_product_id": 1437, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-12-SP1_ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-12-SP1-Pool for ppc64le SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-manager-tools12-beta-updates-ppc64le-sap-sp1", + "parent_channel_label": "sle12-sp1-sap-pool-ppc64le", + "product_id": 1745, + "repository_id": 3067, + "parent_product_id": 1437, + "root_product_id": 1437, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/12-BETA/ppc64le/update/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools12-BETA-Updates for ppc64le SAP SP1", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools12-beta-debuginfo-updates-ppc64le-sap-sp1", + "parent_channel_label": "sle12-sp1-sap-pool-ppc64le", + "product_id": 1745, + "repository_id": 3068, + "parent_product_id": 1437, + "root_product_id": 1437, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/12-BETA/ppc64le/update_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools12-BETA-Debuginfo-Updates for ppc64le SAP SP1", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools12-beta-pool-ppc64le-sap-sp1", + "parent_channel_label": "sle12-sp1-sap-pool-ppc64le", + "product_id": 1745, + "repository_id": 3069, + "parent_product_id": 1437, + "root_product_id": 1437, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/12-BETA/ppc64le/product/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools12-BETA-Pool for ppc64le SAP SP1", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools12-beta-debuginfo-pool-ppc64le-sap-sp1", + "parent_channel_label": "sle12-sp1-sap-pool-ppc64le", + "product_id": 1745, + "repository_id": 3070, + "parent_product_id": 1437, + "root_product_id": 1437, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/12-BETA/ppc64le/product_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools12-BETA-Debuginfo-Pool for ppc64le SAP SP1", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "suse-caasp-all-updates-x86_64", + "parent_channel_label": "suse-caasp-all-pool-x86_64", + "product_id": 1484, + "repository_id": 2514, + "parent_product_id": null, + "root_product_id": 1484, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Updates/SUSE-CAASP/ALL/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-CAASP-ALL-Updates for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-caasp-all-debuginfo-updates-x86_64", + "parent_channel_label": "suse-caasp-all-pool-x86_64", + "product_id": 1484, + "repository_id": 2515, + "parent_product_id": null, + "root_product_id": 1484, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Updates/SUSE-CAASP/ALL/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SUSE-CAASP-ALL-Debuginfo-Updates for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-caasp-all-pool-x86_64", + "parent_channel_label": null, + "product_id": 1484, + "repository_id": 2516, + "parent_product_id": null, + "root_product_id": 1484, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Products/SUSE-CAASP/ALL/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-CAASP-ALL-Pool for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-caasp-all-debuginfo-pool-x86_64", + "parent_channel_label": "suse-caasp-all-pool-x86_64", + "product_id": 1484, + "repository_id": 2517, + "parent_product_id": null, + "root_product_id": 1484, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Products/SUSE-CAASP/ALL/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SUSE-CAASP-ALL-Debuginfo-Pool for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-manager-tools12-updates-ppc64le-sap-sp2", + "parent_channel_label": "sle12-sp2-sap-pool-ppc64le", + "product_id": 1521, + "repository_id": 1724, + "parent_product_id": null, + "root_product_id": 1521, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/12/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Manager-Tools12-Updates for ppc64le SAP SP2", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools12-debuginfo-updates-ppc64le-sap-sp2", + "parent_channel_label": "sle12-sp2-sap-pool-ppc64le", + "product_id": 1521, + "repository_id": 1725, + "parent_product_id": null, + "root_product_id": 1521, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/12/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Manager-Tools12-Debuginfo-Updates for ppc64le SAP SP2", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools12-pool-ppc64le-sap-sp2", + "parent_channel_label": "sle12-sp2-sap-pool-ppc64le", + "product_id": 1521, + "repository_id": 1726, + "parent_product_id": null, + "root_product_id": 1521, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/12/ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Manager-Tools12-Pool for ppc64le SAP SP2", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools12-debuginfo-pool-ppc64le-sap-sp2", + "parent_channel_label": "sle12-sp2-sap-pool-ppc64le", + "product_id": 1521, + "repository_id": 1727, + "parent_product_id": null, + "root_product_id": 1521, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/12/ppc64le/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Manager-Tools12-Debuginfo-Pool for ppc64le SAP SP2", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sles12-sp2-updates-ppc64le-sap-sp2", + "parent_channel_label": "sle12-sp2-sap-pool-ppc64le", + "product_id": 1521, + "repository_id": 2003, + "parent_product_id": null, + "root_product_id": 1521, + "update_tag": "SLE-SERVER", + "url": "https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-SP2/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLES12-SP2-Updates for ppc64le SAP", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles12-sp2-debuginfo-updates-ppc64le-sap-sp2", + "parent_channel_label": "sle12-sp2-sap-pool-ppc64le", + "product_id": 1521, + "repository_id": 2004, + "parent_product_id": null, + "root_product_id": 1521, + "update_tag": "SLE-SERVER", + "url": "https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-SP2/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLES12-SP2-Debuginfo-Updates for ppc64le SAP", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles12-sp2-pool-ppc64le-sap-sp2", + "parent_channel_label": "sle12-sp2-sap-pool-ppc64le", + "product_id": 1521, + "repository_id": 2005, + "parent_product_id": null, + "root_product_id": 1521, + "update_tag": "SLE-SERVER", + "url": "https://updates.suse.com/SUSE/Products/SLE-SERVER/12-SP2/ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLES12-SP2-Pool for ppc64le SAP", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles12-sp2-debuginfo-pool-ppc64le-sap-sp2", + "parent_channel_label": "sle12-sp2-sap-pool-ppc64le", + "product_id": 1521, + "repository_id": 2006, + "parent_product_id": null, + "root_product_id": 1521, + "update_tag": "SLE-SERVER", + "url": "https://updates.suse.com/SUSE/Products/SLE-SERVER/12-SP2/ppc64le/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLES12-SP2-Debuginfo-Pool for ppc64le SAP", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-ha12-sp2-updates-ppc64le-sap-sp2", + "parent_channel_label": "sle12-sp2-sap-pool-ppc64le", + "product_id": 1521, + "repository_id": 2183, + "parent_product_id": null, + "root_product_id": 1521, + "update_tag": "SLE-HA", + "url": "https://updates.suse.com/SUSE/Updates/SLE-HA/12-SP2/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-HA12-SP2-Updates for ppc64le SAP", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-ha12-sp2-debuginfo-updates-ppc64le-sap-sp2", + "parent_channel_label": "sle12-sp2-sap-pool-ppc64le", + "product_id": 1521, + "repository_id": 2184, + "parent_product_id": null, + "root_product_id": 1521, + "update_tag": "SLE-HA", + "url": "https://updates.suse.com/SUSE/Updates/SLE-HA/12-SP2/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-HA12-SP2-Debuginfo-Updates for ppc64le SAP", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-ha12-sp2-pool-ppc64le-sap-sp2", + "parent_channel_label": "sle12-sp2-sap-pool-ppc64le", + "product_id": 1521, + "repository_id": 2185, + "parent_product_id": null, + "root_product_id": 1521, + "update_tag": "SLE-HA", + "url": "https://updates.suse.com/SUSE/Products/SLE-HA/12-SP2/ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-HA12-SP2-Pool for ppc64le SAP", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-ha12-sp2-debuginfo-pool-ppc64le-sap-sp2", + "parent_channel_label": "sle12-sp2-sap-pool-ppc64le", + "product_id": 1521, + "repository_id": 2186, + "parent_product_id": null, + "root_product_id": 1521, + "update_tag": "SLE-HA", + "url": "https://updates.suse.com/SUSE/Products/SLE-HA/12-SP2/ppc64le/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-HA12-SP2-Debuginfo-Pool for ppc64le SAP", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-12-sp2-sap-updates-ppc64le", + "parent_channel_label": "sle12-sp2-sap-pool-ppc64le", + "product_id": 1521, + "repository_id": 2415, + "parent_product_id": null, + "root_product_id": 1521, + "update_tag": "SLE-SAP", + "url": "https://updates.suse.com/SUSE/Updates/SLE-SAP/12-SP2/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-12-SP2-SAP-Updates for ppc64le", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-12-sp2-sap-debuginfo-updates-ppc64le", + "parent_channel_label": "sle12-sp2-sap-pool-ppc64le", + "product_id": 1521, + "repository_id": 2416, + "parent_product_id": null, + "root_product_id": 1521, + "update_tag": "SLE-SAP", + "url": "https://updates.suse.com/SUSE/Updates/SLE-SAP/12-SP2/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-12-SP2-SAP-Debuginfo-Updates for ppc64le", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle12-sp2-sap-installer-updates-ppc64le", + "parent_channel_label": "sle12-sp2-sap-pool-ppc64le", + "product_id": 1521, + "repository_id": 2417, + "parent_product_id": null, + "root_product_id": 1521, + "update_tag": "SLE-SAP-INSTALLER", + "url": "https://updates.suse.com/SUSE/Updates/SLE-SAP-INSTALLER/12-SP2/ppc64le/update/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE12-SP2-SAP-Installer-Updates for ppc64le", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle12-sp2-sap-pool-ppc64le", + "parent_channel_label": null, + "product_id": 1521, + "repository_id": 2418, + "parent_product_id": null, + "root_product_id": 1521, + "update_tag": "SLE-SAP", + "url": "https://updates.suse.com/SUSE/Products/SLE-SAP/12-SP2/ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE12-SP2-SAP-Pool for ppc64le", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle12-sp2-sap-debuginfo-pool-ppc64le", + "parent_channel_label": "sle12-sp2-sap-pool-ppc64le", + "product_id": 1521, + "repository_id": 2419, + "parent_product_id": null, + "root_product_id": 1521, + "update_tag": "SLE-SAP", + "url": "https://updates.suse.com/SUSE/Products/SLE-SAP/12-SP2/ppc64le/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE12-SP2-SAP-Debuginfo-Pool for ppc64le", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-legacy12-updates-ppc64le-sap-sp2", + "parent_channel_label": "sle12-sp2-sap-pool-ppc64le", + "product_id": 1148, + "repository_id": 1668, + "parent_product_id": 1521, + "root_product_id": 1521, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/12/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy12-Updates for ppc64le SAP SP2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-legacy12-debuginfo-updates-ppc64le-sap-sp2", + "parent_channel_label": "sle12-sp2-sap-pool-ppc64le", + "product_id": 1148, + "repository_id": 1669, + "parent_product_id": 1521, + "root_product_id": 1521, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/12/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy12-Debuginfo-Updates for ppc64le SAP SP2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-legacy12-pool-ppc64le-sap-sp2", + "parent_channel_label": "sle12-sp2-sap-pool-ppc64le", + "product_id": 1148, + "repository_id": 1670, + "parent_product_id": 1521, + "root_product_id": 1521, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/12/ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy12-Pool for ppc64le SAP SP2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-legacy12-debuginfo-pool-ppc64le-sap-sp2", + "parent_channel_label": "sle12-sp2-sap-pool-ppc64le", + "product_id": 1148, + "repository_id": 1671, + "parent_product_id": 1521, + "root_product_id": 1521, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/12/ppc64le/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy12-Debuginfo-Pool for ppc64le SAP SP2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting12-updates-ppc64le-sap-sp2", + "parent_channel_label": "sle12-sp2-sap-pool-ppc64le", + "product_id": 1151, + "repository_id": 1680, + "parent_product_id": 1521, + "root_product_id": 1521, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/12/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Web-Scripting12-Updates for ppc64le SAP SP2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting12-debuginfo-updates-ppc64le-sap-sp2", + "parent_channel_label": "sle12-sp2-sap-pool-ppc64le", + "product_id": 1151, + "repository_id": 1681, + "parent_product_id": 1521, + "root_product_id": 1521, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/12/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Web-Scripting12-Debuginfo-Updates for ppc64le SAP SP2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting12-pool-ppc64le-sap-sp2", + "parent_channel_label": "sle12-sp2-sap-pool-ppc64le", + "product_id": 1151, + "repository_id": 1682, + "parent_product_id": 1521, + "root_product_id": 1521, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/12/ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Web-Scripting12-Pool for ppc64le SAP SP2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting12-debuginfo-pool-ppc64le-sap-sp2", + "parent_channel_label": "sle12-sp2-sap-pool-ppc64le", + "product_id": 1151, + "repository_id": 1683, + "parent_product_id": 1521, + "root_product_id": 1521, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/12/ppc64le/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Web-Scripting12-Debuginfo-Pool for ppc64le SAP SP2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud12-updates-ppc64le-sap-sp2", + "parent_channel_label": "sle12-sp2-sap-pool-ppc64le", + "product_id": 1218, + "repository_id": 1692, + "parent_product_id": 1521, + "root_product_id": 1521, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/12/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud12-Updates for ppc64le SAP SP2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud12-debuginfo-updates-ppc64le-sap-sp2", + "parent_channel_label": "sle12-sp2-sap-pool-ppc64le", + "product_id": 1218, + "repository_id": 1693, + "parent_product_id": 1521, + "root_product_id": 1521, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/12/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud12-Debuginfo-Updates for ppc64le SAP SP2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud12-pool-ppc64le-sap-sp2", + "parent_channel_label": "sle12-sp2-sap-pool-ppc64le", + "product_id": 1218, + "repository_id": 1694, + "parent_product_id": 1521, + "root_product_id": 1521, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/12/ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud12-Pool for ppc64le SAP SP2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud12-debuginfo-pool-ppc64le-sap-sp2", + "parent_channel_label": "sle12-sp2-sap-pool-ppc64le", + "product_id": 1218, + "repository_id": 1695, + "parent_product_id": 1521, + "root_product_id": 1521, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/12/ppc64le/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud12-Debuginfo-Pool for ppc64le SAP SP2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "ibm-dlpar-adv-toolchain-sap-sp2", + "parent_channel_label": "sle12-sp2-sap-pool-ppc64le", + "product_id": 1249, + "repository_id": 4429, + "parent_product_id": 1521, + "root_product_id": 1521, + "update_tag": null, + "url": "https://public.dhe.ibm.com/software/server/POWER/Linux/toolchain/at/suse/SLES_12/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "IBM-DLPAR-Adv-Toolchain for ppc64le SAP SP2", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "ibm-dlpar-utils-sap-sp2", + "parent_channel_label": "sle12-sp2-sap-pool-ppc64le", + "product_id": 1250, + "repository_id": 6216, + "parent_product_id": 1521, + "root_product_id": 1521, + "update_tag": null, + "url": "https://public.dhe.ibm.com/software/server/POWER/Linux/yum/OSS/SLES/12/ppc64le/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "IBM-DLPAR-utils for ppc64le SAP SP2", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-adv-systems-management12-updates-ppc64le-sap-sp2", + "parent_channel_label": "sle12-sp2-sap-pool-ppc64le", + "product_id": 1294, + "repository_id": 1762, + "parent_product_id": 1521, + "root_product_id": 1521, + "update_tag": "SLE-Module-Adv-Systems-Management", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Adv-Systems-Management/12/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Adv-Systems-Management12-Updates for ppc64le SAP SP2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-adv-systems-management12-debuginfo-updates-ppc64le-sap-sp2", + "parent_channel_label": "sle12-sp2-sap-pool-ppc64le", + "product_id": 1294, + "repository_id": 1763, + "parent_product_id": 1521, + "root_product_id": 1521, + "update_tag": "SLE-Module-Adv-Systems-Management", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Adv-Systems-Management/12/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Adv-Systems-Management12-Debuginfo-Updates for ppc64le SAP SP2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-adv-systems-management12-pool-ppc64le-sap-sp2", + "parent_channel_label": "sle12-sp2-sap-pool-ppc64le", + "product_id": 1294, + "repository_id": 1764, + "parent_product_id": 1521, + "root_product_id": 1521, + "update_tag": "SLE-Module-Adv-Systems-Management", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Adv-Systems-Management/12/ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Adv-Systems-Management12-Pool for ppc64le SAP SP2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-adv-systems-management12-debuginfo-pool-ppc64le-sap-sp2", + "parent_channel_label": "sle12-sp2-sap-pool-ppc64le", + "product_id": 1294, + "repository_id": 1765, + "parent_product_id": 1521, + "root_product_id": 1521, + "update_tag": "SLE-Module-Adv-Systems-Management", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Adv-Systems-Management/12/ppc64le/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Adv-Systems-Management12-Debuginfo-Pool for ppc64le SAP SP2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-toolchain12-updates-ppc64le-sap-sp2", + "parent_channel_label": "sle12-sp2-sap-pool-ppc64le", + "product_id": 1339, + "repository_id": 1895, + "parent_product_id": 1521, + "root_product_id": 1521, + "update_tag": "SLE-Module-Toolchain", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Toolchain/12/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Toolchain12-Updates for ppc64le SAP SP2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-toolchain12-debuginfo-updates-ppc64le-sap-sp2", + "parent_channel_label": "sle12-sp2-sap-pool-ppc64le", + "product_id": 1339, + "repository_id": 1896, + "parent_product_id": 1521, + "root_product_id": 1521, + "update_tag": "SLE-Module-Toolchain", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Toolchain/12/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Toolchain12-Debuginfo-Updates for ppc64le SAP SP2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-toolchain12-pool-ppc64le-sap-sp2", + "parent_channel_label": "sle12-sp2-sap-pool-ppc64le", + "product_id": 1339, + "repository_id": 1897, + "parent_product_id": 1521, + "root_product_id": 1521, + "update_tag": "SLE-Module-Toolchain", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Toolchain/12/ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Toolchain12-Pool for ppc64le SAP SP2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-toolchain12-debuginfo-pool-ppc64le-sap-sp2", + "parent_channel_label": "sle12-sp2-sap-pool-ppc64le", + "product_id": 1339, + "repository_id": 1898, + "parent_product_id": 1521, + "root_product_id": 1521, + "update_tag": "SLE-Module-Toolchain", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Toolchain/12/ppc64le/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Toolchain12-Debuginfo-Pool for ppc64le SAP SP2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-containers12-updates-ppc64le-sap-sp2", + "parent_channel_label": "sle12-sp2-sap-pool-ppc64le", + "product_id": 1353, + "repository_id": 1972, + "parent_product_id": 1521, + "root_product_id": 1521, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/12/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers12-Updates for ppc64le SAP SP2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-containers12-debuginfo-updates-ppc64le-sap-sp2", + "parent_channel_label": "sle12-sp2-sap-pool-ppc64le", + "product_id": 1353, + "repository_id": 1973, + "parent_product_id": 1521, + "root_product_id": 1521, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/12/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers12-Debuginfo-Updates for ppc64le SAP SP2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-containers12-pool-ppc64le-sap-sp2", + "parent_channel_label": "sle12-sp2-sap-pool-ppc64le", + "product_id": 1353, + "repository_id": 1974, + "parent_product_id": 1521, + "root_product_id": 1521, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Containers/12/ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers12-Pool for ppc64le SAP SP2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-containers12-debuginfo-pool-ppc64le-sap-sp2", + "parent_channel_label": "sle12-sp2-sap-pool-ppc64le", + "product_id": 1353, + "repository_id": 1975, + "parent_product_id": 1521, + "root_product_id": 1521, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Containers/12/ppc64le/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers12-Debuginfo-Pool for ppc64le SAP SP2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-sdk12-sp2-updates-ppc64le-sap-sp2", + "parent_channel_label": "sle12-sp2-sap-pool-ppc64le", + "product_id": 1364, + "repository_id": 2049, + "parent_product_id": 1521, + "root_product_id": 1521, + "update_tag": "SLE-SDK", + "url": "https://updates.suse.com/SUSE/Updates/SLE-SDK/12-SP2/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-SDK12-SP2-Updates for ppc64le SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-sdk12-sp2-debuginfo-updates-ppc64le-sap-sp2", + "parent_channel_label": "sle12-sp2-sap-pool-ppc64le", + "product_id": 1364, + "repository_id": 2050, + "parent_product_id": 1521, + "root_product_id": 1521, + "update_tag": "SLE-SDK", + "url": "https://updates.suse.com/SUSE/Updates/SLE-SDK/12-SP2/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-SDK12-SP2-Debuginfo-Updates for ppc64le SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-sdk12-sp2-pool-ppc64le-sap-sp2", + "parent_channel_label": "sle12-sp2-sap-pool-ppc64le", + "product_id": 1364, + "repository_id": 2051, + "parent_product_id": 1521, + "root_product_id": 1521, + "update_tag": "SLE-SDK", + "url": "https://updates.suse.com/SUSE/Products/SLE-SDK/12-SP2/ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-SDK12-SP2-Pool for ppc64le SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-sdk12-sp2-debuginfo-pool-ppc64le-sap-sp2", + "parent_channel_label": "sle12-sp2-sap-pool-ppc64le", + "product_id": 1364, + "repository_id": 2052, + "parent_product_id": 1521, + "root_product_id": 1521, + "update_tag": "SLE-SDK", + "url": "https://updates.suse.com/SUSE/Products/SLE-SDK/12-SP2/ppc64le/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-SDK12-SP2-Debuginfo-Pool for ppc64le SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-packagehub-12-sp2-ppc64le-sap-sp2", + "parent_channel_label": "sle12-sp2-sap-pool-ppc64le", + "product_id": 1481, + "repository_id": 2351, + "parent_product_id": 1521, + "root_product_id": 1521, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-12-SP2_ppc64le/standard/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-12-SP2-Standard-Pool for ppc64le SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-packagehub-12-sp2-debuginfo-ppc64le-sap-sp2", + "parent_channel_label": "sle12-sp2-sap-pool-ppc64le", + "product_id": 1481, + "repository_id": 2352, + "parent_product_id": 1521, + "root_product_id": 1521, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-12-SP2_ppc64le/standard_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-12-SP2-Debuginfo for ppc64le SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-packagehub-12-sp2-pool-ppc64le-sap-sp2", + "parent_channel_label": "sle12-sp2-sap-pool-ppc64le", + "product_id": 1481, + "repository_id": 2353, + "parent_product_id": 1521, + "root_product_id": 1521, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-12-SP2_ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-12-SP2-Pool for ppc64le SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles12-sp2-ltss-updates-ppc64le-sap-sp2", + "parent_channel_label": "sle12-sp2-sap-pool-ppc64le", + "product_id": 1737, + "repository_id": 3044, + "parent_product_id": 1521, + "root_product_id": 1521, + "update_tag": "SLE-SERVER", + "url": "https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-SP2-LTSS/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLES12-SP2-LTSS-Updates for ppc64le SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles12-sp2-ltss-debuginfo-updates-ppc64le-sap-sp2", + "parent_channel_label": "sle12-sp2-sap-pool-ppc64le", + "product_id": 1737, + "repository_id": 3045, + "parent_product_id": 1521, + "root_product_id": 1521, + "update_tag": "SLE-SERVER", + "url": "https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-SP2-LTSS/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLES12-SP2-LTSS-Debuginfo-Updates for ppc64le SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-manager-tools12-beta-updates-ppc64le-sap-sp2", + "parent_channel_label": "sle12-sp2-sap-pool-ppc64le", + "product_id": 1745, + "repository_id": 3067, + "parent_product_id": 1521, + "root_product_id": 1521, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/12-BETA/ppc64le/update/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools12-BETA-Updates for ppc64le SAP SP2", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools12-beta-debuginfo-updates-ppc64le-sap-sp2", + "parent_channel_label": "sle12-sp2-sap-pool-ppc64le", + "product_id": 1745, + "repository_id": 3068, + "parent_product_id": 1521, + "root_product_id": 1521, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/12-BETA/ppc64le/update_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools12-BETA-Debuginfo-Updates for ppc64le SAP SP2", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools12-beta-pool-ppc64le-sap-sp2", + "parent_channel_label": "sle12-sp2-sap-pool-ppc64le", + "product_id": 1745, + "repository_id": 3069, + "parent_product_id": 1521, + "root_product_id": 1521, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/12-BETA/ppc64le/product/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools12-BETA-Pool for ppc64le SAP SP2", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools12-beta-debuginfo-pool-ppc64le-sap-sp2", + "parent_channel_label": "sle12-sp2-sap-pool-ppc64le", + "product_id": 1745, + "repository_id": 3070, + "parent_product_id": 1521, + "root_product_id": 1521, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/12-BETA/ppc64le/product_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools12-BETA-Debuginfo-Pool for ppc64le SAP SP2", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-live-patching12-updates-ppc64le-sap-sp2", + "parent_channel_label": "sle12-sp2-sap-pool-ppc64le", + "product_id": 1860, + "repository_id": 3563, + "parent_product_id": 1521, + "root_product_id": 1521, + "update_tag": "SLE-Live-Patching", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Live-Patching/12/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Live-Patching12-Updates for ppc64le SAP SP2", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-live-patching12-debuginfo-updates-ppc64le-sap-sp2", + "parent_channel_label": "sle12-sp2-sap-pool-ppc64le", + "product_id": 1860, + "repository_id": 3564, + "parent_product_id": 1521, + "root_product_id": 1521, + "update_tag": "SLE-Live-Patching", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Live-Patching/12/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Live-Patching12-Debuginfo-Updates for ppc64le SAP SP2", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-live-patching12-pool-ppc64le-sap-sp2", + "parent_channel_label": "sle12-sp2-sap-pool-ppc64le", + "product_id": 1860, + "repository_id": 3565, + "parent_product_id": 1521, + "root_product_id": 1521, + "update_tag": "SLE-Live-Patching", + "url": "https://updates.suse.com/SUSE/Products/SLE-Live-Patching/12/ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Live-Patching12-Pool for ppc64le SAP SP2", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-live-patching12-debuginfo-pool-ppc64le-sap-sp2", + "parent_channel_label": "sle12-sp2-sap-pool-ppc64le", + "product_id": 1860, + "repository_id": 3566, + "parent_product_id": 1521, + "root_product_id": 1521, + "update_tag": "SLE-Live-Patching", + "url": "https://updates.suse.com/SUSE/Products/SLE-Live-Patching/12/ppc64le/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Live-Patching12-Debuginfo-Pool for ppc64le SAP SP2", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-manager-tools12-updates-ppc64le-sap-sp3", + "parent_channel_label": "sle12-sp3-sap-pool-ppc64le", + "product_id": 1572, + "repository_id": 1724, + "parent_product_id": null, + "root_product_id": 1572, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/12/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Manager-Tools12-Updates for ppc64le SAP SP3", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools12-debuginfo-updates-ppc64le-sap-sp3", + "parent_channel_label": "sle12-sp3-sap-pool-ppc64le", + "product_id": 1572, + "repository_id": 1725, + "parent_product_id": null, + "root_product_id": 1572, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/12/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Manager-Tools12-Debuginfo-Updates for ppc64le SAP SP3", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools12-pool-ppc64le-sap-sp3", + "parent_channel_label": "sle12-sp3-sap-pool-ppc64le", + "product_id": 1572, + "repository_id": 1726, + "parent_product_id": null, + "root_product_id": 1572, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/12/ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Manager-Tools12-Pool for ppc64le SAP SP3", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools12-debuginfo-pool-ppc64le-sap-sp3", + "parent_channel_label": "sle12-sp3-sap-pool-ppc64le", + "product_id": 1572, + "repository_id": 1727, + "parent_product_id": null, + "root_product_id": 1572, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/12/ppc64le/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Manager-Tools12-Debuginfo-Pool for ppc64le SAP SP3", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sles12-sp3-updates-ppc64le-sap-sp3", + "parent_channel_label": "sle12-sp3-sap-pool-ppc64le", + "product_id": 1572, + "repository_id": 2195, + "parent_product_id": null, + "root_product_id": 1572, + "update_tag": "SLE-SERVER", + "url": "https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-SP3/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLES12-SP3-Updates for ppc64le SAP", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles12-sp3-debuginfo-updates-ppc64le-sap-sp3", + "parent_channel_label": "sle12-sp3-sap-pool-ppc64le", + "product_id": 1572, + "repository_id": 2196, + "parent_product_id": null, + "root_product_id": 1572, + "update_tag": "SLE-SERVER", + "url": "https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-SP3/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLES12-SP3-Debuginfo-Updates for ppc64le SAP", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles12-sp3-pool-ppc64le-sap-sp3", + "parent_channel_label": "sle12-sp3-sap-pool-ppc64le", + "product_id": 1572, + "repository_id": 2198, + "parent_product_id": null, + "root_product_id": 1572, + "update_tag": "SLE-SERVER", + "url": "https://updates.suse.com/SUSE/Products/SLE-SERVER/12-SP3/ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLES12-SP3-Pool for ppc64le SAP", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles12-sp3-debuginfo-pool-ppc64le-sap-sp3", + "parent_channel_label": "sle12-sp3-sap-pool-ppc64le", + "product_id": 1572, + "repository_id": 2199, + "parent_product_id": null, + "root_product_id": 1572, + "update_tag": "SLE-SERVER", + "url": "https://updates.suse.com/SUSE/Products/SLE-SERVER/12-SP3/ppc64le/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLES12-SP3-Debuginfo-Pool for ppc64le SAP", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-ha12-sp3-updates-ppc64le-sap-sp3", + "parent_channel_label": "sle12-sp3-sap-pool-ppc64le", + "product_id": 1572, + "repository_id": 2255, + "parent_product_id": null, + "root_product_id": 1572, + "update_tag": "SLE-HA", + "url": "https://updates.suse.com/SUSE/Updates/SLE-HA/12-SP3/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-HA12-SP3-Updates for ppc64le SAP", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-ha12-sp3-debuginfo-updates-ppc64le-sap-sp3", + "parent_channel_label": "sle12-sp3-sap-pool-ppc64le", + "product_id": 1572, + "repository_id": 2256, + "parent_product_id": null, + "root_product_id": 1572, + "update_tag": "SLE-HA", + "url": "https://updates.suse.com/SUSE/Updates/SLE-HA/12-SP3/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-HA12-SP3-Debuginfo-Updates for ppc64le SAP", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-ha12-sp3-pool-ppc64le-sap-sp3", + "parent_channel_label": "sle12-sp3-sap-pool-ppc64le", + "product_id": 1572, + "repository_id": 2257, + "parent_product_id": null, + "root_product_id": 1572, + "update_tag": "SLE-HA", + "url": "https://updates.suse.com/SUSE/Products/SLE-HA/12-SP3/ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-HA12-SP3-Pool for ppc64le SAP", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-ha12-sp3-debuginfo-pool-ppc64le-sap-sp3", + "parent_channel_label": "sle12-sp3-sap-pool-ppc64le", + "product_id": 1572, + "repository_id": 2258, + "parent_product_id": null, + "root_product_id": 1572, + "update_tag": "SLE-HA", + "url": "https://updates.suse.com/SUSE/Products/SLE-HA/12-SP3/ppc64le/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-HA12-SP3-Debuginfo-Pool for ppc64le SAP", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-12-sp3-sap-updates-ppc64le", + "parent_channel_label": "sle12-sp3-sap-pool-ppc64le", + "product_id": 1572, + "repository_id": 2509, + "parent_product_id": null, + "root_product_id": 1572, + "update_tag": "SLE-SAP", + "url": "https://updates.suse.com/SUSE/Updates/SLE-SAP/12-SP3/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-12-SP3-SAP-Updates for ppc64le", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-12-sp3-sap-debuginfo-updates-ppc64le", + "parent_channel_label": "sle12-sp3-sap-pool-ppc64le", + "product_id": 1572, + "repository_id": 2510, + "parent_product_id": null, + "root_product_id": 1572, + "update_tag": "SLE-SAP", + "url": "https://updates.suse.com/SUSE/Updates/SLE-SAP/12-SP3/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-12-SP3-SAP-Debuginfo-Updates for ppc64le", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle12-sp3-sap-pool-ppc64le", + "parent_channel_label": null, + "product_id": 1572, + "repository_id": 2511, + "parent_product_id": null, + "root_product_id": 1572, + "update_tag": "SLE-SAP", + "url": "https://updates.suse.com/SUSE/Products/SLE-SAP/12-SP3/ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE12-SP3-SAP-Pool for ppc64le", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle12-sp3-sap-debuginfo-pool-ppc64le", + "parent_channel_label": "sle12-sp3-sap-pool-ppc64le", + "product_id": 1572, + "repository_id": 2512, + "parent_product_id": null, + "root_product_id": 1572, + "update_tag": "SLE-SAP", + "url": "https://updates.suse.com/SUSE/Products/SLE-SAP/12-SP3/ppc64le/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE12-SP3-SAP-Debuginfo-Pool for ppc64le", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-legacy12-updates-ppc64le-sap-sp3", + "parent_channel_label": "sle12-sp3-sap-pool-ppc64le", + "product_id": 1148, + "repository_id": 1668, + "parent_product_id": 1572, + "root_product_id": 1572, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/12/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy12-Updates for ppc64le SAP SP3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-legacy12-debuginfo-updates-ppc64le-sap-sp3", + "parent_channel_label": "sle12-sp3-sap-pool-ppc64le", + "product_id": 1148, + "repository_id": 1669, + "parent_product_id": 1572, + "root_product_id": 1572, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/12/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy12-Debuginfo-Updates for ppc64le SAP SP3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-legacy12-pool-ppc64le-sap-sp3", + "parent_channel_label": "sle12-sp3-sap-pool-ppc64le", + "product_id": 1148, + "repository_id": 1670, + "parent_product_id": 1572, + "root_product_id": 1572, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/12/ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy12-Pool for ppc64le SAP SP3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-legacy12-debuginfo-pool-ppc64le-sap-sp3", + "parent_channel_label": "sle12-sp3-sap-pool-ppc64le", + "product_id": 1148, + "repository_id": 1671, + "parent_product_id": 1572, + "root_product_id": 1572, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/12/ppc64le/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy12-Debuginfo-Pool for ppc64le SAP SP3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting12-updates-ppc64le-sap-sp3", + "parent_channel_label": "sle12-sp3-sap-pool-ppc64le", + "product_id": 1151, + "repository_id": 1680, + "parent_product_id": 1572, + "root_product_id": 1572, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/12/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Web-Scripting12-Updates for ppc64le SAP SP3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting12-debuginfo-updates-ppc64le-sap-sp3", + "parent_channel_label": "sle12-sp3-sap-pool-ppc64le", + "product_id": 1151, + "repository_id": 1681, + "parent_product_id": 1572, + "root_product_id": 1572, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/12/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Web-Scripting12-Debuginfo-Updates for ppc64le SAP SP3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting12-pool-ppc64le-sap-sp3", + "parent_channel_label": "sle12-sp3-sap-pool-ppc64le", + "product_id": 1151, + "repository_id": 1682, + "parent_product_id": 1572, + "root_product_id": 1572, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/12/ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Web-Scripting12-Pool for ppc64le SAP SP3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting12-debuginfo-pool-ppc64le-sap-sp3", + "parent_channel_label": "sle12-sp3-sap-pool-ppc64le", + "product_id": 1151, + "repository_id": 1683, + "parent_product_id": 1572, + "root_product_id": 1572, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/12/ppc64le/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Web-Scripting12-Debuginfo-Pool for ppc64le SAP SP3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud12-updates-ppc64le-sap-sp3", + "parent_channel_label": "sle12-sp3-sap-pool-ppc64le", + "product_id": 1218, + "repository_id": 1692, + "parent_product_id": 1572, + "root_product_id": 1572, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/12/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud12-Updates for ppc64le SAP SP3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud12-debuginfo-updates-ppc64le-sap-sp3", + "parent_channel_label": "sle12-sp3-sap-pool-ppc64le", + "product_id": 1218, + "repository_id": 1693, + "parent_product_id": 1572, + "root_product_id": 1572, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/12/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud12-Debuginfo-Updates for ppc64le SAP SP3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud12-pool-ppc64le-sap-sp3", + "parent_channel_label": "sle12-sp3-sap-pool-ppc64le", + "product_id": 1218, + "repository_id": 1694, + "parent_product_id": 1572, + "root_product_id": 1572, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/12/ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud12-Pool for ppc64le SAP SP3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud12-debuginfo-pool-ppc64le-sap-sp3", + "parent_channel_label": "sle12-sp3-sap-pool-ppc64le", + "product_id": 1218, + "repository_id": 1695, + "parent_product_id": 1572, + "root_product_id": 1572, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/12/ppc64le/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud12-Debuginfo-Pool for ppc64le SAP SP3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "ibm-dlpar-adv-toolchain-sap-sp3", + "parent_channel_label": "sle12-sp3-sap-pool-ppc64le", + "product_id": 1249, + "repository_id": 4429, + "parent_product_id": 1572, + "root_product_id": 1572, + "update_tag": null, + "url": "https://public.dhe.ibm.com/software/server/POWER/Linux/toolchain/at/suse/SLES_12/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "IBM-DLPAR-Adv-Toolchain for ppc64le SAP SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "ibm-dlpar-utils-sap-sp3", + "parent_channel_label": "sle12-sp3-sap-pool-ppc64le", + "product_id": 1250, + "repository_id": 6216, + "parent_product_id": 1572, + "root_product_id": 1572, + "update_tag": null, + "url": "https://public.dhe.ibm.com/software/server/POWER/Linux/yum/OSS/SLES/12/ppc64le/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "IBM-DLPAR-utils for ppc64le SAP SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-adv-systems-management12-updates-ppc64le-sap-sp3", + "parent_channel_label": "sle12-sp3-sap-pool-ppc64le", + "product_id": 1294, + "repository_id": 1762, + "parent_product_id": 1572, + "root_product_id": 1572, + "update_tag": "SLE-Module-Adv-Systems-Management", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Adv-Systems-Management/12/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Adv-Systems-Management12-Updates for ppc64le SAP SP3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-adv-systems-management12-debuginfo-updates-ppc64le-sap-sp3", + "parent_channel_label": "sle12-sp3-sap-pool-ppc64le", + "product_id": 1294, + "repository_id": 1763, + "parent_product_id": 1572, + "root_product_id": 1572, + "update_tag": "SLE-Module-Adv-Systems-Management", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Adv-Systems-Management/12/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Adv-Systems-Management12-Debuginfo-Updates for ppc64le SAP SP3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-adv-systems-management12-pool-ppc64le-sap-sp3", + "parent_channel_label": "sle12-sp3-sap-pool-ppc64le", + "product_id": 1294, + "repository_id": 1764, + "parent_product_id": 1572, + "root_product_id": 1572, + "update_tag": "SLE-Module-Adv-Systems-Management", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Adv-Systems-Management/12/ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Adv-Systems-Management12-Pool for ppc64le SAP SP3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-adv-systems-management12-debuginfo-pool-ppc64le-sap-sp3", + "parent_channel_label": "sle12-sp3-sap-pool-ppc64le", + "product_id": 1294, + "repository_id": 1765, + "parent_product_id": 1572, + "root_product_id": 1572, + "update_tag": "SLE-Module-Adv-Systems-Management", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Adv-Systems-Management/12/ppc64le/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Adv-Systems-Management12-Debuginfo-Pool for ppc64le SAP SP3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-toolchain12-updates-ppc64le-sap-sp3", + "parent_channel_label": "sle12-sp3-sap-pool-ppc64le", + "product_id": 1339, + "repository_id": 1895, + "parent_product_id": 1572, + "root_product_id": 1572, + "update_tag": "SLE-Module-Toolchain", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Toolchain/12/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Toolchain12-Updates for ppc64le SAP SP3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-toolchain12-debuginfo-updates-ppc64le-sap-sp3", + "parent_channel_label": "sle12-sp3-sap-pool-ppc64le", + "product_id": 1339, + "repository_id": 1896, + "parent_product_id": 1572, + "root_product_id": 1572, + "update_tag": "SLE-Module-Toolchain", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Toolchain/12/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Toolchain12-Debuginfo-Updates for ppc64le SAP SP3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-toolchain12-pool-ppc64le-sap-sp3", + "parent_channel_label": "sle12-sp3-sap-pool-ppc64le", + "product_id": 1339, + "repository_id": 1897, + "parent_product_id": 1572, + "root_product_id": 1572, + "update_tag": "SLE-Module-Toolchain", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Toolchain/12/ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Toolchain12-Pool for ppc64le SAP SP3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-toolchain12-debuginfo-pool-ppc64le-sap-sp3", + "parent_channel_label": "sle12-sp3-sap-pool-ppc64le", + "product_id": 1339, + "repository_id": 1898, + "parent_product_id": 1572, + "root_product_id": 1572, + "update_tag": "SLE-Module-Toolchain", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Toolchain/12/ppc64le/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Toolchain12-Debuginfo-Pool for ppc64le SAP SP3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-containers12-updates-ppc64le-sap-sp3", + "parent_channel_label": "sle12-sp3-sap-pool-ppc64le", + "product_id": 1353, + "repository_id": 1972, + "parent_product_id": 1572, + "root_product_id": 1572, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/12/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers12-Updates for ppc64le SAP SP3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-containers12-debuginfo-updates-ppc64le-sap-sp3", + "parent_channel_label": "sle12-sp3-sap-pool-ppc64le", + "product_id": 1353, + "repository_id": 1973, + "parent_product_id": 1572, + "root_product_id": 1572, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/12/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers12-Debuginfo-Updates for ppc64le SAP SP3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-containers12-pool-ppc64le-sap-sp3", + "parent_channel_label": "sle12-sp3-sap-pool-ppc64le", + "product_id": 1353, + "repository_id": 1974, + "parent_product_id": 1572, + "root_product_id": 1572, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Containers/12/ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers12-Pool for ppc64le SAP SP3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-containers12-debuginfo-pool-ppc64le-sap-sp3", + "parent_channel_label": "sle12-sp3-sap-pool-ppc64le", + "product_id": 1353, + "repository_id": 1975, + "parent_product_id": 1572, + "root_product_id": 1572, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Containers/12/ppc64le/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers12-Debuginfo-Pool for ppc64le SAP SP3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-sdk12-sp3-updates-ppc64le-sap-sp3", + "parent_channel_label": "sle12-sp3-sap-pool-ppc64le", + "product_id": 1428, + "repository_id": 2235, + "parent_product_id": 1572, + "root_product_id": 1572, + "update_tag": "SLE-SDK", + "url": "https://updates.suse.com/SUSE/Updates/SLE-SDK/12-SP3/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-SDK12-SP3-Updates for ppc64le SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-sdk12-sp3-debuginfo-updates-ppc64le-sap-sp3", + "parent_channel_label": "sle12-sp3-sap-pool-ppc64le", + "product_id": 1428, + "repository_id": 2236, + "parent_product_id": 1572, + "root_product_id": 1572, + "update_tag": "SLE-SDK", + "url": "https://updates.suse.com/SUSE/Updates/SLE-SDK/12-SP3/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-SDK12-SP3-Debuginfo-Updates for ppc64le SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-sdk12-sp3-pool-ppc64le-sap-sp3", + "parent_channel_label": "sle12-sp3-sap-pool-ppc64le", + "product_id": 1428, + "repository_id": 2237, + "parent_product_id": 1572, + "root_product_id": 1572, + "update_tag": "SLE-SDK", + "url": "https://updates.suse.com/SUSE/Products/SLE-SDK/12-SP3/ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-SDK12-SP3-Pool for ppc64le SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-sdk12-sp3-debuginfo-pool-ppc64le-sap-sp3", + "parent_channel_label": "sle12-sp3-sap-pool-ppc64le", + "product_id": 1428, + "repository_id": 2238, + "parent_product_id": 1572, + "root_product_id": 1572, + "update_tag": "SLE-SDK", + "url": "https://updates.suse.com/SUSE/Products/SLE-SDK/12-SP3/ppc64le/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-SDK12-SP3-Debuginfo-Pool for ppc64le SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-packagehub-12-sp3-ppc64le-sap-sp3", + "parent_channel_label": "sle12-sp3-sap-pool-ppc64le", + "product_id": 1531, + "repository_id": 2451, + "parent_product_id": 1572, + "root_product_id": 1572, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-12-SP3_ppc64le/standard/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-12-SP3 for ppc64le SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-packagehub-12-sp3-debuginfo-ppc64le-sap-sp3", + "parent_channel_label": "sle12-sp3-sap-pool-ppc64le", + "product_id": 1531, + "repository_id": 2452, + "parent_product_id": 1572, + "root_product_id": 1572, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-12-SP3_ppc64le/standard_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-12-SP3-Debuginfo for ppc64le SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-packagehub-12-sp3-pool-ppc64le-sap-sp3", + "parent_channel_label": "sle12-sp3-sap-pool-ppc64le", + "product_id": 1531, + "repository_id": 2453, + "parent_product_id": 1572, + "root_product_id": 1572, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-12-SP3_ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-12-SP3-Pool for ppc64le SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-live-patching12-sp3-updates-ppc64le-sap-sp3", + "parent_channel_label": "sle12-sp3-sap-pool-ppc64le", + "product_id": 1537, + "repository_id": 2467, + "parent_product_id": 1572, + "root_product_id": 1572, + "update_tag": "SLE-Live-Patching", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Live-Patching/12-SP3/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Live-Patching12-SP3-Updates for ppc64le SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-live-patching12-sp3-debuginfo-updates-ppc64le-sap-sp3", + "parent_channel_label": "sle12-sp3-sap-pool-ppc64le", + "product_id": 1537, + "repository_id": 2468, + "parent_product_id": 1572, + "root_product_id": 1572, + "update_tag": "SLE-Live-Patching", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Live-Patching/12-SP3/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Live-Patching12-SP3-Debuginfo-Updates for ppc64le SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-live-patching12-sp3-pool-ppc64le-sap-sp3", + "parent_channel_label": "sle12-sp3-sap-pool-ppc64le", + "product_id": 1537, + "repository_id": 2469, + "parent_product_id": 1572, + "root_product_id": 1572, + "update_tag": "SLE-Live-Patching", + "url": "https://updates.suse.com/SUSE/Products/SLE-Live-Patching/12-SP3/ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Live-Patching12-SP3-Pool for ppc64le SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-live-patching12-sp3-debuginfo-pool-ppc64le-sap-sp3", + "parent_channel_label": "sle12-sp3-sap-pool-ppc64le", + "product_id": 1537, + "repository_id": 2470, + "parent_product_id": 1572, + "root_product_id": 1572, + "update_tag": "SLE-Live-Patching", + "url": "https://updates.suse.com/SUSE/Products/SLE-Live-Patching/12-SP3/ppc64le/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Live-Patching12-SP3-Debuginfo-Pool for ppc64le SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-manager-tools12-beta-updates-ppc64le-sap-sp3", + "parent_channel_label": "sle12-sp3-sap-pool-ppc64le", + "product_id": 1745, + "repository_id": 3067, + "parent_product_id": 1572, + "root_product_id": 1572, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/12-BETA/ppc64le/update/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools12-BETA-Updates for ppc64le SAP SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools12-beta-debuginfo-updates-ppc64le-sap-sp3", + "parent_channel_label": "sle12-sp3-sap-pool-ppc64le", + "product_id": 1745, + "repository_id": 3068, + "parent_product_id": 1572, + "root_product_id": 1572, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/12-BETA/ppc64le/update_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools12-BETA-Debuginfo-Updates for ppc64le SAP SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools12-beta-pool-ppc64le-sap-sp3", + "parent_channel_label": "sle12-sp3-sap-pool-ppc64le", + "product_id": 1745, + "repository_id": 3069, + "parent_product_id": 1572, + "root_product_id": 1572, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/12-BETA/ppc64le/product/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools12-BETA-Pool for ppc64le SAP SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools12-beta-debuginfo-pool-ppc64le-sap-sp3", + "parent_channel_label": "sle12-sp3-sap-pool-ppc64le", + "product_id": 1745, + "repository_id": 3070, + "parent_product_id": 1572, + "root_product_id": 1572, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/12-BETA/ppc64le/product_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools12-BETA-Debuginfo-Pool for ppc64le SAP SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sles12-sp3-ltss-updates-ppc64le-sap", + "parent_channel_label": "sle12-sp3-sap-pool-ppc64le", + "product_id": 1930, + "repository_id": 3915, + "parent_product_id": 1572, + "root_product_id": 1572, + "update_tag": "SLE-SERVER", + "url": "https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-SP3-LTSS/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLES12-SP3-LTSS-Updates for ppc64le SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles12-sp3-ltss-debuginfo-updates-ppc64le-sap", + "parent_channel_label": "sle12-sp3-sap-pool-ppc64le", + "product_id": 1930, + "repository_id": 3916, + "parent_product_id": 1572, + "root_product_id": 1572, + "update_tag": "SLE-SERVER", + "url": "https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-SP3-LTSS/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLES12-SP3-LTSS-Debuginfo-Updates for ppc64le SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-sles15-updates-x86_64", + "parent_channel_label": "sle-product-sles15-pool-x86_64", + "product_id": 1575, + "repository_id": 2705, + "parent_product_id": null, + "root_product_id": 1575, + "update_tag": "SLE-Product-SLES", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-SLES/15/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-SLES15-Updates for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle15-installer-updates-x86_64", + "parent_channel_label": "sle-product-sles15-pool-x86_64", + "product_id": 1575, + "repository_id": 2706, + "parent_product_id": null, + "root_product_id": 1575, + "update_tag": "SLE-INSTALLER", + "url": "https://updates.suse.com/SUSE/Updates/SLE-INSTALLER/15/x86_64/update/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE15-Installer-Updates for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-sles15-pool-x86_64", + "parent_channel_label": null, + "product_id": 1575, + "repository_id": 2707, + "parent_product_id": null, + "root_product_id": 1575, + "update_tag": "SLE-Product-SLES", + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-SLES/15/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-SLES15-Pool for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-sles15-debuginfo-updates-x86_64", + "parent_channel_label": "sle-product-sles15-pool-x86_64", + "product_id": 1575, + "repository_id": 3114, + "parent_product_id": null, + "root_product_id": 1575, + "update_tag": "SLE-Product-SLES", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-SLES/15/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-SLES15-Debuginfo-Updates for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-sles15-debuginfo-pool-x86_64", + "parent_channel_label": "sle-product-sles15-pool-x86_64", + "product_id": 1575, + "repository_id": 3115, + "parent_product_id": null, + "root_product_id": 1575, + "update_tag": "SLE-Product-SLES", + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-SLES/15/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-SLES15-Debuginfo-Pool for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-basesystem15-updates-x86_64", + "parent_channel_label": "sle-product-sles15-pool-x86_64", + "product_id": 1576, + "repository_id": 2524, + "parent_product_id": 1575, + "root_product_id": 1575, + "update_tag": "SLE-Module-Basesystem", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Basesystem15-Updates for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-basesystem15-debuginfo-updates-x86_64", + "parent_channel_label": "sle-product-sles15-pool-x86_64", + "product_id": 1576, + "repository_id": 2525, + "parent_product_id": 1575, + "root_product_id": 1575, + "update_tag": "SLE-Module-Basesystem", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Basesystem15-Debuginfo-Updates for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-basesystem15-pool-x86_64", + "parent_channel_label": "sle-product-sles15-pool-x86_64", + "product_id": 1576, + "repository_id": 2526, + "parent_product_id": 1575, + "root_product_id": 1575, + "update_tag": "SLE-Module-Basesystem", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Basesystem15-Pool for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-basesystem15-debuginfo-pool-x86_64", + "parent_channel_label": "sle-product-sles15-pool-x86_64", + "product_id": 1576, + "repository_id": 2527, + "parent_product_id": 1575, + "root_product_id": 1575, + "update_tag": "SLE-Module-Basesystem", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Basesystem15-Debuginfo-Pool for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-desktop-applications15-updates-x86_64", + "parent_channel_label": "sle-product-sles15-pool-x86_64", + "product_id": 1578, + "repository_id": 2534, + "parent_product_id": 1576, + "root_product_id": 1575, + "update_tag": "SLE-Module-Desktop-Applications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Desktop-Applications15-Updates for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-desktop-applications15-debuginfo-updates-x86_64", + "parent_channel_label": "sle-product-sles15-pool-x86_64", + "product_id": 1578, + "repository_id": 2535, + "parent_product_id": 1576, + "root_product_id": 1575, + "update_tag": "SLE-Module-Desktop-Applications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Desktop-Applications15-Debuginfo-Updates for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-desktop-applications15-pool-x86_64", + "parent_channel_label": "sle-product-sles15-pool-x86_64", + "product_id": 1578, + "repository_id": 2536, + "parent_product_id": 1576, + "root_product_id": 1575, + "update_tag": "SLE-Module-Desktop-Applications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Desktop-Applications15-Pool for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-desktop-applications15-debuginfo-pool-x86_64", + "parent_channel_label": "sle-product-sles15-pool-x86_64", + "product_id": 1578, + "repository_id": 2537, + "parent_product_id": 1576, + "root_product_id": 1575, + "update_tag": "SLE-Module-Desktop-Applications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Desktop-Applications15-Debuginfo-Pool for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-devtools15-updates-x86_64", + "parent_channel_label": "sle-product-sles15-pool-x86_64", + "product_id": 1579, + "repository_id": 2539, + "parent_product_id": 1578, + "root_product_id": 1575, + "update_tag": "SLE-Module-Development-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-DevTools15-Updates for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-devtools15-debuginfo-updates-x86_64", + "parent_channel_label": "sle-product-sles15-pool-x86_64", + "product_id": 1579, + "repository_id": 2540, + "parent_product_id": 1578, + "root_product_id": 1575, + "update_tag": "SLE-Module-Development-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-DevTools15-Debuginfo-Updates for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-devtools15-pool-x86_64", + "parent_channel_label": "sle-product-sles15-pool-x86_64", + "product_id": 1579, + "repository_id": 2541, + "parent_product_id": 1578, + "root_product_id": 1575, + "update_tag": "SLE-Module-Development-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-DevTools15-Pool for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-devtools15-debuginfo-pool-x86_64", + "parent_channel_label": "sle-product-sles15-pool-x86_64", + "product_id": 1579, + "repository_id": 2542, + "parent_product_id": 1578, + "root_product_id": 1575, + "update_tag": "SLE-Module-Development-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-DevTools15-Debuginfo-Pool for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-we15-updates-x86_64", + "parent_channel_label": "sle-product-sles15-pool-x86_64", + "product_id": 1583, + "repository_id": 2742, + "parent_product_id": 1578, + "root_product_id": 1575, + "update_tag": "SLE-Product-WE", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-WE/15/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-WE15-Updates for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-we15-debuginfo-updates-x86_64", + "parent_channel_label": "sle-product-sles15-pool-x86_64", + "product_id": 1583, + "repository_id": 2743, + "parent_product_id": 1578, + "root_product_id": 1575, + "update_tag": "SLE-Product-WE", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-WE/15/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-WE15-Debuginfo-Updates for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-we15-pool-x86_64", + "parent_channel_label": "sle-product-sles15-pool-x86_64", + "product_id": 1583, + "repository_id": 2744, + "parent_product_id": 1578, + "root_product_id": 1575, + "update_tag": "SLE-Product-WE", + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-WE/15/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-WE15-Pool for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-we15-debuginfo-pool-x86_64", + "parent_channel_label": "sle-product-sles15-pool-x86_64", + "product_id": 1583, + "repository_id": 2745, + "parent_product_id": 1578, + "root_product_id": 1575, + "update_tag": "SLE-Product-WE", + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-WE/15/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-WE15-Debuginfo-Pool for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-15-ga-desktop-nvidia-driver-we", + "parent_channel_label": "sle-product-sles15-pool-x86_64", + "product_id": 1583, + "repository_id": 2747, + "parent_product_id": 1578, + "root_product_id": 1575, + "update_tag": null, + "url": "https://download.nvidia.com/suse/sle15/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-15-GA-Desktop-NVIDIA-Driver for x86_64 WE", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-server-applications15-updates-x86_64", + "parent_channel_label": "sle-product-sles15-pool-x86_64", + "product_id": 1580, + "repository_id": 2544, + "parent_product_id": 1576, + "root_product_id": 1575, + "update_tag": "SLE-Module-Server-Applications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Server-Applications15-Updates for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-server-applications15-debuginfo-updates-x86_64", + "parent_channel_label": "sle-product-sles15-pool-x86_64", + "product_id": 1580, + "repository_id": 2545, + "parent_product_id": 1576, + "root_product_id": 1575, + "update_tag": "SLE-Module-Server-Applications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Server-Applications15-Debuginfo-Updates for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-server-applications15-pool-x86_64", + "parent_channel_label": "sle-product-sles15-pool-x86_64", + "product_id": 1580, + "repository_id": 2546, + "parent_product_id": 1576, + "root_product_id": 1575, + "update_tag": "SLE-Module-Server-Applications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Server-Applications15-Pool for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-server-applications15-debuginfo-pool-x86_64", + "parent_channel_label": "sle-product-sles15-pool-x86_64", + "product_id": 1580, + "repository_id": 2547, + "parent_product_id": 1576, + "root_product_id": 1575, + "update_tag": "SLE-Module-Server-Applications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Server-Applications15-Debuginfo-Pool for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-legacy15-updates-x86_64", + "parent_channel_label": "sle-product-sles15-pool-x86_64", + "product_id": 1581, + "repository_id": 2549, + "parent_product_id": 1580, + "root_product_id": 1575, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/15/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy15-Updates for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-legacy15-debuginfo-updates-x86_64", + "parent_channel_label": "sle-product-sles15-pool-x86_64", + "product_id": 1581, + "repository_id": 2550, + "parent_product_id": 1580, + "root_product_id": 1575, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/15/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy15-Debuginfo-Updates for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-legacy15-pool-x86_64", + "parent_channel_label": "sle-product-sles15-pool-x86_64", + "product_id": 1581, + "repository_id": 2551, + "parent_product_id": 1580, + "root_product_id": 1575, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy15-Pool for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-legacy15-debuginfo-pool-x86_64", + "parent_channel_label": "sle-product-sles15-pool-x86_64", + "product_id": 1581, + "repository_id": 2552, + "parent_product_id": 1580, + "root_product_id": 1575, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy15-Debuginfo-Pool for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-ha15-updates-x86_64", + "parent_channel_label": "sle-product-sles15-pool-x86_64", + "product_id": 1582, + "repository_id": 2754, + "parent_product_id": 1580, + "root_product_id": 1575, + "update_tag": "SLE-Product-HA", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-HA/15/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HA15-Updates for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-ha15-debuginfo-updates-x86_64", + "parent_channel_label": "sle-product-sles15-pool-x86_64", + "product_id": 1582, + "repository_id": 2755, + "parent_product_id": 1580, + "root_product_id": 1575, + "update_tag": "SLE-Product-HA", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-HA/15/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HA15-Debuginfo-Updates for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-ha15-pool-x86_64", + "parent_channel_label": "sle-product-sles15-pool-x86_64", + "product_id": 1582, + "repository_id": 2756, + "parent_product_id": 1580, + "root_product_id": 1575, + "update_tag": "SLE-Product-HA", + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-HA/15/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HA15-Pool for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-ha15-debuginfo-pool-x86_64", + "parent_channel_label": "sle-product-sles15-pool-x86_64", + "product_id": 1582, + "repository_id": 2757, + "parent_product_id": 1580, + "root_product_id": 1575, + "update_tag": "SLE-Product-HA", + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-HA/15/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HA15-Debuginfo-Pool for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud15-updates-x86_64", + "parent_channel_label": "sle-product-sles15-pool-x86_64", + "product_id": 1611, + "repository_id": 2673, + "parent_product_id": 1580, + "root_product_id": 1575, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/15/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud15-Updates for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud15-debuginfo-updates-x86_64", + "parent_channel_label": "sle-product-sles15-pool-x86_64", + "product_id": 1611, + "repository_id": 2674, + "parent_product_id": 1580, + "root_product_id": 1575, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/15/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud15-Debuginfo-Updates for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud15-pool-x86_64", + "parent_channel_label": "sle-product-sles15-pool-x86_64", + "product_id": 1611, + "repository_id": 2675, + "parent_product_id": 1580, + "root_product_id": 1575, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud15-Pool for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud15-debuginfo-pool-x86_64", + "parent_channel_label": "sle-product-sles15-pool-x86_64", + "product_id": 1611, + "repository_id": 2676, + "parent_product_id": 1580, + "root_product_id": 1575, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud15-Debuginfo-Pool for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting15-updates-x86_64", + "parent_channel_label": "sle-product-sles15-pool-x86_64", + "product_id": 1721, + "repository_id": 2972, + "parent_product_id": 1580, + "root_product_id": 1575, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/15/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Web-Scripting15-Updates for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting15-debuginfo-updates-x86_64", + "parent_channel_label": "sle-product-sles15-pool-x86_64", + "product_id": 1721, + "repository_id": 2973, + "parent_product_id": 1580, + "root_product_id": 1575, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/15/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Web-Scripting15-Debuginfo-Updates for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting15-pool-x86_64", + "parent_channel_label": "sle-product-sles15-pool-x86_64", + "product_id": 1721, + "repository_id": 2974, + "parent_product_id": 1580, + "root_product_id": 1575, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Web-Scripting15-Pool for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting15-debuginfo-pool-x86_64", + "parent_channel_label": "sle-product-sles15-pool-x86_64", + "product_id": 1721, + "repository_id": 2975, + "parent_product_id": 1580, + "root_product_id": 1575, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Web-Scripting15-Debuginfo-Pool for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-containers15-updates-x86_64", + "parent_channel_label": "sle-product-sles15-pool-x86_64", + "product_id": 1642, + "repository_id": 2864, + "parent_product_id": 1576, + "root_product_id": 1575, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/15/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers15-Updates for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-containers15-debuginfo-updates-x86_64", + "parent_channel_label": "sle-product-sles15-pool-x86_64", + "product_id": 1642, + "repository_id": 2865, + "parent_product_id": 1576, + "root_product_id": 1575, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/15/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers15-Debuginfo-Updates for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-containers15-pool-x86_64", + "parent_channel_label": "sle-product-sles15-pool-x86_64", + "product_id": 1642, + "repository_id": 2866, + "parent_product_id": 1576, + "root_product_id": 1575, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers15-Pool for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-containers15-debuginfo-pool-x86_64", + "parent_channel_label": "sle-product-sles15-pool-x86_64", + "product_id": 1642, + "repository_id": 2867, + "parent_product_id": 1576, + "root_product_id": 1575, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers15-Debuginfo-Pool for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-manager-tools15-updates-x86_64", + "parent_channel_label": "sle-product-sles15-pool-x86_64", + "product_id": 1712, + "repository_id": 2932, + "parent_product_id": 1576, + "root_product_id": 1575, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/15/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-Updates for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools15-debuginfo-updates-x86_64", + "parent_channel_label": "sle-product-sles15-pool-x86_64", + "product_id": 1712, + "repository_id": 2933, + "parent_product_id": 1576, + "root_product_id": 1575, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/15/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-Debuginfo-Updates for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools15-pool-x86_64", + "parent_channel_label": "sle-product-sles15-pool-x86_64", + "product_id": 1712, + "repository_id": 2934, + "parent_product_id": 1576, + "root_product_id": 1575, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/15/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-Pool for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools15-debuginfo-pool-x86_64", + "parent_channel_label": "sle-product-sles15-pool-x86_64", + "product_id": 1712, + "repository_id": 2935, + "parent_product_id": 1576, + "root_product_id": 1575, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/15/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-Debuginfo-Pool for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools15-beta-updates-x86_64", + "parent_channel_label": "sle-product-sles15-pool-x86_64", + "product_id": 1928, + "repository_id": 3897, + "parent_product_id": 1712, + "root_product_id": 1575, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/15-BETA/x86_64/update/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-BETA-Updates for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools15-beta-debuginfo-updates-x86_64", + "parent_channel_label": "sle-product-sles15-pool-x86_64", + "product_id": 1928, + "repository_id": 3898, + "parent_product_id": 1712, + "root_product_id": 1575, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/15-BETA/x86_64/update_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-BETA-Debuginfo-Updates for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools15-beta-pool-x86_64", + "parent_channel_label": "sle-product-sles15-pool-x86_64", + "product_id": 1928, + "repository_id": 3908, + "parent_product_id": 1712, + "root_product_id": 1575, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/15-BETA/x86_64/product/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-BETA-Pool for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools15-beta-debuginfo-pool-x86_64", + "parent_channel_label": "sle-product-sles15-pool-x86_64", + "product_id": 1928, + "repository_id": 3909, + "parent_product_id": 1712, + "root_product_id": 1575, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/15-BETA/x86_64/product_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-BETA-Debuginfo-Pool for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-module-cap-tools15-updates-x86_64", + "parent_channel_label": "sle-product-sles15-pool-x86_64", + "product_id": 1728, + "repository_id": 3000, + "parent_product_id": 1576, + "root_product_id": 1575, + "update_tag": "SLE-Module-CAP-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-CAP-Tools/15/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-CAP-Tools15-Updates for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-cap-tools15-debuginfo-updates-x86_64", + "parent_channel_label": "sle-product-sles15-pool-x86_64", + "product_id": 1728, + "repository_id": 3001, + "parent_product_id": 1576, + "root_product_id": 1575, + "update_tag": "SLE-Module-CAP-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-CAP-Tools/15/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-CAP-Tools15-Debuginfo-Updates for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-cap-tools15-pool-x86_64", + "parent_channel_label": "sle-product-sles15-pool-x86_64", + "product_id": 1728, + "repository_id": 3002, + "parent_product_id": 1576, + "root_product_id": 1575, + "update_tag": "SLE-Module-CAP-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-CAP-Tools/15/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-CAP-Tools15-Pool for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-cap-tools15-debuginfo-pool-x86_64", + "parent_channel_label": "sle-product-sles15-pool-x86_64", + "product_id": 1728, + "repository_id": 3003, + "parent_product_id": 1576, + "root_product_id": 1575, + "update_tag": "SLE-Module-CAP-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-CAP-Tools/15/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-CAP-Tools15-Debuginfo-Pool for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-live-patching15-updates-x86_64", + "parent_channel_label": "sle-product-sles15-pool-x86_64", + "product_id": 1736, + "repository_id": 3033, + "parent_product_id": 1576, + "root_product_id": 1575, + "update_tag": "SLE-Module-Live-Patching", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Live-Patching/15/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Live-Patching15-Updates for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-live-patching15-debuginfo-updates-x86_64", + "parent_channel_label": "sle-product-sles15-pool-x86_64", + "product_id": 1736, + "repository_id": 3034, + "parent_product_id": 1576, + "root_product_id": 1575, + "update_tag": "SLE-Module-Live-Patching", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Live-Patching/15/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Live-Patching15-Debuginfo-Updates for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-live-patching15-pool-x86_64", + "parent_channel_label": "sle-product-sles15-pool-x86_64", + "product_id": 1736, + "repository_id": 3035, + "parent_product_id": 1576, + "root_product_id": 1575, + "update_tag": "SLE-Module-Live-Patching", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Live-Patching/15/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Live-Patching15-Pool for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-live-patching15-debuginfo-pool-x86_64", + "parent_channel_label": "sle-product-sles15-pool-x86_64", + "product_id": 1736, + "repository_id": 3036, + "parent_product_id": 1576, + "root_product_id": 1575, + "update_tag": "SLE-Module-Live-Patching", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Live-Patching/15/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Live-Patching15-Debuginfo-Pool for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-packagehub-15-x86_64", + "parent_channel_label": "sle-product-sles15-pool-x86_64", + "product_id": 1743, + "repository_id": 3059, + "parent_product_id": 1576, + "root_product_id": 1575, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-15_x86_64/standard/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-15-Standard-Pool for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-packagehub-15-debuginfo-x86_64", + "parent_channel_label": "sle-product-sles15-pool-x86_64", + "product_id": 1743, + "repository_id": 3060, + "parent_product_id": 1576, + "root_product_id": 1575, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-15_x86_64/standard_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-15-Debuginfo for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-packagehub-15-pool-x86_64", + "parent_channel_label": "sle-product-sles15-pool-x86_64", + "product_id": 1743, + "repository_id": 3061, + "parent_product_id": 1576, + "root_product_id": 1575, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-15_x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-15-Pool for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-packagehub-subpackages15-updates-x86_64", + "parent_channel_label": "sle-product-sles15-pool-x86_64", + "product_id": 1743, + "repository_id": 3182, + "parent_product_id": 1576, + "root_product_id": 1575, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Packagehub-Subpackages15-Updates for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-packagehub-subpackages15-debuginfo-updates-x86_64", + "parent_channel_label": "sle-product-sles15-pool-x86_64", + "product_id": 1743, + "repository_id": 3183, + "parent_product_id": 1576, + "root_product_id": 1575, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Packagehub-Subpackages15-Debuginfo-Updates for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-packagehub-subpackages15-pool-x86_64", + "parent_channel_label": "sle-product-sles15-pool-x86_64", + "product_id": 1743, + "repository_id": 3184, + "parent_product_id": 1576, + "root_product_id": 1575, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Packagehub-Subpackages15-Pool for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-packagehub-subpackages15-debuginfo-pool-x86_64", + "parent_channel_label": "sle-product-sles15-pool-x86_64", + "product_id": 1743, + "repository_id": 3185, + "parent_product_id": 1576, + "root_product_id": 1575, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Packagehub-Subpackages15-Debuginfo-Pool for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-sles15-ltss-updates-x86_64", + "parent_channel_label": "sle-product-sles15-pool-x86_64", + "product_id": 2056, + "repository_id": 4390, + "parent_product_id": 1575, + "root_product_id": 1575, + "update_tag": "SLE-Product-SLES", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-SLES/15-LTSS/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-SLES15-LTSS-Updates for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-sles15-debuginfo-ltss-updates-x86_64", + "parent_channel_label": "sle-product-sles15-pool-x86_64", + "product_id": 2056, + "repository_id": 4391, + "parent_product_id": 1575, + "root_product_id": 1575, + "update_tag": "SLE-Product-SLES", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-SLES/15-LTSS/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-SLES15-Debuginfo-LTSS-Updates for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-sles15-updates-s390x", + "parent_channel_label": "sle-product-sles15-pool-s390x", + "product_id": 1584, + "repository_id": 2708, + "parent_product_id": null, + "root_product_id": 1584, + "update_tag": "SLE-Product-SLES", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-SLES/15/s390x/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-SLES15-Updates for s390x", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle15-installer-updates-s390x", + "parent_channel_label": "sle-product-sles15-pool-s390x", + "product_id": 1584, + "repository_id": 2709, + "parent_product_id": null, + "root_product_id": 1584, + "update_tag": "SLE-INSTALLER", + "url": "https://updates.suse.com/SUSE/Updates/SLE-INSTALLER/15/s390x/update/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE15-Installer-Updates for s390x", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-sles15-pool-s390x", + "parent_channel_label": null, + "product_id": 1584, + "repository_id": 2710, + "parent_product_id": null, + "root_product_id": 1584, + "update_tag": "SLE-Product-SLES", + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-SLES/15/s390x/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-SLES15-Pool for s390x", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-sles15-debuginfo-updates-s390x", + "parent_channel_label": "sle-product-sles15-pool-s390x", + "product_id": 1584, + "repository_id": 3111, + "parent_product_id": null, + "root_product_id": 1584, + "update_tag": "SLE-Product-SLES", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-SLES/15/s390x/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-SLES15-Debuginfo-Updates for s390x", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-sles15-debuginfo-pool-s390x", + "parent_channel_label": "sle-product-sles15-pool-s390x", + "product_id": 1584, + "repository_id": 3112, + "parent_product_id": null, + "root_product_id": 1584, + "update_tag": "SLE-Product-SLES", + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-SLES/15/s390x/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-SLES15-Debuginfo-Pool for s390x", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-basesystem15-updates-s390x", + "parent_channel_label": "sle-product-sles15-pool-s390x", + "product_id": 1587, + "repository_id": 2564, + "parent_product_id": 1584, + "root_product_id": 1584, + "update_tag": "SLE-Module-Basesystem", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15/s390x/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Basesystem15-Updates for s390x", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-basesystem15-debuginfo-updates-s390x", + "parent_channel_label": "sle-product-sles15-pool-s390x", + "product_id": 1587, + "repository_id": 2565, + "parent_product_id": 1584, + "root_product_id": 1584, + "update_tag": "SLE-Module-Basesystem", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15/s390x/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Basesystem15-Debuginfo-Updates for s390x", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-basesystem15-pool-s390x", + "parent_channel_label": "sle-product-sles15-pool-s390x", + "product_id": 1587, + "repository_id": 2566, + "parent_product_id": 1584, + "root_product_id": 1584, + "update_tag": "SLE-Module-Basesystem", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15/s390x/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Basesystem15-Pool for s390x", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-basesystem15-debuginfo-pool-s390x", + "parent_channel_label": "sle-product-sles15-pool-s390x", + "product_id": 1587, + "repository_id": 2567, + "parent_product_id": 1584, + "root_product_id": 1584, + "update_tag": "SLE-Module-Basesystem", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15/s390x/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Basesystem15-Debuginfo-Pool for s390x", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-desktop-applications15-updates-s390x", + "parent_channel_label": "sle-product-sles15-pool-s390x", + "product_id": 1593, + "repository_id": 2593, + "parent_product_id": 1587, + "root_product_id": 1584, + "update_tag": "SLE-Module-Desktop-Applications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15/s390x/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Desktop-Applications15-Updates for s390x", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-desktop-applications15-debuginfo-updates-s390x", + "parent_channel_label": "sle-product-sles15-pool-s390x", + "product_id": 1593, + "repository_id": 2594, + "parent_product_id": 1587, + "root_product_id": 1584, + "update_tag": "SLE-Module-Desktop-Applications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15/s390x/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Desktop-Applications15-Debuginfo-Updates for s390x", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-desktop-applications15-pool-s390x", + "parent_channel_label": "sle-product-sles15-pool-s390x", + "product_id": 1593, + "repository_id": 2595, + "parent_product_id": 1587, + "root_product_id": 1584, + "update_tag": "SLE-Module-Desktop-Applications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15/s390x/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Desktop-Applications15-Pool for s390x", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-desktop-applications15-debuginfo-pool-s390x", + "parent_channel_label": "sle-product-sles15-pool-s390x", + "product_id": 1593, + "repository_id": 2596, + "parent_product_id": 1587, + "root_product_id": 1584, + "update_tag": "SLE-Module-Desktop-Applications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15/s390x/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Desktop-Applications15-Debuginfo-Pool for s390x", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-devtools15-updates-s390x", + "parent_channel_label": "sle-product-sles15-pool-s390x", + "product_id": 1596, + "repository_id": 2608, + "parent_product_id": 1593, + "root_product_id": 1584, + "update_tag": "SLE-Module-Development-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15/s390x/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-DevTools15-Updates for s390x", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-devtools15-debuginfo-updates-s390x", + "parent_channel_label": "sle-product-sles15-pool-s390x", + "product_id": 1596, + "repository_id": 2609, + "parent_product_id": 1593, + "root_product_id": 1584, + "update_tag": "SLE-Module-Development-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15/s390x/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-DevTools15-Debuginfo-Updates for s390x", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-devtools15-pool-s390x", + "parent_channel_label": "sle-product-sles15-pool-s390x", + "product_id": 1596, + "repository_id": 2610, + "parent_product_id": 1593, + "root_product_id": 1584, + "update_tag": "SLE-Module-Development-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15/s390x/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-DevTools15-Pool for s390x", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-devtools15-debuginfo-pool-s390x", + "parent_channel_label": "sle-product-sles15-pool-s390x", + "product_id": 1596, + "repository_id": 2611, + "parent_product_id": 1593, + "root_product_id": 1584, + "update_tag": "SLE-Module-Development-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15/s390x/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-DevTools15-Debuginfo-Pool for s390x", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-server-applications15-updates-s390x", + "parent_channel_label": "sle-product-sles15-pool-s390x", + "product_id": 1599, + "repository_id": 2623, + "parent_product_id": 1587, + "root_product_id": 1584, + "update_tag": "SLE-Module-Server-Applications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15/s390x/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Server-Applications15-Updates for s390x", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-server-applications15-debuginfo-updates-s390x", + "parent_channel_label": "sle-product-sles15-pool-s390x", + "product_id": 1599, + "repository_id": 2624, + "parent_product_id": 1587, + "root_product_id": 1584, + "update_tag": "SLE-Module-Server-Applications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15/s390x/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Server-Applications15-Debuginfo-Updates for s390x", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-server-applications15-pool-s390x", + "parent_channel_label": "sle-product-sles15-pool-s390x", + "product_id": 1599, + "repository_id": 2625, + "parent_product_id": 1587, + "root_product_id": 1584, + "update_tag": "SLE-Module-Server-Applications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15/s390x/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Server-Applications15-Pool for s390x", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-server-applications15-debuginfo-pool-s390x", + "parent_channel_label": "sle-product-sles15-pool-s390x", + "product_id": 1599, + "repository_id": 2626, + "parent_product_id": 1587, + "root_product_id": 1584, + "update_tag": "SLE-Module-Server-Applications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15/s390x/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Server-Applications15-Debuginfo-Pool for s390x", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-legacy15-updates-s390x", + "parent_channel_label": "sle-product-sles15-pool-s390x", + "product_id": 1602, + "repository_id": 2638, + "parent_product_id": 1599, + "root_product_id": 1584, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/15/s390x/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy15-Updates for s390x", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-legacy15-debuginfo-updates-s390x", + "parent_channel_label": "sle-product-sles15-pool-s390x", + "product_id": 1602, + "repository_id": 2639, + "parent_product_id": 1599, + "root_product_id": 1584, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/15/s390x/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy15-Debuginfo-Updates for s390x", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-legacy15-pool-s390x", + "parent_channel_label": "sle-product-sles15-pool-s390x", + "product_id": 1602, + "repository_id": 2640, + "parent_product_id": 1599, + "root_product_id": 1584, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15/s390x/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy15-Pool for s390x", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-legacy15-debuginfo-pool-s390x", + "parent_channel_label": "sle-product-sles15-pool-s390x", + "product_id": 1602, + "repository_id": 2641, + "parent_product_id": 1599, + "root_product_id": 1584, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15/s390x/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy15-Debuginfo-Pool for s390x", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-ha15-updates-s390x", + "parent_channel_label": "sle-product-sles15-pool-s390x", + "product_id": 1605, + "repository_id": 2759, + "parent_product_id": 1599, + "root_product_id": 1584, + "update_tag": "SLE-Product-HA", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-HA/15/s390x/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HA15-Updates for s390x", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-ha15-debuginfo-updates-s390x", + "parent_channel_label": "sle-product-sles15-pool-s390x", + "product_id": 1605, + "repository_id": 2760, + "parent_product_id": 1599, + "root_product_id": 1584, + "update_tag": "SLE-Product-HA", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-HA/15/s390x/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HA15-Debuginfo-Updates for s390x", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-ha15-pool-s390x", + "parent_channel_label": "sle-product-sles15-pool-s390x", + "product_id": 1605, + "repository_id": 2761, + "parent_product_id": 1599, + "root_product_id": 1584, + "update_tag": "SLE-Product-HA", + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-HA/15/s390x/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HA15-Pool for s390x", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-ha15-debuginfo-pool-s390x", + "parent_channel_label": "sle-product-sles15-pool-s390x", + "product_id": 1605, + "repository_id": 2762, + "parent_product_id": 1599, + "root_product_id": 1584, + "update_tag": "SLE-Product-HA", + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-HA/15/s390x/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HA15-Debuginfo-Pool for s390x", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud15-updates-s390x", + "parent_channel_label": "sle-product-sles15-pool-s390x", + "product_id": 1646, + "repository_id": 2883, + "parent_product_id": 1599, + "root_product_id": 1584, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/15/s390x/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud15-Updates for s390x", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud15-debuginfo-updates-s390x", + "parent_channel_label": "sle-product-sles15-pool-s390x", + "product_id": 1646, + "repository_id": 2884, + "parent_product_id": 1599, + "root_product_id": 1584, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/15/s390x/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud15-Debuginfo-Updates for s390x", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud15-pool-s390x", + "parent_channel_label": "sle-product-sles15-pool-s390x", + "product_id": 1646, + "repository_id": 2885, + "parent_product_id": 1599, + "root_product_id": 1584, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15/s390x/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud15-Pool for s390x", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud15-debuginfo-pool-s390x", + "parent_channel_label": "sle-product-sles15-pool-s390x", + "product_id": 1646, + "repository_id": 2886, + "parent_product_id": 1599, + "root_product_id": 1584, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15/s390x/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud15-Debuginfo-Pool for s390x", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting15-updates-s390x", + "parent_channel_label": "sle-product-sles15-pool-s390x", + "product_id": 1720, + "repository_id": 2967, + "parent_product_id": 1599, + "root_product_id": 1584, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/15/s390x/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Web-Scripting15-Updates for s390x", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting15-debuginfo-updates-s390x", + "parent_channel_label": "sle-product-sles15-pool-s390x", + "product_id": 1720, + "repository_id": 2968, + "parent_product_id": 1599, + "root_product_id": 1584, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/15/s390x/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Web-Scripting15-Debuginfo-Updates for s390x", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting15-pool-s390x", + "parent_channel_label": "sle-product-sles15-pool-s390x", + "product_id": 1720, + "repository_id": 2969, + "parent_product_id": 1599, + "root_product_id": 1584, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15/s390x/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Web-Scripting15-Pool for s390x", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting15-debuginfo-pool-s390x", + "parent_channel_label": "sle-product-sles15-pool-s390x", + "product_id": 1720, + "repository_id": 2970, + "parent_product_id": 1599, + "root_product_id": 1584, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15/s390x/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Web-Scripting15-Debuginfo-Pool for s390x", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-containers15-updates-s390x", + "parent_channel_label": "sle-product-sles15-pool-s390x", + "product_id": 1641, + "repository_id": 2859, + "parent_product_id": 1587, + "root_product_id": 1584, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/15/s390x/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers15-Updates for s390x", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-containers15-debuginfo-updates-s390x", + "parent_channel_label": "sle-product-sles15-pool-s390x", + "product_id": 1641, + "repository_id": 2860, + "parent_product_id": 1587, + "root_product_id": 1584, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/15/s390x/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers15-Debuginfo-Updates for s390x", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-containers15-pool-s390x", + "parent_channel_label": "sle-product-sles15-pool-s390x", + "product_id": 1641, + "repository_id": 2861, + "parent_product_id": 1587, + "root_product_id": 1584, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15/s390x/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers15-Pool for s390x", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-containers15-debuginfo-pool-s390x", + "parent_channel_label": "sle-product-sles15-pool-s390x", + "product_id": 1641, + "repository_id": 2862, + "parent_product_id": 1587, + "root_product_id": 1584, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15/s390x/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers15-Debuginfo-Pool for s390x", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-manager-tools15-updates-s390x", + "parent_channel_label": "sle-product-sles15-pool-s390x", + "product_id": 1711, + "repository_id": 2927, + "parent_product_id": 1587, + "root_product_id": 1584, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/15/s390x/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-Updates for s390x", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools15-debuginfo-updates-s390x", + "parent_channel_label": "sle-product-sles15-pool-s390x", + "product_id": 1711, + "repository_id": 2928, + "parent_product_id": 1587, + "root_product_id": 1584, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/15/s390x/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-Debuginfo-Updates for s390x", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools15-pool-s390x", + "parent_channel_label": "sle-product-sles15-pool-s390x", + "product_id": 1711, + "repository_id": 2929, + "parent_product_id": 1587, + "root_product_id": 1584, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/15/s390x/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-Pool for s390x", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools15-debuginfo-pool-s390x", + "parent_channel_label": "sle-product-sles15-pool-s390x", + "product_id": 1711, + "repository_id": 2930, + "parent_product_id": 1587, + "root_product_id": 1584, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/15/s390x/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-Debuginfo-Pool for s390x", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools15-beta-updates-s390x", + "parent_channel_label": "sle-product-sles15-pool-s390x", + "product_id": 1927, + "repository_id": 3895, + "parent_product_id": 1711, + "root_product_id": 1584, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/15-BETA/s390x/update/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-BETA-Updates for s390x", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools15-beta-debuginfo-updates-s390x", + "parent_channel_label": "sle-product-sles15-pool-s390x", + "product_id": 1927, + "repository_id": 3896, + "parent_product_id": 1711, + "root_product_id": 1584, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/15-BETA/s390x/update_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-BETA-Debuginfo-Updates for s390x", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools15-beta-pool-s390x", + "parent_channel_label": "sle-product-sles15-pool-s390x", + "product_id": 1927, + "repository_id": 3905, + "parent_product_id": 1711, + "root_product_id": 1584, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/15-BETA/s390x/product/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-BETA-Pool for s390x", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools15-beta-debuginfo-pool-s390x", + "parent_channel_label": "sle-product-sles15-pool-s390x", + "product_id": 1927, + "repository_id": 3906, + "parent_product_id": 1711, + "root_product_id": 1584, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/15-BETA/s390x/product_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-BETA-Debuginfo-Pool for s390x", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "suse-packagehub-15-s390x", + "parent_channel_label": "sle-product-sles15-pool-s390x", + "product_id": 1742, + "repository_id": 3056, + "parent_product_id": 1587, + "root_product_id": 1584, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-15_s390x/standard/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-15-Standard-Pool for s390x", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-packagehub-15-debuginfo-s390x", + "parent_channel_label": "sle-product-sles15-pool-s390x", + "product_id": 1742, + "repository_id": 3057, + "parent_product_id": 1587, + "root_product_id": 1584, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-15_s390x/standard_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-15-Debuginfo for s390x", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-packagehub-15-pool-s390x", + "parent_channel_label": "sle-product-sles15-pool-s390x", + "product_id": 1742, + "repository_id": 3058, + "parent_product_id": 1587, + "root_product_id": 1584, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-15_s390x/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-15-Pool for s390x", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-packagehub-subpackages15-updates-s390x", + "parent_channel_label": "sle-product-sles15-pool-s390x", + "product_id": 1742, + "repository_id": 3177, + "parent_product_id": 1587, + "root_product_id": 1584, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15/s390x/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Packagehub-Subpackages15-Updates for s390x", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-packagehub-subpackages15-debuginfo-updates-s390x", + "parent_channel_label": "sle-product-sles15-pool-s390x", + "product_id": 1742, + "repository_id": 3178, + "parent_product_id": 1587, + "root_product_id": 1584, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15/s390x/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Packagehub-Subpackages15-Debuginfo-Updates for s390x", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-packagehub-subpackages15-pool-s390x", + "parent_channel_label": "sle-product-sles15-pool-s390x", + "product_id": 1742, + "repository_id": 3179, + "parent_product_id": 1587, + "root_product_id": 1584, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15/s390x/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Packagehub-Subpackages15-Pool for s390x", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-packagehub-subpackages15-debuginfo-pool-s390x", + "parent_channel_label": "sle-product-sles15-pool-s390x", + "product_id": 1742, + "repository_id": 3180, + "parent_product_id": 1587, + "root_product_id": 1584, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15/s390x/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Packagehub-Subpackages15-Debuginfo-Pool for s390x", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-sles15-ltss-updates-s390x", + "parent_channel_label": "sle-product-sles15-pool-s390x", + "product_id": 2055, + "repository_id": 4388, + "parent_product_id": 1584, + "root_product_id": 1584, + "update_tag": "SLE-Product-SLES", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-SLES/15-LTSS/s390x/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-SLES15-LTSS-Updates for s390x", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-sles15-debuginfo-ltss-updates-s390x", + "parent_channel_label": "sle-product-sles15-pool-s390x", + "product_id": 2055, + "repository_id": 4389, + "parent_product_id": 1584, + "root_product_id": 1584, + "update_tag": "SLE-Product-SLES", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-SLES/15-LTSS/s390x/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-SLES15-Debuginfo-LTSS-Updates for s390x", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-sles15-updates-ppc64le", + "parent_channel_label": "sle-product-sles15-pool-ppc64le", + "product_id": 1585, + "repository_id": 2711, + "parent_product_id": null, + "root_product_id": 1585, + "update_tag": "SLE-Product-SLES", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-SLES/15/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-SLES15-Updates for ppc64le", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle15-installer-updates-ppc64le", + "parent_channel_label": "sle-product-sles15-pool-ppc64le", + "product_id": 1585, + "repository_id": 2712, + "parent_product_id": null, + "root_product_id": 1585, + "update_tag": "SLE-INSTALLER", + "url": "https://updates.suse.com/SUSE/Updates/SLE-INSTALLER/15/ppc64le/update/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE15-Installer-Updates for ppc64le", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-sles15-pool-ppc64le", + "parent_channel_label": null, + "product_id": 1585, + "repository_id": 2713, + "parent_product_id": null, + "root_product_id": 1585, + "update_tag": "SLE-Product-SLES", + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-SLES/15/ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-SLES15-Pool for ppc64le", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-sles15-debuginfo-updates-ppc64le", + "parent_channel_label": "sle-product-sles15-pool-ppc64le", + "product_id": 1585, + "repository_id": 3108, + "parent_product_id": null, + "root_product_id": 1585, + "update_tag": "SLE-Product-SLES", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-SLES/15/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-SLES15-Debuginfo-Updates for ppc64le", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-sles15-debuginfo-pool-ppc64le", + "parent_channel_label": "sle-product-sles15-pool-ppc64le", + "product_id": 1585, + "repository_id": 3109, + "parent_product_id": null, + "root_product_id": 1585, + "update_tag": "SLE-Product-SLES", + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-SLES/15/ppc64le/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-SLES15-Debuginfo-Pool for ppc64le", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-basesystem15-updates-ppc64le", + "parent_channel_label": "sle-product-sles15-pool-ppc64le", + "product_id": 1588, + "repository_id": 2569, + "parent_product_id": 1585, + "root_product_id": 1585, + "update_tag": "SLE-Module-Basesystem", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Basesystem15-Updates for ppc64le", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-basesystem15-debuginfo-updates-ppc64le", + "parent_channel_label": "sle-product-sles15-pool-ppc64le", + "product_id": 1588, + "repository_id": 2570, + "parent_product_id": 1585, + "root_product_id": 1585, + "update_tag": "SLE-Module-Basesystem", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Basesystem15-Debuginfo-Updates for ppc64le", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-basesystem15-pool-ppc64le", + "parent_channel_label": "sle-product-sles15-pool-ppc64le", + "product_id": 1588, + "repository_id": 2571, + "parent_product_id": 1585, + "root_product_id": 1585, + "update_tag": "SLE-Module-Basesystem", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15/ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Basesystem15-Pool for ppc64le", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-basesystem15-debuginfo-pool-ppc64le", + "parent_channel_label": "sle-product-sles15-pool-ppc64le", + "product_id": 1588, + "repository_id": 2572, + "parent_product_id": 1585, + "root_product_id": 1585, + "update_tag": "SLE-Module-Basesystem", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15/ppc64le/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Basesystem15-Debuginfo-Pool for ppc64le", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-desktop-applications15-updates-ppc64le", + "parent_channel_label": "sle-product-sles15-pool-ppc64le", + "product_id": 1594, + "repository_id": 2598, + "parent_product_id": 1588, + "root_product_id": 1585, + "update_tag": "SLE-Module-Desktop-Applications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Desktop-Applications15-Updates for ppc64le", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-desktop-applications15-debuginfo-updates-ppc64le", + "parent_channel_label": "sle-product-sles15-pool-ppc64le", + "product_id": 1594, + "repository_id": 2599, + "parent_product_id": 1588, + "root_product_id": 1585, + "update_tag": "SLE-Module-Desktop-Applications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Desktop-Applications15-Debuginfo-Updates for ppc64le", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-desktop-applications15-pool-ppc64le", + "parent_channel_label": "sle-product-sles15-pool-ppc64le", + "product_id": 1594, + "repository_id": 2600, + "parent_product_id": 1588, + "root_product_id": 1585, + "update_tag": "SLE-Module-Desktop-Applications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15/ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Desktop-Applications15-Pool for ppc64le", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-desktop-applications15-debuginfo-pool-ppc64le", + "parent_channel_label": "sle-product-sles15-pool-ppc64le", + "product_id": 1594, + "repository_id": 2601, + "parent_product_id": 1588, + "root_product_id": 1585, + "update_tag": "SLE-Module-Desktop-Applications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15/ppc64le/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Desktop-Applications15-Debuginfo-Pool for ppc64le", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-devtools15-updates-ppc64le", + "parent_channel_label": "sle-product-sles15-pool-ppc64le", + "product_id": 1597, + "repository_id": 2613, + "parent_product_id": 1594, + "root_product_id": 1585, + "update_tag": "SLE-Module-Development-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-DevTools15-Updates for ppc64le", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-devtools15-debuginfo-updates-ppc64le", + "parent_channel_label": "sle-product-sles15-pool-ppc64le", + "product_id": 1597, + "repository_id": 2614, + "parent_product_id": 1594, + "root_product_id": 1585, + "update_tag": "SLE-Module-Development-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-DevTools15-Debuginfo-Updates for ppc64le", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-devtools15-pool-ppc64le", + "parent_channel_label": "sle-product-sles15-pool-ppc64le", + "product_id": 1597, + "repository_id": 2615, + "parent_product_id": 1594, + "root_product_id": 1585, + "update_tag": "SLE-Module-Development-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15/ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-DevTools15-Pool for ppc64le", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-devtools15-debuginfo-pool-ppc64le", + "parent_channel_label": "sle-product-sles15-pool-ppc64le", + "product_id": 1597, + "repository_id": 2616, + "parent_product_id": 1594, + "root_product_id": 1585, + "update_tag": "SLE-Module-Development-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15/ppc64le/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-DevTools15-Debuginfo-Pool for ppc64le", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-server-applications15-updates-ppc64le", + "parent_channel_label": "sle-product-sles15-pool-ppc64le", + "product_id": 1600, + "repository_id": 2628, + "parent_product_id": 1588, + "root_product_id": 1585, + "update_tag": "SLE-Module-Server-Applications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Server-Applications15-Updates for ppc64le", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-server-applications15-debuginfo-updates-ppc64le", + "parent_channel_label": "sle-product-sles15-pool-ppc64le", + "product_id": 1600, + "repository_id": 2629, + "parent_product_id": 1588, + "root_product_id": 1585, + "update_tag": "SLE-Module-Server-Applications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Server-Applications15-Debuginfo-Updates for ppc64le", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-server-applications15-pool-ppc64le", + "parent_channel_label": "sle-product-sles15-pool-ppc64le", + "product_id": 1600, + "repository_id": 2630, + "parent_product_id": 1588, + "root_product_id": 1585, + "update_tag": "SLE-Module-Server-Applications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15/ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Server-Applications15-Pool for ppc64le", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-server-applications15-debuginfo-pool-ppc64le", + "parent_channel_label": "sle-product-sles15-pool-ppc64le", + "product_id": 1600, + "repository_id": 2631, + "parent_product_id": 1588, + "root_product_id": 1585, + "update_tag": "SLE-Module-Server-Applications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15/ppc64le/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Server-Applications15-Debuginfo-Pool for ppc64le", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-legacy15-updates-ppc64le", + "parent_channel_label": "sle-product-sles15-pool-ppc64le", + "product_id": 1603, + "repository_id": 2643, + "parent_product_id": 1600, + "root_product_id": 1585, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/15/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy15-Updates for ppc64le", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-legacy15-debuginfo-updates-ppc64le", + "parent_channel_label": "sle-product-sles15-pool-ppc64le", + "product_id": 1603, + "repository_id": 2644, + "parent_product_id": 1600, + "root_product_id": 1585, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/15/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy15-Debuginfo-Updates for ppc64le", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-legacy15-pool-ppc64le", + "parent_channel_label": "sle-product-sles15-pool-ppc64le", + "product_id": 1603, + "repository_id": 2645, + "parent_product_id": 1600, + "root_product_id": 1585, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15/ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy15-Pool for ppc64le", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-legacy15-debuginfo-pool-ppc64le", + "parent_channel_label": "sle-product-sles15-pool-ppc64le", + "product_id": 1603, + "repository_id": 2646, + "parent_product_id": 1600, + "root_product_id": 1585, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15/ppc64le/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy15-Debuginfo-Pool for ppc64le", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-ha15-updates-ppc64le", + "parent_channel_label": "sle-product-sles15-pool-ppc64le", + "product_id": 1606, + "repository_id": 2764, + "parent_product_id": 1600, + "root_product_id": 1585, + "update_tag": "SLE-Product-HA", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-HA/15/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HA15-Updates for ppc64le", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-ha15-debuginfo-updates-ppc64le", + "parent_channel_label": "sle-product-sles15-pool-ppc64le", + "product_id": 1606, + "repository_id": 2765, + "parent_product_id": 1600, + "root_product_id": 1585, + "update_tag": "SLE-Product-HA", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-HA/15/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HA15-Debuginfo-Updates for ppc64le", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-ha15-pool-ppc64le", + "parent_channel_label": "sle-product-sles15-pool-ppc64le", + "product_id": 1606, + "repository_id": 2766, + "parent_product_id": 1600, + "root_product_id": 1585, + "update_tag": "SLE-Product-HA", + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-HA/15/ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HA15-Pool for ppc64le", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-ha15-debuginfo-pool-ppc64le", + "parent_channel_label": "sle-product-sles15-pool-ppc64le", + "product_id": 1606, + "repository_id": 2767, + "parent_product_id": 1600, + "root_product_id": 1585, + "update_tag": "SLE-Product-HA", + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-HA/15/ppc64le/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HA15-Debuginfo-Pool for ppc64le", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud15-updates-ppc64le", + "parent_channel_label": "sle-product-sles15-pool-ppc64le", + "product_id": 1616, + "repository_id": 2687, + "parent_product_id": 1600, + "root_product_id": 1585, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/15/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud15-Updates for ppc64le", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud15-debuginfo-updates-ppc64le", + "parent_channel_label": "sle-product-sles15-pool-ppc64le", + "product_id": 1616, + "repository_id": 2688, + "parent_product_id": 1600, + "root_product_id": 1585, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/15/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud15-Debuginfo-Updates for ppc64le", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud15-pool-ppc64le", + "parent_channel_label": "sle-product-sles15-pool-ppc64le", + "product_id": 1616, + "repository_id": 2689, + "parent_product_id": 1600, + "root_product_id": 1585, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15/ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud15-Pool for ppc64le", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud15-debuginfo-pool-ppc64le", + "parent_channel_label": "sle-product-sles15-pool-ppc64le", + "product_id": 1616, + "repository_id": 2690, + "parent_product_id": 1600, + "root_product_id": 1585, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15/ppc64le/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud15-Debuginfo-Pool for ppc64le", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting15-updates-ppc64le", + "parent_channel_label": "sle-product-sles15-pool-ppc64le", + "product_id": 1719, + "repository_id": 2962, + "parent_product_id": 1600, + "root_product_id": 1585, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/15/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Web-Scripting15-Updates for ppc64le", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting15-debuginfo-updates-ppc64le", + "parent_channel_label": "sle-product-sles15-pool-ppc64le", + "product_id": 1719, + "repository_id": 2963, + "parent_product_id": 1600, + "root_product_id": 1585, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/15/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Web-Scripting15-Debuginfo-Updates for ppc64le", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting15-pool-ppc64le", + "parent_channel_label": "sle-product-sles15-pool-ppc64le", + "product_id": 1719, + "repository_id": 2964, + "parent_product_id": 1600, + "root_product_id": 1585, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15/ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Web-Scripting15-Pool for ppc64le", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting15-debuginfo-pool-ppc64le", + "parent_channel_label": "sle-product-sles15-pool-ppc64le", + "product_id": 1719, + "repository_id": 2965, + "parent_product_id": 1600, + "root_product_id": 1585, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15/ppc64le/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Web-Scripting15-Debuginfo-Pool for ppc64le", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "ibm-power-adv-toolchain", + "parent_channel_label": "sle-product-sles15-pool-ppc64le", + "product_id": 2076, + "repository_id": 4430, + "parent_product_id": 1600, + "root_product_id": 1585, + "update_tag": null, + "url": "https://public.dhe.ibm.com/software/server/POWER/Linux/toolchain/at/suse/SLES_15/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "IBM-POWER-Adv-Toolchain for ppc64le", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "ibm-power-tools", + "parent_channel_label": "sle-product-sles15-pool-ppc64le", + "product_id": 2077, + "repository_id": 4431, + "parent_product_id": 1600, + "root_product_id": 1585, + "update_tag": null, + "url": "https://public.dhe.ibm.com/software/server/POWER/Linux/yum/OSS/SLES/15/ppc64le/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "IBM-POWER-Tools for ppc64le", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-containers15-updates-ppc64le", + "parent_channel_label": "sle-product-sles15-pool-ppc64le", + "product_id": 1640, + "repository_id": 2854, + "parent_product_id": 1588, + "root_product_id": 1585, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/15/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers15-Updates for ppc64le", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-containers15-debuginfo-updates-ppc64le", + "parent_channel_label": "sle-product-sles15-pool-ppc64le", + "product_id": 1640, + "repository_id": 2855, + "parent_product_id": 1588, + "root_product_id": 1585, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/15/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers15-Debuginfo-Updates for ppc64le", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-containers15-pool-ppc64le", + "parent_channel_label": "sle-product-sles15-pool-ppc64le", + "product_id": 1640, + "repository_id": 2856, + "parent_product_id": 1588, + "root_product_id": 1585, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15/ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers15-Pool for ppc64le", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-containers15-debuginfo-pool-ppc64le", + "parent_channel_label": "sle-product-sles15-pool-ppc64le", + "product_id": 1640, + "repository_id": 2857, + "parent_product_id": 1588, + "root_product_id": 1585, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15/ppc64le/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers15-Debuginfo-Pool for ppc64le", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-manager-tools15-updates-ppc64le", + "parent_channel_label": "sle-product-sles15-pool-ppc64le", + "product_id": 1710, + "repository_id": 2922, + "parent_product_id": 1588, + "root_product_id": 1585, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/15/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-Updates for ppc64le", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools15-debuginfo-updates-ppc64le", + "parent_channel_label": "sle-product-sles15-pool-ppc64le", + "product_id": 1710, + "repository_id": 2923, + "parent_product_id": 1588, + "root_product_id": 1585, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/15/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-Debuginfo-Updates for ppc64le", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools15-pool-ppc64le", + "parent_channel_label": "sle-product-sles15-pool-ppc64le", + "product_id": 1710, + "repository_id": 2924, + "parent_product_id": 1588, + "root_product_id": 1585, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/15/ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-Pool for ppc64le", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools15-debuginfo-pool-ppc64le", + "parent_channel_label": "sle-product-sles15-pool-ppc64le", + "product_id": 1710, + "repository_id": 2925, + "parent_product_id": 1588, + "root_product_id": 1585, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/15/ppc64le/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-Debuginfo-Pool for ppc64le", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools15-beta-updates-ppc64le", + "parent_channel_label": "sle-product-sles15-pool-ppc64le", + "product_id": 1926, + "repository_id": 3893, + "parent_product_id": 1710, + "root_product_id": 1585, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/15-BETA/ppc64le/update/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-BETA-Updates for ppc64le", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools15-beta-debuginfo-updates-ppc64le", + "parent_channel_label": "sle-product-sles15-pool-ppc64le", + "product_id": 1926, + "repository_id": 3894, + "parent_product_id": 1710, + "root_product_id": 1585, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/15-BETA/ppc64le/update_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-BETA-Debuginfo-Updates for ppc64le", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools15-beta-pool-ppc64le", + "parent_channel_label": "sle-product-sles15-pool-ppc64le", + "product_id": 1926, + "repository_id": 3902, + "parent_product_id": 1710, + "root_product_id": 1585, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/15-BETA/ppc64le/product/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-BETA-Pool for ppc64le", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools15-beta-debuginfo-pool-ppc64le", + "parent_channel_label": "sle-product-sles15-pool-ppc64le", + "product_id": 1926, + "repository_id": 3903, + "parent_product_id": 1710, + "root_product_id": 1585, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/15-BETA/ppc64le/product_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-BETA-Debuginfo-Pool for ppc64le", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-module-live-patching15-updates-ppc64le", + "parent_channel_label": "sle-product-sles15-pool-ppc64le", + "product_id": 1735, + "repository_id": 3029, + "parent_product_id": 1588, + "root_product_id": 1585, + "update_tag": "SLE-Module-Live-Patching", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Live-Patching/15/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Live-Patching15-Updates for ppc64le", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-live-patching15-debuginfo-updates-ppc64le", + "parent_channel_label": "sle-product-sles15-pool-ppc64le", + "product_id": 1735, + "repository_id": 3030, + "parent_product_id": 1588, + "root_product_id": 1585, + "update_tag": "SLE-Module-Live-Patching", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Live-Patching/15/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Live-Patching15-Debuginfo-Updates for ppc64le", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-live-patching15-pool-ppc64le", + "parent_channel_label": "sle-product-sles15-pool-ppc64le", + "product_id": 1735, + "repository_id": 3031, + "parent_product_id": 1588, + "root_product_id": 1585, + "update_tag": "SLE-Module-Live-Patching", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Live-Patching/15/ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Live-Patching15-Pool for ppc64le", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-live-patching15-debuginfo-pool-ppc64le", + "parent_channel_label": "sle-product-sles15-pool-ppc64le", + "product_id": 1735, + "repository_id": 3032, + "parent_product_id": 1588, + "root_product_id": 1585, + "update_tag": "SLE-Module-Live-Patching", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Live-Patching/15/ppc64le/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Live-Patching15-Debuginfo-Pool for ppc64le", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-packagehub-15-ppc64le", + "parent_channel_label": "sle-product-sles15-pool-ppc64le", + "product_id": 1741, + "repository_id": 3053, + "parent_product_id": 1588, + "root_product_id": 1585, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-15_ppc64le/standard/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-15-Standard-Pool for ppc64le", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-packagehub-15-debuginfo-ppc64le", + "parent_channel_label": "sle-product-sles15-pool-ppc64le", + "product_id": 1741, + "repository_id": 3054, + "parent_product_id": 1588, + "root_product_id": 1585, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-15_ppc64le/standard_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-15-Debuginfo for ppc64le", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-packagehub-15-pool-ppc64le", + "parent_channel_label": "sle-product-sles15-pool-ppc64le", + "product_id": 1741, + "repository_id": 3055, + "parent_product_id": 1588, + "root_product_id": 1585, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-15_ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-15-Pool for ppc64le", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-packagehub-subpackages15-updates-ppc64le", + "parent_channel_label": "sle-product-sles15-pool-ppc64le", + "product_id": 1741, + "repository_id": 3172, + "parent_product_id": 1588, + "root_product_id": 1585, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Packagehub-Subpackages15-Updates for ppc64le", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-packagehub-subpackages15-debuginfo-updates-ppc64le", + "parent_channel_label": "sle-product-sles15-pool-ppc64le", + "product_id": 1741, + "repository_id": 3173, + "parent_product_id": 1588, + "root_product_id": 1585, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Packagehub-Subpackages15-Debuginfo-Updates for ppc64le", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-packagehub-subpackages15-pool-ppc64le", + "parent_channel_label": "sle-product-sles15-pool-ppc64le", + "product_id": 1741, + "repository_id": 3174, + "parent_product_id": 1588, + "root_product_id": 1585, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15/ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Packagehub-Subpackages15-Pool for ppc64le", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-packagehub-subpackages15-debuginfo-pool-ppc64le", + "parent_channel_label": "sle-product-sles15-pool-ppc64le", + "product_id": 1741, + "repository_id": 3175, + "parent_product_id": 1588, + "root_product_id": 1585, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15/ppc64le/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Packagehub-Subpackages15-Debuginfo-Pool for ppc64le", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-sles15-ltss-updates-ppc64le", + "parent_channel_label": "sle-product-sles15-pool-ppc64le", + "product_id": 2054, + "repository_id": 4386, + "parent_product_id": 1585, + "root_product_id": 1585, + "update_tag": "SLE-Product-SLES", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-SLES/15-LTSS/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-SLES15-LTSS-Updates for ppc64le", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-sles15-debuginfo-ltss-updates-ppc64le", + "parent_channel_label": "sle-product-sles15-pool-ppc64le", + "product_id": 2054, + "repository_id": 4387, + "parent_product_id": 1585, + "root_product_id": 1585, + "update_tag": "SLE-Product-SLES", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-SLES/15-LTSS/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-SLES15-Debuginfo-LTSS-Updates for ppc64le", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-sles15-updates-aarch64", + "parent_channel_label": "sle-product-sles15-pool-aarch64", + "product_id": 1586, + "repository_id": 2714, + "parent_product_id": null, + "root_product_id": 1586, + "update_tag": "SLE-Product-SLES", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-SLES/15/aarch64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-SLES15-Updates for aarch64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle15-installer-updates-aarch64", + "parent_channel_label": "sle-product-sles15-pool-aarch64", + "product_id": 1586, + "repository_id": 2715, + "parent_product_id": null, + "root_product_id": 1586, + "update_tag": "SLE-INSTALLER", + "url": "https://updates.suse.com/SUSE/Updates/SLE-INSTALLER/15/aarch64/update/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE15-Installer-Updates for aarch64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-sles15-pool-aarch64", + "parent_channel_label": null, + "product_id": 1586, + "repository_id": 2716, + "parent_product_id": null, + "root_product_id": 1586, + "update_tag": "SLE-Product-SLES", + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-SLES/15/aarch64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-SLES15-Pool for aarch64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-sles15-debuginfo-updates-aarch64", + "parent_channel_label": "sle-product-sles15-pool-aarch64", + "product_id": 1586, + "repository_id": 3105, + "parent_product_id": null, + "root_product_id": 1586, + "update_tag": "SLE-Product-SLES", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-SLES/15/aarch64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-SLES15-Debuginfo-Updates for aarch64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-sles15-debuginfo-pool-aarch64", + "parent_channel_label": "sle-product-sles15-pool-aarch64", + "product_id": 1586, + "repository_id": 3106, + "parent_product_id": null, + "root_product_id": 1586, + "update_tag": "SLE-Product-SLES", + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-SLES/15/aarch64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-SLES15-Debuginfo-Pool for aarch64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-basesystem15-updates-aarch64", + "parent_channel_label": "sle-product-sles15-pool-aarch64", + "product_id": 1589, + "repository_id": 2574, + "parent_product_id": 1586, + "root_product_id": 1586, + "update_tag": "SLE-Module-Basesystem", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15/aarch64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Basesystem15-Updates for aarch64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-basesystem15-pool-aarch64", + "parent_channel_label": "sle-product-sles15-pool-aarch64", + "product_id": 1589, + "repository_id": 2575, + "parent_product_id": 1586, + "root_product_id": 1586, + "update_tag": "SLE-Module-Basesystem", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15/aarch64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Basesystem15-Pool for aarch64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-basesystem15-debuginfo-pool-aarch64", + "parent_channel_label": "sle-product-sles15-pool-aarch64", + "product_id": 1589, + "repository_id": 2576, + "parent_product_id": 1586, + "root_product_id": 1586, + "update_tag": "SLE-Module-Basesystem", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15/aarch64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Basesystem15-Debuginfo-Pool for aarch64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-basesystem15-debuginfo-updates-aarch64", + "parent_channel_label": "sle-product-sles15-pool-aarch64", + "product_id": 1589, + "repository_id": 3014, + "parent_product_id": 1586, + "root_product_id": 1586, + "update_tag": "SLE-Module-Basesystem", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15/aarch64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Basesystem15-Debuginfo-Updates for aarch64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-desktop-applications15-updates-aarch64", + "parent_channel_label": "sle-product-sles15-pool-aarch64", + "product_id": 1595, + "repository_id": 2603, + "parent_product_id": 1589, + "root_product_id": 1586, + "update_tag": "SLE-Module-Desktop-Applications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15/aarch64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Desktop-Applications15-Updates for aarch64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-desktop-applications15-debuginfo-updates-aarch64", + "parent_channel_label": "sle-product-sles15-pool-aarch64", + "product_id": 1595, + "repository_id": 2604, + "parent_product_id": 1589, + "root_product_id": 1586, + "update_tag": "SLE-Module-Desktop-Applications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15/aarch64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Desktop-Applications15-Debuginfo-Updates for aarch64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-desktop-applications15-pool-aarch64", + "parent_channel_label": "sle-product-sles15-pool-aarch64", + "product_id": 1595, + "repository_id": 2605, + "parent_product_id": 1589, + "root_product_id": 1586, + "update_tag": "SLE-Module-Desktop-Applications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15/aarch64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Desktop-Applications15-Pool for aarch64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-desktop-applications15-debuginfo-pool-aarch64", + "parent_channel_label": "sle-product-sles15-pool-aarch64", + "product_id": 1595, + "repository_id": 2606, + "parent_product_id": 1589, + "root_product_id": 1586, + "update_tag": "SLE-Module-Desktop-Applications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15/aarch64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Desktop-Applications15-Debuginfo-Pool for aarch64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-devtools15-updates-aarch64", + "parent_channel_label": "sle-product-sles15-pool-aarch64", + "product_id": 1598, + "repository_id": 2618, + "parent_product_id": 1595, + "root_product_id": 1586, + "update_tag": "SLE-Module-Development-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15/aarch64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-DevTools15-Updates for aarch64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-devtools15-debuginfo-updates-aarch64", + "parent_channel_label": "sle-product-sles15-pool-aarch64", + "product_id": 1598, + "repository_id": 2619, + "parent_product_id": 1595, + "root_product_id": 1586, + "update_tag": "SLE-Module-Development-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15/aarch64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-DevTools15-Debuginfo-Updates for aarch64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-devtools15-pool-aarch64", + "parent_channel_label": "sle-product-sles15-pool-aarch64", + "product_id": 1598, + "repository_id": 2620, + "parent_product_id": 1595, + "root_product_id": 1586, + "update_tag": "SLE-Module-Development-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15/aarch64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-DevTools15-Pool for aarch64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-devtools15-debuginfo-pool-aarch64", + "parent_channel_label": "sle-product-sles15-pool-aarch64", + "product_id": 1598, + "repository_id": 2621, + "parent_product_id": 1595, + "root_product_id": 1586, + "update_tag": "SLE-Module-Development-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15/aarch64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-DevTools15-Debuginfo-Pool for aarch64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-server-applications15-updates-aarch64", + "parent_channel_label": "sle-product-sles15-pool-aarch64", + "product_id": 1601, + "repository_id": 2633, + "parent_product_id": 1589, + "root_product_id": 1586, + "update_tag": "SLE-Module-Server-Applications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15/aarch64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Server-Applications15-Updates for aarch64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-server-applications15-debuginfo-updates-aarch64", + "parent_channel_label": "sle-product-sles15-pool-aarch64", + "product_id": 1601, + "repository_id": 2634, + "parent_product_id": 1589, + "root_product_id": 1586, + "update_tag": "SLE-Module-Server-Applications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15/aarch64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Server-Applications15-Debuginfo-Updates for aarch64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-server-applications15-pool-aarch64", + "parent_channel_label": "sle-product-sles15-pool-aarch64", + "product_id": 1601, + "repository_id": 2635, + "parent_product_id": 1589, + "root_product_id": 1586, + "update_tag": "SLE-Module-Server-Applications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15/aarch64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Server-Applications15-Pool for aarch64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-server-applications15-debuginfo-pool-aarch64", + "parent_channel_label": "sle-product-sles15-pool-aarch64", + "product_id": 1601, + "repository_id": 2636, + "parent_product_id": 1589, + "root_product_id": 1586, + "update_tag": "SLE-Module-Server-Applications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15/aarch64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Server-Applications15-Debuginfo-Pool for aarch64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-legacy15-updates-aarch64", + "parent_channel_label": "sle-product-sles15-pool-aarch64", + "product_id": 1604, + "repository_id": 2648, + "parent_product_id": 1601, + "root_product_id": 1586, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/15/aarch64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy15-Updates for aarch64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-legacy15-debuginfo-updates-aarch64", + "parent_channel_label": "sle-product-sles15-pool-aarch64", + "product_id": 1604, + "repository_id": 2649, + "parent_product_id": 1601, + "root_product_id": 1586, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/15/aarch64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy15-Debuginfo-Updates for aarch64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-legacy15-pool-aarch64", + "parent_channel_label": "sle-product-sles15-pool-aarch64", + "product_id": 1604, + "repository_id": 2650, + "parent_product_id": 1601, + "root_product_id": 1586, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15/aarch64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy15-Pool for aarch64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-legacy15-debuginfo-pool-aarch64", + "parent_channel_label": "sle-product-sles15-pool-aarch64", + "product_id": 1604, + "repository_id": 2651, + "parent_product_id": 1601, + "root_product_id": 1586, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15/aarch64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy15-Debuginfo-Pool for aarch64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-ha15-updates-aarch64", + "parent_channel_label": "sle-product-sles15-pool-aarch64", + "product_id": 1608, + "repository_id": 2849, + "parent_product_id": 1601, + "root_product_id": 1586, + "update_tag": "SLE-Product-HA", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-HA/15/aarch64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HA15-Updates for aarch64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-ha15-debuginfo-updates-aarch64", + "parent_channel_label": "sle-product-sles15-pool-aarch64", + "product_id": 1608, + "repository_id": 2850, + "parent_product_id": 1601, + "root_product_id": 1586, + "update_tag": "SLE-Product-HA", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-HA/15/aarch64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HA15-Debuginfo-Updates for aarch64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-ha15-pool-aarch64", + "parent_channel_label": "sle-product-sles15-pool-aarch64", + "product_id": 1608, + "repository_id": 2851, + "parent_product_id": 1601, + "root_product_id": 1586, + "update_tag": "SLE-Product-HA", + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-HA/15/aarch64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HA15-Pool for aarch64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-ha15-debuginfo-pool-aarch64", + "parent_channel_label": "sle-product-sles15-pool-aarch64", + "product_id": 1608, + "repository_id": 2852, + "parent_product_id": 1601, + "root_product_id": 1586, + "update_tag": "SLE-Product-HA", + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-HA/15/aarch64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HA15-Debuginfo-Pool for aarch64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud15-updates-aarch64", + "parent_channel_label": "sle-product-sles15-pool-aarch64", + "product_id": 1645, + "repository_id": 2879, + "parent_product_id": 1601, + "root_product_id": 1586, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/15/aarch64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud15-Updates for aarch64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud15-debuginfo-updates-aarch64", + "parent_channel_label": "sle-product-sles15-pool-aarch64", + "product_id": 1645, + "repository_id": 2880, + "parent_product_id": 1601, + "root_product_id": 1586, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/15/aarch64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud15-Debuginfo-Updates for aarch64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud15-pool-aarch64", + "parent_channel_label": "sle-product-sles15-pool-aarch64", + "product_id": 1645, + "repository_id": 2881, + "parent_product_id": 1601, + "root_product_id": 1586, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15/aarch64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud15-Pool for aarch64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud15-debuginfo-pool-aarch64", + "parent_channel_label": "sle-product-sles15-pool-aarch64", + "product_id": 1645, + "repository_id": 2882, + "parent_product_id": 1601, + "root_product_id": 1586, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15/aarch64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud15-Debuginfo-Pool for aarch64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting15-updates-aarch64", + "parent_channel_label": "sle-product-sles15-pool-aarch64", + "product_id": 1718, + "repository_id": 2957, + "parent_product_id": 1601, + "root_product_id": 1586, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/15/aarch64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Web-Scripting15-Updates for aarch64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting15-debuginfo-updates-aarch64", + "parent_channel_label": "sle-product-sles15-pool-aarch64", + "product_id": 1718, + "repository_id": 2958, + "parent_product_id": 1601, + "root_product_id": 1586, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/15/aarch64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Web-Scripting15-Debuginfo-Updates for aarch64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting15-pool-aarch64", + "parent_channel_label": "sle-product-sles15-pool-aarch64", + "product_id": 1718, + "repository_id": 2959, + "parent_product_id": 1601, + "root_product_id": 1586, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15/aarch64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Web-Scripting15-Pool for aarch64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting15-debuginfo-pool-aarch64", + "parent_channel_label": "sle-product-sles15-pool-aarch64", + "product_id": 1718, + "repository_id": 2960, + "parent_product_id": 1601, + "root_product_id": 1586, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15/aarch64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Web-Scripting15-Debuginfo-Pool for aarch64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-manager-tools15-updates-aarch64", + "parent_channel_label": "sle-product-sles15-pool-aarch64", + "product_id": 1709, + "repository_id": 2917, + "parent_product_id": 1589, + "root_product_id": 1586, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/15/aarch64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-Updates for aarch64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools15-debuginfo-updates-aarch64", + "parent_channel_label": "sle-product-sles15-pool-aarch64", + "product_id": 1709, + "repository_id": 2918, + "parent_product_id": 1589, + "root_product_id": 1586, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/15/aarch64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-Debuginfo-Updates for aarch64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools15-pool-aarch64", + "parent_channel_label": "sle-product-sles15-pool-aarch64", + "product_id": 1709, + "repository_id": 2919, + "parent_product_id": 1589, + "root_product_id": 1586, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/15/aarch64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-Pool for aarch64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools15-debuginfo-pool-aarch64", + "parent_channel_label": "sle-product-sles15-pool-aarch64", + "product_id": 1709, + "repository_id": 2920, + "parent_product_id": 1589, + "root_product_id": 1586, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/15/aarch64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-Debuginfo-Pool for aarch64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools15-beta-updates-aarch64", + "parent_channel_label": "sle-product-sles15-pool-aarch64", + "product_id": 1925, + "repository_id": 3891, + "parent_product_id": 1709, + "root_product_id": 1586, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/15-BETA/aarch64/update/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-BETA-Updates for aarch64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools15-beta-debuginfo-updates-aarch64", + "parent_channel_label": "sle-product-sles15-pool-aarch64", + "product_id": 1925, + "repository_id": 3892, + "parent_product_id": 1709, + "root_product_id": 1586, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/15-BETA/aarch64/update_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-BETA-Debuginfo-Updates for aarch64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools15-beta-pool-aarch64", + "parent_channel_label": "sle-product-sles15-pool-aarch64", + "product_id": 1925, + "repository_id": 3899, + "parent_product_id": 1709, + "root_product_id": 1586, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/15-BETA/aarch64/product/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-BETA-Pool for aarch64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools15-beta-debuginfo-pool-aarch64", + "parent_channel_label": "sle-product-sles15-pool-aarch64", + "product_id": 1925, + "repository_id": 3900, + "parent_product_id": 1709, + "root_product_id": 1586, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/15-BETA/aarch64/product_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-BETA-Debuginfo-Pool for aarch64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "suse-packagehub-15-aarch64", + "parent_channel_label": "sle-product-sles15-pool-aarch64", + "product_id": 1740, + "repository_id": 3050, + "parent_product_id": 1589, + "root_product_id": 1586, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-15_aarch64/standard/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-15-Standard-Pool for aarch64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-packagehub-15-debuginfo-aarch64", + "parent_channel_label": "sle-product-sles15-pool-aarch64", + "product_id": 1740, + "repository_id": 3051, + "parent_product_id": 1589, + "root_product_id": 1586, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-15_aarch64/standard_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-15-Debuginfo for aarch64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-packagehub-15-pool-aarch64", + "parent_channel_label": "sle-product-sles15-pool-aarch64", + "product_id": 1740, + "repository_id": 3052, + "parent_product_id": 1589, + "root_product_id": 1586, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-15_aarch64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-15-Pool for aarch64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-packagehub-subpackages15-updates-aarch64", + "parent_channel_label": "sle-product-sles15-pool-aarch64", + "product_id": 1740, + "repository_id": 3167, + "parent_product_id": 1589, + "root_product_id": 1586, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15/aarch64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Packagehub-Subpackages15-Updates for aarch64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-packagehub-subpackages15-debuginfo-updates-aarch64", + "parent_channel_label": "sle-product-sles15-pool-aarch64", + "product_id": 1740, + "repository_id": 3168, + "parent_product_id": 1589, + "root_product_id": 1586, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15/aarch64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Packagehub-Subpackages15-Debuginfo-Updates for aarch64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-packagehub-subpackages15-pool-aarch64", + "parent_channel_label": "sle-product-sles15-pool-aarch64", + "product_id": 1740, + "repository_id": 3169, + "parent_product_id": 1589, + "root_product_id": 1586, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15/aarch64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Packagehub-Subpackages15-Pool for aarch64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-packagehub-subpackages15-debuginfo-pool-aarch64", + "parent_channel_label": "sle-product-sles15-pool-aarch64", + "product_id": 1740, + "repository_id": 3170, + "parent_product_id": 1589, + "root_product_id": 1586, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15/aarch64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Packagehub-Subpackages15-Debuginfo-Pool for aarch64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-sles15-ltss-updates-aarch64", + "parent_channel_label": "sle-product-sles15-pool-aarch64", + "product_id": 2053, + "repository_id": 4384, + "parent_product_id": 1586, + "root_product_id": 1586, + "update_tag": "SLE-Product-SLES", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-SLES/15-LTSS/aarch64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-SLES15-LTSS-Updates for aarch64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-sles15-debuginfo-ltss-updates-aarch64", + "parent_channel_label": "sle-product-sles15-pool-aarch64", + "product_id": 2053, + "repository_id": 4385, + "parent_product_id": 1586, + "root_product_id": 1586, + "update_tag": "SLE-Product-SLES", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-SLES/15-LTSS/aarch64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-SLES15-Debuginfo-LTSS-Updates for aarch64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-caasp-all-updates-x86_64", + "parent_channel_label": "suse-caasp-all-pool-x86_64", + "product_id": 1607, + "repository_id": 2514, + "parent_product_id": null, + "root_product_id": 1607, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Updates/SUSE-CAASP/ALL/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-CAASP-ALL-Updates for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-caasp-all-debuginfo-updates-x86_64", + "parent_channel_label": "suse-caasp-all-pool-x86_64", + "product_id": 1607, + "repository_id": 2515, + "parent_product_id": null, + "root_product_id": 1607, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Updates/SUSE-CAASP/ALL/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SUSE-CAASP-ALL-Debuginfo-Updates for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-caasp-all-pool-x86_64", + "parent_channel_label": null, + "product_id": 1607, + "repository_id": 2516, + "parent_product_id": null, + "root_product_id": 1607, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Products/SUSE-CAASP/ALL/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-CAASP-ALL-Pool for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-caasp-all-debuginfo-pool-x86_64", + "parent_channel_label": "suse-caasp-all-pool-x86_64", + "product_id": 1607, + "repository_id": 2517, + "parent_product_id": null, + "root_product_id": 1607, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Products/SUSE-CAASP/ALL/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SUSE-CAASP-ALL-Debuginfo-Pool for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-15-ga-desktop-nvidia-driver", + "parent_channel_label": "sle-product-sled15-pool-x86_64", + "product_id": 1609, + "repository_id": 2747, + "parent_product_id": null, + "root_product_id": 1609, + "update_tag": null, + "url": "https://download.nvidia.com/suse/sle15/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-15-GA-Desktop-NVIDIA-Driver for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-sled15-updates-x86_64", + "parent_channel_label": "sle-product-sled15-pool-x86_64", + "product_id": 1609, + "repository_id": 2748, + "parent_product_id": null, + "root_product_id": 1609, + "update_tag": "SLE-Product-SLED", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-SLED/15/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-SLED15-Updates for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-sled15-pool-x86_64", + "parent_channel_label": null, + "product_id": 1609, + "repository_id": 2749, + "parent_product_id": null, + "root_product_id": 1609, + "update_tag": "SLE-Product-SLED", + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-SLED/15/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-SLED15-Pool for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-sled15-debuginfo-updates-x86_64", + "parent_channel_label": "sle-product-sled15-pool-x86_64", + "product_id": 1609, + "repository_id": 3102, + "parent_product_id": null, + "root_product_id": 1609, + "update_tag": "SLE-Product-SLED", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-SLED/15/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-SLED15-Debuginfo-Updates for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-sled15-debuginfo-pool-x86_64", + "parent_channel_label": "sle-product-sled15-pool-x86_64", + "product_id": 1609, + "repository_id": 3103, + "parent_product_id": null, + "root_product_id": 1609, + "update_tag": "SLE-Product-SLED", + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-SLED/15/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-SLED15-Debuginfo-Pool for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-basesystem15-updates-x86_64-sled", + "parent_channel_label": "sle-product-sled15-pool-x86_64", + "product_id": 1576, + "repository_id": 2524, + "parent_product_id": 1609, + "root_product_id": 1609, + "update_tag": "SLE-Module-Basesystem", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Basesystem15-Updates for x86_64 SLED", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-basesystem15-debuginfo-updates-x86_64-sled", + "parent_channel_label": "sle-product-sled15-pool-x86_64", + "product_id": 1576, + "repository_id": 2525, + "parent_product_id": 1609, + "root_product_id": 1609, + "update_tag": "SLE-Module-Basesystem", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Basesystem15-Debuginfo-Updates for x86_64 SLED", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-basesystem15-pool-x86_64-sled", + "parent_channel_label": "sle-product-sled15-pool-x86_64", + "product_id": 1576, + "repository_id": 2526, + "parent_product_id": 1609, + "root_product_id": 1609, + "update_tag": "SLE-Module-Basesystem", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Basesystem15-Pool for x86_64 SLED", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-basesystem15-debuginfo-pool-x86_64-sled", + "parent_channel_label": "sle-product-sled15-pool-x86_64", + "product_id": 1576, + "repository_id": 2527, + "parent_product_id": 1609, + "root_product_id": 1609, + "update_tag": "SLE-Module-Basesystem", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Basesystem15-Debuginfo-Pool for x86_64 SLED", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-desktop-applications15-updates-x86_64-sled", + "parent_channel_label": "sle-product-sled15-pool-x86_64", + "product_id": 1578, + "repository_id": 2534, + "parent_product_id": 1576, + "root_product_id": 1609, + "update_tag": "SLE-Module-Desktop-Applications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Desktop-Applications15-Updates for x86_64 SLED", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-desktop-applications15-debuginfo-updates-x86_64-sled", + "parent_channel_label": "sle-product-sled15-pool-x86_64", + "product_id": 1578, + "repository_id": 2535, + "parent_product_id": 1576, + "root_product_id": 1609, + "update_tag": "SLE-Module-Desktop-Applications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Desktop-Applications15-Debuginfo-Updates for x86_64 SLED", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-desktop-applications15-pool-x86_64-sled", + "parent_channel_label": "sle-product-sled15-pool-x86_64", + "product_id": 1578, + "repository_id": 2536, + "parent_product_id": 1576, + "root_product_id": 1609, + "update_tag": "SLE-Module-Desktop-Applications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Desktop-Applications15-Pool for x86_64 SLED", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-desktop-applications15-debuginfo-pool-x86_64-sled", + "parent_channel_label": "sle-product-sled15-pool-x86_64", + "product_id": 1578, + "repository_id": 2537, + "parent_product_id": 1576, + "root_product_id": 1609, + "update_tag": "SLE-Module-Desktop-Applications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Desktop-Applications15-Debuginfo-Pool for x86_64 SLED", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-devtools15-updates-x86_64-sled", + "parent_channel_label": "sle-product-sled15-pool-x86_64", + "product_id": 1579, + "repository_id": 2539, + "parent_product_id": 1578, + "root_product_id": 1609, + "update_tag": "SLE-Module-Development-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-DevTools15-Updates for x86_64 SLED", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-devtools15-debuginfo-updates-x86_64-sled", + "parent_channel_label": "sle-product-sled15-pool-x86_64", + "product_id": 1579, + "repository_id": 2540, + "parent_product_id": 1578, + "root_product_id": 1609, + "update_tag": "SLE-Module-Development-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-DevTools15-Debuginfo-Updates for x86_64 SLED", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-devtools15-pool-x86_64-sled", + "parent_channel_label": "sle-product-sled15-pool-x86_64", + "product_id": 1579, + "repository_id": 2541, + "parent_product_id": 1578, + "root_product_id": 1609, + "update_tag": "SLE-Module-Development-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-DevTools15-Pool for x86_64 SLED", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-devtools15-debuginfo-pool-x86_64-sled", + "parent_channel_label": "sle-product-sled15-pool-x86_64", + "product_id": 1579, + "repository_id": 2542, + "parent_product_id": 1578, + "root_product_id": 1609, + "update_tag": "SLE-Module-Development-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-DevTools15-Debuginfo-Pool for x86_64 SLED", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-we15-updates-x86_64-sled", + "parent_channel_label": "sle-product-sled15-pool-x86_64", + "product_id": 1583, + "repository_id": 2742, + "parent_product_id": 1578, + "root_product_id": 1609, + "update_tag": "SLE-Product-WE", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-WE/15/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Product-WE15-Updates for x86_64 SLED", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-we15-debuginfo-updates-x86_64-sled", + "parent_channel_label": "sle-product-sled15-pool-x86_64", + "product_id": 1583, + "repository_id": 2743, + "parent_product_id": 1578, + "root_product_id": 1609, + "update_tag": "SLE-Product-WE", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-WE/15/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Product-WE15-Debuginfo-Updates for x86_64 SLED", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-we15-pool-x86_64-sled", + "parent_channel_label": "sle-product-sled15-pool-x86_64", + "product_id": 1583, + "repository_id": 2744, + "parent_product_id": 1578, + "root_product_id": 1609, + "update_tag": "SLE-Product-WE", + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-WE/15/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Product-WE15-Pool for x86_64 SLED", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-we15-debuginfo-pool-x86_64-sled", + "parent_channel_label": "sle-product-sled15-pool-x86_64", + "product_id": 1583, + "repository_id": 2745, + "parent_product_id": 1578, + "root_product_id": 1609, + "update_tag": "SLE-Product-WE", + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-WE/15/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Product-WE15-Debuginfo-Pool for x86_64 SLED", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-15-ga-desktop-nvidia-driver", + "parent_channel_label": "sle-product-sled15-pool-x86_64", + "product_id": 1583, + "repository_id": 2747, + "parent_product_id": 1578, + "root_product_id": 1609, + "update_tag": null, + "url": "https://download.nvidia.com/suse/sle15/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-15-GA-Desktop-NVIDIA-Driver for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-manager-tools15-updates-x86_64-sled", + "parent_channel_label": "sle-product-sled15-pool-x86_64", + "product_id": 1712, + "repository_id": 2932, + "parent_product_id": 1576, + "root_product_id": 1609, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/15/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-Updates for x86_64 SLED", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools15-debuginfo-updates-x86_64-sled", + "parent_channel_label": "sle-product-sled15-pool-x86_64", + "product_id": 1712, + "repository_id": 2933, + "parent_product_id": 1576, + "root_product_id": 1609, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/15/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-Debuginfo-Updates for x86_64 SLED", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools15-pool-x86_64-sled", + "parent_channel_label": "sle-product-sled15-pool-x86_64", + "product_id": 1712, + "repository_id": 2934, + "parent_product_id": 1576, + "root_product_id": 1609, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/15/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-Pool for x86_64 SLED", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools15-debuginfo-pool-x86_64-sled", + "parent_channel_label": "sle-product-sled15-pool-x86_64", + "product_id": 1712, + "repository_id": 2935, + "parent_product_id": 1576, + "root_product_id": 1609, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/15/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-Debuginfo-Pool for x86_64 SLED", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools15-beta-updates-x86_64-sled", + "parent_channel_label": "sle-product-sled15-pool-x86_64", + "product_id": 1928, + "repository_id": 3897, + "parent_product_id": 1712, + "root_product_id": 1609, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/15-BETA/x86_64/update/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-BETA-Updates for x86_64 SLED", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools15-beta-debuginfo-updates-x86_64-sled", + "parent_channel_label": "sle-product-sled15-pool-x86_64", + "product_id": 1928, + "repository_id": 3898, + "parent_product_id": 1712, + "root_product_id": 1609, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/15-BETA/x86_64/update_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-BETA-Debuginfo-Updates for x86_64 SLED", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools15-beta-pool-x86_64-sled", + "parent_channel_label": "sle-product-sled15-pool-x86_64", + "product_id": 1928, + "repository_id": 3908, + "parent_product_id": 1712, + "root_product_id": 1609, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/15-BETA/x86_64/product/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-BETA-Pool for x86_64 SLED", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools15-beta-debuginfo-pool-x86_64-sled", + "parent_channel_label": "sle-product-sled15-pool-x86_64", + "product_id": 1928, + "repository_id": 3909, + "parent_product_id": 1712, + "root_product_id": 1609, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/15-BETA/x86_64/product_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-BETA-Debuginfo-Pool for x86_64 SLED", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-module-cap-tools15-updates-x86_64-sled", + "parent_channel_label": "sle-product-sled15-pool-x86_64", + "product_id": 1728, + "repository_id": 3000, + "parent_product_id": 1576, + "root_product_id": 1609, + "update_tag": "SLE-Module-CAP-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-CAP-Tools/15/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-CAP-Tools15-Updates for x86_64 SLED", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-cap-tools15-debuginfo-updates-x86_64-sled", + "parent_channel_label": "sle-product-sled15-pool-x86_64", + "product_id": 1728, + "repository_id": 3001, + "parent_product_id": 1576, + "root_product_id": 1609, + "update_tag": "SLE-Module-CAP-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-CAP-Tools/15/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-CAP-Tools15-Debuginfo-Updates for x86_64 SLED", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-cap-tools15-pool-x86_64-sled", + "parent_channel_label": "sle-product-sled15-pool-x86_64", + "product_id": 1728, + "repository_id": 3002, + "parent_product_id": 1576, + "root_product_id": 1609, + "update_tag": "SLE-Module-CAP-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-CAP-Tools/15/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-CAP-Tools15-Pool for x86_64 SLED", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-cap-tools15-debuginfo-pool-x86_64-sled", + "parent_channel_label": "sle-product-sled15-pool-x86_64", + "product_id": 1728, + "repository_id": 3003, + "parent_product_id": 1576, + "root_product_id": 1609, + "update_tag": "SLE-Module-CAP-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-CAP-Tools/15/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-CAP-Tools15-Debuginfo-Pool for x86_64 SLED", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-packagehub-15-x86_64-sled", + "parent_channel_label": "sle-product-sled15-pool-x86_64", + "product_id": 1743, + "repository_id": 3059, + "parent_product_id": 1576, + "root_product_id": 1609, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-15_x86_64/standard/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-15-Standard-Pool for x86_64 SLED", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-packagehub-15-debuginfo-x86_64-sled", + "parent_channel_label": "sle-product-sled15-pool-x86_64", + "product_id": 1743, + "repository_id": 3060, + "parent_product_id": 1576, + "root_product_id": 1609, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-15_x86_64/standard_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-15-Debuginfo for x86_64 SLED", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-packagehub-15-pool-x86_64-sled", + "parent_channel_label": "sle-product-sled15-pool-x86_64", + "product_id": 1743, + "repository_id": 3061, + "parent_product_id": 1576, + "root_product_id": 1609, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-15_x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-15-Pool for x86_64 SLED", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-packagehub-subpackages15-updates-x86_64-sled", + "parent_channel_label": "sle-product-sled15-pool-x86_64", + "product_id": 1743, + "repository_id": 3182, + "parent_product_id": 1576, + "root_product_id": 1609, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Packagehub-Subpackages15-Updates for x86_64 SLED", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-packagehub-subpackages15-debuginfo-updates-x86_64-sled", + "parent_channel_label": "sle-product-sled15-pool-x86_64", + "product_id": 1743, + "repository_id": 3183, + "parent_product_id": 1576, + "root_product_id": 1609, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Packagehub-Subpackages15-Debuginfo-Updates for x86_64 SLED", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-packagehub-subpackages15-pool-x86_64-sled", + "parent_channel_label": "sle-product-sled15-pool-x86_64", + "product_id": 1743, + "repository_id": 3184, + "parent_product_id": 1576, + "root_product_id": 1609, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Packagehub-Subpackages15-Pool for x86_64 SLED", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-packagehub-subpackages15-debuginfo-pool-x86_64-sled", + "parent_channel_label": "sle-product-sled15-pool-x86_64", + "product_id": 1743, + "repository_id": 3185, + "parent_product_id": 1576, + "root_product_id": 1609, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Packagehub-Subpackages15-Debuginfo-Pool for x86_64 SLED", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-sles_sap15-updates-x86_64", + "parent_channel_label": "sle-product-sles_sap15-pool-x86_64", + "product_id": 1612, + "repository_id": 2750, + "parent_product_id": null, + "root_product_id": 1612, + "update_tag": "SLE-Product-SLES_SAP", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-SLES_SAP/15/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-SLES_SAP15-Updates for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-sles_sap15-pool-x86_64", + "parent_channel_label": null, + "product_id": 1612, + "repository_id": 2751, + "parent_product_id": null, + "root_product_id": 1612, + "update_tag": "SLE-Product-SLES_SAP", + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-SLES_SAP/15/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-SLES_SAP15-Pool for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-sles_sap15-debuginfo-updates-x86_64", + "parent_channel_label": "sle-product-sles_sap15-pool-x86_64", + "product_id": 1612, + "repository_id": 3120, + "parent_product_id": null, + "root_product_id": 1612, + "update_tag": "SLE-Product-SLES_SAP", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-SLES_SAP/15/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-SLES_SAP15-Debuginfo-Updates for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-sles_sap15-debuginfo-pool-x86_64", + "parent_channel_label": "sle-product-sles_sap15-pool-x86_64", + "product_id": 1612, + "repository_id": 3121, + "parent_product_id": null, + "root_product_id": 1612, + "update_tag": "SLE-Product-SLES_SAP", + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-SLES_SAP/15/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-SLES_SAP15-Debuginfo-Pool for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-basesystem15-updates-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-pool-x86_64", + "product_id": 1576, + "repository_id": 2524, + "parent_product_id": 1612, + "root_product_id": 1612, + "update_tag": "SLE-Module-Basesystem", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Basesystem15-Updates for x86_64 SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-basesystem15-debuginfo-updates-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-pool-x86_64", + "product_id": 1576, + "repository_id": 2525, + "parent_product_id": 1612, + "root_product_id": 1612, + "update_tag": "SLE-Module-Basesystem", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Basesystem15-Debuginfo-Updates for x86_64 SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-basesystem15-pool-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-pool-x86_64", + "product_id": 1576, + "repository_id": 2526, + "parent_product_id": 1612, + "root_product_id": 1612, + "update_tag": "SLE-Module-Basesystem", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Basesystem15-Pool for x86_64 SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-basesystem15-debuginfo-pool-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-pool-x86_64", + "product_id": 1576, + "repository_id": 2527, + "parent_product_id": 1612, + "root_product_id": 1612, + "update_tag": "SLE-Module-Basesystem", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Basesystem15-Debuginfo-Pool for x86_64 SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-desktop-applications15-updates-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-pool-x86_64", + "product_id": 1578, + "repository_id": 2534, + "parent_product_id": 1576, + "root_product_id": 1612, + "update_tag": "SLE-Module-Desktop-Applications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Desktop-Applications15-Updates for x86_64 SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-desktop-applications15-debuginfo-updates-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-pool-x86_64", + "product_id": 1578, + "repository_id": 2535, + "parent_product_id": 1576, + "root_product_id": 1612, + "update_tag": "SLE-Module-Desktop-Applications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Desktop-Applications15-Debuginfo-Updates for x86_64 SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-desktop-applications15-pool-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-pool-x86_64", + "product_id": 1578, + "repository_id": 2536, + "parent_product_id": 1576, + "root_product_id": 1612, + "update_tag": "SLE-Module-Desktop-Applications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Desktop-Applications15-Pool for x86_64 SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-desktop-applications15-debuginfo-pool-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-pool-x86_64", + "product_id": 1578, + "repository_id": 2537, + "parent_product_id": 1576, + "root_product_id": 1612, + "update_tag": "SLE-Module-Desktop-Applications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Desktop-Applications15-Debuginfo-Pool for x86_64 SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-devtools15-updates-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-pool-x86_64", + "product_id": 1579, + "repository_id": 2539, + "parent_product_id": 1578, + "root_product_id": 1612, + "update_tag": "SLE-Module-Development-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-DevTools15-Updates for x86_64 SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-devtools15-debuginfo-updates-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-pool-x86_64", + "product_id": 1579, + "repository_id": 2540, + "parent_product_id": 1578, + "root_product_id": 1612, + "update_tag": "SLE-Module-Development-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-DevTools15-Debuginfo-Updates for x86_64 SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-devtools15-pool-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-pool-x86_64", + "product_id": 1579, + "repository_id": 2541, + "parent_product_id": 1578, + "root_product_id": 1612, + "update_tag": "SLE-Module-Development-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-DevTools15-Pool for x86_64 SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-devtools15-debuginfo-pool-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-pool-x86_64", + "product_id": 1579, + "repository_id": 2542, + "parent_product_id": 1578, + "root_product_id": 1612, + "update_tag": "SLE-Module-Development-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-DevTools15-Debuginfo-Pool for x86_64 SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-we15-updates-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-pool-x86_64", + "product_id": 1583, + "repository_id": 2742, + "parent_product_id": 1578, + "root_product_id": 1612, + "update_tag": "SLE-Product-WE", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-WE/15/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-WE15-Updates for x86_64 SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-we15-debuginfo-updates-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-pool-x86_64", + "product_id": 1583, + "repository_id": 2743, + "parent_product_id": 1578, + "root_product_id": 1612, + "update_tag": "SLE-Product-WE", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-WE/15/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-WE15-Debuginfo-Updates for x86_64 SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-we15-pool-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-pool-x86_64", + "product_id": 1583, + "repository_id": 2744, + "parent_product_id": 1578, + "root_product_id": 1612, + "update_tag": "SLE-Product-WE", + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-WE/15/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-WE15-Pool for x86_64 SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-we15-debuginfo-pool-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-pool-x86_64", + "product_id": 1583, + "repository_id": 2745, + "parent_product_id": 1578, + "root_product_id": 1612, + "update_tag": "SLE-Product-WE", + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-WE/15/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-WE15-Debuginfo-Pool for x86_64 SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-15-ga-desktop-nvidia-driver-sap", + "parent_channel_label": "sle-product-sles_sap15-pool-x86_64", + "product_id": 1583, + "repository_id": 2747, + "parent_product_id": 1578, + "root_product_id": 1612, + "update_tag": null, + "url": "https://download.nvidia.com/suse/sle15/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-15-GA-Desktop-NVIDIA-Driver for x86_64 SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-server-applications15-updates-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-pool-x86_64", + "product_id": 1580, + "repository_id": 2544, + "parent_product_id": 1576, + "root_product_id": 1612, + "update_tag": "SLE-Module-Server-Applications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Server-Applications15-Updates for x86_64 SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-server-applications15-debuginfo-updates-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-pool-x86_64", + "product_id": 1580, + "repository_id": 2545, + "parent_product_id": 1576, + "root_product_id": 1612, + "update_tag": "SLE-Module-Server-Applications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Server-Applications15-Debuginfo-Updates for x86_64 SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-server-applications15-pool-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-pool-x86_64", + "product_id": 1580, + "repository_id": 2546, + "parent_product_id": 1576, + "root_product_id": 1612, + "update_tag": "SLE-Module-Server-Applications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Server-Applications15-Pool for x86_64 SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-server-applications15-debuginfo-pool-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-pool-x86_64", + "product_id": 1580, + "repository_id": 2547, + "parent_product_id": 1576, + "root_product_id": 1612, + "update_tag": "SLE-Module-Server-Applications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Server-Applications15-Debuginfo-Pool for x86_64 SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-legacy15-updates-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-pool-x86_64", + "product_id": 1581, + "repository_id": 2549, + "parent_product_id": 1580, + "root_product_id": 1612, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/15/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy15-Updates for x86_64 SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-legacy15-debuginfo-updates-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-pool-x86_64", + "product_id": 1581, + "repository_id": 2550, + "parent_product_id": 1580, + "root_product_id": 1612, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/15/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy15-Debuginfo-Updates for x86_64 SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-legacy15-pool-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-pool-x86_64", + "product_id": 1581, + "repository_id": 2551, + "parent_product_id": 1580, + "root_product_id": 1612, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy15-Pool for x86_64 SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-legacy15-debuginfo-pool-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-pool-x86_64", + "product_id": 1581, + "repository_id": 2552, + "parent_product_id": 1580, + "root_product_id": 1612, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy15-Debuginfo-Pool for x86_64 SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-ha15-updates-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-pool-x86_64", + "product_id": 1582, + "repository_id": 2754, + "parent_product_id": 1580, + "root_product_id": 1612, + "update_tag": "SLE-Product-HA", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-HA/15/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Product-HA15-Updates for x86_64 SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-ha15-debuginfo-updates-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-pool-x86_64", + "product_id": 1582, + "repository_id": 2755, + "parent_product_id": 1580, + "root_product_id": 1612, + "update_tag": "SLE-Product-HA", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-HA/15/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Product-HA15-Debuginfo-Updates for x86_64 SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-ha15-pool-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-pool-x86_64", + "product_id": 1582, + "repository_id": 2756, + "parent_product_id": 1580, + "root_product_id": 1612, + "update_tag": "SLE-Product-HA", + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-HA/15/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Product-HA15-Pool for x86_64 SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-ha15-debuginfo-pool-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-pool-x86_64", + "product_id": 1582, + "repository_id": 2757, + "parent_product_id": 1580, + "root_product_id": 1612, + "update_tag": "SLE-Product-HA", + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-HA/15/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Product-HA15-Debuginfo-Pool for x86_64 SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-sap-applications15-updates-x86_64", + "parent_channel_label": "sle-product-sles_sap15-pool-x86_64", + "product_id": 1727, + "repository_id": 2677, + "parent_product_id": 1582, + "root_product_id": 1612, + "update_tag": "SLE-Module-SAP-Applications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-SAP-Applications/15/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-SAP-Applications15-Updates for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-sap-applications15-debuginfo-updates-x86_64", + "parent_channel_label": "sle-product-sles_sap15-pool-x86_64", + "product_id": 1727, + "repository_id": 2678, + "parent_product_id": 1582, + "root_product_id": 1612, + "update_tag": "SLE-Module-SAP-Applications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-SAP-Applications/15/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-SAP-Applications15-Debuginfo-Updates for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-sap-applications15-pool-x86_64", + "parent_channel_label": "sle-product-sles_sap15-pool-x86_64", + "product_id": 1727, + "repository_id": 2679, + "parent_product_id": 1582, + "root_product_id": 1612, + "update_tag": "SLE-Module-SAP-Applications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-SAP-Applications/15/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-SAP-Applications15-Pool for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-sap-applications15-debuginfo-pool-x86_64", + "parent_channel_label": "sle-product-sles_sap15-pool-x86_64", + "product_id": 1727, + "repository_id": 2680, + "parent_product_id": 1582, + "root_product_id": 1612, + "update_tag": "SLE-Module-SAP-Applications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-SAP-Applications/15/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-SAP-Applications15-Debuginfo-Pool for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud15-updates-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-pool-x86_64", + "product_id": 1611, + "repository_id": 2673, + "parent_product_id": 1580, + "root_product_id": 1612, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/15/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud15-Updates for x86_64 SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud15-debuginfo-updates-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-pool-x86_64", + "product_id": 1611, + "repository_id": 2674, + "parent_product_id": 1580, + "root_product_id": 1612, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/15/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud15-Debuginfo-Updates for x86_64 SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud15-pool-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-pool-x86_64", + "product_id": 1611, + "repository_id": 2675, + "parent_product_id": 1580, + "root_product_id": 1612, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud15-Pool for x86_64 SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud15-debuginfo-pool-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-pool-x86_64", + "product_id": 1611, + "repository_id": 2676, + "parent_product_id": 1580, + "root_product_id": 1612, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud15-Debuginfo-Pool for x86_64 SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting15-updates-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-pool-x86_64", + "product_id": 1721, + "repository_id": 2972, + "parent_product_id": 1580, + "root_product_id": 1612, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/15/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Web-Scripting15-Updates for x86_64 SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting15-debuginfo-updates-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-pool-x86_64", + "product_id": 1721, + "repository_id": 2973, + "parent_product_id": 1580, + "root_product_id": 1612, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/15/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Web-Scripting15-Debuginfo-Updates for x86_64 SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting15-pool-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-pool-x86_64", + "product_id": 1721, + "repository_id": 2974, + "parent_product_id": 1580, + "root_product_id": 1612, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Web-Scripting15-Pool for x86_64 SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting15-debuginfo-pool-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-pool-x86_64", + "product_id": 1721, + "repository_id": 2975, + "parent_product_id": 1580, + "root_product_id": 1612, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Web-Scripting15-Debuginfo-Pool for x86_64 SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-containers15-updates-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-pool-x86_64", + "product_id": 1642, + "repository_id": 2864, + "parent_product_id": 1576, + "root_product_id": 1612, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/15/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers15-Updates for x86_64 SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-containers15-debuginfo-updates-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-pool-x86_64", + "product_id": 1642, + "repository_id": 2865, + "parent_product_id": 1576, + "root_product_id": 1612, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/15/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers15-Debuginfo-Updates for x86_64 SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-containers15-pool-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-pool-x86_64", + "product_id": 1642, + "repository_id": 2866, + "parent_product_id": 1576, + "root_product_id": 1612, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers15-Pool for x86_64 SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-containers15-debuginfo-pool-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-pool-x86_64", + "product_id": 1642, + "repository_id": 2867, + "parent_product_id": 1576, + "root_product_id": 1612, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers15-Debuginfo-Pool for x86_64 SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-manager-tools15-updates-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-pool-x86_64", + "product_id": 1712, + "repository_id": 2932, + "parent_product_id": 1576, + "root_product_id": 1612, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/15/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-Updates for x86_64 SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools15-debuginfo-updates-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-pool-x86_64", + "product_id": 1712, + "repository_id": 2933, + "parent_product_id": 1576, + "root_product_id": 1612, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/15/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-Debuginfo-Updates for x86_64 SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools15-pool-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-pool-x86_64", + "product_id": 1712, + "repository_id": 2934, + "parent_product_id": 1576, + "root_product_id": 1612, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/15/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-Pool for x86_64 SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools15-debuginfo-pool-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-pool-x86_64", + "product_id": 1712, + "repository_id": 2935, + "parent_product_id": 1576, + "root_product_id": 1612, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/15/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-Debuginfo-Pool for x86_64 SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools15-beta-updates-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-pool-x86_64", + "product_id": 1928, + "repository_id": 3897, + "parent_product_id": 1712, + "root_product_id": 1612, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/15-BETA/x86_64/update/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-BETA-Updates for x86_64 SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools15-beta-debuginfo-updates-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-pool-x86_64", + "product_id": 1928, + "repository_id": 3898, + "parent_product_id": 1712, + "root_product_id": 1612, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/15-BETA/x86_64/update_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-BETA-Debuginfo-Updates for x86_64 SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools15-beta-pool-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-pool-x86_64", + "product_id": 1928, + "repository_id": 3908, + "parent_product_id": 1712, + "root_product_id": 1612, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/15-BETA/x86_64/product/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-BETA-Pool for x86_64 SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools15-beta-debuginfo-pool-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-pool-x86_64", + "product_id": 1928, + "repository_id": 3909, + "parent_product_id": 1712, + "root_product_id": 1612, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/15-BETA/x86_64/product_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-BETA-Debuginfo-Pool for x86_64 SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-module-cap-tools15-updates-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-pool-x86_64", + "product_id": 1728, + "repository_id": 3000, + "parent_product_id": 1576, + "root_product_id": 1612, + "update_tag": "SLE-Module-CAP-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-CAP-Tools/15/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-CAP-Tools15-Updates for x86_64 SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-cap-tools15-debuginfo-updates-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-pool-x86_64", + "product_id": 1728, + "repository_id": 3001, + "parent_product_id": 1576, + "root_product_id": 1612, + "update_tag": "SLE-Module-CAP-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-CAP-Tools/15/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-CAP-Tools15-Debuginfo-Updates for x86_64 SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-cap-tools15-pool-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-pool-x86_64", + "product_id": 1728, + "repository_id": 3002, + "parent_product_id": 1576, + "root_product_id": 1612, + "update_tag": "SLE-Module-CAP-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-CAP-Tools/15/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-CAP-Tools15-Pool for x86_64 SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-cap-tools15-debuginfo-pool-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-pool-x86_64", + "product_id": 1728, + "repository_id": 3003, + "parent_product_id": 1576, + "root_product_id": 1612, + "update_tag": "SLE-Module-CAP-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-CAP-Tools/15/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-CAP-Tools15-Debuginfo-Pool for x86_64 SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-live-patching15-updates-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-pool-x86_64", + "product_id": 1736, + "repository_id": 3033, + "parent_product_id": 1576, + "root_product_id": 1612, + "update_tag": "SLE-Module-Live-Patching", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Live-Patching/15/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Live-Patching15-Updates for x86_64 SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-live-patching15-debuginfo-updates-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-pool-x86_64", + "product_id": 1736, + "repository_id": 3034, + "parent_product_id": 1576, + "root_product_id": 1612, + "update_tag": "SLE-Module-Live-Patching", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Live-Patching/15/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Live-Patching15-Debuginfo-Updates for x86_64 SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-live-patching15-pool-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-pool-x86_64", + "product_id": 1736, + "repository_id": 3035, + "parent_product_id": 1576, + "root_product_id": 1612, + "update_tag": "SLE-Module-Live-Patching", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Live-Patching/15/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Live-Patching15-Pool for x86_64 SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-live-patching15-debuginfo-pool-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-pool-x86_64", + "product_id": 1736, + "repository_id": 3036, + "parent_product_id": 1576, + "root_product_id": 1612, + "update_tag": "SLE-Module-Live-Patching", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Live-Patching/15/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Live-Patching15-Debuginfo-Pool for x86_64 SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-packagehub-15-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-pool-x86_64", + "product_id": 1743, + "repository_id": 3059, + "parent_product_id": 1576, + "root_product_id": 1612, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-15_x86_64/standard/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-15-Standard-Pool for x86_64 SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-packagehub-15-debuginfo-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-pool-x86_64", + "product_id": 1743, + "repository_id": 3060, + "parent_product_id": 1576, + "root_product_id": 1612, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-15_x86_64/standard_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-15-Debuginfo for x86_64 SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-packagehub-15-pool-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-pool-x86_64", + "product_id": 1743, + "repository_id": 3061, + "parent_product_id": 1576, + "root_product_id": 1612, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-15_x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-15-Pool for x86_64 SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-packagehub-subpackages15-updates-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-pool-x86_64", + "product_id": 1743, + "repository_id": 3182, + "parent_product_id": 1576, + "root_product_id": 1612, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Packagehub-Subpackages15-Updates for x86_64 SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-packagehub-subpackages15-debuginfo-updates-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-pool-x86_64", + "product_id": 1743, + "repository_id": 3183, + "parent_product_id": 1576, + "root_product_id": 1612, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Packagehub-Subpackages15-Debuginfo-Updates for x86_64 SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-packagehub-subpackages15-pool-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-pool-x86_64", + "product_id": 1743, + "repository_id": 3184, + "parent_product_id": 1576, + "root_product_id": 1612, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Packagehub-Subpackages15-Pool for x86_64 SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-packagehub-subpackages15-debuginfo-pool-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-pool-x86_64", + "product_id": 1743, + "repository_id": 3185, + "parent_product_id": 1576, + "root_product_id": 1612, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Packagehub-Subpackages15-Debuginfo-Pool for x86_64 SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-sles_sap15-updates-ppc64le", + "parent_channel_label": "sle-product-sles_sap15-pool-ppc64le", + "product_id": 1613, + "repository_id": 2752, + "parent_product_id": null, + "root_product_id": 1613, + "update_tag": "SLE-Product-SLES_SAP", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-SLES_SAP/15/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-SLES_SAP15-Updates for ppc64le", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-sles_sap15-pool-ppc64le", + "parent_channel_label": null, + "product_id": 1613, + "repository_id": 2753, + "parent_product_id": null, + "root_product_id": 1613, + "update_tag": "SLE-Product-SLES_SAP", + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-SLES_SAP/15/ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-SLES_SAP15-Pool for ppc64le", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-sles_sap15-debuginfo-updates-ppc64le", + "parent_channel_label": "sle-product-sles_sap15-pool-ppc64le", + "product_id": 1613, + "repository_id": 3117, + "parent_product_id": null, + "root_product_id": 1613, + "update_tag": "SLE-Product-SLES_SAP", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-SLES_SAP/15/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-SLES_SAP15-Debuginfo-Updates for ppc64le", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-sles_sap15-debuginfo-pool-ppc64le", + "parent_channel_label": "sle-product-sles_sap15-pool-ppc64le", + "product_id": 1613, + "repository_id": 3118, + "parent_product_id": null, + "root_product_id": 1613, + "update_tag": "SLE-Product-SLES_SAP", + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-SLES_SAP/15/ppc64le/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-SLES_SAP15-Debuginfo-Pool for ppc64le", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-basesystem15-updates-ppc64le-sap", + "parent_channel_label": "sle-product-sles_sap15-pool-ppc64le", + "product_id": 1588, + "repository_id": 2569, + "parent_product_id": 1613, + "root_product_id": 1613, + "update_tag": "SLE-Module-Basesystem", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Basesystem15-Updates for ppc64le SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-basesystem15-debuginfo-updates-ppc64le-sap", + "parent_channel_label": "sle-product-sles_sap15-pool-ppc64le", + "product_id": 1588, + "repository_id": 2570, + "parent_product_id": 1613, + "root_product_id": 1613, + "update_tag": "SLE-Module-Basesystem", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Basesystem15-Debuginfo-Updates for ppc64le SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-basesystem15-pool-ppc64le-sap", + "parent_channel_label": "sle-product-sles_sap15-pool-ppc64le", + "product_id": 1588, + "repository_id": 2571, + "parent_product_id": 1613, + "root_product_id": 1613, + "update_tag": "SLE-Module-Basesystem", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15/ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Basesystem15-Pool for ppc64le SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-basesystem15-debuginfo-pool-ppc64le-sap", + "parent_channel_label": "sle-product-sles_sap15-pool-ppc64le", + "product_id": 1588, + "repository_id": 2572, + "parent_product_id": 1613, + "root_product_id": 1613, + "update_tag": "SLE-Module-Basesystem", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15/ppc64le/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Basesystem15-Debuginfo-Pool for ppc64le SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-desktop-applications15-updates-ppc64le-sap", + "parent_channel_label": "sle-product-sles_sap15-pool-ppc64le", + "product_id": 1594, + "repository_id": 2598, + "parent_product_id": 1588, + "root_product_id": 1613, + "update_tag": "SLE-Module-Desktop-Applications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Desktop-Applications15-Updates for ppc64le SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-desktop-applications15-debuginfo-updates-ppc64le-sap", + "parent_channel_label": "sle-product-sles_sap15-pool-ppc64le", + "product_id": 1594, + "repository_id": 2599, + "parent_product_id": 1588, + "root_product_id": 1613, + "update_tag": "SLE-Module-Desktop-Applications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Desktop-Applications15-Debuginfo-Updates for ppc64le SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-desktop-applications15-pool-ppc64le-sap", + "parent_channel_label": "sle-product-sles_sap15-pool-ppc64le", + "product_id": 1594, + "repository_id": 2600, + "parent_product_id": 1588, + "root_product_id": 1613, + "update_tag": "SLE-Module-Desktop-Applications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15/ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Desktop-Applications15-Pool for ppc64le SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-desktop-applications15-debuginfo-pool-ppc64le-sap", + "parent_channel_label": "sle-product-sles_sap15-pool-ppc64le", + "product_id": 1594, + "repository_id": 2601, + "parent_product_id": 1588, + "root_product_id": 1613, + "update_tag": "SLE-Module-Desktop-Applications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15/ppc64le/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Desktop-Applications15-Debuginfo-Pool for ppc64le SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-devtools15-updates-ppc64le-sap", + "parent_channel_label": "sle-product-sles_sap15-pool-ppc64le", + "product_id": 1597, + "repository_id": 2613, + "parent_product_id": 1594, + "root_product_id": 1613, + "update_tag": "SLE-Module-Development-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-DevTools15-Updates for ppc64le SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-devtools15-debuginfo-updates-ppc64le-sap", + "parent_channel_label": "sle-product-sles_sap15-pool-ppc64le", + "product_id": 1597, + "repository_id": 2614, + "parent_product_id": 1594, + "root_product_id": 1613, + "update_tag": "SLE-Module-Development-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-DevTools15-Debuginfo-Updates for ppc64le SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-devtools15-pool-ppc64le-sap", + "parent_channel_label": "sle-product-sles_sap15-pool-ppc64le", + "product_id": 1597, + "repository_id": 2615, + "parent_product_id": 1594, + "root_product_id": 1613, + "update_tag": "SLE-Module-Development-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15/ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-DevTools15-Pool for ppc64le SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-devtools15-debuginfo-pool-ppc64le-sap", + "parent_channel_label": "sle-product-sles_sap15-pool-ppc64le", + "product_id": 1597, + "repository_id": 2616, + "parent_product_id": 1594, + "root_product_id": 1613, + "update_tag": "SLE-Module-Development-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15/ppc64le/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-DevTools15-Debuginfo-Pool for ppc64le SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-server-applications15-updates-ppc64le-sap", + "parent_channel_label": "sle-product-sles_sap15-pool-ppc64le", + "product_id": 1600, + "repository_id": 2628, + "parent_product_id": 1588, + "root_product_id": 1613, + "update_tag": "SLE-Module-Server-Applications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Server-Applications15-Updates for ppc64le SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-server-applications15-debuginfo-updates-ppc64le-sap", + "parent_channel_label": "sle-product-sles_sap15-pool-ppc64le", + "product_id": 1600, + "repository_id": 2629, + "parent_product_id": 1588, + "root_product_id": 1613, + "update_tag": "SLE-Module-Server-Applications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Server-Applications15-Debuginfo-Updates for ppc64le SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-server-applications15-pool-ppc64le-sap", + "parent_channel_label": "sle-product-sles_sap15-pool-ppc64le", + "product_id": 1600, + "repository_id": 2630, + "parent_product_id": 1588, + "root_product_id": 1613, + "update_tag": "SLE-Module-Server-Applications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15/ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Server-Applications15-Pool for ppc64le SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-server-applications15-debuginfo-pool-ppc64le-sap", + "parent_channel_label": "sle-product-sles_sap15-pool-ppc64le", + "product_id": 1600, + "repository_id": 2631, + "parent_product_id": 1588, + "root_product_id": 1613, + "update_tag": "SLE-Module-Server-Applications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15/ppc64le/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Server-Applications15-Debuginfo-Pool for ppc64le SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-legacy15-updates-ppc64le-sap", + "parent_channel_label": "sle-product-sles_sap15-pool-ppc64le", + "product_id": 1603, + "repository_id": 2643, + "parent_product_id": 1600, + "root_product_id": 1613, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/15/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy15-Updates for ppc64le SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-legacy15-debuginfo-updates-ppc64le-sap", + "parent_channel_label": "sle-product-sles_sap15-pool-ppc64le", + "product_id": 1603, + "repository_id": 2644, + "parent_product_id": 1600, + "root_product_id": 1613, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/15/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy15-Debuginfo-Updates for ppc64le SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-legacy15-pool-ppc64le-sap", + "parent_channel_label": "sle-product-sles_sap15-pool-ppc64le", + "product_id": 1603, + "repository_id": 2645, + "parent_product_id": 1600, + "root_product_id": 1613, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15/ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy15-Pool for ppc64le SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-legacy15-debuginfo-pool-ppc64le-sap", + "parent_channel_label": "sle-product-sles_sap15-pool-ppc64le", + "product_id": 1603, + "repository_id": 2646, + "parent_product_id": 1600, + "root_product_id": 1613, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15/ppc64le/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy15-Debuginfo-Pool for ppc64le SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-ha15-updates-ppc64le-sap", + "parent_channel_label": "sle-product-sles_sap15-pool-ppc64le", + "product_id": 1606, + "repository_id": 2764, + "parent_product_id": 1600, + "root_product_id": 1613, + "update_tag": "SLE-Product-HA", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-HA/15/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Product-HA15-Updates for ppc64le SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-ha15-debuginfo-updates-ppc64le-sap", + "parent_channel_label": "sle-product-sles_sap15-pool-ppc64le", + "product_id": 1606, + "repository_id": 2765, + "parent_product_id": 1600, + "root_product_id": 1613, + "update_tag": "SLE-Product-HA", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-HA/15/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Product-HA15-Debuginfo-Updates for ppc64le SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-ha15-pool-ppc64le-sap", + "parent_channel_label": "sle-product-sles_sap15-pool-ppc64le", + "product_id": 1606, + "repository_id": 2766, + "parent_product_id": 1600, + "root_product_id": 1613, + "update_tag": "SLE-Product-HA", + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-HA/15/ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Product-HA15-Pool for ppc64le SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-ha15-debuginfo-pool-ppc64le-sap", + "parent_channel_label": "sle-product-sles_sap15-pool-ppc64le", + "product_id": 1606, + "repository_id": 2767, + "parent_product_id": 1600, + "root_product_id": 1613, + "update_tag": "SLE-Product-HA", + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-HA/15/ppc64le/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Product-HA15-Debuginfo-Pool for ppc64le SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-sap-applications15-updates-ppc64le", + "parent_channel_label": "sle-product-sles_sap15-pool-ppc64le", + "product_id": 1726, + "repository_id": 2682, + "parent_product_id": 1606, + "root_product_id": 1613, + "update_tag": "SLE-Module-SAP-Applications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-SAP-Applications/15/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-SAP-Applications15-Updates for ppc64le", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-sap-applications15-debuginfo-updates-ppc64le", + "parent_channel_label": "sle-product-sles_sap15-pool-ppc64le", + "product_id": 1726, + "repository_id": 2683, + "parent_product_id": 1606, + "root_product_id": 1613, + "update_tag": "SLE-Module-SAP-Applications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-SAP-Applications/15/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-SAP-Applications15-Debuginfo-Updates for ppc64le", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-sap-applications15-pool-ppc64le", + "parent_channel_label": "sle-product-sles_sap15-pool-ppc64le", + "product_id": 1726, + "repository_id": 2684, + "parent_product_id": 1606, + "root_product_id": 1613, + "update_tag": "SLE-Module-SAP-Applications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-SAP-Applications/15/ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-SAP-Applications15-Pool for ppc64le", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-sap-applications15-debuginfo-pool-ppc64le", + "parent_channel_label": "sle-product-sles_sap15-pool-ppc64le", + "product_id": 1726, + "repository_id": 2685, + "parent_product_id": 1606, + "root_product_id": 1613, + "update_tag": "SLE-Module-SAP-Applications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-SAP-Applications/15/ppc64le/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-SAP-Applications15-Debuginfo-Pool for ppc64le", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud15-updates-ppc64le-sap", + "parent_channel_label": "sle-product-sles_sap15-pool-ppc64le", + "product_id": 1616, + "repository_id": 2687, + "parent_product_id": 1600, + "root_product_id": 1613, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/15/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud15-Updates for ppc64le SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud15-debuginfo-updates-ppc64le-sap", + "parent_channel_label": "sle-product-sles_sap15-pool-ppc64le", + "product_id": 1616, + "repository_id": 2688, + "parent_product_id": 1600, + "root_product_id": 1613, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/15/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud15-Debuginfo-Updates for ppc64le SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud15-pool-ppc64le-sap", + "parent_channel_label": "sle-product-sles_sap15-pool-ppc64le", + "product_id": 1616, + "repository_id": 2689, + "parent_product_id": 1600, + "root_product_id": 1613, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15/ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud15-Pool for ppc64le SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud15-debuginfo-pool-ppc64le-sap", + "parent_channel_label": "sle-product-sles_sap15-pool-ppc64le", + "product_id": 1616, + "repository_id": 2690, + "parent_product_id": 1600, + "root_product_id": 1613, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15/ppc64le/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud15-Debuginfo-Pool for ppc64le SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting15-updates-ppc64le-sap", + "parent_channel_label": "sle-product-sles_sap15-pool-ppc64le", + "product_id": 1719, + "repository_id": 2962, + "parent_product_id": 1600, + "root_product_id": 1613, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/15/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Web-Scripting15-Updates for ppc64le SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting15-debuginfo-updates-ppc64le-sap", + "parent_channel_label": "sle-product-sles_sap15-pool-ppc64le", + "product_id": 1719, + "repository_id": 2963, + "parent_product_id": 1600, + "root_product_id": 1613, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/15/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Web-Scripting15-Debuginfo-Updates for ppc64le SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting15-pool-ppc64le-sap", + "parent_channel_label": "sle-product-sles_sap15-pool-ppc64le", + "product_id": 1719, + "repository_id": 2964, + "parent_product_id": 1600, + "root_product_id": 1613, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15/ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Web-Scripting15-Pool for ppc64le SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting15-debuginfo-pool-ppc64le-sap", + "parent_channel_label": "sle-product-sles_sap15-pool-ppc64le", + "product_id": 1719, + "repository_id": 2965, + "parent_product_id": 1600, + "root_product_id": 1613, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15/ppc64le/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Web-Scripting15-Debuginfo-Pool for ppc64le SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "ibm-power-adv-toolchain-sap", + "parent_channel_label": "sle-product-sles_sap15-pool-ppc64le", + "product_id": 2076, + "repository_id": 4430, + "parent_product_id": 1600, + "root_product_id": 1613, + "update_tag": null, + "url": "https://public.dhe.ibm.com/software/server/POWER/Linux/toolchain/at/suse/SLES_15/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "IBM-POWER-Adv-Toolchain for ppc64le SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "ibm-power-tools-sap", + "parent_channel_label": "sle-product-sles_sap15-pool-ppc64le", + "product_id": 2077, + "repository_id": 4431, + "parent_product_id": 1600, + "root_product_id": 1613, + "update_tag": null, + "url": "https://public.dhe.ibm.com/software/server/POWER/Linux/yum/OSS/SLES/15/ppc64le/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "IBM-POWER-Tools for ppc64le SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-containers15-updates-ppc64le-sap", + "parent_channel_label": "sle-product-sles_sap15-pool-ppc64le", + "product_id": 1640, + "repository_id": 2854, + "parent_product_id": 1588, + "root_product_id": 1613, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/15/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers15-Updates for ppc64le SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-containers15-debuginfo-updates-ppc64le-sap", + "parent_channel_label": "sle-product-sles_sap15-pool-ppc64le", + "product_id": 1640, + "repository_id": 2855, + "parent_product_id": 1588, + "root_product_id": 1613, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/15/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers15-Debuginfo-Updates for ppc64le SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-containers15-pool-ppc64le-sap", + "parent_channel_label": "sle-product-sles_sap15-pool-ppc64le", + "product_id": 1640, + "repository_id": 2856, + "parent_product_id": 1588, + "root_product_id": 1613, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15/ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers15-Pool for ppc64le SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-containers15-debuginfo-pool-ppc64le-sap", + "parent_channel_label": "sle-product-sles_sap15-pool-ppc64le", + "product_id": 1640, + "repository_id": 2857, + "parent_product_id": 1588, + "root_product_id": 1613, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15/ppc64le/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers15-Debuginfo-Pool for ppc64le SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-manager-tools15-updates-ppc64le-sap", + "parent_channel_label": "sle-product-sles_sap15-pool-ppc64le", + "product_id": 1710, + "repository_id": 2922, + "parent_product_id": 1588, + "root_product_id": 1613, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/15/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-Updates for ppc64le SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools15-debuginfo-updates-ppc64le-sap", + "parent_channel_label": "sle-product-sles_sap15-pool-ppc64le", + "product_id": 1710, + "repository_id": 2923, + "parent_product_id": 1588, + "root_product_id": 1613, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/15/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-Debuginfo-Updates for ppc64le SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools15-pool-ppc64le-sap", + "parent_channel_label": "sle-product-sles_sap15-pool-ppc64le", + "product_id": 1710, + "repository_id": 2924, + "parent_product_id": 1588, + "root_product_id": 1613, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/15/ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-Pool for ppc64le SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools15-debuginfo-pool-ppc64le-sap", + "parent_channel_label": "sle-product-sles_sap15-pool-ppc64le", + "product_id": 1710, + "repository_id": 2925, + "parent_product_id": 1588, + "root_product_id": 1613, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/15/ppc64le/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-Debuginfo-Pool for ppc64le SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools15-beta-updates-ppc64le-sap", + "parent_channel_label": "sle-product-sles_sap15-pool-ppc64le", + "product_id": 1926, + "repository_id": 3893, + "parent_product_id": 1710, + "root_product_id": 1613, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/15-BETA/ppc64le/update/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-BETA-Updates for ppc64le SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools15-beta-debuginfo-updates-ppc64le-sap", + "parent_channel_label": "sle-product-sles_sap15-pool-ppc64le", + "product_id": 1926, + "repository_id": 3894, + "parent_product_id": 1710, + "root_product_id": 1613, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/15-BETA/ppc64le/update_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-BETA-Debuginfo-Updates for ppc64le SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools15-beta-pool-ppc64le-sap", + "parent_channel_label": "sle-product-sles_sap15-pool-ppc64le", + "product_id": 1926, + "repository_id": 3902, + "parent_product_id": 1710, + "root_product_id": 1613, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/15-BETA/ppc64le/product/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-BETA-Pool for ppc64le SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools15-beta-debuginfo-pool-ppc64le-sap", + "parent_channel_label": "sle-product-sles_sap15-pool-ppc64le", + "product_id": 1926, + "repository_id": 3903, + "parent_product_id": 1710, + "root_product_id": 1613, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/15-BETA/ppc64le/product_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-BETA-Debuginfo-Pool for ppc64le SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-module-live-patching15-updates-ppc64le-sap", + "parent_channel_label": "sle-product-sles_sap15-pool-ppc64le", + "product_id": 1735, + "repository_id": 3029, + "parent_product_id": 1588, + "root_product_id": 1613, + "update_tag": "SLE-Module-Live-Patching", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Live-Patching/15/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Live-Patching15-Updates for ppc64le SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-live-patching15-debuginfo-updates-ppc64le-sap", + "parent_channel_label": "sle-product-sles_sap15-pool-ppc64le", + "product_id": 1735, + "repository_id": 3030, + "parent_product_id": 1588, + "root_product_id": 1613, + "update_tag": "SLE-Module-Live-Patching", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Live-Patching/15/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Live-Patching15-Debuginfo-Updates for ppc64le SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-live-patching15-pool-ppc64le-sap", + "parent_channel_label": "sle-product-sles_sap15-pool-ppc64le", + "product_id": 1735, + "repository_id": 3031, + "parent_product_id": 1588, + "root_product_id": 1613, + "update_tag": "SLE-Module-Live-Patching", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Live-Patching/15/ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Live-Patching15-Pool for ppc64le SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-live-patching15-debuginfo-pool-ppc64le-sap", + "parent_channel_label": "sle-product-sles_sap15-pool-ppc64le", + "product_id": 1735, + "repository_id": 3032, + "parent_product_id": 1588, + "root_product_id": 1613, + "update_tag": "SLE-Module-Live-Patching", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Live-Patching/15/ppc64le/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Live-Patching15-Debuginfo-Pool for ppc64le SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-packagehub-15-ppc64le-sap", + "parent_channel_label": "sle-product-sles_sap15-pool-ppc64le", + "product_id": 1741, + "repository_id": 3053, + "parent_product_id": 1588, + "root_product_id": 1613, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-15_ppc64le/standard/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-15-Standard-Pool for ppc64le SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-packagehub-15-debuginfo-ppc64le-sap", + "parent_channel_label": "sle-product-sles_sap15-pool-ppc64le", + "product_id": 1741, + "repository_id": 3054, + "parent_product_id": 1588, + "root_product_id": 1613, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-15_ppc64le/standard_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-15-Debuginfo for ppc64le SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-packagehub-15-pool-ppc64le-sap", + "parent_channel_label": "sle-product-sles_sap15-pool-ppc64le", + "product_id": 1741, + "repository_id": 3055, + "parent_product_id": 1588, + "root_product_id": 1613, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-15_ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-15-Pool for ppc64le SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-packagehub-subpackages15-updates-ppc64le-sap", + "parent_channel_label": "sle-product-sles_sap15-pool-ppc64le", + "product_id": 1741, + "repository_id": 3172, + "parent_product_id": 1588, + "root_product_id": 1613, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Packagehub-Subpackages15-Updates for ppc64le SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-packagehub-subpackages15-debuginfo-updates-ppc64le-sap", + "parent_channel_label": "sle-product-sles_sap15-pool-ppc64le", + "product_id": 1741, + "repository_id": 3173, + "parent_product_id": 1588, + "root_product_id": 1613, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Packagehub-Subpackages15-Debuginfo-Updates for ppc64le SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-packagehub-subpackages15-pool-ppc64le-sap", + "parent_channel_label": "sle-product-sles_sap15-pool-ppc64le", + "product_id": 1741, + "repository_id": 3174, + "parent_product_id": 1588, + "root_product_id": 1613, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15/ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Packagehub-Subpackages15-Pool for ppc64le SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-packagehub-subpackages15-debuginfo-pool-ppc64le-sap", + "parent_channel_label": "sle-product-sles_sap15-pool-ppc64le", + "product_id": 1741, + "repository_id": 3175, + "parent_product_id": 1588, + "root_product_id": 1613, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15/ppc64le/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Packagehub-Subpackages15-Debuginfo-Pool for ppc64le SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-manager-tools12-updates-x86_64-sp4", + "parent_channel_label": "sles12-sp4-pool-x86_64", + "product_id": 1625, + "repository_id": 1732, + "parent_product_id": null, + "root_product_id": 1625, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/12/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Manager-Tools12-Updates for x86_64 SP4", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools12-debuginfo-updates-x86_64-sp4", + "parent_channel_label": "sles12-sp4-pool-x86_64", + "product_id": 1625, + "repository_id": 1733, + "parent_product_id": null, + "root_product_id": 1625, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/12/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Manager-Tools12-Debuginfo-Updates for x86_64 SP4", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools12-pool-x86_64-sp4", + "parent_channel_label": "sles12-sp4-pool-x86_64", + "product_id": 1625, + "repository_id": 1734, + "parent_product_id": null, + "root_product_id": 1625, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/12/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Manager-Tools12-Pool for x86_64 SP4", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools12-debuginfo-pool-x86_64-sp4", + "parent_channel_label": "sles12-sp4-pool-x86_64", + "product_id": 1625, + "repository_id": 1735, + "parent_product_id": null, + "root_product_id": 1625, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/12/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Manager-Tools12-Debuginfo-Pool for x86_64 SP4", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sles12-sp4-updates-x86_64", + "parent_channel_label": "sles12-sp4-pool-x86_64", + "product_id": 1625, + "repository_id": 2769, + "parent_product_id": null, + "root_product_id": 1625, + "update_tag": "SLE-SERVER", + "url": "https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-SP4/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLES12-SP4-Updates for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles12-sp4-debuginfo-updates-x86_64", + "parent_channel_label": "sles12-sp4-pool-x86_64", + "product_id": 1625, + "repository_id": 2770, + "parent_product_id": null, + "root_product_id": 1625, + "update_tag": "SLE-SERVER", + "url": "https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-SP4/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLES12-SP4-Debuginfo-Updates for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles12-sp4-installer-updates-x86_64", + "parent_channel_label": "sles12-sp4-pool-x86_64", + "product_id": 1625, + "repository_id": 2771, + "parent_product_id": null, + "root_product_id": 1625, + "update_tag": "SLE-SERVER-INSTALLER", + "url": "https://updates.suse.com/SUSE/Updates/SLE-SERVER-INSTALLER/12-SP4/x86_64/update/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLES12-SP4-Installer-Updates for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles12-sp4-pool-x86_64", + "parent_channel_label": null, + "product_id": 1625, + "repository_id": 2772, + "parent_product_id": null, + "root_product_id": 1625, + "update_tag": "SLE-SERVER", + "url": "https://updates.suse.com/SUSE/Products/SLE-SERVER/12-SP4/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLES12-SP4-Pool for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles12-sp4-debuginfo-pool-x86_64", + "parent_channel_label": "sles12-sp4-pool-x86_64", + "product_id": 1625, + "repository_id": 2773, + "parent_product_id": null, + "root_product_id": 1625, + "update_tag": "SLE-SERVER", + "url": "https://updates.suse.com/SUSE/Products/SLE-SERVER/12-SP4/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLES12-SP4-Debuginfo-Pool for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-legacy12-updates-x86_64-sp4", + "parent_channel_label": "sles12-sp4-pool-x86_64", + "product_id": 1150, + "repository_id": 1676, + "parent_product_id": 1625, + "root_product_id": 1625, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/12/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy12-Updates for x86_64 SP4", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-legacy12-debuginfo-updates-x86_64-sp4", + "parent_channel_label": "sles12-sp4-pool-x86_64", + "product_id": 1150, + "repository_id": 1677, + "parent_product_id": 1625, + "root_product_id": 1625, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/12/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy12-Debuginfo-Updates for x86_64 SP4", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-legacy12-pool-x86_64-sp4", + "parent_channel_label": "sles12-sp4-pool-x86_64", + "product_id": 1150, + "repository_id": 1678, + "parent_product_id": 1625, + "root_product_id": 1625, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/12/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy12-Pool for x86_64 SP4", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-legacy12-debuginfo-pool-x86_64-sp4", + "parent_channel_label": "sles12-sp4-pool-x86_64", + "product_id": 1150, + "repository_id": 1679, + "parent_product_id": 1625, + "root_product_id": 1625, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/12/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy12-Debuginfo-Pool for x86_64 SP4", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting12-updates-x86_64-sp4", + "parent_channel_label": "sles12-sp4-pool-x86_64", + "product_id": 1153, + "repository_id": 1688, + "parent_product_id": 1625, + "root_product_id": 1625, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/12/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Web-Scripting12-Updates for x86_64 SP4", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting12-debuginfo-updates-x86_64-sp4", + "parent_channel_label": "sles12-sp4-pool-x86_64", + "product_id": 1153, + "repository_id": 1689, + "parent_product_id": 1625, + "root_product_id": 1625, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/12/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Web-Scripting12-Debuginfo-Updates for x86_64 SP4", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting12-pool-x86_64-sp4", + "parent_channel_label": "sles12-sp4-pool-x86_64", + "product_id": 1153, + "repository_id": 1690, + "parent_product_id": 1625, + "root_product_id": 1625, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/12/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Web-Scripting12-Pool for x86_64 SP4", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting12-debuginfo-pool-x86_64-sp4", + "parent_channel_label": "sles12-sp4-pool-x86_64", + "product_id": 1153, + "repository_id": 1691, + "parent_product_id": 1625, + "root_product_id": 1625, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/12/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Web-Scripting12-Debuginfo-Pool for x86_64 SP4", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-adv-systems-management12-updates-x86_64-sp4", + "parent_channel_label": "sles12-sp4-pool-x86_64", + "product_id": 1212, + "repository_id": 1704, + "parent_product_id": 1625, + "root_product_id": 1625, + "update_tag": "SLE-Module-Adv-Systems-Management", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Adv-Systems-Management/12/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Adv-Systems-Management12-Updates for x86_64 SP4", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-adv-systems-management12-debuginfo-updates-x86_64-sp4", + "parent_channel_label": "sles12-sp4-pool-x86_64", + "product_id": 1212, + "repository_id": 1705, + "parent_product_id": 1625, + "root_product_id": 1625, + "update_tag": "SLE-Module-Adv-Systems-Management", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Adv-Systems-Management/12/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Adv-Systems-Management12-Debuginfo-Updates for x86_64 SP4", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-adv-systems-management12-pool-x86_64-sp4", + "parent_channel_label": "sles12-sp4-pool-x86_64", + "product_id": 1212, + "repository_id": 1706, + "parent_product_id": 1625, + "root_product_id": 1625, + "update_tag": "SLE-Module-Adv-Systems-Management", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Adv-Systems-Management/12/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Adv-Systems-Management12-Pool for x86_64 SP4", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-adv-systems-management12-debuginfo-pool-x86_64-sp4", + "parent_channel_label": "sles12-sp4-pool-x86_64", + "product_id": 1212, + "repository_id": 1707, + "parent_product_id": 1625, + "root_product_id": 1625, + "update_tag": "SLE-Module-Adv-Systems-Management", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Adv-Systems-Management/12/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Adv-Systems-Management12-Debuginfo-Pool for x86_64 SP4", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud12-updates-x86_64-sp4", + "parent_channel_label": "sles12-sp4-pool-x86_64", + "product_id": 1220, + "repository_id": 1700, + "parent_product_id": 1625, + "root_product_id": 1625, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/12/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud12-Updates for x86_64 SP4", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud12-debuginfo-updates-x86_64-sp4", + "parent_channel_label": "sles12-sp4-pool-x86_64", + "product_id": 1220, + "repository_id": 1701, + "parent_product_id": 1625, + "root_product_id": 1625, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/12/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud12-Debuginfo-Updates for x86_64 SP4", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud12-pool-x86_64-sp4", + "parent_channel_label": "sles12-sp4-pool-x86_64", + "product_id": 1220, + "repository_id": 1702, + "parent_product_id": 1625, + "root_product_id": 1625, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/12/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud12-Pool for x86_64 SP4", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud12-debuginfo-pool-x86_64-sp4", + "parent_channel_label": "sles12-sp4-pool-x86_64", + "product_id": 1220, + "repository_id": 1703, + "parent_product_id": 1625, + "root_product_id": 1625, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/12/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud12-Debuginfo-Pool for x86_64 SP4", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-containers12-updates-x86_64-sp4", + "parent_channel_label": "sles12-sp4-pool-x86_64", + "product_id": 1332, + "repository_id": 1864, + "parent_product_id": 1625, + "root_product_id": 1625, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/12/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers12-Updates for x86_64 SP4", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-containers12-debuginfo-updates-x86_64-sp4", + "parent_channel_label": "sles12-sp4-pool-x86_64", + "product_id": 1332, + "repository_id": 1865, + "parent_product_id": 1625, + "root_product_id": 1625, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/12/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers12-Debuginfo-Updates for x86_64 SP4", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-containers12-pool-x86_64-sp4", + "parent_channel_label": "sles12-sp4-pool-x86_64", + "product_id": 1332, + "repository_id": 1866, + "parent_product_id": 1625, + "root_product_id": 1625, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Containers/12/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers12-Pool for x86_64 SP4", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-containers12-debuginfo-pool-x86_64-sp4", + "parent_channel_label": "sles12-sp4-pool-x86_64", + "product_id": 1332, + "repository_id": 1867, + "parent_product_id": 1625, + "root_product_id": 1625, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Containers/12/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers12-Debuginfo-Pool for x86_64 SP4", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-toolchain12-updates-x86_64-sp4", + "parent_channel_label": "sles12-sp4-pool-x86_64", + "product_id": 1341, + "repository_id": 1903, + "parent_product_id": 1625, + "root_product_id": 1625, + "update_tag": "SLE-Module-Toolchain", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Toolchain/12/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Toolchain12-Updates for x86_64 SP4", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-toolchain12-debuginfo-updates-x86_64-sp4", + "parent_channel_label": "sles12-sp4-pool-x86_64", + "product_id": 1341, + "repository_id": 1904, + "parent_product_id": 1625, + "root_product_id": 1625, + "update_tag": "SLE-Module-Toolchain", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Toolchain/12/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Toolchain12-Debuginfo-Updates for x86_64 SP4", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-toolchain12-pool-x86_64-sp4", + "parent_channel_label": "sles12-sp4-pool-x86_64", + "product_id": 1341, + "repository_id": 1905, + "parent_product_id": 1625, + "root_product_id": 1625, + "update_tag": "SLE-Module-Toolchain", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Toolchain/12/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Toolchain12-Pool for x86_64 SP4", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-toolchain12-debuginfo-pool-x86_64-sp4", + "parent_channel_label": "sles12-sp4-pool-x86_64", + "product_id": 1341, + "repository_id": 1906, + "parent_product_id": 1625, + "root_product_id": 1625, + "update_tag": "SLE-Module-Toolchain", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Toolchain/12/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Toolchain12-Debuginfo-Pool for x86_64 SP4", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-pos12-sp2-updates-x86_64-sp4", + "parent_channel_label": "sles12-sp4-pool-x86_64", + "product_id": 1439, + "repository_id": 2289, + "parent_product_id": 1625, + "root_product_id": 1625, + "update_tag": "SLE-POS", + "url": "https://updates.suse.com/SUSE/Updates/SLE-POS/12-SP2/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-POS12-SP2-Updates for x86_64 SP4", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-pos12-sp2-debuginfo-updates-x86_64-sp4", + "parent_channel_label": "sles12-sp4-pool-x86_64", + "product_id": 1439, + "repository_id": 2290, + "parent_product_id": 1625, + "root_product_id": 1625, + "update_tag": "SLE-POS", + "url": "https://updates.suse.com/SUSE/Updates/SLE-POS/12-SP2/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-POS12-SP2-Debuginfo-Updates for x86_64 SP4", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-pos12-sp2-pool-x86_64-sp4", + "parent_channel_label": "sles12-sp4-pool-x86_64", + "product_id": 1439, + "repository_id": 2291, + "parent_product_id": 1625, + "root_product_id": 1625, + "update_tag": "SLE-POS", + "url": "https://updates.suse.com/SUSE/Products/SLE-POS/12-SP2/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-POS12-SP2-Pool for x86_64 SP4", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-pos12-sp2-debuginfo-pool-x86_64-sp4", + "parent_channel_label": "sles12-sp4-pool-x86_64", + "product_id": 1439, + "repository_id": 2292, + "parent_product_id": 1625, + "root_product_id": 1625, + "update_tag": "SLE-POS", + "url": "https://updates.suse.com/SUSE/Products/SLE-POS/12-SP2/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-POS12-SP2-Debuginfo-Pool for x86_64 SP4", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-pos12-sp2-client-updates-x86_64-sp4", + "parent_channel_label": "sles12-sp4-pool-x86_64", + "product_id": 1439, + "repository_id": 3130, + "parent_product_id": 1625, + "root_product_id": 1625, + "update_tag": "SLE-POS", + "url": "https://updates.suse.com/SUSE/Updates/SLE-POS/12-SP2-CLIENT/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-POS12-SP2-CLIENT-Updates for x86_64 SP4", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-pos12-sp2-client-debuginfo-updates-x86_64-sp4", + "parent_channel_label": "sles12-sp4-pool-x86_64", + "product_id": 1439, + "repository_id": 3131, + "parent_product_id": 1625, + "root_product_id": 1625, + "update_tag": "SLE-POS", + "url": "https://updates.suse.com/SUSE/Updates/SLE-POS/12-SP2-CLIENT/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-POS12-SP2-CLIENT-Debuginfo-Updates for x86_64 SP4", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-hpc12-updates-x86_64-sp4", + "parent_channel_label": "sles12-sp4-pool-x86_64", + "product_id": 1440, + "repository_id": 2294, + "parent_product_id": 1625, + "root_product_id": 1625, + "update_tag": "SLE-Module-HPC", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-HPC/12/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-HPC12-Updates for x86_64 SP4", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-hpc12-debuginfo-updates-x86_64-sp4", + "parent_channel_label": "sles12-sp4-pool-x86_64", + "product_id": 1440, + "repository_id": 2295, + "parent_product_id": 1625, + "root_product_id": 1625, + "update_tag": "SLE-Module-HPC", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-HPC/12/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-HPC12-Debuginfo-Updates for x86_64 SP4", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-hpc12-pool-x86_64-sp4", + "parent_channel_label": "sles12-sp4-pool-x86_64", + "product_id": 1440, + "repository_id": 2296, + "parent_product_id": 1625, + "root_product_id": 1625, + "update_tag": "SLE-Module-HPC", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-HPC/12/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-HPC12-Pool for x86_64 SP4", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-hpc12-debuginfo-pool-x86_64-sp4", + "parent_channel_label": "sles12-sp4-pool-x86_64", + "product_id": 1440, + "repository_id": 2297, + "parent_product_id": 1625, + "root_product_id": 1625, + "update_tag": "SLE-Module-HPC", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-HPC/12/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-HPC12-Debuginfo-Pool for x86_64 SP4", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-manager-server-3.1-updates-x86_64-sp4", + "parent_channel_label": "sles12-sp4-pool-x86_64", + "product_id": 1518, + "repository_id": 2400, + "parent_product_id": 1625, + "root_product_id": 1625, + "update_tag": "SUSE-Manager-Server-3.1", + "url": "https://updates.suse.com/SUSE/Updates/SUSE-Manager-Server/3.1/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-Manager-Server-3.1-Updates for x86_64 SP4", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-manager-server-3.1-debuginfo-updates-x86_64-sp4", + "parent_channel_label": "sles12-sp4-pool-x86_64", + "product_id": 1518, + "repository_id": 2401, + "parent_product_id": 1625, + "root_product_id": 1625, + "update_tag": "SUSE-Manager-Server-3.1", + "url": "https://updates.suse.com/SUSE/Updates/SUSE-Manager-Server/3.1/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SUSE-Manager-Server-3.1-Debuginfo-Updates for x86_64 SP4", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-manager-server-3.1-pool-x86_64-sp4", + "parent_channel_label": "sles12-sp4-pool-x86_64", + "product_id": 1518, + "repository_id": 2402, + "parent_product_id": 1625, + "root_product_id": 1625, + "update_tag": "SUSE-Manager-Server-3.1", + "url": "https://updates.suse.com/SUSE/Products/SUSE-Manager-Server/3.1/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-Manager-Server-3.1-Pool for x86_64 SP4", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-manager-server-3.1-debuginfo-pool-x86_64-sp4", + "parent_channel_label": "sles12-sp4-pool-x86_64", + "product_id": 1518, + "repository_id": 2403, + "parent_product_id": 1625, + "root_product_id": 1625, + "update_tag": "SUSE-Manager-Server-3.1", + "url": "https://updates.suse.com/SUSE/Products/SUSE-Manager-Server/3.1/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SUSE-Manager-Server-3.1-Debuginfo-Pool for x86_64 SP4", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-manager-proxy-3.1-updates-x86_64-sp4", + "parent_channel_label": "sles12-sp4-pool-x86_64", + "product_id": 1520, + "repository_id": 2410, + "parent_product_id": 1625, + "root_product_id": 1625, + "update_tag": "SUSE-Manager-Proxy-3.1", + "url": "https://updates.suse.com/SUSE/Updates/SUSE-Manager-Proxy/3.1/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-Manager-Proxy-3.1-Updates for x86_64 SP4", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-manager-proxy-3.1-debuginfo-updates-x86_64-sp4", + "parent_channel_label": "sles12-sp4-pool-x86_64", + "product_id": 1520, + "repository_id": 2411, + "parent_product_id": 1625, + "root_product_id": 1625, + "update_tag": "SUSE-Manager-Proxy-3.1", + "url": "https://updates.suse.com/SUSE/Updates/SUSE-Manager-Proxy/3.1/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SUSE-Manager-Proxy-3.1-Debuginfo-Updates for x86_64 SP4", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-manager-proxy-3.1-pool-x86_64-sp4", + "parent_channel_label": "sles12-sp4-pool-x86_64", + "product_id": 1520, + "repository_id": 2412, + "parent_product_id": 1625, + "root_product_id": 1625, + "update_tag": "SUSE-Manager-Proxy-3.1", + "url": "https://updates.suse.com/SUSE/Products/SUSE-Manager-Proxy/3.1/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-Manager-Proxy-3.1-Pool for x86_64 SP4", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-manager-proxy-3.1-debuginfo-pool-x86_64-sp4", + "parent_channel_label": "sles12-sp4-pool-x86_64", + "product_id": 1520, + "repository_id": 2413, + "parent_product_id": 1625, + "root_product_id": 1625, + "update_tag": "SUSE-Manager-Proxy-3.1", + "url": "https://updates.suse.com/SUSE/Products/SUSE-Manager-Proxy/3.1/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SUSE-Manager-Proxy-3.1-Debuginfo-Pool for x86_64 SP4", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-sdk12-sp4-updates-x86_64", + "parent_channel_label": "sles12-sp4-pool-x86_64", + "product_id": 1630, + "repository_id": 2799, + "parent_product_id": 1625, + "root_product_id": 1625, + "update_tag": "SLE-SDK", + "url": "https://updates.suse.com/SUSE/Updates/SLE-SDK/12-SP4/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-SDK12-SP4-Updates for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-sdk12-sp4-debuginfo-updates-x86_64", + "parent_channel_label": "sles12-sp4-pool-x86_64", + "product_id": 1630, + "repository_id": 2800, + "parent_product_id": 1625, + "root_product_id": 1625, + "update_tag": "SLE-SDK", + "url": "https://updates.suse.com/SUSE/Updates/SLE-SDK/12-SP4/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-SDK12-SP4-Debuginfo-Updates for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-sdk12-sp4-pool-x86_64", + "parent_channel_label": "sles12-sp4-pool-x86_64", + "product_id": 1630, + "repository_id": 2801, + "parent_product_id": 1625, + "root_product_id": 1625, + "update_tag": "SLE-SDK", + "url": "https://updates.suse.com/SUSE/Products/SLE-SDK/12-SP4/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-SDK12-SP4-Pool for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-sdk12-sp4-debuginfo-pool-x86_64", + "parent_channel_label": "sles12-sp4-pool-x86_64", + "product_id": 1630, + "repository_id": 2802, + "parent_product_id": 1625, + "root_product_id": 1625, + "update_tag": "SLE-SDK", + "url": "https://updates.suse.com/SUSE/Products/SLE-SDK/12-SP4/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-SDK12-SP4-Debuginfo-Pool for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-ha12-sp4-updates-x86_64", + "parent_channel_label": "sles12-sp4-pool-x86_64", + "product_id": 1634, + "repository_id": 2819, + "parent_product_id": 1625, + "root_product_id": 1625, + "update_tag": "SLE-HA", + "url": "https://updates.suse.com/SUSE/Updates/SLE-HA/12-SP4/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-HA12-SP4-Updates for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-ha12-sp4-debuginfo-updates-x86_64", + "parent_channel_label": "sles12-sp4-pool-x86_64", + "product_id": 1634, + "repository_id": 2820, + "parent_product_id": 1625, + "root_product_id": 1625, + "update_tag": "SLE-HA", + "url": "https://updates.suse.com/SUSE/Updates/SLE-HA/12-SP4/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-HA12-SP4-Debuginfo-Updates for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-ha12-sp4-pool-x86_64", + "parent_channel_label": "sles12-sp4-pool-x86_64", + "product_id": 1634, + "repository_id": 2821, + "parent_product_id": 1625, + "root_product_id": 1625, + "update_tag": "SLE-HA", + "url": "https://updates.suse.com/SUSE/Products/SLE-HA/12-SP4/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-HA12-SP4-Pool for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-ha12-sp4-debuginfo-pool-x86_64", + "parent_channel_label": "sles12-sp4-pool-x86_64", + "product_id": 1634, + "repository_id": 2822, + "parent_product_id": 1625, + "root_product_id": 1625, + "update_tag": "SLE-HA", + "url": "https://updates.suse.com/SUSE/Products/SLE-HA/12-SP4/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-HA12-SP4-Debuginfo-Pool for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-ha-geo12-sp4-updates-x86_64", + "parent_channel_label": "sles12-sp4-pool-x86_64", + "product_id": 1637, + "repository_id": 2834, + "parent_product_id": 1634, + "root_product_id": 1625, + "update_tag": "SLE-HA-GEO", + "url": "https://updates.suse.com/SUSE/Updates/SLE-HA-GEO/12-SP4/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-HA-GEO12-SP4-Updates for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-ha-geo12-sp4-debuginfo-updates-x86_64", + "parent_channel_label": "sles12-sp4-pool-x86_64", + "product_id": 1637, + "repository_id": 2835, + "parent_product_id": 1634, + "root_product_id": 1625, + "update_tag": "SLE-HA-GEO", + "url": "https://updates.suse.com/SUSE/Updates/SLE-HA-GEO/12-SP4/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-HA-GEO12-SP4-Debuginfo-Updates for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-ha-geo12-sp4-pool-x86_64", + "parent_channel_label": "sles12-sp4-pool-x86_64", + "product_id": 1637, + "repository_id": 2836, + "parent_product_id": 1634, + "root_product_id": 1625, + "update_tag": "SLE-HA-GEO", + "url": "https://updates.suse.com/SUSE/Products/SLE-HA-GEO/12-SP4/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-HA-GEO12-SP4-Pool for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-ha-geo12-sp4-debuginfo-pool-x86_64", + "parent_channel_label": "sles12-sp4-pool-x86_64", + "product_id": 1637, + "repository_id": 2837, + "parent_product_id": 1634, + "root_product_id": 1625, + "update_tag": "SLE-HA-GEO", + "url": "https://updates.suse.com/SUSE/Products/SLE-HA-GEO/12-SP4/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-HA-GEO12-SP4-Debuginfo-Pool for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-we12-sp4-updates-x86_64", + "parent_channel_label": "sles12-sp4-pool-x86_64", + "product_id": 1639, + "repository_id": 2844, + "parent_product_id": 1625, + "root_product_id": 1625, + "update_tag": "SLE-WE", + "url": "https://updates.suse.com/SUSE/Updates/SLE-WE/12-SP4/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-WE12-SP4-Updates for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-we12-sp4-debuginfo-updates-x86_64", + "parent_channel_label": "sles12-sp4-pool-x86_64", + "product_id": 1639, + "repository_id": 2845, + "parent_product_id": 1625, + "root_product_id": 1625, + "update_tag": "SLE-WE", + "url": "https://updates.suse.com/SUSE/Updates/SLE-WE/12-SP4/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-WE12-SP4-Debuginfo-Updates for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-we12-sp4-pool-x86_64", + "parent_channel_label": "sles12-sp4-pool-x86_64", + "product_id": 1639, + "repository_id": 2846, + "parent_product_id": 1625, + "root_product_id": 1625, + "update_tag": "SLE-WE", + "url": "https://updates.suse.com/SUSE/Products/SLE-WE/12-SP4/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-WE12-SP4-Pool for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-we12-sp4-debuginfo-pool-x86_64", + "parent_channel_label": "sles12-sp4-pool-x86_64", + "product_id": 1639, + "repository_id": 2847, + "parent_product_id": 1625, + "root_product_id": 1625, + "update_tag": "SLE-WE", + "url": "https://updates.suse.com/SUSE/Products/SLE-WE/12-SP4/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-WE12-SP4-Debuginfo-Pool for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-12-sp4-ga-desktop-nvidia-driver-we-sp4", + "parent_channel_label": "sles12-sp4-pool-x86_64", + "product_id": 1639, + "repository_id": 3529, + "parent_product_id": 1625, + "root_product_id": 1625, + "update_tag": null, + "url": "https://download.nvidia.com/suse/sle12sp4/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-12-SP4-GA-Desktop-nVidia-Driver for x86_64 WE", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-cap-tools-12-updates-x86_64-sp4", + "parent_channel_label": "sles12-sp4-pool-x86_64", + "product_id": 1678, + "repository_id": 2912, + "parent_product_id": 1625, + "root_product_id": 1625, + "update_tag": "SLE-Module-CAP-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-CAP-Tools/12/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-CAP-Tools-12-Updates for x86_64 SP4", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-cap-tools-12-debuginfo-updates-x86_64-sp4", + "parent_channel_label": "sles12-sp4-pool-x86_64", + "product_id": 1678, + "repository_id": 2913, + "parent_product_id": 1625, + "root_product_id": 1625, + "update_tag": "SLE-Module-CAP-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-CAP-Tools/12/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-CAP-Tools-12-Debuginfo-Updates for x86_64 SP4", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-cap-tools-12-pool-x86_64-sp4", + "parent_channel_label": "sles12-sp4-pool-x86_64", + "product_id": 1678, + "repository_id": 2914, + "parent_product_id": 1625, + "root_product_id": 1625, + "update_tag": "SLE-Module-CAP-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-CAP-Tools/12/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-CAP-Tools-12-Pool for x86_64 SP4", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-cap-tools-12-debuginfo-pool-x86_64-sp4", + "parent_channel_label": "sles12-sp4-pool-x86_64", + "product_id": 1678, + "repository_id": 2915, + "parent_product_id": 1625, + "root_product_id": 1625, + "update_tag": "SLE-Module-CAP-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-CAP-Tools/12/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-CAP-Tools-12-Debuginfo-Pool for x86_64 SP4", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-manager-server-3.2-updates-x86_64-sp4", + "parent_channel_label": "sles12-sp4-pool-x86_64", + "product_id": 1724, + "repository_id": 2987, + "parent_product_id": 1625, + "root_product_id": 1625, + "update_tag": "SUSE-Manager-Server-3.2", + "url": "https://updates.suse.com/SUSE/Updates/SUSE-Manager-Server/3.2/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-Manager-Server-3.2-Updates for x86_64 SP4", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-manager-server-3.2-debuginfo-updates-x86_64-sp4", + "parent_channel_label": "sles12-sp4-pool-x86_64", + "product_id": 1724, + "repository_id": 2988, + "parent_product_id": 1625, + "root_product_id": 1625, + "update_tag": "SUSE-Manager-Server-3.2", + "url": "https://updates.suse.com/SUSE/Updates/SUSE-Manager-Server/3.2/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SUSE-Manager-Server-3.2-Debuginfo-Updates for x86_64 SP4", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-manager-server-3.2-pool-x86_64-sp4", + "parent_channel_label": "sles12-sp4-pool-x86_64", + "product_id": 1724, + "repository_id": 2989, + "parent_product_id": 1625, + "root_product_id": 1625, + "update_tag": "SUSE-Manager-Server-3.2", + "url": "https://updates.suse.com/SUSE/Products/SUSE-Manager-Server/3.2/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-Manager-Server-3.2-Pool for x86_64 SP4", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-manager-server-3.2-debuginfo-pool-x86_64-sp4", + "parent_channel_label": "sles12-sp4-pool-x86_64", + "product_id": 1724, + "repository_id": 2990, + "parent_product_id": 1625, + "root_product_id": 1625, + "update_tag": "SUSE-Manager-Server-3.2", + "url": "https://updates.suse.com/SUSE/Products/SUSE-Manager-Server/3.2/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SUSE-Manager-Server-3.2-Debuginfo-Pool for x86_64 SP4", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-manager-proxy-3.2-updates-x86_64-sp4", + "parent_channel_label": "sles12-sp4-pool-x86_64", + "product_id": 1725, + "repository_id": 2992, + "parent_product_id": 1625, + "root_product_id": 1625, + "update_tag": "SUSE-Manager-Proxy-3.2", + "url": "https://updates.suse.com/SUSE/Updates/SUSE-Manager-Proxy/3.2/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-Manager-Proxy-3.2-Updates for x86_64 SP4", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-manager-proxy-3.2-debuginfo-updates-x86_64-sp4", + "parent_channel_label": "sles12-sp4-pool-x86_64", + "product_id": 1725, + "repository_id": 2993, + "parent_product_id": 1625, + "root_product_id": 1625, + "update_tag": "SUSE-Manager-Proxy-3.2", + "url": "https://updates.suse.com/SUSE/Updates/SUSE-Manager-Proxy/3.2/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SUSE-Manager-Proxy-3.2-Debuginfo-Updates for x86_64 SP4", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-manager-proxy-3.2-pool-x86_64-sp4", + "parent_channel_label": "sles12-sp4-pool-x86_64", + "product_id": 1725, + "repository_id": 2994, + "parent_product_id": 1625, + "root_product_id": 1625, + "update_tag": "SUSE-Manager-Proxy-3.2", + "url": "https://updates.suse.com/SUSE/Products/SUSE-Manager-Proxy/3.2/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-Manager-Proxy-3.2-Pool for x86_64 SP4", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-manager-proxy-3.2-debuginfo-pool-x86_64-sp4", + "parent_channel_label": "sles12-sp4-pool-x86_64", + "product_id": 1725, + "repository_id": 2995, + "parent_product_id": 1625, + "root_product_id": 1625, + "update_tag": "SUSE-Manager-Proxy-3.2", + "url": "https://updates.suse.com/SUSE/Products/SUSE-Manager-Proxy/3.2/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SUSE-Manager-Proxy-3.2-Debuginfo-Pool for x86_64 SP4", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-manager-retail-branch-server-3.2-updates-x86_64-sp4", + "parent_channel_label": "sles12-sp4-pool-x86_64", + "product_id": 1826, + "repository_id": 3517, + "parent_product_id": 1725, + "root_product_id": 1625, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Updates/SUSE-Manager-Retail-Branch-Server/3.2/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-Manager-Retail-Branch-Server-3.2-Updates for x86_64 SP4", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-manager-retail-branch-server-3.2-debuginfo-updates-x86_64-sp4", + "parent_channel_label": "sles12-sp4-pool-x86_64", + "product_id": 1826, + "repository_id": 3518, + "parent_product_id": 1725, + "root_product_id": 1625, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Updates/SUSE-Manager-Retail-Branch-Server/3.2/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SUSE-Manager-Retail-Branch-Server-3.2-Debuginfo-Updates for x86_64 SP4", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-manager-retail-branch-server-3.2-pool-x86_64-sp4", + "parent_channel_label": "sles12-sp4-pool-x86_64", + "product_id": 1826, + "repository_id": 3519, + "parent_product_id": 1725, + "root_product_id": 1625, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Products/SUSE-Manager-Retail-Branch-Server/3.2/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-Manager-Retail-Branch-Server-3.2-Pool for x86_64 SP4", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-manager-retail-branch-server-3.2-debuginfo-pool-x86_64-sp4", + "parent_channel_label": "sles12-sp4-pool-x86_64", + "product_id": 1826, + "repository_id": 3520, + "parent_product_id": 1725, + "root_product_id": 1625, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Products/SUSE-Manager-Retail-Branch-Server/3.2/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SUSE-Manager-Retail-Branch-Server-3.2-Debuginfo-Pool for x86_64 SP4", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-manager-tools12-beta-updates-x86_64-sp4", + "parent_channel_label": "sles12-sp4-pool-x86_64", + "product_id": 1747, + "repository_id": 3077, + "parent_product_id": 1625, + "root_product_id": 1625, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/12-BETA/x86_64/update/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools12-BETA-Updates for x86_64 SP4", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools12-beta-debuginfo-updates-x86_64-sp4", + "parent_channel_label": "sles12-sp4-pool-x86_64", + "product_id": 1747, + "repository_id": 3078, + "parent_product_id": 1625, + "root_product_id": 1625, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/12-BETA/x86_64/update_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools12-BETA-Debuginfo-Updates for x86_64 SP4", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools12-beta-pool-x86_64-sp4", + "parent_channel_label": "sles12-sp4-pool-x86_64", + "product_id": 1747, + "repository_id": 3079, + "parent_product_id": 1625, + "root_product_id": 1625, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/12-BETA/x86_64/product/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools12-BETA-Pool for x86_64 SP4", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools12-beta-debuginfo-pool-x86_64-sp4", + "parent_channel_label": "sles12-sp4-pool-x86_64", + "product_id": 1747, + "repository_id": 3080, + "parent_product_id": 1625, + "root_product_id": 1625, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/12-BETA/x86_64/product_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools12-BETA-Debuginfo-Pool for x86_64 SP4", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-live-patching12-sp4-updates-x86_64", + "parent_channel_label": "sles12-sp4-pool-x86_64", + "product_id": 1757, + "repository_id": 3163, + "parent_product_id": 1625, + "root_product_id": 1625, + "update_tag": "SLE-Live-Patching", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Live-Patching/12-SP4/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Live-Patching12-SP4-Updates for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-live-patching12-sp4-debuginfo-updates-x86_64", + "parent_channel_label": "sles12-sp4-pool-x86_64", + "product_id": 1757, + "repository_id": 3164, + "parent_product_id": 1625, + "root_product_id": 1625, + "update_tag": "SLE-Live-Patching", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Live-Patching/12-SP4/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Live-Patching12-SP4-Debuginfo-Updates for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-live-patching12-sp4-pool-x86_64", + "parent_channel_label": "sles12-sp4-pool-x86_64", + "product_id": 1757, + "repository_id": 3165, + "parent_product_id": 1625, + "root_product_id": 1625, + "update_tag": "SLE-Live-Patching", + "url": "https://updates.suse.com/SUSE/Products/SLE-Live-Patching/12-SP4/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Live-Patching12-SP4-Pool for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-live-patching12-sp4-debuginfo-pool-x86_64", + "parent_channel_label": "sles12-sp4-pool-x86_64", + "product_id": 1757, + "repository_id": 3166, + "parent_product_id": 1625, + "root_product_id": 1625, + "update_tag": "SLE-Live-Patching", + "url": "https://updates.suse.com/SUSE/Products/SLE-Live-Patching/12-SP4/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Live-Patching12-SP4-Debuginfo-Pool for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-packagehub-12-sp4-standard-pool-x86_64", + "parent_channel_label": "sles12-sp4-pool-x86_64", + "product_id": 1813, + "repository_id": 3460, + "parent_product_id": 1625, + "root_product_id": 1625, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-12-SP4_x86_64/standard/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-12-SP4-Standard-Pool for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-packagehub-12-sp4-debuginfo-x86_64", + "parent_channel_label": "sles12-sp4-pool-x86_64", + "product_id": 1813, + "repository_id": 3461, + "parent_product_id": 1625, + "root_product_id": 1625, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-12-SP4_x86_64/standard_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-12-SP4-Debuginfo for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-packagehub-12-sp4-pool-x86_64", + "parent_channel_label": "sles12-sp4-pool-x86_64", + "product_id": 1813, + "repository_id": 3462, + "parent_product_id": 1625, + "root_product_id": 1625, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-12-SP4_x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-12-SP4-Pool for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-openstack-cloud-9-updates-x86_64-sp4", + "parent_channel_label": "sles12-sp4-pool-x86_64", + "product_id": 1820, + "repository_id": 3522, + "parent_product_id": 1625, + "root_product_id": 1625, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Updates/OpenStack-Cloud/9/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-OpenStack-Cloud-9-Updates for x86_64 SP4", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-openstack-cloud-9-debuginfo-updates-x86_64-sp4", + "parent_channel_label": "sles12-sp4-pool-x86_64", + "product_id": 1820, + "repository_id": 3523, + "parent_product_id": 1625, + "root_product_id": 1625, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Updates/OpenStack-Cloud/9/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SUSE-OpenStack-Cloud-9-Debuginfo-Updates for x86_64 SP4", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-openstack-cloud-9-pool-x86_64-sp4", + "parent_channel_label": "sles12-sp4-pool-x86_64", + "product_id": 1820, + "repository_id": 3524, + "parent_product_id": 1625, + "root_product_id": 1625, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Products/OpenStack-Cloud/9/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-OpenStack-Cloud-9-Pool for x86_64 SP4", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-openstack-cloud-9-debuginfo-pool-x86_64-sp4", + "parent_channel_label": "sles12-sp4-pool-x86_64", + "product_id": 1820, + "repository_id": 3525, + "parent_product_id": 1625, + "root_product_id": 1625, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Products/OpenStack-Cloud/9/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SUSE-OpenStack-Cloud-9-Debuginfo-Pool for x86_64 SP4", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-openstack-cloud-crowbar-9-updates-x86_64-sp4", + "parent_channel_label": "sles12-sp4-pool-x86_64", + "product_id": 1821, + "repository_id": 3492, + "parent_product_id": 1625, + "root_product_id": 1625, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Updates/OpenStack-Cloud-Crowbar/9/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-OpenStack-Cloud-Crowbar-9-Updates for x86_64 SP4", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-openstack-cloud-crowbar-9-debuginfo-updates-x86_64-sp4", + "parent_channel_label": "sles12-sp4-pool-x86_64", + "product_id": 1821, + "repository_id": 3493, + "parent_product_id": 1625, + "root_product_id": 1625, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Updates/OpenStack-Cloud-Crowbar/9/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SUSE-OpenStack-Cloud-Crowbar-9-Debuginfo-Updates for x86_64 SP4", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-openstack-cloud-crowbar-9-pool-x86_64-sp4", + "parent_channel_label": "sles12-sp4-pool-x86_64", + "product_id": 1821, + "repository_id": 3494, + "parent_product_id": 1625, + "root_product_id": 1625, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Products/OpenStack-Cloud-Crowbar/9/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-OpenStack-Cloud-Crowbar-9-Pool for x86_64 SP4", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-openstack-cloud-crowbar-9-debuginfo-pool-x86_64-sp4", + "parent_channel_label": "sles12-sp4-pool-x86_64", + "product_id": 1821, + "repository_id": 3495, + "parent_product_id": 1625, + "root_product_id": 1625, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Products/OpenStack-Cloud-Crowbar/9/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SUSE-OpenStack-Cloud-Crowbar-9-Debuginfo-Pool for x86_64 SP4", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-rt12-sp4-updates-x86_64", + "parent_channel_label": "sles12-sp4-pool-x86_64", + "product_id": 1924, + "repository_id": 3887, + "parent_product_id": 1625, + "root_product_id": 1625, + "update_tag": "SLE-RT", + "url": "https://updates.suse.com/SUSE/Updates/SLE-RT/12-SP4/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-RT12-SP4-Updates for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-rt12-sp4-debuginfo-updates-x86_64", + "parent_channel_label": "sles12-sp4-pool-x86_64", + "product_id": 1924, + "repository_id": 3888, + "parent_product_id": 1625, + "root_product_id": 1625, + "update_tag": "SLE-RT", + "url": "https://updates.suse.com/SUSE/Updates/SLE-RT/12-SP4/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-RT12-SP4-Debuginfo-Updates for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-rt12-sp4-pool-x86_64", + "parent_channel_label": "sles12-sp4-pool-x86_64", + "product_id": 1924, + "repository_id": 3889, + "parent_product_id": 1625, + "root_product_id": 1625, + "update_tag": "SLE-RT", + "url": "https://updates.suse.com/SUSE/Products/SLE-RT/12-SP4/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-RT12-SP4-Pool for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-rt12-sp4-debuginfo-pool-x86_64", + "parent_channel_label": "sles12-sp4-pool-x86_64", + "product_id": 1924, + "repository_id": 3890, + "parent_product_id": 1625, + "root_product_id": 1625, + "update_tag": "SLE-RT", + "url": "https://updates.suse.com/SUSE/Products/SLE-RT/12-SP4/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-RT12-SP4-Debuginfo-Pool for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles12-sp4-ltss-updates-x86_64", + "parent_channel_label": "sles12-sp4-pool-x86_64", + "product_id": 2117, + "repository_id": 4492, + "parent_product_id": 1625, + "root_product_id": 1625, + "update_tag": "SLE-SERVER", + "url": "https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-SP4-LTSS/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLES12-SP4-LTSS-Updates for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles12-sp4-ltss-debuginfo-updates-x86_64", + "parent_channel_label": "sles12-sp4-pool-x86_64", + "product_id": 2117, + "repository_id": 4493, + "parent_product_id": 1625, + "root_product_id": 1625, + "update_tag": "SLE-SERVER", + "url": "https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-SP4-LTSS/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLES12-SP4-LTSS-Debuginfo-Updates for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-manager-tools12-updates-ppc64le-sp4", + "parent_channel_label": "sles12-sp4-pool-ppc64le", + "product_id": 1626, + "repository_id": 1724, + "parent_product_id": null, + "root_product_id": 1626, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/12/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Manager-Tools12-Updates for ppc64le SP4", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools12-debuginfo-updates-ppc64le-sp4", + "parent_channel_label": "sles12-sp4-pool-ppc64le", + "product_id": 1626, + "repository_id": 1725, + "parent_product_id": null, + "root_product_id": 1626, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/12/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Manager-Tools12-Debuginfo-Updates for ppc64le SP4", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools12-pool-ppc64le-sp4", + "parent_channel_label": "sles12-sp4-pool-ppc64le", + "product_id": 1626, + "repository_id": 1726, + "parent_product_id": null, + "root_product_id": 1626, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/12/ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Manager-Tools12-Pool for ppc64le SP4", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools12-debuginfo-pool-ppc64le-sp4", + "parent_channel_label": "sles12-sp4-pool-ppc64le", + "product_id": 1626, + "repository_id": 1727, + "parent_product_id": null, + "root_product_id": 1626, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/12/ppc64le/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Manager-Tools12-Debuginfo-Pool for ppc64le SP4", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sles12-sp4-updates-ppc64le", + "parent_channel_label": "sles12-sp4-pool-ppc64le", + "product_id": 1626, + "repository_id": 2775, + "parent_product_id": null, + "root_product_id": 1626, + "update_tag": "SLE-SERVER", + "url": "https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-SP4/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLES12-SP4-Updates for ppc64le", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles12-sp4-debuginfo-updates-ppc64le", + "parent_channel_label": "sles12-sp4-pool-ppc64le", + "product_id": 1626, + "repository_id": 2776, + "parent_product_id": null, + "root_product_id": 1626, + "update_tag": "SLE-SERVER", + "url": "https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-SP4/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLES12-SP4-Debuginfo-Updates for ppc64le", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles12-sp4-installer-updates-ppc64le", + "parent_channel_label": "sles12-sp4-pool-ppc64le", + "product_id": 1626, + "repository_id": 2777, + "parent_product_id": null, + "root_product_id": 1626, + "update_tag": "SLE-SERVER-INSTALLER", + "url": "https://updates.suse.com/SUSE/Updates/SLE-SERVER-INSTALLER/12-SP4/ppc64le/update/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLES12-SP4-Installer-Updates for ppc64le", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles12-sp4-pool-ppc64le", + "parent_channel_label": null, + "product_id": 1626, + "repository_id": 2778, + "parent_product_id": null, + "root_product_id": 1626, + "update_tag": "SLE-SERVER", + "url": "https://updates.suse.com/SUSE/Products/SLE-SERVER/12-SP4/ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLES12-SP4-Pool for ppc64le", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles12-sp4-debuginfo-pool-ppc64le", + "parent_channel_label": "sles12-sp4-pool-ppc64le", + "product_id": 1626, + "repository_id": 2779, + "parent_product_id": null, + "root_product_id": 1626, + "update_tag": "SLE-SERVER", + "url": "https://updates.suse.com/SUSE/Products/SLE-SERVER/12-SP4/ppc64le/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLES12-SP4-Debuginfo-Pool for ppc64le", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-legacy12-updates-ppc64le-sp4", + "parent_channel_label": "sles12-sp4-pool-ppc64le", + "product_id": 1148, + "repository_id": 1668, + "parent_product_id": 1626, + "root_product_id": 1626, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/12/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy12-Updates for ppc64le SP4", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-legacy12-debuginfo-updates-ppc64le-sp4", + "parent_channel_label": "sles12-sp4-pool-ppc64le", + "product_id": 1148, + "repository_id": 1669, + "parent_product_id": 1626, + "root_product_id": 1626, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/12/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy12-Debuginfo-Updates for ppc64le SP4", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-legacy12-pool-ppc64le-sp4", + "parent_channel_label": "sles12-sp4-pool-ppc64le", + "product_id": 1148, + "repository_id": 1670, + "parent_product_id": 1626, + "root_product_id": 1626, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/12/ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy12-Pool for ppc64le SP4", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-legacy12-debuginfo-pool-ppc64le-sp4", + "parent_channel_label": "sles12-sp4-pool-ppc64le", + "product_id": 1148, + "repository_id": 1671, + "parent_product_id": 1626, + "root_product_id": 1626, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/12/ppc64le/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy12-Debuginfo-Pool for ppc64le SP4", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting12-updates-ppc64le-sp4", + "parent_channel_label": "sles12-sp4-pool-ppc64le", + "product_id": 1151, + "repository_id": 1680, + "parent_product_id": 1626, + "root_product_id": 1626, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/12/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Web-Scripting12-Updates for ppc64le SP4", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting12-debuginfo-updates-ppc64le-sp4", + "parent_channel_label": "sles12-sp4-pool-ppc64le", + "product_id": 1151, + "repository_id": 1681, + "parent_product_id": 1626, + "root_product_id": 1626, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/12/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Web-Scripting12-Debuginfo-Updates for ppc64le SP4", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting12-pool-ppc64le-sp4", + "parent_channel_label": "sles12-sp4-pool-ppc64le", + "product_id": 1151, + "repository_id": 1682, + "parent_product_id": 1626, + "root_product_id": 1626, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/12/ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Web-Scripting12-Pool for ppc64le SP4", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting12-debuginfo-pool-ppc64le-sp4", + "parent_channel_label": "sles12-sp4-pool-ppc64le", + "product_id": 1151, + "repository_id": 1683, + "parent_product_id": 1626, + "root_product_id": 1626, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/12/ppc64le/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Web-Scripting12-Debuginfo-Pool for ppc64le SP4", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud12-updates-ppc64le-sp4", + "parent_channel_label": "sles12-sp4-pool-ppc64le", + "product_id": 1218, + "repository_id": 1692, + "parent_product_id": 1626, + "root_product_id": 1626, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/12/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud12-Updates for ppc64le SP4", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud12-debuginfo-updates-ppc64le-sp4", + "parent_channel_label": "sles12-sp4-pool-ppc64le", + "product_id": 1218, + "repository_id": 1693, + "parent_product_id": 1626, + "root_product_id": 1626, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/12/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud12-Debuginfo-Updates for ppc64le SP4", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud12-pool-ppc64le-sp4", + "parent_channel_label": "sles12-sp4-pool-ppc64le", + "product_id": 1218, + "repository_id": 1694, + "parent_product_id": 1626, + "root_product_id": 1626, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/12/ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud12-Pool for ppc64le SP4", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud12-debuginfo-pool-ppc64le-sp4", + "parent_channel_label": "sles12-sp4-pool-ppc64le", + "product_id": 1218, + "repository_id": 1695, + "parent_product_id": 1626, + "root_product_id": 1626, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/12/ppc64le/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud12-Debuginfo-Pool for ppc64le SP4", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "ibm-dlpar-adv-toolchain-sp4", + "parent_channel_label": "sles12-sp4-pool-ppc64le", + "product_id": 1249, + "repository_id": 4429, + "parent_product_id": 1626, + "root_product_id": 1626, + "update_tag": null, + "url": "https://public.dhe.ibm.com/software/server/POWER/Linux/toolchain/at/suse/SLES_12/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "IBM-DLPAR-Adv-Toolchain for ppc64le SP4", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "ibm-dlpar-utils-sp4", + "parent_channel_label": "sles12-sp4-pool-ppc64le", + "product_id": 1250, + "repository_id": 6216, + "parent_product_id": 1626, + "root_product_id": 1626, + "update_tag": null, + "url": "https://public.dhe.ibm.com/software/server/POWER/Linux/yum/OSS/SLES/12/ppc64le/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "IBM-DLPAR-utils for ppc64le SP4", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-adv-systems-management12-updates-ppc64le-sp4", + "parent_channel_label": "sles12-sp4-pool-ppc64le", + "product_id": 1294, + "repository_id": 1762, + "parent_product_id": 1626, + "root_product_id": 1626, + "update_tag": "SLE-Module-Adv-Systems-Management", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Adv-Systems-Management/12/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Adv-Systems-Management12-Updates for ppc64le SP4", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-adv-systems-management12-debuginfo-updates-ppc64le-sp4", + "parent_channel_label": "sles12-sp4-pool-ppc64le", + "product_id": 1294, + "repository_id": 1763, + "parent_product_id": 1626, + "root_product_id": 1626, + "update_tag": "SLE-Module-Adv-Systems-Management", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Adv-Systems-Management/12/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Adv-Systems-Management12-Debuginfo-Updates for ppc64le SP4", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-adv-systems-management12-pool-ppc64le-sp4", + "parent_channel_label": "sles12-sp4-pool-ppc64le", + "product_id": 1294, + "repository_id": 1764, + "parent_product_id": 1626, + "root_product_id": 1626, + "update_tag": "SLE-Module-Adv-Systems-Management", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Adv-Systems-Management/12/ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Adv-Systems-Management12-Pool for ppc64le SP4", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-adv-systems-management12-debuginfo-pool-ppc64le-sp4", + "parent_channel_label": "sles12-sp4-pool-ppc64le", + "product_id": 1294, + "repository_id": 1765, + "parent_product_id": 1626, + "root_product_id": 1626, + "update_tag": "SLE-Module-Adv-Systems-Management", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Adv-Systems-Management/12/ppc64le/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Adv-Systems-Management12-Debuginfo-Pool for ppc64le SP4", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-toolchain12-updates-ppc64le-sp4", + "parent_channel_label": "sles12-sp4-pool-ppc64le", + "product_id": 1339, + "repository_id": 1895, + "parent_product_id": 1626, + "root_product_id": 1626, + "update_tag": "SLE-Module-Toolchain", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Toolchain/12/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Toolchain12-Updates for ppc64le SP4", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-toolchain12-debuginfo-updates-ppc64le-sp4", + "parent_channel_label": "sles12-sp4-pool-ppc64le", + "product_id": 1339, + "repository_id": 1896, + "parent_product_id": 1626, + "root_product_id": 1626, + "update_tag": "SLE-Module-Toolchain", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Toolchain/12/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Toolchain12-Debuginfo-Updates for ppc64le SP4", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-toolchain12-pool-ppc64le-sp4", + "parent_channel_label": "sles12-sp4-pool-ppc64le", + "product_id": 1339, + "repository_id": 1897, + "parent_product_id": 1626, + "root_product_id": 1626, + "update_tag": "SLE-Module-Toolchain", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Toolchain/12/ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Toolchain12-Pool for ppc64le SP4", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-toolchain12-debuginfo-pool-ppc64le-sp4", + "parent_channel_label": "sles12-sp4-pool-ppc64le", + "product_id": 1339, + "repository_id": 1898, + "parent_product_id": 1626, + "root_product_id": 1626, + "update_tag": "SLE-Module-Toolchain", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Toolchain/12/ppc64le/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Toolchain12-Debuginfo-Pool for ppc64le SP4", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-containers12-updates-ppc64le-sp4", + "parent_channel_label": "sles12-sp4-pool-ppc64le", + "product_id": 1353, + "repository_id": 1972, + "parent_product_id": 1626, + "root_product_id": 1626, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/12/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers12-Updates for ppc64le SP4", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-containers12-debuginfo-updates-ppc64le-sp4", + "parent_channel_label": "sles12-sp4-pool-ppc64le", + "product_id": 1353, + "repository_id": 1973, + "parent_product_id": 1626, + "root_product_id": 1626, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/12/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers12-Debuginfo-Updates for ppc64le SP4", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-containers12-pool-ppc64le-sp4", + "parent_channel_label": "sles12-sp4-pool-ppc64le", + "product_id": 1353, + "repository_id": 1974, + "parent_product_id": 1626, + "root_product_id": 1626, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Containers/12/ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers12-Pool for ppc64le SP4", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-containers12-debuginfo-pool-ppc64le-sp4", + "parent_channel_label": "sles12-sp4-pool-ppc64le", + "product_id": 1353, + "repository_id": 1975, + "parent_product_id": 1626, + "root_product_id": 1626, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Containers/12/ppc64le/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers12-Debuginfo-Pool for ppc64le SP4", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-manager-server-3.1-updates-ppc64le-sp4", + "parent_channel_label": "sles12-sp4-pool-ppc64le", + "product_id": 1622, + "repository_id": 2727, + "parent_product_id": 1626, + "root_product_id": 1626, + "update_tag": "SUSE-Manager-Server-3.1", + "url": "https://updates.suse.com/SUSE/Updates/SUSE-Manager-Server/3.1/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-Manager-Server-3.1-Updates for ppc64le SP4", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-manager-server-3.1-debuginfo-updates-ppc64le-sp4", + "parent_channel_label": "sles12-sp4-pool-ppc64le", + "product_id": 1622, + "repository_id": 2728, + "parent_product_id": 1626, + "root_product_id": 1626, + "update_tag": "SUSE-Manager-Server-3.1", + "url": "https://updates.suse.com/SUSE/Updates/SUSE-Manager-Server/3.1/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SUSE-Manager-Server-3.1-Debuginfo-Updates for ppc64le SP4", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-manager-server-3.1-pool-ppc64le-sp4", + "parent_channel_label": "sles12-sp4-pool-ppc64le", + "product_id": 1622, + "repository_id": 2729, + "parent_product_id": 1626, + "root_product_id": 1626, + "update_tag": "SUSE-Manager-Server-3.1", + "url": "https://updates.suse.com/SUSE/Products/SUSE-Manager-Server/3.1/ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-Manager-Server-3.1-Pool for ppc64le SP4", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-manager-server-3.1-debuginfo-pool-ppc64le-sp4", + "parent_channel_label": "sles12-sp4-pool-ppc64le", + "product_id": 1622, + "repository_id": 2730, + "parent_product_id": 1626, + "root_product_id": 1626, + "update_tag": "SUSE-Manager-Server-3.1", + "url": "https://updates.suse.com/SUSE/Products/SUSE-Manager-Server/3.1/ppc64le/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SUSE-Manager-Server-3.1-Debuginfo-Pool for ppc64le SP4", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-sdk12-sp4-updates-ppc64le", + "parent_channel_label": "sles12-sp4-pool-ppc64le", + "product_id": 1631, + "repository_id": 2804, + "parent_product_id": 1626, + "root_product_id": 1626, + "update_tag": "SLE-SDK", + "url": "https://updates.suse.com/SUSE/Updates/SLE-SDK/12-SP4/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-SDK12-SP4-Updates for ppc64le", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-sdk12-sp4-debuginfo-updates-ppc64le", + "parent_channel_label": "sles12-sp4-pool-ppc64le", + "product_id": 1631, + "repository_id": 2805, + "parent_product_id": 1626, + "root_product_id": 1626, + "update_tag": "SLE-SDK", + "url": "https://updates.suse.com/SUSE/Updates/SLE-SDK/12-SP4/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-SDK12-SP4-Debuginfo-Updates for ppc64le", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-sdk12-sp4-pool-ppc64le", + "parent_channel_label": "sles12-sp4-pool-ppc64le", + "product_id": 1631, + "repository_id": 2806, + "parent_product_id": 1626, + "root_product_id": 1626, + "update_tag": "SLE-SDK", + "url": "https://updates.suse.com/SUSE/Products/SLE-SDK/12-SP4/ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-SDK12-SP4-Pool for ppc64le", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-sdk12-sp4-debuginfo-pool-ppc64le", + "parent_channel_label": "sles12-sp4-pool-ppc64le", + "product_id": 1631, + "repository_id": 2807, + "parent_product_id": 1626, + "root_product_id": 1626, + "update_tag": "SLE-SDK", + "url": "https://updates.suse.com/SUSE/Products/SLE-SDK/12-SP4/ppc64le/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-SDK12-SP4-Debuginfo-Pool for ppc64le", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-ha12-sp4-updates-ppc64le", + "parent_channel_label": "sles12-sp4-pool-ppc64le", + "product_id": 1635, + "repository_id": 2824, + "parent_product_id": 1626, + "root_product_id": 1626, + "update_tag": "SLE-HA", + "url": "https://updates.suse.com/SUSE/Updates/SLE-HA/12-SP4/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-HA12-SP4-Updates for ppc64le", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-ha12-sp4-debuginfo-updates-ppc64le", + "parent_channel_label": "sles12-sp4-pool-ppc64le", + "product_id": 1635, + "repository_id": 2825, + "parent_product_id": 1626, + "root_product_id": 1626, + "update_tag": "SLE-HA", + "url": "https://updates.suse.com/SUSE/Updates/SLE-HA/12-SP4/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-HA12-SP4-Debuginfo-Updates for ppc64le", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-ha12-sp4-pool-ppc64le", + "parent_channel_label": "sles12-sp4-pool-ppc64le", + "product_id": 1635, + "repository_id": 2826, + "parent_product_id": 1626, + "root_product_id": 1626, + "update_tag": "SLE-HA", + "url": "https://updates.suse.com/SUSE/Products/SLE-HA/12-SP4/ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-HA12-SP4-Pool for ppc64le", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-ha12-sp4-debuginfo-pool-ppc64le", + "parent_channel_label": "sles12-sp4-pool-ppc64le", + "product_id": 1635, + "repository_id": 2827, + "parent_product_id": 1626, + "root_product_id": 1626, + "update_tag": "SLE-HA", + "url": "https://updates.suse.com/SUSE/Products/SLE-HA/12-SP4/ppc64le/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-HA12-SP4-Debuginfo-Pool for ppc64le", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-manager-server-3.2-updates-ppc64le-sp4", + "parent_channel_label": "sles12-sp4-pool-ppc64le", + "product_id": 1722, + "repository_id": 2977, + "parent_product_id": 1626, + "root_product_id": 1626, + "update_tag": "SUSE-Manager-Server-3.2", + "url": "https://updates.suse.com/SUSE/Updates/SUSE-Manager-Server/3.2/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-Manager-Server-3.2-Updates for ppc64le SP4", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-manager-server-3.2-debuginfo-updates-ppc64le-sp4", + "parent_channel_label": "sles12-sp4-pool-ppc64le", + "product_id": 1722, + "repository_id": 2978, + "parent_product_id": 1626, + "root_product_id": 1626, + "update_tag": "SUSE-Manager-Server-3.2", + "url": "https://updates.suse.com/SUSE/Updates/SUSE-Manager-Server/3.2/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SUSE-Manager-Server-3.2-Debuginfo-Updates for ppc64le SP4", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-manager-server-3.2-pool-ppc64le-sp4", + "parent_channel_label": "sles12-sp4-pool-ppc64le", + "product_id": 1722, + "repository_id": 2979, + "parent_product_id": 1626, + "root_product_id": 1626, + "update_tag": "SUSE-Manager-Server-3.2", + "url": "https://updates.suse.com/SUSE/Products/SUSE-Manager-Server/3.2/ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-Manager-Server-3.2-Pool for ppc64le SP4", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-manager-server-3.2-debuginfo-pool-ppc64le-sp4", + "parent_channel_label": "sles12-sp4-pool-ppc64le", + "product_id": 1722, + "repository_id": 2980, + "parent_product_id": 1626, + "root_product_id": 1626, + "update_tag": "SUSE-Manager-Server-3.2", + "url": "https://updates.suse.com/SUSE/Products/SUSE-Manager-Server/3.2/ppc64le/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SUSE-Manager-Server-3.2-Debuginfo-Pool for ppc64le SP4", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-manager-tools12-beta-updates-ppc64le-sp4", + "parent_channel_label": "sles12-sp4-pool-ppc64le", + "product_id": 1745, + "repository_id": 3067, + "parent_product_id": 1626, + "root_product_id": 1626, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/12-BETA/ppc64le/update/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools12-BETA-Updates for ppc64le SP4", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools12-beta-debuginfo-updates-ppc64le-sp4", + "parent_channel_label": "sles12-sp4-pool-ppc64le", + "product_id": 1745, + "repository_id": 3068, + "parent_product_id": 1626, + "root_product_id": 1626, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/12-BETA/ppc64le/update_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools12-BETA-Debuginfo-Updates for ppc64le SP4", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools12-beta-pool-ppc64le-sp4", + "parent_channel_label": "sles12-sp4-pool-ppc64le", + "product_id": 1745, + "repository_id": 3069, + "parent_product_id": 1626, + "root_product_id": 1626, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/12-BETA/ppc64le/product/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools12-BETA-Pool for ppc64le SP4", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools12-beta-debuginfo-pool-ppc64le-sp4", + "parent_channel_label": "sles12-sp4-pool-ppc64le", + "product_id": 1745, + "repository_id": 3070, + "parent_product_id": 1626, + "root_product_id": 1626, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/12-BETA/ppc64le/product_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools12-BETA-Debuginfo-Pool for ppc64le SP4", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-live-patching12-sp4-updates-ppc64le", + "parent_channel_label": "sles12-sp4-pool-ppc64le", + "product_id": 1756, + "repository_id": 3159, + "parent_product_id": 1626, + "root_product_id": 1626, + "update_tag": "SLE-Live-Patching", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Live-Patching/12-SP4/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Live-Patching12-SP4-Updates for ppc64le", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-live-patching12-sp4-debuginfo-updates-ppc64le", + "parent_channel_label": "sles12-sp4-pool-ppc64le", + "product_id": 1756, + "repository_id": 3160, + "parent_product_id": 1626, + "root_product_id": 1626, + "update_tag": "SLE-Live-Patching", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Live-Patching/12-SP4/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Live-Patching12-SP4-Debuginfo-Updates for ppc64le", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-live-patching12-sp4-pool-ppc64le", + "parent_channel_label": "sles12-sp4-pool-ppc64le", + "product_id": 1756, + "repository_id": 3161, + "parent_product_id": 1626, + "root_product_id": 1626, + "update_tag": "SLE-Live-Patching", + "url": "https://updates.suse.com/SUSE/Products/SLE-Live-Patching/12-SP4/ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Live-Patching12-SP4-Pool for ppc64le", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-live-patching12-sp4-debuginfo-pool-ppc64le", + "parent_channel_label": "sles12-sp4-pool-ppc64le", + "product_id": 1756, + "repository_id": 3162, + "parent_product_id": 1626, + "root_product_id": 1626, + "update_tag": "SLE-Live-Patching", + "url": "https://updates.suse.com/SUSE/Products/SLE-Live-Patching/12-SP4/ppc64le/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Live-Patching12-SP4-Debuginfo-Pool for ppc64le", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-packagehub-12-sp4-standard-pool-ppc64le", + "parent_channel_label": "sles12-sp4-pool-ppc64le", + "product_id": 1811, + "repository_id": 3454, + "parent_product_id": 1626, + "root_product_id": 1626, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-12-SP4_ppc64le/standard/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-12-SP4-Standard-Pool for ppc64le", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-packagehub-12-sp4-debuginfo-ppc64le", + "parent_channel_label": "sles12-sp4-pool-ppc64le", + "product_id": 1811, + "repository_id": 3455, + "parent_product_id": 1626, + "root_product_id": 1626, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-12-SP4_ppc64le/standard_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-12-SP4-Debuginfo for ppc64le", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-packagehub-12-sp4-pool-ppc64le", + "parent_channel_label": "sles12-sp4-pool-ppc64le", + "product_id": 1811, + "repository_id": 3456, + "parent_product_id": 1626, + "root_product_id": 1626, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-12-SP4_ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-12-SP4-Pool for ppc64le", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles12-sp4-ltss-updates-ppc64le", + "parent_channel_label": "sles12-sp4-pool-ppc64le", + "product_id": 2115, + "repository_id": 4488, + "parent_product_id": 1626, + "root_product_id": 1626, + "update_tag": "SLE-SERVER", + "url": "https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-SP4-LTSS/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLES12-SP4-LTSS-Updates for ppc64le", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles12-sp4-ltss-debuginfo-updates-ppc64le", + "parent_channel_label": "sles12-sp4-pool-ppc64le", + "product_id": 2115, + "repository_id": 4489, + "parent_product_id": 1626, + "root_product_id": 1626, + "update_tag": "SLE-SERVER", + "url": "https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-SP4-LTSS/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLES12-SP4-LTSS-Debuginfo-Updates for ppc64le", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-manager-tools12-updates-s390x-sp4", + "parent_channel_label": "sles12-sp4-pool-s390x", + "product_id": 1627, + "repository_id": 1728, + "parent_product_id": null, + "root_product_id": 1627, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/12/s390x/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Manager-Tools12-Updates for s390x SP4", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools12-debuginfo-updates-s390x-sp4", + "parent_channel_label": "sles12-sp4-pool-s390x", + "product_id": 1627, + "repository_id": 1729, + "parent_product_id": null, + "root_product_id": 1627, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/12/s390x/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Manager-Tools12-Debuginfo-Updates for s390x SP4", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools12-pool-s390x-sp4", + "parent_channel_label": "sles12-sp4-pool-s390x", + "product_id": 1627, + "repository_id": 1730, + "parent_product_id": null, + "root_product_id": 1627, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/12/s390x/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Manager-Tools12-Pool for s390x SP4", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools12-debuginfo-pool-s390x-sp4", + "parent_channel_label": "sles12-sp4-pool-s390x", + "product_id": 1627, + "repository_id": 1731, + "parent_product_id": null, + "root_product_id": 1627, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/12/s390x/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Manager-Tools12-Debuginfo-Pool for s390x SP4", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sles12-sp4-updates-s390x", + "parent_channel_label": "sles12-sp4-pool-s390x", + "product_id": 1627, + "repository_id": 2781, + "parent_product_id": null, + "root_product_id": 1627, + "update_tag": "SLE-SERVER", + "url": "https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-SP4/s390x/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLES12-SP4-Updates for s390x", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles12-sp4-debuginfo-updates-s390x", + "parent_channel_label": "sles12-sp4-pool-s390x", + "product_id": 1627, + "repository_id": 2782, + "parent_product_id": null, + "root_product_id": 1627, + "update_tag": "SLE-SERVER", + "url": "https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-SP4/s390x/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLES12-SP4-Debuginfo-Updates for s390x", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles12-sp4-installer-updates-s390x", + "parent_channel_label": "sles12-sp4-pool-s390x", + "product_id": 1627, + "repository_id": 2783, + "parent_product_id": null, + "root_product_id": 1627, + "update_tag": "SLE-SERVER-INSTALLER", + "url": "https://updates.suse.com/SUSE/Updates/SLE-SERVER-INSTALLER/12-SP4/s390x/update/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLES12-SP4-Installer-Updates for s390x", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles12-sp4-pool-s390x", + "parent_channel_label": null, + "product_id": 1627, + "repository_id": 2784, + "parent_product_id": null, + "root_product_id": 1627, + "update_tag": "SLE-SERVER", + "url": "https://updates.suse.com/SUSE/Products/SLE-SERVER/12-SP4/s390x/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLES12-SP4-Pool for s390x", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles12-sp4-debuginfo-pool-s390x", + "parent_channel_label": "sles12-sp4-pool-s390x", + "product_id": 1627, + "repository_id": 2785, + "parent_product_id": null, + "root_product_id": 1627, + "update_tag": "SLE-SERVER", + "url": "https://updates.suse.com/SUSE/Products/SLE-SERVER/12-SP4/s390x/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLES12-SP4-Debuginfo-Pool for s390x", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-legacy12-updates-s390x-sp4", + "parent_channel_label": "sles12-sp4-pool-s390x", + "product_id": 1149, + "repository_id": 1672, + "parent_product_id": 1627, + "root_product_id": 1627, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/12/s390x/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy12-Updates for s390x SP4", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-legacy12-debuginfo-updates-s390x-sp4", + "parent_channel_label": "sles12-sp4-pool-s390x", + "product_id": 1149, + "repository_id": 1673, + "parent_product_id": 1627, + "root_product_id": 1627, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/12/s390x/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy12-Debuginfo-Updates for s390x SP4", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-legacy12-pool-s390x-sp4", + "parent_channel_label": "sles12-sp4-pool-s390x", + "product_id": 1149, + "repository_id": 1674, + "parent_product_id": 1627, + "root_product_id": 1627, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/12/s390x/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy12-Pool for s390x SP4", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-legacy12-debuginfo-pool-s390x-sp4", + "parent_channel_label": "sles12-sp4-pool-s390x", + "product_id": 1149, + "repository_id": 1675, + "parent_product_id": 1627, + "root_product_id": 1627, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/12/s390x/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy12-Debuginfo-Pool for s390x SP4", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting12-updates-s390x-sp4", + "parent_channel_label": "sles12-sp4-pool-s390x", + "product_id": 1152, + "repository_id": 1684, + "parent_product_id": 1627, + "root_product_id": 1627, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/12/s390x/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Web-Scripting12-Updates for s390x SP4", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting12-debuginfo-updates-s390x-sp4", + "parent_channel_label": "sles12-sp4-pool-s390x", + "product_id": 1152, + "repository_id": 1685, + "parent_product_id": 1627, + "root_product_id": 1627, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/12/s390x/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Web-Scripting12-Debuginfo-Updates for s390x SP4", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting12-pool-s390x-sp4", + "parent_channel_label": "sles12-sp4-pool-s390x", + "product_id": 1152, + "repository_id": 1686, + "parent_product_id": 1627, + "root_product_id": 1627, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/12/s390x/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Web-Scripting12-Pool for s390x SP4", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting12-debuginfo-pool-s390x-sp4", + "parent_channel_label": "sles12-sp4-pool-s390x", + "product_id": 1152, + "repository_id": 1687, + "parent_product_id": 1627, + "root_product_id": 1627, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/12/s390x/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Web-Scripting12-Debuginfo-Pool for s390x SP4", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud12-updates-s390x-sp4", + "parent_channel_label": "sles12-sp4-pool-s390x", + "product_id": 1219, + "repository_id": 1696, + "parent_product_id": 1627, + "root_product_id": 1627, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/12/s390x/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud12-Updates for s390x SP4", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud12-debuginfo-updates-s390x-sp4", + "parent_channel_label": "sles12-sp4-pool-s390x", + "product_id": 1219, + "repository_id": 1697, + "parent_product_id": 1627, + "root_product_id": 1627, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/12/s390x/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud12-Debuginfo-Updates for s390x SP4", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud12-pool-s390x-sp4", + "parent_channel_label": "sles12-sp4-pool-s390x", + "product_id": 1219, + "repository_id": 1698, + "parent_product_id": 1627, + "root_product_id": 1627, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/12/s390x/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud12-Pool for s390x SP4", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud12-debuginfo-pool-s390x-sp4", + "parent_channel_label": "sles12-sp4-pool-s390x", + "product_id": 1219, + "repository_id": 1699, + "parent_product_id": 1627, + "root_product_id": 1627, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/12/s390x/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud12-Debuginfo-Pool for s390x SP4", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-adv-systems-management12-updates-s390x-sp4", + "parent_channel_label": "sles12-sp4-pool-s390x", + "product_id": 1295, + "repository_id": 1766, + "parent_product_id": 1627, + "root_product_id": 1627, + "update_tag": "SLE-Module-Adv-Systems-Management", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Adv-Systems-Management/12/s390x/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Adv-Systems-Management12-Updates for s390x SP4", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-adv-systems-management12-debuginfo-updates-s390x-sp4", + "parent_channel_label": "sles12-sp4-pool-s390x", + "product_id": 1295, + "repository_id": 1767, + "parent_product_id": 1627, + "root_product_id": 1627, + "update_tag": "SLE-Module-Adv-Systems-Management", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Adv-Systems-Management/12/s390x/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Adv-Systems-Management12-Debuginfo-Updates for s390x SP4", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-adv-systems-management12-pool-s390x-sp4", + "parent_channel_label": "sles12-sp4-pool-s390x", + "product_id": 1295, + "repository_id": 1768, + "parent_product_id": 1627, + "root_product_id": 1627, + "update_tag": "SLE-Module-Adv-Systems-Management", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Adv-Systems-Management/12/s390x/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Adv-Systems-Management12-Pool for s390x SP4", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-adv-systems-management12-debuginfo-pool-s390x-sp4", + "parent_channel_label": "sles12-sp4-pool-s390x", + "product_id": 1295, + "repository_id": 1769, + "parent_product_id": 1627, + "root_product_id": 1627, + "update_tag": "SLE-Module-Adv-Systems-Management", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Adv-Systems-Management/12/s390x/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Adv-Systems-Management12-Debuginfo-Pool for s390x SP4", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-toolchain12-updates-s390x-sp4", + "parent_channel_label": "sles12-sp4-pool-s390x", + "product_id": 1340, + "repository_id": 1899, + "parent_product_id": 1627, + "root_product_id": 1627, + "update_tag": "SLE-Module-Toolchain", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Toolchain/12/s390x/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Toolchain12-Updates for s390x SP4", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-toolchain12-debuginfo-updates-s390x-sp4", + "parent_channel_label": "sles12-sp4-pool-s390x", + "product_id": 1340, + "repository_id": 1900, + "parent_product_id": 1627, + "root_product_id": 1627, + "update_tag": "SLE-Module-Toolchain", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Toolchain/12/s390x/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Toolchain12-Debuginfo-Updates for s390x SP4", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-toolchain12-pool-s390x-sp4", + "parent_channel_label": "sles12-sp4-pool-s390x", + "product_id": 1340, + "repository_id": 1901, + "parent_product_id": 1627, + "root_product_id": 1627, + "update_tag": "SLE-Module-Toolchain", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Toolchain/12/s390x/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Toolchain12-Pool for s390x SP4", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-toolchain12-debuginfo-pool-s390x-sp4", + "parent_channel_label": "sles12-sp4-pool-s390x", + "product_id": 1340, + "repository_id": 1902, + "parent_product_id": 1627, + "root_product_id": 1627, + "update_tag": "SLE-Module-Toolchain", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Toolchain/12/s390x/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Toolchain12-Debuginfo-Pool for s390x SP4", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-containers12-updates-s390x-sp4", + "parent_channel_label": "sles12-sp4-pool-s390x", + "product_id": 1354, + "repository_id": 1977, + "parent_product_id": 1627, + "root_product_id": 1627, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/12/s390x/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers12-Updates for s390x SP4", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-containers12-debuginfo-updates-s390x-sp4", + "parent_channel_label": "sles12-sp4-pool-s390x", + "product_id": 1354, + "repository_id": 1978, + "parent_product_id": 1627, + "root_product_id": 1627, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/12/s390x/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers12-Debuginfo-Updates for s390x SP4", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-containers12-pool-s390x-sp4", + "parent_channel_label": "sles12-sp4-pool-s390x", + "product_id": 1354, + "repository_id": 1979, + "parent_product_id": 1627, + "root_product_id": 1627, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Containers/12/s390x/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers12-Pool for s390x SP4", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-containers12-debuginfo-pool-s390x-sp4", + "parent_channel_label": "sles12-sp4-pool-s390x", + "product_id": 1354, + "repository_id": 1980, + "parent_product_id": 1627, + "root_product_id": 1627, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Containers/12/s390x/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers12-Debuginfo-Pool for s390x SP4", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-manager-server-3.1-updates-s390x-sp4", + "parent_channel_label": "sles12-sp4-pool-s390x", + "product_id": 1519, + "repository_id": 2405, + "parent_product_id": 1627, + "root_product_id": 1627, + "update_tag": "SUSE-Manager-Server-3.1", + "url": "https://updates.suse.com/SUSE/Updates/SUSE-Manager-Server/3.1/s390x/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-Manager-Server-3.1-Updates for s390x SP4", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-manager-server-3.1-debuginfo-updates-s390x-sp4", + "parent_channel_label": "sles12-sp4-pool-s390x", + "product_id": 1519, + "repository_id": 2406, + "parent_product_id": 1627, + "root_product_id": 1627, + "update_tag": "SUSE-Manager-Server-3.1", + "url": "https://updates.suse.com/SUSE/Updates/SUSE-Manager-Server/3.1/s390x/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SUSE-Manager-Server-3.1-Debuginfo-Updates for s390x SP4", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-manager-server-3.1-pool-s390x-sp4", + "parent_channel_label": "sles12-sp4-pool-s390x", + "product_id": 1519, + "repository_id": 2407, + "parent_product_id": 1627, + "root_product_id": 1627, + "update_tag": "SUSE-Manager-Server-3.1", + "url": "https://updates.suse.com/SUSE/Products/SUSE-Manager-Server/3.1/s390x/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-Manager-Server-3.1-Pool for s390x SP4", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-manager-server-3.1-debuginfo-pool-s390x-sp4", + "parent_channel_label": "sles12-sp4-pool-s390x", + "product_id": 1519, + "repository_id": 2408, + "parent_product_id": 1627, + "root_product_id": 1627, + "update_tag": "SUSE-Manager-Server-3.1", + "url": "https://updates.suse.com/SUSE/Products/SUSE-Manager-Server/3.1/s390x/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SUSE-Manager-Server-3.1-Debuginfo-Pool for s390x SP4", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-sdk12-sp4-updates-s390x", + "parent_channel_label": "sles12-sp4-pool-s390x", + "product_id": 1632, + "repository_id": 2809, + "parent_product_id": 1627, + "root_product_id": 1627, + "update_tag": "SLE-SDK", + "url": "https://updates.suse.com/SUSE/Updates/SLE-SDK/12-SP4/s390x/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-SDK12-SP4-Updates for s390x", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-sdk12-sp4-debuginfo-updates-s390x", + "parent_channel_label": "sles12-sp4-pool-s390x", + "product_id": 1632, + "repository_id": 2810, + "parent_product_id": 1627, + "root_product_id": 1627, + "update_tag": "SLE-SDK", + "url": "https://updates.suse.com/SUSE/Updates/SLE-SDK/12-SP4/s390x/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-SDK12-SP4-Debuginfo-Updates for s390x", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-sdk12-sp4-pool-s390x", + "parent_channel_label": "sles12-sp4-pool-s390x", + "product_id": 1632, + "repository_id": 2811, + "parent_product_id": 1627, + "root_product_id": 1627, + "update_tag": "SLE-SDK", + "url": "https://updates.suse.com/SUSE/Products/SLE-SDK/12-SP4/s390x/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-SDK12-SP4-Pool for s390x", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-sdk12-sp4-debuginfo-pool-s390x", + "parent_channel_label": "sles12-sp4-pool-s390x", + "product_id": 1632, + "repository_id": 2812, + "parent_product_id": 1627, + "root_product_id": 1627, + "update_tag": "SLE-SDK", + "url": "https://updates.suse.com/SUSE/Products/SLE-SDK/12-SP4/s390x/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-SDK12-SP4-Debuginfo-Pool for s390x", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-ha12-sp4-updates-s390x", + "parent_channel_label": "sles12-sp4-pool-s390x", + "product_id": 1636, + "repository_id": 2829, + "parent_product_id": 1627, + "root_product_id": 1627, + "update_tag": "SLE-HA", + "url": "https://updates.suse.com/SUSE/Updates/SLE-HA/12-SP4/s390x/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-HA12-SP4-Updates for s390x", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-ha12-sp4-debuginfo-updates-s390x", + "parent_channel_label": "sles12-sp4-pool-s390x", + "product_id": 1636, + "repository_id": 2830, + "parent_product_id": 1627, + "root_product_id": 1627, + "update_tag": "SLE-HA", + "url": "https://updates.suse.com/SUSE/Updates/SLE-HA/12-SP4/s390x/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-HA12-SP4-Debuginfo-Updates for s390x", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-ha12-sp4-pool-s390x", + "parent_channel_label": "sles12-sp4-pool-s390x", + "product_id": 1636, + "repository_id": 2831, + "parent_product_id": 1627, + "root_product_id": 1627, + "update_tag": "SLE-HA", + "url": "https://updates.suse.com/SUSE/Products/SLE-HA/12-SP4/s390x/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-HA12-SP4-Pool for s390x", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-ha12-sp4-debuginfo-pool-s390x", + "parent_channel_label": "sles12-sp4-pool-s390x", + "product_id": 1636, + "repository_id": 2832, + "parent_product_id": 1627, + "root_product_id": 1627, + "update_tag": "SLE-HA", + "url": "https://updates.suse.com/SUSE/Products/SLE-HA/12-SP4/s390x/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-HA12-SP4-Debuginfo-Pool for s390x", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-ha-geo12-sp4-updates-s390x", + "parent_channel_label": "sles12-sp4-pool-s390x", + "product_id": 1638, + "repository_id": 2839, + "parent_product_id": 1636, + "root_product_id": 1627, + "update_tag": "SLE-HA-GEO", + "url": "https://updates.suse.com/SUSE/Updates/SLE-HA-GEO/12-SP4/s390x/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-HA-GEO12-SP4-Updates for s390x", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-ha-geo12-sp4-debuginfo-updates-s390x", + "parent_channel_label": "sles12-sp4-pool-s390x", + "product_id": 1638, + "repository_id": 2840, + "parent_product_id": 1636, + "root_product_id": 1627, + "update_tag": "SLE-HA-GEO", + "url": "https://updates.suse.com/SUSE/Updates/SLE-HA-GEO/12-SP4/s390x/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-HA-GEO12-SP4-Debuginfo-Updates for s390x", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-ha-geo12-sp4-pool-s390x", + "parent_channel_label": "sles12-sp4-pool-s390x", + "product_id": 1638, + "repository_id": 2841, + "parent_product_id": 1636, + "root_product_id": 1627, + "update_tag": "SLE-HA-GEO", + "url": "https://updates.suse.com/SUSE/Products/SLE-HA-GEO/12-SP4/s390x/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-HA-GEO12-SP4-Pool for s390x", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-ha-geo12-sp4-debuginfo-pool-s390x", + "parent_channel_label": "sles12-sp4-pool-s390x", + "product_id": 1638, + "repository_id": 2842, + "parent_product_id": 1636, + "root_product_id": 1627, + "update_tag": "SLE-HA-GEO", + "url": "https://updates.suse.com/SUSE/Products/SLE-HA-GEO/12-SP4/s390x/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-HA-GEO12-SP4-Debuginfo-Pool for s390x", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-manager-server-3.2-updates-s390x-sp4", + "parent_channel_label": "sles12-sp4-pool-s390x", + "product_id": 1723, + "repository_id": 2982, + "parent_product_id": 1627, + "root_product_id": 1627, + "update_tag": "SUSE-Manager-Server-3.2", + "url": "https://updates.suse.com/SUSE/Updates/SUSE-Manager-Server/3.2/s390x/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-Manager-Server-3.2-Updates for s390x SP4", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-manager-server-3.2-debuginfo-updates-s390x-sp4", + "parent_channel_label": "sles12-sp4-pool-s390x", + "product_id": 1723, + "repository_id": 2983, + "parent_product_id": 1627, + "root_product_id": 1627, + "update_tag": "SUSE-Manager-Server-3.2", + "url": "https://updates.suse.com/SUSE/Updates/SUSE-Manager-Server/3.2/s390x/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SUSE-Manager-Server-3.2-Debuginfo-Updates for s390x SP4", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-manager-server-3.2-pool-s390x-sp4", + "parent_channel_label": "sles12-sp4-pool-s390x", + "product_id": 1723, + "repository_id": 2984, + "parent_product_id": 1627, + "root_product_id": 1627, + "update_tag": "SUSE-Manager-Server-3.2", + "url": "https://updates.suse.com/SUSE/Products/SUSE-Manager-Server/3.2/s390x/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-Manager-Server-3.2-Pool for s390x SP4", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-manager-server-3.2-debuginfo-pool-s390x-sp4", + "parent_channel_label": "sles12-sp4-pool-s390x", + "product_id": 1723, + "repository_id": 2985, + "parent_product_id": 1627, + "root_product_id": 1627, + "update_tag": "SUSE-Manager-Server-3.2", + "url": "https://updates.suse.com/SUSE/Products/SUSE-Manager-Server/3.2/s390x/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SUSE-Manager-Server-3.2-Debuginfo-Pool for s390x SP4", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-manager-tools12-beta-updates-s390x-sp4", + "parent_channel_label": "sles12-sp4-pool-s390x", + "product_id": 1746, + "repository_id": 3072, + "parent_product_id": 1627, + "root_product_id": 1627, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/12-BETA/s390x/update/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools12-BETA-Updates for s390x SP4", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools12-beta-debuginfo-updates-s390x-sp4", + "parent_channel_label": "sles12-sp4-pool-s390x", + "product_id": 1746, + "repository_id": 3073, + "parent_product_id": 1627, + "root_product_id": 1627, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/12-BETA/s390x/update_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools12-BETA-Debuginfo-Updates for s390x SP4", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools12-beta-pool-s390x-sp4", + "parent_channel_label": "sles12-sp4-pool-s390x", + "product_id": 1746, + "repository_id": 3074, + "parent_product_id": 1627, + "root_product_id": 1627, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/12-BETA/s390x/product/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools12-BETA-Pool for s390x SP4", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools12-beta-debuginfo-pool-s390x-sp4", + "parent_channel_label": "sles12-sp4-pool-s390x", + "product_id": 1746, + "repository_id": 3075, + "parent_product_id": 1627, + "root_product_id": 1627, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/12-BETA/s390x/product_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools12-BETA-Debuginfo-Pool for s390x SP4", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "suse-packagehub-12-sp4-standard-pool-s390x", + "parent_channel_label": "sles12-sp4-pool-s390x", + "product_id": 1812, + "repository_id": 3457, + "parent_product_id": 1627, + "root_product_id": 1627, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-12-SP4_s390x/standard/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-12-SP4-Standard-Pool for s390x", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-packagehub-12-sp4-debuginfo-s390x", + "parent_channel_label": "sles12-sp4-pool-s390x", + "product_id": 1812, + "repository_id": 3458, + "parent_product_id": 1627, + "root_product_id": 1627, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-12-SP4_s390x/standard_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-12-SP4-Debuginfo for s390x", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-packagehub-12-sp4-pool-s390x", + "parent_channel_label": "sles12-sp4-pool-s390x", + "product_id": 1812, + "repository_id": 3459, + "parent_product_id": 1627, + "root_product_id": 1627, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-12-SP4_s390x/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-12-SP4-Pool for s390x", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-live-patching12-sp4-updates-s390x", + "parent_channel_label": "sles12-sp4-pool-s390x", + "product_id": 2079, + "repository_id": 4437, + "parent_product_id": 1627, + "root_product_id": 1627, + "update_tag": "SLE-Live-Patching", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Live-Patching/12-SP4/s390x/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Live-Patching12-SP4-Updates for s390x", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-live-patching12-sp4-debuginfo-updates-s390x", + "parent_channel_label": "sles12-sp4-pool-s390x", + "product_id": 2079, + "repository_id": 4438, + "parent_product_id": 1627, + "root_product_id": 1627, + "update_tag": "SLE-Live-Patching", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Live-Patching/12-SP4/s390x/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Live-Patching12-SP4-Debuginfo-Updates for s390x", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-live-patching12-sp4-pool-s390x", + "parent_channel_label": "sles12-sp4-pool-s390x", + "product_id": 2079, + "repository_id": 4439, + "parent_product_id": 1627, + "root_product_id": 1627, + "update_tag": "SLE-Live-Patching", + "url": "https://updates.suse.com/SUSE/Products/SLE-Live-Patching/12-SP4/s390x/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Live-Patching12-SP4-Pool for s390x", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-live-patching12-sp4-debuginfo-pool-s390x", + "parent_channel_label": "sles12-sp4-pool-s390x", + "product_id": 2079, + "repository_id": 4440, + "parent_product_id": 1627, + "root_product_id": 1627, + "update_tag": "SLE-Live-Patching", + "url": "https://updates.suse.com/SUSE/Products/SLE-Live-Patching/12-SP4/s390x/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Live-Patching12-SP4-Debuginfo-Pool for s390x", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles12-sp4-ltss-updates-s390x", + "parent_channel_label": "sles12-sp4-pool-s390x", + "product_id": 2116, + "repository_id": 4490, + "parent_product_id": 1627, + "root_product_id": 1627, + "update_tag": "SLE-SERVER", + "url": "https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-SP4-LTSS/s390x/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLES12-SP4-LTSS-Updates for s390x", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles12-sp4-ltss-debuginfo-updates-s390x", + "parent_channel_label": "sles12-sp4-pool-s390x", + "product_id": 2116, + "repository_id": 4491, + "parent_product_id": 1627, + "root_product_id": 1627, + "update_tag": "SLE-SERVER", + "url": "https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-SP4-LTSS/s390x/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLES12-SP4-LTSS-Debuginfo-Updates for s390x", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-manager-tools12-updates-aarch64-sp4", + "parent_channel_label": "sles12-sp4-pool-aarch64", + "product_id": 1628, + "repository_id": 2179, + "parent_product_id": null, + "root_product_id": 1628, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/12/aarch64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Manager-Tools12-Updates for aarch64 SP4", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools12-debuginfo-updates-aarch64-sp4", + "parent_channel_label": "sles12-sp4-pool-aarch64", + "product_id": 1628, + "repository_id": 2180, + "parent_product_id": null, + "root_product_id": 1628, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/12/aarch64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Manager-Tools12-Debuginfo-Updates for aarch64 SP4", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools12-pool-aarch64-sp4", + "parent_channel_label": "sles12-sp4-pool-aarch64", + "product_id": 1628, + "repository_id": 2181, + "parent_product_id": null, + "root_product_id": 1628, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/12/aarch64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Manager-Tools12-Pool for aarch64 SP4", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools12-debuginfo-pool-aarch64-sp4", + "parent_channel_label": "sles12-sp4-pool-aarch64", + "product_id": 1628, + "repository_id": 2182, + "parent_product_id": null, + "root_product_id": 1628, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/12/aarch64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Manager-Tools12-Debuginfo-Pool for aarch64 SP4", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sles12-sp4-updates-aarch64", + "parent_channel_label": "sles12-sp4-pool-aarch64", + "product_id": 1628, + "repository_id": 2787, + "parent_product_id": null, + "root_product_id": 1628, + "update_tag": "SLE-SERVER", + "url": "https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-SP4/aarch64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLES12-SP4-Updates for aarch64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles12-sp4-debuginfo-updates-aarch64", + "parent_channel_label": "sles12-sp4-pool-aarch64", + "product_id": 1628, + "repository_id": 2788, + "parent_product_id": null, + "root_product_id": 1628, + "update_tag": "SLE-SERVER", + "url": "https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-SP4/aarch64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLES12-SP4-Debuginfo-Updates for aarch64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles12-sp4-installer-updates-aarch64", + "parent_channel_label": "sles12-sp4-pool-aarch64", + "product_id": 1628, + "repository_id": 2789, + "parent_product_id": null, + "root_product_id": 1628, + "update_tag": "SLE-SERVER-INSTALLER", + "url": "https://updates.suse.com/SUSE/Updates/SLE-SERVER-INSTALLER/12-SP4/aarch64/update/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLES12-SP4-Installer-Updates for aarch64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles12-sp4-pool-aarch64", + "parent_channel_label": null, + "product_id": 1628, + "repository_id": 2790, + "parent_product_id": null, + "root_product_id": 1628, + "update_tag": "SLE-SERVER", + "url": "https://updates.suse.com/SUSE/Products/SLE-SERVER/12-SP4/aarch64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLES12-SP4-Pool for aarch64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles12-sp4-debuginfo-pool-aarch64", + "parent_channel_label": "sles12-sp4-pool-aarch64", + "product_id": 1628, + "repository_id": 2791, + "parent_product_id": null, + "root_product_id": 1628, + "update_tag": "SLE-SERVER", + "url": "https://updates.suse.com/SUSE/Products/SLE-SERVER/12-SP4/aarch64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLES12-SP4-Debuginfo-Pool for aarch64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-toolchain12-updates-aarch64-sp4", + "parent_channel_label": "sles12-sp4-pool-aarch64", + "product_id": 1376, + "repository_id": 2086, + "parent_product_id": 1628, + "root_product_id": 1628, + "update_tag": "SLE-Module-Toolchain", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Toolchain/12/aarch64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Toolchain12-Updates for aarch64 SP4", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-toolchain12-debuginfo-updates-aarch64-sp4", + "parent_channel_label": "sles12-sp4-pool-aarch64", + "product_id": 1376, + "repository_id": 2087, + "parent_product_id": 1628, + "root_product_id": 1628, + "update_tag": "SLE-Module-Toolchain", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Toolchain/12/aarch64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Toolchain12-Debuginfo-Updates for aarch64 SP4", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-toolchain12-pool-aarch64-sp4", + "parent_channel_label": "sles12-sp4-pool-aarch64", + "product_id": 1376, + "repository_id": 2088, + "parent_product_id": 1628, + "root_product_id": 1628, + "update_tag": "SLE-Module-Toolchain", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Toolchain/12/aarch64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Toolchain12-Pool for aarch64 SP4", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-toolchain12-debuginfo-pool-aarch64-sp4", + "parent_channel_label": "sles12-sp4-pool-aarch64", + "product_id": 1376, + "repository_id": 2089, + "parent_product_id": 1628, + "root_product_id": 1628, + "update_tag": "SLE-Module-Toolchain", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Toolchain/12/aarch64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Toolchain12-Debuginfo-Pool for aarch64 SP4", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-hpc12-updates-aarch64-sp4", + "parent_channel_label": "sles12-sp4-pool-aarch64", + "product_id": 1522, + "repository_id": 2421, + "parent_product_id": 1628, + "root_product_id": 1628, + "update_tag": "SLE-Module-HPC", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-HPC/12/aarch64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-HPC12-Updates for aarch64 SP4", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-hpc12-debuginfo-updates-aarch64-sp4", + "parent_channel_label": "sles12-sp4-pool-aarch64", + "product_id": 1522, + "repository_id": 2422, + "parent_product_id": 1628, + "root_product_id": 1628, + "update_tag": "SLE-Module-HPC", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-HPC/12/aarch64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-HPC12-Debuginfo-Updates for aarch64 SP4", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-hpc12-pool-aarch64-sp4", + "parent_channel_label": "sles12-sp4-pool-aarch64", + "product_id": 1522, + "repository_id": 2423, + "parent_product_id": 1628, + "root_product_id": 1628, + "update_tag": "SLE-Module-HPC", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-HPC/12/aarch64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-HPC12-Pool for aarch64 SP4", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-hpc12-debuginfo-pool-aarch64-sp4", + "parent_channel_label": "sles12-sp4-pool-aarch64", + "product_id": 1522, + "repository_id": 2424, + "parent_product_id": 1628, + "root_product_id": 1628, + "update_tag": "SLE-Module-HPC", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-HPC/12/aarch64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-HPC12-Debuginfo-Pool for aarch64 SP4", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud12-updates-aarch64-sp4", + "parent_channel_label": "sles12-sp4-pool-aarch64", + "product_id": 1528, + "repository_id": 2157, + "parent_product_id": 1628, + "root_product_id": 1628, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/12/aarch64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud12-Updates for aarch64 SP4", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud12-debuginfo-updates-aarch64-sp4", + "parent_channel_label": "sles12-sp4-pool-aarch64", + "product_id": 1528, + "repository_id": 2158, + "parent_product_id": 1628, + "root_product_id": 1628, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/12/aarch64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud12-Debuginfo-Updates for aarch64 SP4", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud12-pool-aarch64-sp4", + "parent_channel_label": "sles12-sp4-pool-aarch64", + "product_id": 1528, + "repository_id": 2159, + "parent_product_id": 1628, + "root_product_id": 1628, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/12/aarch64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud12-Pool for aarch64 SP4", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud12-debuginfo-pool-aarch64-sp4", + "parent_channel_label": "sles12-sp4-pool-aarch64", + "product_id": 1528, + "repository_id": 2160, + "parent_product_id": 1628, + "root_product_id": 1628, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/12/aarch64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud12-Debuginfo-Pool for aarch64 SP4", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting12-updates-aarch64-sp4", + "parent_channel_label": "sles12-sp4-pool-aarch64", + "product_id": 1539, + "repository_id": 2476, + "parent_product_id": 1628, + "root_product_id": 1628, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/12/aarch64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Web-Scripting12-Updates for aarch64 SP4", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting12-debuginfo-updates-aarch64-sp4", + "parent_channel_label": "sles12-sp4-pool-aarch64", + "product_id": 1539, + "repository_id": 2477, + "parent_product_id": 1628, + "root_product_id": 1628, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/12/aarch64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Web-Scripting12-Debuginfo-Updates for aarch64 SP4", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting12-pool-aarch64-sp4", + "parent_channel_label": "sles12-sp4-pool-aarch64", + "product_id": 1539, + "repository_id": 2478, + "parent_product_id": 1628, + "root_product_id": 1628, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/12/aarch64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Web-Scripting12-Pool for aarch64 SP4", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting12-debuginfo-pool-aarch64-sp4", + "parent_channel_label": "sles12-sp4-pool-aarch64", + "product_id": 1539, + "repository_id": 2479, + "parent_product_id": 1628, + "root_product_id": 1628, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/12/aarch64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Web-Scripting12-Debuginfo-Pool for aarch64 SP4", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-sdk12-sp4-updates-aarch64", + "parent_channel_label": "sles12-sp4-pool-aarch64", + "product_id": 1633, + "repository_id": 2814, + "parent_product_id": 1628, + "root_product_id": 1628, + "update_tag": "SLE-SDK", + "url": "https://updates.suse.com/SUSE/Updates/SLE-SDK/12-SP4/aarch64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-SDK12-SP4-Updates for aarch64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-sdk12-sp4-debuginfo-updates-aarch64", + "parent_channel_label": "sles12-sp4-pool-aarch64", + "product_id": 1633, + "repository_id": 2815, + "parent_product_id": 1628, + "root_product_id": 1628, + "update_tag": "SLE-SDK", + "url": "https://updates.suse.com/SUSE/Updates/SLE-SDK/12-SP4/aarch64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-SDK12-SP4-Debuginfo-Updates for aarch64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-sdk12-sp4-pool-aarch64", + "parent_channel_label": "sles12-sp4-pool-aarch64", + "product_id": 1633, + "repository_id": 2816, + "parent_product_id": 1628, + "root_product_id": 1628, + "update_tag": "SLE-SDK", + "url": "https://updates.suse.com/SUSE/Products/SLE-SDK/12-SP4/aarch64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-SDK12-SP4-Pool for aarch64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-sdk12-sp4-debuginfo-pool-aarch64", + "parent_channel_label": "sles12-sp4-pool-aarch64", + "product_id": 1633, + "repository_id": 2817, + "parent_product_id": 1628, + "root_product_id": 1628, + "update_tag": "SLE-SDK", + "url": "https://updates.suse.com/SUSE/Products/SLE-SDK/12-SP4/aarch64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-SDK12-SP4-Debuginfo-Pool for aarch64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-manager-tools12-beta-updates-aarch64-sp4", + "parent_channel_label": "sles12-sp4-pool-aarch64", + "product_id": 1744, + "repository_id": 3062, + "parent_product_id": 1628, + "root_product_id": 1628, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/12-BETA/aarch64/update/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools12-BETA-Updates for aarch64 SP4", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools12-beta-debuginfo-updates-aarch64-sp4", + "parent_channel_label": "sles12-sp4-pool-aarch64", + "product_id": 1744, + "repository_id": 3063, + "parent_product_id": 1628, + "root_product_id": 1628, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/12-BETA/aarch64/update_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools12-BETA-Debuginfo-Updates for aarch64 SP4", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools12-beta-pool-aarch64-sp4", + "parent_channel_label": "sles12-sp4-pool-aarch64", + "product_id": 1744, + "repository_id": 3064, + "parent_product_id": 1628, + "root_product_id": 1628, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/12-BETA/aarch64/product/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools12-BETA-Pool for aarch64 SP4", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools12-beta-debuginfo-pool-aarch64-sp4", + "parent_channel_label": "sles12-sp4-pool-aarch64", + "product_id": 1744, + "repository_id": 3065, + "parent_product_id": 1628, + "root_product_id": 1628, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/12-BETA/aarch64/product_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools12-BETA-Debuginfo-Pool for aarch64 SP4", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "suse-packagehub-12-sp4-standard-pool-aarch64", + "parent_channel_label": "sles12-sp4-pool-aarch64", + "product_id": 1810, + "repository_id": 3451, + "parent_product_id": 1628, + "root_product_id": 1628, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-12-SP4_aarch64/standard/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-12-SP4-Standard-Pool for aarch64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-packagehub-12-sp4-debuginfo-aarch64", + "parent_channel_label": "sles12-sp4-pool-aarch64", + "product_id": 1810, + "repository_id": 3452, + "parent_product_id": 1628, + "root_product_id": 1628, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-12-SP4_aarch64/standard_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-12-SP4-Debuginfo for aarch64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-packagehub-12-sp4-pool-aarch64", + "parent_channel_label": "sles12-sp4-pool-aarch64", + "product_id": 1810, + "repository_id": 3453, + "parent_product_id": 1628, + "root_product_id": 1628, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-12-SP4_aarch64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-12-SP4-Pool for aarch64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-manager-tools12-updates-x86_64-sled-sp4", + "parent_channel_label": "sled12-sp4-pool-x86_64", + "product_id": 1629, + "repository_id": 1732, + "parent_product_id": null, + "root_product_id": 1629, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/12/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Manager-Tools12-Updates for x86_64 SLED SP4", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools12-debuginfo-updates-x86_64-sled-sp4", + "parent_channel_label": "sled12-sp4-pool-x86_64", + "product_id": 1629, + "repository_id": 1733, + "parent_product_id": null, + "root_product_id": 1629, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/12/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Manager-Tools12-Debuginfo-Updates for x86_64 SLED SP4", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools12-pool-x86_64-sled-sp4", + "parent_channel_label": "sled12-sp4-pool-x86_64", + "product_id": 1629, + "repository_id": 1734, + "parent_product_id": null, + "root_product_id": 1629, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/12/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Manager-Tools12-Pool for x86_64 SLED SP4", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools12-debuginfo-pool-x86_64-sled-sp4", + "parent_channel_label": "sled12-sp4-pool-x86_64", + "product_id": 1629, + "repository_id": 1735, + "parent_product_id": null, + "root_product_id": 1629, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/12/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Manager-Tools12-Debuginfo-Pool for x86_64 SLED SP4", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sled12-sp4-updates-x86_64", + "parent_channel_label": "sled12-sp4-pool-x86_64", + "product_id": 1629, + "repository_id": 2793, + "parent_product_id": null, + "root_product_id": 1629, + "update_tag": "SLE-DESKTOP", + "url": "https://updates.suse.com/SUSE/Updates/SLE-DESKTOP/12-SP4/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLED12-SP4-Updates for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sled12-sp4-debuginfo-updates-x86_64", + "parent_channel_label": "sled12-sp4-pool-x86_64", + "product_id": 1629, + "repository_id": 2794, + "parent_product_id": null, + "root_product_id": 1629, + "update_tag": "SLE-DESKTOP", + "url": "https://updates.suse.com/SUSE/Updates/SLE-DESKTOP/12-SP4/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLED12-SP4-Debuginfo-Updates for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sled12-sp4-installer-updates-x86_64", + "parent_channel_label": "sled12-sp4-pool-x86_64", + "product_id": 1629, + "repository_id": 2795, + "parent_product_id": null, + "root_product_id": 1629, + "update_tag": "SLE-DESKTOP-INSTALLER", + "url": "https://updates.suse.com/SUSE/Updates/SLE-DESKTOP-INSTALLER/12-SP4/x86_64/update/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLED12-SP4-Installer-Updates for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sled12-sp4-pool-x86_64", + "parent_channel_label": null, + "product_id": 1629, + "repository_id": 2796, + "parent_product_id": null, + "root_product_id": 1629, + "update_tag": "SLE-DESKTOP", + "url": "https://updates.suse.com/SUSE/Products/SLE-DESKTOP/12-SP4/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLED12-SP4-Pool for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sled12-sp4-debuginfo-pool-x86_64", + "parent_channel_label": "sled12-sp4-pool-x86_64", + "product_id": 1629, + "repository_id": 2797, + "parent_product_id": null, + "root_product_id": 1629, + "update_tag": "SLE-DESKTOP", + "url": "https://updates.suse.com/SUSE/Products/SLE-DESKTOP/12-SP4/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLED12-SP4-Debuginfo-Pool for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-12-sp4-ga-desktop-nvidia-driver", + "parent_channel_label": "sled12-sp4-pool-x86_64", + "product_id": 1629, + "repository_id": 3529, + "parent_product_id": null, + "root_product_id": 1629, + "update_tag": null, + "url": "https://download.nvidia.com/suse/sle12sp4/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-12-SP4-GA-Desktop-nVidia-Driver for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-sdk12-sp4-updates-x86_64-sled-sp4", + "parent_channel_label": "sled12-sp4-pool-x86_64", + "product_id": 1630, + "repository_id": 2799, + "parent_product_id": 1629, + "root_product_id": 1629, + "update_tag": "SLE-SDK", + "url": "https://updates.suse.com/SUSE/Updates/SLE-SDK/12-SP4/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-SDK12-SP4-Updates for x86_64 SLED", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-sdk12-sp4-debuginfo-updates-x86_64-sled-sp4", + "parent_channel_label": "sled12-sp4-pool-x86_64", + "product_id": 1630, + "repository_id": 2800, + "parent_product_id": 1629, + "root_product_id": 1629, + "update_tag": "SLE-SDK", + "url": "https://updates.suse.com/SUSE/Updates/SLE-SDK/12-SP4/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-SDK12-SP4-Debuginfo-Updates for x86_64 SLED", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-sdk12-sp4-pool-x86_64-sled-sp4", + "parent_channel_label": "sled12-sp4-pool-x86_64", + "product_id": 1630, + "repository_id": 2801, + "parent_product_id": 1629, + "root_product_id": 1629, + "update_tag": "SLE-SDK", + "url": "https://updates.suse.com/SUSE/Products/SLE-SDK/12-SP4/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-SDK12-SP4-Pool for x86_64 SLED", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-sdk12-sp4-debuginfo-pool-x86_64-sled-sp4", + "parent_channel_label": "sled12-sp4-pool-x86_64", + "product_id": 1630, + "repository_id": 2802, + "parent_product_id": 1629, + "root_product_id": 1629, + "update_tag": "SLE-SDK", + "url": "https://updates.suse.com/SUSE/Products/SLE-SDK/12-SP4/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-SDK12-SP4-Debuginfo-Pool for x86_64 SLED", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-cap-tools-12-updates-x86_64-sled-sp4", + "parent_channel_label": "sled12-sp4-pool-x86_64", + "product_id": 1678, + "repository_id": 2912, + "parent_product_id": 1629, + "root_product_id": 1629, + "update_tag": "SLE-Module-CAP-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-CAP-Tools/12/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-CAP-Tools-12-Updates for x86_64 SLED SP4", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-cap-tools-12-debuginfo-updates-x86_64-sled-sp4", + "parent_channel_label": "sled12-sp4-pool-x86_64", + "product_id": 1678, + "repository_id": 2913, + "parent_product_id": 1629, + "root_product_id": 1629, + "update_tag": "SLE-Module-CAP-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-CAP-Tools/12/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-CAP-Tools-12-Debuginfo-Updates for x86_64 SLED SP4", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-cap-tools-12-pool-x86_64-sled-sp4", + "parent_channel_label": "sled12-sp4-pool-x86_64", + "product_id": 1678, + "repository_id": 2914, + "parent_product_id": 1629, + "root_product_id": 1629, + "update_tag": "SLE-Module-CAP-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-CAP-Tools/12/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-CAP-Tools-12-Pool for x86_64 SLED SP4", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-cap-tools-12-debuginfo-pool-x86_64-sled-sp4", + "parent_channel_label": "sled12-sp4-pool-x86_64", + "product_id": 1678, + "repository_id": 2915, + "parent_product_id": 1629, + "root_product_id": 1629, + "update_tag": "SLE-Module-CAP-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-CAP-Tools/12/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-CAP-Tools-12-Debuginfo-Pool for x86_64 SLED SP4", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-manager-tools12-beta-updates-x86_64-sled-sp4", + "parent_channel_label": "sled12-sp4-pool-x86_64", + "product_id": 1747, + "repository_id": 3077, + "parent_product_id": 1629, + "root_product_id": 1629, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/12-BETA/x86_64/update/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools12-BETA-Updates for x86_64 SLED SP4", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools12-beta-debuginfo-updates-x86_64-sled-sp4", + "parent_channel_label": "sled12-sp4-pool-x86_64", + "product_id": 1747, + "repository_id": 3078, + "parent_product_id": 1629, + "root_product_id": 1629, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/12-BETA/x86_64/update_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools12-BETA-Debuginfo-Updates for x86_64 SLED SP4", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools12-beta-pool-x86_64-sled-sp4", + "parent_channel_label": "sled12-sp4-pool-x86_64", + "product_id": 1747, + "repository_id": 3079, + "parent_product_id": 1629, + "root_product_id": 1629, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/12-BETA/x86_64/product/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools12-BETA-Pool for x86_64 SLED SP4", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools12-beta-debuginfo-pool-x86_64-sled-sp4", + "parent_channel_label": "sled12-sp4-pool-x86_64", + "product_id": 1747, + "repository_id": 3080, + "parent_product_id": 1629, + "root_product_id": 1629, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/12-BETA/x86_64/product_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools12-BETA-Debuginfo-Pool for x86_64 SLED SP4", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "suse-packagehub-12-sp4-standard-pool-x86_64-sled-sp4", + "parent_channel_label": "sled12-sp4-pool-x86_64", + "product_id": 1813, + "repository_id": 3460, + "parent_product_id": 1629, + "root_product_id": 1629, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-12-SP4_x86_64/standard/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-12-SP4-Standard-Pool for x86_64 SLED", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-packagehub-12-sp4-debuginfo-x86_64-sled-sp4", + "parent_channel_label": "sled12-sp4-pool-x86_64", + "product_id": 1813, + "repository_id": 3461, + "parent_product_id": 1629, + "root_product_id": 1629, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-12-SP4_x86_64/standard_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-12-SP4-Debuginfo for x86_64 SLED", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-packagehub-12-sp4-pool-x86_64-sled-sp4", + "parent_channel_label": "sled12-sp4-pool-x86_64", + "product_id": 1813, + "repository_id": 3462, + "parent_product_id": 1629, + "root_product_id": 1629, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-12-SP4_x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-12-SP4-Pool for x86_64 SLED", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-caasp-3.0-updates-x86_64", + "parent_channel_label": "suse-caasp-3.0-pool-x86_64", + "product_id": 1713, + "repository_id": 3144, + "parent_product_id": null, + "root_product_id": 1713, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Updates/SUSE-CAASP/3.0/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-CAASP-3.0-Updates for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-caasp-3.0-debuginfo-updates-x86_64", + "parent_channel_label": "suse-caasp-3.0-pool-x86_64", + "product_id": 1713, + "repository_id": 3145, + "parent_product_id": null, + "root_product_id": 1713, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Updates/SUSE-CAASP/3.0/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SUSE-CAASP-3.0-Debuginfo-Updates for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-caasp-3.0-pool-x86_64", + "parent_channel_label": null, + "product_id": 1713, + "repository_id": 3146, + "parent_product_id": null, + "root_product_id": 1713, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Products/SUSE-CAASP/3.0/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-CAASP-3.0-Pool for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-caasp-3.0-debuginfo-pool-x86_64", + "parent_channel_label": "suse-caasp-3.0-pool-x86_64", + "product_id": 1713, + "repository_id": 3147, + "parent_product_id": null, + "root_product_id": 1713, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Products/SUSE-CAASP/3.0/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SUSE-CAASP-3.0-Debuginfo-Pool for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-caasp-toolchain-3-updates-x86_64-3.0", + "parent_channel_label": "suse-caasp-3.0-pool-x86_64", + "product_id": 1752, + "repository_id": 3132, + "parent_product_id": 1713, + "root_product_id": 1713, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Updates/SUSE-CaaSP-Toolchain/3/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-CAASP-Toolchain-3-Updates for x86_64 3.0", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-caasp-toolchain-3-debuginfo-updates-x86_64-3.0", + "parent_channel_label": "suse-caasp-3.0-pool-x86_64", + "product_id": 1752, + "repository_id": 3133, + "parent_product_id": 1713, + "root_product_id": 1713, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Updates/SUSE-CaaSP-Toolchain/3/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SUSE-CAASP-Toolchain-3-Debuginfo-Updates for x86_64 3.0", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-caasp-toolchain-3-pool-x86_64-3.0", + "parent_channel_label": "suse-caasp-3.0-pool-x86_64", + "product_id": 1752, + "repository_id": 3134, + "parent_product_id": 1713, + "root_product_id": 1713, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Products/SUSE-CaaSP-Toolchain/3/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-CAASP-Toolchain-3-Pool for x86_64 3.0", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-caasp-toolchain-3-debuginfo-pool-x86_64-3.0", + "parent_channel_label": "suse-caasp-3.0-pool-x86_64", + "product_id": 1752, + "repository_id": 3135, + "parent_product_id": 1713, + "root_product_id": 1713, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Products/SUSE-CaaSP-Toolchain/3/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SUSE-CAASP-Toolchain-3-Debuginfo-Pool for x86_64 3.0", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-hpc-15-updates-aarch64", + "parent_channel_label": "sle-product-hpc-15-pool-aarch64", + "product_id": 1731, + "repository_id": 3015, + "parent_product_id": null, + "root_product_id": 1731, + "update_tag": "SLE-Product-HPC", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-HPC/15/aarch64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HPC-15-Updates for aarch64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-hpc-15-pool-aarch64", + "parent_channel_label": null, + "product_id": 1731, + "repository_id": 3016, + "parent_product_id": null, + "root_product_id": 1731, + "update_tag": "SLE-Product-HPC", + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-HPC/15/aarch64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HPC-15-Pool for aarch64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-hpc15-debuginfo-updates-aarch64", + "parent_channel_label": "sle-product-hpc-15-pool-aarch64", + "product_id": 1731, + "repository_id": 3038, + "parent_product_id": null, + "root_product_id": 1731, + "update_tag": "SLE-Product-HPC", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-HPC/15/aarch64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HPC15-Debuginfo-Updates for aarch64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-hpc15-debuginfo-pool-aarch64", + "parent_channel_label": "sle-product-hpc-15-pool-aarch64", + "product_id": 1731, + "repository_id": 3039, + "parent_product_id": null, + "root_product_id": 1731, + "update_tag": "SLE-Product-HPC", + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-HPC/15/aarch64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HPC15-Debuginfo-Pool for aarch64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-basesystem15-updates-aarch64-hpc", + "parent_channel_label": "sle-product-hpc-15-pool-aarch64", + "product_id": 1589, + "repository_id": 2574, + "parent_product_id": 1731, + "root_product_id": 1731, + "update_tag": "SLE-Module-Basesystem", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15/aarch64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Basesystem15-Updates for aarch64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-basesystem15-pool-aarch64-hpc", + "parent_channel_label": "sle-product-hpc-15-pool-aarch64", + "product_id": 1589, + "repository_id": 2575, + "parent_product_id": 1731, + "root_product_id": 1731, + "update_tag": "SLE-Module-Basesystem", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15/aarch64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Basesystem15-Pool for aarch64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-basesystem15-debuginfo-pool-aarch64-hpc", + "parent_channel_label": "sle-product-hpc-15-pool-aarch64", + "product_id": 1589, + "repository_id": 2576, + "parent_product_id": 1731, + "root_product_id": 1731, + "update_tag": "SLE-Module-Basesystem", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15/aarch64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Basesystem15-Debuginfo-Pool for aarch64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-basesystem15-debuginfo-updates-aarch64-hpc", + "parent_channel_label": "sle-product-hpc-15-pool-aarch64", + "product_id": 1589, + "repository_id": 3014, + "parent_product_id": 1731, + "root_product_id": 1731, + "update_tag": "SLE-Module-Basesystem", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15/aarch64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Basesystem15-Debuginfo-Updates for aarch64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-desktop-applications15-updates-aarch64-hpc", + "parent_channel_label": "sle-product-hpc-15-pool-aarch64", + "product_id": 1595, + "repository_id": 2603, + "parent_product_id": 1589, + "root_product_id": 1731, + "update_tag": "SLE-Module-Desktop-Applications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15/aarch64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Desktop-Applications15-Updates for aarch64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-desktop-applications15-debuginfo-updates-aarch64-hpc", + "parent_channel_label": "sle-product-hpc-15-pool-aarch64", + "product_id": 1595, + "repository_id": 2604, + "parent_product_id": 1589, + "root_product_id": 1731, + "update_tag": "SLE-Module-Desktop-Applications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15/aarch64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Desktop-Applications15-Debuginfo-Updates for aarch64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-desktop-applications15-pool-aarch64-hpc", + "parent_channel_label": "sle-product-hpc-15-pool-aarch64", + "product_id": 1595, + "repository_id": 2605, + "parent_product_id": 1589, + "root_product_id": 1731, + "update_tag": "SLE-Module-Desktop-Applications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15/aarch64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Desktop-Applications15-Pool for aarch64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-desktop-applications15-debuginfo-pool-aarch64-hpc", + "parent_channel_label": "sle-product-hpc-15-pool-aarch64", + "product_id": 1595, + "repository_id": 2606, + "parent_product_id": 1589, + "root_product_id": 1731, + "update_tag": "SLE-Module-Desktop-Applications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15/aarch64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Desktop-Applications15-Debuginfo-Pool for aarch64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-devtools15-updates-aarch64-hpc", + "parent_channel_label": "sle-product-hpc-15-pool-aarch64", + "product_id": 1598, + "repository_id": 2618, + "parent_product_id": 1595, + "root_product_id": 1731, + "update_tag": "SLE-Module-Development-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15/aarch64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-DevTools15-Updates for aarch64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-devtools15-debuginfo-updates-aarch64-hpc", + "parent_channel_label": "sle-product-hpc-15-pool-aarch64", + "product_id": 1598, + "repository_id": 2619, + "parent_product_id": 1595, + "root_product_id": 1731, + "update_tag": "SLE-Module-Development-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15/aarch64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-DevTools15-Debuginfo-Updates for aarch64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-devtools15-pool-aarch64-hpc", + "parent_channel_label": "sle-product-hpc-15-pool-aarch64", + "product_id": 1598, + "repository_id": 2620, + "parent_product_id": 1595, + "root_product_id": 1731, + "update_tag": "SLE-Module-Development-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15/aarch64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-DevTools15-Pool for aarch64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-devtools15-debuginfo-pool-aarch64-hpc", + "parent_channel_label": "sle-product-hpc-15-pool-aarch64", + "product_id": 1598, + "repository_id": 2621, + "parent_product_id": 1595, + "root_product_id": 1731, + "update_tag": "SLE-Module-Development-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15/aarch64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-DevTools15-Debuginfo-Pool for aarch64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-server-applications15-updates-aarch64-hpc", + "parent_channel_label": "sle-product-hpc-15-pool-aarch64", + "product_id": 1601, + "repository_id": 2633, + "parent_product_id": 1589, + "root_product_id": 1731, + "update_tag": "SLE-Module-Server-Applications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15/aarch64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Server-Applications15-Updates for aarch64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-server-applications15-debuginfo-updates-aarch64-hpc", + "parent_channel_label": "sle-product-hpc-15-pool-aarch64", + "product_id": 1601, + "repository_id": 2634, + "parent_product_id": 1589, + "root_product_id": 1731, + "update_tag": "SLE-Module-Server-Applications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15/aarch64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Server-Applications15-Debuginfo-Updates for aarch64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-server-applications15-pool-aarch64-hpc", + "parent_channel_label": "sle-product-hpc-15-pool-aarch64", + "product_id": 1601, + "repository_id": 2635, + "parent_product_id": 1589, + "root_product_id": 1731, + "update_tag": "SLE-Module-Server-Applications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15/aarch64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Server-Applications15-Pool for aarch64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-server-applications15-debuginfo-pool-aarch64-hpc", + "parent_channel_label": "sle-product-hpc-15-pool-aarch64", + "product_id": 1601, + "repository_id": 2636, + "parent_product_id": 1589, + "root_product_id": 1731, + "update_tag": "SLE-Module-Server-Applications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15/aarch64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Server-Applications15-Debuginfo-Pool for aarch64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-legacy15-updates-aarch64-hpc", + "parent_channel_label": "sle-product-hpc-15-pool-aarch64", + "product_id": 1604, + "repository_id": 2648, + "parent_product_id": 1601, + "root_product_id": 1731, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/15/aarch64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy15-Updates for aarch64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-legacy15-debuginfo-updates-aarch64-hpc", + "parent_channel_label": "sle-product-hpc-15-pool-aarch64", + "product_id": 1604, + "repository_id": 2649, + "parent_product_id": 1601, + "root_product_id": 1731, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/15/aarch64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy15-Debuginfo-Updates for aarch64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-legacy15-pool-aarch64-hpc", + "parent_channel_label": "sle-product-hpc-15-pool-aarch64", + "product_id": 1604, + "repository_id": 2650, + "parent_product_id": 1601, + "root_product_id": 1731, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15/aarch64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy15-Pool for aarch64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-legacy15-debuginfo-pool-aarch64-hpc", + "parent_channel_label": "sle-product-hpc-15-pool-aarch64", + "product_id": 1604, + "repository_id": 2651, + "parent_product_id": 1601, + "root_product_id": 1731, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15/aarch64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy15-Debuginfo-Pool for aarch64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-ha15-updates-aarch64-hpc", + "parent_channel_label": "sle-product-hpc-15-pool-aarch64", + "product_id": 1608, + "repository_id": 2849, + "parent_product_id": 1601, + "root_product_id": 1731, + "update_tag": "SLE-Product-HA", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-HA/15/aarch64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HA15-Updates for aarch64 HPC", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-ha15-debuginfo-updates-aarch64-hpc", + "parent_channel_label": "sle-product-hpc-15-pool-aarch64", + "product_id": 1608, + "repository_id": 2850, + "parent_product_id": 1601, + "root_product_id": 1731, + "update_tag": "SLE-Product-HA", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-HA/15/aarch64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HA15-Debuginfo-Updates for aarch64 HPC", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-ha15-pool-aarch64-hpc", + "parent_channel_label": "sle-product-hpc-15-pool-aarch64", + "product_id": 1608, + "repository_id": 2851, + "parent_product_id": 1601, + "root_product_id": 1731, + "update_tag": "SLE-Product-HA", + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-HA/15/aarch64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HA15-Pool for aarch64 HPC", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-ha15-debuginfo-pool-aarch64-hpc", + "parent_channel_label": "sle-product-hpc-15-pool-aarch64", + "product_id": 1608, + "repository_id": 2852, + "parent_product_id": 1601, + "root_product_id": 1731, + "update_tag": "SLE-Product-HA", + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-HA/15/aarch64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HA15-Debuginfo-Pool for aarch64 HPC", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud15-updates-aarch64-hpc", + "parent_channel_label": "sle-product-hpc-15-pool-aarch64", + "product_id": 1645, + "repository_id": 2879, + "parent_product_id": 1601, + "root_product_id": 1731, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/15/aarch64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud15-Updates for aarch64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud15-debuginfo-updates-aarch64-hpc", + "parent_channel_label": "sle-product-hpc-15-pool-aarch64", + "product_id": 1645, + "repository_id": 2880, + "parent_product_id": 1601, + "root_product_id": 1731, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/15/aarch64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud15-Debuginfo-Updates for aarch64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud15-pool-aarch64-hpc", + "parent_channel_label": "sle-product-hpc-15-pool-aarch64", + "product_id": 1645, + "repository_id": 2881, + "parent_product_id": 1601, + "root_product_id": 1731, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15/aarch64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud15-Pool for aarch64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud15-debuginfo-pool-aarch64-hpc", + "parent_channel_label": "sle-product-hpc-15-pool-aarch64", + "product_id": 1645, + "repository_id": 2882, + "parent_product_id": 1601, + "root_product_id": 1731, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15/aarch64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud15-Debuginfo-Pool for aarch64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting15-updates-aarch64-hpc", + "parent_channel_label": "sle-product-hpc-15-pool-aarch64", + "product_id": 1718, + "repository_id": 2957, + "parent_product_id": 1601, + "root_product_id": 1731, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/15/aarch64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Web-Scripting15-Updates for aarch64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting15-debuginfo-updates-aarch64-hpc", + "parent_channel_label": "sle-product-hpc-15-pool-aarch64", + "product_id": 1718, + "repository_id": 2958, + "parent_product_id": 1601, + "root_product_id": 1731, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/15/aarch64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Web-Scripting15-Debuginfo-Updates for aarch64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting15-pool-aarch64-hpc", + "parent_channel_label": "sle-product-hpc-15-pool-aarch64", + "product_id": 1718, + "repository_id": 2959, + "parent_product_id": 1601, + "root_product_id": 1731, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15/aarch64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Web-Scripting15-Pool for aarch64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting15-debuginfo-pool-aarch64-hpc", + "parent_channel_label": "sle-product-hpc-15-pool-aarch64", + "product_id": 1718, + "repository_id": 2960, + "parent_product_id": 1601, + "root_product_id": 1731, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15/aarch64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Web-Scripting15-Debuginfo-Pool for aarch64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-hpc15-updates-aarch64", + "parent_channel_label": "sle-product-hpc-15-pool-aarch64", + "product_id": 1733, + "repository_id": 3019, + "parent_product_id": 1718, + "root_product_id": 1731, + "update_tag": "SLE-Module-HPC", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-HPC/15/aarch64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-HPC15-Updates for aarch64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-hpc15-debuginfo-updates-aarch64", + "parent_channel_label": "sle-product-hpc-15-pool-aarch64", + "product_id": 1733, + "repository_id": 3020, + "parent_product_id": 1718, + "root_product_id": 1731, + "update_tag": "SLE-Module-HPC", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-HPC/15/aarch64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-HPC15-Debuginfo-Updates for aarch64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-hpc15-pool-aarch64", + "parent_channel_label": "sle-product-hpc-15-pool-aarch64", + "product_id": 1733, + "repository_id": 3021, + "parent_product_id": 1718, + "root_product_id": 1731, + "update_tag": "SLE-Module-HPC", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-HPC/15/aarch64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-HPC15-Pool for aarch64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-hpc15-debuginfo-pool-aarch64", + "parent_channel_label": "sle-product-hpc-15-pool-aarch64", + "product_id": 1733, + "repository_id": 3022, + "parent_product_id": 1718, + "root_product_id": 1731, + "update_tag": "SLE-Module-HPC", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-HPC/15/aarch64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-HPC15-Debuginfo-Pool for aarch64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-manager-tools15-updates-aarch64-hpc", + "parent_channel_label": "sle-product-hpc-15-pool-aarch64", + "product_id": 1709, + "repository_id": 2917, + "parent_product_id": 1589, + "root_product_id": 1731, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/15/aarch64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-Updates for aarch64 HPC", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools15-debuginfo-updates-aarch64-hpc", + "parent_channel_label": "sle-product-hpc-15-pool-aarch64", + "product_id": 1709, + "repository_id": 2918, + "parent_product_id": 1589, + "root_product_id": 1731, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/15/aarch64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-Debuginfo-Updates for aarch64 HPC", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools15-pool-aarch64-hpc", + "parent_channel_label": "sle-product-hpc-15-pool-aarch64", + "product_id": 1709, + "repository_id": 2919, + "parent_product_id": 1589, + "root_product_id": 1731, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/15/aarch64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-Pool for aarch64 HPC", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools15-debuginfo-pool-aarch64-hpc", + "parent_channel_label": "sle-product-hpc-15-pool-aarch64", + "product_id": 1709, + "repository_id": 2920, + "parent_product_id": 1589, + "root_product_id": 1731, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/15/aarch64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-Debuginfo-Pool for aarch64 HPC", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools15-beta-updates-aarch64-hpc", + "parent_channel_label": "sle-product-hpc-15-pool-aarch64", + "product_id": 1925, + "repository_id": 3891, + "parent_product_id": 1709, + "root_product_id": 1731, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/15-BETA/aarch64/update/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-BETA-Updates for aarch64 HPC", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools15-beta-debuginfo-updates-aarch64-hpc", + "parent_channel_label": "sle-product-hpc-15-pool-aarch64", + "product_id": 1925, + "repository_id": 3892, + "parent_product_id": 1709, + "root_product_id": 1731, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/15-BETA/aarch64/update_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-BETA-Debuginfo-Updates for aarch64 HPC", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools15-beta-pool-aarch64-hpc", + "parent_channel_label": "sle-product-hpc-15-pool-aarch64", + "product_id": 1925, + "repository_id": 3899, + "parent_product_id": 1709, + "root_product_id": 1731, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/15-BETA/aarch64/product/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-BETA-Pool for aarch64 HPC", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools15-beta-debuginfo-pool-aarch64-hpc", + "parent_channel_label": "sle-product-hpc-15-pool-aarch64", + "product_id": 1925, + "repository_id": 3900, + "parent_product_id": 1709, + "root_product_id": 1731, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/15-BETA/aarch64/product_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-BETA-Debuginfo-Pool for aarch64 HPC", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "suse-packagehub-15-aarch64-hpc", + "parent_channel_label": "sle-product-hpc-15-pool-aarch64", + "product_id": 1740, + "repository_id": 3050, + "parent_product_id": 1589, + "root_product_id": 1731, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-15_aarch64/standard/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-15-Standard-Pool for aarch64 HPC", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-packagehub-15-debuginfo-aarch64-hpc", + "parent_channel_label": "sle-product-hpc-15-pool-aarch64", + "product_id": 1740, + "repository_id": 3051, + "parent_product_id": 1589, + "root_product_id": 1731, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-15_aarch64/standard_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-15-Debuginfo for aarch64 HPC", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-packagehub-15-pool-aarch64-hpc", + "parent_channel_label": "sle-product-hpc-15-pool-aarch64", + "product_id": 1740, + "repository_id": 3052, + "parent_product_id": 1589, + "root_product_id": 1731, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-15_aarch64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-15-Pool for aarch64 HPC", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-packagehub-subpackages15-updates-aarch64-hpc", + "parent_channel_label": "sle-product-hpc-15-pool-aarch64", + "product_id": 1740, + "repository_id": 3167, + "parent_product_id": 1589, + "root_product_id": 1731, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15/aarch64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Packagehub-Subpackages15-Updates for aarch64 HPC", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-packagehub-subpackages15-debuginfo-updates-aarch64-hpc", + "parent_channel_label": "sle-product-hpc-15-pool-aarch64", + "product_id": 1740, + "repository_id": 3168, + "parent_product_id": 1589, + "root_product_id": 1731, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15/aarch64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Packagehub-Subpackages15-Debuginfo-Updates for aarch64 HPC", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-packagehub-subpackages15-pool-aarch64-hpc", + "parent_channel_label": "sle-product-hpc-15-pool-aarch64", + "product_id": 1740, + "repository_id": 3169, + "parent_product_id": 1589, + "root_product_id": 1731, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15/aarch64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Packagehub-Subpackages15-Pool for aarch64 HPC", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-packagehub-subpackages15-debuginfo-pool-aarch64-hpc", + "parent_channel_label": "sle-product-hpc-15-pool-aarch64", + "product_id": 1740, + "repository_id": 3170, + "parent_product_id": 1589, + "root_product_id": 1731, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15/aarch64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Packagehub-Subpackages15-Debuginfo-Pool for aarch64 HPC", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-hpc-15-ltss-updates-aarch64", + "parent_channel_label": "sle-product-hpc-15-pool-aarch64", + "product_id": 2057, + "repository_id": 4392, + "parent_product_id": 1731, + "root_product_id": 1731, + "update_tag": "SLE-Product-HPC", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-HPC/15-LTSS/aarch64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HPC-15-LTSS-Updates for aarch64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-hpc15-debuginfo-ltss-updates-aarch64", + "parent_channel_label": "sle-product-hpc-15-pool-aarch64", + "product_id": 2057, + "repository_id": 4393, + "parent_product_id": 1731, + "root_product_id": 1731, + "update_tag": "SLE-Product-HPC", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-HPC/15-LTSS/aarch64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HPC15-Debuginfo-LTSS-Updates for aarch64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-hpc-espos15-updates-aarch64", + "parent_channel_label": "sle-product-hpc-15-pool-aarch64", + "product_id": 2059, + "repository_id": 4396, + "parent_product_id": 1731, + "root_product_id": 1731, + "update_tag": "SLE-Product-HPC", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-HPC/15-ESPOS/aarch64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HPC-ESPOS15-Updates for aarch64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-hpc-espos15-debuginfo-updates-aarch64", + "parent_channel_label": "sle-product-hpc-15-pool-aarch64", + "product_id": 2059, + "repository_id": 4397, + "parent_product_id": 1731, + "root_product_id": 1731, + "update_tag": "SLE-Product-HPC", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-HPC/15-ESPOS/aarch64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HPC-ESPOS15-Debuginfo-Updates for aarch64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-hpc-espos15-pool-aarch64", + "parent_channel_label": "sle-product-hpc-15-pool-aarch64", + "product_id": 2059, + "repository_id": 4398, + "parent_product_id": 1731, + "root_product_id": 1731, + "update_tag": "SLE-Product-HPC", + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-HPC/15-ESPOS/aarch64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HPC-ESPOS15-Pool for aarch64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-hpc-espos15-debuginfo-pool-aarch64", + "parent_channel_label": "sle-product-hpc-15-pool-aarch64", + "product_id": 2059, + "repository_id": 4399, + "parent_product_id": 1731, + "root_product_id": 1731, + "update_tag": "SLE-Product-HPC", + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-HPC/15-ESPOS/aarch64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HPC-ESPOS15-Debuginfo-Pool for aarch64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-hpc-15-updates-x86_64", + "parent_channel_label": "sle-product-hpc-15-pool-x86_64", + "product_id": 1732, + "repository_id": 3017, + "parent_product_id": null, + "root_product_id": 1732, + "update_tag": "SLE-Product-HPC", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-HPC/15/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HPC-15-Updates for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-hpc-15-pool-x86_64", + "parent_channel_label": null, + "product_id": 1732, + "repository_id": 3018, + "parent_product_id": null, + "root_product_id": 1732, + "update_tag": "SLE-Product-HPC", + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-HPC/15/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HPC-15-Pool for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-hpc15-debuginfo-updates-x86_64", + "parent_channel_label": "sle-product-hpc-15-pool-x86_64", + "product_id": 1732, + "repository_id": 3041, + "parent_product_id": null, + "root_product_id": 1732, + "update_tag": "SLE-Product-HPC", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-HPC/15/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HPC15-Debuginfo-Updates for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-hpc15-debuginfo-pool-x86_64", + "parent_channel_label": "sle-product-hpc-15-pool-x86_64", + "product_id": 1732, + "repository_id": 3042, + "parent_product_id": null, + "root_product_id": 1732, + "update_tag": "SLE-Product-HPC", + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-HPC/15/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HPC15-Debuginfo-Pool for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-basesystem15-updates-x86_64-hpc", + "parent_channel_label": "sle-product-hpc-15-pool-x86_64", + "product_id": 1576, + "repository_id": 2524, + "parent_product_id": 1732, + "root_product_id": 1732, + "update_tag": "SLE-Module-Basesystem", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Basesystem15-Updates for x86_64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-basesystem15-debuginfo-updates-x86_64-hpc", + "parent_channel_label": "sle-product-hpc-15-pool-x86_64", + "product_id": 1576, + "repository_id": 2525, + "parent_product_id": 1732, + "root_product_id": 1732, + "update_tag": "SLE-Module-Basesystem", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Basesystem15-Debuginfo-Updates for x86_64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-basesystem15-pool-x86_64-hpc", + "parent_channel_label": "sle-product-hpc-15-pool-x86_64", + "product_id": 1576, + "repository_id": 2526, + "parent_product_id": 1732, + "root_product_id": 1732, + "update_tag": "SLE-Module-Basesystem", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Basesystem15-Pool for x86_64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-basesystem15-debuginfo-pool-x86_64-hpc", + "parent_channel_label": "sle-product-hpc-15-pool-x86_64", + "product_id": 1576, + "repository_id": 2527, + "parent_product_id": 1732, + "root_product_id": 1732, + "update_tag": "SLE-Module-Basesystem", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Basesystem15-Debuginfo-Pool for x86_64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-desktop-applications15-updates-x86_64-hpc", + "parent_channel_label": "sle-product-hpc-15-pool-x86_64", + "product_id": 1578, + "repository_id": 2534, + "parent_product_id": 1576, + "root_product_id": 1732, + "update_tag": "SLE-Module-Desktop-Applications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Desktop-Applications15-Updates for x86_64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-desktop-applications15-debuginfo-updates-x86_64-hpc", + "parent_channel_label": "sle-product-hpc-15-pool-x86_64", + "product_id": 1578, + "repository_id": 2535, + "parent_product_id": 1576, + "root_product_id": 1732, + "update_tag": "SLE-Module-Desktop-Applications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Desktop-Applications15-Debuginfo-Updates for x86_64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-desktop-applications15-pool-x86_64-hpc", + "parent_channel_label": "sle-product-hpc-15-pool-x86_64", + "product_id": 1578, + "repository_id": 2536, + "parent_product_id": 1576, + "root_product_id": 1732, + "update_tag": "SLE-Module-Desktop-Applications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Desktop-Applications15-Pool for x86_64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-desktop-applications15-debuginfo-pool-x86_64-hpc", + "parent_channel_label": "sle-product-hpc-15-pool-x86_64", + "product_id": 1578, + "repository_id": 2537, + "parent_product_id": 1576, + "root_product_id": 1732, + "update_tag": "SLE-Module-Desktop-Applications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Desktop-Applications15-Debuginfo-Pool for x86_64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-devtools15-updates-x86_64-hpc", + "parent_channel_label": "sle-product-hpc-15-pool-x86_64", + "product_id": 1579, + "repository_id": 2539, + "parent_product_id": 1578, + "root_product_id": 1732, + "update_tag": "SLE-Module-Development-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-DevTools15-Updates for x86_64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-devtools15-debuginfo-updates-x86_64-hpc", + "parent_channel_label": "sle-product-hpc-15-pool-x86_64", + "product_id": 1579, + "repository_id": 2540, + "parent_product_id": 1578, + "root_product_id": 1732, + "update_tag": "SLE-Module-Development-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-DevTools15-Debuginfo-Updates for x86_64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-devtools15-pool-x86_64-hpc", + "parent_channel_label": "sle-product-hpc-15-pool-x86_64", + "product_id": 1579, + "repository_id": 2541, + "parent_product_id": 1578, + "root_product_id": 1732, + "update_tag": "SLE-Module-Development-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-DevTools15-Pool for x86_64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-devtools15-debuginfo-pool-x86_64-hpc", + "parent_channel_label": "sle-product-hpc-15-pool-x86_64", + "product_id": 1579, + "repository_id": 2542, + "parent_product_id": 1578, + "root_product_id": 1732, + "update_tag": "SLE-Module-Development-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-DevTools15-Debuginfo-Pool for x86_64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-server-applications15-updates-x86_64-hpc", + "parent_channel_label": "sle-product-hpc-15-pool-x86_64", + "product_id": 1580, + "repository_id": 2544, + "parent_product_id": 1576, + "root_product_id": 1732, + "update_tag": "SLE-Module-Server-Applications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Server-Applications15-Updates for x86_64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-server-applications15-debuginfo-updates-x86_64-hpc", + "parent_channel_label": "sle-product-hpc-15-pool-x86_64", + "product_id": 1580, + "repository_id": 2545, + "parent_product_id": 1576, + "root_product_id": 1732, + "update_tag": "SLE-Module-Server-Applications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Server-Applications15-Debuginfo-Updates for x86_64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-server-applications15-pool-x86_64-hpc", + "parent_channel_label": "sle-product-hpc-15-pool-x86_64", + "product_id": 1580, + "repository_id": 2546, + "parent_product_id": 1576, + "root_product_id": 1732, + "update_tag": "SLE-Module-Server-Applications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Server-Applications15-Pool for x86_64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-server-applications15-debuginfo-pool-x86_64-hpc", + "parent_channel_label": "sle-product-hpc-15-pool-x86_64", + "product_id": 1580, + "repository_id": 2547, + "parent_product_id": 1576, + "root_product_id": 1732, + "update_tag": "SLE-Module-Server-Applications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Server-Applications15-Debuginfo-Pool for x86_64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-legacy15-updates-x86_64-hpc", + "parent_channel_label": "sle-product-hpc-15-pool-x86_64", + "product_id": 1581, + "repository_id": 2549, + "parent_product_id": 1580, + "root_product_id": 1732, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/15/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy15-Updates for x86_64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-legacy15-debuginfo-updates-x86_64-hpc", + "parent_channel_label": "sle-product-hpc-15-pool-x86_64", + "product_id": 1581, + "repository_id": 2550, + "parent_product_id": 1580, + "root_product_id": 1732, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/15/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy15-Debuginfo-Updates for x86_64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-legacy15-pool-x86_64-hpc", + "parent_channel_label": "sle-product-hpc-15-pool-x86_64", + "product_id": 1581, + "repository_id": 2551, + "parent_product_id": 1580, + "root_product_id": 1732, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy15-Pool for x86_64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-legacy15-debuginfo-pool-x86_64-hpc", + "parent_channel_label": "sle-product-hpc-15-pool-x86_64", + "product_id": 1581, + "repository_id": 2552, + "parent_product_id": 1580, + "root_product_id": 1732, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy15-Debuginfo-Pool for x86_64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-ha15-updates-x86_64-hpc", + "parent_channel_label": "sle-product-hpc-15-pool-x86_64", + "product_id": 1582, + "repository_id": 2754, + "parent_product_id": 1580, + "root_product_id": 1732, + "update_tag": "SLE-Product-HA", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-HA/15/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HA15-Updates for x86_64 HPC", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-ha15-debuginfo-updates-x86_64-hpc", + "parent_channel_label": "sle-product-hpc-15-pool-x86_64", + "product_id": 1582, + "repository_id": 2755, + "parent_product_id": 1580, + "root_product_id": 1732, + "update_tag": "SLE-Product-HA", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-HA/15/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HA15-Debuginfo-Updates for x86_64 HPC", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-ha15-pool-x86_64-hpc", + "parent_channel_label": "sle-product-hpc-15-pool-x86_64", + "product_id": 1582, + "repository_id": 2756, + "parent_product_id": 1580, + "root_product_id": 1732, + "update_tag": "SLE-Product-HA", + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-HA/15/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HA15-Pool for x86_64 HPC", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-ha15-debuginfo-pool-x86_64-hpc", + "parent_channel_label": "sle-product-hpc-15-pool-x86_64", + "product_id": 1582, + "repository_id": 2757, + "parent_product_id": 1580, + "root_product_id": 1732, + "update_tag": "SLE-Product-HA", + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-HA/15/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HA15-Debuginfo-Pool for x86_64 HPC", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud15-updates-x86_64-hpc", + "parent_channel_label": "sle-product-hpc-15-pool-x86_64", + "product_id": 1611, + "repository_id": 2673, + "parent_product_id": 1580, + "root_product_id": 1732, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/15/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud15-Updates for x86_64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud15-debuginfo-updates-x86_64-hpc", + "parent_channel_label": "sle-product-hpc-15-pool-x86_64", + "product_id": 1611, + "repository_id": 2674, + "parent_product_id": 1580, + "root_product_id": 1732, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/15/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud15-Debuginfo-Updates for x86_64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud15-pool-x86_64-hpc", + "parent_channel_label": "sle-product-hpc-15-pool-x86_64", + "product_id": 1611, + "repository_id": 2675, + "parent_product_id": 1580, + "root_product_id": 1732, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud15-Pool for x86_64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud15-debuginfo-pool-x86_64-hpc", + "parent_channel_label": "sle-product-hpc-15-pool-x86_64", + "product_id": 1611, + "repository_id": 2676, + "parent_product_id": 1580, + "root_product_id": 1732, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud15-Debuginfo-Pool for x86_64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting15-updates-x86_64-hpc", + "parent_channel_label": "sle-product-hpc-15-pool-x86_64", + "product_id": 1721, + "repository_id": 2972, + "parent_product_id": 1580, + "root_product_id": 1732, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/15/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Web-Scripting15-Updates for x86_64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting15-debuginfo-updates-x86_64-hpc", + "parent_channel_label": "sle-product-hpc-15-pool-x86_64", + "product_id": 1721, + "repository_id": 2973, + "parent_product_id": 1580, + "root_product_id": 1732, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/15/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Web-Scripting15-Debuginfo-Updates for x86_64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting15-pool-x86_64-hpc", + "parent_channel_label": "sle-product-hpc-15-pool-x86_64", + "product_id": 1721, + "repository_id": 2974, + "parent_product_id": 1580, + "root_product_id": 1732, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Web-Scripting15-Pool for x86_64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting15-debuginfo-pool-x86_64-hpc", + "parent_channel_label": "sle-product-hpc-15-pool-x86_64", + "product_id": 1721, + "repository_id": 2975, + "parent_product_id": 1580, + "root_product_id": 1732, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Web-Scripting15-Debuginfo-Pool for x86_64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-hpc15-updates-x86_64", + "parent_channel_label": "sle-product-hpc-15-pool-x86_64", + "product_id": 1734, + "repository_id": 3024, + "parent_product_id": 1721, + "root_product_id": 1732, + "update_tag": "SLE-Module-HPC", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-HPC/15/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-HPC15-Updates for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-hpc15-debuginfo-updates-x86_64", + "parent_channel_label": "sle-product-hpc-15-pool-x86_64", + "product_id": 1734, + "repository_id": 3025, + "parent_product_id": 1721, + "root_product_id": 1732, + "update_tag": "SLE-Module-HPC", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-HPC/15/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-HPC15-Debuginfo-Updates for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-hpc15-pool-x86_64", + "parent_channel_label": "sle-product-hpc-15-pool-x86_64", + "product_id": 1734, + "repository_id": 3026, + "parent_product_id": 1721, + "root_product_id": 1732, + "update_tag": "SLE-Module-HPC", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-HPC/15/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-HPC15-Pool for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-hpc15-debuginfo-pool-x86_64", + "parent_channel_label": "sle-product-hpc-15-pool-x86_64", + "product_id": 1734, + "repository_id": 3027, + "parent_product_id": 1721, + "root_product_id": 1732, + "update_tag": "SLE-Module-HPC", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-HPC/15/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-HPC15-Debuginfo-Pool for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-containers15-updates-x86_64-hpc", + "parent_channel_label": "sle-product-hpc-15-pool-x86_64", + "product_id": 1642, + "repository_id": 2864, + "parent_product_id": 1576, + "root_product_id": 1732, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/15/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers15-Updates for x86_64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-containers15-debuginfo-updates-x86_64-hpc", + "parent_channel_label": "sle-product-hpc-15-pool-x86_64", + "product_id": 1642, + "repository_id": 2865, + "parent_product_id": 1576, + "root_product_id": 1732, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/15/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers15-Debuginfo-Updates for x86_64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-containers15-pool-x86_64-hpc", + "parent_channel_label": "sle-product-hpc-15-pool-x86_64", + "product_id": 1642, + "repository_id": 2866, + "parent_product_id": 1576, + "root_product_id": 1732, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers15-Pool for x86_64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-containers15-debuginfo-pool-x86_64-hpc", + "parent_channel_label": "sle-product-hpc-15-pool-x86_64", + "product_id": 1642, + "repository_id": 2867, + "parent_product_id": 1576, + "root_product_id": 1732, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers15-Debuginfo-Pool for x86_64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-manager-tools15-updates-x86_64-hpc", + "parent_channel_label": "sle-product-hpc-15-pool-x86_64", + "product_id": 1712, + "repository_id": 2932, + "parent_product_id": 1576, + "root_product_id": 1732, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/15/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-Updates for x86_64 HPC", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools15-debuginfo-updates-x86_64-hpc", + "parent_channel_label": "sle-product-hpc-15-pool-x86_64", + "product_id": 1712, + "repository_id": 2933, + "parent_product_id": 1576, + "root_product_id": 1732, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/15/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-Debuginfo-Updates for x86_64 HPC", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools15-pool-x86_64-hpc", + "parent_channel_label": "sle-product-hpc-15-pool-x86_64", + "product_id": 1712, + "repository_id": 2934, + "parent_product_id": 1576, + "root_product_id": 1732, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/15/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-Pool for x86_64 HPC", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools15-debuginfo-pool-x86_64-hpc", + "parent_channel_label": "sle-product-hpc-15-pool-x86_64", + "product_id": 1712, + "repository_id": 2935, + "parent_product_id": 1576, + "root_product_id": 1732, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/15/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-Debuginfo-Pool for x86_64 HPC", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools15-beta-updates-x86_64-hpc", + "parent_channel_label": "sle-product-hpc-15-pool-x86_64", + "product_id": 1928, + "repository_id": 3897, + "parent_product_id": 1712, + "root_product_id": 1732, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/15-BETA/x86_64/update/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-BETA-Updates for x86_64 HPC", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools15-beta-debuginfo-updates-x86_64-hpc", + "parent_channel_label": "sle-product-hpc-15-pool-x86_64", + "product_id": 1928, + "repository_id": 3898, + "parent_product_id": 1712, + "root_product_id": 1732, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/15-BETA/x86_64/update_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-BETA-Debuginfo-Updates for x86_64 HPC", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools15-beta-pool-x86_64-hpc", + "parent_channel_label": "sle-product-hpc-15-pool-x86_64", + "product_id": 1928, + "repository_id": 3908, + "parent_product_id": 1712, + "root_product_id": 1732, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/15-BETA/x86_64/product/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-BETA-Pool for x86_64 HPC", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools15-beta-debuginfo-pool-x86_64-hpc", + "parent_channel_label": "sle-product-hpc-15-pool-x86_64", + "product_id": 1928, + "repository_id": 3909, + "parent_product_id": 1712, + "root_product_id": 1732, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/15-BETA/x86_64/product_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-BETA-Debuginfo-Pool for x86_64 HPC", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-module-live-patching15-updates-x86_64-hpc", + "parent_channel_label": "sle-product-hpc-15-pool-x86_64", + "product_id": 1736, + "repository_id": 3033, + "parent_product_id": 1576, + "root_product_id": 1732, + "update_tag": "SLE-Module-Live-Patching", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Live-Patching/15/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Live-Patching15-Updates for x86_64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-live-patching15-debuginfo-updates-x86_64-hpc", + "parent_channel_label": "sle-product-hpc-15-pool-x86_64", + "product_id": 1736, + "repository_id": 3034, + "parent_product_id": 1576, + "root_product_id": 1732, + "update_tag": "SLE-Module-Live-Patching", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Live-Patching/15/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Live-Patching15-Debuginfo-Updates for x86_64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-live-patching15-pool-x86_64-hpc", + "parent_channel_label": "sle-product-hpc-15-pool-x86_64", + "product_id": 1736, + "repository_id": 3035, + "parent_product_id": 1576, + "root_product_id": 1732, + "update_tag": "SLE-Module-Live-Patching", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Live-Patching/15/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Live-Patching15-Pool for x86_64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-live-patching15-debuginfo-pool-x86_64-hpc", + "parent_channel_label": "sle-product-hpc-15-pool-x86_64", + "product_id": 1736, + "repository_id": 3036, + "parent_product_id": 1576, + "root_product_id": 1732, + "update_tag": "SLE-Module-Live-Patching", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Live-Patching/15/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Live-Patching15-Debuginfo-Pool for x86_64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-packagehub-15-x86_64-hpc", + "parent_channel_label": "sle-product-hpc-15-pool-x86_64", + "product_id": 1743, + "repository_id": 3059, + "parent_product_id": 1576, + "root_product_id": 1732, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-15_x86_64/standard/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-15-Standard-Pool for x86_64 HPC", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-packagehub-15-debuginfo-x86_64-hpc", + "parent_channel_label": "sle-product-hpc-15-pool-x86_64", + "product_id": 1743, + "repository_id": 3060, + "parent_product_id": 1576, + "root_product_id": 1732, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-15_x86_64/standard_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-15-Debuginfo for x86_64 HPC", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-packagehub-15-pool-x86_64-hpc", + "parent_channel_label": "sle-product-hpc-15-pool-x86_64", + "product_id": 1743, + "repository_id": 3061, + "parent_product_id": 1576, + "root_product_id": 1732, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-15_x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-15-Pool for x86_64 HPC", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-packagehub-subpackages15-updates-x86_64-hpc", + "parent_channel_label": "sle-product-hpc-15-pool-x86_64", + "product_id": 1743, + "repository_id": 3182, + "parent_product_id": 1576, + "root_product_id": 1732, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Packagehub-Subpackages15-Updates for x86_64 HPC", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-packagehub-subpackages15-debuginfo-updates-x86_64-hpc", + "parent_channel_label": "sle-product-hpc-15-pool-x86_64", + "product_id": 1743, + "repository_id": 3183, + "parent_product_id": 1576, + "root_product_id": 1732, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Packagehub-Subpackages15-Debuginfo-Updates for x86_64 HPC", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-packagehub-subpackages15-pool-x86_64-hpc", + "parent_channel_label": "sle-product-hpc-15-pool-x86_64", + "product_id": 1743, + "repository_id": 3184, + "parent_product_id": 1576, + "root_product_id": 1732, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Packagehub-Subpackages15-Pool for x86_64 HPC", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-packagehub-subpackages15-debuginfo-pool-x86_64-hpc", + "parent_channel_label": "sle-product-hpc-15-pool-x86_64", + "product_id": 1743, + "repository_id": 3185, + "parent_product_id": 1576, + "root_product_id": 1732, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Packagehub-Subpackages15-Debuginfo-Pool for x86_64 HPC", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-hpc-15-ltss-updates-x86_64", + "parent_channel_label": "sle-product-hpc-15-pool-x86_64", + "product_id": 2058, + "repository_id": 4394, + "parent_product_id": 1732, + "root_product_id": 1732, + "update_tag": "SLE-Product-HPC", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-HPC/15-LTSS/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HPC-15-LTSS-Updates for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-hpc15-debuginfo-ltss-updates-x86_64", + "parent_channel_label": "sle-product-hpc-15-pool-x86_64", + "product_id": 2058, + "repository_id": 4395, + "parent_product_id": 1732, + "root_product_id": 1732, + "update_tag": "SLE-Product-HPC", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-HPC/15-LTSS/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HPC15-Debuginfo-LTSS-Updates for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-hpc-espos15-updates-x86_64", + "parent_channel_label": "sle-product-hpc-15-pool-x86_64", + "product_id": 2060, + "repository_id": 4401, + "parent_product_id": 1732, + "root_product_id": 1732, + "update_tag": "SLE-Product-HPC", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-HPC/15-ESPOS/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HPC-ESPOS15-Updates for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-hpc-espos15-debuginfo-updates-x86_64", + "parent_channel_label": "sle-product-hpc-15-pool-x86_64", + "product_id": 2060, + "repository_id": 4402, + "parent_product_id": 1732, + "root_product_id": 1732, + "update_tag": "SLE-Product-HPC", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-HPC/15-ESPOS/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HPC-ESPOS15-Debuginfo-Updates for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-hpc-espos15-pool-x86_64", + "parent_channel_label": "sle-product-hpc-15-pool-x86_64", + "product_id": 2060, + "repository_id": 4403, + "parent_product_id": 1732, + "root_product_id": 1732, + "update_tag": "SLE-Product-HPC", + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-HPC/15-ESPOS/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HPC-ESPOS15-Pool for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-hpc-espos15-debuginfo-pool-x86_64", + "parent_channel_label": "sle-product-hpc-15-pool-x86_64", + "product_id": 2060, + "repository_id": 4404, + "parent_product_id": 1732, + "root_product_id": 1732, + "update_tag": "SLE-Product-HPC", + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-HPC/15-ESPOS/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HPC-ESPOS15-Debuginfo-Pool for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-manager-tools12-updates-x86_64-hpc-sp2", + "parent_channel_label": "sle12-sp2-hpc-pool-x86_64", + "product_id": 1749, + "repository_id": 1732, + "parent_product_id": null, + "root_product_id": 1749, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/12/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Manager-Tools12-Updates for x86_64 HPC SP2", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools12-debuginfo-updates-x86_64-hpc-sp2", + "parent_channel_label": "sle12-sp2-hpc-pool-x86_64", + "product_id": 1749, + "repository_id": 1733, + "parent_product_id": null, + "root_product_id": 1749, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/12/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Manager-Tools12-Debuginfo-Updates for x86_64 HPC SP2", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools12-pool-x86_64-hpc-sp2", + "parent_channel_label": "sle12-sp2-hpc-pool-x86_64", + "product_id": 1749, + "repository_id": 1734, + "parent_product_id": null, + "root_product_id": 1749, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/12/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Manager-Tools12-Pool for x86_64 HPC SP2", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools12-debuginfo-pool-x86_64-hpc-sp2", + "parent_channel_label": "sle12-sp2-hpc-pool-x86_64", + "product_id": 1749, + "repository_id": 1735, + "parent_product_id": null, + "root_product_id": 1749, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/12/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Manager-Tools12-Debuginfo-Pool for x86_64 HPC SP2", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sles12-sp2-updates-x86_64-hpc-sp2", + "parent_channel_label": "sle12-sp2-hpc-pool-x86_64", + "product_id": 1749, + "repository_id": 2013, + "parent_product_id": null, + "root_product_id": 1749, + "update_tag": "SLE-SERVER", + "url": "https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-SP2/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLES12-SP2-Updates for x86_64 HPC", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles12-sp2-debuginfo-updates-x86_64-hpc-sp2", + "parent_channel_label": "sle12-sp2-hpc-pool-x86_64", + "product_id": 1749, + "repository_id": 2014, + "parent_product_id": null, + "root_product_id": 1749, + "update_tag": "SLE-SERVER", + "url": "https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-SP2/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLES12-SP2-Debuginfo-Updates for x86_64 HPC", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles12-sp2-pool-x86_64-hpc-sp2", + "parent_channel_label": "sle12-sp2-hpc-pool-x86_64", + "product_id": 1749, + "repository_id": 2015, + "parent_product_id": null, + "root_product_id": 1749, + "update_tag": "SLE-SERVER", + "url": "https://updates.suse.com/SUSE/Products/SLE-SERVER/12-SP2/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLES12-SP2-Pool for x86_64 HPC", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles12-sp2-debuginfo-pool-x86_64-hpc-sp2", + "parent_channel_label": "sle12-sp2-hpc-pool-x86_64", + "product_id": 1749, + "repository_id": 2016, + "parent_product_id": null, + "root_product_id": 1749, + "update_tag": "SLE-SERVER", + "url": "https://updates.suse.com/SUSE/Products/SLE-SERVER/12-SP2/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLES12-SP2-Debuginfo-Pool for x86_64 HPC", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles12-sp2-installer-updates-x86_64-hpc", + "parent_channel_label": "sle12-sp2-hpc-pool-x86_64", + "product_id": 1749, + "repository_id": 2101, + "parent_product_id": null, + "root_product_id": 1749, + "update_tag": "SLE-SERVER-INSTALLER", + "url": "https://updates.suse.com/SUSE/Updates/SLE-SERVER-INSTALLER/12-SP2/x86_64/update/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLES12-SP2-Installer-Updates for x86_64 HPC", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-12-sp2-hpc-updates-x86_64", + "parent_channel_label": "sle12-sp2-hpc-pool-x86_64", + "product_id": 1749, + "repository_id": 3087, + "parent_product_id": null, + "root_product_id": 1749, + "update_tag": "SLE-HPC", + "url": "https://updates.suse.com/SUSE/Updates/SLE-HPC/12-SP2/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-12-SP2-HPC-Updates for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-12-sp2-hpc-debuginfo-updates-x86_64", + "parent_channel_label": "sle12-sp2-hpc-pool-x86_64", + "product_id": 1749, + "repository_id": 3088, + "parent_product_id": null, + "root_product_id": 1749, + "update_tag": "SLE-HPC", + "url": "https://updates.suse.com/SUSE/Updates/SLE-HPC/12-SP2/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-12-SP2-HPC-Debuginfo-Updates for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle12-sp2-hpc-pool-x86_64", + "parent_channel_label": null, + "product_id": 1749, + "repository_id": 3089, + "parent_product_id": null, + "root_product_id": 1749, + "update_tag": "SLE-HPC", + "url": "https://updates.suse.com/SUSE/Products/SLE-HPC/12-SP2/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE12-SP2-HPC-Pool for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle12-sp2-hpc-debuginfo-pool-x86_64", + "parent_channel_label": "sle12-sp2-hpc-pool-x86_64", + "product_id": 1749, + "repository_id": 3090, + "parent_product_id": null, + "root_product_id": 1749, + "update_tag": "SLE-HPC", + "url": "https://updates.suse.com/SUSE/Products/SLE-HPC/12-SP2/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE12-SP2-HPC-Debuginfo-Pool for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-legacy12-updates-x86_64-hpc-sp2", + "parent_channel_label": "sle12-sp2-hpc-pool-x86_64", + "product_id": 1150, + "repository_id": 1676, + "parent_product_id": 1749, + "root_product_id": 1749, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/12/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy12-Updates for x86_64 HPC SP2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-legacy12-debuginfo-updates-x86_64-hpc-sp2", + "parent_channel_label": "sle12-sp2-hpc-pool-x86_64", + "product_id": 1150, + "repository_id": 1677, + "parent_product_id": 1749, + "root_product_id": 1749, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/12/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy12-Debuginfo-Updates for x86_64 HPC SP2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-legacy12-pool-x86_64-hpc-sp2", + "parent_channel_label": "sle12-sp2-hpc-pool-x86_64", + "product_id": 1150, + "repository_id": 1678, + "parent_product_id": 1749, + "root_product_id": 1749, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/12/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy12-Pool for x86_64 HPC SP2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-legacy12-debuginfo-pool-x86_64-hpc-sp2", + "parent_channel_label": "sle12-sp2-hpc-pool-x86_64", + "product_id": 1150, + "repository_id": 1679, + "parent_product_id": 1749, + "root_product_id": 1749, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/12/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy12-Debuginfo-Pool for x86_64 HPC SP2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting12-updates-x86_64-hpc-sp2", + "parent_channel_label": "sle12-sp2-hpc-pool-x86_64", + "product_id": 1153, + "repository_id": 1688, + "parent_product_id": 1749, + "root_product_id": 1749, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/12/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Web-Scripting12-Updates for x86_64 HPC SP2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting12-debuginfo-updates-x86_64-hpc-sp2", + "parent_channel_label": "sle12-sp2-hpc-pool-x86_64", + "product_id": 1153, + "repository_id": 1689, + "parent_product_id": 1749, + "root_product_id": 1749, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/12/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Web-Scripting12-Debuginfo-Updates for x86_64 HPC SP2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting12-pool-x86_64-hpc-sp2", + "parent_channel_label": "sle12-sp2-hpc-pool-x86_64", + "product_id": 1153, + "repository_id": 1690, + "parent_product_id": 1749, + "root_product_id": 1749, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/12/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Web-Scripting12-Pool for x86_64 HPC SP2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting12-debuginfo-pool-x86_64-hpc-sp2", + "parent_channel_label": "sle12-sp2-hpc-pool-x86_64", + "product_id": 1153, + "repository_id": 1691, + "parent_product_id": 1749, + "root_product_id": 1749, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/12/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Web-Scripting12-Debuginfo-Pool for x86_64 HPC SP2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-adv-systems-management12-updates-x86_64-hpc-sp2", + "parent_channel_label": "sle12-sp2-hpc-pool-x86_64", + "product_id": 1212, + "repository_id": 1704, + "parent_product_id": 1749, + "root_product_id": 1749, + "update_tag": "SLE-Module-Adv-Systems-Management", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Adv-Systems-Management/12/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Adv-Systems-Management12-Updates for x86_64 HPC SP2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-adv-systems-management12-debuginfo-updates-x86_64-hpc-sp2", + "parent_channel_label": "sle12-sp2-hpc-pool-x86_64", + "product_id": 1212, + "repository_id": 1705, + "parent_product_id": 1749, + "root_product_id": 1749, + "update_tag": "SLE-Module-Adv-Systems-Management", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Adv-Systems-Management/12/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Adv-Systems-Management12-Debuginfo-Updates for x86_64 HPC SP2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-adv-systems-management12-pool-x86_64-hpc-sp2", + "parent_channel_label": "sle12-sp2-hpc-pool-x86_64", + "product_id": 1212, + "repository_id": 1706, + "parent_product_id": 1749, + "root_product_id": 1749, + "update_tag": "SLE-Module-Adv-Systems-Management", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Adv-Systems-Management/12/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Adv-Systems-Management12-Pool for x86_64 HPC SP2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-adv-systems-management12-debuginfo-pool-x86_64-hpc-sp2", + "parent_channel_label": "sle12-sp2-hpc-pool-x86_64", + "product_id": 1212, + "repository_id": 1707, + "parent_product_id": 1749, + "root_product_id": 1749, + "update_tag": "SLE-Module-Adv-Systems-Management", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Adv-Systems-Management/12/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Adv-Systems-Management12-Debuginfo-Pool for x86_64 HPC SP2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud12-updates-x86_64-hpc-sp2", + "parent_channel_label": "sle12-sp2-hpc-pool-x86_64", + "product_id": 1220, + "repository_id": 1700, + "parent_product_id": 1749, + "root_product_id": 1749, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/12/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud12-Updates for x86_64 HPC SP2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud12-debuginfo-updates-x86_64-hpc-sp2", + "parent_channel_label": "sle12-sp2-hpc-pool-x86_64", + "product_id": 1220, + "repository_id": 1701, + "parent_product_id": 1749, + "root_product_id": 1749, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/12/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud12-Debuginfo-Updates for x86_64 HPC SP2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud12-pool-x86_64-hpc-sp2", + "parent_channel_label": "sle12-sp2-hpc-pool-x86_64", + "product_id": 1220, + "repository_id": 1702, + "parent_product_id": 1749, + "root_product_id": 1749, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/12/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud12-Pool for x86_64 HPC SP2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud12-debuginfo-pool-x86_64-hpc-sp2", + "parent_channel_label": "sle12-sp2-hpc-pool-x86_64", + "product_id": 1220, + "repository_id": 1703, + "parent_product_id": 1749, + "root_product_id": 1749, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/12/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud12-Debuginfo-Pool for x86_64 HPC SP2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-live-patching12-updates-x86_64-hpc-sp2", + "parent_channel_label": "sle12-sp2-hpc-pool-x86_64", + "product_id": 1253, + "repository_id": 1741, + "parent_product_id": 1749, + "root_product_id": 1749, + "update_tag": "SLE-Live-Patching", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Live-Patching/12/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Live-Patching12-Updates for x86_64 HPC SP2", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-live-patching12-debuginfo-updates-x86_64-hpc-sp2", + "parent_channel_label": "sle12-sp2-hpc-pool-x86_64", + "product_id": 1253, + "repository_id": 1742, + "parent_product_id": 1749, + "root_product_id": 1749, + "update_tag": "SLE-Live-Patching", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Live-Patching/12/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Live-Patching12-Debuginfo-Updates for x86_64 HPC SP2", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-live-patching12-pool-x86_64-hpc-sp2", + "parent_channel_label": "sle12-sp2-hpc-pool-x86_64", + "product_id": 1253, + "repository_id": 1743, + "parent_product_id": 1749, + "root_product_id": 1749, + "update_tag": "SLE-Live-Patching", + "url": "https://updates.suse.com/SUSE/Products/SLE-Live-Patching/12/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Live-Patching12-Pool for x86_64 HPC SP2", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-live-patching12-debuginfo-pool-x86_64-hpc-sp2", + "parent_channel_label": "sle12-sp2-hpc-pool-x86_64", + "product_id": 1253, + "repository_id": 1744, + "parent_product_id": 1749, + "root_product_id": 1749, + "update_tag": "SLE-Live-Patching", + "url": "https://updates.suse.com/SUSE/Products/SLE-Live-Patching/12/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Live-Patching12-Debuginfo-Pool for x86_64 HPC SP2", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-containers12-updates-x86_64-hpc-sp2", + "parent_channel_label": "sle12-sp2-hpc-pool-x86_64", + "product_id": 1332, + "repository_id": 1864, + "parent_product_id": 1749, + "root_product_id": 1749, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/12/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers12-Updates for x86_64 HPC SP2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-containers12-debuginfo-updates-x86_64-hpc-sp2", + "parent_channel_label": "sle12-sp2-hpc-pool-x86_64", + "product_id": 1332, + "repository_id": 1865, + "parent_product_id": 1749, + "root_product_id": 1749, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/12/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers12-Debuginfo-Updates for x86_64 HPC SP2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-containers12-pool-x86_64-hpc-sp2", + "parent_channel_label": "sle12-sp2-hpc-pool-x86_64", + "product_id": 1332, + "repository_id": 1866, + "parent_product_id": 1749, + "root_product_id": 1749, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Containers/12/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers12-Pool for x86_64 HPC SP2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-containers12-debuginfo-pool-x86_64-hpc-sp2", + "parent_channel_label": "sle12-sp2-hpc-pool-x86_64", + "product_id": 1332, + "repository_id": 1867, + "parent_product_id": 1749, + "root_product_id": 1749, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Containers/12/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers12-Debuginfo-Pool for x86_64 HPC SP2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-toolchain12-updates-x86_64-hpc-sp2", + "parent_channel_label": "sle12-sp2-hpc-pool-x86_64", + "product_id": 1341, + "repository_id": 1903, + "parent_product_id": 1749, + "root_product_id": 1749, + "update_tag": "SLE-Module-Toolchain", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Toolchain/12/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Toolchain12-Updates for x86_64 HPC SP2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-toolchain12-debuginfo-updates-x86_64-hpc-sp2", + "parent_channel_label": "sle12-sp2-hpc-pool-x86_64", + "product_id": 1341, + "repository_id": 1904, + "parent_product_id": 1749, + "root_product_id": 1749, + "update_tag": "SLE-Module-Toolchain", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Toolchain/12/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Toolchain12-Debuginfo-Updates for x86_64 HPC SP2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-toolchain12-pool-x86_64-hpc-sp2", + "parent_channel_label": "sle12-sp2-hpc-pool-x86_64", + "product_id": 1341, + "repository_id": 1905, + "parent_product_id": 1749, + "root_product_id": 1749, + "update_tag": "SLE-Module-Toolchain", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Toolchain/12/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Toolchain12-Pool for x86_64 HPC SP2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-toolchain12-debuginfo-pool-x86_64-hpc-sp2", + "parent_channel_label": "sle12-sp2-hpc-pool-x86_64", + "product_id": 1341, + "repository_id": 1906, + "parent_product_id": 1749, + "root_product_id": 1749, + "update_tag": "SLE-Module-Toolchain", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Toolchain/12/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Toolchain12-Debuginfo-Pool for x86_64 HPC SP2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-manager-server-3.0-updates-x86_64-hpc-sp2", + "parent_channel_label": "sle12-sp2-hpc-pool-x86_64", + "product_id": 1349, + "repository_id": 1949, + "parent_product_id": 1749, + "root_product_id": 1749, + "update_tag": "SUSE-Manager-Server-3.0", + "url": "https://updates.suse.com/SUSE/Updates/SUSE-Manager-Server/3.0/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-Manager-Server-3.0-Updates for x86_64 HPC SP2", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-manager-server-3.0-debuginfo-updates-x86_64-hpc-sp2", + "parent_channel_label": "sle12-sp2-hpc-pool-x86_64", + "product_id": 1349, + "repository_id": 1950, + "parent_product_id": 1749, + "root_product_id": 1749, + "update_tag": "SUSE-Manager-Server-3.0", + "url": "https://updates.suse.com/SUSE/Updates/SUSE-Manager-Server/3.0/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SUSE-Manager-Server-3.0-Debuginfo-Updates for x86_64 HPC SP2", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-manager-server-3.0-pool-x86_64-hpc-sp2", + "parent_channel_label": "sle12-sp2-hpc-pool-x86_64", + "product_id": 1349, + "repository_id": 1951, + "parent_product_id": 1749, + "root_product_id": 1749, + "update_tag": "SUSE-Manager-Server-3.0", + "url": "https://updates.suse.com/SUSE/Products/SUSE-Manager-Server/3.0/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-Manager-Server-3.0-Pool for x86_64 HPC SP2", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-manager-server-3.0-debuginfo-pool-x86_64-hpc-sp2", + "parent_channel_label": "sle12-sp2-hpc-pool-x86_64", + "product_id": 1349, + "repository_id": 1952, + "parent_product_id": 1749, + "root_product_id": 1749, + "update_tag": "SUSE-Manager-Server-3.0", + "url": "https://updates.suse.com/SUSE/Products/SUSE-Manager-Server/3.0/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SUSE-Manager-Server-3.0-Debuginfo-Pool for x86_64 HPC SP2", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-manager-proxy-3.0-updates-x86_64-hpc-sp2", + "parent_channel_label": "sle12-sp2-hpc-pool-x86_64", + "product_id": 1352, + "repository_id": 1968, + "parent_product_id": 1749, + "root_product_id": 1749, + "update_tag": "SUSE-Manager-Proxy-3.0", + "url": "https://updates.suse.com/SUSE/Updates/SUSE-Manager-Proxy/3.0/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-Manager-Proxy-3.0-Updates for x86_64 HPC SP2", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-manager-proxy-3.0-debuginfo-updates-x86_64-hpc-sp2", + "parent_channel_label": "sle12-sp2-hpc-pool-x86_64", + "product_id": 1352, + "repository_id": 1969, + "parent_product_id": 1749, + "root_product_id": 1749, + "update_tag": "SUSE-Manager-Proxy-3.0", + "url": "https://updates.suse.com/SUSE/Updates/SUSE-Manager-Proxy/3.0/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SUSE-Manager-Proxy-3.0-Debuginfo-Updates for x86_64 HPC SP2", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-manager-proxy-3.0-pool-x86_64-hpc-sp2", + "parent_channel_label": "sle12-sp2-hpc-pool-x86_64", + "product_id": 1352, + "repository_id": 1970, + "parent_product_id": 1749, + "root_product_id": 1749, + "update_tag": "SUSE-Manager-Proxy-3.0", + "url": "https://updates.suse.com/SUSE/Products/SUSE-Manager-Proxy/3.0/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-Manager-Proxy-3.0-Pool for x86_64 HPC SP2", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-manager-proxy-3.0-debuginfo-pool-x86_64-hpc-sp2", + "parent_channel_label": "sle12-sp2-hpc-pool-x86_64", + "product_id": 1352, + "repository_id": 1971, + "parent_product_id": 1749, + "root_product_id": 1749, + "update_tag": "SUSE-Manager-Proxy-3.0", + "url": "https://updates.suse.com/SUSE/Products/SUSE-Manager-Proxy/3.0/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SUSE-Manager-Proxy-3.0-Debuginfo-Pool for x86_64 HPC SP2", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-we12-sp2-updates-x86_64-hpc-sp2", + "parent_channel_label": "sle12-sp2-hpc-pool-x86_64", + "product_id": 1359, + "repository_id": 2024, + "parent_product_id": 1749, + "root_product_id": 1749, + "update_tag": "SLE-WE", + "url": "https://updates.suse.com/SUSE/Updates/SLE-WE/12-SP2/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-WE12-SP2-Updates for x86_64 HPC", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-we12-sp2-debuginfo-updates-x86_64-hpc-sp2", + "parent_channel_label": "sle12-sp2-hpc-pool-x86_64", + "product_id": 1359, + "repository_id": 2025, + "parent_product_id": 1749, + "root_product_id": 1749, + "update_tag": "SLE-WE", + "url": "https://updates.suse.com/SUSE/Updates/SLE-WE/12-SP2/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-WE12-SP2-Debuginfo-Updates for x86_64 HPC", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-we12-sp2-pool-x86_64-hpc-sp2", + "parent_channel_label": "sle12-sp2-hpc-pool-x86_64", + "product_id": 1359, + "repository_id": 2026, + "parent_product_id": 1749, + "root_product_id": 1749, + "update_tag": "SLE-WE", + "url": "https://updates.suse.com/SUSE/Products/SLE-WE/12-SP2/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-WE12-SP2-Pool for x86_64 HPC", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-we12-sp2-debuginfo-pool-x86_64-hpc-sp2", + "parent_channel_label": "sle12-sp2-hpc-pool-x86_64", + "product_id": 1359, + "repository_id": 2027, + "parent_product_id": 1749, + "root_product_id": 1749, + "update_tag": "SLE-WE", + "url": "https://updates.suse.com/SUSE/Products/SLE-WE/12-SP2/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-WE12-SP2-Debuginfo-Pool for x86_64 HPC", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-12-sp2-ga-desktop-nvidia-driver-hpc-sp2", + "parent_channel_label": "sle12-sp2-hpc-pool-x86_64", + "product_id": 1359, + "repository_id": 2149, + "parent_product_id": 1749, + "root_product_id": 1749, + "update_tag": null, + "url": "http://download.nvidia.com/suse/sle12sp2/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-12-SP2-GA-Desktop-nVidia-Driver for x86_64 HPC", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-ha12-sp2-updates-x86_64-hpc-sp2", + "parent_channel_label": "sle12-sp2-hpc-pool-x86_64", + "product_id": 1361, + "repository_id": 2034, + "parent_product_id": 1749, + "root_product_id": 1749, + "update_tag": "SLE-HA", + "url": "https://updates.suse.com/SUSE/Updates/SLE-HA/12-SP2/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-HA12-SP2-Updates for x86_64 HPC", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-ha12-sp2-debuginfo-updates-x86_64-hpc-sp2", + "parent_channel_label": "sle12-sp2-hpc-pool-x86_64", + "product_id": 1361, + "repository_id": 2035, + "parent_product_id": 1749, + "root_product_id": 1749, + "update_tag": "SLE-HA", + "url": "https://updates.suse.com/SUSE/Updates/SLE-HA/12-SP2/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-HA12-SP2-Debuginfo-Updates for x86_64 HPC", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-ha12-sp2-pool-x86_64-hpc-sp2", + "parent_channel_label": "sle12-sp2-hpc-pool-x86_64", + "product_id": 1361, + "repository_id": 2036, + "parent_product_id": 1749, + "root_product_id": 1749, + "update_tag": "SLE-HA", + "url": "https://updates.suse.com/SUSE/Products/SLE-HA/12-SP2/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-HA12-SP2-Pool for x86_64 HPC", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-ha12-sp2-debuginfo-pool-x86_64-hpc-sp2", + "parent_channel_label": "sle12-sp2-hpc-pool-x86_64", + "product_id": 1361, + "repository_id": 2037, + "parent_product_id": 1749, + "root_product_id": 1749, + "update_tag": "SLE-HA", + "url": "https://updates.suse.com/SUSE/Products/SLE-HA/12-SP2/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-HA12-SP2-Debuginfo-Pool for x86_64 HPC", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-ha-geo12-sp2-updates-x86_64-hpc-sp2", + "parent_channel_label": "sle12-sp2-hpc-pool-x86_64", + "product_id": 1363, + "repository_id": 2044, + "parent_product_id": 1361, + "root_product_id": 1749, + "update_tag": "SLE-HA-GEO", + "url": "https://updates.suse.com/SUSE/Updates/SLE-HA-GEO/12-SP2/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-HA-GEO12-SP2-Updates for x86_64 HPC", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-ha-geo12-sp2-debuginfo-updates-x86_64-hpc-sp2", + "parent_channel_label": "sle12-sp2-hpc-pool-x86_64", + "product_id": 1363, + "repository_id": 2045, + "parent_product_id": 1361, + "root_product_id": 1749, + "update_tag": "SLE-HA-GEO", + "url": "https://updates.suse.com/SUSE/Updates/SLE-HA-GEO/12-SP2/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-HA-GEO12-SP2-Debuginfo-Updates for x86_64 HPC", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-ha-geo12-sp2-pool-x86_64-hpc-sp2", + "parent_channel_label": "sle12-sp2-hpc-pool-x86_64", + "product_id": 1363, + "repository_id": 2046, + "parent_product_id": 1361, + "root_product_id": 1749, + "update_tag": "SLE-HA-GEO", + "url": "https://updates.suse.com/SUSE/Products/SLE-HA-GEO/12-SP2/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-HA-GEO12-SP2-Pool for x86_64 HPC", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-ha-geo12-sp2-debuginfo-pool-x86_64-hpc-sp2", + "parent_channel_label": "sle12-sp2-hpc-pool-x86_64", + "product_id": 1363, + "repository_id": 2047, + "parent_product_id": 1361, + "root_product_id": 1749, + "update_tag": "SLE-HA-GEO", + "url": "https://updates.suse.com/SUSE/Products/SLE-HA-GEO/12-SP2/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-HA-GEO12-SP2-Debuginfo-Pool for x86_64 HPC", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-sdk12-sp2-updates-x86_64-hpc-sp2", + "parent_channel_label": "sle12-sp2-hpc-pool-x86_64", + "product_id": 1366, + "repository_id": 2059, + "parent_product_id": 1749, + "root_product_id": 1749, + "update_tag": "SLE-SDK", + "url": "https://updates.suse.com/SUSE/Updates/SLE-SDK/12-SP2/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-SDK12-SP2-Updates for x86_64 HPC", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-sdk12-sp2-debuginfo-updates-x86_64-hpc-sp2", + "parent_channel_label": "sle12-sp2-hpc-pool-x86_64", + "product_id": 1366, + "repository_id": 2060, + "parent_product_id": 1749, + "root_product_id": 1749, + "update_tag": "SLE-SDK", + "url": "https://updates.suse.com/SUSE/Updates/SLE-SDK/12-SP2/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-SDK12-SP2-Debuginfo-Updates for x86_64 HPC", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-sdk12-sp2-pool-x86_64-hpc-sp2", + "parent_channel_label": "sle12-sp2-hpc-pool-x86_64", + "product_id": 1366, + "repository_id": 2061, + "parent_product_id": 1749, + "root_product_id": 1749, + "update_tag": "SLE-SDK", + "url": "https://updates.suse.com/SUSE/Products/SLE-SDK/12-SP2/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-SDK12-SP2-Pool for x86_64 HPC", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-sdk12-sp2-debuginfo-pool-x86_64-hpc-sp2", + "parent_channel_label": "sle12-sp2-hpc-pool-x86_64", + "product_id": 1366, + "repository_id": 2062, + "parent_product_id": 1749, + "root_product_id": 1749, + "update_tag": "SLE-SDK", + "url": "https://updates.suse.com/SUSE/Products/SLE-SDK/12-SP2/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-SDK12-SP2-Debuginfo-Pool for x86_64 HPC", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-openstack-cloud-7-updates-x86_64-hpc-sp2", + "parent_channel_label": "sle12-sp2-hpc-pool-x86_64", + "product_id": 1381, + "repository_id": 2109, + "parent_product_id": 1749, + "root_product_id": 1749, + "update_tag": "OpenStack-Cloud-7", + "url": "https://updates.suse.com/SUSE/Updates/OpenStack-Cloud/7/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-OpenStack-Cloud-7-Updates for x86_64 HPC SP2", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-openstack-cloud-7-debuginfo-updates-x86_64-hpc-sp2", + "parent_channel_label": "sle12-sp2-hpc-pool-x86_64", + "product_id": 1381, + "repository_id": 2110, + "parent_product_id": 1749, + "root_product_id": 1749, + "update_tag": "OpenStack-Cloud-7", + "url": "https://updates.suse.com/SUSE/Updates/OpenStack-Cloud/7/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SUSE-OpenStack-Cloud-7-Debuginfo-Updates for x86_64 HPC SP2", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-openstack-cloud-7-pool-x86_64-hpc-sp2", + "parent_channel_label": "sle12-sp2-hpc-pool-x86_64", + "product_id": 1381, + "repository_id": 2111, + "parent_product_id": 1749, + "root_product_id": 1749, + "update_tag": "OpenStack-Cloud-7", + "url": "https://updates.suse.com/SUSE/Products/OpenStack-Cloud/7/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-OpenStack-Cloud-7-Pool for x86_64 HPC SP2", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-openstack-cloud-7-debuginfo-pool-x86_64-hpc-sp2", + "parent_channel_label": "sle12-sp2-hpc-pool-x86_64", + "product_id": 1381, + "repository_id": 2112, + "parent_product_id": 1749, + "root_product_id": 1749, + "update_tag": "OpenStack-Cloud-7", + "url": "https://updates.suse.com/SUSE/Products/OpenStack-Cloud/7/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SUSE-OpenStack-Cloud-7-Debuginfo-Pool for x86_64 HPC SP2", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-enterprise-storage-4-updates-x86_64-hpc-sp2", + "parent_channel_label": "sle12-sp2-hpc-pool-x86_64", + "product_id": 1416, + "repository_id": 2163, + "parent_product_id": 1749, + "root_product_id": 1749, + "update_tag": "Storage-4", + "url": "https://updates.suse.com/SUSE/Updates/Storage/4/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-Enterprise-Storage-4-Updates for x86_64 HPC SP2", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-enterprise-storage-4-debuginfo-updates-x86_64-hpc-sp2", + "parent_channel_label": "sle12-sp2-hpc-pool-x86_64", + "product_id": 1416, + "repository_id": 2164, + "parent_product_id": 1749, + "root_product_id": 1749, + "update_tag": "Storage-4", + "url": "https://updates.suse.com/SUSE/Updates/Storage/4/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SUSE-Enterprise-Storage-4-Debuginfo-Updates for x86_64 HPC SP2", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-enterprise-storage-4-pool-x86_64-hpc-sp2", + "parent_channel_label": "sle12-sp2-hpc-pool-x86_64", + "product_id": 1416, + "repository_id": 2165, + "parent_product_id": 1749, + "root_product_id": 1749, + "update_tag": "Storage-4", + "url": "https://updates.suse.com/SUSE/Products/Storage/4/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-Enterprise-Storage-4-Pool for x86_64 HPC SP2", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-enterprise-storage-4-debuginfo-pool-x86_64-hpc-sp2", + "parent_channel_label": "sle12-sp2-hpc-pool-x86_64", + "product_id": 1416, + "repository_id": 2166, + "parent_product_id": 1749, + "root_product_id": 1749, + "update_tag": "Storage-4", + "url": "https://updates.suse.com/SUSE/Products/Storage/4/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SUSE-Enterprise-Storage-4-Debuginfo-Pool for x86_64 HPC SP2", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-rt12-sp2-updates-x86_64-hpc-sp2", + "parent_channel_label": "sle12-sp2-hpc-pool-x86_64", + "product_id": 1438, + "repository_id": 2285, + "parent_product_id": 1749, + "root_product_id": 1749, + "update_tag": "SLE-RT", + "url": "https://updates.suse.com/SUSE/Updates/SLE-RT/12-SP2/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-RT12-SP2-Updates for x86_64 HPC", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-rt12-sp2-debuginfo-updates-x86_64-hpc-sp2", + "parent_channel_label": "sle12-sp2-hpc-pool-x86_64", + "product_id": 1438, + "repository_id": 2286, + "parent_product_id": 1749, + "root_product_id": 1749, + "update_tag": "SLE-RT", + "url": "https://updates.suse.com/SUSE/Updates/SLE-RT/12-SP2/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-RT12-SP2-Debuginfo-Updates for x86_64 HPC", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-rt12-sp2-pool-x86_64-hpc-sp2", + "parent_channel_label": "sle12-sp2-hpc-pool-x86_64", + "product_id": 1438, + "repository_id": 2287, + "parent_product_id": 1749, + "root_product_id": 1749, + "update_tag": "SLE-RT", + "url": "https://updates.suse.com/SUSE/Products/SLE-RT/12-SP2/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-RT12-SP2-Pool for x86_64 HPC", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-rt12-sp2-debuginfo-pool-x86_64-hpc-sp2", + "parent_channel_label": "sle12-sp2-hpc-pool-x86_64", + "product_id": 1438, + "repository_id": 2288, + "parent_product_id": 1749, + "root_product_id": 1749, + "update_tag": "SLE-RT", + "url": "https://updates.suse.com/SUSE/Products/SLE-RT/12-SP2/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-RT12-SP2-Debuginfo-Pool for x86_64 HPC", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-pos12-sp2-updates-x86_64-hpc-sp2", + "parent_channel_label": "sle12-sp2-hpc-pool-x86_64", + "product_id": 1439, + "repository_id": 2289, + "parent_product_id": 1749, + "root_product_id": 1749, + "update_tag": "SLE-POS", + "url": "https://updates.suse.com/SUSE/Updates/SLE-POS/12-SP2/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-POS12-SP2-Updates for x86_64 HPC", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-pos12-sp2-debuginfo-updates-x86_64-hpc-sp2", + "parent_channel_label": "sle12-sp2-hpc-pool-x86_64", + "product_id": 1439, + "repository_id": 2290, + "parent_product_id": 1749, + "root_product_id": 1749, + "update_tag": "SLE-POS", + "url": "https://updates.suse.com/SUSE/Updates/SLE-POS/12-SP2/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-POS12-SP2-Debuginfo-Updates for x86_64 HPC", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-pos12-sp2-pool-x86_64-hpc-sp2", + "parent_channel_label": "sle12-sp2-hpc-pool-x86_64", + "product_id": 1439, + "repository_id": 2291, + "parent_product_id": 1749, + "root_product_id": 1749, + "update_tag": "SLE-POS", + "url": "https://updates.suse.com/SUSE/Products/SLE-POS/12-SP2/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-POS12-SP2-Pool for x86_64 HPC", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-pos12-sp2-debuginfo-pool-x86_64-hpc-sp2", + "parent_channel_label": "sle12-sp2-hpc-pool-x86_64", + "product_id": 1439, + "repository_id": 2292, + "parent_product_id": 1749, + "root_product_id": 1749, + "update_tag": "SLE-POS", + "url": "https://updates.suse.com/SUSE/Products/SLE-POS/12-SP2/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-POS12-SP2-Debuginfo-Pool for x86_64 HPC", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-pos12-sp2-client-updates-x86_64-hpc-sp2", + "parent_channel_label": "sle12-sp2-hpc-pool-x86_64", + "product_id": 1439, + "repository_id": 3130, + "parent_product_id": 1749, + "root_product_id": 1749, + "update_tag": "SLE-POS", + "url": "https://updates.suse.com/SUSE/Updates/SLE-POS/12-SP2-CLIENT/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-POS12-SP2-CLIENT-Updates for x86_64 HPC", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-pos12-sp2-client-debuginfo-updates-x86_64-hpc-sp2", + "parent_channel_label": "sle12-sp2-hpc-pool-x86_64", + "product_id": 1439, + "repository_id": 3131, + "parent_product_id": 1749, + "root_product_id": 1749, + "update_tag": "SLE-POS", + "url": "https://updates.suse.com/SUSE/Updates/SLE-POS/12-SP2-CLIENT/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-POS12-SP2-CLIENT-Debuginfo-Updates for x86_64 HPC", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-hpc12-updates-x86_64-hpc-sp2", + "parent_channel_label": "sle12-sp2-hpc-pool-x86_64", + "product_id": 1440, + "repository_id": 2294, + "parent_product_id": 1749, + "root_product_id": 1749, + "update_tag": "SLE-Module-HPC", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-HPC/12/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-HPC12-Updates for x86_64 HPC SP2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-hpc12-debuginfo-updates-x86_64-hpc-sp2", + "parent_channel_label": "sle12-sp2-hpc-pool-x86_64", + "product_id": 1440, + "repository_id": 2295, + "parent_product_id": 1749, + "root_product_id": 1749, + "update_tag": "SLE-Module-HPC", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-HPC/12/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-HPC12-Debuginfo-Updates for x86_64 HPC SP2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-hpc12-pool-x86_64-hpc-sp2", + "parent_channel_label": "sle12-sp2-hpc-pool-x86_64", + "product_id": 1440, + "repository_id": 2296, + "parent_product_id": 1749, + "root_product_id": 1749, + "update_tag": "SLE-Module-HPC", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-HPC/12/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-HPC12-Pool for x86_64 HPC SP2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-hpc12-debuginfo-pool-x86_64-hpc-sp2", + "parent_channel_label": "sle12-sp2-hpc-pool-x86_64", + "product_id": 1440, + "repository_id": 2297, + "parent_product_id": 1749, + "root_product_id": 1749, + "update_tag": "SLE-Module-HPC", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-HPC/12/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-HPC12-Debuginfo-Pool for x86_64 HPC SP2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-packagehub-12-sp2-x86_64-hpc-sp2", + "parent_channel_label": "sle12-sp2-hpc-pool-x86_64", + "product_id": 1479, + "repository_id": 2345, + "parent_product_id": 1749, + "root_product_id": 1749, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-12-SP2_x86_64/standard/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-12-SP2-Standard-Pool for x86_64 HPC", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-packagehub-12-sp2-debuginfo-x86_64-hpc-sp2", + "parent_channel_label": "sle12-sp2-hpc-pool-x86_64", + "product_id": 1479, + "repository_id": 2346, + "parent_product_id": 1749, + "root_product_id": 1749, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-12-SP2_x86_64/standard_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-12-SP2-Debuginfo for x86_64 HPC", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-packagehub-12-sp2-pool-x86_64-hpc-sp2", + "parent_channel_label": "sle12-sp2-hpc-pool-x86_64", + "product_id": 1479, + "repository_id": 2347, + "parent_product_id": 1749, + "root_product_id": 1749, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-12-SP2_x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-12-SP2-Pool for x86_64 HPC", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-manager-server-3.1-updates-x86_64-hpc-sp2", + "parent_channel_label": "sle12-sp2-hpc-pool-x86_64", + "product_id": 1518, + "repository_id": 2400, + "parent_product_id": 1749, + "root_product_id": 1749, + "update_tag": "SUSE-Manager-Server-3.1", + "url": "https://updates.suse.com/SUSE/Updates/SUSE-Manager-Server/3.1/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-Manager-Server-3.1-Updates for x86_64 HPC SP2", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-manager-server-3.1-debuginfo-updates-x86_64-hpc-sp2", + "parent_channel_label": "sle12-sp2-hpc-pool-x86_64", + "product_id": 1518, + "repository_id": 2401, + "parent_product_id": 1749, + "root_product_id": 1749, + "update_tag": "SUSE-Manager-Server-3.1", + "url": "https://updates.suse.com/SUSE/Updates/SUSE-Manager-Server/3.1/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SUSE-Manager-Server-3.1-Debuginfo-Updates for x86_64 HPC SP2", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-manager-server-3.1-pool-x86_64-hpc-sp2", + "parent_channel_label": "sle12-sp2-hpc-pool-x86_64", + "product_id": 1518, + "repository_id": 2402, + "parent_product_id": 1749, + "root_product_id": 1749, + "update_tag": "SUSE-Manager-Server-3.1", + "url": "https://updates.suse.com/SUSE/Products/SUSE-Manager-Server/3.1/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-Manager-Server-3.1-Pool for x86_64 HPC SP2", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-manager-server-3.1-debuginfo-pool-x86_64-hpc-sp2", + "parent_channel_label": "sle12-sp2-hpc-pool-x86_64", + "product_id": 1518, + "repository_id": 2403, + "parent_product_id": 1749, + "root_product_id": 1749, + "update_tag": "SUSE-Manager-Server-3.1", + "url": "https://updates.suse.com/SUSE/Products/SUSE-Manager-Server/3.1/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SUSE-Manager-Server-3.1-Debuginfo-Pool for x86_64 HPC SP2", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-manager-proxy-3.1-updates-x86_64-hpc-sp2", + "parent_channel_label": "sle12-sp2-hpc-pool-x86_64", + "product_id": 1520, + "repository_id": 2410, + "parent_product_id": 1749, + "root_product_id": 1749, + "update_tag": "SUSE-Manager-Proxy-3.1", + "url": "https://updates.suse.com/SUSE/Updates/SUSE-Manager-Proxy/3.1/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-Manager-Proxy-3.1-Updates for x86_64 HPC SP2", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-manager-proxy-3.1-debuginfo-updates-x86_64-hpc-sp2", + "parent_channel_label": "sle12-sp2-hpc-pool-x86_64", + "product_id": 1520, + "repository_id": 2411, + "parent_product_id": 1749, + "root_product_id": 1749, + "update_tag": "SUSE-Manager-Proxy-3.1", + "url": "https://updates.suse.com/SUSE/Updates/SUSE-Manager-Proxy/3.1/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SUSE-Manager-Proxy-3.1-Debuginfo-Updates for x86_64 HPC SP2", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-manager-proxy-3.1-pool-x86_64-hpc-sp2", + "parent_channel_label": "sle12-sp2-hpc-pool-x86_64", + "product_id": 1520, + "repository_id": 2412, + "parent_product_id": 1749, + "root_product_id": 1749, + "update_tag": "SUSE-Manager-Proxy-3.1", + "url": "https://updates.suse.com/SUSE/Products/SUSE-Manager-Proxy/3.1/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-Manager-Proxy-3.1-Pool for x86_64 HPC SP2", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-manager-proxy-3.1-debuginfo-pool-x86_64-hpc-sp2", + "parent_channel_label": "sle12-sp2-hpc-pool-x86_64", + "product_id": 1520, + "repository_id": 2413, + "parent_product_id": 1749, + "root_product_id": 1749, + "update_tag": "SUSE-Manager-Proxy-3.1", + "url": "https://updates.suse.com/SUSE/Products/SUSE-Manager-Proxy/3.1/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SUSE-Manager-Proxy-3.1-Debuginfo-Pool for x86_64 HPC SP2", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-manager-retail-3.1-updates-x86_64-hpc-sp2", + "parent_channel_label": "sle12-sp2-hpc-pool-x86_64", + "product_id": 1574, + "repository_id": 2519, + "parent_product_id": 1749, + "root_product_id": 1749, + "update_tag": "SUSE-Manager-Retail-3.1", + "url": "https://updates.suse.com/SUSE/Updates/SUSE-Manager-Retail/3.1/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-Manager-Retail-3.1-Updates for x86_64 HPC SP2", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-manager-retail-3.1-debuginfo-updates-x86_64-hpc-sp2", + "parent_channel_label": "sle12-sp2-hpc-pool-x86_64", + "product_id": 1574, + "repository_id": 2520, + "parent_product_id": 1749, + "root_product_id": 1749, + "update_tag": "SUSE-Manager-Retail-3.1", + "url": "https://updates.suse.com/SUSE/Updates/SUSE-Manager-Retail/3.1/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SUSE-Manager-Retail-3.1-Debuginfo-Updates for x86_64 HPC SP2", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-manager-retail-3.1-pool-x86_64-hpc-sp2", + "parent_channel_label": "sle12-sp2-hpc-pool-x86_64", + "product_id": 1574, + "repository_id": 2521, + "parent_product_id": 1749, + "root_product_id": 1749, + "update_tag": "SUSE-Manager-Retail-3.1", + "url": "https://updates.suse.com/SUSE/Products/SUSE-Manager-Retail/3.1/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-Manager-Retail-3.1-Pool for x86_64 HPC SP2", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-manager-retail-3.1-debuginfo-pool-x86_64-hpc-sp2", + "parent_channel_label": "sle12-sp2-hpc-pool-x86_64", + "product_id": 1574, + "repository_id": 2522, + "parent_product_id": 1749, + "root_product_id": 1749, + "update_tag": "SUSE-Manager-Retail-3.1", + "url": "https://updates.suse.com/SUSE/Products/SUSE-Manager-Retail/3.1/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SUSE-Manager-Retail-3.1-Debuginfo-Pool for x86_64 HPC SP2", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-cap-tools-12-updates-x86_64-hpc-sp2", + "parent_channel_label": "sle12-sp2-hpc-pool-x86_64", + "product_id": 1678, + "repository_id": 2912, + "parent_product_id": 1749, + "root_product_id": 1749, + "update_tag": "SLE-Module-CAP-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-CAP-Tools/12/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-CAP-Tools-12-Updates for x86_64 HPC SP2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-cap-tools-12-debuginfo-updates-x86_64-hpc-sp2", + "parent_channel_label": "sle12-sp2-hpc-pool-x86_64", + "product_id": 1678, + "repository_id": 2913, + "parent_product_id": 1749, + "root_product_id": 1749, + "update_tag": "SLE-Module-CAP-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-CAP-Tools/12/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-CAP-Tools-12-Debuginfo-Updates for x86_64 HPC SP2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-cap-tools-12-pool-x86_64-hpc-sp2", + "parent_channel_label": "sle12-sp2-hpc-pool-x86_64", + "product_id": 1678, + "repository_id": 2914, + "parent_product_id": 1749, + "root_product_id": 1749, + "update_tag": "SLE-Module-CAP-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-CAP-Tools/12/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-CAP-Tools-12-Pool for x86_64 HPC SP2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-cap-tools-12-debuginfo-pool-x86_64-hpc-sp2", + "parent_channel_label": "sle12-sp2-hpc-pool-x86_64", + "product_id": 1678, + "repository_id": 2915, + "parent_product_id": 1749, + "root_product_id": 1749, + "update_tag": "SLE-Module-CAP-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-CAP-Tools/12/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-CAP-Tools-12-Debuginfo-Pool for x86_64 HPC SP2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles12-sp2-ltss-updates-x86_64-hpc-sp2", + "parent_channel_label": "sle12-sp2-hpc-pool-x86_64", + "product_id": 1739, + "repository_id": 3048, + "parent_product_id": 1749, + "root_product_id": 1749, + "update_tag": "SLE-SERVER", + "url": "https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-SP2-LTSS/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLES12-SP2-LTSS-Updates for x86_64 HPC", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles12-sp2-ltss-debuginfo-updates-x86_64-hpc-sp2", + "parent_channel_label": "sle12-sp2-hpc-pool-x86_64", + "product_id": 1739, + "repository_id": 3049, + "parent_product_id": 1749, + "root_product_id": 1749, + "update_tag": "SLE-SERVER", + "url": "https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-SP2-LTSS/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLES12-SP2-LTSS-Debuginfo-Updates for x86_64 HPC", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-manager-tools12-beta-updates-x86_64-hpc-sp2", + "parent_channel_label": "sle12-sp2-hpc-pool-x86_64", + "product_id": 1747, + "repository_id": 3077, + "parent_product_id": 1749, + "root_product_id": 1749, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/12-BETA/x86_64/update/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools12-BETA-Updates for x86_64 HPC SP2", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools12-beta-debuginfo-updates-x86_64-hpc-sp2", + "parent_channel_label": "sle12-sp2-hpc-pool-x86_64", + "product_id": 1747, + "repository_id": 3078, + "parent_product_id": 1749, + "root_product_id": 1749, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/12-BETA/x86_64/update_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools12-BETA-Debuginfo-Updates for x86_64 HPC SP2", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools12-beta-pool-x86_64-hpc-sp2", + "parent_channel_label": "sle12-sp2-hpc-pool-x86_64", + "product_id": 1747, + "repository_id": 3079, + "parent_product_id": 1749, + "root_product_id": 1749, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/12-BETA/x86_64/product/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools12-BETA-Pool for x86_64 HPC SP2", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools12-beta-debuginfo-pool-x86_64-hpc-sp2", + "parent_channel_label": "sle12-sp2-hpc-pool-x86_64", + "product_id": 1747, + "repository_id": 3080, + "parent_product_id": 1749, + "root_product_id": 1749, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/12-BETA/x86_64/product_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools12-BETA-Debuginfo-Pool for x86_64 HPC SP2", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sles12-sp2-espos-updates-x86_64-hpc-sp2", + "parent_channel_label": "sle12-sp2-hpc-pool-x86_64", + "product_id": 1814, + "repository_id": 3463, + "parent_product_id": 1749, + "root_product_id": 1749, + "update_tag": "SLE-SERVER", + "url": "https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-SP2-ESPOS/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLES12-SP2-ESPOS-Updates for x86_64 HPC", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles12-sp2-espos-debuginfo-updates-x86_64-hpc-sp2", + "parent_channel_label": "sle12-sp2-hpc-pool-x86_64", + "product_id": 1814, + "repository_id": 3464, + "parent_product_id": 1749, + "root_product_id": 1749, + "update_tag": "SLE-SERVER", + "url": "https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-SP2-ESPOS/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLES12-SP2-ESPOS-Debuginfo-Updates for x86_64 HPC", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles12-sp2-espos-pool-x86_64-hpc-sp2", + "parent_channel_label": "sle12-sp2-hpc-pool-x86_64", + "product_id": 1814, + "repository_id": 3465, + "parent_product_id": 1749, + "root_product_id": 1749, + "update_tag": "SLE-SERVER", + "url": "https://updates.suse.com/SUSE/Products/SLE-SERVER/12-SP2-ESPOS/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLES12-SP2-ESPOS-Pool for x86_64 HPC", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles12-sp2-espos-debuginfo-pool-x86_64-hpc-sp2", + "parent_channel_label": "sle12-sp2-hpc-pool-x86_64", + "product_id": 1814, + "repository_id": 3466, + "parent_product_id": 1749, + "root_product_id": 1749, + "update_tag": "SLE-SERVER", + "url": "https://updates.suse.com/SUSE/Products/SLE-SERVER/12-SP2-ESPOS/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLES12-SP2-ESPOS-Debuginfo-Pool for x86_64 HPC", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-manager-tools12-updates-aarch64-hpc-sp3", + "parent_channel_label": "sle12-sp3-hpc-pool-aarch64", + "product_id": 1750, + "repository_id": 2179, + "parent_product_id": null, + "root_product_id": 1750, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/12/aarch64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Manager-Tools12-Updates for aarch64 HPC SP3", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools12-debuginfo-updates-aarch64-hpc-sp3", + "parent_channel_label": "sle12-sp3-hpc-pool-aarch64", + "product_id": 1750, + "repository_id": 2180, + "parent_product_id": null, + "root_product_id": 1750, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/12/aarch64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Manager-Tools12-Debuginfo-Updates for aarch64 HPC SP3", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools12-pool-aarch64-hpc-sp3", + "parent_channel_label": "sle12-sp3-hpc-pool-aarch64", + "product_id": 1750, + "repository_id": 2181, + "parent_product_id": null, + "root_product_id": 1750, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/12/aarch64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Manager-Tools12-Pool for aarch64 HPC SP3", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools12-debuginfo-pool-aarch64-hpc-sp3", + "parent_channel_label": "sle12-sp3-hpc-pool-aarch64", + "product_id": 1750, + "repository_id": 2182, + "parent_product_id": null, + "root_product_id": 1750, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/12/aarch64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Manager-Tools12-Debuginfo-Pool for aarch64 HPC SP3", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sles12-sp3-updates-aarch64-hpc-sp3", + "parent_channel_label": "sle12-sp3-hpc-pool-aarch64", + "product_id": 1750, + "repository_id": 2207, + "parent_product_id": null, + "root_product_id": 1750, + "update_tag": "SLE-SERVER", + "url": "https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-SP3/aarch64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLES12-SP3-Updates for aarch64 HPC", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles12-sp3-debuginfo-updates-aarch64-hpc-sp3", + "parent_channel_label": "sle12-sp3-hpc-pool-aarch64", + "product_id": 1750, + "repository_id": 2208, + "parent_product_id": null, + "root_product_id": 1750, + "update_tag": "SLE-SERVER", + "url": "https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-SP3/aarch64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLES12-SP3-Debuginfo-Updates for aarch64 HPC", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles12-sp3-installer-updates-aarch64-hpc", + "parent_channel_label": "sle12-sp3-hpc-pool-aarch64", + "product_id": 1750, + "repository_id": 2209, + "parent_product_id": null, + "root_product_id": 1750, + "update_tag": "SLE-SERVER-INSTALLER", + "url": "https://updates.suse.com/SUSE/Updates/SLE-SERVER-INSTALLER/12-SP3/aarch64/update/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLES12-SP3-Installer-Updates for aarch64 HPC", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles12-sp3-pool-aarch64-hpc-sp3", + "parent_channel_label": "sle12-sp3-hpc-pool-aarch64", + "product_id": 1750, + "repository_id": 2210, + "parent_product_id": null, + "root_product_id": 1750, + "update_tag": "SLE-SERVER", + "url": "https://updates.suse.com/SUSE/Products/SLE-SERVER/12-SP3/aarch64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLES12-SP3-Pool for aarch64 HPC", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles12-sp3-debuginfo-pool-aarch64-hpc-sp3", + "parent_channel_label": "sle12-sp3-hpc-pool-aarch64", + "product_id": 1750, + "repository_id": 2211, + "parent_product_id": null, + "root_product_id": 1750, + "update_tag": "SLE-SERVER", + "url": "https://updates.suse.com/SUSE/Products/SLE-SERVER/12-SP3/aarch64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLES12-SP3-Debuginfo-Pool for aarch64 HPC", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles12-sp3-hpc-updates-aarch64", + "parent_channel_label": "sle12-sp3-hpc-pool-aarch64", + "product_id": 1750, + "repository_id": 3092, + "parent_product_id": null, + "root_product_id": 1750, + "update_tag": "SLE-HPC", + "url": "https://updates.suse.com/SUSE/Updates/SLE-HPC/12-SP3/aarch64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLES12-SP3-HPC-Updates for aarch64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle12-sp3-hpc-debuginfo-updates-aarch64", + "parent_channel_label": "sle12-sp3-hpc-pool-aarch64", + "product_id": 1750, + "repository_id": 3093, + "parent_product_id": null, + "root_product_id": 1750, + "update_tag": "SLE-HPC", + "url": "https://updates.suse.com/SUSE/Updates/SLE-HPC/12-SP3/aarch64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE12-SP3-HPC-Debuginfo-Updates for aarch64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle12-sp3-hpc-pool-aarch64", + "parent_channel_label": null, + "product_id": 1750, + "repository_id": 3094, + "parent_product_id": null, + "root_product_id": 1750, + "update_tag": "SLE-HPC", + "url": "https://updates.suse.com/SUSE/Products/SLE-HPC/12-SP3/aarch64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE12-SP3-HPC-Pool for aarch64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle12-sp3-hpc-debuginfo-pool-aarch64", + "parent_channel_label": "sle12-sp3-hpc-pool-aarch64", + "product_id": 1750, + "repository_id": 3095, + "parent_product_id": null, + "root_product_id": 1750, + "update_tag": "SLE-HPC", + "url": "https://updates.suse.com/SUSE/Products/SLE-HPC/12-SP3/aarch64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE12-SP3-HPC-Debuginfo-Pool for aarch64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-toolchain12-updates-aarch64-hpc-sp3", + "parent_channel_label": "sle12-sp3-hpc-pool-aarch64", + "product_id": 1376, + "repository_id": 2086, + "parent_product_id": 1750, + "root_product_id": 1750, + "update_tag": "SLE-Module-Toolchain", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Toolchain/12/aarch64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Toolchain12-Updates for aarch64 HPC SP3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-toolchain12-debuginfo-updates-aarch64-hpc-sp3", + "parent_channel_label": "sle12-sp3-hpc-pool-aarch64", + "product_id": 1376, + "repository_id": 2087, + "parent_product_id": 1750, + "root_product_id": 1750, + "update_tag": "SLE-Module-Toolchain", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Toolchain/12/aarch64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Toolchain12-Debuginfo-Updates for aarch64 HPC SP3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-toolchain12-pool-aarch64-hpc-sp3", + "parent_channel_label": "sle12-sp3-hpc-pool-aarch64", + "product_id": 1376, + "repository_id": 2088, + "parent_product_id": 1750, + "root_product_id": 1750, + "update_tag": "SLE-Module-Toolchain", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Toolchain/12/aarch64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Toolchain12-Pool for aarch64 HPC SP3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-toolchain12-debuginfo-pool-aarch64-hpc-sp3", + "parent_channel_label": "sle12-sp3-hpc-pool-aarch64", + "product_id": 1376, + "repository_id": 2089, + "parent_product_id": 1750, + "root_product_id": 1750, + "update_tag": "SLE-Module-Toolchain", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Toolchain/12/aarch64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Toolchain12-Debuginfo-Pool for aarch64 HPC SP3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-sdk12-sp3-updates-aarch64-hpc-sp3", + "parent_channel_label": "sle12-sp3-hpc-pool-aarch64", + "product_id": 1430, + "repository_id": 2245, + "parent_product_id": 1750, + "root_product_id": 1750, + "update_tag": "SLE-SDK", + "url": "https://updates.suse.com/SUSE/Updates/SLE-SDK/12-SP3/aarch64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-SDK12-SP3-Updates for aarch64 HPC", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-sdk12-sp3-debuginfo-updates-aarch64-hpc-sp3", + "parent_channel_label": "sle12-sp3-hpc-pool-aarch64", + "product_id": 1430, + "repository_id": 2246, + "parent_product_id": 1750, + "root_product_id": 1750, + "update_tag": "SLE-SDK", + "url": "https://updates.suse.com/SUSE/Updates/SLE-SDK/12-SP3/aarch64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-SDK12-SP3-Debuginfo-Updates for aarch64 HPC", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-sdk12-sp3-pool-aarch64-hpc-sp3", + "parent_channel_label": "sle12-sp3-hpc-pool-aarch64", + "product_id": 1430, + "repository_id": 2247, + "parent_product_id": 1750, + "root_product_id": 1750, + "update_tag": "SLE-SDK", + "url": "https://updates.suse.com/SUSE/Products/SLE-SDK/12-SP3/aarch64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-SDK12-SP3-Pool for aarch64 HPC", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-sdk12-sp3-debuginfo-pool-aarch64-hpc-sp3", + "parent_channel_label": "sle12-sp3-hpc-pool-aarch64", + "product_id": 1430, + "repository_id": 2248, + "parent_product_id": 1750, + "root_product_id": 1750, + "update_tag": "SLE-SDK", + "url": "https://updates.suse.com/SUSE/Products/SLE-SDK/12-SP3/aarch64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-SDK12-SP3-Debuginfo-Pool for aarch64 HPC", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-hpc12-updates-aarch64-hpc-sp3", + "parent_channel_label": "sle12-sp3-hpc-pool-aarch64", + "product_id": 1522, + "repository_id": 2421, + "parent_product_id": 1750, + "root_product_id": 1750, + "update_tag": "SLE-Module-HPC", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-HPC/12/aarch64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-HPC12-Updates for aarch64 HPC SP3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-hpc12-debuginfo-updates-aarch64-hpc-sp3", + "parent_channel_label": "sle12-sp3-hpc-pool-aarch64", + "product_id": 1522, + "repository_id": 2422, + "parent_product_id": 1750, + "root_product_id": 1750, + "update_tag": "SLE-Module-HPC", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-HPC/12/aarch64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-HPC12-Debuginfo-Updates for aarch64 HPC SP3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-hpc12-pool-aarch64-hpc-sp3", + "parent_channel_label": "sle12-sp3-hpc-pool-aarch64", + "product_id": 1522, + "repository_id": 2423, + "parent_product_id": 1750, + "root_product_id": 1750, + "update_tag": "SLE-Module-HPC", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-HPC/12/aarch64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-HPC12-Pool for aarch64 HPC SP3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-hpc12-debuginfo-pool-aarch64-hpc-sp3", + "parent_channel_label": "sle12-sp3-hpc-pool-aarch64", + "product_id": 1522, + "repository_id": 2424, + "parent_product_id": 1750, + "root_product_id": 1750, + "update_tag": "SLE-Module-HPC", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-HPC/12/aarch64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-HPC12-Debuginfo-Pool for aarch64 HPC SP3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-enterprise-storage-5-updates-aarch64-hpc-sp3", + "parent_channel_label": "sle12-sp3-hpc-pool-aarch64", + "product_id": 1527, + "repository_id": 2437, + "parent_product_id": 1750, + "root_product_id": 1750, + "update_tag": "Storage-5", + "url": "https://updates.suse.com/SUSE/Updates/Storage/5/aarch64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-Enterprise-Storage-5-Updates for aarch64 HPC SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-enterprise-storage-5-debuginfo-updates-aarch64-hpc-sp3", + "parent_channel_label": "sle12-sp3-hpc-pool-aarch64", + "product_id": 1527, + "repository_id": 2438, + "parent_product_id": 1750, + "root_product_id": 1750, + "update_tag": "Storage-5", + "url": "https://updates.suse.com/SUSE/Updates/Storage/5/aarch64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SUSE-Enterprise-Storage-5-Debuginfo-Updates for aarch64 HPC SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-enterprise-storage-5-pool-aarch64-hpc-sp3", + "parent_channel_label": "sle12-sp3-hpc-pool-aarch64", + "product_id": 1527, + "repository_id": 2439, + "parent_product_id": 1750, + "root_product_id": 1750, + "update_tag": "Storage-5", + "url": "https://updates.suse.com/SUSE/Products/Storage/5/aarch64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-Enterprise-Storage-5-Pool for aarch64 HPC SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-enterprise-storage-5-debuginfo-pool-aarch64-hpc-sp3", + "parent_channel_label": "sle12-sp3-hpc-pool-aarch64", + "product_id": 1527, + "repository_id": 2440, + "parent_product_id": 1750, + "root_product_id": 1750, + "update_tag": "Storage-5", + "url": "https://updates.suse.com/SUSE/Products/Storage/5/aarch64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SUSE-Enterprise-Storage-5-Debuginfo-Pool for aarch64 HPC SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud12-updates-aarch64-hpc-sp3", + "parent_channel_label": "sle12-sp3-hpc-pool-aarch64", + "product_id": 1528, + "repository_id": 2157, + "parent_product_id": 1750, + "root_product_id": 1750, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/12/aarch64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud12-Updates for aarch64 HPC SP3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud12-debuginfo-updates-aarch64-hpc-sp3", + "parent_channel_label": "sle12-sp3-hpc-pool-aarch64", + "product_id": 1528, + "repository_id": 2158, + "parent_product_id": 1750, + "root_product_id": 1750, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/12/aarch64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud12-Debuginfo-Updates for aarch64 HPC SP3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud12-pool-aarch64-hpc-sp3", + "parent_channel_label": "sle12-sp3-hpc-pool-aarch64", + "product_id": 1528, + "repository_id": 2159, + "parent_product_id": 1750, + "root_product_id": 1750, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/12/aarch64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud12-Pool for aarch64 HPC SP3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud12-debuginfo-pool-aarch64-hpc-sp3", + "parent_channel_label": "sle12-sp3-hpc-pool-aarch64", + "product_id": 1528, + "repository_id": 2160, + "parent_product_id": 1750, + "root_product_id": 1750, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/12/aarch64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud12-Debuginfo-Pool for aarch64 HPC SP3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-packagehub-12-sp3-aarch64-hpc-sp3", + "parent_channel_label": "sle12-sp3-hpc-pool-aarch64", + "product_id": 1532, + "repository_id": 2454, + "parent_product_id": 1750, + "root_product_id": 1750, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-12-SP3_aarch64/standard/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-12-SP3 for aarch64 HPC", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-packagehub-12-sp3-debuginfo-aarch64-hpc-sp3", + "parent_channel_label": "sle12-sp3-hpc-pool-aarch64", + "product_id": 1532, + "repository_id": 2455, + "parent_product_id": 1750, + "root_product_id": 1750, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-12-SP3_aarch64/standard_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-12-SP3-Debuginfo for aarch64 HPC", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-packagehub-12-sp3-pool-aarch64-hpc-sp3", + "parent_channel_label": "sle12-sp3-hpc-pool-aarch64", + "product_id": 1532, + "repository_id": 2456, + "parent_product_id": 1750, + "root_product_id": 1750, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-12-SP3_aarch64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-12-SP3-Pool for aarch64 HPC", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting12-updates-aarch64-hpc-sp3", + "parent_channel_label": "sle12-sp3-hpc-pool-aarch64", + "product_id": 1539, + "repository_id": 2476, + "parent_product_id": 1750, + "root_product_id": 1750, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/12/aarch64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Web-Scripting12-Updates for aarch64 HPC SP3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting12-debuginfo-updates-aarch64-hpc-sp3", + "parent_channel_label": "sle12-sp3-hpc-pool-aarch64", + "product_id": 1539, + "repository_id": 2477, + "parent_product_id": 1750, + "root_product_id": 1750, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/12/aarch64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Web-Scripting12-Debuginfo-Updates for aarch64 HPC SP3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting12-pool-aarch64-hpc-sp3", + "parent_channel_label": "sle12-sp3-hpc-pool-aarch64", + "product_id": 1539, + "repository_id": 2478, + "parent_product_id": 1750, + "root_product_id": 1750, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/12/aarch64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Web-Scripting12-Pool for aarch64 HPC SP3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting12-debuginfo-pool-aarch64-hpc-sp3", + "parent_channel_label": "sle12-sp3-hpc-pool-aarch64", + "product_id": 1539, + "repository_id": 2479, + "parent_product_id": 1750, + "root_product_id": 1750, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/12/aarch64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Web-Scripting12-Debuginfo-Pool for aarch64 HPC SP3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-manager-tools12-beta-updates-aarch64-hpc-sp3", + "parent_channel_label": "sle12-sp3-hpc-pool-aarch64", + "product_id": 1744, + "repository_id": 3062, + "parent_product_id": 1750, + "root_product_id": 1750, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/12-BETA/aarch64/update/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools12-BETA-Updates for aarch64 HPC SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools12-beta-debuginfo-updates-aarch64-hpc-sp3", + "parent_channel_label": "sle12-sp3-hpc-pool-aarch64", + "product_id": 1744, + "repository_id": 3063, + "parent_product_id": 1750, + "root_product_id": 1750, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/12-BETA/aarch64/update_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools12-BETA-Debuginfo-Updates for aarch64 HPC SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools12-beta-pool-aarch64-hpc-sp3", + "parent_channel_label": "sle12-sp3-hpc-pool-aarch64", + "product_id": 1744, + "repository_id": 3064, + "parent_product_id": 1750, + "root_product_id": 1750, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/12-BETA/aarch64/product/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools12-BETA-Pool for aarch64 HPC SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools12-beta-debuginfo-pool-aarch64-hpc-sp3", + "parent_channel_label": "sle12-sp3-hpc-pool-aarch64", + "product_id": 1744, + "repository_id": 3065, + "parent_product_id": 1750, + "root_product_id": 1750, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/12-BETA/aarch64/product_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools12-BETA-Debuginfo-Pool for aarch64 HPC SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sles12-sp3-espos-updates-aarch64-hpc-sp3", + "parent_channel_label": "sle12-sp3-hpc-pool-aarch64", + "product_id": 1815, + "repository_id": 3468, + "parent_product_id": 1750, + "root_product_id": 1750, + "update_tag": "SLE-SERVER", + "url": "https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-SP3-ESPOS/aarch64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLES12-SP3-ESPOS-Updates for aarch64 HPC", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles12-sp3-espos-pool-aarch64-hpc-sp3", + "parent_channel_label": "sle12-sp3-hpc-pool-aarch64", + "product_id": 1815, + "repository_id": 3469, + "parent_product_id": 1750, + "root_product_id": 1750, + "update_tag": "SLE-SERVER", + "url": "https://updates.suse.com/SUSE/Products/SLE-SERVER/12-SP3-ESPOS/aarch64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLES12-SP3-ESPOS-Pool for aarch64 HPC", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles12-sp3-espos-debuginfo-pool-aarch64-hpc-sp3", + "parent_channel_label": "sle12-sp3-hpc-pool-aarch64", + "product_id": 1815, + "repository_id": 3470, + "parent_product_id": 1750, + "root_product_id": 1750, + "update_tag": "SLE-SERVER", + "url": "https://updates.suse.com/SUSE/Products/SLE-SERVER/12-SP3-ESPOS/aarch64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLES12-SP3-ESPOS-Debuginfo-Pool for aarch64 HPC", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles12-sp3-espos-debuginfo-updates-aarch64-hpc-sp3", + "parent_channel_label": "sle12-sp3-hpc-pool-aarch64", + "product_id": 1815, + "repository_id": 3527, + "parent_product_id": 1750, + "root_product_id": 1750, + "update_tag": "SLE-SERVER", + "url": "https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-SP3-ESPOS/aarch64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLES12-SP3-ESPOS-Debuginfo-Updates for aarch64 HPC", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles12-sp3-ltss-updates-aarch64-hpc", + "parent_channel_label": "sle12-sp3-hpc-pool-aarch64", + "product_id": 2002, + "repository_id": 4290, + "parent_product_id": 1750, + "root_product_id": 1750, + "update_tag": "SLE-SERVER", + "url": "https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-SP3-LTSS/aarch64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLES12-SP3-LTSS-Updates for aarch64 HPC", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles12-sp3-ltss-debuginfo-updates-aarch64-hpc", + "parent_channel_label": "sle12-sp3-hpc-pool-aarch64", + "product_id": 2002, + "repository_id": 4291, + "parent_product_id": 1750, + "root_product_id": 1750, + "update_tag": "SLE-SERVER", + "url": "https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-SP3-LTSS/aarch64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLES12-SP3-LTSS-Debuginfo-Updates for aarch64 HPC", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-manager-tools12-updates-x86_64-hpc-sp3", + "parent_channel_label": "sle12-sp3-hpc-pool-x86_64", + "product_id": 1751, + "repository_id": 1732, + "parent_product_id": null, + "root_product_id": 1751, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/12/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Manager-Tools12-Updates for x86_64 HPC SP3", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools12-debuginfo-updates-x86_64-hpc-sp3", + "parent_channel_label": "sle12-sp3-hpc-pool-x86_64", + "product_id": 1751, + "repository_id": 1733, + "parent_product_id": null, + "root_product_id": 1751, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/12/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Manager-Tools12-Debuginfo-Updates for x86_64 HPC SP3", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools12-pool-x86_64-hpc-sp3", + "parent_channel_label": "sle12-sp3-hpc-pool-x86_64", + "product_id": 1751, + "repository_id": 1734, + "parent_product_id": null, + "root_product_id": 1751, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/12/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Manager-Tools12-Pool for x86_64 HPC SP3", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools12-debuginfo-pool-x86_64-hpc-sp3", + "parent_channel_label": "sle12-sp3-hpc-pool-x86_64", + "product_id": 1751, + "repository_id": 1735, + "parent_product_id": null, + "root_product_id": 1751, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/12/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Manager-Tools12-Debuginfo-Pool for x86_64 HPC SP3", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sles12-sp3-updates-x86_64-hpc-sp3", + "parent_channel_label": "sle12-sp3-hpc-pool-x86_64", + "product_id": 1751, + "repository_id": 2189, + "parent_product_id": null, + "root_product_id": 1751, + "update_tag": "SLE-SERVER", + "url": "https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-SP3/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLES12-SP3-Updates for x86_64 HPC", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles12-sp3-debuginfo-updates-x86_64-hpc-sp3", + "parent_channel_label": "sle12-sp3-hpc-pool-x86_64", + "product_id": 1751, + "repository_id": 2190, + "parent_product_id": null, + "root_product_id": 1751, + "update_tag": "SLE-SERVER", + "url": "https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-SP3/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLES12-SP3-Debuginfo-Updates for x86_64 HPC", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles12-sp3-installer-updates-x86_64-hpc", + "parent_channel_label": "sle12-sp3-hpc-pool-x86_64", + "product_id": 1751, + "repository_id": 2191, + "parent_product_id": null, + "root_product_id": 1751, + "update_tag": "SLE-SERVER-INSTALLER", + "url": "https://updates.suse.com/SUSE/Updates/SLE-SERVER-INSTALLER/12-SP3/x86_64/update/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLES12-SP3-Installer-Updates for x86_64 HPC", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles12-sp3-pool-x86_64-hpc-sp3", + "parent_channel_label": "sle12-sp3-hpc-pool-x86_64", + "product_id": 1751, + "repository_id": 2192, + "parent_product_id": null, + "root_product_id": 1751, + "update_tag": "SLE-SERVER", + "url": "https://updates.suse.com/SUSE/Products/SLE-SERVER/12-SP3/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLES12-SP3-Pool for x86_64 HPC", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles12-sp3-debuginfo-pool-x86_64-hpc-sp3", + "parent_channel_label": "sle12-sp3-hpc-pool-x86_64", + "product_id": 1751, + "repository_id": 2193, + "parent_product_id": null, + "root_product_id": 1751, + "update_tag": "SLE-SERVER", + "url": "https://updates.suse.com/SUSE/Products/SLE-SERVER/12-SP3/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLES12-SP3-Debuginfo-Pool for x86_64 HPC", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle12-sp3-hpc-updates-x86_64", + "parent_channel_label": "sle12-sp3-hpc-pool-x86_64", + "product_id": 1751, + "repository_id": 3097, + "parent_product_id": null, + "root_product_id": 1751, + "update_tag": "SLE-HPC", + "url": "https://updates.suse.com/SUSE/Updates/SLE-HPC/12-SP3/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE12-SP3-HPC-Updates for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle12-sp3-hpc-debuginfo-updates-x86_64", + "parent_channel_label": "sle12-sp3-hpc-pool-x86_64", + "product_id": 1751, + "repository_id": 3098, + "parent_product_id": null, + "root_product_id": 1751, + "update_tag": "SLE-HPC", + "url": "https://updates.suse.com/SUSE/Updates/SLE-HPC/12-SP3/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE12-SP3-HPC-Debuginfo-Updates for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle12-sp3-hpc-pool-x86_64", + "parent_channel_label": null, + "product_id": 1751, + "repository_id": 3099, + "parent_product_id": null, + "root_product_id": 1751, + "update_tag": "SLE-HPC", + "url": "https://updates.suse.com/SUSE/Products/SLE-HPC/12-SP3/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE12-SP3-HPC-Pool for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle12-sp3-hpc-debuginfo-pool-x86_64", + "parent_channel_label": "sle12-sp3-hpc-pool-x86_64", + "product_id": 1751, + "repository_id": 3100, + "parent_product_id": null, + "root_product_id": 1751, + "update_tag": "SLE-HPC", + "url": "https://updates.suse.com/SUSE/Products/SLE-HPC/12-SP3/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE12-SP3-HPC-Debuginfo-Pool for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-legacy12-updates-x86_64-hpc-sp3", + "parent_channel_label": "sle12-sp3-hpc-pool-x86_64", + "product_id": 1150, + "repository_id": 1676, + "parent_product_id": 1751, + "root_product_id": 1751, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/12/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy12-Updates for x86_64 HPC SP3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-legacy12-debuginfo-updates-x86_64-hpc-sp3", + "parent_channel_label": "sle12-sp3-hpc-pool-x86_64", + "product_id": 1150, + "repository_id": 1677, + "parent_product_id": 1751, + "root_product_id": 1751, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/12/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy12-Debuginfo-Updates for x86_64 HPC SP3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-legacy12-pool-x86_64-hpc-sp3", + "parent_channel_label": "sle12-sp3-hpc-pool-x86_64", + "product_id": 1150, + "repository_id": 1678, + "parent_product_id": 1751, + "root_product_id": 1751, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/12/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy12-Pool for x86_64 HPC SP3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-legacy12-debuginfo-pool-x86_64-hpc-sp3", + "parent_channel_label": "sle12-sp3-hpc-pool-x86_64", + "product_id": 1150, + "repository_id": 1679, + "parent_product_id": 1751, + "root_product_id": 1751, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/12/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy12-Debuginfo-Pool for x86_64 HPC SP3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting12-updates-x86_64-hpc-sp3", + "parent_channel_label": "sle12-sp3-hpc-pool-x86_64", + "product_id": 1153, + "repository_id": 1688, + "parent_product_id": 1751, + "root_product_id": 1751, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/12/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Web-Scripting12-Updates for x86_64 HPC SP3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting12-debuginfo-updates-x86_64-hpc-sp3", + "parent_channel_label": "sle12-sp3-hpc-pool-x86_64", + "product_id": 1153, + "repository_id": 1689, + "parent_product_id": 1751, + "root_product_id": 1751, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/12/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Web-Scripting12-Debuginfo-Updates for x86_64 HPC SP3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting12-pool-x86_64-hpc-sp3", + "parent_channel_label": "sle12-sp3-hpc-pool-x86_64", + "product_id": 1153, + "repository_id": 1690, + "parent_product_id": 1751, + "root_product_id": 1751, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/12/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Web-Scripting12-Pool for x86_64 HPC SP3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting12-debuginfo-pool-x86_64-hpc-sp3", + "parent_channel_label": "sle12-sp3-hpc-pool-x86_64", + "product_id": 1153, + "repository_id": 1691, + "parent_product_id": 1751, + "root_product_id": 1751, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/12/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Web-Scripting12-Debuginfo-Pool for x86_64 HPC SP3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-adv-systems-management12-updates-x86_64-hpc-sp3", + "parent_channel_label": "sle12-sp3-hpc-pool-x86_64", + "product_id": 1212, + "repository_id": 1704, + "parent_product_id": 1751, + "root_product_id": 1751, + "update_tag": "SLE-Module-Adv-Systems-Management", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Adv-Systems-Management/12/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Adv-Systems-Management12-Updates for x86_64 HPC SP3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-adv-systems-management12-debuginfo-updates-x86_64-hpc-sp3", + "parent_channel_label": "sle12-sp3-hpc-pool-x86_64", + "product_id": 1212, + "repository_id": 1705, + "parent_product_id": 1751, + "root_product_id": 1751, + "update_tag": "SLE-Module-Adv-Systems-Management", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Adv-Systems-Management/12/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Adv-Systems-Management12-Debuginfo-Updates for x86_64 HPC SP3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-adv-systems-management12-pool-x86_64-hpc-sp3", + "parent_channel_label": "sle12-sp3-hpc-pool-x86_64", + "product_id": 1212, + "repository_id": 1706, + "parent_product_id": 1751, + "root_product_id": 1751, + "update_tag": "SLE-Module-Adv-Systems-Management", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Adv-Systems-Management/12/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Adv-Systems-Management12-Pool for x86_64 HPC SP3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-adv-systems-management12-debuginfo-pool-x86_64-hpc-sp3", + "parent_channel_label": "sle12-sp3-hpc-pool-x86_64", + "product_id": 1212, + "repository_id": 1707, + "parent_product_id": 1751, + "root_product_id": 1751, + "update_tag": "SLE-Module-Adv-Systems-Management", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Adv-Systems-Management/12/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Adv-Systems-Management12-Debuginfo-Pool for x86_64 HPC SP3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud12-updates-x86_64-hpc-sp3", + "parent_channel_label": "sle12-sp3-hpc-pool-x86_64", + "product_id": 1220, + "repository_id": 1700, + "parent_product_id": 1751, + "root_product_id": 1751, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/12/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud12-Updates for x86_64 HPC SP3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud12-debuginfo-updates-x86_64-hpc-sp3", + "parent_channel_label": "sle12-sp3-hpc-pool-x86_64", + "product_id": 1220, + "repository_id": 1701, + "parent_product_id": 1751, + "root_product_id": 1751, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/12/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud12-Debuginfo-Updates for x86_64 HPC SP3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud12-pool-x86_64-hpc-sp3", + "parent_channel_label": "sle12-sp3-hpc-pool-x86_64", + "product_id": 1220, + "repository_id": 1702, + "parent_product_id": 1751, + "root_product_id": 1751, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/12/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud12-Pool for x86_64 HPC SP3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud12-debuginfo-pool-x86_64-hpc-sp3", + "parent_channel_label": "sle12-sp3-hpc-pool-x86_64", + "product_id": 1220, + "repository_id": 1703, + "parent_product_id": 1751, + "root_product_id": 1751, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/12/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud12-Debuginfo-Pool for x86_64 HPC SP3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-containers12-updates-x86_64-hpc-sp3", + "parent_channel_label": "sle12-sp3-hpc-pool-x86_64", + "product_id": 1332, + "repository_id": 1864, + "parent_product_id": 1751, + "root_product_id": 1751, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/12/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers12-Updates for x86_64 HPC SP3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-containers12-debuginfo-updates-x86_64-hpc-sp3", + "parent_channel_label": "sle12-sp3-hpc-pool-x86_64", + "product_id": 1332, + "repository_id": 1865, + "parent_product_id": 1751, + "root_product_id": 1751, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/12/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers12-Debuginfo-Updates for x86_64 HPC SP3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-containers12-pool-x86_64-hpc-sp3", + "parent_channel_label": "sle12-sp3-hpc-pool-x86_64", + "product_id": 1332, + "repository_id": 1866, + "parent_product_id": 1751, + "root_product_id": 1751, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Containers/12/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers12-Pool for x86_64 HPC SP3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-containers12-debuginfo-pool-x86_64-hpc-sp3", + "parent_channel_label": "sle12-sp3-hpc-pool-x86_64", + "product_id": 1332, + "repository_id": 1867, + "parent_product_id": 1751, + "root_product_id": 1751, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Containers/12/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers12-Debuginfo-Pool for x86_64 HPC SP3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-toolchain12-updates-x86_64-hpc-sp3", + "parent_channel_label": "sle12-sp3-hpc-pool-x86_64", + "product_id": 1341, + "repository_id": 1903, + "parent_product_id": 1751, + "root_product_id": 1751, + "update_tag": "SLE-Module-Toolchain", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Toolchain/12/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Toolchain12-Updates for x86_64 HPC SP3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-toolchain12-debuginfo-updates-x86_64-hpc-sp3", + "parent_channel_label": "sle12-sp3-hpc-pool-x86_64", + "product_id": 1341, + "repository_id": 1904, + "parent_product_id": 1751, + "root_product_id": 1751, + "update_tag": "SLE-Module-Toolchain", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Toolchain/12/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Toolchain12-Debuginfo-Updates for x86_64 HPC SP3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-toolchain12-pool-x86_64-hpc-sp3", + "parent_channel_label": "sle12-sp3-hpc-pool-x86_64", + "product_id": 1341, + "repository_id": 1905, + "parent_product_id": 1751, + "root_product_id": 1751, + "update_tag": "SLE-Module-Toolchain", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Toolchain/12/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Toolchain12-Pool for x86_64 HPC SP3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-toolchain12-debuginfo-pool-x86_64-hpc-sp3", + "parent_channel_label": "sle12-sp3-hpc-pool-x86_64", + "product_id": 1341, + "repository_id": 1906, + "parent_product_id": 1751, + "root_product_id": 1751, + "update_tag": "SLE-Module-Toolchain", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Toolchain/12/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Toolchain12-Debuginfo-Pool for x86_64 HPC SP3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-manager-server-3.0-updates-x86_64-hpc-sp3", + "parent_channel_label": "sle12-sp3-hpc-pool-x86_64", + "product_id": 1349, + "repository_id": 1949, + "parent_product_id": 1751, + "root_product_id": 1751, + "update_tag": "SUSE-Manager-Server-3.0", + "url": "https://updates.suse.com/SUSE/Updates/SUSE-Manager-Server/3.0/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-Manager-Server-3.0-Updates for x86_64 HPC SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-manager-server-3.0-debuginfo-updates-x86_64-hpc-sp3", + "parent_channel_label": "sle12-sp3-hpc-pool-x86_64", + "product_id": 1349, + "repository_id": 1950, + "parent_product_id": 1751, + "root_product_id": 1751, + "update_tag": "SUSE-Manager-Server-3.0", + "url": "https://updates.suse.com/SUSE/Updates/SUSE-Manager-Server/3.0/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SUSE-Manager-Server-3.0-Debuginfo-Updates for x86_64 HPC SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-manager-server-3.0-pool-x86_64-hpc-sp3", + "parent_channel_label": "sle12-sp3-hpc-pool-x86_64", + "product_id": 1349, + "repository_id": 1951, + "parent_product_id": 1751, + "root_product_id": 1751, + "update_tag": "SUSE-Manager-Server-3.0", + "url": "https://updates.suse.com/SUSE/Products/SUSE-Manager-Server/3.0/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-Manager-Server-3.0-Pool for x86_64 HPC SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-manager-server-3.0-debuginfo-pool-x86_64-hpc-sp3", + "parent_channel_label": "sle12-sp3-hpc-pool-x86_64", + "product_id": 1349, + "repository_id": 1952, + "parent_product_id": 1751, + "root_product_id": 1751, + "update_tag": "SUSE-Manager-Server-3.0", + "url": "https://updates.suse.com/SUSE/Products/SUSE-Manager-Server/3.0/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SUSE-Manager-Server-3.0-Debuginfo-Pool for x86_64 HPC SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-manager-proxy-3.0-updates-x86_64-hpc-sp3", + "parent_channel_label": "sle12-sp3-hpc-pool-x86_64", + "product_id": 1352, + "repository_id": 1968, + "parent_product_id": 1751, + "root_product_id": 1751, + "update_tag": "SUSE-Manager-Proxy-3.0", + "url": "https://updates.suse.com/SUSE/Updates/SUSE-Manager-Proxy/3.0/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-Manager-Proxy-3.0-Updates for x86_64 HPC SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-manager-proxy-3.0-debuginfo-updates-x86_64-hpc-sp3", + "parent_channel_label": "sle12-sp3-hpc-pool-x86_64", + "product_id": 1352, + "repository_id": 1969, + "parent_product_id": 1751, + "root_product_id": 1751, + "update_tag": "SUSE-Manager-Proxy-3.0", + "url": "https://updates.suse.com/SUSE/Updates/SUSE-Manager-Proxy/3.0/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SUSE-Manager-Proxy-3.0-Debuginfo-Updates for x86_64 HPC SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-manager-proxy-3.0-pool-x86_64-hpc-sp3", + "parent_channel_label": "sle12-sp3-hpc-pool-x86_64", + "product_id": 1352, + "repository_id": 1970, + "parent_product_id": 1751, + "root_product_id": 1751, + "update_tag": "SUSE-Manager-Proxy-3.0", + "url": "https://updates.suse.com/SUSE/Products/SUSE-Manager-Proxy/3.0/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-Manager-Proxy-3.0-Pool for x86_64 HPC SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-manager-proxy-3.0-debuginfo-pool-x86_64-hpc-sp3", + "parent_channel_label": "sle12-sp3-hpc-pool-x86_64", + "product_id": 1352, + "repository_id": 1971, + "parent_product_id": 1751, + "root_product_id": 1751, + "update_tag": "SUSE-Manager-Proxy-3.0", + "url": "https://updates.suse.com/SUSE/Products/SUSE-Manager-Proxy/3.0/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SUSE-Manager-Proxy-3.0-Debuginfo-Pool for x86_64 HPC SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-sdk12-sp3-updates-x86_64-hpc-sp3", + "parent_channel_label": "sle12-sp3-hpc-pool-x86_64", + "product_id": 1427, + "repository_id": 2230, + "parent_product_id": 1751, + "root_product_id": 1751, + "update_tag": "SLE-SDK", + "url": "https://updates.suse.com/SUSE/Updates/SLE-SDK/12-SP3/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-SDK12-SP3-Updates for x86_64 HPC", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-sdk12-sp3-debuginfo-updates-x86_64-hpc-sp3", + "parent_channel_label": "sle12-sp3-hpc-pool-x86_64", + "product_id": 1427, + "repository_id": 2231, + "parent_product_id": 1751, + "root_product_id": 1751, + "update_tag": "SLE-SDK", + "url": "https://updates.suse.com/SUSE/Updates/SLE-SDK/12-SP3/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-SDK12-SP3-Debuginfo-Updates for x86_64 HPC", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-sdk12-sp3-pool-x86_64-hpc-sp3", + "parent_channel_label": "sle12-sp3-hpc-pool-x86_64", + "product_id": 1427, + "repository_id": 2232, + "parent_product_id": 1751, + "root_product_id": 1751, + "update_tag": "SLE-SDK", + "url": "https://updates.suse.com/SUSE/Products/SLE-SDK/12-SP3/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-SDK12-SP3-Pool for x86_64 HPC", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-sdk12-sp3-debuginfo-pool-x86_64-hpc-sp3", + "parent_channel_label": "sle12-sp3-hpc-pool-x86_64", + "product_id": 1427, + "repository_id": 2233, + "parent_product_id": 1751, + "root_product_id": 1751, + "update_tag": "SLE-SDK", + "url": "https://updates.suse.com/SUSE/Products/SLE-SDK/12-SP3/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-SDK12-SP3-Debuginfo-Pool for x86_64 HPC", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-12-sp3-ga-desktop-nvidia-driver-hpc-sp3", + "parent_channel_label": "sle12-sp3-hpc-pool-x86_64", + "product_id": 1431, + "repository_id": 2217, + "parent_product_id": 1751, + "root_product_id": 1751, + "update_tag": null, + "url": "http://download.nvidia.com/suse/sle12sp3/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-12-SP3-GA-Desktop-nVidia-Driver for x86_64 HPC", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-we12-sp3-updates-x86_64-hpc-sp3", + "parent_channel_label": "sle12-sp3-hpc-pool-x86_64", + "product_id": 1431, + "repository_id": 2250, + "parent_product_id": 1751, + "root_product_id": 1751, + "update_tag": "SLE-WE", + "url": "https://updates.suse.com/SUSE/Updates/SLE-WE/12-SP3/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-WE12-SP3-Updates for x86_64 HPC", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-we12-sp3-debuginfo-updates-x86_64-hpc-sp3", + "parent_channel_label": "sle12-sp3-hpc-pool-x86_64", + "product_id": 1431, + "repository_id": 2251, + "parent_product_id": 1751, + "root_product_id": 1751, + "update_tag": "SLE-WE", + "url": "https://updates.suse.com/SUSE/Updates/SLE-WE/12-SP3/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-WE12-SP3-Debuginfo-Updates for x86_64 HPC", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-we12-sp3-pool-x86_64-hpc-sp3", + "parent_channel_label": "sle12-sp3-hpc-pool-x86_64", + "product_id": 1431, + "repository_id": 2252, + "parent_product_id": 1751, + "root_product_id": 1751, + "update_tag": "SLE-WE", + "url": "https://updates.suse.com/SUSE/Products/SLE-WE/12-SP3/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-WE12-SP3-Pool for x86_64 HPC", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-we12-sp3-debuginfo-pool-x86_64-hpc-sp3", + "parent_channel_label": "sle12-sp3-hpc-pool-x86_64", + "product_id": 1431, + "repository_id": 2253, + "parent_product_id": 1751, + "root_product_id": 1751, + "update_tag": "SLE-WE", + "url": "https://updates.suse.com/SUSE/Products/SLE-WE/12-SP3/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-WE12-SP3-Debuginfo-Pool for x86_64 HPC", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-ha12-sp3-updates-x86_64-hpc-sp3", + "parent_channel_label": "sle12-sp3-hpc-pool-x86_64", + "product_id": 1432, + "repository_id": 2221, + "parent_product_id": 1751, + "root_product_id": 1751, + "update_tag": "SLE-HA", + "url": "https://updates.suse.com/SUSE/Updates/SLE-HA/12-SP3/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-HA12-SP3-Updates for x86_64 HPC", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-ha12-sp3-debuginfo-updates-x86_64-hpc-sp3", + "parent_channel_label": "sle12-sp3-hpc-pool-x86_64", + "product_id": 1432, + "repository_id": 2223, + "parent_product_id": 1751, + "root_product_id": 1751, + "update_tag": "SLE-HA", + "url": "https://updates.suse.com/SUSE/Updates/SLE-HA/12-SP3/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-HA12-SP3-Debuginfo-Updates for x86_64 HPC", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-ha12-sp3-pool-x86_64-hpc-sp3", + "parent_channel_label": "sle12-sp3-hpc-pool-x86_64", + "product_id": 1432, + "repository_id": 2225, + "parent_product_id": 1751, + "root_product_id": 1751, + "update_tag": "SLE-HA", + "url": "https://updates.suse.com/SUSE/Products/SLE-HA/12-SP3/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-HA12-SP3-Pool for x86_64 HPC", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-ha12-sp3-debuginfo-pool-x86_64-hpc-sp3", + "parent_channel_label": "sle12-sp3-hpc-pool-x86_64", + "product_id": 1432, + "repository_id": 2227, + "parent_product_id": 1751, + "root_product_id": 1751, + "update_tag": "SLE-HA", + "url": "https://updates.suse.com/SUSE/Products/SLE-HA/12-SP3/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-HA12-SP3-Debuginfo-Pool for x86_64 HPC", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-ha-geo12-sp3-updates-x86_64-hpc-sp3", + "parent_channel_label": "sle12-sp3-hpc-pool-x86_64", + "product_id": 1435, + "repository_id": 2265, + "parent_product_id": 1432, + "root_product_id": 1751, + "update_tag": "SLE-HA-GEO", + "url": "https://updates.suse.com/SUSE/Updates/SLE-HA-GEO/12-SP3/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-HA-GEO12-SP3-Updates for x86_64 HPC", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-ha-geo12-sp3-debuginfo-updates-x86_64-hpc-sp3", + "parent_channel_label": "sle12-sp3-hpc-pool-x86_64", + "product_id": 1435, + "repository_id": 2266, + "parent_product_id": 1432, + "root_product_id": 1751, + "update_tag": "SLE-HA-GEO", + "url": "https://updates.suse.com/SUSE/Updates/SLE-HA-GEO/12-SP3/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-HA-GEO12-SP3-Debuginfo-Updates for x86_64 HPC", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-ha-geo12-sp3-pool-x86_64-hpc-sp3", + "parent_channel_label": "sle12-sp3-hpc-pool-x86_64", + "product_id": 1435, + "repository_id": 2267, + "parent_product_id": 1432, + "root_product_id": 1751, + "update_tag": "SLE-HA-GEO", + "url": "https://updates.suse.com/SUSE/Products/SLE-HA-GEO/12-SP3/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-HA-GEO12-SP3-Pool for x86_64 HPC", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-ha-geo12-sp3-debuginfo-pool-x86_64-hpc-sp3", + "parent_channel_label": "sle12-sp3-hpc-pool-x86_64", + "product_id": 1435, + "repository_id": 2268, + "parent_product_id": 1432, + "root_product_id": 1751, + "update_tag": "SLE-HA-GEO", + "url": "https://updates.suse.com/SUSE/Products/SLE-HA-GEO/12-SP3/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-HA-GEO12-SP3-Debuginfo-Pool for x86_64 HPC", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-pos12-sp2-updates-x86_64-hpc-sp3", + "parent_channel_label": "sle12-sp3-hpc-pool-x86_64", + "product_id": 1439, + "repository_id": 2289, + "parent_product_id": 1751, + "root_product_id": 1751, + "update_tag": "SLE-POS", + "url": "https://updates.suse.com/SUSE/Updates/SLE-POS/12-SP2/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-POS12-SP2-Updates for x86_64 HPC SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-pos12-sp2-debuginfo-updates-x86_64-hpc-sp3", + "parent_channel_label": "sle12-sp3-hpc-pool-x86_64", + "product_id": 1439, + "repository_id": 2290, + "parent_product_id": 1751, + "root_product_id": 1751, + "update_tag": "SLE-POS", + "url": "https://updates.suse.com/SUSE/Updates/SLE-POS/12-SP2/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-POS12-SP2-Debuginfo-Updates for x86_64 HPC SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-pos12-sp2-pool-x86_64-hpc-sp3", + "parent_channel_label": "sle12-sp3-hpc-pool-x86_64", + "product_id": 1439, + "repository_id": 2291, + "parent_product_id": 1751, + "root_product_id": 1751, + "update_tag": "SLE-POS", + "url": "https://updates.suse.com/SUSE/Products/SLE-POS/12-SP2/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-POS12-SP2-Pool for x86_64 HPC SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-pos12-sp2-debuginfo-pool-x86_64-hpc-sp3", + "parent_channel_label": "sle12-sp3-hpc-pool-x86_64", + "product_id": 1439, + "repository_id": 2292, + "parent_product_id": 1751, + "root_product_id": 1751, + "update_tag": "SLE-POS", + "url": "https://updates.suse.com/SUSE/Products/SLE-POS/12-SP2/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-POS12-SP2-Debuginfo-Pool for x86_64 HPC SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-pos12-sp2-client-updates-x86_64-hpc-sp3", + "parent_channel_label": "sle12-sp3-hpc-pool-x86_64", + "product_id": 1439, + "repository_id": 3130, + "parent_product_id": 1751, + "root_product_id": 1751, + "update_tag": "SLE-POS", + "url": "https://updates.suse.com/SUSE/Updates/SLE-POS/12-SP2-CLIENT/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-POS12-SP2-CLIENT-Updates for x86_64 HPC SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-pos12-sp2-client-debuginfo-updates-x86_64-hpc-sp3", + "parent_channel_label": "sle12-sp3-hpc-pool-x86_64", + "product_id": 1439, + "repository_id": 3131, + "parent_product_id": 1751, + "root_product_id": 1751, + "update_tag": "SLE-POS", + "url": "https://updates.suse.com/SUSE/Updates/SLE-POS/12-SP2-CLIENT/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-POS12-SP2-CLIENT-Debuginfo-Updates for x86_64 HPC SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-hpc12-updates-x86_64-hpc-sp3", + "parent_channel_label": "sle12-sp3-hpc-pool-x86_64", + "product_id": 1440, + "repository_id": 2294, + "parent_product_id": 1751, + "root_product_id": 1751, + "update_tag": "SLE-Module-HPC", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-HPC/12/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-HPC12-Updates for x86_64 HPC SP3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-hpc12-debuginfo-updates-x86_64-hpc-sp3", + "parent_channel_label": "sle12-sp3-hpc-pool-x86_64", + "product_id": 1440, + "repository_id": 2295, + "parent_product_id": 1751, + "root_product_id": 1751, + "update_tag": "SLE-Module-HPC", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-HPC/12/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-HPC12-Debuginfo-Updates for x86_64 HPC SP3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-hpc12-pool-x86_64-hpc-sp3", + "parent_channel_label": "sle12-sp3-hpc-pool-x86_64", + "product_id": 1440, + "repository_id": 2296, + "parent_product_id": 1751, + "root_product_id": 1751, + "update_tag": "SLE-Module-HPC", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-HPC/12/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-HPC12-Pool for x86_64 HPC SP3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-hpc12-debuginfo-pool-x86_64-hpc-sp3", + "parent_channel_label": "sle12-sp3-hpc-pool-x86_64", + "product_id": 1440, + "repository_id": 2297, + "parent_product_id": 1751, + "root_product_id": 1751, + "update_tag": "SLE-Module-HPC", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-HPC/12/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-HPC12-Debuginfo-Pool for x86_64 HPC SP3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-manager-server-3.1-updates-x86_64-hpc-sp3", + "parent_channel_label": "sle12-sp3-hpc-pool-x86_64", + "product_id": 1518, + "repository_id": 2400, + "parent_product_id": 1751, + "root_product_id": 1751, + "update_tag": "SUSE-Manager-Server-3.1", + "url": "https://updates.suse.com/SUSE/Updates/SUSE-Manager-Server/3.1/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-Manager-Server-3.1-Updates for x86_64 HPC SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-manager-server-3.1-debuginfo-updates-x86_64-hpc-sp3", + "parent_channel_label": "sle12-sp3-hpc-pool-x86_64", + "product_id": 1518, + "repository_id": 2401, + "parent_product_id": 1751, + "root_product_id": 1751, + "update_tag": "SUSE-Manager-Server-3.1", + "url": "https://updates.suse.com/SUSE/Updates/SUSE-Manager-Server/3.1/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SUSE-Manager-Server-3.1-Debuginfo-Updates for x86_64 HPC SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-manager-server-3.1-pool-x86_64-hpc-sp3", + "parent_channel_label": "sle12-sp3-hpc-pool-x86_64", + "product_id": 1518, + "repository_id": 2402, + "parent_product_id": 1751, + "root_product_id": 1751, + "update_tag": "SUSE-Manager-Server-3.1", + "url": "https://updates.suse.com/SUSE/Products/SUSE-Manager-Server/3.1/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-Manager-Server-3.1-Pool for x86_64 HPC SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-manager-server-3.1-debuginfo-pool-x86_64-hpc-sp3", + "parent_channel_label": "sle12-sp3-hpc-pool-x86_64", + "product_id": 1518, + "repository_id": 2403, + "parent_product_id": 1751, + "root_product_id": 1751, + "update_tag": "SUSE-Manager-Server-3.1", + "url": "https://updates.suse.com/SUSE/Products/SUSE-Manager-Server/3.1/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SUSE-Manager-Server-3.1-Debuginfo-Pool for x86_64 HPC SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-manager-proxy-3.1-updates-x86_64-hpc-sp3", + "parent_channel_label": "sle12-sp3-hpc-pool-x86_64", + "product_id": 1520, + "repository_id": 2410, + "parent_product_id": 1751, + "root_product_id": 1751, + "update_tag": "SUSE-Manager-Proxy-3.1", + "url": "https://updates.suse.com/SUSE/Updates/SUSE-Manager-Proxy/3.1/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-Manager-Proxy-3.1-Updates for x86_64 HPC SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-manager-proxy-3.1-debuginfo-updates-x86_64-hpc-sp3", + "parent_channel_label": "sle12-sp3-hpc-pool-x86_64", + "product_id": 1520, + "repository_id": 2411, + "parent_product_id": 1751, + "root_product_id": 1751, + "update_tag": "SUSE-Manager-Proxy-3.1", + "url": "https://updates.suse.com/SUSE/Updates/SUSE-Manager-Proxy/3.1/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SUSE-Manager-Proxy-3.1-Debuginfo-Updates for x86_64 HPC SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-manager-proxy-3.1-pool-x86_64-hpc-sp3", + "parent_channel_label": "sle12-sp3-hpc-pool-x86_64", + "product_id": 1520, + "repository_id": 2412, + "parent_product_id": 1751, + "root_product_id": 1751, + "update_tag": "SUSE-Manager-Proxy-3.1", + "url": "https://updates.suse.com/SUSE/Products/SUSE-Manager-Proxy/3.1/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-Manager-Proxy-3.1-Pool for x86_64 HPC SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-manager-proxy-3.1-debuginfo-pool-x86_64-hpc-sp3", + "parent_channel_label": "sle12-sp3-hpc-pool-x86_64", + "product_id": 1520, + "repository_id": 2413, + "parent_product_id": 1751, + "root_product_id": 1751, + "update_tag": "SUSE-Manager-Proxy-3.1", + "url": "https://updates.suse.com/SUSE/Products/SUSE-Manager-Proxy/3.1/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SUSE-Manager-Proxy-3.1-Debuginfo-Pool for x86_64 HPC SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-enterprise-storage-5-updates-x86_64-hpc-sp3", + "parent_channel_label": "sle12-sp3-hpc-pool-x86_64", + "product_id": 1526, + "repository_id": 2432, + "parent_product_id": 1751, + "root_product_id": 1751, + "update_tag": "Storage-5", + "url": "https://updates.suse.com/SUSE/Updates/Storage/5/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-Enterprise-Storage-5-Updates for x86_64 HPC SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-enterprise-storage-5-debuginfo-updates-x86_64-hpc-sp3", + "parent_channel_label": "sle12-sp3-hpc-pool-x86_64", + "product_id": 1526, + "repository_id": 2433, + "parent_product_id": 1751, + "root_product_id": 1751, + "update_tag": "Storage-5", + "url": "https://updates.suse.com/SUSE/Updates/Storage/5/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SUSE-Enterprise-Storage-5-Debuginfo-Updates for x86_64 HPC SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-enterprise-storage-5-pool-x86_64-hpc-sp3", + "parent_channel_label": "sle12-sp3-hpc-pool-x86_64", + "product_id": 1526, + "repository_id": 2434, + "parent_product_id": 1751, + "root_product_id": 1751, + "update_tag": "Storage-5", + "url": "https://updates.suse.com/SUSE/Products/Storage/5/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-Enterprise-Storage-5-Pool for x86_64 HPC SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-enterprise-storage-5-debuginfo-pool-x86_64-hpc-sp3", + "parent_channel_label": "sle12-sp3-hpc-pool-x86_64", + "product_id": 1526, + "repository_id": 2435, + "parent_product_id": 1751, + "root_product_id": 1751, + "update_tag": "Storage-5", + "url": "https://updates.suse.com/SUSE/Products/Storage/5/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SUSE-Enterprise-Storage-5-Debuginfo-Pool for x86_64 HPC SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-packagehub-12-sp3-x86_64-hpc-sp3", + "parent_channel_label": "sle12-sp3-hpc-pool-x86_64", + "product_id": 1529, + "repository_id": 2445, + "parent_product_id": 1751, + "root_product_id": 1751, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-12-SP3_x86_64/standard/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-12-SP3 for x86_64 HPC", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-packagehub-12-sp3-debuginfo-x86_64-hpc-sp3", + "parent_channel_label": "sle12-sp3-hpc-pool-x86_64", + "product_id": 1529, + "repository_id": 2446, + "parent_product_id": 1751, + "root_product_id": 1751, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-12-SP3_x86_64/standard_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-12-SP3-Debuginfo for x86_64 HPC", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-packagehub-12-sp3-pool-x86_64-hpc-sp3", + "parent_channel_label": "sle12-sp3-hpc-pool-x86_64", + "product_id": 1529, + "repository_id": 2447, + "parent_product_id": 1751, + "root_product_id": 1751, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-12-SP3_x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-12-SP3-Pool for x86_64 HPC", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-live-patching12-sp3-updates-x86_64-hpc-sp3", + "parent_channel_label": "sle12-sp3-hpc-pool-x86_64", + "product_id": 1536, + "repository_id": 2463, + "parent_product_id": 1751, + "root_product_id": 1751, + "update_tag": "SLE-Live-Patching", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Live-Patching/12-SP3/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Live-Patching12-SP3-Updates for x86_64 HPC", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-live-patching12-sp3-debuginfo-updates-x86_64-hpc-sp3", + "parent_channel_label": "sle12-sp3-hpc-pool-x86_64", + "product_id": 1536, + "repository_id": 2464, + "parent_product_id": 1751, + "root_product_id": 1751, + "update_tag": "SLE-Live-Patching", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Live-Patching/12-SP3/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Live-Patching12-SP3-Debuginfo-Updates for x86_64 HPC", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-live-patching12-sp3-pool-x86_64-hpc-sp3", + "parent_channel_label": "sle12-sp3-hpc-pool-x86_64", + "product_id": 1536, + "repository_id": 2465, + "parent_product_id": 1751, + "root_product_id": 1751, + "update_tag": "SLE-Live-Patching", + "url": "https://updates.suse.com/SUSE/Products/SLE-Live-Patching/12-SP3/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Live-Patching12-SP3-Pool for x86_64 HPC", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-live-patching12-sp3-debuginfo-pool-x86_64-hpc-sp3", + "parent_channel_label": "sle12-sp3-hpc-pool-x86_64", + "product_id": 1536, + "repository_id": 2466, + "parent_product_id": 1751, + "root_product_id": 1751, + "update_tag": "SLE-Live-Patching", + "url": "https://updates.suse.com/SUSE/Products/SLE-Live-Patching/12-SP3/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Live-Patching12-SP3-Debuginfo-Pool for x86_64 HPC", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-manager-retail-3.1-updates-x86_64-hpc-sp3", + "parent_channel_label": "sle12-sp3-hpc-pool-x86_64", + "product_id": 1574, + "repository_id": 2519, + "parent_product_id": 1751, + "root_product_id": 1751, + "update_tag": "SUSE-Manager-Retail-3.1", + "url": "https://updates.suse.com/SUSE/Updates/SUSE-Manager-Retail/3.1/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-Manager-Retail-3.1-Updates for x86_64 HPC SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-manager-retail-3.1-debuginfo-updates-x86_64-hpc-sp3", + "parent_channel_label": "sle12-sp3-hpc-pool-x86_64", + "product_id": 1574, + "repository_id": 2520, + "parent_product_id": 1751, + "root_product_id": 1751, + "update_tag": "SUSE-Manager-Retail-3.1", + "url": "https://updates.suse.com/SUSE/Updates/SUSE-Manager-Retail/3.1/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SUSE-Manager-Retail-3.1-Debuginfo-Updates for x86_64 HPC SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-manager-retail-3.1-pool-x86_64-hpc-sp3", + "parent_channel_label": "sle12-sp3-hpc-pool-x86_64", + "product_id": 1574, + "repository_id": 2521, + "parent_product_id": 1751, + "root_product_id": 1751, + "update_tag": "SUSE-Manager-Retail-3.1", + "url": "https://updates.suse.com/SUSE/Products/SUSE-Manager-Retail/3.1/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-Manager-Retail-3.1-Pool for x86_64 HPC SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-manager-retail-3.1-debuginfo-pool-x86_64-hpc-sp3", + "parent_channel_label": "sle12-sp3-hpc-pool-x86_64", + "product_id": 1574, + "repository_id": 2522, + "parent_product_id": 1751, + "root_product_id": 1751, + "update_tag": "SUSE-Manager-Retail-3.1", + "url": "https://updates.suse.com/SUSE/Products/SUSE-Manager-Retail/3.1/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SUSE-Manager-Retail-3.1-Debuginfo-Pool for x86_64 HPC SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-openstack-cloud-8-updates-x86_64-hpc-sp3", + "parent_channel_label": "sle12-sp3-hpc-pool-x86_64", + "product_id": 1617, + "repository_id": 2691, + "parent_product_id": 1751, + "root_product_id": 1751, + "update_tag": "OpenStack-Cloud-8", + "url": "https://updates.suse.com/SUSE/Updates/OpenStack-Cloud/8/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-OpenStack-Cloud-8-Updates for x86_64 HPC SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-openstack-cloud-8-debuginfo-updates-x86_64-hpc-sp3", + "parent_channel_label": "sle12-sp3-hpc-pool-x86_64", + "product_id": 1617, + "repository_id": 2692, + "parent_product_id": 1751, + "root_product_id": 1751, + "update_tag": "OpenStack-Cloud-8", + "url": "https://updates.suse.com/SUSE/Updates/OpenStack-Cloud/8/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SUSE-OpenStack-Cloud-8-Debuginfo-Updates for x86_64 HPC SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-openstack-cloud-8-pool-x86_64-hpc-sp3", + "parent_channel_label": "sle12-sp3-hpc-pool-x86_64", + "product_id": 1617, + "repository_id": 2693, + "parent_product_id": 1751, + "root_product_id": 1751, + "update_tag": "OpenStack-Cloud-8", + "url": "https://updates.suse.com/SUSE/Products/OpenStack-Cloud/8/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-OpenStack-Cloud-8-Pool for x86_64 HPC SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-openstack-cloud-8-debuginfo-pool-x86_64-hpc-sp3", + "parent_channel_label": "sle12-sp3-hpc-pool-x86_64", + "product_id": 1617, + "repository_id": 2694, + "parent_product_id": 1751, + "root_product_id": 1751, + "update_tag": "OpenStack-Cloud-8", + "url": "https://updates.suse.com/SUSE/Products/OpenStack-Cloud/8/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SUSE-OpenStack-Cloud-8-Debuginfo-Pool for x86_64 HPC SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-rt12-sp3-updates-x86_64-hpc-sp3", + "parent_channel_label": "sle12-sp3-hpc-pool-x86_64", + "product_id": 1619, + "repository_id": 2701, + "parent_product_id": 1751, + "root_product_id": 1751, + "update_tag": "SLE-RT", + "url": "https://updates.suse.com/SUSE/Updates/SLE-RT/12-SP3/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-RT12-SP3-Updates for x86_64 HPC", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-rt12-sp3-debuginfo-updates-x86_64-hpc-sp3", + "parent_channel_label": "sle12-sp3-hpc-pool-x86_64", + "product_id": 1619, + "repository_id": 2702, + "parent_product_id": 1751, + "root_product_id": 1751, + "update_tag": "SLE-RT", + "url": "https://updates.suse.com/SUSE/Updates/SLE-RT/12-SP3/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-RT12-SP3-Debuginfo-Updates for x86_64 HPC", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-rt12-sp3-pool-x86_64-hpc-sp3", + "parent_channel_label": "sle12-sp3-hpc-pool-x86_64", + "product_id": 1619, + "repository_id": 2703, + "parent_product_id": 1751, + "root_product_id": 1751, + "update_tag": "SLE-RT", + "url": "https://updates.suse.com/SUSE/Products/SLE-RT/12-SP3/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-RT12-SP3-Pool for x86_64 HPC", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-rt12-sp3-debuginfo-pool-x86_64-hpc-sp3", + "parent_channel_label": "sle12-sp3-hpc-pool-x86_64", + "product_id": 1619, + "repository_id": 2704, + "parent_product_id": 1751, + "root_product_id": 1751, + "update_tag": "SLE-RT", + "url": "https://updates.suse.com/SUSE/Products/SLE-RT/12-SP3/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-RT12-SP3-Debuginfo-Pool for x86_64 HPC", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-cap-tools-12-updates-x86_64-hpc-sp3", + "parent_channel_label": "sle12-sp3-hpc-pool-x86_64", + "product_id": 1678, + "repository_id": 2912, + "parent_product_id": 1751, + "root_product_id": 1751, + "update_tag": "SLE-Module-CAP-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-CAP-Tools/12/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-CAP-Tools-12-Updates for x86_64 HPC SP3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-cap-tools-12-debuginfo-updates-x86_64-hpc-sp3", + "parent_channel_label": "sle12-sp3-hpc-pool-x86_64", + "product_id": 1678, + "repository_id": 2913, + "parent_product_id": 1751, + "root_product_id": 1751, + "update_tag": "SLE-Module-CAP-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-CAP-Tools/12/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-CAP-Tools-12-Debuginfo-Updates for x86_64 HPC SP3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-cap-tools-12-pool-x86_64-hpc-sp3", + "parent_channel_label": "sle12-sp3-hpc-pool-x86_64", + "product_id": 1678, + "repository_id": 2914, + "parent_product_id": 1751, + "root_product_id": 1751, + "update_tag": "SLE-Module-CAP-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-CAP-Tools/12/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-CAP-Tools-12-Pool for x86_64 HPC SP3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-cap-tools-12-debuginfo-pool-x86_64-hpc-sp3", + "parent_channel_label": "sle12-sp3-hpc-pool-x86_64", + "product_id": 1678, + "repository_id": 2915, + "parent_product_id": 1751, + "root_product_id": 1751, + "update_tag": "SLE-Module-CAP-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-CAP-Tools/12/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-CAP-Tools-12-Debuginfo-Pool for x86_64 HPC SP3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-manager-server-3.2-updates-x86_64-hpc-sp3", + "parent_channel_label": "sle12-sp3-hpc-pool-x86_64", + "product_id": 1724, + "repository_id": 2987, + "parent_product_id": 1751, + "root_product_id": 1751, + "update_tag": "SUSE-Manager-Server-3.2", + "url": "https://updates.suse.com/SUSE/Updates/SUSE-Manager-Server/3.2/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-Manager-Server-3.2-Updates for x86_64 HPC SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-manager-server-3.2-debuginfo-updates-x86_64-hpc-sp3", + "parent_channel_label": "sle12-sp3-hpc-pool-x86_64", + "product_id": 1724, + "repository_id": 2988, + "parent_product_id": 1751, + "root_product_id": 1751, + "update_tag": "SUSE-Manager-Server-3.2", + "url": "https://updates.suse.com/SUSE/Updates/SUSE-Manager-Server/3.2/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SUSE-Manager-Server-3.2-Debuginfo-Updates for x86_64 HPC SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-manager-server-3.2-pool-x86_64-hpc-sp3", + "parent_channel_label": "sle12-sp3-hpc-pool-x86_64", + "product_id": 1724, + "repository_id": 2989, + "parent_product_id": 1751, + "root_product_id": 1751, + "update_tag": "SUSE-Manager-Server-3.2", + "url": "https://updates.suse.com/SUSE/Products/SUSE-Manager-Server/3.2/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-Manager-Server-3.2-Pool for x86_64 HPC SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-manager-server-3.2-debuginfo-pool-x86_64-hpc-sp3", + "parent_channel_label": "sle12-sp3-hpc-pool-x86_64", + "product_id": 1724, + "repository_id": 2990, + "parent_product_id": 1751, + "root_product_id": 1751, + "update_tag": "SUSE-Manager-Server-3.2", + "url": "https://updates.suse.com/SUSE/Products/SUSE-Manager-Server/3.2/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SUSE-Manager-Server-3.2-Debuginfo-Pool for x86_64 HPC SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-manager-proxy-3.2-updates-x86_64-hpc-sp3", + "parent_channel_label": "sle12-sp3-hpc-pool-x86_64", + "product_id": 1725, + "repository_id": 2992, + "parent_product_id": 1751, + "root_product_id": 1751, + "update_tag": "SUSE-Manager-Proxy-3.2", + "url": "https://updates.suse.com/SUSE/Updates/SUSE-Manager-Proxy/3.2/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-Manager-Proxy-3.2-Updates for x86_64 HPC SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-manager-proxy-3.2-debuginfo-updates-x86_64-hpc-sp3", + "parent_channel_label": "sle12-sp3-hpc-pool-x86_64", + "product_id": 1725, + "repository_id": 2993, + "parent_product_id": 1751, + "root_product_id": 1751, + "update_tag": "SUSE-Manager-Proxy-3.2", + "url": "https://updates.suse.com/SUSE/Updates/SUSE-Manager-Proxy/3.2/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SUSE-Manager-Proxy-3.2-Debuginfo-Updates for x86_64 HPC SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-manager-proxy-3.2-pool-x86_64-hpc-sp3", + "parent_channel_label": "sle12-sp3-hpc-pool-x86_64", + "product_id": 1725, + "repository_id": 2994, + "parent_product_id": 1751, + "root_product_id": 1751, + "update_tag": "SUSE-Manager-Proxy-3.2", + "url": "https://updates.suse.com/SUSE/Products/SUSE-Manager-Proxy/3.2/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-Manager-Proxy-3.2-Pool for x86_64 HPC SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-manager-proxy-3.2-debuginfo-pool-x86_64-hpc-sp3", + "parent_channel_label": "sle12-sp3-hpc-pool-x86_64", + "product_id": 1725, + "repository_id": 2995, + "parent_product_id": 1751, + "root_product_id": 1751, + "update_tag": "SUSE-Manager-Proxy-3.2", + "url": "https://updates.suse.com/SUSE/Products/SUSE-Manager-Proxy/3.2/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SUSE-Manager-Proxy-3.2-Debuginfo-Pool for x86_64 HPC SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-manager-retail-branch-server-3.2-updates-x86_64-hpc-sp3", + "parent_channel_label": "sle12-sp3-hpc-pool-x86_64", + "product_id": 1826, + "repository_id": 3517, + "parent_product_id": 1725, + "root_product_id": 1751, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Updates/SUSE-Manager-Retail-Branch-Server/3.2/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-Manager-Retail-Branch-Server-3.2-Updates for x86_64 HPC SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-manager-retail-branch-server-3.2-debuginfo-updates-x86_64-hpc-sp3", + "parent_channel_label": "sle12-sp3-hpc-pool-x86_64", + "product_id": 1826, + "repository_id": 3518, + "parent_product_id": 1725, + "root_product_id": 1751, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Updates/SUSE-Manager-Retail-Branch-Server/3.2/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SUSE-Manager-Retail-Branch-Server-3.2-Debuginfo-Updates for x86_64 HPC SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-manager-retail-branch-server-3.2-pool-x86_64-hpc-sp3", + "parent_channel_label": "sle12-sp3-hpc-pool-x86_64", + "product_id": 1826, + "repository_id": 3519, + "parent_product_id": 1725, + "root_product_id": 1751, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Products/SUSE-Manager-Retail-Branch-Server/3.2/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-Manager-Retail-Branch-Server-3.2-Pool for x86_64 HPC SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-manager-retail-branch-server-3.2-debuginfo-pool-x86_64-hpc-sp3", + "parent_channel_label": "sle12-sp3-hpc-pool-x86_64", + "product_id": 1826, + "repository_id": 3520, + "parent_product_id": 1725, + "root_product_id": 1751, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Products/SUSE-Manager-Retail-Branch-Server/3.2/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SUSE-Manager-Retail-Branch-Server-3.2-Debuginfo-Pool for x86_64 HPC SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-openstack-cloud-crowbar-8-updates-x86_64-hpc-sp3", + "parent_channel_label": "sle12-sp3-hpc-pool-x86_64", + "product_id": 1729, + "repository_id": 3004, + "parent_product_id": 1751, + "root_product_id": 1751, + "update_tag": "OpenStack-Cloud-Crowbar-8", + "url": "https://updates.suse.com/SUSE/Updates/OpenStack-Cloud-Crowbar/8/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-OpenStack-Cloud-Crowbar-8-Updates for x86_64 HPC SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-openstack-cloud-crowbar-8-debuginfo-updates-x86_64-hpc-sp3", + "parent_channel_label": "sle12-sp3-hpc-pool-x86_64", + "product_id": 1729, + "repository_id": 3005, + "parent_product_id": 1751, + "root_product_id": 1751, + "update_tag": "OpenStack-Cloud-Crowbar-8", + "url": "https://updates.suse.com/SUSE/Updates/OpenStack-Cloud-Crowbar/8/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SUSE-OpenStack-Cloud-Crowbar-8-Debuginfo-Updates for x86_64 HPC SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-openstack-cloud-crowbar-8-pool-x86_64-hpc-sp3", + "parent_channel_label": "sle12-sp3-hpc-pool-x86_64", + "product_id": 1729, + "repository_id": 3006, + "parent_product_id": 1751, + "root_product_id": 1751, + "update_tag": "OpenStack-Cloud-Crowbar-8", + "url": "https://updates.suse.com/SUSE/Products/OpenStack-Cloud-Crowbar/8/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-OpenStack-Cloud-Crowbar-8-Pool for x86_64 HPC SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-openstack-cloud-crowbar-8-debuginfo-pool-x86_64-hpc-sp3", + "parent_channel_label": "sle12-sp3-hpc-pool-x86_64", + "product_id": 1729, + "repository_id": 3007, + "parent_product_id": 1751, + "root_product_id": 1751, + "update_tag": "OpenStack-Cloud-Crowbar-8", + "url": "https://updates.suse.com/SUSE/Products/OpenStack-Cloud-Crowbar/8/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SUSE-OpenStack-Cloud-Crowbar-8-Debuginfo-Pool for x86_64 HPC SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "hpe-helion-openstack-8-updates-x86_64-hpc-sp3", + "parent_channel_label": "sle12-sp3-hpc-pool-x86_64", + "product_id": 1730, + "repository_id": 3139, + "parent_product_id": 1751, + "root_product_id": 1751, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Updates/HPE-Helion-OpenStack/8/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "HPE-Helion-OpenStack-8-Updates for x86_64 HPC SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "hpe-helion-openstack-8-debuginfo-updates-x86_64-hpc-sp3", + "parent_channel_label": "sle12-sp3-hpc-pool-x86_64", + "product_id": 1730, + "repository_id": 3140, + "parent_product_id": 1751, + "root_product_id": 1751, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Updates/HPE-Helion-OpenStack/8/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "HPE-Helion-OpenStack-8-Debuginfo-Updates for x86_64 HPC SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "hpe-helion-openstack-8-pool-x86_64-hpc-sp3", + "parent_channel_label": "sle12-sp3-hpc-pool-x86_64", + "product_id": 1730, + "repository_id": 3141, + "parent_product_id": 1751, + "root_product_id": 1751, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Products/HPE-Helion-OpenStack/8/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "HPE-Helion-OpenStack-8-Pool for x86_64 HPC SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "hpe-helion-openstack-8-debuginfo-pool-x86_64-hpc-sp3", + "parent_channel_label": "sle12-sp3-hpc-pool-x86_64", + "product_id": 1730, + "repository_id": 3142, + "parent_product_id": 1751, + "root_product_id": 1751, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Products/HPE-Helion-OpenStack/8/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "HPE-Helion-OpenStack-8-Debuginfo-Pool for x86_64 HPC SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-manager-tools12-beta-updates-x86_64-hpc-sp3", + "parent_channel_label": "sle12-sp3-hpc-pool-x86_64", + "product_id": 1747, + "repository_id": 3077, + "parent_product_id": 1751, + "root_product_id": 1751, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/12-BETA/x86_64/update/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools12-BETA-Updates for x86_64 HPC SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools12-beta-debuginfo-updates-x86_64-hpc-sp3", + "parent_channel_label": "sle12-sp3-hpc-pool-x86_64", + "product_id": 1747, + "repository_id": 3078, + "parent_product_id": 1751, + "root_product_id": 1751, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/12-BETA/x86_64/update_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools12-BETA-Debuginfo-Updates for x86_64 HPC SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools12-beta-pool-x86_64-hpc-sp3", + "parent_channel_label": "sle12-sp3-hpc-pool-x86_64", + "product_id": 1747, + "repository_id": 3079, + "parent_product_id": 1751, + "root_product_id": 1751, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/12-BETA/x86_64/product/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools12-BETA-Pool for x86_64 HPC SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools12-beta-debuginfo-pool-x86_64-hpc-sp3", + "parent_channel_label": "sle12-sp3-hpc-pool-x86_64", + "product_id": 1747, + "repository_id": 3080, + "parent_product_id": 1751, + "root_product_id": 1751, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/12-BETA/x86_64/product_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools12-BETA-Debuginfo-Pool for x86_64 HPC SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sles12-sp3-espos-updates-x86_64-hpc-sp3", + "parent_channel_label": "sle12-sp3-hpc-pool-x86_64", + "product_id": 1816, + "repository_id": 3472, + "parent_product_id": 1751, + "root_product_id": 1751, + "update_tag": "SLE-SERVER", + "url": "https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-SP3-ESPOS/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLES12-SP3-ESPOS-Updates for x86_64 HPC", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles12-sp3-espos-debuginfo-updates-x86_64-hpc-sp3", + "parent_channel_label": "sle12-sp3-hpc-pool-x86_64", + "product_id": 1816, + "repository_id": 3473, + "parent_product_id": 1751, + "root_product_id": 1751, + "update_tag": "SLE-SERVER", + "url": "https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-SP3-ESPOS/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLES12-SP3-ESPOS-Debuginfo-Updates for x86_64 HPC", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles12-sp3-espos-pool-x86_64-hpc-sp3", + "parent_channel_label": "sle12-sp3-hpc-pool-x86_64", + "product_id": 1816, + "repository_id": 3474, + "parent_product_id": 1751, + "root_product_id": 1751, + "update_tag": "SLE-SERVER", + "url": "https://updates.suse.com/SUSE/Products/SLE-SERVER/12-SP3-ESPOS/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLES12-SP3-ESPOS-Pool for x86_64 HPC", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles12-sp3-espos-debuginfo-pool-x86_64-hpc-sp3", + "parent_channel_label": "sle12-sp3-hpc-pool-x86_64", + "product_id": 1816, + "repository_id": 3475, + "parent_product_id": 1751, + "root_product_id": 1751, + "update_tag": "SLE-SERVER", + "url": "https://updates.suse.com/SUSE/Products/SLE-SERVER/12-SP3-ESPOS/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLES12-SP3-ESPOS-Debuginfo-Pool for x86_64 HPC", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles12-sp3-ltss-updates-x86_64-hpc", + "parent_channel_label": "sle12-sp3-hpc-pool-x86_64", + "product_id": 1932, + "repository_id": 3919, + "parent_product_id": 1751, + "root_product_id": 1751, + "update_tag": "SLE-SERVER", + "url": "https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-SP3-LTSS/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLES12-SP3-LTSS-Updates for x86_64 HPC", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles12-sp3-ltss-debuginfo-updates-x86_64-hpc", + "parent_channel_label": "sle12-sp3-hpc-pool-x86_64", + "product_id": 1932, + "repository_id": 3920, + "parent_product_id": 1751, + "root_product_id": 1751, + "update_tag": "SLE-SERVER", + "url": "https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-SP3-LTSS/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLES12-SP3-LTSS-Debuginfo-Updates for x86_64 HPC", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-manager-tools12-updates-ppc64le-sap-sp4", + "parent_channel_label": "sle12-sp4-sap-pool-ppc64le", + "product_id": 1754, + "repository_id": 1724, + "parent_product_id": null, + "root_product_id": 1754, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/12/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Manager-Tools12-Updates for ppc64le SAP SP4", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools12-debuginfo-updates-ppc64le-sap-sp4", + "parent_channel_label": "sle12-sp4-sap-pool-ppc64le", + "product_id": 1754, + "repository_id": 1725, + "parent_product_id": null, + "root_product_id": 1754, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/12/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Manager-Tools12-Debuginfo-Updates for ppc64le SAP SP4", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools12-pool-ppc64le-sap-sp4", + "parent_channel_label": "sle12-sp4-sap-pool-ppc64le", + "product_id": 1754, + "repository_id": 1726, + "parent_product_id": null, + "root_product_id": 1754, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/12/ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Manager-Tools12-Pool for ppc64le SAP SP4", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools12-debuginfo-pool-ppc64le-sap-sp4", + "parent_channel_label": "sle12-sp4-sap-pool-ppc64le", + "product_id": 1754, + "repository_id": 1727, + "parent_product_id": null, + "root_product_id": 1754, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/12/ppc64le/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Manager-Tools12-Debuginfo-Pool for ppc64le SAP SP4", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sles12-sp4-updates-ppc64le-sap-sp4", + "parent_channel_label": "sle12-sp4-sap-pool-ppc64le", + "product_id": 1754, + "repository_id": 2775, + "parent_product_id": null, + "root_product_id": 1754, + "update_tag": "SLE-SERVER", + "url": "https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-SP4/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLES12-SP4-Updates for ppc64le SAP", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles12-sp4-debuginfo-updates-ppc64le-sap-sp4", + "parent_channel_label": "sle12-sp4-sap-pool-ppc64le", + "product_id": 1754, + "repository_id": 2776, + "parent_product_id": null, + "root_product_id": 1754, + "update_tag": "SLE-SERVER", + "url": "https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-SP4/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLES12-SP4-Debuginfo-Updates for ppc64le SAP", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles12-sp4-pool-ppc64le-sap-sp4", + "parent_channel_label": "sle12-sp4-sap-pool-ppc64le", + "product_id": 1754, + "repository_id": 2778, + "parent_product_id": null, + "root_product_id": 1754, + "update_tag": "SLE-SERVER", + "url": "https://updates.suse.com/SUSE/Products/SLE-SERVER/12-SP4/ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLES12-SP4-Pool for ppc64le SAP", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles12-sp4-debuginfo-pool-ppc64le-sap-sp4", + "parent_channel_label": "sle12-sp4-sap-pool-ppc64le", + "product_id": 1754, + "repository_id": 2779, + "parent_product_id": null, + "root_product_id": 1754, + "update_tag": "SLE-SERVER", + "url": "https://updates.suse.com/SUSE/Products/SLE-SERVER/12-SP4/ppc64le/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLES12-SP4-Debuginfo-Pool for ppc64le SAP", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-ha12-sp4-updates-ppc64le-sap-sp4", + "parent_channel_label": "sle12-sp4-sap-pool-ppc64le", + "product_id": 1754, + "repository_id": 2824, + "parent_product_id": null, + "root_product_id": 1754, + "update_tag": "SLE-HA", + "url": "https://updates.suse.com/SUSE/Updates/SLE-HA/12-SP4/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-HA12-SP4-Updates for ppc64le SAP", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-ha12-sp4-debuginfo-updates-ppc64le-sap-sp4", + "parent_channel_label": "sle12-sp4-sap-pool-ppc64le", + "product_id": 1754, + "repository_id": 2825, + "parent_product_id": null, + "root_product_id": 1754, + "update_tag": "SLE-HA", + "url": "https://updates.suse.com/SUSE/Updates/SLE-HA/12-SP4/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-HA12-SP4-Debuginfo-Updates for ppc64le SAP", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-ha12-sp4-pool-ppc64le-sap-sp4", + "parent_channel_label": "sle12-sp4-sap-pool-ppc64le", + "product_id": 1754, + "repository_id": 2826, + "parent_product_id": null, + "root_product_id": 1754, + "update_tag": "SLE-HA", + "url": "https://updates.suse.com/SUSE/Products/SLE-HA/12-SP4/ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-HA12-SP4-Pool for ppc64le SAP", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-ha12-sp4-debuginfo-pool-ppc64le-sap-sp4", + "parent_channel_label": "sle12-sp4-sap-pool-ppc64le", + "product_id": 1754, + "repository_id": 2827, + "parent_product_id": null, + "root_product_id": 1754, + "update_tag": "SLE-HA", + "url": "https://updates.suse.com/SUSE/Products/SLE-HA/12-SP4/ppc64le/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-HA12-SP4-Debuginfo-Pool for ppc64le SAP", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-12-sp4-sap-updates-ppc64le", + "parent_channel_label": "sle12-sp4-sap-pool-ppc64le", + "product_id": 1754, + "repository_id": 3149, + "parent_product_id": null, + "root_product_id": 1754, + "update_tag": "SLE-SAP", + "url": "https://updates.suse.com/SUSE/Updates/SLE-SAP/12-SP4/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-12-SP4-SAP-Updates for ppc64le", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-12-sp4-sap-debuginfo-updates-ppc64le", + "parent_channel_label": "sle12-sp4-sap-pool-ppc64le", + "product_id": 1754, + "repository_id": 3150, + "parent_product_id": null, + "root_product_id": 1754, + "update_tag": "SLE-SAP", + "url": "https://updates.suse.com/SUSE/Updates/SLE-SAP/12-SP4/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-12-SP4-SAP-Debuginfo-Updates for ppc64le", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle12-sp4-sap-pool-ppc64le", + "parent_channel_label": null, + "product_id": 1754, + "repository_id": 3151, + "parent_product_id": null, + "root_product_id": 1754, + "update_tag": "SLE-SAP", + "url": "https://updates.suse.com/SUSE/Products/SLE-SAP/12-SP4/ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE12-SP4-SAP-Pool for ppc64le", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle12-sp4-sap-debuginfo-pool-ppc64le", + "parent_channel_label": "sle12-sp4-sap-pool-ppc64le", + "product_id": 1754, + "repository_id": 3152, + "parent_product_id": null, + "root_product_id": 1754, + "update_tag": "SLE-SAP", + "url": "https://updates.suse.com/SUSE/Products/SLE-SAP/12-SP4/ppc64le/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE12-SP4-SAP-Debuginfo-Pool for ppc64le", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-legacy12-updates-ppc64le-sap-sp4", + "parent_channel_label": "sle12-sp4-sap-pool-ppc64le", + "product_id": 1148, + "repository_id": 1668, + "parent_product_id": 1754, + "root_product_id": 1754, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/12/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy12-Updates for ppc64le SAP SP4", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-legacy12-debuginfo-updates-ppc64le-sap-sp4", + "parent_channel_label": "sle12-sp4-sap-pool-ppc64le", + "product_id": 1148, + "repository_id": 1669, + "parent_product_id": 1754, + "root_product_id": 1754, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/12/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy12-Debuginfo-Updates for ppc64le SAP SP4", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-legacy12-pool-ppc64le-sap-sp4", + "parent_channel_label": "sle12-sp4-sap-pool-ppc64le", + "product_id": 1148, + "repository_id": 1670, + "parent_product_id": 1754, + "root_product_id": 1754, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/12/ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy12-Pool for ppc64le SAP SP4", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-legacy12-debuginfo-pool-ppc64le-sap-sp4", + "parent_channel_label": "sle12-sp4-sap-pool-ppc64le", + "product_id": 1148, + "repository_id": 1671, + "parent_product_id": 1754, + "root_product_id": 1754, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/12/ppc64le/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy12-Debuginfo-Pool for ppc64le SAP SP4", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting12-updates-ppc64le-sap-sp4", + "parent_channel_label": "sle12-sp4-sap-pool-ppc64le", + "product_id": 1151, + "repository_id": 1680, + "parent_product_id": 1754, + "root_product_id": 1754, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/12/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Web-Scripting12-Updates for ppc64le SAP SP4", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting12-debuginfo-updates-ppc64le-sap-sp4", + "parent_channel_label": "sle12-sp4-sap-pool-ppc64le", + "product_id": 1151, + "repository_id": 1681, + "parent_product_id": 1754, + "root_product_id": 1754, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/12/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Web-Scripting12-Debuginfo-Updates for ppc64le SAP SP4", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting12-pool-ppc64le-sap-sp4", + "parent_channel_label": "sle12-sp4-sap-pool-ppc64le", + "product_id": 1151, + "repository_id": 1682, + "parent_product_id": 1754, + "root_product_id": 1754, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/12/ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Web-Scripting12-Pool for ppc64le SAP SP4", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting12-debuginfo-pool-ppc64le-sap-sp4", + "parent_channel_label": "sle12-sp4-sap-pool-ppc64le", + "product_id": 1151, + "repository_id": 1683, + "parent_product_id": 1754, + "root_product_id": 1754, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/12/ppc64le/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Web-Scripting12-Debuginfo-Pool for ppc64le SAP SP4", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud12-updates-ppc64le-sap-sp4", + "parent_channel_label": "sle12-sp4-sap-pool-ppc64le", + "product_id": 1218, + "repository_id": 1692, + "parent_product_id": 1754, + "root_product_id": 1754, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/12/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud12-Updates for ppc64le SAP SP4", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud12-debuginfo-updates-ppc64le-sap-sp4", + "parent_channel_label": "sle12-sp4-sap-pool-ppc64le", + "product_id": 1218, + "repository_id": 1693, + "parent_product_id": 1754, + "root_product_id": 1754, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/12/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud12-Debuginfo-Updates for ppc64le SAP SP4", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud12-pool-ppc64le-sap-sp4", + "parent_channel_label": "sle12-sp4-sap-pool-ppc64le", + "product_id": 1218, + "repository_id": 1694, + "parent_product_id": 1754, + "root_product_id": 1754, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/12/ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud12-Pool for ppc64le SAP SP4", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud12-debuginfo-pool-ppc64le-sap-sp4", + "parent_channel_label": "sle12-sp4-sap-pool-ppc64le", + "product_id": 1218, + "repository_id": 1695, + "parent_product_id": 1754, + "root_product_id": 1754, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/12/ppc64le/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud12-Debuginfo-Pool for ppc64le SAP SP4", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "ibm-dlpar-adv-toolchain-sap-sp4", + "parent_channel_label": "sle12-sp4-sap-pool-ppc64le", + "product_id": 1249, + "repository_id": 4429, + "parent_product_id": 1754, + "root_product_id": 1754, + "update_tag": null, + "url": "https://public.dhe.ibm.com/software/server/POWER/Linux/toolchain/at/suse/SLES_12/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "IBM-DLPAR-Adv-Toolchain for ppc64le SAP SP4", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "ibm-dlpar-utils-sap-sp4", + "parent_channel_label": "sle12-sp4-sap-pool-ppc64le", + "product_id": 1250, + "repository_id": 6216, + "parent_product_id": 1754, + "root_product_id": 1754, + "update_tag": null, + "url": "https://public.dhe.ibm.com/software/server/POWER/Linux/yum/OSS/SLES/12/ppc64le/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "IBM-DLPAR-utils for ppc64le SAP SP4", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-adv-systems-management12-updates-ppc64le-sap-sp4", + "parent_channel_label": "sle12-sp4-sap-pool-ppc64le", + "product_id": 1294, + "repository_id": 1762, + "parent_product_id": 1754, + "root_product_id": 1754, + "update_tag": "SLE-Module-Adv-Systems-Management", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Adv-Systems-Management/12/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Adv-Systems-Management12-Updates for ppc64le SAP SP4", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-adv-systems-management12-debuginfo-updates-ppc64le-sap-sp4", + "parent_channel_label": "sle12-sp4-sap-pool-ppc64le", + "product_id": 1294, + "repository_id": 1763, + "parent_product_id": 1754, + "root_product_id": 1754, + "update_tag": "SLE-Module-Adv-Systems-Management", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Adv-Systems-Management/12/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Adv-Systems-Management12-Debuginfo-Updates for ppc64le SAP SP4", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-adv-systems-management12-pool-ppc64le-sap-sp4", + "parent_channel_label": "sle12-sp4-sap-pool-ppc64le", + "product_id": 1294, + "repository_id": 1764, + "parent_product_id": 1754, + "root_product_id": 1754, + "update_tag": "SLE-Module-Adv-Systems-Management", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Adv-Systems-Management/12/ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Adv-Systems-Management12-Pool for ppc64le SAP SP4", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-adv-systems-management12-debuginfo-pool-ppc64le-sap-sp4", + "parent_channel_label": "sle12-sp4-sap-pool-ppc64le", + "product_id": 1294, + "repository_id": 1765, + "parent_product_id": 1754, + "root_product_id": 1754, + "update_tag": "SLE-Module-Adv-Systems-Management", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Adv-Systems-Management/12/ppc64le/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Adv-Systems-Management12-Debuginfo-Pool for ppc64le SAP SP4", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-toolchain12-updates-ppc64le-sap-sp4", + "parent_channel_label": "sle12-sp4-sap-pool-ppc64le", + "product_id": 1339, + "repository_id": 1895, + "parent_product_id": 1754, + "root_product_id": 1754, + "update_tag": "SLE-Module-Toolchain", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Toolchain/12/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Toolchain12-Updates for ppc64le SAP SP4", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-toolchain12-debuginfo-updates-ppc64le-sap-sp4", + "parent_channel_label": "sle12-sp4-sap-pool-ppc64le", + "product_id": 1339, + "repository_id": 1896, + "parent_product_id": 1754, + "root_product_id": 1754, + "update_tag": "SLE-Module-Toolchain", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Toolchain/12/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Toolchain12-Debuginfo-Updates for ppc64le SAP SP4", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-toolchain12-pool-ppc64le-sap-sp4", + "parent_channel_label": "sle12-sp4-sap-pool-ppc64le", + "product_id": 1339, + "repository_id": 1897, + "parent_product_id": 1754, + "root_product_id": 1754, + "update_tag": "SLE-Module-Toolchain", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Toolchain/12/ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Toolchain12-Pool for ppc64le SAP SP4", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-toolchain12-debuginfo-pool-ppc64le-sap-sp4", + "parent_channel_label": "sle12-sp4-sap-pool-ppc64le", + "product_id": 1339, + "repository_id": 1898, + "parent_product_id": 1754, + "root_product_id": 1754, + "update_tag": "SLE-Module-Toolchain", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Toolchain/12/ppc64le/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Toolchain12-Debuginfo-Pool for ppc64le SAP SP4", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-containers12-updates-ppc64le-sap-sp4", + "parent_channel_label": "sle12-sp4-sap-pool-ppc64le", + "product_id": 1353, + "repository_id": 1972, + "parent_product_id": 1754, + "root_product_id": 1754, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/12/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers12-Updates for ppc64le SAP SP4", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-containers12-debuginfo-updates-ppc64le-sap-sp4", + "parent_channel_label": "sle12-sp4-sap-pool-ppc64le", + "product_id": 1353, + "repository_id": 1973, + "parent_product_id": 1754, + "root_product_id": 1754, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/12/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers12-Debuginfo-Updates for ppc64le SAP SP4", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-containers12-pool-ppc64le-sap-sp4", + "parent_channel_label": "sle12-sp4-sap-pool-ppc64le", + "product_id": 1353, + "repository_id": 1974, + "parent_product_id": 1754, + "root_product_id": 1754, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Containers/12/ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers12-Pool for ppc64le SAP SP4", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-containers12-debuginfo-pool-ppc64le-sap-sp4", + "parent_channel_label": "sle12-sp4-sap-pool-ppc64le", + "product_id": 1353, + "repository_id": 1975, + "parent_product_id": 1754, + "root_product_id": 1754, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Containers/12/ppc64le/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers12-Debuginfo-Pool for ppc64le SAP SP4", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-sdk12-sp4-updates-ppc64le-sap-sp4", + "parent_channel_label": "sle12-sp4-sap-pool-ppc64le", + "product_id": 1631, + "repository_id": 2804, + "parent_product_id": 1754, + "root_product_id": 1754, + "update_tag": "SLE-SDK", + "url": "https://updates.suse.com/SUSE/Updates/SLE-SDK/12-SP4/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-SDK12-SP4-Updates for ppc64le SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-sdk12-sp4-debuginfo-updates-ppc64le-sap-sp4", + "parent_channel_label": "sle12-sp4-sap-pool-ppc64le", + "product_id": 1631, + "repository_id": 2805, + "parent_product_id": 1754, + "root_product_id": 1754, + "update_tag": "SLE-SDK", + "url": "https://updates.suse.com/SUSE/Updates/SLE-SDK/12-SP4/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-SDK12-SP4-Debuginfo-Updates for ppc64le SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-sdk12-sp4-pool-ppc64le-sap-sp4", + "parent_channel_label": "sle12-sp4-sap-pool-ppc64le", + "product_id": 1631, + "repository_id": 2806, + "parent_product_id": 1754, + "root_product_id": 1754, + "update_tag": "SLE-SDK", + "url": "https://updates.suse.com/SUSE/Products/SLE-SDK/12-SP4/ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-SDK12-SP4-Pool for ppc64le SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-sdk12-sp4-debuginfo-pool-ppc64le-sap-sp4", + "parent_channel_label": "sle12-sp4-sap-pool-ppc64le", + "product_id": 1631, + "repository_id": 2807, + "parent_product_id": 1754, + "root_product_id": 1754, + "update_tag": "SLE-SDK", + "url": "https://updates.suse.com/SUSE/Products/SLE-SDK/12-SP4/ppc64le/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-SDK12-SP4-Debuginfo-Pool for ppc64le SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-manager-tools12-beta-updates-ppc64le-sap-sp4", + "parent_channel_label": "sle12-sp4-sap-pool-ppc64le", + "product_id": 1745, + "repository_id": 3067, + "parent_product_id": 1754, + "root_product_id": 1754, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/12-BETA/ppc64le/update/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools12-BETA-Updates for ppc64le SAP SP4", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools12-beta-debuginfo-updates-ppc64le-sap-sp4", + "parent_channel_label": "sle12-sp4-sap-pool-ppc64le", + "product_id": 1745, + "repository_id": 3068, + "parent_product_id": 1754, + "root_product_id": 1754, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/12-BETA/ppc64le/update_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools12-BETA-Debuginfo-Updates for ppc64le SAP SP4", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools12-beta-pool-ppc64le-sap-sp4", + "parent_channel_label": "sle12-sp4-sap-pool-ppc64le", + "product_id": 1745, + "repository_id": 3069, + "parent_product_id": 1754, + "root_product_id": 1754, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/12-BETA/ppc64le/product/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools12-BETA-Pool for ppc64le SAP SP4", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools12-beta-debuginfo-pool-ppc64le-sap-sp4", + "parent_channel_label": "sle12-sp4-sap-pool-ppc64le", + "product_id": 1745, + "repository_id": 3070, + "parent_product_id": 1754, + "root_product_id": 1754, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/12-BETA/ppc64le/product_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools12-BETA-Debuginfo-Pool for ppc64le SAP SP4", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-live-patching12-sp4-updates-ppc64le-sap-sp4", + "parent_channel_label": "sle12-sp4-sap-pool-ppc64le", + "product_id": 1756, + "repository_id": 3159, + "parent_product_id": 1754, + "root_product_id": 1754, + "update_tag": "SLE-Live-Patching", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Live-Patching/12-SP4/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Live-Patching12-SP4-Updates for ppc64le SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-live-patching12-sp4-debuginfo-updates-ppc64le-sap-sp4", + "parent_channel_label": "sle12-sp4-sap-pool-ppc64le", + "product_id": 1756, + "repository_id": 3160, + "parent_product_id": 1754, + "root_product_id": 1754, + "update_tag": "SLE-Live-Patching", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Live-Patching/12-SP4/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Live-Patching12-SP4-Debuginfo-Updates for ppc64le SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-live-patching12-sp4-pool-ppc64le-sap-sp4", + "parent_channel_label": "sle12-sp4-sap-pool-ppc64le", + "product_id": 1756, + "repository_id": 3161, + "parent_product_id": 1754, + "root_product_id": 1754, + "update_tag": "SLE-Live-Patching", + "url": "https://updates.suse.com/SUSE/Products/SLE-Live-Patching/12-SP4/ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Live-Patching12-SP4-Pool for ppc64le SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-live-patching12-sp4-debuginfo-pool-ppc64le-sap-sp4", + "parent_channel_label": "sle12-sp4-sap-pool-ppc64le", + "product_id": 1756, + "repository_id": 3162, + "parent_product_id": 1754, + "root_product_id": 1754, + "update_tag": "SLE-Live-Patching", + "url": "https://updates.suse.com/SUSE/Products/SLE-Live-Patching/12-SP4/ppc64le/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Live-Patching12-SP4-Debuginfo-Pool for ppc64le SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-packagehub-12-sp4-standard-pool-ppc64le-sap-sp4", + "parent_channel_label": "sle12-sp4-sap-pool-ppc64le", + "product_id": 1811, + "repository_id": 3454, + "parent_product_id": 1754, + "root_product_id": 1754, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-12-SP4_ppc64le/standard/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-12-SP4-Standard-Pool for ppc64le SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-packagehub-12-sp4-debuginfo-ppc64le-sap-sp4", + "parent_channel_label": "sle12-sp4-sap-pool-ppc64le", + "product_id": 1811, + "repository_id": 3455, + "parent_product_id": 1754, + "root_product_id": 1754, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-12-SP4_ppc64le/standard_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-12-SP4-Debuginfo for ppc64le SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-packagehub-12-sp4-pool-ppc64le-sap-sp4", + "parent_channel_label": "sle12-sp4-sap-pool-ppc64le", + "product_id": 1811, + "repository_id": 3456, + "parent_product_id": 1754, + "root_product_id": 1754, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-12-SP4_ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-12-SP4-Pool for ppc64le SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles12-sp4-ltss-updates-ppc64le-sap", + "parent_channel_label": "sle12-sp4-sap-pool-ppc64le", + "product_id": 2115, + "repository_id": 4488, + "parent_product_id": 1754, + "root_product_id": 1754, + "update_tag": "SLE-SERVER", + "url": "https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-SP4-LTSS/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLES12-SP4-LTSS-Updates for ppc64le SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles12-sp4-ltss-debuginfo-updates-ppc64le-sap", + "parent_channel_label": "sle12-sp4-sap-pool-ppc64le", + "product_id": 2115, + "repository_id": 4489, + "parent_product_id": 1754, + "root_product_id": 1754, + "update_tag": "SLE-SERVER", + "url": "https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-SP4-LTSS/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLES12-SP4-LTSS-Debuginfo-Updates for ppc64le SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-manager-tools12-updates-x86_64-sap-sp4", + "parent_channel_label": "sle12-sp4-sap-pool-x86_64", + "product_id": 1755, + "repository_id": 1732, + "parent_product_id": null, + "root_product_id": 1755, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/12/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Manager-Tools12-Updates for x86_64 SAP SP4", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools12-debuginfo-updates-x86_64-sap-sp4", + "parent_channel_label": "sle12-sp4-sap-pool-x86_64", + "product_id": 1755, + "repository_id": 1733, + "parent_product_id": null, + "root_product_id": 1755, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/12/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Manager-Tools12-Debuginfo-Updates for x86_64 SAP SP4", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools12-pool-x86_64-sap-sp4", + "parent_channel_label": "sle12-sp4-sap-pool-x86_64", + "product_id": 1755, + "repository_id": 1734, + "parent_product_id": null, + "root_product_id": 1755, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/12/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Manager-Tools12-Pool for x86_64 SAP SP4", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools12-debuginfo-pool-x86_64-sap-sp4", + "parent_channel_label": "sle12-sp4-sap-pool-x86_64", + "product_id": 1755, + "repository_id": 1735, + "parent_product_id": null, + "root_product_id": 1755, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/12/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Manager-Tools12-Debuginfo-Pool for x86_64 SAP SP4", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sles12-sp4-updates-x86_64-sap-sp4", + "parent_channel_label": "sle12-sp4-sap-pool-x86_64", + "product_id": 1755, + "repository_id": 2769, + "parent_product_id": null, + "root_product_id": 1755, + "update_tag": "SLE-SERVER", + "url": "https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-SP4/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLES12-SP4-Updates for x86_64 SAP", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles12-sp4-debuginfo-updates-x86_64-sap-sp4", + "parent_channel_label": "sle12-sp4-sap-pool-x86_64", + "product_id": 1755, + "repository_id": 2770, + "parent_product_id": null, + "root_product_id": 1755, + "update_tag": "SLE-SERVER", + "url": "https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-SP4/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLES12-SP4-Debuginfo-Updates for x86_64 SAP", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles12-sp4-pool-x86_64-sap-sp4", + "parent_channel_label": "sle12-sp4-sap-pool-x86_64", + "product_id": 1755, + "repository_id": 2772, + "parent_product_id": null, + "root_product_id": 1755, + "update_tag": "SLE-SERVER", + "url": "https://updates.suse.com/SUSE/Products/SLE-SERVER/12-SP4/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLES12-SP4-Pool for x86_64 SAP", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles12-sp4-debuginfo-pool-x86_64-sap-sp4", + "parent_channel_label": "sle12-sp4-sap-pool-x86_64", + "product_id": 1755, + "repository_id": 2773, + "parent_product_id": null, + "root_product_id": 1755, + "update_tag": "SLE-SERVER", + "url": "https://updates.suse.com/SUSE/Products/SLE-SERVER/12-SP4/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLES12-SP4-Debuginfo-Pool for x86_64 SAP", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-ha12-sp4-updates-x86_64-sap-sp4", + "parent_channel_label": "sle12-sp4-sap-pool-x86_64", + "product_id": 1755, + "repository_id": 2819, + "parent_product_id": null, + "root_product_id": 1755, + "update_tag": "SLE-HA", + "url": "https://updates.suse.com/SUSE/Updates/SLE-HA/12-SP4/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-HA12-SP4-Updates for x86_64 SAP", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-ha12-sp4-debuginfo-updates-x86_64-sap-sp4", + "parent_channel_label": "sle12-sp4-sap-pool-x86_64", + "product_id": 1755, + "repository_id": 2820, + "parent_product_id": null, + "root_product_id": 1755, + "update_tag": "SLE-HA", + "url": "https://updates.suse.com/SUSE/Updates/SLE-HA/12-SP4/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-HA12-SP4-Debuginfo-Updates for x86_64 SAP", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-ha12-sp4-pool-x86_64-sap-sp4", + "parent_channel_label": "sle12-sp4-sap-pool-x86_64", + "product_id": 1755, + "repository_id": 2821, + "parent_product_id": null, + "root_product_id": 1755, + "update_tag": "SLE-HA", + "url": "https://updates.suse.com/SUSE/Products/SLE-HA/12-SP4/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-HA12-SP4-Pool for x86_64 SAP", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-ha12-sp4-debuginfo-pool-x86_64-sap-sp4", + "parent_channel_label": "sle12-sp4-sap-pool-x86_64", + "product_id": 1755, + "repository_id": 2822, + "parent_product_id": null, + "root_product_id": 1755, + "update_tag": "SLE-HA", + "url": "https://updates.suse.com/SUSE/Products/SLE-HA/12-SP4/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-HA12-SP4-Debuginfo-Pool for x86_64 SAP", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-12-sp4-sap-updates-x86_64", + "parent_channel_label": "sle12-sp4-sap-pool-x86_64", + "product_id": 1755, + "repository_id": 3154, + "parent_product_id": null, + "root_product_id": 1755, + "update_tag": "SLE-SAP", + "url": "https://updates.suse.com/SUSE/Updates/SLE-SAP/12-SP4/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-12-SP4-SAP-Updates for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-12-sp4-sap-debuginfo-updates-x86_64", + "parent_channel_label": "sle12-sp4-sap-pool-x86_64", + "product_id": 1755, + "repository_id": 3155, + "parent_product_id": null, + "root_product_id": 1755, + "update_tag": "SLE-SAP", + "url": "https://updates.suse.com/SUSE/Updates/SLE-SAP/12-SP4/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-12-SP4-SAP-Debuginfo-Updates for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle12-sp4-sap-pool-x86_64", + "parent_channel_label": null, + "product_id": 1755, + "repository_id": 3156, + "parent_product_id": null, + "root_product_id": 1755, + "update_tag": "SLE-SAP", + "url": "https://updates.suse.com/SUSE/Products/SLE-SAP/12-SP4/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE12-SP4-SAP-Pool for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle12-sp4-sap-debuginfo-pool-x86_64", + "parent_channel_label": "sle12-sp4-sap-pool-x86_64", + "product_id": 1755, + "repository_id": 3157, + "parent_product_id": null, + "root_product_id": 1755, + "update_tag": "SLE-SAP", + "url": "https://updates.suse.com/SUSE/Products/SLE-SAP/12-SP4/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE12-SP4-SAP-Debuginfo-Pool for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-legacy12-updates-x86_64-sap-sp4", + "parent_channel_label": "sle12-sp4-sap-pool-x86_64", + "product_id": 1150, + "repository_id": 1676, + "parent_product_id": 1755, + "root_product_id": 1755, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/12/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy12-Updates for x86_64 SAP SP4", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-legacy12-debuginfo-updates-x86_64-sap-sp4", + "parent_channel_label": "sle12-sp4-sap-pool-x86_64", + "product_id": 1150, + "repository_id": 1677, + "parent_product_id": 1755, + "root_product_id": 1755, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/12/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy12-Debuginfo-Updates for x86_64 SAP SP4", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-legacy12-pool-x86_64-sap-sp4", + "parent_channel_label": "sle12-sp4-sap-pool-x86_64", + "product_id": 1150, + "repository_id": 1678, + "parent_product_id": 1755, + "root_product_id": 1755, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/12/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy12-Pool for x86_64 SAP SP4", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-legacy12-debuginfo-pool-x86_64-sap-sp4", + "parent_channel_label": "sle12-sp4-sap-pool-x86_64", + "product_id": 1150, + "repository_id": 1679, + "parent_product_id": 1755, + "root_product_id": 1755, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/12/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy12-Debuginfo-Pool for x86_64 SAP SP4", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting12-updates-x86_64-sap-sp4", + "parent_channel_label": "sle12-sp4-sap-pool-x86_64", + "product_id": 1153, + "repository_id": 1688, + "parent_product_id": 1755, + "root_product_id": 1755, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/12/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Web-Scripting12-Updates for x86_64 SAP SP4", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting12-debuginfo-updates-x86_64-sap-sp4", + "parent_channel_label": "sle12-sp4-sap-pool-x86_64", + "product_id": 1153, + "repository_id": 1689, + "parent_product_id": 1755, + "root_product_id": 1755, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/12/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Web-Scripting12-Debuginfo-Updates for x86_64 SAP SP4", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting12-pool-x86_64-sap-sp4", + "parent_channel_label": "sle12-sp4-sap-pool-x86_64", + "product_id": 1153, + "repository_id": 1690, + "parent_product_id": 1755, + "root_product_id": 1755, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/12/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Web-Scripting12-Pool for x86_64 SAP SP4", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting12-debuginfo-pool-x86_64-sap-sp4", + "parent_channel_label": "sle12-sp4-sap-pool-x86_64", + "product_id": 1153, + "repository_id": 1691, + "parent_product_id": 1755, + "root_product_id": 1755, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/12/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Web-Scripting12-Debuginfo-Pool for x86_64 SAP SP4", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-adv-systems-management12-updates-x86_64-sap-sp4", + "parent_channel_label": "sle12-sp4-sap-pool-x86_64", + "product_id": 1212, + "repository_id": 1704, + "parent_product_id": 1755, + "root_product_id": 1755, + "update_tag": "SLE-Module-Adv-Systems-Management", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Adv-Systems-Management/12/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Adv-Systems-Management12-Updates for x86_64 SAP SP4", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-adv-systems-management12-debuginfo-updates-x86_64-sap-sp4", + "parent_channel_label": "sle12-sp4-sap-pool-x86_64", + "product_id": 1212, + "repository_id": 1705, + "parent_product_id": 1755, + "root_product_id": 1755, + "update_tag": "SLE-Module-Adv-Systems-Management", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Adv-Systems-Management/12/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Adv-Systems-Management12-Debuginfo-Updates for x86_64 SAP SP4", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-adv-systems-management12-pool-x86_64-sap-sp4", + "parent_channel_label": "sle12-sp4-sap-pool-x86_64", + "product_id": 1212, + "repository_id": 1706, + "parent_product_id": 1755, + "root_product_id": 1755, + "update_tag": "SLE-Module-Adv-Systems-Management", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Adv-Systems-Management/12/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Adv-Systems-Management12-Pool for x86_64 SAP SP4", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-adv-systems-management12-debuginfo-pool-x86_64-sap-sp4", + "parent_channel_label": "sle12-sp4-sap-pool-x86_64", + "product_id": 1212, + "repository_id": 1707, + "parent_product_id": 1755, + "root_product_id": 1755, + "update_tag": "SLE-Module-Adv-Systems-Management", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Adv-Systems-Management/12/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Adv-Systems-Management12-Debuginfo-Pool for x86_64 SAP SP4", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud12-updates-x86_64-sap-sp4", + "parent_channel_label": "sle12-sp4-sap-pool-x86_64", + "product_id": 1220, + "repository_id": 1700, + "parent_product_id": 1755, + "root_product_id": 1755, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/12/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud12-Updates for x86_64 SAP SP4", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud12-debuginfo-updates-x86_64-sap-sp4", + "parent_channel_label": "sle12-sp4-sap-pool-x86_64", + "product_id": 1220, + "repository_id": 1701, + "parent_product_id": 1755, + "root_product_id": 1755, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/12/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud12-Debuginfo-Updates for x86_64 SAP SP4", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud12-pool-x86_64-sap-sp4", + "parent_channel_label": "sle12-sp4-sap-pool-x86_64", + "product_id": 1220, + "repository_id": 1702, + "parent_product_id": 1755, + "root_product_id": 1755, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/12/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud12-Pool for x86_64 SAP SP4", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud12-debuginfo-pool-x86_64-sap-sp4", + "parent_channel_label": "sle12-sp4-sap-pool-x86_64", + "product_id": 1220, + "repository_id": 1703, + "parent_product_id": 1755, + "root_product_id": 1755, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/12/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud12-Debuginfo-Pool for x86_64 SAP SP4", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-containers12-updates-x86_64-sap-sp4", + "parent_channel_label": "sle12-sp4-sap-pool-x86_64", + "product_id": 1332, + "repository_id": 1864, + "parent_product_id": 1755, + "root_product_id": 1755, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/12/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers12-Updates for x86_64 SAP SP4", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-containers12-debuginfo-updates-x86_64-sap-sp4", + "parent_channel_label": "sle12-sp4-sap-pool-x86_64", + "product_id": 1332, + "repository_id": 1865, + "parent_product_id": 1755, + "root_product_id": 1755, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/12/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers12-Debuginfo-Updates for x86_64 SAP SP4", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-containers12-pool-x86_64-sap-sp4", + "parent_channel_label": "sle12-sp4-sap-pool-x86_64", + "product_id": 1332, + "repository_id": 1866, + "parent_product_id": 1755, + "root_product_id": 1755, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Containers/12/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers12-Pool for x86_64 SAP SP4", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-containers12-debuginfo-pool-x86_64-sap-sp4", + "parent_channel_label": "sle12-sp4-sap-pool-x86_64", + "product_id": 1332, + "repository_id": 1867, + "parent_product_id": 1755, + "root_product_id": 1755, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Containers/12/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers12-Debuginfo-Pool for x86_64 SAP SP4", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-toolchain12-updates-x86_64-sap-sp4", + "parent_channel_label": "sle12-sp4-sap-pool-x86_64", + "product_id": 1341, + "repository_id": 1903, + "parent_product_id": 1755, + "root_product_id": 1755, + "update_tag": "SLE-Module-Toolchain", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Toolchain/12/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Toolchain12-Updates for x86_64 SAP SP4", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-toolchain12-debuginfo-updates-x86_64-sap-sp4", + "parent_channel_label": "sle12-sp4-sap-pool-x86_64", + "product_id": 1341, + "repository_id": 1904, + "parent_product_id": 1755, + "root_product_id": 1755, + "update_tag": "SLE-Module-Toolchain", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Toolchain/12/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Toolchain12-Debuginfo-Updates for x86_64 SAP SP4", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-toolchain12-pool-x86_64-sap-sp4", + "parent_channel_label": "sle12-sp4-sap-pool-x86_64", + "product_id": 1341, + "repository_id": 1905, + "parent_product_id": 1755, + "root_product_id": 1755, + "update_tag": "SLE-Module-Toolchain", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Toolchain/12/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Toolchain12-Pool for x86_64 SAP SP4", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-toolchain12-debuginfo-pool-x86_64-sap-sp4", + "parent_channel_label": "sle12-sp4-sap-pool-x86_64", + "product_id": 1341, + "repository_id": 1906, + "parent_product_id": 1755, + "root_product_id": 1755, + "update_tag": "SLE-Module-Toolchain", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Toolchain/12/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Toolchain12-Debuginfo-Pool for x86_64 SAP SP4", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-pos12-sp2-updates-x86_64-sap-sp4", + "parent_channel_label": "sle12-sp4-sap-pool-x86_64", + "product_id": 1439, + "repository_id": 2289, + "parent_product_id": 1755, + "root_product_id": 1755, + "update_tag": "SLE-POS", + "url": "https://updates.suse.com/SUSE/Updates/SLE-POS/12-SP2/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-POS12-SP2-Updates for x86_64 SAP SP4", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-pos12-sp2-debuginfo-updates-x86_64-sap-sp4", + "parent_channel_label": "sle12-sp4-sap-pool-x86_64", + "product_id": 1439, + "repository_id": 2290, + "parent_product_id": 1755, + "root_product_id": 1755, + "update_tag": "SLE-POS", + "url": "https://updates.suse.com/SUSE/Updates/SLE-POS/12-SP2/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-POS12-SP2-Debuginfo-Updates for x86_64 SAP SP4", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-pos12-sp2-pool-x86_64-sap-sp4", + "parent_channel_label": "sle12-sp4-sap-pool-x86_64", + "product_id": 1439, + "repository_id": 2291, + "parent_product_id": 1755, + "root_product_id": 1755, + "update_tag": "SLE-POS", + "url": "https://updates.suse.com/SUSE/Products/SLE-POS/12-SP2/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-POS12-SP2-Pool for x86_64 SAP SP4", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-pos12-sp2-debuginfo-pool-x86_64-sap-sp4", + "parent_channel_label": "sle12-sp4-sap-pool-x86_64", + "product_id": 1439, + "repository_id": 2292, + "parent_product_id": 1755, + "root_product_id": 1755, + "update_tag": "SLE-POS", + "url": "https://updates.suse.com/SUSE/Products/SLE-POS/12-SP2/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-POS12-SP2-Debuginfo-Pool for x86_64 SAP SP4", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-pos12-sp2-client-updates-x86_64-sap-sp4", + "parent_channel_label": "sle12-sp4-sap-pool-x86_64", + "product_id": 1439, + "repository_id": 3130, + "parent_product_id": 1755, + "root_product_id": 1755, + "update_tag": "SLE-POS", + "url": "https://updates.suse.com/SUSE/Updates/SLE-POS/12-SP2-CLIENT/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-POS12-SP2-CLIENT-Updates for x86_64 SAP SP4", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-pos12-sp2-client-debuginfo-updates-x86_64-sap-sp4", + "parent_channel_label": "sle12-sp4-sap-pool-x86_64", + "product_id": 1439, + "repository_id": 3131, + "parent_product_id": 1755, + "root_product_id": 1755, + "update_tag": "SLE-POS", + "url": "https://updates.suse.com/SUSE/Updates/SLE-POS/12-SP2-CLIENT/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-POS12-SP2-CLIENT-Debuginfo-Updates for x86_64 SAP SP4", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-hpc12-updates-x86_64-sap-sp4", + "parent_channel_label": "sle12-sp4-sap-pool-x86_64", + "product_id": 1440, + "repository_id": 2294, + "parent_product_id": 1755, + "root_product_id": 1755, + "update_tag": "SLE-Module-HPC", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-HPC/12/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-HPC12-Updates for x86_64 SAP SP4", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-hpc12-debuginfo-updates-x86_64-sap-sp4", + "parent_channel_label": "sle12-sp4-sap-pool-x86_64", + "product_id": 1440, + "repository_id": 2295, + "parent_product_id": 1755, + "root_product_id": 1755, + "update_tag": "SLE-Module-HPC", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-HPC/12/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-HPC12-Debuginfo-Updates for x86_64 SAP SP4", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-hpc12-pool-x86_64-sap-sp4", + "parent_channel_label": "sle12-sp4-sap-pool-x86_64", + "product_id": 1440, + "repository_id": 2296, + "parent_product_id": 1755, + "root_product_id": 1755, + "update_tag": "SLE-Module-HPC", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-HPC/12/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-HPC12-Pool for x86_64 SAP SP4", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-hpc12-debuginfo-pool-x86_64-sap-sp4", + "parent_channel_label": "sle12-sp4-sap-pool-x86_64", + "product_id": 1440, + "repository_id": 2297, + "parent_product_id": 1755, + "root_product_id": 1755, + "update_tag": "SLE-Module-HPC", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-HPC/12/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-HPC12-Debuginfo-Pool for x86_64 SAP SP4", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-sdk12-sp4-updates-x86_64-sap-sp4", + "parent_channel_label": "sle12-sp4-sap-pool-x86_64", + "product_id": 1630, + "repository_id": 2799, + "parent_product_id": 1755, + "root_product_id": 1755, + "update_tag": "SLE-SDK", + "url": "https://updates.suse.com/SUSE/Updates/SLE-SDK/12-SP4/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-SDK12-SP4-Updates for x86_64 SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-sdk12-sp4-debuginfo-updates-x86_64-sap-sp4", + "parent_channel_label": "sle12-sp4-sap-pool-x86_64", + "product_id": 1630, + "repository_id": 2800, + "parent_product_id": 1755, + "root_product_id": 1755, + "update_tag": "SLE-SDK", + "url": "https://updates.suse.com/SUSE/Updates/SLE-SDK/12-SP4/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-SDK12-SP4-Debuginfo-Updates for x86_64 SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-sdk12-sp4-pool-x86_64-sap-sp4", + "parent_channel_label": "sle12-sp4-sap-pool-x86_64", + "product_id": 1630, + "repository_id": 2801, + "parent_product_id": 1755, + "root_product_id": 1755, + "update_tag": "SLE-SDK", + "url": "https://updates.suse.com/SUSE/Products/SLE-SDK/12-SP4/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-SDK12-SP4-Pool for x86_64 SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-sdk12-sp4-debuginfo-pool-x86_64-sap-sp4", + "parent_channel_label": "sle12-sp4-sap-pool-x86_64", + "product_id": 1630, + "repository_id": 2802, + "parent_product_id": 1755, + "root_product_id": 1755, + "update_tag": "SLE-SDK", + "url": "https://updates.suse.com/SUSE/Products/SLE-SDK/12-SP4/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-SDK12-SP4-Debuginfo-Pool for x86_64 SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-ha-geo12-sp4-updates-x86_64-sap-sp4", + "parent_channel_label": "sle12-sp4-sap-pool-x86_64", + "product_id": 1637, + "repository_id": 2834, + "parent_product_id": 1755, + "root_product_id": 1755, + "update_tag": "SLE-HA-GEO", + "url": "https://updates.suse.com/SUSE/Updates/SLE-HA-GEO/12-SP4/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-HA-GEO12-SP4-Updates for x86_64 SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-ha-geo12-sp4-debuginfo-updates-x86_64-sap-sp4", + "parent_channel_label": "sle12-sp4-sap-pool-x86_64", + "product_id": 1637, + "repository_id": 2835, + "parent_product_id": 1755, + "root_product_id": 1755, + "update_tag": "SLE-HA-GEO", + "url": "https://updates.suse.com/SUSE/Updates/SLE-HA-GEO/12-SP4/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-HA-GEO12-SP4-Debuginfo-Updates for x86_64 SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-ha-geo12-sp4-pool-x86_64-sap-sp4", + "parent_channel_label": "sle12-sp4-sap-pool-x86_64", + "product_id": 1637, + "repository_id": 2836, + "parent_product_id": 1755, + "root_product_id": 1755, + "update_tag": "SLE-HA-GEO", + "url": "https://updates.suse.com/SUSE/Products/SLE-HA-GEO/12-SP4/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-HA-GEO12-SP4-Pool for x86_64 SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-ha-geo12-sp4-debuginfo-pool-x86_64-sap-sp4", + "parent_channel_label": "sle12-sp4-sap-pool-x86_64", + "product_id": 1637, + "repository_id": 2837, + "parent_product_id": 1755, + "root_product_id": 1755, + "update_tag": "SLE-HA-GEO", + "url": "https://updates.suse.com/SUSE/Products/SLE-HA-GEO/12-SP4/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-HA-GEO12-SP4-Debuginfo-Pool for x86_64 SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-we12-sp4-updates-x86_64-sap-sp4", + "parent_channel_label": "sle12-sp4-sap-pool-x86_64", + "product_id": 1639, + "repository_id": 2844, + "parent_product_id": 1755, + "root_product_id": 1755, + "update_tag": "SLE-WE", + "url": "https://updates.suse.com/SUSE/Updates/SLE-WE/12-SP4/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-WE12-SP4-Updates for x86_64 SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-we12-sp4-debuginfo-updates-x86_64-sap-sp4", + "parent_channel_label": "sle12-sp4-sap-pool-x86_64", + "product_id": 1639, + "repository_id": 2845, + "parent_product_id": 1755, + "root_product_id": 1755, + "update_tag": "SLE-WE", + "url": "https://updates.suse.com/SUSE/Updates/SLE-WE/12-SP4/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-WE12-SP4-Debuginfo-Updates for x86_64 SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-we12-sp4-pool-x86_64-sap-sp4", + "parent_channel_label": "sle12-sp4-sap-pool-x86_64", + "product_id": 1639, + "repository_id": 2846, + "parent_product_id": 1755, + "root_product_id": 1755, + "update_tag": "SLE-WE", + "url": "https://updates.suse.com/SUSE/Products/SLE-WE/12-SP4/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-WE12-SP4-Pool for x86_64 SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-we12-sp4-debuginfo-pool-x86_64-sap-sp4", + "parent_channel_label": "sle12-sp4-sap-pool-x86_64", + "product_id": 1639, + "repository_id": 2847, + "parent_product_id": 1755, + "root_product_id": 1755, + "update_tag": "SLE-WE", + "url": "https://updates.suse.com/SUSE/Products/SLE-WE/12-SP4/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-WE12-SP4-Debuginfo-Pool for x86_64 SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-12-sp4-ga-desktop-nvidia-driver-we-sap-sp4", + "parent_channel_label": "sle12-sp4-sap-pool-x86_64", + "product_id": 1639, + "repository_id": 3529, + "parent_product_id": 1755, + "root_product_id": 1755, + "update_tag": null, + "url": "https://download.nvidia.com/suse/sle12sp4/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-12-SP4-GA-Desktop-nVidia-Driver for x86_64 WE-SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-manager-tools12-beta-updates-x86_64-sap-sp4", + "parent_channel_label": "sle12-sp4-sap-pool-x86_64", + "product_id": 1747, + "repository_id": 3077, + "parent_product_id": 1755, + "root_product_id": 1755, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/12-BETA/x86_64/update/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools12-BETA-Updates for x86_64 SAP SP4", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools12-beta-debuginfo-updates-x86_64-sap-sp4", + "parent_channel_label": "sle12-sp4-sap-pool-x86_64", + "product_id": 1747, + "repository_id": 3078, + "parent_product_id": 1755, + "root_product_id": 1755, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/12-BETA/x86_64/update_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools12-BETA-Debuginfo-Updates for x86_64 SAP SP4", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools12-beta-pool-x86_64-sap-sp4", + "parent_channel_label": "sle12-sp4-sap-pool-x86_64", + "product_id": 1747, + "repository_id": 3079, + "parent_product_id": 1755, + "root_product_id": 1755, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/12-BETA/x86_64/product/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools12-BETA-Pool for x86_64 SAP SP4", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools12-beta-debuginfo-pool-x86_64-sap-sp4", + "parent_channel_label": "sle12-sp4-sap-pool-x86_64", + "product_id": 1747, + "repository_id": 3080, + "parent_product_id": 1755, + "root_product_id": 1755, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/12-BETA/x86_64/product_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools12-BETA-Debuginfo-Pool for x86_64 SAP SP4", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-live-patching12-sp4-updates-x86_64-sap-sp4", + "parent_channel_label": "sle12-sp4-sap-pool-x86_64", + "product_id": 1757, + "repository_id": 3163, + "parent_product_id": 1755, + "root_product_id": 1755, + "update_tag": "SLE-Live-Patching", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Live-Patching/12-SP4/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Live-Patching12-SP4-Updates for x86_64 SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-live-patching12-sp4-debuginfo-updates-x86_64-sap-sp4", + "parent_channel_label": "sle12-sp4-sap-pool-x86_64", + "product_id": 1757, + "repository_id": 3164, + "parent_product_id": 1755, + "root_product_id": 1755, + "update_tag": "SLE-Live-Patching", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Live-Patching/12-SP4/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Live-Patching12-SP4-Debuginfo-Updates for x86_64 SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-live-patching12-sp4-pool-x86_64-sap-sp4", + "parent_channel_label": "sle12-sp4-sap-pool-x86_64", + "product_id": 1757, + "repository_id": 3165, + "parent_product_id": 1755, + "root_product_id": 1755, + "update_tag": "SLE-Live-Patching", + "url": "https://updates.suse.com/SUSE/Products/SLE-Live-Patching/12-SP4/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Live-Patching12-SP4-Pool for x86_64 SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-live-patching12-sp4-debuginfo-pool-x86_64-sap-sp4", + "parent_channel_label": "sle12-sp4-sap-pool-x86_64", + "product_id": 1757, + "repository_id": 3166, + "parent_product_id": 1755, + "root_product_id": 1755, + "update_tag": "SLE-Live-Patching", + "url": "https://updates.suse.com/SUSE/Products/SLE-Live-Patching/12-SP4/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Live-Patching12-SP4-Debuginfo-Pool for x86_64 SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-packagehub-12-sp4-standard-pool-x86_64-sap-sp4", + "parent_channel_label": "sle12-sp4-sap-pool-x86_64", + "product_id": 1813, + "repository_id": 3460, + "parent_product_id": 1755, + "root_product_id": 1755, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-12-SP4_x86_64/standard/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-12-SP4-Standard-Pool for x86_64 SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-packagehub-12-sp4-debuginfo-x86_64-sap-sp4", + "parent_channel_label": "sle12-sp4-sap-pool-x86_64", + "product_id": 1813, + "repository_id": 3461, + "parent_product_id": 1755, + "root_product_id": 1755, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-12-SP4_x86_64/standard_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-12-SP4-Debuginfo for x86_64 SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-packagehub-12-sp4-pool-x86_64-sap-sp4", + "parent_channel_label": "sle12-sp4-sap-pool-x86_64", + "product_id": 1813, + "repository_id": 3462, + "parent_product_id": 1755, + "root_product_id": 1755, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-12-SP4_x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-12-SP4-Pool for x86_64 SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles12-sp4-ltss-updates-x86_64-sap", + "parent_channel_label": "sle12-sp4-sap-pool-x86_64", + "product_id": 2117, + "repository_id": 4492, + "parent_product_id": 1755, + "root_product_id": 1755, + "update_tag": "SLE-SERVER", + "url": "https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-SP4-LTSS/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLES12-SP4-LTSS-Updates for x86_64 SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles12-sp4-ltss-debuginfo-updates-x86_64-sap", + "parent_channel_label": "sle12-sp4-sap-pool-x86_64", + "product_id": 2117, + "repository_id": 4493, + "parent_product_id": 1755, + "root_product_id": 1755, + "update_tag": "SLE-SERVER", + "url": "https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-SP4-LTSS/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLES12-SP4-LTSS-Debuginfo-Updates for x86_64 SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-manager-tools12-updates-aarch64-hpc-sp4", + "parent_channel_label": "sle12-sp4-hpc-pool-aarch64", + "product_id": 1758, + "repository_id": 2179, + "parent_product_id": null, + "root_product_id": 1758, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/12/aarch64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Manager-Tools12-Updates for aarch64 HPC SP4", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools12-debuginfo-updates-aarch64-hpc-sp4", + "parent_channel_label": "sle12-sp4-hpc-pool-aarch64", + "product_id": 1758, + "repository_id": 2180, + "parent_product_id": null, + "root_product_id": 1758, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/12/aarch64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Manager-Tools12-Debuginfo-Updates for aarch64 HPC SP4", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools12-pool-aarch64-hpc-sp4", + "parent_channel_label": "sle12-sp4-hpc-pool-aarch64", + "product_id": 1758, + "repository_id": 2181, + "parent_product_id": null, + "root_product_id": 1758, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/12/aarch64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Manager-Tools12-Pool for aarch64 HPC SP4", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools12-debuginfo-pool-aarch64-hpc-sp4", + "parent_channel_label": "sle12-sp4-hpc-pool-aarch64", + "product_id": 1758, + "repository_id": 2182, + "parent_product_id": null, + "root_product_id": 1758, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/12/aarch64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Manager-Tools12-Debuginfo-Pool for aarch64 HPC SP4", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sles12-sp4-updates-aarch64-hpc-sp4", + "parent_channel_label": "sle12-sp4-hpc-pool-aarch64", + "product_id": 1758, + "repository_id": 2787, + "parent_product_id": null, + "root_product_id": 1758, + "update_tag": "SLE-SERVER", + "url": "https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-SP4/aarch64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLES12-SP4-Updates for aarch64 HPC", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles12-sp4-debuginfo-updates-aarch64-hpc-sp4", + "parent_channel_label": "sle12-sp4-hpc-pool-aarch64", + "product_id": 1758, + "repository_id": 2788, + "parent_product_id": null, + "root_product_id": 1758, + "update_tag": "SLE-SERVER", + "url": "https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-SP4/aarch64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLES12-SP4-Debuginfo-Updates for aarch64 HPC", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles12-sp4-installer-updates-aarch64-hpc", + "parent_channel_label": "sle12-sp4-hpc-pool-aarch64", + "product_id": 1758, + "repository_id": 2789, + "parent_product_id": null, + "root_product_id": 1758, + "update_tag": "SLE-SERVER-INSTALLER", + "url": "https://updates.suse.com/SUSE/Updates/SLE-SERVER-INSTALLER/12-SP4/aarch64/update/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLES12-SP4-Installer-Updates for aarch64 HPC", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles12-sp4-pool-aarch64-hpc-sp4", + "parent_channel_label": "sle12-sp4-hpc-pool-aarch64", + "product_id": 1758, + "repository_id": 2790, + "parent_product_id": null, + "root_product_id": 1758, + "update_tag": "SLE-SERVER", + "url": "https://updates.suse.com/SUSE/Products/SLE-SERVER/12-SP4/aarch64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLES12-SP4-Pool for aarch64 HPC", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles12-sp4-debuginfo-pool-aarch64-hpc-sp4", + "parent_channel_label": "sle12-sp4-hpc-pool-aarch64", + "product_id": 1758, + "repository_id": 2791, + "parent_product_id": null, + "root_product_id": 1758, + "update_tag": "SLE-SERVER", + "url": "https://updates.suse.com/SUSE/Products/SLE-SERVER/12-SP4/aarch64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLES12-SP4-Debuginfo-Pool for aarch64 HPC", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle12-sp4-hpc-updates-aarch64", + "parent_channel_label": "sle12-sp4-hpc-pool-aarch64", + "product_id": 1758, + "repository_id": 3187, + "parent_product_id": null, + "root_product_id": 1758, + "update_tag": "SLE-HPC", + "url": "https://updates.suse.com/SUSE/Updates/SLE-HPC/12-SP4/aarch64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE12-SP4-HPC-Updates for aarch64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle12-sp4-hpc-debuginfo-updates-aarch64", + "parent_channel_label": "sle12-sp4-hpc-pool-aarch64", + "product_id": 1758, + "repository_id": 3188, + "parent_product_id": null, + "root_product_id": 1758, + "update_tag": "SLE-HPC", + "url": "https://updates.suse.com/SUSE/Updates/SLE-HPC/12-SP4/aarch64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE12-SP4-HPC-Debuginfo-Updates for aarch64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle12-sp4-hpc-pool-aarch64", + "parent_channel_label": null, + "product_id": 1758, + "repository_id": 3189, + "parent_product_id": null, + "root_product_id": 1758, + "update_tag": "SLE-HPC", + "url": "https://updates.suse.com/SUSE/Products/SLE-HPC/12-SP4/aarch64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE12-SP4-HPC-Pool for aarch64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle12-sp4-hpc-debuginfo-pool-aarch64", + "parent_channel_label": "sle12-sp4-hpc-pool-aarch64", + "product_id": 1758, + "repository_id": 3190, + "parent_product_id": null, + "root_product_id": 1758, + "update_tag": "SLE-HPC", + "url": "https://updates.suse.com/SUSE/Products/SLE-HPC/12-SP4/aarch64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE12-SP4-HPC-Debuginfo-Pool for aarch64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-toolchain12-updates-aarch64-hpc-sp4", + "parent_channel_label": "sle12-sp4-hpc-pool-aarch64", + "product_id": 1376, + "repository_id": 2086, + "parent_product_id": 1758, + "root_product_id": 1758, + "update_tag": "SLE-Module-Toolchain", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Toolchain/12/aarch64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Toolchain12-Updates for aarch64 HPC SP4", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-toolchain12-debuginfo-updates-aarch64-hpc-sp4", + "parent_channel_label": "sle12-sp4-hpc-pool-aarch64", + "product_id": 1376, + "repository_id": 2087, + "parent_product_id": 1758, + "root_product_id": 1758, + "update_tag": "SLE-Module-Toolchain", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Toolchain/12/aarch64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Toolchain12-Debuginfo-Updates for aarch64 HPC SP4", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-toolchain12-pool-aarch64-hpc-sp4", + "parent_channel_label": "sle12-sp4-hpc-pool-aarch64", + "product_id": 1376, + "repository_id": 2088, + "parent_product_id": 1758, + "root_product_id": 1758, + "update_tag": "SLE-Module-Toolchain", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Toolchain/12/aarch64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Toolchain12-Pool for aarch64 HPC SP4", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-toolchain12-debuginfo-pool-aarch64-hpc-sp4", + "parent_channel_label": "sle12-sp4-hpc-pool-aarch64", + "product_id": 1376, + "repository_id": 2089, + "parent_product_id": 1758, + "root_product_id": 1758, + "update_tag": "SLE-Module-Toolchain", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Toolchain/12/aarch64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Toolchain12-Debuginfo-Pool for aarch64 HPC SP4", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-hpc12-updates-aarch64-hpc-sp4", + "parent_channel_label": "sle12-sp4-hpc-pool-aarch64", + "product_id": 1522, + "repository_id": 2421, + "parent_product_id": 1758, + "root_product_id": 1758, + "update_tag": "SLE-Module-HPC", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-HPC/12/aarch64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-HPC12-Updates for aarch64 HPC SP4", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-hpc12-debuginfo-updates-aarch64-hpc-sp4", + "parent_channel_label": "sle12-sp4-hpc-pool-aarch64", + "product_id": 1522, + "repository_id": 2422, + "parent_product_id": 1758, + "root_product_id": 1758, + "update_tag": "SLE-Module-HPC", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-HPC/12/aarch64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-HPC12-Debuginfo-Updates for aarch64 HPC SP4", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-hpc12-pool-aarch64-hpc-sp4", + "parent_channel_label": "sle12-sp4-hpc-pool-aarch64", + "product_id": 1522, + "repository_id": 2423, + "parent_product_id": 1758, + "root_product_id": 1758, + "update_tag": "SLE-Module-HPC", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-HPC/12/aarch64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-HPC12-Pool for aarch64 HPC SP4", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-hpc12-debuginfo-pool-aarch64-hpc-sp4", + "parent_channel_label": "sle12-sp4-hpc-pool-aarch64", + "product_id": 1522, + "repository_id": 2424, + "parent_product_id": 1758, + "root_product_id": 1758, + "update_tag": "SLE-Module-HPC", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-HPC/12/aarch64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-HPC12-Debuginfo-Pool for aarch64 HPC SP4", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud12-updates-aarch64-hpc-sp4", + "parent_channel_label": "sle12-sp4-hpc-pool-aarch64", + "product_id": 1528, + "repository_id": 2157, + "parent_product_id": 1758, + "root_product_id": 1758, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/12/aarch64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud12-Updates for aarch64 HPC SP4", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud12-debuginfo-updates-aarch64-hpc-sp4", + "parent_channel_label": "sle12-sp4-hpc-pool-aarch64", + "product_id": 1528, + "repository_id": 2158, + "parent_product_id": 1758, + "root_product_id": 1758, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/12/aarch64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud12-Debuginfo-Updates for aarch64 HPC SP4", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud12-pool-aarch64-hpc-sp4", + "parent_channel_label": "sle12-sp4-hpc-pool-aarch64", + "product_id": 1528, + "repository_id": 2159, + "parent_product_id": 1758, + "root_product_id": 1758, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/12/aarch64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud12-Pool for aarch64 HPC SP4", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud12-debuginfo-pool-aarch64-hpc-sp4", + "parent_channel_label": "sle12-sp4-hpc-pool-aarch64", + "product_id": 1528, + "repository_id": 2160, + "parent_product_id": 1758, + "root_product_id": 1758, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/12/aarch64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud12-Debuginfo-Pool for aarch64 HPC SP4", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting12-updates-aarch64-hpc-sp4", + "parent_channel_label": "sle12-sp4-hpc-pool-aarch64", + "product_id": 1539, + "repository_id": 2476, + "parent_product_id": 1758, + "root_product_id": 1758, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/12/aarch64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Web-Scripting12-Updates for aarch64 HPC SP4", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting12-debuginfo-updates-aarch64-hpc-sp4", + "parent_channel_label": "sle12-sp4-hpc-pool-aarch64", + "product_id": 1539, + "repository_id": 2477, + "parent_product_id": 1758, + "root_product_id": 1758, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/12/aarch64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Web-Scripting12-Debuginfo-Updates for aarch64 HPC SP4", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting12-pool-aarch64-hpc-sp4", + "parent_channel_label": "sle12-sp4-hpc-pool-aarch64", + "product_id": 1539, + "repository_id": 2478, + "parent_product_id": 1758, + "root_product_id": 1758, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/12/aarch64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Web-Scripting12-Pool for aarch64 HPC SP4", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting12-debuginfo-pool-aarch64-hpc-sp4", + "parent_channel_label": "sle12-sp4-hpc-pool-aarch64", + "product_id": 1539, + "repository_id": 2479, + "parent_product_id": 1758, + "root_product_id": 1758, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/12/aarch64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Web-Scripting12-Debuginfo-Pool for aarch64 HPC SP4", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-sdk12-sp4-updates-aarch64-hpc-sp4", + "parent_channel_label": "sle12-sp4-hpc-pool-aarch64", + "product_id": 1633, + "repository_id": 2814, + "parent_product_id": 1758, + "root_product_id": 1758, + "update_tag": "SLE-SDK", + "url": "https://updates.suse.com/SUSE/Updates/SLE-SDK/12-SP4/aarch64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-SDK12-SP4-Updates for aarch64 HPC", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-sdk12-sp4-debuginfo-updates-aarch64-hpc-sp4", + "parent_channel_label": "sle12-sp4-hpc-pool-aarch64", + "product_id": 1633, + "repository_id": 2815, + "parent_product_id": 1758, + "root_product_id": 1758, + "update_tag": "SLE-SDK", + "url": "https://updates.suse.com/SUSE/Updates/SLE-SDK/12-SP4/aarch64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-SDK12-SP4-Debuginfo-Updates for aarch64 HPC", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-sdk12-sp4-pool-aarch64-hpc-sp4", + "parent_channel_label": "sle12-sp4-hpc-pool-aarch64", + "product_id": 1633, + "repository_id": 2816, + "parent_product_id": 1758, + "root_product_id": 1758, + "update_tag": "SLE-SDK", + "url": "https://updates.suse.com/SUSE/Products/SLE-SDK/12-SP4/aarch64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-SDK12-SP4-Pool for aarch64 HPC", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-sdk12-sp4-debuginfo-pool-aarch64-hpc-sp4", + "parent_channel_label": "sle12-sp4-hpc-pool-aarch64", + "product_id": 1633, + "repository_id": 2817, + "parent_product_id": 1758, + "root_product_id": 1758, + "update_tag": "SLE-SDK", + "url": "https://updates.suse.com/SUSE/Products/SLE-SDK/12-SP4/aarch64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-SDK12-SP4-Debuginfo-Pool for aarch64 HPC", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-manager-tools12-beta-updates-aarch64-hpc-sp4", + "parent_channel_label": "sle12-sp4-hpc-pool-aarch64", + "product_id": 1744, + "repository_id": 3062, + "parent_product_id": 1758, + "root_product_id": 1758, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/12-BETA/aarch64/update/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools12-BETA-Updates for aarch64 HPC SP4", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools12-beta-debuginfo-updates-aarch64-hpc-sp4", + "parent_channel_label": "sle12-sp4-hpc-pool-aarch64", + "product_id": 1744, + "repository_id": 3063, + "parent_product_id": 1758, + "root_product_id": 1758, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/12-BETA/aarch64/update_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools12-BETA-Debuginfo-Updates for aarch64 HPC SP4", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools12-beta-pool-aarch64-hpc-sp4", + "parent_channel_label": "sle12-sp4-hpc-pool-aarch64", + "product_id": 1744, + "repository_id": 3064, + "parent_product_id": 1758, + "root_product_id": 1758, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/12-BETA/aarch64/product/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools12-BETA-Pool for aarch64 HPC SP4", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools12-beta-debuginfo-pool-aarch64-hpc-sp4", + "parent_channel_label": "sle12-sp4-hpc-pool-aarch64", + "product_id": 1744, + "repository_id": 3065, + "parent_product_id": 1758, + "root_product_id": 1758, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/12-BETA/aarch64/product_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools12-BETA-Debuginfo-Pool for aarch64 HPC SP4", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "suse-packagehub-12-sp4-standard-pool-aarch64-hpc-sp4", + "parent_channel_label": "sle12-sp4-hpc-pool-aarch64", + "product_id": 1810, + "repository_id": 3451, + "parent_product_id": 1758, + "root_product_id": 1758, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-12-SP4_aarch64/standard/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-12-SP4-Standard-Pool for aarch64 HPC", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-packagehub-12-sp4-debuginfo-aarch64-hpc-sp4", + "parent_channel_label": "sle12-sp4-hpc-pool-aarch64", + "product_id": 1810, + "repository_id": 3452, + "parent_product_id": 1758, + "root_product_id": 1758, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-12-SP4_aarch64/standard_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-12-SP4-Debuginfo for aarch64 HPC", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-packagehub-12-sp4-pool-aarch64-hpc-sp4", + "parent_channel_label": "sle12-sp4-hpc-pool-aarch64", + "product_id": 1810, + "repository_id": 3453, + "parent_product_id": 1758, + "root_product_id": 1758, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-12-SP4_aarch64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-12-SP4-Pool for aarch64 HPC", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles12-sp4-espos-updates-aarch64-hpc-sp4", + "parent_channel_label": "sle12-sp4-hpc-pool-aarch64", + "product_id": 1817, + "repository_id": 3477, + "parent_product_id": 1758, + "root_product_id": 1758, + "update_tag": "SLE-SERVER", + "url": "https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-SP4-ESPOS/aarch64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLES12-SP4-ESPOS-Updates for aarch64 HPC", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles12-sp4-espos-pool-aarch64-hpc-sp4", + "parent_channel_label": "sle12-sp4-hpc-pool-aarch64", + "product_id": 1817, + "repository_id": 3478, + "parent_product_id": 1758, + "root_product_id": 1758, + "update_tag": "SLE-SERVER", + "url": "https://updates.suse.com/SUSE/Products/SLE-SERVER/12-SP4-ESPOS/aarch64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLES12-SP4-ESPOS-Pool for aarch64 HPC", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles12-sp4-espos-debuginfo-pool-aarch64-hpc-sp4", + "parent_channel_label": "sle12-sp4-hpc-pool-aarch64", + "product_id": 1817, + "repository_id": 3479, + "parent_product_id": 1758, + "root_product_id": 1758, + "update_tag": "SLE-SERVER", + "url": "https://updates.suse.com/SUSE/Products/SLE-SERVER/12-SP4-ESPOS/aarch64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLES12-SP4-ESPOS-Debuginfo-Pool for aarch64 HPC", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles12-sp4-espos-debuginfo-updates-aarch64-hpc-sp4", + "parent_channel_label": "sle12-sp4-hpc-pool-aarch64", + "product_id": 1817, + "repository_id": 3528, + "parent_product_id": 1758, + "root_product_id": 1758, + "update_tag": "SLE-SERVER", + "url": "https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-SP4-ESPOS/aarch64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLES12-SP4-ESPOS-Debuginfo-Updates for aarch64 HPC", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles12-sp4-ltss-updates-aarch64-hpc", + "parent_channel_label": "sle12-sp4-hpc-pool-aarch64", + "product_id": 2114, + "repository_id": 4486, + "parent_product_id": 1758, + "root_product_id": 1758, + "update_tag": "SLE-SERVER", + "url": "https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-SP4-LTSS/aarch64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLES12-SP4-LTSS-Updates for aarch64 HPC", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles12-sp4-ltss-debuginfo-updates-aarch64-hpc", + "parent_channel_label": "sle12-sp4-hpc-pool-aarch64", + "product_id": 2114, + "repository_id": 4487, + "parent_product_id": 1758, + "root_product_id": 1758, + "update_tag": "SLE-SERVER", + "url": "https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-SP4-LTSS/aarch64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLES12-SP4-LTSS-Debuginfo-Updates for aarch64 HPC", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-manager-tools12-updates-x86_64-hpc-sp4", + "parent_channel_label": "sle12-sp4-hpc-pool-x86_64", + "product_id": 1759, + "repository_id": 1732, + "parent_product_id": null, + "root_product_id": 1759, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/12/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Manager-Tools12-Updates for x86_64 HPC SP4", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools12-debuginfo-updates-x86_64-hpc-sp4", + "parent_channel_label": "sle12-sp4-hpc-pool-x86_64", + "product_id": 1759, + "repository_id": 1733, + "parent_product_id": null, + "root_product_id": 1759, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/12/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Manager-Tools12-Debuginfo-Updates for x86_64 HPC SP4", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools12-pool-x86_64-hpc-sp4", + "parent_channel_label": "sle12-sp4-hpc-pool-x86_64", + "product_id": 1759, + "repository_id": 1734, + "parent_product_id": null, + "root_product_id": 1759, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/12/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Manager-Tools12-Pool for x86_64 HPC SP4", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools12-debuginfo-pool-x86_64-hpc-sp4", + "parent_channel_label": "sle12-sp4-hpc-pool-x86_64", + "product_id": 1759, + "repository_id": 1735, + "parent_product_id": null, + "root_product_id": 1759, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/12/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Manager-Tools12-Debuginfo-Pool for x86_64 HPC SP4", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sles12-sp4-updates-x86_64-hpc-sp4", + "parent_channel_label": "sle12-sp4-hpc-pool-x86_64", + "product_id": 1759, + "repository_id": 2769, + "parent_product_id": null, + "root_product_id": 1759, + "update_tag": "SLE-SERVER", + "url": "https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-SP4/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLES12-SP4-Updates for x86_64 HPC", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles12-sp4-debuginfo-updates-x86_64-hpc-sp4", + "parent_channel_label": "sle12-sp4-hpc-pool-x86_64", + "product_id": 1759, + "repository_id": 2770, + "parent_product_id": null, + "root_product_id": 1759, + "update_tag": "SLE-SERVER", + "url": "https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-SP4/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLES12-SP4-Debuginfo-Updates for x86_64 HPC", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles12-sp4-installer-updates-x86_64-hpc", + "parent_channel_label": "sle12-sp4-hpc-pool-x86_64", + "product_id": 1759, + "repository_id": 2771, + "parent_product_id": null, + "root_product_id": 1759, + "update_tag": "SLE-SERVER-INSTALLER", + "url": "https://updates.suse.com/SUSE/Updates/SLE-SERVER-INSTALLER/12-SP4/x86_64/update/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLES12-SP4-Installer-Updates for x86_64 HPC", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles12-sp4-pool-x86_64-hpc-sp4", + "parent_channel_label": "sle12-sp4-hpc-pool-x86_64", + "product_id": 1759, + "repository_id": 2772, + "parent_product_id": null, + "root_product_id": 1759, + "update_tag": "SLE-SERVER", + "url": "https://updates.suse.com/SUSE/Products/SLE-SERVER/12-SP4/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLES12-SP4-Pool for x86_64 HPC", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles12-sp4-debuginfo-pool-x86_64-hpc-sp4", + "parent_channel_label": "sle12-sp4-hpc-pool-x86_64", + "product_id": 1759, + "repository_id": 2773, + "parent_product_id": null, + "root_product_id": 1759, + "update_tag": "SLE-SERVER", + "url": "https://updates.suse.com/SUSE/Products/SLE-SERVER/12-SP4/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLES12-SP4-Debuginfo-Pool for x86_64 HPC", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle12-sp4-hpc-updates-x86_64", + "parent_channel_label": "sle12-sp4-hpc-pool-x86_64", + "product_id": 1759, + "repository_id": 3192, + "parent_product_id": null, + "root_product_id": 1759, + "update_tag": "SLE-HPC", + "url": "https://updates.suse.com/SUSE/Updates/SLE-HPC/12-SP4/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE12-SP4-HPC-Updates for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle12-sp4-hpc-debuginfo-updates-x86_64", + "parent_channel_label": "sle12-sp4-hpc-pool-x86_64", + "product_id": 1759, + "repository_id": 3193, + "parent_product_id": null, + "root_product_id": 1759, + "update_tag": "SLE-HPC", + "url": "https://updates.suse.com/SUSE/Updates/SLE-HPC/12-SP4/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE12-SP4-HPC-Debuginfo-Updates for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle12-sp4-hpc-pool-x86_64", + "parent_channel_label": null, + "product_id": 1759, + "repository_id": 3194, + "parent_product_id": null, + "root_product_id": 1759, + "update_tag": "SLE-HPC", + "url": "https://updates.suse.com/SUSE/Products/SLE-HPC/12-SP4/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE12-SP4-HPC-Pool for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle12-sp4-hpc-debuginfo-pool-x86_64", + "parent_channel_label": "sle12-sp4-hpc-pool-x86_64", + "product_id": 1759, + "repository_id": 3195, + "parent_product_id": null, + "root_product_id": 1759, + "update_tag": "SLE-HPC", + "url": "https://updates.suse.com/SUSE/Products/SLE-HPC/12-SP4/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE12-SP4-HPC-Debuginfo-Pool for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-legacy12-updates-x86_64-hpc-sp4", + "parent_channel_label": "sle12-sp4-hpc-pool-x86_64", + "product_id": 1150, + "repository_id": 1676, + "parent_product_id": 1759, + "root_product_id": 1759, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/12/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy12-Updates for x86_64 HPC SP4", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-legacy12-debuginfo-updates-x86_64-hpc-sp4", + "parent_channel_label": "sle12-sp4-hpc-pool-x86_64", + "product_id": 1150, + "repository_id": 1677, + "parent_product_id": 1759, + "root_product_id": 1759, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/12/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy12-Debuginfo-Updates for x86_64 HPC SP4", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-legacy12-pool-x86_64-hpc-sp4", + "parent_channel_label": "sle12-sp4-hpc-pool-x86_64", + "product_id": 1150, + "repository_id": 1678, + "parent_product_id": 1759, + "root_product_id": 1759, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/12/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy12-Pool for x86_64 HPC SP4", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-legacy12-debuginfo-pool-x86_64-hpc-sp4", + "parent_channel_label": "sle12-sp4-hpc-pool-x86_64", + "product_id": 1150, + "repository_id": 1679, + "parent_product_id": 1759, + "root_product_id": 1759, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/12/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy12-Debuginfo-Pool for x86_64 HPC SP4", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting12-updates-x86_64-hpc-sp4", + "parent_channel_label": "sle12-sp4-hpc-pool-x86_64", + "product_id": 1153, + "repository_id": 1688, + "parent_product_id": 1759, + "root_product_id": 1759, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/12/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Web-Scripting12-Updates for x86_64 HPC SP4", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting12-debuginfo-updates-x86_64-hpc-sp4", + "parent_channel_label": "sle12-sp4-hpc-pool-x86_64", + "product_id": 1153, + "repository_id": 1689, + "parent_product_id": 1759, + "root_product_id": 1759, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/12/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Web-Scripting12-Debuginfo-Updates for x86_64 HPC SP4", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting12-pool-x86_64-hpc-sp4", + "parent_channel_label": "sle12-sp4-hpc-pool-x86_64", + "product_id": 1153, + "repository_id": 1690, + "parent_product_id": 1759, + "root_product_id": 1759, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/12/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Web-Scripting12-Pool for x86_64 HPC SP4", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting12-debuginfo-pool-x86_64-hpc-sp4", + "parent_channel_label": "sle12-sp4-hpc-pool-x86_64", + "product_id": 1153, + "repository_id": 1691, + "parent_product_id": 1759, + "root_product_id": 1759, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/12/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Web-Scripting12-Debuginfo-Pool for x86_64 HPC SP4", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-adv-systems-management12-updates-x86_64-hpc-sp4", + "parent_channel_label": "sle12-sp4-hpc-pool-x86_64", + "product_id": 1212, + "repository_id": 1704, + "parent_product_id": 1759, + "root_product_id": 1759, + "update_tag": "SLE-Module-Adv-Systems-Management", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Adv-Systems-Management/12/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Adv-Systems-Management12-Updates for x86_64 HPC SP4", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-adv-systems-management12-debuginfo-updates-x86_64-hpc-sp4", + "parent_channel_label": "sle12-sp4-hpc-pool-x86_64", + "product_id": 1212, + "repository_id": 1705, + "parent_product_id": 1759, + "root_product_id": 1759, + "update_tag": "SLE-Module-Adv-Systems-Management", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Adv-Systems-Management/12/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Adv-Systems-Management12-Debuginfo-Updates for x86_64 HPC SP4", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-adv-systems-management12-pool-x86_64-hpc-sp4", + "parent_channel_label": "sle12-sp4-hpc-pool-x86_64", + "product_id": 1212, + "repository_id": 1706, + "parent_product_id": 1759, + "root_product_id": 1759, + "update_tag": "SLE-Module-Adv-Systems-Management", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Adv-Systems-Management/12/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Adv-Systems-Management12-Pool for x86_64 HPC SP4", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-adv-systems-management12-debuginfo-pool-x86_64-hpc-sp4", + "parent_channel_label": "sle12-sp4-hpc-pool-x86_64", + "product_id": 1212, + "repository_id": 1707, + "parent_product_id": 1759, + "root_product_id": 1759, + "update_tag": "SLE-Module-Adv-Systems-Management", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Adv-Systems-Management/12/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Adv-Systems-Management12-Debuginfo-Pool for x86_64 HPC SP4", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud12-updates-x86_64-hpc-sp4", + "parent_channel_label": "sle12-sp4-hpc-pool-x86_64", + "product_id": 1220, + "repository_id": 1700, + "parent_product_id": 1759, + "root_product_id": 1759, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/12/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud12-Updates for x86_64 HPC SP4", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud12-debuginfo-updates-x86_64-hpc-sp4", + "parent_channel_label": "sle12-sp4-hpc-pool-x86_64", + "product_id": 1220, + "repository_id": 1701, + "parent_product_id": 1759, + "root_product_id": 1759, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/12/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud12-Debuginfo-Updates for x86_64 HPC SP4", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud12-pool-x86_64-hpc-sp4", + "parent_channel_label": "sle12-sp4-hpc-pool-x86_64", + "product_id": 1220, + "repository_id": 1702, + "parent_product_id": 1759, + "root_product_id": 1759, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/12/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud12-Pool for x86_64 HPC SP4", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud12-debuginfo-pool-x86_64-hpc-sp4", + "parent_channel_label": "sle12-sp4-hpc-pool-x86_64", + "product_id": 1220, + "repository_id": 1703, + "parent_product_id": 1759, + "root_product_id": 1759, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/12/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud12-Debuginfo-Pool for x86_64 HPC SP4", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-containers12-updates-x86_64-hpc-sp4", + "parent_channel_label": "sle12-sp4-hpc-pool-x86_64", + "product_id": 1332, + "repository_id": 1864, + "parent_product_id": 1759, + "root_product_id": 1759, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/12/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers12-Updates for x86_64 HPC SP4", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-containers12-debuginfo-updates-x86_64-hpc-sp4", + "parent_channel_label": "sle12-sp4-hpc-pool-x86_64", + "product_id": 1332, + "repository_id": 1865, + "parent_product_id": 1759, + "root_product_id": 1759, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/12/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers12-Debuginfo-Updates for x86_64 HPC SP4", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-containers12-pool-x86_64-hpc-sp4", + "parent_channel_label": "sle12-sp4-hpc-pool-x86_64", + "product_id": 1332, + "repository_id": 1866, + "parent_product_id": 1759, + "root_product_id": 1759, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Containers/12/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers12-Pool for x86_64 HPC SP4", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-containers12-debuginfo-pool-x86_64-hpc-sp4", + "parent_channel_label": "sle12-sp4-hpc-pool-x86_64", + "product_id": 1332, + "repository_id": 1867, + "parent_product_id": 1759, + "root_product_id": 1759, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Containers/12/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers12-Debuginfo-Pool for x86_64 HPC SP4", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-toolchain12-updates-x86_64-hpc-sp4", + "parent_channel_label": "sle12-sp4-hpc-pool-x86_64", + "product_id": 1341, + "repository_id": 1903, + "parent_product_id": 1759, + "root_product_id": 1759, + "update_tag": "SLE-Module-Toolchain", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Toolchain/12/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Toolchain12-Updates for x86_64 HPC SP4", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-toolchain12-debuginfo-updates-x86_64-hpc-sp4", + "parent_channel_label": "sle12-sp4-hpc-pool-x86_64", + "product_id": 1341, + "repository_id": 1904, + "parent_product_id": 1759, + "root_product_id": 1759, + "update_tag": "SLE-Module-Toolchain", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Toolchain/12/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Toolchain12-Debuginfo-Updates for x86_64 HPC SP4", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-toolchain12-pool-x86_64-hpc-sp4", + "parent_channel_label": "sle12-sp4-hpc-pool-x86_64", + "product_id": 1341, + "repository_id": 1905, + "parent_product_id": 1759, + "root_product_id": 1759, + "update_tag": "SLE-Module-Toolchain", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Toolchain/12/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Toolchain12-Pool for x86_64 HPC SP4", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-toolchain12-debuginfo-pool-x86_64-hpc-sp4", + "parent_channel_label": "sle12-sp4-hpc-pool-x86_64", + "product_id": 1341, + "repository_id": 1906, + "parent_product_id": 1759, + "root_product_id": 1759, + "update_tag": "SLE-Module-Toolchain", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Toolchain/12/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Toolchain12-Debuginfo-Pool for x86_64 HPC SP4", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-pos12-sp2-updates-x86_64-hpc-sp4", + "parent_channel_label": "sle12-sp4-hpc-pool-x86_64", + "product_id": 1439, + "repository_id": 2289, + "parent_product_id": 1759, + "root_product_id": 1759, + "update_tag": "SLE-POS", + "url": "https://updates.suse.com/SUSE/Updates/SLE-POS/12-SP2/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-POS12-SP2-Updates for x86_64 HPC SP4", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-pos12-sp2-debuginfo-updates-x86_64-hpc-sp4", + "parent_channel_label": "sle12-sp4-hpc-pool-x86_64", + "product_id": 1439, + "repository_id": 2290, + "parent_product_id": 1759, + "root_product_id": 1759, + "update_tag": "SLE-POS", + "url": "https://updates.suse.com/SUSE/Updates/SLE-POS/12-SP2/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-POS12-SP2-Debuginfo-Updates for x86_64 HPC SP4", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-pos12-sp2-pool-x86_64-hpc-sp4", + "parent_channel_label": "sle12-sp4-hpc-pool-x86_64", + "product_id": 1439, + "repository_id": 2291, + "parent_product_id": 1759, + "root_product_id": 1759, + "update_tag": "SLE-POS", + "url": "https://updates.suse.com/SUSE/Products/SLE-POS/12-SP2/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-POS12-SP2-Pool for x86_64 HPC SP4", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-pos12-sp2-debuginfo-pool-x86_64-hpc-sp4", + "parent_channel_label": "sle12-sp4-hpc-pool-x86_64", + "product_id": 1439, + "repository_id": 2292, + "parent_product_id": 1759, + "root_product_id": 1759, + "update_tag": "SLE-POS", + "url": "https://updates.suse.com/SUSE/Products/SLE-POS/12-SP2/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-POS12-SP2-Debuginfo-Pool for x86_64 HPC SP4", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-pos12-sp2-client-updates-x86_64-hpc-sp4", + "parent_channel_label": "sle12-sp4-hpc-pool-x86_64", + "product_id": 1439, + "repository_id": 3130, + "parent_product_id": 1759, + "root_product_id": 1759, + "update_tag": "SLE-POS", + "url": "https://updates.suse.com/SUSE/Updates/SLE-POS/12-SP2-CLIENT/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-POS12-SP2-CLIENT-Updates for x86_64 HPC SP4", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-pos12-sp2-client-debuginfo-updates-x86_64-hpc-sp4", + "parent_channel_label": "sle12-sp4-hpc-pool-x86_64", + "product_id": 1439, + "repository_id": 3131, + "parent_product_id": 1759, + "root_product_id": 1759, + "update_tag": "SLE-POS", + "url": "https://updates.suse.com/SUSE/Updates/SLE-POS/12-SP2-CLIENT/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-POS12-SP2-CLIENT-Debuginfo-Updates for x86_64 HPC SP4", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-hpc12-updates-x86_64-hpc-sp4", + "parent_channel_label": "sle12-sp4-hpc-pool-x86_64", + "product_id": 1440, + "repository_id": 2294, + "parent_product_id": 1759, + "root_product_id": 1759, + "update_tag": "SLE-Module-HPC", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-HPC/12/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-HPC12-Updates for x86_64 HPC SP4", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-hpc12-debuginfo-updates-x86_64-hpc-sp4", + "parent_channel_label": "sle12-sp4-hpc-pool-x86_64", + "product_id": 1440, + "repository_id": 2295, + "parent_product_id": 1759, + "root_product_id": 1759, + "update_tag": "SLE-Module-HPC", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-HPC/12/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-HPC12-Debuginfo-Updates for x86_64 HPC SP4", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-hpc12-pool-x86_64-hpc-sp4", + "parent_channel_label": "sle12-sp4-hpc-pool-x86_64", + "product_id": 1440, + "repository_id": 2296, + "parent_product_id": 1759, + "root_product_id": 1759, + "update_tag": "SLE-Module-HPC", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-HPC/12/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-HPC12-Pool for x86_64 HPC SP4", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-hpc12-debuginfo-pool-x86_64-hpc-sp4", + "parent_channel_label": "sle12-sp4-hpc-pool-x86_64", + "product_id": 1440, + "repository_id": 2297, + "parent_product_id": 1759, + "root_product_id": 1759, + "update_tag": "SLE-Module-HPC", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-HPC/12/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-HPC12-Debuginfo-Pool for x86_64 HPC SP4", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-manager-server-3.1-updates-x86_64-hpc-sp4", + "parent_channel_label": "sle12-sp4-hpc-pool-x86_64", + "product_id": 1518, + "repository_id": 2400, + "parent_product_id": 1759, + "root_product_id": 1759, + "update_tag": "SUSE-Manager-Server-3.1", + "url": "https://updates.suse.com/SUSE/Updates/SUSE-Manager-Server/3.1/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-Manager-Server-3.1-Updates for x86_64 HPC SP4", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-manager-server-3.1-debuginfo-updates-x86_64-hpc-sp4", + "parent_channel_label": "sle12-sp4-hpc-pool-x86_64", + "product_id": 1518, + "repository_id": 2401, + "parent_product_id": 1759, + "root_product_id": 1759, + "update_tag": "SUSE-Manager-Server-3.1", + "url": "https://updates.suse.com/SUSE/Updates/SUSE-Manager-Server/3.1/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SUSE-Manager-Server-3.1-Debuginfo-Updates for x86_64 HPC SP4", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-manager-server-3.1-pool-x86_64-hpc-sp4", + "parent_channel_label": "sle12-sp4-hpc-pool-x86_64", + "product_id": 1518, + "repository_id": 2402, + "parent_product_id": 1759, + "root_product_id": 1759, + "update_tag": "SUSE-Manager-Server-3.1", + "url": "https://updates.suse.com/SUSE/Products/SUSE-Manager-Server/3.1/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-Manager-Server-3.1-Pool for x86_64 HPC SP4", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-manager-server-3.1-debuginfo-pool-x86_64-hpc-sp4", + "parent_channel_label": "sle12-sp4-hpc-pool-x86_64", + "product_id": 1518, + "repository_id": 2403, + "parent_product_id": 1759, + "root_product_id": 1759, + "update_tag": "SUSE-Manager-Server-3.1", + "url": "https://updates.suse.com/SUSE/Products/SUSE-Manager-Server/3.1/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SUSE-Manager-Server-3.1-Debuginfo-Pool for x86_64 HPC SP4", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-manager-proxy-3.1-updates-x86_64-hpc-sp4", + "parent_channel_label": "sle12-sp4-hpc-pool-x86_64", + "product_id": 1520, + "repository_id": 2410, + "parent_product_id": 1759, + "root_product_id": 1759, + "update_tag": "SUSE-Manager-Proxy-3.1", + "url": "https://updates.suse.com/SUSE/Updates/SUSE-Manager-Proxy/3.1/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-Manager-Proxy-3.1-Updates for x86_64 HPC SP4", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-manager-proxy-3.1-debuginfo-updates-x86_64-hpc-sp4", + "parent_channel_label": "sle12-sp4-hpc-pool-x86_64", + "product_id": 1520, + "repository_id": 2411, + "parent_product_id": 1759, + "root_product_id": 1759, + "update_tag": "SUSE-Manager-Proxy-3.1", + "url": "https://updates.suse.com/SUSE/Updates/SUSE-Manager-Proxy/3.1/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SUSE-Manager-Proxy-3.1-Debuginfo-Updates for x86_64 HPC SP4", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-manager-proxy-3.1-pool-x86_64-hpc-sp4", + "parent_channel_label": "sle12-sp4-hpc-pool-x86_64", + "product_id": 1520, + "repository_id": 2412, + "parent_product_id": 1759, + "root_product_id": 1759, + "update_tag": "SUSE-Manager-Proxy-3.1", + "url": "https://updates.suse.com/SUSE/Products/SUSE-Manager-Proxy/3.1/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-Manager-Proxy-3.1-Pool for x86_64 HPC SP4", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-manager-proxy-3.1-debuginfo-pool-x86_64-hpc-sp4", + "parent_channel_label": "sle12-sp4-hpc-pool-x86_64", + "product_id": 1520, + "repository_id": 2413, + "parent_product_id": 1759, + "root_product_id": 1759, + "update_tag": "SUSE-Manager-Proxy-3.1", + "url": "https://updates.suse.com/SUSE/Products/SUSE-Manager-Proxy/3.1/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SUSE-Manager-Proxy-3.1-Debuginfo-Pool for x86_64 HPC SP4", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-sdk12-sp4-updates-x86_64-hpc-sp4", + "parent_channel_label": "sle12-sp4-hpc-pool-x86_64", + "product_id": 1630, + "repository_id": 2799, + "parent_product_id": 1759, + "root_product_id": 1759, + "update_tag": "SLE-SDK", + "url": "https://updates.suse.com/SUSE/Updates/SLE-SDK/12-SP4/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-SDK12-SP4-Updates for x86_64 HPC", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-sdk12-sp4-debuginfo-updates-x86_64-hpc-sp4", + "parent_channel_label": "sle12-sp4-hpc-pool-x86_64", + "product_id": 1630, + "repository_id": 2800, + "parent_product_id": 1759, + "root_product_id": 1759, + "update_tag": "SLE-SDK", + "url": "https://updates.suse.com/SUSE/Updates/SLE-SDK/12-SP4/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-SDK12-SP4-Debuginfo-Updates for x86_64 HPC", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-sdk12-sp4-pool-x86_64-hpc-sp4", + "parent_channel_label": "sle12-sp4-hpc-pool-x86_64", + "product_id": 1630, + "repository_id": 2801, + "parent_product_id": 1759, + "root_product_id": 1759, + "update_tag": "SLE-SDK", + "url": "https://updates.suse.com/SUSE/Products/SLE-SDK/12-SP4/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-SDK12-SP4-Pool for x86_64 HPC", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-sdk12-sp4-debuginfo-pool-x86_64-hpc-sp4", + "parent_channel_label": "sle12-sp4-hpc-pool-x86_64", + "product_id": 1630, + "repository_id": 2802, + "parent_product_id": 1759, + "root_product_id": 1759, + "update_tag": "SLE-SDK", + "url": "https://updates.suse.com/SUSE/Products/SLE-SDK/12-SP4/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-SDK12-SP4-Debuginfo-Pool for x86_64 HPC", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-ha12-sp4-updates-x86_64-hpc-sp4", + "parent_channel_label": "sle12-sp4-hpc-pool-x86_64", + "product_id": 1634, + "repository_id": 2819, + "parent_product_id": 1759, + "root_product_id": 1759, + "update_tag": "SLE-HA", + "url": "https://updates.suse.com/SUSE/Updates/SLE-HA/12-SP4/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-HA12-SP4-Updates for x86_64 HPC", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-ha12-sp4-debuginfo-updates-x86_64-hpc-sp4", + "parent_channel_label": "sle12-sp4-hpc-pool-x86_64", + "product_id": 1634, + "repository_id": 2820, + "parent_product_id": 1759, + "root_product_id": 1759, + "update_tag": "SLE-HA", + "url": "https://updates.suse.com/SUSE/Updates/SLE-HA/12-SP4/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-HA12-SP4-Debuginfo-Updates for x86_64 HPC", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-ha12-sp4-pool-x86_64-hpc-sp4", + "parent_channel_label": "sle12-sp4-hpc-pool-x86_64", + "product_id": 1634, + "repository_id": 2821, + "parent_product_id": 1759, + "root_product_id": 1759, + "update_tag": "SLE-HA", + "url": "https://updates.suse.com/SUSE/Products/SLE-HA/12-SP4/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-HA12-SP4-Pool for x86_64 HPC", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-ha12-sp4-debuginfo-pool-x86_64-hpc-sp4", + "parent_channel_label": "sle12-sp4-hpc-pool-x86_64", + "product_id": 1634, + "repository_id": 2822, + "parent_product_id": 1759, + "root_product_id": 1759, + "update_tag": "SLE-HA", + "url": "https://updates.suse.com/SUSE/Products/SLE-HA/12-SP4/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-HA12-SP4-Debuginfo-Pool for x86_64 HPC", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-ha-geo12-sp4-updates-x86_64-hpc-sp4", + "parent_channel_label": "sle12-sp4-hpc-pool-x86_64", + "product_id": 1637, + "repository_id": 2834, + "parent_product_id": 1634, + "root_product_id": 1759, + "update_tag": "SLE-HA-GEO", + "url": "https://updates.suse.com/SUSE/Updates/SLE-HA-GEO/12-SP4/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-HA-GEO12-SP4-Updates for x86_64 HPC", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-ha-geo12-sp4-debuginfo-updates-x86_64-hpc-sp4", + "parent_channel_label": "sle12-sp4-hpc-pool-x86_64", + "product_id": 1637, + "repository_id": 2835, + "parent_product_id": 1634, + "root_product_id": 1759, + "update_tag": "SLE-HA-GEO", + "url": "https://updates.suse.com/SUSE/Updates/SLE-HA-GEO/12-SP4/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-HA-GEO12-SP4-Debuginfo-Updates for x86_64 HPC", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-ha-geo12-sp4-pool-x86_64-hpc-sp4", + "parent_channel_label": "sle12-sp4-hpc-pool-x86_64", + "product_id": 1637, + "repository_id": 2836, + "parent_product_id": 1634, + "root_product_id": 1759, + "update_tag": "SLE-HA-GEO", + "url": "https://updates.suse.com/SUSE/Products/SLE-HA-GEO/12-SP4/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-HA-GEO12-SP4-Pool for x86_64 HPC", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-ha-geo12-sp4-debuginfo-pool-x86_64-hpc-sp4", + "parent_channel_label": "sle12-sp4-hpc-pool-x86_64", + "product_id": 1637, + "repository_id": 2837, + "parent_product_id": 1634, + "root_product_id": 1759, + "update_tag": "SLE-HA-GEO", + "url": "https://updates.suse.com/SUSE/Products/SLE-HA-GEO/12-SP4/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-HA-GEO12-SP4-Debuginfo-Pool for x86_64 HPC", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-we12-sp4-updates-x86_64-hpc-sp4", + "parent_channel_label": "sle12-sp4-hpc-pool-x86_64", + "product_id": 1639, + "repository_id": 2844, + "parent_product_id": 1759, + "root_product_id": 1759, + "update_tag": "SLE-WE", + "url": "https://updates.suse.com/SUSE/Updates/SLE-WE/12-SP4/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-WE12-SP4-Updates for x86_64 HPC", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-we12-sp4-debuginfo-updates-x86_64-hpc-sp4", + "parent_channel_label": "sle12-sp4-hpc-pool-x86_64", + "product_id": 1639, + "repository_id": 2845, + "parent_product_id": 1759, + "root_product_id": 1759, + "update_tag": "SLE-WE", + "url": "https://updates.suse.com/SUSE/Updates/SLE-WE/12-SP4/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-WE12-SP4-Debuginfo-Updates for x86_64 HPC", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-we12-sp4-pool-x86_64-hpc-sp4", + "parent_channel_label": "sle12-sp4-hpc-pool-x86_64", + "product_id": 1639, + "repository_id": 2846, + "parent_product_id": 1759, + "root_product_id": 1759, + "update_tag": "SLE-WE", + "url": "https://updates.suse.com/SUSE/Products/SLE-WE/12-SP4/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-WE12-SP4-Pool for x86_64 HPC", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-we12-sp4-debuginfo-pool-x86_64-hpc-sp4", + "parent_channel_label": "sle12-sp4-hpc-pool-x86_64", + "product_id": 1639, + "repository_id": 2847, + "parent_product_id": 1759, + "root_product_id": 1759, + "update_tag": "SLE-WE", + "url": "https://updates.suse.com/SUSE/Products/SLE-WE/12-SP4/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-WE12-SP4-Debuginfo-Pool for x86_64 HPC", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-12-sp4-ga-desktop-nvidia-driver-hpc-sp4", + "parent_channel_label": "sle12-sp4-hpc-pool-x86_64", + "product_id": 1639, + "repository_id": 3529, + "parent_product_id": 1759, + "root_product_id": 1759, + "update_tag": null, + "url": "https://download.nvidia.com/suse/sle12sp4/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-12-SP4-GA-Desktop-nVidia-Driver for x86_64 HPC", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-cap-tools-12-updates-x86_64-hpc-sp4", + "parent_channel_label": "sle12-sp4-hpc-pool-x86_64", + "product_id": 1678, + "repository_id": 2912, + "parent_product_id": 1759, + "root_product_id": 1759, + "update_tag": "SLE-Module-CAP-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-CAP-Tools/12/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-CAP-Tools-12-Updates for x86_64 HPC SP4", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-cap-tools-12-debuginfo-updates-x86_64-hpc-sp4", + "parent_channel_label": "sle12-sp4-hpc-pool-x86_64", + "product_id": 1678, + "repository_id": 2913, + "parent_product_id": 1759, + "root_product_id": 1759, + "update_tag": "SLE-Module-CAP-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-CAP-Tools/12/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-CAP-Tools-12-Debuginfo-Updates for x86_64 HPC SP4", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-cap-tools-12-pool-x86_64-hpc-sp4", + "parent_channel_label": "sle12-sp4-hpc-pool-x86_64", + "product_id": 1678, + "repository_id": 2914, + "parent_product_id": 1759, + "root_product_id": 1759, + "update_tag": "SLE-Module-CAP-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-CAP-Tools/12/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-CAP-Tools-12-Pool for x86_64 HPC SP4", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-cap-tools-12-debuginfo-pool-x86_64-hpc-sp4", + "parent_channel_label": "sle12-sp4-hpc-pool-x86_64", + "product_id": 1678, + "repository_id": 2915, + "parent_product_id": 1759, + "root_product_id": 1759, + "update_tag": "SLE-Module-CAP-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-CAP-Tools/12/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-CAP-Tools-12-Debuginfo-Pool for x86_64 HPC SP4", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-manager-server-3.2-updates-x86_64-hpc-sp4", + "parent_channel_label": "sle12-sp4-hpc-pool-x86_64", + "product_id": 1724, + "repository_id": 2987, + "parent_product_id": 1759, + "root_product_id": 1759, + "update_tag": "SUSE-Manager-Server-3.2", + "url": "https://updates.suse.com/SUSE/Updates/SUSE-Manager-Server/3.2/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-Manager-Server-3.2-Updates for x86_64 HPC SP4", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-manager-server-3.2-debuginfo-updates-x86_64-hpc-sp4", + "parent_channel_label": "sle12-sp4-hpc-pool-x86_64", + "product_id": 1724, + "repository_id": 2988, + "parent_product_id": 1759, + "root_product_id": 1759, + "update_tag": "SUSE-Manager-Server-3.2", + "url": "https://updates.suse.com/SUSE/Updates/SUSE-Manager-Server/3.2/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SUSE-Manager-Server-3.2-Debuginfo-Updates for x86_64 HPC SP4", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-manager-server-3.2-pool-x86_64-hpc-sp4", + "parent_channel_label": "sle12-sp4-hpc-pool-x86_64", + "product_id": 1724, + "repository_id": 2989, + "parent_product_id": 1759, + "root_product_id": 1759, + "update_tag": "SUSE-Manager-Server-3.2", + "url": "https://updates.suse.com/SUSE/Products/SUSE-Manager-Server/3.2/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-Manager-Server-3.2-Pool for x86_64 HPC SP4", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-manager-server-3.2-debuginfo-pool-x86_64-hpc-sp4", + "parent_channel_label": "sle12-sp4-hpc-pool-x86_64", + "product_id": 1724, + "repository_id": 2990, + "parent_product_id": 1759, + "root_product_id": 1759, + "update_tag": "SUSE-Manager-Server-3.2", + "url": "https://updates.suse.com/SUSE/Products/SUSE-Manager-Server/3.2/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SUSE-Manager-Server-3.2-Debuginfo-Pool for x86_64 HPC SP4", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-manager-proxy-3.2-updates-x86_64-hpc-sp4", + "parent_channel_label": "sle12-sp4-hpc-pool-x86_64", + "product_id": 1725, + "repository_id": 2992, + "parent_product_id": 1759, + "root_product_id": 1759, + "update_tag": "SUSE-Manager-Proxy-3.2", + "url": "https://updates.suse.com/SUSE/Updates/SUSE-Manager-Proxy/3.2/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-Manager-Proxy-3.2-Updates for x86_64 HPC SP4", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-manager-proxy-3.2-debuginfo-updates-x86_64-hpc-sp4", + "parent_channel_label": "sle12-sp4-hpc-pool-x86_64", + "product_id": 1725, + "repository_id": 2993, + "parent_product_id": 1759, + "root_product_id": 1759, + "update_tag": "SUSE-Manager-Proxy-3.2", + "url": "https://updates.suse.com/SUSE/Updates/SUSE-Manager-Proxy/3.2/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SUSE-Manager-Proxy-3.2-Debuginfo-Updates for x86_64 HPC SP4", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-manager-proxy-3.2-pool-x86_64-hpc-sp4", + "parent_channel_label": "sle12-sp4-hpc-pool-x86_64", + "product_id": 1725, + "repository_id": 2994, + "parent_product_id": 1759, + "root_product_id": 1759, + "update_tag": "SUSE-Manager-Proxy-3.2", + "url": "https://updates.suse.com/SUSE/Products/SUSE-Manager-Proxy/3.2/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-Manager-Proxy-3.2-Pool for x86_64 HPC SP4", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-manager-proxy-3.2-debuginfo-pool-x86_64-hpc-sp4", + "parent_channel_label": "sle12-sp4-hpc-pool-x86_64", + "product_id": 1725, + "repository_id": 2995, + "parent_product_id": 1759, + "root_product_id": 1759, + "update_tag": "SUSE-Manager-Proxy-3.2", + "url": "https://updates.suse.com/SUSE/Products/SUSE-Manager-Proxy/3.2/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SUSE-Manager-Proxy-3.2-Debuginfo-Pool for x86_64 HPC SP4", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-manager-retail-branch-server-3.2-updates-x86_64-hpc-sp4", + "parent_channel_label": "sle12-sp4-hpc-pool-x86_64", + "product_id": 1826, + "repository_id": 3517, + "parent_product_id": 1725, + "root_product_id": 1759, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Updates/SUSE-Manager-Retail-Branch-Server/3.2/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-Manager-Retail-Branch-Server-3.2-Updates for x86_64 HPC SP4", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-manager-retail-branch-server-3.2-debuginfo-updates-x86_64-hpc-sp4", + "parent_channel_label": "sle12-sp4-hpc-pool-x86_64", + "product_id": 1826, + "repository_id": 3518, + "parent_product_id": 1725, + "root_product_id": 1759, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Updates/SUSE-Manager-Retail-Branch-Server/3.2/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SUSE-Manager-Retail-Branch-Server-3.2-Debuginfo-Updates for x86_64 HPC SP4", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-manager-retail-branch-server-3.2-pool-x86_64-hpc-sp4", + "parent_channel_label": "sle12-sp4-hpc-pool-x86_64", + "product_id": 1826, + "repository_id": 3519, + "parent_product_id": 1725, + "root_product_id": 1759, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Products/SUSE-Manager-Retail-Branch-Server/3.2/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-Manager-Retail-Branch-Server-3.2-Pool for x86_64 HPC SP4", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-manager-retail-branch-server-3.2-debuginfo-pool-x86_64-hpc-sp4", + "parent_channel_label": "sle12-sp4-hpc-pool-x86_64", + "product_id": 1826, + "repository_id": 3520, + "parent_product_id": 1725, + "root_product_id": 1759, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Products/SUSE-Manager-Retail-Branch-Server/3.2/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SUSE-Manager-Retail-Branch-Server-3.2-Debuginfo-Pool for x86_64 HPC SP4", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-manager-tools12-beta-updates-x86_64-hpc-sp4", + "parent_channel_label": "sle12-sp4-hpc-pool-x86_64", + "product_id": 1747, + "repository_id": 3077, + "parent_product_id": 1759, + "root_product_id": 1759, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/12-BETA/x86_64/update/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools12-BETA-Updates for x86_64 HPC SP4", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools12-beta-debuginfo-updates-x86_64-hpc-sp4", + "parent_channel_label": "sle12-sp4-hpc-pool-x86_64", + "product_id": 1747, + "repository_id": 3078, + "parent_product_id": 1759, + "root_product_id": 1759, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/12-BETA/x86_64/update_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools12-BETA-Debuginfo-Updates for x86_64 HPC SP4", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools12-beta-pool-x86_64-hpc-sp4", + "parent_channel_label": "sle12-sp4-hpc-pool-x86_64", + "product_id": 1747, + "repository_id": 3079, + "parent_product_id": 1759, + "root_product_id": 1759, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/12-BETA/x86_64/product/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools12-BETA-Pool for x86_64 HPC SP4", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools12-beta-debuginfo-pool-x86_64-hpc-sp4", + "parent_channel_label": "sle12-sp4-hpc-pool-x86_64", + "product_id": 1747, + "repository_id": 3080, + "parent_product_id": 1759, + "root_product_id": 1759, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/12-BETA/x86_64/product_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools12-BETA-Debuginfo-Pool for x86_64 HPC SP4", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-live-patching12-sp4-updates-x86_64-hpc-sp4", + "parent_channel_label": "sle12-sp4-hpc-pool-x86_64", + "product_id": 1757, + "repository_id": 3163, + "parent_product_id": 1759, + "root_product_id": 1759, + "update_tag": "SLE-Live-Patching", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Live-Patching/12-SP4/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Live-Patching12-SP4-Updates for x86_64 HPC", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-live-patching12-sp4-debuginfo-updates-x86_64-hpc-sp4", + "parent_channel_label": "sle12-sp4-hpc-pool-x86_64", + "product_id": 1757, + "repository_id": 3164, + "parent_product_id": 1759, + "root_product_id": 1759, + "update_tag": "SLE-Live-Patching", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Live-Patching/12-SP4/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Live-Patching12-SP4-Debuginfo-Updates for x86_64 HPC", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-live-patching12-sp4-pool-x86_64-hpc-sp4", + "parent_channel_label": "sle12-sp4-hpc-pool-x86_64", + "product_id": 1757, + "repository_id": 3165, + "parent_product_id": 1759, + "root_product_id": 1759, + "update_tag": "SLE-Live-Patching", + "url": "https://updates.suse.com/SUSE/Products/SLE-Live-Patching/12-SP4/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Live-Patching12-SP4-Pool for x86_64 HPC", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-live-patching12-sp4-debuginfo-pool-x86_64-hpc-sp4", + "parent_channel_label": "sle12-sp4-hpc-pool-x86_64", + "product_id": 1757, + "repository_id": 3166, + "parent_product_id": 1759, + "root_product_id": 1759, + "update_tag": "SLE-Live-Patching", + "url": "https://updates.suse.com/SUSE/Products/SLE-Live-Patching/12-SP4/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Live-Patching12-SP4-Debuginfo-Pool for x86_64 HPC", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-packagehub-12-sp4-standard-pool-x86_64-hpc-sp4", + "parent_channel_label": "sle12-sp4-hpc-pool-x86_64", + "product_id": 1813, + "repository_id": 3460, + "parent_product_id": 1759, + "root_product_id": 1759, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-12-SP4_x86_64/standard/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-12-SP4-Standard-Pool for x86_64 HPC", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-packagehub-12-sp4-debuginfo-x86_64-hpc-sp4", + "parent_channel_label": "sle12-sp4-hpc-pool-x86_64", + "product_id": 1813, + "repository_id": 3461, + "parent_product_id": 1759, + "root_product_id": 1759, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-12-SP4_x86_64/standard_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-12-SP4-Debuginfo for x86_64 HPC", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-packagehub-12-sp4-pool-x86_64-hpc-sp4", + "parent_channel_label": "sle12-sp4-hpc-pool-x86_64", + "product_id": 1813, + "repository_id": 3462, + "parent_product_id": 1759, + "root_product_id": 1759, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-12-SP4_x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-12-SP4-Pool for x86_64 HPC", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles12-sp4-espos-updates-x86_64-hpc-sp4", + "parent_channel_label": "sle12-sp4-hpc-pool-x86_64", + "product_id": 1818, + "repository_id": 3481, + "parent_product_id": 1759, + "root_product_id": 1759, + "update_tag": "SLE-SERVER", + "url": "https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-SP4-ESPOS/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLES12-SP4-ESPOS-Updates for x86_64 HPC", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles12-sp4-espos-debuginfo-updates-x86_64-hpc-sp4", + "parent_channel_label": "sle12-sp4-hpc-pool-x86_64", + "product_id": 1818, + "repository_id": 3482, + "parent_product_id": 1759, + "root_product_id": 1759, + "update_tag": "SLE-SERVER", + "url": "https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-SP4-ESPOS/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLES12-SP4-ESPOS-Debuginfo-Updates for x86_64 HPC", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles12-sp4-espos-pool-x86_64-hpc-sp4", + "parent_channel_label": "sle12-sp4-hpc-pool-x86_64", + "product_id": 1818, + "repository_id": 3483, + "parent_product_id": 1759, + "root_product_id": 1759, + "update_tag": "SLE-SERVER", + "url": "https://updates.suse.com/SUSE/Products/SLE-SERVER/12-SP4-ESPOS/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLES12-SP4-ESPOS-Pool for x86_64 HPC", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles12-sp4-espos-debuginfo-pool-x86_64-hpc-sp4", + "parent_channel_label": "sle12-sp4-hpc-pool-x86_64", + "product_id": 1818, + "repository_id": 3484, + "parent_product_id": 1759, + "root_product_id": 1759, + "update_tag": "SLE-SERVER", + "url": "https://updates.suse.com/SUSE/Products/SLE-SERVER/12-SP4-ESPOS/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLES12-SP4-ESPOS-Debuginfo-Pool for x86_64 HPC", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-rt12-sp4-updates-x86_64-hpc", + "parent_channel_label": "sle12-sp4-hpc-pool-x86_64", + "product_id": 1924, + "repository_id": 3887, + "parent_product_id": 1759, + "root_product_id": 1759, + "update_tag": "SLE-RT", + "url": "https://updates.suse.com/SUSE/Updates/SLE-RT/12-SP4/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-RT12-SP4-Updates for x86_64 HPC", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-rt12-sp4-debuginfo-updates-x86_64-hpc", + "parent_channel_label": "sle12-sp4-hpc-pool-x86_64", + "product_id": 1924, + "repository_id": 3888, + "parent_product_id": 1759, + "root_product_id": 1759, + "update_tag": "SLE-RT", + "url": "https://updates.suse.com/SUSE/Updates/SLE-RT/12-SP4/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-RT12-SP4-Debuginfo-Updates for x86_64 HPC", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-rt12-sp4-pool-x86_64-hpc", + "parent_channel_label": "sle12-sp4-hpc-pool-x86_64", + "product_id": 1924, + "repository_id": 3889, + "parent_product_id": 1759, + "root_product_id": 1759, + "update_tag": "SLE-RT", + "url": "https://updates.suse.com/SUSE/Products/SLE-RT/12-SP4/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-RT12-SP4-Pool for x86_64 HPC", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-rt12-sp4-debuginfo-pool-x86_64-hpc", + "parent_channel_label": "sle12-sp4-hpc-pool-x86_64", + "product_id": 1924, + "repository_id": 3890, + "parent_product_id": 1759, + "root_product_id": 1759, + "update_tag": "SLE-RT", + "url": "https://updates.suse.com/SUSE/Products/SLE-RT/12-SP4/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-RT12-SP4-Debuginfo-Pool for x86_64 HPC", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles12-sp4-ltss-updates-x86_64-hpc", + "parent_channel_label": "sle12-sp4-hpc-pool-x86_64", + "product_id": 2117, + "repository_id": 4492, + "parent_product_id": 1759, + "root_product_id": 1759, + "update_tag": "SLE-SERVER", + "url": "https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-SP4-LTSS/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLES12-SP4-LTSS-Updates for x86_64 HPC", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles12-sp4-ltss-debuginfo-updates-x86_64-hpc", + "parent_channel_label": "sle12-sp4-hpc-pool-x86_64", + "product_id": 2117, + "repository_id": 4493, + "parent_product_id": 1759, + "root_product_id": 1759, + "update_tag": "SLE-SERVER", + "url": "https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-SP4-LTSS/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLES12-SP4-LTSS-Debuginfo-Updates for x86_64 HPC", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-sles15-sp1-updates-aarch64", + "parent_channel_label": "sle-product-sles15-sp1-pool-aarch64", + "product_id": 1760, + "repository_id": 3197, + "parent_product_id": null, + "root_product_id": 1760, + "update_tag": "SLE-Product-SLES", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-SLES/15-SP1/aarch64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-SLES15-SP1-Updates for aarch64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-sles15-sp1-debuginfo-updates-aarch64", + "parent_channel_label": "sle-product-sles15-sp1-pool-aarch64", + "product_id": 1760, + "repository_id": 3198, + "parent_product_id": null, + "root_product_id": 1760, + "update_tag": "SLE-Product-SLES", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-SLES/15-SP1/aarch64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-SLES15-SP1-Debuginfo-Updates for aarch64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle15-sp1-installer-updates-aarch64", + "parent_channel_label": "sle-product-sles15-sp1-pool-aarch64", + "product_id": 1760, + "repository_id": 3199, + "parent_product_id": null, + "root_product_id": 1760, + "update_tag": "SLE-INSTALLER", + "url": "https://updates.suse.com/SUSE/Updates/SLE-INSTALLER/15-SP1/aarch64/update/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE15-SP1-Installer-Updates for aarch64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-sles15-sp1-pool-aarch64", + "parent_channel_label": null, + "product_id": 1760, + "repository_id": 3200, + "parent_product_id": null, + "root_product_id": 1760, + "update_tag": "SLE-Product-SLES", + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-SLES/15-SP1/aarch64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-SLES15-SP1-Pool for aarch64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-sles15-sp1-debuginfo-pool-aarch64", + "parent_channel_label": "sle-product-sles15-sp1-pool-aarch64", + "product_id": 1760, + "repository_id": 3201, + "parent_product_id": null, + "root_product_id": 1760, + "update_tag": "SLE-Product-SLES", + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-SLES/15-SP1/aarch64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-SLES15-SP1-Debuginfo-Pool for aarch64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-basesystem15-sp1-updates-aarch64", + "parent_channel_label": "sle-product-sles15-sp1-pool-aarch64", + "product_id": 1769, + "repository_id": 3246, + "parent_product_id": 1760, + "root_product_id": 1760, + "update_tag": "SLE-Module-Basesystem", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15-SP1/aarch64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Basesystem15-SP1-Updates for aarch64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-basesystem15-sp1-debuginfo-updates-aarch64", + "parent_channel_label": "sle-product-sles15-sp1-pool-aarch64", + "product_id": 1769, + "repository_id": 3247, + "parent_product_id": 1760, + "root_product_id": 1760, + "update_tag": "SLE-Module-Basesystem", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15-SP1/aarch64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Basesystem15-SP1-Debuginfo-Updates for aarch64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-basesystem15-sp1-pool-aarch64", + "parent_channel_label": "sle-product-sles15-sp1-pool-aarch64", + "product_id": 1769, + "repository_id": 3248, + "parent_product_id": 1760, + "root_product_id": 1760, + "update_tag": "SLE-Module-Basesystem", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP1/aarch64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Basesystem15-SP1-Pool for aarch64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-basesystem15-sp1-debuginfo-pool-aarch64", + "parent_channel_label": "sle-product-sles15-sp1-pool-aarch64", + "product_id": 1769, + "repository_id": 3249, + "parent_product_id": 1760, + "root_product_id": 1760, + "update_tag": "SLE-Module-Basesystem", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP1/aarch64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Basesystem15-SP1-Debuginfo-Pool for aarch64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-manager-tools15-updates-aarch64-sp1", + "parent_channel_label": "sle-product-sles15-sp1-pool-aarch64", + "product_id": 1709, + "repository_id": 2917, + "parent_product_id": 1769, + "root_product_id": 1760, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/15/aarch64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-Updates for aarch64 SP1", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools15-debuginfo-updates-aarch64-sp1", + "parent_channel_label": "sle-product-sles15-sp1-pool-aarch64", + "product_id": 1709, + "repository_id": 2918, + "parent_product_id": 1769, + "root_product_id": 1760, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/15/aarch64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-Debuginfo-Updates for aarch64 SP1", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools15-pool-aarch64-sp1", + "parent_channel_label": "sle-product-sles15-sp1-pool-aarch64", + "product_id": 1709, + "repository_id": 2919, + "parent_product_id": 1769, + "root_product_id": 1760, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/15/aarch64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-Pool for aarch64 SP1", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools15-debuginfo-pool-aarch64-sp1", + "parent_channel_label": "sle-product-sles15-sp1-pool-aarch64", + "product_id": 1709, + "repository_id": 2920, + "parent_product_id": 1769, + "root_product_id": 1760, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/15/aarch64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-Debuginfo-Pool for aarch64 SP1", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools15-beta-updates-aarch64-sp1", + "parent_channel_label": "sle-product-sles15-sp1-pool-aarch64", + "product_id": 1925, + "repository_id": 3891, + "parent_product_id": 1709, + "root_product_id": 1760, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/15-BETA/aarch64/update/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-BETA-Updates for aarch64 SP1", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools15-beta-debuginfo-updates-aarch64-sp1", + "parent_channel_label": "sle-product-sles15-sp1-pool-aarch64", + "product_id": 1925, + "repository_id": 3892, + "parent_product_id": 1709, + "root_product_id": 1760, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/15-BETA/aarch64/update_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-BETA-Debuginfo-Updates for aarch64 SP1", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools15-beta-pool-aarch64-sp1", + "parent_channel_label": "sle-product-sles15-sp1-pool-aarch64", + "product_id": 1925, + "repository_id": 3899, + "parent_product_id": 1709, + "root_product_id": 1760, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/15-BETA/aarch64/product/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-BETA-Pool for aarch64 SP1", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools15-beta-debuginfo-pool-aarch64-sp1", + "parent_channel_label": "sle-product-sles15-sp1-pool-aarch64", + "product_id": 1925, + "repository_id": 3900, + "parent_product_id": 1709, + "root_product_id": 1760, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/15-BETA/aarch64/product_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-BETA-Debuginfo-Pool for aarch64 SP1", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-module-desktop-applications15-sp1-updates-aarch64", + "parent_channel_label": "sle-product-sles15-sp1-pool-aarch64", + "product_id": 1773, + "repository_id": 3266, + "parent_product_id": 1769, + "root_product_id": 1760, + "update_tag": "SLE-Module-Desktop-Applications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15-SP1/aarch64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Desktop-Applications15-SP1-Updates for aarch64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-desktop-applications15-sp1-debuginfo-updates-aarch64", + "parent_channel_label": "sle-product-sles15-sp1-pool-aarch64", + "product_id": 1773, + "repository_id": 3267, + "parent_product_id": 1769, + "root_product_id": 1760, + "update_tag": "SLE-Module-Desktop-Applications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15-SP1/aarch64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Desktop-Applications15-SP1-Debuginfo-Updates for aarch64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-desktop-applications15-sp1-pool-aarch64", + "parent_channel_label": "sle-product-sles15-sp1-pool-aarch64", + "product_id": 1773, + "repository_id": 3268, + "parent_product_id": 1769, + "root_product_id": 1760, + "update_tag": "SLE-Module-Desktop-Applications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP1/aarch64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Desktop-Applications15-SP1-Pool for aarch64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-desktop-applications15-sp1-debuginfo-pool-aarch64", + "parent_channel_label": "sle-product-sles15-sp1-pool-aarch64", + "product_id": 1773, + "repository_id": 3269, + "parent_product_id": 1769, + "root_product_id": 1760, + "update_tag": "SLE-Module-Desktop-Applications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP1/aarch64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Desktop-Applications15-SP1-Debuginfo-Pool for aarch64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-devtools15-sp1-updates-aarch64", + "parent_channel_label": "sle-product-sles15-sp1-pool-aarch64", + "product_id": 1791, + "repository_id": 3356, + "parent_product_id": 1773, + "root_product_id": 1760, + "update_tag": "SLE-Module-Development-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15-SP1/aarch64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-DevTools15-SP1-Updates for aarch64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-devtools15-sp1-debuginfo-updates-aarch64", + "parent_channel_label": "sle-product-sles15-sp1-pool-aarch64", + "product_id": 1791, + "repository_id": 3357, + "parent_product_id": 1773, + "root_product_id": 1760, + "update_tag": "SLE-Module-Development-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15-SP1/aarch64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-DevTools15-SP1-Debuginfo-Updates for aarch64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-devtools15-sp1-pool-aarch64", + "parent_channel_label": "sle-product-sles15-sp1-pool-aarch64", + "product_id": 1791, + "repository_id": 3358, + "parent_product_id": 1773, + "root_product_id": 1760, + "update_tag": "SLE-Module-Development-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP1/aarch64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-DevTools15-SP1-Pool for aarch64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-devtools15-sp1-debuginfo-pool-aarch64", + "parent_channel_label": "sle-product-sles15-sp1-pool-aarch64", + "product_id": 1791, + "repository_id": 3359, + "parent_product_id": 1773, + "root_product_id": 1760, + "update_tag": "SLE-Module-Development-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP1/aarch64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-DevTools15-SP1-Debuginfo-Pool for aarch64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-server-applications15-sp1-updates-aarch64", + "parent_channel_label": "sle-product-sles15-sp1-pool-aarch64", + "product_id": 1777, + "repository_id": 3286, + "parent_product_id": 1769, + "root_product_id": 1760, + "update_tag": "SLE-Module-Server-Applications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15-SP1/aarch64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Server-Applications15-SP1-Updates for aarch64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-server-applications15-sp1-debuginfo-updates-aarch64", + "parent_channel_label": "sle-product-sles15-sp1-pool-aarch64", + "product_id": 1777, + "repository_id": 3287, + "parent_product_id": 1769, + "root_product_id": 1760, + "update_tag": "SLE-Module-Server-Applications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15-SP1/aarch64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Server-Applications15-SP1-Debuginfo-Updates for aarch64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-server-applications15-sp1-pool-aarch64", + "parent_channel_label": "sle-product-sles15-sp1-pool-aarch64", + "product_id": 1777, + "repository_id": 3288, + "parent_product_id": 1769, + "root_product_id": 1760, + "update_tag": "SLE-Module-Server-Applications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP1/aarch64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Server-Applications15-SP1-Pool for aarch64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-server-applications15-sp1-debuginfo-pool-aarch64", + "parent_channel_label": "sle-product-sles15-sp1-pool-aarch64", + "product_id": 1777, + "repository_id": 3289, + "parent_product_id": 1769, + "root_product_id": 1760, + "update_tag": "SLE-Module-Server-Applications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP1/aarch64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Server-Applications15-SP1-Debuginfo-Pool for aarch64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-enterprise-storage-6-updates-aarch64-sp1", + "parent_channel_label": "sle-product-sles15-sp1-pool-aarch64", + "product_id": 1643, + "repository_id": 2869, + "parent_product_id": 1777, + "root_product_id": 1760, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Updates/Storage/6/aarch64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-Enterprise-Storage-6-Updates for aarch64 SP1", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-enterprise-storage-6-debuginfo-updates-aarch64-sp1", + "parent_channel_label": "sle-product-sles15-sp1-pool-aarch64", + "product_id": 1643, + "repository_id": 2870, + "parent_product_id": 1777, + "root_product_id": 1760, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Updates/Storage/6/aarch64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SUSE-Enterprise-Storage-6-Debuginfo-Updates for aarch64 SP1", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-enterprise-storage-6-pool-aarch64-sp1", + "parent_channel_label": "sle-product-sles15-sp1-pool-aarch64", + "product_id": 1643, + "repository_id": 2871, + "parent_product_id": 1777, + "root_product_id": 1760, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Products/Storage/6/aarch64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-Enterprise-Storage-6-Pool for aarch64 SP1", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-enterprise-storage-6-debuginfo-pool-aarch64-sp1", + "parent_channel_label": "sle-product-sles15-sp1-pool-aarch64", + "product_id": 1643, + "repository_id": 2872, + "parent_product_id": 1777, + "root_product_id": 1760, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Products/Storage/6/aarch64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SUSE-Enterprise-Storage-6-Debuginfo-Pool for aarch64 SP1", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-ha15-sp1-updates-aarch64", + "parent_channel_label": "sle-product-sles15-sp1-pool-aarch64", + "product_id": 1782, + "repository_id": 3311, + "parent_product_id": 1777, + "root_product_id": 1760, + "update_tag": "SLE-Product-HA", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-HA/15-SP1/aarch64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HA15-SP1-Updates for aarch64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-ha15-sp1-debuginfo-updates-aarch64", + "parent_channel_label": "sle-product-sles15-sp1-pool-aarch64", + "product_id": 1782, + "repository_id": 3312, + "parent_product_id": 1777, + "root_product_id": 1760, + "update_tag": "SLE-Product-HA", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-HA/15-SP1/aarch64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HA15-SP1-Debuginfo-Updates for aarch64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-ha15-sp1-pool-aarch64", + "parent_channel_label": "sle-product-sles15-sp1-pool-aarch64", + "product_id": 1782, + "repository_id": 3313, + "parent_product_id": 1777, + "root_product_id": 1760, + "update_tag": "SLE-Product-HA", + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP1/aarch64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HA15-SP1-Pool for aarch64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-ha15-sp1-debuginfo-pool-aarch64", + "parent_channel_label": "sle-product-sles15-sp1-pool-aarch64", + "product_id": 1782, + "repository_id": 3314, + "parent_product_id": 1777, + "root_product_id": 1760, + "update_tag": "SLE-Product-HA", + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP1/aarch64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HA15-SP1-Debuginfo-Pool for aarch64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting15-sp1-updates-aarch64", + "parent_channel_label": "sle-product-sles15-sp1-pool-aarch64", + "product_id": 1795, + "repository_id": 3376, + "parent_product_id": 1777, + "root_product_id": 1760, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/15-SP1/aarch64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Web-Scripting15-SP1-Updates for aarch64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting15-sp1-debuginfo-updates-aarch64", + "parent_channel_label": "sle-product-sles15-sp1-pool-aarch64", + "product_id": 1795, + "repository_id": 3377, + "parent_product_id": 1777, + "root_product_id": 1760, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/15-SP1/aarch64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Web-Scripting15-SP1-Debuginfo-Updates for aarch64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting15-sp1-pool-aarch64", + "parent_channel_label": "sle-product-sles15-sp1-pool-aarch64", + "product_id": 1795, + "repository_id": 3378, + "parent_product_id": 1777, + "root_product_id": 1760, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP1/aarch64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Web-Scripting15-SP1-Pool for aarch64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting15-sp1-debuginfo-pool-aarch64", + "parent_channel_label": "sle-product-sles15-sp1-pool-aarch64", + "product_id": 1795, + "repository_id": 3379, + "parent_product_id": 1777, + "root_product_id": 1760, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP1/aarch64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Web-Scripting15-SP1-Debuginfo-Pool for aarch64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-legacy15-sp1-updates-aarch64", + "parent_channel_label": "sle-product-sles15-sp1-pool-aarch64", + "product_id": 1801, + "repository_id": 3406, + "parent_product_id": 1777, + "root_product_id": 1760, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/15-SP1/aarch64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy15-SP1-Updates for aarch64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-legacy15-sp1-debuginfo-updates-aarch64", + "parent_channel_label": "sle-product-sles15-sp1-pool-aarch64", + "product_id": 1801, + "repository_id": 3407, + "parent_product_id": 1777, + "root_product_id": 1760, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/15-SP1/aarch64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy15-SP1-Debuginfo-Updates for aarch64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-legacy15-sp1-pool-aarch64", + "parent_channel_label": "sle-product-sles15-sp1-pool-aarch64", + "product_id": 1801, + "repository_id": 3408, + "parent_product_id": 1777, + "root_product_id": 1760, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15-SP1/aarch64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy15-SP1-Pool for aarch64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-legacy15-sp1-debuginfo-pool-aarch64", + "parent_channel_label": "sle-product-sles15-sp1-pool-aarch64", + "product_id": 1801, + "repository_id": 3409, + "parent_product_id": 1777, + "root_product_id": 1760, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15-SP1/aarch64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy15-SP1-Debuginfo-Pool for aarch64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud15-sp1-updates-aarch64", + "parent_channel_label": "sle-product-sles15-sp1-pool-aarch64", + "product_id": 1805, + "repository_id": 3426, + "parent_product_id": 1777, + "root_product_id": 1760, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/15-SP1/aarch64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud15-SP1-Updates for aarch64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud15-sp1-debuginfo-updates-aarch64", + "parent_channel_label": "sle-product-sles15-sp1-pool-aarch64", + "product_id": 1805, + "repository_id": 3427, + "parent_product_id": 1777, + "root_product_id": 1760, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/15-SP1/aarch64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud15-SP1-Debuginfo-Updates for aarch64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud15-sp1-pool-aarch64", + "parent_channel_label": "sle-product-sles15-sp1-pool-aarch64", + "product_id": 1805, + "repository_id": 3428, + "parent_product_id": 1777, + "root_product_id": 1760, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP1/aarch64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud15-SP1-Pool for aarch64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud15-sp1-debuginfo-pool-aarch64", + "parent_channel_label": "sle-product-sles15-sp1-pool-aarch64", + "product_id": 1805, + "repository_id": 3429, + "parent_product_id": 1777, + "root_product_id": 1760, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP1/aarch64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud15-SP1-Debuginfo-Pool for aarch64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-transactional-server15-sp1-updates-aarch64", + "parent_channel_label": "sle-product-sles15-sp1-pool-aarch64", + "product_id": 1822, + "repository_id": 3497, + "parent_product_id": 1769, + "root_product_id": 1760, + "update_tag": "SLE-Module-Transactional-Server", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Transactional-Server/15-SP1/aarch64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Transactional-Server15-SP1-Updates for aarch64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-transactional-server15-sp1-debuginfo-updates-aarch64", + "parent_channel_label": "sle-product-sles15-sp1-pool-aarch64", + "product_id": 1822, + "repository_id": 3498, + "parent_product_id": 1769, + "root_product_id": 1760, + "update_tag": "SLE-Module-Transactional-Server", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Transactional-Server/15-SP1/aarch64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Transactional-Server15-SP1-Debuginfo-Updates for aarch64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-transactional-server15-sp1-pool-aarch64", + "parent_channel_label": "sle-product-sles15-sp1-pool-aarch64", + "product_id": 1822, + "repository_id": 3499, + "parent_product_id": 1769, + "root_product_id": 1760, + "update_tag": "SLE-Module-Transactional-Server", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Transactional-Server/15-SP1/aarch64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Transactional-Server15-SP1-Pool for aarch64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-transactional-server15-sp1-debuginfo-pool-aarch64", + "parent_channel_label": "sle-product-sles15-sp1-pool-aarch64", + "product_id": 1822, + "repository_id": 3500, + "parent_product_id": 1769, + "root_product_id": 1760, + "update_tag": "SLE-Module-Transactional-Server", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Transactional-Server/15-SP1/aarch64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Transactional-Server15-SP1-Debuginfo-Pool for aarch64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-python2-15-sp1-updates-aarch64", + "parent_channel_label": "sle-product-sles15-sp1-pool-aarch64", + "product_id": 1864, + "repository_id": 3583, + "parent_product_id": 1769, + "root_product_id": 1760, + "update_tag": "SLE-Module-Python2", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Python2/15-SP1/aarch64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Python2-15-SP1-Updates for aarch64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-python2-15-sp1-debuginfo-updates-aarch64", + "parent_channel_label": "sle-product-sles15-sp1-pool-aarch64", + "product_id": 1864, + "repository_id": 3584, + "parent_product_id": 1769, + "root_product_id": 1760, + "update_tag": "SLE-Module-Python2", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Python2/15-SP1/aarch64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Python2-15-SP1-Debuginfo-Updates for aarch64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-python2-15-sp1-pool-aarch64", + "parent_channel_label": "sle-product-sles15-sp1-pool-aarch64", + "product_id": 1864, + "repository_id": 3585, + "parent_product_id": 1769, + "root_product_id": 1760, + "update_tag": "SLE-Module-Python2", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Python2/15-SP1/aarch64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Python2-15-SP1-Pool for aarch64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-python2-15-sp1-debuginfo-pool-aarch64", + "parent_channel_label": "sle-product-sles15-sp1-pool-aarch64", + "product_id": 1864, + "repository_id": 3586, + "parent_product_id": 1769, + "root_product_id": 1760, + "update_tag": "SLE-Module-Python2", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Python2/15-SP1/aarch64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Python2-15-SP1-Debuginfo-Pool for aarch64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-packagehub-15-sp1-standard-pool-aarch64", + "parent_channel_label": "sle-product-sles15-sp1-pool-aarch64", + "product_id": 1868, + "repository_id": 3603, + "parent_product_id": 1769, + "root_product_id": 1760, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-15-SP1_aarch64/standard/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-15-SP1-Standard-Pool for aarch64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-packagehub-15-sp1-debuginfo-aarch64", + "parent_channel_label": "sle-product-sles15-sp1-pool-aarch64", + "product_id": 1868, + "repository_id": 3604, + "parent_product_id": 1769, + "root_product_id": 1760, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-15-SP1_aarch64/standard_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-15-SP1-Debuginfo for aarch64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-packagehub-subpackages15-sp1-updates-aarch64", + "parent_channel_label": "sle-product-sles15-sp1-pool-aarch64", + "product_id": 1868, + "repository_id": 3605, + "parent_product_id": 1769, + "root_product_id": 1760, + "update_tag": "SLE-Module-Packagehub-Subpackages", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP1/aarch64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Packagehub-Subpackages15-SP1-Updates for aarch64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-packagehub-subpackages15-sp1-debuginfo-updates-aarch64", + "parent_channel_label": "sle-product-sles15-sp1-pool-aarch64", + "product_id": 1868, + "repository_id": 3606, + "parent_product_id": 1769, + "root_product_id": 1760, + "update_tag": "SLE-Module-Packagehub-Subpackages", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP1/aarch64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Packagehub-Subpackages15-SP1-Debuginfo-Updates for aarch64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-packagehub-15-sp1-pool-aarch64", + "parent_channel_label": "sle-product-sles15-sp1-pool-aarch64", + "product_id": 1868, + "repository_id": 3607, + "parent_product_id": 1769, + "root_product_id": 1760, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-15-SP1_aarch64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-15-SP1-Pool for aarch64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-packagehub-subpackages15-sp1-pool-aarch64", + "parent_channel_label": "sle-product-sles15-sp1-pool-aarch64", + "product_id": 1868, + "repository_id": 3608, + "parent_product_id": 1769, + "root_product_id": 1760, + "update_tag": "SLE-Module-Packagehub-Subpackages", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP1/aarch64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Packagehub-Subpackages15-SP1-Pool for aarch64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-packagehub-subpackages15-sp1-debuginfo-pool-aarch64", + "parent_channel_label": "sle-product-sles15-sp1-pool-aarch64", + "product_id": 1868, + "repository_id": 3609, + "parent_product_id": 1769, + "root_product_id": 1760, + "update_tag": "SLE-Module-Packagehub-Subpackages", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP1/aarch64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Packagehub-Subpackages15-SP1-Debuginfo-Pool for aarch64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-containers15-sp1-updates-aarch64", + "parent_channel_label": "sle-product-sles15-sp1-pool-aarch64", + "product_id": 1920, + "repository_id": 3873, + "parent_product_id": 1769, + "root_product_id": 1760, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/15-SP1/aarch64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers15-SP1-Updates for aarch64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-containers15-sp1-debuginfo-updates-aarch64", + "parent_channel_label": "sle-product-sles15-sp1-pool-aarch64", + "product_id": 1920, + "repository_id": 3874, + "parent_product_id": 1769, + "root_product_id": 1760, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/15-SP1/aarch64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers15-SP1-Debuginfo-Updates for aarch64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-containers15-sp1-pool-aarch64", + "parent_channel_label": "sle-product-sles15-sp1-pool-aarch64", + "product_id": 1920, + "repository_id": 3875, + "parent_product_id": 1769, + "root_product_id": 1760, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP1/aarch64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers15-SP1-Pool for aarch64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-containers15-sp1-debuginfo-pool-aarch64", + "parent_channel_label": "sle-product-sles15-sp1-pool-aarch64", + "product_id": 1920, + "repository_id": 3876, + "parent_product_id": 1769, + "root_product_id": 1760, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP1/aarch64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers15-SP1-Debuginfo-Pool for aarch64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-sles15-sp1-ltss-updates-aarch64", + "parent_channel_label": "sle-product-sles15-sp1-pool-aarch64", + "product_id": 2216, + "repository_id": 4971, + "parent_product_id": 1760, + "root_product_id": 1760, + "update_tag": "SLE-Product-SLES", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-SLES/15-SP1-LTSS/aarch64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-SLES15-SP1-LTSS-Updates for aarch64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-sles15-sp1-debuginfo-ltss-updates-aarch64", + "parent_channel_label": "sle-product-sles15-sp1-pool-aarch64", + "product_id": 2216, + "repository_id": 4972, + "parent_product_id": 1760, + "root_product_id": 1760, + "update_tag": "SLE-Product-SLES", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-SLES/15-SP1-LTSS/aarch64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-SLES15-SP1-Debuginfo-LTSS-Updates for aarch64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-sles15-sp1-updates-ppc64le", + "parent_channel_label": "sle-product-sles15-sp1-pool-ppc64le", + "product_id": 1761, + "repository_id": 3203, + "parent_product_id": null, + "root_product_id": 1761, + "update_tag": "SLE-Product-SLES", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-SLES/15-SP1/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-SLES15-SP1-Updates for ppc64le", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-sles15-sp1-debuginfo-updates-ppc64le", + "parent_channel_label": "sle-product-sles15-sp1-pool-ppc64le", + "product_id": 1761, + "repository_id": 3204, + "parent_product_id": null, + "root_product_id": 1761, + "update_tag": "SLE-Product-SLES", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-SLES/15-SP1/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-SLES15-SP1-Debuginfo-Updates for ppc64le", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle15-sp1-installer-updates-ppc64le", + "parent_channel_label": "sle-product-sles15-sp1-pool-ppc64le", + "product_id": 1761, + "repository_id": 3205, + "parent_product_id": null, + "root_product_id": 1761, + "update_tag": "SLE-INSTALLER", + "url": "https://updates.suse.com/SUSE/Updates/SLE-INSTALLER/15-SP1/ppc64le/update/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE15-SP1-Installer-Updates for ppc64le", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-sles15-sp1-pool-ppc64le", + "parent_channel_label": null, + "product_id": 1761, + "repository_id": 3206, + "parent_product_id": null, + "root_product_id": 1761, + "update_tag": "SLE-Product-SLES", + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-SLES/15-SP1/ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-SLES15-SP1-Pool for ppc64le", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-sles15-sp1-debuginfo-pool-ppc64le", + "parent_channel_label": "sle-product-sles15-sp1-pool-ppc64le", + "product_id": 1761, + "repository_id": 3207, + "parent_product_id": null, + "root_product_id": 1761, + "update_tag": "SLE-Product-SLES", + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-SLES/15-SP1/ppc64le/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-SLES15-SP1-Debuginfo-Pool for ppc64le", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-basesystem15-sp1-updates-ppc64le", + "parent_channel_label": "sle-product-sles15-sp1-pool-ppc64le", + "product_id": 1770, + "repository_id": 3251, + "parent_product_id": 1761, + "root_product_id": 1761, + "update_tag": "SLE-Module-Basesystem", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15-SP1/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Basesystem15-SP1-Updates for ppc64le", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-basesystem15-sp1-debuginfo-updates-ppc64le", + "parent_channel_label": "sle-product-sles15-sp1-pool-ppc64le", + "product_id": 1770, + "repository_id": 3252, + "parent_product_id": 1761, + "root_product_id": 1761, + "update_tag": "SLE-Module-Basesystem", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15-SP1/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Basesystem15-SP1-Debuginfo-Updates for ppc64le", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-basesystem15-sp1-pool-ppc64le", + "parent_channel_label": "sle-product-sles15-sp1-pool-ppc64le", + "product_id": 1770, + "repository_id": 3253, + "parent_product_id": 1761, + "root_product_id": 1761, + "update_tag": "SLE-Module-Basesystem", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP1/ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Basesystem15-SP1-Pool for ppc64le", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-basesystem15-sp1-debuginfo-pool-ppc64le", + "parent_channel_label": "sle-product-sles15-sp1-pool-ppc64le", + "product_id": 1770, + "repository_id": 3254, + "parent_product_id": 1761, + "root_product_id": 1761, + "update_tag": "SLE-Module-Basesystem", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP1/ppc64le/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Basesystem15-SP1-Debuginfo-Pool for ppc64le", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-manager-tools15-updates-ppc64le-sp1", + "parent_channel_label": "sle-product-sles15-sp1-pool-ppc64le", + "product_id": 1710, + "repository_id": 2922, + "parent_product_id": 1770, + "root_product_id": 1761, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/15/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-Updates for ppc64le SP1", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools15-debuginfo-updates-ppc64le-sp1", + "parent_channel_label": "sle-product-sles15-sp1-pool-ppc64le", + "product_id": 1710, + "repository_id": 2923, + "parent_product_id": 1770, + "root_product_id": 1761, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/15/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-Debuginfo-Updates for ppc64le SP1", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools15-pool-ppc64le-sp1", + "parent_channel_label": "sle-product-sles15-sp1-pool-ppc64le", + "product_id": 1710, + "repository_id": 2924, + "parent_product_id": 1770, + "root_product_id": 1761, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/15/ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-Pool for ppc64le SP1", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools15-debuginfo-pool-ppc64le-sp1", + "parent_channel_label": "sle-product-sles15-sp1-pool-ppc64le", + "product_id": 1710, + "repository_id": 2925, + "parent_product_id": 1770, + "root_product_id": 1761, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/15/ppc64le/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-Debuginfo-Pool for ppc64le SP1", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools15-beta-updates-ppc64le-sp1", + "parent_channel_label": "sle-product-sles15-sp1-pool-ppc64le", + "product_id": 1926, + "repository_id": 3893, + "parent_product_id": 1710, + "root_product_id": 1761, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/15-BETA/ppc64le/update/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-BETA-Updates for ppc64le SP1", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools15-beta-debuginfo-updates-ppc64le-sp1", + "parent_channel_label": "sle-product-sles15-sp1-pool-ppc64le", + "product_id": 1926, + "repository_id": 3894, + "parent_product_id": 1710, + "root_product_id": 1761, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/15-BETA/ppc64le/update_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-BETA-Debuginfo-Updates for ppc64le SP1", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools15-beta-pool-ppc64le-sp1", + "parent_channel_label": "sle-product-sles15-sp1-pool-ppc64le", + "product_id": 1926, + "repository_id": 3902, + "parent_product_id": 1710, + "root_product_id": 1761, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/15-BETA/ppc64le/product/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-BETA-Pool for ppc64le SP1", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools15-beta-debuginfo-pool-ppc64le-sp1", + "parent_channel_label": "sle-product-sles15-sp1-pool-ppc64le", + "product_id": 1926, + "repository_id": 3903, + "parent_product_id": 1710, + "root_product_id": 1761, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/15-BETA/ppc64le/product_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-BETA-Debuginfo-Pool for ppc64le SP1", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-module-desktop-applications15-sp1-updates-ppc64le", + "parent_channel_label": "sle-product-sles15-sp1-pool-ppc64le", + "product_id": 1774, + "repository_id": 3271, + "parent_product_id": 1770, + "root_product_id": 1761, + "update_tag": "SLE-Module-Desktop-Applications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15-SP1/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Desktop-Applications15-SP1-Updates for ppc64le", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-desktop-applications15-sp1-debuginfo-updates-ppc64le", + "parent_channel_label": "sle-product-sles15-sp1-pool-ppc64le", + "product_id": 1774, + "repository_id": 3272, + "parent_product_id": 1770, + "root_product_id": 1761, + "update_tag": "SLE-Module-Desktop-Applications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15-SP1/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Desktop-Applications15-SP1-Debuginfo-Updates for ppc64le", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-desktop-applications15-sp1-pool-ppc64le", + "parent_channel_label": "sle-product-sles15-sp1-pool-ppc64le", + "product_id": 1774, + "repository_id": 3273, + "parent_product_id": 1770, + "root_product_id": 1761, + "update_tag": "SLE-Module-Desktop-Applications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP1/ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Desktop-Applications15-SP1-Pool for ppc64le", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-desktop-applications15-sp1-debuginfo-pool-ppc64le", + "parent_channel_label": "sle-product-sles15-sp1-pool-ppc64le", + "product_id": 1774, + "repository_id": 3274, + "parent_product_id": 1770, + "root_product_id": 1761, + "update_tag": "SLE-Module-Desktop-Applications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP1/ppc64le/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Desktop-Applications15-SP1-Debuginfo-Pool for ppc64le", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-devtools15-sp1-updates-ppc64le", + "parent_channel_label": "sle-product-sles15-sp1-pool-ppc64le", + "product_id": 1792, + "repository_id": 3361, + "parent_product_id": 1774, + "root_product_id": 1761, + "update_tag": "SLE-Module-Development-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15-SP1/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-DevTools15-SP1-Updates for ppc64le", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-devtools15-sp1-debuginfo-updates-ppc64le", + "parent_channel_label": "sle-product-sles15-sp1-pool-ppc64le", + "product_id": 1792, + "repository_id": 3362, + "parent_product_id": 1774, + "root_product_id": 1761, + "update_tag": "SLE-Module-Development-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15-SP1/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-DevTools15-SP1-Debuginfo-Updates for ppc64le", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-devtools15-sp1-pool-ppc64le", + "parent_channel_label": "sle-product-sles15-sp1-pool-ppc64le", + "product_id": 1792, + "repository_id": 3363, + "parent_product_id": 1774, + "root_product_id": 1761, + "update_tag": "SLE-Module-Development-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP1/ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-DevTools15-SP1-Pool for ppc64le", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-devtools15-sp1-debuginfo-pool-ppc64le", + "parent_channel_label": "sle-product-sles15-sp1-pool-ppc64le", + "product_id": 1792, + "repository_id": 3364, + "parent_product_id": 1774, + "root_product_id": 1761, + "update_tag": "SLE-Module-Development-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP1/ppc64le/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-DevTools15-SP1-Debuginfo-Pool for ppc64le", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-server-applications15-sp1-updates-ppc64le", + "parent_channel_label": "sle-product-sles15-sp1-pool-ppc64le", + "product_id": 1778, + "repository_id": 3291, + "parent_product_id": 1770, + "root_product_id": 1761, + "update_tag": "SLE-Module-Server-Applications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15-SP1/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Server-Applications15-SP1-Updates for ppc64le", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-server-applications15-sp1-debuginfo-updates-ppc64le", + "parent_channel_label": "sle-product-sles15-sp1-pool-ppc64le", + "product_id": 1778, + "repository_id": 3292, + "parent_product_id": 1770, + "root_product_id": 1761, + "update_tag": "SLE-Module-Server-Applications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15-SP1/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Server-Applications15-SP1-Debuginfo-Updates for ppc64le", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-server-applications15-sp1-pool-ppc64le", + "parent_channel_label": "sle-product-sles15-sp1-pool-ppc64le", + "product_id": 1778, + "repository_id": 3293, + "parent_product_id": 1770, + "root_product_id": 1761, + "update_tag": "SLE-Module-Server-Applications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP1/ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Server-Applications15-SP1-Pool for ppc64le", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-server-applications15-sp1-debuginfo-pool-ppc64le", + "parent_channel_label": "sle-product-sles15-sp1-pool-ppc64le", + "product_id": 1778, + "repository_id": 3294, + "parent_product_id": 1770, + "root_product_id": 1761, + "update_tag": "SLE-Module-Server-Applications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP1/ppc64le/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Server-Applications15-SP1-Debuginfo-Pool for ppc64le", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-ha15-sp1-updates-ppc64le", + "parent_channel_label": "sle-product-sles15-sp1-pool-ppc64le", + "product_id": 1783, + "repository_id": 3316, + "parent_product_id": 1778, + "root_product_id": 1761, + "update_tag": "SLE-Product-HA", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-HA/15-SP1/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HA15-SP1-Updates for ppc64le", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-ha15-sp1-debuginfo-updates-ppc64le", + "parent_channel_label": "sle-product-sles15-sp1-pool-ppc64le", + "product_id": 1783, + "repository_id": 3317, + "parent_product_id": 1778, + "root_product_id": 1761, + "update_tag": "SLE-Product-HA", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-HA/15-SP1/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HA15-SP1-Debuginfo-Updates for ppc64le", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-ha15-sp1-pool-ppc64le", + "parent_channel_label": "sle-product-sles15-sp1-pool-ppc64le", + "product_id": 1783, + "repository_id": 3318, + "parent_product_id": 1778, + "root_product_id": 1761, + "update_tag": "SLE-Product-HA", + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP1/ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HA15-SP1-Pool for ppc64le", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-ha15-sp1-debuginfo-pool-ppc64le", + "parent_channel_label": "sle-product-sles15-sp1-pool-ppc64le", + "product_id": 1783, + "repository_id": 3319, + "parent_product_id": 1778, + "root_product_id": 1761, + "update_tag": "SLE-Product-HA", + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP1/ppc64le/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HA15-SP1-Debuginfo-Pool for ppc64le", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting15-sp1-updates-ppc64le", + "parent_channel_label": "sle-product-sles15-sp1-pool-ppc64le", + "product_id": 1796, + "repository_id": 3381, + "parent_product_id": 1778, + "root_product_id": 1761, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/15-SP1/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Web-Scripting15-SP1-Updates for ppc64le", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting15-sp1-debuginfo-updates-ppc64le", + "parent_channel_label": "sle-product-sles15-sp1-pool-ppc64le", + "product_id": 1796, + "repository_id": 3382, + "parent_product_id": 1778, + "root_product_id": 1761, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/15-SP1/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Web-Scripting15-SP1-Debuginfo-Updates for ppc64le", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting15-sp1-pool-ppc64le", + "parent_channel_label": "sle-product-sles15-sp1-pool-ppc64le", + "product_id": 1796, + "repository_id": 3383, + "parent_product_id": 1778, + "root_product_id": 1761, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP1/ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Web-Scripting15-SP1-Pool for ppc64le", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting15-sp1-debuginfo-pool-ppc64le", + "parent_channel_label": "sle-product-sles15-sp1-pool-ppc64le", + "product_id": 1796, + "repository_id": 3384, + "parent_product_id": 1778, + "root_product_id": 1761, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP1/ppc64le/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Web-Scripting15-SP1-Debuginfo-Pool for ppc64le", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-legacy15-sp1-updates-ppc64le", + "parent_channel_label": "sle-product-sles15-sp1-pool-ppc64le", + "product_id": 1802, + "repository_id": 3411, + "parent_product_id": 1778, + "root_product_id": 1761, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/15-SP1/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy15-SP1-Updates for ppc64le", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-legacy15-sp1-debuginfo-updates-ppc64le", + "parent_channel_label": "sle-product-sles15-sp1-pool-ppc64le", + "product_id": 1802, + "repository_id": 3412, + "parent_product_id": 1778, + "root_product_id": 1761, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/15-SP1/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy15-SP1-Debuginfo-Updates for ppc64le", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-legacy15-sp1-pool-ppc64le", + "parent_channel_label": "sle-product-sles15-sp1-pool-ppc64le", + "product_id": 1802, + "repository_id": 3413, + "parent_product_id": 1778, + "root_product_id": 1761, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15-SP1/ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy15-SP1-Pool for ppc64le", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-legacy15-sp1-debuginfo-pool-ppc64le", + "parent_channel_label": "sle-product-sles15-sp1-pool-ppc64le", + "product_id": 1802, + "repository_id": 3414, + "parent_product_id": 1778, + "root_product_id": 1761, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15-SP1/ppc64le/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy15-SP1-Debuginfo-Pool for ppc64le", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud15-sp1-updates-ppc64le", + "parent_channel_label": "sle-product-sles15-sp1-pool-ppc64le", + "product_id": 1806, + "repository_id": 3431, + "parent_product_id": 1778, + "root_product_id": 1761, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/15-SP1/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud15-SP1-Updates for ppc64le", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud15-sp1-debuginfo-updates-ppc64le", + "parent_channel_label": "sle-product-sles15-sp1-pool-ppc64le", + "product_id": 1806, + "repository_id": 3432, + "parent_product_id": 1778, + "root_product_id": 1761, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/15-SP1/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud15-SP1-Debuginfo-Updates for ppc64le", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud15-sp1-pool-ppc64le", + "parent_channel_label": "sle-product-sles15-sp1-pool-ppc64le", + "product_id": 1806, + "repository_id": 3433, + "parent_product_id": 1778, + "root_product_id": 1761, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP1/ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud15-SP1-Pool for ppc64le", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud15-sp1-debuginfo-pool-ppc64le", + "parent_channel_label": "sle-product-sles15-sp1-pool-ppc64le", + "product_id": 1806, + "repository_id": 3434, + "parent_product_id": 1778, + "root_product_id": 1761, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP1/ppc64le/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud15-SP1-Debuginfo-Pool for ppc64le", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "ibm-power-adv-toolchain-sp1", + "parent_channel_label": "sle-product-sles15-sp1-pool-ppc64le", + "product_id": 2076, + "repository_id": 4430, + "parent_product_id": 1778, + "root_product_id": 1761, + "update_tag": null, + "url": "https://public.dhe.ibm.com/software/server/POWER/Linux/toolchain/at/suse/SLES_15/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "IBM-POWER-Adv-Toolchain for ppc64le SP1", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "ibm-power-tools-sp1", + "parent_channel_label": "sle-product-sles15-sp1-pool-ppc64le", + "product_id": 2077, + "repository_id": 4431, + "parent_product_id": 1778, + "root_product_id": 1761, + "update_tag": null, + "url": "https://public.dhe.ibm.com/software/server/POWER/Linux/yum/OSS/SLES/15/ppc64le/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "IBM-POWER-Tools for ppc64le SP1", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-containers15-sp1-updates-ppc64le", + "parent_channel_label": "sle-product-sles15-sp1-pool-ppc64le", + "product_id": 1788, + "repository_id": 3341, + "parent_product_id": 1770, + "root_product_id": 1761, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/15-SP1/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers15-SP1-Updates for ppc64le", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-containers15-sp1-debuginfo-updates-ppc64le", + "parent_channel_label": "sle-product-sles15-sp1-pool-ppc64le", + "product_id": 1788, + "repository_id": 3342, + "parent_product_id": 1770, + "root_product_id": 1761, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/15-SP1/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers15-SP1-Debuginfo-Updates for ppc64le", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-containers15-sp1-pool-ppc64le", + "parent_channel_label": "sle-product-sles15-sp1-pool-ppc64le", + "product_id": 1788, + "repository_id": 3343, + "parent_product_id": 1770, + "root_product_id": 1761, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP1/ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers15-SP1-Pool for ppc64le", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-containers15-sp1-debuginfo-pool-ppc64le", + "parent_channel_label": "sle-product-sles15-sp1-pool-ppc64le", + "product_id": 1788, + "repository_id": 3344, + "parent_product_id": 1770, + "root_product_id": 1761, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP1/ppc64le/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers15-SP1-Debuginfo-Pool for ppc64le", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-transactional-server15-sp1-updates-ppc64le", + "parent_channel_label": "sle-product-sles15-sp1-pool-ppc64le", + "product_id": 1823, + "repository_id": 3502, + "parent_product_id": 1770, + "root_product_id": 1761, + "update_tag": "SLE-Module-Transactional-Server", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Transactional-Server/15-SP1/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Transactional-Server15-SP1-Updates for ppc64le", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-transactional-server15-sp1-debuginfo-updates-ppc64le", + "parent_channel_label": "sle-product-sles15-sp1-pool-ppc64le", + "product_id": 1823, + "repository_id": 3503, + "parent_product_id": 1770, + "root_product_id": 1761, + "update_tag": "SLE-Module-Transactional-Server", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Transactional-Server/15-SP1/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Transactional-Server15-SP1-Debuginfo-Updates for ppc64le", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-transactional-server15-sp1-pool-ppc64le", + "parent_channel_label": "sle-product-sles15-sp1-pool-ppc64le", + "product_id": 1823, + "repository_id": 3504, + "parent_product_id": 1770, + "root_product_id": 1761, + "update_tag": "SLE-Module-Transactional-Server", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Transactional-Server/15-SP1/ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Transactional-Server15-SP1-Pool for ppc64le", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-transactional-server15-sp1-debuginfo-pool-ppc64le", + "parent_channel_label": "sle-product-sles15-sp1-pool-ppc64le", + "product_id": 1823, + "repository_id": 3505, + "parent_product_id": 1770, + "root_product_id": 1761, + "update_tag": "SLE-Module-Transactional-Server", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Transactional-Server/15-SP1/ppc64le/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Transactional-Server15-SP1-Debuginfo-Pool for ppc64le", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-live-patching15-sp1-updates-ppc64le", + "parent_channel_label": "sle-product-sles15-sp1-pool-ppc64le", + "product_id": 1827, + "repository_id": 3530, + "parent_product_id": 1770, + "root_product_id": 1761, + "update_tag": "SLE-Module-Live-Patching", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Live-Patching/15-SP1/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Live-Patching15-SP1-Updates for ppc64le", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-live-patching15-sp1-debuginfo-updates-ppc64le", + "parent_channel_label": "sle-product-sles15-sp1-pool-ppc64le", + "product_id": 1827, + "repository_id": 3531, + "parent_product_id": 1770, + "root_product_id": 1761, + "update_tag": "SLE-Module-Live-Patching", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Live-Patching/15-SP1/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Live-Patching15-SP1-Debuginfo-Updates for ppc64le", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-live-patching15-sp1-pool-ppc64le", + "parent_channel_label": "sle-product-sles15-sp1-pool-ppc64le", + "product_id": 1827, + "repository_id": 3532, + "parent_product_id": 1770, + "root_product_id": 1761, + "update_tag": "SLE-Module-Live-Patching", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Live-Patching/15-SP1/ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Live-Patching15-SP1-Pool for ppc64le", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-live-patching15-sp1-debuginfo-pool-ppc64le", + "parent_channel_label": "sle-product-sles15-sp1-pool-ppc64le", + "product_id": 1827, + "repository_id": 3533, + "parent_product_id": 1770, + "root_product_id": 1761, + "update_tag": "SLE-Module-Live-Patching", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Live-Patching/15-SP1/ppc64le/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Live-Patching15-SP1-Debuginfo-Pool for ppc64le", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-python2-15-sp1-updates-ppc64le", + "parent_channel_label": "sle-product-sles15-sp1-pool-ppc64le", + "product_id": 1865, + "repository_id": 3588, + "parent_product_id": 1770, + "root_product_id": 1761, + "update_tag": "SLE-Module-Python2", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Python2/15-SP1/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Python2-15-SP1-Updates for ppc64le", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-python2-15-sp1-debuginfo-updates-ppc64le", + "parent_channel_label": "sle-product-sles15-sp1-pool-ppc64le", + "product_id": 1865, + "repository_id": 3589, + "parent_product_id": 1770, + "root_product_id": 1761, + "update_tag": "SLE-Module-Python2", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Python2/15-SP1/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Python2-15-SP1-Debuginfo-Updates for ppc64le", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-python2-15-sp1-pool-ppc64le", + "parent_channel_label": "sle-product-sles15-sp1-pool-ppc64le", + "product_id": 1865, + "repository_id": 3590, + "parent_product_id": 1770, + "root_product_id": 1761, + "update_tag": "SLE-Module-Python2", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Python2/15-SP1/ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Python2-15-SP1-Pool for ppc64le", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-python2-15-sp1-debuginfo-pool-ppc64le", + "parent_channel_label": "sle-product-sles15-sp1-pool-ppc64le", + "product_id": 1865, + "repository_id": 3591, + "parent_product_id": 1770, + "root_product_id": 1761, + "update_tag": "SLE-Module-Python2", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Python2/15-SP1/ppc64le/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Python2-15-SP1-Debuginfo-Pool for ppc64le", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-packagehub-15-sp1-standard-pool-ppc64le", + "parent_channel_label": "sle-product-sles15-sp1-pool-ppc64le", + "product_id": 1869, + "repository_id": 3611, + "parent_product_id": 1770, + "root_product_id": 1761, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-15-SP1_ppc64le/standard/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-15-SP1-Standard-Pool for ppc64le", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-packagehub-15-sp1-debuginfo-ppc64le", + "parent_channel_label": "sle-product-sles15-sp1-pool-ppc64le", + "product_id": 1869, + "repository_id": 3612, + "parent_product_id": 1770, + "root_product_id": 1761, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-15-SP1_ppc64le/standard_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-15-SP1-Debuginfo for ppc64le", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-packagehub-subpackages15-sp1-updates-ppc64le", + "parent_channel_label": "sle-product-sles15-sp1-pool-ppc64le", + "product_id": 1869, + "repository_id": 3613, + "parent_product_id": 1770, + "root_product_id": 1761, + "update_tag": "SLE-Module-Packagehub-Subpackages", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP1/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Packagehub-Subpackages15-SP1-Updates for ppc64le", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-packagehub-subpackages15-sp1-debuginfo-updates-ppc64le", + "parent_channel_label": "sle-product-sles15-sp1-pool-ppc64le", + "product_id": 1869, + "repository_id": 3614, + "parent_product_id": 1770, + "root_product_id": 1761, + "update_tag": "SLE-Module-Packagehub-Subpackages", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP1/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Packagehub-Subpackages15-SP1-Debuginfo-Updates for ppc64le", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-packagehub-15-sp1-pool-ppc64le", + "parent_channel_label": "sle-product-sles15-sp1-pool-ppc64le", + "product_id": 1869, + "repository_id": 3615, + "parent_product_id": 1770, + "root_product_id": 1761, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-15-SP1_ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-15-SP1-Pool for ppc64le", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-packagehub-subpackages15-sp1-pool-ppc64le", + "parent_channel_label": "sle-product-sles15-sp1-pool-ppc64le", + "product_id": 1869, + "repository_id": 3616, + "parent_product_id": 1770, + "root_product_id": 1761, + "update_tag": "SLE-Module-Packagehub-Subpackages", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP1/ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Packagehub-Subpackages15-SP1-Pool for ppc64le", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-packagehub-subpackages15-sp1-debuginfo-pool-ppc64le", + "parent_channel_label": "sle-product-sles15-sp1-pool-ppc64le", + "product_id": 1869, + "repository_id": 3617, + "parent_product_id": 1770, + "root_product_id": 1761, + "update_tag": "SLE-Module-Packagehub-Subpackages", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP1/ppc64le/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Packagehub-Subpackages15-SP1-Debuginfo-Pool for ppc64le", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-sles15-sp1-ltss-updates-ppc64le", + "parent_channel_label": "sle-product-sles15-sp1-pool-ppc64le", + "product_id": 2217, + "repository_id": 4973, + "parent_product_id": 1761, + "root_product_id": 1761, + "update_tag": "SLE-Product-SLES", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-SLES/15-SP1-LTSS/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-SLES15-SP1-LTSS-Updates for ppc64le", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-sles15-sp1-debuginfo-ltss-updates-ppc64le", + "parent_channel_label": "sle-product-sles15-sp1-pool-ppc64le", + "product_id": 2217, + "repository_id": 4974, + "parent_product_id": 1761, + "root_product_id": 1761, + "update_tag": "SLE-Product-SLES", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-SLES/15-SP1-LTSS/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-SLES15-SP1-Debuginfo-LTSS-Updates for ppc64le", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-sles15-sp1-updates-s390x", + "parent_channel_label": "sle-product-sles15-sp1-pool-s390x", + "product_id": 1762, + "repository_id": 3209, + "parent_product_id": null, + "root_product_id": 1762, + "update_tag": "SLE-Product-SLES", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-SLES/15-SP1/s390x/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-SLES15-SP1-Updates for s390x", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-sles15-sp1-debuginfo-updates-s390x", + "parent_channel_label": "sle-product-sles15-sp1-pool-s390x", + "product_id": 1762, + "repository_id": 3210, + "parent_product_id": null, + "root_product_id": 1762, + "update_tag": "SLE-Product-SLES", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-SLES/15-SP1/s390x/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-SLES15-SP1-Debuginfo-Updates for s390x", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle15-sp1-installer-updates-s390x", + "parent_channel_label": "sle-product-sles15-sp1-pool-s390x", + "product_id": 1762, + "repository_id": 3211, + "parent_product_id": null, + "root_product_id": 1762, + "update_tag": "SLE-INSTALLER", + "url": "https://updates.suse.com/SUSE/Updates/SLE-INSTALLER/15-SP1/s390x/update/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE15-SP1-Installer-Updates for s390x", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-sles15-sp1-pool-s390x", + "parent_channel_label": null, + "product_id": 1762, + "repository_id": 3212, + "parent_product_id": null, + "root_product_id": 1762, + "update_tag": "SLE-Product-SLES", + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-SLES/15-SP1/s390x/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-SLES15-SP1-Pool for s390x", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-sles15-sp1-debuginfo-pool-s390x", + "parent_channel_label": "sle-product-sles15-sp1-pool-s390x", + "product_id": 1762, + "repository_id": 3213, + "parent_product_id": null, + "root_product_id": 1762, + "update_tag": "SLE-Product-SLES", + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-SLES/15-SP1/s390x/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-SLES15-SP1-Debuginfo-Pool for s390x", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-basesystem15-sp1-updates-s390x", + "parent_channel_label": "sle-product-sles15-sp1-pool-s390x", + "product_id": 1771, + "repository_id": 3256, + "parent_product_id": 1762, + "root_product_id": 1762, + "update_tag": "SLE-Module-Basesystem", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15-SP1/s390x/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Basesystem15-SP1-Updates for s390x", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-basesystem15-sp1-debuginfo-updates-s390x", + "parent_channel_label": "sle-product-sles15-sp1-pool-s390x", + "product_id": 1771, + "repository_id": 3257, + "parent_product_id": 1762, + "root_product_id": 1762, + "update_tag": "SLE-Module-Basesystem", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15-SP1/s390x/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Basesystem15-SP1-Debuginfo-Updates for s390x", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-basesystem15-sp1-pool-s390x", + "parent_channel_label": "sle-product-sles15-sp1-pool-s390x", + "product_id": 1771, + "repository_id": 3258, + "parent_product_id": 1762, + "root_product_id": 1762, + "update_tag": "SLE-Module-Basesystem", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP1/s390x/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Basesystem15-SP1-Pool for s390x", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-basesystem15-sp1-debuginfo-pool-s390x", + "parent_channel_label": "sle-product-sles15-sp1-pool-s390x", + "product_id": 1771, + "repository_id": 3259, + "parent_product_id": 1762, + "root_product_id": 1762, + "update_tag": "SLE-Module-Basesystem", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP1/s390x/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Basesystem15-SP1-Debuginfo-Pool for s390x", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-manager-tools15-updates-s390x-sp1", + "parent_channel_label": "sle-product-sles15-sp1-pool-s390x", + "product_id": 1711, + "repository_id": 2927, + "parent_product_id": 1771, + "root_product_id": 1762, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/15/s390x/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-Updates for s390x SP1", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools15-debuginfo-updates-s390x-sp1", + "parent_channel_label": "sle-product-sles15-sp1-pool-s390x", + "product_id": 1711, + "repository_id": 2928, + "parent_product_id": 1771, + "root_product_id": 1762, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/15/s390x/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-Debuginfo-Updates for s390x SP1", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools15-pool-s390x-sp1", + "parent_channel_label": "sle-product-sles15-sp1-pool-s390x", + "product_id": 1711, + "repository_id": 2929, + "parent_product_id": 1771, + "root_product_id": 1762, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/15/s390x/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-Pool for s390x SP1", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools15-debuginfo-pool-s390x-sp1", + "parent_channel_label": "sle-product-sles15-sp1-pool-s390x", + "product_id": 1711, + "repository_id": 2930, + "parent_product_id": 1771, + "root_product_id": 1762, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/15/s390x/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-Debuginfo-Pool for s390x SP1", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools15-beta-updates-s390x-sp1", + "parent_channel_label": "sle-product-sles15-sp1-pool-s390x", + "product_id": 1927, + "repository_id": 3895, + "parent_product_id": 1711, + "root_product_id": 1762, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/15-BETA/s390x/update/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-BETA-Updates for s390x SP1", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools15-beta-debuginfo-updates-s390x-sp1", + "parent_channel_label": "sle-product-sles15-sp1-pool-s390x", + "product_id": 1927, + "repository_id": 3896, + "parent_product_id": 1711, + "root_product_id": 1762, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/15-BETA/s390x/update_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-BETA-Debuginfo-Updates for s390x SP1", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools15-beta-pool-s390x-sp1", + "parent_channel_label": "sle-product-sles15-sp1-pool-s390x", + "product_id": 1927, + "repository_id": 3905, + "parent_product_id": 1711, + "root_product_id": 1762, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/15-BETA/s390x/product/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-BETA-Pool for s390x SP1", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools15-beta-debuginfo-pool-s390x-sp1", + "parent_channel_label": "sle-product-sles15-sp1-pool-s390x", + "product_id": 1927, + "repository_id": 3906, + "parent_product_id": 1711, + "root_product_id": 1762, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/15-BETA/s390x/product_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-BETA-Debuginfo-Pool for s390x SP1", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-module-desktop-applications15-sp1-updates-s390x", + "parent_channel_label": "sle-product-sles15-sp1-pool-s390x", + "product_id": 1775, + "repository_id": 3276, + "parent_product_id": 1771, + "root_product_id": 1762, + "update_tag": "SLE-Module-Desktop-Applications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15-SP1/s390x/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Desktop-Applications15-SP1-Updates for s390x", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-desktop-applications15-sp1-debuginfo-updates-s390x", + "parent_channel_label": "sle-product-sles15-sp1-pool-s390x", + "product_id": 1775, + "repository_id": 3277, + "parent_product_id": 1771, + "root_product_id": 1762, + "update_tag": "SLE-Module-Desktop-Applications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15-SP1/s390x/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Desktop-Applications15-SP1-Debuginfo-Updates for s390x", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-desktop-applications15-sp1-pool-s390x", + "parent_channel_label": "sle-product-sles15-sp1-pool-s390x", + "product_id": 1775, + "repository_id": 3278, + "parent_product_id": 1771, + "root_product_id": 1762, + "update_tag": "SLE-Module-Desktop-Applications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP1/s390x/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Desktop-Applications15-SP1-Pool for s390x", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-desktop-applications15-sp1-debuginfo-pool-s390x", + "parent_channel_label": "sle-product-sles15-sp1-pool-s390x", + "product_id": 1775, + "repository_id": 3279, + "parent_product_id": 1771, + "root_product_id": 1762, + "update_tag": "SLE-Module-Desktop-Applications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP1/s390x/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Desktop-Applications15-SP1-Debuginfo-Pool for s390x", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-devtools15-sp1-updates-s390x", + "parent_channel_label": "sle-product-sles15-sp1-pool-s390x", + "product_id": 1793, + "repository_id": 3366, + "parent_product_id": 1775, + "root_product_id": 1762, + "update_tag": "SLE-Module-Development-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15-SP1/s390x/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-DevTools15-SP1-Updates for s390x", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-devtools15-sp1-debuginfo-updates-s390x", + "parent_channel_label": "sle-product-sles15-sp1-pool-s390x", + "product_id": 1793, + "repository_id": 3367, + "parent_product_id": 1775, + "root_product_id": 1762, + "update_tag": "SLE-Module-Development-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15-SP1/s390x/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-DevTools15-SP1-Debuginfo-Updates for s390x", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-devtools15-sp1-pool-s390x", + "parent_channel_label": "sle-product-sles15-sp1-pool-s390x", + "product_id": 1793, + "repository_id": 3368, + "parent_product_id": 1775, + "root_product_id": 1762, + "update_tag": "SLE-Module-Development-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP1/s390x/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-DevTools15-SP1-Pool for s390x", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-devtools15-sp1-debuginfo-pool-s390x", + "parent_channel_label": "sle-product-sles15-sp1-pool-s390x", + "product_id": 1793, + "repository_id": 3369, + "parent_product_id": 1775, + "root_product_id": 1762, + "update_tag": "SLE-Module-Development-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP1/s390x/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-DevTools15-SP1-Debuginfo-Pool for s390x", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-server-applications15-sp1-updates-s390x", + "parent_channel_label": "sle-product-sles15-sp1-pool-s390x", + "product_id": 1779, + "repository_id": 3296, + "parent_product_id": 1771, + "root_product_id": 1762, + "update_tag": "SLE-Module-Server-Applications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15-SP1/s390x/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Server-Applications15-SP1-Updates for s390x", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-server-applications15-sp1-debuginfo-updates-s390x", + "parent_channel_label": "sle-product-sles15-sp1-pool-s390x", + "product_id": 1779, + "repository_id": 3297, + "parent_product_id": 1771, + "root_product_id": 1762, + "update_tag": "SLE-Module-Server-Applications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15-SP1/s390x/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Server-Applications15-SP1-Debuginfo-Updates for s390x", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-server-applications15-sp1-pool-s390x", + "parent_channel_label": "sle-product-sles15-sp1-pool-s390x", + "product_id": 1779, + "repository_id": 3298, + "parent_product_id": 1771, + "root_product_id": 1762, + "update_tag": "SLE-Module-Server-Applications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP1/s390x/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Server-Applications15-SP1-Pool for s390x", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-server-applications15-sp1-debuginfo-pool-s390x", + "parent_channel_label": "sle-product-sles15-sp1-pool-s390x", + "product_id": 1779, + "repository_id": 3299, + "parent_product_id": 1771, + "root_product_id": 1762, + "update_tag": "SLE-Module-Server-Applications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP1/s390x/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Server-Applications15-SP1-Debuginfo-Pool for s390x", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-ha15-sp1-updates-s390x", + "parent_channel_label": "sle-product-sles15-sp1-pool-s390x", + "product_id": 1784, + "repository_id": 3321, + "parent_product_id": 1779, + "root_product_id": 1762, + "update_tag": "SLE-Product-HA", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-HA/15-SP1/s390x/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HA15-SP1-Updates for s390x", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-ha15-sp1-debuginfo-updates-s390x", + "parent_channel_label": "sle-product-sles15-sp1-pool-s390x", + "product_id": 1784, + "repository_id": 3322, + "parent_product_id": 1779, + "root_product_id": 1762, + "update_tag": "SLE-Product-HA", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-HA/15-SP1/s390x/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HA15-SP1-Debuginfo-Updates for s390x", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-ha15-sp1-pool-s390x", + "parent_channel_label": "sle-product-sles15-sp1-pool-s390x", + "product_id": 1784, + "repository_id": 3323, + "parent_product_id": 1779, + "root_product_id": 1762, + "update_tag": "SLE-Product-HA", + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP1/s390x/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HA15-SP1-Pool for s390x", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-ha15-sp1-debuginfo-pool-s390x", + "parent_channel_label": "sle-product-sles15-sp1-pool-s390x", + "product_id": 1784, + "repository_id": 3324, + "parent_product_id": 1779, + "root_product_id": 1762, + "update_tag": "SLE-Product-HA", + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP1/s390x/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HA15-SP1-Debuginfo-Pool for s390x", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting15-sp1-updates-s390x", + "parent_channel_label": "sle-product-sles15-sp1-pool-s390x", + "product_id": 1797, + "repository_id": 3386, + "parent_product_id": 1779, + "root_product_id": 1762, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/15-SP1/s390x/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Web-Scripting15-SP1-Updates for s390x", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting15-sp1-debuginfo-updates-s390x", + "parent_channel_label": "sle-product-sles15-sp1-pool-s390x", + "product_id": 1797, + "repository_id": 3387, + "parent_product_id": 1779, + "root_product_id": 1762, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/15-SP1/s390x/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Web-Scripting15-SP1-Debuginfo-Updates for s390x", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting15-sp1-pool-s390x", + "parent_channel_label": "sle-product-sles15-sp1-pool-s390x", + "product_id": 1797, + "repository_id": 3388, + "parent_product_id": 1779, + "root_product_id": 1762, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP1/s390x/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Web-Scripting15-SP1-Pool for s390x", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting15-sp1-debuginfo-pool-s390x", + "parent_channel_label": "sle-product-sles15-sp1-pool-s390x", + "product_id": 1797, + "repository_id": 3389, + "parent_product_id": 1779, + "root_product_id": 1762, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP1/s390x/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Web-Scripting15-SP1-Debuginfo-Pool for s390x", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-legacy15-sp1-updates-s390x", + "parent_channel_label": "sle-product-sles15-sp1-pool-s390x", + "product_id": 1803, + "repository_id": 3416, + "parent_product_id": 1779, + "root_product_id": 1762, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/15-SP1/s390x/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy15-SP1-Updates for s390x", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-legacy15-sp1-debuginfo-updates-s390x", + "parent_channel_label": "sle-product-sles15-sp1-pool-s390x", + "product_id": 1803, + "repository_id": 3417, + "parent_product_id": 1779, + "root_product_id": 1762, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/15-SP1/s390x/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy15-SP1-Debuginfo-Updates for s390x", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-legacy15-sp1-pool-s390x", + "parent_channel_label": "sle-product-sles15-sp1-pool-s390x", + "product_id": 1803, + "repository_id": 3418, + "parent_product_id": 1779, + "root_product_id": 1762, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15-SP1/s390x/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy15-SP1-Pool for s390x", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-legacy15-sp1-debuginfo-pool-s390x", + "parent_channel_label": "sle-product-sles15-sp1-pool-s390x", + "product_id": 1803, + "repository_id": 3419, + "parent_product_id": 1779, + "root_product_id": 1762, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15-SP1/s390x/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy15-SP1-Debuginfo-Pool for s390x", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud15-sp1-updates-s390x", + "parent_channel_label": "sle-product-sles15-sp1-pool-s390x", + "product_id": 1807, + "repository_id": 3436, + "parent_product_id": 1779, + "root_product_id": 1762, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/15-SP1/s390x/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud15-SP1-Updates for s390x", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud15-sp1-debuginfo-updates-s390x", + "parent_channel_label": "sle-product-sles15-sp1-pool-s390x", + "product_id": 1807, + "repository_id": 3437, + "parent_product_id": 1779, + "root_product_id": 1762, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/15-SP1/s390x/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud15-SP1-Debuginfo-Updates for s390x", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud15-sp1-pool-s390x", + "parent_channel_label": "sle-product-sles15-sp1-pool-s390x", + "product_id": 1807, + "repository_id": 3438, + "parent_product_id": 1779, + "root_product_id": 1762, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP1/s390x/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud15-SP1-Pool for s390x", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud15-sp1-debuginfo-pool-s390x", + "parent_channel_label": "sle-product-sles15-sp1-pool-s390x", + "product_id": 1807, + "repository_id": 3439, + "parent_product_id": 1779, + "root_product_id": 1762, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP1/s390x/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud15-SP1-Debuginfo-Pool for s390x", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-containers15-sp1-updates-s390x", + "parent_channel_label": "sle-product-sles15-sp1-pool-s390x", + "product_id": 1789, + "repository_id": 3346, + "parent_product_id": 1771, + "root_product_id": 1762, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/15-SP1/s390x/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers15-SP1-Updates for s390x", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-containers15-sp1-debuginfo-updates-s390x", + "parent_channel_label": "sle-product-sles15-sp1-pool-s390x", + "product_id": 1789, + "repository_id": 3347, + "parent_product_id": 1771, + "root_product_id": 1762, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/15-SP1/s390x/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers15-SP1-Debuginfo-Updates for s390x", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-containers15-sp1-pool-s390x", + "parent_channel_label": "sle-product-sles15-sp1-pool-s390x", + "product_id": 1789, + "repository_id": 3348, + "parent_product_id": 1771, + "root_product_id": 1762, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP1/s390x/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers15-SP1-Pool for s390x", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-containers15-sp1-debuginfo-pool-s390x", + "parent_channel_label": "sle-product-sles15-sp1-pool-s390x", + "product_id": 1789, + "repository_id": 3349, + "parent_product_id": 1771, + "root_product_id": 1762, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP1/s390x/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers15-SP1-Debuginfo-Pool for s390x", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-transactional-server15-sp1-updates-s390x", + "parent_channel_label": "sle-product-sles15-sp1-pool-s390x", + "product_id": 1824, + "repository_id": 3507, + "parent_product_id": 1771, + "root_product_id": 1762, + "update_tag": "SLE-Module-Transactional-Server", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Transactional-Server/15-SP1/s390x/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Transactional-Server15-SP1-Updates for s390x", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-transactional-server15-sp1-debuginfo-updates-s390x", + "parent_channel_label": "sle-product-sles15-sp1-pool-s390x", + "product_id": 1824, + "repository_id": 3508, + "parent_product_id": 1771, + "root_product_id": 1762, + "update_tag": "SLE-Module-Transactional-Server", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Transactional-Server/15-SP1/s390x/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Transactional-Server15-SP1-Debuginfo-Updates for s390x", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-transactional-server15-sp1-pool-s390x", + "parent_channel_label": "sle-product-sles15-sp1-pool-s390x", + "product_id": 1824, + "repository_id": 3509, + "parent_product_id": 1771, + "root_product_id": 1762, + "update_tag": "SLE-Module-Transactional-Server", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Transactional-Server/15-SP1/s390x/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Transactional-Server15-SP1-Pool for s390x", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-transactional-server15-sp1-debuginfo-pool-s390x", + "parent_channel_label": "sle-product-sles15-sp1-pool-s390x", + "product_id": 1824, + "repository_id": 3510, + "parent_product_id": 1771, + "root_product_id": 1762, + "update_tag": "SLE-Module-Transactional-Server", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Transactional-Server/15-SP1/s390x/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Transactional-Server15-SP1-Debuginfo-Pool for s390x", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-python2-15-sp1-updates-s390x", + "parent_channel_label": "sle-product-sles15-sp1-pool-s390x", + "product_id": 1866, + "repository_id": 3593, + "parent_product_id": 1771, + "root_product_id": 1762, + "update_tag": "SLE-Module-Python2", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Python2/15-SP1/s390x/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Python2-15-SP1-Updates for s390x", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-python2-15-sp1-debuginfo-updates-s390x", + "parent_channel_label": "sle-product-sles15-sp1-pool-s390x", + "product_id": 1866, + "repository_id": 3594, + "parent_product_id": 1771, + "root_product_id": 1762, + "update_tag": "SLE-Module-Python2", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Python2/15-SP1/s390x/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Python2-15-SP1-Debuginfo-Updates for s390x", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-python2-15-sp1-pool-s390x", + "parent_channel_label": "sle-product-sles15-sp1-pool-s390x", + "product_id": 1866, + "repository_id": 3595, + "parent_product_id": 1771, + "root_product_id": 1762, + "update_tag": "SLE-Module-Python2", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Python2/15-SP1/s390x/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Python2-15-SP1-Pool for s390x", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-python2-15-sp1-debuginfo-pool-s390x", + "parent_channel_label": "sle-product-sles15-sp1-pool-s390x", + "product_id": 1866, + "repository_id": 3596, + "parent_product_id": 1771, + "root_product_id": 1762, + "update_tag": "SLE-Module-Python2", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Python2/15-SP1/s390x/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Python2-15-SP1-Debuginfo-Pool for s390x", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-packagehub-15-sp1-standard-pool-s390x", + "parent_channel_label": "sle-product-sles15-sp1-pool-s390x", + "product_id": 1870, + "repository_id": 3619, + "parent_product_id": 1771, + "root_product_id": 1762, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-15-SP1_s390x/standard/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-15-SP1-Standard-Pool for s390x", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-packagehub-15-sp1-debuginfo-s390x", + "parent_channel_label": "sle-product-sles15-sp1-pool-s390x", + "product_id": 1870, + "repository_id": 3620, + "parent_product_id": 1771, + "root_product_id": 1762, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-15-SP1_s390x/standard_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-15-SP1-Debuginfo for s390x", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-packagehub-subpackages15-sp1-updates-s390x", + "parent_channel_label": "sle-product-sles15-sp1-pool-s390x", + "product_id": 1870, + "repository_id": 3621, + "parent_product_id": 1771, + "root_product_id": 1762, + "update_tag": "SLE-Module-Packagehub-Subpackages", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP1/s390x/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Packagehub-Subpackages15-SP1-Updates for s390x", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-packagehub-subpackages15-sp1-debuginfo-updates-s390x", + "parent_channel_label": "sle-product-sles15-sp1-pool-s390x", + "product_id": 1870, + "repository_id": 3622, + "parent_product_id": 1771, + "root_product_id": 1762, + "update_tag": "SLE-Module-Packagehub-Subpackages", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP1/s390x/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Packagehub-Subpackages15-SP1-Debuginfo-Updates for s390x", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-packagehub-15-sp1-pool-s390x", + "parent_channel_label": "sle-product-sles15-sp1-pool-s390x", + "product_id": 1870, + "repository_id": 3623, + "parent_product_id": 1771, + "root_product_id": 1762, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-15-SP1_s390x/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-15-SP1-Pool for s390x", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-packagehub-subpackages15-sp1-pool-s390x", + "parent_channel_label": "sle-product-sles15-sp1-pool-s390x", + "product_id": 1870, + "repository_id": 3624, + "parent_product_id": 1771, + "root_product_id": 1762, + "update_tag": "SLE-Module-Packagehub-Subpackages", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP1/s390x/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Packagehub-Subpackages15-SP1-Pool for s390x", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-packagehub-subpackages15-sp1-debuginfo-pool-s390x", + "parent_channel_label": "sle-product-sles15-sp1-pool-s390x", + "product_id": 1870, + "repository_id": 3625, + "parent_product_id": 1771, + "root_product_id": 1762, + "update_tag": "SLE-Module-Packagehub-Subpackages", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP1/s390x/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Packagehub-Subpackages15-SP1-Debuginfo-Pool for s390x", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-sles15-sp1-ltss-updates-s390x", + "parent_channel_label": "sle-product-sles15-sp1-pool-s390x", + "product_id": 2218, + "repository_id": 4975, + "parent_product_id": 1762, + "root_product_id": 1762, + "update_tag": "SLE-Product-SLES", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-SLES/15-SP1-LTSS/s390x/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-SLES15-SP1-LTSS-Updates for s390x", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-sles15-sp1-debuginfo-ltss-updates-s390x", + "parent_channel_label": "sle-product-sles15-sp1-pool-s390x", + "product_id": 2218, + "repository_id": 4976, + "parent_product_id": 1762, + "root_product_id": 1762, + "update_tag": "SLE-Product-SLES", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-SLES/15-SP1-LTSS/s390x/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-SLES15-SP1-Debuginfo-LTSS-Updates for s390x", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-sles15-sp1-updates-x86_64", + "parent_channel_label": "sle-product-sles15-sp1-pool-x86_64", + "product_id": 1763, + "repository_id": 3215, + "parent_product_id": null, + "root_product_id": 1763, + "update_tag": "SLE-Product-SLES", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-SLES/15-SP1/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-SLES15-SP1-Updates for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-sles15-sp1-debuginfo-updates-x86_64", + "parent_channel_label": "sle-product-sles15-sp1-pool-x86_64", + "product_id": 1763, + "repository_id": 3216, + "parent_product_id": null, + "root_product_id": 1763, + "update_tag": "SLE-Product-SLES", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-SLES/15-SP1/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-SLES15-SP1-Debuginfo-Updates for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle15-sp1-installer-updates-x86_64", + "parent_channel_label": "sle-product-sles15-sp1-pool-x86_64", + "product_id": 1763, + "repository_id": 3217, + "parent_product_id": null, + "root_product_id": 1763, + "update_tag": "SLE-INSTALLER", + "url": "https://updates.suse.com/SUSE/Updates/SLE-INSTALLER/15-SP1/x86_64/update/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE15-SP1-Installer-Updates for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-sles15-sp1-pool-x86_64", + "parent_channel_label": null, + "product_id": 1763, + "repository_id": 3218, + "parent_product_id": null, + "root_product_id": 1763, + "update_tag": "SLE-Product-SLES", + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-SLES/15-SP1/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-SLES15-SP1-Pool for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-sles15-sp1-debuginfo-pool-x86_64", + "parent_channel_label": "sle-product-sles15-sp1-pool-x86_64", + "product_id": 1763, + "repository_id": 3219, + "parent_product_id": null, + "root_product_id": 1763, + "update_tag": "SLE-Product-SLES", + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-SLES/15-SP1/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-SLES15-SP1-Debuginfo-Pool for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-basesystem15-sp1-updates-x86_64", + "parent_channel_label": "sle-product-sles15-sp1-pool-x86_64", + "product_id": 1772, + "repository_id": 3261, + "parent_product_id": 1763, + "root_product_id": 1763, + "update_tag": "SLE-Module-Basesystem", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15-SP1/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Basesystem15-SP1-Updates for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-basesystem15-sp1-debuginfo-updates-x86_64", + "parent_channel_label": "sle-product-sles15-sp1-pool-x86_64", + "product_id": 1772, + "repository_id": 3262, + "parent_product_id": 1763, + "root_product_id": 1763, + "update_tag": "SLE-Module-Basesystem", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15-SP1/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Basesystem15-SP1-Debuginfo-Updates for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-basesystem15-sp1-pool-x86_64", + "parent_channel_label": "sle-product-sles15-sp1-pool-x86_64", + "product_id": 1772, + "repository_id": 3263, + "parent_product_id": 1763, + "root_product_id": 1763, + "update_tag": "SLE-Module-Basesystem", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP1/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Basesystem15-SP1-Pool for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-basesystem15-sp1-debuginfo-pool-x86_64", + "parent_channel_label": "sle-product-sles15-sp1-pool-x86_64", + "product_id": 1772, + "repository_id": 3264, + "parent_product_id": 1763, + "root_product_id": 1763, + "update_tag": "SLE-Module-Basesystem", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP1/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Basesystem15-SP1-Debuginfo-Pool for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-manager-tools15-updates-x86_64-sp1", + "parent_channel_label": "sle-product-sles15-sp1-pool-x86_64", + "product_id": 1712, + "repository_id": 2932, + "parent_product_id": 1772, + "root_product_id": 1763, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/15/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-Updates for x86_64 SP1", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools15-debuginfo-updates-x86_64-sp1", + "parent_channel_label": "sle-product-sles15-sp1-pool-x86_64", + "product_id": 1712, + "repository_id": 2933, + "parent_product_id": 1772, + "root_product_id": 1763, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/15/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-Debuginfo-Updates for x86_64 SP1", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools15-pool-x86_64-sp1", + "parent_channel_label": "sle-product-sles15-sp1-pool-x86_64", + "product_id": 1712, + "repository_id": 2934, + "parent_product_id": 1772, + "root_product_id": 1763, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/15/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-Pool for x86_64 SP1", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools15-debuginfo-pool-x86_64-sp1", + "parent_channel_label": "sle-product-sles15-sp1-pool-x86_64", + "product_id": 1712, + "repository_id": 2935, + "parent_product_id": 1772, + "root_product_id": 1763, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/15/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-Debuginfo-Pool for x86_64 SP1", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools15-beta-updates-x86_64-sp1", + "parent_channel_label": "sle-product-sles15-sp1-pool-x86_64", + "product_id": 1928, + "repository_id": 3897, + "parent_product_id": 1712, + "root_product_id": 1763, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/15-BETA/x86_64/update/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-BETA-Updates for x86_64 SP1", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools15-beta-debuginfo-updates-x86_64-sp1", + "parent_channel_label": "sle-product-sles15-sp1-pool-x86_64", + "product_id": 1928, + "repository_id": 3898, + "parent_product_id": 1712, + "root_product_id": 1763, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/15-BETA/x86_64/update_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-BETA-Debuginfo-Updates for x86_64 SP1", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools15-beta-pool-x86_64-sp1", + "parent_channel_label": "sle-product-sles15-sp1-pool-x86_64", + "product_id": 1928, + "repository_id": 3908, + "parent_product_id": 1712, + "root_product_id": 1763, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/15-BETA/x86_64/product/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-BETA-Pool for x86_64 SP1", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools15-beta-debuginfo-pool-x86_64-sp1", + "parent_channel_label": "sle-product-sles15-sp1-pool-x86_64", + "product_id": 1928, + "repository_id": 3909, + "parent_product_id": 1712, + "root_product_id": 1763, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/15-BETA/x86_64/product_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-BETA-Debuginfo-Pool for x86_64 SP1", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-module-desktop-applications15-sp1-updates-x86_64", + "parent_channel_label": "sle-product-sles15-sp1-pool-x86_64", + "product_id": 1776, + "repository_id": 3281, + "parent_product_id": 1772, + "root_product_id": 1763, + "update_tag": "SLE-Module-Desktop-Applications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15-SP1/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Desktop-Applications15-SP1-Updates for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-desktop-applications15-sp1-debuginfo-updates-x86_64", + "parent_channel_label": "sle-product-sles15-sp1-pool-x86_64", + "product_id": 1776, + "repository_id": 3282, + "parent_product_id": 1772, + "root_product_id": 1763, + "update_tag": "SLE-Module-Desktop-Applications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15-SP1/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Desktop-Applications15-SP1-Debuginfo-Updates for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-desktop-applications15-sp1-pool-x86_64", + "parent_channel_label": "sle-product-sles15-sp1-pool-x86_64", + "product_id": 1776, + "repository_id": 3283, + "parent_product_id": 1772, + "root_product_id": 1763, + "update_tag": "SLE-Module-Desktop-Applications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP1/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Desktop-Applications15-SP1-Pool for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-desktop-applications15-sp1-debuginfo-pool-x86_64", + "parent_channel_label": "sle-product-sles15-sp1-pool-x86_64", + "product_id": 1776, + "repository_id": 3284, + "parent_product_id": 1772, + "root_product_id": 1763, + "update_tag": "SLE-Module-Desktop-Applications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP1/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Desktop-Applications15-SP1-Debuginfo-Pool for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-we15-sp1-updates-x86_64", + "parent_channel_label": "sle-product-sles15-sp1-pool-x86_64", + "product_id": 1781, + "repository_id": 3306, + "parent_product_id": 1776, + "root_product_id": 1763, + "update_tag": "SLE-Product-WE", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-WE/15-SP1/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-WE15-SP1-Updates for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-we15-sp1-debuginfo-updates-x86_64", + "parent_channel_label": "sle-product-sles15-sp1-pool-x86_64", + "product_id": 1781, + "repository_id": 3307, + "parent_product_id": 1776, + "root_product_id": 1763, + "update_tag": "SLE-Product-WE", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-WE/15-SP1/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-WE15-SP1-Debuginfo-Updates for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-we15-sp1-pool-x86_64", + "parent_channel_label": "sle-product-sles15-sp1-pool-x86_64", + "product_id": 1781, + "repository_id": 3308, + "parent_product_id": 1776, + "root_product_id": 1763, + "update_tag": "SLE-Product-WE", + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-WE/15-SP1/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-WE15-SP1-Pool for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-we15-sp1-debuginfo-pool-x86_64", + "parent_channel_label": "sle-product-sles15-sp1-pool-x86_64", + "product_id": 1781, + "repository_id": 3309, + "parent_product_id": 1776, + "root_product_id": 1763, + "update_tag": "SLE-Product-WE", + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-WE/15-SP1/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-WE15-SP1-Debuginfo-Pool for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-15-sp1-desktop-nvidia-driver-we", + "parent_channel_label": "sle-product-sles15-sp1-pool-x86_64", + "product_id": 1781, + "repository_id": 3792, + "parent_product_id": 1776, + "root_product_id": 1763, + "update_tag": null, + "url": "https://download.nvidia.com/suse/sle15sp1/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-15-SP1-Desktop-NVIDIA-Driver for x86_64 WE", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-devtools15-sp1-updates-x86_64", + "parent_channel_label": "sle-product-sles15-sp1-pool-x86_64", + "product_id": 1794, + "repository_id": 3371, + "parent_product_id": 1776, + "root_product_id": 1763, + "update_tag": "SLE-Module-Development-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15-SP1/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-DevTools15-SP1-Updates for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-devtools15-sp1-debuginfo-updates-x86_64", + "parent_channel_label": "sle-product-sles15-sp1-pool-x86_64", + "product_id": 1794, + "repository_id": 3372, + "parent_product_id": 1776, + "root_product_id": 1763, + "update_tag": "SLE-Module-Development-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15-SP1/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-DevTools15-SP1-Debuginfo-Updates for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-devtools15-sp1-pool-x86_64", + "parent_channel_label": "sle-product-sles15-sp1-pool-x86_64", + "product_id": 1794, + "repository_id": 3373, + "parent_product_id": 1776, + "root_product_id": 1763, + "update_tag": "SLE-Module-Development-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP1/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-DevTools15-SP1-Pool for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-devtools15-sp1-debuginfo-pool-x86_64", + "parent_channel_label": "sle-product-sles15-sp1-pool-x86_64", + "product_id": 1794, + "repository_id": 3374, + "parent_product_id": 1776, + "root_product_id": 1763, + "update_tag": "SLE-Module-Development-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP1/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-DevTools15-SP1-Debuginfo-Pool for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-server-applications15-sp1-updates-x86_64", + "parent_channel_label": "sle-product-sles15-sp1-pool-x86_64", + "product_id": 1780, + "repository_id": 3301, + "parent_product_id": 1772, + "root_product_id": 1763, + "update_tag": "SLE-Module-Server-Applications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15-SP1/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Server-Applications15-SP1-Updates for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-server-applications15-sp1-debuginfo-updates-x86_64", + "parent_channel_label": "sle-product-sles15-sp1-pool-x86_64", + "product_id": 1780, + "repository_id": 3302, + "parent_product_id": 1772, + "root_product_id": 1763, + "update_tag": "SLE-Module-Server-Applications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15-SP1/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Server-Applications15-SP1-Debuginfo-Updates for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-server-applications15-sp1-pool-x86_64", + "parent_channel_label": "sle-product-sles15-sp1-pool-x86_64", + "product_id": 1780, + "repository_id": 3303, + "parent_product_id": 1772, + "root_product_id": 1763, + "update_tag": "SLE-Module-Server-Applications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP1/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Server-Applications15-SP1-Pool for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-server-applications15-sp1-debuginfo-pool-x86_64", + "parent_channel_label": "sle-product-sles15-sp1-pool-x86_64", + "product_id": 1780, + "repository_id": 3304, + "parent_product_id": 1772, + "root_product_id": 1763, + "update_tag": "SLE-Module-Server-Applications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP1/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Server-Applications15-SP1-Debuginfo-Pool for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-enterprise-storage-6-updates-x86_64-sp1", + "parent_channel_label": "sle-product-sles15-sp1-pool-x86_64", + "product_id": 1644, + "repository_id": 2874, + "parent_product_id": 1780, + "root_product_id": 1763, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Updates/Storage/6/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-Enterprise-Storage-6-Updates for x86_64 SP1", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-enterprise-storage-6-debuginfo-updates-x86_64-sp1", + "parent_channel_label": "sle-product-sles15-sp1-pool-x86_64", + "product_id": 1644, + "repository_id": 2875, + "parent_product_id": 1780, + "root_product_id": 1763, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Updates/Storage/6/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SUSE-Enterprise-Storage-6-Debuginfo-Updates for x86_64 SP1", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-enterprise-storage-6-pool-x86_64-sp1", + "parent_channel_label": "sle-product-sles15-sp1-pool-x86_64", + "product_id": 1644, + "repository_id": 2876, + "parent_product_id": 1780, + "root_product_id": 1763, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Products/Storage/6/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-Enterprise-Storage-6-Pool for x86_64 SP1", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-enterprise-storage-6-debuginfo-pool-x86_64-sp1", + "parent_channel_label": "sle-product-sles15-sp1-pool-x86_64", + "product_id": 1644, + "repository_id": 2877, + "parent_product_id": 1780, + "root_product_id": 1763, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Products/Storage/6/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SUSE-Enterprise-Storage-6-Debuginfo-Pool for x86_64 SP1", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-ha15-sp1-updates-x86_64", + "parent_channel_label": "sle-product-sles15-sp1-pool-x86_64", + "product_id": 1785, + "repository_id": 3326, + "parent_product_id": 1780, + "root_product_id": 1763, + "update_tag": "SLE-Product-HA", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-HA/15-SP1/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HA15-SP1-Updates for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-ha15-sp1-debuginfo-updates-x86_64", + "parent_channel_label": "sle-product-sles15-sp1-pool-x86_64", + "product_id": 1785, + "repository_id": 3327, + "parent_product_id": 1780, + "root_product_id": 1763, + "update_tag": "SLE-Product-HA", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-HA/15-SP1/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HA15-SP1-Debuginfo-Updates for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-ha15-sp1-pool-x86_64", + "parent_channel_label": "sle-product-sles15-sp1-pool-x86_64", + "product_id": 1785, + "repository_id": 3328, + "parent_product_id": 1780, + "root_product_id": 1763, + "update_tag": "SLE-Product-HA", + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP1/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HA15-SP1-Pool for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-ha15-sp1-debuginfo-pool-x86_64", + "parent_channel_label": "sle-product-sles15-sp1-pool-x86_64", + "product_id": 1785, + "repository_id": 3329, + "parent_product_id": 1780, + "root_product_id": 1763, + "update_tag": "SLE-Product-HA", + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP1/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HA15-SP1-Debuginfo-Pool for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting15-sp1-updates-x86_64", + "parent_channel_label": "sle-product-sles15-sp1-pool-x86_64", + "product_id": 1798, + "repository_id": 3391, + "parent_product_id": 1780, + "root_product_id": 1763, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/15-SP1/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Web-Scripting15-SP1-Updates for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting15-sp1-debuginfo-updates-x86_64", + "parent_channel_label": "sle-product-sles15-sp1-pool-x86_64", + "product_id": 1798, + "repository_id": 3392, + "parent_product_id": 1780, + "root_product_id": 1763, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/15-SP1/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Web-Scripting15-SP1-Debuginfo-Updates for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting15-sp1-pool-x86_64", + "parent_channel_label": "sle-product-sles15-sp1-pool-x86_64", + "product_id": 1798, + "repository_id": 3393, + "parent_product_id": 1780, + "root_product_id": 1763, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP1/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Web-Scripting15-SP1-Pool for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting15-sp1-debuginfo-pool-x86_64", + "parent_channel_label": "sle-product-sles15-sp1-pool-x86_64", + "product_id": 1798, + "repository_id": 3394, + "parent_product_id": 1780, + "root_product_id": 1763, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP1/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Web-Scripting15-SP1-Debuginfo-Pool for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-legacy15-sp1-updates-x86_64", + "parent_channel_label": "sle-product-sles15-sp1-pool-x86_64", + "product_id": 1804, + "repository_id": 3421, + "parent_product_id": 1780, + "root_product_id": 1763, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/15-SP1/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy15-SP1-Updates for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-legacy15-sp1-debuginfo-updates-x86_64", + "parent_channel_label": "sle-product-sles15-sp1-pool-x86_64", + "product_id": 1804, + "repository_id": 3422, + "parent_product_id": 1780, + "root_product_id": 1763, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/15-SP1/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy15-SP1-Debuginfo-Updates for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-legacy15-sp1-pool-x86_64", + "parent_channel_label": "sle-product-sles15-sp1-pool-x86_64", + "product_id": 1804, + "repository_id": 3423, + "parent_product_id": 1780, + "root_product_id": 1763, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15-SP1/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy15-SP1-Pool for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-legacy15-sp1-debuginfo-pool-x86_64", + "parent_channel_label": "sle-product-sles15-sp1-pool-x86_64", + "product_id": 1804, + "repository_id": 3424, + "parent_product_id": 1780, + "root_product_id": 1763, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15-SP1/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy15-SP1-Debuginfo-Pool for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud15-sp1-updates-x86_64", + "parent_channel_label": "sle-product-sles15-sp1-pool-x86_64", + "product_id": 1808, + "repository_id": 3441, + "parent_product_id": 1780, + "root_product_id": 1763, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/15-SP1/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud15-SP1-Updates for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud15-sp1-debuginfo-updates-x86_64", + "parent_channel_label": "sle-product-sles15-sp1-pool-x86_64", + "product_id": 1808, + "repository_id": 3442, + "parent_product_id": 1780, + "root_product_id": 1763, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/15-SP1/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud15-SP1-Debuginfo-Updates for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud15-sp1-pool-x86_64", + "parent_channel_label": "sle-product-sles15-sp1-pool-x86_64", + "product_id": 1808, + "repository_id": 3443, + "parent_product_id": 1780, + "root_product_id": 1763, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP1/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud15-SP1-Pool for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud15-sp1-debuginfo-pool-x86_64", + "parent_channel_label": "sle-product-sles15-sp1-pool-x86_64", + "product_id": 1808, + "repository_id": 3444, + "parent_product_id": 1780, + "root_product_id": 1763, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP1/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud15-SP1-Debuginfo-Pool for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-containers15-sp1-updates-x86_64", + "parent_channel_label": "sle-product-sles15-sp1-pool-x86_64", + "product_id": 1790, + "repository_id": 3351, + "parent_product_id": 1772, + "root_product_id": 1763, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/15-SP1/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers15-SP1-Updates for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-containers15-sp1-debuginfo-updates-x86_64", + "parent_channel_label": "sle-product-sles15-sp1-pool-x86_64", + "product_id": 1790, + "repository_id": 3352, + "parent_product_id": 1772, + "root_product_id": 1763, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/15-SP1/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers15-SP1-Debuginfo-Updates for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-containers15-sp1-pool-x86_64", + "parent_channel_label": "sle-product-sles15-sp1-pool-x86_64", + "product_id": 1790, + "repository_id": 3353, + "parent_product_id": 1772, + "root_product_id": 1763, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP1/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers15-SP1-Pool for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-containers15-sp1-debuginfo-pool-x86_64", + "parent_channel_label": "sle-product-sles15-sp1-pool-x86_64", + "product_id": 1790, + "repository_id": 3354, + "parent_product_id": 1772, + "root_product_id": 1763, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP1/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers15-SP1-Debuginfo-Pool for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-caasp-4.0-updates-x86_64-sp1", + "parent_channel_label": "sle-product-sles15-sp1-pool-x86_64", + "product_id": 1863, + "repository_id": 3578, + "parent_product_id": 1790, + "root_product_id": 1763, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Updates/SUSE-CAASP/4.0/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-CAASP-4.0-Updates for x86_64 SP1", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-caasp-4.0-debuginfo-updates-x86_64-sp1", + "parent_channel_label": "sle-product-sles15-sp1-pool-x86_64", + "product_id": 1863, + "repository_id": 3579, + "parent_product_id": 1790, + "root_product_id": 1763, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Updates/SUSE-CAASP/4.0/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SUSE-CAASP-4.0-Debuginfo-Updates for x86_64 SP1", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-caasp-4.0-pool-x86_64-sp1", + "parent_channel_label": "sle-product-sles15-sp1-pool-x86_64", + "product_id": 1863, + "repository_id": 3580, + "parent_product_id": 1790, + "root_product_id": 1763, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Products/SUSE-CAASP/4.0/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-CAASP-4.0-Pool for x86_64 SP1", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-caasp-4.0-debuginfo-pool-x86_64-sp1", + "parent_channel_label": "sle-product-sles15-sp1-pool-x86_64", + "product_id": 1863, + "repository_id": 3581, + "parent_product_id": 1790, + "root_product_id": 1763, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Products/SUSE-CAASP/4.0/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SUSE-CAASP-4.0-Debuginfo-Pool for x86_64 SP1", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-cap-tools15-sp1-updates-x86_64", + "parent_channel_label": "sle-product-sles15-sp1-pool-x86_64", + "product_id": 1809, + "repository_id": 3446, + "parent_product_id": 1772, + "root_product_id": 1763, + "update_tag": "SLE-Module-CAP-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-CAP-Tools/15-SP1/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-CAP-Tools15-SP1-Updates for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-cap-tools15-sp1-debuginfo-updates-x86_64", + "parent_channel_label": "sle-product-sles15-sp1-pool-x86_64", + "product_id": 1809, + "repository_id": 3447, + "parent_product_id": 1772, + "root_product_id": 1763, + "update_tag": "SLE-Module-CAP-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-CAP-Tools/15-SP1/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-CAP-Tools15-SP1-Debuginfo-Updates for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-cap-tools15-sp1-pool-x86_64", + "parent_channel_label": "sle-product-sles15-sp1-pool-x86_64", + "product_id": 1809, + "repository_id": 3448, + "parent_product_id": 1772, + "root_product_id": 1763, + "update_tag": "SLE-Module-CAP-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-CAP-Tools/15-SP1/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-CAP-Tools15-SP1-Pool for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-cap-tools15-sp1-debuginfo-pool-x86_64", + "parent_channel_label": "sle-product-sles15-sp1-pool-x86_64", + "product_id": 1809, + "repository_id": 3449, + "parent_product_id": 1772, + "root_product_id": 1763, + "update_tag": "SLE-Module-CAP-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-CAP-Tools/15-SP1/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-CAP-Tools15-SP1-Debuginfo-Pool for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-transactional-server15-sp1-updates-x86_64", + "parent_channel_label": "sle-product-sles15-sp1-pool-x86_64", + "product_id": 1825, + "repository_id": 3512, + "parent_product_id": 1772, + "root_product_id": 1763, + "update_tag": "SLE-Module-Transactional-Server", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Transactional-Server/15-SP1/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Transactional-Server15-SP1-Updates for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-transactional-server15-sp1-debuginfo-updates-x86_64", + "parent_channel_label": "sle-product-sles15-sp1-pool-x86_64", + "product_id": 1825, + "repository_id": 3513, + "parent_product_id": 1772, + "root_product_id": 1763, + "update_tag": "SLE-Module-Transactional-Server", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Transactional-Server/15-SP1/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Transactional-Server15-SP1-Debuginfo-Updates for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-transactional-server15-sp1-pool-x86_64", + "parent_channel_label": "sle-product-sles15-sp1-pool-x86_64", + "product_id": 1825, + "repository_id": 3514, + "parent_product_id": 1772, + "root_product_id": 1763, + "update_tag": "SLE-Module-Transactional-Server", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Transactional-Server/15-SP1/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Transactional-Server15-SP1-Pool for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-transactional-server15-sp1-debuginfo-pool-x86_64", + "parent_channel_label": "sle-product-sles15-sp1-pool-x86_64", + "product_id": 1825, + "repository_id": 3515, + "parent_product_id": 1772, + "root_product_id": 1763, + "update_tag": "SLE-Module-Transactional-Server", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Transactional-Server/15-SP1/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Transactional-Server15-SP1-Debuginfo-Pool for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-live-patching15-sp1-updates-x86_64", + "parent_channel_label": "sle-product-sles15-sp1-pool-x86_64", + "product_id": 1828, + "repository_id": 3535, + "parent_product_id": 1772, + "root_product_id": 1763, + "update_tag": "SLE-Module-Live-Patching", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Live-Patching/15-SP1/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Live-Patching15-SP1-Updates for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-live-patching15-sp1-debuginfo-updates-x86_64", + "parent_channel_label": "sle-product-sles15-sp1-pool-x86_64", + "product_id": 1828, + "repository_id": 3536, + "parent_product_id": 1772, + "root_product_id": 1763, + "update_tag": "SLE-Module-Live-Patching", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Live-Patching/15-SP1/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Live-Patching15-SP1-Debuginfo-Updates for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-live-patching15-sp1-pool-x86_64", + "parent_channel_label": "sle-product-sles15-sp1-pool-x86_64", + "product_id": 1828, + "repository_id": 3537, + "parent_product_id": 1772, + "root_product_id": 1763, + "update_tag": "SLE-Module-Live-Patching", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Live-Patching/15-SP1/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Live-Patching15-SP1-Pool for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-live-patching15-sp1-debuginfo-pool-x86_64", + "parent_channel_label": "sle-product-sles15-sp1-pool-x86_64", + "product_id": 1828, + "repository_id": 3538, + "parent_product_id": 1772, + "root_product_id": 1763, + "update_tag": "SLE-Module-Live-Patching", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Live-Patching/15-SP1/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Live-Patching15-SP1-Debuginfo-Pool for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-python2-15-sp1-updates-x86_64", + "parent_channel_label": "sle-product-sles15-sp1-pool-x86_64", + "product_id": 1867, + "repository_id": 3598, + "parent_product_id": 1772, + "root_product_id": 1763, + "update_tag": "SLE-Module-Python2", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Python2/15-SP1/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Python2-15-SP1-Updates for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-python2-15-sp1-debuginfo-updates-x86_64", + "parent_channel_label": "sle-product-sles15-sp1-pool-x86_64", + "product_id": 1867, + "repository_id": 3599, + "parent_product_id": 1772, + "root_product_id": 1763, + "update_tag": "SLE-Module-Python2", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Python2/15-SP1/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Python2-15-SP1-Debuginfo-Updates for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-python2-15-sp1-pool-x86_64", + "parent_channel_label": "sle-product-sles15-sp1-pool-x86_64", + "product_id": 1867, + "repository_id": 3600, + "parent_product_id": 1772, + "root_product_id": 1763, + "update_tag": "SLE-Module-Python2", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Python2/15-SP1/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Python2-15-SP1-Pool for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-python2-15-sp1-debuginfo-pool-x86_64", + "parent_channel_label": "sle-product-sles15-sp1-pool-x86_64", + "product_id": 1867, + "repository_id": 3601, + "parent_product_id": 1772, + "root_product_id": 1763, + "update_tag": "SLE-Module-Python2", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Python2/15-SP1/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Python2-15-SP1-Debuginfo-Pool for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-packagehub-15-sp1-standard-pool-x86_64", + "parent_channel_label": "sle-product-sles15-sp1-pool-x86_64", + "product_id": 1871, + "repository_id": 3627, + "parent_product_id": 1772, + "root_product_id": 1763, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-15-SP1_x86_64/standard/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-15-SP1-Standard-Pool for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-packagehub-15-sp1-debuginfo-x86_64", + "parent_channel_label": "sle-product-sles15-sp1-pool-x86_64", + "product_id": 1871, + "repository_id": 3628, + "parent_product_id": 1772, + "root_product_id": 1763, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-15-SP1_x86_64/standard_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-15-SP1-Debuginfo for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-packagehub-subpackages15-sp1-updates-x86_64", + "parent_channel_label": "sle-product-sles15-sp1-pool-x86_64", + "product_id": 1871, + "repository_id": 3629, + "parent_product_id": 1772, + "root_product_id": 1763, + "update_tag": "SLE-Module-Packagehub-Subpackages", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP1/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Packagehub-Subpackages15-SP1-Updates for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-packagehub-subpackages15-sp1-debuginfo-updates-x86_64", + "parent_channel_label": "sle-product-sles15-sp1-pool-x86_64", + "product_id": 1871, + "repository_id": 3630, + "parent_product_id": 1772, + "root_product_id": 1763, + "update_tag": "SLE-Module-Packagehub-Subpackages", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP1/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Packagehub-Subpackages15-SP1-Debuginfo-Updates for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-packagehub-15-sp1-pool-x86_64", + "parent_channel_label": "sle-product-sles15-sp1-pool-x86_64", + "product_id": 1871, + "repository_id": 3631, + "parent_product_id": 1772, + "root_product_id": 1763, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-15-SP1_x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-15-SP1-Pool for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-packagehub-subpackages15-sp1-pool-x86_64", + "parent_channel_label": "sle-product-sles15-sp1-pool-x86_64", + "product_id": 1871, + "repository_id": 3632, + "parent_product_id": 1772, + "root_product_id": 1763, + "update_tag": "SLE-Module-Packagehub-Subpackages", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP1/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Packagehub-Subpackages15-SP1-Pool for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-packagehub-subpackages15-sp1-debuginfo-pool-x86_64", + "parent_channel_label": "sle-product-sles15-sp1-pool-x86_64", + "product_id": 1871, + "repository_id": 3633, + "parent_product_id": 1772, + "root_product_id": 1763, + "update_tag": "SLE-Module-Packagehub-Subpackages", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP1/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Packagehub-Subpackages15-SP1-Debuginfo-Pool for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-sles15-sp1-ltss-updates-x86_64", + "parent_channel_label": "sle-product-sles15-sp1-pool-x86_64", + "product_id": 2219, + "repository_id": 4977, + "parent_product_id": 1763, + "root_product_id": 1763, + "update_tag": "SLE-Product-SLES", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-SLES/15-SP1-LTSS/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-SLES15-SP1-LTSS-Updates for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-sles15-sp1-debuginfo-ltss-updates-x86_64", + "parent_channel_label": "sle-product-sles15-sp1-pool-x86_64", + "product_id": 2219, + "repository_id": 4978, + "parent_product_id": 1763, + "root_product_id": 1763, + "update_tag": "SLE-Product-SLES", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-SLES/15-SP1-LTSS/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-SLES15-SP1-Debuginfo-LTSS-Updates for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-sled15-sp1-updates-x86_64", + "parent_channel_label": "sle-product-sled15-sp1-pool-x86_64", + "product_id": 1764, + "repository_id": 3221, + "parent_product_id": null, + "root_product_id": 1764, + "update_tag": "SLE-Product-SLED", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-SLED/15-SP1/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-SLED15-SP1-Updates for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-sled15-sp1-debuginfo-updates-x86_64", + "parent_channel_label": "sle-product-sled15-sp1-pool-x86_64", + "product_id": 1764, + "repository_id": 3222, + "parent_product_id": null, + "root_product_id": 1764, + "update_tag": "SLE-Product-SLED", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-SLED/15-SP1/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-SLED15-SP1-Debuginfo-Updates for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-sled15-sp1-pool-x86_64", + "parent_channel_label": null, + "product_id": 1764, + "repository_id": 3223, + "parent_product_id": null, + "root_product_id": 1764, + "update_tag": "SLE-Product-SLED", + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-SLED/15-SP1/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-SLED15-SP1-Pool for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-sled15-sp1-debuginfo-pool-x86_64", + "parent_channel_label": "sle-product-sled15-sp1-pool-x86_64", + "product_id": 1764, + "repository_id": 3224, + "parent_product_id": null, + "root_product_id": 1764, + "update_tag": "SLE-Product-SLED", + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-SLED/15-SP1/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-SLED15-SP1-Debuginfo-Pool for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-basesystem15-sp1-updates-x86_64-sled", + "parent_channel_label": "sle-product-sled15-sp1-pool-x86_64", + "product_id": 1772, + "repository_id": 3261, + "parent_product_id": 1764, + "root_product_id": 1764, + "update_tag": "SLE-Module-Basesystem", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15-SP1/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Basesystem15-SP1-Updates for x86_64 SLED", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-basesystem15-sp1-debuginfo-updates-x86_64-sled", + "parent_channel_label": "sle-product-sled15-sp1-pool-x86_64", + "product_id": 1772, + "repository_id": 3262, + "parent_product_id": 1764, + "root_product_id": 1764, + "update_tag": "SLE-Module-Basesystem", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15-SP1/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Basesystem15-SP1-Debuginfo-Updates for x86_64 SLED", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-basesystem15-sp1-pool-x86_64-sled", + "parent_channel_label": "sle-product-sled15-sp1-pool-x86_64", + "product_id": 1772, + "repository_id": 3263, + "parent_product_id": 1764, + "root_product_id": 1764, + "update_tag": "SLE-Module-Basesystem", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP1/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Basesystem15-SP1-Pool for x86_64 SLED", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-basesystem15-sp1-debuginfo-pool-x86_64-sled", + "parent_channel_label": "sle-product-sled15-sp1-pool-x86_64", + "product_id": 1772, + "repository_id": 3264, + "parent_product_id": 1764, + "root_product_id": 1764, + "update_tag": "SLE-Module-Basesystem", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP1/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Basesystem15-SP1-Debuginfo-Pool for x86_64 SLED", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-manager-tools15-updates-x86_64-sled-sp1", + "parent_channel_label": "sle-product-sled15-sp1-pool-x86_64", + "product_id": 1712, + "repository_id": 2932, + "parent_product_id": 1772, + "root_product_id": 1764, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/15/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-Updates for x86_64 SLED SP1", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools15-debuginfo-updates-x86_64-sled-sp1", + "parent_channel_label": "sle-product-sled15-sp1-pool-x86_64", + "product_id": 1712, + "repository_id": 2933, + "parent_product_id": 1772, + "root_product_id": 1764, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/15/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-Debuginfo-Updates for x86_64 SLED SP1", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools15-pool-x86_64-sled-sp1", + "parent_channel_label": "sle-product-sled15-sp1-pool-x86_64", + "product_id": 1712, + "repository_id": 2934, + "parent_product_id": 1772, + "root_product_id": 1764, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/15/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-Pool for x86_64 SLED SP1", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools15-debuginfo-pool-x86_64-sled-sp1", + "parent_channel_label": "sle-product-sled15-sp1-pool-x86_64", + "product_id": 1712, + "repository_id": 2935, + "parent_product_id": 1772, + "root_product_id": 1764, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/15/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-Debuginfo-Pool for x86_64 SLED SP1", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools15-beta-updates-x86_64-sled-sp1", + "parent_channel_label": "sle-product-sled15-sp1-pool-x86_64", + "product_id": 1928, + "repository_id": 3897, + "parent_product_id": 1712, + "root_product_id": 1764, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/15-BETA/x86_64/update/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-BETA-Updates for x86_64 SLED SP1", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools15-beta-debuginfo-updates-x86_64-sled-sp1", + "parent_channel_label": "sle-product-sled15-sp1-pool-x86_64", + "product_id": 1928, + "repository_id": 3898, + "parent_product_id": 1712, + "root_product_id": 1764, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/15-BETA/x86_64/update_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-BETA-Debuginfo-Updates for x86_64 SLED SP1", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools15-beta-pool-x86_64-sled-sp1", + "parent_channel_label": "sle-product-sled15-sp1-pool-x86_64", + "product_id": 1928, + "repository_id": 3908, + "parent_product_id": 1712, + "root_product_id": 1764, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/15-BETA/x86_64/product/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-BETA-Pool for x86_64 SLED SP1", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools15-beta-debuginfo-pool-x86_64-sled-sp1", + "parent_channel_label": "sle-product-sled15-sp1-pool-x86_64", + "product_id": 1928, + "repository_id": 3909, + "parent_product_id": 1712, + "root_product_id": 1764, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/15-BETA/x86_64/product_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-BETA-Debuginfo-Pool for x86_64 SLED SP1", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-module-desktop-applications15-sp1-updates-x86_64-sled", + "parent_channel_label": "sle-product-sled15-sp1-pool-x86_64", + "product_id": 1776, + "repository_id": 3281, + "parent_product_id": 1772, + "root_product_id": 1764, + "update_tag": "SLE-Module-Desktop-Applications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15-SP1/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Desktop-Applications15-SP1-Updates for x86_64 SLED", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-desktop-applications15-sp1-debuginfo-updates-x86_64-sled", + "parent_channel_label": "sle-product-sled15-sp1-pool-x86_64", + "product_id": 1776, + "repository_id": 3282, + "parent_product_id": 1772, + "root_product_id": 1764, + "update_tag": "SLE-Module-Desktop-Applications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15-SP1/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Desktop-Applications15-SP1-Debuginfo-Updates for x86_64 SLED", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-desktop-applications15-sp1-pool-x86_64-sled", + "parent_channel_label": "sle-product-sled15-sp1-pool-x86_64", + "product_id": 1776, + "repository_id": 3283, + "parent_product_id": 1772, + "root_product_id": 1764, + "update_tag": "SLE-Module-Desktop-Applications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP1/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Desktop-Applications15-SP1-Pool for x86_64 SLED", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-desktop-applications15-sp1-debuginfo-pool-x86_64-sled", + "parent_channel_label": "sle-product-sled15-sp1-pool-x86_64", + "product_id": 1776, + "repository_id": 3284, + "parent_product_id": 1772, + "root_product_id": 1764, + "update_tag": "SLE-Module-Desktop-Applications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP1/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Desktop-Applications15-SP1-Debuginfo-Pool for x86_64 SLED", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-we15-sp1-updates-x86_64-sled", + "parent_channel_label": "sle-product-sled15-sp1-pool-x86_64", + "product_id": 1781, + "repository_id": 3306, + "parent_product_id": 1776, + "root_product_id": 1764, + "update_tag": "SLE-Product-WE", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-WE/15-SP1/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Product-WE15-SP1-Updates for x86_64 SLED", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-we15-sp1-debuginfo-updates-x86_64-sled", + "parent_channel_label": "sle-product-sled15-sp1-pool-x86_64", + "product_id": 1781, + "repository_id": 3307, + "parent_product_id": 1776, + "root_product_id": 1764, + "update_tag": "SLE-Product-WE", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-WE/15-SP1/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Product-WE15-SP1-Debuginfo-Updates for x86_64 SLED", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-we15-sp1-pool-x86_64-sled", + "parent_channel_label": "sle-product-sled15-sp1-pool-x86_64", + "product_id": 1781, + "repository_id": 3308, + "parent_product_id": 1776, + "root_product_id": 1764, + "update_tag": "SLE-Product-WE", + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-WE/15-SP1/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Product-WE15-SP1-Pool for x86_64 SLED", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-we15-sp1-debuginfo-pool-x86_64-sled", + "parent_channel_label": "sle-product-sled15-sp1-pool-x86_64", + "product_id": 1781, + "repository_id": 3309, + "parent_product_id": 1776, + "root_product_id": 1764, + "update_tag": "SLE-Product-WE", + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-WE/15-SP1/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Product-WE15-SP1-Debuginfo-Pool for x86_64 SLED", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-15-sp1-desktop-nvidia-driver", + "parent_channel_label": "sle-product-sled15-sp1-pool-x86_64", + "product_id": 1781, + "repository_id": 3792, + "parent_product_id": 1776, + "root_product_id": 1764, + "update_tag": null, + "url": "https://download.nvidia.com/suse/sle15sp1/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-15-SP1-Desktop-NVIDIA-Driver for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-devtools15-sp1-updates-x86_64-sled", + "parent_channel_label": "sle-product-sled15-sp1-pool-x86_64", + "product_id": 1794, + "repository_id": 3371, + "parent_product_id": 1776, + "root_product_id": 1764, + "update_tag": "SLE-Module-Development-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15-SP1/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-DevTools15-SP1-Updates for x86_64 SLED", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-devtools15-sp1-debuginfo-updates-x86_64-sled", + "parent_channel_label": "sle-product-sled15-sp1-pool-x86_64", + "product_id": 1794, + "repository_id": 3372, + "parent_product_id": 1776, + "root_product_id": 1764, + "update_tag": "SLE-Module-Development-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15-SP1/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-DevTools15-SP1-Debuginfo-Updates for x86_64 SLED", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-devtools15-sp1-pool-x86_64-sled", + "parent_channel_label": "sle-product-sled15-sp1-pool-x86_64", + "product_id": 1794, + "repository_id": 3373, + "parent_product_id": 1776, + "root_product_id": 1764, + "update_tag": "SLE-Module-Development-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP1/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-DevTools15-SP1-Pool for x86_64 SLED", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-devtools15-sp1-debuginfo-pool-x86_64-sled", + "parent_channel_label": "sle-product-sled15-sp1-pool-x86_64", + "product_id": 1794, + "repository_id": 3374, + "parent_product_id": 1776, + "root_product_id": 1764, + "update_tag": "SLE-Module-Development-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP1/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-DevTools15-SP1-Debuginfo-Pool for x86_64 SLED", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-cap-tools15-sp1-updates-x86_64-sled", + "parent_channel_label": "sle-product-sled15-sp1-pool-x86_64", + "product_id": 1809, + "repository_id": 3446, + "parent_product_id": 1772, + "root_product_id": 1764, + "update_tag": "SLE-Module-CAP-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-CAP-Tools/15-SP1/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-CAP-Tools15-SP1-Updates for x86_64 SLED", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-cap-tools15-sp1-debuginfo-updates-x86_64-sled", + "parent_channel_label": "sle-product-sled15-sp1-pool-x86_64", + "product_id": 1809, + "repository_id": 3447, + "parent_product_id": 1772, + "root_product_id": 1764, + "update_tag": "SLE-Module-CAP-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-CAP-Tools/15-SP1/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-CAP-Tools15-SP1-Debuginfo-Updates for x86_64 SLED", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-cap-tools15-sp1-pool-x86_64-sled", + "parent_channel_label": "sle-product-sled15-sp1-pool-x86_64", + "product_id": 1809, + "repository_id": 3448, + "parent_product_id": 1772, + "root_product_id": 1764, + "update_tag": "SLE-Module-CAP-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-CAP-Tools/15-SP1/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-CAP-Tools15-SP1-Pool for x86_64 SLED", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-cap-tools15-sp1-debuginfo-pool-x86_64-sled", + "parent_channel_label": "sle-product-sled15-sp1-pool-x86_64", + "product_id": 1809, + "repository_id": 3449, + "parent_product_id": 1772, + "root_product_id": 1764, + "update_tag": "SLE-Module-CAP-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-CAP-Tools/15-SP1/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-CAP-Tools15-SP1-Debuginfo-Pool for x86_64 SLED", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-python2-15-sp1-updates-x86_64-sled", + "parent_channel_label": "sle-product-sled15-sp1-pool-x86_64", + "product_id": 1867, + "repository_id": 3598, + "parent_product_id": 1772, + "root_product_id": 1764, + "update_tag": "SLE-Module-Python2", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Python2/15-SP1/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Python2-15-SP1-Updates for x86_64 SLED", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-python2-15-sp1-debuginfo-updates-x86_64-sled", + "parent_channel_label": "sle-product-sled15-sp1-pool-x86_64", + "product_id": 1867, + "repository_id": 3599, + "parent_product_id": 1772, + "root_product_id": 1764, + "update_tag": "SLE-Module-Python2", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Python2/15-SP1/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Python2-15-SP1-Debuginfo-Updates for x86_64 SLED", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-python2-15-sp1-pool-x86_64-sled", + "parent_channel_label": "sle-product-sled15-sp1-pool-x86_64", + "product_id": 1867, + "repository_id": 3600, + "parent_product_id": 1772, + "root_product_id": 1764, + "update_tag": "SLE-Module-Python2", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Python2/15-SP1/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Python2-15-SP1-Pool for x86_64 SLED", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-python2-15-sp1-debuginfo-pool-x86_64-sled", + "parent_channel_label": "sle-product-sled15-sp1-pool-x86_64", + "product_id": 1867, + "repository_id": 3601, + "parent_product_id": 1772, + "root_product_id": 1764, + "update_tag": "SLE-Module-Python2", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Python2/15-SP1/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Python2-15-SP1-Debuginfo-Pool for x86_64 SLED", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-packagehub-15-sp1-standard-pool-x86_64-sled", + "parent_channel_label": "sle-product-sled15-sp1-pool-x86_64", + "product_id": 1871, + "repository_id": 3627, + "parent_product_id": 1772, + "root_product_id": 1764, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-15-SP1_x86_64/standard/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-15-SP1-Standard-Pool for x86_64 SLED", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-packagehub-15-sp1-debuginfo-x86_64-sled", + "parent_channel_label": "sle-product-sled15-sp1-pool-x86_64", + "product_id": 1871, + "repository_id": 3628, + "parent_product_id": 1772, + "root_product_id": 1764, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-15-SP1_x86_64/standard_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-15-SP1-Debuginfo for x86_64 SLED", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-packagehub-subpackages15-sp1-updates-x86_64-sled", + "parent_channel_label": "sle-product-sled15-sp1-pool-x86_64", + "product_id": 1871, + "repository_id": 3629, + "parent_product_id": 1772, + "root_product_id": 1764, + "update_tag": "SLE-Module-Packagehub-Subpackages", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP1/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Packagehub-Subpackages15-SP1-Updates for x86_64 SLED", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-packagehub-subpackages15-sp1-debuginfo-updates-x86_64-sled", + "parent_channel_label": "sle-product-sled15-sp1-pool-x86_64", + "product_id": 1871, + "repository_id": 3630, + "parent_product_id": 1772, + "root_product_id": 1764, + "update_tag": "SLE-Module-Packagehub-Subpackages", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP1/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Packagehub-Subpackages15-SP1-Debuginfo-Updates for x86_64 SLED", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-packagehub-15-sp1-pool-x86_64-sled", + "parent_channel_label": "sle-product-sled15-sp1-pool-x86_64", + "product_id": 1871, + "repository_id": 3631, + "parent_product_id": 1772, + "root_product_id": 1764, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-15-SP1_x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-15-SP1-Pool for x86_64 SLED", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-packagehub-subpackages15-sp1-pool-x86_64-sled", + "parent_channel_label": "sle-product-sled15-sp1-pool-x86_64", + "product_id": 1871, + "repository_id": 3632, + "parent_product_id": 1772, + "root_product_id": 1764, + "update_tag": "SLE-Module-Packagehub-Subpackages", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP1/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Packagehub-Subpackages15-SP1-Pool for x86_64 SLED", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-packagehub-subpackages15-sp1-debuginfo-pool-x86_64-sled", + "parent_channel_label": "sle-product-sled15-sp1-pool-x86_64", + "product_id": 1871, + "repository_id": 3633, + "parent_product_id": 1772, + "root_product_id": 1764, + "update_tag": "SLE-Module-Packagehub-Subpackages", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP1/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Packagehub-Subpackages15-SP1-Debuginfo-Pool for x86_64 SLED", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-sles_sap15-sp1-updates-ppc64le", + "parent_channel_label": "sle-product-sles_sap15-sp1-pool-ppc64le", + "product_id": 1765, + "repository_id": 3226, + "parent_product_id": null, + "root_product_id": 1765, + "update_tag": "SLE-Product-SLES_SAP", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-SLES_SAP/15-SP1/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-SLES_SAP15-SP1-Updates for ppc64le", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-sles_sap15-sp1-debuginfo-updates-ppc64le", + "parent_channel_label": "sle-product-sles_sap15-sp1-pool-ppc64le", + "product_id": 1765, + "repository_id": 3227, + "parent_product_id": null, + "root_product_id": 1765, + "update_tag": "SLE-Product-SLES_SAP", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-SLES_SAP/15-SP1/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-SLES_SAP15-SP1-Debuginfo-Updates for ppc64le", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-sles_sap15-sp1-pool-ppc64le", + "parent_channel_label": null, + "product_id": 1765, + "repository_id": 3228, + "parent_product_id": null, + "root_product_id": 1765, + "update_tag": "SLE-Product-SLES_SAP", + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-SLES_SAP/15-SP1/ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-SLES_SAP15-SP1-Pool for ppc64le", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-sles_sap15-sp1-debuginfo-pool-ppc64le", + "parent_channel_label": "sle-product-sles_sap15-sp1-pool-ppc64le", + "product_id": 1765, + "repository_id": 3229, + "parent_product_id": null, + "root_product_id": 1765, + "update_tag": "SLE-Product-SLES_SAP", + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-SLES_SAP/15-SP1/ppc64le/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-SLES_SAP15-SP1-Debuginfo-Pool for ppc64le", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-basesystem15-sp1-updates-ppc64le-sap", + "parent_channel_label": "sle-product-sles_sap15-sp1-pool-ppc64le", + "product_id": 1770, + "repository_id": 3251, + "parent_product_id": 1765, + "root_product_id": 1765, + "update_tag": "SLE-Module-Basesystem", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15-SP1/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Basesystem15-SP1-Updates for ppc64le SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-basesystem15-sp1-debuginfo-updates-ppc64le-sap", + "parent_channel_label": "sle-product-sles_sap15-sp1-pool-ppc64le", + "product_id": 1770, + "repository_id": 3252, + "parent_product_id": 1765, + "root_product_id": 1765, + "update_tag": "SLE-Module-Basesystem", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15-SP1/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Basesystem15-SP1-Debuginfo-Updates for ppc64le SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-basesystem15-sp1-pool-ppc64le-sap", + "parent_channel_label": "sle-product-sles_sap15-sp1-pool-ppc64le", + "product_id": 1770, + "repository_id": 3253, + "parent_product_id": 1765, + "root_product_id": 1765, + "update_tag": "SLE-Module-Basesystem", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP1/ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Basesystem15-SP1-Pool for ppc64le SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-basesystem15-sp1-debuginfo-pool-ppc64le-sap", + "parent_channel_label": "sle-product-sles_sap15-sp1-pool-ppc64le", + "product_id": 1770, + "repository_id": 3254, + "parent_product_id": 1765, + "root_product_id": 1765, + "update_tag": "SLE-Module-Basesystem", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP1/ppc64le/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Basesystem15-SP1-Debuginfo-Pool for ppc64le SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-manager-tools15-updates-ppc64le-sap-sp1", + "parent_channel_label": "sle-product-sles_sap15-sp1-pool-ppc64le", + "product_id": 1710, + "repository_id": 2922, + "parent_product_id": 1770, + "root_product_id": 1765, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/15/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-Updates for ppc64le SAP SP1", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools15-debuginfo-updates-ppc64le-sap-sp1", + "parent_channel_label": "sle-product-sles_sap15-sp1-pool-ppc64le", + "product_id": 1710, + "repository_id": 2923, + "parent_product_id": 1770, + "root_product_id": 1765, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/15/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-Debuginfo-Updates for ppc64le SAP SP1", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools15-pool-ppc64le-sap-sp1", + "parent_channel_label": "sle-product-sles_sap15-sp1-pool-ppc64le", + "product_id": 1710, + "repository_id": 2924, + "parent_product_id": 1770, + "root_product_id": 1765, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/15/ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-Pool for ppc64le SAP SP1", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools15-debuginfo-pool-ppc64le-sap-sp1", + "parent_channel_label": "sle-product-sles_sap15-sp1-pool-ppc64le", + "product_id": 1710, + "repository_id": 2925, + "parent_product_id": 1770, + "root_product_id": 1765, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/15/ppc64le/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-Debuginfo-Pool for ppc64le SAP SP1", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools15-beta-updates-ppc64le-sap-sp1", + "parent_channel_label": "sle-product-sles_sap15-sp1-pool-ppc64le", + "product_id": 1926, + "repository_id": 3893, + "parent_product_id": 1710, + "root_product_id": 1765, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/15-BETA/ppc64le/update/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-BETA-Updates for ppc64le SAP SP1", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools15-beta-debuginfo-updates-ppc64le-sap-sp1", + "parent_channel_label": "sle-product-sles_sap15-sp1-pool-ppc64le", + "product_id": 1926, + "repository_id": 3894, + "parent_product_id": 1710, + "root_product_id": 1765, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/15-BETA/ppc64le/update_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-BETA-Debuginfo-Updates for ppc64le SAP SP1", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools15-beta-pool-ppc64le-sap-sp1", + "parent_channel_label": "sle-product-sles_sap15-sp1-pool-ppc64le", + "product_id": 1926, + "repository_id": 3902, + "parent_product_id": 1710, + "root_product_id": 1765, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/15-BETA/ppc64le/product/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-BETA-Pool for ppc64le SAP SP1", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools15-beta-debuginfo-pool-ppc64le-sap-sp1", + "parent_channel_label": "sle-product-sles_sap15-sp1-pool-ppc64le", + "product_id": 1926, + "repository_id": 3903, + "parent_product_id": 1710, + "root_product_id": 1765, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/15-BETA/ppc64le/product_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-BETA-Debuginfo-Pool for ppc64le SAP SP1", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-module-desktop-applications15-sp1-updates-ppc64le-sap", + "parent_channel_label": "sle-product-sles_sap15-sp1-pool-ppc64le", + "product_id": 1774, + "repository_id": 3271, + "parent_product_id": 1770, + "root_product_id": 1765, + "update_tag": "SLE-Module-Desktop-Applications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15-SP1/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Desktop-Applications15-SP1-Updates for ppc64le SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-desktop-applications15-sp1-debuginfo-updates-ppc64le-sap", + "parent_channel_label": "sle-product-sles_sap15-sp1-pool-ppc64le", + "product_id": 1774, + "repository_id": 3272, + "parent_product_id": 1770, + "root_product_id": 1765, + "update_tag": "SLE-Module-Desktop-Applications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15-SP1/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Desktop-Applications15-SP1-Debuginfo-Updates for ppc64le SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-desktop-applications15-sp1-pool-ppc64le-sap", + "parent_channel_label": "sle-product-sles_sap15-sp1-pool-ppc64le", + "product_id": 1774, + "repository_id": 3273, + "parent_product_id": 1770, + "root_product_id": 1765, + "update_tag": "SLE-Module-Desktop-Applications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP1/ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Desktop-Applications15-SP1-Pool for ppc64le SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-desktop-applications15-sp1-debuginfo-pool-ppc64le-sap", + "parent_channel_label": "sle-product-sles_sap15-sp1-pool-ppc64le", + "product_id": 1774, + "repository_id": 3274, + "parent_product_id": 1770, + "root_product_id": 1765, + "update_tag": "SLE-Module-Desktop-Applications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP1/ppc64le/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Desktop-Applications15-SP1-Debuginfo-Pool for ppc64le SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-devtools15-sp1-updates-ppc64le-sap", + "parent_channel_label": "sle-product-sles_sap15-sp1-pool-ppc64le", + "product_id": 1792, + "repository_id": 3361, + "parent_product_id": 1774, + "root_product_id": 1765, + "update_tag": "SLE-Module-Development-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15-SP1/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-DevTools15-SP1-Updates for ppc64le SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-devtools15-sp1-debuginfo-updates-ppc64le-sap", + "parent_channel_label": "sle-product-sles_sap15-sp1-pool-ppc64le", + "product_id": 1792, + "repository_id": 3362, + "parent_product_id": 1774, + "root_product_id": 1765, + "update_tag": "SLE-Module-Development-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15-SP1/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-DevTools15-SP1-Debuginfo-Updates for ppc64le SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-devtools15-sp1-pool-ppc64le-sap", + "parent_channel_label": "sle-product-sles_sap15-sp1-pool-ppc64le", + "product_id": 1792, + "repository_id": 3363, + "parent_product_id": 1774, + "root_product_id": 1765, + "update_tag": "SLE-Module-Development-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP1/ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-DevTools15-SP1-Pool for ppc64le SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-devtools15-sp1-debuginfo-pool-ppc64le-sap", + "parent_channel_label": "sle-product-sles_sap15-sp1-pool-ppc64le", + "product_id": 1792, + "repository_id": 3364, + "parent_product_id": 1774, + "root_product_id": 1765, + "update_tag": "SLE-Module-Development-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP1/ppc64le/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-DevTools15-SP1-Debuginfo-Pool for ppc64le SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-server-applications15-sp1-updates-ppc64le-sap", + "parent_channel_label": "sle-product-sles_sap15-sp1-pool-ppc64le", + "product_id": 1778, + "repository_id": 3291, + "parent_product_id": 1770, + "root_product_id": 1765, + "update_tag": "SLE-Module-Server-Applications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15-SP1/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Server-Applications15-SP1-Updates for ppc64le SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-server-applications15-sp1-debuginfo-updates-ppc64le-sap", + "parent_channel_label": "sle-product-sles_sap15-sp1-pool-ppc64le", + "product_id": 1778, + "repository_id": 3292, + "parent_product_id": 1770, + "root_product_id": 1765, + "update_tag": "SLE-Module-Server-Applications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15-SP1/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Server-Applications15-SP1-Debuginfo-Updates for ppc64le SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-server-applications15-sp1-pool-ppc64le-sap", + "parent_channel_label": "sle-product-sles_sap15-sp1-pool-ppc64le", + "product_id": 1778, + "repository_id": 3293, + "parent_product_id": 1770, + "root_product_id": 1765, + "update_tag": "SLE-Module-Server-Applications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP1/ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Server-Applications15-SP1-Pool for ppc64le SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-server-applications15-sp1-debuginfo-pool-ppc64le-sap", + "parent_channel_label": "sle-product-sles_sap15-sp1-pool-ppc64le", + "product_id": 1778, + "repository_id": 3294, + "parent_product_id": 1770, + "root_product_id": 1765, + "update_tag": "SLE-Module-Server-Applications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP1/ppc64le/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Server-Applications15-SP1-Debuginfo-Pool for ppc64le SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-ha15-sp1-updates-ppc64le-sap", + "parent_channel_label": "sle-product-sles_sap15-sp1-pool-ppc64le", + "product_id": 1783, + "repository_id": 3316, + "parent_product_id": 1778, + "root_product_id": 1765, + "update_tag": "SLE-Product-HA", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-HA/15-SP1/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Product-HA15-SP1-Updates for ppc64le SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-ha15-sp1-debuginfo-updates-ppc64le-sap", + "parent_channel_label": "sle-product-sles_sap15-sp1-pool-ppc64le", + "product_id": 1783, + "repository_id": 3317, + "parent_product_id": 1778, + "root_product_id": 1765, + "update_tag": "SLE-Product-HA", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-HA/15-SP1/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Product-HA15-SP1-Debuginfo-Updates for ppc64le SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-ha15-sp1-pool-ppc64le-sap", + "parent_channel_label": "sle-product-sles_sap15-sp1-pool-ppc64le", + "product_id": 1783, + "repository_id": 3318, + "parent_product_id": 1778, + "root_product_id": 1765, + "update_tag": "SLE-Product-HA", + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP1/ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Product-HA15-SP1-Pool for ppc64le SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-ha15-sp1-debuginfo-pool-ppc64le-sap", + "parent_channel_label": "sle-product-sles_sap15-sp1-pool-ppc64le", + "product_id": 1783, + "repository_id": 3319, + "parent_product_id": 1778, + "root_product_id": 1765, + "update_tag": "SLE-Product-HA", + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP1/ppc64le/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Product-HA15-SP1-Debuginfo-Pool for ppc64le SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-sap-applications15-sp1-updates-ppc64le", + "parent_channel_label": "sle-product-sles_sap15-sp1-pool-ppc64le", + "product_id": 1786, + "repository_id": 3331, + "parent_product_id": 1783, + "root_product_id": 1765, + "update_tag": "SLE-Module-SAP-Applications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-SAP-Applications/15-SP1/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-SAP-Applications15-SP1-Updates for ppc64le", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-sap-applications15-sp1-debuginfo-updates-ppc64le", + "parent_channel_label": "sle-product-sles_sap15-sp1-pool-ppc64le", + "product_id": 1786, + "repository_id": 3332, + "parent_product_id": 1783, + "root_product_id": 1765, + "update_tag": "SLE-Module-SAP-Applications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-SAP-Applications/15-SP1/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-SAP-Applications15-SP1-Debuginfo-Updates for ppc64le", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-sap-applications15-sp1-pool-ppc64le", + "parent_channel_label": "sle-product-sles_sap15-sp1-pool-ppc64le", + "product_id": 1786, + "repository_id": 3333, + "parent_product_id": 1783, + "root_product_id": 1765, + "update_tag": "SLE-Module-SAP-Applications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-SAP-Applications/15-SP1/ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-SAP-Applications15-SP1-Pool for ppc64le", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-sap-applications15-sp1-debuginfo-pool-ppc64le", + "parent_channel_label": "sle-product-sles_sap15-sp1-pool-ppc64le", + "product_id": 1786, + "repository_id": 3334, + "parent_product_id": 1783, + "root_product_id": 1765, + "update_tag": "SLE-Module-SAP-Applications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-SAP-Applications/15-SP1/ppc64le/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-SAP-Applications15-SP1-Debuginfo-Pool for ppc64le", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting15-sp1-updates-ppc64le-sap", + "parent_channel_label": "sle-product-sles_sap15-sp1-pool-ppc64le", + "product_id": 1796, + "repository_id": 3381, + "parent_product_id": 1778, + "root_product_id": 1765, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/15-SP1/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Web-Scripting15-SP1-Updates for ppc64le SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting15-sp1-debuginfo-updates-ppc64le-sap", + "parent_channel_label": "sle-product-sles_sap15-sp1-pool-ppc64le", + "product_id": 1796, + "repository_id": 3382, + "parent_product_id": 1778, + "root_product_id": 1765, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/15-SP1/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Web-Scripting15-SP1-Debuginfo-Updates for ppc64le SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting15-sp1-pool-ppc64le-sap", + "parent_channel_label": "sle-product-sles_sap15-sp1-pool-ppc64le", + "product_id": 1796, + "repository_id": 3383, + "parent_product_id": 1778, + "root_product_id": 1765, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP1/ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Web-Scripting15-SP1-Pool for ppc64le SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting15-sp1-debuginfo-pool-ppc64le-sap", + "parent_channel_label": "sle-product-sles_sap15-sp1-pool-ppc64le", + "product_id": 1796, + "repository_id": 3384, + "parent_product_id": 1778, + "root_product_id": 1765, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP1/ppc64le/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Web-Scripting15-SP1-Debuginfo-Pool for ppc64le SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-legacy15-sp1-updates-ppc64le-sap", + "parent_channel_label": "sle-product-sles_sap15-sp1-pool-ppc64le", + "product_id": 1802, + "repository_id": 3411, + "parent_product_id": 1778, + "root_product_id": 1765, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/15-SP1/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy15-SP1-Updates for ppc64le SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-legacy15-sp1-debuginfo-updates-ppc64le-sap", + "parent_channel_label": "sle-product-sles_sap15-sp1-pool-ppc64le", + "product_id": 1802, + "repository_id": 3412, + "parent_product_id": 1778, + "root_product_id": 1765, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/15-SP1/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy15-SP1-Debuginfo-Updates for ppc64le SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-legacy15-sp1-pool-ppc64le-sap", + "parent_channel_label": "sle-product-sles_sap15-sp1-pool-ppc64le", + "product_id": 1802, + "repository_id": 3413, + "parent_product_id": 1778, + "root_product_id": 1765, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15-SP1/ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy15-SP1-Pool for ppc64le SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-legacy15-sp1-debuginfo-pool-ppc64le-sap", + "parent_channel_label": "sle-product-sles_sap15-sp1-pool-ppc64le", + "product_id": 1802, + "repository_id": 3414, + "parent_product_id": 1778, + "root_product_id": 1765, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15-SP1/ppc64le/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy15-SP1-Debuginfo-Pool for ppc64le SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud15-sp1-updates-ppc64le-sap", + "parent_channel_label": "sle-product-sles_sap15-sp1-pool-ppc64le", + "product_id": 1806, + "repository_id": 3431, + "parent_product_id": 1778, + "root_product_id": 1765, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/15-SP1/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud15-SP1-Updates for ppc64le SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud15-sp1-debuginfo-updates-ppc64le-sap", + "parent_channel_label": "sle-product-sles_sap15-sp1-pool-ppc64le", + "product_id": 1806, + "repository_id": 3432, + "parent_product_id": 1778, + "root_product_id": 1765, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/15-SP1/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud15-SP1-Debuginfo-Updates for ppc64le SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud15-sp1-pool-ppc64le-sap", + "parent_channel_label": "sle-product-sles_sap15-sp1-pool-ppc64le", + "product_id": 1806, + "repository_id": 3433, + "parent_product_id": 1778, + "root_product_id": 1765, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP1/ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud15-SP1-Pool for ppc64le SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud15-sp1-debuginfo-pool-ppc64le-sap", + "parent_channel_label": "sle-product-sles_sap15-sp1-pool-ppc64le", + "product_id": 1806, + "repository_id": 3434, + "parent_product_id": 1778, + "root_product_id": 1765, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP1/ppc64le/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud15-SP1-Debuginfo-Pool for ppc64le SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "ibm-power-adv-toolchain-sap-sp1", + "parent_channel_label": "sle-product-sles_sap15-sp1-pool-ppc64le", + "product_id": 2076, + "repository_id": 4430, + "parent_product_id": 1778, + "root_product_id": 1765, + "update_tag": null, + "url": "https://public.dhe.ibm.com/software/server/POWER/Linux/toolchain/at/suse/SLES_15/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "IBM-POWER-Adv-Toolchain for ppc64le SAP SP1", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "ibm-power-tools-sap-sp1", + "parent_channel_label": "sle-product-sles_sap15-sp1-pool-ppc64le", + "product_id": 2077, + "repository_id": 4431, + "parent_product_id": 1778, + "root_product_id": 1765, + "update_tag": null, + "url": "https://public.dhe.ibm.com/software/server/POWER/Linux/yum/OSS/SLES/15/ppc64le/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "IBM-POWER-Tools for ppc64le SAP SP1", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-containers15-sp1-updates-ppc64le-sap", + "parent_channel_label": "sle-product-sles_sap15-sp1-pool-ppc64le", + "product_id": 1788, + "repository_id": 3341, + "parent_product_id": 1770, + "root_product_id": 1765, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/15-SP1/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers15-SP1-Updates for ppc64le SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-containers15-sp1-debuginfo-updates-ppc64le-sap", + "parent_channel_label": "sle-product-sles_sap15-sp1-pool-ppc64le", + "product_id": 1788, + "repository_id": 3342, + "parent_product_id": 1770, + "root_product_id": 1765, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/15-SP1/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers15-SP1-Debuginfo-Updates for ppc64le SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-containers15-sp1-pool-ppc64le-sap", + "parent_channel_label": "sle-product-sles_sap15-sp1-pool-ppc64le", + "product_id": 1788, + "repository_id": 3343, + "parent_product_id": 1770, + "root_product_id": 1765, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP1/ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers15-SP1-Pool for ppc64le SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-containers15-sp1-debuginfo-pool-ppc64le-sap", + "parent_channel_label": "sle-product-sles_sap15-sp1-pool-ppc64le", + "product_id": 1788, + "repository_id": 3344, + "parent_product_id": 1770, + "root_product_id": 1765, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP1/ppc64le/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers15-SP1-Debuginfo-Pool for ppc64le SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-live-patching15-sp1-updates-ppc64le-sap", + "parent_channel_label": "sle-product-sles_sap15-sp1-pool-ppc64le", + "product_id": 1827, + "repository_id": 3530, + "parent_product_id": 1770, + "root_product_id": 1765, + "update_tag": "SLE-Module-Live-Patching", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Live-Patching/15-SP1/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Live-Patching15-SP1-Updates for ppc64le SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-live-patching15-sp1-debuginfo-updates-ppc64le-sap", + "parent_channel_label": "sle-product-sles_sap15-sp1-pool-ppc64le", + "product_id": 1827, + "repository_id": 3531, + "parent_product_id": 1770, + "root_product_id": 1765, + "update_tag": "SLE-Module-Live-Patching", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Live-Patching/15-SP1/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Live-Patching15-SP1-Debuginfo-Updates for ppc64le SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-live-patching15-sp1-pool-ppc64le-sap", + "parent_channel_label": "sle-product-sles_sap15-sp1-pool-ppc64le", + "product_id": 1827, + "repository_id": 3532, + "parent_product_id": 1770, + "root_product_id": 1765, + "update_tag": "SLE-Module-Live-Patching", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Live-Patching/15-SP1/ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Live-Patching15-SP1-Pool for ppc64le SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-live-patching15-sp1-debuginfo-pool-ppc64le-sap", + "parent_channel_label": "sle-product-sles_sap15-sp1-pool-ppc64le", + "product_id": 1827, + "repository_id": 3533, + "parent_product_id": 1770, + "root_product_id": 1765, + "update_tag": "SLE-Module-Live-Patching", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Live-Patching/15-SP1/ppc64le/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Live-Patching15-SP1-Debuginfo-Pool for ppc64le SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-python2-15-sp1-updates-ppc64le-sap", + "parent_channel_label": "sle-product-sles_sap15-sp1-pool-ppc64le", + "product_id": 1865, + "repository_id": 3588, + "parent_product_id": 1770, + "root_product_id": 1765, + "update_tag": "SLE-Module-Python2", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Python2/15-SP1/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Python2-15-SP1-Updates for ppc64le SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-python2-15-sp1-debuginfo-updates-ppc64le-sap", + "parent_channel_label": "sle-product-sles_sap15-sp1-pool-ppc64le", + "product_id": 1865, + "repository_id": 3589, + "parent_product_id": 1770, + "root_product_id": 1765, + "update_tag": "SLE-Module-Python2", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Python2/15-SP1/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Python2-15-SP1-Debuginfo-Updates for ppc64le SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-python2-15-sp1-pool-ppc64le-sap", + "parent_channel_label": "sle-product-sles_sap15-sp1-pool-ppc64le", + "product_id": 1865, + "repository_id": 3590, + "parent_product_id": 1770, + "root_product_id": 1765, + "update_tag": "SLE-Module-Python2", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Python2/15-SP1/ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Python2-15-SP1-Pool for ppc64le SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-python2-15-sp1-debuginfo-pool-ppc64le-sap", + "parent_channel_label": "sle-product-sles_sap15-sp1-pool-ppc64le", + "product_id": 1865, + "repository_id": 3591, + "parent_product_id": 1770, + "root_product_id": 1765, + "update_tag": "SLE-Module-Python2", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Python2/15-SP1/ppc64le/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Python2-15-SP1-Debuginfo-Pool for ppc64le SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-packagehub-15-sp1-standard-pool-ppc64le-sap", + "parent_channel_label": "sle-product-sles_sap15-sp1-pool-ppc64le", + "product_id": 1869, + "repository_id": 3611, + "parent_product_id": 1770, + "root_product_id": 1765, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-15-SP1_ppc64le/standard/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-15-SP1-Standard-Pool for ppc64le SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-packagehub-15-sp1-debuginfo-ppc64le-sap", + "parent_channel_label": "sle-product-sles_sap15-sp1-pool-ppc64le", + "product_id": 1869, + "repository_id": 3612, + "parent_product_id": 1770, + "root_product_id": 1765, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-15-SP1_ppc64le/standard_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-15-SP1-Debuginfo for ppc64le SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-packagehub-subpackages15-sp1-updates-ppc64le-sap", + "parent_channel_label": "sle-product-sles_sap15-sp1-pool-ppc64le", + "product_id": 1869, + "repository_id": 3613, + "parent_product_id": 1770, + "root_product_id": 1765, + "update_tag": "SLE-Module-Packagehub-Subpackages", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP1/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Packagehub-Subpackages15-SP1-Updates for ppc64le SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-packagehub-subpackages15-sp1-debuginfo-updates-ppc64le-sap", + "parent_channel_label": "sle-product-sles_sap15-sp1-pool-ppc64le", + "product_id": 1869, + "repository_id": 3614, + "parent_product_id": 1770, + "root_product_id": 1765, + "update_tag": "SLE-Module-Packagehub-Subpackages", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP1/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Packagehub-Subpackages15-SP1-Debuginfo-Updates for ppc64le SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-packagehub-15-sp1-pool-ppc64le-sap", + "parent_channel_label": "sle-product-sles_sap15-sp1-pool-ppc64le", + "product_id": 1869, + "repository_id": 3615, + "parent_product_id": 1770, + "root_product_id": 1765, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-15-SP1_ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-15-SP1-Pool for ppc64le SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-packagehub-subpackages15-sp1-pool-ppc64le-sap", + "parent_channel_label": "sle-product-sles_sap15-sp1-pool-ppc64le", + "product_id": 1869, + "repository_id": 3616, + "parent_product_id": 1770, + "root_product_id": 1765, + "update_tag": "SLE-Module-Packagehub-Subpackages", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP1/ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Packagehub-Subpackages15-SP1-Pool for ppc64le SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-packagehub-subpackages15-sp1-debuginfo-pool-ppc64le-sap", + "parent_channel_label": "sle-product-sles_sap15-sp1-pool-ppc64le", + "product_id": 1869, + "repository_id": 3617, + "parent_product_id": 1770, + "root_product_id": 1765, + "update_tag": "SLE-Module-Packagehub-Subpackages", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP1/ppc64le/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Packagehub-Subpackages15-SP1-Debuginfo-Pool for ppc64le SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-sles_sap15-sp1-updates-x86_64", + "parent_channel_label": "sle-product-sles_sap15-sp1-pool-x86_64", + "product_id": 1766, + "repository_id": 3231, + "parent_product_id": null, + "root_product_id": 1766, + "update_tag": "SLE-Product-SLES_SAP", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-SLES_SAP/15-SP1/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-SLES_SAP15-SP1-Updates for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-sles_sap15-sp1-debuginfo-updates-x86_64", + "parent_channel_label": "sle-product-sles_sap15-sp1-pool-x86_64", + "product_id": 1766, + "repository_id": 3232, + "parent_product_id": null, + "root_product_id": 1766, + "update_tag": "SLE-Product-SLES_SAP", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-SLES_SAP/15-SP1/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-SLES_SAP15-SP1-Debuginfo-Updates for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-sles_sap15-sp1-pool-x86_64", + "parent_channel_label": null, + "product_id": 1766, + "repository_id": 3233, + "parent_product_id": null, + "root_product_id": 1766, + "update_tag": "SLE-Product-SLES_SAP", + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-SLES_SAP/15-SP1/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-SLES_SAP15-SP1-Pool for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-sles_sap15-sp1-debuginfo-pool-x86_64", + "parent_channel_label": "sle-product-sles_sap15-sp1-pool-x86_64", + "product_id": 1766, + "repository_id": 3234, + "parent_product_id": null, + "root_product_id": 1766, + "update_tag": "SLE-Product-SLES_SAP", + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-SLES_SAP/15-SP1/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-SLES_SAP15-SP1-Debuginfo-Pool for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-basesystem15-sp1-updates-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-sp1-pool-x86_64", + "product_id": 1772, + "repository_id": 3261, + "parent_product_id": 1766, + "root_product_id": 1766, + "update_tag": "SLE-Module-Basesystem", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15-SP1/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Basesystem15-SP1-Updates for x86_64 SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-basesystem15-sp1-debuginfo-updates-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-sp1-pool-x86_64", + "product_id": 1772, + "repository_id": 3262, + "parent_product_id": 1766, + "root_product_id": 1766, + "update_tag": "SLE-Module-Basesystem", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15-SP1/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Basesystem15-SP1-Debuginfo-Updates for x86_64 SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-basesystem15-sp1-pool-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-sp1-pool-x86_64", + "product_id": 1772, + "repository_id": 3263, + "parent_product_id": 1766, + "root_product_id": 1766, + "update_tag": "SLE-Module-Basesystem", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP1/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Basesystem15-SP1-Pool for x86_64 SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-basesystem15-sp1-debuginfo-pool-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-sp1-pool-x86_64", + "product_id": 1772, + "repository_id": 3264, + "parent_product_id": 1766, + "root_product_id": 1766, + "update_tag": "SLE-Module-Basesystem", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP1/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Basesystem15-SP1-Debuginfo-Pool for x86_64 SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-manager-tools15-updates-x86_64-sap-sp1", + "parent_channel_label": "sle-product-sles_sap15-sp1-pool-x86_64", + "product_id": 1712, + "repository_id": 2932, + "parent_product_id": 1772, + "root_product_id": 1766, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/15/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-Updates for x86_64 SAP SP1", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools15-debuginfo-updates-x86_64-sap-sp1", + "parent_channel_label": "sle-product-sles_sap15-sp1-pool-x86_64", + "product_id": 1712, + "repository_id": 2933, + "parent_product_id": 1772, + "root_product_id": 1766, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/15/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-Debuginfo-Updates for x86_64 SAP SP1", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools15-pool-x86_64-sap-sp1", + "parent_channel_label": "sle-product-sles_sap15-sp1-pool-x86_64", + "product_id": 1712, + "repository_id": 2934, + "parent_product_id": 1772, + "root_product_id": 1766, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/15/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-Pool for x86_64 SAP SP1", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools15-debuginfo-pool-x86_64-sap-sp1", + "parent_channel_label": "sle-product-sles_sap15-sp1-pool-x86_64", + "product_id": 1712, + "repository_id": 2935, + "parent_product_id": 1772, + "root_product_id": 1766, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/15/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-Debuginfo-Pool for x86_64 SAP SP1", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools15-beta-updates-x86_64-sap-sp1", + "parent_channel_label": "sle-product-sles_sap15-sp1-pool-x86_64", + "product_id": 1928, + "repository_id": 3897, + "parent_product_id": 1712, + "root_product_id": 1766, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/15-BETA/x86_64/update/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-BETA-Updates for x86_64 SAP SP1", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools15-beta-debuginfo-updates-x86_64-sap-sp1", + "parent_channel_label": "sle-product-sles_sap15-sp1-pool-x86_64", + "product_id": 1928, + "repository_id": 3898, + "parent_product_id": 1712, + "root_product_id": 1766, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/15-BETA/x86_64/update_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-BETA-Debuginfo-Updates for x86_64 SAP SP1", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools15-beta-pool-x86_64-sap-sp1", + "parent_channel_label": "sle-product-sles_sap15-sp1-pool-x86_64", + "product_id": 1928, + "repository_id": 3908, + "parent_product_id": 1712, + "root_product_id": 1766, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/15-BETA/x86_64/product/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-BETA-Pool for x86_64 SAP SP1", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools15-beta-debuginfo-pool-x86_64-sap-sp1", + "parent_channel_label": "sle-product-sles_sap15-sp1-pool-x86_64", + "product_id": 1928, + "repository_id": 3909, + "parent_product_id": 1712, + "root_product_id": 1766, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/15-BETA/x86_64/product_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-BETA-Debuginfo-Pool for x86_64 SAP SP1", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-module-desktop-applications15-sp1-updates-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-sp1-pool-x86_64", + "product_id": 1776, + "repository_id": 3281, + "parent_product_id": 1772, + "root_product_id": 1766, + "update_tag": "SLE-Module-Desktop-Applications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15-SP1/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Desktop-Applications15-SP1-Updates for x86_64 SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-desktop-applications15-sp1-debuginfo-updates-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-sp1-pool-x86_64", + "product_id": 1776, + "repository_id": 3282, + "parent_product_id": 1772, + "root_product_id": 1766, + "update_tag": "SLE-Module-Desktop-Applications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15-SP1/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Desktop-Applications15-SP1-Debuginfo-Updates for x86_64 SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-desktop-applications15-sp1-pool-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-sp1-pool-x86_64", + "product_id": 1776, + "repository_id": 3283, + "parent_product_id": 1772, + "root_product_id": 1766, + "update_tag": "SLE-Module-Desktop-Applications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP1/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Desktop-Applications15-SP1-Pool for x86_64 SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-desktop-applications15-sp1-debuginfo-pool-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-sp1-pool-x86_64", + "product_id": 1776, + "repository_id": 3284, + "parent_product_id": 1772, + "root_product_id": 1766, + "update_tag": "SLE-Module-Desktop-Applications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP1/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Desktop-Applications15-SP1-Debuginfo-Pool for x86_64 SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-we15-sp1-updates-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-sp1-pool-x86_64", + "product_id": 1781, + "repository_id": 3306, + "parent_product_id": 1776, + "root_product_id": 1766, + "update_tag": "SLE-Product-WE", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-WE/15-SP1/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-WE15-SP1-Updates for x86_64 SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-we15-sp1-debuginfo-updates-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-sp1-pool-x86_64", + "product_id": 1781, + "repository_id": 3307, + "parent_product_id": 1776, + "root_product_id": 1766, + "update_tag": "SLE-Product-WE", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-WE/15-SP1/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-WE15-SP1-Debuginfo-Updates for x86_64 SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-we15-sp1-pool-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-sp1-pool-x86_64", + "product_id": 1781, + "repository_id": 3308, + "parent_product_id": 1776, + "root_product_id": 1766, + "update_tag": "SLE-Product-WE", + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-WE/15-SP1/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-WE15-SP1-Pool for x86_64 SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-we15-sp1-debuginfo-pool-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-sp1-pool-x86_64", + "product_id": 1781, + "repository_id": 3309, + "parent_product_id": 1776, + "root_product_id": 1766, + "update_tag": "SLE-Product-WE", + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-WE/15-SP1/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-WE15-SP1-Debuginfo-Pool for x86_64 SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-15-sp1-desktop-nvidia-driver-sap", + "parent_channel_label": "sle-product-sles_sap15-sp1-pool-x86_64", + "product_id": 1781, + "repository_id": 3792, + "parent_product_id": 1776, + "root_product_id": 1766, + "update_tag": null, + "url": "https://download.nvidia.com/suse/sle15sp1/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-15-SP1-Desktop-NVIDIA-Driver for x86_64 SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-devtools15-sp1-updates-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-sp1-pool-x86_64", + "product_id": 1794, + "repository_id": 3371, + "parent_product_id": 1776, + "root_product_id": 1766, + "update_tag": "SLE-Module-Development-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15-SP1/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-DevTools15-SP1-Updates for x86_64 SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-devtools15-sp1-debuginfo-updates-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-sp1-pool-x86_64", + "product_id": 1794, + "repository_id": 3372, + "parent_product_id": 1776, + "root_product_id": 1766, + "update_tag": "SLE-Module-Development-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15-SP1/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-DevTools15-SP1-Debuginfo-Updates for x86_64 SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-devtools15-sp1-pool-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-sp1-pool-x86_64", + "product_id": 1794, + "repository_id": 3373, + "parent_product_id": 1776, + "root_product_id": 1766, + "update_tag": "SLE-Module-Development-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP1/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-DevTools15-SP1-Pool for x86_64 SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-devtools15-sp1-debuginfo-pool-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-sp1-pool-x86_64", + "product_id": 1794, + "repository_id": 3374, + "parent_product_id": 1776, + "root_product_id": 1766, + "update_tag": "SLE-Module-Development-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP1/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-DevTools15-SP1-Debuginfo-Pool for x86_64 SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-server-applications15-sp1-updates-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-sp1-pool-x86_64", + "product_id": 1780, + "repository_id": 3301, + "parent_product_id": 1772, + "root_product_id": 1766, + "update_tag": "SLE-Module-Server-Applications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15-SP1/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Server-Applications15-SP1-Updates for x86_64 SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-server-applications15-sp1-debuginfo-updates-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-sp1-pool-x86_64", + "product_id": 1780, + "repository_id": 3302, + "parent_product_id": 1772, + "root_product_id": 1766, + "update_tag": "SLE-Module-Server-Applications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15-SP1/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Server-Applications15-SP1-Debuginfo-Updates for x86_64 SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-server-applications15-sp1-pool-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-sp1-pool-x86_64", + "product_id": 1780, + "repository_id": 3303, + "parent_product_id": 1772, + "root_product_id": 1766, + "update_tag": "SLE-Module-Server-Applications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP1/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Server-Applications15-SP1-Pool for x86_64 SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-server-applications15-sp1-debuginfo-pool-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-sp1-pool-x86_64", + "product_id": 1780, + "repository_id": 3304, + "parent_product_id": 1772, + "root_product_id": 1766, + "update_tag": "SLE-Module-Server-Applications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP1/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Server-Applications15-SP1-Debuginfo-Pool for x86_64 SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-ha15-sp1-updates-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-sp1-pool-x86_64", + "product_id": 1785, + "repository_id": 3326, + "parent_product_id": 1780, + "root_product_id": 1766, + "update_tag": "SLE-Product-HA", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-HA/15-SP1/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Product-HA15-SP1-Updates for x86_64 SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-ha15-sp1-debuginfo-updates-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-sp1-pool-x86_64", + "product_id": 1785, + "repository_id": 3327, + "parent_product_id": 1780, + "root_product_id": 1766, + "update_tag": "SLE-Product-HA", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-HA/15-SP1/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Product-HA15-SP1-Debuginfo-Updates for x86_64 SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-ha15-sp1-pool-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-sp1-pool-x86_64", + "product_id": 1785, + "repository_id": 3328, + "parent_product_id": 1780, + "root_product_id": 1766, + "update_tag": "SLE-Product-HA", + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP1/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Product-HA15-SP1-Pool for x86_64 SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-ha15-sp1-debuginfo-pool-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-sp1-pool-x86_64", + "product_id": 1785, + "repository_id": 3329, + "parent_product_id": 1780, + "root_product_id": 1766, + "update_tag": "SLE-Product-HA", + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP1/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Product-HA15-SP1-Debuginfo-Pool for x86_64 SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-sap-applications15-sp1-updates-x86_64", + "parent_channel_label": "sle-product-sles_sap15-sp1-pool-x86_64", + "product_id": 1787, + "repository_id": 3336, + "parent_product_id": 1785, + "root_product_id": 1766, + "update_tag": "SLE-Module-SAP-Applications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-SAP-Applications/15-SP1/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-SAP-Applications15-SP1-Updates for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-sap-applications15-sp1-debuginfo-updates-x86_64", + "parent_channel_label": "sle-product-sles_sap15-sp1-pool-x86_64", + "product_id": 1787, + "repository_id": 3337, + "parent_product_id": 1785, + "root_product_id": 1766, + "update_tag": "SLE-Module-SAP-Applications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-SAP-Applications/15-SP1/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-SAP-Applications15-SP1-Debuginfo-Updates for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-sap-applications15-sp1-pool-x86_64", + "parent_channel_label": "sle-product-sles_sap15-sp1-pool-x86_64", + "product_id": 1787, + "repository_id": 3338, + "parent_product_id": 1785, + "root_product_id": 1766, + "update_tag": "SLE-Module-SAP-Applications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-SAP-Applications/15-SP1/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-SAP-Applications15-SP1-Pool for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-sap-applications15-sp1-debuginfo-pool-x86_64", + "parent_channel_label": "sle-product-sles_sap15-sp1-pool-x86_64", + "product_id": 1787, + "repository_id": 3339, + "parent_product_id": 1785, + "root_product_id": 1766, + "update_tag": "SLE-Module-SAP-Applications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-SAP-Applications/15-SP1/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-SAP-Applications15-SP1-Debuginfo-Pool for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting15-sp1-updates-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-sp1-pool-x86_64", + "product_id": 1798, + "repository_id": 3391, + "parent_product_id": 1780, + "root_product_id": 1766, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/15-SP1/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Web-Scripting15-SP1-Updates for x86_64 SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting15-sp1-debuginfo-updates-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-sp1-pool-x86_64", + "product_id": 1798, + "repository_id": 3392, + "parent_product_id": 1780, + "root_product_id": 1766, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/15-SP1/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Web-Scripting15-SP1-Debuginfo-Updates for x86_64 SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting15-sp1-pool-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-sp1-pool-x86_64", + "product_id": 1798, + "repository_id": 3393, + "parent_product_id": 1780, + "root_product_id": 1766, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP1/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Web-Scripting15-SP1-Pool for x86_64 SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting15-sp1-debuginfo-pool-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-sp1-pool-x86_64", + "product_id": 1798, + "repository_id": 3394, + "parent_product_id": 1780, + "root_product_id": 1766, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP1/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Web-Scripting15-SP1-Debuginfo-Pool for x86_64 SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-legacy15-sp1-updates-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-sp1-pool-x86_64", + "product_id": 1804, + "repository_id": 3421, + "parent_product_id": 1780, + "root_product_id": 1766, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/15-SP1/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy15-SP1-Updates for x86_64 SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-legacy15-sp1-debuginfo-updates-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-sp1-pool-x86_64", + "product_id": 1804, + "repository_id": 3422, + "parent_product_id": 1780, + "root_product_id": 1766, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/15-SP1/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy15-SP1-Debuginfo-Updates for x86_64 SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-legacy15-sp1-pool-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-sp1-pool-x86_64", + "product_id": 1804, + "repository_id": 3423, + "parent_product_id": 1780, + "root_product_id": 1766, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15-SP1/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy15-SP1-Pool for x86_64 SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-legacy15-sp1-debuginfo-pool-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-sp1-pool-x86_64", + "product_id": 1804, + "repository_id": 3424, + "parent_product_id": 1780, + "root_product_id": 1766, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15-SP1/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy15-SP1-Debuginfo-Pool for x86_64 SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud15-sp1-updates-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-sp1-pool-x86_64", + "product_id": 1808, + "repository_id": 3441, + "parent_product_id": 1780, + "root_product_id": 1766, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/15-SP1/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud15-SP1-Updates for x86_64 SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud15-sp1-debuginfo-updates-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-sp1-pool-x86_64", + "product_id": 1808, + "repository_id": 3442, + "parent_product_id": 1780, + "root_product_id": 1766, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/15-SP1/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud15-SP1-Debuginfo-Updates for x86_64 SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud15-sp1-pool-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-sp1-pool-x86_64", + "product_id": 1808, + "repository_id": 3443, + "parent_product_id": 1780, + "root_product_id": 1766, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP1/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud15-SP1-Pool for x86_64 SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud15-sp1-debuginfo-pool-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-sp1-pool-x86_64", + "product_id": 1808, + "repository_id": 3444, + "parent_product_id": 1780, + "root_product_id": 1766, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP1/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud15-SP1-Debuginfo-Pool for x86_64 SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-containers15-sp1-updates-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-sp1-pool-x86_64", + "product_id": 1790, + "repository_id": 3351, + "parent_product_id": 1772, + "root_product_id": 1766, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/15-SP1/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers15-SP1-Updates for x86_64 SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-containers15-sp1-debuginfo-updates-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-sp1-pool-x86_64", + "product_id": 1790, + "repository_id": 3352, + "parent_product_id": 1772, + "root_product_id": 1766, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/15-SP1/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers15-SP1-Debuginfo-Updates for x86_64 SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-containers15-sp1-pool-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-sp1-pool-x86_64", + "product_id": 1790, + "repository_id": 3353, + "parent_product_id": 1772, + "root_product_id": 1766, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP1/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers15-SP1-Pool for x86_64 SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-containers15-sp1-debuginfo-pool-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-sp1-pool-x86_64", + "product_id": 1790, + "repository_id": 3354, + "parent_product_id": 1772, + "root_product_id": 1766, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP1/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers15-SP1-Debuginfo-Pool for x86_64 SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-cap-tools15-sp1-updates-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-sp1-pool-x86_64", + "product_id": 1809, + "repository_id": 3446, + "parent_product_id": 1772, + "root_product_id": 1766, + "update_tag": "SLE-Module-CAP-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-CAP-Tools/15-SP1/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-CAP-Tools15-SP1-Updates for x86_64 SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-cap-tools15-sp1-debuginfo-updates-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-sp1-pool-x86_64", + "product_id": 1809, + "repository_id": 3447, + "parent_product_id": 1772, + "root_product_id": 1766, + "update_tag": "SLE-Module-CAP-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-CAP-Tools/15-SP1/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-CAP-Tools15-SP1-Debuginfo-Updates for x86_64 SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-cap-tools15-sp1-pool-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-sp1-pool-x86_64", + "product_id": 1809, + "repository_id": 3448, + "parent_product_id": 1772, + "root_product_id": 1766, + "update_tag": "SLE-Module-CAP-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-CAP-Tools/15-SP1/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-CAP-Tools15-SP1-Pool for x86_64 SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-cap-tools15-sp1-debuginfo-pool-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-sp1-pool-x86_64", + "product_id": 1809, + "repository_id": 3449, + "parent_product_id": 1772, + "root_product_id": 1766, + "update_tag": "SLE-Module-CAP-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-CAP-Tools/15-SP1/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-CAP-Tools15-SP1-Debuginfo-Pool for x86_64 SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-live-patching15-sp1-updates-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-sp1-pool-x86_64", + "product_id": 1828, + "repository_id": 3535, + "parent_product_id": 1772, + "root_product_id": 1766, + "update_tag": "SLE-Module-Live-Patching", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Live-Patching/15-SP1/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Live-Patching15-SP1-Updates for x86_64 SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-live-patching15-sp1-debuginfo-updates-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-sp1-pool-x86_64", + "product_id": 1828, + "repository_id": 3536, + "parent_product_id": 1772, + "root_product_id": 1766, + "update_tag": "SLE-Module-Live-Patching", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Live-Patching/15-SP1/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Live-Patching15-SP1-Debuginfo-Updates for x86_64 SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-live-patching15-sp1-pool-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-sp1-pool-x86_64", + "product_id": 1828, + "repository_id": 3537, + "parent_product_id": 1772, + "root_product_id": 1766, + "update_tag": "SLE-Module-Live-Patching", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Live-Patching/15-SP1/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Live-Patching15-SP1-Pool for x86_64 SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-live-patching15-sp1-debuginfo-pool-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-sp1-pool-x86_64", + "product_id": 1828, + "repository_id": 3538, + "parent_product_id": 1772, + "root_product_id": 1766, + "update_tag": "SLE-Module-Live-Patching", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Live-Patching/15-SP1/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Live-Patching15-SP1-Debuginfo-Pool for x86_64 SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-python2-15-sp1-updates-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-sp1-pool-x86_64", + "product_id": 1867, + "repository_id": 3598, + "parent_product_id": 1772, + "root_product_id": 1766, + "update_tag": "SLE-Module-Python2", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Python2/15-SP1/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Python2-15-SP1-Updates for x86_64 SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-python2-15-sp1-debuginfo-updates-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-sp1-pool-x86_64", + "product_id": 1867, + "repository_id": 3599, + "parent_product_id": 1772, + "root_product_id": 1766, + "update_tag": "SLE-Module-Python2", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Python2/15-SP1/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Python2-15-SP1-Debuginfo-Updates for x86_64 SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-python2-15-sp1-pool-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-sp1-pool-x86_64", + "product_id": 1867, + "repository_id": 3600, + "parent_product_id": 1772, + "root_product_id": 1766, + "update_tag": "SLE-Module-Python2", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Python2/15-SP1/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Python2-15-SP1-Pool for x86_64 SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-python2-15-sp1-debuginfo-pool-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-sp1-pool-x86_64", + "product_id": 1867, + "repository_id": 3601, + "parent_product_id": 1772, + "root_product_id": 1766, + "update_tag": "SLE-Module-Python2", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Python2/15-SP1/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Python2-15-SP1-Debuginfo-Pool for x86_64 SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-packagehub-15-sp1-standard-pool-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-sp1-pool-x86_64", + "product_id": 1871, + "repository_id": 3627, + "parent_product_id": 1772, + "root_product_id": 1766, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-15-SP1_x86_64/standard/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-15-SP1-Standard-Pool for x86_64 SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-packagehub-15-sp1-debuginfo-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-sp1-pool-x86_64", + "product_id": 1871, + "repository_id": 3628, + "parent_product_id": 1772, + "root_product_id": 1766, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-15-SP1_x86_64/standard_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-15-SP1-Debuginfo for x86_64 SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-packagehub-subpackages15-sp1-updates-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-sp1-pool-x86_64", + "product_id": 1871, + "repository_id": 3629, + "parent_product_id": 1772, + "root_product_id": 1766, + "update_tag": "SLE-Module-Packagehub-Subpackages", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP1/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Packagehub-Subpackages15-SP1-Updates for x86_64 SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-packagehub-subpackages15-sp1-debuginfo-updates-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-sp1-pool-x86_64", + "product_id": 1871, + "repository_id": 3630, + "parent_product_id": 1772, + "root_product_id": 1766, + "update_tag": "SLE-Module-Packagehub-Subpackages", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP1/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Packagehub-Subpackages15-SP1-Debuginfo-Updates for x86_64 SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-packagehub-15-sp1-pool-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-sp1-pool-x86_64", + "product_id": 1871, + "repository_id": 3631, + "parent_product_id": 1772, + "root_product_id": 1766, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-15-SP1_x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-15-SP1-Pool for x86_64 SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-packagehub-subpackages15-sp1-pool-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-sp1-pool-x86_64", + "product_id": 1871, + "repository_id": 3632, + "parent_product_id": 1772, + "root_product_id": 1766, + "update_tag": "SLE-Module-Packagehub-Subpackages", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP1/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Packagehub-Subpackages15-SP1-Pool for x86_64 SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-packagehub-subpackages15-sp1-debuginfo-pool-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-sp1-pool-x86_64", + "product_id": 1871, + "repository_id": 3633, + "parent_product_id": 1772, + "root_product_id": 1766, + "update_tag": "SLE-Module-Packagehub-Subpackages", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP1/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Packagehub-Subpackages15-SP1-Debuginfo-Pool for x86_64 SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-hpc-15-sp1-updates-aarch64", + "parent_channel_label": "sle-product-hpc-15-sp1-pool-aarch64", + "product_id": 1767, + "repository_id": 3236, + "parent_product_id": null, + "root_product_id": 1767, + "update_tag": "SLE-Product-HPC", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-HPC/15-SP1/aarch64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HPC-15-SP1-Updates for aarch64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-hpc15-sp1-debuginfo-updates-aarch64", + "parent_channel_label": "sle-product-hpc-15-sp1-pool-aarch64", + "product_id": 1767, + "repository_id": 3237, + "parent_product_id": null, + "root_product_id": 1767, + "update_tag": "SLE-Product-HPC", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-HPC/15-SP1/aarch64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HPC15-SP1-Debuginfo-Updates for aarch64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-hpc-15-sp1-pool-aarch64", + "parent_channel_label": null, + "product_id": 1767, + "repository_id": 3238, + "parent_product_id": null, + "root_product_id": 1767, + "update_tag": "SLE-Product-HPC", + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-HPC/15-SP1/aarch64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HPC-15-SP1-Pool for aarch64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-hpc15-sp1-debuginfo-pool-aarch64", + "parent_channel_label": "sle-product-hpc-15-sp1-pool-aarch64", + "product_id": 1767, + "repository_id": 3239, + "parent_product_id": null, + "root_product_id": 1767, + "update_tag": "SLE-Product-HPC", + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-HPC/15-SP1/aarch64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HPC15-SP1-Debuginfo-Pool for aarch64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-basesystem15-sp1-updates-aarch64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp1-pool-aarch64", + "product_id": 1769, + "repository_id": 3246, + "parent_product_id": 1767, + "root_product_id": 1767, + "update_tag": "SLE-Module-Basesystem", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15-SP1/aarch64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Basesystem15-SP1-Updates for aarch64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-basesystem15-sp1-debuginfo-updates-aarch64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp1-pool-aarch64", + "product_id": 1769, + "repository_id": 3247, + "parent_product_id": 1767, + "root_product_id": 1767, + "update_tag": "SLE-Module-Basesystem", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15-SP1/aarch64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Basesystem15-SP1-Debuginfo-Updates for aarch64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-basesystem15-sp1-pool-aarch64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp1-pool-aarch64", + "product_id": 1769, + "repository_id": 3248, + "parent_product_id": 1767, + "root_product_id": 1767, + "update_tag": "SLE-Module-Basesystem", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP1/aarch64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Basesystem15-SP1-Pool for aarch64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-basesystem15-sp1-debuginfo-pool-aarch64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp1-pool-aarch64", + "product_id": 1769, + "repository_id": 3249, + "parent_product_id": 1767, + "root_product_id": 1767, + "update_tag": "SLE-Module-Basesystem", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP1/aarch64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Basesystem15-SP1-Debuginfo-Pool for aarch64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-manager-tools15-updates-aarch64-hpc-sp1", + "parent_channel_label": "sle-product-hpc-15-sp1-pool-aarch64", + "product_id": 1709, + "repository_id": 2917, + "parent_product_id": 1769, + "root_product_id": 1767, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/15/aarch64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-Updates for aarch64 HPC SP1", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools15-debuginfo-updates-aarch64-hpc-sp1", + "parent_channel_label": "sle-product-hpc-15-sp1-pool-aarch64", + "product_id": 1709, + "repository_id": 2918, + "parent_product_id": 1769, + "root_product_id": 1767, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/15/aarch64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-Debuginfo-Updates for aarch64 HPC SP1", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools15-pool-aarch64-hpc-sp1", + "parent_channel_label": "sle-product-hpc-15-sp1-pool-aarch64", + "product_id": 1709, + "repository_id": 2919, + "parent_product_id": 1769, + "root_product_id": 1767, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/15/aarch64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-Pool for aarch64 HPC SP1", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools15-debuginfo-pool-aarch64-hpc-sp1", + "parent_channel_label": "sle-product-hpc-15-sp1-pool-aarch64", + "product_id": 1709, + "repository_id": 2920, + "parent_product_id": 1769, + "root_product_id": 1767, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/15/aarch64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-Debuginfo-Pool for aarch64 HPC SP1", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools15-beta-updates-aarch64-hpc-sp1", + "parent_channel_label": "sle-product-hpc-15-sp1-pool-aarch64", + "product_id": 1925, + "repository_id": 3891, + "parent_product_id": 1709, + "root_product_id": 1767, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/15-BETA/aarch64/update/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-BETA-Updates for aarch64 HPC SP1", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools15-beta-debuginfo-updates-aarch64-hpc-sp1", + "parent_channel_label": "sle-product-hpc-15-sp1-pool-aarch64", + "product_id": 1925, + "repository_id": 3892, + "parent_product_id": 1709, + "root_product_id": 1767, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/15-BETA/aarch64/update_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-BETA-Debuginfo-Updates for aarch64 HPC SP1", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools15-beta-pool-aarch64-hpc-sp1", + "parent_channel_label": "sle-product-hpc-15-sp1-pool-aarch64", + "product_id": 1925, + "repository_id": 3899, + "parent_product_id": 1709, + "root_product_id": 1767, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/15-BETA/aarch64/product/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-BETA-Pool for aarch64 HPC SP1", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools15-beta-debuginfo-pool-aarch64-hpc-sp1", + "parent_channel_label": "sle-product-hpc-15-sp1-pool-aarch64", + "product_id": 1925, + "repository_id": 3900, + "parent_product_id": 1709, + "root_product_id": 1767, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/15-BETA/aarch64/product_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-BETA-Debuginfo-Pool for aarch64 HPC SP1", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-module-desktop-applications15-sp1-updates-aarch64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp1-pool-aarch64", + "product_id": 1773, + "repository_id": 3266, + "parent_product_id": 1769, + "root_product_id": 1767, + "update_tag": "SLE-Module-Desktop-Applications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15-SP1/aarch64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Desktop-Applications15-SP1-Updates for aarch64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-desktop-applications15-sp1-debuginfo-updates-aarch64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp1-pool-aarch64", + "product_id": 1773, + "repository_id": 3267, + "parent_product_id": 1769, + "root_product_id": 1767, + "update_tag": "SLE-Module-Desktop-Applications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15-SP1/aarch64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Desktop-Applications15-SP1-Debuginfo-Updates for aarch64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-desktop-applications15-sp1-pool-aarch64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp1-pool-aarch64", + "product_id": 1773, + "repository_id": 3268, + "parent_product_id": 1769, + "root_product_id": 1767, + "update_tag": "SLE-Module-Desktop-Applications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP1/aarch64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Desktop-Applications15-SP1-Pool for aarch64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-desktop-applications15-sp1-debuginfo-pool-aarch64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp1-pool-aarch64", + "product_id": 1773, + "repository_id": 3269, + "parent_product_id": 1769, + "root_product_id": 1767, + "update_tag": "SLE-Module-Desktop-Applications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP1/aarch64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Desktop-Applications15-SP1-Debuginfo-Pool for aarch64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-devtools15-sp1-updates-aarch64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp1-pool-aarch64", + "product_id": 1791, + "repository_id": 3356, + "parent_product_id": 1773, + "root_product_id": 1767, + "update_tag": "SLE-Module-Development-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15-SP1/aarch64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-DevTools15-SP1-Updates for aarch64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-devtools15-sp1-debuginfo-updates-aarch64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp1-pool-aarch64", + "product_id": 1791, + "repository_id": 3357, + "parent_product_id": 1773, + "root_product_id": 1767, + "update_tag": "SLE-Module-Development-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15-SP1/aarch64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-DevTools15-SP1-Debuginfo-Updates for aarch64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-devtools15-sp1-pool-aarch64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp1-pool-aarch64", + "product_id": 1791, + "repository_id": 3358, + "parent_product_id": 1773, + "root_product_id": 1767, + "update_tag": "SLE-Module-Development-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP1/aarch64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-DevTools15-SP1-Pool for aarch64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-devtools15-sp1-debuginfo-pool-aarch64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp1-pool-aarch64", + "product_id": 1791, + "repository_id": 3359, + "parent_product_id": 1773, + "root_product_id": 1767, + "update_tag": "SLE-Module-Development-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP1/aarch64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-DevTools15-SP1-Debuginfo-Pool for aarch64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-server-applications15-sp1-updates-aarch64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp1-pool-aarch64", + "product_id": 1777, + "repository_id": 3286, + "parent_product_id": 1769, + "root_product_id": 1767, + "update_tag": "SLE-Module-Server-Applications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15-SP1/aarch64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Server-Applications15-SP1-Updates for aarch64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-server-applications15-sp1-debuginfo-updates-aarch64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp1-pool-aarch64", + "product_id": 1777, + "repository_id": 3287, + "parent_product_id": 1769, + "root_product_id": 1767, + "update_tag": "SLE-Module-Server-Applications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15-SP1/aarch64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Server-Applications15-SP1-Debuginfo-Updates for aarch64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-server-applications15-sp1-pool-aarch64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp1-pool-aarch64", + "product_id": 1777, + "repository_id": 3288, + "parent_product_id": 1769, + "root_product_id": 1767, + "update_tag": "SLE-Module-Server-Applications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP1/aarch64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Server-Applications15-SP1-Pool for aarch64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-server-applications15-sp1-debuginfo-pool-aarch64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp1-pool-aarch64", + "product_id": 1777, + "repository_id": 3289, + "parent_product_id": 1769, + "root_product_id": 1767, + "update_tag": "SLE-Module-Server-Applications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP1/aarch64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Server-Applications15-SP1-Debuginfo-Pool for aarch64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-ha15-sp1-updates-aarch64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp1-pool-aarch64", + "product_id": 1782, + "repository_id": 3311, + "parent_product_id": 1777, + "root_product_id": 1767, + "update_tag": "SLE-Product-HA", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-HA/15-SP1/aarch64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HA15-SP1-Updates for aarch64 HPC", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-ha15-sp1-debuginfo-updates-aarch64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp1-pool-aarch64", + "product_id": 1782, + "repository_id": 3312, + "parent_product_id": 1777, + "root_product_id": 1767, + "update_tag": "SLE-Product-HA", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-HA/15-SP1/aarch64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HA15-SP1-Debuginfo-Updates for aarch64 HPC", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-ha15-sp1-pool-aarch64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp1-pool-aarch64", + "product_id": 1782, + "repository_id": 3313, + "parent_product_id": 1777, + "root_product_id": 1767, + "update_tag": "SLE-Product-HA", + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP1/aarch64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HA15-SP1-Pool for aarch64 HPC", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-ha15-sp1-debuginfo-pool-aarch64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp1-pool-aarch64", + "product_id": 1782, + "repository_id": 3314, + "parent_product_id": 1777, + "root_product_id": 1767, + "update_tag": "SLE-Product-HA", + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP1/aarch64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HA15-SP1-Debuginfo-Pool for aarch64 HPC", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting15-sp1-updates-aarch64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp1-pool-aarch64", + "product_id": 1795, + "repository_id": 3376, + "parent_product_id": 1777, + "root_product_id": 1767, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/15-SP1/aarch64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Web-Scripting15-SP1-Updates for aarch64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting15-sp1-debuginfo-updates-aarch64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp1-pool-aarch64", + "product_id": 1795, + "repository_id": 3377, + "parent_product_id": 1777, + "root_product_id": 1767, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/15-SP1/aarch64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Web-Scripting15-SP1-Debuginfo-Updates for aarch64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting15-sp1-pool-aarch64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp1-pool-aarch64", + "product_id": 1795, + "repository_id": 3378, + "parent_product_id": 1777, + "root_product_id": 1767, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP1/aarch64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Web-Scripting15-SP1-Pool for aarch64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting15-sp1-debuginfo-pool-aarch64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp1-pool-aarch64", + "product_id": 1795, + "repository_id": 3379, + "parent_product_id": 1777, + "root_product_id": 1767, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP1/aarch64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Web-Scripting15-SP1-Debuginfo-Pool for aarch64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-hpc15-sp1-updates-aarch64", + "parent_channel_label": "sle-product-hpc-15-sp1-pool-aarch64", + "product_id": 1799, + "repository_id": 3396, + "parent_product_id": 1795, + "root_product_id": 1767, + "update_tag": "SLE-Module-HPC", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-HPC/15-SP1/aarch64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-HPC15-SP1-Updates for aarch64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-hpc15-sp1-debuginfo-updates-aarch64", + "parent_channel_label": "sle-product-hpc-15-sp1-pool-aarch64", + "product_id": 1799, + "repository_id": 3397, + "parent_product_id": 1795, + "root_product_id": 1767, + "update_tag": "SLE-Module-HPC", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-HPC/15-SP1/aarch64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-HPC15-SP1-Debuginfo-Updates for aarch64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-hpc15-sp1-pool-aarch64", + "parent_channel_label": "sle-product-hpc-15-sp1-pool-aarch64", + "product_id": 1799, + "repository_id": 3398, + "parent_product_id": 1795, + "root_product_id": 1767, + "update_tag": "SLE-Module-HPC", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-HPC/15-SP1/aarch64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-HPC15-SP1-Pool for aarch64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-hpc15-sp1-debuginfo-pool-aarch64", + "parent_channel_label": "sle-product-hpc-15-sp1-pool-aarch64", + "product_id": 1799, + "repository_id": 3399, + "parent_product_id": 1795, + "root_product_id": 1767, + "update_tag": "SLE-Module-HPC", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-HPC/15-SP1/aarch64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-HPC15-SP1-Debuginfo-Pool for aarch64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud15-sp1-updates-aarch64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp1-pool-aarch64", + "product_id": 1805, + "repository_id": 3426, + "parent_product_id": 1777, + "root_product_id": 1767, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/15-SP1/aarch64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud15-SP1-Updates for aarch64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud15-sp1-debuginfo-updates-aarch64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp1-pool-aarch64", + "product_id": 1805, + "repository_id": 3427, + "parent_product_id": 1777, + "root_product_id": 1767, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/15-SP1/aarch64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud15-SP1-Debuginfo-Updates for aarch64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud15-sp1-pool-aarch64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp1-pool-aarch64", + "product_id": 1805, + "repository_id": 3428, + "parent_product_id": 1777, + "root_product_id": 1767, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP1/aarch64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud15-SP1-Pool for aarch64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud15-sp1-debuginfo-pool-aarch64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp1-pool-aarch64", + "product_id": 1805, + "repository_id": 3429, + "parent_product_id": 1777, + "root_product_id": 1767, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP1/aarch64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud15-SP1-Debuginfo-Pool for aarch64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-python2-15-sp1-updates-aarch64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp1-pool-aarch64", + "product_id": 1864, + "repository_id": 3583, + "parent_product_id": 1769, + "root_product_id": 1767, + "update_tag": "SLE-Module-Python2", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Python2/15-SP1/aarch64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Python2-15-SP1-Updates for aarch64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-python2-15-sp1-debuginfo-updates-aarch64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp1-pool-aarch64", + "product_id": 1864, + "repository_id": 3584, + "parent_product_id": 1769, + "root_product_id": 1767, + "update_tag": "SLE-Module-Python2", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Python2/15-SP1/aarch64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Python2-15-SP1-Debuginfo-Updates for aarch64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-python2-15-sp1-pool-aarch64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp1-pool-aarch64", + "product_id": 1864, + "repository_id": 3585, + "parent_product_id": 1769, + "root_product_id": 1767, + "update_tag": "SLE-Module-Python2", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Python2/15-SP1/aarch64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Python2-15-SP1-Pool for aarch64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-python2-15-sp1-debuginfo-pool-aarch64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp1-pool-aarch64", + "product_id": 1864, + "repository_id": 3586, + "parent_product_id": 1769, + "root_product_id": 1767, + "update_tag": "SLE-Module-Python2", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Python2/15-SP1/aarch64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Python2-15-SP1-Debuginfo-Pool for aarch64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-packagehub-15-sp1-standard-pool-aarch64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp1-pool-aarch64", + "product_id": 1868, + "repository_id": 3603, + "parent_product_id": 1769, + "root_product_id": 1767, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-15-SP1_aarch64/standard/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-15-SP1-Standard-Pool for aarch64 HPC", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-packagehub-15-sp1-debuginfo-aarch64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp1-pool-aarch64", + "product_id": 1868, + "repository_id": 3604, + "parent_product_id": 1769, + "root_product_id": 1767, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-15-SP1_aarch64/standard_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-15-SP1-Debuginfo for aarch64 HPC", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-packagehub-subpackages15-sp1-updates-aarch64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp1-pool-aarch64", + "product_id": 1868, + "repository_id": 3605, + "parent_product_id": 1769, + "root_product_id": 1767, + "update_tag": "SLE-Module-Packagehub-Subpackages", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP1/aarch64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Packagehub-Subpackages15-SP1-Updates for aarch64 HPC", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-packagehub-subpackages15-sp1-debuginfo-updates-aarch64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp1-pool-aarch64", + "product_id": 1868, + "repository_id": 3606, + "parent_product_id": 1769, + "root_product_id": 1767, + "update_tag": "SLE-Module-Packagehub-Subpackages", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP1/aarch64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Packagehub-Subpackages15-SP1-Debuginfo-Updates for aarch64 HPC", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-packagehub-15-sp1-pool-aarch64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp1-pool-aarch64", + "product_id": 1868, + "repository_id": 3607, + "parent_product_id": 1769, + "root_product_id": 1767, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-15-SP1_aarch64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-15-SP1-Pool for aarch64 HPC", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-packagehub-subpackages15-sp1-pool-aarch64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp1-pool-aarch64", + "product_id": 1868, + "repository_id": 3608, + "parent_product_id": 1769, + "root_product_id": 1767, + "update_tag": "SLE-Module-Packagehub-Subpackages", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP1/aarch64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Packagehub-Subpackages15-SP1-Pool for aarch64 HPC", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-packagehub-subpackages15-sp1-debuginfo-pool-aarch64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp1-pool-aarch64", + "product_id": 1868, + "repository_id": 3609, + "parent_product_id": 1769, + "root_product_id": 1767, + "update_tag": "SLE-Module-Packagehub-Subpackages", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP1/aarch64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Packagehub-Subpackages15-SP1-Debuginfo-Pool for aarch64 HPC", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-containers15-sp1-updates-aarch64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp1-pool-aarch64", + "product_id": 1920, + "repository_id": 3873, + "parent_product_id": 1769, + "root_product_id": 1767, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/15-SP1/aarch64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers15-SP1-Updates for aarch64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-containers15-sp1-debuginfo-updates-aarch64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp1-pool-aarch64", + "product_id": 1920, + "repository_id": 3874, + "parent_product_id": 1769, + "root_product_id": 1767, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/15-SP1/aarch64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers15-SP1-Debuginfo-Updates for aarch64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-containers15-sp1-pool-aarch64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp1-pool-aarch64", + "product_id": 1920, + "repository_id": 3875, + "parent_product_id": 1769, + "root_product_id": 1767, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP1/aarch64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers15-SP1-Pool for aarch64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-containers15-sp1-debuginfo-pool-aarch64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp1-pool-aarch64", + "product_id": 1920, + "repository_id": 3876, + "parent_product_id": 1769, + "root_product_id": 1767, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP1/aarch64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers15-SP1-Debuginfo-Pool for aarch64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-hpc-15-sp1-ltss-updates-aarch64", + "parent_channel_label": "sle-product-hpc-15-sp1-pool-aarch64", + "product_id": 2122, + "repository_id": 4514, + "parent_product_id": 1767, + "root_product_id": 1767, + "update_tag": "SLE-Product-HPC", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-HPC/15-SP1-LTSS/aarch64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HPC-15-SP1-LTSS-Updates for aarch64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-hpc-15-sp1-ltss-debuginfo-updates-aarch64", + "parent_channel_label": "sle-product-hpc-15-sp1-pool-aarch64", + "product_id": 2122, + "repository_id": 4515, + "parent_product_id": 1767, + "root_product_id": 1767, + "update_tag": "SLE-Product-HPC", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-HPC/15-SP1-LTSS/aarch64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HPC-15-SP1-LTSS-Debuginfo-Updates for aarch64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-hpc-15-sp1-ltss-pool-aarch64", + "parent_channel_label": "sle-product-hpc-15-sp1-pool-aarch64", + "product_id": 2122, + "repository_id": 4516, + "parent_product_id": 1767, + "root_product_id": 1767, + "update_tag": "SLE-Product-HPC", + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-HPC/15-SP1-LTSS/aarch64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HPC-15-SP1-LTSS-Pool for aarch64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-hpc-15-sp1-ltss-debuginfo-pool-aarch64", + "parent_channel_label": "sle-product-hpc-15-sp1-pool-aarch64", + "product_id": 2122, + "repository_id": 4517, + "parent_product_id": 1767, + "root_product_id": 1767, + "update_tag": "SLE-Product-HPC", + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-HPC/15-SP1-LTSS/aarch64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HPC-15-SP1-LTSS-Debuginfo-Pool for aarch64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-hpc-15-sp1-espos-updates-aarch64", + "parent_channel_label": "sle-product-hpc-15-sp1-pool-aarch64", + "product_id": 2126, + "repository_id": 4534, + "parent_product_id": 1767, + "root_product_id": 1767, + "update_tag": "SLE-Product-HPC", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-HPC/15-SP1-ESPOS/aarch64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HPC-15-SP1-ESPOS-Updates for aarch64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-hpc-15-sp1-espos-debuginfo-updates-aarch64", + "parent_channel_label": "sle-product-hpc-15-sp1-pool-aarch64", + "product_id": 2126, + "repository_id": 4535, + "parent_product_id": 1767, + "root_product_id": 1767, + "update_tag": "SLE-Product-HPC", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-HPC/15-SP1-ESPOS/aarch64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HPC-15-SP1-ESPOS-Debuginfo-Updates for aarch64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-hpc-15-sp1-espos-pool-aarch64", + "parent_channel_label": "sle-product-hpc-15-sp1-pool-aarch64", + "product_id": 2126, + "repository_id": 4536, + "parent_product_id": 1767, + "root_product_id": 1767, + "update_tag": "SLE-Product-HPC", + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-HPC/15-SP1-ESPOS/aarch64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HPC-15-SP1-ESPOS-Pool for aarch64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-hpc-15-sp1-espos-debuginfo-pool-aarch64", + "parent_channel_label": "sle-product-hpc-15-sp1-pool-aarch64", + "product_id": 2126, + "repository_id": 4537, + "parent_product_id": 1767, + "root_product_id": 1767, + "update_tag": "SLE-Product-HPC", + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-HPC/15-SP1-ESPOS/aarch64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HPC-15-SP1-ESPOS-Debuginfo-Pool for aarch64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-hpc-15-sp1-updates-x86_64", + "parent_channel_label": "sle-product-hpc-15-sp1-pool-x86_64", + "product_id": 1768, + "repository_id": 3241, + "parent_product_id": null, + "root_product_id": 1768, + "update_tag": "SLE-Product-HPC", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-HPC/15-SP1/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HPC-15-SP1-Updates for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-hpc15-sp1-debuginfo-updates-x86_64", + "parent_channel_label": "sle-product-hpc-15-sp1-pool-x86_64", + "product_id": 1768, + "repository_id": 3242, + "parent_product_id": null, + "root_product_id": 1768, + "update_tag": "SLE-Product-HPC", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-HPC/15-SP1/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HPC15-SP1-Debuginfo-Updates for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-hpc-15-sp1-pool-x86_64", + "parent_channel_label": null, + "product_id": 1768, + "repository_id": 3243, + "parent_product_id": null, + "root_product_id": 1768, + "update_tag": "SLE-Product-HPC", + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-HPC/15-SP1/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HPC-15-SP1-Pool for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-hpc15-sp1-debuginfo-pool-x86_64", + "parent_channel_label": "sle-product-hpc-15-sp1-pool-x86_64", + "product_id": 1768, + "repository_id": 3244, + "parent_product_id": null, + "root_product_id": 1768, + "update_tag": "SLE-Product-HPC", + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-HPC/15-SP1/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HPC15-SP1-Debuginfo-Pool for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-basesystem15-sp1-updates-x86_64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp1-pool-x86_64", + "product_id": 1772, + "repository_id": 3261, + "parent_product_id": 1768, + "root_product_id": 1768, + "update_tag": "SLE-Module-Basesystem", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15-SP1/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Basesystem15-SP1-Updates for x86_64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-basesystem15-sp1-debuginfo-updates-x86_64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp1-pool-x86_64", + "product_id": 1772, + "repository_id": 3262, + "parent_product_id": 1768, + "root_product_id": 1768, + "update_tag": "SLE-Module-Basesystem", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15-SP1/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Basesystem15-SP1-Debuginfo-Updates for x86_64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-basesystem15-sp1-pool-x86_64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp1-pool-x86_64", + "product_id": 1772, + "repository_id": 3263, + "parent_product_id": 1768, + "root_product_id": 1768, + "update_tag": "SLE-Module-Basesystem", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP1/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Basesystem15-SP1-Pool for x86_64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-basesystem15-sp1-debuginfo-pool-x86_64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp1-pool-x86_64", + "product_id": 1772, + "repository_id": 3264, + "parent_product_id": 1768, + "root_product_id": 1768, + "update_tag": "SLE-Module-Basesystem", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP1/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Basesystem15-SP1-Debuginfo-Pool for x86_64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-manager-tools15-updates-x86_64-hpc-sp1", + "parent_channel_label": "sle-product-hpc-15-sp1-pool-x86_64", + "product_id": 1712, + "repository_id": 2932, + "parent_product_id": 1772, + "root_product_id": 1768, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/15/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-Updates for x86_64 HPC SP1", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools15-debuginfo-updates-x86_64-hpc-sp1", + "parent_channel_label": "sle-product-hpc-15-sp1-pool-x86_64", + "product_id": 1712, + "repository_id": 2933, + "parent_product_id": 1772, + "root_product_id": 1768, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/15/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-Debuginfo-Updates for x86_64 HPC SP1", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools15-pool-x86_64-hpc-sp1", + "parent_channel_label": "sle-product-hpc-15-sp1-pool-x86_64", + "product_id": 1712, + "repository_id": 2934, + "parent_product_id": 1772, + "root_product_id": 1768, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/15/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-Pool for x86_64 HPC SP1", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools15-debuginfo-pool-x86_64-hpc-sp1", + "parent_channel_label": "sle-product-hpc-15-sp1-pool-x86_64", + "product_id": 1712, + "repository_id": 2935, + "parent_product_id": 1772, + "root_product_id": 1768, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/15/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-Debuginfo-Pool for x86_64 HPC SP1", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools15-beta-updates-x86_64-hpc-sp1", + "parent_channel_label": "sle-product-hpc-15-sp1-pool-x86_64", + "product_id": 1928, + "repository_id": 3897, + "parent_product_id": 1712, + "root_product_id": 1768, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/15-BETA/x86_64/update/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-BETA-Updates for x86_64 HPC SP1", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools15-beta-debuginfo-updates-x86_64-hpc-sp1", + "parent_channel_label": "sle-product-hpc-15-sp1-pool-x86_64", + "product_id": 1928, + "repository_id": 3898, + "parent_product_id": 1712, + "root_product_id": 1768, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/15-BETA/x86_64/update_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-BETA-Debuginfo-Updates for x86_64 HPC SP1", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools15-beta-pool-x86_64-hpc-sp1", + "parent_channel_label": "sle-product-hpc-15-sp1-pool-x86_64", + "product_id": 1928, + "repository_id": 3908, + "parent_product_id": 1712, + "root_product_id": 1768, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/15-BETA/x86_64/product/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-BETA-Pool for x86_64 HPC SP1", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools15-beta-debuginfo-pool-x86_64-hpc-sp1", + "parent_channel_label": "sle-product-hpc-15-sp1-pool-x86_64", + "product_id": 1928, + "repository_id": 3909, + "parent_product_id": 1712, + "root_product_id": 1768, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/15-BETA/x86_64/product_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-BETA-Debuginfo-Pool for x86_64 HPC SP1", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-module-desktop-applications15-sp1-updates-x86_64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp1-pool-x86_64", + "product_id": 1776, + "repository_id": 3281, + "parent_product_id": 1772, + "root_product_id": 1768, + "update_tag": "SLE-Module-Desktop-Applications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15-SP1/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Desktop-Applications15-SP1-Updates for x86_64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-desktop-applications15-sp1-debuginfo-updates-x86_64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp1-pool-x86_64", + "product_id": 1776, + "repository_id": 3282, + "parent_product_id": 1772, + "root_product_id": 1768, + "update_tag": "SLE-Module-Desktop-Applications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15-SP1/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Desktop-Applications15-SP1-Debuginfo-Updates for x86_64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-desktop-applications15-sp1-pool-x86_64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp1-pool-x86_64", + "product_id": 1776, + "repository_id": 3283, + "parent_product_id": 1772, + "root_product_id": 1768, + "update_tag": "SLE-Module-Desktop-Applications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP1/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Desktop-Applications15-SP1-Pool for x86_64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-desktop-applications15-sp1-debuginfo-pool-x86_64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp1-pool-x86_64", + "product_id": 1776, + "repository_id": 3284, + "parent_product_id": 1772, + "root_product_id": 1768, + "update_tag": "SLE-Module-Desktop-Applications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP1/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Desktop-Applications15-SP1-Debuginfo-Pool for x86_64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-devtools15-sp1-updates-x86_64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp1-pool-x86_64", + "product_id": 1794, + "repository_id": 3371, + "parent_product_id": 1776, + "root_product_id": 1768, + "update_tag": "SLE-Module-Development-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15-SP1/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-DevTools15-SP1-Updates for x86_64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-devtools15-sp1-debuginfo-updates-x86_64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp1-pool-x86_64", + "product_id": 1794, + "repository_id": 3372, + "parent_product_id": 1776, + "root_product_id": 1768, + "update_tag": "SLE-Module-Development-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15-SP1/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-DevTools15-SP1-Debuginfo-Updates for x86_64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-devtools15-sp1-pool-x86_64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp1-pool-x86_64", + "product_id": 1794, + "repository_id": 3373, + "parent_product_id": 1776, + "root_product_id": 1768, + "update_tag": "SLE-Module-Development-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP1/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-DevTools15-SP1-Pool for x86_64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-devtools15-sp1-debuginfo-pool-x86_64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp1-pool-x86_64", + "product_id": 1794, + "repository_id": 3374, + "parent_product_id": 1776, + "root_product_id": 1768, + "update_tag": "SLE-Module-Development-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP1/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-DevTools15-SP1-Debuginfo-Pool for x86_64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-nvidia-compute-15-updates-x86_64-hpc-sp1", + "parent_channel_label": "sle-product-hpc-15-sp1-pool-x86_64", + "product_id": 2131, + "repository_id": 4554, + "parent_product_id": 1794, + "root_product_id": 1768, + "update_tag": "SLE-Module-NVIDIA-Compute", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-NVIDIA-Compute/15/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-NVIDIA-Compute-15-Updates for x86_64 HPC SP1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-nvidia-compute-15-pool-x86_64-hpc-sp1", + "parent_channel_label": "sle-product-hpc-15-sp1-pool-x86_64", + "product_id": 2131, + "repository_id": 4556, + "parent_product_id": 1794, + "root_product_id": 1768, + "update_tag": "SLE-Module-NVIDIA-Compute", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-NVIDIA-Compute/15/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-NVIDIA-Compute-15-Pool for x86_64 HPC SP1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "nvidia-compute-sle-15-hpc-sp1", + "parent_channel_label": "sle-product-hpc-15-sp1-pool-x86_64", + "product_id": 2131, + "repository_id": 4563, + "parent_product_id": 1794, + "root_product_id": 1768, + "update_tag": null, + "url": "https://developer.download.nvidia.com/compute/cuda/repos/sles15/x86_64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "NVIDIA-Compute-SLE-15 for x86_64 HPC SP1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-server-applications15-sp1-updates-x86_64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp1-pool-x86_64", + "product_id": 1780, + "repository_id": 3301, + "parent_product_id": 1772, + "root_product_id": 1768, + "update_tag": "SLE-Module-Server-Applications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15-SP1/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Server-Applications15-SP1-Updates for x86_64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-server-applications15-sp1-debuginfo-updates-x86_64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp1-pool-x86_64", + "product_id": 1780, + "repository_id": 3302, + "parent_product_id": 1772, + "root_product_id": 1768, + "update_tag": "SLE-Module-Server-Applications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15-SP1/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Server-Applications15-SP1-Debuginfo-Updates for x86_64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-server-applications15-sp1-pool-x86_64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp1-pool-x86_64", + "product_id": 1780, + "repository_id": 3303, + "parent_product_id": 1772, + "root_product_id": 1768, + "update_tag": "SLE-Module-Server-Applications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP1/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Server-Applications15-SP1-Pool for x86_64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-server-applications15-sp1-debuginfo-pool-x86_64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp1-pool-x86_64", + "product_id": 1780, + "repository_id": 3304, + "parent_product_id": 1772, + "root_product_id": 1768, + "update_tag": "SLE-Module-Server-Applications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP1/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Server-Applications15-SP1-Debuginfo-Pool for x86_64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-ha15-sp1-updates-x86_64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp1-pool-x86_64", + "product_id": 1785, + "repository_id": 3326, + "parent_product_id": 1780, + "root_product_id": 1768, + "update_tag": "SLE-Product-HA", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-HA/15-SP1/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HA15-SP1-Updates for x86_64 HPC", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-ha15-sp1-debuginfo-updates-x86_64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp1-pool-x86_64", + "product_id": 1785, + "repository_id": 3327, + "parent_product_id": 1780, + "root_product_id": 1768, + "update_tag": "SLE-Product-HA", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-HA/15-SP1/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HA15-SP1-Debuginfo-Updates for x86_64 HPC", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-ha15-sp1-pool-x86_64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp1-pool-x86_64", + "product_id": 1785, + "repository_id": 3328, + "parent_product_id": 1780, + "root_product_id": 1768, + "update_tag": "SLE-Product-HA", + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP1/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HA15-SP1-Pool for x86_64 HPC", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-ha15-sp1-debuginfo-pool-x86_64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp1-pool-x86_64", + "product_id": 1785, + "repository_id": 3329, + "parent_product_id": 1780, + "root_product_id": 1768, + "update_tag": "SLE-Product-HA", + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP1/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HA15-SP1-Debuginfo-Pool for x86_64 HPC", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting15-sp1-updates-x86_64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp1-pool-x86_64", + "product_id": 1798, + "repository_id": 3391, + "parent_product_id": 1780, + "root_product_id": 1768, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/15-SP1/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Web-Scripting15-SP1-Updates for x86_64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting15-sp1-debuginfo-updates-x86_64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp1-pool-x86_64", + "product_id": 1798, + "repository_id": 3392, + "parent_product_id": 1780, + "root_product_id": 1768, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/15-SP1/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Web-Scripting15-SP1-Debuginfo-Updates for x86_64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting15-sp1-pool-x86_64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp1-pool-x86_64", + "product_id": 1798, + "repository_id": 3393, + "parent_product_id": 1780, + "root_product_id": 1768, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP1/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Web-Scripting15-SP1-Pool for x86_64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting15-sp1-debuginfo-pool-x86_64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp1-pool-x86_64", + "product_id": 1798, + "repository_id": 3394, + "parent_product_id": 1780, + "root_product_id": 1768, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP1/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Web-Scripting15-SP1-Debuginfo-Pool for x86_64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-hpc15-sp1-updates-x86_64", + "parent_channel_label": "sle-product-hpc-15-sp1-pool-x86_64", + "product_id": 1800, + "repository_id": 3401, + "parent_product_id": 1798, + "root_product_id": 1768, + "update_tag": "SLE-Module-HPC", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-HPC/15-SP1/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-HPC15-SP1-Updates for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-hpc15-sp1-debuginfo-updates-x86_64", + "parent_channel_label": "sle-product-hpc-15-sp1-pool-x86_64", + "product_id": 1800, + "repository_id": 3402, + "parent_product_id": 1798, + "root_product_id": 1768, + "update_tag": "SLE-Module-HPC", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-HPC/15-SP1/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-HPC15-SP1-Debuginfo-Updates for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-hpc15-sp1-pool-x86_64", + "parent_channel_label": "sle-product-hpc-15-sp1-pool-x86_64", + "product_id": 1800, + "repository_id": 3403, + "parent_product_id": 1798, + "root_product_id": 1768, + "update_tag": "SLE-Module-HPC", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-HPC/15-SP1/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-HPC15-SP1-Pool for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-hpc15-sp1-debuginfo-pool-x86_64", + "parent_channel_label": "sle-product-hpc-15-sp1-pool-x86_64", + "product_id": 1800, + "repository_id": 3404, + "parent_product_id": 1798, + "root_product_id": 1768, + "update_tag": "SLE-Module-HPC", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-HPC/15-SP1/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-HPC15-SP1-Debuginfo-Pool for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud15-sp1-updates-x86_64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp1-pool-x86_64", + "product_id": 1808, + "repository_id": 3441, + "parent_product_id": 1780, + "root_product_id": 1768, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/15-SP1/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud15-SP1-Updates for x86_64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud15-sp1-debuginfo-updates-x86_64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp1-pool-x86_64", + "product_id": 1808, + "repository_id": 3442, + "parent_product_id": 1780, + "root_product_id": 1768, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/15-SP1/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud15-SP1-Debuginfo-Updates for x86_64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud15-sp1-pool-x86_64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp1-pool-x86_64", + "product_id": 1808, + "repository_id": 3443, + "parent_product_id": 1780, + "root_product_id": 1768, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP1/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud15-SP1-Pool for x86_64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud15-sp1-debuginfo-pool-x86_64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp1-pool-x86_64", + "product_id": 1808, + "repository_id": 3444, + "parent_product_id": 1780, + "root_product_id": 1768, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP1/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud15-SP1-Debuginfo-Pool for x86_64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-containers15-sp1-updates-x86_64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp1-pool-x86_64", + "product_id": 1790, + "repository_id": 3351, + "parent_product_id": 1772, + "root_product_id": 1768, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/15-SP1/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers15-SP1-Updates for x86_64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-containers15-sp1-debuginfo-updates-x86_64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp1-pool-x86_64", + "product_id": 1790, + "repository_id": 3352, + "parent_product_id": 1772, + "root_product_id": 1768, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/15-SP1/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers15-SP1-Debuginfo-Updates for x86_64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-containers15-sp1-pool-x86_64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp1-pool-x86_64", + "product_id": 1790, + "repository_id": 3353, + "parent_product_id": 1772, + "root_product_id": 1768, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP1/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers15-SP1-Pool for x86_64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-containers15-sp1-debuginfo-pool-x86_64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp1-pool-x86_64", + "product_id": 1790, + "repository_id": 3354, + "parent_product_id": 1772, + "root_product_id": 1768, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP1/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers15-SP1-Debuginfo-Pool for x86_64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-live-patching15-sp1-updates-x86_64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp1-pool-x86_64", + "product_id": 1828, + "repository_id": 3535, + "parent_product_id": 1772, + "root_product_id": 1768, + "update_tag": "SLE-Module-Live-Patching", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Live-Patching/15-SP1/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Live-Patching15-SP1-Updates for x86_64 HPC", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-live-patching15-sp1-debuginfo-updates-x86_64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp1-pool-x86_64", + "product_id": 1828, + "repository_id": 3536, + "parent_product_id": 1772, + "root_product_id": 1768, + "update_tag": "SLE-Module-Live-Patching", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Live-Patching/15-SP1/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Live-Patching15-SP1-Debuginfo-Updates for x86_64 HPC", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-live-patching15-sp1-pool-x86_64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp1-pool-x86_64", + "product_id": 1828, + "repository_id": 3537, + "parent_product_id": 1772, + "root_product_id": 1768, + "update_tag": "SLE-Module-Live-Patching", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Live-Patching/15-SP1/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Live-Patching15-SP1-Pool for x86_64 HPC", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-live-patching15-sp1-debuginfo-pool-x86_64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp1-pool-x86_64", + "product_id": 1828, + "repository_id": 3538, + "parent_product_id": 1772, + "root_product_id": 1768, + "update_tag": "SLE-Module-Live-Patching", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Live-Patching/15-SP1/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Live-Patching15-SP1-Debuginfo-Pool for x86_64 HPC", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-python2-15-sp1-updates-x86_64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp1-pool-x86_64", + "product_id": 1867, + "repository_id": 3598, + "parent_product_id": 1772, + "root_product_id": 1768, + "update_tag": "SLE-Module-Python2", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Python2/15-SP1/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Python2-15-SP1-Updates for x86_64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-python2-15-sp1-debuginfo-updates-x86_64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp1-pool-x86_64", + "product_id": 1867, + "repository_id": 3599, + "parent_product_id": 1772, + "root_product_id": 1768, + "update_tag": "SLE-Module-Python2", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Python2/15-SP1/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Python2-15-SP1-Debuginfo-Updates for x86_64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-python2-15-sp1-pool-x86_64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp1-pool-x86_64", + "product_id": 1867, + "repository_id": 3600, + "parent_product_id": 1772, + "root_product_id": 1768, + "update_tag": "SLE-Module-Python2", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Python2/15-SP1/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Python2-15-SP1-Pool for x86_64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-python2-15-sp1-debuginfo-pool-x86_64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp1-pool-x86_64", + "product_id": 1867, + "repository_id": 3601, + "parent_product_id": 1772, + "root_product_id": 1768, + "update_tag": "SLE-Module-Python2", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Python2/15-SP1/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Python2-15-SP1-Debuginfo-Pool for x86_64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-packagehub-15-sp1-standard-pool-x86_64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp1-pool-x86_64", + "product_id": 1871, + "repository_id": 3627, + "parent_product_id": 1772, + "root_product_id": 1768, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-15-SP1_x86_64/standard/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-15-SP1-Standard-Pool for x86_64 HPC", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-packagehub-15-sp1-debuginfo-x86_64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp1-pool-x86_64", + "product_id": 1871, + "repository_id": 3628, + "parent_product_id": 1772, + "root_product_id": 1768, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-15-SP1_x86_64/standard_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-15-SP1-Debuginfo for x86_64 HPC", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-packagehub-subpackages15-sp1-updates-x86_64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp1-pool-x86_64", + "product_id": 1871, + "repository_id": 3629, + "parent_product_id": 1772, + "root_product_id": 1768, + "update_tag": "SLE-Module-Packagehub-Subpackages", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP1/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Packagehub-Subpackages15-SP1-Updates for x86_64 HPC", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-packagehub-subpackages15-sp1-debuginfo-updates-x86_64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp1-pool-x86_64", + "product_id": 1871, + "repository_id": 3630, + "parent_product_id": 1772, + "root_product_id": 1768, + "update_tag": "SLE-Module-Packagehub-Subpackages", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP1/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Packagehub-Subpackages15-SP1-Debuginfo-Updates for x86_64 HPC", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-packagehub-15-sp1-pool-x86_64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp1-pool-x86_64", + "product_id": 1871, + "repository_id": 3631, + "parent_product_id": 1772, + "root_product_id": 1768, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-15-SP1_x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-15-SP1-Pool for x86_64 HPC", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-packagehub-subpackages15-sp1-pool-x86_64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp1-pool-x86_64", + "product_id": 1871, + "repository_id": 3632, + "parent_product_id": 1772, + "root_product_id": 1768, + "update_tag": "SLE-Module-Packagehub-Subpackages", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP1/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Packagehub-Subpackages15-SP1-Pool for x86_64 HPC", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-packagehub-subpackages15-sp1-debuginfo-pool-x86_64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp1-pool-x86_64", + "product_id": 1871, + "repository_id": 3633, + "parent_product_id": 1772, + "root_product_id": 1768, + "update_tag": "SLE-Module-Packagehub-Subpackages", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP1/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Packagehub-Subpackages15-SP1-Debuginfo-Pool for x86_64 HPC", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-hpc-15-sp1-ltss-updates-x86_64", + "parent_channel_label": "sle-product-hpc-15-sp1-pool-x86_64", + "product_id": 2123, + "repository_id": 4519, + "parent_product_id": 1768, + "root_product_id": 1768, + "update_tag": "SLE-Product-HPC", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-HPC/15-SP1-LTSS/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HPC-15-SP1-LTSS-Updates for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-hpc-15-sp1-ltss-debuginfo-updates-x86_64", + "parent_channel_label": "sle-product-hpc-15-sp1-pool-x86_64", + "product_id": 2123, + "repository_id": 4520, + "parent_product_id": 1768, + "root_product_id": 1768, + "update_tag": "SLE-Product-HPC", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-HPC/15-SP1-LTSS/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HPC-15-SP1-LTSS-Debuginfo-Updates for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-hpc-15-sp1-ltss-pool-x86_64", + "parent_channel_label": "sle-product-hpc-15-sp1-pool-x86_64", + "product_id": 2123, + "repository_id": 4521, + "parent_product_id": 1768, + "root_product_id": 1768, + "update_tag": "SLE-Product-HPC", + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-HPC/15-SP1-LTSS/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HPC-15-SP1-LTSS-Pool for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-hpc-15-sp1-ltss-debuginfo-pool-x86_64", + "parent_channel_label": "sle-product-hpc-15-sp1-pool-x86_64", + "product_id": 2123, + "repository_id": 4522, + "parent_product_id": 1768, + "root_product_id": 1768, + "update_tag": "SLE-Product-HPC", + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-HPC/15-SP1-LTSS/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HPC-15-SP1-LTSS-Debuginfo-Pool for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-hpc-15-sp1-espos-updates-x86_64", + "parent_channel_label": "sle-product-hpc-15-sp1-pool-x86_64", + "product_id": 2127, + "repository_id": 4539, + "parent_product_id": 1768, + "root_product_id": 1768, + "update_tag": "SLE-Product-HPC", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-HPC/15-SP1-ESPOS/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HPC-15-SP1-ESPOS-Updates for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-hpc-15-sp1-espos-debuginfo-updates-x86_64", + "parent_channel_label": "sle-product-hpc-15-sp1-pool-x86_64", + "product_id": 2127, + "repository_id": 4540, + "parent_product_id": 1768, + "root_product_id": 1768, + "update_tag": "SLE-Product-HPC", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-HPC/15-SP1-ESPOS/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HPC-15-SP1-ESPOS-Debuginfo-Updates for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-hpc-15-sp1-espos-pool-x86_64", + "parent_channel_label": "sle-product-hpc-15-sp1-pool-x86_64", + "product_id": 2127, + "repository_id": 4541, + "parent_product_id": 1768, + "root_product_id": 1768, + "update_tag": "SLE-Product-HPC", + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-HPC/15-SP1-ESPOS/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HPC-15-SP1-ESPOS-Pool for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-hpc-15-sp1-espos-debuginfo-pool-x86_64", + "parent_channel_label": "sle-product-hpc-15-sp1-pool-x86_64", + "product_id": 2127, + "repository_id": 4542, + "parent_product_id": 1768, + "root_product_id": 1768, + "update_tag": "SLE-Product-HPC", + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-HPC/15-SP1-ESPOS/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HPC-15-SP1-ESPOS-Debuginfo-Pool for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-rt-15-sp1-updates-x86_64", + "parent_channel_label": "sle-product-rt-15-sp1-pool-x86_64", + "product_id": 1861, + "repository_id": 3568, + "parent_product_id": null, + "root_product_id": 1861, + "update_tag": "SLE-Product-RT", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-RT/15-SP1/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-RT-15-SP1-Updates for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-rt15-sp1-debuginfo-updates-x86_64", + "parent_channel_label": "sle-product-rt-15-sp1-pool-x86_64", + "product_id": 1861, + "repository_id": 3569, + "parent_product_id": null, + "root_product_id": 1861, + "update_tag": "SLE-Product-RT", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-RT/15-SP1/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-RT15-SP1-Debuginfo-Updates for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-rt-15-sp1-pool-x86_64", + "parent_channel_label": null, + "product_id": 1861, + "repository_id": 3570, + "parent_product_id": null, + "root_product_id": 1861, + "update_tag": "SLE-Product-RT", + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-RT/15-SP1/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-RT-15-SP1-Pool for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-rt15-sp1-debuginfo-pool-x86_64", + "parent_channel_label": "sle-product-rt-15-sp1-pool-x86_64", + "product_id": 1861, + "repository_id": 3571, + "parent_product_id": null, + "root_product_id": 1861, + "update_tag": "SLE-Product-RT", + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-RT/15-SP1/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-RT15-SP1-Debuginfo-Pool for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-basesystem15-sp1-updates-x86_64-rt", + "parent_channel_label": "sle-product-rt-15-sp1-pool-x86_64", + "product_id": 1772, + "repository_id": 3261, + "parent_product_id": 1861, + "root_product_id": 1861, + "update_tag": "SLE-Module-Basesystem", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15-SP1/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Basesystem15-SP1-Updates for x86_64 RT", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-basesystem15-sp1-debuginfo-updates-x86_64-rt", + "parent_channel_label": "sle-product-rt-15-sp1-pool-x86_64", + "product_id": 1772, + "repository_id": 3262, + "parent_product_id": 1861, + "root_product_id": 1861, + "update_tag": "SLE-Module-Basesystem", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15-SP1/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Basesystem15-SP1-Debuginfo-Updates for x86_64 RT", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-basesystem15-sp1-pool-x86_64-rt", + "parent_channel_label": "sle-product-rt-15-sp1-pool-x86_64", + "product_id": 1772, + "repository_id": 3263, + "parent_product_id": 1861, + "root_product_id": 1861, + "update_tag": "SLE-Module-Basesystem", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP1/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Basesystem15-SP1-Pool for x86_64 RT", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-basesystem15-sp1-debuginfo-pool-x86_64-rt", + "parent_channel_label": "sle-product-rt-15-sp1-pool-x86_64", + "product_id": 1772, + "repository_id": 3264, + "parent_product_id": 1861, + "root_product_id": 1861, + "update_tag": "SLE-Module-Basesystem", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP1/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Basesystem15-SP1-Debuginfo-Pool for x86_64 RT", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-manager-tools15-updates-x86_64-rt-sp1", + "parent_channel_label": "sle-product-rt-15-sp1-pool-x86_64", + "product_id": 1712, + "repository_id": 2932, + "parent_product_id": 1772, + "root_product_id": 1861, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/15/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-Updates for x86_64 RT SP1", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools15-debuginfo-updates-x86_64-rt-sp1", + "parent_channel_label": "sle-product-rt-15-sp1-pool-x86_64", + "product_id": 1712, + "repository_id": 2933, + "parent_product_id": 1772, + "root_product_id": 1861, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/15/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-Debuginfo-Updates for x86_64 RT SP1", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools15-pool-x86_64-rt-sp1", + "parent_channel_label": "sle-product-rt-15-sp1-pool-x86_64", + "product_id": 1712, + "repository_id": 2934, + "parent_product_id": 1772, + "root_product_id": 1861, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/15/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-Pool for x86_64 RT SP1", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools15-debuginfo-pool-x86_64-rt-sp1", + "parent_channel_label": "sle-product-rt-15-sp1-pool-x86_64", + "product_id": 1712, + "repository_id": 2935, + "parent_product_id": 1772, + "root_product_id": 1861, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/15/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-Debuginfo-Pool for x86_64 RT SP1", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools15-beta-updates-x86_64-rt-sp1", + "parent_channel_label": "sle-product-rt-15-sp1-pool-x86_64", + "product_id": 1928, + "repository_id": 3897, + "parent_product_id": 1712, + "root_product_id": 1861, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/15-BETA/x86_64/update/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-BETA-Updates for x86_64 RT SP1", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools15-beta-debuginfo-updates-x86_64-rt-sp1", + "parent_channel_label": "sle-product-rt-15-sp1-pool-x86_64", + "product_id": 1928, + "repository_id": 3898, + "parent_product_id": 1712, + "root_product_id": 1861, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/15-BETA/x86_64/update_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-BETA-Debuginfo-Updates for x86_64 RT SP1", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools15-beta-pool-x86_64-rt-sp1", + "parent_channel_label": "sle-product-rt-15-sp1-pool-x86_64", + "product_id": 1928, + "repository_id": 3908, + "parent_product_id": 1712, + "root_product_id": 1861, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/15-BETA/x86_64/product/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-BETA-Pool for x86_64 RT SP1", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools15-beta-debuginfo-pool-x86_64-rt-sp1", + "parent_channel_label": "sle-product-rt-15-sp1-pool-x86_64", + "product_id": 1928, + "repository_id": 3909, + "parent_product_id": 1712, + "root_product_id": 1861, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/15-BETA/x86_64/product_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-BETA-Debuginfo-Pool for x86_64 RT SP1", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-module-desktop-applications15-sp1-updates-x86_64-rt", + "parent_channel_label": "sle-product-rt-15-sp1-pool-x86_64", + "product_id": 1776, + "repository_id": 3281, + "parent_product_id": 1772, + "root_product_id": 1861, + "update_tag": "SLE-Module-Desktop-Applications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15-SP1/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Desktop-Applications15-SP1-Updates for x86_64 RT", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-desktop-applications15-sp1-debuginfo-updates-x86_64-rt", + "parent_channel_label": "sle-product-rt-15-sp1-pool-x86_64", + "product_id": 1776, + "repository_id": 3282, + "parent_product_id": 1772, + "root_product_id": 1861, + "update_tag": "SLE-Module-Desktop-Applications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15-SP1/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Desktop-Applications15-SP1-Debuginfo-Updates for x86_64 RT", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-desktop-applications15-sp1-pool-x86_64-rt", + "parent_channel_label": "sle-product-rt-15-sp1-pool-x86_64", + "product_id": 1776, + "repository_id": 3283, + "parent_product_id": 1772, + "root_product_id": 1861, + "update_tag": "SLE-Module-Desktop-Applications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP1/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Desktop-Applications15-SP1-Pool for x86_64 RT", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-desktop-applications15-sp1-debuginfo-pool-x86_64-rt", + "parent_channel_label": "sle-product-rt-15-sp1-pool-x86_64", + "product_id": 1776, + "repository_id": 3284, + "parent_product_id": 1772, + "root_product_id": 1861, + "update_tag": "SLE-Module-Desktop-Applications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP1/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Desktop-Applications15-SP1-Debuginfo-Pool for x86_64 RT", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-devtools15-sp1-updates-x86_64-rt", + "parent_channel_label": "sle-product-rt-15-sp1-pool-x86_64", + "product_id": 1794, + "repository_id": 3371, + "parent_product_id": 1776, + "root_product_id": 1861, + "update_tag": "SLE-Module-Development-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15-SP1/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-DevTools15-SP1-Updates for x86_64 RT", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-devtools15-sp1-debuginfo-updates-x86_64-rt", + "parent_channel_label": "sle-product-rt-15-sp1-pool-x86_64", + "product_id": 1794, + "repository_id": 3372, + "parent_product_id": 1776, + "root_product_id": 1861, + "update_tag": "SLE-Module-Development-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15-SP1/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-DevTools15-SP1-Debuginfo-Updates for x86_64 RT", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-devtools15-sp1-pool-x86_64-rt", + "parent_channel_label": "sle-product-rt-15-sp1-pool-x86_64", + "product_id": 1794, + "repository_id": 3373, + "parent_product_id": 1776, + "root_product_id": 1861, + "update_tag": "SLE-Module-Development-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP1/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-DevTools15-SP1-Pool for x86_64 RT", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-devtools15-sp1-debuginfo-pool-x86_64-rt", + "parent_channel_label": "sle-product-rt-15-sp1-pool-x86_64", + "product_id": 1794, + "repository_id": 3374, + "parent_product_id": 1776, + "root_product_id": 1861, + "update_tag": "SLE-Module-Development-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP1/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-DevTools15-SP1-Debuginfo-Pool for x86_64 RT", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-server-applications15-sp1-updates-x86_64-rt", + "parent_channel_label": "sle-product-rt-15-sp1-pool-x86_64", + "product_id": 1780, + "repository_id": 3301, + "parent_product_id": 1772, + "root_product_id": 1861, + "update_tag": "SLE-Module-Server-Applications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15-SP1/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Server-Applications15-SP1-Updates for x86_64 RT", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-server-applications15-sp1-debuginfo-updates-x86_64-rt", + "parent_channel_label": "sle-product-rt-15-sp1-pool-x86_64", + "product_id": 1780, + "repository_id": 3302, + "parent_product_id": 1772, + "root_product_id": 1861, + "update_tag": "SLE-Module-Server-Applications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15-SP1/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Server-Applications15-SP1-Debuginfo-Updates for x86_64 RT", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-server-applications15-sp1-pool-x86_64-rt", + "parent_channel_label": "sle-product-rt-15-sp1-pool-x86_64", + "product_id": 1780, + "repository_id": 3303, + "parent_product_id": 1772, + "root_product_id": 1861, + "update_tag": "SLE-Module-Server-Applications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP1/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Server-Applications15-SP1-Pool for x86_64 RT", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-server-applications15-sp1-debuginfo-pool-x86_64-rt", + "parent_channel_label": "sle-product-rt-15-sp1-pool-x86_64", + "product_id": 1780, + "repository_id": 3304, + "parent_product_id": 1772, + "root_product_id": 1861, + "update_tag": "SLE-Module-Server-Applications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP1/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Server-Applications15-SP1-Debuginfo-Pool for x86_64 RT", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-rt15-sp1-updates-x86_64", + "parent_channel_label": "sle-product-rt-15-sp1-pool-x86_64", + "product_id": 1862, + "repository_id": 3573, + "parent_product_id": 1780, + "root_product_id": 1861, + "update_tag": "SLE-Module-RT", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-RT/15-SP1/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-RT15-SP1-Updates for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-rt15-sp1-debuginfo-updates-x86_64", + "parent_channel_label": "sle-product-rt-15-sp1-pool-x86_64", + "product_id": 1862, + "repository_id": 3574, + "parent_product_id": 1780, + "root_product_id": 1861, + "update_tag": "SLE-Module-RT", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-RT/15-SP1/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-RT15-SP1-Debuginfo-Updates for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-rt15-sp1-pool-x86_64", + "parent_channel_label": "sle-product-rt-15-sp1-pool-x86_64", + "product_id": 1862, + "repository_id": 3575, + "parent_product_id": 1780, + "root_product_id": 1861, + "update_tag": "SLE-Module-RT", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-RT/15-SP1/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-RT15-SP1-Pool for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-rt15-sp1-debuginfo-pool-x86_64", + "parent_channel_label": "sle-product-rt-15-sp1-pool-x86_64", + "product_id": 1862, + "repository_id": 3576, + "parent_product_id": 1780, + "root_product_id": 1861, + "update_tag": "SLE-Module-RT", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-RT/15-SP1/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-RT15-SP1-Debuginfo-Pool for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-manager-tools12-updates-aarch64-hpc-sp5", + "parent_channel_label": "sle12-sp5-hpc-pool-aarch64", + "product_id": 1872, + "repository_id": 2179, + "parent_product_id": null, + "root_product_id": 1872, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/12/aarch64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Manager-Tools12-Updates for aarch64 HPC SP5", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools12-debuginfo-updates-aarch64-hpc-sp5", + "parent_channel_label": "sle12-sp5-hpc-pool-aarch64", + "product_id": 1872, + "repository_id": 2180, + "parent_product_id": null, + "root_product_id": 1872, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/12/aarch64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Manager-Tools12-Debuginfo-Updates for aarch64 HPC SP5", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools12-pool-aarch64-hpc-sp5", + "parent_channel_label": "sle12-sp5-hpc-pool-aarch64", + "product_id": 1872, + "repository_id": 2181, + "parent_product_id": null, + "root_product_id": 1872, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/12/aarch64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Manager-Tools12-Pool for aarch64 HPC SP5", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools12-debuginfo-pool-aarch64-hpc-sp5", + "parent_channel_label": "sle12-sp5-hpc-pool-aarch64", + "product_id": 1872, + "repository_id": 2182, + "parent_product_id": null, + "root_product_id": 1872, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/12/aarch64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Manager-Tools12-Debuginfo-Pool for aarch64 HPC SP5", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle12-sp5-hpc-updates-aarch64", + "parent_channel_label": "sle12-sp5-hpc-pool-aarch64", + "product_id": 1872, + "repository_id": 3635, + "parent_product_id": null, + "root_product_id": 1872, + "update_tag": "SLE-HPC", + "url": "https://updates.suse.com/SUSE/Updates/SLE-HPC/12-SP5/aarch64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE12-SP5-HPC-Updates for aarch64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles12-sp5-updates-aarch64-hpc", + "parent_channel_label": "sle12-sp5-hpc-pool-aarch64", + "product_id": 1872, + "repository_id": 3636, + "parent_product_id": null, + "root_product_id": 1872, + "update_tag": "SLE-SERVER", + "url": "https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-SP5/aarch64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLES12-SP5-Updates for aarch64 HPC", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle12-sp5-hpc-debuginfo-updates-aarch64", + "parent_channel_label": "sle12-sp5-hpc-pool-aarch64", + "product_id": 1872, + "repository_id": 3637, + "parent_product_id": null, + "root_product_id": 1872, + "update_tag": "SLE-HPC", + "url": "https://updates.suse.com/SUSE/Updates/SLE-HPC/12-SP5/aarch64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE12-SP5-HPC-Debuginfo-Updates for aarch64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles12-sp5-debuginfo-updates-aarch64-hpc", + "parent_channel_label": "sle12-sp5-hpc-pool-aarch64", + "product_id": 1872, + "repository_id": 3638, + "parent_product_id": null, + "root_product_id": 1872, + "update_tag": "SLE-SERVER", + "url": "https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-SP5/aarch64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLES12-SP5-Debuginfo-Updates for aarch64 HPC", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles12-sp5-installer-updates-aarch64-hpc", + "parent_channel_label": "sle12-sp5-hpc-pool-aarch64", + "product_id": 1872, + "repository_id": 3639, + "parent_product_id": null, + "root_product_id": 1872, + "update_tag": "SLE-SERVER-INSTALLER", + "url": "https://updates.suse.com/SUSE/Updates/SLE-SERVER-INSTALLER/12-SP5/aarch64/update/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLES12-SP5-Installer-Updates for aarch64 HPC", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle12-sp5-hpc-pool-aarch64", + "parent_channel_label": null, + "product_id": 1872, + "repository_id": 3640, + "parent_product_id": null, + "root_product_id": 1872, + "update_tag": "SLE-HPC", + "url": "https://updates.suse.com/SUSE/Products/SLE-HPC/12-SP5/aarch64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE12-SP5-HPC-Pool for aarch64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles12-sp5-pool-aarch64-hpc", + "parent_channel_label": "sle12-sp5-hpc-pool-aarch64", + "product_id": 1872, + "repository_id": 3641, + "parent_product_id": null, + "root_product_id": 1872, + "update_tag": "SLE-SERVER", + "url": "https://updates.suse.com/SUSE/Products/SLE-SERVER/12-SP5/aarch64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLES12-SP5-Pool for aarch64 HPC", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle12-sp5-hpc-debuginfo-pool-aarch64", + "parent_channel_label": "sle12-sp5-hpc-pool-aarch64", + "product_id": 1872, + "repository_id": 3642, + "parent_product_id": null, + "root_product_id": 1872, + "update_tag": "SLE-HPC", + "url": "https://updates.suse.com/SUSE/Products/SLE-HPC/12-SP5/aarch64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE12-SP5-HPC-Debuginfo-Pool for aarch64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles12-sp5-debuginfo-pool-aarch64-hpc", + "parent_channel_label": "sle12-sp5-hpc-pool-aarch64", + "product_id": 1872, + "repository_id": 3643, + "parent_product_id": null, + "root_product_id": 1872, + "update_tag": "SLE-SERVER", + "url": "https://updates.suse.com/SUSE/Products/SLE-SERVER/12-SP5/aarch64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLES12-SP5-Debuginfo-Pool for aarch64 HPC", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-toolchain12-updates-aarch64-hpc-sp5", + "parent_channel_label": "sle12-sp5-hpc-pool-aarch64", + "product_id": 1376, + "repository_id": 2086, + "parent_product_id": 1872, + "root_product_id": 1872, + "update_tag": "SLE-Module-Toolchain", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Toolchain/12/aarch64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Toolchain12-Updates for aarch64 HPC SP5", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-toolchain12-debuginfo-updates-aarch64-hpc-sp5", + "parent_channel_label": "sle12-sp5-hpc-pool-aarch64", + "product_id": 1376, + "repository_id": 2087, + "parent_product_id": 1872, + "root_product_id": 1872, + "update_tag": "SLE-Module-Toolchain", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Toolchain/12/aarch64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Toolchain12-Debuginfo-Updates for aarch64 HPC SP5", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-toolchain12-pool-aarch64-hpc-sp5", + "parent_channel_label": "sle12-sp5-hpc-pool-aarch64", + "product_id": 1376, + "repository_id": 2088, + "parent_product_id": 1872, + "root_product_id": 1872, + "update_tag": "SLE-Module-Toolchain", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Toolchain/12/aarch64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Toolchain12-Pool for aarch64 HPC SP5", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-toolchain12-debuginfo-pool-aarch64-hpc-sp5", + "parent_channel_label": "sle12-sp5-hpc-pool-aarch64", + "product_id": 1376, + "repository_id": 2089, + "parent_product_id": 1872, + "root_product_id": 1872, + "update_tag": "SLE-Module-Toolchain", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Toolchain/12/aarch64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Toolchain12-Debuginfo-Pool for aarch64 HPC SP5", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-hpc12-updates-aarch64-hpc-sp5", + "parent_channel_label": "sle12-sp5-hpc-pool-aarch64", + "product_id": 1522, + "repository_id": 2421, + "parent_product_id": 1872, + "root_product_id": 1872, + "update_tag": "SLE-Module-HPC", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-HPC/12/aarch64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-HPC12-Updates for aarch64 HPC SP5", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-hpc12-debuginfo-updates-aarch64-hpc-sp5", + "parent_channel_label": "sle12-sp5-hpc-pool-aarch64", + "product_id": 1522, + "repository_id": 2422, + "parent_product_id": 1872, + "root_product_id": 1872, + "update_tag": "SLE-Module-HPC", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-HPC/12/aarch64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-HPC12-Debuginfo-Updates for aarch64 HPC SP5", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-hpc12-pool-aarch64-hpc-sp5", + "parent_channel_label": "sle12-sp5-hpc-pool-aarch64", + "product_id": 1522, + "repository_id": 2423, + "parent_product_id": 1872, + "root_product_id": 1872, + "update_tag": "SLE-Module-HPC", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-HPC/12/aarch64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-HPC12-Pool for aarch64 HPC SP5", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-hpc12-debuginfo-pool-aarch64-hpc-sp5", + "parent_channel_label": "sle12-sp5-hpc-pool-aarch64", + "product_id": 1522, + "repository_id": 2424, + "parent_product_id": 1872, + "root_product_id": 1872, + "update_tag": "SLE-Module-HPC", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-HPC/12/aarch64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-HPC12-Debuginfo-Pool for aarch64 HPC SP5", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud12-updates-aarch64-hpc-sp5", + "parent_channel_label": "sle12-sp5-hpc-pool-aarch64", + "product_id": 1528, + "repository_id": 2157, + "parent_product_id": 1872, + "root_product_id": 1872, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/12/aarch64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud12-Updates for aarch64 HPC SP5", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud12-debuginfo-updates-aarch64-hpc-sp5", + "parent_channel_label": "sle12-sp5-hpc-pool-aarch64", + "product_id": 1528, + "repository_id": 2158, + "parent_product_id": 1872, + "root_product_id": 1872, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/12/aarch64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud12-Debuginfo-Updates for aarch64 HPC SP5", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud12-pool-aarch64-hpc-sp5", + "parent_channel_label": "sle12-sp5-hpc-pool-aarch64", + "product_id": 1528, + "repository_id": 2159, + "parent_product_id": 1872, + "root_product_id": 1872, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/12/aarch64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud12-Pool for aarch64 HPC SP5", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud12-debuginfo-pool-aarch64-hpc-sp5", + "parent_channel_label": "sle12-sp5-hpc-pool-aarch64", + "product_id": 1528, + "repository_id": 2160, + "parent_product_id": 1872, + "root_product_id": 1872, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/12/aarch64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud12-Debuginfo-Pool for aarch64 HPC SP5", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting12-updates-aarch64-hpc-sp5", + "parent_channel_label": "sle12-sp5-hpc-pool-aarch64", + "product_id": 1539, + "repository_id": 2476, + "parent_product_id": 1872, + "root_product_id": 1872, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/12/aarch64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Web-Scripting12-Updates for aarch64 HPC SP5", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting12-debuginfo-updates-aarch64-hpc-sp5", + "parent_channel_label": "sle12-sp5-hpc-pool-aarch64", + "product_id": 1539, + "repository_id": 2477, + "parent_product_id": 1872, + "root_product_id": 1872, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/12/aarch64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Web-Scripting12-Debuginfo-Updates for aarch64 HPC SP5", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting12-pool-aarch64-hpc-sp5", + "parent_channel_label": "sle12-sp5-hpc-pool-aarch64", + "product_id": 1539, + "repository_id": 2478, + "parent_product_id": 1872, + "root_product_id": 1872, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/12/aarch64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Web-Scripting12-Pool for aarch64 HPC SP5", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting12-debuginfo-pool-aarch64-hpc-sp5", + "parent_channel_label": "sle12-sp5-hpc-pool-aarch64", + "product_id": 1539, + "repository_id": 2479, + "parent_product_id": 1872, + "root_product_id": 1872, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/12/aarch64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Web-Scripting12-Debuginfo-Pool for aarch64 HPC SP5", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-manager-tools12-beta-updates-aarch64-hpc-sp5", + "parent_channel_label": "sle12-sp5-hpc-pool-aarch64", + "product_id": 1744, + "repository_id": 3062, + "parent_product_id": 1872, + "root_product_id": 1872, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/12-BETA/aarch64/update/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools12-BETA-Updates for aarch64 HPC SP5", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools12-beta-debuginfo-updates-aarch64-hpc-sp5", + "parent_channel_label": "sle12-sp5-hpc-pool-aarch64", + "product_id": 1744, + "repository_id": 3063, + "parent_product_id": 1872, + "root_product_id": 1872, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/12-BETA/aarch64/update_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools12-BETA-Debuginfo-Updates for aarch64 HPC SP5", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools12-beta-pool-aarch64-hpc-sp5", + "parent_channel_label": "sle12-sp5-hpc-pool-aarch64", + "product_id": 1744, + "repository_id": 3064, + "parent_product_id": 1872, + "root_product_id": 1872, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/12-BETA/aarch64/product/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools12-BETA-Pool for aarch64 HPC SP5", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools12-beta-debuginfo-pool-aarch64-hpc-sp5", + "parent_channel_label": "sle12-sp5-hpc-pool-aarch64", + "product_id": 1744, + "repository_id": 3065, + "parent_product_id": 1872, + "root_product_id": 1872, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/12-BETA/aarch64/product_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools12-BETA-Debuginfo-Pool for aarch64 HPC SP5", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-sdk12-sp5-updates-aarch64-hpc", + "parent_channel_label": "sle12-sp5-hpc-pool-aarch64", + "product_id": 1889, + "repository_id": 3724, + "parent_product_id": 1872, + "root_product_id": 1872, + "update_tag": "SLE-SDK", + "url": "https://updates.suse.com/SUSE/Updates/SLE-SDK/12-SP5/aarch64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-SDK12-SP5-Updates for aarch64 HPC", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-sdk12-sp5-debuginfo-updates-aarch64-hpc", + "parent_channel_label": "sle12-sp5-hpc-pool-aarch64", + "product_id": 1889, + "repository_id": 3725, + "parent_product_id": 1872, + "root_product_id": 1872, + "update_tag": "SLE-SDK", + "url": "https://updates.suse.com/SUSE/Updates/SLE-SDK/12-SP5/aarch64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-SDK12-SP5-Debuginfo-Updates for aarch64 HPC", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-sdk12-sp5-pool-aarch64-hpc", + "parent_channel_label": "sle12-sp5-hpc-pool-aarch64", + "product_id": 1889, + "repository_id": 3726, + "parent_product_id": 1872, + "root_product_id": 1872, + "update_tag": "SLE-SDK", + "url": "https://updates.suse.com/SUSE/Products/SLE-SDK/12-SP5/aarch64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-SDK12-SP5-Pool for aarch64 HPC", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-sdk12-sp5-debuginfo-pool-aarch64-hpc", + "parent_channel_label": "sle12-sp5-hpc-pool-aarch64", + "product_id": 1889, + "repository_id": 3727, + "parent_product_id": 1872, + "root_product_id": 1872, + "update_tag": "SLE-SDK", + "url": "https://updates.suse.com/SUSE/Products/SLE-SDK/12-SP5/aarch64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-SDK12-SP5-Debuginfo-Pool for aarch64 HPC", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles12-sp5-espos-updates-aarch64-hpc", + "parent_channel_label": "sle12-sp5-hpc-pool-aarch64", + "product_id": 1894, + "repository_id": 3749, + "parent_product_id": 1872, + "root_product_id": 1872, + "update_tag": "SLE-SERVER", + "url": "https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-SP5-ESPOS/aarch64/update/", + "release_stage": "alpha", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLES12-SP5-ESPOS-Updates for aarch64 HPC", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles12-sp5-espos-debuginfo-updates-aarch64-hpc", + "parent_channel_label": "sle12-sp5-hpc-pool-aarch64", + "product_id": 1894, + "repository_id": 3750, + "parent_product_id": 1872, + "root_product_id": 1872, + "update_tag": "SLE-SERVER", + "url": "https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-SP5-ESPOS/aarch64/update_debug/", + "release_stage": "alpha", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLES12-SP5-ESPOS-Debuginfo-Updates for aarch64 HPC", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles12-sp5-espos-pool-aarch64-hpc", + "parent_channel_label": "sle12-sp5-hpc-pool-aarch64", + "product_id": 1894, + "repository_id": 3751, + "parent_product_id": 1872, + "root_product_id": 1872, + "update_tag": "SLE-SERVER", + "url": "https://updates.suse.com/SUSE/Products/SLE-SERVER/12-SP5-ESPOS/aarch64/product/", + "release_stage": "alpha", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLES12-SP5-ESPOS-Pool for aarch64 HPC", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles12-sp5-espos-debuginfo-pool-aarch64-hpc", + "parent_channel_label": "sle12-sp5-hpc-pool-aarch64", + "product_id": 1894, + "repository_id": 3752, + "parent_product_id": 1872, + "root_product_id": 1872, + "update_tag": "SLE-SERVER", + "url": "https://updates.suse.com/SUSE/Products/SLE-SERVER/12-SP5-ESPOS/aarch64/product_debug/", + "release_stage": "alpha", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLES12-SP5-ESPOS-Debuginfo-Pool for aarch64 HPC", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-packagehub-12-sp5-standard-pool-aarch64-hpc", + "parent_channel_label": "sle12-sp5-hpc-pool-aarch64", + "product_id": 1912, + "repository_id": 3855, + "parent_product_id": 1872, + "root_product_id": 1872, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-12-SP5_aarch64/standard/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-12-SP5-Standard-Pool for aarch64 HPC", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-packagehub-12-sp5-debuginfo-aarch64-hpc", + "parent_channel_label": "sle12-sp5-hpc-pool-aarch64", + "product_id": 1912, + "repository_id": 3856, + "parent_product_id": 1872, + "root_product_id": 1872, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-12-SP5_aarch64/standard_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-12-SP5-Debuginfo for aarch64 HPC", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-packagehub-12-sp5-pool-aarch64-hpc", + "parent_channel_label": "sle12-sp5-hpc-pool-aarch64", + "product_id": 1912, + "repository_id": 3857, + "parent_product_id": 1872, + "root_product_id": 1872, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-12-SP5_aarch64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-12-SP5-Pool for aarch64 HPC", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-manager-tools12-updates-x86_64-hpc-sp5", + "parent_channel_label": "sle12-sp5-hpc-pool-x86_64", + "product_id": 1873, + "repository_id": 1732, + "parent_product_id": null, + "root_product_id": 1873, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/12/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Manager-Tools12-Updates for x86_64 HPC SP5", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools12-debuginfo-updates-x86_64-hpc-sp5", + "parent_channel_label": "sle12-sp5-hpc-pool-x86_64", + "product_id": 1873, + "repository_id": 1733, + "parent_product_id": null, + "root_product_id": 1873, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/12/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Manager-Tools12-Debuginfo-Updates for x86_64 HPC SP5", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools12-pool-x86_64-hpc-sp5", + "parent_channel_label": "sle12-sp5-hpc-pool-x86_64", + "product_id": 1873, + "repository_id": 1734, + "parent_product_id": null, + "root_product_id": 1873, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/12/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Manager-Tools12-Pool for x86_64 HPC SP5", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools12-debuginfo-pool-x86_64-hpc-sp5", + "parent_channel_label": "sle12-sp5-hpc-pool-x86_64", + "product_id": 1873, + "repository_id": 1735, + "parent_product_id": null, + "root_product_id": 1873, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/12/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Manager-Tools12-Debuginfo-Pool for x86_64 HPC SP5", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle12-sp5-hpc-updates-x86_64", + "parent_channel_label": "sle12-sp5-hpc-pool-x86_64", + "product_id": 1873, + "repository_id": 3646, + "parent_product_id": null, + "root_product_id": 1873, + "update_tag": "SLE-HPC", + "url": "https://updates.suse.com/SUSE/Updates/SLE-HPC/12-SP5/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE12-SP5-HPC-Updates for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles12-sp5-updates-x86_64-hpc", + "parent_channel_label": "sle12-sp5-hpc-pool-x86_64", + "product_id": 1873, + "repository_id": 3647, + "parent_product_id": null, + "root_product_id": 1873, + "update_tag": "SLE-SERVER", + "url": "https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-SP5/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLES12-SP5-Updates for x86_64 HPC", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle12-sp5-hpc-debuginfo-updates-x86_64", + "parent_channel_label": "sle12-sp5-hpc-pool-x86_64", + "product_id": 1873, + "repository_id": 3648, + "parent_product_id": null, + "root_product_id": 1873, + "update_tag": "SLE-HPC", + "url": "https://updates.suse.com/SUSE/Updates/SLE-HPC/12-SP5/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE12-SP5-HPC-Debuginfo-Updates for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles12-sp5-debuginfo-updates-x86_64-hpc", + "parent_channel_label": "sle12-sp5-hpc-pool-x86_64", + "product_id": 1873, + "repository_id": 3649, + "parent_product_id": null, + "root_product_id": 1873, + "update_tag": "SLE-SERVER", + "url": "https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-SP5/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLES12-SP5-Debuginfo-Updates for x86_64 HPC", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles12-sp5-installer-updates-x86_64-hpc", + "parent_channel_label": "sle12-sp5-hpc-pool-x86_64", + "product_id": 1873, + "repository_id": 3650, + "parent_product_id": null, + "root_product_id": 1873, + "update_tag": "SLE-SERVER-INSTALLER", + "url": "https://updates.suse.com/SUSE/Updates/SLE-SERVER-INSTALLER/12-SP5/x86_64/update/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLES12-SP5-Installer-Updates for x86_64 HPC", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle12-sp5-hpc-pool-x86_64", + "parent_channel_label": null, + "product_id": 1873, + "repository_id": 3651, + "parent_product_id": null, + "root_product_id": 1873, + "update_tag": "SLE-HPC", + "url": "https://updates.suse.com/SUSE/Products/SLE-HPC/12-SP5/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE12-SP5-HPC-Pool for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles12-sp5-pool-x86_64-hpc", + "parent_channel_label": "sle12-sp5-hpc-pool-x86_64", + "product_id": 1873, + "repository_id": 3652, + "parent_product_id": null, + "root_product_id": 1873, + "update_tag": "SLE-SERVER", + "url": "https://updates.suse.com/SUSE/Products/SLE-SERVER/12-SP5/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLES12-SP5-Pool for x86_64 HPC", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle12-sp5-hpc-debuginfo-pool-x86_64", + "parent_channel_label": "sle12-sp5-hpc-pool-x86_64", + "product_id": 1873, + "repository_id": 3653, + "parent_product_id": null, + "root_product_id": 1873, + "update_tag": "SLE-HPC", + "url": "https://updates.suse.com/SUSE/Products/SLE-HPC/12-SP5/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE12-SP5-HPC-Debuginfo-Pool for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles12-sp5-debuginfo-pool-x86_64-hpc", + "parent_channel_label": "sle12-sp5-hpc-pool-x86_64", + "product_id": 1873, + "repository_id": 3654, + "parent_product_id": null, + "root_product_id": 1873, + "update_tag": "SLE-SERVER", + "url": "https://updates.suse.com/SUSE/Products/SLE-SERVER/12-SP5/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLES12-SP5-Debuginfo-Pool for x86_64 HPC", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-legacy12-updates-x86_64-hpc-sp5", + "parent_channel_label": "sle12-sp5-hpc-pool-x86_64", + "product_id": 1150, + "repository_id": 1676, + "parent_product_id": 1873, + "root_product_id": 1873, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/12/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy12-Updates for x86_64 HPC SP5", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-legacy12-debuginfo-updates-x86_64-hpc-sp5", + "parent_channel_label": "sle12-sp5-hpc-pool-x86_64", + "product_id": 1150, + "repository_id": 1677, + "parent_product_id": 1873, + "root_product_id": 1873, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/12/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy12-Debuginfo-Updates for x86_64 HPC SP5", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-legacy12-pool-x86_64-hpc-sp5", + "parent_channel_label": "sle12-sp5-hpc-pool-x86_64", + "product_id": 1150, + "repository_id": 1678, + "parent_product_id": 1873, + "root_product_id": 1873, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/12/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy12-Pool for x86_64 HPC SP5", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-legacy12-debuginfo-pool-x86_64-hpc-sp5", + "parent_channel_label": "sle12-sp5-hpc-pool-x86_64", + "product_id": 1150, + "repository_id": 1679, + "parent_product_id": 1873, + "root_product_id": 1873, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/12/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy12-Debuginfo-Pool for x86_64 HPC SP5", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting12-updates-x86_64-hpc-sp5", + "parent_channel_label": "sle12-sp5-hpc-pool-x86_64", + "product_id": 1153, + "repository_id": 1688, + "parent_product_id": 1873, + "root_product_id": 1873, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/12/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Web-Scripting12-Updates for x86_64 HPC SP5", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting12-debuginfo-updates-x86_64-hpc-sp5", + "parent_channel_label": "sle12-sp5-hpc-pool-x86_64", + "product_id": 1153, + "repository_id": 1689, + "parent_product_id": 1873, + "root_product_id": 1873, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/12/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Web-Scripting12-Debuginfo-Updates for x86_64 HPC SP5", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting12-pool-x86_64-hpc-sp5", + "parent_channel_label": "sle12-sp5-hpc-pool-x86_64", + "product_id": 1153, + "repository_id": 1690, + "parent_product_id": 1873, + "root_product_id": 1873, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/12/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Web-Scripting12-Pool for x86_64 HPC SP5", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting12-debuginfo-pool-x86_64-hpc-sp5", + "parent_channel_label": "sle12-sp5-hpc-pool-x86_64", + "product_id": 1153, + "repository_id": 1691, + "parent_product_id": 1873, + "root_product_id": 1873, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/12/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Web-Scripting12-Debuginfo-Pool for x86_64 HPC SP5", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-adv-systems-management12-updates-x86_64-hpc-sp5", + "parent_channel_label": "sle12-sp5-hpc-pool-x86_64", + "product_id": 1212, + "repository_id": 1704, + "parent_product_id": 1873, + "root_product_id": 1873, + "update_tag": "SLE-Module-Adv-Systems-Management", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Adv-Systems-Management/12/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Adv-Systems-Management12-Updates for x86_64 HPC SP5", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-adv-systems-management12-debuginfo-updates-x86_64-hpc-sp5", + "parent_channel_label": "sle12-sp5-hpc-pool-x86_64", + "product_id": 1212, + "repository_id": 1705, + "parent_product_id": 1873, + "root_product_id": 1873, + "update_tag": "SLE-Module-Adv-Systems-Management", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Adv-Systems-Management/12/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Adv-Systems-Management12-Debuginfo-Updates for x86_64 HPC SP5", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-adv-systems-management12-pool-x86_64-hpc-sp5", + "parent_channel_label": "sle12-sp5-hpc-pool-x86_64", + "product_id": 1212, + "repository_id": 1706, + "parent_product_id": 1873, + "root_product_id": 1873, + "update_tag": "SLE-Module-Adv-Systems-Management", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Adv-Systems-Management/12/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Adv-Systems-Management12-Pool for x86_64 HPC SP5", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-adv-systems-management12-debuginfo-pool-x86_64-hpc-sp5", + "parent_channel_label": "sle12-sp5-hpc-pool-x86_64", + "product_id": 1212, + "repository_id": 1707, + "parent_product_id": 1873, + "root_product_id": 1873, + "update_tag": "SLE-Module-Adv-Systems-Management", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Adv-Systems-Management/12/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Adv-Systems-Management12-Debuginfo-Pool for x86_64 HPC SP5", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud12-updates-x86_64-hpc-sp5", + "parent_channel_label": "sle12-sp5-hpc-pool-x86_64", + "product_id": 1220, + "repository_id": 1700, + "parent_product_id": 1873, + "root_product_id": 1873, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/12/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud12-Updates for x86_64 HPC SP5", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud12-debuginfo-updates-x86_64-hpc-sp5", + "parent_channel_label": "sle12-sp5-hpc-pool-x86_64", + "product_id": 1220, + "repository_id": 1701, + "parent_product_id": 1873, + "root_product_id": 1873, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/12/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud12-Debuginfo-Updates for x86_64 HPC SP5", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud12-pool-x86_64-hpc-sp5", + "parent_channel_label": "sle12-sp5-hpc-pool-x86_64", + "product_id": 1220, + "repository_id": 1702, + "parent_product_id": 1873, + "root_product_id": 1873, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/12/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud12-Pool for x86_64 HPC SP5", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud12-debuginfo-pool-x86_64-hpc-sp5", + "parent_channel_label": "sle12-sp5-hpc-pool-x86_64", + "product_id": 1220, + "repository_id": 1703, + "parent_product_id": 1873, + "root_product_id": 1873, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/12/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud12-Debuginfo-Pool for x86_64 HPC SP5", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-containers12-updates-x86_64-hpc-sp5", + "parent_channel_label": "sle12-sp5-hpc-pool-x86_64", + "product_id": 1332, + "repository_id": 1864, + "parent_product_id": 1873, + "root_product_id": 1873, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/12/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers12-Updates for x86_64 HPC SP5", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-containers12-debuginfo-updates-x86_64-hpc-sp5", + "parent_channel_label": "sle12-sp5-hpc-pool-x86_64", + "product_id": 1332, + "repository_id": 1865, + "parent_product_id": 1873, + "root_product_id": 1873, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/12/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers12-Debuginfo-Updates for x86_64 HPC SP5", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-containers12-pool-x86_64-hpc-sp5", + "parent_channel_label": "sle12-sp5-hpc-pool-x86_64", + "product_id": 1332, + "repository_id": 1866, + "parent_product_id": 1873, + "root_product_id": 1873, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Containers/12/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers12-Pool for x86_64 HPC SP5", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-containers12-debuginfo-pool-x86_64-hpc-sp5", + "parent_channel_label": "sle12-sp5-hpc-pool-x86_64", + "product_id": 1332, + "repository_id": 1867, + "parent_product_id": 1873, + "root_product_id": 1873, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Containers/12/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers12-Debuginfo-Pool for x86_64 HPC SP5", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-toolchain12-updates-x86_64-hpc-sp5", + "parent_channel_label": "sle12-sp5-hpc-pool-x86_64", + "product_id": 1341, + "repository_id": 1903, + "parent_product_id": 1873, + "root_product_id": 1873, + "update_tag": "SLE-Module-Toolchain", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Toolchain/12/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Toolchain12-Updates for x86_64 HPC SP5", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-toolchain12-debuginfo-updates-x86_64-hpc-sp5", + "parent_channel_label": "sle12-sp5-hpc-pool-x86_64", + "product_id": 1341, + "repository_id": 1904, + "parent_product_id": 1873, + "root_product_id": 1873, + "update_tag": "SLE-Module-Toolchain", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Toolchain/12/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Toolchain12-Debuginfo-Updates for x86_64 HPC SP5", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-toolchain12-pool-x86_64-hpc-sp5", + "parent_channel_label": "sle12-sp5-hpc-pool-x86_64", + "product_id": 1341, + "repository_id": 1905, + "parent_product_id": 1873, + "root_product_id": 1873, + "update_tag": "SLE-Module-Toolchain", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Toolchain/12/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Toolchain12-Pool for x86_64 HPC SP5", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-toolchain12-debuginfo-pool-x86_64-hpc-sp5", + "parent_channel_label": "sle12-sp5-hpc-pool-x86_64", + "product_id": 1341, + "repository_id": 1906, + "parent_product_id": 1873, + "root_product_id": 1873, + "update_tag": "SLE-Module-Toolchain", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Toolchain/12/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Toolchain12-Debuginfo-Pool for x86_64 HPC SP5", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-hpc12-updates-x86_64-hpc-sp5", + "parent_channel_label": "sle12-sp5-hpc-pool-x86_64", + "product_id": 1440, + "repository_id": 2294, + "parent_product_id": 1873, + "root_product_id": 1873, + "update_tag": "SLE-Module-HPC", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-HPC/12/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-HPC12-Updates for x86_64 HPC SP5", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-hpc12-debuginfo-updates-x86_64-hpc-sp5", + "parent_channel_label": "sle12-sp5-hpc-pool-x86_64", + "product_id": 1440, + "repository_id": 2295, + "parent_product_id": 1873, + "root_product_id": 1873, + "update_tag": "SLE-Module-HPC", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-HPC/12/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-HPC12-Debuginfo-Updates for x86_64 HPC SP5", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-hpc12-pool-x86_64-hpc-sp5", + "parent_channel_label": "sle12-sp5-hpc-pool-x86_64", + "product_id": 1440, + "repository_id": 2296, + "parent_product_id": 1873, + "root_product_id": 1873, + "update_tag": "SLE-Module-HPC", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-HPC/12/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-HPC12-Pool for x86_64 HPC SP5", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-hpc12-debuginfo-pool-x86_64-hpc-sp5", + "parent_channel_label": "sle12-sp5-hpc-pool-x86_64", + "product_id": 1440, + "repository_id": 2297, + "parent_product_id": 1873, + "root_product_id": 1873, + "update_tag": "SLE-Module-HPC", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-HPC/12/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-HPC12-Debuginfo-Pool for x86_64 HPC SP5", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-cap-tools-12-updates-x86_64-hpc-sp5", + "parent_channel_label": "sle12-sp5-hpc-pool-x86_64", + "product_id": 1678, + "repository_id": 2912, + "parent_product_id": 1873, + "root_product_id": 1873, + "update_tag": "SLE-Module-CAP-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-CAP-Tools/12/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-CAP-Tools-12-Updates for x86_64 HPC SP5", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-cap-tools-12-debuginfo-updates-x86_64-hpc-sp5", + "parent_channel_label": "sle12-sp5-hpc-pool-x86_64", + "product_id": 1678, + "repository_id": 2913, + "parent_product_id": 1873, + "root_product_id": 1873, + "update_tag": "SLE-Module-CAP-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-CAP-Tools/12/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-CAP-Tools-12-Debuginfo-Updates for x86_64 HPC SP5", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-cap-tools-12-pool-x86_64-hpc-sp5", + "parent_channel_label": "sle12-sp5-hpc-pool-x86_64", + "product_id": 1678, + "repository_id": 2914, + "parent_product_id": 1873, + "root_product_id": 1873, + "update_tag": "SLE-Module-CAP-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-CAP-Tools/12/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-CAP-Tools-12-Pool for x86_64 HPC SP5", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-cap-tools-12-debuginfo-pool-x86_64-hpc-sp5", + "parent_channel_label": "sle12-sp5-hpc-pool-x86_64", + "product_id": 1678, + "repository_id": 2915, + "parent_product_id": 1873, + "root_product_id": 1873, + "update_tag": "SLE-Module-CAP-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-CAP-Tools/12/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-CAP-Tools-12-Debuginfo-Pool for x86_64 HPC SP5", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-manager-tools12-beta-updates-x86_64-hpc-sp5", + "parent_channel_label": "sle12-sp5-hpc-pool-x86_64", + "product_id": 1747, + "repository_id": 3077, + "parent_product_id": 1873, + "root_product_id": 1873, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/12-BETA/x86_64/update/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools12-BETA-Updates for x86_64 HPC SP5", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools12-beta-debuginfo-updates-x86_64-hpc-sp5", + "parent_channel_label": "sle12-sp5-hpc-pool-x86_64", + "product_id": 1747, + "repository_id": 3078, + "parent_product_id": 1873, + "root_product_id": 1873, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/12-BETA/x86_64/update_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools12-BETA-Debuginfo-Updates for x86_64 HPC SP5", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools12-beta-pool-x86_64-hpc-sp5", + "parent_channel_label": "sle12-sp5-hpc-pool-x86_64", + "product_id": 1747, + "repository_id": 3079, + "parent_product_id": 1873, + "root_product_id": 1873, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/12-BETA/x86_64/product/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools12-BETA-Pool for x86_64 HPC SP5", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools12-beta-debuginfo-pool-x86_64-hpc-sp5", + "parent_channel_label": "sle12-sp5-hpc-pool-x86_64", + "product_id": 1747, + "repository_id": 3080, + "parent_product_id": 1873, + "root_product_id": 1873, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/12-BETA/x86_64/product_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools12-BETA-Debuginfo-Pool for x86_64 HPC SP5", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-ha12-sp5-updates-x86_64-hpc", + "parent_channel_label": "sle12-sp5-hpc-pool-x86_64", + "product_id": 1884, + "repository_id": 3687, + "parent_product_id": 1873, + "root_product_id": 1873, + "update_tag": "SLE-HA", + "url": "https://updates.suse.com/SUSE/Updates/SLE-HA/12-SP5/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-HA12-SP5-Updates for x86_64 HPC", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-ha12-sp5-debuginfo-updates-x86_64-hpc", + "parent_channel_label": "sle12-sp5-hpc-pool-x86_64", + "product_id": 1884, + "repository_id": 3689, + "parent_product_id": 1873, + "root_product_id": 1873, + "update_tag": "SLE-HA", + "url": "https://updates.suse.com/SUSE/Updates/SLE-HA/12-SP5/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-HA12-SP5-Debuginfo-Updates for x86_64 HPC", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-ha12-sp5-pool-x86_64-hpc", + "parent_channel_label": "sle12-sp5-hpc-pool-x86_64", + "product_id": 1884, + "repository_id": 3691, + "parent_product_id": 1873, + "root_product_id": 1873, + "update_tag": "SLE-HA", + "url": "https://updates.suse.com/SUSE/Products/SLE-HA/12-SP5/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-HA12-SP5-Pool for x86_64 HPC", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-ha12-sp5-debuginfo-pool-x86_64-hpc", + "parent_channel_label": "sle12-sp5-hpc-pool-x86_64", + "product_id": 1884, + "repository_id": 3693, + "parent_product_id": 1873, + "root_product_id": 1873, + "update_tag": "SLE-HA", + "url": "https://updates.suse.com/SUSE/Products/SLE-HA/12-SP5/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-HA12-SP5-Debuginfo-Pool for x86_64 HPC", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-ha-geo12-sp5-updates-x86_64-hpc", + "parent_channel_label": "sle12-sp5-hpc-pool-x86_64", + "product_id": 1886, + "repository_id": 3711, + "parent_product_id": 1884, + "root_product_id": 1873, + "update_tag": "SLE-HA-GEO", + "url": "https://updates.suse.com/SUSE/Updates/SLE-HA-GEO/12-SP5/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-HA-GEO12-SP5-Updates for x86_64 HPC", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-ha-geo12-sp5-debuginfo-updates-x86_64-hpc", + "parent_channel_label": "sle12-sp5-hpc-pool-x86_64", + "product_id": 1886, + "repository_id": 3712, + "parent_product_id": 1884, + "root_product_id": 1873, + "update_tag": "SLE-HA-GEO", + "url": "https://updates.suse.com/SUSE/Updates/SLE-HA-GEO/12-SP5/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-HA-GEO12-SP5-Debuginfo-Updates for x86_64 HPC", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-ha-geo12-sp5-pool-x86_64-hpc", + "parent_channel_label": "sle12-sp5-hpc-pool-x86_64", + "product_id": 1886, + "repository_id": 3713, + "parent_product_id": 1884, + "root_product_id": 1873, + "update_tag": "SLE-HA-GEO", + "url": "https://updates.suse.com/SUSE/Products/SLE-HA-GEO/12-SP5/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-HA-GEO12-SP5-Pool for x86_64 HPC", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-ha-geo12-sp5-debuginfo-pool-x86_64-hpc", + "parent_channel_label": "sle12-sp5-hpc-pool-x86_64", + "product_id": 1886, + "repository_id": 3714, + "parent_product_id": 1884, + "root_product_id": 1873, + "update_tag": "SLE-HA-GEO", + "url": "https://updates.suse.com/SUSE/Products/SLE-HA-GEO/12-SP5/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-HA-GEO12-SP5-Debuginfo-Pool for x86_64 HPC", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-live-patching12-sp5-updates-x86_64-hpc", + "parent_channel_label": "sle12-sp5-hpc-pool-x86_64", + "product_id": 1888, + "repository_id": 3720, + "parent_product_id": 1873, + "root_product_id": 1873, + "update_tag": "SLE-Live-Patching", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Live-Patching/12-SP5/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Live-Patching12-SP5-Updates for x86_64 HPC", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-live-patching12-sp5-debuginfo-updates-x86_64-hpc", + "parent_channel_label": "sle12-sp5-hpc-pool-x86_64", + "product_id": 1888, + "repository_id": 3721, + "parent_product_id": 1873, + "root_product_id": 1873, + "update_tag": "SLE-Live-Patching", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Live-Patching/12-SP5/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Live-Patching12-SP5-Debuginfo-Updates for x86_64 HPC", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-live-patching12-sp5-pool-x86_64-hpc", + "parent_channel_label": "sle12-sp5-hpc-pool-x86_64", + "product_id": 1888, + "repository_id": 3722, + "parent_product_id": 1873, + "root_product_id": 1873, + "update_tag": "SLE-Live-Patching", + "url": "https://updates.suse.com/SUSE/Products/SLE-Live-Patching/12-SP5/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Live-Patching12-SP5-Pool for x86_64 HPC", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-live-patching12-sp5-debuginfo-pool-x86_64-hpc", + "parent_channel_label": "sle12-sp5-hpc-pool-x86_64", + "product_id": 1888, + "repository_id": 3723, + "parent_product_id": 1873, + "root_product_id": 1873, + "update_tag": "SLE-Live-Patching", + "url": "https://updates.suse.com/SUSE/Products/SLE-Live-Patching/12-SP5/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Live-Patching12-SP5-Debuginfo-Pool for x86_64 HPC", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-sdk12-sp5-updates-x86_64-hpc", + "parent_channel_label": "sle12-sp5-hpc-pool-x86_64", + "product_id": 1892, + "repository_id": 3739, + "parent_product_id": 1873, + "root_product_id": 1873, + "update_tag": "SLE-SDK", + "url": "https://updates.suse.com/SUSE/Updates/SLE-SDK/12-SP5/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-SDK12-SP5-Updates for x86_64 HPC", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-sdk12-sp5-debuginfo-updates-x86_64-hpc", + "parent_channel_label": "sle12-sp5-hpc-pool-x86_64", + "product_id": 1892, + "repository_id": 3740, + "parent_product_id": 1873, + "root_product_id": 1873, + "update_tag": "SLE-SDK", + "url": "https://updates.suse.com/SUSE/Updates/SLE-SDK/12-SP5/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-SDK12-SP5-Debuginfo-Updates for x86_64 HPC", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-sdk12-sp5-pool-x86_64-hpc", + "parent_channel_label": "sle12-sp5-hpc-pool-x86_64", + "product_id": 1892, + "repository_id": 3741, + "parent_product_id": 1873, + "root_product_id": 1873, + "update_tag": "SLE-SDK", + "url": "https://updates.suse.com/SUSE/Products/SLE-SDK/12-SP5/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-SDK12-SP5-Pool for x86_64 HPC", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-sdk12-sp5-debuginfo-pool-x86_64-hpc", + "parent_channel_label": "sle12-sp5-hpc-pool-x86_64", + "product_id": 1892, + "repository_id": 3742, + "parent_product_id": 1873, + "root_product_id": 1873, + "update_tag": "SLE-SDK", + "url": "https://updates.suse.com/SUSE/Products/SLE-SDK/12-SP5/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-SDK12-SP5-Debuginfo-Pool for x86_64 HPC", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-12-sp5-ga-desktop-nvidia-driver-hpc", + "parent_channel_label": "sle12-sp5-hpc-pool-x86_64", + "product_id": 1893, + "repository_id": 3661, + "parent_product_id": 1873, + "root_product_id": 1873, + "update_tag": null, + "url": "https://download.nvidia.com/suse/sle12sp5/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-12-SP5-GA-Desktop-nVidia-Driver for x86_64 HPC", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-we12-sp5-updates-x86_64-hpc", + "parent_channel_label": "sle12-sp5-hpc-pool-x86_64", + "product_id": 1893, + "repository_id": 3744, + "parent_product_id": 1873, + "root_product_id": 1873, + "update_tag": "SLE-WE", + "url": "https://updates.suse.com/SUSE/Updates/SLE-WE/12-SP5/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-WE12-SP5-Updates for x86_64 HPC", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-we12-sp5-debuginfo-updates-x86_64-hpc", + "parent_channel_label": "sle12-sp5-hpc-pool-x86_64", + "product_id": 1893, + "repository_id": 3745, + "parent_product_id": 1873, + "root_product_id": 1873, + "update_tag": "SLE-WE", + "url": "https://updates.suse.com/SUSE/Updates/SLE-WE/12-SP5/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-WE12-SP5-Debuginfo-Updates for x86_64 HPC", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-we12-sp5-pool-x86_64-hpc", + "parent_channel_label": "sle12-sp5-hpc-pool-x86_64", + "product_id": 1893, + "repository_id": 3746, + "parent_product_id": 1873, + "root_product_id": 1873, + "update_tag": "SLE-WE", + "url": "https://updates.suse.com/SUSE/Products/SLE-WE/12-SP5/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-WE12-SP5-Pool for x86_64 HPC", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-we12-sp5-debuginfo-pool-x86_64-hpc", + "parent_channel_label": "sle12-sp5-hpc-pool-x86_64", + "product_id": 1893, + "repository_id": 3747, + "parent_product_id": 1873, + "root_product_id": 1873, + "update_tag": "SLE-WE", + "url": "https://updates.suse.com/SUSE/Products/SLE-WE/12-SP5/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-WE12-SP5-Debuginfo-Pool for x86_64 HPC", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles12-sp5-espos-updates-x86_64-hpc", + "parent_channel_label": "sle12-sp5-hpc-pool-x86_64", + "product_id": 1895, + "repository_id": 3754, + "parent_product_id": 1873, + "root_product_id": 1873, + "update_tag": "SLE-SERVER", + "url": "https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-SP5-ESPOS/x86_64/update/", + "release_stage": "alpha", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLES12-SP5-ESPOS-Updates for x86_64 HPC", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles12-sp5-espos-debuginfo-updates-x86_64-hpc", + "parent_channel_label": "sle12-sp5-hpc-pool-x86_64", + "product_id": 1895, + "repository_id": 3755, + "parent_product_id": 1873, + "root_product_id": 1873, + "update_tag": "SLE-SERVER", + "url": "https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-SP5-ESPOS/x86_64/update_debug/", + "release_stage": "alpha", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLES12-SP5-ESPOS-Debuginfo-Updates for x86_64 HPC", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles12-sp5-espos-pool-x86_64-hpc", + "parent_channel_label": "sle12-sp5-hpc-pool-x86_64", + "product_id": 1895, + "repository_id": 3756, + "parent_product_id": 1873, + "root_product_id": 1873, + "update_tag": "SLE-SERVER", + "url": "https://updates.suse.com/SUSE/Products/SLE-SERVER/12-SP5-ESPOS/x86_64/product/", + "release_stage": "alpha", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLES12-SP5-ESPOS-Pool for x86_64 HPC", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles12-sp5-espos-debuginfo-pool-x86_64-hpc", + "parent_channel_label": "sle12-sp5-hpc-pool-x86_64", + "product_id": 1895, + "repository_id": 3757, + "parent_product_id": 1873, + "root_product_id": 1873, + "update_tag": "SLE-SERVER", + "url": "https://updates.suse.com/SUSE/Products/SLE-SERVER/12-SP5-ESPOS/x86_64/product_debug/", + "release_stage": "alpha", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLES12-SP5-ESPOS-Debuginfo-Pool for x86_64 HPC", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-packagehub-12-sp5-standard-pool-x86_64-hpc", + "parent_channel_label": "sle12-sp5-hpc-pool-x86_64", + "product_id": 1915, + "repository_id": 3864, + "parent_product_id": 1873, + "root_product_id": 1873, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-12-SP5_x86_64/standard/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-12-SP5-Standard-Pool for x86_64 HPC", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-packagehub-12-sp5-debuginfo-x86_64-hpc", + "parent_channel_label": "sle12-sp5-hpc-pool-x86_64", + "product_id": 1915, + "repository_id": 3865, + "parent_product_id": 1873, + "root_product_id": 1873, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-12-SP5_x86_64/standard_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-12-SP5-Debuginfo for x86_64 HPC", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-packagehub-12-sp5-pool-x86_64-hpc", + "parent_channel_label": "sle12-sp5-hpc-pool-x86_64", + "product_id": 1915, + "repository_id": 3866, + "parent_product_id": 1873, + "root_product_id": 1873, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-12-SP5_x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-12-SP5-Pool for x86_64 HPC", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-rt12-sp5-updates-x86_64-hpc", + "parent_channel_label": "sle12-sp5-hpc-pool-x86_64", + "product_id": 2006, + "repository_id": 4307, + "parent_product_id": 1873, + "root_product_id": 1873, + "update_tag": "SLE-RT", + "url": "https://updates.suse.com/SUSE/Updates/SLE-RT/12-SP5/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-RT12-SP5-Updates for x86_64 HPC", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-rt12-sp5-debuginfo-updates-x86_64-hpc", + "parent_channel_label": "sle12-sp5-hpc-pool-x86_64", + "product_id": 2006, + "repository_id": 4308, + "parent_product_id": 1873, + "root_product_id": 1873, + "update_tag": "SLE-RT", + "url": "https://updates.suse.com/SUSE/Updates/SLE-RT/12-SP5/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-RT12-SP5-Debuginfo-Updates for x86_64 HPC", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-rt12-sp5-pool-x86_64-hpc", + "parent_channel_label": "sle12-sp5-hpc-pool-x86_64", + "product_id": 2006, + "repository_id": 4309, + "parent_product_id": 1873, + "root_product_id": 1873, + "update_tag": "SLE-RT", + "url": "https://updates.suse.com/SUSE/Products/SLE-RT/12-SP5/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-RT12-SP5-Pool for x86_64 HPC", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-rt12-sp5-debuginfo-pool-x86_64-hpc", + "parent_channel_label": "sle12-sp5-hpc-pool-x86_64", + "product_id": 2006, + "repository_id": 4310, + "parent_product_id": 1873, + "root_product_id": 1873, + "update_tag": "SLE-RT", + "url": "https://updates.suse.com/SUSE/Products/SLE-RT/12-SP5/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-RT12-SP5-Debuginfo-Pool for x86_64 HPC", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-manager-tools12-updates-aarch64-sp5", + "parent_channel_label": "sles12-sp5-pool-aarch64", + "product_id": 1875, + "repository_id": 2179, + "parent_product_id": null, + "root_product_id": 1875, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/12/aarch64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Manager-Tools12-Updates for aarch64 SP5", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools12-debuginfo-updates-aarch64-sp5", + "parent_channel_label": "sles12-sp5-pool-aarch64", + "product_id": 1875, + "repository_id": 2180, + "parent_product_id": null, + "root_product_id": 1875, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/12/aarch64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Manager-Tools12-Debuginfo-Updates for aarch64 SP5", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools12-pool-aarch64-sp5", + "parent_channel_label": "sles12-sp5-pool-aarch64", + "product_id": 1875, + "repository_id": 2181, + "parent_product_id": null, + "root_product_id": 1875, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/12/aarch64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Manager-Tools12-Pool for aarch64 SP5", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools12-debuginfo-pool-aarch64-sp5", + "parent_channel_label": "sles12-sp5-pool-aarch64", + "product_id": 1875, + "repository_id": 2182, + "parent_product_id": null, + "root_product_id": 1875, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/12/aarch64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Manager-Tools12-Debuginfo-Pool for aarch64 SP5", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sles12-sp5-updates-aarch64", + "parent_channel_label": "sles12-sp5-pool-aarch64", + "product_id": 1875, + "repository_id": 3636, + "parent_product_id": null, + "root_product_id": 1875, + "update_tag": "SLE-SERVER", + "url": "https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-SP5/aarch64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLES12-SP5-Updates for aarch64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles12-sp5-debuginfo-updates-aarch64", + "parent_channel_label": "sles12-sp5-pool-aarch64", + "product_id": 1875, + "repository_id": 3638, + "parent_product_id": null, + "root_product_id": 1875, + "update_tag": "SLE-SERVER", + "url": "https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-SP5/aarch64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLES12-SP5-Debuginfo-Updates for aarch64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles12-sp5-installer-updates-aarch64", + "parent_channel_label": "sles12-sp5-pool-aarch64", + "product_id": 1875, + "repository_id": 3639, + "parent_product_id": null, + "root_product_id": 1875, + "update_tag": "SLE-SERVER-INSTALLER", + "url": "https://updates.suse.com/SUSE/Updates/SLE-SERVER-INSTALLER/12-SP5/aarch64/update/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLES12-SP5-Installer-Updates for aarch64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles12-sp5-pool-aarch64", + "parent_channel_label": null, + "product_id": 1875, + "repository_id": 3641, + "parent_product_id": null, + "root_product_id": 1875, + "update_tag": "SLE-SERVER", + "url": "https://updates.suse.com/SUSE/Products/SLE-SERVER/12-SP5/aarch64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLES12-SP5-Pool for aarch64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles12-sp5-debuginfo-pool-aarch64", + "parent_channel_label": "sles12-sp5-pool-aarch64", + "product_id": 1875, + "repository_id": 3643, + "parent_product_id": null, + "root_product_id": 1875, + "update_tag": "SLE-SERVER", + "url": "https://updates.suse.com/SUSE/Products/SLE-SERVER/12-SP5/aarch64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLES12-SP5-Debuginfo-Pool for aarch64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-toolchain12-updates-aarch64-sp5", + "parent_channel_label": "sles12-sp5-pool-aarch64", + "product_id": 1376, + "repository_id": 2086, + "parent_product_id": 1875, + "root_product_id": 1875, + "update_tag": "SLE-Module-Toolchain", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Toolchain/12/aarch64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Toolchain12-Updates for aarch64 SP5", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-toolchain12-debuginfo-updates-aarch64-sp5", + "parent_channel_label": "sles12-sp5-pool-aarch64", + "product_id": 1376, + "repository_id": 2087, + "parent_product_id": 1875, + "root_product_id": 1875, + "update_tag": "SLE-Module-Toolchain", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Toolchain/12/aarch64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Toolchain12-Debuginfo-Updates for aarch64 SP5", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-toolchain12-pool-aarch64-sp5", + "parent_channel_label": "sles12-sp5-pool-aarch64", + "product_id": 1376, + "repository_id": 2088, + "parent_product_id": 1875, + "root_product_id": 1875, + "update_tag": "SLE-Module-Toolchain", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Toolchain/12/aarch64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Toolchain12-Pool for aarch64 SP5", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-toolchain12-debuginfo-pool-aarch64-sp5", + "parent_channel_label": "sles12-sp5-pool-aarch64", + "product_id": 1376, + "repository_id": 2089, + "parent_product_id": 1875, + "root_product_id": 1875, + "update_tag": "SLE-Module-Toolchain", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Toolchain/12/aarch64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Toolchain12-Debuginfo-Pool for aarch64 SP5", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-hpc12-updates-aarch64-sp5", + "parent_channel_label": "sles12-sp5-pool-aarch64", + "product_id": 1522, + "repository_id": 2421, + "parent_product_id": 1875, + "root_product_id": 1875, + "update_tag": "SLE-Module-HPC", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-HPC/12/aarch64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-HPC12-Updates for aarch64 SP5", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-hpc12-debuginfo-updates-aarch64-sp5", + "parent_channel_label": "sles12-sp5-pool-aarch64", + "product_id": 1522, + "repository_id": 2422, + "parent_product_id": 1875, + "root_product_id": 1875, + "update_tag": "SLE-Module-HPC", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-HPC/12/aarch64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-HPC12-Debuginfo-Updates for aarch64 SP5", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-hpc12-pool-aarch64-sp5", + "parent_channel_label": "sles12-sp5-pool-aarch64", + "product_id": 1522, + "repository_id": 2423, + "parent_product_id": 1875, + "root_product_id": 1875, + "update_tag": "SLE-Module-HPC", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-HPC/12/aarch64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-HPC12-Pool for aarch64 SP5", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-hpc12-debuginfo-pool-aarch64-sp5", + "parent_channel_label": "sles12-sp5-pool-aarch64", + "product_id": 1522, + "repository_id": 2424, + "parent_product_id": 1875, + "root_product_id": 1875, + "update_tag": "SLE-Module-HPC", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-HPC/12/aarch64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-HPC12-Debuginfo-Pool for aarch64 SP5", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud12-updates-aarch64-sp5", + "parent_channel_label": "sles12-sp5-pool-aarch64", + "product_id": 1528, + "repository_id": 2157, + "parent_product_id": 1875, + "root_product_id": 1875, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/12/aarch64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud12-Updates for aarch64 SP5", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud12-debuginfo-updates-aarch64-sp5", + "parent_channel_label": "sles12-sp5-pool-aarch64", + "product_id": 1528, + "repository_id": 2158, + "parent_product_id": 1875, + "root_product_id": 1875, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/12/aarch64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud12-Debuginfo-Updates for aarch64 SP5", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud12-pool-aarch64-sp5", + "parent_channel_label": "sles12-sp5-pool-aarch64", + "product_id": 1528, + "repository_id": 2159, + "parent_product_id": 1875, + "root_product_id": 1875, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/12/aarch64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud12-Pool for aarch64 SP5", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud12-debuginfo-pool-aarch64-sp5", + "parent_channel_label": "sles12-sp5-pool-aarch64", + "product_id": 1528, + "repository_id": 2160, + "parent_product_id": 1875, + "root_product_id": 1875, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/12/aarch64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud12-Debuginfo-Pool for aarch64 SP5", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting12-updates-aarch64-sp5", + "parent_channel_label": "sles12-sp5-pool-aarch64", + "product_id": 1539, + "repository_id": 2476, + "parent_product_id": 1875, + "root_product_id": 1875, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/12/aarch64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Web-Scripting12-Updates for aarch64 SP5", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting12-debuginfo-updates-aarch64-sp5", + "parent_channel_label": "sles12-sp5-pool-aarch64", + "product_id": 1539, + "repository_id": 2477, + "parent_product_id": 1875, + "root_product_id": 1875, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/12/aarch64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Web-Scripting12-Debuginfo-Updates for aarch64 SP5", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting12-pool-aarch64-sp5", + "parent_channel_label": "sles12-sp5-pool-aarch64", + "product_id": 1539, + "repository_id": 2478, + "parent_product_id": 1875, + "root_product_id": 1875, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/12/aarch64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Web-Scripting12-Pool for aarch64 SP5", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting12-debuginfo-pool-aarch64-sp5", + "parent_channel_label": "sles12-sp5-pool-aarch64", + "product_id": 1539, + "repository_id": 2479, + "parent_product_id": 1875, + "root_product_id": 1875, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/12/aarch64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Web-Scripting12-Debuginfo-Pool for aarch64 SP5", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-manager-tools12-beta-updates-aarch64-sp5", + "parent_channel_label": "sles12-sp5-pool-aarch64", + "product_id": 1744, + "repository_id": 3062, + "parent_product_id": 1875, + "root_product_id": 1875, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/12-BETA/aarch64/update/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools12-BETA-Updates for aarch64 SP5", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools12-beta-debuginfo-updates-aarch64-sp5", + "parent_channel_label": "sles12-sp5-pool-aarch64", + "product_id": 1744, + "repository_id": 3063, + "parent_product_id": 1875, + "root_product_id": 1875, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/12-BETA/aarch64/update_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools12-BETA-Debuginfo-Updates for aarch64 SP5", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools12-beta-pool-aarch64-sp5", + "parent_channel_label": "sles12-sp5-pool-aarch64", + "product_id": 1744, + "repository_id": 3064, + "parent_product_id": 1875, + "root_product_id": 1875, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/12-BETA/aarch64/product/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools12-BETA-Pool for aarch64 SP5", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools12-beta-debuginfo-pool-aarch64-sp5", + "parent_channel_label": "sles12-sp5-pool-aarch64", + "product_id": 1744, + "repository_id": 3065, + "parent_product_id": 1875, + "root_product_id": 1875, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/12-BETA/aarch64/product_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools12-BETA-Debuginfo-Pool for aarch64 SP5", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-sdk12-sp5-updates-aarch64", + "parent_channel_label": "sles12-sp5-pool-aarch64", + "product_id": 1889, + "repository_id": 3724, + "parent_product_id": 1875, + "root_product_id": 1875, + "update_tag": "SLE-SDK", + "url": "https://updates.suse.com/SUSE/Updates/SLE-SDK/12-SP5/aarch64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-SDK12-SP5-Updates for aarch64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-sdk12-sp5-debuginfo-updates-aarch64", + "parent_channel_label": "sles12-sp5-pool-aarch64", + "product_id": 1889, + "repository_id": 3725, + "parent_product_id": 1875, + "root_product_id": 1875, + "update_tag": "SLE-SDK", + "url": "https://updates.suse.com/SUSE/Updates/SLE-SDK/12-SP5/aarch64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-SDK12-SP5-Debuginfo-Updates for aarch64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-sdk12-sp5-pool-aarch64", + "parent_channel_label": "sles12-sp5-pool-aarch64", + "product_id": 1889, + "repository_id": 3726, + "parent_product_id": 1875, + "root_product_id": 1875, + "update_tag": "SLE-SDK", + "url": "https://updates.suse.com/SUSE/Products/SLE-SDK/12-SP5/aarch64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-SDK12-SP5-Pool for aarch64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-sdk12-sp5-debuginfo-pool-aarch64", + "parent_channel_label": "sles12-sp5-pool-aarch64", + "product_id": 1889, + "repository_id": 3727, + "parent_product_id": 1875, + "root_product_id": 1875, + "update_tag": "SLE-SDK", + "url": "https://updates.suse.com/SUSE/Products/SLE-SDK/12-SP5/aarch64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-SDK12-SP5-Debuginfo-Pool for aarch64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-packagehub-12-sp5-standard-pool-aarch64", + "parent_channel_label": "sles12-sp5-pool-aarch64", + "product_id": 1912, + "repository_id": 3855, + "parent_product_id": 1875, + "root_product_id": 1875, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-12-SP5_aarch64/standard/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-12-SP5-Standard-Pool for aarch64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-packagehub-12-sp5-debuginfo-aarch64", + "parent_channel_label": "sles12-sp5-pool-aarch64", + "product_id": 1912, + "repository_id": 3856, + "parent_product_id": 1875, + "root_product_id": 1875, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-12-SP5_aarch64/standard_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-12-SP5-Debuginfo for aarch64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-packagehub-12-sp5-pool-aarch64", + "parent_channel_label": "sles12-sp5-pool-aarch64", + "product_id": 1912, + "repository_id": 3857, + "parent_product_id": 1875, + "root_product_id": 1875, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-12-SP5_aarch64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-12-SP5-Pool for aarch64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-manager-tools12-updates-ppc64le-sp5", + "parent_channel_label": "sles12-sp5-pool-ppc64le", + "product_id": 1876, + "repository_id": 1724, + "parent_product_id": null, + "root_product_id": 1876, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/12/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Manager-Tools12-Updates for ppc64le SP5", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools12-debuginfo-updates-ppc64le-sp5", + "parent_channel_label": "sles12-sp5-pool-ppc64le", + "product_id": 1876, + "repository_id": 1725, + "parent_product_id": null, + "root_product_id": 1876, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/12/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Manager-Tools12-Debuginfo-Updates for ppc64le SP5", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools12-pool-ppc64le-sp5", + "parent_channel_label": "sles12-sp5-pool-ppc64le", + "product_id": 1876, + "repository_id": 1726, + "parent_product_id": null, + "root_product_id": 1876, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/12/ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Manager-Tools12-Pool for ppc64le SP5", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools12-debuginfo-pool-ppc64le-sp5", + "parent_channel_label": "sles12-sp5-pool-ppc64le", + "product_id": 1876, + "repository_id": 1727, + "parent_product_id": null, + "root_product_id": 1876, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/12/ppc64le/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Manager-Tools12-Debuginfo-Pool for ppc64le SP5", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sles12-sp5-updates-ppc64le", + "parent_channel_label": "sles12-sp5-pool-ppc64le", + "product_id": 1876, + "repository_id": 3664, + "parent_product_id": null, + "root_product_id": 1876, + "update_tag": "SLE-SERVER", + "url": "https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-SP5/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLES12-SP5-Updates for ppc64le", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles12-sp5-debuginfo-updates-ppc64le", + "parent_channel_label": "sles12-sp5-pool-ppc64le", + "product_id": 1876, + "repository_id": 3665, + "parent_product_id": null, + "root_product_id": 1876, + "update_tag": "SLE-SERVER", + "url": "https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-SP5/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLES12-SP5-Debuginfo-Updates for ppc64le", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles12-sp5-installer-updates-ppc64le", + "parent_channel_label": "sles12-sp5-pool-ppc64le", + "product_id": 1876, + "repository_id": 3666, + "parent_product_id": null, + "root_product_id": 1876, + "update_tag": "SLE-SERVER-INSTALLER", + "url": "https://updates.suse.com/SUSE/Updates/SLE-SERVER-INSTALLER/12-SP5/ppc64le/update/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLES12-SP5-Installer-Updates for ppc64le", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles12-sp5-pool-ppc64le", + "parent_channel_label": null, + "product_id": 1876, + "repository_id": 3667, + "parent_product_id": null, + "root_product_id": 1876, + "update_tag": "SLE-SERVER", + "url": "https://updates.suse.com/SUSE/Products/SLE-SERVER/12-SP5/ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLES12-SP5-Pool for ppc64le", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles12-sp5-debuginfo-pool-ppc64le", + "parent_channel_label": "sles12-sp5-pool-ppc64le", + "product_id": 1876, + "repository_id": 3668, + "parent_product_id": null, + "root_product_id": 1876, + "update_tag": "SLE-SERVER", + "url": "https://updates.suse.com/SUSE/Products/SLE-SERVER/12-SP5/ppc64le/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLES12-SP5-Debuginfo-Pool for ppc64le", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-legacy12-updates-ppc64le-sp5", + "parent_channel_label": "sles12-sp5-pool-ppc64le", + "product_id": 1148, + "repository_id": 1668, + "parent_product_id": 1876, + "root_product_id": 1876, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/12/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy12-Updates for ppc64le SP5", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-legacy12-debuginfo-updates-ppc64le-sp5", + "parent_channel_label": "sles12-sp5-pool-ppc64le", + "product_id": 1148, + "repository_id": 1669, + "parent_product_id": 1876, + "root_product_id": 1876, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/12/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy12-Debuginfo-Updates for ppc64le SP5", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-legacy12-pool-ppc64le-sp5", + "parent_channel_label": "sles12-sp5-pool-ppc64le", + "product_id": 1148, + "repository_id": 1670, + "parent_product_id": 1876, + "root_product_id": 1876, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/12/ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy12-Pool for ppc64le SP5", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-legacy12-debuginfo-pool-ppc64le-sp5", + "parent_channel_label": "sles12-sp5-pool-ppc64le", + "product_id": 1148, + "repository_id": 1671, + "parent_product_id": 1876, + "root_product_id": 1876, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/12/ppc64le/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy12-Debuginfo-Pool for ppc64le SP5", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting12-updates-ppc64le-sp5", + "parent_channel_label": "sles12-sp5-pool-ppc64le", + "product_id": 1151, + "repository_id": 1680, + "parent_product_id": 1876, + "root_product_id": 1876, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/12/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Web-Scripting12-Updates for ppc64le SP5", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting12-debuginfo-updates-ppc64le-sp5", + "parent_channel_label": "sles12-sp5-pool-ppc64le", + "product_id": 1151, + "repository_id": 1681, + "parent_product_id": 1876, + "root_product_id": 1876, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/12/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Web-Scripting12-Debuginfo-Updates for ppc64le SP5", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting12-pool-ppc64le-sp5", + "parent_channel_label": "sles12-sp5-pool-ppc64le", + "product_id": 1151, + "repository_id": 1682, + "parent_product_id": 1876, + "root_product_id": 1876, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/12/ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Web-Scripting12-Pool for ppc64le SP5", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting12-debuginfo-pool-ppc64le-sp5", + "parent_channel_label": "sles12-sp5-pool-ppc64le", + "product_id": 1151, + "repository_id": 1683, + "parent_product_id": 1876, + "root_product_id": 1876, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/12/ppc64le/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Web-Scripting12-Debuginfo-Pool for ppc64le SP5", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud12-updates-ppc64le-sp5", + "parent_channel_label": "sles12-sp5-pool-ppc64le", + "product_id": 1218, + "repository_id": 1692, + "parent_product_id": 1876, + "root_product_id": 1876, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/12/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud12-Updates for ppc64le SP5", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud12-debuginfo-updates-ppc64le-sp5", + "parent_channel_label": "sles12-sp5-pool-ppc64le", + "product_id": 1218, + "repository_id": 1693, + "parent_product_id": 1876, + "root_product_id": 1876, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/12/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud12-Debuginfo-Updates for ppc64le SP5", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud12-pool-ppc64le-sp5", + "parent_channel_label": "sles12-sp5-pool-ppc64le", + "product_id": 1218, + "repository_id": 1694, + "parent_product_id": 1876, + "root_product_id": 1876, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/12/ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud12-Pool for ppc64le SP5", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud12-debuginfo-pool-ppc64le-sp5", + "parent_channel_label": "sles12-sp5-pool-ppc64le", + "product_id": 1218, + "repository_id": 1695, + "parent_product_id": 1876, + "root_product_id": 1876, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/12/ppc64le/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud12-Debuginfo-Pool for ppc64le SP5", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "ibm-dlpar-adv-toolchain-sp5", + "parent_channel_label": "sles12-sp5-pool-ppc64le", + "product_id": 1249, + "repository_id": 4429, + "parent_product_id": 1876, + "root_product_id": 1876, + "update_tag": null, + "url": "https://public.dhe.ibm.com/software/server/POWER/Linux/toolchain/at/suse/SLES_12/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "IBM-DLPAR-Adv-Toolchain for ppc64le SP5", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "ibm-dlpar-utils-sp5", + "parent_channel_label": "sles12-sp5-pool-ppc64le", + "product_id": 1250, + "repository_id": 6216, + "parent_product_id": 1876, + "root_product_id": 1876, + "update_tag": null, + "url": "https://public.dhe.ibm.com/software/server/POWER/Linux/yum/OSS/SLES/12/ppc64le/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "IBM-DLPAR-utils for ppc64le SP5", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-adv-systems-management12-updates-ppc64le-sp5", + "parent_channel_label": "sles12-sp5-pool-ppc64le", + "product_id": 1294, + "repository_id": 1762, + "parent_product_id": 1876, + "root_product_id": 1876, + "update_tag": "SLE-Module-Adv-Systems-Management", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Adv-Systems-Management/12/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Adv-Systems-Management12-Updates for ppc64le SP5", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-adv-systems-management12-debuginfo-updates-ppc64le-sp5", + "parent_channel_label": "sles12-sp5-pool-ppc64le", + "product_id": 1294, + "repository_id": 1763, + "parent_product_id": 1876, + "root_product_id": 1876, + "update_tag": "SLE-Module-Adv-Systems-Management", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Adv-Systems-Management/12/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Adv-Systems-Management12-Debuginfo-Updates for ppc64le SP5", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-adv-systems-management12-pool-ppc64le-sp5", + "parent_channel_label": "sles12-sp5-pool-ppc64le", + "product_id": 1294, + "repository_id": 1764, + "parent_product_id": 1876, + "root_product_id": 1876, + "update_tag": "SLE-Module-Adv-Systems-Management", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Adv-Systems-Management/12/ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Adv-Systems-Management12-Pool for ppc64le SP5", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-adv-systems-management12-debuginfo-pool-ppc64le-sp5", + "parent_channel_label": "sles12-sp5-pool-ppc64le", + "product_id": 1294, + "repository_id": 1765, + "parent_product_id": 1876, + "root_product_id": 1876, + "update_tag": "SLE-Module-Adv-Systems-Management", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Adv-Systems-Management/12/ppc64le/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Adv-Systems-Management12-Debuginfo-Pool for ppc64le SP5", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-toolchain12-updates-ppc64le-sp5", + "parent_channel_label": "sles12-sp5-pool-ppc64le", + "product_id": 1339, + "repository_id": 1895, + "parent_product_id": 1876, + "root_product_id": 1876, + "update_tag": "SLE-Module-Toolchain", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Toolchain/12/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Toolchain12-Updates for ppc64le SP5", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-toolchain12-debuginfo-updates-ppc64le-sp5", + "parent_channel_label": "sles12-sp5-pool-ppc64le", + "product_id": 1339, + "repository_id": 1896, + "parent_product_id": 1876, + "root_product_id": 1876, + "update_tag": "SLE-Module-Toolchain", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Toolchain/12/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Toolchain12-Debuginfo-Updates for ppc64le SP5", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-toolchain12-pool-ppc64le-sp5", + "parent_channel_label": "sles12-sp5-pool-ppc64le", + "product_id": 1339, + "repository_id": 1897, + "parent_product_id": 1876, + "root_product_id": 1876, + "update_tag": "SLE-Module-Toolchain", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Toolchain/12/ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Toolchain12-Pool for ppc64le SP5", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-toolchain12-debuginfo-pool-ppc64le-sp5", + "parent_channel_label": "sles12-sp5-pool-ppc64le", + "product_id": 1339, + "repository_id": 1898, + "parent_product_id": 1876, + "root_product_id": 1876, + "update_tag": "SLE-Module-Toolchain", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Toolchain/12/ppc64le/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Toolchain12-Debuginfo-Pool for ppc64le SP5", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-containers12-updates-ppc64le-sp5", + "parent_channel_label": "sles12-sp5-pool-ppc64le", + "product_id": 1353, + "repository_id": 1972, + "parent_product_id": 1876, + "root_product_id": 1876, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/12/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers12-Updates for ppc64le SP5", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-containers12-debuginfo-updates-ppc64le-sp5", + "parent_channel_label": "sles12-sp5-pool-ppc64le", + "product_id": 1353, + "repository_id": 1973, + "parent_product_id": 1876, + "root_product_id": 1876, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/12/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers12-Debuginfo-Updates for ppc64le SP5", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-containers12-pool-ppc64le-sp5", + "parent_channel_label": "sles12-sp5-pool-ppc64le", + "product_id": 1353, + "repository_id": 1974, + "parent_product_id": 1876, + "root_product_id": 1876, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Containers/12/ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers12-Pool for ppc64le SP5", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-containers12-debuginfo-pool-ppc64le-sp5", + "parent_channel_label": "sles12-sp5-pool-ppc64le", + "product_id": 1353, + "repository_id": 1975, + "parent_product_id": 1876, + "root_product_id": 1876, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Containers/12/ppc64le/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers12-Debuginfo-Pool for ppc64le SP5", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-manager-tools12-beta-updates-ppc64le-sp5", + "parent_channel_label": "sles12-sp5-pool-ppc64le", + "product_id": 1745, + "repository_id": 3067, + "parent_product_id": 1876, + "root_product_id": 1876, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/12-BETA/ppc64le/update/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools12-BETA-Updates for ppc64le SP5", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools12-beta-debuginfo-updates-ppc64le-sp5", + "parent_channel_label": "sles12-sp5-pool-ppc64le", + "product_id": 1745, + "repository_id": 3068, + "parent_product_id": 1876, + "root_product_id": 1876, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/12-BETA/ppc64le/update_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools12-BETA-Debuginfo-Updates for ppc64le SP5", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools12-beta-pool-ppc64le-sp5", + "parent_channel_label": "sles12-sp5-pool-ppc64le", + "product_id": 1745, + "repository_id": 3069, + "parent_product_id": 1876, + "root_product_id": 1876, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/12-BETA/ppc64le/product/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools12-BETA-Pool for ppc64le SP5", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools12-beta-debuginfo-pool-ppc64le-sp5", + "parent_channel_label": "sles12-sp5-pool-ppc64le", + "product_id": 1745, + "repository_id": 3070, + "parent_product_id": 1876, + "root_product_id": 1876, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/12-BETA/ppc64le/product_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools12-BETA-Debuginfo-Pool for ppc64le SP5", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-ha12-sp5-updates-ppc64le", + "parent_channel_label": "sles12-sp5-pool-ppc64le", + "product_id": 1882, + "repository_id": 3677, + "parent_product_id": 1876, + "root_product_id": 1876, + "update_tag": "SLE-HA", + "url": "https://updates.suse.com/SUSE/Updates/SLE-HA/12-SP5/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-HA12-SP5-Updates for ppc64le", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-ha12-sp5-debuginfo-updates-ppc64le", + "parent_channel_label": "sles12-sp5-pool-ppc64le", + "product_id": 1882, + "repository_id": 3679, + "parent_product_id": 1876, + "root_product_id": 1876, + "update_tag": "SLE-HA", + "url": "https://updates.suse.com/SUSE/Updates/SLE-HA/12-SP5/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-HA12-SP5-Debuginfo-Updates for ppc64le", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-ha12-sp5-pool-ppc64le", + "parent_channel_label": "sles12-sp5-pool-ppc64le", + "product_id": 1882, + "repository_id": 3681, + "parent_product_id": 1876, + "root_product_id": 1876, + "update_tag": "SLE-HA", + "url": "https://updates.suse.com/SUSE/Products/SLE-HA/12-SP5/ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-HA12-SP5-Pool for ppc64le", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-ha12-sp5-debuginfo-pool-ppc64le", + "parent_channel_label": "sles12-sp5-pool-ppc64le", + "product_id": 1882, + "repository_id": 3683, + "parent_product_id": 1876, + "root_product_id": 1876, + "update_tag": "SLE-HA", + "url": "https://updates.suse.com/SUSE/Products/SLE-HA/12-SP5/ppc64le/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-HA12-SP5-Debuginfo-Pool for ppc64le", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-live-patching12-sp5-updates-ppc64le", + "parent_channel_label": "sles12-sp5-pool-ppc64le", + "product_id": 1887, + "repository_id": 3716, + "parent_product_id": 1876, + "root_product_id": 1876, + "update_tag": "SLE-Live-Patching", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Live-Patching/12-SP5/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Live-Patching12-SP5-Updates for ppc64le", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-live-patching12-sp5-debuginfo-updates-ppc64le", + "parent_channel_label": "sles12-sp5-pool-ppc64le", + "product_id": 1887, + "repository_id": 3717, + "parent_product_id": 1876, + "root_product_id": 1876, + "update_tag": "SLE-Live-Patching", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Live-Patching/12-SP5/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Live-Patching12-SP5-Debuginfo-Updates for ppc64le", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-live-patching12-sp5-pool-ppc64le", + "parent_channel_label": "sles12-sp5-pool-ppc64le", + "product_id": 1887, + "repository_id": 3718, + "parent_product_id": 1876, + "root_product_id": 1876, + "update_tag": "SLE-Live-Patching", + "url": "https://updates.suse.com/SUSE/Products/SLE-Live-Patching/12-SP5/ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Live-Patching12-SP5-Pool for ppc64le", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-live-patching12-sp5-debuginfo-pool-ppc64le", + "parent_channel_label": "sles12-sp5-pool-ppc64le", + "product_id": 1887, + "repository_id": 3719, + "parent_product_id": 1876, + "root_product_id": 1876, + "update_tag": "SLE-Live-Patching", + "url": "https://updates.suse.com/SUSE/Products/SLE-Live-Patching/12-SP5/ppc64le/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Live-Patching12-SP5-Debuginfo-Pool for ppc64le", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-sdk12-sp5-updates-ppc64le", + "parent_channel_label": "sles12-sp5-pool-ppc64le", + "product_id": 1890, + "repository_id": 3729, + "parent_product_id": 1876, + "root_product_id": 1876, + "update_tag": "SLE-SDK", + "url": "https://updates.suse.com/SUSE/Updates/SLE-SDK/12-SP5/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-SDK12-SP5-Updates for ppc64le", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-sdk12-sp5-debuginfo-updates-ppc64le", + "parent_channel_label": "sles12-sp5-pool-ppc64le", + "product_id": 1890, + "repository_id": 3730, + "parent_product_id": 1876, + "root_product_id": 1876, + "update_tag": "SLE-SDK", + "url": "https://updates.suse.com/SUSE/Updates/SLE-SDK/12-SP5/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-SDK12-SP5-Debuginfo-Updates for ppc64le", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-sdk12-sp5-pool-ppc64le", + "parent_channel_label": "sles12-sp5-pool-ppc64le", + "product_id": 1890, + "repository_id": 3731, + "parent_product_id": 1876, + "root_product_id": 1876, + "update_tag": "SLE-SDK", + "url": "https://updates.suse.com/SUSE/Products/SLE-SDK/12-SP5/ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-SDK12-SP5-Pool for ppc64le", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-sdk12-sp5-debuginfo-pool-ppc64le", + "parent_channel_label": "sles12-sp5-pool-ppc64le", + "product_id": 1890, + "repository_id": 3732, + "parent_product_id": 1876, + "root_product_id": 1876, + "update_tag": "SLE-SDK", + "url": "https://updates.suse.com/SUSE/Products/SLE-SDK/12-SP5/ppc64le/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-SDK12-SP5-Debuginfo-Pool for ppc64le", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-packagehub-12-sp5-standard-pool-ppc64le", + "parent_channel_label": "sles12-sp5-pool-ppc64le", + "product_id": 1913, + "repository_id": 3858, + "parent_product_id": 1876, + "root_product_id": 1876, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-12-SP5_ppc64le/standard/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-12-SP5-Standard-Pool for ppc64le", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-packagehub-12-sp5-debuginfo-ppc64le", + "parent_channel_label": "sles12-sp5-pool-ppc64le", + "product_id": 1913, + "repository_id": 3859, + "parent_product_id": 1876, + "root_product_id": 1876, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-12-SP5_ppc64le/standard_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-12-SP5-Debuginfo for ppc64le", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-packagehub-12-sp5-pool-ppc64le", + "parent_channel_label": "sles12-sp5-pool-ppc64le", + "product_id": 1913, + "repository_id": 3860, + "parent_product_id": 1876, + "root_product_id": 1876, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-12-SP5_ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-12-SP5-Pool for ppc64le", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-manager-tools12-updates-s390x-sp5", + "parent_channel_label": "sles12-sp5-pool-s390x", + "product_id": 1877, + "repository_id": 1728, + "parent_product_id": null, + "root_product_id": 1877, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/12/s390x/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Manager-Tools12-Updates for s390x SP5", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools12-debuginfo-updates-s390x-sp5", + "parent_channel_label": "sles12-sp5-pool-s390x", + "product_id": 1877, + "repository_id": 1729, + "parent_product_id": null, + "root_product_id": 1877, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/12/s390x/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Manager-Tools12-Debuginfo-Updates for s390x SP5", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools12-pool-s390x-sp5", + "parent_channel_label": "sles12-sp5-pool-s390x", + "product_id": 1877, + "repository_id": 1730, + "parent_product_id": null, + "root_product_id": 1877, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/12/s390x/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Manager-Tools12-Pool for s390x SP5", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools12-debuginfo-pool-s390x-sp5", + "parent_channel_label": "sles12-sp5-pool-s390x", + "product_id": 1877, + "repository_id": 1731, + "parent_product_id": null, + "root_product_id": 1877, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/12/s390x/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Manager-Tools12-Debuginfo-Pool for s390x SP5", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sles12-sp5-updates-s390x", + "parent_channel_label": "sles12-sp5-pool-s390x", + "product_id": 1877, + "repository_id": 3670, + "parent_product_id": null, + "root_product_id": 1877, + "update_tag": "SLE-SERVER", + "url": "https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-SP5/s390x/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLES12-SP5-Updates for s390x", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles12-sp5-debuginfo-updates-s390x", + "parent_channel_label": "sles12-sp5-pool-s390x", + "product_id": 1877, + "repository_id": 3671, + "parent_product_id": null, + "root_product_id": 1877, + "update_tag": "SLE-SERVER", + "url": "https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-SP5/s390x/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLES12-SP5-Debuginfo-Updates for s390x", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles12-sp5-installer-updates-s390x", + "parent_channel_label": "sles12-sp5-pool-s390x", + "product_id": 1877, + "repository_id": 3672, + "parent_product_id": null, + "root_product_id": 1877, + "update_tag": "SLE-SERVER-INSTALLER", + "url": "https://updates.suse.com/SUSE/Updates/SLE-SERVER-INSTALLER/12-SP5/s390x/update/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLES12-SP5-Installer-Updates for s390x", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles12-sp5-pool-s390x", + "parent_channel_label": null, + "product_id": 1877, + "repository_id": 3673, + "parent_product_id": null, + "root_product_id": 1877, + "update_tag": "SLE-SERVER", + "url": "https://updates.suse.com/SUSE/Products/SLE-SERVER/12-SP5/s390x/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLES12-SP5-Pool for s390x", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles12-sp5-debuginfo-pool-s390x", + "parent_channel_label": "sles12-sp5-pool-s390x", + "product_id": 1877, + "repository_id": 3674, + "parent_product_id": null, + "root_product_id": 1877, + "update_tag": "SLE-SERVER", + "url": "https://updates.suse.com/SUSE/Products/SLE-SERVER/12-SP5/s390x/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLES12-SP5-Debuginfo-Pool for s390x", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-legacy12-updates-s390x-sp5", + "parent_channel_label": "sles12-sp5-pool-s390x", + "product_id": 1149, + "repository_id": 1672, + "parent_product_id": 1877, + "root_product_id": 1877, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/12/s390x/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy12-Updates for s390x SP5", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-legacy12-debuginfo-updates-s390x-sp5", + "parent_channel_label": "sles12-sp5-pool-s390x", + "product_id": 1149, + "repository_id": 1673, + "parent_product_id": 1877, + "root_product_id": 1877, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/12/s390x/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy12-Debuginfo-Updates for s390x SP5", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-legacy12-pool-s390x-sp5", + "parent_channel_label": "sles12-sp5-pool-s390x", + "product_id": 1149, + "repository_id": 1674, + "parent_product_id": 1877, + "root_product_id": 1877, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/12/s390x/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy12-Pool for s390x SP5", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-legacy12-debuginfo-pool-s390x-sp5", + "parent_channel_label": "sles12-sp5-pool-s390x", + "product_id": 1149, + "repository_id": 1675, + "parent_product_id": 1877, + "root_product_id": 1877, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/12/s390x/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy12-Debuginfo-Pool for s390x SP5", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting12-updates-s390x-sp5", + "parent_channel_label": "sles12-sp5-pool-s390x", + "product_id": 1152, + "repository_id": 1684, + "parent_product_id": 1877, + "root_product_id": 1877, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/12/s390x/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Web-Scripting12-Updates for s390x SP5", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting12-debuginfo-updates-s390x-sp5", + "parent_channel_label": "sles12-sp5-pool-s390x", + "product_id": 1152, + "repository_id": 1685, + "parent_product_id": 1877, + "root_product_id": 1877, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/12/s390x/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Web-Scripting12-Debuginfo-Updates for s390x SP5", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting12-pool-s390x-sp5", + "parent_channel_label": "sles12-sp5-pool-s390x", + "product_id": 1152, + "repository_id": 1686, + "parent_product_id": 1877, + "root_product_id": 1877, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/12/s390x/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Web-Scripting12-Pool for s390x SP5", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting12-debuginfo-pool-s390x-sp5", + "parent_channel_label": "sles12-sp5-pool-s390x", + "product_id": 1152, + "repository_id": 1687, + "parent_product_id": 1877, + "root_product_id": 1877, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/12/s390x/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Web-Scripting12-Debuginfo-Pool for s390x SP5", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud12-updates-s390x-sp5", + "parent_channel_label": "sles12-sp5-pool-s390x", + "product_id": 1219, + "repository_id": 1696, + "parent_product_id": 1877, + "root_product_id": 1877, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/12/s390x/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud12-Updates for s390x SP5", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud12-debuginfo-updates-s390x-sp5", + "parent_channel_label": "sles12-sp5-pool-s390x", + "product_id": 1219, + "repository_id": 1697, + "parent_product_id": 1877, + "root_product_id": 1877, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/12/s390x/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud12-Debuginfo-Updates for s390x SP5", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud12-pool-s390x-sp5", + "parent_channel_label": "sles12-sp5-pool-s390x", + "product_id": 1219, + "repository_id": 1698, + "parent_product_id": 1877, + "root_product_id": 1877, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/12/s390x/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud12-Pool for s390x SP5", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud12-debuginfo-pool-s390x-sp5", + "parent_channel_label": "sles12-sp5-pool-s390x", + "product_id": 1219, + "repository_id": 1699, + "parent_product_id": 1877, + "root_product_id": 1877, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/12/s390x/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud12-Debuginfo-Pool for s390x SP5", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-adv-systems-management12-updates-s390x-sp5", + "parent_channel_label": "sles12-sp5-pool-s390x", + "product_id": 1295, + "repository_id": 1766, + "parent_product_id": 1877, + "root_product_id": 1877, + "update_tag": "SLE-Module-Adv-Systems-Management", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Adv-Systems-Management/12/s390x/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Adv-Systems-Management12-Updates for s390x SP5", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-adv-systems-management12-debuginfo-updates-s390x-sp5", + "parent_channel_label": "sles12-sp5-pool-s390x", + "product_id": 1295, + "repository_id": 1767, + "parent_product_id": 1877, + "root_product_id": 1877, + "update_tag": "SLE-Module-Adv-Systems-Management", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Adv-Systems-Management/12/s390x/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Adv-Systems-Management12-Debuginfo-Updates for s390x SP5", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-adv-systems-management12-pool-s390x-sp5", + "parent_channel_label": "sles12-sp5-pool-s390x", + "product_id": 1295, + "repository_id": 1768, + "parent_product_id": 1877, + "root_product_id": 1877, + "update_tag": "SLE-Module-Adv-Systems-Management", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Adv-Systems-Management/12/s390x/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Adv-Systems-Management12-Pool for s390x SP5", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-adv-systems-management12-debuginfo-pool-s390x-sp5", + "parent_channel_label": "sles12-sp5-pool-s390x", + "product_id": 1295, + "repository_id": 1769, + "parent_product_id": 1877, + "root_product_id": 1877, + "update_tag": "SLE-Module-Adv-Systems-Management", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Adv-Systems-Management/12/s390x/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Adv-Systems-Management12-Debuginfo-Pool for s390x SP5", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-toolchain12-updates-s390x-sp5", + "parent_channel_label": "sles12-sp5-pool-s390x", + "product_id": 1340, + "repository_id": 1899, + "parent_product_id": 1877, + "root_product_id": 1877, + "update_tag": "SLE-Module-Toolchain", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Toolchain/12/s390x/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Toolchain12-Updates for s390x SP5", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-toolchain12-debuginfo-updates-s390x-sp5", + "parent_channel_label": "sles12-sp5-pool-s390x", + "product_id": 1340, + "repository_id": 1900, + "parent_product_id": 1877, + "root_product_id": 1877, + "update_tag": "SLE-Module-Toolchain", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Toolchain/12/s390x/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Toolchain12-Debuginfo-Updates for s390x SP5", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-toolchain12-pool-s390x-sp5", + "parent_channel_label": "sles12-sp5-pool-s390x", + "product_id": 1340, + "repository_id": 1901, + "parent_product_id": 1877, + "root_product_id": 1877, + "update_tag": "SLE-Module-Toolchain", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Toolchain/12/s390x/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Toolchain12-Pool for s390x SP5", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-toolchain12-debuginfo-pool-s390x-sp5", + "parent_channel_label": "sles12-sp5-pool-s390x", + "product_id": 1340, + "repository_id": 1902, + "parent_product_id": 1877, + "root_product_id": 1877, + "update_tag": "SLE-Module-Toolchain", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Toolchain/12/s390x/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Toolchain12-Debuginfo-Pool for s390x SP5", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-containers12-updates-s390x-sp5", + "parent_channel_label": "sles12-sp5-pool-s390x", + "product_id": 1354, + "repository_id": 1977, + "parent_product_id": 1877, + "root_product_id": 1877, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/12/s390x/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers12-Updates for s390x SP5", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-containers12-debuginfo-updates-s390x-sp5", + "parent_channel_label": "sles12-sp5-pool-s390x", + "product_id": 1354, + "repository_id": 1978, + "parent_product_id": 1877, + "root_product_id": 1877, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/12/s390x/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers12-Debuginfo-Updates for s390x SP5", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-containers12-pool-s390x-sp5", + "parent_channel_label": "sles12-sp5-pool-s390x", + "product_id": 1354, + "repository_id": 1979, + "parent_product_id": 1877, + "root_product_id": 1877, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Containers/12/s390x/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers12-Pool for s390x SP5", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-containers12-debuginfo-pool-s390x-sp5", + "parent_channel_label": "sles12-sp5-pool-s390x", + "product_id": 1354, + "repository_id": 1980, + "parent_product_id": 1877, + "root_product_id": 1877, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Containers/12/s390x/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers12-Debuginfo-Pool for s390x SP5", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-manager-tools12-beta-updates-s390x-sp5", + "parent_channel_label": "sles12-sp5-pool-s390x", + "product_id": 1746, + "repository_id": 3072, + "parent_product_id": 1877, + "root_product_id": 1877, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/12-BETA/s390x/update/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools12-BETA-Updates for s390x SP5", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools12-beta-debuginfo-updates-s390x-sp5", + "parent_channel_label": "sles12-sp5-pool-s390x", + "product_id": 1746, + "repository_id": 3073, + "parent_product_id": 1877, + "root_product_id": 1877, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/12-BETA/s390x/update_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools12-BETA-Debuginfo-Updates for s390x SP5", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools12-beta-pool-s390x-sp5", + "parent_channel_label": "sles12-sp5-pool-s390x", + "product_id": 1746, + "repository_id": 3074, + "parent_product_id": 1877, + "root_product_id": 1877, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/12-BETA/s390x/product/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools12-BETA-Pool for s390x SP5", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools12-beta-debuginfo-pool-s390x-sp5", + "parent_channel_label": "sles12-sp5-pool-s390x", + "product_id": 1746, + "repository_id": 3075, + "parent_product_id": 1877, + "root_product_id": 1877, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/12-BETA/s390x/product_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools12-BETA-Debuginfo-Pool for s390x SP5", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-ha12-sp5-updates-s390x", + "parent_channel_label": "sles12-sp5-pool-s390x", + "product_id": 1883, + "repository_id": 3701, + "parent_product_id": 1877, + "root_product_id": 1877, + "update_tag": "SLE-HA", + "url": "https://updates.suse.com/SUSE/Updates/SLE-HA/12-SP5/s390x/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-HA12-SP5-Updates for s390x", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-ha12-sp5-debuginfo-updates-s390x", + "parent_channel_label": "sles12-sp5-pool-s390x", + "product_id": 1883, + "repository_id": 3702, + "parent_product_id": 1877, + "root_product_id": 1877, + "update_tag": "SLE-HA", + "url": "https://updates.suse.com/SUSE/Updates/SLE-HA/12-SP5/s390x/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-HA12-SP5-Debuginfo-Updates for s390x", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-ha12-sp5-pool-s390x", + "parent_channel_label": "sles12-sp5-pool-s390x", + "product_id": 1883, + "repository_id": 3703, + "parent_product_id": 1877, + "root_product_id": 1877, + "update_tag": "SLE-HA", + "url": "https://updates.suse.com/SUSE/Products/SLE-HA/12-SP5/s390x/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-HA12-SP5-Pool for s390x", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-ha12-sp5-debuginfo-pool-s390x", + "parent_channel_label": "sles12-sp5-pool-s390x", + "product_id": 1883, + "repository_id": 3704, + "parent_product_id": 1877, + "root_product_id": 1877, + "update_tag": "SLE-HA", + "url": "https://updates.suse.com/SUSE/Products/SLE-HA/12-SP5/s390x/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-HA12-SP5-Debuginfo-Pool for s390x", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-ha-geo12-sp5-updates-s390x", + "parent_channel_label": "sles12-sp5-pool-s390x", + "product_id": 1885, + "repository_id": 3706, + "parent_product_id": 1883, + "root_product_id": 1877, + "update_tag": "SLE-HA-GEO", + "url": "https://updates.suse.com/SUSE/Updates/SLE-HA-GEO/12-SP5/s390x/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-HA-GEO12-SP5-Updates for s390x", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-ha-geo12-sp5-debuginfo-updates-s390x", + "parent_channel_label": "sles12-sp5-pool-s390x", + "product_id": 1885, + "repository_id": 3707, + "parent_product_id": 1883, + "root_product_id": 1877, + "update_tag": "SLE-HA-GEO", + "url": "https://updates.suse.com/SUSE/Updates/SLE-HA-GEO/12-SP5/s390x/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-HA-GEO12-SP5-Debuginfo-Updates for s390x", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-ha-geo12-sp5-pool-s390x", + "parent_channel_label": "sles12-sp5-pool-s390x", + "product_id": 1885, + "repository_id": 3708, + "parent_product_id": 1883, + "root_product_id": 1877, + "update_tag": "SLE-HA-GEO", + "url": "https://updates.suse.com/SUSE/Products/SLE-HA-GEO/12-SP5/s390x/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-HA-GEO12-SP5-Pool for s390x", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-ha-geo12-sp5-debuginfo-pool-s390x", + "parent_channel_label": "sles12-sp5-pool-s390x", + "product_id": 1885, + "repository_id": 3709, + "parent_product_id": 1883, + "root_product_id": 1877, + "update_tag": "SLE-HA-GEO", + "url": "https://updates.suse.com/SUSE/Products/SLE-HA-GEO/12-SP5/s390x/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-HA-GEO12-SP5-Debuginfo-Pool for s390x", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-sdk12-sp5-updates-s390x", + "parent_channel_label": "sles12-sp5-pool-s390x", + "product_id": 1891, + "repository_id": 3734, + "parent_product_id": 1877, + "root_product_id": 1877, + "update_tag": "SLE-SDK", + "url": "https://updates.suse.com/SUSE/Updates/SLE-SDK/12-SP5/s390x/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-SDK12-SP5-Updates for s390x", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-sdk12-sp5-debuginfo-updates-s390x", + "parent_channel_label": "sles12-sp5-pool-s390x", + "product_id": 1891, + "repository_id": 3735, + "parent_product_id": 1877, + "root_product_id": 1877, + "update_tag": "SLE-SDK", + "url": "https://updates.suse.com/SUSE/Updates/SLE-SDK/12-SP5/s390x/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-SDK12-SP5-Debuginfo-Updates for s390x", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-sdk12-sp5-pool-s390x", + "parent_channel_label": "sles12-sp5-pool-s390x", + "product_id": 1891, + "repository_id": 3736, + "parent_product_id": 1877, + "root_product_id": 1877, + "update_tag": "SLE-SDK", + "url": "https://updates.suse.com/SUSE/Products/SLE-SDK/12-SP5/s390x/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-SDK12-SP5-Pool for s390x", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-sdk12-sp5-debuginfo-pool-s390x", + "parent_channel_label": "sles12-sp5-pool-s390x", + "product_id": 1891, + "repository_id": 3737, + "parent_product_id": 1877, + "root_product_id": 1877, + "update_tag": "SLE-SDK", + "url": "https://updates.suse.com/SUSE/Products/SLE-SDK/12-SP5/s390x/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-SDK12-SP5-Debuginfo-Pool for s390x", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-packagehub-12-sp5-standard-pool-s390x", + "parent_channel_label": "sles12-sp5-pool-s390x", + "product_id": 1914, + "repository_id": 3861, + "parent_product_id": 1877, + "root_product_id": 1877, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-12-SP5_s390x/standard/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-12-SP5-Standard-Pool for s390x", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-packagehub-12-sp5-debuginfo-s390x", + "parent_channel_label": "sles12-sp5-pool-s390x", + "product_id": 1914, + "repository_id": 3862, + "parent_product_id": 1877, + "root_product_id": 1877, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-12-SP5_s390x/standard_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-12-SP5-Debuginfo for s390x", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-packagehub-12-sp5-pool-s390x", + "parent_channel_label": "sles12-sp5-pool-s390x", + "product_id": 1914, + "repository_id": 3863, + "parent_product_id": 1877, + "root_product_id": 1877, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-12-SP5_s390x/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-12-SP5-Pool for s390x", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-live-patching12-sp5-updates-s390x", + "parent_channel_label": "sles12-sp5-pool-s390x", + "product_id": 2080, + "repository_id": 4441, + "parent_product_id": 1877, + "root_product_id": 1877, + "update_tag": "SLE-Live-Patching", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Live-Patching/12-SP5/s390x/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Live-Patching12-SP5-Updates for s390x", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-live-patching12-sp5-debuginfo-updates-s390x", + "parent_channel_label": "sles12-sp5-pool-s390x", + "product_id": 2080, + "repository_id": 4442, + "parent_product_id": 1877, + "root_product_id": 1877, + "update_tag": "SLE-Live-Patching", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Live-Patching/12-SP5/s390x/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Live-Patching12-SP5-Debuginfo-Updates for s390x", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-live-patching12-sp5-pool-s390x", + "parent_channel_label": "sles12-sp5-pool-s390x", + "product_id": 2080, + "repository_id": 4443, + "parent_product_id": 1877, + "root_product_id": 1877, + "update_tag": "SLE-Live-Patching", + "url": "https://updates.suse.com/SUSE/Products/SLE-Live-Patching/12-SP5/s390x/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Live-Patching12-SP5-Pool for s390x", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-live-patching12-sp5-debuginfo-pool-s390x", + "parent_channel_label": "sles12-sp5-pool-s390x", + "product_id": 2080, + "repository_id": 4444, + "parent_product_id": 1877, + "root_product_id": 1877, + "update_tag": "SLE-Live-Patching", + "url": "https://updates.suse.com/SUSE/Products/SLE-Live-Patching/12-SP5/s390x/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Live-Patching12-SP5-Debuginfo-Pool for s390x", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-manager-tools12-updates-x86_64-sp5", + "parent_channel_label": "sles12-sp5-pool-x86_64", + "product_id": 1878, + "repository_id": 1732, + "parent_product_id": null, + "root_product_id": 1878, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/12/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Manager-Tools12-Updates for x86_64 SP5", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools12-debuginfo-updates-x86_64-sp5", + "parent_channel_label": "sles12-sp5-pool-x86_64", + "product_id": 1878, + "repository_id": 1733, + "parent_product_id": null, + "root_product_id": 1878, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/12/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Manager-Tools12-Debuginfo-Updates for x86_64 SP5", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools12-pool-x86_64-sp5", + "parent_channel_label": "sles12-sp5-pool-x86_64", + "product_id": 1878, + "repository_id": 1734, + "parent_product_id": null, + "root_product_id": 1878, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/12/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Manager-Tools12-Pool for x86_64 SP5", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools12-debuginfo-pool-x86_64-sp5", + "parent_channel_label": "sles12-sp5-pool-x86_64", + "product_id": 1878, + "repository_id": 1735, + "parent_product_id": null, + "root_product_id": 1878, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/12/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Manager-Tools12-Debuginfo-Pool for x86_64 SP5", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sles12-sp5-updates-x86_64", + "parent_channel_label": "sles12-sp5-pool-x86_64", + "product_id": 1878, + "repository_id": 3647, + "parent_product_id": null, + "root_product_id": 1878, + "update_tag": "SLE-SERVER", + "url": "https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-SP5/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLES12-SP5-Updates for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles12-sp5-debuginfo-updates-x86_64", + "parent_channel_label": "sles12-sp5-pool-x86_64", + "product_id": 1878, + "repository_id": 3649, + "parent_product_id": null, + "root_product_id": 1878, + "update_tag": "SLE-SERVER", + "url": "https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-SP5/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLES12-SP5-Debuginfo-Updates for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles12-sp5-installer-updates-x86_64", + "parent_channel_label": "sles12-sp5-pool-x86_64", + "product_id": 1878, + "repository_id": 3650, + "parent_product_id": null, + "root_product_id": 1878, + "update_tag": "SLE-SERVER-INSTALLER", + "url": "https://updates.suse.com/SUSE/Updates/SLE-SERVER-INSTALLER/12-SP5/x86_64/update/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLES12-SP5-Installer-Updates for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles12-sp5-pool-x86_64", + "parent_channel_label": null, + "product_id": 1878, + "repository_id": 3652, + "parent_product_id": null, + "root_product_id": 1878, + "update_tag": "SLE-SERVER", + "url": "https://updates.suse.com/SUSE/Products/SLE-SERVER/12-SP5/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLES12-SP5-Pool for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles12-sp5-debuginfo-pool-x86_64", + "parent_channel_label": "sles12-sp5-pool-x86_64", + "product_id": 1878, + "repository_id": 3654, + "parent_product_id": null, + "root_product_id": 1878, + "update_tag": "SLE-SERVER", + "url": "https://updates.suse.com/SUSE/Products/SLE-SERVER/12-SP5/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLES12-SP5-Debuginfo-Pool for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-legacy12-updates-x86_64-sp5", + "parent_channel_label": "sles12-sp5-pool-x86_64", + "product_id": 1150, + "repository_id": 1676, + "parent_product_id": 1878, + "root_product_id": 1878, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/12/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy12-Updates for x86_64 SP5", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-legacy12-debuginfo-updates-x86_64-sp5", + "parent_channel_label": "sles12-sp5-pool-x86_64", + "product_id": 1150, + "repository_id": 1677, + "parent_product_id": 1878, + "root_product_id": 1878, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/12/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy12-Debuginfo-Updates for x86_64 SP5", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-legacy12-pool-x86_64-sp5", + "parent_channel_label": "sles12-sp5-pool-x86_64", + "product_id": 1150, + "repository_id": 1678, + "parent_product_id": 1878, + "root_product_id": 1878, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/12/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy12-Pool for x86_64 SP5", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-legacy12-debuginfo-pool-x86_64-sp5", + "parent_channel_label": "sles12-sp5-pool-x86_64", + "product_id": 1150, + "repository_id": 1679, + "parent_product_id": 1878, + "root_product_id": 1878, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/12/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy12-Debuginfo-Pool for x86_64 SP5", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting12-updates-x86_64-sp5", + "parent_channel_label": "sles12-sp5-pool-x86_64", + "product_id": 1153, + "repository_id": 1688, + "parent_product_id": 1878, + "root_product_id": 1878, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/12/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Web-Scripting12-Updates for x86_64 SP5", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting12-debuginfo-updates-x86_64-sp5", + "parent_channel_label": "sles12-sp5-pool-x86_64", + "product_id": 1153, + "repository_id": 1689, + "parent_product_id": 1878, + "root_product_id": 1878, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/12/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Web-Scripting12-Debuginfo-Updates for x86_64 SP5", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting12-pool-x86_64-sp5", + "parent_channel_label": "sles12-sp5-pool-x86_64", + "product_id": 1153, + "repository_id": 1690, + "parent_product_id": 1878, + "root_product_id": 1878, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/12/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Web-Scripting12-Pool for x86_64 SP5", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting12-debuginfo-pool-x86_64-sp5", + "parent_channel_label": "sles12-sp5-pool-x86_64", + "product_id": 1153, + "repository_id": 1691, + "parent_product_id": 1878, + "root_product_id": 1878, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/12/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Web-Scripting12-Debuginfo-Pool for x86_64 SP5", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-adv-systems-management12-updates-x86_64-sp5", + "parent_channel_label": "sles12-sp5-pool-x86_64", + "product_id": 1212, + "repository_id": 1704, + "parent_product_id": 1878, + "root_product_id": 1878, + "update_tag": "SLE-Module-Adv-Systems-Management", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Adv-Systems-Management/12/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Adv-Systems-Management12-Updates for x86_64 SP5", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-adv-systems-management12-debuginfo-updates-x86_64-sp5", + "parent_channel_label": "sles12-sp5-pool-x86_64", + "product_id": 1212, + "repository_id": 1705, + "parent_product_id": 1878, + "root_product_id": 1878, + "update_tag": "SLE-Module-Adv-Systems-Management", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Adv-Systems-Management/12/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Adv-Systems-Management12-Debuginfo-Updates for x86_64 SP5", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-adv-systems-management12-pool-x86_64-sp5", + "parent_channel_label": "sles12-sp5-pool-x86_64", + "product_id": 1212, + "repository_id": 1706, + "parent_product_id": 1878, + "root_product_id": 1878, + "update_tag": "SLE-Module-Adv-Systems-Management", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Adv-Systems-Management/12/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Adv-Systems-Management12-Pool for x86_64 SP5", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-adv-systems-management12-debuginfo-pool-x86_64-sp5", + "parent_channel_label": "sles12-sp5-pool-x86_64", + "product_id": 1212, + "repository_id": 1707, + "parent_product_id": 1878, + "root_product_id": 1878, + "update_tag": "SLE-Module-Adv-Systems-Management", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Adv-Systems-Management/12/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Adv-Systems-Management12-Debuginfo-Pool for x86_64 SP5", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud12-updates-x86_64-sp5", + "parent_channel_label": "sles12-sp5-pool-x86_64", + "product_id": 1220, + "repository_id": 1700, + "parent_product_id": 1878, + "root_product_id": 1878, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/12/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud12-Updates for x86_64 SP5", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud12-debuginfo-updates-x86_64-sp5", + "parent_channel_label": "sles12-sp5-pool-x86_64", + "product_id": 1220, + "repository_id": 1701, + "parent_product_id": 1878, + "root_product_id": 1878, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/12/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud12-Debuginfo-Updates for x86_64 SP5", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud12-pool-x86_64-sp5", + "parent_channel_label": "sles12-sp5-pool-x86_64", + "product_id": 1220, + "repository_id": 1702, + "parent_product_id": 1878, + "root_product_id": 1878, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/12/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud12-Pool for x86_64 SP5", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud12-debuginfo-pool-x86_64-sp5", + "parent_channel_label": "sles12-sp5-pool-x86_64", + "product_id": 1220, + "repository_id": 1703, + "parent_product_id": 1878, + "root_product_id": 1878, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/12/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud12-Debuginfo-Pool for x86_64 SP5", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-containers12-updates-x86_64-sp5", + "parent_channel_label": "sles12-sp5-pool-x86_64", + "product_id": 1332, + "repository_id": 1864, + "parent_product_id": 1878, + "root_product_id": 1878, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/12/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers12-Updates for x86_64 SP5", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-containers12-debuginfo-updates-x86_64-sp5", + "parent_channel_label": "sles12-sp5-pool-x86_64", + "product_id": 1332, + "repository_id": 1865, + "parent_product_id": 1878, + "root_product_id": 1878, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/12/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers12-Debuginfo-Updates for x86_64 SP5", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-containers12-pool-x86_64-sp5", + "parent_channel_label": "sles12-sp5-pool-x86_64", + "product_id": 1332, + "repository_id": 1866, + "parent_product_id": 1878, + "root_product_id": 1878, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Containers/12/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers12-Pool for x86_64 SP5", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-containers12-debuginfo-pool-x86_64-sp5", + "parent_channel_label": "sles12-sp5-pool-x86_64", + "product_id": 1332, + "repository_id": 1867, + "parent_product_id": 1878, + "root_product_id": 1878, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Containers/12/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers12-Debuginfo-Pool for x86_64 SP5", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-toolchain12-updates-x86_64-sp5", + "parent_channel_label": "sles12-sp5-pool-x86_64", + "product_id": 1341, + "repository_id": 1903, + "parent_product_id": 1878, + "root_product_id": 1878, + "update_tag": "SLE-Module-Toolchain", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Toolchain/12/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Toolchain12-Updates for x86_64 SP5", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-toolchain12-debuginfo-updates-x86_64-sp5", + "parent_channel_label": "sles12-sp5-pool-x86_64", + "product_id": 1341, + "repository_id": 1904, + "parent_product_id": 1878, + "root_product_id": 1878, + "update_tag": "SLE-Module-Toolchain", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Toolchain/12/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Toolchain12-Debuginfo-Updates for x86_64 SP5", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-toolchain12-pool-x86_64-sp5", + "parent_channel_label": "sles12-sp5-pool-x86_64", + "product_id": 1341, + "repository_id": 1905, + "parent_product_id": 1878, + "root_product_id": 1878, + "update_tag": "SLE-Module-Toolchain", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Toolchain/12/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Toolchain12-Pool for x86_64 SP5", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-toolchain12-debuginfo-pool-x86_64-sp5", + "parent_channel_label": "sles12-sp5-pool-x86_64", + "product_id": 1341, + "repository_id": 1906, + "parent_product_id": 1878, + "root_product_id": 1878, + "update_tag": "SLE-Module-Toolchain", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Toolchain/12/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Toolchain12-Debuginfo-Pool for x86_64 SP5", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-hpc12-updates-x86_64-sp5", + "parent_channel_label": "sles12-sp5-pool-x86_64", + "product_id": 1440, + "repository_id": 2294, + "parent_product_id": 1878, + "root_product_id": 1878, + "update_tag": "SLE-Module-HPC", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-HPC/12/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-HPC12-Updates for x86_64 SP5", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-hpc12-debuginfo-updates-x86_64-sp5", + "parent_channel_label": "sles12-sp5-pool-x86_64", + "product_id": 1440, + "repository_id": 2295, + "parent_product_id": 1878, + "root_product_id": 1878, + "update_tag": "SLE-Module-HPC", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-HPC/12/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-HPC12-Debuginfo-Updates for x86_64 SP5", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-hpc12-pool-x86_64-sp5", + "parent_channel_label": "sles12-sp5-pool-x86_64", + "product_id": 1440, + "repository_id": 2296, + "parent_product_id": 1878, + "root_product_id": 1878, + "update_tag": "SLE-Module-HPC", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-HPC/12/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-HPC12-Pool for x86_64 SP5", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-hpc12-debuginfo-pool-x86_64-sp5", + "parent_channel_label": "sles12-sp5-pool-x86_64", + "product_id": 1440, + "repository_id": 2297, + "parent_product_id": 1878, + "root_product_id": 1878, + "update_tag": "SLE-Module-HPC", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-HPC/12/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-HPC12-Debuginfo-Pool for x86_64 SP5", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-cap-tools-12-updates-x86_64-sp5", + "parent_channel_label": "sles12-sp5-pool-x86_64", + "product_id": 1678, + "repository_id": 2912, + "parent_product_id": 1878, + "root_product_id": 1878, + "update_tag": "SLE-Module-CAP-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-CAP-Tools/12/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-CAP-Tools-12-Updates for x86_64 SP5", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-cap-tools-12-debuginfo-updates-x86_64-sp5", + "parent_channel_label": "sles12-sp5-pool-x86_64", + "product_id": 1678, + "repository_id": 2913, + "parent_product_id": 1878, + "root_product_id": 1878, + "update_tag": "SLE-Module-CAP-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-CAP-Tools/12/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-CAP-Tools-12-Debuginfo-Updates for x86_64 SP5", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-cap-tools-12-pool-x86_64-sp5", + "parent_channel_label": "sles12-sp5-pool-x86_64", + "product_id": 1678, + "repository_id": 2914, + "parent_product_id": 1878, + "root_product_id": 1878, + "update_tag": "SLE-Module-CAP-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-CAP-Tools/12/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-CAP-Tools-12-Pool for x86_64 SP5", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-cap-tools-12-debuginfo-pool-x86_64-sp5", + "parent_channel_label": "sles12-sp5-pool-x86_64", + "product_id": 1678, + "repository_id": 2915, + "parent_product_id": 1878, + "root_product_id": 1878, + "update_tag": "SLE-Module-CAP-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-CAP-Tools/12/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-CAP-Tools-12-Debuginfo-Pool for x86_64 SP5", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-manager-tools12-beta-updates-x86_64-sp5", + "parent_channel_label": "sles12-sp5-pool-x86_64", + "product_id": 1747, + "repository_id": 3077, + "parent_product_id": 1878, + "root_product_id": 1878, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/12-BETA/x86_64/update/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools12-BETA-Updates for x86_64 SP5", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools12-beta-debuginfo-updates-x86_64-sp5", + "parent_channel_label": "sles12-sp5-pool-x86_64", + "product_id": 1747, + "repository_id": 3078, + "parent_product_id": 1878, + "root_product_id": 1878, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/12-BETA/x86_64/update_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools12-BETA-Debuginfo-Updates for x86_64 SP5", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools12-beta-pool-x86_64-sp5", + "parent_channel_label": "sles12-sp5-pool-x86_64", + "product_id": 1747, + "repository_id": 3079, + "parent_product_id": 1878, + "root_product_id": 1878, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/12-BETA/x86_64/product/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools12-BETA-Pool for x86_64 SP5", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools12-beta-debuginfo-pool-x86_64-sp5", + "parent_channel_label": "sles12-sp5-pool-x86_64", + "product_id": 1747, + "repository_id": 3080, + "parent_product_id": 1878, + "root_product_id": 1878, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/12-BETA/x86_64/product_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools12-BETA-Debuginfo-Pool for x86_64 SP5", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-ha12-sp5-updates-x86_64", + "parent_channel_label": "sles12-sp5-pool-x86_64", + "product_id": 1884, + "repository_id": 3687, + "parent_product_id": 1878, + "root_product_id": 1878, + "update_tag": "SLE-HA", + "url": "https://updates.suse.com/SUSE/Updates/SLE-HA/12-SP5/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-HA12-SP5-Updates for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-ha12-sp5-debuginfo-updates-x86_64", + "parent_channel_label": "sles12-sp5-pool-x86_64", + "product_id": 1884, + "repository_id": 3689, + "parent_product_id": 1878, + "root_product_id": 1878, + "update_tag": "SLE-HA", + "url": "https://updates.suse.com/SUSE/Updates/SLE-HA/12-SP5/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-HA12-SP5-Debuginfo-Updates for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-ha12-sp5-pool-x86_64", + "parent_channel_label": "sles12-sp5-pool-x86_64", + "product_id": 1884, + "repository_id": 3691, + "parent_product_id": 1878, + "root_product_id": 1878, + "update_tag": "SLE-HA", + "url": "https://updates.suse.com/SUSE/Products/SLE-HA/12-SP5/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-HA12-SP5-Pool for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-ha12-sp5-debuginfo-pool-x86_64", + "parent_channel_label": "sles12-sp5-pool-x86_64", + "product_id": 1884, + "repository_id": 3693, + "parent_product_id": 1878, + "root_product_id": 1878, + "update_tag": "SLE-HA", + "url": "https://updates.suse.com/SUSE/Products/SLE-HA/12-SP5/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-HA12-SP5-Debuginfo-Pool for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-ha-geo12-sp5-updates-x86_64", + "parent_channel_label": "sles12-sp5-pool-x86_64", + "product_id": 1886, + "repository_id": 3711, + "parent_product_id": 1884, + "root_product_id": 1878, + "update_tag": "SLE-HA-GEO", + "url": "https://updates.suse.com/SUSE/Updates/SLE-HA-GEO/12-SP5/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-HA-GEO12-SP5-Updates for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-ha-geo12-sp5-debuginfo-updates-x86_64", + "parent_channel_label": "sles12-sp5-pool-x86_64", + "product_id": 1886, + "repository_id": 3712, + "parent_product_id": 1884, + "root_product_id": 1878, + "update_tag": "SLE-HA-GEO", + "url": "https://updates.suse.com/SUSE/Updates/SLE-HA-GEO/12-SP5/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-HA-GEO12-SP5-Debuginfo-Updates for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-ha-geo12-sp5-pool-x86_64", + "parent_channel_label": "sles12-sp5-pool-x86_64", + "product_id": 1886, + "repository_id": 3713, + "parent_product_id": 1884, + "root_product_id": 1878, + "update_tag": "SLE-HA-GEO", + "url": "https://updates.suse.com/SUSE/Products/SLE-HA-GEO/12-SP5/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-HA-GEO12-SP5-Pool for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-ha-geo12-sp5-debuginfo-pool-x86_64", + "parent_channel_label": "sles12-sp5-pool-x86_64", + "product_id": 1886, + "repository_id": 3714, + "parent_product_id": 1884, + "root_product_id": 1878, + "update_tag": "SLE-HA-GEO", + "url": "https://updates.suse.com/SUSE/Products/SLE-HA-GEO/12-SP5/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-HA-GEO12-SP5-Debuginfo-Pool for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-live-patching12-sp5-updates-x86_64", + "parent_channel_label": "sles12-sp5-pool-x86_64", + "product_id": 1888, + "repository_id": 3720, + "parent_product_id": 1878, + "root_product_id": 1878, + "update_tag": "SLE-Live-Patching", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Live-Patching/12-SP5/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Live-Patching12-SP5-Updates for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-live-patching12-sp5-debuginfo-updates-x86_64", + "parent_channel_label": "sles12-sp5-pool-x86_64", + "product_id": 1888, + "repository_id": 3721, + "parent_product_id": 1878, + "root_product_id": 1878, + "update_tag": "SLE-Live-Patching", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Live-Patching/12-SP5/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Live-Patching12-SP5-Debuginfo-Updates for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-live-patching12-sp5-pool-x86_64", + "parent_channel_label": "sles12-sp5-pool-x86_64", + "product_id": 1888, + "repository_id": 3722, + "parent_product_id": 1878, + "root_product_id": 1878, + "update_tag": "SLE-Live-Patching", + "url": "https://updates.suse.com/SUSE/Products/SLE-Live-Patching/12-SP5/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Live-Patching12-SP5-Pool for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-live-patching12-sp5-debuginfo-pool-x86_64", + "parent_channel_label": "sles12-sp5-pool-x86_64", + "product_id": 1888, + "repository_id": 3723, + "parent_product_id": 1878, + "root_product_id": 1878, + "update_tag": "SLE-Live-Patching", + "url": "https://updates.suse.com/SUSE/Products/SLE-Live-Patching/12-SP5/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Live-Patching12-SP5-Debuginfo-Pool for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-sdk12-sp5-updates-x86_64", + "parent_channel_label": "sles12-sp5-pool-x86_64", + "product_id": 1892, + "repository_id": 3739, + "parent_product_id": 1878, + "root_product_id": 1878, + "update_tag": "SLE-SDK", + "url": "https://updates.suse.com/SUSE/Updates/SLE-SDK/12-SP5/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-SDK12-SP5-Updates for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-sdk12-sp5-debuginfo-updates-x86_64", + "parent_channel_label": "sles12-sp5-pool-x86_64", + "product_id": 1892, + "repository_id": 3740, + "parent_product_id": 1878, + "root_product_id": 1878, + "update_tag": "SLE-SDK", + "url": "https://updates.suse.com/SUSE/Updates/SLE-SDK/12-SP5/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-SDK12-SP5-Debuginfo-Updates for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-sdk12-sp5-pool-x86_64", + "parent_channel_label": "sles12-sp5-pool-x86_64", + "product_id": 1892, + "repository_id": 3741, + "parent_product_id": 1878, + "root_product_id": 1878, + "update_tag": "SLE-SDK", + "url": "https://updates.suse.com/SUSE/Products/SLE-SDK/12-SP5/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-SDK12-SP5-Pool for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-sdk12-sp5-debuginfo-pool-x86_64", + "parent_channel_label": "sles12-sp5-pool-x86_64", + "product_id": 1892, + "repository_id": 3742, + "parent_product_id": 1878, + "root_product_id": 1878, + "update_tag": "SLE-SDK", + "url": "https://updates.suse.com/SUSE/Products/SLE-SDK/12-SP5/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-SDK12-SP5-Debuginfo-Pool for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-12-sp5-ga-desktop-nvidia-driver-we", + "parent_channel_label": "sles12-sp5-pool-x86_64", + "product_id": 1893, + "repository_id": 3661, + "parent_product_id": 1878, + "root_product_id": 1878, + "update_tag": null, + "url": "https://download.nvidia.com/suse/sle12sp5/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-12-SP5-GA-Desktop-nVidia-Driver for x86_64 WE", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-we12-sp5-updates-x86_64", + "parent_channel_label": "sles12-sp5-pool-x86_64", + "product_id": 1893, + "repository_id": 3744, + "parent_product_id": 1878, + "root_product_id": 1878, + "update_tag": "SLE-WE", + "url": "https://updates.suse.com/SUSE/Updates/SLE-WE/12-SP5/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-WE12-SP5-Updates for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-we12-sp5-debuginfo-updates-x86_64", + "parent_channel_label": "sles12-sp5-pool-x86_64", + "product_id": 1893, + "repository_id": 3745, + "parent_product_id": 1878, + "root_product_id": 1878, + "update_tag": "SLE-WE", + "url": "https://updates.suse.com/SUSE/Updates/SLE-WE/12-SP5/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-WE12-SP5-Debuginfo-Updates for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-we12-sp5-pool-x86_64", + "parent_channel_label": "sles12-sp5-pool-x86_64", + "product_id": 1893, + "repository_id": 3746, + "parent_product_id": 1878, + "root_product_id": 1878, + "update_tag": "SLE-WE", + "url": "https://updates.suse.com/SUSE/Products/SLE-WE/12-SP5/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-WE12-SP5-Pool for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-we12-sp5-debuginfo-pool-x86_64", + "parent_channel_label": "sles12-sp5-pool-x86_64", + "product_id": 1893, + "repository_id": 3747, + "parent_product_id": 1878, + "root_product_id": 1878, + "update_tag": "SLE-WE", + "url": "https://updates.suse.com/SUSE/Products/SLE-WE/12-SP5/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-WE12-SP5-Debuginfo-Pool for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-packagehub-12-sp5-standard-pool-x86_64", + "parent_channel_label": "sles12-sp5-pool-x86_64", + "product_id": 1915, + "repository_id": 3864, + "parent_product_id": 1878, + "root_product_id": 1878, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-12-SP5_x86_64/standard/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-12-SP5-Standard-Pool for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-packagehub-12-sp5-debuginfo-x86_64", + "parent_channel_label": "sles12-sp5-pool-x86_64", + "product_id": 1915, + "repository_id": 3865, + "parent_product_id": 1878, + "root_product_id": 1878, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-12-SP5_x86_64/standard_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-12-SP5-Debuginfo for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-packagehub-12-sp5-pool-x86_64", + "parent_channel_label": "sles12-sp5-pool-x86_64", + "product_id": 1915, + "repository_id": 3866, + "parent_product_id": 1878, + "root_product_id": 1878, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-12-SP5_x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-12-SP5-Pool for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-rt12-sp5-updates-x86_64", + "parent_channel_label": "sles12-sp5-pool-x86_64", + "product_id": 2006, + "repository_id": 4307, + "parent_product_id": 1878, + "root_product_id": 1878, + "update_tag": "SLE-RT", + "url": "https://updates.suse.com/SUSE/Updates/SLE-RT/12-SP5/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-RT12-SP5-Updates for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-rt12-sp5-debuginfo-updates-x86_64", + "parent_channel_label": "sles12-sp5-pool-x86_64", + "product_id": 2006, + "repository_id": 4308, + "parent_product_id": 1878, + "root_product_id": 1878, + "update_tag": "SLE-RT", + "url": "https://updates.suse.com/SUSE/Updates/SLE-RT/12-SP5/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-RT12-SP5-Debuginfo-Updates for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-rt12-sp5-pool-x86_64", + "parent_channel_label": "sles12-sp5-pool-x86_64", + "product_id": 2006, + "repository_id": 4309, + "parent_product_id": 1878, + "root_product_id": 1878, + "update_tag": "SLE-RT", + "url": "https://updates.suse.com/SUSE/Products/SLE-RT/12-SP5/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-RT12-SP5-Pool for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-rt12-sp5-debuginfo-pool-x86_64", + "parent_channel_label": "sles12-sp5-pool-x86_64", + "product_id": 2006, + "repository_id": 4310, + "parent_product_id": 1878, + "root_product_id": 1878, + "update_tag": "SLE-RT", + "url": "https://updates.suse.com/SUSE/Products/SLE-RT/12-SP5/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-RT12-SP5-Debuginfo-Pool for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-manager-tools12-updates-ppc64le-sap-sp5", + "parent_channel_label": "sle12-sp5-sap-pool-ppc64le", + "product_id": 1879, + "repository_id": 1724, + "parent_product_id": null, + "root_product_id": 1879, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/12/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Manager-Tools12-Updates for ppc64le SAP SP5", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools12-debuginfo-updates-ppc64le-sap-sp5", + "parent_channel_label": "sle12-sp5-sap-pool-ppc64le", + "product_id": 1879, + "repository_id": 1725, + "parent_product_id": null, + "root_product_id": 1879, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/12/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Manager-Tools12-Debuginfo-Updates for ppc64le SAP SP5", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools12-pool-ppc64le-sap-sp5", + "parent_channel_label": "sle12-sp5-sap-pool-ppc64le", + "product_id": 1879, + "repository_id": 1726, + "parent_product_id": null, + "root_product_id": 1879, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/12/ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Manager-Tools12-Pool for ppc64le SAP SP5", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools12-debuginfo-pool-ppc64le-sap-sp5", + "parent_channel_label": "sle12-sp5-sap-pool-ppc64le", + "product_id": 1879, + "repository_id": 1727, + "parent_product_id": null, + "root_product_id": 1879, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/12/ppc64le/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Manager-Tools12-Debuginfo-Pool for ppc64le SAP SP5", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sles12-sp5-updates-ppc64le-sap", + "parent_channel_label": "sle12-sp5-sap-pool-ppc64le", + "product_id": 1879, + "repository_id": 3664, + "parent_product_id": null, + "root_product_id": 1879, + "update_tag": "SLE-SERVER", + "url": "https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-SP5/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLES12-SP5-Updates for ppc64le SAP", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles12-sp5-debuginfo-updates-ppc64le-sap", + "parent_channel_label": "sle12-sp5-sap-pool-ppc64le", + "product_id": 1879, + "repository_id": 3665, + "parent_product_id": null, + "root_product_id": 1879, + "update_tag": "SLE-SERVER", + "url": "https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-SP5/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLES12-SP5-Debuginfo-Updates for ppc64le SAP", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles12-sp5-pool-ppc64le-sap", + "parent_channel_label": "sle12-sp5-sap-pool-ppc64le", + "product_id": 1879, + "repository_id": 3667, + "parent_product_id": null, + "root_product_id": 1879, + "update_tag": "SLE-SERVER", + "url": "https://updates.suse.com/SUSE/Products/SLE-SERVER/12-SP5/ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLES12-SP5-Pool for ppc64le SAP", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles12-sp5-debuginfo-pool-ppc64le-sap", + "parent_channel_label": "sle12-sp5-sap-pool-ppc64le", + "product_id": 1879, + "repository_id": 3668, + "parent_product_id": null, + "root_product_id": 1879, + "update_tag": "SLE-SERVER", + "url": "https://updates.suse.com/SUSE/Products/SLE-SERVER/12-SP5/ppc64le/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLES12-SP5-Debuginfo-Pool for ppc64le SAP", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-12-sp5-sap-updates-ppc64le", + "parent_channel_label": "sle12-sp5-sap-pool-ppc64le", + "product_id": 1879, + "repository_id": 3676, + "parent_product_id": null, + "root_product_id": 1879, + "update_tag": "SLE-SAP", + "url": "https://updates.suse.com/SUSE/Updates/SLE-SAP/12-SP5/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-12-SP5-SAP-Updates for ppc64le", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-ha12-sp5-updates-ppc64le-sap", + "parent_channel_label": "sle12-sp5-sap-pool-ppc64le", + "product_id": 1879, + "repository_id": 3677, + "parent_product_id": null, + "root_product_id": 1879, + "update_tag": "SLE-HA", + "url": "https://updates.suse.com/SUSE/Updates/SLE-HA/12-SP5/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-HA12-SP5-Updates for ppc64le SAP", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-12-sp5-sap-debuginfo-updates-ppc64le", + "parent_channel_label": "sle12-sp5-sap-pool-ppc64le", + "product_id": 1879, + "repository_id": 3678, + "parent_product_id": null, + "root_product_id": 1879, + "update_tag": "SLE-SAP", + "url": "https://updates.suse.com/SUSE/Updates/SLE-SAP/12-SP5/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-12-SP5-SAP-Debuginfo-Updates for ppc64le", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-ha12-sp5-debuginfo-updates-ppc64le-sap", + "parent_channel_label": "sle12-sp5-sap-pool-ppc64le", + "product_id": 1879, + "repository_id": 3679, + "parent_product_id": null, + "root_product_id": 1879, + "update_tag": "SLE-HA", + "url": "https://updates.suse.com/SUSE/Updates/SLE-HA/12-SP5/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-HA12-SP5-Debuginfo-Updates for ppc64le SAP", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle12-sp5-sap-pool-ppc64le", + "parent_channel_label": null, + "product_id": 1879, + "repository_id": 3680, + "parent_product_id": null, + "root_product_id": 1879, + "update_tag": "SLE-SAP", + "url": "https://updates.suse.com/SUSE/Products/SLE-SAP/12-SP5/ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE12-SP5-SAP-Pool for ppc64le", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-ha12-sp5-pool-ppc64le-sap", + "parent_channel_label": "sle12-sp5-sap-pool-ppc64le", + "product_id": 1879, + "repository_id": 3681, + "parent_product_id": null, + "root_product_id": 1879, + "update_tag": "SLE-HA", + "url": "https://updates.suse.com/SUSE/Products/SLE-HA/12-SP5/ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-HA12-SP5-Pool for ppc64le SAP", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle12-sp5-sap-debuginfo-pool-ppc64le", + "parent_channel_label": "sle12-sp5-sap-pool-ppc64le", + "product_id": 1879, + "repository_id": 3682, + "parent_product_id": null, + "root_product_id": 1879, + "update_tag": "SLE-SAP", + "url": "https://updates.suse.com/SUSE/Products/SLE-SAP/12-SP5/ppc64le/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE12-SP5-SAP-Debuginfo-Pool for ppc64le", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-ha12-sp5-debuginfo-pool-ppc64le-sap", + "parent_channel_label": "sle12-sp5-sap-pool-ppc64le", + "product_id": 1879, + "repository_id": 3683, + "parent_product_id": null, + "root_product_id": 1879, + "update_tag": "SLE-HA", + "url": "https://updates.suse.com/SUSE/Products/SLE-HA/12-SP5/ppc64le/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-HA12-SP5-Debuginfo-Pool for ppc64le SAP", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-legacy12-updates-ppc64le-sap-sp5", + "parent_channel_label": "sle12-sp5-sap-pool-ppc64le", + "product_id": 1148, + "repository_id": 1668, + "parent_product_id": 1879, + "root_product_id": 1879, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/12/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy12-Updates for ppc64le SAP SP5", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-legacy12-debuginfo-updates-ppc64le-sap-sp5", + "parent_channel_label": "sle12-sp5-sap-pool-ppc64le", + "product_id": 1148, + "repository_id": 1669, + "parent_product_id": 1879, + "root_product_id": 1879, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/12/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy12-Debuginfo-Updates for ppc64le SAP SP5", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-legacy12-pool-ppc64le-sap-sp5", + "parent_channel_label": "sle12-sp5-sap-pool-ppc64le", + "product_id": 1148, + "repository_id": 1670, + "parent_product_id": 1879, + "root_product_id": 1879, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/12/ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy12-Pool for ppc64le SAP SP5", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-legacy12-debuginfo-pool-ppc64le-sap-sp5", + "parent_channel_label": "sle12-sp5-sap-pool-ppc64le", + "product_id": 1148, + "repository_id": 1671, + "parent_product_id": 1879, + "root_product_id": 1879, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/12/ppc64le/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy12-Debuginfo-Pool for ppc64le SAP SP5", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting12-updates-ppc64le-sap-sp5", + "parent_channel_label": "sle12-sp5-sap-pool-ppc64le", + "product_id": 1151, + "repository_id": 1680, + "parent_product_id": 1879, + "root_product_id": 1879, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/12/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Web-Scripting12-Updates for ppc64le SAP SP5", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting12-debuginfo-updates-ppc64le-sap-sp5", + "parent_channel_label": "sle12-sp5-sap-pool-ppc64le", + "product_id": 1151, + "repository_id": 1681, + "parent_product_id": 1879, + "root_product_id": 1879, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/12/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Web-Scripting12-Debuginfo-Updates for ppc64le SAP SP5", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting12-pool-ppc64le-sap-sp5", + "parent_channel_label": "sle12-sp5-sap-pool-ppc64le", + "product_id": 1151, + "repository_id": 1682, + "parent_product_id": 1879, + "root_product_id": 1879, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/12/ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Web-Scripting12-Pool for ppc64le SAP SP5", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting12-debuginfo-pool-ppc64le-sap-sp5", + "parent_channel_label": "sle12-sp5-sap-pool-ppc64le", + "product_id": 1151, + "repository_id": 1683, + "parent_product_id": 1879, + "root_product_id": 1879, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/12/ppc64le/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Web-Scripting12-Debuginfo-Pool for ppc64le SAP SP5", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud12-updates-ppc64le-sap-sp5", + "parent_channel_label": "sle12-sp5-sap-pool-ppc64le", + "product_id": 1218, + "repository_id": 1692, + "parent_product_id": 1879, + "root_product_id": 1879, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/12/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud12-Updates for ppc64le SAP SP5", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud12-debuginfo-updates-ppc64le-sap-sp5", + "parent_channel_label": "sle12-sp5-sap-pool-ppc64le", + "product_id": 1218, + "repository_id": 1693, + "parent_product_id": 1879, + "root_product_id": 1879, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/12/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud12-Debuginfo-Updates for ppc64le SAP SP5", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud12-pool-ppc64le-sap-sp5", + "parent_channel_label": "sle12-sp5-sap-pool-ppc64le", + "product_id": 1218, + "repository_id": 1694, + "parent_product_id": 1879, + "root_product_id": 1879, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/12/ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud12-Pool for ppc64le SAP SP5", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud12-debuginfo-pool-ppc64le-sap-sp5", + "parent_channel_label": "sle12-sp5-sap-pool-ppc64le", + "product_id": 1218, + "repository_id": 1695, + "parent_product_id": 1879, + "root_product_id": 1879, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/12/ppc64le/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud12-Debuginfo-Pool for ppc64le SAP SP5", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "ibm-dlpar-adv-toolchain-sap-sp5", + "parent_channel_label": "sle12-sp5-sap-pool-ppc64le", + "product_id": 1249, + "repository_id": 4429, + "parent_product_id": 1879, + "root_product_id": 1879, + "update_tag": null, + "url": "https://public.dhe.ibm.com/software/server/POWER/Linux/toolchain/at/suse/SLES_12/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "IBM-DLPAR-Adv-Toolchain for ppc64le SAP SP5", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "ibm-dlpar-utils-sap-sp5", + "parent_channel_label": "sle12-sp5-sap-pool-ppc64le", + "product_id": 1250, + "repository_id": 6216, + "parent_product_id": 1879, + "root_product_id": 1879, + "update_tag": null, + "url": "https://public.dhe.ibm.com/software/server/POWER/Linux/yum/OSS/SLES/12/ppc64le/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "IBM-DLPAR-utils for ppc64le SAP SP5", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-adv-systems-management12-updates-ppc64le-sap-sp5", + "parent_channel_label": "sle12-sp5-sap-pool-ppc64le", + "product_id": 1294, + "repository_id": 1762, + "parent_product_id": 1879, + "root_product_id": 1879, + "update_tag": "SLE-Module-Adv-Systems-Management", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Adv-Systems-Management/12/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Adv-Systems-Management12-Updates for ppc64le SAP SP5", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-adv-systems-management12-debuginfo-updates-ppc64le-sap-sp5", + "parent_channel_label": "sle12-sp5-sap-pool-ppc64le", + "product_id": 1294, + "repository_id": 1763, + "parent_product_id": 1879, + "root_product_id": 1879, + "update_tag": "SLE-Module-Adv-Systems-Management", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Adv-Systems-Management/12/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Adv-Systems-Management12-Debuginfo-Updates for ppc64le SAP SP5", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-adv-systems-management12-pool-ppc64le-sap-sp5", + "parent_channel_label": "sle12-sp5-sap-pool-ppc64le", + "product_id": 1294, + "repository_id": 1764, + "parent_product_id": 1879, + "root_product_id": 1879, + "update_tag": "SLE-Module-Adv-Systems-Management", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Adv-Systems-Management/12/ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Adv-Systems-Management12-Pool for ppc64le SAP SP5", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-adv-systems-management12-debuginfo-pool-ppc64le-sap-sp5", + "parent_channel_label": "sle12-sp5-sap-pool-ppc64le", + "product_id": 1294, + "repository_id": 1765, + "parent_product_id": 1879, + "root_product_id": 1879, + "update_tag": "SLE-Module-Adv-Systems-Management", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Adv-Systems-Management/12/ppc64le/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Adv-Systems-Management12-Debuginfo-Pool for ppc64le SAP SP5", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-toolchain12-updates-ppc64le-sap-sp5", + "parent_channel_label": "sle12-sp5-sap-pool-ppc64le", + "product_id": 1339, + "repository_id": 1895, + "parent_product_id": 1879, + "root_product_id": 1879, + "update_tag": "SLE-Module-Toolchain", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Toolchain/12/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Toolchain12-Updates for ppc64le SAP SP5", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-toolchain12-debuginfo-updates-ppc64le-sap-sp5", + "parent_channel_label": "sle12-sp5-sap-pool-ppc64le", + "product_id": 1339, + "repository_id": 1896, + "parent_product_id": 1879, + "root_product_id": 1879, + "update_tag": "SLE-Module-Toolchain", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Toolchain/12/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Toolchain12-Debuginfo-Updates for ppc64le SAP SP5", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-toolchain12-pool-ppc64le-sap-sp5", + "parent_channel_label": "sle12-sp5-sap-pool-ppc64le", + "product_id": 1339, + "repository_id": 1897, + "parent_product_id": 1879, + "root_product_id": 1879, + "update_tag": "SLE-Module-Toolchain", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Toolchain/12/ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Toolchain12-Pool for ppc64le SAP SP5", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-toolchain12-debuginfo-pool-ppc64le-sap-sp5", + "parent_channel_label": "sle12-sp5-sap-pool-ppc64le", + "product_id": 1339, + "repository_id": 1898, + "parent_product_id": 1879, + "root_product_id": 1879, + "update_tag": "SLE-Module-Toolchain", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Toolchain/12/ppc64le/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Toolchain12-Debuginfo-Pool for ppc64le SAP SP5", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-containers12-updates-ppc64le-sap-sp5", + "parent_channel_label": "sle12-sp5-sap-pool-ppc64le", + "product_id": 1353, + "repository_id": 1972, + "parent_product_id": 1879, + "root_product_id": 1879, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/12/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers12-Updates for ppc64le SAP SP5", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-containers12-debuginfo-updates-ppc64le-sap-sp5", + "parent_channel_label": "sle12-sp5-sap-pool-ppc64le", + "product_id": 1353, + "repository_id": 1973, + "parent_product_id": 1879, + "root_product_id": 1879, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/12/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers12-Debuginfo-Updates for ppc64le SAP SP5", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-containers12-pool-ppc64le-sap-sp5", + "parent_channel_label": "sle12-sp5-sap-pool-ppc64le", + "product_id": 1353, + "repository_id": 1974, + "parent_product_id": 1879, + "root_product_id": 1879, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Containers/12/ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers12-Pool for ppc64le SAP SP5", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-containers12-debuginfo-pool-ppc64le-sap-sp5", + "parent_channel_label": "sle12-sp5-sap-pool-ppc64le", + "product_id": 1353, + "repository_id": 1975, + "parent_product_id": 1879, + "root_product_id": 1879, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Containers/12/ppc64le/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers12-Debuginfo-Pool for ppc64le SAP SP5", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-manager-tools12-beta-updates-ppc64le-sap-sp5", + "parent_channel_label": "sle12-sp5-sap-pool-ppc64le", + "product_id": 1745, + "repository_id": 3067, + "parent_product_id": 1879, + "root_product_id": 1879, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/12-BETA/ppc64le/update/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools12-BETA-Updates for ppc64le SAP SP5", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools12-beta-debuginfo-updates-ppc64le-sap-sp5", + "parent_channel_label": "sle12-sp5-sap-pool-ppc64le", + "product_id": 1745, + "repository_id": 3068, + "parent_product_id": 1879, + "root_product_id": 1879, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/12-BETA/ppc64le/update_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools12-BETA-Debuginfo-Updates for ppc64le SAP SP5", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools12-beta-pool-ppc64le-sap-sp5", + "parent_channel_label": "sle12-sp5-sap-pool-ppc64le", + "product_id": 1745, + "repository_id": 3069, + "parent_product_id": 1879, + "root_product_id": 1879, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/12-BETA/ppc64le/product/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools12-BETA-Pool for ppc64le SAP SP5", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools12-beta-debuginfo-pool-ppc64le-sap-sp5", + "parent_channel_label": "sle12-sp5-sap-pool-ppc64le", + "product_id": 1745, + "repository_id": 3070, + "parent_product_id": 1879, + "root_product_id": 1879, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/12-BETA/ppc64le/product_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools12-BETA-Debuginfo-Pool for ppc64le SAP SP5", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-live-patching12-sp5-updates-ppc64le-sap", + "parent_channel_label": "sle12-sp5-sap-pool-ppc64le", + "product_id": 1887, + "repository_id": 3716, + "parent_product_id": 1879, + "root_product_id": 1879, + "update_tag": "SLE-Live-Patching", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Live-Patching/12-SP5/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Live-Patching12-SP5-Updates for ppc64le SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-live-patching12-sp5-debuginfo-updates-ppc64le-sap", + "parent_channel_label": "sle12-sp5-sap-pool-ppc64le", + "product_id": 1887, + "repository_id": 3717, + "parent_product_id": 1879, + "root_product_id": 1879, + "update_tag": "SLE-Live-Patching", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Live-Patching/12-SP5/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Live-Patching12-SP5-Debuginfo-Updates for ppc64le SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-live-patching12-sp5-pool-ppc64le-sap", + "parent_channel_label": "sle12-sp5-sap-pool-ppc64le", + "product_id": 1887, + "repository_id": 3718, + "parent_product_id": 1879, + "root_product_id": 1879, + "update_tag": "SLE-Live-Patching", + "url": "https://updates.suse.com/SUSE/Products/SLE-Live-Patching/12-SP5/ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Live-Patching12-SP5-Pool for ppc64le SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-live-patching12-sp5-debuginfo-pool-ppc64le-sap", + "parent_channel_label": "sle12-sp5-sap-pool-ppc64le", + "product_id": 1887, + "repository_id": 3719, + "parent_product_id": 1879, + "root_product_id": 1879, + "update_tag": "SLE-Live-Patching", + "url": "https://updates.suse.com/SUSE/Products/SLE-Live-Patching/12-SP5/ppc64le/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Live-Patching12-SP5-Debuginfo-Pool for ppc64le SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-sdk12-sp5-updates-ppc64le-sap", + "parent_channel_label": "sle12-sp5-sap-pool-ppc64le", + "product_id": 1890, + "repository_id": 3729, + "parent_product_id": 1879, + "root_product_id": 1879, + "update_tag": "SLE-SDK", + "url": "https://updates.suse.com/SUSE/Updates/SLE-SDK/12-SP5/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-SDK12-SP5-Updates for ppc64le SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-sdk12-sp5-debuginfo-updates-ppc64le-sap", + "parent_channel_label": "sle12-sp5-sap-pool-ppc64le", + "product_id": 1890, + "repository_id": 3730, + "parent_product_id": 1879, + "root_product_id": 1879, + "update_tag": "SLE-SDK", + "url": "https://updates.suse.com/SUSE/Updates/SLE-SDK/12-SP5/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-SDK12-SP5-Debuginfo-Updates for ppc64le SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-sdk12-sp5-pool-ppc64le-sap", + "parent_channel_label": "sle12-sp5-sap-pool-ppc64le", + "product_id": 1890, + "repository_id": 3731, + "parent_product_id": 1879, + "root_product_id": 1879, + "update_tag": "SLE-SDK", + "url": "https://updates.suse.com/SUSE/Products/SLE-SDK/12-SP5/ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-SDK12-SP5-Pool for ppc64le SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-sdk12-sp5-debuginfo-pool-ppc64le-sap", + "parent_channel_label": "sle12-sp5-sap-pool-ppc64le", + "product_id": 1890, + "repository_id": 3732, + "parent_product_id": 1879, + "root_product_id": 1879, + "update_tag": "SLE-SDK", + "url": "https://updates.suse.com/SUSE/Products/SLE-SDK/12-SP5/ppc64le/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-SDK12-SP5-Debuginfo-Pool for ppc64le SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-packagehub-12-sp5-standard-pool-ppc64le-sap", + "parent_channel_label": "sle12-sp5-sap-pool-ppc64le", + "product_id": 1913, + "repository_id": 3858, + "parent_product_id": 1879, + "root_product_id": 1879, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-12-SP5_ppc64le/standard/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-12-SP5-Standard-Pool for ppc64le SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-packagehub-12-sp5-debuginfo-ppc64le-sap", + "parent_channel_label": "sle12-sp5-sap-pool-ppc64le", + "product_id": 1913, + "repository_id": 3859, + "parent_product_id": 1879, + "root_product_id": 1879, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-12-SP5_ppc64le/standard_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-12-SP5-Debuginfo for ppc64le SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-packagehub-12-sp5-pool-ppc64le-sap", + "parent_channel_label": "sle12-sp5-sap-pool-ppc64le", + "product_id": 1913, + "repository_id": 3860, + "parent_product_id": 1879, + "root_product_id": 1879, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-12-SP5_ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-12-SP5-Pool for ppc64le SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-manager-tools12-updates-x86_64-sap-sp5", + "parent_channel_label": "sle12-sp5-sap-pool-x86_64", + "product_id": 1880, + "repository_id": 1732, + "parent_product_id": null, + "root_product_id": 1880, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/12/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Manager-Tools12-Updates for x86_64 SAP SP5", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools12-debuginfo-updates-x86_64-sap-sp5", + "parent_channel_label": "sle12-sp5-sap-pool-x86_64", + "product_id": 1880, + "repository_id": 1733, + "parent_product_id": null, + "root_product_id": 1880, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/12/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Manager-Tools12-Debuginfo-Updates for x86_64 SAP SP5", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools12-pool-x86_64-sap-sp5", + "parent_channel_label": "sle12-sp5-sap-pool-x86_64", + "product_id": 1880, + "repository_id": 1734, + "parent_product_id": null, + "root_product_id": 1880, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/12/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Manager-Tools12-Pool for x86_64 SAP SP5", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools12-debuginfo-pool-x86_64-sap-sp5", + "parent_channel_label": "sle12-sp5-sap-pool-x86_64", + "product_id": 1880, + "repository_id": 1735, + "parent_product_id": null, + "root_product_id": 1880, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/12/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Manager-Tools12-Debuginfo-Pool for x86_64 SAP SP5", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sles12-sp5-updates-x86_64-sap", + "parent_channel_label": "sle12-sp5-sap-pool-x86_64", + "product_id": 1880, + "repository_id": 3647, + "parent_product_id": null, + "root_product_id": 1880, + "update_tag": "SLE-SERVER", + "url": "https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-SP5/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLES12-SP5-Updates for x86_64 SAP", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles12-sp5-debuginfo-updates-x86_64-sap", + "parent_channel_label": "sle12-sp5-sap-pool-x86_64", + "product_id": 1880, + "repository_id": 3649, + "parent_product_id": null, + "root_product_id": 1880, + "update_tag": "SLE-SERVER", + "url": "https://updates.suse.com/SUSE/Updates/SLE-SERVER/12-SP5/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLES12-SP5-Debuginfo-Updates for x86_64 SAP", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles12-sp5-pool-x86_64-sap", + "parent_channel_label": "sle12-sp5-sap-pool-x86_64", + "product_id": 1880, + "repository_id": 3652, + "parent_product_id": null, + "root_product_id": 1880, + "update_tag": "SLE-SERVER", + "url": "https://updates.suse.com/SUSE/Products/SLE-SERVER/12-SP5/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLES12-SP5-Pool for x86_64 SAP", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sles12-sp5-debuginfo-pool-x86_64-sap", + "parent_channel_label": "sle12-sp5-sap-pool-x86_64", + "product_id": 1880, + "repository_id": 3654, + "parent_product_id": null, + "root_product_id": 1880, + "update_tag": "SLE-SERVER", + "url": "https://updates.suse.com/SUSE/Products/SLE-SERVER/12-SP5/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLES12-SP5-Debuginfo-Pool for x86_64 SAP", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-12-sp5-sap-updates-x86_64", + "parent_channel_label": "sle12-sp5-sap-pool-x86_64", + "product_id": 1880, + "repository_id": 3686, + "parent_product_id": null, + "root_product_id": 1880, + "update_tag": "SLE-SAP", + "url": "https://updates.suse.com/SUSE/Updates/SLE-SAP/12-SP5/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-12-SP5-SAP-Updates for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-ha12-sp5-updates-x86_64-sap", + "parent_channel_label": "sle12-sp5-sap-pool-x86_64", + "product_id": 1880, + "repository_id": 3687, + "parent_product_id": null, + "root_product_id": 1880, + "update_tag": "SLE-HA", + "url": "https://updates.suse.com/SUSE/Updates/SLE-HA/12-SP5/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-HA12-SP5-Updates for x86_64 SAP", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-12-sp5-sap-debuginfo-updates-x86_64", + "parent_channel_label": "sle12-sp5-sap-pool-x86_64", + "product_id": 1880, + "repository_id": 3688, + "parent_product_id": null, + "root_product_id": 1880, + "update_tag": "SLE-SAP", + "url": "https://updates.suse.com/SUSE/Updates/SLE-SAP/12-SP5/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-12-SP5-SAP-Debuginfo-Updates for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-ha12-sp5-debuginfo-updates-x86_64-sap", + "parent_channel_label": "sle12-sp5-sap-pool-x86_64", + "product_id": 1880, + "repository_id": 3689, + "parent_product_id": null, + "root_product_id": 1880, + "update_tag": "SLE-HA", + "url": "https://updates.suse.com/SUSE/Updates/SLE-HA/12-SP5/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-HA12-SP5-Debuginfo-Updates for x86_64 SAP", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle12-sp5-sap-pool-x86_64", + "parent_channel_label": null, + "product_id": 1880, + "repository_id": 3690, + "parent_product_id": null, + "root_product_id": 1880, + "update_tag": "SLE-SAP", + "url": "https://updates.suse.com/SUSE/Products/SLE-SAP/12-SP5/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE12-SP5-SAP-Pool for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-ha12-sp5-pool-x86_64-sap", + "parent_channel_label": "sle12-sp5-sap-pool-x86_64", + "product_id": 1880, + "repository_id": 3691, + "parent_product_id": null, + "root_product_id": 1880, + "update_tag": "SLE-HA", + "url": "https://updates.suse.com/SUSE/Products/SLE-HA/12-SP5/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-HA12-SP5-Pool for x86_64 SAP", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle12-sp5-sap-debuginfo-pool-x86_64", + "parent_channel_label": "sle12-sp5-sap-pool-x86_64", + "product_id": 1880, + "repository_id": 3692, + "parent_product_id": null, + "root_product_id": 1880, + "update_tag": "SLE-SAP", + "url": "https://updates.suse.com/SUSE/Products/SLE-SAP/12-SP5/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE12-SP5-SAP-Debuginfo-Pool for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-ha12-sp5-debuginfo-pool-x86_64-sap", + "parent_channel_label": "sle12-sp5-sap-pool-x86_64", + "product_id": 1880, + "repository_id": 3693, + "parent_product_id": null, + "root_product_id": 1880, + "update_tag": "SLE-HA", + "url": "https://updates.suse.com/SUSE/Products/SLE-HA/12-SP5/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-HA12-SP5-Debuginfo-Pool for x86_64 SAP", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-legacy12-updates-x86_64-sap-sp5", + "parent_channel_label": "sle12-sp5-sap-pool-x86_64", + "product_id": 1150, + "repository_id": 1676, + "parent_product_id": 1880, + "root_product_id": 1880, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/12/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy12-Updates for x86_64 SAP SP5", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-legacy12-debuginfo-updates-x86_64-sap-sp5", + "parent_channel_label": "sle12-sp5-sap-pool-x86_64", + "product_id": 1150, + "repository_id": 1677, + "parent_product_id": 1880, + "root_product_id": 1880, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/12/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy12-Debuginfo-Updates for x86_64 SAP SP5", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-legacy12-pool-x86_64-sap-sp5", + "parent_channel_label": "sle12-sp5-sap-pool-x86_64", + "product_id": 1150, + "repository_id": 1678, + "parent_product_id": 1880, + "root_product_id": 1880, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/12/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy12-Pool for x86_64 SAP SP5", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-legacy12-debuginfo-pool-x86_64-sap-sp5", + "parent_channel_label": "sle12-sp5-sap-pool-x86_64", + "product_id": 1150, + "repository_id": 1679, + "parent_product_id": 1880, + "root_product_id": 1880, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/12/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy12-Debuginfo-Pool for x86_64 SAP SP5", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting12-updates-x86_64-sap-sp5", + "parent_channel_label": "sle12-sp5-sap-pool-x86_64", + "product_id": 1153, + "repository_id": 1688, + "parent_product_id": 1880, + "root_product_id": 1880, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/12/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Web-Scripting12-Updates for x86_64 SAP SP5", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting12-debuginfo-updates-x86_64-sap-sp5", + "parent_channel_label": "sle12-sp5-sap-pool-x86_64", + "product_id": 1153, + "repository_id": 1689, + "parent_product_id": 1880, + "root_product_id": 1880, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/12/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Web-Scripting12-Debuginfo-Updates for x86_64 SAP SP5", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting12-pool-x86_64-sap-sp5", + "parent_channel_label": "sle12-sp5-sap-pool-x86_64", + "product_id": 1153, + "repository_id": 1690, + "parent_product_id": 1880, + "root_product_id": 1880, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/12/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Web-Scripting12-Pool for x86_64 SAP SP5", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting12-debuginfo-pool-x86_64-sap-sp5", + "parent_channel_label": "sle12-sp5-sap-pool-x86_64", + "product_id": 1153, + "repository_id": 1691, + "parent_product_id": 1880, + "root_product_id": 1880, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/12/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Web-Scripting12-Debuginfo-Pool for x86_64 SAP SP5", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-adv-systems-management12-updates-x86_64-sap-sp5", + "parent_channel_label": "sle12-sp5-sap-pool-x86_64", + "product_id": 1212, + "repository_id": 1704, + "parent_product_id": 1880, + "root_product_id": 1880, + "update_tag": "SLE-Module-Adv-Systems-Management", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Adv-Systems-Management/12/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Adv-Systems-Management12-Updates for x86_64 SAP SP5", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-adv-systems-management12-debuginfo-updates-x86_64-sap-sp5", + "parent_channel_label": "sle12-sp5-sap-pool-x86_64", + "product_id": 1212, + "repository_id": 1705, + "parent_product_id": 1880, + "root_product_id": 1880, + "update_tag": "SLE-Module-Adv-Systems-Management", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Adv-Systems-Management/12/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Adv-Systems-Management12-Debuginfo-Updates for x86_64 SAP SP5", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-adv-systems-management12-pool-x86_64-sap-sp5", + "parent_channel_label": "sle12-sp5-sap-pool-x86_64", + "product_id": 1212, + "repository_id": 1706, + "parent_product_id": 1880, + "root_product_id": 1880, + "update_tag": "SLE-Module-Adv-Systems-Management", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Adv-Systems-Management/12/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Adv-Systems-Management12-Pool for x86_64 SAP SP5", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-adv-systems-management12-debuginfo-pool-x86_64-sap-sp5", + "parent_channel_label": "sle12-sp5-sap-pool-x86_64", + "product_id": 1212, + "repository_id": 1707, + "parent_product_id": 1880, + "root_product_id": 1880, + "update_tag": "SLE-Module-Adv-Systems-Management", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Adv-Systems-Management/12/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Adv-Systems-Management12-Debuginfo-Pool for x86_64 SAP SP5", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud12-updates-x86_64-sap-sp5", + "parent_channel_label": "sle12-sp5-sap-pool-x86_64", + "product_id": 1220, + "repository_id": 1700, + "parent_product_id": 1880, + "root_product_id": 1880, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/12/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud12-Updates for x86_64 SAP SP5", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud12-debuginfo-updates-x86_64-sap-sp5", + "parent_channel_label": "sle12-sp5-sap-pool-x86_64", + "product_id": 1220, + "repository_id": 1701, + "parent_product_id": 1880, + "root_product_id": 1880, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/12/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud12-Debuginfo-Updates for x86_64 SAP SP5", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud12-pool-x86_64-sap-sp5", + "parent_channel_label": "sle12-sp5-sap-pool-x86_64", + "product_id": 1220, + "repository_id": 1702, + "parent_product_id": 1880, + "root_product_id": 1880, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/12/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud12-Pool for x86_64 SAP SP5", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud12-debuginfo-pool-x86_64-sap-sp5", + "parent_channel_label": "sle12-sp5-sap-pool-x86_64", + "product_id": 1220, + "repository_id": 1703, + "parent_product_id": 1880, + "root_product_id": 1880, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/12/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud12-Debuginfo-Pool for x86_64 SAP SP5", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-containers12-updates-x86_64-sap-sp5", + "parent_channel_label": "sle12-sp5-sap-pool-x86_64", + "product_id": 1332, + "repository_id": 1864, + "parent_product_id": 1880, + "root_product_id": 1880, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/12/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers12-Updates for x86_64 SAP SP5", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-containers12-debuginfo-updates-x86_64-sap-sp5", + "parent_channel_label": "sle12-sp5-sap-pool-x86_64", + "product_id": 1332, + "repository_id": 1865, + "parent_product_id": 1880, + "root_product_id": 1880, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/12/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers12-Debuginfo-Updates for x86_64 SAP SP5", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-containers12-pool-x86_64-sap-sp5", + "parent_channel_label": "sle12-sp5-sap-pool-x86_64", + "product_id": 1332, + "repository_id": 1866, + "parent_product_id": 1880, + "root_product_id": 1880, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Containers/12/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers12-Pool for x86_64 SAP SP5", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-containers12-debuginfo-pool-x86_64-sap-sp5", + "parent_channel_label": "sle12-sp5-sap-pool-x86_64", + "product_id": 1332, + "repository_id": 1867, + "parent_product_id": 1880, + "root_product_id": 1880, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Containers/12/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers12-Debuginfo-Pool for x86_64 SAP SP5", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-toolchain12-updates-x86_64-sap-sp5", + "parent_channel_label": "sle12-sp5-sap-pool-x86_64", + "product_id": 1341, + "repository_id": 1903, + "parent_product_id": 1880, + "root_product_id": 1880, + "update_tag": "SLE-Module-Toolchain", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Toolchain/12/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Toolchain12-Updates for x86_64 SAP SP5", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-toolchain12-debuginfo-updates-x86_64-sap-sp5", + "parent_channel_label": "sle12-sp5-sap-pool-x86_64", + "product_id": 1341, + "repository_id": 1904, + "parent_product_id": 1880, + "root_product_id": 1880, + "update_tag": "SLE-Module-Toolchain", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Toolchain/12/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Toolchain12-Debuginfo-Updates for x86_64 SAP SP5", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-toolchain12-pool-x86_64-sap-sp5", + "parent_channel_label": "sle12-sp5-sap-pool-x86_64", + "product_id": 1341, + "repository_id": 1905, + "parent_product_id": 1880, + "root_product_id": 1880, + "update_tag": "SLE-Module-Toolchain", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Toolchain/12/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Toolchain12-Pool for x86_64 SAP SP5", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-toolchain12-debuginfo-pool-x86_64-sap-sp5", + "parent_channel_label": "sle12-sp5-sap-pool-x86_64", + "product_id": 1341, + "repository_id": 1906, + "parent_product_id": 1880, + "root_product_id": 1880, + "update_tag": "SLE-Module-Toolchain", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Toolchain/12/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Toolchain12-Debuginfo-Pool for x86_64 SAP SP5", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-hpc12-updates-x86_64-sap-sp5", + "parent_channel_label": "sle12-sp5-sap-pool-x86_64", + "product_id": 1440, + "repository_id": 2294, + "parent_product_id": 1880, + "root_product_id": 1880, + "update_tag": "SLE-Module-HPC", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-HPC/12/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-HPC12-Updates for x86_64 SAP SP5", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-hpc12-debuginfo-updates-x86_64-sap-sp5", + "parent_channel_label": "sle12-sp5-sap-pool-x86_64", + "product_id": 1440, + "repository_id": 2295, + "parent_product_id": 1880, + "root_product_id": 1880, + "update_tag": "SLE-Module-HPC", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-HPC/12/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-HPC12-Debuginfo-Updates for x86_64 SAP SP5", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-hpc12-pool-x86_64-sap-sp5", + "parent_channel_label": "sle12-sp5-sap-pool-x86_64", + "product_id": 1440, + "repository_id": 2296, + "parent_product_id": 1880, + "root_product_id": 1880, + "update_tag": "SLE-Module-HPC", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-HPC/12/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-HPC12-Pool for x86_64 SAP SP5", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-hpc12-debuginfo-pool-x86_64-sap-sp5", + "parent_channel_label": "sle12-sp5-sap-pool-x86_64", + "product_id": 1440, + "repository_id": 2297, + "parent_product_id": 1880, + "root_product_id": 1880, + "update_tag": "SLE-Module-HPC", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-HPC/12/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-HPC12-Debuginfo-Pool for x86_64 SAP SP5", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-manager-tools12-beta-updates-x86_64-sap-sp5", + "parent_channel_label": "sle12-sp5-sap-pool-x86_64", + "product_id": 1747, + "repository_id": 3077, + "parent_product_id": 1880, + "root_product_id": 1880, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/12-BETA/x86_64/update/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools12-BETA-Updates for x86_64 SAP SP5", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools12-beta-debuginfo-updates-x86_64-sap-sp5", + "parent_channel_label": "sle12-sp5-sap-pool-x86_64", + "product_id": 1747, + "repository_id": 3078, + "parent_product_id": 1880, + "root_product_id": 1880, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/12-BETA/x86_64/update_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools12-BETA-Debuginfo-Updates for x86_64 SAP SP5", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools12-beta-pool-x86_64-sap-sp5", + "parent_channel_label": "sle12-sp5-sap-pool-x86_64", + "product_id": 1747, + "repository_id": 3079, + "parent_product_id": 1880, + "root_product_id": 1880, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/12-BETA/x86_64/product/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools12-BETA-Pool for x86_64 SAP SP5", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools12-beta-debuginfo-pool-x86_64-sap-sp5", + "parent_channel_label": "sle12-sp5-sap-pool-x86_64", + "product_id": 1747, + "repository_id": 3080, + "parent_product_id": 1880, + "root_product_id": 1880, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/12-BETA/x86_64/product_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools12-BETA-Debuginfo-Pool for x86_64 SAP SP5", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-ha-geo12-sp5-updates-x86_64-sap", + "parent_channel_label": "sle12-sp5-sap-pool-x86_64", + "product_id": 1886, + "repository_id": 3711, + "parent_product_id": 1880, + "root_product_id": 1880, + "update_tag": "SLE-HA-GEO", + "url": "https://updates.suse.com/SUSE/Updates/SLE-HA-GEO/12-SP5/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-HA-GEO12-SP5-Updates for x86_64 SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-ha-geo12-sp5-debuginfo-updates-x86_64-sap", + "parent_channel_label": "sle12-sp5-sap-pool-x86_64", + "product_id": 1886, + "repository_id": 3712, + "parent_product_id": 1880, + "root_product_id": 1880, + "update_tag": "SLE-HA-GEO", + "url": "https://updates.suse.com/SUSE/Updates/SLE-HA-GEO/12-SP5/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-HA-GEO12-SP5-Debuginfo-Updates for x86_64 SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-ha-geo12-sp5-pool-x86_64-sap", + "parent_channel_label": "sle12-sp5-sap-pool-x86_64", + "product_id": 1886, + "repository_id": 3713, + "parent_product_id": 1880, + "root_product_id": 1880, + "update_tag": "SLE-HA-GEO", + "url": "https://updates.suse.com/SUSE/Products/SLE-HA-GEO/12-SP5/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-HA-GEO12-SP5-Pool for x86_64 SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-ha-geo12-sp5-debuginfo-pool-x86_64-sap", + "parent_channel_label": "sle12-sp5-sap-pool-x86_64", + "product_id": 1886, + "repository_id": 3714, + "parent_product_id": 1880, + "root_product_id": 1880, + "update_tag": "SLE-HA-GEO", + "url": "https://updates.suse.com/SUSE/Products/SLE-HA-GEO/12-SP5/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-HA-GEO12-SP5-Debuginfo-Pool for x86_64 SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-live-patching12-sp5-updates-x86_64-sap", + "parent_channel_label": "sle12-sp5-sap-pool-x86_64", + "product_id": 1888, + "repository_id": 3720, + "parent_product_id": 1880, + "root_product_id": 1880, + "update_tag": "SLE-Live-Patching", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Live-Patching/12-SP5/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Live-Patching12-SP5-Updates for x86_64 SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-live-patching12-sp5-debuginfo-updates-x86_64-sap", + "parent_channel_label": "sle12-sp5-sap-pool-x86_64", + "product_id": 1888, + "repository_id": 3721, + "parent_product_id": 1880, + "root_product_id": 1880, + "update_tag": "SLE-Live-Patching", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Live-Patching/12-SP5/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Live-Patching12-SP5-Debuginfo-Updates for x86_64 SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-live-patching12-sp5-pool-x86_64-sap", + "parent_channel_label": "sle12-sp5-sap-pool-x86_64", + "product_id": 1888, + "repository_id": 3722, + "parent_product_id": 1880, + "root_product_id": 1880, + "update_tag": "SLE-Live-Patching", + "url": "https://updates.suse.com/SUSE/Products/SLE-Live-Patching/12-SP5/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Live-Patching12-SP5-Pool for x86_64 SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-live-patching12-sp5-debuginfo-pool-x86_64-sap", + "parent_channel_label": "sle12-sp5-sap-pool-x86_64", + "product_id": 1888, + "repository_id": 3723, + "parent_product_id": 1880, + "root_product_id": 1880, + "update_tag": "SLE-Live-Patching", + "url": "https://updates.suse.com/SUSE/Products/SLE-Live-Patching/12-SP5/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Live-Patching12-SP5-Debuginfo-Pool for x86_64 SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-sdk12-sp5-updates-x86_64-sap", + "parent_channel_label": "sle12-sp5-sap-pool-x86_64", + "product_id": 1892, + "repository_id": 3739, + "parent_product_id": 1880, + "root_product_id": 1880, + "update_tag": "SLE-SDK", + "url": "https://updates.suse.com/SUSE/Updates/SLE-SDK/12-SP5/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-SDK12-SP5-Updates for x86_64 SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-sdk12-sp5-debuginfo-updates-x86_64-sap", + "parent_channel_label": "sle12-sp5-sap-pool-x86_64", + "product_id": 1892, + "repository_id": 3740, + "parent_product_id": 1880, + "root_product_id": 1880, + "update_tag": "SLE-SDK", + "url": "https://updates.suse.com/SUSE/Updates/SLE-SDK/12-SP5/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-SDK12-SP5-Debuginfo-Updates for x86_64 SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-sdk12-sp5-pool-x86_64-sap", + "parent_channel_label": "sle12-sp5-sap-pool-x86_64", + "product_id": 1892, + "repository_id": 3741, + "parent_product_id": 1880, + "root_product_id": 1880, + "update_tag": "SLE-SDK", + "url": "https://updates.suse.com/SUSE/Products/SLE-SDK/12-SP5/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-SDK12-SP5-Pool for x86_64 SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-sdk12-sp5-debuginfo-pool-x86_64-sap", + "parent_channel_label": "sle12-sp5-sap-pool-x86_64", + "product_id": 1892, + "repository_id": 3742, + "parent_product_id": 1880, + "root_product_id": 1880, + "update_tag": "SLE-SDK", + "url": "https://updates.suse.com/SUSE/Products/SLE-SDK/12-SP5/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-SDK12-SP5-Debuginfo-Pool for x86_64 SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-12-sp5-ga-desktop-nvidia-driver-we-sap", + "parent_channel_label": "sle12-sp5-sap-pool-x86_64", + "product_id": 1893, + "repository_id": 3661, + "parent_product_id": 1880, + "root_product_id": 1880, + "update_tag": null, + "url": "https://download.nvidia.com/suse/sle12sp5/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-12-SP5-GA-Desktop-nVidia-Driver for x86_64 WE-SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-we12-sp5-updates-x86_64-sap", + "parent_channel_label": "sle12-sp5-sap-pool-x86_64", + "product_id": 1893, + "repository_id": 3744, + "parent_product_id": 1880, + "root_product_id": 1880, + "update_tag": "SLE-WE", + "url": "https://updates.suse.com/SUSE/Updates/SLE-WE/12-SP5/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-WE12-SP5-Updates for x86_64 SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-we12-sp5-debuginfo-updates-x86_64-sap", + "parent_channel_label": "sle12-sp5-sap-pool-x86_64", + "product_id": 1893, + "repository_id": 3745, + "parent_product_id": 1880, + "root_product_id": 1880, + "update_tag": "SLE-WE", + "url": "https://updates.suse.com/SUSE/Updates/SLE-WE/12-SP5/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-WE12-SP5-Debuginfo-Updates for x86_64 SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-we12-sp5-pool-x86_64-sap", + "parent_channel_label": "sle12-sp5-sap-pool-x86_64", + "product_id": 1893, + "repository_id": 3746, + "parent_product_id": 1880, + "root_product_id": 1880, + "update_tag": "SLE-WE", + "url": "https://updates.suse.com/SUSE/Products/SLE-WE/12-SP5/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-WE12-SP5-Pool for x86_64 SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-we12-sp5-debuginfo-pool-x86_64-sap", + "parent_channel_label": "sle12-sp5-sap-pool-x86_64", + "product_id": 1893, + "repository_id": 3747, + "parent_product_id": 1880, + "root_product_id": 1880, + "update_tag": "SLE-WE", + "url": "https://updates.suse.com/SUSE/Products/SLE-WE/12-SP5/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-WE12-SP5-Debuginfo-Pool for x86_64 SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-packagehub-12-sp5-standard-pool-x86_64-sap", + "parent_channel_label": "sle12-sp5-sap-pool-x86_64", + "product_id": 1915, + "repository_id": 3864, + "parent_product_id": 1880, + "root_product_id": 1880, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-12-SP5_x86_64/standard/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-12-SP5-Standard-Pool for x86_64 SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-packagehub-12-sp5-debuginfo-x86_64-sap", + "parent_channel_label": "sle12-sp5-sap-pool-x86_64", + "product_id": 1915, + "repository_id": 3865, + "parent_product_id": 1880, + "root_product_id": 1880, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-12-SP5_x86_64/standard_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-12-SP5-Debuginfo for x86_64 SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-packagehub-12-sp5-pool-x86_64-sap", + "parent_channel_label": "sle12-sp5-sap-pool-x86_64", + "product_id": 1915, + "repository_id": 3866, + "parent_product_id": 1880, + "root_product_id": 1880, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-12-SP5_x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-12-SP5-Pool for x86_64 SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-suse-manager-server-4.0-updates-ppc64le", + "parent_channel_label": "sle-product-suse-manager-server-4.0-pool-ppc64le", + "product_id": 1897, + "repository_id": 3798, + "parent_product_id": null, + "root_product_id": 1897, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-SUSE-Manager-Server/4.0/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-SUSE-Manager-Server-4.0-Updates for ppc64le", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-product-suse-manager-server-4.0-debuginfo-updates-ppc64le", + "parent_channel_label": "sle-product-suse-manager-server-4.0-pool-ppc64le", + "product_id": 1897, + "repository_id": 3799, + "parent_product_id": null, + "root_product_id": 1897, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-SUSE-Manager-Server/4.0/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-SUSE-Manager-Server-4.0-Debuginfo-Updates for ppc64le", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-product-suse-manager-server-4.0-pool-ppc64le", + "parent_channel_label": null, + "product_id": 1897, + "repository_id": 3800, + "parent_product_id": null, + "root_product_id": 1897, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-SUSE-Manager-Server/4.0/ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-SUSE-Manager-Server-4.0-Pool for ppc64le", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-product-suse-manager-server-4.0-debuginfo-pool-ppc64le", + "parent_channel_label": "sle-product-suse-manager-server-4.0-pool-ppc64le", + "product_id": 1897, + "repository_id": 3801, + "parent_product_id": null, + "root_product_id": 1897, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-SUSE-Manager-Server/4.0/ppc64le/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-SUSE-Manager-Server-4.0-Debuginfo-Pool for ppc64le", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-basesystem15-sp1-updates-ppc64le-sms-4.0", + "parent_channel_label": "sle-product-suse-manager-server-4.0-pool-ppc64le", + "product_id": 1770, + "repository_id": 3251, + "parent_product_id": 1897, + "root_product_id": 1897, + "update_tag": "SLE-Module-Basesystem", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15-SP1/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Basesystem15-SP1-Updates for ppc64le SMS 4.0", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-basesystem15-sp1-debuginfo-updates-ppc64le-sms-4.0", + "parent_channel_label": "sle-product-suse-manager-server-4.0-pool-ppc64le", + "product_id": 1770, + "repository_id": 3252, + "parent_product_id": 1897, + "root_product_id": 1897, + "update_tag": "SLE-Module-Basesystem", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15-SP1/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Basesystem15-SP1-Debuginfo-Updates for ppc64le SMS 4.0", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-basesystem15-sp1-pool-ppc64le-sms-4.0", + "parent_channel_label": "sle-product-suse-manager-server-4.0-pool-ppc64le", + "product_id": 1770, + "repository_id": 3253, + "parent_product_id": 1897, + "root_product_id": 1897, + "update_tag": "SLE-Module-Basesystem", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP1/ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Basesystem15-SP1-Pool for ppc64le SMS 4.0", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-basesystem15-sp1-debuginfo-pool-ppc64le-sms-4.0", + "parent_channel_label": "sle-product-suse-manager-server-4.0-pool-ppc64le", + "product_id": 1770, + "repository_id": 3254, + "parent_product_id": 1897, + "root_product_id": 1897, + "update_tag": "SLE-Module-Basesystem", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP1/ppc64le/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Basesystem15-SP1-Debuginfo-Pool for ppc64le SMS 4.0", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-desktop-applications15-sp1-updates-ppc64le-sms-4.0", + "parent_channel_label": "sle-product-suse-manager-server-4.0-pool-ppc64le", + "product_id": 1774, + "repository_id": 3271, + "parent_product_id": 1770, + "root_product_id": 1897, + "update_tag": "SLE-Module-Desktop-Applications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15-SP1/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Desktop-Applications15-SP1-Updates for ppc64le SMS 4.0", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-desktop-applications15-sp1-debuginfo-updates-ppc64le-sms-4.0", + "parent_channel_label": "sle-product-suse-manager-server-4.0-pool-ppc64le", + "product_id": 1774, + "repository_id": 3272, + "parent_product_id": 1770, + "root_product_id": 1897, + "update_tag": "SLE-Module-Desktop-Applications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15-SP1/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Desktop-Applications15-SP1-Debuginfo-Updates for ppc64le SMS 4.0", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-desktop-applications15-sp1-pool-ppc64le-sms-4.0", + "parent_channel_label": "sle-product-suse-manager-server-4.0-pool-ppc64le", + "product_id": 1774, + "repository_id": 3273, + "parent_product_id": 1770, + "root_product_id": 1897, + "update_tag": "SLE-Module-Desktop-Applications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP1/ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Desktop-Applications15-SP1-Pool for ppc64le SMS 4.0", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-desktop-applications15-sp1-debuginfo-pool-ppc64le-sms-4.0", + "parent_channel_label": "sle-product-suse-manager-server-4.0-pool-ppc64le", + "product_id": 1774, + "repository_id": 3274, + "parent_product_id": 1770, + "root_product_id": 1897, + "update_tag": "SLE-Module-Desktop-Applications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP1/ppc64le/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Desktop-Applications15-SP1-Debuginfo-Pool for ppc64le SMS 4.0", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-devtools15-sp1-updates-ppc64le-sms-4.0", + "parent_channel_label": "sle-product-suse-manager-server-4.0-pool-ppc64le", + "product_id": 1792, + "repository_id": 3361, + "parent_product_id": 1774, + "root_product_id": 1897, + "update_tag": "SLE-Module-Development-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15-SP1/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-DevTools15-SP1-Updates for ppc64le SMS 4.0", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-devtools15-sp1-debuginfo-updates-ppc64le-sms-4.0", + "parent_channel_label": "sle-product-suse-manager-server-4.0-pool-ppc64le", + "product_id": 1792, + "repository_id": 3362, + "parent_product_id": 1774, + "root_product_id": 1897, + "update_tag": "SLE-Module-Development-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15-SP1/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-DevTools15-SP1-Debuginfo-Updates for ppc64le SMS 4.0", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-devtools15-sp1-pool-ppc64le-sms-4.0", + "parent_channel_label": "sle-product-suse-manager-server-4.0-pool-ppc64le", + "product_id": 1792, + "repository_id": 3363, + "parent_product_id": 1774, + "root_product_id": 1897, + "update_tag": "SLE-Module-Development-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP1/ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-DevTools15-SP1-Pool for ppc64le SMS 4.0", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-devtools15-sp1-debuginfo-pool-ppc64le-sms-4.0", + "parent_channel_label": "sle-product-suse-manager-server-4.0-pool-ppc64le", + "product_id": 1792, + "repository_id": 3364, + "parent_product_id": 1774, + "root_product_id": 1897, + "update_tag": "SLE-Module-Development-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP1/ppc64le/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-DevTools15-SP1-Debuginfo-Pool for ppc64le SMS 4.0", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-server-applications15-sp1-updates-ppc64le-sms-4.0", + "parent_channel_label": "sle-product-suse-manager-server-4.0-pool-ppc64le", + "product_id": 1778, + "repository_id": 3291, + "parent_product_id": 1770, + "root_product_id": 1897, + "update_tag": "SLE-Module-Server-Applications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15-SP1/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Server-Applications15-SP1-Updates for ppc64le SMS 4.0", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-server-applications15-sp1-debuginfo-updates-ppc64le-sms-4.0", + "parent_channel_label": "sle-product-suse-manager-server-4.0-pool-ppc64le", + "product_id": 1778, + "repository_id": 3292, + "parent_product_id": 1770, + "root_product_id": 1897, + "update_tag": "SLE-Module-Server-Applications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15-SP1/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Server-Applications15-SP1-Debuginfo-Updates for ppc64le SMS 4.0", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-server-applications15-sp1-pool-ppc64le-sms-4.0", + "parent_channel_label": "sle-product-suse-manager-server-4.0-pool-ppc64le", + "product_id": 1778, + "repository_id": 3293, + "parent_product_id": 1770, + "root_product_id": 1897, + "update_tag": "SLE-Module-Server-Applications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP1/ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Server-Applications15-SP1-Pool for ppc64le SMS 4.0", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-server-applications15-sp1-debuginfo-pool-ppc64le-sms-4.0", + "parent_channel_label": "sle-product-suse-manager-server-4.0-pool-ppc64le", + "product_id": 1778, + "repository_id": 3294, + "parent_product_id": 1770, + "root_product_id": 1897, + "update_tag": "SLE-Module-Server-Applications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP1/ppc64le/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Server-Applications15-SP1-Debuginfo-Pool for ppc64le SMS 4.0", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-product-ha15-sp1-updates-ppc64le-sms-4.0", + "parent_channel_label": "sle-product-suse-manager-server-4.0-pool-ppc64le", + "product_id": 1783, + "repository_id": 3316, + "parent_product_id": 1778, + "root_product_id": 1897, + "update_tag": "SLE-Product-HA", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-HA/15-SP1/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HA15-SP1-Updates for ppc64le SMS 4.0", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-product-ha15-sp1-debuginfo-updates-ppc64le-sms-4.0", + "parent_channel_label": "sle-product-suse-manager-server-4.0-pool-ppc64le", + "product_id": 1783, + "repository_id": 3317, + "parent_product_id": 1778, + "root_product_id": 1897, + "update_tag": "SLE-Product-HA", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-HA/15-SP1/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HA15-SP1-Debuginfo-Updates for ppc64le SMS 4.0", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-product-ha15-sp1-pool-ppc64le-sms-4.0", + "parent_channel_label": "sle-product-suse-manager-server-4.0-pool-ppc64le", + "product_id": 1783, + "repository_id": 3318, + "parent_product_id": 1778, + "root_product_id": 1897, + "update_tag": "SLE-Product-HA", + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP1/ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HA15-SP1-Pool for ppc64le SMS 4.0", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-product-ha15-sp1-debuginfo-pool-ppc64le-sms-4.0", + "parent_channel_label": "sle-product-suse-manager-server-4.0-pool-ppc64le", + "product_id": 1783, + "repository_id": 3319, + "parent_product_id": 1778, + "root_product_id": 1897, + "update_tag": "SLE-Product-HA", + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP1/ppc64le/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HA15-SP1-Debuginfo-Pool for ppc64le SMS 4.0", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-web-scripting15-sp1-updates-ppc64le-sms-4.0", + "parent_channel_label": "sle-product-suse-manager-server-4.0-pool-ppc64le", + "product_id": 1796, + "repository_id": 3381, + "parent_product_id": 1778, + "root_product_id": 1897, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/15-SP1/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Web-Scripting15-SP1-Updates for ppc64le SMS 4.0", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-web-scripting15-sp1-debuginfo-updates-ppc64le-sms-4.0", + "parent_channel_label": "sle-product-suse-manager-server-4.0-pool-ppc64le", + "product_id": 1796, + "repository_id": 3382, + "parent_product_id": 1778, + "root_product_id": 1897, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/15-SP1/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Web-Scripting15-SP1-Debuginfo-Updates for ppc64le SMS 4.0", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-web-scripting15-sp1-pool-ppc64le-sms-4.0", + "parent_channel_label": "sle-product-suse-manager-server-4.0-pool-ppc64le", + "product_id": 1796, + "repository_id": 3383, + "parent_product_id": 1778, + "root_product_id": 1897, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP1/ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Web-Scripting15-SP1-Pool for ppc64le SMS 4.0", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-web-scripting15-sp1-debuginfo-pool-ppc64le-sms-4.0", + "parent_channel_label": "sle-product-suse-manager-server-4.0-pool-ppc64le", + "product_id": 1796, + "repository_id": 3384, + "parent_product_id": 1778, + "root_product_id": 1897, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP1/ppc64le/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Web-Scripting15-SP1-Debuginfo-Pool for ppc64le SMS 4.0", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-suse-manager-server-4.0-updates-ppc64le", + "parent_channel_label": "sle-product-suse-manager-server-4.0-pool-ppc64le", + "product_id": 1903, + "repository_id": 3813, + "parent_product_id": 1796, + "root_product_id": 1897, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-SUSE-Manager-Server/4.0/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-SUSE-Manager-Server-4.0-Updates for ppc64le", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-suse-manager-server-4.0-debuginfo-updates-ppc64le", + "parent_channel_label": "sle-product-suse-manager-server-4.0-pool-ppc64le", + "product_id": 1903, + "repository_id": 3814, + "parent_product_id": 1796, + "root_product_id": 1897, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-SUSE-Manager-Server/4.0/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-SUSE-Manager-Server-4.0-Debuginfo-Updates for ppc64le", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-suse-manager-server-4.0-pool-ppc64le", + "parent_channel_label": "sle-product-suse-manager-server-4.0-pool-ppc64le", + "product_id": 1903, + "repository_id": 3815, + "parent_product_id": 1796, + "root_product_id": 1897, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-SUSE-Manager-Server/4.0/ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-SUSE-Manager-Server-4.0-Pool for ppc64le", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-suse-manager-server-4.0-debuginfo-pool-ppc64le", + "parent_channel_label": "sle-product-suse-manager-server-4.0-pool-ppc64le", + "product_id": 1903, + "repository_id": 3816, + "parent_product_id": 1796, + "root_product_id": 1897, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-SUSE-Manager-Server/4.0/ppc64le/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-SUSE-Manager-Server-4.0-Debuginfo-Pool for ppc64le", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-legacy15-sp1-updates-ppc64le-sms-4.0", + "parent_channel_label": "sle-product-suse-manager-server-4.0-pool-ppc64le", + "product_id": 1802, + "repository_id": 3411, + "parent_product_id": 1778, + "root_product_id": 1897, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/15-SP1/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy15-SP1-Updates for ppc64le SMS 4.0", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-legacy15-sp1-debuginfo-updates-ppc64le-sms-4.0", + "parent_channel_label": "sle-product-suse-manager-server-4.0-pool-ppc64le", + "product_id": 1802, + "repository_id": 3412, + "parent_product_id": 1778, + "root_product_id": 1897, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/15-SP1/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy15-SP1-Debuginfo-Updates for ppc64le SMS 4.0", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-legacy15-sp1-pool-ppc64le-sms-4.0", + "parent_channel_label": "sle-product-suse-manager-server-4.0-pool-ppc64le", + "product_id": 1802, + "repository_id": 3413, + "parent_product_id": 1778, + "root_product_id": 1897, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15-SP1/ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy15-SP1-Pool for ppc64le SMS 4.0", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-legacy15-sp1-debuginfo-pool-ppc64le-sms-4.0", + "parent_channel_label": "sle-product-suse-manager-server-4.0-pool-ppc64le", + "product_id": 1802, + "repository_id": 3414, + "parent_product_id": 1778, + "root_product_id": 1897, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15-SP1/ppc64le/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy15-SP1-Debuginfo-Pool for ppc64le SMS 4.0", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-public-cloud15-sp1-updates-ppc64le-sms-4.0", + "parent_channel_label": "sle-product-suse-manager-server-4.0-pool-ppc64le", + "product_id": 1806, + "repository_id": 3431, + "parent_product_id": 1778, + "root_product_id": 1897, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/15-SP1/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud15-SP1-Updates for ppc64le SMS 4.0", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-public-cloud15-sp1-debuginfo-updates-ppc64le-sms-4.0", + "parent_channel_label": "sle-product-suse-manager-server-4.0-pool-ppc64le", + "product_id": 1806, + "repository_id": 3432, + "parent_product_id": 1778, + "root_product_id": 1897, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/15-SP1/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud15-SP1-Debuginfo-Updates for ppc64le SMS 4.0", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-public-cloud15-sp1-pool-ppc64le-sms-4.0", + "parent_channel_label": "sle-product-suse-manager-server-4.0-pool-ppc64le", + "product_id": 1806, + "repository_id": 3433, + "parent_product_id": 1778, + "root_product_id": 1897, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP1/ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud15-SP1-Pool for ppc64le SMS 4.0", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-public-cloud15-sp1-debuginfo-pool-ppc64le-sms-4.0", + "parent_channel_label": "sle-product-suse-manager-server-4.0-pool-ppc64le", + "product_id": 1806, + "repository_id": 3434, + "parent_product_id": 1778, + "root_product_id": 1897, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP1/ppc64le/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud15-SP1-Debuginfo-Pool for ppc64le SMS 4.0", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-containers15-sp1-updates-ppc64le-sms-4.0", + "parent_channel_label": "sle-product-suse-manager-server-4.0-pool-ppc64le", + "product_id": 1788, + "repository_id": 3341, + "parent_product_id": 1770, + "root_product_id": 1897, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/15-SP1/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers15-SP1-Updates for ppc64le SMS 4.0", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-containers15-sp1-debuginfo-updates-ppc64le-sms-4.0", + "parent_channel_label": "sle-product-suse-manager-server-4.0-pool-ppc64le", + "product_id": 1788, + "repository_id": 3342, + "parent_product_id": 1770, + "root_product_id": 1897, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/15-SP1/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers15-SP1-Debuginfo-Updates for ppc64le SMS 4.0", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-containers15-sp1-pool-ppc64le-sms-4.0", + "parent_channel_label": "sle-product-suse-manager-server-4.0-pool-ppc64le", + "product_id": 1788, + "repository_id": 3343, + "parent_product_id": 1770, + "root_product_id": 1897, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP1/ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers15-SP1-Pool for ppc64le SMS 4.0", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-containers15-sp1-debuginfo-pool-ppc64le-sms-4.0", + "parent_channel_label": "sle-product-suse-manager-server-4.0-pool-ppc64le", + "product_id": 1788, + "repository_id": 3344, + "parent_product_id": 1770, + "root_product_id": 1897, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP1/ppc64le/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers15-SP1-Debuginfo-Pool for ppc64le SMS 4.0", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-python2-15-sp1-updates-ppc64le-sms-4.0", + "parent_channel_label": "sle-product-suse-manager-server-4.0-pool-ppc64le", + "product_id": 1865, + "repository_id": 3588, + "parent_product_id": 1770, + "root_product_id": 1897, + "update_tag": "SLE-Module-Python2", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Python2/15-SP1/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Python2-15-SP1-Updates for ppc64le SMS 4.0", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-python2-15-sp1-debuginfo-updates-ppc64le-sms-4.0", + "parent_channel_label": "sle-product-suse-manager-server-4.0-pool-ppc64le", + "product_id": 1865, + "repository_id": 3589, + "parent_product_id": 1770, + "root_product_id": 1897, + "update_tag": "SLE-Module-Python2", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Python2/15-SP1/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Python2-15-SP1-Debuginfo-Updates for ppc64le SMS 4.0", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-python2-15-sp1-pool-ppc64le-sms-4.0", + "parent_channel_label": "sle-product-suse-manager-server-4.0-pool-ppc64le", + "product_id": 1865, + "repository_id": 3590, + "parent_product_id": 1770, + "root_product_id": 1897, + "update_tag": "SLE-Module-Python2", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Python2/15-SP1/ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Python2-15-SP1-Pool for ppc64le SMS 4.0", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-python2-15-sp1-debuginfo-pool-ppc64le-sms-4.0", + "parent_channel_label": "sle-product-suse-manager-server-4.0-pool-ppc64le", + "product_id": 1865, + "repository_id": 3591, + "parent_product_id": 1770, + "root_product_id": 1897, + "update_tag": "SLE-Module-Python2", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Python2/15-SP1/ppc64le/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Python2-15-SP1-Debuginfo-Pool for ppc64le SMS 4.0", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "suse-packagehub-15-sp1-standard-pool-ppc64le-sms-4.0", + "parent_channel_label": "sle-product-suse-manager-server-4.0-pool-ppc64le", + "product_id": 1869, + "repository_id": 3611, + "parent_product_id": 1770, + "root_product_id": 1897, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-15-SP1_ppc64le/standard/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-15-SP1-Standard-Pool for ppc64le SMS 4.0", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "suse-packagehub-15-sp1-debuginfo-ppc64le-sms-4.0", + "parent_channel_label": "sle-product-suse-manager-server-4.0-pool-ppc64le", + "product_id": 1869, + "repository_id": 3612, + "parent_product_id": 1770, + "root_product_id": 1897, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-15-SP1_ppc64le/standard_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-15-SP1-Debuginfo for ppc64le SMS 4.0", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-packagehub-subpackages15-sp1-updates-ppc64le-sms-4.0", + "parent_channel_label": "sle-product-suse-manager-server-4.0-pool-ppc64le", + "product_id": 1869, + "repository_id": 3613, + "parent_product_id": 1770, + "root_product_id": 1897, + "update_tag": "SLE-Module-Packagehub-Subpackages", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP1/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Packagehub-Subpackages15-SP1-Updates for ppc64le SMS 4.0", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-packagehub-subpackages15-sp1-debuginfo-updates-ppc64le-sms-4.0", + "parent_channel_label": "sle-product-suse-manager-server-4.0-pool-ppc64le", + "product_id": 1869, + "repository_id": 3614, + "parent_product_id": 1770, + "root_product_id": 1897, + "update_tag": "SLE-Module-Packagehub-Subpackages", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP1/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Packagehub-Subpackages15-SP1-Debuginfo-Updates for ppc64le SMS 4.0", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "suse-packagehub-15-sp1-pool-ppc64le-sms-4.0", + "parent_channel_label": "sle-product-suse-manager-server-4.0-pool-ppc64le", + "product_id": 1869, + "repository_id": 3615, + "parent_product_id": 1770, + "root_product_id": 1897, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-15-SP1_ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-15-SP1-Pool for ppc64le SMS 4.0", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-packagehub-subpackages15-sp1-pool-ppc64le-sms-4.0", + "parent_channel_label": "sle-product-suse-manager-server-4.0-pool-ppc64le", + "product_id": 1869, + "repository_id": 3616, + "parent_product_id": 1770, + "root_product_id": 1897, + "update_tag": "SLE-Module-Packagehub-Subpackages", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP1/ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Packagehub-Subpackages15-SP1-Pool for ppc64le SMS 4.0", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-packagehub-subpackages15-sp1-debuginfo-pool-ppc64le-sms-4.0", + "parent_channel_label": "sle-product-suse-manager-server-4.0-pool-ppc64le", + "product_id": 1869, + "repository_id": 3617, + "parent_product_id": 1770, + "root_product_id": 1897, + "update_tag": "SLE-Module-Packagehub-Subpackages", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP1/ppc64le/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Packagehub-Subpackages15-SP1-Debuginfo-Pool for ppc64le SMS 4.0", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-product-suse-manager-server-4.0-updates-s390x", + "parent_channel_label": "sle-product-suse-manager-server-4.0-pool-s390x", + "product_id": 1898, + "repository_id": 3803, + "parent_product_id": null, + "root_product_id": 1898, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-SUSE-Manager-Server/4.0/s390x/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-SUSE-Manager-Server-4.0-Updates for s390x", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-product-suse-manager-server-4.0-debuginfo-updates-s390x", + "parent_channel_label": "sle-product-suse-manager-server-4.0-pool-s390x", + "product_id": 1898, + "repository_id": 3804, + "parent_product_id": null, + "root_product_id": 1898, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-SUSE-Manager-Server/4.0/s390x/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-SUSE-Manager-Server-4.0-Debuginfo-Updates for s390x", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-product-suse-manager-server-4.0-pool-s390x", + "parent_channel_label": null, + "product_id": 1898, + "repository_id": 3805, + "parent_product_id": null, + "root_product_id": 1898, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-SUSE-Manager-Server/4.0/s390x/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-SUSE-Manager-Server-4.0-Pool for s390x", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-product-suse-manager-server-4.0-debuginfo-pool-s390x", + "parent_channel_label": "sle-product-suse-manager-server-4.0-pool-s390x", + "product_id": 1898, + "repository_id": 3806, + "parent_product_id": null, + "root_product_id": 1898, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-SUSE-Manager-Server/4.0/s390x/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-SUSE-Manager-Server-4.0-Debuginfo-Pool for s390x", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-basesystem15-sp1-updates-s390x-sms-4.0", + "parent_channel_label": "sle-product-suse-manager-server-4.0-pool-s390x", + "product_id": 1771, + "repository_id": 3256, + "parent_product_id": 1898, + "root_product_id": 1898, + "update_tag": "SLE-Module-Basesystem", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15-SP1/s390x/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Basesystem15-SP1-Updates for s390x SMS 4.0", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-basesystem15-sp1-debuginfo-updates-s390x-sms-4.0", + "parent_channel_label": "sle-product-suse-manager-server-4.0-pool-s390x", + "product_id": 1771, + "repository_id": 3257, + "parent_product_id": 1898, + "root_product_id": 1898, + "update_tag": "SLE-Module-Basesystem", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15-SP1/s390x/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Basesystem15-SP1-Debuginfo-Updates for s390x SMS 4.0", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-basesystem15-sp1-pool-s390x-sms-4.0", + "parent_channel_label": "sle-product-suse-manager-server-4.0-pool-s390x", + "product_id": 1771, + "repository_id": 3258, + "parent_product_id": 1898, + "root_product_id": 1898, + "update_tag": "SLE-Module-Basesystem", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP1/s390x/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Basesystem15-SP1-Pool for s390x SMS 4.0", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-basesystem15-sp1-debuginfo-pool-s390x-sms-4.0", + "parent_channel_label": "sle-product-suse-manager-server-4.0-pool-s390x", + "product_id": 1771, + "repository_id": 3259, + "parent_product_id": 1898, + "root_product_id": 1898, + "update_tag": "SLE-Module-Basesystem", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP1/s390x/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Basesystem15-SP1-Debuginfo-Pool for s390x SMS 4.0", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-desktop-applications15-sp1-updates-s390x-sms-4.0", + "parent_channel_label": "sle-product-suse-manager-server-4.0-pool-s390x", + "product_id": 1775, + "repository_id": 3276, + "parent_product_id": 1771, + "root_product_id": 1898, + "update_tag": "SLE-Module-Desktop-Applications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15-SP1/s390x/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Desktop-Applications15-SP1-Updates for s390x SMS 4.0", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-desktop-applications15-sp1-debuginfo-updates-s390x-sms-4.0", + "parent_channel_label": "sle-product-suse-manager-server-4.0-pool-s390x", + "product_id": 1775, + "repository_id": 3277, + "parent_product_id": 1771, + "root_product_id": 1898, + "update_tag": "SLE-Module-Desktop-Applications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15-SP1/s390x/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Desktop-Applications15-SP1-Debuginfo-Updates for s390x SMS 4.0", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-desktop-applications15-sp1-pool-s390x-sms-4.0", + "parent_channel_label": "sle-product-suse-manager-server-4.0-pool-s390x", + "product_id": 1775, + "repository_id": 3278, + "parent_product_id": 1771, + "root_product_id": 1898, + "update_tag": "SLE-Module-Desktop-Applications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP1/s390x/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Desktop-Applications15-SP1-Pool for s390x SMS 4.0", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-desktop-applications15-sp1-debuginfo-pool-s390x-sms-4.0", + "parent_channel_label": "sle-product-suse-manager-server-4.0-pool-s390x", + "product_id": 1775, + "repository_id": 3279, + "parent_product_id": 1771, + "root_product_id": 1898, + "update_tag": "SLE-Module-Desktop-Applications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP1/s390x/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Desktop-Applications15-SP1-Debuginfo-Pool for s390x SMS 4.0", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-devtools15-sp1-updates-s390x-sms-4.0", + "parent_channel_label": "sle-product-suse-manager-server-4.0-pool-s390x", + "product_id": 1793, + "repository_id": 3366, + "parent_product_id": 1775, + "root_product_id": 1898, + "update_tag": "SLE-Module-Development-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15-SP1/s390x/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-DevTools15-SP1-Updates for s390x SMS 4.0", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-devtools15-sp1-debuginfo-updates-s390x-sms-4.0", + "parent_channel_label": "sle-product-suse-manager-server-4.0-pool-s390x", + "product_id": 1793, + "repository_id": 3367, + "parent_product_id": 1775, + "root_product_id": 1898, + "update_tag": "SLE-Module-Development-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15-SP1/s390x/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-DevTools15-SP1-Debuginfo-Updates for s390x SMS 4.0", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-devtools15-sp1-pool-s390x-sms-4.0", + "parent_channel_label": "sle-product-suse-manager-server-4.0-pool-s390x", + "product_id": 1793, + "repository_id": 3368, + "parent_product_id": 1775, + "root_product_id": 1898, + "update_tag": "SLE-Module-Development-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP1/s390x/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-DevTools15-SP1-Pool for s390x SMS 4.0", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-devtools15-sp1-debuginfo-pool-s390x-sms-4.0", + "parent_channel_label": "sle-product-suse-manager-server-4.0-pool-s390x", + "product_id": 1793, + "repository_id": 3369, + "parent_product_id": 1775, + "root_product_id": 1898, + "update_tag": "SLE-Module-Development-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP1/s390x/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-DevTools15-SP1-Debuginfo-Pool for s390x SMS 4.0", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-server-applications15-sp1-updates-s390x-sms-4.0", + "parent_channel_label": "sle-product-suse-manager-server-4.0-pool-s390x", + "product_id": 1779, + "repository_id": 3296, + "parent_product_id": 1771, + "root_product_id": 1898, + "update_tag": "SLE-Module-Server-Applications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15-SP1/s390x/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Server-Applications15-SP1-Updates for s390x SMS 4.0", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-server-applications15-sp1-debuginfo-updates-s390x-sms-4.0", + "parent_channel_label": "sle-product-suse-manager-server-4.0-pool-s390x", + "product_id": 1779, + "repository_id": 3297, + "parent_product_id": 1771, + "root_product_id": 1898, + "update_tag": "SLE-Module-Server-Applications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15-SP1/s390x/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Server-Applications15-SP1-Debuginfo-Updates for s390x SMS 4.0", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-server-applications15-sp1-pool-s390x-sms-4.0", + "parent_channel_label": "sle-product-suse-manager-server-4.0-pool-s390x", + "product_id": 1779, + "repository_id": 3298, + "parent_product_id": 1771, + "root_product_id": 1898, + "update_tag": "SLE-Module-Server-Applications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP1/s390x/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Server-Applications15-SP1-Pool for s390x SMS 4.0", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-server-applications15-sp1-debuginfo-pool-s390x-sms-4.0", + "parent_channel_label": "sle-product-suse-manager-server-4.0-pool-s390x", + "product_id": 1779, + "repository_id": 3299, + "parent_product_id": 1771, + "root_product_id": 1898, + "update_tag": "SLE-Module-Server-Applications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP1/s390x/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Server-Applications15-SP1-Debuginfo-Pool for s390x SMS 4.0", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-product-ha15-sp1-updates-s390x-sms-4.0", + "parent_channel_label": "sle-product-suse-manager-server-4.0-pool-s390x", + "product_id": 1784, + "repository_id": 3321, + "parent_product_id": 1779, + "root_product_id": 1898, + "update_tag": "SLE-Product-HA", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-HA/15-SP1/s390x/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HA15-SP1-Updates for s390x SMS 4.0", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-product-ha15-sp1-debuginfo-updates-s390x-sms-4.0", + "parent_channel_label": "sle-product-suse-manager-server-4.0-pool-s390x", + "product_id": 1784, + "repository_id": 3322, + "parent_product_id": 1779, + "root_product_id": 1898, + "update_tag": "SLE-Product-HA", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-HA/15-SP1/s390x/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HA15-SP1-Debuginfo-Updates for s390x SMS 4.0", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-product-ha15-sp1-pool-s390x-sms-4.0", + "parent_channel_label": "sle-product-suse-manager-server-4.0-pool-s390x", + "product_id": 1784, + "repository_id": 3323, + "parent_product_id": 1779, + "root_product_id": 1898, + "update_tag": "SLE-Product-HA", + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP1/s390x/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HA15-SP1-Pool for s390x SMS 4.0", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-product-ha15-sp1-debuginfo-pool-s390x-sms-4.0", + "parent_channel_label": "sle-product-suse-manager-server-4.0-pool-s390x", + "product_id": 1784, + "repository_id": 3324, + "parent_product_id": 1779, + "root_product_id": 1898, + "update_tag": "SLE-Product-HA", + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP1/s390x/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HA15-SP1-Debuginfo-Pool for s390x SMS 4.0", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-web-scripting15-sp1-updates-s390x-sms-4.0", + "parent_channel_label": "sle-product-suse-manager-server-4.0-pool-s390x", + "product_id": 1797, + "repository_id": 3386, + "parent_product_id": 1779, + "root_product_id": 1898, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/15-SP1/s390x/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Web-Scripting15-SP1-Updates for s390x SMS 4.0", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-web-scripting15-sp1-debuginfo-updates-s390x-sms-4.0", + "parent_channel_label": "sle-product-suse-manager-server-4.0-pool-s390x", + "product_id": 1797, + "repository_id": 3387, + "parent_product_id": 1779, + "root_product_id": 1898, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/15-SP1/s390x/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Web-Scripting15-SP1-Debuginfo-Updates for s390x SMS 4.0", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-web-scripting15-sp1-pool-s390x-sms-4.0", + "parent_channel_label": "sle-product-suse-manager-server-4.0-pool-s390x", + "product_id": 1797, + "repository_id": 3388, + "parent_product_id": 1779, + "root_product_id": 1898, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP1/s390x/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Web-Scripting15-SP1-Pool for s390x SMS 4.0", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-web-scripting15-sp1-debuginfo-pool-s390x-sms-4.0", + "parent_channel_label": "sle-product-suse-manager-server-4.0-pool-s390x", + "product_id": 1797, + "repository_id": 3389, + "parent_product_id": 1779, + "root_product_id": 1898, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP1/s390x/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Web-Scripting15-SP1-Debuginfo-Pool for s390x SMS 4.0", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-suse-manager-server-4.0-updates-s390x", + "parent_channel_label": "sle-product-suse-manager-server-4.0-pool-s390x", + "product_id": 1904, + "repository_id": 3818, + "parent_product_id": 1797, + "root_product_id": 1898, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-SUSE-Manager-Server/4.0/s390x/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-SUSE-Manager-Server-4.0-Updates for s390x", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-suse-manager-server-4.0-debuginfo-updates-s390x", + "parent_channel_label": "sle-product-suse-manager-server-4.0-pool-s390x", + "product_id": 1904, + "repository_id": 3819, + "parent_product_id": 1797, + "root_product_id": 1898, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-SUSE-Manager-Server/4.0/s390x/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-SUSE-Manager-Server-4.0-Debuginfo-Updates for s390x", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-suse-manager-server-4.0-pool-s390x", + "parent_channel_label": "sle-product-suse-manager-server-4.0-pool-s390x", + "product_id": 1904, + "repository_id": 3820, + "parent_product_id": 1797, + "root_product_id": 1898, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-SUSE-Manager-Server/4.0/s390x/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-SUSE-Manager-Server-4.0-Pool for s390x", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-suse-manager-server-4.0-debuginfo-pool-s390x", + "parent_channel_label": "sle-product-suse-manager-server-4.0-pool-s390x", + "product_id": 1904, + "repository_id": 3821, + "parent_product_id": 1797, + "root_product_id": 1898, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-SUSE-Manager-Server/4.0/s390x/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-SUSE-Manager-Server-4.0-Debuginfo-Pool for s390x", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-legacy15-sp1-updates-s390x-sms-4.0", + "parent_channel_label": "sle-product-suse-manager-server-4.0-pool-s390x", + "product_id": 1803, + "repository_id": 3416, + "parent_product_id": 1779, + "root_product_id": 1898, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/15-SP1/s390x/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy15-SP1-Updates for s390x SMS 4.0", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-legacy15-sp1-debuginfo-updates-s390x-sms-4.0", + "parent_channel_label": "sle-product-suse-manager-server-4.0-pool-s390x", + "product_id": 1803, + "repository_id": 3417, + "parent_product_id": 1779, + "root_product_id": 1898, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/15-SP1/s390x/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy15-SP1-Debuginfo-Updates for s390x SMS 4.0", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-legacy15-sp1-pool-s390x-sms-4.0", + "parent_channel_label": "sle-product-suse-manager-server-4.0-pool-s390x", + "product_id": 1803, + "repository_id": 3418, + "parent_product_id": 1779, + "root_product_id": 1898, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15-SP1/s390x/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy15-SP1-Pool for s390x SMS 4.0", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-legacy15-sp1-debuginfo-pool-s390x-sms-4.0", + "parent_channel_label": "sle-product-suse-manager-server-4.0-pool-s390x", + "product_id": 1803, + "repository_id": 3419, + "parent_product_id": 1779, + "root_product_id": 1898, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15-SP1/s390x/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy15-SP1-Debuginfo-Pool for s390x SMS 4.0", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-public-cloud15-sp1-updates-s390x-sms-4.0", + "parent_channel_label": "sle-product-suse-manager-server-4.0-pool-s390x", + "product_id": 1807, + "repository_id": 3436, + "parent_product_id": 1779, + "root_product_id": 1898, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/15-SP1/s390x/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud15-SP1-Updates for s390x SMS 4.0", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-public-cloud15-sp1-debuginfo-updates-s390x-sms-4.0", + "parent_channel_label": "sle-product-suse-manager-server-4.0-pool-s390x", + "product_id": 1807, + "repository_id": 3437, + "parent_product_id": 1779, + "root_product_id": 1898, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/15-SP1/s390x/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud15-SP1-Debuginfo-Updates for s390x SMS 4.0", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-public-cloud15-sp1-pool-s390x-sms-4.0", + "parent_channel_label": "sle-product-suse-manager-server-4.0-pool-s390x", + "product_id": 1807, + "repository_id": 3438, + "parent_product_id": 1779, + "root_product_id": 1898, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP1/s390x/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud15-SP1-Pool for s390x SMS 4.0", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-public-cloud15-sp1-debuginfo-pool-s390x-sms-4.0", + "parent_channel_label": "sle-product-suse-manager-server-4.0-pool-s390x", + "product_id": 1807, + "repository_id": 3439, + "parent_product_id": 1779, + "root_product_id": 1898, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP1/s390x/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud15-SP1-Debuginfo-Pool for s390x SMS 4.0", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-containers15-sp1-updates-s390x-sms-4.0", + "parent_channel_label": "sle-product-suse-manager-server-4.0-pool-s390x", + "product_id": 1789, + "repository_id": 3346, + "parent_product_id": 1771, + "root_product_id": 1898, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/15-SP1/s390x/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers15-SP1-Updates for s390x SMS 4.0", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-containers15-sp1-debuginfo-updates-s390x-sms-4.0", + "parent_channel_label": "sle-product-suse-manager-server-4.0-pool-s390x", + "product_id": 1789, + "repository_id": 3347, + "parent_product_id": 1771, + "root_product_id": 1898, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/15-SP1/s390x/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers15-SP1-Debuginfo-Updates for s390x SMS 4.0", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-containers15-sp1-pool-s390x-sms-4.0", + "parent_channel_label": "sle-product-suse-manager-server-4.0-pool-s390x", + "product_id": 1789, + "repository_id": 3348, + "parent_product_id": 1771, + "root_product_id": 1898, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP1/s390x/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers15-SP1-Pool for s390x SMS 4.0", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-containers15-sp1-debuginfo-pool-s390x-sms-4.0", + "parent_channel_label": "sle-product-suse-manager-server-4.0-pool-s390x", + "product_id": 1789, + "repository_id": 3349, + "parent_product_id": 1771, + "root_product_id": 1898, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP1/s390x/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers15-SP1-Debuginfo-Pool for s390x SMS 4.0", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-python2-15-sp1-updates-s390x-sms-4.0", + "parent_channel_label": "sle-product-suse-manager-server-4.0-pool-s390x", + "product_id": 1866, + "repository_id": 3593, + "parent_product_id": 1771, + "root_product_id": 1898, + "update_tag": "SLE-Module-Python2", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Python2/15-SP1/s390x/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Python2-15-SP1-Updates for s390x SMS 4.0", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-python2-15-sp1-debuginfo-updates-s390x-sms-4.0", + "parent_channel_label": "sle-product-suse-manager-server-4.0-pool-s390x", + "product_id": 1866, + "repository_id": 3594, + "parent_product_id": 1771, + "root_product_id": 1898, + "update_tag": "SLE-Module-Python2", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Python2/15-SP1/s390x/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Python2-15-SP1-Debuginfo-Updates for s390x SMS 4.0", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-python2-15-sp1-pool-s390x-sms-4.0", + "parent_channel_label": "sle-product-suse-manager-server-4.0-pool-s390x", + "product_id": 1866, + "repository_id": 3595, + "parent_product_id": 1771, + "root_product_id": 1898, + "update_tag": "SLE-Module-Python2", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Python2/15-SP1/s390x/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Python2-15-SP1-Pool for s390x SMS 4.0", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-python2-15-sp1-debuginfo-pool-s390x-sms-4.0", + "parent_channel_label": "sle-product-suse-manager-server-4.0-pool-s390x", + "product_id": 1866, + "repository_id": 3596, + "parent_product_id": 1771, + "root_product_id": 1898, + "update_tag": "SLE-Module-Python2", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Python2/15-SP1/s390x/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Python2-15-SP1-Debuginfo-Pool for s390x SMS 4.0", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "suse-packagehub-15-sp1-standard-pool-s390x-sms-4.0", + "parent_channel_label": "sle-product-suse-manager-server-4.0-pool-s390x", + "product_id": 1870, + "repository_id": 3619, + "parent_product_id": 1771, + "root_product_id": 1898, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-15-SP1_s390x/standard/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-15-SP1-Standard-Pool for s390x SMS 4.0", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "suse-packagehub-15-sp1-debuginfo-s390x-sms-4.0", + "parent_channel_label": "sle-product-suse-manager-server-4.0-pool-s390x", + "product_id": 1870, + "repository_id": 3620, + "parent_product_id": 1771, + "root_product_id": 1898, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-15-SP1_s390x/standard_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-15-SP1-Debuginfo for s390x SMS 4.0", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-packagehub-subpackages15-sp1-updates-s390x-sms-4.0", + "parent_channel_label": "sle-product-suse-manager-server-4.0-pool-s390x", + "product_id": 1870, + "repository_id": 3621, + "parent_product_id": 1771, + "root_product_id": 1898, + "update_tag": "SLE-Module-Packagehub-Subpackages", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP1/s390x/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Packagehub-Subpackages15-SP1-Updates for s390x SMS 4.0", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-packagehub-subpackages15-sp1-debuginfo-updates-s390x-sms-4.0", + "parent_channel_label": "sle-product-suse-manager-server-4.0-pool-s390x", + "product_id": 1870, + "repository_id": 3622, + "parent_product_id": 1771, + "root_product_id": 1898, + "update_tag": "SLE-Module-Packagehub-Subpackages", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP1/s390x/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Packagehub-Subpackages15-SP1-Debuginfo-Updates for s390x SMS 4.0", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "suse-packagehub-15-sp1-pool-s390x-sms-4.0", + "parent_channel_label": "sle-product-suse-manager-server-4.0-pool-s390x", + "product_id": 1870, + "repository_id": 3623, + "parent_product_id": 1771, + "root_product_id": 1898, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-15-SP1_s390x/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-15-SP1-Pool for s390x SMS 4.0", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-packagehub-subpackages15-sp1-pool-s390x-sms-4.0", + "parent_channel_label": "sle-product-suse-manager-server-4.0-pool-s390x", + "product_id": 1870, + "repository_id": 3624, + "parent_product_id": 1771, + "root_product_id": 1898, + "update_tag": "SLE-Module-Packagehub-Subpackages", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP1/s390x/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Packagehub-Subpackages15-SP1-Pool for s390x SMS 4.0", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-packagehub-subpackages15-sp1-debuginfo-pool-s390x-sms-4.0", + "parent_channel_label": "sle-product-suse-manager-server-4.0-pool-s390x", + "product_id": 1870, + "repository_id": 3625, + "parent_product_id": 1771, + "root_product_id": 1898, + "update_tag": "SLE-Module-Packagehub-Subpackages", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP1/s390x/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Packagehub-Subpackages15-SP1-Debuginfo-Pool for s390x SMS 4.0", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-product-suse-manager-server-4.0-updates-x86_64", + "parent_channel_label": "sle-product-suse-manager-server-4.0-pool-x86_64", + "product_id": 1899, + "repository_id": 3808, + "parent_product_id": null, + "root_product_id": 1899, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-SUSE-Manager-Server/4.0/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-SUSE-Manager-Server-4.0-Updates for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-product-suse-manager-server-4.0-debuginfo-updates-x86_64", + "parent_channel_label": "sle-product-suse-manager-server-4.0-pool-x86_64", + "product_id": 1899, + "repository_id": 3809, + "parent_product_id": null, + "root_product_id": 1899, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-SUSE-Manager-Server/4.0/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-SUSE-Manager-Server-4.0-Debuginfo-Updates for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-product-suse-manager-server-4.0-pool-x86_64", + "parent_channel_label": null, + "product_id": 1899, + "repository_id": 3810, + "parent_product_id": null, + "root_product_id": 1899, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-SUSE-Manager-Server/4.0/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-SUSE-Manager-Server-4.0-Pool for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-product-suse-manager-server-4.0-debuginfo-pool-x86_64", + "parent_channel_label": "sle-product-suse-manager-server-4.0-pool-x86_64", + "product_id": 1899, + "repository_id": 3811, + "parent_product_id": null, + "root_product_id": 1899, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-SUSE-Manager-Server/4.0/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-SUSE-Manager-Server-4.0-Debuginfo-Pool for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-basesystem15-sp1-updates-x86_64-sms-4.0", + "parent_channel_label": "sle-product-suse-manager-server-4.0-pool-x86_64", + "product_id": 1772, + "repository_id": 3261, + "parent_product_id": 1899, + "root_product_id": 1899, + "update_tag": "SLE-Module-Basesystem", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15-SP1/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Basesystem15-SP1-Updates for x86_64 SMS 4.0", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-basesystem15-sp1-debuginfo-updates-x86_64-sms-4.0", + "parent_channel_label": "sle-product-suse-manager-server-4.0-pool-x86_64", + "product_id": 1772, + "repository_id": 3262, + "parent_product_id": 1899, + "root_product_id": 1899, + "update_tag": "SLE-Module-Basesystem", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15-SP1/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Basesystem15-SP1-Debuginfo-Updates for x86_64 SMS 4.0", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-basesystem15-sp1-pool-x86_64-sms-4.0", + "parent_channel_label": "sle-product-suse-manager-server-4.0-pool-x86_64", + "product_id": 1772, + "repository_id": 3263, + "parent_product_id": 1899, + "root_product_id": 1899, + "update_tag": "SLE-Module-Basesystem", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP1/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Basesystem15-SP1-Pool for x86_64 SMS 4.0", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-basesystem15-sp1-debuginfo-pool-x86_64-sms-4.0", + "parent_channel_label": "sle-product-suse-manager-server-4.0-pool-x86_64", + "product_id": 1772, + "repository_id": 3264, + "parent_product_id": 1899, + "root_product_id": 1899, + "update_tag": "SLE-Module-Basesystem", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP1/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Basesystem15-SP1-Debuginfo-Pool for x86_64 SMS 4.0", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-desktop-applications15-sp1-updates-x86_64-sms-4.0", + "parent_channel_label": "sle-product-suse-manager-server-4.0-pool-x86_64", + "product_id": 1776, + "repository_id": 3281, + "parent_product_id": 1772, + "root_product_id": 1899, + "update_tag": "SLE-Module-Desktop-Applications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15-SP1/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Desktop-Applications15-SP1-Updates for x86_64 SMS 4.0", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-desktop-applications15-sp1-debuginfo-updates-x86_64-sms-4.0", + "parent_channel_label": "sle-product-suse-manager-server-4.0-pool-x86_64", + "product_id": 1776, + "repository_id": 3282, + "parent_product_id": 1772, + "root_product_id": 1899, + "update_tag": "SLE-Module-Desktop-Applications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15-SP1/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Desktop-Applications15-SP1-Debuginfo-Updates for x86_64 SMS 4.0", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-desktop-applications15-sp1-pool-x86_64-sms-4.0", + "parent_channel_label": "sle-product-suse-manager-server-4.0-pool-x86_64", + "product_id": 1776, + "repository_id": 3283, + "parent_product_id": 1772, + "root_product_id": 1899, + "update_tag": "SLE-Module-Desktop-Applications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP1/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Desktop-Applications15-SP1-Pool for x86_64 SMS 4.0", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-desktop-applications15-sp1-debuginfo-pool-x86_64-sms-4.0", + "parent_channel_label": "sle-product-suse-manager-server-4.0-pool-x86_64", + "product_id": 1776, + "repository_id": 3284, + "parent_product_id": 1772, + "root_product_id": 1899, + "update_tag": "SLE-Module-Desktop-Applications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP1/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Desktop-Applications15-SP1-Debuginfo-Pool for x86_64 SMS 4.0", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-devtools15-sp1-updates-x86_64-sms-4.0", + "parent_channel_label": "sle-product-suse-manager-server-4.0-pool-x86_64", + "product_id": 1794, + "repository_id": 3371, + "parent_product_id": 1776, + "root_product_id": 1899, + "update_tag": "SLE-Module-Development-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15-SP1/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-DevTools15-SP1-Updates for x86_64 SMS 4.0", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-devtools15-sp1-debuginfo-updates-x86_64-sms-4.0", + "parent_channel_label": "sle-product-suse-manager-server-4.0-pool-x86_64", + "product_id": 1794, + "repository_id": 3372, + "parent_product_id": 1776, + "root_product_id": 1899, + "update_tag": "SLE-Module-Development-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15-SP1/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-DevTools15-SP1-Debuginfo-Updates for x86_64 SMS 4.0", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-devtools15-sp1-pool-x86_64-sms-4.0", + "parent_channel_label": "sle-product-suse-manager-server-4.0-pool-x86_64", + "product_id": 1794, + "repository_id": 3373, + "parent_product_id": 1776, + "root_product_id": 1899, + "update_tag": "SLE-Module-Development-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP1/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-DevTools15-SP1-Pool for x86_64 SMS 4.0", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-devtools15-sp1-debuginfo-pool-x86_64-sms-4.0", + "parent_channel_label": "sle-product-suse-manager-server-4.0-pool-x86_64", + "product_id": 1794, + "repository_id": 3374, + "parent_product_id": 1776, + "root_product_id": 1899, + "update_tag": "SLE-Module-Development-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP1/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-DevTools15-SP1-Debuginfo-Pool for x86_64 SMS 4.0", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-server-applications15-sp1-updates-x86_64-sms-4.0", + "parent_channel_label": "sle-product-suse-manager-server-4.0-pool-x86_64", + "product_id": 1780, + "repository_id": 3301, + "parent_product_id": 1772, + "root_product_id": 1899, + "update_tag": "SLE-Module-Server-Applications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15-SP1/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Server-Applications15-SP1-Updates for x86_64 SMS 4.0", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-server-applications15-sp1-debuginfo-updates-x86_64-sms-4.0", + "parent_channel_label": "sle-product-suse-manager-server-4.0-pool-x86_64", + "product_id": 1780, + "repository_id": 3302, + "parent_product_id": 1772, + "root_product_id": 1899, + "update_tag": "SLE-Module-Server-Applications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15-SP1/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Server-Applications15-SP1-Debuginfo-Updates for x86_64 SMS 4.0", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-server-applications15-sp1-pool-x86_64-sms-4.0", + "parent_channel_label": "sle-product-suse-manager-server-4.0-pool-x86_64", + "product_id": 1780, + "repository_id": 3303, + "parent_product_id": 1772, + "root_product_id": 1899, + "update_tag": "SLE-Module-Server-Applications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP1/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Server-Applications15-SP1-Pool for x86_64 SMS 4.0", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-server-applications15-sp1-debuginfo-pool-x86_64-sms-4.0", + "parent_channel_label": "sle-product-suse-manager-server-4.0-pool-x86_64", + "product_id": 1780, + "repository_id": 3304, + "parent_product_id": 1772, + "root_product_id": 1899, + "update_tag": "SLE-Module-Server-Applications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP1/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Server-Applications15-SP1-Debuginfo-Pool for x86_64 SMS 4.0", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-product-ha15-sp1-updates-x86_64-sms-4.0", + "parent_channel_label": "sle-product-suse-manager-server-4.0-pool-x86_64", + "product_id": 1785, + "repository_id": 3326, + "parent_product_id": 1780, + "root_product_id": 1899, + "update_tag": "SLE-Product-HA", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-HA/15-SP1/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HA15-SP1-Updates for x86_64 SMS 4.0", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-product-ha15-sp1-debuginfo-updates-x86_64-sms-4.0", + "parent_channel_label": "sle-product-suse-manager-server-4.0-pool-x86_64", + "product_id": 1785, + "repository_id": 3327, + "parent_product_id": 1780, + "root_product_id": 1899, + "update_tag": "SLE-Product-HA", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-HA/15-SP1/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HA15-SP1-Debuginfo-Updates for x86_64 SMS 4.0", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-product-ha15-sp1-pool-x86_64-sms-4.0", + "parent_channel_label": "sle-product-suse-manager-server-4.0-pool-x86_64", + "product_id": 1785, + "repository_id": 3328, + "parent_product_id": 1780, + "root_product_id": 1899, + "update_tag": "SLE-Product-HA", + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP1/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HA15-SP1-Pool for x86_64 SMS 4.0", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-product-ha15-sp1-debuginfo-pool-x86_64-sms-4.0", + "parent_channel_label": "sle-product-suse-manager-server-4.0-pool-x86_64", + "product_id": 1785, + "repository_id": 3329, + "parent_product_id": 1780, + "root_product_id": 1899, + "update_tag": "SLE-Product-HA", + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP1/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HA15-SP1-Debuginfo-Pool for x86_64 SMS 4.0", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-web-scripting15-sp1-updates-x86_64-sms-4.0", + "parent_channel_label": "sle-product-suse-manager-server-4.0-pool-x86_64", + "product_id": 1798, + "repository_id": 3391, + "parent_product_id": 1780, + "root_product_id": 1899, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/15-SP1/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Web-Scripting15-SP1-Updates for x86_64 SMS 4.0", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-web-scripting15-sp1-debuginfo-updates-x86_64-sms-4.0", + "parent_channel_label": "sle-product-suse-manager-server-4.0-pool-x86_64", + "product_id": 1798, + "repository_id": 3392, + "parent_product_id": 1780, + "root_product_id": 1899, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/15-SP1/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Web-Scripting15-SP1-Debuginfo-Updates for x86_64 SMS 4.0", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-web-scripting15-sp1-pool-x86_64-sms-4.0", + "parent_channel_label": "sle-product-suse-manager-server-4.0-pool-x86_64", + "product_id": 1798, + "repository_id": 3393, + "parent_product_id": 1780, + "root_product_id": 1899, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP1/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Web-Scripting15-SP1-Pool for x86_64 SMS 4.0", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-web-scripting15-sp1-debuginfo-pool-x86_64-sms-4.0", + "parent_channel_label": "sle-product-suse-manager-server-4.0-pool-x86_64", + "product_id": 1798, + "repository_id": 3394, + "parent_product_id": 1780, + "root_product_id": 1899, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP1/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Web-Scripting15-SP1-Debuginfo-Pool for x86_64 SMS 4.0", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-suse-manager-server-4.0-updates-x86_64", + "parent_channel_label": "sle-product-suse-manager-server-4.0-pool-x86_64", + "product_id": 1905, + "repository_id": 3823, + "parent_product_id": 1798, + "root_product_id": 1899, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-SUSE-Manager-Server/4.0/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-SUSE-Manager-Server-4.0-Updates for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-suse-manager-server-4.0-debuginfo-updates-x86_64", + "parent_channel_label": "sle-product-suse-manager-server-4.0-pool-x86_64", + "product_id": 1905, + "repository_id": 3824, + "parent_product_id": 1798, + "root_product_id": 1899, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-SUSE-Manager-Server/4.0/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-SUSE-Manager-Server-4.0-Debuginfo-Updates for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-suse-manager-server-4.0-pool-x86_64", + "parent_channel_label": "sle-product-suse-manager-server-4.0-pool-x86_64", + "product_id": 1905, + "repository_id": 3825, + "parent_product_id": 1798, + "root_product_id": 1899, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-SUSE-Manager-Server/4.0/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-SUSE-Manager-Server-4.0-Pool for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-suse-manager-server-4.0-debuginfo-pool-x86_64", + "parent_channel_label": "sle-product-suse-manager-server-4.0-pool-x86_64", + "product_id": 1905, + "repository_id": 3826, + "parent_product_id": 1798, + "root_product_id": 1899, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-SUSE-Manager-Server/4.0/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-SUSE-Manager-Server-4.0-Debuginfo-Pool for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-legacy15-sp1-updates-x86_64-sms-4.0", + "parent_channel_label": "sle-product-suse-manager-server-4.0-pool-x86_64", + "product_id": 1804, + "repository_id": 3421, + "parent_product_id": 1780, + "root_product_id": 1899, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/15-SP1/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy15-SP1-Updates for x86_64 SMS 4.0", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-legacy15-sp1-debuginfo-updates-x86_64-sms-4.0", + "parent_channel_label": "sle-product-suse-manager-server-4.0-pool-x86_64", + "product_id": 1804, + "repository_id": 3422, + "parent_product_id": 1780, + "root_product_id": 1899, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/15-SP1/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy15-SP1-Debuginfo-Updates for x86_64 SMS 4.0", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-legacy15-sp1-pool-x86_64-sms-4.0", + "parent_channel_label": "sle-product-suse-manager-server-4.0-pool-x86_64", + "product_id": 1804, + "repository_id": 3423, + "parent_product_id": 1780, + "root_product_id": 1899, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15-SP1/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy15-SP1-Pool for x86_64 SMS 4.0", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-legacy15-sp1-debuginfo-pool-x86_64-sms-4.0", + "parent_channel_label": "sle-product-suse-manager-server-4.0-pool-x86_64", + "product_id": 1804, + "repository_id": 3424, + "parent_product_id": 1780, + "root_product_id": 1899, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15-SP1/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy15-SP1-Debuginfo-Pool for x86_64 SMS 4.0", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-public-cloud15-sp1-updates-x86_64-sms-4.0", + "parent_channel_label": "sle-product-suse-manager-server-4.0-pool-x86_64", + "product_id": 1808, + "repository_id": 3441, + "parent_product_id": 1780, + "root_product_id": 1899, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/15-SP1/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud15-SP1-Updates for x86_64 SMS 4.0", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-public-cloud15-sp1-debuginfo-updates-x86_64-sms-4.0", + "parent_channel_label": "sle-product-suse-manager-server-4.0-pool-x86_64", + "product_id": 1808, + "repository_id": 3442, + "parent_product_id": 1780, + "root_product_id": 1899, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/15-SP1/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud15-SP1-Debuginfo-Updates for x86_64 SMS 4.0", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-public-cloud15-sp1-pool-x86_64-sms-4.0", + "parent_channel_label": "sle-product-suse-manager-server-4.0-pool-x86_64", + "product_id": 1808, + "repository_id": 3443, + "parent_product_id": 1780, + "root_product_id": 1899, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP1/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud15-SP1-Pool for x86_64 SMS 4.0", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-public-cloud15-sp1-debuginfo-pool-x86_64-sms-4.0", + "parent_channel_label": "sle-product-suse-manager-server-4.0-pool-x86_64", + "product_id": 1808, + "repository_id": 3444, + "parent_product_id": 1780, + "root_product_id": 1899, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP1/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud15-SP1-Debuginfo-Pool for x86_64 SMS 4.0", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-containers15-sp1-updates-x86_64-sms-4.0", + "parent_channel_label": "sle-product-suse-manager-server-4.0-pool-x86_64", + "product_id": 1790, + "repository_id": 3351, + "parent_product_id": 1772, + "root_product_id": 1899, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/15-SP1/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers15-SP1-Updates for x86_64 SMS 4.0", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-containers15-sp1-debuginfo-updates-x86_64-sms-4.0", + "parent_channel_label": "sle-product-suse-manager-server-4.0-pool-x86_64", + "product_id": 1790, + "repository_id": 3352, + "parent_product_id": 1772, + "root_product_id": 1899, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/15-SP1/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers15-SP1-Debuginfo-Updates for x86_64 SMS 4.0", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-containers15-sp1-pool-x86_64-sms-4.0", + "parent_channel_label": "sle-product-suse-manager-server-4.0-pool-x86_64", + "product_id": 1790, + "repository_id": 3353, + "parent_product_id": 1772, + "root_product_id": 1899, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP1/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers15-SP1-Pool for x86_64 SMS 4.0", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-containers15-sp1-debuginfo-pool-x86_64-sms-4.0", + "parent_channel_label": "sle-product-suse-manager-server-4.0-pool-x86_64", + "product_id": 1790, + "repository_id": 3354, + "parent_product_id": 1772, + "root_product_id": 1899, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP1/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers15-SP1-Debuginfo-Pool for x86_64 SMS 4.0", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-python2-15-sp1-updates-x86_64-sms-4.0", + "parent_channel_label": "sle-product-suse-manager-server-4.0-pool-x86_64", + "product_id": 1867, + "repository_id": 3598, + "parent_product_id": 1772, + "root_product_id": 1899, + "update_tag": "SLE-Module-Python2", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Python2/15-SP1/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Python2-15-SP1-Updates for x86_64 SMS 4.0", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-python2-15-sp1-debuginfo-updates-x86_64-sms-4.0", + "parent_channel_label": "sle-product-suse-manager-server-4.0-pool-x86_64", + "product_id": 1867, + "repository_id": 3599, + "parent_product_id": 1772, + "root_product_id": 1899, + "update_tag": "SLE-Module-Python2", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Python2/15-SP1/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Python2-15-SP1-Debuginfo-Updates for x86_64 SMS 4.0", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-python2-15-sp1-pool-x86_64-sms-4.0", + "parent_channel_label": "sle-product-suse-manager-server-4.0-pool-x86_64", + "product_id": 1867, + "repository_id": 3600, + "parent_product_id": 1772, + "root_product_id": 1899, + "update_tag": "SLE-Module-Python2", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Python2/15-SP1/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Python2-15-SP1-Pool for x86_64 SMS 4.0", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-python2-15-sp1-debuginfo-pool-x86_64-sms-4.0", + "parent_channel_label": "sle-product-suse-manager-server-4.0-pool-x86_64", + "product_id": 1867, + "repository_id": 3601, + "parent_product_id": 1772, + "root_product_id": 1899, + "update_tag": "SLE-Module-Python2", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Python2/15-SP1/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Python2-15-SP1-Debuginfo-Pool for x86_64 SMS 4.0", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "suse-packagehub-15-sp1-standard-pool-x86_64-sms-4.0", + "parent_channel_label": "sle-product-suse-manager-server-4.0-pool-x86_64", + "product_id": 1871, + "repository_id": 3627, + "parent_product_id": 1772, + "root_product_id": 1899, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-15-SP1_x86_64/standard/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-15-SP1-Standard-Pool for x86_64 SMS 4.0", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "suse-packagehub-15-sp1-debuginfo-x86_64-sms-4.0", + "parent_channel_label": "sle-product-suse-manager-server-4.0-pool-x86_64", + "product_id": 1871, + "repository_id": 3628, + "parent_product_id": 1772, + "root_product_id": 1899, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-15-SP1_x86_64/standard_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-15-SP1-Debuginfo for x86_64 SMS 4.0", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-packagehub-subpackages15-sp1-updates-x86_64-sms-4.0", + "parent_channel_label": "sle-product-suse-manager-server-4.0-pool-x86_64", + "product_id": 1871, + "repository_id": 3629, + "parent_product_id": 1772, + "root_product_id": 1899, + "update_tag": "SLE-Module-Packagehub-Subpackages", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP1/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Packagehub-Subpackages15-SP1-Updates for x86_64 SMS 4.0", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-packagehub-subpackages15-sp1-debuginfo-updates-x86_64-sms-4.0", + "parent_channel_label": "sle-product-suse-manager-server-4.0-pool-x86_64", + "product_id": 1871, + "repository_id": 3630, + "parent_product_id": 1772, + "root_product_id": 1899, + "update_tag": "SLE-Module-Packagehub-Subpackages", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP1/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Packagehub-Subpackages15-SP1-Debuginfo-Updates for x86_64 SMS 4.0", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "suse-packagehub-15-sp1-pool-x86_64-sms-4.0", + "parent_channel_label": "sle-product-suse-manager-server-4.0-pool-x86_64", + "product_id": 1871, + "repository_id": 3631, + "parent_product_id": 1772, + "root_product_id": 1899, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-15-SP1_x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-15-SP1-Pool for x86_64 SMS 4.0", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-packagehub-subpackages15-sp1-pool-x86_64-sms-4.0", + "parent_channel_label": "sle-product-suse-manager-server-4.0-pool-x86_64", + "product_id": 1871, + "repository_id": 3632, + "parent_product_id": 1772, + "root_product_id": 1899, + "update_tag": "SLE-Module-Packagehub-Subpackages", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP1/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Packagehub-Subpackages15-SP1-Pool for x86_64 SMS 4.0", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-packagehub-subpackages15-sp1-debuginfo-pool-x86_64-sms-4.0", + "parent_channel_label": "sle-product-suse-manager-server-4.0-pool-x86_64", + "product_id": 1871, + "repository_id": 3633, + "parent_product_id": 1772, + "root_product_id": 1899, + "update_tag": "SLE-Module-Packagehub-Subpackages", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP1/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Packagehub-Subpackages15-SP1-Debuginfo-Pool for x86_64 SMS 4.0", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-product-suse-manager-proxy-4.0-updates-x86_64", + "parent_channel_label": "sle-product-suse-manager-proxy-4.0-pool-x86_64", + "product_id": 1900, + "repository_id": 3828, + "parent_product_id": null, + "root_product_id": 1900, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-SUSE-Manager-Proxy/4.0/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-SUSE-Manager-Proxy-4.0-Updates for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-product-suse-manager-proxy-4.0-debuginfo-updates-x86_64", + "parent_channel_label": "sle-product-suse-manager-proxy-4.0-pool-x86_64", + "product_id": 1900, + "repository_id": 3829, + "parent_product_id": null, + "root_product_id": 1900, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-SUSE-Manager-Proxy/4.0/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-SUSE-Manager-Proxy-4.0-Debuginfo-Updates for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-product-suse-manager-proxy-4.0-pool-x86_64", + "parent_channel_label": null, + "product_id": 1900, + "repository_id": 3830, + "parent_product_id": null, + "root_product_id": 1900, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-SUSE-Manager-Proxy/4.0/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-SUSE-Manager-Proxy-4.0-Pool for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-product-suse-manager-proxy-4.0-debuginfo-pool-x86_64", + "parent_channel_label": "sle-product-suse-manager-proxy-4.0-pool-x86_64", + "product_id": 1900, + "repository_id": 3831, + "parent_product_id": null, + "root_product_id": 1900, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-SUSE-Manager-Proxy/4.0/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-SUSE-Manager-Proxy-4.0-Debuginfo-Pool for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-basesystem15-sp1-updates-x86_64-proxy-4.0", + "parent_channel_label": "sle-product-suse-manager-proxy-4.0-pool-x86_64", + "product_id": 1772, + "repository_id": 3261, + "parent_product_id": 1900, + "root_product_id": 1900, + "update_tag": "SLE-Module-Basesystem", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15-SP1/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Basesystem15-SP1-Updates for x86_64 Proxy 4.0", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-basesystem15-sp1-debuginfo-updates-x86_64-proxy-4.0", + "parent_channel_label": "sle-product-suse-manager-proxy-4.0-pool-x86_64", + "product_id": 1772, + "repository_id": 3262, + "parent_product_id": 1900, + "root_product_id": 1900, + "update_tag": "SLE-Module-Basesystem", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15-SP1/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Basesystem15-SP1-Debuginfo-Updates for x86_64 Proxy 4.0", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-basesystem15-sp1-pool-x86_64-proxy-4.0", + "parent_channel_label": "sle-product-suse-manager-proxy-4.0-pool-x86_64", + "product_id": 1772, + "repository_id": 3263, + "parent_product_id": 1900, + "root_product_id": 1900, + "update_tag": "SLE-Module-Basesystem", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP1/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Basesystem15-SP1-Pool for x86_64 Proxy 4.0", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-basesystem15-sp1-debuginfo-pool-x86_64-proxy-4.0", + "parent_channel_label": "sle-product-suse-manager-proxy-4.0-pool-x86_64", + "product_id": 1772, + "repository_id": 3264, + "parent_product_id": 1900, + "root_product_id": 1900, + "update_tag": "SLE-Module-Basesystem", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP1/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Basesystem15-SP1-Debuginfo-Pool for x86_64 Proxy 4.0", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-desktop-applications15-sp1-updates-x86_64-proxy-4.0", + "parent_channel_label": "sle-product-suse-manager-proxy-4.0-pool-x86_64", + "product_id": 1776, + "repository_id": 3281, + "parent_product_id": 1772, + "root_product_id": 1900, + "update_tag": "SLE-Module-Desktop-Applications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15-SP1/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Desktop-Applications15-SP1-Updates for x86_64 Proxy 4.0", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-desktop-applications15-sp1-debuginfo-updates-x86_64-proxy-4.0", + "parent_channel_label": "sle-product-suse-manager-proxy-4.0-pool-x86_64", + "product_id": 1776, + "repository_id": 3282, + "parent_product_id": 1772, + "root_product_id": 1900, + "update_tag": "SLE-Module-Desktop-Applications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15-SP1/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Desktop-Applications15-SP1-Debuginfo-Updates for x86_64 Proxy 4.0", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-desktop-applications15-sp1-pool-x86_64-proxy-4.0", + "parent_channel_label": "sle-product-suse-manager-proxy-4.0-pool-x86_64", + "product_id": 1776, + "repository_id": 3283, + "parent_product_id": 1772, + "root_product_id": 1900, + "update_tag": "SLE-Module-Desktop-Applications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP1/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Desktop-Applications15-SP1-Pool for x86_64 Proxy 4.0", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-desktop-applications15-sp1-debuginfo-pool-x86_64-proxy-4.0", + "parent_channel_label": "sle-product-suse-manager-proxy-4.0-pool-x86_64", + "product_id": 1776, + "repository_id": 3284, + "parent_product_id": 1772, + "root_product_id": 1900, + "update_tag": "SLE-Module-Desktop-Applications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP1/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Desktop-Applications15-SP1-Debuginfo-Pool for x86_64 Proxy 4.0", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-devtools15-sp1-updates-x86_64-proxy-4.0", + "parent_channel_label": "sle-product-suse-manager-proxy-4.0-pool-x86_64", + "product_id": 1794, + "repository_id": 3371, + "parent_product_id": 1776, + "root_product_id": 1900, + "update_tag": "SLE-Module-Development-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15-SP1/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-DevTools15-SP1-Updates for x86_64 Proxy 4.0", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-devtools15-sp1-debuginfo-updates-x86_64-proxy-4.0", + "parent_channel_label": "sle-product-suse-manager-proxy-4.0-pool-x86_64", + "product_id": 1794, + "repository_id": 3372, + "parent_product_id": 1776, + "root_product_id": 1900, + "update_tag": "SLE-Module-Development-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15-SP1/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-DevTools15-SP1-Debuginfo-Updates for x86_64 Proxy 4.0", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-devtools15-sp1-pool-x86_64-proxy-4.0", + "parent_channel_label": "sle-product-suse-manager-proxy-4.0-pool-x86_64", + "product_id": 1794, + "repository_id": 3373, + "parent_product_id": 1776, + "root_product_id": 1900, + "update_tag": "SLE-Module-Development-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP1/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-DevTools15-SP1-Pool for x86_64 Proxy 4.0", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-devtools15-sp1-debuginfo-pool-x86_64-proxy-4.0", + "parent_channel_label": "sle-product-suse-manager-proxy-4.0-pool-x86_64", + "product_id": 1794, + "repository_id": 3374, + "parent_product_id": 1776, + "root_product_id": 1900, + "update_tag": "SLE-Module-Development-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP1/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-DevTools15-SP1-Debuginfo-Pool for x86_64 Proxy 4.0", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-server-applications15-sp1-updates-x86_64-proxy-4.0", + "parent_channel_label": "sle-product-suse-manager-proxy-4.0-pool-x86_64", + "product_id": 1780, + "repository_id": 3301, + "parent_product_id": 1772, + "root_product_id": 1900, + "update_tag": "SLE-Module-Server-Applications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15-SP1/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Server-Applications15-SP1-Updates for x86_64 Proxy 4.0", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-server-applications15-sp1-debuginfo-updates-x86_64-proxy-4.0", + "parent_channel_label": "sle-product-suse-manager-proxy-4.0-pool-x86_64", + "product_id": 1780, + "repository_id": 3302, + "parent_product_id": 1772, + "root_product_id": 1900, + "update_tag": "SLE-Module-Server-Applications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15-SP1/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Server-Applications15-SP1-Debuginfo-Updates for x86_64 Proxy 4.0", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-server-applications15-sp1-pool-x86_64-proxy-4.0", + "parent_channel_label": "sle-product-suse-manager-proxy-4.0-pool-x86_64", + "product_id": 1780, + "repository_id": 3303, + "parent_product_id": 1772, + "root_product_id": 1900, + "update_tag": "SLE-Module-Server-Applications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP1/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Server-Applications15-SP1-Pool for x86_64 Proxy 4.0", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-server-applications15-sp1-debuginfo-pool-x86_64-proxy-4.0", + "parent_channel_label": "sle-product-suse-manager-proxy-4.0-pool-x86_64", + "product_id": 1780, + "repository_id": 3304, + "parent_product_id": 1772, + "root_product_id": 1900, + "update_tag": "SLE-Module-Server-Applications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP1/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Server-Applications15-SP1-Debuginfo-Pool for x86_64 Proxy 4.0", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-product-ha15-sp1-updates-x86_64-proxy-4.0", + "parent_channel_label": "sle-product-suse-manager-proxy-4.0-pool-x86_64", + "product_id": 1785, + "repository_id": 3326, + "parent_product_id": 1780, + "root_product_id": 1900, + "update_tag": "SLE-Product-HA", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-HA/15-SP1/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HA15-SP1-Updates for x86_64 Proxy 4.0", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-product-ha15-sp1-debuginfo-updates-x86_64-proxy-4.0", + "parent_channel_label": "sle-product-suse-manager-proxy-4.0-pool-x86_64", + "product_id": 1785, + "repository_id": 3327, + "parent_product_id": 1780, + "root_product_id": 1900, + "update_tag": "SLE-Product-HA", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-HA/15-SP1/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HA15-SP1-Debuginfo-Updates for x86_64 Proxy 4.0", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-product-ha15-sp1-pool-x86_64-proxy-4.0", + "parent_channel_label": "sle-product-suse-manager-proxy-4.0-pool-x86_64", + "product_id": 1785, + "repository_id": 3328, + "parent_product_id": 1780, + "root_product_id": 1900, + "update_tag": "SLE-Product-HA", + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP1/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HA15-SP1-Pool for x86_64 Proxy 4.0", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-product-ha15-sp1-debuginfo-pool-x86_64-proxy-4.0", + "parent_channel_label": "sle-product-suse-manager-proxy-4.0-pool-x86_64", + "product_id": 1785, + "repository_id": 3329, + "parent_product_id": 1780, + "root_product_id": 1900, + "update_tag": "SLE-Product-HA", + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP1/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HA15-SP1-Debuginfo-Pool for x86_64 Proxy 4.0", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-web-scripting15-sp1-updates-x86_64-proxy-4.0", + "parent_channel_label": "sle-product-suse-manager-proxy-4.0-pool-x86_64", + "product_id": 1798, + "repository_id": 3391, + "parent_product_id": 1780, + "root_product_id": 1900, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/15-SP1/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Web-Scripting15-SP1-Updates for x86_64 Proxy 4.0", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-web-scripting15-sp1-debuginfo-updates-x86_64-proxy-4.0", + "parent_channel_label": "sle-product-suse-manager-proxy-4.0-pool-x86_64", + "product_id": 1798, + "repository_id": 3392, + "parent_product_id": 1780, + "root_product_id": 1900, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/15-SP1/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Web-Scripting15-SP1-Debuginfo-Updates for x86_64 Proxy 4.0", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-web-scripting15-sp1-pool-x86_64-proxy-4.0", + "parent_channel_label": "sle-product-suse-manager-proxy-4.0-pool-x86_64", + "product_id": 1798, + "repository_id": 3393, + "parent_product_id": 1780, + "root_product_id": 1900, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP1/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Web-Scripting15-SP1-Pool for x86_64 Proxy 4.0", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-web-scripting15-sp1-debuginfo-pool-x86_64-proxy-4.0", + "parent_channel_label": "sle-product-suse-manager-proxy-4.0-pool-x86_64", + "product_id": 1798, + "repository_id": 3394, + "parent_product_id": 1780, + "root_product_id": 1900, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP1/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Web-Scripting15-SP1-Debuginfo-Pool for x86_64 Proxy 4.0", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-legacy15-sp1-updates-x86_64-proxy-4.0", + "parent_channel_label": "sle-product-suse-manager-proxy-4.0-pool-x86_64", + "product_id": 1804, + "repository_id": 3421, + "parent_product_id": 1780, + "root_product_id": 1900, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/15-SP1/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy15-SP1-Updates for x86_64 Proxy 4.0", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-legacy15-sp1-debuginfo-updates-x86_64-proxy-4.0", + "parent_channel_label": "sle-product-suse-manager-proxy-4.0-pool-x86_64", + "product_id": 1804, + "repository_id": 3422, + "parent_product_id": 1780, + "root_product_id": 1900, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/15-SP1/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy15-SP1-Debuginfo-Updates for x86_64 Proxy 4.0", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-legacy15-sp1-pool-x86_64-proxy-4.0", + "parent_channel_label": "sle-product-suse-manager-proxy-4.0-pool-x86_64", + "product_id": 1804, + "repository_id": 3423, + "parent_product_id": 1780, + "root_product_id": 1900, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15-SP1/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy15-SP1-Pool for x86_64 Proxy 4.0", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-legacy15-sp1-debuginfo-pool-x86_64-proxy-4.0", + "parent_channel_label": "sle-product-suse-manager-proxy-4.0-pool-x86_64", + "product_id": 1804, + "repository_id": 3424, + "parent_product_id": 1780, + "root_product_id": 1900, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15-SP1/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy15-SP1-Debuginfo-Pool for x86_64 Proxy 4.0", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-public-cloud15-sp1-updates-x86_64-proxy-4.0", + "parent_channel_label": "sle-product-suse-manager-proxy-4.0-pool-x86_64", + "product_id": 1808, + "repository_id": 3441, + "parent_product_id": 1780, + "root_product_id": 1900, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/15-SP1/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud15-SP1-Updates for x86_64 Proxy 4.0", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-public-cloud15-sp1-debuginfo-updates-x86_64-proxy-4.0", + "parent_channel_label": "sle-product-suse-manager-proxy-4.0-pool-x86_64", + "product_id": 1808, + "repository_id": 3442, + "parent_product_id": 1780, + "root_product_id": 1900, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/15-SP1/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud15-SP1-Debuginfo-Updates for x86_64 Proxy 4.0", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-public-cloud15-sp1-pool-x86_64-proxy-4.0", + "parent_channel_label": "sle-product-suse-manager-proxy-4.0-pool-x86_64", + "product_id": 1808, + "repository_id": 3443, + "parent_product_id": 1780, + "root_product_id": 1900, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP1/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud15-SP1-Pool for x86_64 Proxy 4.0", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-public-cloud15-sp1-debuginfo-pool-x86_64-proxy-4.0", + "parent_channel_label": "sle-product-suse-manager-proxy-4.0-pool-x86_64", + "product_id": 1808, + "repository_id": 3444, + "parent_product_id": 1780, + "root_product_id": 1900, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP1/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud15-SP1-Debuginfo-Pool for x86_64 Proxy 4.0", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-suse-manager-proxy-4.0-updates-x86_64", + "parent_channel_label": "sle-product-suse-manager-proxy-4.0-pool-x86_64", + "product_id": 1908, + "repository_id": 3843, + "parent_product_id": 1780, + "root_product_id": 1900, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-SUSE-Manager-Proxy/4.0/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-SUSE-Manager-Proxy-4.0-Updates for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-suse-manager-proxy-4.0-debuginfo-updates-x86_64", + "parent_channel_label": "sle-product-suse-manager-proxy-4.0-pool-x86_64", + "product_id": 1908, + "repository_id": 3844, + "parent_product_id": 1780, + "root_product_id": 1900, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-SUSE-Manager-Proxy/4.0/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-SUSE-Manager-Proxy-4.0-Debuginfo-Updates for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-suse-manager-proxy-4.0-pool-x86_64", + "parent_channel_label": "sle-product-suse-manager-proxy-4.0-pool-x86_64", + "product_id": 1908, + "repository_id": 3845, + "parent_product_id": 1780, + "root_product_id": 1900, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-SUSE-Manager-Proxy/4.0/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-SUSE-Manager-Proxy-4.0-Pool for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-suse-manager-proxy-4.0-debuginfo-pool-x86_64", + "parent_channel_label": "sle-product-suse-manager-proxy-4.0-pool-x86_64", + "product_id": 1908, + "repository_id": 3846, + "parent_product_id": 1780, + "root_product_id": 1900, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-SUSE-Manager-Proxy/4.0/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-SUSE-Manager-Proxy-4.0-Debuginfo-Pool for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-containers15-sp1-updates-x86_64-proxy-4.0", + "parent_channel_label": "sle-product-suse-manager-proxy-4.0-pool-x86_64", + "product_id": 1790, + "repository_id": 3351, + "parent_product_id": 1772, + "root_product_id": 1900, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/15-SP1/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers15-SP1-Updates for x86_64 Proxy 4.0", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-containers15-sp1-debuginfo-updates-x86_64-proxy-4.0", + "parent_channel_label": "sle-product-suse-manager-proxy-4.0-pool-x86_64", + "product_id": 1790, + "repository_id": 3352, + "parent_product_id": 1772, + "root_product_id": 1900, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/15-SP1/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers15-SP1-Debuginfo-Updates for x86_64 Proxy 4.0", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-containers15-sp1-pool-x86_64-proxy-4.0", + "parent_channel_label": "sle-product-suse-manager-proxy-4.0-pool-x86_64", + "product_id": 1790, + "repository_id": 3353, + "parent_product_id": 1772, + "root_product_id": 1900, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP1/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers15-SP1-Pool for x86_64 Proxy 4.0", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-containers15-sp1-debuginfo-pool-x86_64-proxy-4.0", + "parent_channel_label": "sle-product-suse-manager-proxy-4.0-pool-x86_64", + "product_id": 1790, + "repository_id": 3354, + "parent_product_id": 1772, + "root_product_id": 1900, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP1/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers15-SP1-Debuginfo-Pool for x86_64 Proxy 4.0", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-python2-15-sp1-updates-x86_64-proxy-4.0", + "parent_channel_label": "sle-product-suse-manager-proxy-4.0-pool-x86_64", + "product_id": 1867, + "repository_id": 3598, + "parent_product_id": 1772, + "root_product_id": 1900, + "update_tag": "SLE-Module-Python2", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Python2/15-SP1/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Python2-15-SP1-Updates for x86_64 Proxy 4.0", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-python2-15-sp1-debuginfo-updates-x86_64-proxy-4.0", + "parent_channel_label": "sle-product-suse-manager-proxy-4.0-pool-x86_64", + "product_id": 1867, + "repository_id": 3599, + "parent_product_id": 1772, + "root_product_id": 1900, + "update_tag": "SLE-Module-Python2", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Python2/15-SP1/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Python2-15-SP1-Debuginfo-Updates for x86_64 Proxy 4.0", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-python2-15-sp1-pool-x86_64-proxy-4.0", + "parent_channel_label": "sle-product-suse-manager-proxy-4.0-pool-x86_64", + "product_id": 1867, + "repository_id": 3600, + "parent_product_id": 1772, + "root_product_id": 1900, + "update_tag": "SLE-Module-Python2", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Python2/15-SP1/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Python2-15-SP1-Pool for x86_64 Proxy 4.0", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-python2-15-sp1-debuginfo-pool-x86_64-proxy-4.0", + "parent_channel_label": "sle-product-suse-manager-proxy-4.0-pool-x86_64", + "product_id": 1867, + "repository_id": 3601, + "parent_product_id": 1772, + "root_product_id": 1900, + "update_tag": "SLE-Module-Python2", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Python2/15-SP1/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Python2-15-SP1-Debuginfo-Pool for x86_64 Proxy 4.0", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "suse-packagehub-15-sp1-standard-pool-x86_64-proxy-4.0", + "parent_channel_label": "sle-product-suse-manager-proxy-4.0-pool-x86_64", + "product_id": 1871, + "repository_id": 3627, + "parent_product_id": 1772, + "root_product_id": 1900, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-15-SP1_x86_64/standard/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-15-SP1-Standard-Pool for x86_64 Proxy 4.0", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "suse-packagehub-15-sp1-debuginfo-x86_64-proxy-4.0", + "parent_channel_label": "sle-product-suse-manager-proxy-4.0-pool-x86_64", + "product_id": 1871, + "repository_id": 3628, + "parent_product_id": 1772, + "root_product_id": 1900, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-15-SP1_x86_64/standard_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-15-SP1-Debuginfo for x86_64 Proxy 4.0", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-packagehub-subpackages15-sp1-updates-x86_64-proxy-4.0", + "parent_channel_label": "sle-product-suse-manager-proxy-4.0-pool-x86_64", + "product_id": 1871, + "repository_id": 3629, + "parent_product_id": 1772, + "root_product_id": 1900, + "update_tag": "SLE-Module-Packagehub-Subpackages", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP1/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Packagehub-Subpackages15-SP1-Updates for x86_64 Proxy 4.0", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-packagehub-subpackages15-sp1-debuginfo-updates-x86_64-proxy-4.0", + "parent_channel_label": "sle-product-suse-manager-proxy-4.0-pool-x86_64", + "product_id": 1871, + "repository_id": 3630, + "parent_product_id": 1772, + "root_product_id": 1900, + "update_tag": "SLE-Module-Packagehub-Subpackages", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP1/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Packagehub-Subpackages15-SP1-Debuginfo-Updates for x86_64 Proxy 4.0", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "suse-packagehub-15-sp1-pool-x86_64-proxy-4.0", + "parent_channel_label": "sle-product-suse-manager-proxy-4.0-pool-x86_64", + "product_id": 1871, + "repository_id": 3631, + "parent_product_id": 1772, + "root_product_id": 1900, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-15-SP1_x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-15-SP1-Pool for x86_64 Proxy 4.0", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-packagehub-subpackages15-sp1-pool-x86_64-proxy-4.0", + "parent_channel_label": "sle-product-suse-manager-proxy-4.0-pool-x86_64", + "product_id": 1871, + "repository_id": 3632, + "parent_product_id": 1772, + "root_product_id": 1900, + "update_tag": "SLE-Module-Packagehub-Subpackages", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP1/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Packagehub-Subpackages15-SP1-Pool for x86_64 Proxy 4.0", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-packagehub-subpackages15-sp1-debuginfo-pool-x86_64-proxy-4.0", + "parent_channel_label": "sle-product-suse-manager-proxy-4.0-pool-x86_64", + "product_id": 1871, + "repository_id": 3633, + "parent_product_id": 1772, + "root_product_id": 1900, + "update_tag": "SLE-Module-Packagehub-Subpackages", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP1/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Packagehub-Subpackages15-SP1-Debuginfo-Pool for x86_64 Proxy 4.0", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-product-suse-manager-retail-branch-server-4.0-updates-x86_64", + "parent_channel_label": "sle-product-suse-manager-retail-branch-server-4.0-pool-x86_64", + "product_id": 1907, + "repository_id": 3838, + "parent_product_id": null, + "root_product_id": 1907, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-SUSE-Manager-Retail-Branch-Server/4.0/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-SUSE-Manager-Retail-Branch-Server-4.0-Updates for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-product-suse-manager-retail-branch-server-4.0-debuginfo-updates-x86_64", + "parent_channel_label": "sle-product-suse-manager-retail-branch-server-4.0-pool-x86_64", + "product_id": 1907, + "repository_id": 3839, + "parent_product_id": null, + "root_product_id": 1907, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-SUSE-Manager-Retail-Branch-Server/4.0/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-SUSE-Manager-Retail-Branch-Server-4.0-Debuginfo-Updates for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-product-suse-manager-retail-branch-server-4.0-pool-x86_64", + "parent_channel_label": null, + "product_id": 1907, + "repository_id": 3840, + "parent_product_id": null, + "root_product_id": 1907, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-SUSE-Manager-Retail-Branch-Server/4.0/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-SUSE-Manager-Retail-Branch-Server-4.0-Pool for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-product-suse-manager-retail-branch-server-4.0-debuginfo-pool-x86_64", + "parent_channel_label": "sle-product-suse-manager-retail-branch-server-4.0-pool-x86_64", + "product_id": 1907, + "repository_id": 3841, + "parent_product_id": null, + "root_product_id": 1907, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-SUSE-Manager-Retail-Branch-Server/4.0/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-SUSE-Manager-Retail-Branch-Server-4.0-Debuginfo-Pool for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-basesystem15-sp1-updates-x86_64-smrbs-4.0", + "parent_channel_label": "sle-product-suse-manager-retail-branch-server-4.0-pool-x86_64", + "product_id": 1772, + "repository_id": 3261, + "parent_product_id": 1907, + "root_product_id": 1907, + "update_tag": "SLE-Module-Basesystem", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15-SP1/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Basesystem15-SP1-Updates for x86_64 SMRBS 4.0", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-basesystem15-sp1-debuginfo-updates-x86_64-smrbs-4.0", + "parent_channel_label": "sle-product-suse-manager-retail-branch-server-4.0-pool-x86_64", + "product_id": 1772, + "repository_id": 3262, + "parent_product_id": 1907, + "root_product_id": 1907, + "update_tag": "SLE-Module-Basesystem", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15-SP1/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Basesystem15-SP1-Debuginfo-Updates for x86_64 SMRBS 4.0", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-basesystem15-sp1-pool-x86_64-smrbs-4.0", + "parent_channel_label": "sle-product-suse-manager-retail-branch-server-4.0-pool-x86_64", + "product_id": 1772, + "repository_id": 3263, + "parent_product_id": 1907, + "root_product_id": 1907, + "update_tag": "SLE-Module-Basesystem", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP1/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Basesystem15-SP1-Pool for x86_64 SMRBS 4.0", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-basesystem15-sp1-debuginfo-pool-x86_64-smrbs-4.0", + "parent_channel_label": "sle-product-suse-manager-retail-branch-server-4.0-pool-x86_64", + "product_id": 1772, + "repository_id": 3264, + "parent_product_id": 1907, + "root_product_id": 1907, + "update_tag": "SLE-Module-Basesystem", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP1/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Basesystem15-SP1-Debuginfo-Pool for x86_64 SMRBS 4.0", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-desktop-applications15-sp1-updates-x86_64-smrbs-4.0", + "parent_channel_label": "sle-product-suse-manager-retail-branch-server-4.0-pool-x86_64", + "product_id": 1776, + "repository_id": 3281, + "parent_product_id": 1772, + "root_product_id": 1907, + "update_tag": "SLE-Module-Desktop-Applications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15-SP1/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Desktop-Applications15-SP1-Updates for x86_64 SMRBS 4.0", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-desktop-applications15-sp1-debuginfo-updates-x86_64-smrbs-4.0", + "parent_channel_label": "sle-product-suse-manager-retail-branch-server-4.0-pool-x86_64", + "product_id": 1776, + "repository_id": 3282, + "parent_product_id": 1772, + "root_product_id": 1907, + "update_tag": "SLE-Module-Desktop-Applications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15-SP1/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Desktop-Applications15-SP1-Debuginfo-Updates for x86_64 SMRBS 4.0", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-desktop-applications15-sp1-pool-x86_64-smrbs-4.0", + "parent_channel_label": "sle-product-suse-manager-retail-branch-server-4.0-pool-x86_64", + "product_id": 1776, + "repository_id": 3283, + "parent_product_id": 1772, + "root_product_id": 1907, + "update_tag": "SLE-Module-Desktop-Applications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP1/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Desktop-Applications15-SP1-Pool for x86_64 SMRBS 4.0", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-desktop-applications15-sp1-debuginfo-pool-x86_64-smrbs-4.0", + "parent_channel_label": "sle-product-suse-manager-retail-branch-server-4.0-pool-x86_64", + "product_id": 1776, + "repository_id": 3284, + "parent_product_id": 1772, + "root_product_id": 1907, + "update_tag": "SLE-Module-Desktop-Applications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP1/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Desktop-Applications15-SP1-Debuginfo-Pool for x86_64 SMRBS 4.0", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-devtools15-sp1-updates-x86_64-smrbs-4.0", + "parent_channel_label": "sle-product-suse-manager-retail-branch-server-4.0-pool-x86_64", + "product_id": 1794, + "repository_id": 3371, + "parent_product_id": 1776, + "root_product_id": 1907, + "update_tag": "SLE-Module-Development-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15-SP1/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-DevTools15-SP1-Updates for x86_64 SMRBS 4.0", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-devtools15-sp1-debuginfo-updates-x86_64-smrbs-4.0", + "parent_channel_label": "sle-product-suse-manager-retail-branch-server-4.0-pool-x86_64", + "product_id": 1794, + "repository_id": 3372, + "parent_product_id": 1776, + "root_product_id": 1907, + "update_tag": "SLE-Module-Development-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15-SP1/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-DevTools15-SP1-Debuginfo-Updates for x86_64 SMRBS 4.0", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-devtools15-sp1-pool-x86_64-smrbs-4.0", + "parent_channel_label": "sle-product-suse-manager-retail-branch-server-4.0-pool-x86_64", + "product_id": 1794, + "repository_id": 3373, + "parent_product_id": 1776, + "root_product_id": 1907, + "update_tag": "SLE-Module-Development-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP1/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-DevTools15-SP1-Pool for x86_64 SMRBS 4.0", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-devtools15-sp1-debuginfo-pool-x86_64-smrbs-4.0", + "parent_channel_label": "sle-product-suse-manager-retail-branch-server-4.0-pool-x86_64", + "product_id": 1794, + "repository_id": 3374, + "parent_product_id": 1776, + "root_product_id": 1907, + "update_tag": "SLE-Module-Development-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP1/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-DevTools15-SP1-Debuginfo-Pool for x86_64 SMRBS 4.0", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-server-applications15-sp1-updates-x86_64-smrbs-4.0", + "parent_channel_label": "sle-product-suse-manager-retail-branch-server-4.0-pool-x86_64", + "product_id": 1780, + "repository_id": 3301, + "parent_product_id": 1772, + "root_product_id": 1907, + "update_tag": "SLE-Module-Server-Applications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15-SP1/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Server-Applications15-SP1-Updates for x86_64 SMRBS 4.0", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-server-applications15-sp1-debuginfo-updates-x86_64-smrbs-4.0", + "parent_channel_label": "sle-product-suse-manager-retail-branch-server-4.0-pool-x86_64", + "product_id": 1780, + "repository_id": 3302, + "parent_product_id": 1772, + "root_product_id": 1907, + "update_tag": "SLE-Module-Server-Applications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15-SP1/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Server-Applications15-SP1-Debuginfo-Updates for x86_64 SMRBS 4.0", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-server-applications15-sp1-pool-x86_64-smrbs-4.0", + "parent_channel_label": "sle-product-suse-manager-retail-branch-server-4.0-pool-x86_64", + "product_id": 1780, + "repository_id": 3303, + "parent_product_id": 1772, + "root_product_id": 1907, + "update_tag": "SLE-Module-Server-Applications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP1/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Server-Applications15-SP1-Pool for x86_64 SMRBS 4.0", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-server-applications15-sp1-debuginfo-pool-x86_64-smrbs-4.0", + "parent_channel_label": "sle-product-suse-manager-retail-branch-server-4.0-pool-x86_64", + "product_id": 1780, + "repository_id": 3304, + "parent_product_id": 1772, + "root_product_id": 1907, + "update_tag": "SLE-Module-Server-Applications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP1/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Server-Applications15-SP1-Debuginfo-Pool for x86_64 SMRBS 4.0", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-product-ha15-sp1-updates-x86_64-smrbs-4.0", + "parent_channel_label": "sle-product-suse-manager-retail-branch-server-4.0-pool-x86_64", + "product_id": 1785, + "repository_id": 3326, + "parent_product_id": 1780, + "root_product_id": 1907, + "update_tag": "SLE-Product-HA", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-HA/15-SP1/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HA15-SP1-Updates for x86_64 SMRBS 4.0", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-product-ha15-sp1-debuginfo-updates-x86_64-smrbs-4.0", + "parent_channel_label": "sle-product-suse-manager-retail-branch-server-4.0-pool-x86_64", + "product_id": 1785, + "repository_id": 3327, + "parent_product_id": 1780, + "root_product_id": 1907, + "update_tag": "SLE-Product-HA", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-HA/15-SP1/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HA15-SP1-Debuginfo-Updates for x86_64 SMRBS 4.0", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-product-ha15-sp1-pool-x86_64-smrbs-4.0", + "parent_channel_label": "sle-product-suse-manager-retail-branch-server-4.0-pool-x86_64", + "product_id": 1785, + "repository_id": 3328, + "parent_product_id": 1780, + "root_product_id": 1907, + "update_tag": "SLE-Product-HA", + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP1/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HA15-SP1-Pool for x86_64 SMRBS 4.0", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-product-ha15-sp1-debuginfo-pool-x86_64-smrbs-4.0", + "parent_channel_label": "sle-product-suse-manager-retail-branch-server-4.0-pool-x86_64", + "product_id": 1785, + "repository_id": 3329, + "parent_product_id": 1780, + "root_product_id": 1907, + "update_tag": "SLE-Product-HA", + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP1/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HA15-SP1-Debuginfo-Pool for x86_64 SMRBS 4.0", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-web-scripting15-sp1-updates-x86_64-smrbs-4.0", + "parent_channel_label": "sle-product-suse-manager-retail-branch-server-4.0-pool-x86_64", + "product_id": 1798, + "repository_id": 3391, + "parent_product_id": 1780, + "root_product_id": 1907, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/15-SP1/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Web-Scripting15-SP1-Updates for x86_64 SMRBS 4.0", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-web-scripting15-sp1-debuginfo-updates-x86_64-smrbs-4.0", + "parent_channel_label": "sle-product-suse-manager-retail-branch-server-4.0-pool-x86_64", + "product_id": 1798, + "repository_id": 3392, + "parent_product_id": 1780, + "root_product_id": 1907, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/15-SP1/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Web-Scripting15-SP1-Debuginfo-Updates for x86_64 SMRBS 4.0", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-web-scripting15-sp1-pool-x86_64-smrbs-4.0", + "parent_channel_label": "sle-product-suse-manager-retail-branch-server-4.0-pool-x86_64", + "product_id": 1798, + "repository_id": 3393, + "parent_product_id": 1780, + "root_product_id": 1907, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP1/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Web-Scripting15-SP1-Pool for x86_64 SMRBS 4.0", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-web-scripting15-sp1-debuginfo-pool-x86_64-smrbs-4.0", + "parent_channel_label": "sle-product-suse-manager-retail-branch-server-4.0-pool-x86_64", + "product_id": 1798, + "repository_id": 3394, + "parent_product_id": 1780, + "root_product_id": 1907, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP1/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Web-Scripting15-SP1-Debuginfo-Pool for x86_64 SMRBS 4.0", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-legacy15-sp1-updates-x86_64-smrbs-4.0", + "parent_channel_label": "sle-product-suse-manager-retail-branch-server-4.0-pool-x86_64", + "product_id": 1804, + "repository_id": 3421, + "parent_product_id": 1780, + "root_product_id": 1907, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/15-SP1/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy15-SP1-Updates for x86_64 SMRBS 4.0", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-legacy15-sp1-debuginfo-updates-x86_64-smrbs-4.0", + "parent_channel_label": "sle-product-suse-manager-retail-branch-server-4.0-pool-x86_64", + "product_id": 1804, + "repository_id": 3422, + "parent_product_id": 1780, + "root_product_id": 1907, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/15-SP1/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy15-SP1-Debuginfo-Updates for x86_64 SMRBS 4.0", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-legacy15-sp1-pool-x86_64-smrbs-4.0", + "parent_channel_label": "sle-product-suse-manager-retail-branch-server-4.0-pool-x86_64", + "product_id": 1804, + "repository_id": 3423, + "parent_product_id": 1780, + "root_product_id": 1907, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15-SP1/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy15-SP1-Pool for x86_64 SMRBS 4.0", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-legacy15-sp1-debuginfo-pool-x86_64-smrbs-4.0", + "parent_channel_label": "sle-product-suse-manager-retail-branch-server-4.0-pool-x86_64", + "product_id": 1804, + "repository_id": 3424, + "parent_product_id": 1780, + "root_product_id": 1907, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15-SP1/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy15-SP1-Debuginfo-Pool for x86_64 SMRBS 4.0", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-public-cloud15-sp1-updates-x86_64-smrbs-4.0", + "parent_channel_label": "sle-product-suse-manager-retail-branch-server-4.0-pool-x86_64", + "product_id": 1808, + "repository_id": 3441, + "parent_product_id": 1780, + "root_product_id": 1907, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/15-SP1/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud15-SP1-Updates for x86_64 SMRBS 4.0", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-public-cloud15-sp1-debuginfo-updates-x86_64-smrbs-4.0", + "parent_channel_label": "sle-product-suse-manager-retail-branch-server-4.0-pool-x86_64", + "product_id": 1808, + "repository_id": 3442, + "parent_product_id": 1780, + "root_product_id": 1907, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/15-SP1/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud15-SP1-Debuginfo-Updates for x86_64 SMRBS 4.0", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-public-cloud15-sp1-pool-x86_64-smrbs-4.0", + "parent_channel_label": "sle-product-suse-manager-retail-branch-server-4.0-pool-x86_64", + "product_id": 1808, + "repository_id": 3443, + "parent_product_id": 1780, + "root_product_id": 1907, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP1/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud15-SP1-Pool for x86_64 SMRBS 4.0", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-public-cloud15-sp1-debuginfo-pool-x86_64-smrbs-4.0", + "parent_channel_label": "sle-product-suse-manager-retail-branch-server-4.0-pool-x86_64", + "product_id": 1808, + "repository_id": 3444, + "parent_product_id": 1780, + "root_product_id": 1907, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP1/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud15-SP1-Debuginfo-Pool for x86_64 SMRBS 4.0", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-suse-manager-proxy-4.0-updates-x86_64-smrbs", + "parent_channel_label": "sle-product-suse-manager-retail-branch-server-4.0-pool-x86_64", + "product_id": 1908, + "repository_id": 3843, + "parent_product_id": 1780, + "root_product_id": 1907, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-SUSE-Manager-Proxy/4.0/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-SUSE-Manager-Proxy-4.0-Updates for x86_64 SMRBS", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-suse-manager-proxy-4.0-debuginfo-updates-x86_64-smrbs", + "parent_channel_label": "sle-product-suse-manager-retail-branch-server-4.0-pool-x86_64", + "product_id": 1908, + "repository_id": 3844, + "parent_product_id": 1780, + "root_product_id": 1907, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-SUSE-Manager-Proxy/4.0/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-SUSE-Manager-Proxy-4.0-Debuginfo-Updates for x86_64 SMRBS", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-suse-manager-proxy-4.0-pool-x86_64-smrbs", + "parent_channel_label": "sle-product-suse-manager-retail-branch-server-4.0-pool-x86_64", + "product_id": 1908, + "repository_id": 3845, + "parent_product_id": 1780, + "root_product_id": 1907, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-SUSE-Manager-Proxy/4.0/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-SUSE-Manager-Proxy-4.0-Pool for x86_64 SMRBS", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-suse-manager-proxy-4.0-debuginfo-pool-x86_64-smrbs", + "parent_channel_label": "sle-product-suse-manager-retail-branch-server-4.0-pool-x86_64", + "product_id": 1908, + "repository_id": 3846, + "parent_product_id": 1780, + "root_product_id": 1907, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-SUSE-Manager-Proxy/4.0/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-SUSE-Manager-Proxy-4.0-Debuginfo-Pool for x86_64 SMRBS", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-suse-manager-retail-branch-server-4.0-updates-x86_64", + "parent_channel_label": "sle-product-suse-manager-retail-branch-server-4.0-pool-x86_64", + "product_id": 1909, + "repository_id": 3848, + "parent_product_id": 1908, + "root_product_id": 1907, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-SUSE-Manager-Retail-Branch-Server/4.0/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-SUSE-Manager-Retail-Branch-Server-4.0-Updates for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-suse-manager-retail-branch-server-4.0-debuginfo-updates-x86_64", + "parent_channel_label": "sle-product-suse-manager-retail-branch-server-4.0-pool-x86_64", + "product_id": 1909, + "repository_id": 3849, + "parent_product_id": 1908, + "root_product_id": 1907, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-SUSE-Manager-Retail-Branch-Server/4.0/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-SUSE-Manager-Retail-Branch-Server-4.0-Debuginfo-Updates for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-suse-manager-retail-branch-server-4.0-pool-x86_64", + "parent_channel_label": "sle-product-suse-manager-retail-branch-server-4.0-pool-x86_64", + "product_id": 1909, + "repository_id": 3850, + "parent_product_id": 1908, + "root_product_id": 1907, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-SUSE-Manager-Retail-Branch-Server/4.0/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-SUSE-Manager-Retail-Branch-Server-4.0-Pool for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-suse-manager-retail-branch-server-4.0-debuginfo-pool-x86_64", + "parent_channel_label": "sle-product-suse-manager-retail-branch-server-4.0-pool-x86_64", + "product_id": 1909, + "repository_id": 3851, + "parent_product_id": 1908, + "root_product_id": 1907, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-SUSE-Manager-Retail-Branch-Server/4.0/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-SUSE-Manager-Retail-Branch-Server-4.0-Debuginfo-Pool for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-containers15-sp1-updates-x86_64-smrbs-4.0", + "parent_channel_label": "sle-product-suse-manager-retail-branch-server-4.0-pool-x86_64", + "product_id": 1790, + "repository_id": 3351, + "parent_product_id": 1772, + "root_product_id": 1907, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/15-SP1/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers15-SP1-Updates for x86_64 SMRBS 4.0", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-containers15-sp1-debuginfo-updates-x86_64-smrbs-4.0", + "parent_channel_label": "sle-product-suse-manager-retail-branch-server-4.0-pool-x86_64", + "product_id": 1790, + "repository_id": 3352, + "parent_product_id": 1772, + "root_product_id": 1907, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/15-SP1/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers15-SP1-Debuginfo-Updates for x86_64 SMRBS 4.0", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-containers15-sp1-pool-x86_64-smrbs-4.0", + "parent_channel_label": "sle-product-suse-manager-retail-branch-server-4.0-pool-x86_64", + "product_id": 1790, + "repository_id": 3353, + "parent_product_id": 1772, + "root_product_id": 1907, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP1/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers15-SP1-Pool for x86_64 SMRBS 4.0", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-containers15-sp1-debuginfo-pool-x86_64-smrbs-4.0", + "parent_channel_label": "sle-product-suse-manager-retail-branch-server-4.0-pool-x86_64", + "product_id": 1790, + "repository_id": 3354, + "parent_product_id": 1772, + "root_product_id": 1907, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP1/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers15-SP1-Debuginfo-Pool for x86_64 SMRBS 4.0", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-python2-15-sp1-updates-x86_64-smrbs-4.0", + "parent_channel_label": "sle-product-suse-manager-retail-branch-server-4.0-pool-x86_64", + "product_id": 1867, + "repository_id": 3598, + "parent_product_id": 1772, + "root_product_id": 1907, + "update_tag": "SLE-Module-Python2", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Python2/15-SP1/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Python2-15-SP1-Updates for x86_64 SMRBS 4.0", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-python2-15-sp1-debuginfo-updates-x86_64-smrbs-4.0", + "parent_channel_label": "sle-product-suse-manager-retail-branch-server-4.0-pool-x86_64", + "product_id": 1867, + "repository_id": 3599, + "parent_product_id": 1772, + "root_product_id": 1907, + "update_tag": "SLE-Module-Python2", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Python2/15-SP1/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Python2-15-SP1-Debuginfo-Updates for x86_64 SMRBS 4.0", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-python2-15-sp1-pool-x86_64-smrbs-4.0", + "parent_channel_label": "sle-product-suse-manager-retail-branch-server-4.0-pool-x86_64", + "product_id": 1867, + "repository_id": 3600, + "parent_product_id": 1772, + "root_product_id": 1907, + "update_tag": "SLE-Module-Python2", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Python2/15-SP1/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Python2-15-SP1-Pool for x86_64 SMRBS 4.0", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-python2-15-sp1-debuginfo-pool-x86_64-smrbs-4.0", + "parent_channel_label": "sle-product-suse-manager-retail-branch-server-4.0-pool-x86_64", + "product_id": 1867, + "repository_id": 3601, + "parent_product_id": 1772, + "root_product_id": 1907, + "update_tag": "SLE-Module-Python2", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Python2/15-SP1/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Python2-15-SP1-Debuginfo-Pool for x86_64 SMRBS 4.0", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "suse-packagehub-15-sp1-standard-pool-x86_64-smrbs-4.0", + "parent_channel_label": "sle-product-suse-manager-retail-branch-server-4.0-pool-x86_64", + "product_id": 1871, + "repository_id": 3627, + "parent_product_id": 1772, + "root_product_id": 1907, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-15-SP1_x86_64/standard/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-15-SP1-Standard-Pool for x86_64 SMRBS 4.0", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "suse-packagehub-15-sp1-debuginfo-x86_64-smrbs-4.0", + "parent_channel_label": "sle-product-suse-manager-retail-branch-server-4.0-pool-x86_64", + "product_id": 1871, + "repository_id": 3628, + "parent_product_id": 1772, + "root_product_id": 1907, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-15-SP1_x86_64/standard_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-15-SP1-Debuginfo for x86_64 SMRBS 4.0", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-packagehub-subpackages15-sp1-updates-x86_64-smrbs-4.0", + "parent_channel_label": "sle-product-suse-manager-retail-branch-server-4.0-pool-x86_64", + "product_id": 1871, + "repository_id": 3629, + "parent_product_id": 1772, + "root_product_id": 1907, + "update_tag": "SLE-Module-Packagehub-Subpackages", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP1/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Packagehub-Subpackages15-SP1-Updates for x86_64 SMRBS 4.0", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-packagehub-subpackages15-sp1-debuginfo-updates-x86_64-smrbs-4.0", + "parent_channel_label": "sle-product-suse-manager-retail-branch-server-4.0-pool-x86_64", + "product_id": 1871, + "repository_id": 3630, + "parent_product_id": 1772, + "root_product_id": 1907, + "update_tag": "SLE-Module-Packagehub-Subpackages", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP1/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Packagehub-Subpackages15-SP1-Debuginfo-Updates for x86_64 SMRBS 4.0", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "suse-packagehub-15-sp1-pool-x86_64-smrbs-4.0", + "parent_channel_label": "sle-product-suse-manager-retail-branch-server-4.0-pool-x86_64", + "product_id": 1871, + "repository_id": 3631, + "parent_product_id": 1772, + "root_product_id": 1907, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-15-SP1_x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-15-SP1-Pool for x86_64 SMRBS 4.0", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-packagehub-subpackages15-sp1-pool-x86_64-smrbs-4.0", + "parent_channel_label": "sle-product-suse-manager-retail-branch-server-4.0-pool-x86_64", + "product_id": 1871, + "repository_id": 3632, + "parent_product_id": 1772, + "root_product_id": 1907, + "update_tag": "SLE-Module-Packagehub-Subpackages", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP1/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Packagehub-Subpackages15-SP1-Pool for x86_64 SMRBS 4.0", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-packagehub-subpackages15-sp1-debuginfo-pool-x86_64-smrbs-4.0", + "parent_channel_label": "sle-product-suse-manager-retail-branch-server-4.0-pool-x86_64", + "product_id": 1871, + "repository_id": 3633, + "parent_product_id": 1772, + "root_product_id": 1907, + "update_tag": "SLE-Module-Packagehub-Subpackages", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP1/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Packagehub-Subpackages15-SP1-Debuginfo-Pool for x86_64 SMRBS 4.0", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "opensuse-leap-15.1-updates", + "parent_channel_label": "opensuse-leap-15.1-pool", + "product_id": 1929, + "repository_id": 3911, + "parent_product_id": null, + "root_product_id": 1929, + "update_tag": null, + "url": "http://download.opensuse.org/update/leap/15.1/oss/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "openSUSE-Leap-15.1-Updates for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "opensuse-leap-15.1-nonoss-updates", + "parent_channel_label": "opensuse-leap-15.1-pool", + "product_id": 1929, + "repository_id": 3912, + "parent_product_id": null, + "root_product_id": 1929, + "update_tag": null, + "url": "http://download.opensuse.org/update/leap/15.1/non-oss/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "openSUSE-Leap-15.1-NonOss-Updates for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "opensuse-leap-15.1-pool", + "parent_channel_label": null, + "product_id": 1929, + "repository_id": 3913, + "parent_product_id": null, + "root_product_id": 1929, + "update_tag": null, + "url": "http://download.opensuse.org/distribution/leap/15.1/repo/oss/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "openSUSE-Leap-15.1-Pool for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "opensuse-leap-15.1-nonoss-pool", + "parent_channel_label": "opensuse-leap-15.1-pool", + "product_id": 1929, + "repository_id": 3914, + "parent_product_id": null, + "root_product_id": 1929, + "update_tag": null, + "url": "http://download.opensuse.org/distribution/leap/15.1/repo/non-oss/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "openSUSE-Leap-15.1-NonOss-Pool for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-manager-tools15-updates-x86_64-opensuse-15.1", + "parent_channel_label": "opensuse-leap-15.1-pool", + "product_id": 1712, + "repository_id": 2932, + "parent_product_id": 1929, + "root_product_id": 1929, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/15/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-Updates for x86_64 openSUSE 15.1", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools15-debuginfo-updates-x86_64-opensuse-15.1", + "parent_channel_label": "opensuse-leap-15.1-pool", + "product_id": 1712, + "repository_id": 2933, + "parent_product_id": 1929, + "root_product_id": 1929, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/15/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-Debuginfo-Updates for x86_64 openSUSE 15.1", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools15-pool-x86_64-opensuse-15.1", + "parent_channel_label": "opensuse-leap-15.1-pool", + "product_id": 1712, + "repository_id": 2934, + "parent_product_id": 1929, + "root_product_id": 1929, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/15/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-Pool for x86_64 openSUSE 15.1", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools15-debuginfo-pool-x86_64-opensuse-15.1", + "parent_channel_label": "opensuse-leap-15.1-pool", + "product_id": 1712, + "repository_id": 2935, + "parent_product_id": 1929, + "root_product_id": 1929, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/15/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-Debuginfo-Pool for x86_64 openSUSE 15.1", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools15-beta-updates-x86_64-opensuse-15.1", + "parent_channel_label": "opensuse-leap-15.1-pool", + "product_id": 1928, + "repository_id": 3897, + "parent_product_id": 1712, + "root_product_id": 1929, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/15-BETA/x86_64/update/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-BETA-Updates for x86_64 openSUSE 15.1", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools15-beta-debuginfo-updates-x86_64-opensuse-15.1", + "parent_channel_label": "opensuse-leap-15.1-pool", + "product_id": 1928, + "repository_id": 3898, + "parent_product_id": 1712, + "root_product_id": 1929, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/15-BETA/x86_64/update_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-BETA-Debuginfo-Updates for x86_64 openSUSE 15.1", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools15-beta-pool-x86_64-opensuse-15.1", + "parent_channel_label": "opensuse-leap-15.1-pool", + "product_id": 1928, + "repository_id": 3908, + "parent_product_id": 1712, + "root_product_id": 1929, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/15-BETA/x86_64/product/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-BETA-Pool for x86_64 openSUSE 15.1", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools15-beta-debuginfo-pool-x86_64-opensuse-15.1", + "parent_channel_label": "opensuse-leap-15.1-pool", + "product_id": 1928, + "repository_id": 3909, + "parent_product_id": 1712, + "root_product_id": 1929, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/15-BETA/x86_64/product_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-BETA-Debuginfo-Pool for x86_64 openSUSE 15.1", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-product-hpc-15-sp2-updates-aarch64", + "parent_channel_label": "sle-product-hpc-15-sp2-pool-aarch64", + "product_id": 1933, + "repository_id": 3927, + "parent_product_id": null, + "root_product_id": 1933, + "update_tag": "SLE-Product-HPC", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-HPC/15-SP2/aarch64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HPC-15-SP2-Updates for aarch64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-hpc15-sp2-debuginfo-updates-aarch64", + "parent_channel_label": "sle-product-hpc-15-sp2-pool-aarch64", + "product_id": 1933, + "repository_id": 3928, + "parent_product_id": null, + "root_product_id": 1933, + "update_tag": "SLE-Product-HPC", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-HPC/15-SP2/aarch64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HPC15-SP2-Debuginfo-Updates for aarch64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-hpc-15-sp2-pool-aarch64", + "parent_channel_label": null, + "product_id": 1933, + "repository_id": 3929, + "parent_product_id": null, + "root_product_id": 1933, + "update_tag": "SLE-Product-HPC", + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-HPC/15-SP2/aarch64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HPC-15-SP2-Pool for aarch64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-hpc15-sp2-debuginfo-pool-aarch64", + "parent_channel_label": "sle-product-hpc-15-sp2-pool-aarch64", + "product_id": 1933, + "repository_id": 3930, + "parent_product_id": null, + "root_product_id": 1933, + "update_tag": "SLE-Product-HPC", + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-HPC/15-SP2/aarch64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HPC15-SP2-Debuginfo-Pool for aarch64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-basesystem15-sp2-updates-aarch64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp2-pool-aarch64", + "product_id": 1943, + "repository_id": 3984, + "parent_product_id": 1933, + "root_product_id": 1933, + "update_tag": "SLE-Module-Basesystem", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15-SP2/aarch64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Basesystem15-SP2-Updates for aarch64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-basesystem15-sp2-debuginfo-updates-aarch64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp2-pool-aarch64", + "product_id": 1943, + "repository_id": 3985, + "parent_product_id": 1933, + "root_product_id": 1933, + "update_tag": "SLE-Module-Basesystem", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15-SP2/aarch64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Basesystem15-SP2-Debuginfo-Updates for aarch64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-basesystem15-sp2-pool-aarch64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp2-pool-aarch64", + "product_id": 1943, + "repository_id": 3986, + "parent_product_id": 1933, + "root_product_id": 1933, + "update_tag": "SLE-Module-Basesystem", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP2/aarch64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Basesystem15-SP2-Pool for aarch64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-basesystem15-sp2-debuginfo-pool-aarch64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp2-pool-aarch64", + "product_id": 1943, + "repository_id": 3987, + "parent_product_id": 1933, + "root_product_id": 1933, + "update_tag": "SLE-Module-Basesystem", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP2/aarch64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Basesystem15-SP2-Debuginfo-Pool for aarch64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-manager-tools15-updates-aarch64-hpc-sp2", + "parent_channel_label": "sle-product-hpc-15-sp2-pool-aarch64", + "product_id": 1709, + "repository_id": 2917, + "parent_product_id": 1943, + "root_product_id": 1933, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/15/aarch64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-Updates for aarch64 HPC SP2", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools15-debuginfo-updates-aarch64-hpc-sp2", + "parent_channel_label": "sle-product-hpc-15-sp2-pool-aarch64", + "product_id": 1709, + "repository_id": 2918, + "parent_product_id": 1943, + "root_product_id": 1933, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/15/aarch64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-Debuginfo-Updates for aarch64 HPC SP2", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools15-pool-aarch64-hpc-sp2", + "parent_channel_label": "sle-product-hpc-15-sp2-pool-aarch64", + "product_id": 1709, + "repository_id": 2919, + "parent_product_id": 1943, + "root_product_id": 1933, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/15/aarch64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-Pool for aarch64 HPC SP2", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools15-debuginfo-pool-aarch64-hpc-sp2", + "parent_channel_label": "sle-product-hpc-15-sp2-pool-aarch64", + "product_id": 1709, + "repository_id": 2920, + "parent_product_id": 1943, + "root_product_id": 1933, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/15/aarch64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-Debuginfo-Pool for aarch64 HPC SP2", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools15-beta-updates-aarch64-hpc-sp2", + "parent_channel_label": "sle-product-hpc-15-sp2-pool-aarch64", + "product_id": 1925, + "repository_id": 3891, + "parent_product_id": 1709, + "root_product_id": 1933, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/15-BETA/aarch64/update/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-BETA-Updates for aarch64 HPC SP2", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools15-beta-debuginfo-updates-aarch64-hpc-sp2", + "parent_channel_label": "sle-product-hpc-15-sp2-pool-aarch64", + "product_id": 1925, + "repository_id": 3892, + "parent_product_id": 1709, + "root_product_id": 1933, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/15-BETA/aarch64/update_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-BETA-Debuginfo-Updates for aarch64 HPC SP2", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools15-beta-pool-aarch64-hpc-sp2", + "parent_channel_label": "sle-product-hpc-15-sp2-pool-aarch64", + "product_id": 1925, + "repository_id": 3899, + "parent_product_id": 1709, + "root_product_id": 1933, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/15-BETA/aarch64/product/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-BETA-Pool for aarch64 HPC SP2", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools15-beta-debuginfo-pool-aarch64-hpc-sp2", + "parent_channel_label": "sle-product-hpc-15-sp2-pool-aarch64", + "product_id": 1925, + "repository_id": 3900, + "parent_product_id": 1709, + "root_product_id": 1933, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/15-BETA/aarch64/product_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-BETA-Debuginfo-Pool for aarch64 HPC SP2", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "suse-packagehub-15-sp2-backports-pool-aarch64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp2-pool-aarch64", + "product_id": 1947, + "repository_id": 4004, + "parent_product_id": 1943, + "root_product_id": 1933, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-15-SP2_aarch64/standard/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-15-SP2-Backports-Pool for aarch64 HPC", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-packagehub-15-sp2-backports-debuginfo-aarch64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp2-pool-aarch64", + "product_id": 1947, + "repository_id": 4005, + "parent_product_id": 1943, + "root_product_id": 1933, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-15-SP2_aarch64/standard_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-15-SP2-Backports-Debuginfo for aarch64 HPC", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-packagehub-subpackages15-sp2-updates-aarch64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp2-pool-aarch64", + "product_id": 1947, + "repository_id": 4006, + "parent_product_id": 1943, + "root_product_id": 1933, + "update_tag": "SLE-Module-Packagehub-Subpackages", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP2/aarch64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Packagehub-Subpackages15-SP2-Updates for aarch64 HPC", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-packagehub-subpackages15-sp2-debuginfo-updates-aarch64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp2-pool-aarch64", + "product_id": 1947, + "repository_id": 4007, + "parent_product_id": 1943, + "root_product_id": 1933, + "update_tag": "SLE-Module-Packagehub-Subpackages", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP2/aarch64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Packagehub-Subpackages15-SP2-Debuginfo-Updates for aarch64 HPC", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-packagehub-15-sp2-pool-aarch64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp2-pool-aarch64", + "product_id": 1947, + "repository_id": 4008, + "parent_product_id": 1943, + "root_product_id": 1933, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-15-SP2_aarch64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-15-SP2-Pool for aarch64 HPC", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-packagehub-subpackages15-sp2-pool-aarch64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp2-pool-aarch64", + "product_id": 1947, + "repository_id": 4009, + "parent_product_id": 1943, + "root_product_id": 1933, + "update_tag": "SLE-Module-Packagehub-Subpackages", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP2/aarch64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Packagehub-Subpackages15-SP2-Pool for aarch64 HPC", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-packagehub-subpackages15-sp2-debuginfo-pool-aarch64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp2-pool-aarch64", + "product_id": 1947, + "repository_id": 4010, + "parent_product_id": 1943, + "root_product_id": 1933, + "update_tag": "SLE-Module-Packagehub-Subpackages", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP2/aarch64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Packagehub-Subpackages15-SP2-Debuginfo-Pool for aarch64 HPC", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-server-applications15-sp2-updates-aarch64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp2-pool-aarch64", + "product_id": 1952, + "repository_id": 4041, + "parent_product_id": 1943, + "root_product_id": 1933, + "update_tag": "SLE-Module-Server-Applications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15-SP2/aarch64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Server-Applications15-SP2-Updates for aarch64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-server-applications15-sp2-debuginfo-updates-aarch64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp2-pool-aarch64", + "product_id": 1952, + "repository_id": 4042, + "parent_product_id": 1943, + "root_product_id": 1933, + "update_tag": "SLE-Module-Server-Applications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15-SP2/aarch64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Server-Applications15-SP2-Debuginfo-Updates for aarch64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-server-applications15-sp2-pool-aarch64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp2-pool-aarch64", + "product_id": 1952, + "repository_id": 4043, + "parent_product_id": 1943, + "root_product_id": 1933, + "update_tag": "SLE-Module-Server-Applications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP2/aarch64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Server-Applications15-SP2-Pool for aarch64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-server-applications15-sp2-debuginfo-pool-aarch64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp2-pool-aarch64", + "product_id": 1952, + "repository_id": 4044, + "parent_product_id": 1943, + "root_product_id": 1933, + "update_tag": "SLE-Module-Server-Applications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP2/aarch64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Server-Applications15-SP2-Debuginfo-Pool for aarch64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-ha15-sp2-updates-aarch64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp2-pool-aarch64", + "product_id": 1956, + "repository_id": 4061, + "parent_product_id": 1952, + "root_product_id": 1933, + "update_tag": "SLE-Product-HA", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-HA/15-SP2/aarch64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HA15-SP2-Updates for aarch64 HPC", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-ha15-sp2-debuginfo-updates-aarch64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp2-pool-aarch64", + "product_id": 1956, + "repository_id": 4062, + "parent_product_id": 1952, + "root_product_id": 1933, + "update_tag": "SLE-Product-HA", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-HA/15-SP2/aarch64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HA15-SP2-Debuginfo-Updates for aarch64 HPC", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-ha15-sp2-pool-aarch64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp2-pool-aarch64", + "product_id": 1956, + "repository_id": 4063, + "parent_product_id": 1952, + "root_product_id": 1933, + "update_tag": "SLE-Product-HA", + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP2/aarch64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HA15-SP2-Pool for aarch64 HPC", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-ha15-sp2-debuginfo-pool-aarch64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp2-pool-aarch64", + "product_id": 1956, + "repository_id": 4064, + "parent_product_id": 1952, + "root_product_id": 1933, + "update_tag": "SLE-Product-HA", + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP2/aarch64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HA15-SP2-Debuginfo-Pool for aarch64 HPC", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting15-sp2-updates-aarch64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp2-pool-aarch64", + "product_id": 1973, + "repository_id": 4146, + "parent_product_id": 1952, + "root_product_id": 1933, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/15-SP2/aarch64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Web-Scripting15-SP2-Updates for aarch64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting15-sp2-debuginfo-updates-aarch64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp2-pool-aarch64", + "product_id": 1973, + "repository_id": 4147, + "parent_product_id": 1952, + "root_product_id": 1933, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/15-SP2/aarch64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Web-Scripting15-SP2-Debuginfo-Updates for aarch64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting15-sp2-pool-aarch64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp2-pool-aarch64", + "product_id": 1973, + "repository_id": 4148, + "parent_product_id": 1952, + "root_product_id": 1933, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP2/aarch64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Web-Scripting15-SP2-Pool for aarch64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting15-sp2-debuginfo-pool-aarch64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp2-pool-aarch64", + "product_id": 1973, + "repository_id": 4149, + "parent_product_id": 1952, + "root_product_id": 1933, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP2/aarch64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Web-Scripting15-SP2-Debuginfo-Pool for aarch64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-hpc15-sp2-updates-aarch64", + "parent_channel_label": "sle-product-hpc-15-sp2-pool-aarch64", + "product_id": 1977, + "repository_id": 4166, + "parent_product_id": 1973, + "root_product_id": 1933, + "update_tag": "SLE-Module-HPC", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-HPC/15-SP2/aarch64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-HPC15-SP2-Updates for aarch64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-hpc15-sp2-debuginfo-updates-aarch64", + "parent_channel_label": "sle-product-hpc-15-sp2-pool-aarch64", + "product_id": 1977, + "repository_id": 4167, + "parent_product_id": 1973, + "root_product_id": 1933, + "update_tag": "SLE-Module-HPC", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-HPC/15-SP2/aarch64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-HPC15-SP2-Debuginfo-Updates for aarch64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-hpc15-sp2-pool-aarch64", + "parent_channel_label": "sle-product-hpc-15-sp2-pool-aarch64", + "product_id": 1977, + "repository_id": 4168, + "parent_product_id": 1973, + "root_product_id": 1933, + "update_tag": "SLE-Module-HPC", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-HPC/15-SP2/aarch64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-HPC15-SP2-Pool for aarch64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-hpc15-sp2-debuginfo-pool-aarch64", + "parent_channel_label": "sle-product-hpc-15-sp2-pool-aarch64", + "product_id": 1977, + "repository_id": 4169, + "parent_product_id": 1973, + "root_product_id": 1933, + "update_tag": "SLE-Module-HPC", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-HPC/15-SP2/aarch64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-HPC15-SP2-Debuginfo-Pool for aarch64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-legacy15-sp2-updates-aarch64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp2-pool-aarch64", + "product_id": 1979, + "repository_id": 4176, + "parent_product_id": 1952, + "root_product_id": 1933, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/15-SP2/aarch64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy15-SP2-Updates for aarch64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-legacy15-sp2-debuginfo-updates-aarch64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp2-pool-aarch64", + "product_id": 1979, + "repository_id": 4177, + "parent_product_id": 1952, + "root_product_id": 1933, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/15-SP2/aarch64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy15-SP2-Debuginfo-Updates for aarch64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-legacy15-sp2-pool-aarch64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp2-pool-aarch64", + "product_id": 1979, + "repository_id": 4178, + "parent_product_id": 1952, + "root_product_id": 1933, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15-SP2/aarch64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy15-SP2-Pool for aarch64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-legacy15-sp2-debuginfo-pool-aarch64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp2-pool-aarch64", + "product_id": 1979, + "repository_id": 4179, + "parent_product_id": 1952, + "root_product_id": 1933, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15-SP2/aarch64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy15-SP2-Debuginfo-Pool for aarch64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud15-sp2-updates-aarch64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp2-pool-aarch64", + "product_id": 1985, + "repository_id": 4206, + "parent_product_id": 1952, + "root_product_id": 1933, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/15-SP2/aarch64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud15-SP2-Updates for aarch64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud15-sp2-debuginfo-updates-aarch64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp2-pool-aarch64", + "product_id": 1985, + "repository_id": 4207, + "parent_product_id": 1952, + "root_product_id": 1933, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/15-SP2/aarch64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud15-SP2-Debuginfo-Updates for aarch64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud15-sp2-pool-aarch64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp2-pool-aarch64", + "product_id": 1985, + "repository_id": 4208, + "parent_product_id": 1952, + "root_product_id": 1933, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP2/aarch64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud15-SP2-Pool for aarch64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud15-sp2-debuginfo-pool-aarch64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp2-pool-aarch64", + "product_id": 1985, + "repository_id": 4209, + "parent_product_id": 1952, + "root_product_id": 1933, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP2/aarch64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud15-SP2-Debuginfo-Pool for aarch64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-containers15-sp2-updates-aarch64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp2-pool-aarch64", + "product_id": 1960, + "repository_id": 4081, + "parent_product_id": 1943, + "root_product_id": 1933, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/15-SP2/aarch64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers15-SP2-Updates for aarch64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-containers15-sp2-debuginfo-updates-aarch64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp2-pool-aarch64", + "product_id": 1960, + "repository_id": 4082, + "parent_product_id": 1943, + "root_product_id": 1933, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/15-SP2/aarch64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers15-SP2-Debuginfo-Updates for aarch64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-containers15-sp2-pool-aarch64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp2-pool-aarch64", + "product_id": 1960, + "repository_id": 4083, + "parent_product_id": 1943, + "root_product_id": 1933, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP2/aarch64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers15-SP2-Pool for aarch64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-containers15-sp2-debuginfo-pool-aarch64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp2-pool-aarch64", + "product_id": 1960, + "repository_id": 4084, + "parent_product_id": 1943, + "root_product_id": 1933, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP2/aarch64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers15-SP2-Debuginfo-Pool for aarch64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-desktop-applications15-sp2-updates-aarch64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp2-pool-aarch64", + "product_id": 1964, + "repository_id": 4101, + "parent_product_id": 1943, + "root_product_id": 1933, + "update_tag": "SLE-Module-Desktop-Applications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15-SP2/aarch64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Desktop-Applications15-SP2-Updates for aarch64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-desktop-applications15-sp2-debuginfo-updates-aarch64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp2-pool-aarch64", + "product_id": 1964, + "repository_id": 4102, + "parent_product_id": 1943, + "root_product_id": 1933, + "update_tag": "SLE-Module-Desktop-Applications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15-SP2/aarch64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Desktop-Applications15-SP2-Debuginfo-Updates for aarch64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-desktop-applications15-sp2-pool-aarch64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp2-pool-aarch64", + "product_id": 1964, + "repository_id": 4103, + "parent_product_id": 1943, + "root_product_id": 1933, + "update_tag": "SLE-Module-Desktop-Applications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP2/aarch64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Desktop-Applications15-SP2-Pool for aarch64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-desktop-applications15-sp2-debuginfo-pool-aarch64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp2-pool-aarch64", + "product_id": 1964, + "repository_id": 4104, + "parent_product_id": 1943, + "root_product_id": 1933, + "update_tag": "SLE-Module-Desktop-Applications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP2/aarch64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Desktop-Applications15-SP2-Debuginfo-Pool for aarch64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-devtools15-sp2-updates-aarch64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp2-pool-aarch64", + "product_id": 1968, + "repository_id": 4121, + "parent_product_id": 1964, + "root_product_id": 1933, + "update_tag": "SLE-Module-Development-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15-SP2/aarch64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-DevTools15-SP2-Updates for aarch64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-devtools15-sp2-debuginfo-updates-aarch64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp2-pool-aarch64", + "product_id": 1968, + "repository_id": 4122, + "parent_product_id": 1964, + "root_product_id": 1933, + "update_tag": "SLE-Module-Development-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15-SP2/aarch64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-DevTools15-SP2-Debuginfo-Updates for aarch64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-devtools15-sp2-pool-aarch64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp2-pool-aarch64", + "product_id": 1968, + "repository_id": 4123, + "parent_product_id": 1964, + "root_product_id": 1933, + "update_tag": "SLE-Module-Development-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP2/aarch64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-DevTools15-SP2-Pool for aarch64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-devtools15-sp2-debuginfo-pool-aarch64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp2-pool-aarch64", + "product_id": 1968, + "repository_id": 4124, + "parent_product_id": 1964, + "root_product_id": 1933, + "update_tag": "SLE-Module-Development-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP2/aarch64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-DevTools15-SP2-Debuginfo-Pool for aarch64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-nvidia-compute-15-updates-aarch64-hpc-sp2", + "parent_channel_label": "sle-product-hpc-15-sp2-pool-aarch64", + "product_id": 2130, + "repository_id": 4560, + "parent_product_id": 1968, + "root_product_id": 1933, + "update_tag": "SLE-Module-NVIDIA-Compute", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-NVIDIA-Compute/15/aarch64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-NVIDIA-Compute-15-Updates for aarch64 HPC SP2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-nvidia-compute-15-pool-aarch64-hpc-sp2", + "parent_channel_label": "sle-product-hpc-15-sp2-pool-aarch64", + "product_id": 2130, + "repository_id": 4561, + "parent_product_id": 1968, + "root_product_id": 1933, + "update_tag": "SLE-Module-NVIDIA-Compute", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-NVIDIA-Compute/15/aarch64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-NVIDIA-Compute-15-Pool for aarch64 HPC SP2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "nvidia-compute-sle-15-aarch64-hpc-sp2", + "parent_channel_label": "sle-product-hpc-15-sp2-pool-aarch64", + "product_id": 2130, + "repository_id": 4562, + "parent_product_id": 1968, + "root_product_id": 1933, + "update_tag": null, + "url": "https://developer.download.nvidia.com/compute/cuda/repos/sles15/sbsa/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "NVIDIA-Compute-SLE-15 for aarch64 HPC SP2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-python2-15-sp2-updates-aarch64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp2-pool-aarch64", + "product_id": 1989, + "repository_id": 4226, + "parent_product_id": 1943, + "root_product_id": 1933, + "update_tag": "SLE-Module-Python2", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Python2/15-SP2/aarch64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Python2-15-SP2-Updates for aarch64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-python2-15-sp2-debuginfo-updates-aarch64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp2-pool-aarch64", + "product_id": 1989, + "repository_id": 4227, + "parent_product_id": 1943, + "root_product_id": 1933, + "update_tag": "SLE-Module-Python2", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Python2/15-SP2/aarch64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Python2-15-SP2-Debuginfo-Updates for aarch64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-python2-15-sp2-pool-aarch64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp2-pool-aarch64", + "product_id": 1989, + "repository_id": 4228, + "parent_product_id": 1943, + "root_product_id": 1933, + "update_tag": "SLE-Module-Python2", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Python2/15-SP2/aarch64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Python2-15-SP2-Pool for aarch64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-python2-15-sp2-debuginfo-pool-aarch64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp2-pool-aarch64", + "product_id": 1989, + "repository_id": 4229, + "parent_product_id": 1943, + "root_product_id": 1933, + "update_tag": "SLE-Module-Python2", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Python2/15-SP2/aarch64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Python2-15-SP2-Debuginfo-Pool for aarch64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-hpc-15-sp2-ltss-updates-aarch64", + "parent_channel_label": "sle-product-hpc-15-sp2-pool-aarch64", + "product_id": 2124, + "repository_id": 4524, + "parent_product_id": 1933, + "root_product_id": 1933, + "update_tag": "SLE-Product-HPC", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-HPC/15-SP2-LTSS/aarch64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HPC-15-SP2-LTSS-Updates for aarch64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-hpc-15-sp2-ltss-debuginfo-updates-aarch64", + "parent_channel_label": "sle-product-hpc-15-sp2-pool-aarch64", + "product_id": 2124, + "repository_id": 4525, + "parent_product_id": 1933, + "root_product_id": 1933, + "update_tag": "SLE-Product-HPC", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-HPC/15-SP2-LTSS/aarch64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HPC-15-SP2-LTSS-Debuginfo-Updates for aarch64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-hpc-15-sp2-ltss-pool-aarch64", + "parent_channel_label": "sle-product-hpc-15-sp2-pool-aarch64", + "product_id": 2124, + "repository_id": 4526, + "parent_product_id": 1933, + "root_product_id": 1933, + "update_tag": "SLE-Product-HPC", + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-HPC/15-SP2-LTSS/aarch64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HPC-15-SP2-LTSS-Pool for aarch64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-hpc-15-sp2-ltss-debuginfo-pool-aarch64", + "parent_channel_label": "sle-product-hpc-15-sp2-pool-aarch64", + "product_id": 2124, + "repository_id": 4527, + "parent_product_id": 1933, + "root_product_id": 1933, + "update_tag": "SLE-Product-HPC", + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-HPC/15-SP2-LTSS/aarch64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HPC-15-SP2-LTSS-Debuginfo-Pool for aarch64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-hpc-15-sp2-espos-updates-aarch64", + "parent_channel_label": "sle-product-hpc-15-sp2-pool-aarch64", + "product_id": 2128, + "repository_id": 4544, + "parent_product_id": 1933, + "root_product_id": 1933, + "update_tag": "SLE-Product-HPC", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-HPC/15-SP2-ESPOS/aarch64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HPC-15-SP2-ESPOS-Updates for aarch64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-hpc-15-sp2-espos-debuginfo-updates-aarch64", + "parent_channel_label": "sle-product-hpc-15-sp2-pool-aarch64", + "product_id": 2128, + "repository_id": 4545, + "parent_product_id": 1933, + "root_product_id": 1933, + "update_tag": "SLE-Product-HPC", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-HPC/15-SP2-ESPOS/aarch64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HPC-15-SP2-ESPOS-Debuginfo-Updates for aarch64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-hpc-15-sp2-espos-pool-aarch64", + "parent_channel_label": "sle-product-hpc-15-sp2-pool-aarch64", + "product_id": 2128, + "repository_id": 4546, + "parent_product_id": 1933, + "root_product_id": 1933, + "update_tag": "SLE-Product-HPC", + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-HPC/15-SP2-ESPOS/aarch64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HPC-15-SP2-ESPOS-Pool for aarch64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-hpc-15-sp2-espos-debuginfo-pool-aarch64", + "parent_channel_label": "sle-product-hpc-15-sp2-pool-aarch64", + "product_id": 2128, + "repository_id": 4547, + "parent_product_id": 1933, + "root_product_id": 1933, + "update_tag": "SLE-Product-HPC", + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-HPC/15-SP2-ESPOS/aarch64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HPC-15-SP2-ESPOS-Debuginfo-Pool for aarch64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-hpc-15-sp2-updates-x86_64", + "parent_channel_label": "sle-product-hpc-15-sp2-pool-x86_64", + "product_id": 1934, + "repository_id": 3932, + "parent_product_id": null, + "root_product_id": 1934, + "update_tag": "SLE-Product-HPC", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-HPC/15-SP2/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HPC-15-SP2-Updates for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-hpc15-sp2-debuginfo-updates-x86_64", + "parent_channel_label": "sle-product-hpc-15-sp2-pool-x86_64", + "product_id": 1934, + "repository_id": 3933, + "parent_product_id": null, + "root_product_id": 1934, + "update_tag": "SLE-Product-HPC", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-HPC/15-SP2/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HPC15-SP2-Debuginfo-Updates for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-hpc-15-sp2-pool-x86_64", + "parent_channel_label": null, + "product_id": 1934, + "repository_id": 3934, + "parent_product_id": null, + "root_product_id": 1934, + "update_tag": "SLE-Product-HPC", + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-HPC/15-SP2/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HPC-15-SP2-Pool for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-hpc15-sp2-debuginfo-pool-x86_64", + "parent_channel_label": "sle-product-hpc-15-sp2-pool-x86_64", + "product_id": 1934, + "repository_id": 3935, + "parent_product_id": null, + "root_product_id": 1934, + "update_tag": "SLE-Product-HPC", + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-HPC/15-SP2/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HPC15-SP2-Debuginfo-Pool for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-basesystem15-sp2-updates-x86_64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp2-pool-x86_64", + "product_id": 1946, + "repository_id": 3999, + "parent_product_id": 1934, + "root_product_id": 1934, + "update_tag": "SLE-Module-Basesystem", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15-SP2/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Basesystem15-SP2-Updates for x86_64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-basesystem15-sp2-debuginfo-updates-x86_64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp2-pool-x86_64", + "product_id": 1946, + "repository_id": 4000, + "parent_product_id": 1934, + "root_product_id": 1934, + "update_tag": "SLE-Module-Basesystem", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15-SP2/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Basesystem15-SP2-Debuginfo-Updates for x86_64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-basesystem15-sp2-pool-x86_64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp2-pool-x86_64", + "product_id": 1946, + "repository_id": 4001, + "parent_product_id": 1934, + "root_product_id": 1934, + "update_tag": "SLE-Module-Basesystem", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP2/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Basesystem15-SP2-Pool for x86_64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-basesystem15-sp2-debuginfo-pool-x86_64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp2-pool-x86_64", + "product_id": 1946, + "repository_id": 4002, + "parent_product_id": 1934, + "root_product_id": 1934, + "update_tag": "SLE-Module-Basesystem", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP2/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Basesystem15-SP2-Debuginfo-Pool for x86_64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-manager-tools15-updates-x86_64-hpc-sp2", + "parent_channel_label": "sle-product-hpc-15-sp2-pool-x86_64", + "product_id": 1712, + "repository_id": 2932, + "parent_product_id": 1946, + "root_product_id": 1934, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/15/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-Updates for x86_64 HPC SP2", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools15-debuginfo-updates-x86_64-hpc-sp2", + "parent_channel_label": "sle-product-hpc-15-sp2-pool-x86_64", + "product_id": 1712, + "repository_id": 2933, + "parent_product_id": 1946, + "root_product_id": 1934, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/15/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-Debuginfo-Updates for x86_64 HPC SP2", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools15-pool-x86_64-hpc-sp2", + "parent_channel_label": "sle-product-hpc-15-sp2-pool-x86_64", + "product_id": 1712, + "repository_id": 2934, + "parent_product_id": 1946, + "root_product_id": 1934, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/15/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-Pool for x86_64 HPC SP2", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools15-debuginfo-pool-x86_64-hpc-sp2", + "parent_channel_label": "sle-product-hpc-15-sp2-pool-x86_64", + "product_id": 1712, + "repository_id": 2935, + "parent_product_id": 1946, + "root_product_id": 1934, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/15/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-Debuginfo-Pool for x86_64 HPC SP2", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools15-beta-updates-x86_64-hpc-sp2", + "parent_channel_label": "sle-product-hpc-15-sp2-pool-x86_64", + "product_id": 1928, + "repository_id": 3897, + "parent_product_id": 1712, + "root_product_id": 1934, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/15-BETA/x86_64/update/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-BETA-Updates for x86_64 HPC SP2", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools15-beta-debuginfo-updates-x86_64-hpc-sp2", + "parent_channel_label": "sle-product-hpc-15-sp2-pool-x86_64", + "product_id": 1928, + "repository_id": 3898, + "parent_product_id": 1712, + "root_product_id": 1934, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/15-BETA/x86_64/update_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-BETA-Debuginfo-Updates for x86_64 HPC SP2", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools15-beta-pool-x86_64-hpc-sp2", + "parent_channel_label": "sle-product-hpc-15-sp2-pool-x86_64", + "product_id": 1928, + "repository_id": 3908, + "parent_product_id": 1712, + "root_product_id": 1934, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/15-BETA/x86_64/product/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-BETA-Pool for x86_64 HPC SP2", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools15-beta-debuginfo-pool-x86_64-hpc-sp2", + "parent_channel_label": "sle-product-hpc-15-sp2-pool-x86_64", + "product_id": 1928, + "repository_id": 3909, + "parent_product_id": 1712, + "root_product_id": 1934, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/15-BETA/x86_64/product_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-BETA-Debuginfo-Pool for x86_64 HPC SP2", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "suse-packagehub-15-sp2-backports-pool-x86_64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp2-pool-x86_64", + "product_id": 1950, + "repository_id": 4028, + "parent_product_id": 1946, + "root_product_id": 1934, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-15-SP2_x86_64/standard/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-15-SP2-Backports-Pool for x86_64 HPC", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-packagehub-15-sp2-backports-debuginfo-x86_64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp2-pool-x86_64", + "product_id": 1950, + "repository_id": 4029, + "parent_product_id": 1946, + "root_product_id": 1934, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-15-SP2_x86_64/standard_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-15-SP2-Backports-Debuginfo for x86_64 HPC", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-packagehub-subpackages15-sp2-updates-x86_64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp2-pool-x86_64", + "product_id": 1950, + "repository_id": 4030, + "parent_product_id": 1946, + "root_product_id": 1934, + "update_tag": "SLE-Module-Packagehub-Subpackages", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP2/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Packagehub-Subpackages15-SP2-Updates for x86_64 HPC", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-packagehub-subpackages15-sp2-debuginfo-updates-x86_64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp2-pool-x86_64", + "product_id": 1950, + "repository_id": 4031, + "parent_product_id": 1946, + "root_product_id": 1934, + "update_tag": "SLE-Module-Packagehub-Subpackages", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP2/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Packagehub-Subpackages15-SP2-Debuginfo-Updates for x86_64 HPC", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-packagehub-15-sp2-pool-x86_64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp2-pool-x86_64", + "product_id": 1950, + "repository_id": 4032, + "parent_product_id": 1946, + "root_product_id": 1934, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-15-SP2_x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-15-SP2-Pool for x86_64 HPC", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-packagehub-subpackages15-sp2-pool-x86_64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp2-pool-x86_64", + "product_id": 1950, + "repository_id": 4033, + "parent_product_id": 1946, + "root_product_id": 1934, + "update_tag": "SLE-Module-Packagehub-Subpackages", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP2/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Packagehub-Subpackages15-SP2-Pool for x86_64 HPC", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-packagehub-subpackages15-sp2-debuginfo-pool-x86_64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp2-pool-x86_64", + "product_id": 1950, + "repository_id": 4034, + "parent_product_id": 1946, + "root_product_id": 1934, + "update_tag": "SLE-Module-Packagehub-Subpackages", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP2/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Packagehub-Subpackages15-SP2-Debuginfo-Pool for x86_64 HPC", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-server-applications15-sp2-updates-x86_64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp2-pool-x86_64", + "product_id": 1955, + "repository_id": 4056, + "parent_product_id": 1946, + "root_product_id": 1934, + "update_tag": "SLE-Module-Server-Applications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15-SP2/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Server-Applications15-SP2-Updates for x86_64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-server-applications15-sp2-debuginfo-updates-x86_64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp2-pool-x86_64", + "product_id": 1955, + "repository_id": 4057, + "parent_product_id": 1946, + "root_product_id": 1934, + "update_tag": "SLE-Module-Server-Applications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15-SP2/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Server-Applications15-SP2-Debuginfo-Updates for x86_64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-server-applications15-sp2-pool-x86_64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp2-pool-x86_64", + "product_id": 1955, + "repository_id": 4058, + "parent_product_id": 1946, + "root_product_id": 1934, + "update_tag": "SLE-Module-Server-Applications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP2/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Server-Applications15-SP2-Pool for x86_64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-server-applications15-sp2-debuginfo-pool-x86_64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp2-pool-x86_64", + "product_id": 1955, + "repository_id": 4059, + "parent_product_id": 1946, + "root_product_id": 1934, + "update_tag": "SLE-Module-Server-Applications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP2/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Server-Applications15-SP2-Debuginfo-Pool for x86_64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-ha15-sp2-updates-x86_64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp2-pool-x86_64", + "product_id": 1959, + "repository_id": 4076, + "parent_product_id": 1955, + "root_product_id": 1934, + "update_tag": "SLE-Product-HA", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-HA/15-SP2/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HA15-SP2-Updates for x86_64 HPC", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-ha15-sp2-debuginfo-updates-x86_64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp2-pool-x86_64", + "product_id": 1959, + "repository_id": 4077, + "parent_product_id": 1955, + "root_product_id": 1934, + "update_tag": "SLE-Product-HA", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-HA/15-SP2/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HA15-SP2-Debuginfo-Updates for x86_64 HPC", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-ha15-sp2-pool-x86_64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp2-pool-x86_64", + "product_id": 1959, + "repository_id": 4078, + "parent_product_id": 1955, + "root_product_id": 1934, + "update_tag": "SLE-Product-HA", + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP2/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HA15-SP2-Pool for x86_64 HPC", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-ha15-sp2-debuginfo-pool-x86_64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp2-pool-x86_64", + "product_id": 1959, + "repository_id": 4079, + "parent_product_id": 1955, + "root_product_id": 1934, + "update_tag": "SLE-Product-HA", + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP2/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HA15-SP2-Debuginfo-Pool for x86_64 HPC", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting15-sp2-updates-x86_64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp2-pool-x86_64", + "product_id": 1976, + "repository_id": 4161, + "parent_product_id": 1955, + "root_product_id": 1934, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/15-SP2/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Web-Scripting15-SP2-Updates for x86_64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting15-sp2-debuginfo-updates-x86_64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp2-pool-x86_64", + "product_id": 1976, + "repository_id": 4162, + "parent_product_id": 1955, + "root_product_id": 1934, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/15-SP2/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Web-Scripting15-SP2-Debuginfo-Updates for x86_64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting15-sp2-pool-x86_64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp2-pool-x86_64", + "product_id": 1976, + "repository_id": 4163, + "parent_product_id": 1955, + "root_product_id": 1934, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP2/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Web-Scripting15-SP2-Pool for x86_64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting15-sp2-debuginfo-pool-x86_64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp2-pool-x86_64", + "product_id": 1976, + "repository_id": 4164, + "parent_product_id": 1955, + "root_product_id": 1934, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP2/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Web-Scripting15-SP2-Debuginfo-Pool for x86_64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-hpc15-sp2-updates-x86_64", + "parent_channel_label": "sle-product-hpc-15-sp2-pool-x86_64", + "product_id": 1978, + "repository_id": 4171, + "parent_product_id": 1976, + "root_product_id": 1934, + "update_tag": "SLE-Module-HPC", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-HPC/15-SP2/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-HPC15-SP2-Updates for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-hpc15-sp2-debuginfo-updates-x86_64", + "parent_channel_label": "sle-product-hpc-15-sp2-pool-x86_64", + "product_id": 1978, + "repository_id": 4172, + "parent_product_id": 1976, + "root_product_id": 1934, + "update_tag": "SLE-Module-HPC", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-HPC/15-SP2/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-HPC15-SP2-Debuginfo-Updates for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-hpc15-sp2-pool-x86_64", + "parent_channel_label": "sle-product-hpc-15-sp2-pool-x86_64", + "product_id": 1978, + "repository_id": 4173, + "parent_product_id": 1976, + "root_product_id": 1934, + "update_tag": "SLE-Module-HPC", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-HPC/15-SP2/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-HPC15-SP2-Pool for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-hpc15-sp2-debuginfo-pool-x86_64", + "parent_channel_label": "sle-product-hpc-15-sp2-pool-x86_64", + "product_id": 1978, + "repository_id": 4174, + "parent_product_id": 1976, + "root_product_id": 1934, + "update_tag": "SLE-Module-HPC", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-HPC/15-SP2/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-HPC15-SP2-Debuginfo-Pool for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-legacy15-sp2-updates-x86_64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp2-pool-x86_64", + "product_id": 1982, + "repository_id": 4191, + "parent_product_id": 1955, + "root_product_id": 1934, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/15-SP2/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy15-SP2-Updates for x86_64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-legacy15-sp2-debuginfo-updates-x86_64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp2-pool-x86_64", + "product_id": 1982, + "repository_id": 4192, + "parent_product_id": 1955, + "root_product_id": 1934, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/15-SP2/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy15-SP2-Debuginfo-Updates for x86_64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-legacy15-sp2-pool-x86_64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp2-pool-x86_64", + "product_id": 1982, + "repository_id": 4193, + "parent_product_id": 1955, + "root_product_id": 1934, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15-SP2/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy15-SP2-Pool for x86_64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-legacy15-sp2-debuginfo-pool-x86_64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp2-pool-x86_64", + "product_id": 1982, + "repository_id": 4194, + "parent_product_id": 1955, + "root_product_id": 1934, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15-SP2/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy15-SP2-Debuginfo-Pool for x86_64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud15-sp2-updates-x86_64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp2-pool-x86_64", + "product_id": 1988, + "repository_id": 4221, + "parent_product_id": 1955, + "root_product_id": 1934, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/15-SP2/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud15-SP2-Updates for x86_64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud15-sp2-debuginfo-updates-x86_64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp2-pool-x86_64", + "product_id": 1988, + "repository_id": 4222, + "parent_product_id": 1955, + "root_product_id": 1934, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/15-SP2/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud15-SP2-Debuginfo-Updates for x86_64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud15-sp2-pool-x86_64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp2-pool-x86_64", + "product_id": 1988, + "repository_id": 4223, + "parent_product_id": 1955, + "root_product_id": 1934, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP2/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud15-SP2-Pool for x86_64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud15-sp2-debuginfo-pool-x86_64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp2-pool-x86_64", + "product_id": 1988, + "repository_id": 4224, + "parent_product_id": 1955, + "root_product_id": 1934, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP2/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud15-SP2-Debuginfo-Pool for x86_64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-containers15-sp2-updates-x86_64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp2-pool-x86_64", + "product_id": 1963, + "repository_id": 4096, + "parent_product_id": 1946, + "root_product_id": 1934, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/15-SP2/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers15-SP2-Updates for x86_64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-containers15-sp2-debuginfo-updates-x86_64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp2-pool-x86_64", + "product_id": 1963, + "repository_id": 4097, + "parent_product_id": 1946, + "root_product_id": 1934, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/15-SP2/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers15-SP2-Debuginfo-Updates for x86_64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-containers15-sp2-pool-x86_64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp2-pool-x86_64", + "product_id": 1963, + "repository_id": 4098, + "parent_product_id": 1946, + "root_product_id": 1934, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP2/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers15-SP2-Pool for x86_64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-containers15-sp2-debuginfo-pool-x86_64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp2-pool-x86_64", + "product_id": 1963, + "repository_id": 4099, + "parent_product_id": 1946, + "root_product_id": 1934, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP2/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers15-SP2-Debuginfo-Pool for x86_64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-desktop-applications15-sp2-updates-x86_64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp2-pool-x86_64", + "product_id": 1967, + "repository_id": 4116, + "parent_product_id": 1946, + "root_product_id": 1934, + "update_tag": "SLE-Module-Desktop-Applications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15-SP2/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Desktop-Applications15-SP2-Updates for x86_64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-desktop-applications15-sp2-debuginfo-updates-x86_64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp2-pool-x86_64", + "product_id": 1967, + "repository_id": 4117, + "parent_product_id": 1946, + "root_product_id": 1934, + "update_tag": "SLE-Module-Desktop-Applications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15-SP2/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Desktop-Applications15-SP2-Debuginfo-Updates for x86_64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-desktop-applications15-sp2-pool-x86_64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp2-pool-x86_64", + "product_id": 1967, + "repository_id": 4118, + "parent_product_id": 1946, + "root_product_id": 1934, + "update_tag": "SLE-Module-Desktop-Applications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP2/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Desktop-Applications15-SP2-Pool for x86_64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-desktop-applications15-sp2-debuginfo-pool-x86_64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp2-pool-x86_64", + "product_id": 1967, + "repository_id": 4119, + "parent_product_id": 1946, + "root_product_id": 1934, + "update_tag": "SLE-Module-Desktop-Applications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP2/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Desktop-Applications15-SP2-Debuginfo-Pool for x86_64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-devtools15-sp2-updates-x86_64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp2-pool-x86_64", + "product_id": 1971, + "repository_id": 4136, + "parent_product_id": 1967, + "root_product_id": 1934, + "update_tag": "SLE-Module-Development-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15-SP2/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-DevTools15-SP2-Updates for x86_64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-devtools15-sp2-debuginfo-updates-x86_64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp2-pool-x86_64", + "product_id": 1971, + "repository_id": 4137, + "parent_product_id": 1967, + "root_product_id": 1934, + "update_tag": "SLE-Module-Development-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15-SP2/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-DevTools15-SP2-Debuginfo-Updates for x86_64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-devtools15-sp2-pool-x86_64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp2-pool-x86_64", + "product_id": 1971, + "repository_id": 4138, + "parent_product_id": 1967, + "root_product_id": 1934, + "update_tag": "SLE-Module-Development-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP2/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-DevTools15-SP2-Pool for x86_64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-devtools15-sp2-debuginfo-pool-x86_64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp2-pool-x86_64", + "product_id": 1971, + "repository_id": 4139, + "parent_product_id": 1967, + "root_product_id": 1934, + "update_tag": "SLE-Module-Development-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP2/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-DevTools15-SP2-Debuginfo-Pool for x86_64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-nvidia-compute-15-updates-x86_64-hpc-sp2", + "parent_channel_label": "sle-product-hpc-15-sp2-pool-x86_64", + "product_id": 2131, + "repository_id": 4554, + "parent_product_id": 1971, + "root_product_id": 1934, + "update_tag": "SLE-Module-NVIDIA-Compute", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-NVIDIA-Compute/15/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-NVIDIA-Compute-15-Updates for x86_64 HPC SP2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-nvidia-compute-15-pool-x86_64-hpc-sp2", + "parent_channel_label": "sle-product-hpc-15-sp2-pool-x86_64", + "product_id": 2131, + "repository_id": 4556, + "parent_product_id": 1971, + "root_product_id": 1934, + "update_tag": "SLE-Module-NVIDIA-Compute", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-NVIDIA-Compute/15/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-NVIDIA-Compute-15-Pool for x86_64 HPC SP2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "nvidia-compute-sle-15-x86_64-hpc-sp2", + "parent_channel_label": "sle-product-hpc-15-sp2-pool-x86_64", + "product_id": 2131, + "repository_id": 4563, + "parent_product_id": 1971, + "root_product_id": 1934, + "update_tag": null, + "url": "https://developer.download.nvidia.com/compute/cuda/repos/sles15/x86_64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "NVIDIA-Compute-SLE-15 for x86_64 HPC SP2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-live-patching15-sp2-updates-x86_64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp2-pool-x86_64", + "product_id": 1984, + "repository_id": 4201, + "parent_product_id": 1946, + "root_product_id": 1934, + "update_tag": "SLE-Module-Live-Patching", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Live-Patching/15-SP2/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Live-Patching15-SP2-Updates for x86_64 HPC", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-live-patching15-sp2-debuginfo-updates-x86_64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp2-pool-x86_64", + "product_id": 1984, + "repository_id": 4202, + "parent_product_id": 1946, + "root_product_id": 1934, + "update_tag": "SLE-Module-Live-Patching", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Live-Patching/15-SP2/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Live-Patching15-SP2-Debuginfo-Updates for x86_64 HPC", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-live-patching15-sp2-pool-x86_64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp2-pool-x86_64", + "product_id": 1984, + "repository_id": 4203, + "parent_product_id": 1946, + "root_product_id": 1934, + "update_tag": "SLE-Module-Live-Patching", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Live-Patching/15-SP2/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Live-Patching15-SP2-Pool for x86_64 HPC", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-live-patching15-sp2-debuginfo-pool-x86_64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp2-pool-x86_64", + "product_id": 1984, + "repository_id": 4204, + "parent_product_id": 1946, + "root_product_id": 1934, + "update_tag": "SLE-Module-Live-Patching", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Live-Patching/15-SP2/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Live-Patching15-SP2-Debuginfo-Pool for x86_64 HPC", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-python2-15-sp2-updates-x86_64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp2-pool-x86_64", + "product_id": 1992, + "repository_id": 4241, + "parent_product_id": 1946, + "root_product_id": 1934, + "update_tag": "SLE-Module-Python2", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Python2/15-SP2/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Python2-15-SP2-Updates for x86_64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-python2-15-sp2-debuginfo-updates-x86_64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp2-pool-x86_64", + "product_id": 1992, + "repository_id": 4242, + "parent_product_id": 1946, + "root_product_id": 1934, + "update_tag": "SLE-Module-Python2", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Python2/15-SP2/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Python2-15-SP2-Debuginfo-Updates for x86_64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-python2-15-sp2-pool-x86_64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp2-pool-x86_64", + "product_id": 1992, + "repository_id": 4243, + "parent_product_id": 1946, + "root_product_id": 1934, + "update_tag": "SLE-Module-Python2", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Python2/15-SP2/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Python2-15-SP2-Pool for x86_64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-python2-15-sp2-debuginfo-pool-x86_64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp2-pool-x86_64", + "product_id": 1992, + "repository_id": 4244, + "parent_product_id": 1946, + "root_product_id": 1934, + "update_tag": "SLE-Module-Python2", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Python2/15-SP2/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Python2-15-SP2-Debuginfo-Pool for x86_64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-hpc-15-sp2-ltss-updates-x86_64", + "parent_channel_label": "sle-product-hpc-15-sp2-pool-x86_64", + "product_id": 2125, + "repository_id": 4529, + "parent_product_id": 1934, + "root_product_id": 1934, + "update_tag": "SLE-Product-HPC", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-HPC/15-SP2-LTSS/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HPC-15-SP2-LTSS-Updates for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-hpc-15-sp2-ltss-debuginfo-updates-x86_64", + "parent_channel_label": "sle-product-hpc-15-sp2-pool-x86_64", + "product_id": 2125, + "repository_id": 4530, + "parent_product_id": 1934, + "root_product_id": 1934, + "update_tag": "SLE-Product-HPC", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-HPC/15-SP2-LTSS/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HPC-15-SP2-LTSS-Debuginfo-Updates for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-hpc-15-sp2-ltss-pool-x86_64", + "parent_channel_label": "sle-product-hpc-15-sp2-pool-x86_64", + "product_id": 2125, + "repository_id": 4531, + "parent_product_id": 1934, + "root_product_id": 1934, + "update_tag": "SLE-Product-HPC", + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-HPC/15-SP2-LTSS/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HPC-15-SP2-LTSS-Pool for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-hpc-15-sp2-ltss-debuginfo-pool-x86_64", + "parent_channel_label": "sle-product-hpc-15-sp2-pool-x86_64", + "product_id": 2125, + "repository_id": 4532, + "parent_product_id": 1934, + "root_product_id": 1934, + "update_tag": "SLE-Product-HPC", + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-HPC/15-SP2-LTSS/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HPC-15-SP2-LTSS-Debuginfo-Pool for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-hpc-15-sp2-espos-updates-x86_64", + "parent_channel_label": "sle-product-hpc-15-sp2-pool-x86_64", + "product_id": 2129, + "repository_id": 4549, + "parent_product_id": 1934, + "root_product_id": 1934, + "update_tag": "SLE-Product-HPC", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-HPC/15-SP2-ESPOS/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HPC-15-SP2-ESPOS-Updates for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-hpc-15-sp2-espos-debuginfo-updates-x86_64", + "parent_channel_label": "sle-product-hpc-15-sp2-pool-x86_64", + "product_id": 2129, + "repository_id": 4550, + "parent_product_id": 1934, + "root_product_id": 1934, + "update_tag": "SLE-Product-HPC", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-HPC/15-SP2-ESPOS/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HPC-15-SP2-ESPOS-Debuginfo-Updates for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-hpc-15-sp2-espos-pool-x86_64", + "parent_channel_label": "sle-product-hpc-15-sp2-pool-x86_64", + "product_id": 2129, + "repository_id": 4551, + "parent_product_id": 1934, + "root_product_id": 1934, + "update_tag": "SLE-Product-HPC", + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-HPC/15-SP2-ESPOS/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HPC-15-SP2-ESPOS-Pool for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-hpc-15-sp2-espos-debuginfo-pool-x86_64", + "parent_channel_label": "sle-product-hpc-15-sp2-pool-x86_64", + "product_id": 2129, + "repository_id": 4552, + "parent_product_id": 1934, + "root_product_id": 1934, + "update_tag": "SLE-Product-HPC", + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-HPC/15-SP2-ESPOS/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HPC-15-SP2-ESPOS-Debuginfo-Pool for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-sled15-sp2-updates-x86_64", + "parent_channel_label": "sle-product-sled15-sp2-pool-x86_64", + "product_id": 1935, + "repository_id": 3937, + "parent_product_id": null, + "root_product_id": 1935, + "update_tag": "SLE-Product-SLED", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-SLED/15-SP2/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-SLED15-SP2-Updates for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-sled15-sp2-debuginfo-updates-x86_64", + "parent_channel_label": "sle-product-sled15-sp2-pool-x86_64", + "product_id": 1935, + "repository_id": 3938, + "parent_product_id": null, + "root_product_id": 1935, + "update_tag": "SLE-Product-SLED", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-SLED/15-SP2/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-SLED15-SP2-Debuginfo-Updates for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-sled15-sp2-pool-x86_64", + "parent_channel_label": null, + "product_id": 1935, + "repository_id": 3939, + "parent_product_id": null, + "root_product_id": 1935, + "update_tag": "SLE-Product-SLED", + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-SLED/15-SP2/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-SLED15-SP2-Pool for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-sled15-sp2-debuginfo-pool-x86_64", + "parent_channel_label": "sle-product-sled15-sp2-pool-x86_64", + "product_id": 1935, + "repository_id": 3940, + "parent_product_id": null, + "root_product_id": 1935, + "update_tag": "SLE-Product-SLED", + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-SLED/15-SP2/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-SLED15-SP2-Debuginfo-Pool for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-basesystem15-sp2-updates-x86_64-sled", + "parent_channel_label": "sle-product-sled15-sp2-pool-x86_64", + "product_id": 1946, + "repository_id": 3999, + "parent_product_id": 1935, + "root_product_id": 1935, + "update_tag": "SLE-Module-Basesystem", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15-SP2/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Basesystem15-SP2-Updates for x86_64 SLED", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-basesystem15-sp2-debuginfo-updates-x86_64-sled", + "parent_channel_label": "sle-product-sled15-sp2-pool-x86_64", + "product_id": 1946, + "repository_id": 4000, + "parent_product_id": 1935, + "root_product_id": 1935, + "update_tag": "SLE-Module-Basesystem", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15-SP2/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Basesystem15-SP2-Debuginfo-Updates for x86_64 SLED", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-basesystem15-sp2-pool-x86_64-sled", + "parent_channel_label": "sle-product-sled15-sp2-pool-x86_64", + "product_id": 1946, + "repository_id": 4001, + "parent_product_id": 1935, + "root_product_id": 1935, + "update_tag": "SLE-Module-Basesystem", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP2/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Basesystem15-SP2-Pool for x86_64 SLED", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-basesystem15-sp2-debuginfo-pool-x86_64-sled", + "parent_channel_label": "sle-product-sled15-sp2-pool-x86_64", + "product_id": 1946, + "repository_id": 4002, + "parent_product_id": 1935, + "root_product_id": 1935, + "update_tag": "SLE-Module-Basesystem", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP2/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Basesystem15-SP2-Debuginfo-Pool for x86_64 SLED", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-manager-tools15-updates-x86_64-sled-sp2", + "parent_channel_label": "sle-product-sled15-sp2-pool-x86_64", + "product_id": 1712, + "repository_id": 2932, + "parent_product_id": 1946, + "root_product_id": 1935, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/15/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-Updates for x86_64 SLED SP2", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools15-debuginfo-updates-x86_64-sled-sp2", + "parent_channel_label": "sle-product-sled15-sp2-pool-x86_64", + "product_id": 1712, + "repository_id": 2933, + "parent_product_id": 1946, + "root_product_id": 1935, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/15/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-Debuginfo-Updates for x86_64 SLED SP2", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools15-pool-x86_64-sled-sp2", + "parent_channel_label": "sle-product-sled15-sp2-pool-x86_64", + "product_id": 1712, + "repository_id": 2934, + "parent_product_id": 1946, + "root_product_id": 1935, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/15/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-Pool for x86_64 SLED SP2", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools15-debuginfo-pool-x86_64-sled-sp2", + "parent_channel_label": "sle-product-sled15-sp2-pool-x86_64", + "product_id": 1712, + "repository_id": 2935, + "parent_product_id": 1946, + "root_product_id": 1935, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/15/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-Debuginfo-Pool for x86_64 SLED SP2", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools15-beta-updates-x86_64-sled-sp2", + "parent_channel_label": "sle-product-sled15-sp2-pool-x86_64", + "product_id": 1928, + "repository_id": 3897, + "parent_product_id": 1712, + "root_product_id": 1935, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/15-BETA/x86_64/update/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-BETA-Updates for x86_64 SLED SP2", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools15-beta-debuginfo-updates-x86_64-sled-sp2", + "parent_channel_label": "sle-product-sled15-sp2-pool-x86_64", + "product_id": 1928, + "repository_id": 3898, + "parent_product_id": 1712, + "root_product_id": 1935, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/15-BETA/x86_64/update_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-BETA-Debuginfo-Updates for x86_64 SLED SP2", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools15-beta-pool-x86_64-sled-sp2", + "parent_channel_label": "sle-product-sled15-sp2-pool-x86_64", + "product_id": 1928, + "repository_id": 3908, + "parent_product_id": 1712, + "root_product_id": 1935, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/15-BETA/x86_64/product/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-BETA-Pool for x86_64 SLED SP2", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools15-beta-debuginfo-pool-x86_64-sled-sp2", + "parent_channel_label": "sle-product-sled15-sp2-pool-x86_64", + "product_id": 1928, + "repository_id": 3909, + "parent_product_id": 1712, + "root_product_id": 1935, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/15-BETA/x86_64/product_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-BETA-Debuginfo-Pool for x86_64 SLED SP2", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "suse-packagehub-15-sp2-backports-pool-x86_64-sled", + "parent_channel_label": "sle-product-sled15-sp2-pool-x86_64", + "product_id": 1950, + "repository_id": 4028, + "parent_product_id": 1946, + "root_product_id": 1935, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-15-SP2_x86_64/standard/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-15-SP2-Backports-Pool for x86_64 SLED", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-packagehub-15-sp2-backports-debuginfo-x86_64-sled", + "parent_channel_label": "sle-product-sled15-sp2-pool-x86_64", + "product_id": 1950, + "repository_id": 4029, + "parent_product_id": 1946, + "root_product_id": 1935, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-15-SP2_x86_64/standard_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-15-SP2-Backports-Debuginfo for x86_64 SLED", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-packagehub-subpackages15-sp2-updates-x86_64-sled", + "parent_channel_label": "sle-product-sled15-sp2-pool-x86_64", + "product_id": 1950, + "repository_id": 4030, + "parent_product_id": 1946, + "root_product_id": 1935, + "update_tag": "SLE-Module-Packagehub-Subpackages", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP2/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Packagehub-Subpackages15-SP2-Updates for x86_64 SLED", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-packagehub-subpackages15-sp2-debuginfo-updates-x86_64-sled", + "parent_channel_label": "sle-product-sled15-sp2-pool-x86_64", + "product_id": 1950, + "repository_id": 4031, + "parent_product_id": 1946, + "root_product_id": 1935, + "update_tag": "SLE-Module-Packagehub-Subpackages", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP2/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Packagehub-Subpackages15-SP2-Debuginfo-Updates for x86_64 SLED", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-packagehub-15-sp2-pool-x86_64-sled", + "parent_channel_label": "sle-product-sled15-sp2-pool-x86_64", + "product_id": 1950, + "repository_id": 4032, + "parent_product_id": 1946, + "root_product_id": 1935, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-15-SP2_x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-15-SP2-Pool for x86_64 SLED", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-packagehub-subpackages15-sp2-pool-x86_64-sled", + "parent_channel_label": "sle-product-sled15-sp2-pool-x86_64", + "product_id": 1950, + "repository_id": 4033, + "parent_product_id": 1946, + "root_product_id": 1935, + "update_tag": "SLE-Module-Packagehub-Subpackages", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP2/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Packagehub-Subpackages15-SP2-Pool for x86_64 SLED", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-packagehub-subpackages15-sp2-debuginfo-pool-x86_64-sled", + "parent_channel_label": "sle-product-sled15-sp2-pool-x86_64", + "product_id": 1950, + "repository_id": 4034, + "parent_product_id": 1946, + "root_product_id": 1935, + "update_tag": "SLE-Module-Packagehub-Subpackages", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP2/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Packagehub-Subpackages15-SP2-Debuginfo-Pool for x86_64 SLED", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-desktop-applications15-sp2-updates-x86_64-sled", + "parent_channel_label": "sle-product-sled15-sp2-pool-x86_64", + "product_id": 1967, + "repository_id": 4116, + "parent_product_id": 1946, + "root_product_id": 1935, + "update_tag": "SLE-Module-Desktop-Applications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15-SP2/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Desktop-Applications15-SP2-Updates for x86_64 SLED", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-desktop-applications15-sp2-debuginfo-updates-x86_64-sled", + "parent_channel_label": "sle-product-sled15-sp2-pool-x86_64", + "product_id": 1967, + "repository_id": 4117, + "parent_product_id": 1946, + "root_product_id": 1935, + "update_tag": "SLE-Module-Desktop-Applications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15-SP2/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Desktop-Applications15-SP2-Debuginfo-Updates for x86_64 SLED", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-desktop-applications15-sp2-pool-x86_64-sled", + "parent_channel_label": "sle-product-sled15-sp2-pool-x86_64", + "product_id": 1967, + "repository_id": 4118, + "parent_product_id": 1946, + "root_product_id": 1935, + "update_tag": "SLE-Module-Desktop-Applications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP2/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Desktop-Applications15-SP2-Pool for x86_64 SLED", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-desktop-applications15-sp2-debuginfo-pool-x86_64-sled", + "parent_channel_label": "sle-product-sled15-sp2-pool-x86_64", + "product_id": 1967, + "repository_id": 4119, + "parent_product_id": 1946, + "root_product_id": 1935, + "update_tag": "SLE-Module-Desktop-Applications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP2/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Desktop-Applications15-SP2-Debuginfo-Pool for x86_64 SLED", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-devtools15-sp2-updates-x86_64-sled", + "parent_channel_label": "sle-product-sled15-sp2-pool-x86_64", + "product_id": 1971, + "repository_id": 4136, + "parent_product_id": 1967, + "root_product_id": 1935, + "update_tag": "SLE-Module-Development-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15-SP2/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-DevTools15-SP2-Updates for x86_64 SLED", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-devtools15-sp2-debuginfo-updates-x86_64-sled", + "parent_channel_label": "sle-product-sled15-sp2-pool-x86_64", + "product_id": 1971, + "repository_id": 4137, + "parent_product_id": 1967, + "root_product_id": 1935, + "update_tag": "SLE-Module-Development-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15-SP2/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-DevTools15-SP2-Debuginfo-Updates for x86_64 SLED", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-devtools15-sp2-pool-x86_64-sled", + "parent_channel_label": "sle-product-sled15-sp2-pool-x86_64", + "product_id": 1971, + "repository_id": 4138, + "parent_product_id": 1967, + "root_product_id": 1935, + "update_tag": "SLE-Module-Development-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP2/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-DevTools15-SP2-Pool for x86_64 SLED", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-devtools15-sp2-debuginfo-pool-x86_64-sled", + "parent_channel_label": "sle-product-sled15-sp2-pool-x86_64", + "product_id": 1971, + "repository_id": 4139, + "parent_product_id": 1967, + "root_product_id": 1935, + "update_tag": "SLE-Module-Development-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP2/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-DevTools15-SP2-Debuginfo-Pool for x86_64 SLED", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-we15-sp2-updates-x86_64-sled", + "parent_channel_label": "sle-product-sled15-sp2-pool-x86_64", + "product_id": 1999, + "repository_id": 4276, + "parent_product_id": 1967, + "root_product_id": 1935, + "update_tag": "SLE-Product-WE", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-WE/15-SP2/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Product-WE15-SP2-Updates for x86_64 SLED", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-we15-sp2-debuginfo-updates-x86_64-sled", + "parent_channel_label": "sle-product-sled15-sp2-pool-x86_64", + "product_id": 1999, + "repository_id": 4277, + "parent_product_id": 1967, + "root_product_id": 1935, + "update_tag": "SLE-Product-WE", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-WE/15-SP2/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Product-WE15-SP2-Debuginfo-Updates for x86_64 SLED", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-we15-sp2-pool-x86_64-sled", + "parent_channel_label": "sle-product-sled15-sp2-pool-x86_64", + "product_id": 1999, + "repository_id": 4278, + "parent_product_id": 1967, + "root_product_id": 1935, + "update_tag": "SLE-Product-WE", + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-WE/15-SP2/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Product-WE15-SP2-Pool for x86_64 SLED", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-we15-sp2-debuginfo-pool-x86_64-sled", + "parent_channel_label": "sle-product-sled15-sp2-pool-x86_64", + "product_id": 1999, + "repository_id": 4279, + "parent_product_id": 1967, + "root_product_id": 1935, + "update_tag": "SLE-Product-WE", + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-WE/15-SP2/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Product-WE15-SP2-Debuginfo-Pool for x86_64 SLED", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-15-sp2-desktop-nvidia-driver", + "parent_channel_label": "sle-product-sled15-sp2-pool-x86_64", + "product_id": 1999, + "repository_id": 4450, + "parent_product_id": 1967, + "root_product_id": 1935, + "update_tag": null, + "url": "https://download.nvidia.com/suse/sle15sp2/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-15-SP2-Desktop-NVIDIA-Driver for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-python2-15-sp2-updates-x86_64-sled", + "parent_channel_label": "sle-product-sled15-sp2-pool-x86_64", + "product_id": 1992, + "repository_id": 4241, + "parent_product_id": 1946, + "root_product_id": 1935, + "update_tag": "SLE-Module-Python2", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Python2/15-SP2/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Python2-15-SP2-Updates for x86_64 SLED", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-python2-15-sp2-debuginfo-updates-x86_64-sled", + "parent_channel_label": "sle-product-sled15-sp2-pool-x86_64", + "product_id": 1992, + "repository_id": 4242, + "parent_product_id": 1946, + "root_product_id": 1935, + "update_tag": "SLE-Module-Python2", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Python2/15-SP2/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Python2-15-SP2-Debuginfo-Updates for x86_64 SLED", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-python2-15-sp2-pool-x86_64-sled", + "parent_channel_label": "sle-product-sled15-sp2-pool-x86_64", + "product_id": 1992, + "repository_id": 4243, + "parent_product_id": 1946, + "root_product_id": 1935, + "update_tag": "SLE-Module-Python2", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Python2/15-SP2/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Python2-15-SP2-Pool for x86_64 SLED", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-python2-15-sp2-debuginfo-pool-x86_64-sled", + "parent_channel_label": "sle-product-sled15-sp2-pool-x86_64", + "product_id": 1992, + "repository_id": 4244, + "parent_product_id": 1946, + "root_product_id": 1935, + "update_tag": "SLE-Module-Python2", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Python2/15-SP2/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Python2-15-SP2-Debuginfo-Pool for x86_64 SLED", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-cap-tools15-sp2-updates-x86_64-sled", + "parent_channel_label": "sle-product-sled15-sp2-pool-x86_64", + "product_id": 2075, + "repository_id": 4424, + "parent_product_id": 1946, + "root_product_id": 1935, + "update_tag": "SLE-Module-CAP-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-CAP-Tools/15-SP2/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-CAP-Tools15-SP2-Updates for x86_64 SLED", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-cap-tools15-sp2-debuginfo-updates-x86_64-sled", + "parent_channel_label": "sle-product-sled15-sp2-pool-x86_64", + "product_id": 2075, + "repository_id": 4425, + "parent_product_id": 1946, + "root_product_id": 1935, + "update_tag": "SLE-Module-CAP-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-CAP-Tools/15-SP2/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-CAP-Tools15-SP2-Debuginfo-Updates for x86_64 SLED", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-cap-tools15-sp2-pool-x86_64-sled", + "parent_channel_label": "sle-product-sled15-sp2-pool-x86_64", + "product_id": 2075, + "repository_id": 4426, + "parent_product_id": 1946, + "root_product_id": 1935, + "update_tag": "SLE-Module-CAP-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-CAP-Tools/15-SP2/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-CAP-Tools15-SP2-Pool for x86_64 SLED", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-cap-tools15-sp2-debuginfo-pool-x86_64-sled", + "parent_channel_label": "sle-product-sled15-sp2-pool-x86_64", + "product_id": 2075, + "repository_id": 4427, + "parent_product_id": 1946, + "root_product_id": 1935, + "update_tag": "SLE-Module-CAP-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-CAP-Tools/15-SP2/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-CAP-Tools15-SP2-Debuginfo-Pool for x86_64 SLED", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-sles15-sp2-updates-aarch64", + "parent_channel_label": "sle-product-sles15-sp2-pool-aarch64", + "product_id": 1936, + "repository_id": 3942, + "parent_product_id": null, + "root_product_id": 1936, + "update_tag": "SLE-Product-SLES", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-SLES/15-SP2/aarch64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-SLES15-SP2-Updates for aarch64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-sles15-sp2-debuginfo-updates-aarch64", + "parent_channel_label": "sle-product-sles15-sp2-pool-aarch64", + "product_id": 1936, + "repository_id": 3943, + "parent_product_id": null, + "root_product_id": 1936, + "update_tag": "SLE-Product-SLES", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-SLES/15-SP2/aarch64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-SLES15-SP2-Debuginfo-Updates for aarch64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle15-sp2-installer-updates-aarch64", + "parent_channel_label": "sle-product-sles15-sp2-pool-aarch64", + "product_id": 1936, + "repository_id": 3944, + "parent_product_id": null, + "root_product_id": 1936, + "update_tag": "SLE-INSTALLER", + "url": "https://updates.suse.com/SUSE/Updates/SLE-INSTALLER/15-SP2/aarch64/update/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE15-SP2-Installer-Updates for aarch64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-sles15-sp2-pool-aarch64", + "parent_channel_label": null, + "product_id": 1936, + "repository_id": 3945, + "parent_product_id": null, + "root_product_id": 1936, + "update_tag": "SLE-Product-SLES", + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-SLES/15-SP2/aarch64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-SLES15-SP2-Pool for aarch64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-sles15-sp2-debuginfo-pool-aarch64", + "parent_channel_label": "sle-product-sles15-sp2-pool-aarch64", + "product_id": 1936, + "repository_id": 3946, + "parent_product_id": null, + "root_product_id": 1936, + "update_tag": "SLE-Product-SLES", + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-SLES/15-SP2/aarch64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-SLES15-SP2-Debuginfo-Pool for aarch64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-basesystem15-sp2-updates-aarch64", + "parent_channel_label": "sle-product-sles15-sp2-pool-aarch64", + "product_id": 1943, + "repository_id": 3984, + "parent_product_id": 1936, + "root_product_id": 1936, + "update_tag": "SLE-Module-Basesystem", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15-SP2/aarch64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Basesystem15-SP2-Updates for aarch64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-basesystem15-sp2-debuginfo-updates-aarch64", + "parent_channel_label": "sle-product-sles15-sp2-pool-aarch64", + "product_id": 1943, + "repository_id": 3985, + "parent_product_id": 1936, + "root_product_id": 1936, + "update_tag": "SLE-Module-Basesystem", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15-SP2/aarch64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Basesystem15-SP2-Debuginfo-Updates for aarch64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-basesystem15-sp2-pool-aarch64", + "parent_channel_label": "sle-product-sles15-sp2-pool-aarch64", + "product_id": 1943, + "repository_id": 3986, + "parent_product_id": 1936, + "root_product_id": 1936, + "update_tag": "SLE-Module-Basesystem", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP2/aarch64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Basesystem15-SP2-Pool for aarch64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-basesystem15-sp2-debuginfo-pool-aarch64", + "parent_channel_label": "sle-product-sles15-sp2-pool-aarch64", + "product_id": 1943, + "repository_id": 3987, + "parent_product_id": 1936, + "root_product_id": 1936, + "update_tag": "SLE-Module-Basesystem", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP2/aarch64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Basesystem15-SP2-Debuginfo-Pool for aarch64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-manager-tools15-updates-aarch64-sp2", + "parent_channel_label": "sle-product-sles15-sp2-pool-aarch64", + "product_id": 1709, + "repository_id": 2917, + "parent_product_id": 1943, + "root_product_id": 1936, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/15/aarch64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-Updates for aarch64 SP2", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools15-debuginfo-updates-aarch64-sp2", + "parent_channel_label": "sle-product-sles15-sp2-pool-aarch64", + "product_id": 1709, + "repository_id": 2918, + "parent_product_id": 1943, + "root_product_id": 1936, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/15/aarch64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-Debuginfo-Updates for aarch64 SP2", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools15-pool-aarch64-sp2", + "parent_channel_label": "sle-product-sles15-sp2-pool-aarch64", + "product_id": 1709, + "repository_id": 2919, + "parent_product_id": 1943, + "root_product_id": 1936, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/15/aarch64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-Pool for aarch64 SP2", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools15-debuginfo-pool-aarch64-sp2", + "parent_channel_label": "sle-product-sles15-sp2-pool-aarch64", + "product_id": 1709, + "repository_id": 2920, + "parent_product_id": 1943, + "root_product_id": 1936, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/15/aarch64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-Debuginfo-Pool for aarch64 SP2", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools15-beta-updates-aarch64-sp2", + "parent_channel_label": "sle-product-sles15-sp2-pool-aarch64", + "product_id": 1925, + "repository_id": 3891, + "parent_product_id": 1709, + "root_product_id": 1936, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/15-BETA/aarch64/update/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-BETA-Updates for aarch64 SP2", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools15-beta-debuginfo-updates-aarch64-sp2", + "parent_channel_label": "sle-product-sles15-sp2-pool-aarch64", + "product_id": 1925, + "repository_id": 3892, + "parent_product_id": 1709, + "root_product_id": 1936, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/15-BETA/aarch64/update_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-BETA-Debuginfo-Updates for aarch64 SP2", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools15-beta-pool-aarch64-sp2", + "parent_channel_label": "sle-product-sles15-sp2-pool-aarch64", + "product_id": 1925, + "repository_id": 3899, + "parent_product_id": 1709, + "root_product_id": 1936, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/15-BETA/aarch64/product/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-BETA-Pool for aarch64 SP2", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools15-beta-debuginfo-pool-aarch64-sp2", + "parent_channel_label": "sle-product-sles15-sp2-pool-aarch64", + "product_id": 1925, + "repository_id": 3900, + "parent_product_id": 1709, + "root_product_id": 1936, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/15-BETA/aarch64/product_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-BETA-Debuginfo-Pool for aarch64 SP2", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "suse-packagehub-15-sp2-backports-pool-aarch64", + "parent_channel_label": "sle-product-sles15-sp2-pool-aarch64", + "product_id": 1947, + "repository_id": 4004, + "parent_product_id": 1943, + "root_product_id": 1936, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-15-SP2_aarch64/standard/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-15-SP2-Backports-Pool for aarch64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-packagehub-15-sp2-backports-debuginfo-aarch64", + "parent_channel_label": "sle-product-sles15-sp2-pool-aarch64", + "product_id": 1947, + "repository_id": 4005, + "parent_product_id": 1943, + "root_product_id": 1936, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-15-SP2_aarch64/standard_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-15-SP2-Backports-Debuginfo for aarch64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-packagehub-subpackages15-sp2-updates-aarch64", + "parent_channel_label": "sle-product-sles15-sp2-pool-aarch64", + "product_id": 1947, + "repository_id": 4006, + "parent_product_id": 1943, + "root_product_id": 1936, + "update_tag": "SLE-Module-Packagehub-Subpackages", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP2/aarch64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Packagehub-Subpackages15-SP2-Updates for aarch64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-packagehub-subpackages15-sp2-debuginfo-updates-aarch64", + "parent_channel_label": "sle-product-sles15-sp2-pool-aarch64", + "product_id": 1947, + "repository_id": 4007, + "parent_product_id": 1943, + "root_product_id": 1936, + "update_tag": "SLE-Module-Packagehub-Subpackages", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP2/aarch64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Packagehub-Subpackages15-SP2-Debuginfo-Updates for aarch64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-packagehub-15-sp2-pool-aarch64", + "parent_channel_label": "sle-product-sles15-sp2-pool-aarch64", + "product_id": 1947, + "repository_id": 4008, + "parent_product_id": 1943, + "root_product_id": 1936, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-15-SP2_aarch64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-15-SP2-Pool for aarch64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-packagehub-subpackages15-sp2-pool-aarch64", + "parent_channel_label": "sle-product-sles15-sp2-pool-aarch64", + "product_id": 1947, + "repository_id": 4009, + "parent_product_id": 1943, + "root_product_id": 1936, + "update_tag": "SLE-Module-Packagehub-Subpackages", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP2/aarch64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Packagehub-Subpackages15-SP2-Pool for aarch64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-packagehub-subpackages15-sp2-debuginfo-pool-aarch64", + "parent_channel_label": "sle-product-sles15-sp2-pool-aarch64", + "product_id": 1947, + "repository_id": 4010, + "parent_product_id": 1943, + "root_product_id": 1936, + "update_tag": "SLE-Module-Packagehub-Subpackages", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP2/aarch64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Packagehub-Subpackages15-SP2-Debuginfo-Pool for aarch64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-server-applications15-sp2-updates-aarch64", + "parent_channel_label": "sle-product-sles15-sp2-pool-aarch64", + "product_id": 1952, + "repository_id": 4041, + "parent_product_id": 1943, + "root_product_id": 1936, + "update_tag": "SLE-Module-Server-Applications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15-SP2/aarch64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Server-Applications15-SP2-Updates for aarch64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-server-applications15-sp2-debuginfo-updates-aarch64", + "parent_channel_label": "sle-product-sles15-sp2-pool-aarch64", + "product_id": 1952, + "repository_id": 4042, + "parent_product_id": 1943, + "root_product_id": 1936, + "update_tag": "SLE-Module-Server-Applications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15-SP2/aarch64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Server-Applications15-SP2-Debuginfo-Updates for aarch64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-server-applications15-sp2-pool-aarch64", + "parent_channel_label": "sle-product-sles15-sp2-pool-aarch64", + "product_id": 1952, + "repository_id": 4043, + "parent_product_id": 1943, + "root_product_id": 1936, + "update_tag": "SLE-Module-Server-Applications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP2/aarch64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Server-Applications15-SP2-Pool for aarch64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-server-applications15-sp2-debuginfo-pool-aarch64", + "parent_channel_label": "sle-product-sles15-sp2-pool-aarch64", + "product_id": 1952, + "repository_id": 4044, + "parent_product_id": 1943, + "root_product_id": 1936, + "update_tag": "SLE-Module-Server-Applications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP2/aarch64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Server-Applications15-SP2-Debuginfo-Pool for aarch64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-ha15-sp2-updates-aarch64", + "parent_channel_label": "sle-product-sles15-sp2-pool-aarch64", + "product_id": 1956, + "repository_id": 4061, + "parent_product_id": 1952, + "root_product_id": 1936, + "update_tag": "SLE-Product-HA", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-HA/15-SP2/aarch64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HA15-SP2-Updates for aarch64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-ha15-sp2-debuginfo-updates-aarch64", + "parent_channel_label": "sle-product-sles15-sp2-pool-aarch64", + "product_id": 1956, + "repository_id": 4062, + "parent_product_id": 1952, + "root_product_id": 1936, + "update_tag": "SLE-Product-HA", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-HA/15-SP2/aarch64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HA15-SP2-Debuginfo-Updates for aarch64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-ha15-sp2-pool-aarch64", + "parent_channel_label": "sle-product-sles15-sp2-pool-aarch64", + "product_id": 1956, + "repository_id": 4063, + "parent_product_id": 1952, + "root_product_id": 1936, + "update_tag": "SLE-Product-HA", + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP2/aarch64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HA15-SP2-Pool for aarch64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-ha15-sp2-debuginfo-pool-aarch64", + "parent_channel_label": "sle-product-sles15-sp2-pool-aarch64", + "product_id": 1956, + "repository_id": 4064, + "parent_product_id": 1952, + "root_product_id": 1936, + "update_tag": "SLE-Product-HA", + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP2/aarch64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HA15-SP2-Debuginfo-Pool for aarch64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting15-sp2-updates-aarch64", + "parent_channel_label": "sle-product-sles15-sp2-pool-aarch64", + "product_id": 1973, + "repository_id": 4146, + "parent_product_id": 1952, + "root_product_id": 1936, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/15-SP2/aarch64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Web-Scripting15-SP2-Updates for aarch64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting15-sp2-debuginfo-updates-aarch64", + "parent_channel_label": "sle-product-sles15-sp2-pool-aarch64", + "product_id": 1973, + "repository_id": 4147, + "parent_product_id": 1952, + "root_product_id": 1936, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/15-SP2/aarch64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Web-Scripting15-SP2-Debuginfo-Updates for aarch64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting15-sp2-pool-aarch64", + "parent_channel_label": "sle-product-sles15-sp2-pool-aarch64", + "product_id": 1973, + "repository_id": 4148, + "parent_product_id": 1952, + "root_product_id": 1936, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP2/aarch64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Web-Scripting15-SP2-Pool for aarch64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting15-sp2-debuginfo-pool-aarch64", + "parent_channel_label": "sle-product-sles15-sp2-pool-aarch64", + "product_id": 1973, + "repository_id": 4149, + "parent_product_id": 1952, + "root_product_id": 1936, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP2/aarch64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Web-Scripting15-SP2-Debuginfo-Pool for aarch64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-legacy15-sp2-updates-aarch64", + "parent_channel_label": "sle-product-sles15-sp2-pool-aarch64", + "product_id": 1979, + "repository_id": 4176, + "parent_product_id": 1952, + "root_product_id": 1936, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/15-SP2/aarch64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy15-SP2-Updates for aarch64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-legacy15-sp2-debuginfo-updates-aarch64", + "parent_channel_label": "sle-product-sles15-sp2-pool-aarch64", + "product_id": 1979, + "repository_id": 4177, + "parent_product_id": 1952, + "root_product_id": 1936, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/15-SP2/aarch64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy15-SP2-Debuginfo-Updates for aarch64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-legacy15-sp2-pool-aarch64", + "parent_channel_label": "sle-product-sles15-sp2-pool-aarch64", + "product_id": 1979, + "repository_id": 4178, + "parent_product_id": 1952, + "root_product_id": 1936, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15-SP2/aarch64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy15-SP2-Pool for aarch64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-legacy15-sp2-debuginfo-pool-aarch64", + "parent_channel_label": "sle-product-sles15-sp2-pool-aarch64", + "product_id": 1979, + "repository_id": 4179, + "parent_product_id": 1952, + "root_product_id": 1936, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15-SP2/aarch64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy15-SP2-Debuginfo-Pool for aarch64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud15-sp2-updates-aarch64", + "parent_channel_label": "sle-product-sles15-sp2-pool-aarch64", + "product_id": 1985, + "repository_id": 4206, + "parent_product_id": 1952, + "root_product_id": 1936, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/15-SP2/aarch64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud15-SP2-Updates for aarch64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud15-sp2-debuginfo-updates-aarch64", + "parent_channel_label": "sle-product-sles15-sp2-pool-aarch64", + "product_id": 1985, + "repository_id": 4207, + "parent_product_id": 1952, + "root_product_id": 1936, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/15-SP2/aarch64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud15-SP2-Debuginfo-Updates for aarch64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud15-sp2-pool-aarch64", + "parent_channel_label": "sle-product-sles15-sp2-pool-aarch64", + "product_id": 1985, + "repository_id": 4208, + "parent_product_id": 1952, + "root_product_id": 1936, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP2/aarch64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud15-SP2-Pool for aarch64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud15-sp2-debuginfo-pool-aarch64", + "parent_channel_label": "sle-product-sles15-sp2-pool-aarch64", + "product_id": 1985, + "repository_id": 4209, + "parent_product_id": 1952, + "root_product_id": 1936, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP2/aarch64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud15-SP2-Debuginfo-Pool for aarch64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-enterprise-storage-7-updates-aarch64-sp2", + "parent_channel_label": "sle-product-sles15-sp2-pool-aarch64", + "product_id": 2120, + "repository_id": 4504, + "parent_product_id": 1952, + "root_product_id": 1936, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Updates/Storage/7/aarch64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-Enterprise-Storage-7-Updates for aarch64 SP2", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-enterprise-storage-7-debuginfo-updates-aarch64-sp2", + "parent_channel_label": "sle-product-sles15-sp2-pool-aarch64", + "product_id": 2120, + "repository_id": 4505, + "parent_product_id": 1952, + "root_product_id": 1936, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Updates/Storage/7/aarch64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SUSE-Enterprise-Storage-7-Debuginfo-Updates for aarch64 SP2", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-enterprise-storage-7-pool-aarch64-sp2", + "parent_channel_label": "sle-product-sles15-sp2-pool-aarch64", + "product_id": 2120, + "repository_id": 4506, + "parent_product_id": 1952, + "root_product_id": 1936, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Products/Storage/7/aarch64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-Enterprise-Storage-7-Pool for aarch64 SP2", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-enterprise-storage-7-debuginfo-pool-aarch64-sp2", + "parent_channel_label": "sle-product-sles15-sp2-pool-aarch64", + "product_id": 2120, + "repository_id": 4507, + "parent_product_id": 1952, + "root_product_id": 1936, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Products/Storage/7/aarch64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SUSE-Enterprise-Storage-7-Debuginfo-Pool for aarch64 SP2", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-containers15-sp2-updates-aarch64", + "parent_channel_label": "sle-product-sles15-sp2-pool-aarch64", + "product_id": 1960, + "repository_id": 4081, + "parent_product_id": 1943, + "root_product_id": 1936, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/15-SP2/aarch64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers15-SP2-Updates for aarch64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-containers15-sp2-debuginfo-updates-aarch64", + "parent_channel_label": "sle-product-sles15-sp2-pool-aarch64", + "product_id": 1960, + "repository_id": 4082, + "parent_product_id": 1943, + "root_product_id": 1936, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/15-SP2/aarch64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers15-SP2-Debuginfo-Updates for aarch64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-containers15-sp2-pool-aarch64", + "parent_channel_label": "sle-product-sles15-sp2-pool-aarch64", + "product_id": 1960, + "repository_id": 4083, + "parent_product_id": 1943, + "root_product_id": 1936, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP2/aarch64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers15-SP2-Pool for aarch64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-containers15-sp2-debuginfo-pool-aarch64", + "parent_channel_label": "sle-product-sles15-sp2-pool-aarch64", + "product_id": 1960, + "repository_id": 4084, + "parent_product_id": 1943, + "root_product_id": 1936, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP2/aarch64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers15-SP2-Debuginfo-Pool for aarch64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-caasp-4.5-updates-aarch64-sp2", + "parent_channel_label": "sle-product-sles15-sp2-pool-aarch64", + "product_id": 2199, + "repository_id": 4916, + "parent_product_id": 1960, + "root_product_id": 1936, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Updates/SUSE-CAASP/4.5/aarch64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-CAASP-4.5-Updates for aarch64 SP2", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-caasp-4.5-debuginfo-updates-aarch64-sp2", + "parent_channel_label": "sle-product-sles15-sp2-pool-aarch64", + "product_id": 2199, + "repository_id": 4917, + "parent_product_id": 1960, + "root_product_id": 1936, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Updates/SUSE-CAASP/4.5/aarch64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SUSE-CAASP-4.5-Debuginfo-Updates for aarch64 SP2", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-caasp-4.5-pool-aarch64-sp2", + "parent_channel_label": "sle-product-sles15-sp2-pool-aarch64", + "product_id": 2199, + "repository_id": 4918, + "parent_product_id": 1960, + "root_product_id": 1936, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Products/SUSE-CAASP/4.5/aarch64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-CAASP-4.5-Pool for aarch64 SP2", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-caasp-4.5-debuginfo-pool-aarch64-sp2", + "parent_channel_label": "sle-product-sles15-sp2-pool-aarch64", + "product_id": 2199, + "repository_id": 4919, + "parent_product_id": 1960, + "root_product_id": 1936, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Products/SUSE-CAASP/4.5/aarch64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SUSE-CAASP-4.5-Debuginfo-Pool for aarch64 SP2", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-desktop-applications15-sp2-updates-aarch64", + "parent_channel_label": "sle-product-sles15-sp2-pool-aarch64", + "product_id": 1964, + "repository_id": 4101, + "parent_product_id": 1943, + "root_product_id": 1936, + "update_tag": "SLE-Module-Desktop-Applications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15-SP2/aarch64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Desktop-Applications15-SP2-Updates for aarch64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-desktop-applications15-sp2-debuginfo-updates-aarch64", + "parent_channel_label": "sle-product-sles15-sp2-pool-aarch64", + "product_id": 1964, + "repository_id": 4102, + "parent_product_id": 1943, + "root_product_id": 1936, + "update_tag": "SLE-Module-Desktop-Applications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15-SP2/aarch64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Desktop-Applications15-SP2-Debuginfo-Updates for aarch64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-desktop-applications15-sp2-pool-aarch64", + "parent_channel_label": "sle-product-sles15-sp2-pool-aarch64", + "product_id": 1964, + "repository_id": 4103, + "parent_product_id": 1943, + "root_product_id": 1936, + "update_tag": "SLE-Module-Desktop-Applications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP2/aarch64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Desktop-Applications15-SP2-Pool for aarch64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-desktop-applications15-sp2-debuginfo-pool-aarch64", + "parent_channel_label": "sle-product-sles15-sp2-pool-aarch64", + "product_id": 1964, + "repository_id": 4104, + "parent_product_id": 1943, + "root_product_id": 1936, + "update_tag": "SLE-Module-Desktop-Applications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP2/aarch64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Desktop-Applications15-SP2-Debuginfo-Pool for aarch64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-devtools15-sp2-updates-aarch64", + "parent_channel_label": "sle-product-sles15-sp2-pool-aarch64", + "product_id": 1968, + "repository_id": 4121, + "parent_product_id": 1964, + "root_product_id": 1936, + "update_tag": "SLE-Module-Development-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15-SP2/aarch64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-DevTools15-SP2-Updates for aarch64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-devtools15-sp2-debuginfo-updates-aarch64", + "parent_channel_label": "sle-product-sles15-sp2-pool-aarch64", + "product_id": 1968, + "repository_id": 4122, + "parent_product_id": 1964, + "root_product_id": 1936, + "update_tag": "SLE-Module-Development-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15-SP2/aarch64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-DevTools15-SP2-Debuginfo-Updates for aarch64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-devtools15-sp2-pool-aarch64", + "parent_channel_label": "sle-product-sles15-sp2-pool-aarch64", + "product_id": 1968, + "repository_id": 4123, + "parent_product_id": 1964, + "root_product_id": 1936, + "update_tag": "SLE-Module-Development-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP2/aarch64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-DevTools15-SP2-Pool for aarch64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-devtools15-sp2-debuginfo-pool-aarch64", + "parent_channel_label": "sle-product-sles15-sp2-pool-aarch64", + "product_id": 1968, + "repository_id": 4124, + "parent_product_id": 1964, + "root_product_id": 1936, + "update_tag": "SLE-Module-Development-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP2/aarch64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-DevTools15-SP2-Debuginfo-Pool for aarch64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-nvidia-compute-15-updates-aarch64-we-sp2", + "parent_channel_label": "sle-product-sles15-sp2-pool-aarch64", + "product_id": 2130, + "repository_id": 4560, + "parent_product_id": 1968, + "root_product_id": 1936, + "update_tag": "SLE-Module-NVIDIA-Compute", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-NVIDIA-Compute/15/aarch64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-NVIDIA-Compute-15-Updates for aarch64 WE SP2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-nvidia-compute-15-pool-aarch64-we-sp2", + "parent_channel_label": "sle-product-sles15-sp2-pool-aarch64", + "product_id": 2130, + "repository_id": 4561, + "parent_product_id": 1968, + "root_product_id": 1936, + "update_tag": "SLE-Module-NVIDIA-Compute", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-NVIDIA-Compute/15/aarch64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-NVIDIA-Compute-15-Pool for aarch64 WE SP2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "nvidia-compute-sle-15-aarch64-we-sp2", + "parent_channel_label": "sle-product-sles15-sp2-pool-aarch64", + "product_id": 2130, + "repository_id": 4562, + "parent_product_id": 1968, + "root_product_id": 1936, + "update_tag": null, + "url": "https://developer.download.nvidia.com/compute/cuda/repos/sles15/sbsa/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "NVIDIA-Compute-SLE-15 for aarch64 WE SP2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-python2-15-sp2-updates-aarch64", + "parent_channel_label": "sle-product-sles15-sp2-pool-aarch64", + "product_id": 1989, + "repository_id": 4226, + "parent_product_id": 1943, + "root_product_id": 1936, + "update_tag": "SLE-Module-Python2", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Python2/15-SP2/aarch64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Python2-15-SP2-Updates for aarch64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-python2-15-sp2-debuginfo-updates-aarch64", + "parent_channel_label": "sle-product-sles15-sp2-pool-aarch64", + "product_id": 1989, + "repository_id": 4227, + "parent_product_id": 1943, + "root_product_id": 1936, + "update_tag": "SLE-Module-Python2", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Python2/15-SP2/aarch64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Python2-15-SP2-Debuginfo-Updates for aarch64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-python2-15-sp2-pool-aarch64", + "parent_channel_label": "sle-product-sles15-sp2-pool-aarch64", + "product_id": 1989, + "repository_id": 4228, + "parent_product_id": 1943, + "root_product_id": 1936, + "update_tag": "SLE-Module-Python2", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Python2/15-SP2/aarch64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Python2-15-SP2-Pool for aarch64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-python2-15-sp2-debuginfo-pool-aarch64", + "parent_channel_label": "sle-product-sles15-sp2-pool-aarch64", + "product_id": 1989, + "repository_id": 4229, + "parent_product_id": 1943, + "root_product_id": 1936, + "update_tag": "SLE-Module-Python2", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Python2/15-SP2/aarch64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Python2-15-SP2-Debuginfo-Pool for aarch64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-transactional-server15-sp2-updates-aarch64", + "parent_channel_label": "sle-product-sles15-sp2-pool-aarch64", + "product_id": 1995, + "repository_id": 4256, + "parent_product_id": 1943, + "root_product_id": 1936, + "update_tag": "SLE-Module-Transactional-Server", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Transactional-Server/15-SP2/aarch64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Transactional-Server15-SP2-Updates for aarch64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-transactional-server15-sp2-debuginfo-updates-aarch64", + "parent_channel_label": "sle-product-sles15-sp2-pool-aarch64", + "product_id": 1995, + "repository_id": 4257, + "parent_product_id": 1943, + "root_product_id": 1936, + "update_tag": "SLE-Module-Transactional-Server", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Transactional-Server/15-SP2/aarch64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Transactional-Server15-SP2-Debuginfo-Updates for aarch64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-transactional-server15-sp2-pool-aarch64", + "parent_channel_label": "sle-product-sles15-sp2-pool-aarch64", + "product_id": 1995, + "repository_id": 4258, + "parent_product_id": 1943, + "root_product_id": 1936, + "update_tag": "SLE-Module-Transactional-Server", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Transactional-Server/15-SP2/aarch64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Transactional-Server15-SP2-Pool for aarch64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-transactional-server15-sp2-debuginfo-pool-aarch64", + "parent_channel_label": "sle-product-sles15-sp2-pool-aarch64", + "product_id": 1995, + "repository_id": 4259, + "parent_product_id": 1943, + "root_product_id": 1936, + "update_tag": "SLE-Module-Transactional-Server", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Transactional-Server/15-SP2/aarch64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Transactional-Server15-SP2-Debuginfo-Pool for aarch64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-sles15-sp2-ltss-updates-aarch64", + "parent_channel_label": "sle-product-sles15-sp2-pool-aarch64", + "product_id": 2372, + "repository_id": 5452, + "parent_product_id": 1936, + "root_product_id": 1936, + "update_tag": "SLE-Product-SLES", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-SLES/15-SP2-LTSS/aarch64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-SLES15-SP2-LTSS-Updates for aarch64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-sles15-sp2-debuginfo-ltss-updates-aarch64", + "parent_channel_label": "sle-product-sles15-sp2-pool-aarch64", + "product_id": 2372, + "repository_id": 5453, + "parent_product_id": 1936, + "root_product_id": 1936, + "update_tag": "SLE-Product-SLES", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-SLES/15-SP2-LTSS/aarch64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-SLES15-SP2-Debuginfo-LTSS-Updates for aarch64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-sles15-sp2-updates-ppc64le", + "parent_channel_label": "sle-product-sles15-sp2-pool-ppc64le", + "product_id": 1937, + "repository_id": 3948, + "parent_product_id": null, + "root_product_id": 1937, + "update_tag": "SLE-Product-SLES", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-SLES/15-SP2/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-SLES15-SP2-Updates for ppc64le", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-sles15-sp2-debuginfo-updates-ppc64le", + "parent_channel_label": "sle-product-sles15-sp2-pool-ppc64le", + "product_id": 1937, + "repository_id": 3949, + "parent_product_id": null, + "root_product_id": 1937, + "update_tag": "SLE-Product-SLES", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-SLES/15-SP2/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-SLES15-SP2-Debuginfo-Updates for ppc64le", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle15-sp2-installer-updates-ppc64le", + "parent_channel_label": "sle-product-sles15-sp2-pool-ppc64le", + "product_id": 1937, + "repository_id": 3950, + "parent_product_id": null, + "root_product_id": 1937, + "update_tag": "SLE-INSTALLER", + "url": "https://updates.suse.com/SUSE/Updates/SLE-INSTALLER/15-SP2/ppc64le/update/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE15-SP2-Installer-Updates for ppc64le", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-sles15-sp2-pool-ppc64le", + "parent_channel_label": null, + "product_id": 1937, + "repository_id": 3951, + "parent_product_id": null, + "root_product_id": 1937, + "update_tag": "SLE-Product-SLES", + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-SLES/15-SP2/ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-SLES15-SP2-Pool for ppc64le", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-sles15-sp2-debuginfo-pool-ppc64le", + "parent_channel_label": "sle-product-sles15-sp2-pool-ppc64le", + "product_id": 1937, + "repository_id": 3952, + "parent_product_id": null, + "root_product_id": 1937, + "update_tag": "SLE-Product-SLES", + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-SLES/15-SP2/ppc64le/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-SLES15-SP2-Debuginfo-Pool for ppc64le", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-basesystem15-sp2-updates-ppc64le", + "parent_channel_label": "sle-product-sles15-sp2-pool-ppc64le", + "product_id": 1944, + "repository_id": 3989, + "parent_product_id": 1937, + "root_product_id": 1937, + "update_tag": "SLE-Module-Basesystem", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15-SP2/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Basesystem15-SP2-Updates for ppc64le", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-basesystem15-sp2-debuginfo-updates-ppc64le", + "parent_channel_label": "sle-product-sles15-sp2-pool-ppc64le", + "product_id": 1944, + "repository_id": 3990, + "parent_product_id": 1937, + "root_product_id": 1937, + "update_tag": "SLE-Module-Basesystem", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15-SP2/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Basesystem15-SP2-Debuginfo-Updates for ppc64le", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-basesystem15-sp2-pool-ppc64le", + "parent_channel_label": "sle-product-sles15-sp2-pool-ppc64le", + "product_id": 1944, + "repository_id": 3991, + "parent_product_id": 1937, + "root_product_id": 1937, + "update_tag": "SLE-Module-Basesystem", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP2/ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Basesystem15-SP2-Pool for ppc64le", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-basesystem15-sp2-debuginfo-pool-ppc64le", + "parent_channel_label": "sle-product-sles15-sp2-pool-ppc64le", + "product_id": 1944, + "repository_id": 3992, + "parent_product_id": 1937, + "root_product_id": 1937, + "update_tag": "SLE-Module-Basesystem", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP2/ppc64le/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Basesystem15-SP2-Debuginfo-Pool for ppc64le", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-manager-tools15-updates-ppc64le-sp2", + "parent_channel_label": "sle-product-sles15-sp2-pool-ppc64le", + "product_id": 1710, + "repository_id": 2922, + "parent_product_id": 1944, + "root_product_id": 1937, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/15/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-Updates for ppc64le SP2", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools15-debuginfo-updates-ppc64le-sp2", + "parent_channel_label": "sle-product-sles15-sp2-pool-ppc64le", + "product_id": 1710, + "repository_id": 2923, + "parent_product_id": 1944, + "root_product_id": 1937, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/15/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-Debuginfo-Updates for ppc64le SP2", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools15-pool-ppc64le-sp2", + "parent_channel_label": "sle-product-sles15-sp2-pool-ppc64le", + "product_id": 1710, + "repository_id": 2924, + "parent_product_id": 1944, + "root_product_id": 1937, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/15/ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-Pool for ppc64le SP2", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools15-debuginfo-pool-ppc64le-sp2", + "parent_channel_label": "sle-product-sles15-sp2-pool-ppc64le", + "product_id": 1710, + "repository_id": 2925, + "parent_product_id": 1944, + "root_product_id": 1937, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/15/ppc64le/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-Debuginfo-Pool for ppc64le SP2", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools15-beta-updates-ppc64le-sp2", + "parent_channel_label": "sle-product-sles15-sp2-pool-ppc64le", + "product_id": 1926, + "repository_id": 3893, + "parent_product_id": 1710, + "root_product_id": 1937, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/15-BETA/ppc64le/update/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-BETA-Updates for ppc64le SP2", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools15-beta-debuginfo-updates-ppc64le-sp2", + "parent_channel_label": "sle-product-sles15-sp2-pool-ppc64le", + "product_id": 1926, + "repository_id": 3894, + "parent_product_id": 1710, + "root_product_id": 1937, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/15-BETA/ppc64le/update_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-BETA-Debuginfo-Updates for ppc64le SP2", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools15-beta-pool-ppc64le-sp2", + "parent_channel_label": "sle-product-sles15-sp2-pool-ppc64le", + "product_id": 1926, + "repository_id": 3902, + "parent_product_id": 1710, + "root_product_id": 1937, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/15-BETA/ppc64le/product/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-BETA-Pool for ppc64le SP2", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools15-beta-debuginfo-pool-ppc64le-sp2", + "parent_channel_label": "sle-product-sles15-sp2-pool-ppc64le", + "product_id": 1926, + "repository_id": 3903, + "parent_product_id": 1710, + "root_product_id": 1937, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/15-BETA/ppc64le/product_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-BETA-Debuginfo-Pool for ppc64le SP2", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "suse-packagehub-15-sp2-backports-pool-ppc64le", + "parent_channel_label": "sle-product-sles15-sp2-pool-ppc64le", + "product_id": 1948, + "repository_id": 4012, + "parent_product_id": 1944, + "root_product_id": 1937, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-15-SP2_ppc64le/standard/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-15-SP2-Backports-Pool for ppc64le", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-packagehub-15-sp2-backports-debuginfo-ppc64le", + "parent_channel_label": "sle-product-sles15-sp2-pool-ppc64le", + "product_id": 1948, + "repository_id": 4013, + "parent_product_id": 1944, + "root_product_id": 1937, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-15-SP2_ppc64le/standard_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-15-SP2-Backports-Debuginfo for ppc64le", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-packagehub-subpackages15-sp2-updates-ppc64le", + "parent_channel_label": "sle-product-sles15-sp2-pool-ppc64le", + "product_id": 1948, + "repository_id": 4014, + "parent_product_id": 1944, + "root_product_id": 1937, + "update_tag": "SLE-Module-Packagehub-Subpackages", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP2/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Packagehub-Subpackages15-SP2-Updates for ppc64le", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-packagehub-subpackages15-sp2-debuginfo-updates-ppc64le", + "parent_channel_label": "sle-product-sles15-sp2-pool-ppc64le", + "product_id": 1948, + "repository_id": 4015, + "parent_product_id": 1944, + "root_product_id": 1937, + "update_tag": "SLE-Module-Packagehub-Subpackages", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP2/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Packagehub-Subpackages15-SP2-Debuginfo-Updates for ppc64le", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-packagehub-15-sp2-pool-ppc64le", + "parent_channel_label": "sle-product-sles15-sp2-pool-ppc64le", + "product_id": 1948, + "repository_id": 4016, + "parent_product_id": 1944, + "root_product_id": 1937, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-15-SP2_ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-15-SP2-Pool for ppc64le", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-packagehub-subpackages15-sp2-pool-ppc64le", + "parent_channel_label": "sle-product-sles15-sp2-pool-ppc64le", + "product_id": 1948, + "repository_id": 4017, + "parent_product_id": 1944, + "root_product_id": 1937, + "update_tag": "SLE-Module-Packagehub-Subpackages", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP2/ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Packagehub-Subpackages15-SP2-Pool for ppc64le", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-packagehub-subpackages15-sp2-debuginfo-pool-ppc64le", + "parent_channel_label": "sle-product-sles15-sp2-pool-ppc64le", + "product_id": 1948, + "repository_id": 4018, + "parent_product_id": 1944, + "root_product_id": 1937, + "update_tag": "SLE-Module-Packagehub-Subpackages", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP2/ppc64le/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Packagehub-Subpackages15-SP2-Debuginfo-Pool for ppc64le", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-server-applications15-sp2-updates-ppc64le", + "parent_channel_label": "sle-product-sles15-sp2-pool-ppc64le", + "product_id": 1953, + "repository_id": 4046, + "parent_product_id": 1944, + "root_product_id": 1937, + "update_tag": "SLE-Module-Server-Applications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15-SP2/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Server-Applications15-SP2-Updates for ppc64le", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-server-applications15-sp2-debuginfo-updates-ppc64le", + "parent_channel_label": "sle-product-sles15-sp2-pool-ppc64le", + "product_id": 1953, + "repository_id": 4047, + "parent_product_id": 1944, + "root_product_id": 1937, + "update_tag": "SLE-Module-Server-Applications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15-SP2/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Server-Applications15-SP2-Debuginfo-Updates for ppc64le", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-server-applications15-sp2-pool-ppc64le", + "parent_channel_label": "sle-product-sles15-sp2-pool-ppc64le", + "product_id": 1953, + "repository_id": 4048, + "parent_product_id": 1944, + "root_product_id": 1937, + "update_tag": "SLE-Module-Server-Applications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP2/ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Server-Applications15-SP2-Pool for ppc64le", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-server-applications15-sp2-debuginfo-pool-ppc64le", + "parent_channel_label": "sle-product-sles15-sp2-pool-ppc64le", + "product_id": 1953, + "repository_id": 4049, + "parent_product_id": 1944, + "root_product_id": 1937, + "update_tag": "SLE-Module-Server-Applications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP2/ppc64le/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Server-Applications15-SP2-Debuginfo-Pool for ppc64le", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-ha15-sp2-updates-ppc64le", + "parent_channel_label": "sle-product-sles15-sp2-pool-ppc64le", + "product_id": 1957, + "repository_id": 4066, + "parent_product_id": 1953, + "root_product_id": 1937, + "update_tag": "SLE-Product-HA", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-HA/15-SP2/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HA15-SP2-Updates for ppc64le", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-ha15-sp2-debuginfo-updates-ppc64le", + "parent_channel_label": "sle-product-sles15-sp2-pool-ppc64le", + "product_id": 1957, + "repository_id": 4067, + "parent_product_id": 1953, + "root_product_id": 1937, + "update_tag": "SLE-Product-HA", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-HA/15-SP2/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HA15-SP2-Debuginfo-Updates for ppc64le", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-ha15-sp2-pool-ppc64le", + "parent_channel_label": "sle-product-sles15-sp2-pool-ppc64le", + "product_id": 1957, + "repository_id": 4068, + "parent_product_id": 1953, + "root_product_id": 1937, + "update_tag": "SLE-Product-HA", + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP2/ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HA15-SP2-Pool for ppc64le", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-ha15-sp2-debuginfo-pool-ppc64le", + "parent_channel_label": "sle-product-sles15-sp2-pool-ppc64le", + "product_id": 1957, + "repository_id": 4069, + "parent_product_id": 1953, + "root_product_id": 1937, + "update_tag": "SLE-Product-HA", + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP2/ppc64le/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HA15-SP2-Debuginfo-Pool for ppc64le", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting15-sp2-updates-ppc64le", + "parent_channel_label": "sle-product-sles15-sp2-pool-ppc64le", + "product_id": 1974, + "repository_id": 4151, + "parent_product_id": 1953, + "root_product_id": 1937, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/15-SP2/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Web-Scripting15-SP2-Updates for ppc64le", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting15-sp2-debuginfo-updates-ppc64le", + "parent_channel_label": "sle-product-sles15-sp2-pool-ppc64le", + "product_id": 1974, + "repository_id": 4152, + "parent_product_id": 1953, + "root_product_id": 1937, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/15-SP2/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Web-Scripting15-SP2-Debuginfo-Updates for ppc64le", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting15-sp2-pool-ppc64le", + "parent_channel_label": "sle-product-sles15-sp2-pool-ppc64le", + "product_id": 1974, + "repository_id": 4153, + "parent_product_id": 1953, + "root_product_id": 1937, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP2/ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Web-Scripting15-SP2-Pool for ppc64le", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting15-sp2-debuginfo-pool-ppc64le", + "parent_channel_label": "sle-product-sles15-sp2-pool-ppc64le", + "product_id": 1974, + "repository_id": 4154, + "parent_product_id": 1953, + "root_product_id": 1937, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP2/ppc64le/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Web-Scripting15-SP2-Debuginfo-Pool for ppc64le", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-legacy15-sp2-updates-ppc64le", + "parent_channel_label": "sle-product-sles15-sp2-pool-ppc64le", + "product_id": 1980, + "repository_id": 4181, + "parent_product_id": 1953, + "root_product_id": 1937, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/15-SP2/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy15-SP2-Updates for ppc64le", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-legacy15-sp2-debuginfo-updates-ppc64le", + "parent_channel_label": "sle-product-sles15-sp2-pool-ppc64le", + "product_id": 1980, + "repository_id": 4182, + "parent_product_id": 1953, + "root_product_id": 1937, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/15-SP2/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy15-SP2-Debuginfo-Updates for ppc64le", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-legacy15-sp2-pool-ppc64le", + "parent_channel_label": "sle-product-sles15-sp2-pool-ppc64le", + "product_id": 1980, + "repository_id": 4183, + "parent_product_id": 1953, + "root_product_id": 1937, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15-SP2/ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy15-SP2-Pool for ppc64le", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-legacy15-sp2-debuginfo-pool-ppc64le", + "parent_channel_label": "sle-product-sles15-sp2-pool-ppc64le", + "product_id": 1980, + "repository_id": 4184, + "parent_product_id": 1953, + "root_product_id": 1937, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15-SP2/ppc64le/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy15-SP2-Debuginfo-Pool for ppc64le", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud15-sp2-updates-ppc64le", + "parent_channel_label": "sle-product-sles15-sp2-pool-ppc64le", + "product_id": 1986, + "repository_id": 4211, + "parent_product_id": 1953, + "root_product_id": 1937, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/15-SP2/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud15-SP2-Updates for ppc64le", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud15-sp2-debuginfo-updates-ppc64le", + "parent_channel_label": "sle-product-sles15-sp2-pool-ppc64le", + "product_id": 1986, + "repository_id": 4212, + "parent_product_id": 1953, + "root_product_id": 1937, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/15-SP2/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud15-SP2-Debuginfo-Updates for ppc64le", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud15-sp2-pool-ppc64le", + "parent_channel_label": "sle-product-sles15-sp2-pool-ppc64le", + "product_id": 1986, + "repository_id": 4213, + "parent_product_id": 1953, + "root_product_id": 1937, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP2/ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud15-SP2-Pool for ppc64le", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud15-sp2-debuginfo-pool-ppc64le", + "parent_channel_label": "sle-product-sles15-sp2-pool-ppc64le", + "product_id": 1986, + "repository_id": 4214, + "parent_product_id": 1953, + "root_product_id": 1937, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP2/ppc64le/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud15-SP2-Debuginfo-Pool for ppc64le", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "ibm-power-adv-toolchain-sp2", + "parent_channel_label": "sle-product-sles15-sp2-pool-ppc64le", + "product_id": 2076, + "repository_id": 4430, + "parent_product_id": 1953, + "root_product_id": 1937, + "update_tag": null, + "url": "https://public.dhe.ibm.com/software/server/POWER/Linux/toolchain/at/suse/SLES_15/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "IBM-POWER-Adv-Toolchain for ppc64le SP2", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "ibm-power-tools-sp2", + "parent_channel_label": "sle-product-sles15-sp2-pool-ppc64le", + "product_id": 2077, + "repository_id": 4431, + "parent_product_id": 1953, + "root_product_id": 1937, + "update_tag": null, + "url": "https://public.dhe.ibm.com/software/server/POWER/Linux/yum/OSS/SLES/15/ppc64le/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "IBM-POWER-Tools for ppc64le SP2", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-containers15-sp2-updates-ppc64le", + "parent_channel_label": "sle-product-sles15-sp2-pool-ppc64le", + "product_id": 1961, + "repository_id": 4086, + "parent_product_id": 1944, + "root_product_id": 1937, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/15-SP2/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers15-SP2-Updates for ppc64le", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-containers15-sp2-debuginfo-updates-ppc64le", + "parent_channel_label": "sle-product-sles15-sp2-pool-ppc64le", + "product_id": 1961, + "repository_id": 4087, + "parent_product_id": 1944, + "root_product_id": 1937, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/15-SP2/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers15-SP2-Debuginfo-Updates for ppc64le", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-containers15-sp2-pool-ppc64le", + "parent_channel_label": "sle-product-sles15-sp2-pool-ppc64le", + "product_id": 1961, + "repository_id": 4088, + "parent_product_id": 1944, + "root_product_id": 1937, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP2/ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers15-SP2-Pool for ppc64le", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-containers15-sp2-debuginfo-pool-ppc64le", + "parent_channel_label": "sle-product-sles15-sp2-pool-ppc64le", + "product_id": 1961, + "repository_id": 4089, + "parent_product_id": 1944, + "root_product_id": 1937, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP2/ppc64le/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers15-SP2-Debuginfo-Pool for ppc64le", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-desktop-applications15-sp2-updates-ppc64le", + "parent_channel_label": "sle-product-sles15-sp2-pool-ppc64le", + "product_id": 1965, + "repository_id": 4106, + "parent_product_id": 1944, + "root_product_id": 1937, + "update_tag": "SLE-Module-Desktop-Applications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15-SP2/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Desktop-Applications15-SP2-Updates for ppc64le", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-desktop-applications15-sp2-debuginfo-updates-ppc64le", + "parent_channel_label": "sle-product-sles15-sp2-pool-ppc64le", + "product_id": 1965, + "repository_id": 4107, + "parent_product_id": 1944, + "root_product_id": 1937, + "update_tag": "SLE-Module-Desktop-Applications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15-SP2/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Desktop-Applications15-SP2-Debuginfo-Updates for ppc64le", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-desktop-applications15-sp2-pool-ppc64le", + "parent_channel_label": "sle-product-sles15-sp2-pool-ppc64le", + "product_id": 1965, + "repository_id": 4108, + "parent_product_id": 1944, + "root_product_id": 1937, + "update_tag": "SLE-Module-Desktop-Applications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP2/ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Desktop-Applications15-SP2-Pool for ppc64le", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-desktop-applications15-sp2-debuginfo-pool-ppc64le", + "parent_channel_label": "sle-product-sles15-sp2-pool-ppc64le", + "product_id": 1965, + "repository_id": 4109, + "parent_product_id": 1944, + "root_product_id": 1937, + "update_tag": "SLE-Module-Desktop-Applications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP2/ppc64le/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Desktop-Applications15-SP2-Debuginfo-Pool for ppc64le", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-devtools15-sp2-updates-ppc64le", + "parent_channel_label": "sle-product-sles15-sp2-pool-ppc64le", + "product_id": 1969, + "repository_id": 4126, + "parent_product_id": 1965, + "root_product_id": 1937, + "update_tag": "SLE-Module-Development-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15-SP2/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-DevTools15-SP2-Updates for ppc64le", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-devtools15-sp2-debuginfo-updates-ppc64le", + "parent_channel_label": "sle-product-sles15-sp2-pool-ppc64le", + "product_id": 1969, + "repository_id": 4127, + "parent_product_id": 1965, + "root_product_id": 1937, + "update_tag": "SLE-Module-Development-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15-SP2/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-DevTools15-SP2-Debuginfo-Updates for ppc64le", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-devtools15-sp2-pool-ppc64le", + "parent_channel_label": "sle-product-sles15-sp2-pool-ppc64le", + "product_id": 1969, + "repository_id": 4128, + "parent_product_id": 1965, + "root_product_id": 1937, + "update_tag": "SLE-Module-Development-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP2/ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-DevTools15-SP2-Pool for ppc64le", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-devtools15-sp2-debuginfo-pool-ppc64le", + "parent_channel_label": "sle-product-sles15-sp2-pool-ppc64le", + "product_id": 1969, + "repository_id": 4129, + "parent_product_id": 1965, + "root_product_id": 1937, + "update_tag": "SLE-Module-Development-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP2/ppc64le/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-DevTools15-SP2-Debuginfo-Pool for ppc64le", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-live-patching15-sp2-updates-ppc64le", + "parent_channel_label": "sle-product-sles15-sp2-pool-ppc64le", + "product_id": 1983, + "repository_id": 4196, + "parent_product_id": 1944, + "root_product_id": 1937, + "update_tag": "SLE-Module-Live-Patching", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Live-Patching/15-SP2/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Live-Patching15-SP2-Updates for ppc64le", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-live-patching15-sp2-debuginfo-updates-ppc64le", + "parent_channel_label": "sle-product-sles15-sp2-pool-ppc64le", + "product_id": 1983, + "repository_id": 4197, + "parent_product_id": 1944, + "root_product_id": 1937, + "update_tag": "SLE-Module-Live-Patching", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Live-Patching/15-SP2/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Live-Patching15-SP2-Debuginfo-Updates for ppc64le", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-live-patching15-sp2-pool-ppc64le", + "parent_channel_label": "sle-product-sles15-sp2-pool-ppc64le", + "product_id": 1983, + "repository_id": 4198, + "parent_product_id": 1944, + "root_product_id": 1937, + "update_tag": "SLE-Module-Live-Patching", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Live-Patching/15-SP2/ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Live-Patching15-SP2-Pool for ppc64le", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-live-patching15-sp2-debuginfo-pool-ppc64le", + "parent_channel_label": "sle-product-sles15-sp2-pool-ppc64le", + "product_id": 1983, + "repository_id": 4199, + "parent_product_id": 1944, + "root_product_id": 1937, + "update_tag": "SLE-Module-Live-Patching", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Live-Patching/15-SP2/ppc64le/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Live-Patching15-SP2-Debuginfo-Pool for ppc64le", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-python2-15-sp2-updates-ppc64le", + "parent_channel_label": "sle-product-sles15-sp2-pool-ppc64le", + "product_id": 1990, + "repository_id": 4231, + "parent_product_id": 1944, + "root_product_id": 1937, + "update_tag": "SLE-Module-Python2", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Python2/15-SP2/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Python2-15-SP2-Updates for ppc64le", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-python2-15-sp2-debuginfo-updates-ppc64le", + "parent_channel_label": "sle-product-sles15-sp2-pool-ppc64le", + "product_id": 1990, + "repository_id": 4232, + "parent_product_id": 1944, + "root_product_id": 1937, + "update_tag": "SLE-Module-Python2", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Python2/15-SP2/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Python2-15-SP2-Debuginfo-Updates for ppc64le", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-python2-15-sp2-pool-ppc64le", + "parent_channel_label": "sle-product-sles15-sp2-pool-ppc64le", + "product_id": 1990, + "repository_id": 4233, + "parent_product_id": 1944, + "root_product_id": 1937, + "update_tag": "SLE-Module-Python2", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Python2/15-SP2/ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Python2-15-SP2-Pool for ppc64le", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-python2-15-sp2-debuginfo-pool-ppc64le", + "parent_channel_label": "sle-product-sles15-sp2-pool-ppc64le", + "product_id": 1990, + "repository_id": 4234, + "parent_product_id": 1944, + "root_product_id": 1937, + "update_tag": "SLE-Module-Python2", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Python2/15-SP2/ppc64le/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Python2-15-SP2-Debuginfo-Pool for ppc64le", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-transactional-server15-sp2-updates-ppc64le", + "parent_channel_label": "sle-product-sles15-sp2-pool-ppc64le", + "product_id": 1996, + "repository_id": 4261, + "parent_product_id": 1944, + "root_product_id": 1937, + "update_tag": "SLE-Module-Transactional-Server", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Transactional-Server/15-SP2/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Transactional-Server15-SP2-Updates for ppc64le", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-transactional-server15-sp2-debuginfo-updates-ppc64le", + "parent_channel_label": "sle-product-sles15-sp2-pool-ppc64le", + "product_id": 1996, + "repository_id": 4262, + "parent_product_id": 1944, + "root_product_id": 1937, + "update_tag": "SLE-Module-Transactional-Server", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Transactional-Server/15-SP2/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Transactional-Server15-SP2-Debuginfo-Updates for ppc64le", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-transactional-server15-sp2-pool-ppc64le", + "parent_channel_label": "sle-product-sles15-sp2-pool-ppc64le", + "product_id": 1996, + "repository_id": 4263, + "parent_product_id": 1944, + "root_product_id": 1937, + "update_tag": "SLE-Module-Transactional-Server", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Transactional-Server/15-SP2/ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Transactional-Server15-SP2-Pool for ppc64le", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-transactional-server15-sp2-debuginfo-pool-ppc64le", + "parent_channel_label": "sle-product-sles15-sp2-pool-ppc64le", + "product_id": 1996, + "repository_id": 4264, + "parent_product_id": 1944, + "root_product_id": 1937, + "update_tag": "SLE-Module-Transactional-Server", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Transactional-Server/15-SP2/ppc64le/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Transactional-Server15-SP2-Debuginfo-Pool for ppc64le", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-sles15-sp2-ltss-updates-ppc64le", + "parent_channel_label": "sle-product-sles15-sp2-pool-ppc64le", + "product_id": 2373, + "repository_id": 5454, + "parent_product_id": 1937, + "root_product_id": 1937, + "update_tag": "SLE-Product-SLES", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-SLES/15-SP2-LTSS/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-SLES15-SP2-LTSS-Updates for ppc64le", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-sles15-sp2-debuginfo-ltss-updates-ppc64le", + "parent_channel_label": "sle-product-sles15-sp2-pool-ppc64le", + "product_id": 2373, + "repository_id": 5455, + "parent_product_id": 1937, + "root_product_id": 1937, + "update_tag": "SLE-Product-SLES", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-SLES/15-SP2-LTSS/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-SLES15-SP2-Debuginfo-LTSS-Updates for ppc64le", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-sles15-sp2-updates-s390x", + "parent_channel_label": "sle-product-sles15-sp2-pool-s390x", + "product_id": 1938, + "repository_id": 3954, + "parent_product_id": null, + "root_product_id": 1938, + "update_tag": "SLE-Product-SLES", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-SLES/15-SP2/s390x/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-SLES15-SP2-Updates for s390x", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-sles15-sp2-debuginfo-updates-s390x", + "parent_channel_label": "sle-product-sles15-sp2-pool-s390x", + "product_id": 1938, + "repository_id": 3955, + "parent_product_id": null, + "root_product_id": 1938, + "update_tag": "SLE-Product-SLES", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-SLES/15-SP2/s390x/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-SLES15-SP2-Debuginfo-Updates for s390x", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle15-sp2-installer-updates-s390x", + "parent_channel_label": "sle-product-sles15-sp2-pool-s390x", + "product_id": 1938, + "repository_id": 3956, + "parent_product_id": null, + "root_product_id": 1938, + "update_tag": "SLE-INSTALLER", + "url": "https://updates.suse.com/SUSE/Updates/SLE-INSTALLER/15-SP2/s390x/update/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE15-SP2-Installer-Updates for s390x", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-sles15-sp2-pool-s390x", + "parent_channel_label": null, + "product_id": 1938, + "repository_id": 3957, + "parent_product_id": null, + "root_product_id": 1938, + "update_tag": "SLE-Product-SLES", + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-SLES/15-SP2/s390x/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-SLES15-SP2-Pool for s390x", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-sles15-sp2-debuginfo-pool-s390x", + "parent_channel_label": "sle-product-sles15-sp2-pool-s390x", + "product_id": 1938, + "repository_id": 3958, + "parent_product_id": null, + "root_product_id": 1938, + "update_tag": "SLE-Product-SLES", + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-SLES/15-SP2/s390x/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-SLES15-SP2-Debuginfo-Pool for s390x", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-basesystem15-sp2-updates-s390x", + "parent_channel_label": "sle-product-sles15-sp2-pool-s390x", + "product_id": 1945, + "repository_id": 3994, + "parent_product_id": 1938, + "root_product_id": 1938, + "update_tag": "SLE-Module-Basesystem", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15-SP2/s390x/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Basesystem15-SP2-Updates for s390x", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-basesystem15-sp2-debuginfo-updates-s390x", + "parent_channel_label": "sle-product-sles15-sp2-pool-s390x", + "product_id": 1945, + "repository_id": 3995, + "parent_product_id": 1938, + "root_product_id": 1938, + "update_tag": "SLE-Module-Basesystem", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15-SP2/s390x/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Basesystem15-SP2-Debuginfo-Updates for s390x", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-basesystem15-sp2-pool-s390x", + "parent_channel_label": "sle-product-sles15-sp2-pool-s390x", + "product_id": 1945, + "repository_id": 3996, + "parent_product_id": 1938, + "root_product_id": 1938, + "update_tag": "SLE-Module-Basesystem", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP2/s390x/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Basesystem15-SP2-Pool for s390x", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-basesystem15-sp2-debuginfo-pool-s390x", + "parent_channel_label": "sle-product-sles15-sp2-pool-s390x", + "product_id": 1945, + "repository_id": 3997, + "parent_product_id": 1938, + "root_product_id": 1938, + "update_tag": "SLE-Module-Basesystem", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP2/s390x/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Basesystem15-SP2-Debuginfo-Pool for s390x", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-manager-tools15-updates-s390x-sp2", + "parent_channel_label": "sle-product-sles15-sp2-pool-s390x", + "product_id": 1711, + "repository_id": 2927, + "parent_product_id": 1945, + "root_product_id": 1938, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/15/s390x/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-Updates for s390x SP2", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools15-debuginfo-updates-s390x-sp2", + "parent_channel_label": "sle-product-sles15-sp2-pool-s390x", + "product_id": 1711, + "repository_id": 2928, + "parent_product_id": 1945, + "root_product_id": 1938, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/15/s390x/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-Debuginfo-Updates for s390x SP2", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools15-pool-s390x-sp2", + "parent_channel_label": "sle-product-sles15-sp2-pool-s390x", + "product_id": 1711, + "repository_id": 2929, + "parent_product_id": 1945, + "root_product_id": 1938, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/15/s390x/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-Pool for s390x SP2", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools15-debuginfo-pool-s390x-sp2", + "parent_channel_label": "sle-product-sles15-sp2-pool-s390x", + "product_id": 1711, + "repository_id": 2930, + "parent_product_id": 1945, + "root_product_id": 1938, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/15/s390x/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-Debuginfo-Pool for s390x SP2", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools15-beta-updates-s390x-sp2", + "parent_channel_label": "sle-product-sles15-sp2-pool-s390x", + "product_id": 1927, + "repository_id": 3895, + "parent_product_id": 1711, + "root_product_id": 1938, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/15-BETA/s390x/update/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-BETA-Updates for s390x SP2", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools15-beta-debuginfo-updates-s390x-sp2", + "parent_channel_label": "sle-product-sles15-sp2-pool-s390x", + "product_id": 1927, + "repository_id": 3896, + "parent_product_id": 1711, + "root_product_id": 1938, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/15-BETA/s390x/update_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-BETA-Debuginfo-Updates for s390x SP2", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools15-beta-pool-s390x-sp2", + "parent_channel_label": "sle-product-sles15-sp2-pool-s390x", + "product_id": 1927, + "repository_id": 3905, + "parent_product_id": 1711, + "root_product_id": 1938, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/15-BETA/s390x/product/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-BETA-Pool for s390x SP2", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools15-beta-debuginfo-pool-s390x-sp2", + "parent_channel_label": "sle-product-sles15-sp2-pool-s390x", + "product_id": 1927, + "repository_id": 3906, + "parent_product_id": 1711, + "root_product_id": 1938, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/15-BETA/s390x/product_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-BETA-Debuginfo-Pool for s390x SP2", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "suse-packagehub-15-sp2-backports-pool-s390x", + "parent_channel_label": "sle-product-sles15-sp2-pool-s390x", + "product_id": 1949, + "repository_id": 4020, + "parent_product_id": 1945, + "root_product_id": 1938, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-15-SP2_s390x/standard/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-15-SP2-Backports-Pool for s390x", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-packagehub-15-sp2-backports-debuginfo-s390x", + "parent_channel_label": "sle-product-sles15-sp2-pool-s390x", + "product_id": 1949, + "repository_id": 4021, + "parent_product_id": 1945, + "root_product_id": 1938, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-15-SP2_s390x/standard_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-15-SP2-Backports-Debuginfo for s390x", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-packagehub-subpackages15-sp2-updates-s390x", + "parent_channel_label": "sle-product-sles15-sp2-pool-s390x", + "product_id": 1949, + "repository_id": 4022, + "parent_product_id": 1945, + "root_product_id": 1938, + "update_tag": "SLE-Module-Packagehub-Subpackages", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP2/s390x/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Packagehub-Subpackages15-SP2-Updates for s390x", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-packagehub-subpackages15-sp2-debuginfo-updates-s390x", + "parent_channel_label": "sle-product-sles15-sp2-pool-s390x", + "product_id": 1949, + "repository_id": 4023, + "parent_product_id": 1945, + "root_product_id": 1938, + "update_tag": "SLE-Module-Packagehub-Subpackages", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP2/s390x/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Packagehub-Subpackages15-SP2-Debuginfo-Updates for s390x", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-packagehub-15-sp2-pool-s390x", + "parent_channel_label": "sle-product-sles15-sp2-pool-s390x", + "product_id": 1949, + "repository_id": 4024, + "parent_product_id": 1945, + "root_product_id": 1938, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-15-SP2_s390x/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-15-SP2-Pool for s390x", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-packagehub-subpackages15-sp2-pool-s390x", + "parent_channel_label": "sle-product-sles15-sp2-pool-s390x", + "product_id": 1949, + "repository_id": 4025, + "parent_product_id": 1945, + "root_product_id": 1938, + "update_tag": "SLE-Module-Packagehub-Subpackages", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP2/s390x/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Packagehub-Subpackages15-SP2-Pool for s390x", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-packagehub-subpackages15-sp2-debuginfo-pool-s390x", + "parent_channel_label": "sle-product-sles15-sp2-pool-s390x", + "product_id": 1949, + "repository_id": 4026, + "parent_product_id": 1945, + "root_product_id": 1938, + "update_tag": "SLE-Module-Packagehub-Subpackages", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP2/s390x/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Packagehub-Subpackages15-SP2-Debuginfo-Pool for s390x", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-server-applications15-sp2-updates-s390x", + "parent_channel_label": "sle-product-sles15-sp2-pool-s390x", + "product_id": 1954, + "repository_id": 4051, + "parent_product_id": 1945, + "root_product_id": 1938, + "update_tag": "SLE-Module-Server-Applications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15-SP2/s390x/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Server-Applications15-SP2-Updates for s390x", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-server-applications15-sp2-debuginfo-updates-s390x", + "parent_channel_label": "sle-product-sles15-sp2-pool-s390x", + "product_id": 1954, + "repository_id": 4052, + "parent_product_id": 1945, + "root_product_id": 1938, + "update_tag": "SLE-Module-Server-Applications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15-SP2/s390x/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Server-Applications15-SP2-Debuginfo-Updates for s390x", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-server-applications15-sp2-pool-s390x", + "parent_channel_label": "sle-product-sles15-sp2-pool-s390x", + "product_id": 1954, + "repository_id": 4053, + "parent_product_id": 1945, + "root_product_id": 1938, + "update_tag": "SLE-Module-Server-Applications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP2/s390x/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Server-Applications15-SP2-Pool for s390x", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-server-applications15-sp2-debuginfo-pool-s390x", + "parent_channel_label": "sle-product-sles15-sp2-pool-s390x", + "product_id": 1954, + "repository_id": 4054, + "parent_product_id": 1945, + "root_product_id": 1938, + "update_tag": "SLE-Module-Server-Applications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP2/s390x/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Server-Applications15-SP2-Debuginfo-Pool for s390x", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-ha15-sp2-updates-s390x", + "parent_channel_label": "sle-product-sles15-sp2-pool-s390x", + "product_id": 1958, + "repository_id": 4071, + "parent_product_id": 1954, + "root_product_id": 1938, + "update_tag": "SLE-Product-HA", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-HA/15-SP2/s390x/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HA15-SP2-Updates for s390x", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-ha15-sp2-debuginfo-updates-s390x", + "parent_channel_label": "sle-product-sles15-sp2-pool-s390x", + "product_id": 1958, + "repository_id": 4072, + "parent_product_id": 1954, + "root_product_id": 1938, + "update_tag": "SLE-Product-HA", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-HA/15-SP2/s390x/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HA15-SP2-Debuginfo-Updates for s390x", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-ha15-sp2-pool-s390x", + "parent_channel_label": "sle-product-sles15-sp2-pool-s390x", + "product_id": 1958, + "repository_id": 4073, + "parent_product_id": 1954, + "root_product_id": 1938, + "update_tag": "SLE-Product-HA", + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP2/s390x/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HA15-SP2-Pool for s390x", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-ha15-sp2-debuginfo-pool-s390x", + "parent_channel_label": "sle-product-sles15-sp2-pool-s390x", + "product_id": 1958, + "repository_id": 4074, + "parent_product_id": 1954, + "root_product_id": 1938, + "update_tag": "SLE-Product-HA", + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP2/s390x/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HA15-SP2-Debuginfo-Pool for s390x", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting15-sp2-updates-s390x", + "parent_channel_label": "sle-product-sles15-sp2-pool-s390x", + "product_id": 1975, + "repository_id": 4156, + "parent_product_id": 1954, + "root_product_id": 1938, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/15-SP2/s390x/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Web-Scripting15-SP2-Updates for s390x", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting15-sp2-debuginfo-updates-s390x", + "parent_channel_label": "sle-product-sles15-sp2-pool-s390x", + "product_id": 1975, + "repository_id": 4157, + "parent_product_id": 1954, + "root_product_id": 1938, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/15-SP2/s390x/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Web-Scripting15-SP2-Debuginfo-Updates for s390x", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting15-sp2-pool-s390x", + "parent_channel_label": "sle-product-sles15-sp2-pool-s390x", + "product_id": 1975, + "repository_id": 4158, + "parent_product_id": 1954, + "root_product_id": 1938, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP2/s390x/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Web-Scripting15-SP2-Pool for s390x", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting15-sp2-debuginfo-pool-s390x", + "parent_channel_label": "sle-product-sles15-sp2-pool-s390x", + "product_id": 1975, + "repository_id": 4159, + "parent_product_id": 1954, + "root_product_id": 1938, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP2/s390x/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Web-Scripting15-SP2-Debuginfo-Pool for s390x", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-legacy15-sp2-updates-s390x", + "parent_channel_label": "sle-product-sles15-sp2-pool-s390x", + "product_id": 1981, + "repository_id": 4186, + "parent_product_id": 1954, + "root_product_id": 1938, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/15-SP2/s390x/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy15-SP2-Updates for s390x", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-legacy15-sp2-debuginfo-updates-s390x", + "parent_channel_label": "sle-product-sles15-sp2-pool-s390x", + "product_id": 1981, + "repository_id": 4187, + "parent_product_id": 1954, + "root_product_id": 1938, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/15-SP2/s390x/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy15-SP2-Debuginfo-Updates for s390x", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-legacy15-sp2-pool-s390x", + "parent_channel_label": "sle-product-sles15-sp2-pool-s390x", + "product_id": 1981, + "repository_id": 4188, + "parent_product_id": 1954, + "root_product_id": 1938, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15-SP2/s390x/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy15-SP2-Pool for s390x", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-legacy15-sp2-debuginfo-pool-s390x", + "parent_channel_label": "sle-product-sles15-sp2-pool-s390x", + "product_id": 1981, + "repository_id": 4189, + "parent_product_id": 1954, + "root_product_id": 1938, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15-SP2/s390x/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy15-SP2-Debuginfo-Pool for s390x", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud15-sp2-updates-s390x", + "parent_channel_label": "sle-product-sles15-sp2-pool-s390x", + "product_id": 1987, + "repository_id": 4216, + "parent_product_id": 1954, + "root_product_id": 1938, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/15-SP2/s390x/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud15-SP2-Updates for s390x", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud15-sp2-debuginfo-updates-s390x", + "parent_channel_label": "sle-product-sles15-sp2-pool-s390x", + "product_id": 1987, + "repository_id": 4217, + "parent_product_id": 1954, + "root_product_id": 1938, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/15-SP2/s390x/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud15-SP2-Debuginfo-Updates for s390x", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud15-sp2-pool-s390x", + "parent_channel_label": "sle-product-sles15-sp2-pool-s390x", + "product_id": 1987, + "repository_id": 4218, + "parent_product_id": 1954, + "root_product_id": 1938, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP2/s390x/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud15-SP2-Pool for s390x", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud15-sp2-debuginfo-pool-s390x", + "parent_channel_label": "sle-product-sles15-sp2-pool-s390x", + "product_id": 1987, + "repository_id": 4219, + "parent_product_id": 1954, + "root_product_id": 1938, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP2/s390x/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud15-SP2-Debuginfo-Pool for s390x", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-containers15-sp2-updates-s390x", + "parent_channel_label": "sle-product-sles15-sp2-pool-s390x", + "product_id": 1962, + "repository_id": 4091, + "parent_product_id": 1945, + "root_product_id": 1938, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/15-SP2/s390x/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers15-SP2-Updates for s390x", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-containers15-sp2-debuginfo-updates-s390x", + "parent_channel_label": "sle-product-sles15-sp2-pool-s390x", + "product_id": 1962, + "repository_id": 4092, + "parent_product_id": 1945, + "root_product_id": 1938, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/15-SP2/s390x/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers15-SP2-Debuginfo-Updates for s390x", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-containers15-sp2-pool-s390x", + "parent_channel_label": "sle-product-sles15-sp2-pool-s390x", + "product_id": 1962, + "repository_id": 4093, + "parent_product_id": 1945, + "root_product_id": 1938, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP2/s390x/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers15-SP2-Pool for s390x", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-containers15-sp2-debuginfo-pool-s390x", + "parent_channel_label": "sle-product-sles15-sp2-pool-s390x", + "product_id": 1962, + "repository_id": 4094, + "parent_product_id": 1945, + "root_product_id": 1938, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP2/s390x/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers15-SP2-Debuginfo-Pool for s390x", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-desktop-applications15-sp2-updates-s390x", + "parent_channel_label": "sle-product-sles15-sp2-pool-s390x", + "product_id": 1966, + "repository_id": 4111, + "parent_product_id": 1945, + "root_product_id": 1938, + "update_tag": "SLE-Module-Desktop-Applications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15-SP2/s390x/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Desktop-Applications15-SP2-Updates for s390x", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-desktop-applications15-sp2-debuginfo-updates-s390x", + "parent_channel_label": "sle-product-sles15-sp2-pool-s390x", + "product_id": 1966, + "repository_id": 4112, + "parent_product_id": 1945, + "root_product_id": 1938, + "update_tag": "SLE-Module-Desktop-Applications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15-SP2/s390x/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Desktop-Applications15-SP2-Debuginfo-Updates for s390x", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-desktop-applications15-sp2-pool-s390x", + "parent_channel_label": "sle-product-sles15-sp2-pool-s390x", + "product_id": 1966, + "repository_id": 4113, + "parent_product_id": 1945, + "root_product_id": 1938, + "update_tag": "SLE-Module-Desktop-Applications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP2/s390x/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Desktop-Applications15-SP2-Pool for s390x", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-desktop-applications15-sp2-debuginfo-pool-s390x", + "parent_channel_label": "sle-product-sles15-sp2-pool-s390x", + "product_id": 1966, + "repository_id": 4114, + "parent_product_id": 1945, + "root_product_id": 1938, + "update_tag": "SLE-Module-Desktop-Applications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP2/s390x/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Desktop-Applications15-SP2-Debuginfo-Pool for s390x", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-devtools15-sp2-updates-s390x", + "parent_channel_label": "sle-product-sles15-sp2-pool-s390x", + "product_id": 1970, + "repository_id": 4131, + "parent_product_id": 1966, + "root_product_id": 1938, + "update_tag": "SLE-Module-Development-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15-SP2/s390x/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-DevTools15-SP2-Updates for s390x", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-devtools15-sp2-debuginfo-updates-s390x", + "parent_channel_label": "sle-product-sles15-sp2-pool-s390x", + "product_id": 1970, + "repository_id": 4132, + "parent_product_id": 1966, + "root_product_id": 1938, + "update_tag": "SLE-Module-Development-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15-SP2/s390x/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-DevTools15-SP2-Debuginfo-Updates for s390x", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-devtools15-sp2-pool-s390x", + "parent_channel_label": "sle-product-sles15-sp2-pool-s390x", + "product_id": 1970, + "repository_id": 4133, + "parent_product_id": 1966, + "root_product_id": 1938, + "update_tag": "SLE-Module-Development-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP2/s390x/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-DevTools15-SP2-Pool for s390x", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-devtools15-sp2-debuginfo-pool-s390x", + "parent_channel_label": "sle-product-sles15-sp2-pool-s390x", + "product_id": 1970, + "repository_id": 4134, + "parent_product_id": 1966, + "root_product_id": 1938, + "update_tag": "SLE-Module-Development-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP2/s390x/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-DevTools15-SP2-Debuginfo-Pool for s390x", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-python2-15-sp2-updates-s390x", + "parent_channel_label": "sle-product-sles15-sp2-pool-s390x", + "product_id": 1991, + "repository_id": 4236, + "parent_product_id": 1945, + "root_product_id": 1938, + "update_tag": "SLE-Module-Python2", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Python2/15-SP2/s390x/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Python2-15-SP2-Updates for s390x", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-python2-15-sp2-debuginfo-updates-s390x", + "parent_channel_label": "sle-product-sles15-sp2-pool-s390x", + "product_id": 1991, + "repository_id": 4237, + "parent_product_id": 1945, + "root_product_id": 1938, + "update_tag": "SLE-Module-Python2", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Python2/15-SP2/s390x/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Python2-15-SP2-Debuginfo-Updates for s390x", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-python2-15-sp2-pool-s390x", + "parent_channel_label": "sle-product-sles15-sp2-pool-s390x", + "product_id": 1991, + "repository_id": 4238, + "parent_product_id": 1945, + "root_product_id": 1938, + "update_tag": "SLE-Module-Python2", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Python2/15-SP2/s390x/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Python2-15-SP2-Pool for s390x", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-python2-15-sp2-debuginfo-pool-s390x", + "parent_channel_label": "sle-product-sles15-sp2-pool-s390x", + "product_id": 1991, + "repository_id": 4239, + "parent_product_id": 1945, + "root_product_id": 1938, + "update_tag": "SLE-Module-Python2", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Python2/15-SP2/s390x/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Python2-15-SP2-Debuginfo-Pool for s390x", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-transactional-server15-sp2-updates-s390x", + "parent_channel_label": "sle-product-sles15-sp2-pool-s390x", + "product_id": 1997, + "repository_id": 4266, + "parent_product_id": 1945, + "root_product_id": 1938, + "update_tag": "SLE-Module-Transactional-Server", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Transactional-Server/15-SP2/s390x/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Transactional-Server15-SP2-Updates for s390x", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-transactional-server15-sp2-debuginfo-updates-s390x", + "parent_channel_label": "sle-product-sles15-sp2-pool-s390x", + "product_id": 1997, + "repository_id": 4267, + "parent_product_id": 1945, + "root_product_id": 1938, + "update_tag": "SLE-Module-Transactional-Server", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Transactional-Server/15-SP2/s390x/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Transactional-Server15-SP2-Debuginfo-Updates for s390x", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-transactional-server15-sp2-pool-s390x", + "parent_channel_label": "sle-product-sles15-sp2-pool-s390x", + "product_id": 1997, + "repository_id": 4268, + "parent_product_id": 1945, + "root_product_id": 1938, + "update_tag": "SLE-Module-Transactional-Server", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Transactional-Server/15-SP2/s390x/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Transactional-Server15-SP2-Pool for s390x", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-transactional-server15-sp2-debuginfo-pool-s390x", + "parent_channel_label": "sle-product-sles15-sp2-pool-s390x", + "product_id": 1997, + "repository_id": 4269, + "parent_product_id": 1945, + "root_product_id": 1938, + "update_tag": "SLE-Module-Transactional-Server", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Transactional-Server/15-SP2/s390x/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Transactional-Server15-SP2-Debuginfo-Pool for s390x", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-live-patching15-sp2-updates-s390x", + "parent_channel_label": "sle-product-sles15-sp2-pool-s390x", + "product_id": 2081, + "repository_id": 4445, + "parent_product_id": 1945, + "root_product_id": 1938, + "update_tag": "SLE-Module-Live-Patching", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Live-Patching/15-SP2/s390x/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Live-Patching15-SP2-Updates for s390x", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-live-patching15-sp2-debuginfo-updates-s390x", + "parent_channel_label": "sle-product-sles15-sp2-pool-s390x", + "product_id": 2081, + "repository_id": 4446, + "parent_product_id": 1945, + "root_product_id": 1938, + "update_tag": "SLE-Module-Live-Patching", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Live-Patching/15-SP2/s390x/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Live-Patching15-SP2-Debuginfo-Updates for s390x", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-live-patching15-sp2-pool-s390x", + "parent_channel_label": "sle-product-sles15-sp2-pool-s390x", + "product_id": 2081, + "repository_id": 4447, + "parent_product_id": 1945, + "root_product_id": 1938, + "update_tag": "SLE-Module-Live-Patching", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Live-Patching/15-SP2/s390x/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Live-Patching15-SP2-Pool for s390x", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-live-patching15-sp2-debuginfo-pool-s390x", + "parent_channel_label": "sle-product-sles15-sp2-pool-s390x", + "product_id": 2081, + "repository_id": 4448, + "parent_product_id": 1945, + "root_product_id": 1938, + "update_tag": "SLE-Module-Live-Patching", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Live-Patching/15-SP2/s390x/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Live-Patching15-SP2-Debuginfo-Pool for s390x", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-sles15-sp2-ltss-updates-s390x", + "parent_channel_label": "sle-product-sles15-sp2-pool-s390x", + "product_id": 2374, + "repository_id": 5456, + "parent_product_id": 1938, + "root_product_id": 1938, + "update_tag": "SLE-Product-SLES", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-SLES/15-SP2-LTSS/s390x/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-SLES15-SP2-LTSS-Updates for s390x", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-sles15-sp2-debuginfo-ltss-updates-s390x", + "parent_channel_label": "sle-product-sles15-sp2-pool-s390x", + "product_id": 2374, + "repository_id": 5457, + "parent_product_id": 1938, + "root_product_id": 1938, + "update_tag": "SLE-Product-SLES", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-SLES/15-SP2-LTSS/s390x/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-SLES15-SP2-Debuginfo-LTSS-Updates for s390x", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-sles15-sp2-updates-x86_64", + "parent_channel_label": "sle-product-sles15-sp2-pool-x86_64", + "product_id": 1939, + "repository_id": 3960, + "parent_product_id": null, + "root_product_id": 1939, + "update_tag": "SLE-Product-SLES", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-SLES/15-SP2/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-SLES15-SP2-Updates for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-sles15-sp2-debuginfo-updates-x86_64", + "parent_channel_label": "sle-product-sles15-sp2-pool-x86_64", + "product_id": 1939, + "repository_id": 3961, + "parent_product_id": null, + "root_product_id": 1939, + "update_tag": "SLE-Product-SLES", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-SLES/15-SP2/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-SLES15-SP2-Debuginfo-Updates for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle15-sp2-installer-updates-x86_64", + "parent_channel_label": "sle-product-sles15-sp2-pool-x86_64", + "product_id": 1939, + "repository_id": 3962, + "parent_product_id": null, + "root_product_id": 1939, + "update_tag": "SLE-INSTALLER", + "url": "https://updates.suse.com/SUSE/Updates/SLE-INSTALLER/15-SP2/x86_64/update/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE15-SP2-Installer-Updates for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-sles15-sp2-pool-x86_64", + "parent_channel_label": null, + "product_id": 1939, + "repository_id": 3963, + "parent_product_id": null, + "root_product_id": 1939, + "update_tag": "SLE-Product-SLES", + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-SLES/15-SP2/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-SLES15-SP2-Pool for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-sles15-sp2-debuginfo-pool-x86_64", + "parent_channel_label": "sle-product-sles15-sp2-pool-x86_64", + "product_id": 1939, + "repository_id": 3964, + "parent_product_id": null, + "root_product_id": 1939, + "update_tag": "SLE-Product-SLES", + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-SLES/15-SP2/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-SLES15-SP2-Debuginfo-Pool for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-basesystem15-sp2-updates-x86_64", + "parent_channel_label": "sle-product-sles15-sp2-pool-x86_64", + "product_id": 1946, + "repository_id": 3999, + "parent_product_id": 1939, + "root_product_id": 1939, + "update_tag": "SLE-Module-Basesystem", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15-SP2/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Basesystem15-SP2-Updates for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-basesystem15-sp2-debuginfo-updates-x86_64", + "parent_channel_label": "sle-product-sles15-sp2-pool-x86_64", + "product_id": 1946, + "repository_id": 4000, + "parent_product_id": 1939, + "root_product_id": 1939, + "update_tag": "SLE-Module-Basesystem", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15-SP2/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Basesystem15-SP2-Debuginfo-Updates for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-basesystem15-sp2-pool-x86_64", + "parent_channel_label": "sle-product-sles15-sp2-pool-x86_64", + "product_id": 1946, + "repository_id": 4001, + "parent_product_id": 1939, + "root_product_id": 1939, + "update_tag": "SLE-Module-Basesystem", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP2/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Basesystem15-SP2-Pool for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-basesystem15-sp2-debuginfo-pool-x86_64", + "parent_channel_label": "sle-product-sles15-sp2-pool-x86_64", + "product_id": 1946, + "repository_id": 4002, + "parent_product_id": 1939, + "root_product_id": 1939, + "update_tag": "SLE-Module-Basesystem", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP2/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Basesystem15-SP2-Debuginfo-Pool for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-manager-tools15-updates-x86_64-sp2", + "parent_channel_label": "sle-product-sles15-sp2-pool-x86_64", + "product_id": 1712, + "repository_id": 2932, + "parent_product_id": 1946, + "root_product_id": 1939, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/15/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-Updates for x86_64 SP2", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools15-debuginfo-updates-x86_64-sp2", + "parent_channel_label": "sle-product-sles15-sp2-pool-x86_64", + "product_id": 1712, + "repository_id": 2933, + "parent_product_id": 1946, + "root_product_id": 1939, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/15/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-Debuginfo-Updates for x86_64 SP2", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools15-pool-x86_64-sp2", + "parent_channel_label": "sle-product-sles15-sp2-pool-x86_64", + "product_id": 1712, + "repository_id": 2934, + "parent_product_id": 1946, + "root_product_id": 1939, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/15/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-Pool for x86_64 SP2", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools15-debuginfo-pool-x86_64-sp2", + "parent_channel_label": "sle-product-sles15-sp2-pool-x86_64", + "product_id": 1712, + "repository_id": 2935, + "parent_product_id": 1946, + "root_product_id": 1939, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/15/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-Debuginfo-Pool for x86_64 SP2", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools15-beta-updates-x86_64-sp2", + "parent_channel_label": "sle-product-sles15-sp2-pool-x86_64", + "product_id": 1928, + "repository_id": 3897, + "parent_product_id": 1712, + "root_product_id": 1939, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/15-BETA/x86_64/update/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-BETA-Updates for x86_64 SP2", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools15-beta-debuginfo-updates-x86_64-sp2", + "parent_channel_label": "sle-product-sles15-sp2-pool-x86_64", + "product_id": 1928, + "repository_id": 3898, + "parent_product_id": 1712, + "root_product_id": 1939, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/15-BETA/x86_64/update_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-BETA-Debuginfo-Updates for x86_64 SP2", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools15-beta-pool-x86_64-sp2", + "parent_channel_label": "sle-product-sles15-sp2-pool-x86_64", + "product_id": 1928, + "repository_id": 3908, + "parent_product_id": 1712, + "root_product_id": 1939, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/15-BETA/x86_64/product/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-BETA-Pool for x86_64 SP2", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools15-beta-debuginfo-pool-x86_64-sp2", + "parent_channel_label": "sle-product-sles15-sp2-pool-x86_64", + "product_id": 1928, + "repository_id": 3909, + "parent_product_id": 1712, + "root_product_id": 1939, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/15-BETA/x86_64/product_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-BETA-Debuginfo-Pool for x86_64 SP2", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "suse-packagehub-15-sp2-backports-pool-x86_64", + "parent_channel_label": "sle-product-sles15-sp2-pool-x86_64", + "product_id": 1950, + "repository_id": 4028, + "parent_product_id": 1946, + "root_product_id": 1939, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-15-SP2_x86_64/standard/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-15-SP2-Backports-Pool for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-packagehub-15-sp2-backports-debuginfo-x86_64", + "parent_channel_label": "sle-product-sles15-sp2-pool-x86_64", + "product_id": 1950, + "repository_id": 4029, + "parent_product_id": 1946, + "root_product_id": 1939, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-15-SP2_x86_64/standard_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-15-SP2-Backports-Debuginfo for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-packagehub-subpackages15-sp2-updates-x86_64", + "parent_channel_label": "sle-product-sles15-sp2-pool-x86_64", + "product_id": 1950, + "repository_id": 4030, + "parent_product_id": 1946, + "root_product_id": 1939, + "update_tag": "SLE-Module-Packagehub-Subpackages", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP2/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Packagehub-Subpackages15-SP2-Updates for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-packagehub-subpackages15-sp2-debuginfo-updates-x86_64", + "parent_channel_label": "sle-product-sles15-sp2-pool-x86_64", + "product_id": 1950, + "repository_id": 4031, + "parent_product_id": 1946, + "root_product_id": 1939, + "update_tag": "SLE-Module-Packagehub-Subpackages", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP2/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Packagehub-Subpackages15-SP2-Debuginfo-Updates for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-packagehub-15-sp2-pool-x86_64", + "parent_channel_label": "sle-product-sles15-sp2-pool-x86_64", + "product_id": 1950, + "repository_id": 4032, + "parent_product_id": 1946, + "root_product_id": 1939, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-15-SP2_x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-15-SP2-Pool for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-packagehub-subpackages15-sp2-pool-x86_64", + "parent_channel_label": "sle-product-sles15-sp2-pool-x86_64", + "product_id": 1950, + "repository_id": 4033, + "parent_product_id": 1946, + "root_product_id": 1939, + "update_tag": "SLE-Module-Packagehub-Subpackages", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP2/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Packagehub-Subpackages15-SP2-Pool for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-packagehub-subpackages15-sp2-debuginfo-pool-x86_64", + "parent_channel_label": "sle-product-sles15-sp2-pool-x86_64", + "product_id": 1950, + "repository_id": 4034, + "parent_product_id": 1946, + "root_product_id": 1939, + "update_tag": "SLE-Module-Packagehub-Subpackages", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP2/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Packagehub-Subpackages15-SP2-Debuginfo-Pool for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-server-applications15-sp2-updates-x86_64", + "parent_channel_label": "sle-product-sles15-sp2-pool-x86_64", + "product_id": 1955, + "repository_id": 4056, + "parent_product_id": 1946, + "root_product_id": 1939, + "update_tag": "SLE-Module-Server-Applications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15-SP2/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Server-Applications15-SP2-Updates for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-server-applications15-sp2-debuginfo-updates-x86_64", + "parent_channel_label": "sle-product-sles15-sp2-pool-x86_64", + "product_id": 1955, + "repository_id": 4057, + "parent_product_id": 1946, + "root_product_id": 1939, + "update_tag": "SLE-Module-Server-Applications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15-SP2/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Server-Applications15-SP2-Debuginfo-Updates for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-server-applications15-sp2-pool-x86_64", + "parent_channel_label": "sle-product-sles15-sp2-pool-x86_64", + "product_id": 1955, + "repository_id": 4058, + "parent_product_id": 1946, + "root_product_id": 1939, + "update_tag": "SLE-Module-Server-Applications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP2/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Server-Applications15-SP2-Pool for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-server-applications15-sp2-debuginfo-pool-x86_64", + "parent_channel_label": "sle-product-sles15-sp2-pool-x86_64", + "product_id": 1955, + "repository_id": 4059, + "parent_product_id": 1946, + "root_product_id": 1939, + "update_tag": "SLE-Module-Server-Applications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP2/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Server-Applications15-SP2-Debuginfo-Pool for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-ha15-sp2-updates-x86_64", + "parent_channel_label": "sle-product-sles15-sp2-pool-x86_64", + "product_id": 1959, + "repository_id": 4076, + "parent_product_id": 1955, + "root_product_id": 1939, + "update_tag": "SLE-Product-HA", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-HA/15-SP2/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HA15-SP2-Updates for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-ha15-sp2-debuginfo-updates-x86_64", + "parent_channel_label": "sle-product-sles15-sp2-pool-x86_64", + "product_id": 1959, + "repository_id": 4077, + "parent_product_id": 1955, + "root_product_id": 1939, + "update_tag": "SLE-Product-HA", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-HA/15-SP2/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HA15-SP2-Debuginfo-Updates for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-ha15-sp2-pool-x86_64", + "parent_channel_label": "sle-product-sles15-sp2-pool-x86_64", + "product_id": 1959, + "repository_id": 4078, + "parent_product_id": 1955, + "root_product_id": 1939, + "update_tag": "SLE-Product-HA", + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP2/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HA15-SP2-Pool for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-ha15-sp2-debuginfo-pool-x86_64", + "parent_channel_label": "sle-product-sles15-sp2-pool-x86_64", + "product_id": 1959, + "repository_id": 4079, + "parent_product_id": 1955, + "root_product_id": 1939, + "update_tag": "SLE-Product-HA", + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP2/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HA15-SP2-Debuginfo-Pool for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting15-sp2-updates-x86_64", + "parent_channel_label": "sle-product-sles15-sp2-pool-x86_64", + "product_id": 1976, + "repository_id": 4161, + "parent_product_id": 1955, + "root_product_id": 1939, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/15-SP2/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Web-Scripting15-SP2-Updates for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting15-sp2-debuginfo-updates-x86_64", + "parent_channel_label": "sle-product-sles15-sp2-pool-x86_64", + "product_id": 1976, + "repository_id": 4162, + "parent_product_id": 1955, + "root_product_id": 1939, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/15-SP2/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Web-Scripting15-SP2-Debuginfo-Updates for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting15-sp2-pool-x86_64", + "parent_channel_label": "sle-product-sles15-sp2-pool-x86_64", + "product_id": 1976, + "repository_id": 4163, + "parent_product_id": 1955, + "root_product_id": 1939, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP2/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Web-Scripting15-SP2-Pool for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting15-sp2-debuginfo-pool-x86_64", + "parent_channel_label": "sle-product-sles15-sp2-pool-x86_64", + "product_id": 1976, + "repository_id": 4164, + "parent_product_id": 1955, + "root_product_id": 1939, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP2/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Web-Scripting15-SP2-Debuginfo-Pool for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-legacy15-sp2-updates-x86_64", + "parent_channel_label": "sle-product-sles15-sp2-pool-x86_64", + "product_id": 1982, + "repository_id": 4191, + "parent_product_id": 1955, + "root_product_id": 1939, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/15-SP2/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy15-SP2-Updates for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-legacy15-sp2-debuginfo-updates-x86_64", + "parent_channel_label": "sle-product-sles15-sp2-pool-x86_64", + "product_id": 1982, + "repository_id": 4192, + "parent_product_id": 1955, + "root_product_id": 1939, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/15-SP2/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy15-SP2-Debuginfo-Updates for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-legacy15-sp2-pool-x86_64", + "parent_channel_label": "sle-product-sles15-sp2-pool-x86_64", + "product_id": 1982, + "repository_id": 4193, + "parent_product_id": 1955, + "root_product_id": 1939, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15-SP2/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy15-SP2-Pool for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-legacy15-sp2-debuginfo-pool-x86_64", + "parent_channel_label": "sle-product-sles15-sp2-pool-x86_64", + "product_id": 1982, + "repository_id": 4194, + "parent_product_id": 1955, + "root_product_id": 1939, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15-SP2/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy15-SP2-Debuginfo-Pool for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud15-sp2-updates-x86_64", + "parent_channel_label": "sle-product-sles15-sp2-pool-x86_64", + "product_id": 1988, + "repository_id": 4221, + "parent_product_id": 1955, + "root_product_id": 1939, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/15-SP2/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud15-SP2-Updates for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud15-sp2-debuginfo-updates-x86_64", + "parent_channel_label": "sle-product-sles15-sp2-pool-x86_64", + "product_id": 1988, + "repository_id": 4222, + "parent_product_id": 1955, + "root_product_id": 1939, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/15-SP2/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud15-SP2-Debuginfo-Updates for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud15-sp2-pool-x86_64", + "parent_channel_label": "sle-product-sles15-sp2-pool-x86_64", + "product_id": 1988, + "repository_id": 4223, + "parent_product_id": 1955, + "root_product_id": 1939, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP2/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud15-SP2-Pool for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud15-sp2-debuginfo-pool-x86_64", + "parent_channel_label": "sle-product-sles15-sp2-pool-x86_64", + "product_id": 1988, + "repository_id": 4224, + "parent_product_id": 1955, + "root_product_id": 1939, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP2/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud15-SP2-Debuginfo-Pool for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-enterprise-storage-7-updates-x86_64-sp2", + "parent_channel_label": "sle-product-sles15-sp2-pool-x86_64", + "product_id": 2121, + "repository_id": 4509, + "parent_product_id": 1955, + "root_product_id": 1939, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Updates/Storage/7/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-Enterprise-Storage-7-Updates for x86_64 SP2", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-enterprise-storage-7-debuginfo-updates-x86_64-sp2", + "parent_channel_label": "sle-product-sles15-sp2-pool-x86_64", + "product_id": 2121, + "repository_id": 4510, + "parent_product_id": 1955, + "root_product_id": 1939, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Updates/Storage/7/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SUSE-Enterprise-Storage-7-Debuginfo-Updates for x86_64 SP2", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-enterprise-storage-7-pool-x86_64-sp2", + "parent_channel_label": "sle-product-sles15-sp2-pool-x86_64", + "product_id": 2121, + "repository_id": 4511, + "parent_product_id": 1955, + "root_product_id": 1939, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Products/Storage/7/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-Enterprise-Storage-7-Pool for x86_64 SP2", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-enterprise-storage-7-debuginfo-pool-x86_64-sp2", + "parent_channel_label": "sle-product-sles15-sp2-pool-x86_64", + "product_id": 2121, + "repository_id": 4512, + "parent_product_id": 1955, + "root_product_id": 1939, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Products/Storage/7/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SUSE-Enterprise-Storage-7-Debuginfo-Pool for x86_64 SP2", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-containers15-sp2-updates-x86_64", + "parent_channel_label": "sle-product-sles15-sp2-pool-x86_64", + "product_id": 1963, + "repository_id": 4096, + "parent_product_id": 1946, + "root_product_id": 1939, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/15-SP2/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers15-SP2-Updates for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-containers15-sp2-debuginfo-updates-x86_64", + "parent_channel_label": "sle-product-sles15-sp2-pool-x86_64", + "product_id": 1963, + "repository_id": 4097, + "parent_product_id": 1946, + "root_product_id": 1939, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/15-SP2/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers15-SP2-Debuginfo-Updates for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-containers15-sp2-pool-x86_64", + "parent_channel_label": "sle-product-sles15-sp2-pool-x86_64", + "product_id": 1963, + "repository_id": 4098, + "parent_product_id": 1946, + "root_product_id": 1939, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP2/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers15-SP2-Pool for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-containers15-sp2-debuginfo-pool-x86_64", + "parent_channel_label": "sle-product-sles15-sp2-pool-x86_64", + "product_id": 1963, + "repository_id": 4099, + "parent_product_id": 1946, + "root_product_id": 1939, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP2/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers15-SP2-Debuginfo-Pool for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-caasp-4.5-updates-x86_64-sp2", + "parent_channel_label": "sle-product-sles15-sp2-pool-x86_64", + "product_id": 2200, + "repository_id": 4921, + "parent_product_id": 1963, + "root_product_id": 1939, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Updates/SUSE-CAASP/4.5/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-CAASP-4.5-Updates for x86_64 SP2", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-caasp-4.5-debuginfo-updates-x86_64-sp2", + "parent_channel_label": "sle-product-sles15-sp2-pool-x86_64", + "product_id": 2200, + "repository_id": 4922, + "parent_product_id": 1963, + "root_product_id": 1939, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Updates/SUSE-CAASP/4.5/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SUSE-CAASP-4.5-Debuginfo-Updates for x86_64 SP2", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-caasp-4.5-pool-x86_64-sp2", + "parent_channel_label": "sle-product-sles15-sp2-pool-x86_64", + "product_id": 2200, + "repository_id": 4923, + "parent_product_id": 1963, + "root_product_id": 1939, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Products/SUSE-CAASP/4.5/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-CAASP-4.5-Pool for x86_64 SP2", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-caasp-4.5-debuginfo-pool-x86_64-sp2", + "parent_channel_label": "sle-product-sles15-sp2-pool-x86_64", + "product_id": 2200, + "repository_id": 4924, + "parent_product_id": 1963, + "root_product_id": 1939, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Products/SUSE-CAASP/4.5/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SUSE-CAASP-4.5-Debuginfo-Pool for x86_64 SP2", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-desktop-applications15-sp2-updates-x86_64", + "parent_channel_label": "sle-product-sles15-sp2-pool-x86_64", + "product_id": 1967, + "repository_id": 4116, + "parent_product_id": 1946, + "root_product_id": 1939, + "update_tag": "SLE-Module-Desktop-Applications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15-SP2/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Desktop-Applications15-SP2-Updates for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-desktop-applications15-sp2-debuginfo-updates-x86_64", + "parent_channel_label": "sle-product-sles15-sp2-pool-x86_64", + "product_id": 1967, + "repository_id": 4117, + "parent_product_id": 1946, + "root_product_id": 1939, + "update_tag": "SLE-Module-Desktop-Applications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15-SP2/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Desktop-Applications15-SP2-Debuginfo-Updates for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-desktop-applications15-sp2-pool-x86_64", + "parent_channel_label": "sle-product-sles15-sp2-pool-x86_64", + "product_id": 1967, + "repository_id": 4118, + "parent_product_id": 1946, + "root_product_id": 1939, + "update_tag": "SLE-Module-Desktop-Applications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP2/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Desktop-Applications15-SP2-Pool for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-desktop-applications15-sp2-debuginfo-pool-x86_64", + "parent_channel_label": "sle-product-sles15-sp2-pool-x86_64", + "product_id": 1967, + "repository_id": 4119, + "parent_product_id": 1946, + "root_product_id": 1939, + "update_tag": "SLE-Module-Desktop-Applications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP2/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Desktop-Applications15-SP2-Debuginfo-Pool for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-devtools15-sp2-updates-x86_64", + "parent_channel_label": "sle-product-sles15-sp2-pool-x86_64", + "product_id": 1971, + "repository_id": 4136, + "parent_product_id": 1967, + "root_product_id": 1939, + "update_tag": "SLE-Module-Development-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15-SP2/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-DevTools15-SP2-Updates for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-devtools15-sp2-debuginfo-updates-x86_64", + "parent_channel_label": "sle-product-sles15-sp2-pool-x86_64", + "product_id": 1971, + "repository_id": 4137, + "parent_product_id": 1967, + "root_product_id": 1939, + "update_tag": "SLE-Module-Development-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15-SP2/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-DevTools15-SP2-Debuginfo-Updates for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-devtools15-sp2-pool-x86_64", + "parent_channel_label": "sle-product-sles15-sp2-pool-x86_64", + "product_id": 1971, + "repository_id": 4138, + "parent_product_id": 1967, + "root_product_id": 1939, + "update_tag": "SLE-Module-Development-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP2/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-DevTools15-SP2-Pool for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-devtools15-sp2-debuginfo-pool-x86_64", + "parent_channel_label": "sle-product-sles15-sp2-pool-x86_64", + "product_id": 1971, + "repository_id": 4139, + "parent_product_id": 1967, + "root_product_id": 1939, + "update_tag": "SLE-Module-Development-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP2/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-DevTools15-SP2-Debuginfo-Pool for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-nvidia-compute-15-updates-x86_64-we-sp2", + "parent_channel_label": "sle-product-sles15-sp2-pool-x86_64", + "product_id": 2131, + "repository_id": 4554, + "parent_product_id": 1971, + "root_product_id": 1939, + "update_tag": "SLE-Module-NVIDIA-Compute", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-NVIDIA-Compute/15/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-NVIDIA-Compute-15-Updates for x86_64 WE SP2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-nvidia-compute-15-pool-x86_64-we-sp2", + "parent_channel_label": "sle-product-sles15-sp2-pool-x86_64", + "product_id": 2131, + "repository_id": 4556, + "parent_product_id": 1971, + "root_product_id": 1939, + "update_tag": "SLE-Module-NVIDIA-Compute", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-NVIDIA-Compute/15/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-NVIDIA-Compute-15-Pool for x86_64 WE SP2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "nvidia-compute-sle-15-x86_64-we-sp2", + "parent_channel_label": "sle-product-sles15-sp2-pool-x86_64", + "product_id": 2131, + "repository_id": 4563, + "parent_product_id": 1971, + "root_product_id": 1939, + "update_tag": null, + "url": "https://developer.download.nvidia.com/compute/cuda/repos/sles15/x86_64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "NVIDIA-Compute-SLE-15 for x86_64 WE SP2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-we15-sp2-updates-x86_64", + "parent_channel_label": "sle-product-sles15-sp2-pool-x86_64", + "product_id": 1999, + "repository_id": 4276, + "parent_product_id": 1967, + "root_product_id": 1939, + "update_tag": "SLE-Product-WE", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-WE/15-SP2/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-WE15-SP2-Updates for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-we15-sp2-debuginfo-updates-x86_64", + "parent_channel_label": "sle-product-sles15-sp2-pool-x86_64", + "product_id": 1999, + "repository_id": 4277, + "parent_product_id": 1967, + "root_product_id": 1939, + "update_tag": "SLE-Product-WE", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-WE/15-SP2/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-WE15-SP2-Debuginfo-Updates for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-we15-sp2-pool-x86_64", + "parent_channel_label": "sle-product-sles15-sp2-pool-x86_64", + "product_id": 1999, + "repository_id": 4278, + "parent_product_id": 1967, + "root_product_id": 1939, + "update_tag": "SLE-Product-WE", + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-WE/15-SP2/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-WE15-SP2-Pool for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-we15-sp2-debuginfo-pool-x86_64", + "parent_channel_label": "sle-product-sles15-sp2-pool-x86_64", + "product_id": 1999, + "repository_id": 4279, + "parent_product_id": 1967, + "root_product_id": 1939, + "update_tag": "SLE-Product-WE", + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-WE/15-SP2/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-WE15-SP2-Debuginfo-Pool for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-15-sp2-desktop-nvidia-driver-we", + "parent_channel_label": "sle-product-sles15-sp2-pool-x86_64", + "product_id": 1999, + "repository_id": 4450, + "parent_product_id": 1967, + "root_product_id": 1939, + "update_tag": null, + "url": "https://download.nvidia.com/suse/sle15sp2/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-15-SP2-Desktop-NVIDIA-Driver for x86_64 WE", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-live-patching15-sp2-updates-x86_64", + "parent_channel_label": "sle-product-sles15-sp2-pool-x86_64", + "product_id": 1984, + "repository_id": 4201, + "parent_product_id": 1946, + "root_product_id": 1939, + "update_tag": "SLE-Module-Live-Patching", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Live-Patching/15-SP2/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Live-Patching15-SP2-Updates for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-live-patching15-sp2-debuginfo-updates-x86_64", + "parent_channel_label": "sle-product-sles15-sp2-pool-x86_64", + "product_id": 1984, + "repository_id": 4202, + "parent_product_id": 1946, + "root_product_id": 1939, + "update_tag": "SLE-Module-Live-Patching", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Live-Patching/15-SP2/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Live-Patching15-SP2-Debuginfo-Updates for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-live-patching15-sp2-pool-x86_64", + "parent_channel_label": "sle-product-sles15-sp2-pool-x86_64", + "product_id": 1984, + "repository_id": 4203, + "parent_product_id": 1946, + "root_product_id": 1939, + "update_tag": "SLE-Module-Live-Patching", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Live-Patching/15-SP2/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Live-Patching15-SP2-Pool for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-live-patching15-sp2-debuginfo-pool-x86_64", + "parent_channel_label": "sle-product-sles15-sp2-pool-x86_64", + "product_id": 1984, + "repository_id": 4204, + "parent_product_id": 1946, + "root_product_id": 1939, + "update_tag": "SLE-Module-Live-Patching", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Live-Patching/15-SP2/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Live-Patching15-SP2-Debuginfo-Pool for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-python2-15-sp2-updates-x86_64", + "parent_channel_label": "sle-product-sles15-sp2-pool-x86_64", + "product_id": 1992, + "repository_id": 4241, + "parent_product_id": 1946, + "root_product_id": 1939, + "update_tag": "SLE-Module-Python2", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Python2/15-SP2/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Python2-15-SP2-Updates for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-python2-15-sp2-debuginfo-updates-x86_64", + "parent_channel_label": "sle-product-sles15-sp2-pool-x86_64", + "product_id": 1992, + "repository_id": 4242, + "parent_product_id": 1946, + "root_product_id": 1939, + "update_tag": "SLE-Module-Python2", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Python2/15-SP2/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Python2-15-SP2-Debuginfo-Updates for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-python2-15-sp2-pool-x86_64", + "parent_channel_label": "sle-product-sles15-sp2-pool-x86_64", + "product_id": 1992, + "repository_id": 4243, + "parent_product_id": 1946, + "root_product_id": 1939, + "update_tag": "SLE-Module-Python2", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Python2/15-SP2/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Python2-15-SP2-Pool for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-python2-15-sp2-debuginfo-pool-x86_64", + "parent_channel_label": "sle-product-sles15-sp2-pool-x86_64", + "product_id": 1992, + "repository_id": 4244, + "parent_product_id": 1946, + "root_product_id": 1939, + "update_tag": "SLE-Module-Python2", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Python2/15-SP2/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Python2-15-SP2-Debuginfo-Pool for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-transactional-server15-sp2-updates-x86_64", + "parent_channel_label": "sle-product-sles15-sp2-pool-x86_64", + "product_id": 1998, + "repository_id": 4271, + "parent_product_id": 1946, + "root_product_id": 1939, + "update_tag": "SLE-Module-Transactional-Server", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Transactional-Server/15-SP2/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Transactional-Server15-SP2-Updates for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-transactional-server15-sp2-debuginfo-updates-x86_64", + "parent_channel_label": "sle-product-sles15-sp2-pool-x86_64", + "product_id": 1998, + "repository_id": 4272, + "parent_product_id": 1946, + "root_product_id": 1939, + "update_tag": "SLE-Module-Transactional-Server", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Transactional-Server/15-SP2/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Transactional-Server15-SP2-Debuginfo-Updates for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-transactional-server15-sp2-pool-x86_64", + "parent_channel_label": "sle-product-sles15-sp2-pool-x86_64", + "product_id": 1998, + "repository_id": 4273, + "parent_product_id": 1946, + "root_product_id": 1939, + "update_tag": "SLE-Module-Transactional-Server", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Transactional-Server/15-SP2/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Transactional-Server15-SP2-Pool for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-transactional-server15-sp2-debuginfo-pool-x86_64", + "parent_channel_label": "sle-product-sles15-sp2-pool-x86_64", + "product_id": 1998, + "repository_id": 4274, + "parent_product_id": 1946, + "root_product_id": 1939, + "update_tag": "SLE-Module-Transactional-Server", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Transactional-Server/15-SP2/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Transactional-Server15-SP2-Debuginfo-Pool for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-cap-tools15-sp2-updates-x86_64", + "parent_channel_label": "sle-product-sles15-sp2-pool-x86_64", + "product_id": 2075, + "repository_id": 4424, + "parent_product_id": 1946, + "root_product_id": 1939, + "update_tag": "SLE-Module-CAP-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-CAP-Tools/15-SP2/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-CAP-Tools15-SP2-Updates for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-cap-tools15-sp2-debuginfo-updates-x86_64", + "parent_channel_label": "sle-product-sles15-sp2-pool-x86_64", + "product_id": 2075, + "repository_id": 4425, + "parent_product_id": 1946, + "root_product_id": 1939, + "update_tag": "SLE-Module-CAP-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-CAP-Tools/15-SP2/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-CAP-Tools15-SP2-Debuginfo-Updates for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-cap-tools15-sp2-pool-x86_64", + "parent_channel_label": "sle-product-sles15-sp2-pool-x86_64", + "product_id": 2075, + "repository_id": 4426, + "parent_product_id": 1946, + "root_product_id": 1939, + "update_tag": "SLE-Module-CAP-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-CAP-Tools/15-SP2/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-CAP-Tools15-SP2-Pool for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-cap-tools15-sp2-debuginfo-pool-x86_64", + "parent_channel_label": "sle-product-sles15-sp2-pool-x86_64", + "product_id": 2075, + "repository_id": 4427, + "parent_product_id": 1946, + "root_product_id": 1939, + "update_tag": "SLE-Module-CAP-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-CAP-Tools/15-SP2/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-CAP-Tools15-SP2-Debuginfo-Pool for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-sles15-sp2-ltss-updates-x86_64", + "parent_channel_label": "sle-product-sles15-sp2-pool-x86_64", + "product_id": 2375, + "repository_id": 5458, + "parent_product_id": 1939, + "root_product_id": 1939, + "update_tag": "SLE-Product-SLES", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-SLES/15-SP2-LTSS/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-SLES15-SP2-LTSS-Updates for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-sles15-sp2-debuginfo-ltss-updates-x86_64", + "parent_channel_label": "sle-product-sles15-sp2-pool-x86_64", + "product_id": 2375, + "repository_id": 5459, + "parent_product_id": 1939, + "root_product_id": 1939, + "update_tag": "SLE-Product-SLES", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-SLES/15-SP2-LTSS/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-SLES15-SP2-Debuginfo-LTSS-Updates for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-sles_sap15-sp2-updates-ppc64le", + "parent_channel_label": "sle-product-sles_sap15-sp2-pool-ppc64le", + "product_id": 1940, + "repository_id": 3966, + "parent_product_id": null, + "root_product_id": 1940, + "update_tag": "SLE-Product-SLES_SAP", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-SLES_SAP/15-SP2/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-SLES_SAP15-SP2-Updates for ppc64le", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-sles_sap15-sp2-debuginfo-updates-ppc64le", + "parent_channel_label": "sle-product-sles_sap15-sp2-pool-ppc64le", + "product_id": 1940, + "repository_id": 3967, + "parent_product_id": null, + "root_product_id": 1940, + "update_tag": "SLE-Product-SLES_SAP", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-SLES_SAP/15-SP2/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-SLES_SAP15-SP2-Debuginfo-Updates for ppc64le", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-sles_sap15-sp2-pool-ppc64le", + "parent_channel_label": null, + "product_id": 1940, + "repository_id": 3968, + "parent_product_id": null, + "root_product_id": 1940, + "update_tag": "SLE-Product-SLES_SAP", + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-SLES_SAP/15-SP2/ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-SLES_SAP15-SP2-Pool for ppc64le", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-sles_sap15-sp2-debuginfo-pool-ppc64le", + "parent_channel_label": "sle-product-sles_sap15-sp2-pool-ppc64le", + "product_id": 1940, + "repository_id": 3969, + "parent_product_id": null, + "root_product_id": 1940, + "update_tag": "SLE-Product-SLES_SAP", + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-SLES_SAP/15-SP2/ppc64le/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-SLES_SAP15-SP2-Debuginfo-Pool for ppc64le", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-basesystem15-sp2-updates-ppc64le-sap", + "parent_channel_label": "sle-product-sles_sap15-sp2-pool-ppc64le", + "product_id": 1944, + "repository_id": 3989, + "parent_product_id": 1940, + "root_product_id": 1940, + "update_tag": "SLE-Module-Basesystem", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15-SP2/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Basesystem15-SP2-Updates for ppc64le SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-basesystem15-sp2-debuginfo-updates-ppc64le-sap", + "parent_channel_label": "sle-product-sles_sap15-sp2-pool-ppc64le", + "product_id": 1944, + "repository_id": 3990, + "parent_product_id": 1940, + "root_product_id": 1940, + "update_tag": "SLE-Module-Basesystem", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15-SP2/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Basesystem15-SP2-Debuginfo-Updates for ppc64le SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-basesystem15-sp2-pool-ppc64le-sap", + "parent_channel_label": "sle-product-sles_sap15-sp2-pool-ppc64le", + "product_id": 1944, + "repository_id": 3991, + "parent_product_id": 1940, + "root_product_id": 1940, + "update_tag": "SLE-Module-Basesystem", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP2/ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Basesystem15-SP2-Pool for ppc64le SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-basesystem15-sp2-debuginfo-pool-ppc64le-sap", + "parent_channel_label": "sle-product-sles_sap15-sp2-pool-ppc64le", + "product_id": 1944, + "repository_id": 3992, + "parent_product_id": 1940, + "root_product_id": 1940, + "update_tag": "SLE-Module-Basesystem", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP2/ppc64le/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Basesystem15-SP2-Debuginfo-Pool for ppc64le SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-manager-tools15-updates-ppc64le-sap-sp2", + "parent_channel_label": "sle-product-sles_sap15-sp2-pool-ppc64le", + "product_id": 1710, + "repository_id": 2922, + "parent_product_id": 1944, + "root_product_id": 1940, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/15/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-Updates for ppc64le SAP SP2", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools15-debuginfo-updates-ppc64le-sap-sp2", + "parent_channel_label": "sle-product-sles_sap15-sp2-pool-ppc64le", + "product_id": 1710, + "repository_id": 2923, + "parent_product_id": 1944, + "root_product_id": 1940, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/15/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-Debuginfo-Updates for ppc64le SAP SP2", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools15-pool-ppc64le-sap-sp2", + "parent_channel_label": "sle-product-sles_sap15-sp2-pool-ppc64le", + "product_id": 1710, + "repository_id": 2924, + "parent_product_id": 1944, + "root_product_id": 1940, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/15/ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-Pool for ppc64le SAP SP2", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools15-debuginfo-pool-ppc64le-sap-sp2", + "parent_channel_label": "sle-product-sles_sap15-sp2-pool-ppc64le", + "product_id": 1710, + "repository_id": 2925, + "parent_product_id": 1944, + "root_product_id": 1940, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/15/ppc64le/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-Debuginfo-Pool for ppc64le SAP SP2", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools15-beta-updates-ppc64le-sap-sp2", + "parent_channel_label": "sle-product-sles_sap15-sp2-pool-ppc64le", + "product_id": 1926, + "repository_id": 3893, + "parent_product_id": 1710, + "root_product_id": 1940, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/15-BETA/ppc64le/update/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-BETA-Updates for ppc64le SAP SP2", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools15-beta-debuginfo-updates-ppc64le-sap-sp2", + "parent_channel_label": "sle-product-sles_sap15-sp2-pool-ppc64le", + "product_id": 1926, + "repository_id": 3894, + "parent_product_id": 1710, + "root_product_id": 1940, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/15-BETA/ppc64le/update_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-BETA-Debuginfo-Updates for ppc64le SAP SP2", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools15-beta-pool-ppc64le-sap-sp2", + "parent_channel_label": "sle-product-sles_sap15-sp2-pool-ppc64le", + "product_id": 1926, + "repository_id": 3902, + "parent_product_id": 1710, + "root_product_id": 1940, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/15-BETA/ppc64le/product/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-BETA-Pool for ppc64le SAP SP2", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools15-beta-debuginfo-pool-ppc64le-sap-sp2", + "parent_channel_label": "sle-product-sles_sap15-sp2-pool-ppc64le", + "product_id": 1926, + "repository_id": 3903, + "parent_product_id": 1710, + "root_product_id": 1940, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/15-BETA/ppc64le/product_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-BETA-Debuginfo-Pool for ppc64le SAP SP2", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "suse-packagehub-15-sp2-backports-pool-ppc64le-sap", + "parent_channel_label": "sle-product-sles_sap15-sp2-pool-ppc64le", + "product_id": 1948, + "repository_id": 4012, + "parent_product_id": 1944, + "root_product_id": 1940, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-15-SP2_ppc64le/standard/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-15-SP2-Backports-Pool for ppc64le SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-packagehub-15-sp2-backports-debuginfo-ppc64le-sap", + "parent_channel_label": "sle-product-sles_sap15-sp2-pool-ppc64le", + "product_id": 1948, + "repository_id": 4013, + "parent_product_id": 1944, + "root_product_id": 1940, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-15-SP2_ppc64le/standard_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-15-SP2-Backports-Debuginfo for ppc64le SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-packagehub-subpackages15-sp2-updates-ppc64le-sap", + "parent_channel_label": "sle-product-sles_sap15-sp2-pool-ppc64le", + "product_id": 1948, + "repository_id": 4014, + "parent_product_id": 1944, + "root_product_id": 1940, + "update_tag": "SLE-Module-Packagehub-Subpackages", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP2/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Packagehub-Subpackages15-SP2-Updates for ppc64le SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-packagehub-subpackages15-sp2-debuginfo-updates-ppc64le-sap", + "parent_channel_label": "sle-product-sles_sap15-sp2-pool-ppc64le", + "product_id": 1948, + "repository_id": 4015, + "parent_product_id": 1944, + "root_product_id": 1940, + "update_tag": "SLE-Module-Packagehub-Subpackages", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP2/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Packagehub-Subpackages15-SP2-Debuginfo-Updates for ppc64le SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-packagehub-15-sp2-pool-ppc64le-sap", + "parent_channel_label": "sle-product-sles_sap15-sp2-pool-ppc64le", + "product_id": 1948, + "repository_id": 4016, + "parent_product_id": 1944, + "root_product_id": 1940, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-15-SP2_ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-15-SP2-Pool for ppc64le SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-packagehub-subpackages15-sp2-pool-ppc64le-sap", + "parent_channel_label": "sle-product-sles_sap15-sp2-pool-ppc64le", + "product_id": 1948, + "repository_id": 4017, + "parent_product_id": 1944, + "root_product_id": 1940, + "update_tag": "SLE-Module-Packagehub-Subpackages", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP2/ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Packagehub-Subpackages15-SP2-Pool for ppc64le SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-packagehub-subpackages15-sp2-debuginfo-pool-ppc64le-sap", + "parent_channel_label": "sle-product-sles_sap15-sp2-pool-ppc64le", + "product_id": 1948, + "repository_id": 4018, + "parent_product_id": 1944, + "root_product_id": 1940, + "update_tag": "SLE-Module-Packagehub-Subpackages", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP2/ppc64le/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Packagehub-Subpackages15-SP2-Debuginfo-Pool for ppc64le SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-server-applications15-sp2-updates-ppc64le-sap", + "parent_channel_label": "sle-product-sles_sap15-sp2-pool-ppc64le", + "product_id": 1953, + "repository_id": 4046, + "parent_product_id": 1944, + "root_product_id": 1940, + "update_tag": "SLE-Module-Server-Applications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15-SP2/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Server-Applications15-SP2-Updates for ppc64le SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-server-applications15-sp2-debuginfo-updates-ppc64le-sap", + "parent_channel_label": "sle-product-sles_sap15-sp2-pool-ppc64le", + "product_id": 1953, + "repository_id": 4047, + "parent_product_id": 1944, + "root_product_id": 1940, + "update_tag": "SLE-Module-Server-Applications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15-SP2/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Server-Applications15-SP2-Debuginfo-Updates for ppc64le SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-server-applications15-sp2-pool-ppc64le-sap", + "parent_channel_label": "sle-product-sles_sap15-sp2-pool-ppc64le", + "product_id": 1953, + "repository_id": 4048, + "parent_product_id": 1944, + "root_product_id": 1940, + "update_tag": "SLE-Module-Server-Applications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP2/ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Server-Applications15-SP2-Pool for ppc64le SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-server-applications15-sp2-debuginfo-pool-ppc64le-sap", + "parent_channel_label": "sle-product-sles_sap15-sp2-pool-ppc64le", + "product_id": 1953, + "repository_id": 4049, + "parent_product_id": 1944, + "root_product_id": 1940, + "update_tag": "SLE-Module-Server-Applications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP2/ppc64le/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Server-Applications15-SP2-Debuginfo-Pool for ppc64le SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-ha15-sp2-updates-ppc64le-sap", + "parent_channel_label": "sle-product-sles_sap15-sp2-pool-ppc64le", + "product_id": 1957, + "repository_id": 4066, + "parent_product_id": 1953, + "root_product_id": 1940, + "update_tag": "SLE-Product-HA", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-HA/15-SP2/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Product-HA15-SP2-Updates for ppc64le SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-ha15-sp2-debuginfo-updates-ppc64le-sap", + "parent_channel_label": "sle-product-sles_sap15-sp2-pool-ppc64le", + "product_id": 1957, + "repository_id": 4067, + "parent_product_id": 1953, + "root_product_id": 1940, + "update_tag": "SLE-Product-HA", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-HA/15-SP2/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Product-HA15-SP2-Debuginfo-Updates for ppc64le SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-ha15-sp2-pool-ppc64le-sap", + "parent_channel_label": "sle-product-sles_sap15-sp2-pool-ppc64le", + "product_id": 1957, + "repository_id": 4068, + "parent_product_id": 1953, + "root_product_id": 1940, + "update_tag": "SLE-Product-HA", + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP2/ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Product-HA15-SP2-Pool for ppc64le SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-ha15-sp2-debuginfo-pool-ppc64le-sap", + "parent_channel_label": "sle-product-sles_sap15-sp2-pool-ppc64le", + "product_id": 1957, + "repository_id": 4069, + "parent_product_id": 1953, + "root_product_id": 1940, + "update_tag": "SLE-Product-HA", + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP2/ppc64le/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Product-HA15-SP2-Debuginfo-Pool for ppc64le SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-sap-applications15-sp2-updates-ppc64le", + "parent_channel_label": "sle-product-sles_sap15-sp2-pool-ppc64le", + "product_id": 1993, + "repository_id": 4246, + "parent_product_id": 1957, + "root_product_id": 1940, + "update_tag": "SLE-Module-SAP-Applications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-SAP-Applications/15-SP2/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-SAP-Applications15-SP2-Updates for ppc64le", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-sap-applications15-sp2-debuginfo-updates-ppc64le", + "parent_channel_label": "sle-product-sles_sap15-sp2-pool-ppc64le", + "product_id": 1993, + "repository_id": 4247, + "parent_product_id": 1957, + "root_product_id": 1940, + "update_tag": "SLE-Module-SAP-Applications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-SAP-Applications/15-SP2/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-SAP-Applications15-SP2-Debuginfo-Updates for ppc64le", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-sap-applications15-sp2-pool-ppc64le", + "parent_channel_label": "sle-product-sles_sap15-sp2-pool-ppc64le", + "product_id": 1993, + "repository_id": 4248, + "parent_product_id": 1957, + "root_product_id": 1940, + "update_tag": "SLE-Module-SAP-Applications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-SAP-Applications/15-SP2/ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-SAP-Applications15-SP2-Pool for ppc64le", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-sap-applications15-sp2-debuginfo-pool-ppc64le", + "parent_channel_label": "sle-product-sles_sap15-sp2-pool-ppc64le", + "product_id": 1993, + "repository_id": 4249, + "parent_product_id": 1957, + "root_product_id": 1940, + "update_tag": "SLE-Module-SAP-Applications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-SAP-Applications/15-SP2/ppc64le/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-SAP-Applications15-SP2-Debuginfo-Pool for ppc64le", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting15-sp2-updates-ppc64le-sap", + "parent_channel_label": "sle-product-sles_sap15-sp2-pool-ppc64le", + "product_id": 1974, + "repository_id": 4151, + "parent_product_id": 1953, + "root_product_id": 1940, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/15-SP2/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Web-Scripting15-SP2-Updates for ppc64le SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting15-sp2-debuginfo-updates-ppc64le-sap", + "parent_channel_label": "sle-product-sles_sap15-sp2-pool-ppc64le", + "product_id": 1974, + "repository_id": 4152, + "parent_product_id": 1953, + "root_product_id": 1940, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/15-SP2/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Web-Scripting15-SP2-Debuginfo-Updates for ppc64le SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting15-sp2-pool-ppc64le-sap", + "parent_channel_label": "sle-product-sles_sap15-sp2-pool-ppc64le", + "product_id": 1974, + "repository_id": 4153, + "parent_product_id": 1953, + "root_product_id": 1940, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP2/ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Web-Scripting15-SP2-Pool for ppc64le SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting15-sp2-debuginfo-pool-ppc64le-sap", + "parent_channel_label": "sle-product-sles_sap15-sp2-pool-ppc64le", + "product_id": 1974, + "repository_id": 4154, + "parent_product_id": 1953, + "root_product_id": 1940, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP2/ppc64le/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Web-Scripting15-SP2-Debuginfo-Pool for ppc64le SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-legacy15-sp2-updates-ppc64le-sap", + "parent_channel_label": "sle-product-sles_sap15-sp2-pool-ppc64le", + "product_id": 1980, + "repository_id": 4181, + "parent_product_id": 1953, + "root_product_id": 1940, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/15-SP2/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy15-SP2-Updates for ppc64le SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-legacy15-sp2-debuginfo-updates-ppc64le-sap", + "parent_channel_label": "sle-product-sles_sap15-sp2-pool-ppc64le", + "product_id": 1980, + "repository_id": 4182, + "parent_product_id": 1953, + "root_product_id": 1940, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/15-SP2/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy15-SP2-Debuginfo-Updates for ppc64le SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-legacy15-sp2-pool-ppc64le-sap", + "parent_channel_label": "sle-product-sles_sap15-sp2-pool-ppc64le", + "product_id": 1980, + "repository_id": 4183, + "parent_product_id": 1953, + "root_product_id": 1940, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15-SP2/ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy15-SP2-Pool for ppc64le SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-legacy15-sp2-debuginfo-pool-ppc64le-sap", + "parent_channel_label": "sle-product-sles_sap15-sp2-pool-ppc64le", + "product_id": 1980, + "repository_id": 4184, + "parent_product_id": 1953, + "root_product_id": 1940, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15-SP2/ppc64le/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy15-SP2-Debuginfo-Pool for ppc64le SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud15-sp2-updates-ppc64le-sap", + "parent_channel_label": "sle-product-sles_sap15-sp2-pool-ppc64le", + "product_id": 1986, + "repository_id": 4211, + "parent_product_id": 1953, + "root_product_id": 1940, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/15-SP2/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud15-SP2-Updates for ppc64le SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud15-sp2-debuginfo-updates-ppc64le-sap", + "parent_channel_label": "sle-product-sles_sap15-sp2-pool-ppc64le", + "product_id": 1986, + "repository_id": 4212, + "parent_product_id": 1953, + "root_product_id": 1940, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/15-SP2/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud15-SP2-Debuginfo-Updates for ppc64le SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud15-sp2-pool-ppc64le-sap", + "parent_channel_label": "sle-product-sles_sap15-sp2-pool-ppc64le", + "product_id": 1986, + "repository_id": 4213, + "parent_product_id": 1953, + "root_product_id": 1940, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP2/ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud15-SP2-Pool for ppc64le SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud15-sp2-debuginfo-pool-ppc64le-sap", + "parent_channel_label": "sle-product-sles_sap15-sp2-pool-ppc64le", + "product_id": 1986, + "repository_id": 4214, + "parent_product_id": 1953, + "root_product_id": 1940, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP2/ppc64le/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud15-SP2-Debuginfo-Pool for ppc64le SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "ibm-power-adv-toolchain-sap-sp2", + "parent_channel_label": "sle-product-sles_sap15-sp2-pool-ppc64le", + "product_id": 2076, + "repository_id": 4430, + "parent_product_id": 1953, + "root_product_id": 1940, + "update_tag": null, + "url": "https://public.dhe.ibm.com/software/server/POWER/Linux/toolchain/at/suse/SLES_15/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "IBM-POWER-Adv-Toolchain for ppc64le SAP SP2", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "ibm-power-tools-sap-sp2", + "parent_channel_label": "sle-product-sles_sap15-sp2-pool-ppc64le", + "product_id": 2077, + "repository_id": 4431, + "parent_product_id": 1953, + "root_product_id": 1940, + "update_tag": null, + "url": "https://public.dhe.ibm.com/software/server/POWER/Linux/yum/OSS/SLES/15/ppc64le/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "IBM-POWER-Tools for ppc64le SAP SP2", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-containers15-sp2-updates-ppc64le-sap", + "parent_channel_label": "sle-product-sles_sap15-sp2-pool-ppc64le", + "product_id": 1961, + "repository_id": 4086, + "parent_product_id": 1944, + "root_product_id": 1940, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/15-SP2/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers15-SP2-Updates for ppc64le SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-containers15-sp2-debuginfo-updates-ppc64le-sap", + "parent_channel_label": "sle-product-sles_sap15-sp2-pool-ppc64le", + "product_id": 1961, + "repository_id": 4087, + "parent_product_id": 1944, + "root_product_id": 1940, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/15-SP2/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers15-SP2-Debuginfo-Updates for ppc64le SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-containers15-sp2-pool-ppc64le-sap", + "parent_channel_label": "sle-product-sles_sap15-sp2-pool-ppc64le", + "product_id": 1961, + "repository_id": 4088, + "parent_product_id": 1944, + "root_product_id": 1940, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP2/ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers15-SP2-Pool for ppc64le SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-containers15-sp2-debuginfo-pool-ppc64le-sap", + "parent_channel_label": "sle-product-sles_sap15-sp2-pool-ppc64le", + "product_id": 1961, + "repository_id": 4089, + "parent_product_id": 1944, + "root_product_id": 1940, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP2/ppc64le/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers15-SP2-Debuginfo-Pool for ppc64le SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-desktop-applications15-sp2-updates-ppc64le-sap", + "parent_channel_label": "sle-product-sles_sap15-sp2-pool-ppc64le", + "product_id": 1965, + "repository_id": 4106, + "parent_product_id": 1944, + "root_product_id": 1940, + "update_tag": "SLE-Module-Desktop-Applications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15-SP2/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Desktop-Applications15-SP2-Updates for ppc64le SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-desktop-applications15-sp2-debuginfo-updates-ppc64le-sap", + "parent_channel_label": "sle-product-sles_sap15-sp2-pool-ppc64le", + "product_id": 1965, + "repository_id": 4107, + "parent_product_id": 1944, + "root_product_id": 1940, + "update_tag": "SLE-Module-Desktop-Applications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15-SP2/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Desktop-Applications15-SP2-Debuginfo-Updates for ppc64le SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-desktop-applications15-sp2-pool-ppc64le-sap", + "parent_channel_label": "sle-product-sles_sap15-sp2-pool-ppc64le", + "product_id": 1965, + "repository_id": 4108, + "parent_product_id": 1944, + "root_product_id": 1940, + "update_tag": "SLE-Module-Desktop-Applications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP2/ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Desktop-Applications15-SP2-Pool for ppc64le SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-desktop-applications15-sp2-debuginfo-pool-ppc64le-sap", + "parent_channel_label": "sle-product-sles_sap15-sp2-pool-ppc64le", + "product_id": 1965, + "repository_id": 4109, + "parent_product_id": 1944, + "root_product_id": 1940, + "update_tag": "SLE-Module-Desktop-Applications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP2/ppc64le/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Desktop-Applications15-SP2-Debuginfo-Pool for ppc64le SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-devtools15-sp2-updates-ppc64le-sap", + "parent_channel_label": "sle-product-sles_sap15-sp2-pool-ppc64le", + "product_id": 1969, + "repository_id": 4126, + "parent_product_id": 1965, + "root_product_id": 1940, + "update_tag": "SLE-Module-Development-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15-SP2/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-DevTools15-SP2-Updates for ppc64le SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-devtools15-sp2-debuginfo-updates-ppc64le-sap", + "parent_channel_label": "sle-product-sles_sap15-sp2-pool-ppc64le", + "product_id": 1969, + "repository_id": 4127, + "parent_product_id": 1965, + "root_product_id": 1940, + "update_tag": "SLE-Module-Development-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15-SP2/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-DevTools15-SP2-Debuginfo-Updates for ppc64le SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-devtools15-sp2-pool-ppc64le-sap", + "parent_channel_label": "sle-product-sles_sap15-sp2-pool-ppc64le", + "product_id": 1969, + "repository_id": 4128, + "parent_product_id": 1965, + "root_product_id": 1940, + "update_tag": "SLE-Module-Development-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP2/ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-DevTools15-SP2-Pool for ppc64le SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-devtools15-sp2-debuginfo-pool-ppc64le-sap", + "parent_channel_label": "sle-product-sles_sap15-sp2-pool-ppc64le", + "product_id": 1969, + "repository_id": 4129, + "parent_product_id": 1965, + "root_product_id": 1940, + "update_tag": "SLE-Module-Development-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP2/ppc64le/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-DevTools15-SP2-Debuginfo-Pool for ppc64le SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-live-patching15-sp2-updates-ppc64le-sap", + "parent_channel_label": "sle-product-sles_sap15-sp2-pool-ppc64le", + "product_id": 1983, + "repository_id": 4196, + "parent_product_id": 1944, + "root_product_id": 1940, + "update_tag": "SLE-Module-Live-Patching", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Live-Patching/15-SP2/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Live-Patching15-SP2-Updates for ppc64le SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-live-patching15-sp2-debuginfo-updates-ppc64le-sap", + "parent_channel_label": "sle-product-sles_sap15-sp2-pool-ppc64le", + "product_id": 1983, + "repository_id": 4197, + "parent_product_id": 1944, + "root_product_id": 1940, + "update_tag": "SLE-Module-Live-Patching", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Live-Patching/15-SP2/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Live-Patching15-SP2-Debuginfo-Updates for ppc64le SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-live-patching15-sp2-pool-ppc64le-sap", + "parent_channel_label": "sle-product-sles_sap15-sp2-pool-ppc64le", + "product_id": 1983, + "repository_id": 4198, + "parent_product_id": 1944, + "root_product_id": 1940, + "update_tag": "SLE-Module-Live-Patching", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Live-Patching/15-SP2/ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Live-Patching15-SP2-Pool for ppc64le SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-live-patching15-sp2-debuginfo-pool-ppc64le-sap", + "parent_channel_label": "sle-product-sles_sap15-sp2-pool-ppc64le", + "product_id": 1983, + "repository_id": 4199, + "parent_product_id": 1944, + "root_product_id": 1940, + "update_tag": "SLE-Module-Live-Patching", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Live-Patching/15-SP2/ppc64le/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Live-Patching15-SP2-Debuginfo-Pool for ppc64le SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-python2-15-sp2-updates-ppc64le-sap", + "parent_channel_label": "sle-product-sles_sap15-sp2-pool-ppc64le", + "product_id": 1990, + "repository_id": 4231, + "parent_product_id": 1944, + "root_product_id": 1940, + "update_tag": "SLE-Module-Python2", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Python2/15-SP2/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Python2-15-SP2-Updates for ppc64le SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-python2-15-sp2-debuginfo-updates-ppc64le-sap", + "parent_channel_label": "sle-product-sles_sap15-sp2-pool-ppc64le", + "product_id": 1990, + "repository_id": 4232, + "parent_product_id": 1944, + "root_product_id": 1940, + "update_tag": "SLE-Module-Python2", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Python2/15-SP2/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Python2-15-SP2-Debuginfo-Updates for ppc64le SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-python2-15-sp2-pool-ppc64le-sap", + "parent_channel_label": "sle-product-sles_sap15-sp2-pool-ppc64le", + "product_id": 1990, + "repository_id": 4233, + "parent_product_id": 1944, + "root_product_id": 1940, + "update_tag": "SLE-Module-Python2", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Python2/15-SP2/ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Python2-15-SP2-Pool for ppc64le SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-python2-15-sp2-debuginfo-pool-ppc64le-sap", + "parent_channel_label": "sle-product-sles_sap15-sp2-pool-ppc64le", + "product_id": 1990, + "repository_id": 4234, + "parent_product_id": 1944, + "root_product_id": 1940, + "update_tag": "SLE-Module-Python2", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Python2/15-SP2/ppc64le/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Python2-15-SP2-Debuginfo-Pool for ppc64le SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-sles_sap15-sp2-updates-x86_64", + "parent_channel_label": "sle-product-sles_sap15-sp2-pool-x86_64", + "product_id": 1941, + "repository_id": 3971, + "parent_product_id": null, + "root_product_id": 1941, + "update_tag": "SLE-Product-SLES_SAP", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-SLES_SAP/15-SP2/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-SLES_SAP15-SP2-Updates for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-sles_sap15-sp2-debuginfo-updates-x86_64", + "parent_channel_label": "sle-product-sles_sap15-sp2-pool-x86_64", + "product_id": 1941, + "repository_id": 3972, + "parent_product_id": null, + "root_product_id": 1941, + "update_tag": "SLE-Product-SLES_SAP", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-SLES_SAP/15-SP2/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-SLES_SAP15-SP2-Debuginfo-Updates for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-sles_sap15-sp2-pool-x86_64", + "parent_channel_label": null, + "product_id": 1941, + "repository_id": 3973, + "parent_product_id": null, + "root_product_id": 1941, + "update_tag": "SLE-Product-SLES_SAP", + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-SLES_SAP/15-SP2/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-SLES_SAP15-SP2-Pool for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-sles_sap15-sp2-debuginfo-pool-x86_64", + "parent_channel_label": "sle-product-sles_sap15-sp2-pool-x86_64", + "product_id": 1941, + "repository_id": 3974, + "parent_product_id": null, + "root_product_id": 1941, + "update_tag": "SLE-Product-SLES_SAP", + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-SLES_SAP/15-SP2/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-SLES_SAP15-SP2-Debuginfo-Pool for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-basesystem15-sp2-updates-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-sp2-pool-x86_64", + "product_id": 1946, + "repository_id": 3999, + "parent_product_id": 1941, + "root_product_id": 1941, + "update_tag": "SLE-Module-Basesystem", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15-SP2/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Basesystem15-SP2-Updates for x86_64 SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-basesystem15-sp2-debuginfo-updates-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-sp2-pool-x86_64", + "product_id": 1946, + "repository_id": 4000, + "parent_product_id": 1941, + "root_product_id": 1941, + "update_tag": "SLE-Module-Basesystem", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15-SP2/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Basesystem15-SP2-Debuginfo-Updates for x86_64 SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-basesystem15-sp2-pool-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-sp2-pool-x86_64", + "product_id": 1946, + "repository_id": 4001, + "parent_product_id": 1941, + "root_product_id": 1941, + "update_tag": "SLE-Module-Basesystem", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP2/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Basesystem15-SP2-Pool for x86_64 SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-basesystem15-sp2-debuginfo-pool-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-sp2-pool-x86_64", + "product_id": 1946, + "repository_id": 4002, + "parent_product_id": 1941, + "root_product_id": 1941, + "update_tag": "SLE-Module-Basesystem", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP2/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Basesystem15-SP2-Debuginfo-Pool for x86_64 SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-manager-tools15-updates-x86_64-sap-sp2", + "parent_channel_label": "sle-product-sles_sap15-sp2-pool-x86_64", + "product_id": 1712, + "repository_id": 2932, + "parent_product_id": 1946, + "root_product_id": 1941, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/15/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-Updates for x86_64 SAP SP2", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools15-debuginfo-updates-x86_64-sap-sp2", + "parent_channel_label": "sle-product-sles_sap15-sp2-pool-x86_64", + "product_id": 1712, + "repository_id": 2933, + "parent_product_id": 1946, + "root_product_id": 1941, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/15/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-Debuginfo-Updates for x86_64 SAP SP2", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools15-pool-x86_64-sap-sp2", + "parent_channel_label": "sle-product-sles_sap15-sp2-pool-x86_64", + "product_id": 1712, + "repository_id": 2934, + "parent_product_id": 1946, + "root_product_id": 1941, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/15/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-Pool for x86_64 SAP SP2", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools15-debuginfo-pool-x86_64-sap-sp2", + "parent_channel_label": "sle-product-sles_sap15-sp2-pool-x86_64", + "product_id": 1712, + "repository_id": 2935, + "parent_product_id": 1946, + "root_product_id": 1941, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/15/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-Debuginfo-Pool for x86_64 SAP SP2", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools15-beta-updates-x86_64-sap-sp2", + "parent_channel_label": "sle-product-sles_sap15-sp2-pool-x86_64", + "product_id": 1928, + "repository_id": 3897, + "parent_product_id": 1712, + "root_product_id": 1941, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/15-BETA/x86_64/update/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-BETA-Updates for x86_64 SAP SP2", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools15-beta-debuginfo-updates-x86_64-sap-sp2", + "parent_channel_label": "sle-product-sles_sap15-sp2-pool-x86_64", + "product_id": 1928, + "repository_id": 3898, + "parent_product_id": 1712, + "root_product_id": 1941, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/15-BETA/x86_64/update_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-BETA-Debuginfo-Updates for x86_64 SAP SP2", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools15-beta-pool-x86_64-sap-sp2", + "parent_channel_label": "sle-product-sles_sap15-sp2-pool-x86_64", + "product_id": 1928, + "repository_id": 3908, + "parent_product_id": 1712, + "root_product_id": 1941, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/15-BETA/x86_64/product/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-BETA-Pool for x86_64 SAP SP2", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools15-beta-debuginfo-pool-x86_64-sap-sp2", + "parent_channel_label": "sle-product-sles_sap15-sp2-pool-x86_64", + "product_id": 1928, + "repository_id": 3909, + "parent_product_id": 1712, + "root_product_id": 1941, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/15-BETA/x86_64/product_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-BETA-Debuginfo-Pool for x86_64 SAP SP2", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "suse-packagehub-15-sp2-backports-pool-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-sp2-pool-x86_64", + "product_id": 1950, + "repository_id": 4028, + "parent_product_id": 1946, + "root_product_id": 1941, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-15-SP2_x86_64/standard/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-15-SP2-Backports-Pool for x86_64 SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-packagehub-15-sp2-backports-debuginfo-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-sp2-pool-x86_64", + "product_id": 1950, + "repository_id": 4029, + "parent_product_id": 1946, + "root_product_id": 1941, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-15-SP2_x86_64/standard_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-15-SP2-Backports-Debuginfo for x86_64 SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-packagehub-subpackages15-sp2-updates-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-sp2-pool-x86_64", + "product_id": 1950, + "repository_id": 4030, + "parent_product_id": 1946, + "root_product_id": 1941, + "update_tag": "SLE-Module-Packagehub-Subpackages", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP2/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Packagehub-Subpackages15-SP2-Updates for x86_64 SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-packagehub-subpackages15-sp2-debuginfo-updates-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-sp2-pool-x86_64", + "product_id": 1950, + "repository_id": 4031, + "parent_product_id": 1946, + "root_product_id": 1941, + "update_tag": "SLE-Module-Packagehub-Subpackages", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP2/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Packagehub-Subpackages15-SP2-Debuginfo-Updates for x86_64 SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-packagehub-15-sp2-pool-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-sp2-pool-x86_64", + "product_id": 1950, + "repository_id": 4032, + "parent_product_id": 1946, + "root_product_id": 1941, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-15-SP2_x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-15-SP2-Pool for x86_64 SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-packagehub-subpackages15-sp2-pool-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-sp2-pool-x86_64", + "product_id": 1950, + "repository_id": 4033, + "parent_product_id": 1946, + "root_product_id": 1941, + "update_tag": "SLE-Module-Packagehub-Subpackages", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP2/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Packagehub-Subpackages15-SP2-Pool for x86_64 SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-packagehub-subpackages15-sp2-debuginfo-pool-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-sp2-pool-x86_64", + "product_id": 1950, + "repository_id": 4034, + "parent_product_id": 1946, + "root_product_id": 1941, + "update_tag": "SLE-Module-Packagehub-Subpackages", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP2/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Packagehub-Subpackages15-SP2-Debuginfo-Pool for x86_64 SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-server-applications15-sp2-updates-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-sp2-pool-x86_64", + "product_id": 1955, + "repository_id": 4056, + "parent_product_id": 1946, + "root_product_id": 1941, + "update_tag": "SLE-Module-Server-Applications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15-SP2/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Server-Applications15-SP2-Updates for x86_64 SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-server-applications15-sp2-debuginfo-updates-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-sp2-pool-x86_64", + "product_id": 1955, + "repository_id": 4057, + "parent_product_id": 1946, + "root_product_id": 1941, + "update_tag": "SLE-Module-Server-Applications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15-SP2/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Server-Applications15-SP2-Debuginfo-Updates for x86_64 SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-server-applications15-sp2-pool-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-sp2-pool-x86_64", + "product_id": 1955, + "repository_id": 4058, + "parent_product_id": 1946, + "root_product_id": 1941, + "update_tag": "SLE-Module-Server-Applications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP2/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Server-Applications15-SP2-Pool for x86_64 SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-server-applications15-sp2-debuginfo-pool-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-sp2-pool-x86_64", + "product_id": 1955, + "repository_id": 4059, + "parent_product_id": 1946, + "root_product_id": 1941, + "update_tag": "SLE-Module-Server-Applications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP2/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Server-Applications15-SP2-Debuginfo-Pool for x86_64 SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-ha15-sp2-updates-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-sp2-pool-x86_64", + "product_id": 1959, + "repository_id": 4076, + "parent_product_id": 1955, + "root_product_id": 1941, + "update_tag": "SLE-Product-HA", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-HA/15-SP2/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Product-HA15-SP2-Updates for x86_64 SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-ha15-sp2-debuginfo-updates-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-sp2-pool-x86_64", + "product_id": 1959, + "repository_id": 4077, + "parent_product_id": 1955, + "root_product_id": 1941, + "update_tag": "SLE-Product-HA", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-HA/15-SP2/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Product-HA15-SP2-Debuginfo-Updates for x86_64 SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-ha15-sp2-pool-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-sp2-pool-x86_64", + "product_id": 1959, + "repository_id": 4078, + "parent_product_id": 1955, + "root_product_id": 1941, + "update_tag": "SLE-Product-HA", + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP2/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Product-HA15-SP2-Pool for x86_64 SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-ha15-sp2-debuginfo-pool-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-sp2-pool-x86_64", + "product_id": 1959, + "repository_id": 4079, + "parent_product_id": 1955, + "root_product_id": 1941, + "update_tag": "SLE-Product-HA", + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP2/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Product-HA15-SP2-Debuginfo-Pool for x86_64 SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-sap-applications15-sp2-updates-x86_64", + "parent_channel_label": "sle-product-sles_sap15-sp2-pool-x86_64", + "product_id": 1994, + "repository_id": 4251, + "parent_product_id": 1959, + "root_product_id": 1941, + "update_tag": "SLE-Module-SAP-Applications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-SAP-Applications/15-SP2/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-SAP-Applications15-SP2-Updates for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-sap-applications15-sp2-debuginfo-updates-x86_64", + "parent_channel_label": "sle-product-sles_sap15-sp2-pool-x86_64", + "product_id": 1994, + "repository_id": 4252, + "parent_product_id": 1959, + "root_product_id": 1941, + "update_tag": "SLE-Module-SAP-Applications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-SAP-Applications/15-SP2/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-SAP-Applications15-SP2-Debuginfo-Updates for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-sap-applications15-sp2-pool-x86_64", + "parent_channel_label": "sle-product-sles_sap15-sp2-pool-x86_64", + "product_id": 1994, + "repository_id": 4253, + "parent_product_id": 1959, + "root_product_id": 1941, + "update_tag": "SLE-Module-SAP-Applications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-SAP-Applications/15-SP2/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-SAP-Applications15-SP2-Pool for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-sap-applications15-sp2-debuginfo-pool-x86_64", + "parent_channel_label": "sle-product-sles_sap15-sp2-pool-x86_64", + "product_id": 1994, + "repository_id": 4254, + "parent_product_id": 1959, + "root_product_id": 1941, + "update_tag": "SLE-Module-SAP-Applications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-SAP-Applications/15-SP2/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-SAP-Applications15-SP2-Debuginfo-Pool for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting15-sp2-updates-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-sp2-pool-x86_64", + "product_id": 1976, + "repository_id": 4161, + "parent_product_id": 1955, + "root_product_id": 1941, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/15-SP2/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Web-Scripting15-SP2-Updates for x86_64 SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting15-sp2-debuginfo-updates-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-sp2-pool-x86_64", + "product_id": 1976, + "repository_id": 4162, + "parent_product_id": 1955, + "root_product_id": 1941, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/15-SP2/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Web-Scripting15-SP2-Debuginfo-Updates for x86_64 SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting15-sp2-pool-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-sp2-pool-x86_64", + "product_id": 1976, + "repository_id": 4163, + "parent_product_id": 1955, + "root_product_id": 1941, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP2/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Web-Scripting15-SP2-Pool for x86_64 SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting15-sp2-debuginfo-pool-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-sp2-pool-x86_64", + "product_id": 1976, + "repository_id": 4164, + "parent_product_id": 1955, + "root_product_id": 1941, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP2/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Web-Scripting15-SP2-Debuginfo-Pool for x86_64 SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-legacy15-sp2-updates-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-sp2-pool-x86_64", + "product_id": 1982, + "repository_id": 4191, + "parent_product_id": 1955, + "root_product_id": 1941, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/15-SP2/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy15-SP2-Updates for x86_64 SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-legacy15-sp2-debuginfo-updates-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-sp2-pool-x86_64", + "product_id": 1982, + "repository_id": 4192, + "parent_product_id": 1955, + "root_product_id": 1941, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/15-SP2/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy15-SP2-Debuginfo-Updates for x86_64 SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-legacy15-sp2-pool-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-sp2-pool-x86_64", + "product_id": 1982, + "repository_id": 4193, + "parent_product_id": 1955, + "root_product_id": 1941, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15-SP2/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy15-SP2-Pool for x86_64 SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-legacy15-sp2-debuginfo-pool-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-sp2-pool-x86_64", + "product_id": 1982, + "repository_id": 4194, + "parent_product_id": 1955, + "root_product_id": 1941, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15-SP2/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy15-SP2-Debuginfo-Pool for x86_64 SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud15-sp2-updates-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-sp2-pool-x86_64", + "product_id": 1988, + "repository_id": 4221, + "parent_product_id": 1955, + "root_product_id": 1941, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/15-SP2/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud15-SP2-Updates for x86_64 SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud15-sp2-debuginfo-updates-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-sp2-pool-x86_64", + "product_id": 1988, + "repository_id": 4222, + "parent_product_id": 1955, + "root_product_id": 1941, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/15-SP2/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud15-SP2-Debuginfo-Updates for x86_64 SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud15-sp2-pool-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-sp2-pool-x86_64", + "product_id": 1988, + "repository_id": 4223, + "parent_product_id": 1955, + "root_product_id": 1941, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP2/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud15-SP2-Pool for x86_64 SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud15-sp2-debuginfo-pool-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-sp2-pool-x86_64", + "product_id": 1988, + "repository_id": 4224, + "parent_product_id": 1955, + "root_product_id": 1941, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP2/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud15-SP2-Debuginfo-Pool for x86_64 SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-containers15-sp2-updates-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-sp2-pool-x86_64", + "product_id": 1963, + "repository_id": 4096, + "parent_product_id": 1946, + "root_product_id": 1941, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/15-SP2/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers15-SP2-Updates for x86_64 SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-containers15-sp2-debuginfo-updates-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-sp2-pool-x86_64", + "product_id": 1963, + "repository_id": 4097, + "parent_product_id": 1946, + "root_product_id": 1941, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/15-SP2/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers15-SP2-Debuginfo-Updates for x86_64 SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-containers15-sp2-pool-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-sp2-pool-x86_64", + "product_id": 1963, + "repository_id": 4098, + "parent_product_id": 1946, + "root_product_id": 1941, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP2/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers15-SP2-Pool for x86_64 SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-containers15-sp2-debuginfo-pool-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-sp2-pool-x86_64", + "product_id": 1963, + "repository_id": 4099, + "parent_product_id": 1946, + "root_product_id": 1941, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP2/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers15-SP2-Debuginfo-Pool for x86_64 SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-desktop-applications15-sp2-updates-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-sp2-pool-x86_64", + "product_id": 1967, + "repository_id": 4116, + "parent_product_id": 1946, + "root_product_id": 1941, + "update_tag": "SLE-Module-Desktop-Applications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15-SP2/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Desktop-Applications15-SP2-Updates for x86_64 SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-desktop-applications15-sp2-debuginfo-updates-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-sp2-pool-x86_64", + "product_id": 1967, + "repository_id": 4117, + "parent_product_id": 1946, + "root_product_id": 1941, + "update_tag": "SLE-Module-Desktop-Applications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15-SP2/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Desktop-Applications15-SP2-Debuginfo-Updates for x86_64 SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-desktop-applications15-sp2-pool-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-sp2-pool-x86_64", + "product_id": 1967, + "repository_id": 4118, + "parent_product_id": 1946, + "root_product_id": 1941, + "update_tag": "SLE-Module-Desktop-Applications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP2/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Desktop-Applications15-SP2-Pool for x86_64 SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-desktop-applications15-sp2-debuginfo-pool-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-sp2-pool-x86_64", + "product_id": 1967, + "repository_id": 4119, + "parent_product_id": 1946, + "root_product_id": 1941, + "update_tag": "SLE-Module-Desktop-Applications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP2/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Desktop-Applications15-SP2-Debuginfo-Pool for x86_64 SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-devtools15-sp2-updates-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-sp2-pool-x86_64", + "product_id": 1971, + "repository_id": 4136, + "parent_product_id": 1967, + "root_product_id": 1941, + "update_tag": "SLE-Module-Development-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15-SP2/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-DevTools15-SP2-Updates for x86_64 SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-devtools15-sp2-debuginfo-updates-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-sp2-pool-x86_64", + "product_id": 1971, + "repository_id": 4137, + "parent_product_id": 1967, + "root_product_id": 1941, + "update_tag": "SLE-Module-Development-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15-SP2/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-DevTools15-SP2-Debuginfo-Updates for x86_64 SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-devtools15-sp2-pool-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-sp2-pool-x86_64", + "product_id": 1971, + "repository_id": 4138, + "parent_product_id": 1967, + "root_product_id": 1941, + "update_tag": "SLE-Module-Development-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP2/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-DevTools15-SP2-Pool for x86_64 SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-devtools15-sp2-debuginfo-pool-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-sp2-pool-x86_64", + "product_id": 1971, + "repository_id": 4139, + "parent_product_id": 1967, + "root_product_id": 1941, + "update_tag": "SLE-Module-Development-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP2/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-DevTools15-SP2-Debuginfo-Pool for x86_64 SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-we15-sp2-updates-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-sp2-pool-x86_64", + "product_id": 1999, + "repository_id": 4276, + "parent_product_id": 1967, + "root_product_id": 1941, + "update_tag": "SLE-Product-WE", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-WE/15-SP2/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-WE15-SP2-Updates for x86_64 SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-we15-sp2-debuginfo-updates-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-sp2-pool-x86_64", + "product_id": 1999, + "repository_id": 4277, + "parent_product_id": 1967, + "root_product_id": 1941, + "update_tag": "SLE-Product-WE", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-WE/15-SP2/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-WE15-SP2-Debuginfo-Updates for x86_64 SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-we15-sp2-pool-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-sp2-pool-x86_64", + "product_id": 1999, + "repository_id": 4278, + "parent_product_id": 1967, + "root_product_id": 1941, + "update_tag": "SLE-Product-WE", + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-WE/15-SP2/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-WE15-SP2-Pool for x86_64 SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-we15-sp2-debuginfo-pool-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-sp2-pool-x86_64", + "product_id": 1999, + "repository_id": 4279, + "parent_product_id": 1967, + "root_product_id": 1941, + "update_tag": "SLE-Product-WE", + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-WE/15-SP2/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-WE15-SP2-Debuginfo-Pool for x86_64 SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-15-sp2-desktop-nvidia-driver-sap", + "parent_channel_label": "sle-product-sles_sap15-sp2-pool-x86_64", + "product_id": 1999, + "repository_id": 4450, + "parent_product_id": 1967, + "root_product_id": 1941, + "update_tag": null, + "url": "https://download.nvidia.com/suse/sle15sp2/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-15-SP2-Desktop-NVIDIA-Driver for x86_64 SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-live-patching15-sp2-updates-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-sp2-pool-x86_64", + "product_id": 1984, + "repository_id": 4201, + "parent_product_id": 1946, + "root_product_id": 1941, + "update_tag": "SLE-Module-Live-Patching", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Live-Patching/15-SP2/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Live-Patching15-SP2-Updates for x86_64 SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-live-patching15-sp2-debuginfo-updates-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-sp2-pool-x86_64", + "product_id": 1984, + "repository_id": 4202, + "parent_product_id": 1946, + "root_product_id": 1941, + "update_tag": "SLE-Module-Live-Patching", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Live-Patching/15-SP2/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Live-Patching15-SP2-Debuginfo-Updates for x86_64 SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-live-patching15-sp2-pool-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-sp2-pool-x86_64", + "product_id": 1984, + "repository_id": 4203, + "parent_product_id": 1946, + "root_product_id": 1941, + "update_tag": "SLE-Module-Live-Patching", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Live-Patching/15-SP2/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Live-Patching15-SP2-Pool for x86_64 SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-live-patching15-sp2-debuginfo-pool-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-sp2-pool-x86_64", + "product_id": 1984, + "repository_id": 4204, + "parent_product_id": 1946, + "root_product_id": 1941, + "update_tag": "SLE-Module-Live-Patching", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Live-Patching/15-SP2/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Live-Patching15-SP2-Debuginfo-Pool for x86_64 SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-python2-15-sp2-updates-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-sp2-pool-x86_64", + "product_id": 1992, + "repository_id": 4241, + "parent_product_id": 1946, + "root_product_id": 1941, + "update_tag": "SLE-Module-Python2", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Python2/15-SP2/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Python2-15-SP2-Updates for x86_64 SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-python2-15-sp2-debuginfo-updates-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-sp2-pool-x86_64", + "product_id": 1992, + "repository_id": 4242, + "parent_product_id": 1946, + "root_product_id": 1941, + "update_tag": "SLE-Module-Python2", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Python2/15-SP2/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Python2-15-SP2-Debuginfo-Updates for x86_64 SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-python2-15-sp2-pool-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-sp2-pool-x86_64", + "product_id": 1992, + "repository_id": 4243, + "parent_product_id": 1946, + "root_product_id": 1941, + "update_tag": "SLE-Module-Python2", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Python2/15-SP2/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Python2-15-SP2-Pool for x86_64 SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-python2-15-sp2-debuginfo-pool-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-sp2-pool-x86_64", + "product_id": 1992, + "repository_id": 4244, + "parent_product_id": 1946, + "root_product_id": 1941, + "update_tag": "SLE-Module-Python2", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Python2/15-SP2/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Python2-15-SP2-Debuginfo-Pool for x86_64 SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-cap-tools15-sp2-updates-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-sp2-pool-x86_64", + "product_id": 2075, + "repository_id": 4424, + "parent_product_id": 1946, + "root_product_id": 1941, + "update_tag": "SLE-Module-CAP-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-CAP-Tools/15-SP2/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-CAP-Tools15-SP2-Updates for x86_64 SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-cap-tools15-sp2-debuginfo-updates-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-sp2-pool-x86_64", + "product_id": 2075, + "repository_id": 4425, + "parent_product_id": 1946, + "root_product_id": 1941, + "update_tag": "SLE-Module-CAP-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-CAP-Tools/15-SP2/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-CAP-Tools15-SP2-Debuginfo-Updates for x86_64 SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-cap-tools15-sp2-pool-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-sp2-pool-x86_64", + "product_id": 2075, + "repository_id": 4426, + "parent_product_id": 1946, + "root_product_id": 1941, + "update_tag": "SLE-Module-CAP-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-CAP-Tools/15-SP2/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-CAP-Tools15-SP2-Pool for x86_64 SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-cap-tools15-sp2-debuginfo-pool-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-sp2-pool-x86_64", + "product_id": 2075, + "repository_id": 4427, + "parent_product_id": 1946, + "root_product_id": 1941, + "update_tag": "SLE-Module-CAP-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-CAP-Tools/15-SP2/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-CAP-Tools15-SP2-Debuginfo-Pool for x86_64 SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "opensuse-leap-15.2-updates", + "parent_channel_label": "opensuse-leap-15.2-pool", + "product_id": 2001, + "repository_id": 4286, + "parent_product_id": null, + "root_product_id": 2001, + "update_tag": null, + "url": "http://download.opensuse.org/update/leap/15.2/oss/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "openSUSE-Leap-15.2-Updates for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "opensuse-leap-15.2-nonoss-updates", + "parent_channel_label": "opensuse-leap-15.2-pool", + "product_id": 2001, + "repository_id": 4287, + "parent_product_id": null, + "root_product_id": 2001, + "update_tag": null, + "url": "http://download.opensuse.org/update/leap/15.2/non-oss/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "openSUSE-Leap-15.2-NonOss-Updates for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "opensuse-leap-15.2-pool", + "parent_channel_label": null, + "product_id": 2001, + "repository_id": 4288, + "parent_product_id": null, + "root_product_id": 2001, + "update_tag": null, + "url": "http://download.opensuse.org/distribution/leap/15.2/repo/oss/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "openSUSE-Leap-15.2-Pool for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "opensuse-leap-15.2-nonoss-pool", + "parent_channel_label": "opensuse-leap-15.2-pool", + "product_id": 2001, + "repository_id": 4289, + "parent_product_id": null, + "root_product_id": 2001, + "update_tag": null, + "url": "http://download.opensuse.org/distribution/leap/15.2/repo/non-oss/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "openSUSE-Leap-15.2-NonOss-Pool for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-manager-tools15-updates-x86_64-opensuse-15.2", + "parent_channel_label": "opensuse-leap-15.2-pool", + "product_id": 1712, + "repository_id": 2932, + "parent_product_id": 2001, + "root_product_id": 2001, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/15/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-Updates for x86_64 openSUSE 15.2", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools15-debuginfo-updates-x86_64-opensuse-15.2", + "parent_channel_label": "opensuse-leap-15.2-pool", + "product_id": 1712, + "repository_id": 2933, + "parent_product_id": 2001, + "root_product_id": 2001, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/15/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-Debuginfo-Updates for x86_64 openSUSE 15.2", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools15-pool-x86_64-opensuse-15.2", + "parent_channel_label": "opensuse-leap-15.2-pool", + "product_id": 1712, + "repository_id": 2934, + "parent_product_id": 2001, + "root_product_id": 2001, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/15/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-Pool for x86_64 openSUSE 15.2", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools15-debuginfo-pool-x86_64-opensuse-15.2", + "parent_channel_label": "opensuse-leap-15.2-pool", + "product_id": 1712, + "repository_id": 2935, + "parent_product_id": 2001, + "root_product_id": 2001, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/15/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-Debuginfo-Pool for x86_64 openSUSE 15.2", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools15-beta-updates-x86_64-opensuse-15.2", + "parent_channel_label": "opensuse-leap-15.2-pool", + "product_id": 1928, + "repository_id": 3897, + "parent_product_id": 1712, + "root_product_id": 2001, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/15-BETA/x86_64/update/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-BETA-Updates for x86_64 openSUSE 15.2", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools15-beta-debuginfo-updates-x86_64-opensuse-15.2", + "parent_channel_label": "opensuse-leap-15.2-pool", + "product_id": 1928, + "repository_id": 3898, + "parent_product_id": 1712, + "root_product_id": 2001, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/15-BETA/x86_64/update_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-BETA-Debuginfo-Updates for x86_64 openSUSE 15.2", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools15-beta-pool-x86_64-opensuse-15.2", + "parent_channel_label": "opensuse-leap-15.2-pool", + "product_id": 1928, + "repository_id": 3908, + "parent_product_id": 1712, + "root_product_id": 2001, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/15-BETA/x86_64/product/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-BETA-Pool for x86_64 openSUSE 15.2", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools15-beta-debuginfo-pool-x86_64-opensuse-15.2", + "parent_channel_label": "opensuse-leap-15.2-pool", + "product_id": 1928, + "repository_id": 3909, + "parent_product_id": 1712, + "root_product_id": 2001, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/15-BETA/x86_64/product_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-BETA-Debuginfo-Pool for x86_64 openSUSE 15.2", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-product-rt-15-sp2-updates-x86_64", + "parent_channel_label": "sle-product-rt-15-sp2-pool-x86_64", + "product_id": 2003, + "repository_id": 4292, + "parent_product_id": null, + "root_product_id": 2003, + "update_tag": "SLE-Product-RT", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-RT/15-SP2/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-RT-15-SP2-Updates for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-rt15-sp2-debuginfo-updates-x86_64", + "parent_channel_label": "sle-product-rt-15-sp2-pool-x86_64", + "product_id": 2003, + "repository_id": 4293, + "parent_product_id": null, + "root_product_id": 2003, + "update_tag": "SLE-Product-RT", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-RT/15-SP2/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-RT15-SP2-Debuginfo-Updates for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-rt-15-sp2-pool-x86_64", + "parent_channel_label": null, + "product_id": 2003, + "repository_id": 4294, + "parent_product_id": null, + "root_product_id": 2003, + "update_tag": "SLE-Product-RT", + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-RT/15-SP2/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-RT-15-SP2-Pool for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-rt15-sp2-debuginfo-pool-x86_64", + "parent_channel_label": "sle-product-rt-15-sp2-pool-x86_64", + "product_id": 2003, + "repository_id": 4295, + "parent_product_id": null, + "root_product_id": 2003, + "update_tag": "SLE-Product-RT", + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-RT/15-SP2/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-RT15-SP2-Debuginfo-Pool for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-basesystem15-sp2-updates-x86_64-rt", + "parent_channel_label": "sle-product-rt-15-sp2-pool-x86_64", + "product_id": 1946, + "repository_id": 3999, + "parent_product_id": 2003, + "root_product_id": 2003, + "update_tag": "SLE-Module-Basesystem", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15-SP2/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Basesystem15-SP2-Updates for x86_64 RT", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-basesystem15-sp2-debuginfo-updates-x86_64-rt", + "parent_channel_label": "sle-product-rt-15-sp2-pool-x86_64", + "product_id": 1946, + "repository_id": 4000, + "parent_product_id": 2003, + "root_product_id": 2003, + "update_tag": "SLE-Module-Basesystem", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15-SP2/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Basesystem15-SP2-Debuginfo-Updates for x86_64 RT", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-basesystem15-sp2-pool-x86_64-rt", + "parent_channel_label": "sle-product-rt-15-sp2-pool-x86_64", + "product_id": 1946, + "repository_id": 4001, + "parent_product_id": 2003, + "root_product_id": 2003, + "update_tag": "SLE-Module-Basesystem", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP2/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Basesystem15-SP2-Pool for x86_64 RT", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-basesystem15-sp2-debuginfo-pool-x86_64-rt", + "parent_channel_label": "sle-product-rt-15-sp2-pool-x86_64", + "product_id": 1946, + "repository_id": 4002, + "parent_product_id": 2003, + "root_product_id": 2003, + "update_tag": "SLE-Module-Basesystem", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP2/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Basesystem15-SP2-Debuginfo-Pool for x86_64 RT", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-manager-tools15-updates-x86_64-rt-sp2", + "parent_channel_label": "sle-product-rt-15-sp2-pool-x86_64", + "product_id": 1712, + "repository_id": 2932, + "parent_product_id": 1946, + "root_product_id": 2003, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/15/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-Updates for x86_64 RT SP2", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools15-debuginfo-updates-x86_64-rt-sp2", + "parent_channel_label": "sle-product-rt-15-sp2-pool-x86_64", + "product_id": 1712, + "repository_id": 2933, + "parent_product_id": 1946, + "root_product_id": 2003, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/15/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-Debuginfo-Updates for x86_64 RT SP2", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools15-pool-x86_64-rt-sp2", + "parent_channel_label": "sle-product-rt-15-sp2-pool-x86_64", + "product_id": 1712, + "repository_id": 2934, + "parent_product_id": 1946, + "root_product_id": 2003, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/15/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-Pool for x86_64 RT SP2", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools15-debuginfo-pool-x86_64-rt-sp2", + "parent_channel_label": "sle-product-rt-15-sp2-pool-x86_64", + "product_id": 1712, + "repository_id": 2935, + "parent_product_id": 1946, + "root_product_id": 2003, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/15/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-Debuginfo-Pool for x86_64 RT SP2", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools15-beta-updates-x86_64-rt-sp2", + "parent_channel_label": "sle-product-rt-15-sp2-pool-x86_64", + "product_id": 1928, + "repository_id": 3897, + "parent_product_id": 1712, + "root_product_id": 2003, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/15-BETA/x86_64/update/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-BETA-Updates for x86_64 RT SP2", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools15-beta-debuginfo-updates-x86_64-rt-sp2", + "parent_channel_label": "sle-product-rt-15-sp2-pool-x86_64", + "product_id": 1928, + "repository_id": 3898, + "parent_product_id": 1712, + "root_product_id": 2003, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/15-BETA/x86_64/update_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-BETA-Debuginfo-Updates for x86_64 RT SP2", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools15-beta-pool-x86_64-rt-sp2", + "parent_channel_label": "sle-product-rt-15-sp2-pool-x86_64", + "product_id": 1928, + "repository_id": 3908, + "parent_product_id": 1712, + "root_product_id": 2003, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/15-BETA/x86_64/product/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-BETA-Pool for x86_64 RT SP2", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools15-beta-debuginfo-pool-x86_64-rt-sp2", + "parent_channel_label": "sle-product-rt-15-sp2-pool-x86_64", + "product_id": 1928, + "repository_id": 3909, + "parent_product_id": 1712, + "root_product_id": 2003, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/15-BETA/x86_64/product_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-BETA-Debuginfo-Pool for x86_64 RT SP2", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-module-server-applications15-sp2-updates-x86_64-rt", + "parent_channel_label": "sle-product-rt-15-sp2-pool-x86_64", + "product_id": 1955, + "repository_id": 4056, + "parent_product_id": 1946, + "root_product_id": 2003, + "update_tag": "SLE-Module-Server-Applications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15-SP2/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Server-Applications15-SP2-Updates for x86_64 RT", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-server-applications15-sp2-debuginfo-updates-x86_64-rt", + "parent_channel_label": "sle-product-rt-15-sp2-pool-x86_64", + "product_id": 1955, + "repository_id": 4057, + "parent_product_id": 1946, + "root_product_id": 2003, + "update_tag": "SLE-Module-Server-Applications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15-SP2/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Server-Applications15-SP2-Debuginfo-Updates for x86_64 RT", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-server-applications15-sp2-pool-x86_64-rt", + "parent_channel_label": "sle-product-rt-15-sp2-pool-x86_64", + "product_id": 1955, + "repository_id": 4058, + "parent_product_id": 1946, + "root_product_id": 2003, + "update_tag": "SLE-Module-Server-Applications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP2/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Server-Applications15-SP2-Pool for x86_64 RT", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-server-applications15-sp2-debuginfo-pool-x86_64-rt", + "parent_channel_label": "sle-product-rt-15-sp2-pool-x86_64", + "product_id": 1955, + "repository_id": 4059, + "parent_product_id": 1946, + "root_product_id": 2003, + "update_tag": "SLE-Module-Server-Applications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP2/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Server-Applications15-SP2-Debuginfo-Pool for x86_64 RT", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-rt15-sp2-updates-x86_64", + "parent_channel_label": "sle-product-rt-15-sp2-pool-x86_64", + "product_id": 2005, + "repository_id": 4302, + "parent_product_id": 1955, + "root_product_id": 2003, + "update_tag": "SLE-Module-RT", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-RT/15-SP2/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-RT15-SP2-Updates for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-rt15-sp2-debuginfo-updates-x86_64", + "parent_channel_label": "sle-product-rt-15-sp2-pool-x86_64", + "product_id": 2005, + "repository_id": 4303, + "parent_product_id": 1955, + "root_product_id": 2003, + "update_tag": "SLE-Module-RT", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-RT/15-SP2/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-RT15-SP2-Debuginfo-Updates for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-rt15-sp2-pool-x86_64", + "parent_channel_label": "sle-product-rt-15-sp2-pool-x86_64", + "product_id": 2005, + "repository_id": 4304, + "parent_product_id": 1955, + "root_product_id": 2003, + "update_tag": "SLE-Module-RT", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-RT/15-SP2/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-RT15-SP2-Pool for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-rt15-sp2-debuginfo-pool-x86_64", + "parent_channel_label": "sle-product-rt-15-sp2-pool-x86_64", + "product_id": 2005, + "repository_id": 4305, + "parent_product_id": 1955, + "root_product_id": 2003, + "update_tag": "SLE-Module-RT", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-RT/15-SP2/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-RT15-SP2-Debuginfo-Pool for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-desktop-applications15-sp2-updates-x86_64-rt", + "parent_channel_label": "sle-product-rt-15-sp2-pool-x86_64", + "product_id": 1967, + "repository_id": 4116, + "parent_product_id": 1946, + "root_product_id": 2003, + "update_tag": "SLE-Module-Desktop-Applications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15-SP2/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Desktop-Applications15-SP2-Updates for x86_64 RT", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-desktop-applications15-sp2-debuginfo-updates-x86_64-rt", + "parent_channel_label": "sle-product-rt-15-sp2-pool-x86_64", + "product_id": 1967, + "repository_id": 4117, + "parent_product_id": 1946, + "root_product_id": 2003, + "update_tag": "SLE-Module-Desktop-Applications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15-SP2/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Desktop-Applications15-SP2-Debuginfo-Updates for x86_64 RT", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-desktop-applications15-sp2-pool-x86_64-rt", + "parent_channel_label": "sle-product-rt-15-sp2-pool-x86_64", + "product_id": 1967, + "repository_id": 4118, + "parent_product_id": 1946, + "root_product_id": 2003, + "update_tag": "SLE-Module-Desktop-Applications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP2/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Desktop-Applications15-SP2-Pool for x86_64 RT", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-desktop-applications15-sp2-debuginfo-pool-x86_64-rt", + "parent_channel_label": "sle-product-rt-15-sp2-pool-x86_64", + "product_id": 1967, + "repository_id": 4119, + "parent_product_id": 1946, + "root_product_id": 2003, + "update_tag": "SLE-Module-Desktop-Applications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP2/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Desktop-Applications15-SP2-Debuginfo-Pool for x86_64 RT", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-devtools15-sp2-updates-x86_64-rt", + "parent_channel_label": "sle-product-rt-15-sp2-pool-x86_64", + "product_id": 1971, + "repository_id": 4136, + "parent_product_id": 1967, + "root_product_id": 2003, + "update_tag": "SLE-Module-Development-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15-SP2/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-DevTools15-SP2-Updates for x86_64 RT", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-devtools15-sp2-debuginfo-updates-x86_64-rt", + "parent_channel_label": "sle-product-rt-15-sp2-pool-x86_64", + "product_id": 1971, + "repository_id": 4137, + "parent_product_id": 1967, + "root_product_id": 2003, + "update_tag": "SLE-Module-Development-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15-SP2/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-DevTools15-SP2-Debuginfo-Updates for x86_64 RT", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-devtools15-sp2-pool-x86_64-rt", + "parent_channel_label": "sle-product-rt-15-sp2-pool-x86_64", + "product_id": 1971, + "repository_id": 4138, + "parent_product_id": 1967, + "root_product_id": 2003, + "update_tag": "SLE-Module-Development-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP2/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-DevTools15-SP2-Pool for x86_64 RT", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-devtools15-sp2-debuginfo-pool-x86_64-rt", + "parent_channel_label": "sle-product-rt-15-sp2-pool-x86_64", + "product_id": 1971, + "repository_id": 4139, + "parent_product_id": 1967, + "root_product_id": 2003, + "update_tag": "SLE-Module-Development-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP2/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-DevTools15-SP2-Debuginfo-Pool for x86_64 RT", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-suse-manager-proxy-4.1-updates-x86_64", + "parent_channel_label": "sle-product-suse-manager-proxy-4.1-pool-x86_64", + "product_id": 2009, + "repository_id": 4321, + "parent_product_id": null, + "root_product_id": 2009, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-SUSE-Manager-Proxy/4.1/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-SUSE-Manager-Proxy-4.1-Updates for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-product-suse-manager-proxy-4.1-debuginfo-updates-x86_64", + "parent_channel_label": "sle-product-suse-manager-proxy-4.1-pool-x86_64", + "product_id": 2009, + "repository_id": 4322, + "parent_product_id": null, + "root_product_id": 2009, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-SUSE-Manager-Proxy/4.1/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-SUSE-Manager-Proxy-4.1-Debuginfo-Updates for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-product-suse-manager-proxy-4.1-pool-x86_64", + "parent_channel_label": null, + "product_id": 2009, + "repository_id": 4323, + "parent_product_id": null, + "root_product_id": 2009, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-SUSE-Manager-Proxy/4.1/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-SUSE-Manager-Proxy-4.1-Pool for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-product-suse-manager-proxy-4.1-debuginfo-pool-x86_64", + "parent_channel_label": "sle-product-suse-manager-proxy-4.1-pool-x86_64", + "product_id": 2009, + "repository_id": 4324, + "parent_product_id": null, + "root_product_id": 2009, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-SUSE-Manager-Proxy/4.1/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-SUSE-Manager-Proxy-4.1-Debuginfo-Pool for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-basesystem15-sp2-updates-x86_64-proxy-4.1", + "parent_channel_label": "sle-product-suse-manager-proxy-4.1-pool-x86_64", + "product_id": 1946, + "repository_id": 3999, + "parent_product_id": 2009, + "root_product_id": 2009, + "update_tag": "SLE-Module-Basesystem", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15-SP2/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Basesystem15-SP2-Updates for x86_64 Proxy 4.1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-basesystem15-sp2-debuginfo-updates-x86_64-proxy-4.1", + "parent_channel_label": "sle-product-suse-manager-proxy-4.1-pool-x86_64", + "product_id": 1946, + "repository_id": 4000, + "parent_product_id": 2009, + "root_product_id": 2009, + "update_tag": "SLE-Module-Basesystem", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15-SP2/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Basesystem15-SP2-Debuginfo-Updates for x86_64 Proxy 4.1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-basesystem15-sp2-pool-x86_64-proxy-4.1", + "parent_channel_label": "sle-product-suse-manager-proxy-4.1-pool-x86_64", + "product_id": 1946, + "repository_id": 4001, + "parent_product_id": 2009, + "root_product_id": 2009, + "update_tag": "SLE-Module-Basesystem", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP2/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Basesystem15-SP2-Pool for x86_64 Proxy 4.1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-basesystem15-sp2-debuginfo-pool-x86_64-proxy-4.1", + "parent_channel_label": "sle-product-suse-manager-proxy-4.1-pool-x86_64", + "product_id": 1946, + "repository_id": 4002, + "parent_product_id": 2009, + "root_product_id": 2009, + "update_tag": "SLE-Module-Basesystem", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP2/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Basesystem15-SP2-Debuginfo-Pool for x86_64 Proxy 4.1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "suse-packagehub-15-sp2-backports-pool-x86_64-proxy-4.1", + "parent_channel_label": "sle-product-suse-manager-proxy-4.1-pool-x86_64", + "product_id": 1950, + "repository_id": 4028, + "parent_product_id": 1946, + "root_product_id": 2009, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-15-SP2_x86_64/standard/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-15-SP2-Backports-Pool for x86_64 Proxy 4.1", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "suse-packagehub-15-sp2-backports-debuginfo-x86_64-proxy-4.1", + "parent_channel_label": "sle-product-suse-manager-proxy-4.1-pool-x86_64", + "product_id": 1950, + "repository_id": 4029, + "parent_product_id": 1946, + "root_product_id": 2009, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-15-SP2_x86_64/standard_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-15-SP2-Backports-Debuginfo for x86_64 Proxy 4.1", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-packagehub-subpackages15-sp2-updates-x86_64-proxy-4.1", + "parent_channel_label": "sle-product-suse-manager-proxy-4.1-pool-x86_64", + "product_id": 1950, + "repository_id": 4030, + "parent_product_id": 1946, + "root_product_id": 2009, + "update_tag": "SLE-Module-Packagehub-Subpackages", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP2/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Packagehub-Subpackages15-SP2-Updates for x86_64 Proxy 4.1", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-packagehub-subpackages15-sp2-debuginfo-updates-x86_64-proxy-4.1", + "parent_channel_label": "sle-product-suse-manager-proxy-4.1-pool-x86_64", + "product_id": 1950, + "repository_id": 4031, + "parent_product_id": 1946, + "root_product_id": 2009, + "update_tag": "SLE-Module-Packagehub-Subpackages", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP2/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Packagehub-Subpackages15-SP2-Debuginfo-Updates for x86_64 Proxy 4.1", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "suse-packagehub-15-sp2-pool-x86_64-proxy-4.1", + "parent_channel_label": "sle-product-suse-manager-proxy-4.1-pool-x86_64", + "product_id": 1950, + "repository_id": 4032, + "parent_product_id": 1946, + "root_product_id": 2009, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-15-SP2_x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-15-SP2-Pool for x86_64 Proxy 4.1", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-packagehub-subpackages15-sp2-pool-x86_64-proxy-4.1", + "parent_channel_label": "sle-product-suse-manager-proxy-4.1-pool-x86_64", + "product_id": 1950, + "repository_id": 4033, + "parent_product_id": 1946, + "root_product_id": 2009, + "update_tag": "SLE-Module-Packagehub-Subpackages", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP2/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Packagehub-Subpackages15-SP2-Pool for x86_64 Proxy 4.1", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-packagehub-subpackages15-sp2-debuginfo-pool-x86_64-proxy-4.1", + "parent_channel_label": "sle-product-suse-manager-proxy-4.1-pool-x86_64", + "product_id": 1950, + "repository_id": 4034, + "parent_product_id": 1946, + "root_product_id": 2009, + "update_tag": "SLE-Module-Packagehub-Subpackages", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP2/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Packagehub-Subpackages15-SP2-Debuginfo-Pool for x86_64 Proxy 4.1", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-server-applications15-sp2-updates-x86_64-proxy-4.1", + "parent_channel_label": "sle-product-suse-manager-proxy-4.1-pool-x86_64", + "product_id": 1955, + "repository_id": 4056, + "parent_product_id": 1946, + "root_product_id": 2009, + "update_tag": "SLE-Module-Server-Applications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15-SP2/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Server-Applications15-SP2-Updates for x86_64 Proxy 4.1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-server-applications15-sp2-debuginfo-updates-x86_64-proxy-4.1", + "parent_channel_label": "sle-product-suse-manager-proxy-4.1-pool-x86_64", + "product_id": 1955, + "repository_id": 4057, + "parent_product_id": 1946, + "root_product_id": 2009, + "update_tag": "SLE-Module-Server-Applications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15-SP2/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Server-Applications15-SP2-Debuginfo-Updates for x86_64 Proxy 4.1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-server-applications15-sp2-pool-x86_64-proxy-4.1", + "parent_channel_label": "sle-product-suse-manager-proxy-4.1-pool-x86_64", + "product_id": 1955, + "repository_id": 4058, + "parent_product_id": 1946, + "root_product_id": 2009, + "update_tag": "SLE-Module-Server-Applications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP2/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Server-Applications15-SP2-Pool for x86_64 Proxy 4.1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-server-applications15-sp2-debuginfo-pool-x86_64-proxy-4.1", + "parent_channel_label": "sle-product-suse-manager-proxy-4.1-pool-x86_64", + "product_id": 1955, + "repository_id": 4059, + "parent_product_id": 1946, + "root_product_id": 2009, + "update_tag": "SLE-Module-Server-Applications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP2/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Server-Applications15-SP2-Debuginfo-Pool for x86_64 Proxy 4.1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-product-ha15-sp2-updates-x86_64-proxy-4.1", + "parent_channel_label": "sle-product-suse-manager-proxy-4.1-pool-x86_64", + "product_id": 1959, + "repository_id": 4076, + "parent_product_id": 1955, + "root_product_id": 2009, + "update_tag": "SLE-Product-HA", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-HA/15-SP2/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HA15-SP2-Updates for x86_64 Proxy 4.1", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-product-ha15-sp2-debuginfo-updates-x86_64-proxy-4.1", + "parent_channel_label": "sle-product-suse-manager-proxy-4.1-pool-x86_64", + "product_id": 1959, + "repository_id": 4077, + "parent_product_id": 1955, + "root_product_id": 2009, + "update_tag": "SLE-Product-HA", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-HA/15-SP2/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HA15-SP2-Debuginfo-Updates for x86_64 Proxy 4.1", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-product-ha15-sp2-pool-x86_64-proxy-4.1", + "parent_channel_label": "sle-product-suse-manager-proxy-4.1-pool-x86_64", + "product_id": 1959, + "repository_id": 4078, + "parent_product_id": 1955, + "root_product_id": 2009, + "update_tag": "SLE-Product-HA", + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP2/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HA15-SP2-Pool for x86_64 Proxy 4.1", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-product-ha15-sp2-debuginfo-pool-x86_64-proxy-4.1", + "parent_channel_label": "sle-product-suse-manager-proxy-4.1-pool-x86_64", + "product_id": 1959, + "repository_id": 4079, + "parent_product_id": 1955, + "root_product_id": 2009, + "update_tag": "SLE-Product-HA", + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP2/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HA15-SP2-Debuginfo-Pool for x86_64 Proxy 4.1", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-web-scripting15-sp2-updates-x86_64-proxy-4.1", + "parent_channel_label": "sle-product-suse-manager-proxy-4.1-pool-x86_64", + "product_id": 1976, + "repository_id": 4161, + "parent_product_id": 1955, + "root_product_id": 2009, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/15-SP2/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Web-Scripting15-SP2-Updates for x86_64 Proxy 4.1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-web-scripting15-sp2-debuginfo-updates-x86_64-proxy-4.1", + "parent_channel_label": "sle-product-suse-manager-proxy-4.1-pool-x86_64", + "product_id": 1976, + "repository_id": 4162, + "parent_product_id": 1955, + "root_product_id": 2009, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/15-SP2/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Web-Scripting15-SP2-Debuginfo-Updates for x86_64 Proxy 4.1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-web-scripting15-sp2-pool-x86_64-proxy-4.1", + "parent_channel_label": "sle-product-suse-manager-proxy-4.1-pool-x86_64", + "product_id": 1976, + "repository_id": 4163, + "parent_product_id": 1955, + "root_product_id": 2009, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP2/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Web-Scripting15-SP2-Pool for x86_64 Proxy 4.1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-web-scripting15-sp2-debuginfo-pool-x86_64-proxy-4.1", + "parent_channel_label": "sle-product-suse-manager-proxy-4.1-pool-x86_64", + "product_id": 1976, + "repository_id": 4164, + "parent_product_id": 1955, + "root_product_id": 2009, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP2/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Web-Scripting15-SP2-Debuginfo-Pool for x86_64 Proxy 4.1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-legacy15-sp2-updates-x86_64-proxy-4.1", + "parent_channel_label": "sle-product-suse-manager-proxy-4.1-pool-x86_64", + "product_id": 1982, + "repository_id": 4191, + "parent_product_id": 1955, + "root_product_id": 2009, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/15-SP2/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy15-SP2-Updates for x86_64 Proxy 4.1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-legacy15-sp2-debuginfo-updates-x86_64-proxy-4.1", + "parent_channel_label": "sle-product-suse-manager-proxy-4.1-pool-x86_64", + "product_id": 1982, + "repository_id": 4192, + "parent_product_id": 1955, + "root_product_id": 2009, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/15-SP2/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy15-SP2-Debuginfo-Updates for x86_64 Proxy 4.1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-legacy15-sp2-pool-x86_64-proxy-4.1", + "parent_channel_label": "sle-product-suse-manager-proxy-4.1-pool-x86_64", + "product_id": 1982, + "repository_id": 4193, + "parent_product_id": 1955, + "root_product_id": 2009, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15-SP2/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy15-SP2-Pool for x86_64 Proxy 4.1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-legacy15-sp2-debuginfo-pool-x86_64-proxy-4.1", + "parent_channel_label": "sle-product-suse-manager-proxy-4.1-pool-x86_64", + "product_id": 1982, + "repository_id": 4194, + "parent_product_id": 1955, + "root_product_id": 2009, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15-SP2/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy15-SP2-Debuginfo-Pool for x86_64 Proxy 4.1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-public-cloud15-sp2-updates-x86_64-proxy-4.1", + "parent_channel_label": "sle-product-suse-manager-proxy-4.1-pool-x86_64", + "product_id": 1988, + "repository_id": 4221, + "parent_product_id": 1955, + "root_product_id": 2009, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/15-SP2/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud15-SP2-Updates for x86_64 Proxy 4.1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-public-cloud15-sp2-debuginfo-updates-x86_64-proxy-4.1", + "parent_channel_label": "sle-product-suse-manager-proxy-4.1-pool-x86_64", + "product_id": 1988, + "repository_id": 4222, + "parent_product_id": 1955, + "root_product_id": 2009, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/15-SP2/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud15-SP2-Debuginfo-Updates for x86_64 Proxy 4.1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-public-cloud15-sp2-pool-x86_64-proxy-4.1", + "parent_channel_label": "sle-product-suse-manager-proxy-4.1-pool-x86_64", + "product_id": 1988, + "repository_id": 4223, + "parent_product_id": 1955, + "root_product_id": 2009, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP2/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud15-SP2-Pool for x86_64 Proxy 4.1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-public-cloud15-sp2-debuginfo-pool-x86_64-proxy-4.1", + "parent_channel_label": "sle-product-suse-manager-proxy-4.1-pool-x86_64", + "product_id": 1988, + "repository_id": 4224, + "parent_product_id": 1955, + "root_product_id": 2009, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP2/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud15-SP2-Debuginfo-Pool for x86_64 Proxy 4.1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-suse-manager-proxy-4.1-updates-x86_64", + "parent_channel_label": "sle-product-suse-manager-proxy-4.1-pool-x86_64", + "product_id": 2015, + "repository_id": 4351, + "parent_product_id": 1955, + "root_product_id": 2009, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-SUSE-Manager-Proxy/4.1/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-SUSE-Manager-Proxy-4.1-Updates for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-suse-manager-proxy-4.1-debuginfo-updates-x86_64", + "parent_channel_label": "sle-product-suse-manager-proxy-4.1-pool-x86_64", + "product_id": 2015, + "repository_id": 4352, + "parent_product_id": 1955, + "root_product_id": 2009, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-SUSE-Manager-Proxy/4.1/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-SUSE-Manager-Proxy-4.1-Debuginfo-Updates for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-suse-manager-proxy-4.1-pool-x86_64", + "parent_channel_label": "sle-product-suse-manager-proxy-4.1-pool-x86_64", + "product_id": 2015, + "repository_id": 4353, + "parent_product_id": 1955, + "root_product_id": 2009, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-SUSE-Manager-Proxy/4.1/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-SUSE-Manager-Proxy-4.1-Pool for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-suse-manager-proxy-4.1-debuginfo-pool-x86_64", + "parent_channel_label": "sle-product-suse-manager-proxy-4.1-pool-x86_64", + "product_id": 2015, + "repository_id": 4354, + "parent_product_id": 1955, + "root_product_id": 2009, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-SUSE-Manager-Proxy/4.1/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-SUSE-Manager-Proxy-4.1-Debuginfo-Pool for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-containers15-sp2-updates-x86_64-proxy-4.1", + "parent_channel_label": "sle-product-suse-manager-proxy-4.1-pool-x86_64", + "product_id": 1963, + "repository_id": 4096, + "parent_product_id": 1946, + "root_product_id": 2009, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/15-SP2/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers15-SP2-Updates for x86_64 Proxy 4.1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-containers15-sp2-debuginfo-updates-x86_64-proxy-4.1", + "parent_channel_label": "sle-product-suse-manager-proxy-4.1-pool-x86_64", + "product_id": 1963, + "repository_id": 4097, + "parent_product_id": 1946, + "root_product_id": 2009, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/15-SP2/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers15-SP2-Debuginfo-Updates for x86_64 Proxy 4.1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-containers15-sp2-pool-x86_64-proxy-4.1", + "parent_channel_label": "sle-product-suse-manager-proxy-4.1-pool-x86_64", + "product_id": 1963, + "repository_id": 4098, + "parent_product_id": 1946, + "root_product_id": 2009, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP2/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers15-SP2-Pool for x86_64 Proxy 4.1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-containers15-sp2-debuginfo-pool-x86_64-proxy-4.1", + "parent_channel_label": "sle-product-suse-manager-proxy-4.1-pool-x86_64", + "product_id": 1963, + "repository_id": 4099, + "parent_product_id": 1946, + "root_product_id": 2009, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP2/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers15-SP2-Debuginfo-Pool for x86_64 Proxy 4.1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-desktop-applications15-sp2-updates-x86_64-proxy-4.1", + "parent_channel_label": "sle-product-suse-manager-proxy-4.1-pool-x86_64", + "product_id": 1967, + "repository_id": 4116, + "parent_product_id": 1946, + "root_product_id": 2009, + "update_tag": "SLE-Module-Desktop-Applications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15-SP2/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Desktop-Applications15-SP2-Updates for x86_64 Proxy 4.1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-desktop-applications15-sp2-debuginfo-updates-x86_64-proxy-4.1", + "parent_channel_label": "sle-product-suse-manager-proxy-4.1-pool-x86_64", + "product_id": 1967, + "repository_id": 4117, + "parent_product_id": 1946, + "root_product_id": 2009, + "update_tag": "SLE-Module-Desktop-Applications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15-SP2/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Desktop-Applications15-SP2-Debuginfo-Updates for x86_64 Proxy 4.1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-desktop-applications15-sp2-pool-x86_64-proxy-4.1", + "parent_channel_label": "sle-product-suse-manager-proxy-4.1-pool-x86_64", + "product_id": 1967, + "repository_id": 4118, + "parent_product_id": 1946, + "root_product_id": 2009, + "update_tag": "SLE-Module-Desktop-Applications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP2/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Desktop-Applications15-SP2-Pool for x86_64 Proxy 4.1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-desktop-applications15-sp2-debuginfo-pool-x86_64-proxy-4.1", + "parent_channel_label": "sle-product-suse-manager-proxy-4.1-pool-x86_64", + "product_id": 1967, + "repository_id": 4119, + "parent_product_id": 1946, + "root_product_id": 2009, + "update_tag": "SLE-Module-Desktop-Applications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP2/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Desktop-Applications15-SP2-Debuginfo-Pool for x86_64 Proxy 4.1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-devtools15-sp2-updates-x86_64-proxy-4.1", + "parent_channel_label": "sle-product-suse-manager-proxy-4.1-pool-x86_64", + "product_id": 1971, + "repository_id": 4136, + "parent_product_id": 1967, + "root_product_id": 2009, + "update_tag": "SLE-Module-Development-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15-SP2/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-DevTools15-SP2-Updates for x86_64 Proxy 4.1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-devtools15-sp2-debuginfo-updates-x86_64-proxy-4.1", + "parent_channel_label": "sle-product-suse-manager-proxy-4.1-pool-x86_64", + "product_id": 1971, + "repository_id": 4137, + "parent_product_id": 1967, + "root_product_id": 2009, + "update_tag": "SLE-Module-Development-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15-SP2/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-DevTools15-SP2-Debuginfo-Updates for x86_64 Proxy 4.1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-devtools15-sp2-pool-x86_64-proxy-4.1", + "parent_channel_label": "sle-product-suse-manager-proxy-4.1-pool-x86_64", + "product_id": 1971, + "repository_id": 4138, + "parent_product_id": 1967, + "root_product_id": 2009, + "update_tag": "SLE-Module-Development-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP2/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-DevTools15-SP2-Pool for x86_64 Proxy 4.1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-devtools15-sp2-debuginfo-pool-x86_64-proxy-4.1", + "parent_channel_label": "sle-product-suse-manager-proxy-4.1-pool-x86_64", + "product_id": 1971, + "repository_id": 4139, + "parent_product_id": 1967, + "root_product_id": 2009, + "update_tag": "SLE-Module-Development-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP2/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-DevTools15-SP2-Debuginfo-Pool for x86_64 Proxy 4.1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-python2-15-sp2-updates-x86_64-proxy-4.1", + "parent_channel_label": "sle-product-suse-manager-proxy-4.1-pool-x86_64", + "product_id": 1992, + "repository_id": 4241, + "parent_product_id": 1946, + "root_product_id": 2009, + "update_tag": "SLE-Module-Python2", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Python2/15-SP2/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Python2-15-SP2-Updates for x86_64 Proxy 4.1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-python2-15-sp2-debuginfo-updates-x86_64-proxy-4.1", + "parent_channel_label": "sle-product-suse-manager-proxy-4.1-pool-x86_64", + "product_id": 1992, + "repository_id": 4242, + "parent_product_id": 1946, + "root_product_id": 2009, + "update_tag": "SLE-Module-Python2", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Python2/15-SP2/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Python2-15-SP2-Debuginfo-Updates for x86_64 Proxy 4.1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-python2-15-sp2-pool-x86_64-proxy-4.1", + "parent_channel_label": "sle-product-suse-manager-proxy-4.1-pool-x86_64", + "product_id": 1992, + "repository_id": 4243, + "parent_product_id": 1946, + "root_product_id": 2009, + "update_tag": "SLE-Module-Python2", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Python2/15-SP2/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Python2-15-SP2-Pool for x86_64 Proxy 4.1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-python2-15-sp2-debuginfo-pool-x86_64-proxy-4.1", + "parent_channel_label": "sle-product-suse-manager-proxy-4.1-pool-x86_64", + "product_id": 1992, + "repository_id": 4244, + "parent_product_id": 1946, + "root_product_id": 2009, + "update_tag": "SLE-Module-Python2", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Python2/15-SP2/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Python2-15-SP2-Debuginfo-Pool for x86_64 Proxy 4.1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-product-suse-manager-server-4.1-updates-ppc64le", + "parent_channel_label": "sle-product-suse-manager-server-4.1-pool-ppc64le", + "product_id": 2010, + "repository_id": 4326, + "parent_product_id": null, + "root_product_id": 2010, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-SUSE-Manager-Server/4.1/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-SUSE-Manager-Server-4.1-Updates for ppc64le", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-product-suse-manager-server-4.1-debuginfo-updates-ppc64le", + "parent_channel_label": "sle-product-suse-manager-server-4.1-pool-ppc64le", + "product_id": 2010, + "repository_id": 4327, + "parent_product_id": null, + "root_product_id": 2010, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-SUSE-Manager-Server/4.1/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-SUSE-Manager-Server-4.1-Debuginfo-Updates for ppc64le", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-product-suse-manager-server-4.1-pool-ppc64le", + "parent_channel_label": null, + "product_id": 2010, + "repository_id": 4328, + "parent_product_id": null, + "root_product_id": 2010, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-SUSE-Manager-Server/4.1/ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-SUSE-Manager-Server-4.1-Pool for ppc64le", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-product-suse-manager-server-4.1-debuginfo-pool-ppc64le", + "parent_channel_label": "sle-product-suse-manager-server-4.1-pool-ppc64le", + "product_id": 2010, + "repository_id": 4329, + "parent_product_id": null, + "root_product_id": 2010, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-SUSE-Manager-Server/4.1/ppc64le/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-SUSE-Manager-Server-4.1-Debuginfo-Pool for ppc64le", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-basesystem15-sp2-updates-ppc64le-sms-4.1", + "parent_channel_label": "sle-product-suse-manager-server-4.1-pool-ppc64le", + "product_id": 1944, + "repository_id": 3989, + "parent_product_id": 2010, + "root_product_id": 2010, + "update_tag": "SLE-Module-Basesystem", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15-SP2/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Basesystem15-SP2-Updates for ppc64le SMS 4.1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-basesystem15-sp2-debuginfo-updates-ppc64le-sms-4.1", + "parent_channel_label": "sle-product-suse-manager-server-4.1-pool-ppc64le", + "product_id": 1944, + "repository_id": 3990, + "parent_product_id": 2010, + "root_product_id": 2010, + "update_tag": "SLE-Module-Basesystem", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15-SP2/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Basesystem15-SP2-Debuginfo-Updates for ppc64le SMS 4.1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-basesystem15-sp2-pool-ppc64le-sms-4.1", + "parent_channel_label": "sle-product-suse-manager-server-4.1-pool-ppc64le", + "product_id": 1944, + "repository_id": 3991, + "parent_product_id": 2010, + "root_product_id": 2010, + "update_tag": "SLE-Module-Basesystem", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP2/ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Basesystem15-SP2-Pool for ppc64le SMS 4.1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-basesystem15-sp2-debuginfo-pool-ppc64le-sms-4.1", + "parent_channel_label": "sle-product-suse-manager-server-4.1-pool-ppc64le", + "product_id": 1944, + "repository_id": 3992, + "parent_product_id": 2010, + "root_product_id": 2010, + "update_tag": "SLE-Module-Basesystem", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP2/ppc64le/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Basesystem15-SP2-Debuginfo-Pool for ppc64le SMS 4.1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "suse-packagehub-15-sp2-backports-pool-ppc64le-sms-4.1", + "parent_channel_label": "sle-product-suse-manager-server-4.1-pool-ppc64le", + "product_id": 1948, + "repository_id": 4012, + "parent_product_id": 1944, + "root_product_id": 2010, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-15-SP2_ppc64le/standard/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-15-SP2-Backports-Pool for ppc64le SMS 4.1", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "suse-packagehub-15-sp2-backports-debuginfo-ppc64le-sms-4.1", + "parent_channel_label": "sle-product-suse-manager-server-4.1-pool-ppc64le", + "product_id": 1948, + "repository_id": 4013, + "parent_product_id": 1944, + "root_product_id": 2010, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-15-SP2_ppc64le/standard_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-15-SP2-Backports-Debuginfo for ppc64le SMS 4.1", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-packagehub-subpackages15-sp2-updates-ppc64le-sms-4.1", + "parent_channel_label": "sle-product-suse-manager-server-4.1-pool-ppc64le", + "product_id": 1948, + "repository_id": 4014, + "parent_product_id": 1944, + "root_product_id": 2010, + "update_tag": "SLE-Module-Packagehub-Subpackages", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP2/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Packagehub-Subpackages15-SP2-Updates for ppc64le SMS 4.1", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-packagehub-subpackages15-sp2-debuginfo-updates-ppc64le-sms-4.1", + "parent_channel_label": "sle-product-suse-manager-server-4.1-pool-ppc64le", + "product_id": 1948, + "repository_id": 4015, + "parent_product_id": 1944, + "root_product_id": 2010, + "update_tag": "SLE-Module-Packagehub-Subpackages", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP2/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Packagehub-Subpackages15-SP2-Debuginfo-Updates for ppc64le SMS 4.1", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "suse-packagehub-15-sp2-pool-ppc64le-sms-4.1", + "parent_channel_label": "sle-product-suse-manager-server-4.1-pool-ppc64le", + "product_id": 1948, + "repository_id": 4016, + "parent_product_id": 1944, + "root_product_id": 2010, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-15-SP2_ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-15-SP2-Pool for ppc64le SMS 4.1", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-packagehub-subpackages15-sp2-pool-ppc64le-sms-4.1", + "parent_channel_label": "sle-product-suse-manager-server-4.1-pool-ppc64le", + "product_id": 1948, + "repository_id": 4017, + "parent_product_id": 1944, + "root_product_id": 2010, + "update_tag": "SLE-Module-Packagehub-Subpackages", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP2/ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Packagehub-Subpackages15-SP2-Pool for ppc64le SMS 4.1", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-packagehub-subpackages15-sp2-debuginfo-pool-ppc64le-sms-4.1", + "parent_channel_label": "sle-product-suse-manager-server-4.1-pool-ppc64le", + "product_id": 1948, + "repository_id": 4018, + "parent_product_id": 1944, + "root_product_id": 2010, + "update_tag": "SLE-Module-Packagehub-Subpackages", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP2/ppc64le/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Packagehub-Subpackages15-SP2-Debuginfo-Pool for ppc64le SMS 4.1", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-server-applications15-sp2-updates-ppc64le-sms-4.1", + "parent_channel_label": "sle-product-suse-manager-server-4.1-pool-ppc64le", + "product_id": 1953, + "repository_id": 4046, + "parent_product_id": 1944, + "root_product_id": 2010, + "update_tag": "SLE-Module-Server-Applications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15-SP2/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Server-Applications15-SP2-Updates for ppc64le SMS 4.1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-server-applications15-sp2-debuginfo-updates-ppc64le-sms-4.1", + "parent_channel_label": "sle-product-suse-manager-server-4.1-pool-ppc64le", + "product_id": 1953, + "repository_id": 4047, + "parent_product_id": 1944, + "root_product_id": 2010, + "update_tag": "SLE-Module-Server-Applications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15-SP2/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Server-Applications15-SP2-Debuginfo-Updates for ppc64le SMS 4.1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-server-applications15-sp2-pool-ppc64le-sms-4.1", + "parent_channel_label": "sle-product-suse-manager-server-4.1-pool-ppc64le", + "product_id": 1953, + "repository_id": 4048, + "parent_product_id": 1944, + "root_product_id": 2010, + "update_tag": "SLE-Module-Server-Applications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP2/ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Server-Applications15-SP2-Pool for ppc64le SMS 4.1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-server-applications15-sp2-debuginfo-pool-ppc64le-sms-4.1", + "parent_channel_label": "sle-product-suse-manager-server-4.1-pool-ppc64le", + "product_id": 1953, + "repository_id": 4049, + "parent_product_id": 1944, + "root_product_id": 2010, + "update_tag": "SLE-Module-Server-Applications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP2/ppc64le/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Server-Applications15-SP2-Debuginfo-Pool for ppc64le SMS 4.1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-product-ha15-sp2-updates-ppc64le-sms-4.1", + "parent_channel_label": "sle-product-suse-manager-server-4.1-pool-ppc64le", + "product_id": 1957, + "repository_id": 4066, + "parent_product_id": 1953, + "root_product_id": 2010, + "update_tag": "SLE-Product-HA", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-HA/15-SP2/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HA15-SP2-Updates for ppc64le SMS 4.1", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-product-ha15-sp2-debuginfo-updates-ppc64le-sms-4.1", + "parent_channel_label": "sle-product-suse-manager-server-4.1-pool-ppc64le", + "product_id": 1957, + "repository_id": 4067, + "parent_product_id": 1953, + "root_product_id": 2010, + "update_tag": "SLE-Product-HA", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-HA/15-SP2/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HA15-SP2-Debuginfo-Updates for ppc64le SMS 4.1", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-product-ha15-sp2-pool-ppc64le-sms-4.1", + "parent_channel_label": "sle-product-suse-manager-server-4.1-pool-ppc64le", + "product_id": 1957, + "repository_id": 4068, + "parent_product_id": 1953, + "root_product_id": 2010, + "update_tag": "SLE-Product-HA", + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP2/ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HA15-SP2-Pool for ppc64le SMS 4.1", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-product-ha15-sp2-debuginfo-pool-ppc64le-sms-4.1", + "parent_channel_label": "sle-product-suse-manager-server-4.1-pool-ppc64le", + "product_id": 1957, + "repository_id": 4069, + "parent_product_id": 1953, + "root_product_id": 2010, + "update_tag": "SLE-Product-HA", + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP2/ppc64le/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HA15-SP2-Debuginfo-Pool for ppc64le SMS 4.1", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-web-scripting15-sp2-updates-ppc64le-sms-4.1", + "parent_channel_label": "sle-product-suse-manager-server-4.1-pool-ppc64le", + "product_id": 1974, + "repository_id": 4151, + "parent_product_id": 1953, + "root_product_id": 2010, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/15-SP2/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Web-Scripting15-SP2-Updates for ppc64le SMS 4.1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-web-scripting15-sp2-debuginfo-updates-ppc64le-sms-4.1", + "parent_channel_label": "sle-product-suse-manager-server-4.1-pool-ppc64le", + "product_id": 1974, + "repository_id": 4152, + "parent_product_id": 1953, + "root_product_id": 2010, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/15-SP2/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Web-Scripting15-SP2-Debuginfo-Updates for ppc64le SMS 4.1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-web-scripting15-sp2-pool-ppc64le-sms-4.1", + "parent_channel_label": "sle-product-suse-manager-server-4.1-pool-ppc64le", + "product_id": 1974, + "repository_id": 4153, + "parent_product_id": 1953, + "root_product_id": 2010, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP2/ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Web-Scripting15-SP2-Pool for ppc64le SMS 4.1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-web-scripting15-sp2-debuginfo-pool-ppc64le-sms-4.1", + "parent_channel_label": "sle-product-suse-manager-server-4.1-pool-ppc64le", + "product_id": 1974, + "repository_id": 4154, + "parent_product_id": 1953, + "root_product_id": 2010, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP2/ppc64le/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Web-Scripting15-SP2-Debuginfo-Pool for ppc64le SMS 4.1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-suse-manager-server-4.1-updates-ppc64le", + "parent_channel_label": "sle-product-suse-manager-server-4.1-pool-ppc64le", + "product_id": 2017, + "repository_id": 4361, + "parent_product_id": 1974, + "root_product_id": 2010, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-SUSE-Manager-Server/4.1/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-SUSE-Manager-Server-4.1-Updates for ppc64le", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-suse-manager-server-4.1-debuginfo-updates-ppc64le", + "parent_channel_label": "sle-product-suse-manager-server-4.1-pool-ppc64le", + "product_id": 2017, + "repository_id": 4362, + "parent_product_id": 1974, + "root_product_id": 2010, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-SUSE-Manager-Server/4.1/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-SUSE-Manager-Server-4.1-Debuginfo-Updates for ppc64le", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-suse-manager-server-4.1-pool-ppc64le", + "parent_channel_label": "sle-product-suse-manager-server-4.1-pool-ppc64le", + "product_id": 2017, + "repository_id": 4363, + "parent_product_id": 1974, + "root_product_id": 2010, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-SUSE-Manager-Server/4.1/ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-SUSE-Manager-Server-4.1-Pool for ppc64le", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-suse-manager-server-4.1-debuginfo-pool-ppc64le", + "parent_channel_label": "sle-product-suse-manager-server-4.1-pool-ppc64le", + "product_id": 2017, + "repository_id": 4364, + "parent_product_id": 1974, + "root_product_id": 2010, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-SUSE-Manager-Server/4.1/ppc64le/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-SUSE-Manager-Server-4.1-Debuginfo-Pool for ppc64le", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-legacy15-sp2-updates-ppc64le-sms-4.1", + "parent_channel_label": "sle-product-suse-manager-server-4.1-pool-ppc64le", + "product_id": 1980, + "repository_id": 4181, + "parent_product_id": 1953, + "root_product_id": 2010, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/15-SP2/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy15-SP2-Updates for ppc64le SMS 4.1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-legacy15-sp2-debuginfo-updates-ppc64le-sms-4.1", + "parent_channel_label": "sle-product-suse-manager-server-4.1-pool-ppc64le", + "product_id": 1980, + "repository_id": 4182, + "parent_product_id": 1953, + "root_product_id": 2010, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/15-SP2/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy15-SP2-Debuginfo-Updates for ppc64le SMS 4.1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-legacy15-sp2-pool-ppc64le-sms-4.1", + "parent_channel_label": "sle-product-suse-manager-server-4.1-pool-ppc64le", + "product_id": 1980, + "repository_id": 4183, + "parent_product_id": 1953, + "root_product_id": 2010, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15-SP2/ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy15-SP2-Pool for ppc64le SMS 4.1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-legacy15-sp2-debuginfo-pool-ppc64le-sms-4.1", + "parent_channel_label": "sle-product-suse-manager-server-4.1-pool-ppc64le", + "product_id": 1980, + "repository_id": 4184, + "parent_product_id": 1953, + "root_product_id": 2010, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15-SP2/ppc64le/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy15-SP2-Debuginfo-Pool for ppc64le SMS 4.1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-public-cloud15-sp2-updates-ppc64le-sms-4.1", + "parent_channel_label": "sle-product-suse-manager-server-4.1-pool-ppc64le", + "product_id": 1986, + "repository_id": 4211, + "parent_product_id": 1953, + "root_product_id": 2010, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/15-SP2/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud15-SP2-Updates for ppc64le SMS 4.1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-public-cloud15-sp2-debuginfo-updates-ppc64le-sms-4.1", + "parent_channel_label": "sle-product-suse-manager-server-4.1-pool-ppc64le", + "product_id": 1986, + "repository_id": 4212, + "parent_product_id": 1953, + "root_product_id": 2010, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/15-SP2/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud15-SP2-Debuginfo-Updates for ppc64le SMS 4.1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-public-cloud15-sp2-pool-ppc64le-sms-4.1", + "parent_channel_label": "sle-product-suse-manager-server-4.1-pool-ppc64le", + "product_id": 1986, + "repository_id": 4213, + "parent_product_id": 1953, + "root_product_id": 2010, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP2/ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud15-SP2-Pool for ppc64le SMS 4.1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-public-cloud15-sp2-debuginfo-pool-ppc64le-sms-4.1", + "parent_channel_label": "sle-product-suse-manager-server-4.1-pool-ppc64le", + "product_id": 1986, + "repository_id": 4214, + "parent_product_id": 1953, + "root_product_id": 2010, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP2/ppc64le/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud15-SP2-Debuginfo-Pool for ppc64le SMS 4.1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-containers15-sp2-updates-ppc64le-sms-4.1", + "parent_channel_label": "sle-product-suse-manager-server-4.1-pool-ppc64le", + "product_id": 1961, + "repository_id": 4086, + "parent_product_id": 1944, + "root_product_id": 2010, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/15-SP2/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers15-SP2-Updates for ppc64le SMS 4.1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-containers15-sp2-debuginfo-updates-ppc64le-sms-4.1", + "parent_channel_label": "sle-product-suse-manager-server-4.1-pool-ppc64le", + "product_id": 1961, + "repository_id": 4087, + "parent_product_id": 1944, + "root_product_id": 2010, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/15-SP2/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers15-SP2-Debuginfo-Updates for ppc64le SMS 4.1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-containers15-sp2-pool-ppc64le-sms-4.1", + "parent_channel_label": "sle-product-suse-manager-server-4.1-pool-ppc64le", + "product_id": 1961, + "repository_id": 4088, + "parent_product_id": 1944, + "root_product_id": 2010, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP2/ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers15-SP2-Pool for ppc64le SMS 4.1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-containers15-sp2-debuginfo-pool-ppc64le-sms-4.1", + "parent_channel_label": "sle-product-suse-manager-server-4.1-pool-ppc64le", + "product_id": 1961, + "repository_id": 4089, + "parent_product_id": 1944, + "root_product_id": 2010, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP2/ppc64le/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers15-SP2-Debuginfo-Pool for ppc64le SMS 4.1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-desktop-applications15-sp2-updates-ppc64le-sms-4.1", + "parent_channel_label": "sle-product-suse-manager-server-4.1-pool-ppc64le", + "product_id": 1965, + "repository_id": 4106, + "parent_product_id": 1944, + "root_product_id": 2010, + "update_tag": "SLE-Module-Desktop-Applications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15-SP2/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Desktop-Applications15-SP2-Updates for ppc64le SMS 4.1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-desktop-applications15-sp2-debuginfo-updates-ppc64le-sms-4.1", + "parent_channel_label": "sle-product-suse-manager-server-4.1-pool-ppc64le", + "product_id": 1965, + "repository_id": 4107, + "parent_product_id": 1944, + "root_product_id": 2010, + "update_tag": "SLE-Module-Desktop-Applications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15-SP2/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Desktop-Applications15-SP2-Debuginfo-Updates for ppc64le SMS 4.1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-desktop-applications15-sp2-pool-ppc64le-sms-4.1", + "parent_channel_label": "sle-product-suse-manager-server-4.1-pool-ppc64le", + "product_id": 1965, + "repository_id": 4108, + "parent_product_id": 1944, + "root_product_id": 2010, + "update_tag": "SLE-Module-Desktop-Applications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP2/ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Desktop-Applications15-SP2-Pool for ppc64le SMS 4.1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-desktop-applications15-sp2-debuginfo-pool-ppc64le-sms-4.1", + "parent_channel_label": "sle-product-suse-manager-server-4.1-pool-ppc64le", + "product_id": 1965, + "repository_id": 4109, + "parent_product_id": 1944, + "root_product_id": 2010, + "update_tag": "SLE-Module-Desktop-Applications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP2/ppc64le/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Desktop-Applications15-SP2-Debuginfo-Pool for ppc64le SMS 4.1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-devtools15-sp2-updates-ppc64le-sms-4.1", + "parent_channel_label": "sle-product-suse-manager-server-4.1-pool-ppc64le", + "product_id": 1969, + "repository_id": 4126, + "parent_product_id": 1965, + "root_product_id": 2010, + "update_tag": "SLE-Module-Development-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15-SP2/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-DevTools15-SP2-Updates for ppc64le SMS 4.1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-devtools15-sp2-debuginfo-updates-ppc64le-sms-4.1", + "parent_channel_label": "sle-product-suse-manager-server-4.1-pool-ppc64le", + "product_id": 1969, + "repository_id": 4127, + "parent_product_id": 1965, + "root_product_id": 2010, + "update_tag": "SLE-Module-Development-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15-SP2/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-DevTools15-SP2-Debuginfo-Updates for ppc64le SMS 4.1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-devtools15-sp2-pool-ppc64le-sms-4.1", + "parent_channel_label": "sle-product-suse-manager-server-4.1-pool-ppc64le", + "product_id": 1969, + "repository_id": 4128, + "parent_product_id": 1965, + "root_product_id": 2010, + "update_tag": "SLE-Module-Development-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP2/ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-DevTools15-SP2-Pool for ppc64le SMS 4.1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-devtools15-sp2-debuginfo-pool-ppc64le-sms-4.1", + "parent_channel_label": "sle-product-suse-manager-server-4.1-pool-ppc64le", + "product_id": 1969, + "repository_id": 4129, + "parent_product_id": 1965, + "root_product_id": 2010, + "update_tag": "SLE-Module-Development-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP2/ppc64le/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-DevTools15-SP2-Debuginfo-Pool for ppc64le SMS 4.1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-python2-15-sp2-updates-ppc64le-sms-4.1", + "parent_channel_label": "sle-product-suse-manager-server-4.1-pool-ppc64le", + "product_id": 1990, + "repository_id": 4231, + "parent_product_id": 1944, + "root_product_id": 2010, + "update_tag": "SLE-Module-Python2", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Python2/15-SP2/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Python2-15-SP2-Updates for ppc64le SMS 4.1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-python2-15-sp2-debuginfo-updates-ppc64le-sms-4.1", + "parent_channel_label": "sle-product-suse-manager-server-4.1-pool-ppc64le", + "product_id": 1990, + "repository_id": 4232, + "parent_product_id": 1944, + "root_product_id": 2010, + "update_tag": "SLE-Module-Python2", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Python2/15-SP2/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Python2-15-SP2-Debuginfo-Updates for ppc64le SMS 4.1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-python2-15-sp2-pool-ppc64le-sms-4.1", + "parent_channel_label": "sle-product-suse-manager-server-4.1-pool-ppc64le", + "product_id": 1990, + "repository_id": 4233, + "parent_product_id": 1944, + "root_product_id": 2010, + "update_tag": "SLE-Module-Python2", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Python2/15-SP2/ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Python2-15-SP2-Pool for ppc64le SMS 4.1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-python2-15-sp2-debuginfo-pool-ppc64le-sms-4.1", + "parent_channel_label": "sle-product-suse-manager-server-4.1-pool-ppc64le", + "product_id": 1990, + "repository_id": 4234, + "parent_product_id": 1944, + "root_product_id": 2010, + "update_tag": "SLE-Module-Python2", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Python2/15-SP2/ppc64le/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Python2-15-SP2-Debuginfo-Pool for ppc64le SMS 4.1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-product-suse-manager-server-4.1-updates-s390x", + "parent_channel_label": "sle-product-suse-manager-server-4.1-pool-s390x", + "product_id": 2011, + "repository_id": 4331, + "parent_product_id": null, + "root_product_id": 2011, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-SUSE-Manager-Server/4.1/s390x/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-SUSE-Manager-Server-4.1-Updates for s390x", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-product-suse-manager-server-4.1-debuginfo-updates-s390x", + "parent_channel_label": "sle-product-suse-manager-server-4.1-pool-s390x", + "product_id": 2011, + "repository_id": 4332, + "parent_product_id": null, + "root_product_id": 2011, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-SUSE-Manager-Server/4.1/s390x/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-SUSE-Manager-Server-4.1-Debuginfo-Updates for s390x", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-product-suse-manager-server-4.1-pool-s390x", + "parent_channel_label": null, + "product_id": 2011, + "repository_id": 4333, + "parent_product_id": null, + "root_product_id": 2011, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-SUSE-Manager-Server/4.1/s390x/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-SUSE-Manager-Server-4.1-Pool for s390x", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-product-suse-manager-server-4.1-debuginfo-pool-s390x", + "parent_channel_label": "sle-product-suse-manager-server-4.1-pool-s390x", + "product_id": 2011, + "repository_id": 4334, + "parent_product_id": null, + "root_product_id": 2011, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-SUSE-Manager-Server/4.1/s390x/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-SUSE-Manager-Server-4.1-Debuginfo-Pool for s390x", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-basesystem15-sp2-updates-s390x-sms-4.1", + "parent_channel_label": "sle-product-suse-manager-server-4.1-pool-s390x", + "product_id": 1945, + "repository_id": 3994, + "parent_product_id": 2011, + "root_product_id": 2011, + "update_tag": "SLE-Module-Basesystem", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15-SP2/s390x/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Basesystem15-SP2-Updates for s390x SMS 4.1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-basesystem15-sp2-debuginfo-updates-s390x-sms-4.1", + "parent_channel_label": "sle-product-suse-manager-server-4.1-pool-s390x", + "product_id": 1945, + "repository_id": 3995, + "parent_product_id": 2011, + "root_product_id": 2011, + "update_tag": "SLE-Module-Basesystem", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15-SP2/s390x/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Basesystem15-SP2-Debuginfo-Updates for s390x SMS 4.1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-basesystem15-sp2-pool-s390x-sms-4.1", + "parent_channel_label": "sle-product-suse-manager-server-4.1-pool-s390x", + "product_id": 1945, + "repository_id": 3996, + "parent_product_id": 2011, + "root_product_id": 2011, + "update_tag": "SLE-Module-Basesystem", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP2/s390x/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Basesystem15-SP2-Pool for s390x SMS 4.1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-basesystem15-sp2-debuginfo-pool-s390x-sms-4.1", + "parent_channel_label": "sle-product-suse-manager-server-4.1-pool-s390x", + "product_id": 1945, + "repository_id": 3997, + "parent_product_id": 2011, + "root_product_id": 2011, + "update_tag": "SLE-Module-Basesystem", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP2/s390x/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Basesystem15-SP2-Debuginfo-Pool for s390x SMS 4.1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "suse-packagehub-15-sp2-backports-pool-s390x-sms-4.1", + "parent_channel_label": "sle-product-suse-manager-server-4.1-pool-s390x", + "product_id": 1949, + "repository_id": 4020, + "parent_product_id": 1945, + "root_product_id": 2011, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-15-SP2_s390x/standard/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-15-SP2-Backports-Pool for s390x SMS 4.1", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "suse-packagehub-15-sp2-backports-debuginfo-s390x-sms-4.1", + "parent_channel_label": "sle-product-suse-manager-server-4.1-pool-s390x", + "product_id": 1949, + "repository_id": 4021, + "parent_product_id": 1945, + "root_product_id": 2011, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-15-SP2_s390x/standard_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-15-SP2-Backports-Debuginfo for s390x SMS 4.1", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-packagehub-subpackages15-sp2-updates-s390x-sms-4.1", + "parent_channel_label": "sle-product-suse-manager-server-4.1-pool-s390x", + "product_id": 1949, + "repository_id": 4022, + "parent_product_id": 1945, + "root_product_id": 2011, + "update_tag": "SLE-Module-Packagehub-Subpackages", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP2/s390x/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Packagehub-Subpackages15-SP2-Updates for s390x SMS 4.1", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-packagehub-subpackages15-sp2-debuginfo-updates-s390x-sms-4.1", + "parent_channel_label": "sle-product-suse-manager-server-4.1-pool-s390x", + "product_id": 1949, + "repository_id": 4023, + "parent_product_id": 1945, + "root_product_id": 2011, + "update_tag": "SLE-Module-Packagehub-Subpackages", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP2/s390x/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Packagehub-Subpackages15-SP2-Debuginfo-Updates for s390x SMS 4.1", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "suse-packagehub-15-sp2-pool-s390x-sms-4.1", + "parent_channel_label": "sle-product-suse-manager-server-4.1-pool-s390x", + "product_id": 1949, + "repository_id": 4024, + "parent_product_id": 1945, + "root_product_id": 2011, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-15-SP2_s390x/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-15-SP2-Pool for s390x SMS 4.1", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-packagehub-subpackages15-sp2-pool-s390x-sms-4.1", + "parent_channel_label": "sle-product-suse-manager-server-4.1-pool-s390x", + "product_id": 1949, + "repository_id": 4025, + "parent_product_id": 1945, + "root_product_id": 2011, + "update_tag": "SLE-Module-Packagehub-Subpackages", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP2/s390x/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Packagehub-Subpackages15-SP2-Pool for s390x SMS 4.1", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-packagehub-subpackages15-sp2-debuginfo-pool-s390x-sms-4.1", + "parent_channel_label": "sle-product-suse-manager-server-4.1-pool-s390x", + "product_id": 1949, + "repository_id": 4026, + "parent_product_id": 1945, + "root_product_id": 2011, + "update_tag": "SLE-Module-Packagehub-Subpackages", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP2/s390x/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Packagehub-Subpackages15-SP2-Debuginfo-Pool for s390x SMS 4.1", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-server-applications15-sp2-updates-s390x-sms-4.1", + "parent_channel_label": "sle-product-suse-manager-server-4.1-pool-s390x", + "product_id": 1954, + "repository_id": 4051, + "parent_product_id": 1945, + "root_product_id": 2011, + "update_tag": "SLE-Module-Server-Applications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15-SP2/s390x/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Server-Applications15-SP2-Updates for s390x SMS 4.1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-server-applications15-sp2-debuginfo-updates-s390x-sms-4.1", + "parent_channel_label": "sle-product-suse-manager-server-4.1-pool-s390x", + "product_id": 1954, + "repository_id": 4052, + "parent_product_id": 1945, + "root_product_id": 2011, + "update_tag": "SLE-Module-Server-Applications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15-SP2/s390x/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Server-Applications15-SP2-Debuginfo-Updates for s390x SMS 4.1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-server-applications15-sp2-pool-s390x-sms-4.1", + "parent_channel_label": "sle-product-suse-manager-server-4.1-pool-s390x", + "product_id": 1954, + "repository_id": 4053, + "parent_product_id": 1945, + "root_product_id": 2011, + "update_tag": "SLE-Module-Server-Applications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP2/s390x/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Server-Applications15-SP2-Pool for s390x SMS 4.1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-server-applications15-sp2-debuginfo-pool-s390x-sms-4.1", + "parent_channel_label": "sle-product-suse-manager-server-4.1-pool-s390x", + "product_id": 1954, + "repository_id": 4054, + "parent_product_id": 1945, + "root_product_id": 2011, + "update_tag": "SLE-Module-Server-Applications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP2/s390x/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Server-Applications15-SP2-Debuginfo-Pool for s390x SMS 4.1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-product-ha15-sp2-updates-s390x-sms-4.1", + "parent_channel_label": "sle-product-suse-manager-server-4.1-pool-s390x", + "product_id": 1958, + "repository_id": 4071, + "parent_product_id": 1954, + "root_product_id": 2011, + "update_tag": "SLE-Product-HA", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-HA/15-SP2/s390x/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HA15-SP2-Updates for s390x SMS 4.1", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-product-ha15-sp2-debuginfo-updates-s390x-sms-4.1", + "parent_channel_label": "sle-product-suse-manager-server-4.1-pool-s390x", + "product_id": 1958, + "repository_id": 4072, + "parent_product_id": 1954, + "root_product_id": 2011, + "update_tag": "SLE-Product-HA", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-HA/15-SP2/s390x/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HA15-SP2-Debuginfo-Updates for s390x SMS 4.1", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-product-ha15-sp2-pool-s390x-sms-4.1", + "parent_channel_label": "sle-product-suse-manager-server-4.1-pool-s390x", + "product_id": 1958, + "repository_id": 4073, + "parent_product_id": 1954, + "root_product_id": 2011, + "update_tag": "SLE-Product-HA", + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP2/s390x/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HA15-SP2-Pool for s390x SMS 4.1", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-product-ha15-sp2-debuginfo-pool-s390x-sms-4.1", + "parent_channel_label": "sle-product-suse-manager-server-4.1-pool-s390x", + "product_id": 1958, + "repository_id": 4074, + "parent_product_id": 1954, + "root_product_id": 2011, + "update_tag": "SLE-Product-HA", + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP2/s390x/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HA15-SP2-Debuginfo-Pool for s390x SMS 4.1", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-web-scripting15-sp2-updates-s390x-sms-4.1", + "parent_channel_label": "sle-product-suse-manager-server-4.1-pool-s390x", + "product_id": 1975, + "repository_id": 4156, + "parent_product_id": 1954, + "root_product_id": 2011, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/15-SP2/s390x/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Web-Scripting15-SP2-Updates for s390x SMS 4.1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-web-scripting15-sp2-debuginfo-updates-s390x-sms-4.1", + "parent_channel_label": "sle-product-suse-manager-server-4.1-pool-s390x", + "product_id": 1975, + "repository_id": 4157, + "parent_product_id": 1954, + "root_product_id": 2011, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/15-SP2/s390x/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Web-Scripting15-SP2-Debuginfo-Updates for s390x SMS 4.1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-web-scripting15-sp2-pool-s390x-sms-4.1", + "parent_channel_label": "sle-product-suse-manager-server-4.1-pool-s390x", + "product_id": 1975, + "repository_id": 4158, + "parent_product_id": 1954, + "root_product_id": 2011, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP2/s390x/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Web-Scripting15-SP2-Pool for s390x SMS 4.1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-web-scripting15-sp2-debuginfo-pool-s390x-sms-4.1", + "parent_channel_label": "sle-product-suse-manager-server-4.1-pool-s390x", + "product_id": 1975, + "repository_id": 4159, + "parent_product_id": 1954, + "root_product_id": 2011, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP2/s390x/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Web-Scripting15-SP2-Debuginfo-Pool for s390x SMS 4.1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-suse-manager-server-4.1-updates-s390x", + "parent_channel_label": "sle-product-suse-manager-server-4.1-pool-s390x", + "product_id": 2018, + "repository_id": 4366, + "parent_product_id": 1975, + "root_product_id": 2011, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-SUSE-Manager-Server/4.1/s390x/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-SUSE-Manager-Server-4.1-Updates for s390x", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-suse-manager-server-4.1-debuginfo-updates-s390x", + "parent_channel_label": "sle-product-suse-manager-server-4.1-pool-s390x", + "product_id": 2018, + "repository_id": 4367, + "parent_product_id": 1975, + "root_product_id": 2011, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-SUSE-Manager-Server/4.1/s390x/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-SUSE-Manager-Server-4.1-Debuginfo-Updates for s390x", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-suse-manager-server-4.1-pool-s390x", + "parent_channel_label": "sle-product-suse-manager-server-4.1-pool-s390x", + "product_id": 2018, + "repository_id": 4368, + "parent_product_id": 1975, + "root_product_id": 2011, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-SUSE-Manager-Server/4.1/s390x/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-SUSE-Manager-Server-4.1-Pool for s390x", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-suse-manager-server-4.1-debuginfo-pool-s390x", + "parent_channel_label": "sle-product-suse-manager-server-4.1-pool-s390x", + "product_id": 2018, + "repository_id": 4369, + "parent_product_id": 1975, + "root_product_id": 2011, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-SUSE-Manager-Server/4.1/s390x/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-SUSE-Manager-Server-4.1-Debuginfo-Pool for s390x", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-legacy15-sp2-updates-s390x-sms-4.1", + "parent_channel_label": "sle-product-suse-manager-server-4.1-pool-s390x", + "product_id": 1981, + "repository_id": 4186, + "parent_product_id": 1954, + "root_product_id": 2011, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/15-SP2/s390x/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy15-SP2-Updates for s390x SMS 4.1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-legacy15-sp2-debuginfo-updates-s390x-sms-4.1", + "parent_channel_label": "sle-product-suse-manager-server-4.1-pool-s390x", + "product_id": 1981, + "repository_id": 4187, + "parent_product_id": 1954, + "root_product_id": 2011, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/15-SP2/s390x/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy15-SP2-Debuginfo-Updates for s390x SMS 4.1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-legacy15-sp2-pool-s390x-sms-4.1", + "parent_channel_label": "sle-product-suse-manager-server-4.1-pool-s390x", + "product_id": 1981, + "repository_id": 4188, + "parent_product_id": 1954, + "root_product_id": 2011, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15-SP2/s390x/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy15-SP2-Pool for s390x SMS 4.1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-legacy15-sp2-debuginfo-pool-s390x-sms-4.1", + "parent_channel_label": "sle-product-suse-manager-server-4.1-pool-s390x", + "product_id": 1981, + "repository_id": 4189, + "parent_product_id": 1954, + "root_product_id": 2011, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15-SP2/s390x/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy15-SP2-Debuginfo-Pool for s390x SMS 4.1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-public-cloud15-sp2-updates-s390x-sms-4.1", + "parent_channel_label": "sle-product-suse-manager-server-4.1-pool-s390x", + "product_id": 1987, + "repository_id": 4216, + "parent_product_id": 1954, + "root_product_id": 2011, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/15-SP2/s390x/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud15-SP2-Updates for s390x SMS 4.1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-public-cloud15-sp2-debuginfo-updates-s390x-sms-4.1", + "parent_channel_label": "sle-product-suse-manager-server-4.1-pool-s390x", + "product_id": 1987, + "repository_id": 4217, + "parent_product_id": 1954, + "root_product_id": 2011, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/15-SP2/s390x/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud15-SP2-Debuginfo-Updates for s390x SMS 4.1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-public-cloud15-sp2-pool-s390x-sms-4.1", + "parent_channel_label": "sle-product-suse-manager-server-4.1-pool-s390x", + "product_id": 1987, + "repository_id": 4218, + "parent_product_id": 1954, + "root_product_id": 2011, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP2/s390x/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud15-SP2-Pool for s390x SMS 4.1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-public-cloud15-sp2-debuginfo-pool-s390x-sms-4.1", + "parent_channel_label": "sle-product-suse-manager-server-4.1-pool-s390x", + "product_id": 1987, + "repository_id": 4219, + "parent_product_id": 1954, + "root_product_id": 2011, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP2/s390x/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud15-SP2-Debuginfo-Pool for s390x SMS 4.1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-containers15-sp2-updates-s390x-sms-4.1", + "parent_channel_label": "sle-product-suse-manager-server-4.1-pool-s390x", + "product_id": 1962, + "repository_id": 4091, + "parent_product_id": 1945, + "root_product_id": 2011, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/15-SP2/s390x/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers15-SP2-Updates for s390x SMS 4.1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-containers15-sp2-debuginfo-updates-s390x-sms-4.1", + "parent_channel_label": "sle-product-suse-manager-server-4.1-pool-s390x", + "product_id": 1962, + "repository_id": 4092, + "parent_product_id": 1945, + "root_product_id": 2011, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/15-SP2/s390x/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers15-SP2-Debuginfo-Updates for s390x SMS 4.1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-containers15-sp2-pool-s390x-sms-4.1", + "parent_channel_label": "sle-product-suse-manager-server-4.1-pool-s390x", + "product_id": 1962, + "repository_id": 4093, + "parent_product_id": 1945, + "root_product_id": 2011, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP2/s390x/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers15-SP2-Pool for s390x SMS 4.1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-containers15-sp2-debuginfo-pool-s390x-sms-4.1", + "parent_channel_label": "sle-product-suse-manager-server-4.1-pool-s390x", + "product_id": 1962, + "repository_id": 4094, + "parent_product_id": 1945, + "root_product_id": 2011, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP2/s390x/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers15-SP2-Debuginfo-Pool for s390x SMS 4.1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-desktop-applications15-sp2-updates-s390x-sms-4.1", + "parent_channel_label": "sle-product-suse-manager-server-4.1-pool-s390x", + "product_id": 1966, + "repository_id": 4111, + "parent_product_id": 1945, + "root_product_id": 2011, + "update_tag": "SLE-Module-Desktop-Applications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15-SP2/s390x/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Desktop-Applications15-SP2-Updates for s390x SMS 4.1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-desktop-applications15-sp2-debuginfo-updates-s390x-sms-4.1", + "parent_channel_label": "sle-product-suse-manager-server-4.1-pool-s390x", + "product_id": 1966, + "repository_id": 4112, + "parent_product_id": 1945, + "root_product_id": 2011, + "update_tag": "SLE-Module-Desktop-Applications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15-SP2/s390x/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Desktop-Applications15-SP2-Debuginfo-Updates for s390x SMS 4.1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-desktop-applications15-sp2-pool-s390x-sms-4.1", + "parent_channel_label": "sle-product-suse-manager-server-4.1-pool-s390x", + "product_id": 1966, + "repository_id": 4113, + "parent_product_id": 1945, + "root_product_id": 2011, + "update_tag": "SLE-Module-Desktop-Applications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP2/s390x/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Desktop-Applications15-SP2-Pool for s390x SMS 4.1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-desktop-applications15-sp2-debuginfo-pool-s390x-sms-4.1", + "parent_channel_label": "sle-product-suse-manager-server-4.1-pool-s390x", + "product_id": 1966, + "repository_id": 4114, + "parent_product_id": 1945, + "root_product_id": 2011, + "update_tag": "SLE-Module-Desktop-Applications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP2/s390x/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Desktop-Applications15-SP2-Debuginfo-Pool for s390x SMS 4.1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-devtools15-sp2-updates-s390x-sms-4.1", + "parent_channel_label": "sle-product-suse-manager-server-4.1-pool-s390x", + "product_id": 1970, + "repository_id": 4131, + "parent_product_id": 1966, + "root_product_id": 2011, + "update_tag": "SLE-Module-Development-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15-SP2/s390x/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-DevTools15-SP2-Updates for s390x SMS 4.1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-devtools15-sp2-debuginfo-updates-s390x-sms-4.1", + "parent_channel_label": "sle-product-suse-manager-server-4.1-pool-s390x", + "product_id": 1970, + "repository_id": 4132, + "parent_product_id": 1966, + "root_product_id": 2011, + "update_tag": "SLE-Module-Development-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15-SP2/s390x/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-DevTools15-SP2-Debuginfo-Updates for s390x SMS 4.1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-devtools15-sp2-pool-s390x-sms-4.1", + "parent_channel_label": "sle-product-suse-manager-server-4.1-pool-s390x", + "product_id": 1970, + "repository_id": 4133, + "parent_product_id": 1966, + "root_product_id": 2011, + "update_tag": "SLE-Module-Development-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP2/s390x/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-DevTools15-SP2-Pool for s390x SMS 4.1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-devtools15-sp2-debuginfo-pool-s390x-sms-4.1", + "parent_channel_label": "sle-product-suse-manager-server-4.1-pool-s390x", + "product_id": 1970, + "repository_id": 4134, + "parent_product_id": 1966, + "root_product_id": 2011, + "update_tag": "SLE-Module-Development-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP2/s390x/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-DevTools15-SP2-Debuginfo-Pool for s390x SMS 4.1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-python2-15-sp2-updates-s390x-sms-4.1", + "parent_channel_label": "sle-product-suse-manager-server-4.1-pool-s390x", + "product_id": 1991, + "repository_id": 4236, + "parent_product_id": 1945, + "root_product_id": 2011, + "update_tag": "SLE-Module-Python2", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Python2/15-SP2/s390x/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Python2-15-SP2-Updates for s390x SMS 4.1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-python2-15-sp2-debuginfo-updates-s390x-sms-4.1", + "parent_channel_label": "sle-product-suse-manager-server-4.1-pool-s390x", + "product_id": 1991, + "repository_id": 4237, + "parent_product_id": 1945, + "root_product_id": 2011, + "update_tag": "SLE-Module-Python2", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Python2/15-SP2/s390x/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Python2-15-SP2-Debuginfo-Updates for s390x SMS 4.1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-python2-15-sp2-pool-s390x-sms-4.1", + "parent_channel_label": "sle-product-suse-manager-server-4.1-pool-s390x", + "product_id": 1991, + "repository_id": 4238, + "parent_product_id": 1945, + "root_product_id": 2011, + "update_tag": "SLE-Module-Python2", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Python2/15-SP2/s390x/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Python2-15-SP2-Pool for s390x SMS 4.1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-python2-15-sp2-debuginfo-pool-s390x-sms-4.1", + "parent_channel_label": "sle-product-suse-manager-server-4.1-pool-s390x", + "product_id": 1991, + "repository_id": 4239, + "parent_product_id": 1945, + "root_product_id": 2011, + "update_tag": "SLE-Module-Python2", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Python2/15-SP2/s390x/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Python2-15-SP2-Debuginfo-Pool for s390x SMS 4.1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-product-suse-manager-server-4.1-updates-x86_64", + "parent_channel_label": "sle-product-suse-manager-server-4.1-pool-x86_64", + "product_id": 2012, + "repository_id": 4336, + "parent_product_id": null, + "root_product_id": 2012, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-SUSE-Manager-Server/4.1/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-SUSE-Manager-Server-4.1-Updates for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-product-suse-manager-server-4.1-debuginfo-updates-x86_64", + "parent_channel_label": "sle-product-suse-manager-server-4.1-pool-x86_64", + "product_id": 2012, + "repository_id": 4337, + "parent_product_id": null, + "root_product_id": 2012, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-SUSE-Manager-Server/4.1/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-SUSE-Manager-Server-4.1-Debuginfo-Updates for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-product-suse-manager-server-4.1-pool-x86_64", + "parent_channel_label": null, + "product_id": 2012, + "repository_id": 4338, + "parent_product_id": null, + "root_product_id": 2012, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-SUSE-Manager-Server/4.1/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-SUSE-Manager-Server-4.1-Pool for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-product-suse-manager-server-4.1-debuginfo-pool-x86_64", + "parent_channel_label": "sle-product-suse-manager-server-4.1-pool-x86_64", + "product_id": 2012, + "repository_id": 4339, + "parent_product_id": null, + "root_product_id": 2012, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-SUSE-Manager-Server/4.1/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-SUSE-Manager-Server-4.1-Debuginfo-Pool for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-basesystem15-sp2-updates-x86_64-sms-4.1", + "parent_channel_label": "sle-product-suse-manager-server-4.1-pool-x86_64", + "product_id": 1946, + "repository_id": 3999, + "parent_product_id": 2012, + "root_product_id": 2012, + "update_tag": "SLE-Module-Basesystem", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15-SP2/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Basesystem15-SP2-Updates for x86_64 SMS 4.1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-basesystem15-sp2-debuginfo-updates-x86_64-sms-4.1", + "parent_channel_label": "sle-product-suse-manager-server-4.1-pool-x86_64", + "product_id": 1946, + "repository_id": 4000, + "parent_product_id": 2012, + "root_product_id": 2012, + "update_tag": "SLE-Module-Basesystem", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15-SP2/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Basesystem15-SP2-Debuginfo-Updates for x86_64 SMS 4.1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-basesystem15-sp2-pool-x86_64-sms-4.1", + "parent_channel_label": "sle-product-suse-manager-server-4.1-pool-x86_64", + "product_id": 1946, + "repository_id": 4001, + "parent_product_id": 2012, + "root_product_id": 2012, + "update_tag": "SLE-Module-Basesystem", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP2/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Basesystem15-SP2-Pool for x86_64 SMS 4.1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-basesystem15-sp2-debuginfo-pool-x86_64-sms-4.1", + "parent_channel_label": "sle-product-suse-manager-server-4.1-pool-x86_64", + "product_id": 1946, + "repository_id": 4002, + "parent_product_id": 2012, + "root_product_id": 2012, + "update_tag": "SLE-Module-Basesystem", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP2/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Basesystem15-SP2-Debuginfo-Pool for x86_64 SMS 4.1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "suse-packagehub-15-sp2-backports-pool-x86_64-sms-4.1", + "parent_channel_label": "sle-product-suse-manager-server-4.1-pool-x86_64", + "product_id": 1950, + "repository_id": 4028, + "parent_product_id": 1946, + "root_product_id": 2012, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-15-SP2_x86_64/standard/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-15-SP2-Backports-Pool for x86_64 SMS 4.1", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "suse-packagehub-15-sp2-backports-debuginfo-x86_64-sms-4.1", + "parent_channel_label": "sle-product-suse-manager-server-4.1-pool-x86_64", + "product_id": 1950, + "repository_id": 4029, + "parent_product_id": 1946, + "root_product_id": 2012, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-15-SP2_x86_64/standard_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-15-SP2-Backports-Debuginfo for x86_64 SMS 4.1", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-packagehub-subpackages15-sp2-updates-x86_64-sms-4.1", + "parent_channel_label": "sle-product-suse-manager-server-4.1-pool-x86_64", + "product_id": 1950, + "repository_id": 4030, + "parent_product_id": 1946, + "root_product_id": 2012, + "update_tag": "SLE-Module-Packagehub-Subpackages", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP2/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Packagehub-Subpackages15-SP2-Updates for x86_64 SMS 4.1", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-packagehub-subpackages15-sp2-debuginfo-updates-x86_64-sms-4.1", + "parent_channel_label": "sle-product-suse-manager-server-4.1-pool-x86_64", + "product_id": 1950, + "repository_id": 4031, + "parent_product_id": 1946, + "root_product_id": 2012, + "update_tag": "SLE-Module-Packagehub-Subpackages", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP2/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Packagehub-Subpackages15-SP2-Debuginfo-Updates for x86_64 SMS 4.1", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "suse-packagehub-15-sp2-pool-x86_64-sms-4.1", + "parent_channel_label": "sle-product-suse-manager-server-4.1-pool-x86_64", + "product_id": 1950, + "repository_id": 4032, + "parent_product_id": 1946, + "root_product_id": 2012, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-15-SP2_x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-15-SP2-Pool for x86_64 SMS 4.1", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-packagehub-subpackages15-sp2-pool-x86_64-sms-4.1", + "parent_channel_label": "sle-product-suse-manager-server-4.1-pool-x86_64", + "product_id": 1950, + "repository_id": 4033, + "parent_product_id": 1946, + "root_product_id": 2012, + "update_tag": "SLE-Module-Packagehub-Subpackages", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP2/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Packagehub-Subpackages15-SP2-Pool for x86_64 SMS 4.1", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-packagehub-subpackages15-sp2-debuginfo-pool-x86_64-sms-4.1", + "parent_channel_label": "sle-product-suse-manager-server-4.1-pool-x86_64", + "product_id": 1950, + "repository_id": 4034, + "parent_product_id": 1946, + "root_product_id": 2012, + "update_tag": "SLE-Module-Packagehub-Subpackages", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP2/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Packagehub-Subpackages15-SP2-Debuginfo-Pool for x86_64 SMS 4.1", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-server-applications15-sp2-updates-x86_64-sms-4.1", + "parent_channel_label": "sle-product-suse-manager-server-4.1-pool-x86_64", + "product_id": 1955, + "repository_id": 4056, + "parent_product_id": 1946, + "root_product_id": 2012, + "update_tag": "SLE-Module-Server-Applications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15-SP2/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Server-Applications15-SP2-Updates for x86_64 SMS 4.1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-server-applications15-sp2-debuginfo-updates-x86_64-sms-4.1", + "parent_channel_label": "sle-product-suse-manager-server-4.1-pool-x86_64", + "product_id": 1955, + "repository_id": 4057, + "parent_product_id": 1946, + "root_product_id": 2012, + "update_tag": "SLE-Module-Server-Applications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15-SP2/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Server-Applications15-SP2-Debuginfo-Updates for x86_64 SMS 4.1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-server-applications15-sp2-pool-x86_64-sms-4.1", + "parent_channel_label": "sle-product-suse-manager-server-4.1-pool-x86_64", + "product_id": 1955, + "repository_id": 4058, + "parent_product_id": 1946, + "root_product_id": 2012, + "update_tag": "SLE-Module-Server-Applications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP2/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Server-Applications15-SP2-Pool for x86_64 SMS 4.1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-server-applications15-sp2-debuginfo-pool-x86_64-sms-4.1", + "parent_channel_label": "sle-product-suse-manager-server-4.1-pool-x86_64", + "product_id": 1955, + "repository_id": 4059, + "parent_product_id": 1946, + "root_product_id": 2012, + "update_tag": "SLE-Module-Server-Applications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP2/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Server-Applications15-SP2-Debuginfo-Pool for x86_64 SMS 4.1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-product-ha15-sp2-updates-x86_64-sms-4.1", + "parent_channel_label": "sle-product-suse-manager-server-4.1-pool-x86_64", + "product_id": 1959, + "repository_id": 4076, + "parent_product_id": 1955, + "root_product_id": 2012, + "update_tag": "SLE-Product-HA", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-HA/15-SP2/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HA15-SP2-Updates for x86_64 SMS 4.1", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-product-ha15-sp2-debuginfo-updates-x86_64-sms-4.1", + "parent_channel_label": "sle-product-suse-manager-server-4.1-pool-x86_64", + "product_id": 1959, + "repository_id": 4077, + "parent_product_id": 1955, + "root_product_id": 2012, + "update_tag": "SLE-Product-HA", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-HA/15-SP2/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HA15-SP2-Debuginfo-Updates for x86_64 SMS 4.1", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-product-ha15-sp2-pool-x86_64-sms-4.1", + "parent_channel_label": "sle-product-suse-manager-server-4.1-pool-x86_64", + "product_id": 1959, + "repository_id": 4078, + "parent_product_id": 1955, + "root_product_id": 2012, + "update_tag": "SLE-Product-HA", + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP2/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HA15-SP2-Pool for x86_64 SMS 4.1", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-product-ha15-sp2-debuginfo-pool-x86_64-sms-4.1", + "parent_channel_label": "sle-product-suse-manager-server-4.1-pool-x86_64", + "product_id": 1959, + "repository_id": 4079, + "parent_product_id": 1955, + "root_product_id": 2012, + "update_tag": "SLE-Product-HA", + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP2/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HA15-SP2-Debuginfo-Pool for x86_64 SMS 4.1", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-web-scripting15-sp2-updates-x86_64-sms-4.1", + "parent_channel_label": "sle-product-suse-manager-server-4.1-pool-x86_64", + "product_id": 1976, + "repository_id": 4161, + "parent_product_id": 1955, + "root_product_id": 2012, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/15-SP2/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Web-Scripting15-SP2-Updates for x86_64 SMS 4.1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-web-scripting15-sp2-debuginfo-updates-x86_64-sms-4.1", + "parent_channel_label": "sle-product-suse-manager-server-4.1-pool-x86_64", + "product_id": 1976, + "repository_id": 4162, + "parent_product_id": 1955, + "root_product_id": 2012, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/15-SP2/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Web-Scripting15-SP2-Debuginfo-Updates for x86_64 SMS 4.1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-web-scripting15-sp2-pool-x86_64-sms-4.1", + "parent_channel_label": "sle-product-suse-manager-server-4.1-pool-x86_64", + "product_id": 1976, + "repository_id": 4163, + "parent_product_id": 1955, + "root_product_id": 2012, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP2/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Web-Scripting15-SP2-Pool for x86_64 SMS 4.1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-web-scripting15-sp2-debuginfo-pool-x86_64-sms-4.1", + "parent_channel_label": "sle-product-suse-manager-server-4.1-pool-x86_64", + "product_id": 1976, + "repository_id": 4164, + "parent_product_id": 1955, + "root_product_id": 2012, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP2/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Web-Scripting15-SP2-Debuginfo-Pool for x86_64 SMS 4.1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-suse-manager-server-4.1-updates-x86_64", + "parent_channel_label": "sle-product-suse-manager-server-4.1-pool-x86_64", + "product_id": 2019, + "repository_id": 4371, + "parent_product_id": 1976, + "root_product_id": 2012, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-SUSE-Manager-Server/4.1/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-SUSE-Manager-Server-4.1-Updates for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-suse-manager-server-4.1-debuginfo-updates-x86_64", + "parent_channel_label": "sle-product-suse-manager-server-4.1-pool-x86_64", + "product_id": 2019, + "repository_id": 4372, + "parent_product_id": 1976, + "root_product_id": 2012, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-SUSE-Manager-Server/4.1/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-SUSE-Manager-Server-4.1-Debuginfo-Updates for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-suse-manager-server-4.1-pool-x86_64", + "parent_channel_label": "sle-product-suse-manager-server-4.1-pool-x86_64", + "product_id": 2019, + "repository_id": 4373, + "parent_product_id": 1976, + "root_product_id": 2012, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-SUSE-Manager-Server/4.1/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-SUSE-Manager-Server-4.1-Pool for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-suse-manager-server-4.1-debuginfo-pool-x86_64", + "parent_channel_label": "sle-product-suse-manager-server-4.1-pool-x86_64", + "product_id": 2019, + "repository_id": 4374, + "parent_product_id": 1976, + "root_product_id": 2012, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-SUSE-Manager-Server/4.1/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-SUSE-Manager-Server-4.1-Debuginfo-Pool for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-legacy15-sp2-updates-x86_64-sms-4.1", + "parent_channel_label": "sle-product-suse-manager-server-4.1-pool-x86_64", + "product_id": 1982, + "repository_id": 4191, + "parent_product_id": 1955, + "root_product_id": 2012, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/15-SP2/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy15-SP2-Updates for x86_64 SMS 4.1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-legacy15-sp2-debuginfo-updates-x86_64-sms-4.1", + "parent_channel_label": "sle-product-suse-manager-server-4.1-pool-x86_64", + "product_id": 1982, + "repository_id": 4192, + "parent_product_id": 1955, + "root_product_id": 2012, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/15-SP2/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy15-SP2-Debuginfo-Updates for x86_64 SMS 4.1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-legacy15-sp2-pool-x86_64-sms-4.1", + "parent_channel_label": "sle-product-suse-manager-server-4.1-pool-x86_64", + "product_id": 1982, + "repository_id": 4193, + "parent_product_id": 1955, + "root_product_id": 2012, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15-SP2/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy15-SP2-Pool for x86_64 SMS 4.1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-legacy15-sp2-debuginfo-pool-x86_64-sms-4.1", + "parent_channel_label": "sle-product-suse-manager-server-4.1-pool-x86_64", + "product_id": 1982, + "repository_id": 4194, + "parent_product_id": 1955, + "root_product_id": 2012, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15-SP2/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy15-SP2-Debuginfo-Pool for x86_64 SMS 4.1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-public-cloud15-sp2-updates-x86_64-sms-4.1", + "parent_channel_label": "sle-product-suse-manager-server-4.1-pool-x86_64", + "product_id": 1988, + "repository_id": 4221, + "parent_product_id": 1955, + "root_product_id": 2012, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/15-SP2/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud15-SP2-Updates for x86_64 SMS 4.1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-public-cloud15-sp2-debuginfo-updates-x86_64-sms-4.1", + "parent_channel_label": "sle-product-suse-manager-server-4.1-pool-x86_64", + "product_id": 1988, + "repository_id": 4222, + "parent_product_id": 1955, + "root_product_id": 2012, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/15-SP2/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud15-SP2-Debuginfo-Updates for x86_64 SMS 4.1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-public-cloud15-sp2-pool-x86_64-sms-4.1", + "parent_channel_label": "sle-product-suse-manager-server-4.1-pool-x86_64", + "product_id": 1988, + "repository_id": 4223, + "parent_product_id": 1955, + "root_product_id": 2012, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP2/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud15-SP2-Pool for x86_64 SMS 4.1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-public-cloud15-sp2-debuginfo-pool-x86_64-sms-4.1", + "parent_channel_label": "sle-product-suse-manager-server-4.1-pool-x86_64", + "product_id": 1988, + "repository_id": 4224, + "parent_product_id": 1955, + "root_product_id": 2012, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP2/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud15-SP2-Debuginfo-Pool for x86_64 SMS 4.1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-containers15-sp2-updates-x86_64-sms-4.1", + "parent_channel_label": "sle-product-suse-manager-server-4.1-pool-x86_64", + "product_id": 1963, + "repository_id": 4096, + "parent_product_id": 1946, + "root_product_id": 2012, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/15-SP2/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers15-SP2-Updates for x86_64 SMS 4.1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-containers15-sp2-debuginfo-updates-x86_64-sms-4.1", + "parent_channel_label": "sle-product-suse-manager-server-4.1-pool-x86_64", + "product_id": 1963, + "repository_id": 4097, + "parent_product_id": 1946, + "root_product_id": 2012, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/15-SP2/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers15-SP2-Debuginfo-Updates for x86_64 SMS 4.1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-containers15-sp2-pool-x86_64-sms-4.1", + "parent_channel_label": "sle-product-suse-manager-server-4.1-pool-x86_64", + "product_id": 1963, + "repository_id": 4098, + "parent_product_id": 1946, + "root_product_id": 2012, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP2/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers15-SP2-Pool for x86_64 SMS 4.1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-containers15-sp2-debuginfo-pool-x86_64-sms-4.1", + "parent_channel_label": "sle-product-suse-manager-server-4.1-pool-x86_64", + "product_id": 1963, + "repository_id": 4099, + "parent_product_id": 1946, + "root_product_id": 2012, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP2/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers15-SP2-Debuginfo-Pool for x86_64 SMS 4.1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-desktop-applications15-sp2-updates-x86_64-sms-4.1", + "parent_channel_label": "sle-product-suse-manager-server-4.1-pool-x86_64", + "product_id": 1967, + "repository_id": 4116, + "parent_product_id": 1946, + "root_product_id": 2012, + "update_tag": "SLE-Module-Desktop-Applications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15-SP2/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Desktop-Applications15-SP2-Updates for x86_64 SMS 4.1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-desktop-applications15-sp2-debuginfo-updates-x86_64-sms-4.1", + "parent_channel_label": "sle-product-suse-manager-server-4.1-pool-x86_64", + "product_id": 1967, + "repository_id": 4117, + "parent_product_id": 1946, + "root_product_id": 2012, + "update_tag": "SLE-Module-Desktop-Applications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15-SP2/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Desktop-Applications15-SP2-Debuginfo-Updates for x86_64 SMS 4.1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-desktop-applications15-sp2-pool-x86_64-sms-4.1", + "parent_channel_label": "sle-product-suse-manager-server-4.1-pool-x86_64", + "product_id": 1967, + "repository_id": 4118, + "parent_product_id": 1946, + "root_product_id": 2012, + "update_tag": "SLE-Module-Desktop-Applications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP2/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Desktop-Applications15-SP2-Pool for x86_64 SMS 4.1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-desktop-applications15-sp2-debuginfo-pool-x86_64-sms-4.1", + "parent_channel_label": "sle-product-suse-manager-server-4.1-pool-x86_64", + "product_id": 1967, + "repository_id": 4119, + "parent_product_id": 1946, + "root_product_id": 2012, + "update_tag": "SLE-Module-Desktop-Applications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP2/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Desktop-Applications15-SP2-Debuginfo-Pool for x86_64 SMS 4.1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-devtools15-sp2-updates-x86_64-sms-4.1", + "parent_channel_label": "sle-product-suse-manager-server-4.1-pool-x86_64", + "product_id": 1971, + "repository_id": 4136, + "parent_product_id": 1967, + "root_product_id": 2012, + "update_tag": "SLE-Module-Development-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15-SP2/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-DevTools15-SP2-Updates for x86_64 SMS 4.1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-devtools15-sp2-debuginfo-updates-x86_64-sms-4.1", + "parent_channel_label": "sle-product-suse-manager-server-4.1-pool-x86_64", + "product_id": 1971, + "repository_id": 4137, + "parent_product_id": 1967, + "root_product_id": 2012, + "update_tag": "SLE-Module-Development-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15-SP2/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-DevTools15-SP2-Debuginfo-Updates for x86_64 SMS 4.1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-devtools15-sp2-pool-x86_64-sms-4.1", + "parent_channel_label": "sle-product-suse-manager-server-4.1-pool-x86_64", + "product_id": 1971, + "repository_id": 4138, + "parent_product_id": 1967, + "root_product_id": 2012, + "update_tag": "SLE-Module-Development-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP2/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-DevTools15-SP2-Pool for x86_64 SMS 4.1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-devtools15-sp2-debuginfo-pool-x86_64-sms-4.1", + "parent_channel_label": "sle-product-suse-manager-server-4.1-pool-x86_64", + "product_id": 1971, + "repository_id": 4139, + "parent_product_id": 1967, + "root_product_id": 2012, + "update_tag": "SLE-Module-Development-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP2/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-DevTools15-SP2-Debuginfo-Pool for x86_64 SMS 4.1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-python2-15-sp2-updates-x86_64-sms-4.1", + "parent_channel_label": "sle-product-suse-manager-server-4.1-pool-x86_64", + "product_id": 1992, + "repository_id": 4241, + "parent_product_id": 1946, + "root_product_id": 2012, + "update_tag": "SLE-Module-Python2", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Python2/15-SP2/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Python2-15-SP2-Updates for x86_64 SMS 4.1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-python2-15-sp2-debuginfo-updates-x86_64-sms-4.1", + "parent_channel_label": "sle-product-suse-manager-server-4.1-pool-x86_64", + "product_id": 1992, + "repository_id": 4242, + "parent_product_id": 1946, + "root_product_id": 2012, + "update_tag": "SLE-Module-Python2", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Python2/15-SP2/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Python2-15-SP2-Debuginfo-Updates for x86_64 SMS 4.1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-python2-15-sp2-pool-x86_64-sms-4.1", + "parent_channel_label": "sle-product-suse-manager-server-4.1-pool-x86_64", + "product_id": 1992, + "repository_id": 4243, + "parent_product_id": 1946, + "root_product_id": 2012, + "update_tag": "SLE-Module-Python2", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Python2/15-SP2/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Python2-15-SP2-Pool for x86_64 SMS 4.1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-python2-15-sp2-debuginfo-pool-x86_64-sms-4.1", + "parent_channel_label": "sle-product-suse-manager-server-4.1-pool-x86_64", + "product_id": 1992, + "repository_id": 4244, + "parent_product_id": 1946, + "root_product_id": 2012, + "update_tag": "SLE-Module-Python2", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Python2/15-SP2/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Python2-15-SP2-Debuginfo-Pool for x86_64 SMS 4.1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-product-suse-manager-retail-branch-server-4.1-updates-x86_64", + "parent_channel_label": "sle-product-suse-manager-retail-branch-server-4.1-pool-x86_64", + "product_id": 2014, + "repository_id": 4346, + "parent_product_id": null, + "root_product_id": 2014, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-SUSE-Manager-Retail-Branch-Server/4.1/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-SUSE-Manager-Retail-Branch-Server-4.1-Updates for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-product-suse-manager-retail-branch-server-4.1-debuginfo-updates-x86_64", + "parent_channel_label": "sle-product-suse-manager-retail-branch-server-4.1-pool-x86_64", + "product_id": 2014, + "repository_id": 4347, + "parent_product_id": null, + "root_product_id": 2014, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-SUSE-Manager-Retail-Branch-Server/4.1/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-SUSE-Manager-Retail-Branch-Server-4.1-Debuginfo-Updates for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-product-suse-manager-retail-branch-server-4.1-pool-x86_64", + "parent_channel_label": null, + "product_id": 2014, + "repository_id": 4348, + "parent_product_id": null, + "root_product_id": 2014, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-SUSE-Manager-Retail-Branch-Server/4.1/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-SUSE-Manager-Retail-Branch-Server-4.1-Pool for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-product-suse-manager-retail-branch-server-4.1-debuginfo-pool-x86_64", + "parent_channel_label": "sle-product-suse-manager-retail-branch-server-4.1-pool-x86_64", + "product_id": 2014, + "repository_id": 4349, + "parent_product_id": null, + "root_product_id": 2014, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-SUSE-Manager-Retail-Branch-Server/4.1/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-SUSE-Manager-Retail-Branch-Server-4.1-Debuginfo-Pool for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-basesystem15-sp2-updates-x86_64-smrbs-4.1", + "parent_channel_label": "sle-product-suse-manager-retail-branch-server-4.1-pool-x86_64", + "product_id": 1946, + "repository_id": 3999, + "parent_product_id": 2014, + "root_product_id": 2014, + "update_tag": "SLE-Module-Basesystem", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15-SP2/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Basesystem15-SP2-Updates for x86_64 SMRBS 4.1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-basesystem15-sp2-debuginfo-updates-x86_64-smrbs-4.1", + "parent_channel_label": "sle-product-suse-manager-retail-branch-server-4.1-pool-x86_64", + "product_id": 1946, + "repository_id": 4000, + "parent_product_id": 2014, + "root_product_id": 2014, + "update_tag": "SLE-Module-Basesystem", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15-SP2/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Basesystem15-SP2-Debuginfo-Updates for x86_64 SMRBS 4.1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-basesystem15-sp2-pool-x86_64-smrbs-4.1", + "parent_channel_label": "sle-product-suse-manager-retail-branch-server-4.1-pool-x86_64", + "product_id": 1946, + "repository_id": 4001, + "parent_product_id": 2014, + "root_product_id": 2014, + "update_tag": "SLE-Module-Basesystem", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP2/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Basesystem15-SP2-Pool for x86_64 SMRBS 4.1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-basesystem15-sp2-debuginfo-pool-x86_64-smrbs-4.1", + "parent_channel_label": "sle-product-suse-manager-retail-branch-server-4.1-pool-x86_64", + "product_id": 1946, + "repository_id": 4002, + "parent_product_id": 2014, + "root_product_id": 2014, + "update_tag": "SLE-Module-Basesystem", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP2/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Basesystem15-SP2-Debuginfo-Pool for x86_64 SMRBS 4.1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "suse-packagehub-15-sp2-backports-pool-x86_64-smrbs-4.1", + "parent_channel_label": "sle-product-suse-manager-retail-branch-server-4.1-pool-x86_64", + "product_id": 1950, + "repository_id": 4028, + "parent_product_id": 1946, + "root_product_id": 2014, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-15-SP2_x86_64/standard/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-15-SP2-Backports-Pool for x86_64 SMRBS 4.1", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "suse-packagehub-15-sp2-backports-debuginfo-x86_64-smrbs-4.1", + "parent_channel_label": "sle-product-suse-manager-retail-branch-server-4.1-pool-x86_64", + "product_id": 1950, + "repository_id": 4029, + "parent_product_id": 1946, + "root_product_id": 2014, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-15-SP2_x86_64/standard_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-15-SP2-Backports-Debuginfo for x86_64 SMRBS 4.1", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-packagehub-subpackages15-sp2-updates-x86_64-smrbs-4.1", + "parent_channel_label": "sle-product-suse-manager-retail-branch-server-4.1-pool-x86_64", + "product_id": 1950, + "repository_id": 4030, + "parent_product_id": 1946, + "root_product_id": 2014, + "update_tag": "SLE-Module-Packagehub-Subpackages", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP2/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Packagehub-Subpackages15-SP2-Updates for x86_64 SMRBS 4.1", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-packagehub-subpackages15-sp2-debuginfo-updates-x86_64-smrbs-4.1", + "parent_channel_label": "sle-product-suse-manager-retail-branch-server-4.1-pool-x86_64", + "product_id": 1950, + "repository_id": 4031, + "parent_product_id": 1946, + "root_product_id": 2014, + "update_tag": "SLE-Module-Packagehub-Subpackages", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP2/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Packagehub-Subpackages15-SP2-Debuginfo-Updates for x86_64 SMRBS 4.1", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "suse-packagehub-15-sp2-pool-x86_64-smrbs-4.1", + "parent_channel_label": "sle-product-suse-manager-retail-branch-server-4.1-pool-x86_64", + "product_id": 1950, + "repository_id": 4032, + "parent_product_id": 1946, + "root_product_id": 2014, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-15-SP2_x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-15-SP2-Pool for x86_64 SMRBS 4.1", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-packagehub-subpackages15-sp2-pool-x86_64-smrbs-4.1", + "parent_channel_label": "sle-product-suse-manager-retail-branch-server-4.1-pool-x86_64", + "product_id": 1950, + "repository_id": 4033, + "parent_product_id": 1946, + "root_product_id": 2014, + "update_tag": "SLE-Module-Packagehub-Subpackages", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP2/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Packagehub-Subpackages15-SP2-Pool for x86_64 SMRBS 4.1", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-packagehub-subpackages15-sp2-debuginfo-pool-x86_64-smrbs-4.1", + "parent_channel_label": "sle-product-suse-manager-retail-branch-server-4.1-pool-x86_64", + "product_id": 1950, + "repository_id": 4034, + "parent_product_id": 1946, + "root_product_id": 2014, + "update_tag": "SLE-Module-Packagehub-Subpackages", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP2/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Packagehub-Subpackages15-SP2-Debuginfo-Pool for x86_64 SMRBS 4.1", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-server-applications15-sp2-updates-x86_64-smrbs-4.1", + "parent_channel_label": "sle-product-suse-manager-retail-branch-server-4.1-pool-x86_64", + "product_id": 1955, + "repository_id": 4056, + "parent_product_id": 1946, + "root_product_id": 2014, + "update_tag": "SLE-Module-Server-Applications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15-SP2/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Server-Applications15-SP2-Updates for x86_64 SMRBS 4.1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-server-applications15-sp2-debuginfo-updates-x86_64-smrbs-4.1", + "parent_channel_label": "sle-product-suse-manager-retail-branch-server-4.1-pool-x86_64", + "product_id": 1955, + "repository_id": 4057, + "parent_product_id": 1946, + "root_product_id": 2014, + "update_tag": "SLE-Module-Server-Applications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15-SP2/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Server-Applications15-SP2-Debuginfo-Updates for x86_64 SMRBS 4.1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-server-applications15-sp2-pool-x86_64-smrbs-4.1", + "parent_channel_label": "sle-product-suse-manager-retail-branch-server-4.1-pool-x86_64", + "product_id": 1955, + "repository_id": 4058, + "parent_product_id": 1946, + "root_product_id": 2014, + "update_tag": "SLE-Module-Server-Applications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP2/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Server-Applications15-SP2-Pool for x86_64 SMRBS 4.1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-server-applications15-sp2-debuginfo-pool-x86_64-smrbs-4.1", + "parent_channel_label": "sle-product-suse-manager-retail-branch-server-4.1-pool-x86_64", + "product_id": 1955, + "repository_id": 4059, + "parent_product_id": 1946, + "root_product_id": 2014, + "update_tag": "SLE-Module-Server-Applications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP2/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Server-Applications15-SP2-Debuginfo-Pool for x86_64 SMRBS 4.1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-product-ha15-sp2-updates-x86_64-smrbs-4.1", + "parent_channel_label": "sle-product-suse-manager-retail-branch-server-4.1-pool-x86_64", + "product_id": 1959, + "repository_id": 4076, + "parent_product_id": 1955, + "root_product_id": 2014, + "update_tag": "SLE-Product-HA", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-HA/15-SP2/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HA15-SP2-Updates for x86_64 SMRBS 4.1", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-product-ha15-sp2-debuginfo-updates-x86_64-smrbs-4.1", + "parent_channel_label": "sle-product-suse-manager-retail-branch-server-4.1-pool-x86_64", + "product_id": 1959, + "repository_id": 4077, + "parent_product_id": 1955, + "root_product_id": 2014, + "update_tag": "SLE-Product-HA", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-HA/15-SP2/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HA15-SP2-Debuginfo-Updates for x86_64 SMRBS 4.1", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-product-ha15-sp2-pool-x86_64-smrbs-4.1", + "parent_channel_label": "sle-product-suse-manager-retail-branch-server-4.1-pool-x86_64", + "product_id": 1959, + "repository_id": 4078, + "parent_product_id": 1955, + "root_product_id": 2014, + "update_tag": "SLE-Product-HA", + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP2/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HA15-SP2-Pool for x86_64 SMRBS 4.1", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-product-ha15-sp2-debuginfo-pool-x86_64-smrbs-4.1", + "parent_channel_label": "sle-product-suse-manager-retail-branch-server-4.1-pool-x86_64", + "product_id": 1959, + "repository_id": 4079, + "parent_product_id": 1955, + "root_product_id": 2014, + "update_tag": "SLE-Product-HA", + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP2/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HA15-SP2-Debuginfo-Pool for x86_64 SMRBS 4.1", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-web-scripting15-sp2-updates-x86_64-smrbs-4.1", + "parent_channel_label": "sle-product-suse-manager-retail-branch-server-4.1-pool-x86_64", + "product_id": 1976, + "repository_id": 4161, + "parent_product_id": 1955, + "root_product_id": 2014, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/15-SP2/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Web-Scripting15-SP2-Updates for x86_64 SMRBS 4.1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-web-scripting15-sp2-debuginfo-updates-x86_64-smrbs-4.1", + "parent_channel_label": "sle-product-suse-manager-retail-branch-server-4.1-pool-x86_64", + "product_id": 1976, + "repository_id": 4162, + "parent_product_id": 1955, + "root_product_id": 2014, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/15-SP2/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Web-Scripting15-SP2-Debuginfo-Updates for x86_64 SMRBS 4.1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-web-scripting15-sp2-pool-x86_64-smrbs-4.1", + "parent_channel_label": "sle-product-suse-manager-retail-branch-server-4.1-pool-x86_64", + "product_id": 1976, + "repository_id": 4163, + "parent_product_id": 1955, + "root_product_id": 2014, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP2/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Web-Scripting15-SP2-Pool for x86_64 SMRBS 4.1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-web-scripting15-sp2-debuginfo-pool-x86_64-smrbs-4.1", + "parent_channel_label": "sle-product-suse-manager-retail-branch-server-4.1-pool-x86_64", + "product_id": 1976, + "repository_id": 4164, + "parent_product_id": 1955, + "root_product_id": 2014, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP2/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Web-Scripting15-SP2-Debuginfo-Pool for x86_64 SMRBS 4.1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-legacy15-sp2-updates-x86_64-smrbs-4.1", + "parent_channel_label": "sle-product-suse-manager-retail-branch-server-4.1-pool-x86_64", + "product_id": 1982, + "repository_id": 4191, + "parent_product_id": 1955, + "root_product_id": 2014, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/15-SP2/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy15-SP2-Updates for x86_64 SMRBS 4.1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-legacy15-sp2-debuginfo-updates-x86_64-smrbs-4.1", + "parent_channel_label": "sle-product-suse-manager-retail-branch-server-4.1-pool-x86_64", + "product_id": 1982, + "repository_id": 4192, + "parent_product_id": 1955, + "root_product_id": 2014, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/15-SP2/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy15-SP2-Debuginfo-Updates for x86_64 SMRBS 4.1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-legacy15-sp2-pool-x86_64-smrbs-4.1", + "parent_channel_label": "sle-product-suse-manager-retail-branch-server-4.1-pool-x86_64", + "product_id": 1982, + "repository_id": 4193, + "parent_product_id": 1955, + "root_product_id": 2014, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15-SP2/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy15-SP2-Pool for x86_64 SMRBS 4.1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-legacy15-sp2-debuginfo-pool-x86_64-smrbs-4.1", + "parent_channel_label": "sle-product-suse-manager-retail-branch-server-4.1-pool-x86_64", + "product_id": 1982, + "repository_id": 4194, + "parent_product_id": 1955, + "root_product_id": 2014, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15-SP2/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy15-SP2-Debuginfo-Pool for x86_64 SMRBS 4.1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-public-cloud15-sp2-updates-x86_64-smrbs-4.1", + "parent_channel_label": "sle-product-suse-manager-retail-branch-server-4.1-pool-x86_64", + "product_id": 1988, + "repository_id": 4221, + "parent_product_id": 1955, + "root_product_id": 2014, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/15-SP2/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud15-SP2-Updates for x86_64 SMRBS 4.1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-public-cloud15-sp2-debuginfo-updates-x86_64-smrbs-4.1", + "parent_channel_label": "sle-product-suse-manager-retail-branch-server-4.1-pool-x86_64", + "product_id": 1988, + "repository_id": 4222, + "parent_product_id": 1955, + "root_product_id": 2014, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/15-SP2/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud15-SP2-Debuginfo-Updates for x86_64 SMRBS 4.1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-public-cloud15-sp2-pool-x86_64-smrbs-4.1", + "parent_channel_label": "sle-product-suse-manager-retail-branch-server-4.1-pool-x86_64", + "product_id": 1988, + "repository_id": 4223, + "parent_product_id": 1955, + "root_product_id": 2014, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP2/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud15-SP2-Pool for x86_64 SMRBS 4.1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-public-cloud15-sp2-debuginfo-pool-x86_64-smrbs-4.1", + "parent_channel_label": "sle-product-suse-manager-retail-branch-server-4.1-pool-x86_64", + "product_id": 1988, + "repository_id": 4224, + "parent_product_id": 1955, + "root_product_id": 2014, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP2/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud15-SP2-Debuginfo-Pool for x86_64 SMRBS 4.1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-suse-manager-proxy-4.1-updates-x86_64-smrbs", + "parent_channel_label": "sle-product-suse-manager-retail-branch-server-4.1-pool-x86_64", + "product_id": 2015, + "repository_id": 4351, + "parent_product_id": 1955, + "root_product_id": 2014, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-SUSE-Manager-Proxy/4.1/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-SUSE-Manager-Proxy-4.1-Updates for x86_64 SMRBS", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-suse-manager-proxy-4.1-debuginfo-updates-x86_64-smrbs", + "parent_channel_label": "sle-product-suse-manager-retail-branch-server-4.1-pool-x86_64", + "product_id": 2015, + "repository_id": 4352, + "parent_product_id": 1955, + "root_product_id": 2014, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-SUSE-Manager-Proxy/4.1/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-SUSE-Manager-Proxy-4.1-Debuginfo-Updates for x86_64 SMRBS", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-suse-manager-proxy-4.1-pool-x86_64-smrbs", + "parent_channel_label": "sle-product-suse-manager-retail-branch-server-4.1-pool-x86_64", + "product_id": 2015, + "repository_id": 4353, + "parent_product_id": 1955, + "root_product_id": 2014, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-SUSE-Manager-Proxy/4.1/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-SUSE-Manager-Proxy-4.1-Pool for x86_64 SMRBS", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-suse-manager-proxy-4.1-debuginfo-pool-x86_64-smrbs", + "parent_channel_label": "sle-product-suse-manager-retail-branch-server-4.1-pool-x86_64", + "product_id": 2015, + "repository_id": 4354, + "parent_product_id": 1955, + "root_product_id": 2014, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-SUSE-Manager-Proxy/4.1/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-SUSE-Manager-Proxy-4.1-Debuginfo-Pool for x86_64 SMRBS", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-suse-manager-retail-branch-server-4.1-updates-x86_64", + "parent_channel_label": "sle-product-suse-manager-retail-branch-server-4.1-pool-x86_64", + "product_id": 2016, + "repository_id": 4356, + "parent_product_id": 2015, + "root_product_id": 2014, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-SUSE-Manager-Retail-Branch-Server/4.1/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-SUSE-Manager-Retail-Branch-Server-4.1-Updates for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-suse-manager-retail-branch-server-4.1-debuginfo-updates-x86_64", + "parent_channel_label": "sle-product-suse-manager-retail-branch-server-4.1-pool-x86_64", + "product_id": 2016, + "repository_id": 4357, + "parent_product_id": 2015, + "root_product_id": 2014, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-SUSE-Manager-Retail-Branch-Server/4.1/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-SUSE-Manager-Retail-Branch-Server-4.1-Debuginfo-Updates for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-suse-manager-retail-branch-server-4.1-pool-x86_64", + "parent_channel_label": "sle-product-suse-manager-retail-branch-server-4.1-pool-x86_64", + "product_id": 2016, + "repository_id": 4358, + "parent_product_id": 2015, + "root_product_id": 2014, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-SUSE-Manager-Retail-Branch-Server/4.1/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-SUSE-Manager-Retail-Branch-Server-4.1-Pool for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-suse-manager-retail-branch-server-4.1-debuginfo-pool-x86_64", + "parent_channel_label": "sle-product-suse-manager-retail-branch-server-4.1-pool-x86_64", + "product_id": 2016, + "repository_id": 4359, + "parent_product_id": 2015, + "root_product_id": 2014, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-SUSE-Manager-Retail-Branch-Server/4.1/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-SUSE-Manager-Retail-Branch-Server-4.1-Debuginfo-Pool for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-containers15-sp2-updates-x86_64-smrbs-4.1", + "parent_channel_label": "sle-product-suse-manager-retail-branch-server-4.1-pool-x86_64", + "product_id": 1963, + "repository_id": 4096, + "parent_product_id": 1946, + "root_product_id": 2014, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/15-SP2/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers15-SP2-Updates for x86_64 SMRBS 4.1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-containers15-sp2-debuginfo-updates-x86_64-smrbs-4.1", + "parent_channel_label": "sle-product-suse-manager-retail-branch-server-4.1-pool-x86_64", + "product_id": 1963, + "repository_id": 4097, + "parent_product_id": 1946, + "root_product_id": 2014, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/15-SP2/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers15-SP2-Debuginfo-Updates for x86_64 SMRBS 4.1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-containers15-sp2-pool-x86_64-smrbs-4.1", + "parent_channel_label": "sle-product-suse-manager-retail-branch-server-4.1-pool-x86_64", + "product_id": 1963, + "repository_id": 4098, + "parent_product_id": 1946, + "root_product_id": 2014, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP2/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers15-SP2-Pool for x86_64 SMRBS 4.1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-containers15-sp2-debuginfo-pool-x86_64-smrbs-4.1", + "parent_channel_label": "sle-product-suse-manager-retail-branch-server-4.1-pool-x86_64", + "product_id": 1963, + "repository_id": 4099, + "parent_product_id": 1946, + "root_product_id": 2014, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP2/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers15-SP2-Debuginfo-Pool for x86_64 SMRBS 4.1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-desktop-applications15-sp2-updates-x86_64-smrbs-4.1", + "parent_channel_label": "sle-product-suse-manager-retail-branch-server-4.1-pool-x86_64", + "product_id": 1967, + "repository_id": 4116, + "parent_product_id": 1946, + "root_product_id": 2014, + "update_tag": "SLE-Module-Desktop-Applications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15-SP2/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Desktop-Applications15-SP2-Updates for x86_64 SMRBS 4.1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-desktop-applications15-sp2-debuginfo-updates-x86_64-smrbs-4.1", + "parent_channel_label": "sle-product-suse-manager-retail-branch-server-4.1-pool-x86_64", + "product_id": 1967, + "repository_id": 4117, + "parent_product_id": 1946, + "root_product_id": 2014, + "update_tag": "SLE-Module-Desktop-Applications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15-SP2/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Desktop-Applications15-SP2-Debuginfo-Updates for x86_64 SMRBS 4.1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-desktop-applications15-sp2-pool-x86_64-smrbs-4.1", + "parent_channel_label": "sle-product-suse-manager-retail-branch-server-4.1-pool-x86_64", + "product_id": 1967, + "repository_id": 4118, + "parent_product_id": 1946, + "root_product_id": 2014, + "update_tag": "SLE-Module-Desktop-Applications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP2/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Desktop-Applications15-SP2-Pool for x86_64 SMRBS 4.1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-desktop-applications15-sp2-debuginfo-pool-x86_64-smrbs-4.1", + "parent_channel_label": "sle-product-suse-manager-retail-branch-server-4.1-pool-x86_64", + "product_id": 1967, + "repository_id": 4119, + "parent_product_id": 1946, + "root_product_id": 2014, + "update_tag": "SLE-Module-Desktop-Applications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP2/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Desktop-Applications15-SP2-Debuginfo-Pool for x86_64 SMRBS 4.1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-devtools15-sp2-updates-x86_64-smrbs-4.1", + "parent_channel_label": "sle-product-suse-manager-retail-branch-server-4.1-pool-x86_64", + "product_id": 1971, + "repository_id": 4136, + "parent_product_id": 1967, + "root_product_id": 2014, + "update_tag": "SLE-Module-Development-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15-SP2/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-DevTools15-SP2-Updates for x86_64 SMRBS 4.1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-devtools15-sp2-debuginfo-updates-x86_64-smrbs-4.1", + "parent_channel_label": "sle-product-suse-manager-retail-branch-server-4.1-pool-x86_64", + "product_id": 1971, + "repository_id": 4137, + "parent_product_id": 1967, + "root_product_id": 2014, + "update_tag": "SLE-Module-Development-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15-SP2/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-DevTools15-SP2-Debuginfo-Updates for x86_64 SMRBS 4.1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-devtools15-sp2-pool-x86_64-smrbs-4.1", + "parent_channel_label": "sle-product-suse-manager-retail-branch-server-4.1-pool-x86_64", + "product_id": 1971, + "repository_id": 4138, + "parent_product_id": 1967, + "root_product_id": 2014, + "update_tag": "SLE-Module-Development-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP2/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-DevTools15-SP2-Pool for x86_64 SMRBS 4.1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-devtools15-sp2-debuginfo-pool-x86_64-smrbs-4.1", + "parent_channel_label": "sle-product-suse-manager-retail-branch-server-4.1-pool-x86_64", + "product_id": 1971, + "repository_id": 4139, + "parent_product_id": 1967, + "root_product_id": 2014, + "update_tag": "SLE-Module-Development-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP2/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-DevTools15-SP2-Debuginfo-Pool for x86_64 SMRBS 4.1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-python2-15-sp2-updates-x86_64-smrbs-4.1", + "parent_channel_label": "sle-product-suse-manager-retail-branch-server-4.1-pool-x86_64", + "product_id": 1992, + "repository_id": 4241, + "parent_product_id": 1946, + "root_product_id": 2014, + "update_tag": "SLE-Module-Python2", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Python2/15-SP2/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Python2-15-SP2-Updates for x86_64 SMRBS 4.1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-python2-15-sp2-debuginfo-updates-x86_64-smrbs-4.1", + "parent_channel_label": "sle-product-suse-manager-retail-branch-server-4.1-pool-x86_64", + "product_id": 1992, + "repository_id": 4242, + "parent_product_id": 1946, + "root_product_id": 2014, + "update_tag": "SLE-Module-Python2", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Python2/15-SP2/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Python2-15-SP2-Debuginfo-Updates for x86_64 SMRBS 4.1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-python2-15-sp2-pool-x86_64-smrbs-4.1", + "parent_channel_label": "sle-product-suse-manager-retail-branch-server-4.1-pool-x86_64", + "product_id": 1992, + "repository_id": 4243, + "parent_product_id": 1946, + "root_product_id": 2014, + "update_tag": "SLE-Module-Python2", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Python2/15-SP2/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Python2-15-SP2-Pool for x86_64 SMRBS 4.1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-python2-15-sp2-debuginfo-pool-x86_64-smrbs-4.1", + "parent_channel_label": "sle-product-suse-manager-retail-branch-server-4.1-pool-x86_64", + "product_id": 1992, + "repository_id": 4244, + "parent_product_id": 1946, + "root_product_id": 2014, + "update_tag": "SLE-Module-Python2", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Python2/15-SP2/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Python2-15-SP2-Debuginfo-Pool for x86_64 SMRBS 4.1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-product-hpc-15-sp3-updates-aarch64", + "parent_channel_label": "sle-product-hpc-15-sp3-pool-aarch64", + "product_id": 2132, + "repository_id": 4564, + "parent_product_id": null, + "root_product_id": 2132, + "update_tag": "SLE-Product-HPC", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-HPC/15-SP3/aarch64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HPC-15-SP3-Updates for aarch64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-hpc15-sp3-debuginfo-updates-aarch64", + "parent_channel_label": "sle-product-hpc-15-sp3-pool-aarch64", + "product_id": 2132, + "repository_id": 4565, + "parent_product_id": null, + "root_product_id": 2132, + "update_tag": "SLE-Product-HPC", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-HPC/15-SP3/aarch64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HPC15-SP3-Debuginfo-Updates for aarch64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-hpc-15-sp3-pool-aarch64", + "parent_channel_label": null, + "product_id": 2132, + "repository_id": 4566, + "parent_product_id": null, + "root_product_id": 2132, + "update_tag": "SLE-Product-HPC", + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-HPC/15-SP3/aarch64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HPC-15-SP3-Pool for aarch64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-hpc15-sp3-debuginfo-pool-aarch64", + "parent_channel_label": "sle-product-hpc-15-sp3-pool-aarch64", + "product_id": 2132, + "repository_id": 4567, + "parent_product_id": null, + "root_product_id": 2132, + "update_tag": "SLE-Product-HPC", + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-HPC/15-SP3/aarch64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HPC15-SP3-Debuginfo-Pool for aarch64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-basesystem15-sp3-updates-aarch64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp3-pool-aarch64", + "product_id": 2142, + "repository_id": 4619, + "parent_product_id": 2132, + "root_product_id": 2132, + "update_tag": "SLE-Module-Basesystem", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15-SP3/aarch64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Basesystem15-SP3-Updates for aarch64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-basesystem15-sp3-debuginfo-updates-aarch64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp3-pool-aarch64", + "product_id": 2142, + "repository_id": 4620, + "parent_product_id": 2132, + "root_product_id": 2132, + "update_tag": "SLE-Module-Basesystem", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15-SP3/aarch64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Basesystem15-SP3-Debuginfo-Updates for aarch64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-basesystem15-sp3-pool-aarch64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp3-pool-aarch64", + "product_id": 2142, + "repository_id": 4621, + "parent_product_id": 2132, + "root_product_id": 2132, + "update_tag": "SLE-Module-Basesystem", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP3/aarch64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Basesystem15-SP3-Pool for aarch64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-basesystem15-sp3-debuginfo-pool-aarch64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp3-pool-aarch64", + "product_id": 2142, + "repository_id": 4622, + "parent_product_id": 2132, + "root_product_id": 2132, + "update_tag": "SLE-Module-Basesystem", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP3/aarch64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Basesystem15-SP3-Debuginfo-Pool for aarch64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-manager-tools15-updates-aarch64-hpc-sp3", + "parent_channel_label": "sle-product-hpc-15-sp3-pool-aarch64", + "product_id": 1709, + "repository_id": 2917, + "parent_product_id": 2142, + "root_product_id": 2132, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/15/aarch64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-Updates for aarch64 HPC SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools15-debuginfo-updates-aarch64-hpc-sp3", + "parent_channel_label": "sle-product-hpc-15-sp3-pool-aarch64", + "product_id": 1709, + "repository_id": 2918, + "parent_product_id": 2142, + "root_product_id": 2132, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/15/aarch64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-Debuginfo-Updates for aarch64 HPC SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools15-pool-aarch64-hpc-sp3", + "parent_channel_label": "sle-product-hpc-15-sp3-pool-aarch64", + "product_id": 1709, + "repository_id": 2919, + "parent_product_id": 2142, + "root_product_id": 2132, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/15/aarch64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-Pool for aarch64 HPC SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools15-debuginfo-pool-aarch64-hpc-sp3", + "parent_channel_label": "sle-product-hpc-15-sp3-pool-aarch64", + "product_id": 1709, + "repository_id": 2920, + "parent_product_id": 2142, + "root_product_id": 2132, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/15/aarch64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-Debuginfo-Pool for aarch64 HPC SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools15-beta-updates-aarch64-hpc-sp3", + "parent_channel_label": "sle-product-hpc-15-sp3-pool-aarch64", + "product_id": 1925, + "repository_id": 3891, + "parent_product_id": 1709, + "root_product_id": 2132, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/15-BETA/aarch64/update/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-BETA-Updates for aarch64 HPC SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools15-beta-debuginfo-updates-aarch64-hpc-sp3", + "parent_channel_label": "sle-product-hpc-15-sp3-pool-aarch64", + "product_id": 1925, + "repository_id": 3892, + "parent_product_id": 1709, + "root_product_id": 2132, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/15-BETA/aarch64/update_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-BETA-Debuginfo-Updates for aarch64 HPC SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools15-beta-pool-aarch64-hpc-sp3", + "parent_channel_label": "sle-product-hpc-15-sp3-pool-aarch64", + "product_id": 1925, + "repository_id": 3899, + "parent_product_id": 1709, + "root_product_id": 2132, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/15-BETA/aarch64/product/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-BETA-Pool for aarch64 HPC SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools15-beta-debuginfo-pool-aarch64-hpc-sp3", + "parent_channel_label": "sle-product-hpc-15-sp3-pool-aarch64", + "product_id": 1925, + "repository_id": 3900, + "parent_product_id": 1709, + "root_product_id": 2132, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/15-BETA/aarch64/product_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-BETA-Debuginfo-Pool for aarch64 HPC SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-module-desktop-applications15-sp3-updates-aarch64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp3-pool-aarch64", + "product_id": 2146, + "repository_id": 4639, + "parent_product_id": 2142, + "root_product_id": 2132, + "update_tag": "SLE-Module-Desktop-Applications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15-SP3/aarch64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Desktop-Applications15-SP3-Updates for aarch64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-desktop-applications15-sp3-debuginfo-updates-aarch64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp3-pool-aarch64", + "product_id": 2146, + "repository_id": 4640, + "parent_product_id": 2142, + "root_product_id": 2132, + "update_tag": "SLE-Module-Desktop-Applications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15-SP3/aarch64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Desktop-Applications15-SP3-Debuginfo-Updates for aarch64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-desktop-applications15-sp3-pool-aarch64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp3-pool-aarch64", + "product_id": 2146, + "repository_id": 4641, + "parent_product_id": 2142, + "root_product_id": 2132, + "update_tag": "SLE-Module-Desktop-Applications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP3/aarch64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Desktop-Applications15-SP3-Pool for aarch64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-desktop-applications15-sp3-debuginfo-pool-aarch64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp3-pool-aarch64", + "product_id": 2146, + "repository_id": 4642, + "parent_product_id": 2142, + "root_product_id": 2132, + "update_tag": "SLE-Module-Desktop-Applications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP3/aarch64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Desktop-Applications15-SP3-Debuginfo-Pool for aarch64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-devtools15-sp3-updates-aarch64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp3-pool-aarch64", + "product_id": 2158, + "repository_id": 4699, + "parent_product_id": 2146, + "root_product_id": 2132, + "update_tag": "SLE-Module-Development-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15-SP3/aarch64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-DevTools15-SP3-Updates for aarch64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-devtools15-sp3-debuginfo-updates-aarch64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp3-pool-aarch64", + "product_id": 2158, + "repository_id": 4700, + "parent_product_id": 2146, + "root_product_id": 2132, + "update_tag": "SLE-Module-Development-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15-SP3/aarch64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-DevTools15-SP3-Debuginfo-Updates for aarch64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-devtools15-sp3-pool-aarch64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp3-pool-aarch64", + "product_id": 2158, + "repository_id": 4701, + "parent_product_id": 2146, + "root_product_id": 2132, + "update_tag": "SLE-Module-Development-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP3/aarch64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-DevTools15-SP3-Pool for aarch64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-devtools15-sp3-debuginfo-pool-aarch64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp3-pool-aarch64", + "product_id": 2158, + "repository_id": 4702, + "parent_product_id": 2146, + "root_product_id": 2132, + "update_tag": "SLE-Module-Development-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP3/aarch64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-DevTools15-SP3-Debuginfo-Pool for aarch64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-nvidia-compute-15-updates-aarch64-hpc-sp3", + "parent_channel_label": "sle-product-hpc-15-sp3-pool-aarch64", + "product_id": 2130, + "repository_id": 4560, + "parent_product_id": 2158, + "root_product_id": 2132, + "update_tag": "SLE-Module-NVIDIA-Compute", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-NVIDIA-Compute/15/aarch64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-NVIDIA-Compute-15-Updates for aarch64 HPC SP3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-nvidia-compute-15-pool-aarch64-hpc-sp3", + "parent_channel_label": "sle-product-hpc-15-sp3-pool-aarch64", + "product_id": 2130, + "repository_id": 4561, + "parent_product_id": 2158, + "root_product_id": 2132, + "update_tag": "SLE-Module-NVIDIA-Compute", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-NVIDIA-Compute/15/aarch64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-NVIDIA-Compute-15-Pool for aarch64 HPC SP3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "nvidia-compute-sle-15-aarch64-hpc-sp3", + "parent_channel_label": "sle-product-hpc-15-sp3-pool-aarch64", + "product_id": 2130, + "repository_id": 4562, + "parent_product_id": 2158, + "root_product_id": 2132, + "update_tag": null, + "url": "https://developer.download.nvidia.com/compute/cuda/repos/sles15/sbsa/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "NVIDIA-Compute-SLE-15 for aarch64 HPC SP3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-server-applications15-sp3-updates-aarch64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp3-pool-aarch64", + "product_id": 2150, + "repository_id": 4659, + "parent_product_id": 2142, + "root_product_id": 2132, + "update_tag": "SLE-Module-Server-Applications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15-SP3/aarch64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Server-Applications15-SP3-Updates for aarch64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-server-applications15-sp3-debuginfo-updates-aarch64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp3-pool-aarch64", + "product_id": 2150, + "repository_id": 4660, + "parent_product_id": 2142, + "root_product_id": 2132, + "update_tag": "SLE-Module-Server-Applications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15-SP3/aarch64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Server-Applications15-SP3-Debuginfo-Updates for aarch64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-server-applications15-sp3-pool-aarch64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp3-pool-aarch64", + "product_id": 2150, + "repository_id": 4661, + "parent_product_id": 2142, + "root_product_id": 2132, + "update_tag": "SLE-Module-Server-Applications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP3/aarch64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Server-Applications15-SP3-Pool for aarch64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-server-applications15-sp3-debuginfo-pool-aarch64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp3-pool-aarch64", + "product_id": 2150, + "repository_id": 4662, + "parent_product_id": 2142, + "root_product_id": 2132, + "update_tag": "SLE-Module-Server-Applications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP3/aarch64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Server-Applications15-SP3-Debuginfo-Pool for aarch64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting15-sp3-updates-aarch64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp3-pool-aarch64", + "product_id": 2162, + "repository_id": 4719, + "parent_product_id": 2150, + "root_product_id": 2132, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/15-SP3/aarch64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Web-Scripting15-SP3-Updates for aarch64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting15-sp3-debuginfo-updates-aarch64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp3-pool-aarch64", + "product_id": 2162, + "repository_id": 4720, + "parent_product_id": 2150, + "root_product_id": 2132, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/15-SP3/aarch64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Web-Scripting15-SP3-Debuginfo-Updates for aarch64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting15-sp3-pool-aarch64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp3-pool-aarch64", + "product_id": 2162, + "repository_id": 4721, + "parent_product_id": 2150, + "root_product_id": 2132, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP3/aarch64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Web-Scripting15-SP3-Pool for aarch64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting15-sp3-debuginfo-pool-aarch64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp3-pool-aarch64", + "product_id": 2162, + "repository_id": 4722, + "parent_product_id": 2150, + "root_product_id": 2132, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP3/aarch64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Web-Scripting15-SP3-Debuginfo-Pool for aarch64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-hpc15-sp3-updates-aarch64", + "parent_channel_label": "sle-product-hpc-15-sp3-pool-aarch64", + "product_id": 2166, + "repository_id": 4739, + "parent_product_id": 2162, + "root_product_id": 2132, + "update_tag": "SLE-Module-HPC", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-HPC/15-SP3/aarch64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-HPC15-SP3-Updates for aarch64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-hpc15-sp3-debuginfo-updates-aarch64", + "parent_channel_label": "sle-product-hpc-15-sp3-pool-aarch64", + "product_id": 2166, + "repository_id": 4740, + "parent_product_id": 2162, + "root_product_id": 2132, + "update_tag": "SLE-Module-HPC", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-HPC/15-SP3/aarch64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-HPC15-SP3-Debuginfo-Updates for aarch64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-hpc15-sp3-pool-aarch64", + "parent_channel_label": "sle-product-hpc-15-sp3-pool-aarch64", + "product_id": 2166, + "repository_id": 4741, + "parent_product_id": 2162, + "root_product_id": 2132, + "update_tag": "SLE-Module-HPC", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-HPC/15-SP3/aarch64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-HPC15-SP3-Pool for aarch64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-hpc15-sp3-debuginfo-pool-aarch64", + "parent_channel_label": "sle-product-hpc-15-sp3-pool-aarch64", + "product_id": 2166, + "repository_id": 4742, + "parent_product_id": 2162, + "root_product_id": 2132, + "update_tag": "SLE-Module-HPC", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-HPC/15-SP3/aarch64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-HPC15-SP3-Debuginfo-Pool for aarch64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-legacy15-sp3-updates-aarch64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp3-pool-aarch64", + "product_id": 2168, + "repository_id": 4749, + "parent_product_id": 2150, + "root_product_id": 2132, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/15-SP3/aarch64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy15-SP3-Updates for aarch64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-legacy15-sp3-debuginfo-updates-aarch64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp3-pool-aarch64", + "product_id": 2168, + "repository_id": 4750, + "parent_product_id": 2150, + "root_product_id": 2132, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/15-SP3/aarch64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy15-SP3-Debuginfo-Updates for aarch64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-legacy15-sp3-pool-aarch64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp3-pool-aarch64", + "product_id": 2168, + "repository_id": 4751, + "parent_product_id": 2150, + "root_product_id": 2132, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15-SP3/aarch64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy15-SP3-Pool for aarch64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-legacy15-sp3-debuginfo-pool-aarch64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp3-pool-aarch64", + "product_id": 2168, + "repository_id": 4752, + "parent_product_id": 2150, + "root_product_id": 2132, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15-SP3/aarch64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy15-SP3-Debuginfo-Pool for aarch64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud15-sp3-updates-aarch64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp3-pool-aarch64", + "product_id": 2172, + "repository_id": 4769, + "parent_product_id": 2150, + "root_product_id": 2132, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/15-SP3/aarch64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud15-SP3-Updates for aarch64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud15-sp3-debuginfo-updates-aarch64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp3-pool-aarch64", + "product_id": 2172, + "repository_id": 4770, + "parent_product_id": 2150, + "root_product_id": 2132, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/15-SP3/aarch64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud15-SP3-Debuginfo-Updates for aarch64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud15-sp3-pool-aarch64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp3-pool-aarch64", + "product_id": 2172, + "repository_id": 4771, + "parent_product_id": 2150, + "root_product_id": 2132, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP3/aarch64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud15-SP3-Pool for aarch64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud15-sp3-debuginfo-pool-aarch64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp3-pool-aarch64", + "product_id": 2172, + "repository_id": 4772, + "parent_product_id": 2150, + "root_product_id": 2132, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP3/aarch64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud15-SP3-Debuginfo-Pool for aarch64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-ha15-sp3-updates-aarch64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp3-pool-aarch64", + "product_id": 2192, + "repository_id": 4881, + "parent_product_id": 2150, + "root_product_id": 2132, + "update_tag": "SLE-Product-HA", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-HA/15-SP3/aarch64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HA15-SP3-Updates for aarch64 HPC", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-ha15-sp3-debuginfo-updates-aarch64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp3-pool-aarch64", + "product_id": 2192, + "repository_id": 4882, + "parent_product_id": 2150, + "root_product_id": 2132, + "update_tag": "SLE-Product-HA", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-HA/15-SP3/aarch64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HA15-SP3-Debuginfo-Updates for aarch64 HPC", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-ha15-sp3-pool-aarch64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp3-pool-aarch64", + "product_id": 2192, + "repository_id": 4883, + "parent_product_id": 2150, + "root_product_id": 2132, + "update_tag": "SLE-Product-HA", + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP3/aarch64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HA15-SP3-Pool for aarch64 HPC", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-ha15-sp3-debuginfo-pool-aarch64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp3-pool-aarch64", + "product_id": 2192, + "repository_id": 4884, + "parent_product_id": 2150, + "root_product_id": 2132, + "update_tag": "SLE-Product-HA", + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP3/aarch64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HA15-SP3-Debuginfo-Pool for aarch64 HPC", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-containers15-sp3-updates-aarch64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp3-pool-aarch64", + "product_id": 2154, + "repository_id": 4679, + "parent_product_id": 2142, + "root_product_id": 2132, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/15-SP3/aarch64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers15-SP3-Updates for aarch64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-containers15-sp3-debuginfo-updates-aarch64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp3-pool-aarch64", + "product_id": 2154, + "repository_id": 4680, + "parent_product_id": 2142, + "root_product_id": 2132, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/15-SP3/aarch64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers15-SP3-Debuginfo-Updates for aarch64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-containers15-sp3-pool-aarch64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp3-pool-aarch64", + "product_id": 2154, + "repository_id": 4681, + "parent_product_id": 2142, + "root_product_id": 2132, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP3/aarch64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers15-SP3-Pool for aarch64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-containers15-sp3-debuginfo-pool-aarch64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp3-pool-aarch64", + "product_id": 2154, + "repository_id": 4682, + "parent_product_id": 2142, + "root_product_id": 2132, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP3/aarch64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers15-SP3-Debuginfo-Pool for aarch64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-python2-15-sp3-updates-aarch64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp3-pool-aarch64", + "product_id": 2181, + "repository_id": 4814, + "parent_product_id": 2142, + "root_product_id": 2132, + "update_tag": "SLE-Module-Python2", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Python2/15-SP3/aarch64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Python2-15-SP3-Updates for aarch64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-python2-15-sp3-debuginfo-updates-aarch64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp3-pool-aarch64", + "product_id": 2181, + "repository_id": 4815, + "parent_product_id": 2142, + "root_product_id": 2132, + "update_tag": "SLE-Module-Python2", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Python2/15-SP3/aarch64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Python2-15-SP3-Debuginfo-Updates for aarch64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-python2-15-sp3-pool-aarch64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp3-pool-aarch64", + "product_id": 2181, + "repository_id": 4816, + "parent_product_id": 2142, + "root_product_id": 2132, + "update_tag": "SLE-Module-Python2", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Python2/15-SP3/aarch64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Python2-15-SP3-Pool for aarch64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-python2-15-sp3-debuginfo-pool-aarch64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp3-pool-aarch64", + "product_id": 2181, + "repository_id": 4817, + "parent_product_id": 2142, + "root_product_id": 2132, + "update_tag": "SLE-Module-Python2", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Python2/15-SP3/aarch64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Python2-15-SP3-Debuginfo-Pool for aarch64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-packagehub-15-sp3-backports-pool-aarch64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp3-pool-aarch64", + "product_id": 2188, + "repository_id": 4849, + "parent_product_id": 2142, + "root_product_id": 2132, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-15-SP3_aarch64/standard/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-15-SP3-Backports-Pool for aarch64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-packagehub-15-sp3-backports-debuginfo-aarch64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp3-pool-aarch64", + "product_id": 2188, + "repository_id": 4850, + "parent_product_id": 2142, + "root_product_id": 2132, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-15-SP3_aarch64/standard_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-15-SP3-Backports-Debuginfo for aarch64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-packagehub-subpackages15-sp3-updates-aarch64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp3-pool-aarch64", + "product_id": 2188, + "repository_id": 4851, + "parent_product_id": 2142, + "root_product_id": 2132, + "update_tag": "SLE-Module-Packagehub-Subpackages", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP3/aarch64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Packagehub-Subpackages15-SP3-Updates for aarch64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-packagehub-subpackages15-sp3-debuginfo-updates-aarch64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp3-pool-aarch64", + "product_id": 2188, + "repository_id": 4852, + "parent_product_id": 2142, + "root_product_id": 2132, + "update_tag": "SLE-Module-Packagehub-Subpackages", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP3/aarch64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Packagehub-Subpackages15-SP3-Debuginfo-Updates for aarch64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-packagehub-15-sp3-pool-aarch64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp3-pool-aarch64", + "product_id": 2188, + "repository_id": 4853, + "parent_product_id": 2142, + "root_product_id": 2132, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-15-SP3_aarch64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-15-SP3-Pool for aarch64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-packagehub-subpackages15-sp3-pool-aarch64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp3-pool-aarch64", + "product_id": 2188, + "repository_id": 4854, + "parent_product_id": 2142, + "root_product_id": 2132, + "update_tag": "SLE-Module-Packagehub-Subpackages", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP3/aarch64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Packagehub-Subpackages15-SP3-Pool for aarch64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-packagehub-subpackages15-sp3-debuginfo-pool-aarch64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp3-pool-aarch64", + "product_id": 2188, + "repository_id": 4855, + "parent_product_id": 2142, + "root_product_id": 2132, + "update_tag": "SLE-Module-Packagehub-Subpackages", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP3/aarch64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Packagehub-Subpackages15-SP3-Debuginfo-Pool for aarch64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-hpc-15-sp3-ltss-updates-aarch64", + "parent_channel_label": "sle-product-hpc-15-sp3-pool-aarch64", + "product_id": 2212, + "repository_id": 4951, + "parent_product_id": 2132, + "root_product_id": 2132, + "update_tag": "SLE-Product-HPC", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-HPC/15-SP3-LTSS/aarch64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HPC-15-SP3-LTSS-Updates for aarch64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-hpc-15-sp3-ltss-debuginfo-updates-aarch64", + "parent_channel_label": "sle-product-hpc-15-sp3-pool-aarch64", + "product_id": 2212, + "repository_id": 4952, + "parent_product_id": 2132, + "root_product_id": 2132, + "update_tag": "SLE-Product-HPC", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-HPC/15-SP3-LTSS/aarch64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HPC-15-SP3-LTSS-Debuginfo-Updates for aarch64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-hpc-15-sp3-ltss-pool-aarch64", + "parent_channel_label": "sle-product-hpc-15-sp3-pool-aarch64", + "product_id": 2212, + "repository_id": 4953, + "parent_product_id": 2132, + "root_product_id": 2132, + "update_tag": "SLE-Product-HPC", + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-HPC/15-SP3-LTSS/aarch64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HPC-15-SP3-LTSS-Pool for aarch64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-hpc-15-sp3-ltss-debuginfo-pool-aarch64", + "parent_channel_label": "sle-product-hpc-15-sp3-pool-aarch64", + "product_id": 2212, + "repository_id": 4954, + "parent_product_id": 2132, + "root_product_id": 2132, + "update_tag": "SLE-Product-HPC", + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-HPC/15-SP3-LTSS/aarch64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HPC-15-SP3-LTSS-Debuginfo-Pool for aarch64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-hpc-15-sp3-espos-updates-aarch64", + "parent_channel_label": "sle-product-hpc-15-sp3-pool-aarch64", + "product_id": 2214, + "repository_id": 4961, + "parent_product_id": 2132, + "root_product_id": 2132, + "update_tag": "SLE-Product-HPC", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-HPC/15-SP3-ESPOS/aarch64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HPC-15-SP3-ESPOS-Updates for aarch64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-hpc-15-sp3-espos-debuginfo-updates-aarch64", + "parent_channel_label": "sle-product-hpc-15-sp3-pool-aarch64", + "product_id": 2214, + "repository_id": 4962, + "parent_product_id": 2132, + "root_product_id": 2132, + "update_tag": "SLE-Product-HPC", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-HPC/15-SP3-ESPOS/aarch64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HPC-15-SP3-ESPOS-Debuginfo-Updates for aarch64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-hpc-15-sp3-espos-pool-aarch64", + "parent_channel_label": "sle-product-hpc-15-sp3-pool-aarch64", + "product_id": 2214, + "repository_id": 4963, + "parent_product_id": 2132, + "root_product_id": 2132, + "update_tag": "SLE-Product-HPC", + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-HPC/15-SP3-ESPOS/aarch64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HPC-15-SP3-ESPOS-Pool for aarch64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-hpc-15-sp3-espos-debuginfo-pool-aarch64", + "parent_channel_label": "sle-product-hpc-15-sp3-pool-aarch64", + "product_id": 2214, + "repository_id": 4964, + "parent_product_id": 2132, + "root_product_id": 2132, + "update_tag": "SLE-Product-HPC", + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-HPC/15-SP3-ESPOS/aarch64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HPC-15-SP3-ESPOS-Debuginfo-Pool for aarch64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-certifications-15-sp3-updates-aarch64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp3-pool-aarch64", + "product_id": 2386, + "repository_id": 5512, + "parent_product_id": 2132, + "root_product_id": 2132, + "update_tag": "SLE-Module-Certifications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Certifications/15-SP3/aarch64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Certifications-15-SP3-Updates for aarch64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-certifications-15-sp3-debuginfo-updates-aarch64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp3-pool-aarch64", + "product_id": 2386, + "repository_id": 5513, + "parent_product_id": 2132, + "root_product_id": 2132, + "update_tag": "SLE-Module-Certifications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Certifications/15-SP3/aarch64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Certifications-15-SP3-Debuginfo-Updates for aarch64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-certifications-15-sp3-pool-aarch64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp3-pool-aarch64", + "product_id": 2386, + "repository_id": 5514, + "parent_product_id": 2132, + "root_product_id": 2132, + "update_tag": "SLE-Module-Certifications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Certifications/15-SP3/aarch64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Certifications-15-SP3-Pool for aarch64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-certifications-15-sp3-debuginfo-pool-aarch64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp3-pool-aarch64", + "product_id": 2386, + "repository_id": 5515, + "parent_product_id": 2132, + "root_product_id": 2132, + "update_tag": "SLE-Module-Certifications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Certifications/15-SP3/aarch64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Certifications-15-SP3-Debuginfo-Pool for aarch64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-hpc-15-sp3-updates-x86_64", + "parent_channel_label": "sle-product-hpc-15-sp3-pool-x86_64", + "product_id": 2133, + "repository_id": 4569, + "parent_product_id": null, + "root_product_id": 2133, + "update_tag": "SLE-Product-HPC", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-HPC/15-SP3/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HPC-15-SP3-Updates for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-hpc15-sp3-debuginfo-updates-x86_64", + "parent_channel_label": "sle-product-hpc-15-sp3-pool-x86_64", + "product_id": 2133, + "repository_id": 4570, + "parent_product_id": null, + "root_product_id": 2133, + "update_tag": "SLE-Product-HPC", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-HPC/15-SP3/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HPC15-SP3-Debuginfo-Updates for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-hpc-15-sp3-pool-x86_64", + "parent_channel_label": null, + "product_id": 2133, + "repository_id": 4571, + "parent_product_id": null, + "root_product_id": 2133, + "update_tag": "SLE-Product-HPC", + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-HPC/15-SP3/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HPC-15-SP3-Pool for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-hpc15-sp3-debuginfo-pool-x86_64", + "parent_channel_label": "sle-product-hpc-15-sp3-pool-x86_64", + "product_id": 2133, + "repository_id": 4572, + "parent_product_id": null, + "root_product_id": 2133, + "update_tag": "SLE-Product-HPC", + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-HPC/15-SP3/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HPC15-SP3-Debuginfo-Pool for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-basesystem15-sp3-updates-x86_64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp3-pool-x86_64", + "product_id": 2145, + "repository_id": 4634, + "parent_product_id": 2133, + "root_product_id": 2133, + "update_tag": "SLE-Module-Basesystem", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15-SP3/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Basesystem15-SP3-Updates for x86_64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-basesystem15-sp3-debuginfo-updates-x86_64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp3-pool-x86_64", + "product_id": 2145, + "repository_id": 4635, + "parent_product_id": 2133, + "root_product_id": 2133, + "update_tag": "SLE-Module-Basesystem", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15-SP3/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Basesystem15-SP3-Debuginfo-Updates for x86_64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-basesystem15-sp3-pool-x86_64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp3-pool-x86_64", + "product_id": 2145, + "repository_id": 4636, + "parent_product_id": 2133, + "root_product_id": 2133, + "update_tag": "SLE-Module-Basesystem", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP3/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Basesystem15-SP3-Pool for x86_64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-basesystem15-sp3-debuginfo-pool-x86_64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp3-pool-x86_64", + "product_id": 2145, + "repository_id": 4637, + "parent_product_id": 2133, + "root_product_id": 2133, + "update_tag": "SLE-Module-Basesystem", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP3/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Basesystem15-SP3-Debuginfo-Pool for x86_64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-manager-tools15-updates-x86_64-hpc-sp3", + "parent_channel_label": "sle-product-hpc-15-sp3-pool-x86_64", + "product_id": 1712, + "repository_id": 2932, + "parent_product_id": 2145, + "root_product_id": 2133, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/15/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-Updates for x86_64 HPC SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools15-debuginfo-updates-x86_64-hpc-sp3", + "parent_channel_label": "sle-product-hpc-15-sp3-pool-x86_64", + "product_id": 1712, + "repository_id": 2933, + "parent_product_id": 2145, + "root_product_id": 2133, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/15/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-Debuginfo-Updates for x86_64 HPC SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools15-pool-x86_64-hpc-sp3", + "parent_channel_label": "sle-product-hpc-15-sp3-pool-x86_64", + "product_id": 1712, + "repository_id": 2934, + "parent_product_id": 2145, + "root_product_id": 2133, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/15/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-Pool for x86_64 HPC SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools15-debuginfo-pool-x86_64-hpc-sp3", + "parent_channel_label": "sle-product-hpc-15-sp3-pool-x86_64", + "product_id": 1712, + "repository_id": 2935, + "parent_product_id": 2145, + "root_product_id": 2133, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/15/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-Debuginfo-Pool for x86_64 HPC SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools15-beta-updates-x86_64-hpc-sp3", + "parent_channel_label": "sle-product-hpc-15-sp3-pool-x86_64", + "product_id": 1928, + "repository_id": 3897, + "parent_product_id": 1712, + "root_product_id": 2133, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/15-BETA/x86_64/update/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-BETA-Updates for x86_64 HPC SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools15-beta-debuginfo-updates-x86_64-hpc-sp3", + "parent_channel_label": "sle-product-hpc-15-sp3-pool-x86_64", + "product_id": 1928, + "repository_id": 3898, + "parent_product_id": 1712, + "root_product_id": 2133, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/15-BETA/x86_64/update_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-BETA-Debuginfo-Updates for x86_64 HPC SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools15-beta-pool-x86_64-hpc-sp3", + "parent_channel_label": "sle-product-hpc-15-sp3-pool-x86_64", + "product_id": 1928, + "repository_id": 3908, + "parent_product_id": 1712, + "root_product_id": 2133, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/15-BETA/x86_64/product/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-BETA-Pool for x86_64 HPC SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools15-beta-debuginfo-pool-x86_64-hpc-sp3", + "parent_channel_label": "sle-product-hpc-15-sp3-pool-x86_64", + "product_id": 1928, + "repository_id": 3909, + "parent_product_id": 1712, + "root_product_id": 2133, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/15-BETA/x86_64/product_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-BETA-Debuginfo-Pool for x86_64 HPC SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-module-desktop-applications15-sp3-updates-x86_64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp3-pool-x86_64", + "product_id": 2149, + "repository_id": 4654, + "parent_product_id": 2145, + "root_product_id": 2133, + "update_tag": "SLE-Module-Desktop-Applications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15-SP3/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Desktop-Applications15-SP3-Updates for x86_64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-desktop-applications15-sp3-debuginfo-updates-x86_64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp3-pool-x86_64", + "product_id": 2149, + "repository_id": 4655, + "parent_product_id": 2145, + "root_product_id": 2133, + "update_tag": "SLE-Module-Desktop-Applications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15-SP3/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Desktop-Applications15-SP3-Debuginfo-Updates for x86_64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-desktop-applications15-sp3-pool-x86_64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp3-pool-x86_64", + "product_id": 2149, + "repository_id": 4656, + "parent_product_id": 2145, + "root_product_id": 2133, + "update_tag": "SLE-Module-Desktop-Applications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP3/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Desktop-Applications15-SP3-Pool for x86_64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-desktop-applications15-sp3-debuginfo-pool-x86_64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp3-pool-x86_64", + "product_id": 2149, + "repository_id": 4657, + "parent_product_id": 2145, + "root_product_id": 2133, + "update_tag": "SLE-Module-Desktop-Applications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP3/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Desktop-Applications15-SP3-Debuginfo-Pool for x86_64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-devtools15-sp3-updates-x86_64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp3-pool-x86_64", + "product_id": 2161, + "repository_id": 4714, + "parent_product_id": 2149, + "root_product_id": 2133, + "update_tag": "SLE-Module-Development-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15-SP3/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-DevTools15-SP3-Updates for x86_64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-devtools15-sp3-debuginfo-updates-x86_64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp3-pool-x86_64", + "product_id": 2161, + "repository_id": 4715, + "parent_product_id": 2149, + "root_product_id": 2133, + "update_tag": "SLE-Module-Development-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15-SP3/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-DevTools15-SP3-Debuginfo-Updates for x86_64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-devtools15-sp3-pool-x86_64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp3-pool-x86_64", + "product_id": 2161, + "repository_id": 4716, + "parent_product_id": 2149, + "root_product_id": 2133, + "update_tag": "SLE-Module-Development-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP3/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-DevTools15-SP3-Pool for x86_64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-devtools15-sp3-debuginfo-pool-x86_64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp3-pool-x86_64", + "product_id": 2161, + "repository_id": 4717, + "parent_product_id": 2149, + "root_product_id": 2133, + "update_tag": "SLE-Module-Development-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP3/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-DevTools15-SP3-Debuginfo-Pool for x86_64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-nvidia-compute-15-updates-x86_64-hpc-sp3", + "parent_channel_label": "sle-product-hpc-15-sp3-pool-x86_64", + "product_id": 2131, + "repository_id": 4554, + "parent_product_id": 2161, + "root_product_id": 2133, + "update_tag": "SLE-Module-NVIDIA-Compute", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-NVIDIA-Compute/15/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-NVIDIA-Compute-15-Updates for x86_64 HPC SP3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-nvidia-compute-15-pool-x86_64-hpc-sp3", + "parent_channel_label": "sle-product-hpc-15-sp3-pool-x86_64", + "product_id": 2131, + "repository_id": 4556, + "parent_product_id": 2161, + "root_product_id": 2133, + "update_tag": "SLE-Module-NVIDIA-Compute", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-NVIDIA-Compute/15/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-NVIDIA-Compute-15-Pool for x86_64 HPC SP3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "nvidia-compute-sle-15-x86_64-hpc-sp3", + "parent_channel_label": "sle-product-hpc-15-sp3-pool-x86_64", + "product_id": 2131, + "repository_id": 4563, + "parent_product_id": 2161, + "root_product_id": 2133, + "update_tag": null, + "url": "https://developer.download.nvidia.com/compute/cuda/repos/sles15/x86_64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "NVIDIA-Compute-SLE-15 for x86_64 HPC SP3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-server-applications15-sp3-updates-x86_64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp3-pool-x86_64", + "product_id": 2153, + "repository_id": 4674, + "parent_product_id": 2145, + "root_product_id": 2133, + "update_tag": "SLE-Module-Server-Applications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15-SP3/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Server-Applications15-SP3-Updates for x86_64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-server-applications15-sp3-debuginfo-updates-x86_64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp3-pool-x86_64", + "product_id": 2153, + "repository_id": 4675, + "parent_product_id": 2145, + "root_product_id": 2133, + "update_tag": "SLE-Module-Server-Applications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15-SP3/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Server-Applications15-SP3-Debuginfo-Updates for x86_64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-server-applications15-sp3-pool-x86_64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp3-pool-x86_64", + "product_id": 2153, + "repository_id": 4676, + "parent_product_id": 2145, + "root_product_id": 2133, + "update_tag": "SLE-Module-Server-Applications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP3/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Server-Applications15-SP3-Pool for x86_64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-server-applications15-sp3-debuginfo-pool-x86_64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp3-pool-x86_64", + "product_id": 2153, + "repository_id": 4677, + "parent_product_id": 2145, + "root_product_id": 2133, + "update_tag": "SLE-Module-Server-Applications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP3/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Server-Applications15-SP3-Debuginfo-Pool for x86_64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting15-sp3-updates-x86_64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp3-pool-x86_64", + "product_id": 2165, + "repository_id": 4734, + "parent_product_id": 2153, + "root_product_id": 2133, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/15-SP3/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Web-Scripting15-SP3-Updates for x86_64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting15-sp3-debuginfo-updates-x86_64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp3-pool-x86_64", + "product_id": 2165, + "repository_id": 4735, + "parent_product_id": 2153, + "root_product_id": 2133, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/15-SP3/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Web-Scripting15-SP3-Debuginfo-Updates for x86_64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting15-sp3-pool-x86_64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp3-pool-x86_64", + "product_id": 2165, + "repository_id": 4736, + "parent_product_id": 2153, + "root_product_id": 2133, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP3/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Web-Scripting15-SP3-Pool for x86_64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting15-sp3-debuginfo-pool-x86_64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp3-pool-x86_64", + "product_id": 2165, + "repository_id": 4737, + "parent_product_id": 2153, + "root_product_id": 2133, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP3/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Web-Scripting15-SP3-Debuginfo-Pool for x86_64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-hpc15-sp3-updates-x86_64", + "parent_channel_label": "sle-product-hpc-15-sp3-pool-x86_64", + "product_id": 2167, + "repository_id": 4744, + "parent_product_id": 2165, + "root_product_id": 2133, + "update_tag": "SLE-Module-HPC", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-HPC/15-SP3/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-HPC15-SP3-Updates for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-hpc15-sp3-debuginfo-updates-x86_64", + "parent_channel_label": "sle-product-hpc-15-sp3-pool-x86_64", + "product_id": 2167, + "repository_id": 4745, + "parent_product_id": 2165, + "root_product_id": 2133, + "update_tag": "SLE-Module-HPC", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-HPC/15-SP3/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-HPC15-SP3-Debuginfo-Updates for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-hpc15-sp3-pool-x86_64", + "parent_channel_label": "sle-product-hpc-15-sp3-pool-x86_64", + "product_id": 2167, + "repository_id": 4746, + "parent_product_id": 2165, + "root_product_id": 2133, + "update_tag": "SLE-Module-HPC", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-HPC/15-SP3/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-HPC15-SP3-Pool for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-hpc15-sp3-debuginfo-pool-x86_64", + "parent_channel_label": "sle-product-hpc-15-sp3-pool-x86_64", + "product_id": 2167, + "repository_id": 4747, + "parent_product_id": 2165, + "root_product_id": 2133, + "update_tag": "SLE-Module-HPC", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-HPC/15-SP3/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-HPC15-SP3-Debuginfo-Pool for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-legacy15-sp3-updates-x86_64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp3-pool-x86_64", + "product_id": 2171, + "repository_id": 4764, + "parent_product_id": 2153, + "root_product_id": 2133, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/15-SP3/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy15-SP3-Updates for x86_64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-legacy15-sp3-debuginfo-updates-x86_64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp3-pool-x86_64", + "product_id": 2171, + "repository_id": 4765, + "parent_product_id": 2153, + "root_product_id": 2133, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/15-SP3/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy15-SP3-Debuginfo-Updates for x86_64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-legacy15-sp3-pool-x86_64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp3-pool-x86_64", + "product_id": 2171, + "repository_id": 4766, + "parent_product_id": 2153, + "root_product_id": 2133, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15-SP3/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy15-SP3-Pool for x86_64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-legacy15-sp3-debuginfo-pool-x86_64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp3-pool-x86_64", + "product_id": 2171, + "repository_id": 4767, + "parent_product_id": 2153, + "root_product_id": 2133, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15-SP3/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy15-SP3-Debuginfo-Pool for x86_64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud15-sp3-updates-x86_64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp3-pool-x86_64", + "product_id": 2175, + "repository_id": 4784, + "parent_product_id": 2153, + "root_product_id": 2133, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/15-SP3/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud15-SP3-Updates for x86_64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud15-sp3-debuginfo-updates-x86_64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp3-pool-x86_64", + "product_id": 2175, + "repository_id": 4785, + "parent_product_id": 2153, + "root_product_id": 2133, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/15-SP3/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud15-SP3-Debuginfo-Updates for x86_64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud15-sp3-pool-x86_64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp3-pool-x86_64", + "product_id": 2175, + "repository_id": 4786, + "parent_product_id": 2153, + "root_product_id": 2133, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP3/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud15-SP3-Pool for x86_64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud15-sp3-debuginfo-pool-x86_64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp3-pool-x86_64", + "product_id": 2175, + "repository_id": 4787, + "parent_product_id": 2153, + "root_product_id": 2133, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP3/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud15-SP3-Debuginfo-Pool for x86_64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-ha15-sp3-updates-x86_64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp3-pool-x86_64", + "product_id": 2195, + "repository_id": 4896, + "parent_product_id": 2153, + "root_product_id": 2133, + "update_tag": "SLE-Product-HA", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-HA/15-SP3/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HA15-SP3-Updates for x86_64 HPC", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-ha15-sp3-debuginfo-updates-x86_64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp3-pool-x86_64", + "product_id": 2195, + "repository_id": 4897, + "parent_product_id": 2153, + "root_product_id": 2133, + "update_tag": "SLE-Product-HA", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-HA/15-SP3/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HA15-SP3-Debuginfo-Updates for x86_64 HPC", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-ha15-sp3-pool-x86_64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp3-pool-x86_64", + "product_id": 2195, + "repository_id": 4898, + "parent_product_id": 2153, + "root_product_id": 2133, + "update_tag": "SLE-Product-HA", + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP3/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HA15-SP3-Pool for x86_64 HPC", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-ha15-sp3-debuginfo-pool-x86_64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp3-pool-x86_64", + "product_id": 2195, + "repository_id": 4899, + "parent_product_id": 2153, + "root_product_id": 2133, + "update_tag": "SLE-Product-HA", + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP3/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HA15-SP3-Debuginfo-Pool for x86_64 HPC", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-containers15-sp3-updates-x86_64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp3-pool-x86_64", + "product_id": 2157, + "repository_id": 4694, + "parent_product_id": 2145, + "root_product_id": 2133, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/15-SP3/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers15-SP3-Updates for x86_64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-containers15-sp3-debuginfo-updates-x86_64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp3-pool-x86_64", + "product_id": 2157, + "repository_id": 4695, + "parent_product_id": 2145, + "root_product_id": 2133, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/15-SP3/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers15-SP3-Debuginfo-Updates for x86_64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-containers15-sp3-pool-x86_64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp3-pool-x86_64", + "product_id": 2157, + "repository_id": 4696, + "parent_product_id": 2145, + "root_product_id": 2133, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP3/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers15-SP3-Pool for x86_64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-containers15-sp3-debuginfo-pool-x86_64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp3-pool-x86_64", + "product_id": 2157, + "repository_id": 4697, + "parent_product_id": 2145, + "root_product_id": 2133, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP3/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers15-SP3-Debuginfo-Pool for x86_64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-python2-15-sp3-updates-x86_64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp3-pool-x86_64", + "product_id": 2184, + "repository_id": 4829, + "parent_product_id": 2145, + "root_product_id": 2133, + "update_tag": "SLE-Module-Python2", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Python2/15-SP3/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Python2-15-SP3-Updates for x86_64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-python2-15-sp3-debuginfo-updates-x86_64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp3-pool-x86_64", + "product_id": 2184, + "repository_id": 4830, + "parent_product_id": 2145, + "root_product_id": 2133, + "update_tag": "SLE-Module-Python2", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Python2/15-SP3/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Python2-15-SP3-Debuginfo-Updates for x86_64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-python2-15-sp3-pool-x86_64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp3-pool-x86_64", + "product_id": 2184, + "repository_id": 4831, + "parent_product_id": 2145, + "root_product_id": 2133, + "update_tag": "SLE-Module-Python2", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Python2/15-SP3/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Python2-15-SP3-Pool for x86_64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-python2-15-sp3-debuginfo-pool-x86_64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp3-pool-x86_64", + "product_id": 2184, + "repository_id": 4832, + "parent_product_id": 2145, + "root_product_id": 2133, + "update_tag": "SLE-Module-Python2", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Python2/15-SP3/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Python2-15-SP3-Debuginfo-Pool for x86_64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-live-patching15-sp3-updates-x86_64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp3-pool-x86_64", + "product_id": 2187, + "repository_id": 4844, + "parent_product_id": 2145, + "root_product_id": 2133, + "update_tag": "SLE-Module-Live-Patching", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Live-Patching/15-SP3/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Live-Patching15-SP3-Updates for x86_64 HPC", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-live-patching15-sp3-debuginfo-updates-x86_64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp3-pool-x86_64", + "product_id": 2187, + "repository_id": 4845, + "parent_product_id": 2145, + "root_product_id": 2133, + "update_tag": "SLE-Module-Live-Patching", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Live-Patching/15-SP3/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Live-Patching15-SP3-Debuginfo-Updates for x86_64 HPC", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-live-patching15-sp3-pool-x86_64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp3-pool-x86_64", + "product_id": 2187, + "repository_id": 4846, + "parent_product_id": 2145, + "root_product_id": 2133, + "update_tag": "SLE-Module-Live-Patching", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Live-Patching/15-SP3/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Live-Patching15-SP3-Pool for x86_64 HPC", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-live-patching15-sp3-debuginfo-pool-x86_64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp3-pool-x86_64", + "product_id": 2187, + "repository_id": 4847, + "parent_product_id": 2145, + "root_product_id": 2133, + "update_tag": "SLE-Module-Live-Patching", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Live-Patching/15-SP3/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Live-Patching15-SP3-Debuginfo-Pool for x86_64 HPC", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-packagehub-15-sp3-backports-pool-x86_64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp3-pool-x86_64", + "product_id": 2191, + "repository_id": 4873, + "parent_product_id": 2145, + "root_product_id": 2133, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-15-SP3_x86_64/standard/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-15-SP3-Backports-Pool for x86_64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-packagehub-15-sp3-backports-debuginfo-x86_64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp3-pool-x86_64", + "product_id": 2191, + "repository_id": 4874, + "parent_product_id": 2145, + "root_product_id": 2133, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-15-SP3_x86_64/standard_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-15-SP3-Backports-Debuginfo for x86_64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-packagehub-subpackages15-sp3-updates-x86_64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp3-pool-x86_64", + "product_id": 2191, + "repository_id": 4875, + "parent_product_id": 2145, + "root_product_id": 2133, + "update_tag": "SLE-Module-Packagehub-Subpackages", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP3/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Packagehub-Subpackages15-SP3-Updates for x86_64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-packagehub-subpackages15-sp3-debuginfo-updates-x86_64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp3-pool-x86_64", + "product_id": 2191, + "repository_id": 4876, + "parent_product_id": 2145, + "root_product_id": 2133, + "update_tag": "SLE-Module-Packagehub-Subpackages", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP3/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Packagehub-Subpackages15-SP3-Debuginfo-Updates for x86_64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-packagehub-15-sp3-pool-x86_64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp3-pool-x86_64", + "product_id": 2191, + "repository_id": 4877, + "parent_product_id": 2145, + "root_product_id": 2133, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-15-SP3_x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-15-SP3-Pool for x86_64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-packagehub-subpackages15-sp3-pool-x86_64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp3-pool-x86_64", + "product_id": 2191, + "repository_id": 4878, + "parent_product_id": 2145, + "root_product_id": 2133, + "update_tag": "SLE-Module-Packagehub-Subpackages", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP3/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Packagehub-Subpackages15-SP3-Pool for x86_64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-packagehub-subpackages15-sp3-debuginfo-pool-x86_64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp3-pool-x86_64", + "product_id": 2191, + "repository_id": 4879, + "parent_product_id": 2145, + "root_product_id": 2133, + "update_tag": "SLE-Module-Packagehub-Subpackages", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP3/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Packagehub-Subpackages15-SP3-Debuginfo-Pool for x86_64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-hpc-15-sp3-ltss-updates-x86_64", + "parent_channel_label": "sle-product-hpc-15-sp3-pool-x86_64", + "product_id": 2213, + "repository_id": 4956, + "parent_product_id": 2133, + "root_product_id": 2133, + "update_tag": "SLE-Product-HPC", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-HPC/15-SP3-LTSS/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HPC-15-SP3-LTSS-Updates for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-hpc-15-sp3-ltss-debuginfo-updates-x86_64", + "parent_channel_label": "sle-product-hpc-15-sp3-pool-x86_64", + "product_id": 2213, + "repository_id": 4957, + "parent_product_id": 2133, + "root_product_id": 2133, + "update_tag": "SLE-Product-HPC", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-HPC/15-SP3-LTSS/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HPC-15-SP3-LTSS-Debuginfo-Updates for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-hpc-15-sp3-ltss-pool-x86_64", + "parent_channel_label": "sle-product-hpc-15-sp3-pool-x86_64", + "product_id": 2213, + "repository_id": 4958, + "parent_product_id": 2133, + "root_product_id": 2133, + "update_tag": "SLE-Product-HPC", + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-HPC/15-SP3-LTSS/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HPC-15-SP3-LTSS-Pool for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-hpc-15-sp3-ltss-debuginfo-pool-x86_64", + "parent_channel_label": "sle-product-hpc-15-sp3-pool-x86_64", + "product_id": 2213, + "repository_id": 4959, + "parent_product_id": 2133, + "root_product_id": 2133, + "update_tag": "SLE-Product-HPC", + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-HPC/15-SP3-LTSS/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HPC-15-SP3-LTSS-Debuginfo-Pool for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-hpc-15-sp3-espos-updates-x86_64", + "parent_channel_label": "sle-product-hpc-15-sp3-pool-x86_64", + "product_id": 2215, + "repository_id": 4966, + "parent_product_id": 2133, + "root_product_id": 2133, + "update_tag": "SLE-Product-HPC", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-HPC/15-SP3-ESPOS/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HPC-15-SP3-ESPOS-Updates for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-hpc-15-sp3-espos-debuginfo-updates-x86_64", + "parent_channel_label": "sle-product-hpc-15-sp3-pool-x86_64", + "product_id": 2215, + "repository_id": 4967, + "parent_product_id": 2133, + "root_product_id": 2133, + "update_tag": "SLE-Product-HPC", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-HPC/15-SP3-ESPOS/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HPC-15-SP3-ESPOS-Debuginfo-Updates for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-hpc-15-sp3-espos-pool-x86_64", + "parent_channel_label": "sle-product-hpc-15-sp3-pool-x86_64", + "product_id": 2215, + "repository_id": 4968, + "parent_product_id": 2133, + "root_product_id": 2133, + "update_tag": "SLE-Product-HPC", + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-HPC/15-SP3-ESPOS/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HPC-15-SP3-ESPOS-Pool for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-hpc-15-sp3-espos-debuginfo-pool-x86_64", + "parent_channel_label": "sle-product-hpc-15-sp3-pool-x86_64", + "product_id": 2215, + "repository_id": 4969, + "parent_product_id": 2133, + "root_product_id": 2133, + "update_tag": "SLE-Product-HPC", + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-HPC/15-SP3-ESPOS/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HPC-15-SP3-ESPOS-Debuginfo-Pool for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-certifications-15-sp3-updates-x86_64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp3-pool-x86_64", + "product_id": 2389, + "repository_id": 5527, + "parent_product_id": 2133, + "root_product_id": 2133, + "update_tag": "SLE-Module-Certifications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Certifications/15-SP3/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Certifications-15-SP3-Updates for x86_64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-certifications-15-sp3-debuginfo-updates-x86_64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp3-pool-x86_64", + "product_id": 2389, + "repository_id": 5528, + "parent_product_id": 2133, + "root_product_id": 2133, + "update_tag": "SLE-Module-Certifications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Certifications/15-SP3/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Certifications-15-SP3-Debuginfo-Updates for x86_64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-certifications-15-sp3-pool-x86_64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp3-pool-x86_64", + "product_id": 2389, + "repository_id": 5529, + "parent_product_id": 2133, + "root_product_id": 2133, + "update_tag": "SLE-Module-Certifications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Certifications/15-SP3/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Certifications-15-SP3-Pool for x86_64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-certifications-15-sp3-debuginfo-pool-x86_64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp3-pool-x86_64", + "product_id": 2389, + "repository_id": 5530, + "parent_product_id": 2133, + "root_product_id": 2133, + "update_tag": "SLE-Module-Certifications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Certifications/15-SP3/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Certifications-15-SP3-Debuginfo-Pool for x86_64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-sled15-sp3-updates-x86_64", + "parent_channel_label": "sle-product-sled15-sp3-pool-x86_64", + "product_id": 2134, + "repository_id": 4574, + "parent_product_id": null, + "root_product_id": 2134, + "update_tag": "SLE-Product-SLED", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-SLED/15-SP3/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-SLED15-SP3-Updates for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-sled15-sp3-debuginfo-updates-x86_64", + "parent_channel_label": "sle-product-sled15-sp3-pool-x86_64", + "product_id": 2134, + "repository_id": 4575, + "parent_product_id": null, + "root_product_id": 2134, + "update_tag": "SLE-Product-SLED", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-SLED/15-SP3/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-SLED15-SP3-Debuginfo-Updates for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-sled15-sp3-pool-x86_64", + "parent_channel_label": null, + "product_id": 2134, + "repository_id": 4576, + "parent_product_id": null, + "root_product_id": 2134, + "update_tag": "SLE-Product-SLED", + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-SLED/15-SP3/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-SLED15-SP3-Pool for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-sled15-sp3-debuginfo-pool-x86_64", + "parent_channel_label": "sle-product-sled15-sp3-pool-x86_64", + "product_id": 2134, + "repository_id": 4578, + "parent_product_id": null, + "root_product_id": 2134, + "update_tag": "SLE-Product-SLED", + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-SLED/15-SP3/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-SLED15-SP3-Debuginfo-Pool for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-basesystem15-sp3-updates-x86_64-sled", + "parent_channel_label": "sle-product-sled15-sp3-pool-x86_64", + "product_id": 2145, + "repository_id": 4634, + "parent_product_id": 2134, + "root_product_id": 2134, + "update_tag": "SLE-Module-Basesystem", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15-SP3/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Basesystem15-SP3-Updates for x86_64 SLED", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-basesystem15-sp3-debuginfo-updates-x86_64-sled", + "parent_channel_label": "sle-product-sled15-sp3-pool-x86_64", + "product_id": 2145, + "repository_id": 4635, + "parent_product_id": 2134, + "root_product_id": 2134, + "update_tag": "SLE-Module-Basesystem", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15-SP3/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Basesystem15-SP3-Debuginfo-Updates for x86_64 SLED", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-basesystem15-sp3-pool-x86_64-sled", + "parent_channel_label": "sle-product-sled15-sp3-pool-x86_64", + "product_id": 2145, + "repository_id": 4636, + "parent_product_id": 2134, + "root_product_id": 2134, + "update_tag": "SLE-Module-Basesystem", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP3/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Basesystem15-SP3-Pool for x86_64 SLED", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-basesystem15-sp3-debuginfo-pool-x86_64-sled", + "parent_channel_label": "sle-product-sled15-sp3-pool-x86_64", + "product_id": 2145, + "repository_id": 4637, + "parent_product_id": 2134, + "root_product_id": 2134, + "update_tag": "SLE-Module-Basesystem", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP3/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Basesystem15-SP3-Debuginfo-Pool for x86_64 SLED", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-manager-tools15-updates-x86_64-sled-sp3", + "parent_channel_label": "sle-product-sled15-sp3-pool-x86_64", + "product_id": 1712, + "repository_id": 2932, + "parent_product_id": 2145, + "root_product_id": 2134, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/15/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-Updates for x86_64 SLED SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools15-debuginfo-updates-x86_64-sled-sp3", + "parent_channel_label": "sle-product-sled15-sp3-pool-x86_64", + "product_id": 1712, + "repository_id": 2933, + "parent_product_id": 2145, + "root_product_id": 2134, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/15/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-Debuginfo-Updates for x86_64 SLED SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools15-pool-x86_64-sled-sp3", + "parent_channel_label": "sle-product-sled15-sp3-pool-x86_64", + "product_id": 1712, + "repository_id": 2934, + "parent_product_id": 2145, + "root_product_id": 2134, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/15/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-Pool for x86_64 SLED SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools15-debuginfo-pool-x86_64-sled-sp3", + "parent_channel_label": "sle-product-sled15-sp3-pool-x86_64", + "product_id": 1712, + "repository_id": 2935, + "parent_product_id": 2145, + "root_product_id": 2134, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/15/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-Debuginfo-Pool for x86_64 SLED SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools15-beta-updates-x86_64-sled-sp3", + "parent_channel_label": "sle-product-sled15-sp3-pool-x86_64", + "product_id": 1928, + "repository_id": 3897, + "parent_product_id": 1712, + "root_product_id": 2134, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/15-BETA/x86_64/update/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-BETA-Updates for x86_64 SLED SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools15-beta-debuginfo-updates-x86_64-sled-sp3", + "parent_channel_label": "sle-product-sled15-sp3-pool-x86_64", + "product_id": 1928, + "repository_id": 3898, + "parent_product_id": 1712, + "root_product_id": 2134, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/15-BETA/x86_64/update_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-BETA-Debuginfo-Updates for x86_64 SLED SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools15-beta-pool-x86_64-sled-sp3", + "parent_channel_label": "sle-product-sled15-sp3-pool-x86_64", + "product_id": 1928, + "repository_id": 3908, + "parent_product_id": 1712, + "root_product_id": 2134, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/15-BETA/x86_64/product/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-BETA-Pool for x86_64 SLED SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools15-beta-debuginfo-pool-x86_64-sled-sp3", + "parent_channel_label": "sle-product-sled15-sp3-pool-x86_64", + "product_id": 1928, + "repository_id": 3909, + "parent_product_id": 1712, + "root_product_id": 2134, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/15-BETA/x86_64/product_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-BETA-Debuginfo-Pool for x86_64 SLED SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-module-desktop-applications15-sp3-updates-x86_64-sled", + "parent_channel_label": "sle-product-sled15-sp3-pool-x86_64", + "product_id": 2149, + "repository_id": 4654, + "parent_product_id": 2145, + "root_product_id": 2134, + "update_tag": "SLE-Module-Desktop-Applications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15-SP3/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Desktop-Applications15-SP3-Updates for x86_64 SLED", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-desktop-applications15-sp3-debuginfo-updates-x86_64-sled", + "parent_channel_label": "sle-product-sled15-sp3-pool-x86_64", + "product_id": 2149, + "repository_id": 4655, + "parent_product_id": 2145, + "root_product_id": 2134, + "update_tag": "SLE-Module-Desktop-Applications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15-SP3/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Desktop-Applications15-SP3-Debuginfo-Updates for x86_64 SLED", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-desktop-applications15-sp3-pool-x86_64-sled", + "parent_channel_label": "sle-product-sled15-sp3-pool-x86_64", + "product_id": 2149, + "repository_id": 4656, + "parent_product_id": 2145, + "root_product_id": 2134, + "update_tag": "SLE-Module-Desktop-Applications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP3/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Desktop-Applications15-SP3-Pool for x86_64 SLED", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-desktop-applications15-sp3-debuginfo-pool-x86_64-sled", + "parent_channel_label": "sle-product-sled15-sp3-pool-x86_64", + "product_id": 2149, + "repository_id": 4657, + "parent_product_id": 2145, + "root_product_id": 2134, + "update_tag": "SLE-Module-Desktop-Applications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP3/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Desktop-Applications15-SP3-Debuginfo-Pool for x86_64 SLED", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-devtools15-sp3-updates-x86_64-sled", + "parent_channel_label": "sle-product-sled15-sp3-pool-x86_64", + "product_id": 2161, + "repository_id": 4714, + "parent_product_id": 2149, + "root_product_id": 2134, + "update_tag": "SLE-Module-Development-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15-SP3/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-DevTools15-SP3-Updates for x86_64 SLED", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-devtools15-sp3-debuginfo-updates-x86_64-sled", + "parent_channel_label": "sle-product-sled15-sp3-pool-x86_64", + "product_id": 2161, + "repository_id": 4715, + "parent_product_id": 2149, + "root_product_id": 2134, + "update_tag": "SLE-Module-Development-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15-SP3/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-DevTools15-SP3-Debuginfo-Updates for x86_64 SLED", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-devtools15-sp3-pool-x86_64-sled", + "parent_channel_label": "sle-product-sled15-sp3-pool-x86_64", + "product_id": 2161, + "repository_id": 4716, + "parent_product_id": 2149, + "root_product_id": 2134, + "update_tag": "SLE-Module-Development-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP3/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-DevTools15-SP3-Pool for x86_64 SLED", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-devtools15-sp3-debuginfo-pool-x86_64-sled", + "parent_channel_label": "sle-product-sled15-sp3-pool-x86_64", + "product_id": 2161, + "repository_id": 4717, + "parent_product_id": 2149, + "root_product_id": 2134, + "update_tag": "SLE-Module-Development-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP3/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-DevTools15-SP3-Debuginfo-Pool for x86_64 SLED", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-15-sp3-desktop-nvidia-driver", + "parent_channel_label": "sle-product-sled15-sp3-pool-x86_64", + "product_id": 2196, + "repository_id": 4577, + "parent_product_id": 2149, + "root_product_id": 2134, + "update_tag": null, + "url": "https://download.nvidia.com/suse/sle15sp3/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-15-SP3-Desktop-NVIDIA-Driver for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-we15-sp3-updates-x86_64-sled", + "parent_channel_label": "sle-product-sled15-sp3-pool-x86_64", + "product_id": 2196, + "repository_id": 4901, + "parent_product_id": 2149, + "root_product_id": 2134, + "update_tag": "SLE-Product-WE", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-WE/15-SP3/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Product-WE15-SP3-Updates for x86_64 SLED", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-we15-sp3-debuginfo-updates-x86_64-sled", + "parent_channel_label": "sle-product-sled15-sp3-pool-x86_64", + "product_id": 2196, + "repository_id": 4902, + "parent_product_id": 2149, + "root_product_id": 2134, + "update_tag": "SLE-Product-WE", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-WE/15-SP3/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Product-WE15-SP3-Debuginfo-Updates for x86_64 SLED", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-we15-sp3-pool-x86_64-sled", + "parent_channel_label": "sle-product-sled15-sp3-pool-x86_64", + "product_id": 2196, + "repository_id": 4903, + "parent_product_id": 2149, + "root_product_id": 2134, + "update_tag": "SLE-Product-WE", + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-WE/15-SP3/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Product-WE15-SP3-Pool for x86_64 SLED", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-we15-sp3-debuginfo-pool-x86_64-sled", + "parent_channel_label": "sle-product-sled15-sp3-pool-x86_64", + "product_id": 2196, + "repository_id": 4904, + "parent_product_id": 2149, + "root_product_id": 2134, + "update_tag": "SLE-Product-WE", + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-WE/15-SP3/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Product-WE15-SP3-Debuginfo-Pool for x86_64 SLED", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-cap-tools15-sp3-updates-x86_64-sled", + "parent_channel_label": "sle-product-sled15-sp3-pool-x86_64", + "product_id": 2176, + "repository_id": 4789, + "parent_product_id": 2145, + "root_product_id": 2134, + "update_tag": "SLE-Module-CAP-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-CAP-Tools/15-SP3/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-CAP-Tools15-SP3-Updates for x86_64 SLED", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-cap-tools15-sp3-debuginfo-updates-x86_64-sled", + "parent_channel_label": "sle-product-sled15-sp3-pool-x86_64", + "product_id": 2176, + "repository_id": 4790, + "parent_product_id": 2145, + "root_product_id": 2134, + "update_tag": "SLE-Module-CAP-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-CAP-Tools/15-SP3/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-CAP-Tools15-SP3-Debuginfo-Updates for x86_64 SLED", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-cap-tools15-sp3-pool-x86_64-sled", + "parent_channel_label": "sle-product-sled15-sp3-pool-x86_64", + "product_id": 2176, + "repository_id": 4791, + "parent_product_id": 2145, + "root_product_id": 2134, + "update_tag": "SLE-Module-CAP-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-CAP-Tools/15-SP3/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-CAP-Tools15-SP3-Pool for x86_64 SLED", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-cap-tools15-sp3-debuginfo-pool-x86_64-sled", + "parent_channel_label": "sle-product-sled15-sp3-pool-x86_64", + "product_id": 2176, + "repository_id": 4792, + "parent_product_id": 2145, + "root_product_id": 2134, + "update_tag": "SLE-Module-CAP-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-CAP-Tools/15-SP3/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-CAP-Tools15-SP3-Debuginfo-Pool for x86_64 SLED", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-python2-15-sp3-updates-x86_64-sled", + "parent_channel_label": "sle-product-sled15-sp3-pool-x86_64", + "product_id": 2184, + "repository_id": 4829, + "parent_product_id": 2145, + "root_product_id": 2134, + "update_tag": "SLE-Module-Python2", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Python2/15-SP3/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Python2-15-SP3-Updates for x86_64 SLED", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-python2-15-sp3-debuginfo-updates-x86_64-sled", + "parent_channel_label": "sle-product-sled15-sp3-pool-x86_64", + "product_id": 2184, + "repository_id": 4830, + "parent_product_id": 2145, + "root_product_id": 2134, + "update_tag": "SLE-Module-Python2", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Python2/15-SP3/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Python2-15-SP3-Debuginfo-Updates for x86_64 SLED", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-python2-15-sp3-pool-x86_64-sled", + "parent_channel_label": "sle-product-sled15-sp3-pool-x86_64", + "product_id": 2184, + "repository_id": 4831, + "parent_product_id": 2145, + "root_product_id": 2134, + "update_tag": "SLE-Module-Python2", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Python2/15-SP3/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Python2-15-SP3-Pool for x86_64 SLED", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-python2-15-sp3-debuginfo-pool-x86_64-sled", + "parent_channel_label": "sle-product-sled15-sp3-pool-x86_64", + "product_id": 2184, + "repository_id": 4832, + "parent_product_id": 2145, + "root_product_id": 2134, + "update_tag": "SLE-Module-Python2", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Python2/15-SP3/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Python2-15-SP3-Debuginfo-Pool for x86_64 SLED", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-packagehub-15-sp3-backports-pool-x86_64-sled", + "parent_channel_label": "sle-product-sled15-sp3-pool-x86_64", + "product_id": 2191, + "repository_id": 4873, + "parent_product_id": 2145, + "root_product_id": 2134, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-15-SP3_x86_64/standard/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-15-SP3-Backports-Pool for x86_64 SLED", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-packagehub-15-sp3-backports-debuginfo-x86_64-sled", + "parent_channel_label": "sle-product-sled15-sp3-pool-x86_64", + "product_id": 2191, + "repository_id": 4874, + "parent_product_id": 2145, + "root_product_id": 2134, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-15-SP3_x86_64/standard_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-15-SP3-Backports-Debuginfo for x86_64 SLED", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-packagehub-subpackages15-sp3-updates-x86_64-sled", + "parent_channel_label": "sle-product-sled15-sp3-pool-x86_64", + "product_id": 2191, + "repository_id": 4875, + "parent_product_id": 2145, + "root_product_id": 2134, + "update_tag": "SLE-Module-Packagehub-Subpackages", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP3/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Packagehub-Subpackages15-SP3-Updates for x86_64 SLED", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-packagehub-subpackages15-sp3-debuginfo-updates-x86_64-sled", + "parent_channel_label": "sle-product-sled15-sp3-pool-x86_64", + "product_id": 2191, + "repository_id": 4876, + "parent_product_id": 2145, + "root_product_id": 2134, + "update_tag": "SLE-Module-Packagehub-Subpackages", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP3/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Packagehub-Subpackages15-SP3-Debuginfo-Updates for x86_64 SLED", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-packagehub-15-sp3-pool-x86_64-sled", + "parent_channel_label": "sle-product-sled15-sp3-pool-x86_64", + "product_id": 2191, + "repository_id": 4877, + "parent_product_id": 2145, + "root_product_id": 2134, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-15-SP3_x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-15-SP3-Pool for x86_64 SLED", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-packagehub-subpackages15-sp3-pool-x86_64-sled", + "parent_channel_label": "sle-product-sled15-sp3-pool-x86_64", + "product_id": 2191, + "repository_id": 4878, + "parent_product_id": 2145, + "root_product_id": 2134, + "update_tag": "SLE-Module-Packagehub-Subpackages", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP3/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Packagehub-Subpackages15-SP3-Pool for x86_64 SLED", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-packagehub-subpackages15-sp3-debuginfo-pool-x86_64-sled", + "parent_channel_label": "sle-product-sled15-sp3-pool-x86_64", + "product_id": 2191, + "repository_id": 4879, + "parent_product_id": 2145, + "root_product_id": 2134, + "update_tag": "SLE-Module-Packagehub-Subpackages", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP3/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Packagehub-Subpackages15-SP3-Debuginfo-Pool for x86_64 SLED", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-certifications-15-sp3-updates-x86_64-sled", + "parent_channel_label": "sle-product-sled15-sp3-pool-x86_64", + "product_id": 2389, + "repository_id": 5527, + "parent_product_id": 2134, + "root_product_id": 2134, + "update_tag": "SLE-Module-Certifications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Certifications/15-SP3/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Certifications-15-SP3-Updates for x86_64 SLED", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-certifications-15-sp3-debuginfo-updates-x86_64-sled", + "parent_channel_label": "sle-product-sled15-sp3-pool-x86_64", + "product_id": 2389, + "repository_id": 5528, + "parent_product_id": 2134, + "root_product_id": 2134, + "update_tag": "SLE-Module-Certifications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Certifications/15-SP3/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Certifications-15-SP3-Debuginfo-Updates for x86_64 SLED", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-certifications-15-sp3-pool-x86_64-sled", + "parent_channel_label": "sle-product-sled15-sp3-pool-x86_64", + "product_id": 2389, + "repository_id": 5529, + "parent_product_id": 2134, + "root_product_id": 2134, + "update_tag": "SLE-Module-Certifications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Certifications/15-SP3/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Certifications-15-SP3-Pool for x86_64 SLED", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-certifications-15-sp3-debuginfo-pool-x86_64-sled", + "parent_channel_label": "sle-product-sled15-sp3-pool-x86_64", + "product_id": 2389, + "repository_id": 5530, + "parent_product_id": 2134, + "root_product_id": 2134, + "update_tag": "SLE-Module-Certifications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Certifications/15-SP3/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Certifications-15-SP3-Debuginfo-Pool for x86_64 SLED", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-sles_sap15-sp3-updates-ppc64le", + "parent_channel_label": "sle-product-sles_sap15-sp3-pool-ppc64le", + "product_id": 2135, + "repository_id": 4580, + "parent_product_id": null, + "root_product_id": 2135, + "update_tag": "SLE-Product-SLES_SAP", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-SLES_SAP/15-SP3/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-SLES_SAP15-SP3-Updates for ppc64le", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-sles_sap15-sp3-debuginfo-updates-ppc64le", + "parent_channel_label": "sle-product-sles_sap15-sp3-pool-ppc64le", + "product_id": 2135, + "repository_id": 4581, + "parent_product_id": null, + "root_product_id": 2135, + "update_tag": "SLE-Product-SLES_SAP", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-SLES_SAP/15-SP3/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-SLES_SAP15-SP3-Debuginfo-Updates for ppc64le", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-sles_sap15-sp3-pool-ppc64le", + "parent_channel_label": null, + "product_id": 2135, + "repository_id": 4582, + "parent_product_id": null, + "root_product_id": 2135, + "update_tag": "SLE-Product-SLES_SAP", + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-SLES_SAP/15-SP3/ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-SLES_SAP15-SP3-Pool for ppc64le", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-sles_sap15-sp3-debuginfo-pool-ppc64le", + "parent_channel_label": "sle-product-sles_sap15-sp3-pool-ppc64le", + "product_id": 2135, + "repository_id": 4583, + "parent_product_id": null, + "root_product_id": 2135, + "update_tag": "SLE-Product-SLES_SAP", + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-SLES_SAP/15-SP3/ppc64le/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-SLES_SAP15-SP3-Debuginfo-Pool for ppc64le", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-basesystem15-sp3-updates-ppc64le-sap", + "parent_channel_label": "sle-product-sles_sap15-sp3-pool-ppc64le", + "product_id": 2143, + "repository_id": 4624, + "parent_product_id": 2135, + "root_product_id": 2135, + "update_tag": "SLE-Module-Basesystem", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15-SP3/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Basesystem15-SP3-Updates for ppc64le SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-basesystem15-sp3-debuginfo-updates-ppc64le-sap", + "parent_channel_label": "sle-product-sles_sap15-sp3-pool-ppc64le", + "product_id": 2143, + "repository_id": 4625, + "parent_product_id": 2135, + "root_product_id": 2135, + "update_tag": "SLE-Module-Basesystem", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15-SP3/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Basesystem15-SP3-Debuginfo-Updates for ppc64le SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-basesystem15-sp3-pool-ppc64le-sap", + "parent_channel_label": "sle-product-sles_sap15-sp3-pool-ppc64le", + "product_id": 2143, + "repository_id": 4626, + "parent_product_id": 2135, + "root_product_id": 2135, + "update_tag": "SLE-Module-Basesystem", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP3/ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Basesystem15-SP3-Pool for ppc64le SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-basesystem15-sp3-debuginfo-pool-ppc64le-sap", + "parent_channel_label": "sle-product-sles_sap15-sp3-pool-ppc64le", + "product_id": 2143, + "repository_id": 4627, + "parent_product_id": 2135, + "root_product_id": 2135, + "update_tag": "SLE-Module-Basesystem", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP3/ppc64le/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Basesystem15-SP3-Debuginfo-Pool for ppc64le SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-manager-tools15-updates-ppc64le-sap-sp3", + "parent_channel_label": "sle-product-sles_sap15-sp3-pool-ppc64le", + "product_id": 1710, + "repository_id": 2922, + "parent_product_id": 2143, + "root_product_id": 2135, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/15/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-Updates for ppc64le SAP SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools15-debuginfo-updates-ppc64le-sap-sp3", + "parent_channel_label": "sle-product-sles_sap15-sp3-pool-ppc64le", + "product_id": 1710, + "repository_id": 2923, + "parent_product_id": 2143, + "root_product_id": 2135, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/15/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-Debuginfo-Updates for ppc64le SAP SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools15-pool-ppc64le-sap-sp3", + "parent_channel_label": "sle-product-sles_sap15-sp3-pool-ppc64le", + "product_id": 1710, + "repository_id": 2924, + "parent_product_id": 2143, + "root_product_id": 2135, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/15/ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-Pool for ppc64le SAP SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools15-debuginfo-pool-ppc64le-sap-sp3", + "parent_channel_label": "sle-product-sles_sap15-sp3-pool-ppc64le", + "product_id": 1710, + "repository_id": 2925, + "parent_product_id": 2143, + "root_product_id": 2135, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/15/ppc64le/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-Debuginfo-Pool for ppc64le SAP SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools15-beta-updates-ppc64le-sap-sp3", + "parent_channel_label": "sle-product-sles_sap15-sp3-pool-ppc64le", + "product_id": 1926, + "repository_id": 3893, + "parent_product_id": 1710, + "root_product_id": 2135, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/15-BETA/ppc64le/update/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-BETA-Updates for ppc64le SAP SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools15-beta-debuginfo-updates-ppc64le-sap-sp3", + "parent_channel_label": "sle-product-sles_sap15-sp3-pool-ppc64le", + "product_id": 1926, + "repository_id": 3894, + "parent_product_id": 1710, + "root_product_id": 2135, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/15-BETA/ppc64le/update_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-BETA-Debuginfo-Updates for ppc64le SAP SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools15-beta-pool-ppc64le-sap-sp3", + "parent_channel_label": "sle-product-sles_sap15-sp3-pool-ppc64le", + "product_id": 1926, + "repository_id": 3902, + "parent_product_id": 1710, + "root_product_id": 2135, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/15-BETA/ppc64le/product/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-BETA-Pool for ppc64le SAP SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools15-beta-debuginfo-pool-ppc64le-sap-sp3", + "parent_channel_label": "sle-product-sles_sap15-sp3-pool-ppc64le", + "product_id": 1926, + "repository_id": 3903, + "parent_product_id": 1710, + "root_product_id": 2135, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/15-BETA/ppc64le/product_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-BETA-Debuginfo-Pool for ppc64le SAP SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-module-desktop-applications15-sp3-updates-ppc64le-sap", + "parent_channel_label": "sle-product-sles_sap15-sp3-pool-ppc64le", + "product_id": 2147, + "repository_id": 4644, + "parent_product_id": 2143, + "root_product_id": 2135, + "update_tag": "SLE-Module-Desktop-Applications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15-SP3/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Desktop-Applications15-SP3-Updates for ppc64le SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-desktop-applications15-sp3-debuginfo-updates-ppc64le-sap", + "parent_channel_label": "sle-product-sles_sap15-sp3-pool-ppc64le", + "product_id": 2147, + "repository_id": 4645, + "parent_product_id": 2143, + "root_product_id": 2135, + "update_tag": "SLE-Module-Desktop-Applications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15-SP3/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Desktop-Applications15-SP3-Debuginfo-Updates for ppc64le SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-desktop-applications15-sp3-pool-ppc64le-sap", + "parent_channel_label": "sle-product-sles_sap15-sp3-pool-ppc64le", + "product_id": 2147, + "repository_id": 4646, + "parent_product_id": 2143, + "root_product_id": 2135, + "update_tag": "SLE-Module-Desktop-Applications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP3/ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Desktop-Applications15-SP3-Pool for ppc64le SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-desktop-applications15-sp3-debuginfo-pool-ppc64le-sap", + "parent_channel_label": "sle-product-sles_sap15-sp3-pool-ppc64le", + "product_id": 2147, + "repository_id": 4647, + "parent_product_id": 2143, + "root_product_id": 2135, + "update_tag": "SLE-Module-Desktop-Applications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP3/ppc64le/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Desktop-Applications15-SP3-Debuginfo-Pool for ppc64le SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-devtools15-sp3-updates-ppc64le-sap", + "parent_channel_label": "sle-product-sles_sap15-sp3-pool-ppc64le", + "product_id": 2159, + "repository_id": 4704, + "parent_product_id": 2147, + "root_product_id": 2135, + "update_tag": "SLE-Module-Development-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15-SP3/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-DevTools15-SP3-Updates for ppc64le SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-devtools15-sp3-debuginfo-updates-ppc64le-sap", + "parent_channel_label": "sle-product-sles_sap15-sp3-pool-ppc64le", + "product_id": 2159, + "repository_id": 4705, + "parent_product_id": 2147, + "root_product_id": 2135, + "update_tag": "SLE-Module-Development-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15-SP3/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-DevTools15-SP3-Debuginfo-Updates for ppc64le SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-devtools15-sp3-pool-ppc64le-sap", + "parent_channel_label": "sle-product-sles_sap15-sp3-pool-ppc64le", + "product_id": 2159, + "repository_id": 4706, + "parent_product_id": 2147, + "root_product_id": 2135, + "update_tag": "SLE-Module-Development-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP3/ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-DevTools15-SP3-Pool for ppc64le SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-devtools15-sp3-debuginfo-pool-ppc64le-sap", + "parent_channel_label": "sle-product-sles_sap15-sp3-pool-ppc64le", + "product_id": 2159, + "repository_id": 4707, + "parent_product_id": 2147, + "root_product_id": 2135, + "update_tag": "SLE-Module-Development-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP3/ppc64le/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-DevTools15-SP3-Debuginfo-Pool for ppc64le SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-server-applications15-sp3-updates-ppc64le-sap", + "parent_channel_label": "sle-product-sles_sap15-sp3-pool-ppc64le", + "product_id": 2151, + "repository_id": 4664, + "parent_product_id": 2143, + "root_product_id": 2135, + "update_tag": "SLE-Module-Server-Applications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15-SP3/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Server-Applications15-SP3-Updates for ppc64le SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-server-applications15-sp3-debuginfo-updates-ppc64le-sap", + "parent_channel_label": "sle-product-sles_sap15-sp3-pool-ppc64le", + "product_id": 2151, + "repository_id": 4665, + "parent_product_id": 2143, + "root_product_id": 2135, + "update_tag": "SLE-Module-Server-Applications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15-SP3/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Server-Applications15-SP3-Debuginfo-Updates for ppc64le SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-server-applications15-sp3-pool-ppc64le-sap", + "parent_channel_label": "sle-product-sles_sap15-sp3-pool-ppc64le", + "product_id": 2151, + "repository_id": 4666, + "parent_product_id": 2143, + "root_product_id": 2135, + "update_tag": "SLE-Module-Server-Applications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP3/ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Server-Applications15-SP3-Pool for ppc64le SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-server-applications15-sp3-debuginfo-pool-ppc64le-sap", + "parent_channel_label": "sle-product-sles_sap15-sp3-pool-ppc64le", + "product_id": 2151, + "repository_id": 4667, + "parent_product_id": 2143, + "root_product_id": 2135, + "update_tag": "SLE-Module-Server-Applications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP3/ppc64le/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Server-Applications15-SP3-Debuginfo-Pool for ppc64le SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "ibm-power-adv-toolchain-sap-sp3", + "parent_channel_label": "sle-product-sles_sap15-sp3-pool-ppc64le", + "product_id": 2076, + "repository_id": 4430, + "parent_product_id": 2151, + "root_product_id": 2135, + "update_tag": null, + "url": "https://public.dhe.ibm.com/software/server/POWER/Linux/toolchain/at/suse/SLES_15/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "IBM-POWER-Adv-Toolchain for ppc64le SAP SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "ibm-power-tools-sap-sp3", + "parent_channel_label": "sle-product-sles_sap15-sp3-pool-ppc64le", + "product_id": 2077, + "repository_id": 4431, + "parent_product_id": 2151, + "root_product_id": 2135, + "update_tag": null, + "url": "https://public.dhe.ibm.com/software/server/POWER/Linux/yum/OSS/SLES/15/ppc64le/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "IBM-POWER-Tools for ppc64le SAP SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting15-sp3-updates-ppc64le-sap", + "parent_channel_label": "sle-product-sles_sap15-sp3-pool-ppc64le", + "product_id": 2163, + "repository_id": 4724, + "parent_product_id": 2151, + "root_product_id": 2135, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/15-SP3/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Web-Scripting15-SP3-Updates for ppc64le SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting15-sp3-debuginfo-updates-ppc64le-sap", + "parent_channel_label": "sle-product-sles_sap15-sp3-pool-ppc64le", + "product_id": 2163, + "repository_id": 4725, + "parent_product_id": 2151, + "root_product_id": 2135, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/15-SP3/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Web-Scripting15-SP3-Debuginfo-Updates for ppc64le SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting15-sp3-pool-ppc64le-sap", + "parent_channel_label": "sle-product-sles_sap15-sp3-pool-ppc64le", + "product_id": 2163, + "repository_id": 4726, + "parent_product_id": 2151, + "root_product_id": 2135, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP3/ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Web-Scripting15-SP3-Pool for ppc64le SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting15-sp3-debuginfo-pool-ppc64le-sap", + "parent_channel_label": "sle-product-sles_sap15-sp3-pool-ppc64le", + "product_id": 2163, + "repository_id": 4727, + "parent_product_id": 2151, + "root_product_id": 2135, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP3/ppc64le/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Web-Scripting15-SP3-Debuginfo-Pool for ppc64le SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-legacy15-sp3-updates-ppc64le-sap", + "parent_channel_label": "sle-product-sles_sap15-sp3-pool-ppc64le", + "product_id": 2169, + "repository_id": 4754, + "parent_product_id": 2151, + "root_product_id": 2135, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/15-SP3/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy15-SP3-Updates for ppc64le SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-legacy15-sp3-debuginfo-updates-ppc64le-sap", + "parent_channel_label": "sle-product-sles_sap15-sp3-pool-ppc64le", + "product_id": 2169, + "repository_id": 4755, + "parent_product_id": 2151, + "root_product_id": 2135, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/15-SP3/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy15-SP3-Debuginfo-Updates for ppc64le SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-legacy15-sp3-pool-ppc64le-sap", + "parent_channel_label": "sle-product-sles_sap15-sp3-pool-ppc64le", + "product_id": 2169, + "repository_id": 4756, + "parent_product_id": 2151, + "root_product_id": 2135, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15-SP3/ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy15-SP3-Pool for ppc64le SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-legacy15-sp3-debuginfo-pool-ppc64le-sap", + "parent_channel_label": "sle-product-sles_sap15-sp3-pool-ppc64le", + "product_id": 2169, + "repository_id": 4757, + "parent_product_id": 2151, + "root_product_id": 2135, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15-SP3/ppc64le/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy15-SP3-Debuginfo-Pool for ppc64le SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud15-sp3-updates-ppc64le-sap", + "parent_channel_label": "sle-product-sles_sap15-sp3-pool-ppc64le", + "product_id": 2173, + "repository_id": 4774, + "parent_product_id": 2151, + "root_product_id": 2135, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/15-SP3/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud15-SP3-Updates for ppc64le SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud15-sp3-debuginfo-updates-ppc64le-sap", + "parent_channel_label": "sle-product-sles_sap15-sp3-pool-ppc64le", + "product_id": 2173, + "repository_id": 4775, + "parent_product_id": 2151, + "root_product_id": 2135, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/15-SP3/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud15-SP3-Debuginfo-Updates for ppc64le SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud15-sp3-pool-ppc64le-sap", + "parent_channel_label": "sle-product-sles_sap15-sp3-pool-ppc64le", + "product_id": 2173, + "repository_id": 4776, + "parent_product_id": 2151, + "root_product_id": 2135, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP3/ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud15-SP3-Pool for ppc64le SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud15-sp3-debuginfo-pool-ppc64le-sap", + "parent_channel_label": "sle-product-sles_sap15-sp3-pool-ppc64le", + "product_id": 2173, + "repository_id": 4777, + "parent_product_id": 2151, + "root_product_id": 2135, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP3/ppc64le/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud15-SP3-Debuginfo-Pool for ppc64le SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-ha15-sp3-updates-ppc64le-sap", + "parent_channel_label": "sle-product-sles_sap15-sp3-pool-ppc64le", + "product_id": 2193, + "repository_id": 4886, + "parent_product_id": 2151, + "root_product_id": 2135, + "update_tag": "SLE-Product-HA", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-HA/15-SP3/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Product-HA15-SP3-Updates for ppc64le SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-ha15-sp3-debuginfo-updates-ppc64le-sap", + "parent_channel_label": "sle-product-sles_sap15-sp3-pool-ppc64le", + "product_id": 2193, + "repository_id": 4887, + "parent_product_id": 2151, + "root_product_id": 2135, + "update_tag": "SLE-Product-HA", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-HA/15-SP3/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Product-HA15-SP3-Debuginfo-Updates for ppc64le SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-ha15-sp3-pool-ppc64le-sap", + "parent_channel_label": "sle-product-sles_sap15-sp3-pool-ppc64le", + "product_id": 2193, + "repository_id": 4888, + "parent_product_id": 2151, + "root_product_id": 2135, + "update_tag": "SLE-Product-HA", + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP3/ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Product-HA15-SP3-Pool for ppc64le SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-ha15-sp3-debuginfo-pool-ppc64le-sap", + "parent_channel_label": "sle-product-sles_sap15-sp3-pool-ppc64le", + "product_id": 2193, + "repository_id": 4889, + "parent_product_id": 2151, + "root_product_id": 2135, + "update_tag": "SLE-Product-HA", + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP3/ppc64le/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Product-HA15-SP3-Debuginfo-Pool for ppc64le SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-sap-applications15-sp3-updates-ppc64le", + "parent_channel_label": "sle-product-sles_sap15-sp3-pool-ppc64le", + "product_id": 2197, + "repository_id": 4906, + "parent_product_id": 2193, + "root_product_id": 2135, + "update_tag": "SLE-Module-SAP-Applications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-SAP-Applications/15-SP3/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-SAP-Applications15-SP3-Updates for ppc64le", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-sap-applications15-sp3-debuginfo-updates-ppc64le", + "parent_channel_label": "sle-product-sles_sap15-sp3-pool-ppc64le", + "product_id": 2197, + "repository_id": 4907, + "parent_product_id": 2193, + "root_product_id": 2135, + "update_tag": "SLE-Module-SAP-Applications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-SAP-Applications/15-SP3/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-SAP-Applications15-SP3-Debuginfo-Updates for ppc64le", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-sap-applications15-sp3-pool-ppc64le", + "parent_channel_label": "sle-product-sles_sap15-sp3-pool-ppc64le", + "product_id": 2197, + "repository_id": 4908, + "parent_product_id": 2193, + "root_product_id": 2135, + "update_tag": "SLE-Module-SAP-Applications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-SAP-Applications/15-SP3/ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-SAP-Applications15-SP3-Pool for ppc64le", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-sap-applications15-sp3-debuginfo-pool-ppc64le", + "parent_channel_label": "sle-product-sles_sap15-sp3-pool-ppc64le", + "product_id": 2197, + "repository_id": 4909, + "parent_product_id": 2193, + "root_product_id": 2135, + "update_tag": "SLE-Module-SAP-Applications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-SAP-Applications/15-SP3/ppc64le/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-SAP-Applications15-SP3-Debuginfo-Pool for ppc64le", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-containers15-sp3-updates-ppc64le-sap", + "parent_channel_label": "sle-product-sles_sap15-sp3-pool-ppc64le", + "product_id": 2155, + "repository_id": 4684, + "parent_product_id": 2143, + "root_product_id": 2135, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/15-SP3/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers15-SP3-Updates for ppc64le SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-containers15-sp3-debuginfo-updates-ppc64le-sap", + "parent_channel_label": "sle-product-sles_sap15-sp3-pool-ppc64le", + "product_id": 2155, + "repository_id": 4685, + "parent_product_id": 2143, + "root_product_id": 2135, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/15-SP3/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers15-SP3-Debuginfo-Updates for ppc64le SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-containers15-sp3-pool-ppc64le-sap", + "parent_channel_label": "sle-product-sles_sap15-sp3-pool-ppc64le", + "product_id": 2155, + "repository_id": 4686, + "parent_product_id": 2143, + "root_product_id": 2135, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP3/ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers15-SP3-Pool for ppc64le SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-containers15-sp3-debuginfo-pool-ppc64le-sap", + "parent_channel_label": "sle-product-sles_sap15-sp3-pool-ppc64le", + "product_id": 2155, + "repository_id": 4687, + "parent_product_id": 2143, + "root_product_id": 2135, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP3/ppc64le/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers15-SP3-Debuginfo-Pool for ppc64le SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-python2-15-sp3-updates-ppc64le-sap", + "parent_channel_label": "sle-product-sles_sap15-sp3-pool-ppc64le", + "product_id": 2182, + "repository_id": 4819, + "parent_product_id": 2143, + "root_product_id": 2135, + "update_tag": "SLE-Module-Python2", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Python2/15-SP3/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Python2-15-SP3-Updates for ppc64le SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-python2-15-sp3-debuginfo-updates-ppc64le-sap", + "parent_channel_label": "sle-product-sles_sap15-sp3-pool-ppc64le", + "product_id": 2182, + "repository_id": 4820, + "parent_product_id": 2143, + "root_product_id": 2135, + "update_tag": "SLE-Module-Python2", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Python2/15-SP3/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Python2-15-SP3-Debuginfo-Updates for ppc64le SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-python2-15-sp3-pool-ppc64le-sap", + "parent_channel_label": "sle-product-sles_sap15-sp3-pool-ppc64le", + "product_id": 2182, + "repository_id": 4821, + "parent_product_id": 2143, + "root_product_id": 2135, + "update_tag": "SLE-Module-Python2", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Python2/15-SP3/ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Python2-15-SP3-Pool for ppc64le SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-python2-15-sp3-debuginfo-pool-ppc64le-sap", + "parent_channel_label": "sle-product-sles_sap15-sp3-pool-ppc64le", + "product_id": 2182, + "repository_id": 4822, + "parent_product_id": 2143, + "root_product_id": 2135, + "update_tag": "SLE-Module-Python2", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Python2/15-SP3/ppc64le/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Python2-15-SP3-Debuginfo-Pool for ppc64le SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-live-patching15-sp3-updates-ppc64le-sap", + "parent_channel_label": "sle-product-sles_sap15-sp3-pool-ppc64le", + "product_id": 2185, + "repository_id": 4834, + "parent_product_id": 2143, + "root_product_id": 2135, + "update_tag": "SLE-Module-Live-Patching", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Live-Patching/15-SP3/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Live-Patching15-SP3-Updates for ppc64le SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-live-patching15-sp3-debuginfo-updates-ppc64le-sap", + "parent_channel_label": "sle-product-sles_sap15-sp3-pool-ppc64le", + "product_id": 2185, + "repository_id": 4835, + "parent_product_id": 2143, + "root_product_id": 2135, + "update_tag": "SLE-Module-Live-Patching", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Live-Patching/15-SP3/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Live-Patching15-SP3-Debuginfo-Updates for ppc64le SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-live-patching15-sp3-pool-ppc64le-sap", + "parent_channel_label": "sle-product-sles_sap15-sp3-pool-ppc64le", + "product_id": 2185, + "repository_id": 4836, + "parent_product_id": 2143, + "root_product_id": 2135, + "update_tag": "SLE-Module-Live-Patching", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Live-Patching/15-SP3/ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Live-Patching15-SP3-Pool for ppc64le SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-live-patching15-sp3-debuginfo-pool-ppc64le-sap", + "parent_channel_label": "sle-product-sles_sap15-sp3-pool-ppc64le", + "product_id": 2185, + "repository_id": 4837, + "parent_product_id": 2143, + "root_product_id": 2135, + "update_tag": "SLE-Module-Live-Patching", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Live-Patching/15-SP3/ppc64le/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Live-Patching15-SP3-Debuginfo-Pool for ppc64le SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-packagehub-15-sp3-backports-pool-ppc64le-sap", + "parent_channel_label": "sle-product-sles_sap15-sp3-pool-ppc64le", + "product_id": 2189, + "repository_id": 4857, + "parent_product_id": 2143, + "root_product_id": 2135, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-15-SP3_ppc64le/standard/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-15-SP3-Backports-Pool for ppc64le SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-packagehub-15-sp3-backports-debuginfo-ppc64le-sap", + "parent_channel_label": "sle-product-sles_sap15-sp3-pool-ppc64le", + "product_id": 2189, + "repository_id": 4858, + "parent_product_id": 2143, + "root_product_id": 2135, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-15-SP3_ppc64le/standard_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-15-SP3-Backports-Debuginfo for ppc64le SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-packagehub-subpackages15-sp3-updates-ppc64le-sap", + "parent_channel_label": "sle-product-sles_sap15-sp3-pool-ppc64le", + "product_id": 2189, + "repository_id": 4859, + "parent_product_id": 2143, + "root_product_id": 2135, + "update_tag": "SLE-Module-Packagehub-Subpackages", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP3/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Packagehub-Subpackages15-SP3-Updates for ppc64le SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-packagehub-subpackages15-sp3-debuginfo-updates-ppc64le-sap", + "parent_channel_label": "sle-product-sles_sap15-sp3-pool-ppc64le", + "product_id": 2189, + "repository_id": 4860, + "parent_product_id": 2143, + "root_product_id": 2135, + "update_tag": "SLE-Module-Packagehub-Subpackages", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP3/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Packagehub-Subpackages15-SP3-Debuginfo-Updates for ppc64le SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-packagehub-15-sp3-pool-ppc64le-sap", + "parent_channel_label": "sle-product-sles_sap15-sp3-pool-ppc64le", + "product_id": 2189, + "repository_id": 4861, + "parent_product_id": 2143, + "root_product_id": 2135, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-15-SP3_ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-15-SP3-Pool for ppc64le SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-packagehub-subpackages15-sp3-pool-ppc64le-sap", + "parent_channel_label": "sle-product-sles_sap15-sp3-pool-ppc64le", + "product_id": 2189, + "repository_id": 4862, + "parent_product_id": 2143, + "root_product_id": 2135, + "update_tag": "SLE-Module-Packagehub-Subpackages", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP3/ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Packagehub-Subpackages15-SP3-Pool for ppc64le SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-packagehub-subpackages15-sp3-debuginfo-pool-ppc64le-sap", + "parent_channel_label": "sle-product-sles_sap15-sp3-pool-ppc64le", + "product_id": 2189, + "repository_id": 4863, + "parent_product_id": 2143, + "root_product_id": 2135, + "update_tag": "SLE-Module-Packagehub-Subpackages", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP3/ppc64le/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Packagehub-Subpackages15-SP3-Debuginfo-Pool for ppc64le SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-certifications-15-sp3-updates-ppc64le-sap", + "parent_channel_label": "sle-product-sles_sap15-sp3-pool-ppc64le", + "product_id": 2387, + "repository_id": 5517, + "parent_product_id": 2135, + "root_product_id": 2135, + "update_tag": "SLE-Module-Certifications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Certifications/15-SP3/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Certifications-15-SP3-Updates for ppc64le SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-certifications-15-sp3-debuginfo-updates-ppc64le-sap", + "parent_channel_label": "sle-product-sles_sap15-sp3-pool-ppc64le", + "product_id": 2387, + "repository_id": 5518, + "parent_product_id": 2135, + "root_product_id": 2135, + "update_tag": "SLE-Module-Certifications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Certifications/15-SP3/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Certifications-15-SP3-Debuginfo-Updates for ppc64le SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-certifications-15-sp3-pool-ppc64le-sap", + "parent_channel_label": "sle-product-sles_sap15-sp3-pool-ppc64le", + "product_id": 2387, + "repository_id": 5519, + "parent_product_id": 2135, + "root_product_id": 2135, + "update_tag": "SLE-Module-Certifications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Certifications/15-SP3/ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Certifications-15-SP3-Pool for ppc64le SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-certifications-15-sp3-debuginfo-pool-ppc64le-sap", + "parent_channel_label": "sle-product-sles_sap15-sp3-pool-ppc64le", + "product_id": 2387, + "repository_id": 5520, + "parent_product_id": 2135, + "root_product_id": 2135, + "update_tag": "SLE-Module-Certifications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Certifications/15-SP3/ppc64le/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Certifications-15-SP3-Debuginfo-Pool for ppc64le SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-sles_sap15-sp3-updates-x86_64", + "parent_channel_label": "sle-product-sles_sap15-sp3-pool-x86_64", + "product_id": 2136, + "repository_id": 4585, + "parent_product_id": null, + "root_product_id": 2136, + "update_tag": "SLE-Product-SLES_SAP", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-SLES_SAP/15-SP3/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-SLES_SAP15-SP3-Updates for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-sles_sap15-sp3-debuginfo-updates-x86_64", + "parent_channel_label": "sle-product-sles_sap15-sp3-pool-x86_64", + "product_id": 2136, + "repository_id": 4586, + "parent_product_id": null, + "root_product_id": 2136, + "update_tag": "SLE-Product-SLES_SAP", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-SLES_SAP/15-SP3/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-SLES_SAP15-SP3-Debuginfo-Updates for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-sles_sap15-sp3-pool-x86_64", + "parent_channel_label": null, + "product_id": 2136, + "repository_id": 4587, + "parent_product_id": null, + "root_product_id": 2136, + "update_tag": "SLE-Product-SLES_SAP", + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-SLES_SAP/15-SP3/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-SLES_SAP15-SP3-Pool for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-sles_sap15-sp3-debuginfo-pool-x86_64", + "parent_channel_label": "sle-product-sles_sap15-sp3-pool-x86_64", + "product_id": 2136, + "repository_id": 4588, + "parent_product_id": null, + "root_product_id": 2136, + "update_tag": "SLE-Product-SLES_SAP", + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-SLES_SAP/15-SP3/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-SLES_SAP15-SP3-Debuginfo-Pool for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-basesystem15-sp3-updates-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-sp3-pool-x86_64", + "product_id": 2145, + "repository_id": 4634, + "parent_product_id": 2136, + "root_product_id": 2136, + "update_tag": "SLE-Module-Basesystem", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15-SP3/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Basesystem15-SP3-Updates for x86_64 SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-basesystem15-sp3-debuginfo-updates-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-sp3-pool-x86_64", + "product_id": 2145, + "repository_id": 4635, + "parent_product_id": 2136, + "root_product_id": 2136, + "update_tag": "SLE-Module-Basesystem", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15-SP3/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Basesystem15-SP3-Debuginfo-Updates for x86_64 SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-basesystem15-sp3-pool-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-sp3-pool-x86_64", + "product_id": 2145, + "repository_id": 4636, + "parent_product_id": 2136, + "root_product_id": 2136, + "update_tag": "SLE-Module-Basesystem", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP3/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Basesystem15-SP3-Pool for x86_64 SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-basesystem15-sp3-debuginfo-pool-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-sp3-pool-x86_64", + "product_id": 2145, + "repository_id": 4637, + "parent_product_id": 2136, + "root_product_id": 2136, + "update_tag": "SLE-Module-Basesystem", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP3/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Basesystem15-SP3-Debuginfo-Pool for x86_64 SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-manager-tools15-updates-x86_64-sap-sp3", + "parent_channel_label": "sle-product-sles_sap15-sp3-pool-x86_64", + "product_id": 1712, + "repository_id": 2932, + "parent_product_id": 2145, + "root_product_id": 2136, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/15/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-Updates for x86_64 SAP SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools15-debuginfo-updates-x86_64-sap-sp3", + "parent_channel_label": "sle-product-sles_sap15-sp3-pool-x86_64", + "product_id": 1712, + "repository_id": 2933, + "parent_product_id": 2145, + "root_product_id": 2136, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/15/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-Debuginfo-Updates for x86_64 SAP SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools15-pool-x86_64-sap-sp3", + "parent_channel_label": "sle-product-sles_sap15-sp3-pool-x86_64", + "product_id": 1712, + "repository_id": 2934, + "parent_product_id": 2145, + "root_product_id": 2136, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/15/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-Pool for x86_64 SAP SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools15-debuginfo-pool-x86_64-sap-sp3", + "parent_channel_label": "sle-product-sles_sap15-sp3-pool-x86_64", + "product_id": 1712, + "repository_id": 2935, + "parent_product_id": 2145, + "root_product_id": 2136, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/15/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-Debuginfo-Pool for x86_64 SAP SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools15-beta-updates-x86_64-sap-sp3", + "parent_channel_label": "sle-product-sles_sap15-sp3-pool-x86_64", + "product_id": 1928, + "repository_id": 3897, + "parent_product_id": 1712, + "root_product_id": 2136, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/15-BETA/x86_64/update/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-BETA-Updates for x86_64 SAP SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools15-beta-debuginfo-updates-x86_64-sap-sp3", + "parent_channel_label": "sle-product-sles_sap15-sp3-pool-x86_64", + "product_id": 1928, + "repository_id": 3898, + "parent_product_id": 1712, + "root_product_id": 2136, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/15-BETA/x86_64/update_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-BETA-Debuginfo-Updates for x86_64 SAP SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools15-beta-pool-x86_64-sap-sp3", + "parent_channel_label": "sle-product-sles_sap15-sp3-pool-x86_64", + "product_id": 1928, + "repository_id": 3908, + "parent_product_id": 1712, + "root_product_id": 2136, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/15-BETA/x86_64/product/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-BETA-Pool for x86_64 SAP SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools15-beta-debuginfo-pool-x86_64-sap-sp3", + "parent_channel_label": "sle-product-sles_sap15-sp3-pool-x86_64", + "product_id": 1928, + "repository_id": 3909, + "parent_product_id": 1712, + "root_product_id": 2136, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/15-BETA/x86_64/product_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-BETA-Debuginfo-Pool for x86_64 SAP SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-module-desktop-applications15-sp3-updates-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-sp3-pool-x86_64", + "product_id": 2149, + "repository_id": 4654, + "parent_product_id": 2145, + "root_product_id": 2136, + "update_tag": "SLE-Module-Desktop-Applications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15-SP3/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Desktop-Applications15-SP3-Updates for x86_64 SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-desktop-applications15-sp3-debuginfo-updates-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-sp3-pool-x86_64", + "product_id": 2149, + "repository_id": 4655, + "parent_product_id": 2145, + "root_product_id": 2136, + "update_tag": "SLE-Module-Desktop-Applications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15-SP3/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Desktop-Applications15-SP3-Debuginfo-Updates for x86_64 SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-desktop-applications15-sp3-pool-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-sp3-pool-x86_64", + "product_id": 2149, + "repository_id": 4656, + "parent_product_id": 2145, + "root_product_id": 2136, + "update_tag": "SLE-Module-Desktop-Applications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP3/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Desktop-Applications15-SP3-Pool for x86_64 SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-desktop-applications15-sp3-debuginfo-pool-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-sp3-pool-x86_64", + "product_id": 2149, + "repository_id": 4657, + "parent_product_id": 2145, + "root_product_id": 2136, + "update_tag": "SLE-Module-Desktop-Applications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP3/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Desktop-Applications15-SP3-Debuginfo-Pool for x86_64 SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-devtools15-sp3-updates-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-sp3-pool-x86_64", + "product_id": 2161, + "repository_id": 4714, + "parent_product_id": 2149, + "root_product_id": 2136, + "update_tag": "SLE-Module-Development-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15-SP3/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-DevTools15-SP3-Updates for x86_64 SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-devtools15-sp3-debuginfo-updates-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-sp3-pool-x86_64", + "product_id": 2161, + "repository_id": 4715, + "parent_product_id": 2149, + "root_product_id": 2136, + "update_tag": "SLE-Module-Development-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15-SP3/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-DevTools15-SP3-Debuginfo-Updates for x86_64 SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-devtools15-sp3-pool-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-sp3-pool-x86_64", + "product_id": 2161, + "repository_id": 4716, + "parent_product_id": 2149, + "root_product_id": 2136, + "update_tag": "SLE-Module-Development-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP3/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-DevTools15-SP3-Pool for x86_64 SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-devtools15-sp3-debuginfo-pool-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-sp3-pool-x86_64", + "product_id": 2161, + "repository_id": 4717, + "parent_product_id": 2149, + "root_product_id": 2136, + "update_tag": "SLE-Module-Development-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP3/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-DevTools15-SP3-Debuginfo-Pool for x86_64 SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-15-sp3-desktop-nvidia-driver-sap", + "parent_channel_label": "sle-product-sles_sap15-sp3-pool-x86_64", + "product_id": 2196, + "repository_id": 4577, + "parent_product_id": 2149, + "root_product_id": 2136, + "update_tag": null, + "url": "https://download.nvidia.com/suse/sle15sp3/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-15-SP3-Desktop-NVIDIA-Driver for x86_64 SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-we15-sp3-updates-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-sp3-pool-x86_64", + "product_id": 2196, + "repository_id": 4901, + "parent_product_id": 2149, + "root_product_id": 2136, + "update_tag": "SLE-Product-WE", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-WE/15-SP3/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-WE15-SP3-Updates for x86_64 SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-we15-sp3-debuginfo-updates-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-sp3-pool-x86_64", + "product_id": 2196, + "repository_id": 4902, + "parent_product_id": 2149, + "root_product_id": 2136, + "update_tag": "SLE-Product-WE", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-WE/15-SP3/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-WE15-SP3-Debuginfo-Updates for x86_64 SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-we15-sp3-pool-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-sp3-pool-x86_64", + "product_id": 2196, + "repository_id": 4903, + "parent_product_id": 2149, + "root_product_id": 2136, + "update_tag": "SLE-Product-WE", + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-WE/15-SP3/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-WE15-SP3-Pool for x86_64 SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-we15-sp3-debuginfo-pool-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-sp3-pool-x86_64", + "product_id": 2196, + "repository_id": 4904, + "parent_product_id": 2149, + "root_product_id": 2136, + "update_tag": "SLE-Product-WE", + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-WE/15-SP3/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-WE15-SP3-Debuginfo-Pool for x86_64 SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-server-applications15-sp3-updates-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-sp3-pool-x86_64", + "product_id": 2153, + "repository_id": 4674, + "parent_product_id": 2145, + "root_product_id": 2136, + "update_tag": "SLE-Module-Server-Applications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15-SP3/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Server-Applications15-SP3-Updates for x86_64 SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-server-applications15-sp3-debuginfo-updates-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-sp3-pool-x86_64", + "product_id": 2153, + "repository_id": 4675, + "parent_product_id": 2145, + "root_product_id": 2136, + "update_tag": "SLE-Module-Server-Applications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15-SP3/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Server-Applications15-SP3-Debuginfo-Updates for x86_64 SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-server-applications15-sp3-pool-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-sp3-pool-x86_64", + "product_id": 2153, + "repository_id": 4676, + "parent_product_id": 2145, + "root_product_id": 2136, + "update_tag": "SLE-Module-Server-Applications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP3/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Server-Applications15-SP3-Pool for x86_64 SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-server-applications15-sp3-debuginfo-pool-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-sp3-pool-x86_64", + "product_id": 2153, + "repository_id": 4677, + "parent_product_id": 2145, + "root_product_id": 2136, + "update_tag": "SLE-Module-Server-Applications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP3/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Server-Applications15-SP3-Debuginfo-Pool for x86_64 SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting15-sp3-updates-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-sp3-pool-x86_64", + "product_id": 2165, + "repository_id": 4734, + "parent_product_id": 2153, + "root_product_id": 2136, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/15-SP3/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Web-Scripting15-SP3-Updates for x86_64 SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting15-sp3-debuginfo-updates-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-sp3-pool-x86_64", + "product_id": 2165, + "repository_id": 4735, + "parent_product_id": 2153, + "root_product_id": 2136, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/15-SP3/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Web-Scripting15-SP3-Debuginfo-Updates for x86_64 SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting15-sp3-pool-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-sp3-pool-x86_64", + "product_id": 2165, + "repository_id": 4736, + "parent_product_id": 2153, + "root_product_id": 2136, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP3/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Web-Scripting15-SP3-Pool for x86_64 SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting15-sp3-debuginfo-pool-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-sp3-pool-x86_64", + "product_id": 2165, + "repository_id": 4737, + "parent_product_id": 2153, + "root_product_id": 2136, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP3/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Web-Scripting15-SP3-Debuginfo-Pool for x86_64 SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-legacy15-sp3-updates-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-sp3-pool-x86_64", + "product_id": 2171, + "repository_id": 4764, + "parent_product_id": 2153, + "root_product_id": 2136, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/15-SP3/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy15-SP3-Updates for x86_64 SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-legacy15-sp3-debuginfo-updates-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-sp3-pool-x86_64", + "product_id": 2171, + "repository_id": 4765, + "parent_product_id": 2153, + "root_product_id": 2136, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/15-SP3/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy15-SP3-Debuginfo-Updates for x86_64 SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-legacy15-sp3-pool-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-sp3-pool-x86_64", + "product_id": 2171, + "repository_id": 4766, + "parent_product_id": 2153, + "root_product_id": 2136, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15-SP3/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy15-SP3-Pool for x86_64 SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-legacy15-sp3-debuginfo-pool-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-sp3-pool-x86_64", + "product_id": 2171, + "repository_id": 4767, + "parent_product_id": 2153, + "root_product_id": 2136, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15-SP3/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy15-SP3-Debuginfo-Pool for x86_64 SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud15-sp3-updates-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-sp3-pool-x86_64", + "product_id": 2175, + "repository_id": 4784, + "parent_product_id": 2153, + "root_product_id": 2136, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/15-SP3/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud15-SP3-Updates for x86_64 SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud15-sp3-debuginfo-updates-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-sp3-pool-x86_64", + "product_id": 2175, + "repository_id": 4785, + "parent_product_id": 2153, + "root_product_id": 2136, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/15-SP3/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud15-SP3-Debuginfo-Updates for x86_64 SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud15-sp3-pool-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-sp3-pool-x86_64", + "product_id": 2175, + "repository_id": 4786, + "parent_product_id": 2153, + "root_product_id": 2136, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP3/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud15-SP3-Pool for x86_64 SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud15-sp3-debuginfo-pool-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-sp3-pool-x86_64", + "product_id": 2175, + "repository_id": 4787, + "parent_product_id": 2153, + "root_product_id": 2136, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP3/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud15-SP3-Debuginfo-Pool for x86_64 SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-ha15-sp3-updates-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-sp3-pool-x86_64", + "product_id": 2195, + "repository_id": 4896, + "parent_product_id": 2153, + "root_product_id": 2136, + "update_tag": "SLE-Product-HA", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-HA/15-SP3/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Product-HA15-SP3-Updates for x86_64 SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-ha15-sp3-debuginfo-updates-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-sp3-pool-x86_64", + "product_id": 2195, + "repository_id": 4897, + "parent_product_id": 2153, + "root_product_id": 2136, + "update_tag": "SLE-Product-HA", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-HA/15-SP3/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Product-HA15-SP3-Debuginfo-Updates for x86_64 SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-ha15-sp3-pool-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-sp3-pool-x86_64", + "product_id": 2195, + "repository_id": 4898, + "parent_product_id": 2153, + "root_product_id": 2136, + "update_tag": "SLE-Product-HA", + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP3/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Product-HA15-SP3-Pool for x86_64 SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-ha15-sp3-debuginfo-pool-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-sp3-pool-x86_64", + "product_id": 2195, + "repository_id": 4899, + "parent_product_id": 2153, + "root_product_id": 2136, + "update_tag": "SLE-Product-HA", + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP3/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Product-HA15-SP3-Debuginfo-Pool for x86_64 SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-sap-applications15-sp3-updates-x86_64", + "parent_channel_label": "sle-product-sles_sap15-sp3-pool-x86_64", + "product_id": 2198, + "repository_id": 4911, + "parent_product_id": 2195, + "root_product_id": 2136, + "update_tag": "SLE-Module-SAP-Applications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-SAP-Applications/15-SP3/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-SAP-Applications15-SP3-Updates for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-sap-applications15-sp3-debuginfo-updates-x86_64", + "parent_channel_label": "sle-product-sles_sap15-sp3-pool-x86_64", + "product_id": 2198, + "repository_id": 4912, + "parent_product_id": 2195, + "root_product_id": 2136, + "update_tag": "SLE-Module-SAP-Applications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-SAP-Applications/15-SP3/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-SAP-Applications15-SP3-Debuginfo-Updates for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-sap-applications15-sp3-pool-x86_64", + "parent_channel_label": "sle-product-sles_sap15-sp3-pool-x86_64", + "product_id": 2198, + "repository_id": 4913, + "parent_product_id": 2195, + "root_product_id": 2136, + "update_tag": "SLE-Module-SAP-Applications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-SAP-Applications/15-SP3/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-SAP-Applications15-SP3-Pool for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-sap-applications15-sp3-debuginfo-pool-x86_64", + "parent_channel_label": "sle-product-sles_sap15-sp3-pool-x86_64", + "product_id": 2198, + "repository_id": 4914, + "parent_product_id": 2195, + "root_product_id": 2136, + "update_tag": "SLE-Module-SAP-Applications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-SAP-Applications/15-SP3/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-SAP-Applications15-SP3-Debuginfo-Pool for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-containers15-sp3-updates-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-sp3-pool-x86_64", + "product_id": 2157, + "repository_id": 4694, + "parent_product_id": 2145, + "root_product_id": 2136, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/15-SP3/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers15-SP3-Updates for x86_64 SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-containers15-sp3-debuginfo-updates-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-sp3-pool-x86_64", + "product_id": 2157, + "repository_id": 4695, + "parent_product_id": 2145, + "root_product_id": 2136, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/15-SP3/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers15-SP3-Debuginfo-Updates for x86_64 SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-containers15-sp3-pool-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-sp3-pool-x86_64", + "product_id": 2157, + "repository_id": 4696, + "parent_product_id": 2145, + "root_product_id": 2136, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP3/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers15-SP3-Pool for x86_64 SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-containers15-sp3-debuginfo-pool-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-sp3-pool-x86_64", + "product_id": 2157, + "repository_id": 4697, + "parent_product_id": 2145, + "root_product_id": 2136, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP3/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers15-SP3-Debuginfo-Pool for x86_64 SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-cap-tools15-sp3-updates-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-sp3-pool-x86_64", + "product_id": 2176, + "repository_id": 4789, + "parent_product_id": 2145, + "root_product_id": 2136, + "update_tag": "SLE-Module-CAP-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-CAP-Tools/15-SP3/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-CAP-Tools15-SP3-Updates for x86_64 SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-cap-tools15-sp3-debuginfo-updates-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-sp3-pool-x86_64", + "product_id": 2176, + "repository_id": 4790, + "parent_product_id": 2145, + "root_product_id": 2136, + "update_tag": "SLE-Module-CAP-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-CAP-Tools/15-SP3/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-CAP-Tools15-SP3-Debuginfo-Updates for x86_64 SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-cap-tools15-sp3-pool-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-sp3-pool-x86_64", + "product_id": 2176, + "repository_id": 4791, + "parent_product_id": 2145, + "root_product_id": 2136, + "update_tag": "SLE-Module-CAP-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-CAP-Tools/15-SP3/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-CAP-Tools15-SP3-Pool for x86_64 SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-cap-tools15-sp3-debuginfo-pool-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-sp3-pool-x86_64", + "product_id": 2176, + "repository_id": 4792, + "parent_product_id": 2145, + "root_product_id": 2136, + "update_tag": "SLE-Module-CAP-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-CAP-Tools/15-SP3/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-CAP-Tools15-SP3-Debuginfo-Pool for x86_64 SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-python2-15-sp3-updates-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-sp3-pool-x86_64", + "product_id": 2184, + "repository_id": 4829, + "parent_product_id": 2145, + "root_product_id": 2136, + "update_tag": "SLE-Module-Python2", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Python2/15-SP3/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Python2-15-SP3-Updates for x86_64 SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-python2-15-sp3-debuginfo-updates-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-sp3-pool-x86_64", + "product_id": 2184, + "repository_id": 4830, + "parent_product_id": 2145, + "root_product_id": 2136, + "update_tag": "SLE-Module-Python2", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Python2/15-SP3/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Python2-15-SP3-Debuginfo-Updates for x86_64 SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-python2-15-sp3-pool-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-sp3-pool-x86_64", + "product_id": 2184, + "repository_id": 4831, + "parent_product_id": 2145, + "root_product_id": 2136, + "update_tag": "SLE-Module-Python2", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Python2/15-SP3/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Python2-15-SP3-Pool for x86_64 SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-python2-15-sp3-debuginfo-pool-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-sp3-pool-x86_64", + "product_id": 2184, + "repository_id": 4832, + "parent_product_id": 2145, + "root_product_id": 2136, + "update_tag": "SLE-Module-Python2", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Python2/15-SP3/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Python2-15-SP3-Debuginfo-Pool for x86_64 SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-live-patching15-sp3-updates-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-sp3-pool-x86_64", + "product_id": 2187, + "repository_id": 4844, + "parent_product_id": 2145, + "root_product_id": 2136, + "update_tag": "SLE-Module-Live-Patching", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Live-Patching/15-SP3/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Live-Patching15-SP3-Updates for x86_64 SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-live-patching15-sp3-debuginfo-updates-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-sp3-pool-x86_64", + "product_id": 2187, + "repository_id": 4845, + "parent_product_id": 2145, + "root_product_id": 2136, + "update_tag": "SLE-Module-Live-Patching", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Live-Patching/15-SP3/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Live-Patching15-SP3-Debuginfo-Updates for x86_64 SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-live-patching15-sp3-pool-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-sp3-pool-x86_64", + "product_id": 2187, + "repository_id": 4846, + "parent_product_id": 2145, + "root_product_id": 2136, + "update_tag": "SLE-Module-Live-Patching", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Live-Patching/15-SP3/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Live-Patching15-SP3-Pool for x86_64 SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-live-patching15-sp3-debuginfo-pool-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-sp3-pool-x86_64", + "product_id": 2187, + "repository_id": 4847, + "parent_product_id": 2145, + "root_product_id": 2136, + "update_tag": "SLE-Module-Live-Patching", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Live-Patching/15-SP3/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Live-Patching15-SP3-Debuginfo-Pool for x86_64 SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-packagehub-15-sp3-backports-pool-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-sp3-pool-x86_64", + "product_id": 2191, + "repository_id": 4873, + "parent_product_id": 2145, + "root_product_id": 2136, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-15-SP3_x86_64/standard/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-15-SP3-Backports-Pool for x86_64 SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-packagehub-15-sp3-backports-debuginfo-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-sp3-pool-x86_64", + "product_id": 2191, + "repository_id": 4874, + "parent_product_id": 2145, + "root_product_id": 2136, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-15-SP3_x86_64/standard_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-15-SP3-Backports-Debuginfo for x86_64 SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-packagehub-subpackages15-sp3-updates-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-sp3-pool-x86_64", + "product_id": 2191, + "repository_id": 4875, + "parent_product_id": 2145, + "root_product_id": 2136, + "update_tag": "SLE-Module-Packagehub-Subpackages", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP3/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Packagehub-Subpackages15-SP3-Updates for x86_64 SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-packagehub-subpackages15-sp3-debuginfo-updates-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-sp3-pool-x86_64", + "product_id": 2191, + "repository_id": 4876, + "parent_product_id": 2145, + "root_product_id": 2136, + "update_tag": "SLE-Module-Packagehub-Subpackages", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP3/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Packagehub-Subpackages15-SP3-Debuginfo-Updates for x86_64 SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-packagehub-15-sp3-pool-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-sp3-pool-x86_64", + "product_id": 2191, + "repository_id": 4877, + "parent_product_id": 2145, + "root_product_id": 2136, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-15-SP3_x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-15-SP3-Pool for x86_64 SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-packagehub-subpackages15-sp3-pool-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-sp3-pool-x86_64", + "product_id": 2191, + "repository_id": 4878, + "parent_product_id": 2145, + "root_product_id": 2136, + "update_tag": "SLE-Module-Packagehub-Subpackages", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP3/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Packagehub-Subpackages15-SP3-Pool for x86_64 SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-packagehub-subpackages15-sp3-debuginfo-pool-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-sp3-pool-x86_64", + "product_id": 2191, + "repository_id": 4879, + "parent_product_id": 2145, + "root_product_id": 2136, + "update_tag": "SLE-Module-Packagehub-Subpackages", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP3/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Packagehub-Subpackages15-SP3-Debuginfo-Pool for x86_64 SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-certifications-15-sp3-updates-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-sp3-pool-x86_64", + "product_id": 2389, + "repository_id": 5527, + "parent_product_id": 2136, + "root_product_id": 2136, + "update_tag": "SLE-Module-Certifications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Certifications/15-SP3/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Certifications-15-SP3-Updates for x86_64 SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-certifications-15-sp3-debuginfo-updates-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-sp3-pool-x86_64", + "product_id": 2389, + "repository_id": 5528, + "parent_product_id": 2136, + "root_product_id": 2136, + "update_tag": "SLE-Module-Certifications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Certifications/15-SP3/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Certifications-15-SP3-Debuginfo-Updates for x86_64 SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-certifications-15-sp3-pool-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-sp3-pool-x86_64", + "product_id": 2389, + "repository_id": 5529, + "parent_product_id": 2136, + "root_product_id": 2136, + "update_tag": "SLE-Module-Certifications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Certifications/15-SP3/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Certifications-15-SP3-Pool for x86_64 SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-certifications-15-sp3-debuginfo-pool-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-sp3-pool-x86_64", + "product_id": 2389, + "repository_id": 5530, + "parent_product_id": 2136, + "root_product_id": 2136, + "update_tag": "SLE-Module-Certifications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Certifications/15-SP3/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Certifications-15-SP3-Debuginfo-Pool for x86_64 SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-sles15-sp3-updates-aarch64", + "parent_channel_label": "sle-product-sles15-sp3-pool-aarch64", + "product_id": 2137, + "repository_id": 4590, + "parent_product_id": null, + "root_product_id": 2137, + "update_tag": "SLE-Product-SLES", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-SLES/15-SP3/aarch64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-SLES15-SP3-Updates for aarch64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-sles15-sp3-debuginfo-updates-aarch64", + "parent_channel_label": "sle-product-sles15-sp3-pool-aarch64", + "product_id": 2137, + "repository_id": 4591, + "parent_product_id": null, + "root_product_id": 2137, + "update_tag": "SLE-Product-SLES", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-SLES/15-SP3/aarch64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-SLES15-SP3-Debuginfo-Updates for aarch64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle15-sp3-installer-updates-aarch64", + "parent_channel_label": "sle-product-sles15-sp3-pool-aarch64", + "product_id": 2137, + "repository_id": 4592, + "parent_product_id": null, + "root_product_id": 2137, + "update_tag": "SLE-INSTALLER", + "url": "https://updates.suse.com/SUSE/Updates/SLE-INSTALLER/15-SP3/aarch64/update/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE15-SP3-Installer-Updates for aarch64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-sles15-sp3-pool-aarch64", + "parent_channel_label": null, + "product_id": 2137, + "repository_id": 4593, + "parent_product_id": null, + "root_product_id": 2137, + "update_tag": "SLE-Product-SLES", + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-SLES/15-SP3/aarch64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-SLES15-SP3-Pool for aarch64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-sles15-sp3-debuginfo-pool-aarch64", + "parent_channel_label": "sle-product-sles15-sp3-pool-aarch64", + "product_id": 2137, + "repository_id": 4594, + "parent_product_id": null, + "root_product_id": 2137, + "update_tag": "SLE-Product-SLES", + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-SLES/15-SP3/aarch64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-SLES15-SP3-Debuginfo-Pool for aarch64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-basesystem15-sp3-updates-aarch64", + "parent_channel_label": "sle-product-sles15-sp3-pool-aarch64", + "product_id": 2142, + "repository_id": 4619, + "parent_product_id": 2137, + "root_product_id": 2137, + "update_tag": "SLE-Module-Basesystem", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15-SP3/aarch64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Basesystem15-SP3-Updates for aarch64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-basesystem15-sp3-debuginfo-updates-aarch64", + "parent_channel_label": "sle-product-sles15-sp3-pool-aarch64", + "product_id": 2142, + "repository_id": 4620, + "parent_product_id": 2137, + "root_product_id": 2137, + "update_tag": "SLE-Module-Basesystem", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15-SP3/aarch64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Basesystem15-SP3-Debuginfo-Updates for aarch64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-basesystem15-sp3-pool-aarch64", + "parent_channel_label": "sle-product-sles15-sp3-pool-aarch64", + "product_id": 2142, + "repository_id": 4621, + "parent_product_id": 2137, + "root_product_id": 2137, + "update_tag": "SLE-Module-Basesystem", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP3/aarch64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Basesystem15-SP3-Pool for aarch64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-basesystem15-sp3-debuginfo-pool-aarch64", + "parent_channel_label": "sle-product-sles15-sp3-pool-aarch64", + "product_id": 2142, + "repository_id": 4622, + "parent_product_id": 2137, + "root_product_id": 2137, + "update_tag": "SLE-Module-Basesystem", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP3/aarch64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Basesystem15-SP3-Debuginfo-Pool for aarch64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-manager-tools15-updates-aarch64-sp3", + "parent_channel_label": "sle-product-sles15-sp3-pool-aarch64", + "product_id": 1709, + "repository_id": 2917, + "parent_product_id": 2142, + "root_product_id": 2137, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/15/aarch64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-Updates for aarch64 SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools15-debuginfo-updates-aarch64-sp3", + "parent_channel_label": "sle-product-sles15-sp3-pool-aarch64", + "product_id": 1709, + "repository_id": 2918, + "parent_product_id": 2142, + "root_product_id": 2137, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/15/aarch64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-Debuginfo-Updates for aarch64 SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools15-pool-aarch64-sp3", + "parent_channel_label": "sle-product-sles15-sp3-pool-aarch64", + "product_id": 1709, + "repository_id": 2919, + "parent_product_id": 2142, + "root_product_id": 2137, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/15/aarch64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-Pool for aarch64 SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools15-debuginfo-pool-aarch64-sp3", + "parent_channel_label": "sle-product-sles15-sp3-pool-aarch64", + "product_id": 1709, + "repository_id": 2920, + "parent_product_id": 2142, + "root_product_id": 2137, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/15/aarch64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-Debuginfo-Pool for aarch64 SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools15-beta-updates-aarch64-sp3", + "parent_channel_label": "sle-product-sles15-sp3-pool-aarch64", + "product_id": 1925, + "repository_id": 3891, + "parent_product_id": 1709, + "root_product_id": 2137, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/15-BETA/aarch64/update/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-BETA-Updates for aarch64 SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools15-beta-debuginfo-updates-aarch64-sp3", + "parent_channel_label": "sle-product-sles15-sp3-pool-aarch64", + "product_id": 1925, + "repository_id": 3892, + "parent_product_id": 1709, + "root_product_id": 2137, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/15-BETA/aarch64/update_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-BETA-Debuginfo-Updates for aarch64 SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools15-beta-pool-aarch64-sp3", + "parent_channel_label": "sle-product-sles15-sp3-pool-aarch64", + "product_id": 1925, + "repository_id": 3899, + "parent_product_id": 1709, + "root_product_id": 2137, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/15-BETA/aarch64/product/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-BETA-Pool for aarch64 SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools15-beta-debuginfo-pool-aarch64-sp3", + "parent_channel_label": "sle-product-sles15-sp3-pool-aarch64", + "product_id": 1925, + "repository_id": 3900, + "parent_product_id": 1709, + "root_product_id": 2137, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/15-BETA/aarch64/product_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-BETA-Debuginfo-Pool for aarch64 SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-module-desktop-applications15-sp3-updates-aarch64", + "parent_channel_label": "sle-product-sles15-sp3-pool-aarch64", + "product_id": 2146, + "repository_id": 4639, + "parent_product_id": 2142, + "root_product_id": 2137, + "update_tag": "SLE-Module-Desktop-Applications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15-SP3/aarch64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Desktop-Applications15-SP3-Updates for aarch64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-desktop-applications15-sp3-debuginfo-updates-aarch64", + "parent_channel_label": "sle-product-sles15-sp3-pool-aarch64", + "product_id": 2146, + "repository_id": 4640, + "parent_product_id": 2142, + "root_product_id": 2137, + "update_tag": "SLE-Module-Desktop-Applications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15-SP3/aarch64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Desktop-Applications15-SP3-Debuginfo-Updates for aarch64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-desktop-applications15-sp3-pool-aarch64", + "parent_channel_label": "sle-product-sles15-sp3-pool-aarch64", + "product_id": 2146, + "repository_id": 4641, + "parent_product_id": 2142, + "root_product_id": 2137, + "update_tag": "SLE-Module-Desktop-Applications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP3/aarch64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Desktop-Applications15-SP3-Pool for aarch64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-desktop-applications15-sp3-debuginfo-pool-aarch64", + "parent_channel_label": "sle-product-sles15-sp3-pool-aarch64", + "product_id": 2146, + "repository_id": 4642, + "parent_product_id": 2142, + "root_product_id": 2137, + "update_tag": "SLE-Module-Desktop-Applications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP3/aarch64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Desktop-Applications15-SP3-Debuginfo-Pool for aarch64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-devtools15-sp3-updates-aarch64", + "parent_channel_label": "sle-product-sles15-sp3-pool-aarch64", + "product_id": 2158, + "repository_id": 4699, + "parent_product_id": 2146, + "root_product_id": 2137, + "update_tag": "SLE-Module-Development-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15-SP3/aarch64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-DevTools15-SP3-Updates for aarch64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-devtools15-sp3-debuginfo-updates-aarch64", + "parent_channel_label": "sle-product-sles15-sp3-pool-aarch64", + "product_id": 2158, + "repository_id": 4700, + "parent_product_id": 2146, + "root_product_id": 2137, + "update_tag": "SLE-Module-Development-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15-SP3/aarch64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-DevTools15-SP3-Debuginfo-Updates for aarch64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-devtools15-sp3-pool-aarch64", + "parent_channel_label": "sle-product-sles15-sp3-pool-aarch64", + "product_id": 2158, + "repository_id": 4701, + "parent_product_id": 2146, + "root_product_id": 2137, + "update_tag": "SLE-Module-Development-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP3/aarch64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-DevTools15-SP3-Pool for aarch64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-devtools15-sp3-debuginfo-pool-aarch64", + "parent_channel_label": "sle-product-sles15-sp3-pool-aarch64", + "product_id": 2158, + "repository_id": 4702, + "parent_product_id": 2146, + "root_product_id": 2137, + "update_tag": "SLE-Module-Development-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP3/aarch64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-DevTools15-SP3-Debuginfo-Pool for aarch64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-nvidia-compute-15-updates-aarch64-we-sp3", + "parent_channel_label": "sle-product-sles15-sp3-pool-aarch64", + "product_id": 2130, + "repository_id": 4560, + "parent_product_id": 2158, + "root_product_id": 2137, + "update_tag": "SLE-Module-NVIDIA-Compute", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-NVIDIA-Compute/15/aarch64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-NVIDIA-Compute-15-Updates for aarch64 WE SP3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-nvidia-compute-15-pool-aarch64-we-sp3", + "parent_channel_label": "sle-product-sles15-sp3-pool-aarch64", + "product_id": 2130, + "repository_id": 4561, + "parent_product_id": 2158, + "root_product_id": 2137, + "update_tag": "SLE-Module-NVIDIA-Compute", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-NVIDIA-Compute/15/aarch64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-NVIDIA-Compute-15-Pool for aarch64 WE SP3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "nvidia-compute-sle-15-aarch64-we-sp3", + "parent_channel_label": "sle-product-sles15-sp3-pool-aarch64", + "product_id": 2130, + "repository_id": 4562, + "parent_product_id": 2158, + "root_product_id": 2137, + "update_tag": null, + "url": "https://developer.download.nvidia.com/compute/cuda/repos/sles15/sbsa/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "NVIDIA-Compute-SLE-15 for aarch64 WE SP3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-server-applications15-sp3-updates-aarch64", + "parent_channel_label": "sle-product-sles15-sp3-pool-aarch64", + "product_id": 2150, + "repository_id": 4659, + "parent_product_id": 2142, + "root_product_id": 2137, + "update_tag": "SLE-Module-Server-Applications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15-SP3/aarch64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Server-Applications15-SP3-Updates for aarch64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-server-applications15-sp3-debuginfo-updates-aarch64", + "parent_channel_label": "sle-product-sles15-sp3-pool-aarch64", + "product_id": 2150, + "repository_id": 4660, + "parent_product_id": 2142, + "root_product_id": 2137, + "update_tag": "SLE-Module-Server-Applications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15-SP3/aarch64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Server-Applications15-SP3-Debuginfo-Updates for aarch64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-server-applications15-sp3-pool-aarch64", + "parent_channel_label": "sle-product-sles15-sp3-pool-aarch64", + "product_id": 2150, + "repository_id": 4661, + "parent_product_id": 2142, + "root_product_id": 2137, + "update_tag": "SLE-Module-Server-Applications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP3/aarch64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Server-Applications15-SP3-Pool for aarch64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-server-applications15-sp3-debuginfo-pool-aarch64", + "parent_channel_label": "sle-product-sles15-sp3-pool-aarch64", + "product_id": 2150, + "repository_id": 4662, + "parent_product_id": 2142, + "root_product_id": 2137, + "update_tag": "SLE-Module-Server-Applications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP3/aarch64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Server-Applications15-SP3-Debuginfo-Pool for aarch64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting15-sp3-updates-aarch64", + "parent_channel_label": "sle-product-sles15-sp3-pool-aarch64", + "product_id": 2162, + "repository_id": 4719, + "parent_product_id": 2150, + "root_product_id": 2137, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/15-SP3/aarch64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Web-Scripting15-SP3-Updates for aarch64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting15-sp3-debuginfo-updates-aarch64", + "parent_channel_label": "sle-product-sles15-sp3-pool-aarch64", + "product_id": 2162, + "repository_id": 4720, + "parent_product_id": 2150, + "root_product_id": 2137, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/15-SP3/aarch64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Web-Scripting15-SP3-Debuginfo-Updates for aarch64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting15-sp3-pool-aarch64", + "parent_channel_label": "sle-product-sles15-sp3-pool-aarch64", + "product_id": 2162, + "repository_id": 4721, + "parent_product_id": 2150, + "root_product_id": 2137, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP3/aarch64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Web-Scripting15-SP3-Pool for aarch64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting15-sp3-debuginfo-pool-aarch64", + "parent_channel_label": "sle-product-sles15-sp3-pool-aarch64", + "product_id": 2162, + "repository_id": 4722, + "parent_product_id": 2150, + "root_product_id": 2137, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP3/aarch64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Web-Scripting15-SP3-Debuginfo-Pool for aarch64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-legacy15-sp3-updates-aarch64", + "parent_channel_label": "sle-product-sles15-sp3-pool-aarch64", + "product_id": 2168, + "repository_id": 4749, + "parent_product_id": 2150, + "root_product_id": 2137, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/15-SP3/aarch64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy15-SP3-Updates for aarch64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-legacy15-sp3-debuginfo-updates-aarch64", + "parent_channel_label": "sle-product-sles15-sp3-pool-aarch64", + "product_id": 2168, + "repository_id": 4750, + "parent_product_id": 2150, + "root_product_id": 2137, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/15-SP3/aarch64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy15-SP3-Debuginfo-Updates for aarch64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-legacy15-sp3-pool-aarch64", + "parent_channel_label": "sle-product-sles15-sp3-pool-aarch64", + "product_id": 2168, + "repository_id": 4751, + "parent_product_id": 2150, + "root_product_id": 2137, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15-SP3/aarch64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy15-SP3-Pool for aarch64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-legacy15-sp3-debuginfo-pool-aarch64", + "parent_channel_label": "sle-product-sles15-sp3-pool-aarch64", + "product_id": 2168, + "repository_id": 4752, + "parent_product_id": 2150, + "root_product_id": 2137, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15-SP3/aarch64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy15-SP3-Debuginfo-Pool for aarch64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud15-sp3-updates-aarch64", + "parent_channel_label": "sle-product-sles15-sp3-pool-aarch64", + "product_id": 2172, + "repository_id": 4769, + "parent_product_id": 2150, + "root_product_id": 2137, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/15-SP3/aarch64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud15-SP3-Updates for aarch64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud15-sp3-debuginfo-updates-aarch64", + "parent_channel_label": "sle-product-sles15-sp3-pool-aarch64", + "product_id": 2172, + "repository_id": 4770, + "parent_product_id": 2150, + "root_product_id": 2137, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/15-SP3/aarch64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud15-SP3-Debuginfo-Updates for aarch64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud15-sp3-pool-aarch64", + "parent_channel_label": "sle-product-sles15-sp3-pool-aarch64", + "product_id": 2172, + "repository_id": 4771, + "parent_product_id": 2150, + "root_product_id": 2137, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP3/aarch64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud15-SP3-Pool for aarch64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud15-sp3-debuginfo-pool-aarch64", + "parent_channel_label": "sle-product-sles15-sp3-pool-aarch64", + "product_id": 2172, + "repository_id": 4772, + "parent_product_id": 2150, + "root_product_id": 2137, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP3/aarch64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud15-SP3-Debuginfo-Pool for aarch64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-ha15-sp3-updates-aarch64", + "parent_channel_label": "sle-product-sles15-sp3-pool-aarch64", + "product_id": 2192, + "repository_id": 4881, + "parent_product_id": 2150, + "root_product_id": 2137, + "update_tag": "SLE-Product-HA", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-HA/15-SP3/aarch64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HA15-SP3-Updates for aarch64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-ha15-sp3-debuginfo-updates-aarch64", + "parent_channel_label": "sle-product-sles15-sp3-pool-aarch64", + "product_id": 2192, + "repository_id": 4882, + "parent_product_id": 2150, + "root_product_id": 2137, + "update_tag": "SLE-Product-HA", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-HA/15-SP3/aarch64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HA15-SP3-Debuginfo-Updates for aarch64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-ha15-sp3-pool-aarch64", + "parent_channel_label": "sle-product-sles15-sp3-pool-aarch64", + "product_id": 2192, + "repository_id": 4883, + "parent_product_id": 2150, + "root_product_id": 2137, + "update_tag": "SLE-Product-HA", + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP3/aarch64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HA15-SP3-Pool for aarch64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-ha15-sp3-debuginfo-pool-aarch64", + "parent_channel_label": "sle-product-sles15-sp3-pool-aarch64", + "product_id": 2192, + "repository_id": 4884, + "parent_product_id": 2150, + "root_product_id": 2137, + "update_tag": "SLE-Product-HA", + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP3/aarch64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HA15-SP3-Debuginfo-Pool for aarch64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-enterprise-storage-7.1-updates-aarch64-sp3", + "parent_channel_label": "sle-product-sles15-sp3-pool-aarch64", + "product_id": 2414, + "repository_id": 5598, + "parent_product_id": 2150, + "root_product_id": 2137, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Updates/Storage/7.1/aarch64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-Enterprise-Storage-7.1-Updates for aarch64 SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-enterprise-storage-7.1-debuginfo-updates-aarch64-sp3", + "parent_channel_label": "sle-product-sles15-sp3-pool-aarch64", + "product_id": 2414, + "repository_id": 5599, + "parent_product_id": 2150, + "root_product_id": 2137, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Updates/Storage/7.1/aarch64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SUSE-Enterprise-Storage-7.1-Debuginfo-Updates for aarch64 SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-enterprise-storage-7.1-pool-aarch64-sp3", + "parent_channel_label": "sle-product-sles15-sp3-pool-aarch64", + "product_id": 2414, + "repository_id": 5600, + "parent_product_id": 2150, + "root_product_id": 2137, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Products/Storage/7.1/aarch64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-Enterprise-Storage-7.1-Pool for aarch64 SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-enterprise-storage-7.1-debuginfo-pool-aarch64-sp3", + "parent_channel_label": "sle-product-sles15-sp3-pool-aarch64", + "product_id": 2414, + "repository_id": 5601, + "parent_product_id": 2150, + "root_product_id": 2137, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Products/Storage/7.1/aarch64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SUSE-Enterprise-Storage-7.1-Debuginfo-Pool for aarch64 SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-containers15-sp3-updates-aarch64", + "parent_channel_label": "sle-product-sles15-sp3-pool-aarch64", + "product_id": 2154, + "repository_id": 4679, + "parent_product_id": 2142, + "root_product_id": 2137, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/15-SP3/aarch64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers15-SP3-Updates for aarch64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-containers15-sp3-debuginfo-updates-aarch64", + "parent_channel_label": "sle-product-sles15-sp3-pool-aarch64", + "product_id": 2154, + "repository_id": 4680, + "parent_product_id": 2142, + "root_product_id": 2137, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/15-SP3/aarch64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers15-SP3-Debuginfo-Updates for aarch64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-containers15-sp3-pool-aarch64", + "parent_channel_label": "sle-product-sles15-sp3-pool-aarch64", + "product_id": 2154, + "repository_id": 4681, + "parent_product_id": 2142, + "root_product_id": 2137, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP3/aarch64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers15-SP3-Pool for aarch64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-containers15-sp3-debuginfo-pool-aarch64", + "parent_channel_label": "sle-product-sles15-sp3-pool-aarch64", + "product_id": 2154, + "repository_id": 4682, + "parent_product_id": 2142, + "root_product_id": 2137, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP3/aarch64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers15-SP3-Debuginfo-Pool for aarch64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-transactional-server15-sp3-updates-aarch64", + "parent_channel_label": "sle-product-sles15-sp3-pool-aarch64", + "product_id": 2177, + "repository_id": 4794, + "parent_product_id": 2142, + "root_product_id": 2137, + "update_tag": "SLE-Module-Transactional-Server", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Transactional-Server/15-SP3/aarch64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Transactional-Server15-SP3-Updates for aarch64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-transactional-server15-sp3-debuginfo-updates-aarch64", + "parent_channel_label": "sle-product-sles15-sp3-pool-aarch64", + "product_id": 2177, + "repository_id": 4795, + "parent_product_id": 2142, + "root_product_id": 2137, + "update_tag": "SLE-Module-Transactional-Server", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Transactional-Server/15-SP3/aarch64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Transactional-Server15-SP3-Debuginfo-Updates for aarch64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-transactional-server15-sp3-pool-aarch64", + "parent_channel_label": "sle-product-sles15-sp3-pool-aarch64", + "product_id": 2177, + "repository_id": 4796, + "parent_product_id": 2142, + "root_product_id": 2137, + "update_tag": "SLE-Module-Transactional-Server", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Transactional-Server/15-SP3/aarch64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Transactional-Server15-SP3-Pool for aarch64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-transactional-server15-sp3-debuginfo-pool-aarch64", + "parent_channel_label": "sle-product-sles15-sp3-pool-aarch64", + "product_id": 2177, + "repository_id": 4797, + "parent_product_id": 2142, + "root_product_id": 2137, + "update_tag": "SLE-Module-Transactional-Server", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Transactional-Server/15-SP3/aarch64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Transactional-Server15-SP3-Debuginfo-Pool for aarch64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-python2-15-sp3-updates-aarch64", + "parent_channel_label": "sle-product-sles15-sp3-pool-aarch64", + "product_id": 2181, + "repository_id": 4814, + "parent_product_id": 2142, + "root_product_id": 2137, + "update_tag": "SLE-Module-Python2", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Python2/15-SP3/aarch64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Python2-15-SP3-Updates for aarch64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-python2-15-sp3-debuginfo-updates-aarch64", + "parent_channel_label": "sle-product-sles15-sp3-pool-aarch64", + "product_id": 2181, + "repository_id": 4815, + "parent_product_id": 2142, + "root_product_id": 2137, + "update_tag": "SLE-Module-Python2", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Python2/15-SP3/aarch64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Python2-15-SP3-Debuginfo-Updates for aarch64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-python2-15-sp3-pool-aarch64", + "parent_channel_label": "sle-product-sles15-sp3-pool-aarch64", + "product_id": 2181, + "repository_id": 4816, + "parent_product_id": 2142, + "root_product_id": 2137, + "update_tag": "SLE-Module-Python2", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Python2/15-SP3/aarch64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Python2-15-SP3-Pool for aarch64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-python2-15-sp3-debuginfo-pool-aarch64", + "parent_channel_label": "sle-product-sles15-sp3-pool-aarch64", + "product_id": 2181, + "repository_id": 4817, + "parent_product_id": 2142, + "root_product_id": 2137, + "update_tag": "SLE-Module-Python2", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Python2/15-SP3/aarch64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Python2-15-SP3-Debuginfo-Pool for aarch64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-packagehub-15-sp3-backports-pool-aarch64", + "parent_channel_label": "sle-product-sles15-sp3-pool-aarch64", + "product_id": 2188, + "repository_id": 4849, + "parent_product_id": 2142, + "root_product_id": 2137, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-15-SP3_aarch64/standard/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-15-SP3-Backports-Pool for aarch64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-packagehub-15-sp3-backports-debuginfo-aarch64", + "parent_channel_label": "sle-product-sles15-sp3-pool-aarch64", + "product_id": 2188, + "repository_id": 4850, + "parent_product_id": 2142, + "root_product_id": 2137, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-15-SP3_aarch64/standard_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-15-SP3-Backports-Debuginfo for aarch64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-packagehub-subpackages15-sp3-updates-aarch64", + "parent_channel_label": "sle-product-sles15-sp3-pool-aarch64", + "product_id": 2188, + "repository_id": 4851, + "parent_product_id": 2142, + "root_product_id": 2137, + "update_tag": "SLE-Module-Packagehub-Subpackages", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP3/aarch64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Packagehub-Subpackages15-SP3-Updates for aarch64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-packagehub-subpackages15-sp3-debuginfo-updates-aarch64", + "parent_channel_label": "sle-product-sles15-sp3-pool-aarch64", + "product_id": 2188, + "repository_id": 4852, + "parent_product_id": 2142, + "root_product_id": 2137, + "update_tag": "SLE-Module-Packagehub-Subpackages", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP3/aarch64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Packagehub-Subpackages15-SP3-Debuginfo-Updates for aarch64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-packagehub-15-sp3-pool-aarch64", + "parent_channel_label": "sle-product-sles15-sp3-pool-aarch64", + "product_id": 2188, + "repository_id": 4853, + "parent_product_id": 2142, + "root_product_id": 2137, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-15-SP3_aarch64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-15-SP3-Pool for aarch64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-packagehub-subpackages15-sp3-pool-aarch64", + "parent_channel_label": "sle-product-sles15-sp3-pool-aarch64", + "product_id": 2188, + "repository_id": 4854, + "parent_product_id": 2142, + "root_product_id": 2137, + "update_tag": "SLE-Module-Packagehub-Subpackages", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP3/aarch64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Packagehub-Subpackages15-SP3-Pool for aarch64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-packagehub-subpackages15-sp3-debuginfo-pool-aarch64", + "parent_channel_label": "sle-product-sles15-sp3-pool-aarch64", + "product_id": 2188, + "repository_id": 4855, + "parent_product_id": 2142, + "root_product_id": 2137, + "update_tag": "SLE-Module-Packagehub-Subpackages", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP3/aarch64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Packagehub-Subpackages15-SP3-Debuginfo-Pool for aarch64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-certifications-15-sp3-updates-aarch64", + "parent_channel_label": "sle-product-sles15-sp3-pool-aarch64", + "product_id": 2386, + "repository_id": 5512, + "parent_product_id": 2137, + "root_product_id": 2137, + "update_tag": "SLE-Module-Certifications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Certifications/15-SP3/aarch64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Certifications-15-SP3-Updates for aarch64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-certifications-15-sp3-debuginfo-updates-aarch64", + "parent_channel_label": "sle-product-sles15-sp3-pool-aarch64", + "product_id": 2386, + "repository_id": 5513, + "parent_product_id": 2137, + "root_product_id": 2137, + "update_tag": "SLE-Module-Certifications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Certifications/15-SP3/aarch64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Certifications-15-SP3-Debuginfo-Updates for aarch64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-certifications-15-sp3-pool-aarch64", + "parent_channel_label": "sle-product-sles15-sp3-pool-aarch64", + "product_id": 2386, + "repository_id": 5514, + "parent_product_id": 2137, + "root_product_id": 2137, + "update_tag": "SLE-Module-Certifications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Certifications/15-SP3/aarch64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Certifications-15-SP3-Pool for aarch64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-certifications-15-sp3-debuginfo-pool-aarch64", + "parent_channel_label": "sle-product-sles15-sp3-pool-aarch64", + "product_id": 2386, + "repository_id": 5515, + "parent_product_id": 2137, + "root_product_id": 2137, + "update_tag": "SLE-Module-Certifications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Certifications/15-SP3/aarch64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Certifications-15-SP3-Debuginfo-Pool for aarch64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-sles15-sp3-ltss-updates-aarch64", + "parent_channel_label": "sle-product-sles15-sp3-pool-aarch64", + "product_id": 2567, + "repository_id": 6129, + "parent_product_id": 2137, + "root_product_id": 2137, + "update_tag": "SLE-Product-SLES", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-SLES/15-SP3-LTSS/aarch64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-SLES15-SP3-LTSS-Updates for aarch64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-sles15-sp3-debuginfo-ltss-updates-aarch64", + "parent_channel_label": "sle-product-sles15-sp3-pool-aarch64", + "product_id": 2567, + "repository_id": 6130, + "parent_product_id": 2137, + "root_product_id": 2137, + "update_tag": "SLE-Product-SLES", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-SLES/15-SP3-LTSS/aarch64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-SLES15-SP3-Debuginfo-LTSS-Updates for aarch64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-sles15-sp3-updates-ppc64le", + "parent_channel_label": "sle-product-sles15-sp3-pool-ppc64le", + "product_id": 2138, + "repository_id": 4596, + "parent_product_id": null, + "root_product_id": 2138, + "update_tag": "SLE-Product-SLES", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-SLES/15-SP3/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-SLES15-SP3-Updates for ppc64le", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-sles15-sp3-debuginfo-updates-ppc64le", + "parent_channel_label": "sle-product-sles15-sp3-pool-ppc64le", + "product_id": 2138, + "repository_id": 4597, + "parent_product_id": null, + "root_product_id": 2138, + "update_tag": "SLE-Product-SLES", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-SLES/15-SP3/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-SLES15-SP3-Debuginfo-Updates for ppc64le", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle15-sp3-installer-updates-ppc64le", + "parent_channel_label": "sle-product-sles15-sp3-pool-ppc64le", + "product_id": 2138, + "repository_id": 4598, + "parent_product_id": null, + "root_product_id": 2138, + "update_tag": "SLE-INSTALLER", + "url": "https://updates.suse.com/SUSE/Updates/SLE-INSTALLER/15-SP3/ppc64le/update/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE15-SP3-Installer-Updates for ppc64le", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-sles15-sp3-pool-ppc64le", + "parent_channel_label": null, + "product_id": 2138, + "repository_id": 4599, + "parent_product_id": null, + "root_product_id": 2138, + "update_tag": "SLE-Product-SLES", + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-SLES/15-SP3/ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-SLES15-SP3-Pool for ppc64le", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-sles15-sp3-debuginfo-pool-ppc64le", + "parent_channel_label": "sle-product-sles15-sp3-pool-ppc64le", + "product_id": 2138, + "repository_id": 4600, + "parent_product_id": null, + "root_product_id": 2138, + "update_tag": "SLE-Product-SLES", + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-SLES/15-SP3/ppc64le/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-SLES15-SP3-Debuginfo-Pool for ppc64le", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-basesystem15-sp3-updates-ppc64le", + "parent_channel_label": "sle-product-sles15-sp3-pool-ppc64le", + "product_id": 2143, + "repository_id": 4624, + "parent_product_id": 2138, + "root_product_id": 2138, + "update_tag": "SLE-Module-Basesystem", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15-SP3/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Basesystem15-SP3-Updates for ppc64le", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-basesystem15-sp3-debuginfo-updates-ppc64le", + "parent_channel_label": "sle-product-sles15-sp3-pool-ppc64le", + "product_id": 2143, + "repository_id": 4625, + "parent_product_id": 2138, + "root_product_id": 2138, + "update_tag": "SLE-Module-Basesystem", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15-SP3/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Basesystem15-SP3-Debuginfo-Updates for ppc64le", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-basesystem15-sp3-pool-ppc64le", + "parent_channel_label": "sle-product-sles15-sp3-pool-ppc64le", + "product_id": 2143, + "repository_id": 4626, + "parent_product_id": 2138, + "root_product_id": 2138, + "update_tag": "SLE-Module-Basesystem", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP3/ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Basesystem15-SP3-Pool for ppc64le", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-basesystem15-sp3-debuginfo-pool-ppc64le", + "parent_channel_label": "sle-product-sles15-sp3-pool-ppc64le", + "product_id": 2143, + "repository_id": 4627, + "parent_product_id": 2138, + "root_product_id": 2138, + "update_tag": "SLE-Module-Basesystem", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP3/ppc64le/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Basesystem15-SP3-Debuginfo-Pool for ppc64le", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-manager-tools15-updates-ppc64le-sp3", + "parent_channel_label": "sle-product-sles15-sp3-pool-ppc64le", + "product_id": 1710, + "repository_id": 2922, + "parent_product_id": 2143, + "root_product_id": 2138, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/15/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-Updates for ppc64le SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools15-debuginfo-updates-ppc64le-sp3", + "parent_channel_label": "sle-product-sles15-sp3-pool-ppc64le", + "product_id": 1710, + "repository_id": 2923, + "parent_product_id": 2143, + "root_product_id": 2138, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/15/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-Debuginfo-Updates for ppc64le SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools15-pool-ppc64le-sp3", + "parent_channel_label": "sle-product-sles15-sp3-pool-ppc64le", + "product_id": 1710, + "repository_id": 2924, + "parent_product_id": 2143, + "root_product_id": 2138, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/15/ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-Pool for ppc64le SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools15-debuginfo-pool-ppc64le-sp3", + "parent_channel_label": "sle-product-sles15-sp3-pool-ppc64le", + "product_id": 1710, + "repository_id": 2925, + "parent_product_id": 2143, + "root_product_id": 2138, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/15/ppc64le/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-Debuginfo-Pool for ppc64le SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools15-beta-updates-ppc64le-sp3", + "parent_channel_label": "sle-product-sles15-sp3-pool-ppc64le", + "product_id": 1926, + "repository_id": 3893, + "parent_product_id": 1710, + "root_product_id": 2138, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/15-BETA/ppc64le/update/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-BETA-Updates for ppc64le SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools15-beta-debuginfo-updates-ppc64le-sp3", + "parent_channel_label": "sle-product-sles15-sp3-pool-ppc64le", + "product_id": 1926, + "repository_id": 3894, + "parent_product_id": 1710, + "root_product_id": 2138, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/15-BETA/ppc64le/update_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-BETA-Debuginfo-Updates for ppc64le SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools15-beta-pool-ppc64le-sp3", + "parent_channel_label": "sle-product-sles15-sp3-pool-ppc64le", + "product_id": 1926, + "repository_id": 3902, + "parent_product_id": 1710, + "root_product_id": 2138, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/15-BETA/ppc64le/product/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-BETA-Pool for ppc64le SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools15-beta-debuginfo-pool-ppc64le-sp3", + "parent_channel_label": "sle-product-sles15-sp3-pool-ppc64le", + "product_id": 1926, + "repository_id": 3903, + "parent_product_id": 1710, + "root_product_id": 2138, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/15-BETA/ppc64le/product_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-BETA-Debuginfo-Pool for ppc64le SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-module-desktop-applications15-sp3-updates-ppc64le", + "parent_channel_label": "sle-product-sles15-sp3-pool-ppc64le", + "product_id": 2147, + "repository_id": 4644, + "parent_product_id": 2143, + "root_product_id": 2138, + "update_tag": "SLE-Module-Desktop-Applications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15-SP3/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Desktop-Applications15-SP3-Updates for ppc64le", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-desktop-applications15-sp3-debuginfo-updates-ppc64le", + "parent_channel_label": "sle-product-sles15-sp3-pool-ppc64le", + "product_id": 2147, + "repository_id": 4645, + "parent_product_id": 2143, + "root_product_id": 2138, + "update_tag": "SLE-Module-Desktop-Applications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15-SP3/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Desktop-Applications15-SP3-Debuginfo-Updates for ppc64le", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-desktop-applications15-sp3-pool-ppc64le", + "parent_channel_label": "sle-product-sles15-sp3-pool-ppc64le", + "product_id": 2147, + "repository_id": 4646, + "parent_product_id": 2143, + "root_product_id": 2138, + "update_tag": "SLE-Module-Desktop-Applications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP3/ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Desktop-Applications15-SP3-Pool for ppc64le", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-desktop-applications15-sp3-debuginfo-pool-ppc64le", + "parent_channel_label": "sle-product-sles15-sp3-pool-ppc64le", + "product_id": 2147, + "repository_id": 4647, + "parent_product_id": 2143, + "root_product_id": 2138, + "update_tag": "SLE-Module-Desktop-Applications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP3/ppc64le/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Desktop-Applications15-SP3-Debuginfo-Pool for ppc64le", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-devtools15-sp3-updates-ppc64le", + "parent_channel_label": "sle-product-sles15-sp3-pool-ppc64le", + "product_id": 2159, + "repository_id": 4704, + "parent_product_id": 2147, + "root_product_id": 2138, + "update_tag": "SLE-Module-Development-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15-SP3/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-DevTools15-SP3-Updates for ppc64le", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-devtools15-sp3-debuginfo-updates-ppc64le", + "parent_channel_label": "sle-product-sles15-sp3-pool-ppc64le", + "product_id": 2159, + "repository_id": 4705, + "parent_product_id": 2147, + "root_product_id": 2138, + "update_tag": "SLE-Module-Development-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15-SP3/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-DevTools15-SP3-Debuginfo-Updates for ppc64le", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-devtools15-sp3-pool-ppc64le", + "parent_channel_label": "sle-product-sles15-sp3-pool-ppc64le", + "product_id": 2159, + "repository_id": 4706, + "parent_product_id": 2147, + "root_product_id": 2138, + "update_tag": "SLE-Module-Development-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP3/ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-DevTools15-SP3-Pool for ppc64le", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-devtools15-sp3-debuginfo-pool-ppc64le", + "parent_channel_label": "sle-product-sles15-sp3-pool-ppc64le", + "product_id": 2159, + "repository_id": 4707, + "parent_product_id": 2147, + "root_product_id": 2138, + "update_tag": "SLE-Module-Development-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP3/ppc64le/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-DevTools15-SP3-Debuginfo-Pool for ppc64le", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-server-applications15-sp3-updates-ppc64le", + "parent_channel_label": "sle-product-sles15-sp3-pool-ppc64le", + "product_id": 2151, + "repository_id": 4664, + "parent_product_id": 2143, + "root_product_id": 2138, + "update_tag": "SLE-Module-Server-Applications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15-SP3/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Server-Applications15-SP3-Updates for ppc64le", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-server-applications15-sp3-debuginfo-updates-ppc64le", + "parent_channel_label": "sle-product-sles15-sp3-pool-ppc64le", + "product_id": 2151, + "repository_id": 4665, + "parent_product_id": 2143, + "root_product_id": 2138, + "update_tag": "SLE-Module-Server-Applications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15-SP3/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Server-Applications15-SP3-Debuginfo-Updates for ppc64le", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-server-applications15-sp3-pool-ppc64le", + "parent_channel_label": "sle-product-sles15-sp3-pool-ppc64le", + "product_id": 2151, + "repository_id": 4666, + "parent_product_id": 2143, + "root_product_id": 2138, + "update_tag": "SLE-Module-Server-Applications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP3/ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Server-Applications15-SP3-Pool for ppc64le", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-server-applications15-sp3-debuginfo-pool-ppc64le", + "parent_channel_label": "sle-product-sles15-sp3-pool-ppc64le", + "product_id": 2151, + "repository_id": 4667, + "parent_product_id": 2143, + "root_product_id": 2138, + "update_tag": "SLE-Module-Server-Applications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP3/ppc64le/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Server-Applications15-SP3-Debuginfo-Pool for ppc64le", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "ibm-power-adv-toolchain-sp3", + "parent_channel_label": "sle-product-sles15-sp3-pool-ppc64le", + "product_id": 2076, + "repository_id": 4430, + "parent_product_id": 2151, + "root_product_id": 2138, + "update_tag": null, + "url": "https://public.dhe.ibm.com/software/server/POWER/Linux/toolchain/at/suse/SLES_15/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "IBM-POWER-Adv-Toolchain for ppc64le SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "ibm-power-tools-sp3", + "parent_channel_label": "sle-product-sles15-sp3-pool-ppc64le", + "product_id": 2077, + "repository_id": 4431, + "parent_product_id": 2151, + "root_product_id": 2138, + "update_tag": null, + "url": "https://public.dhe.ibm.com/software/server/POWER/Linux/yum/OSS/SLES/15/ppc64le/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "IBM-POWER-Tools for ppc64le SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting15-sp3-updates-ppc64le", + "parent_channel_label": "sle-product-sles15-sp3-pool-ppc64le", + "product_id": 2163, + "repository_id": 4724, + "parent_product_id": 2151, + "root_product_id": 2138, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/15-SP3/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Web-Scripting15-SP3-Updates for ppc64le", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting15-sp3-debuginfo-updates-ppc64le", + "parent_channel_label": "sle-product-sles15-sp3-pool-ppc64le", + "product_id": 2163, + "repository_id": 4725, + "parent_product_id": 2151, + "root_product_id": 2138, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/15-SP3/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Web-Scripting15-SP3-Debuginfo-Updates for ppc64le", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting15-sp3-pool-ppc64le", + "parent_channel_label": "sle-product-sles15-sp3-pool-ppc64le", + "product_id": 2163, + "repository_id": 4726, + "parent_product_id": 2151, + "root_product_id": 2138, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP3/ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Web-Scripting15-SP3-Pool for ppc64le", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting15-sp3-debuginfo-pool-ppc64le", + "parent_channel_label": "sle-product-sles15-sp3-pool-ppc64le", + "product_id": 2163, + "repository_id": 4727, + "parent_product_id": 2151, + "root_product_id": 2138, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP3/ppc64le/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Web-Scripting15-SP3-Debuginfo-Pool for ppc64le", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-legacy15-sp3-updates-ppc64le", + "parent_channel_label": "sle-product-sles15-sp3-pool-ppc64le", + "product_id": 2169, + "repository_id": 4754, + "parent_product_id": 2151, + "root_product_id": 2138, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/15-SP3/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy15-SP3-Updates for ppc64le", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-legacy15-sp3-debuginfo-updates-ppc64le", + "parent_channel_label": "sle-product-sles15-sp3-pool-ppc64le", + "product_id": 2169, + "repository_id": 4755, + "parent_product_id": 2151, + "root_product_id": 2138, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/15-SP3/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy15-SP3-Debuginfo-Updates for ppc64le", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-legacy15-sp3-pool-ppc64le", + "parent_channel_label": "sle-product-sles15-sp3-pool-ppc64le", + "product_id": 2169, + "repository_id": 4756, + "parent_product_id": 2151, + "root_product_id": 2138, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15-SP3/ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy15-SP3-Pool for ppc64le", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-legacy15-sp3-debuginfo-pool-ppc64le", + "parent_channel_label": "sle-product-sles15-sp3-pool-ppc64le", + "product_id": 2169, + "repository_id": 4757, + "parent_product_id": 2151, + "root_product_id": 2138, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15-SP3/ppc64le/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy15-SP3-Debuginfo-Pool for ppc64le", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud15-sp3-updates-ppc64le", + "parent_channel_label": "sle-product-sles15-sp3-pool-ppc64le", + "product_id": 2173, + "repository_id": 4774, + "parent_product_id": 2151, + "root_product_id": 2138, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/15-SP3/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud15-SP3-Updates for ppc64le", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud15-sp3-debuginfo-updates-ppc64le", + "parent_channel_label": "sle-product-sles15-sp3-pool-ppc64le", + "product_id": 2173, + "repository_id": 4775, + "parent_product_id": 2151, + "root_product_id": 2138, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/15-SP3/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud15-SP3-Debuginfo-Updates for ppc64le", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud15-sp3-pool-ppc64le", + "parent_channel_label": "sle-product-sles15-sp3-pool-ppc64le", + "product_id": 2173, + "repository_id": 4776, + "parent_product_id": 2151, + "root_product_id": 2138, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP3/ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud15-SP3-Pool for ppc64le", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud15-sp3-debuginfo-pool-ppc64le", + "parent_channel_label": "sle-product-sles15-sp3-pool-ppc64le", + "product_id": 2173, + "repository_id": 4777, + "parent_product_id": 2151, + "root_product_id": 2138, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP3/ppc64le/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud15-SP3-Debuginfo-Pool for ppc64le", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-ha15-sp3-updates-ppc64le", + "parent_channel_label": "sle-product-sles15-sp3-pool-ppc64le", + "product_id": 2193, + "repository_id": 4886, + "parent_product_id": 2151, + "root_product_id": 2138, + "update_tag": "SLE-Product-HA", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-HA/15-SP3/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HA15-SP3-Updates for ppc64le", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-ha15-sp3-debuginfo-updates-ppc64le", + "parent_channel_label": "sle-product-sles15-sp3-pool-ppc64le", + "product_id": 2193, + "repository_id": 4887, + "parent_product_id": 2151, + "root_product_id": 2138, + "update_tag": "SLE-Product-HA", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-HA/15-SP3/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HA15-SP3-Debuginfo-Updates for ppc64le", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-ha15-sp3-pool-ppc64le", + "parent_channel_label": "sle-product-sles15-sp3-pool-ppc64le", + "product_id": 2193, + "repository_id": 4888, + "parent_product_id": 2151, + "root_product_id": 2138, + "update_tag": "SLE-Product-HA", + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP3/ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HA15-SP3-Pool for ppc64le", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-ha15-sp3-debuginfo-pool-ppc64le", + "parent_channel_label": "sle-product-sles15-sp3-pool-ppc64le", + "product_id": 2193, + "repository_id": 4889, + "parent_product_id": 2151, + "root_product_id": 2138, + "update_tag": "SLE-Product-HA", + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP3/ppc64le/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HA15-SP3-Debuginfo-Pool for ppc64le", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-containers15-sp3-updates-ppc64le", + "parent_channel_label": "sle-product-sles15-sp3-pool-ppc64le", + "product_id": 2155, + "repository_id": 4684, + "parent_product_id": 2143, + "root_product_id": 2138, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/15-SP3/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers15-SP3-Updates for ppc64le", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-containers15-sp3-debuginfo-updates-ppc64le", + "parent_channel_label": "sle-product-sles15-sp3-pool-ppc64le", + "product_id": 2155, + "repository_id": 4685, + "parent_product_id": 2143, + "root_product_id": 2138, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/15-SP3/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers15-SP3-Debuginfo-Updates for ppc64le", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-containers15-sp3-pool-ppc64le", + "parent_channel_label": "sle-product-sles15-sp3-pool-ppc64le", + "product_id": 2155, + "repository_id": 4686, + "parent_product_id": 2143, + "root_product_id": 2138, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP3/ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers15-SP3-Pool for ppc64le", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-containers15-sp3-debuginfo-pool-ppc64le", + "parent_channel_label": "sle-product-sles15-sp3-pool-ppc64le", + "product_id": 2155, + "repository_id": 4687, + "parent_product_id": 2143, + "root_product_id": 2138, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP3/ppc64le/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers15-SP3-Debuginfo-Pool for ppc64le", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-transactional-server15-sp3-updates-ppc64le", + "parent_channel_label": "sle-product-sles15-sp3-pool-ppc64le", + "product_id": 2178, + "repository_id": 4799, + "parent_product_id": 2143, + "root_product_id": 2138, + "update_tag": "SLE-Module-Transactional-Server", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Transactional-Server/15-SP3/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Transactional-Server15-SP3-Updates for ppc64le", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-transactional-server15-sp3-debuginfo-updates-ppc64le", + "parent_channel_label": "sle-product-sles15-sp3-pool-ppc64le", + "product_id": 2178, + "repository_id": 4800, + "parent_product_id": 2143, + "root_product_id": 2138, + "update_tag": "SLE-Module-Transactional-Server", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Transactional-Server/15-SP3/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Transactional-Server15-SP3-Debuginfo-Updates for ppc64le", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-transactional-server15-sp3-pool-ppc64le", + "parent_channel_label": "sle-product-sles15-sp3-pool-ppc64le", + "product_id": 2178, + "repository_id": 4801, + "parent_product_id": 2143, + "root_product_id": 2138, + "update_tag": "SLE-Module-Transactional-Server", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Transactional-Server/15-SP3/ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Transactional-Server15-SP3-Pool for ppc64le", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-transactional-server15-sp3-debuginfo-pool-ppc64le", + "parent_channel_label": "sle-product-sles15-sp3-pool-ppc64le", + "product_id": 2178, + "repository_id": 4802, + "parent_product_id": 2143, + "root_product_id": 2138, + "update_tag": "SLE-Module-Transactional-Server", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Transactional-Server/15-SP3/ppc64le/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Transactional-Server15-SP3-Debuginfo-Pool for ppc64le", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-python2-15-sp3-updates-ppc64le", + "parent_channel_label": "sle-product-sles15-sp3-pool-ppc64le", + "product_id": 2182, + "repository_id": 4819, + "parent_product_id": 2143, + "root_product_id": 2138, + "update_tag": "SLE-Module-Python2", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Python2/15-SP3/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Python2-15-SP3-Updates for ppc64le", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-python2-15-sp3-debuginfo-updates-ppc64le", + "parent_channel_label": "sle-product-sles15-sp3-pool-ppc64le", + "product_id": 2182, + "repository_id": 4820, + "parent_product_id": 2143, + "root_product_id": 2138, + "update_tag": "SLE-Module-Python2", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Python2/15-SP3/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Python2-15-SP3-Debuginfo-Updates for ppc64le", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-python2-15-sp3-pool-ppc64le", + "parent_channel_label": "sle-product-sles15-sp3-pool-ppc64le", + "product_id": 2182, + "repository_id": 4821, + "parent_product_id": 2143, + "root_product_id": 2138, + "update_tag": "SLE-Module-Python2", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Python2/15-SP3/ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Python2-15-SP3-Pool for ppc64le", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-python2-15-sp3-debuginfo-pool-ppc64le", + "parent_channel_label": "sle-product-sles15-sp3-pool-ppc64le", + "product_id": 2182, + "repository_id": 4822, + "parent_product_id": 2143, + "root_product_id": 2138, + "update_tag": "SLE-Module-Python2", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Python2/15-SP3/ppc64le/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Python2-15-SP3-Debuginfo-Pool for ppc64le", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-live-patching15-sp3-updates-ppc64le", + "parent_channel_label": "sle-product-sles15-sp3-pool-ppc64le", + "product_id": 2185, + "repository_id": 4834, + "parent_product_id": 2143, + "root_product_id": 2138, + "update_tag": "SLE-Module-Live-Patching", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Live-Patching/15-SP3/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Live-Patching15-SP3-Updates for ppc64le", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-live-patching15-sp3-debuginfo-updates-ppc64le", + "parent_channel_label": "sle-product-sles15-sp3-pool-ppc64le", + "product_id": 2185, + "repository_id": 4835, + "parent_product_id": 2143, + "root_product_id": 2138, + "update_tag": "SLE-Module-Live-Patching", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Live-Patching/15-SP3/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Live-Patching15-SP3-Debuginfo-Updates for ppc64le", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-live-patching15-sp3-pool-ppc64le", + "parent_channel_label": "sle-product-sles15-sp3-pool-ppc64le", + "product_id": 2185, + "repository_id": 4836, + "parent_product_id": 2143, + "root_product_id": 2138, + "update_tag": "SLE-Module-Live-Patching", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Live-Patching/15-SP3/ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Live-Patching15-SP3-Pool for ppc64le", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-live-patching15-sp3-debuginfo-pool-ppc64le", + "parent_channel_label": "sle-product-sles15-sp3-pool-ppc64le", + "product_id": 2185, + "repository_id": 4837, + "parent_product_id": 2143, + "root_product_id": 2138, + "update_tag": "SLE-Module-Live-Patching", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Live-Patching/15-SP3/ppc64le/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Live-Patching15-SP3-Debuginfo-Pool for ppc64le", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-packagehub-15-sp3-backports-pool-ppc64le", + "parent_channel_label": "sle-product-sles15-sp3-pool-ppc64le", + "product_id": 2189, + "repository_id": 4857, + "parent_product_id": 2143, + "root_product_id": 2138, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-15-SP3_ppc64le/standard/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-15-SP3-Backports-Pool for ppc64le", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-packagehub-15-sp3-backports-debuginfo-ppc64le", + "parent_channel_label": "sle-product-sles15-sp3-pool-ppc64le", + "product_id": 2189, + "repository_id": 4858, + "parent_product_id": 2143, + "root_product_id": 2138, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-15-SP3_ppc64le/standard_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-15-SP3-Backports-Debuginfo for ppc64le", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-packagehub-subpackages15-sp3-updates-ppc64le", + "parent_channel_label": "sle-product-sles15-sp3-pool-ppc64le", + "product_id": 2189, + "repository_id": 4859, + "parent_product_id": 2143, + "root_product_id": 2138, + "update_tag": "SLE-Module-Packagehub-Subpackages", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP3/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Packagehub-Subpackages15-SP3-Updates for ppc64le", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-packagehub-subpackages15-sp3-debuginfo-updates-ppc64le", + "parent_channel_label": "sle-product-sles15-sp3-pool-ppc64le", + "product_id": 2189, + "repository_id": 4860, + "parent_product_id": 2143, + "root_product_id": 2138, + "update_tag": "SLE-Module-Packagehub-Subpackages", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP3/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Packagehub-Subpackages15-SP3-Debuginfo-Updates for ppc64le", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-packagehub-15-sp3-pool-ppc64le", + "parent_channel_label": "sle-product-sles15-sp3-pool-ppc64le", + "product_id": 2189, + "repository_id": 4861, + "parent_product_id": 2143, + "root_product_id": 2138, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-15-SP3_ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-15-SP3-Pool for ppc64le", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-packagehub-subpackages15-sp3-pool-ppc64le", + "parent_channel_label": "sle-product-sles15-sp3-pool-ppc64le", + "product_id": 2189, + "repository_id": 4862, + "parent_product_id": 2143, + "root_product_id": 2138, + "update_tag": "SLE-Module-Packagehub-Subpackages", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP3/ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Packagehub-Subpackages15-SP3-Pool for ppc64le", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-packagehub-subpackages15-sp3-debuginfo-pool-ppc64le", + "parent_channel_label": "sle-product-sles15-sp3-pool-ppc64le", + "product_id": 2189, + "repository_id": 4863, + "parent_product_id": 2143, + "root_product_id": 2138, + "update_tag": "SLE-Module-Packagehub-Subpackages", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP3/ppc64le/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Packagehub-Subpackages15-SP3-Debuginfo-Pool for ppc64le", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-certifications-15-sp3-updates-ppc64le", + "parent_channel_label": "sle-product-sles15-sp3-pool-ppc64le", + "product_id": 2387, + "repository_id": 5517, + "parent_product_id": 2138, + "root_product_id": 2138, + "update_tag": "SLE-Module-Certifications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Certifications/15-SP3/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Certifications-15-SP3-Updates for ppc64le", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-certifications-15-sp3-debuginfo-updates-ppc64le", + "parent_channel_label": "sle-product-sles15-sp3-pool-ppc64le", + "product_id": 2387, + "repository_id": 5518, + "parent_product_id": 2138, + "root_product_id": 2138, + "update_tag": "SLE-Module-Certifications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Certifications/15-SP3/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Certifications-15-SP3-Debuginfo-Updates for ppc64le", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-certifications-15-sp3-pool-ppc64le", + "parent_channel_label": "sle-product-sles15-sp3-pool-ppc64le", + "product_id": 2387, + "repository_id": 5519, + "parent_product_id": 2138, + "root_product_id": 2138, + "update_tag": "SLE-Module-Certifications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Certifications/15-SP3/ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Certifications-15-SP3-Pool for ppc64le", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-certifications-15-sp3-debuginfo-pool-ppc64le", + "parent_channel_label": "sle-product-sles15-sp3-pool-ppc64le", + "product_id": 2387, + "repository_id": 5520, + "parent_product_id": 2138, + "root_product_id": 2138, + "update_tag": "SLE-Module-Certifications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Certifications/15-SP3/ppc64le/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Certifications-15-SP3-Debuginfo-Pool for ppc64le", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-sles15-sp3-ltss-updates-ppc64le", + "parent_channel_label": "sle-product-sles15-sp3-pool-ppc64le", + "product_id": 2568, + "repository_id": 6131, + "parent_product_id": 2138, + "root_product_id": 2138, + "update_tag": "SLE-Product-SLES", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-SLES/15-SP3-LTSS/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-SLES15-SP3-LTSS-Updates for ppc64le", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-sles15-sp3-debuginfo-ltss-updates-ppc64le", + "parent_channel_label": "sle-product-sles15-sp3-pool-ppc64le", + "product_id": 2568, + "repository_id": 6132, + "parent_product_id": 2138, + "root_product_id": 2138, + "update_tag": "SLE-Product-SLES", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-SLES/15-SP3-LTSS/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-SLES15-SP3-Debuginfo-LTSS-Updates for ppc64le", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-sles15-sp3-updates-s390x", + "parent_channel_label": "sle-product-sles15-sp3-pool-s390x", + "product_id": 2139, + "repository_id": 4602, + "parent_product_id": null, + "root_product_id": 2139, + "update_tag": "SLE-Product-SLES", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-SLES/15-SP3/s390x/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-SLES15-SP3-Updates for s390x", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-sles15-sp3-debuginfo-updates-s390x", + "parent_channel_label": "sle-product-sles15-sp3-pool-s390x", + "product_id": 2139, + "repository_id": 4603, + "parent_product_id": null, + "root_product_id": 2139, + "update_tag": "SLE-Product-SLES", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-SLES/15-SP3/s390x/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-SLES15-SP3-Debuginfo-Updates for s390x", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle15-sp3-installer-updates-s390x", + "parent_channel_label": "sle-product-sles15-sp3-pool-s390x", + "product_id": 2139, + "repository_id": 4604, + "parent_product_id": null, + "root_product_id": 2139, + "update_tag": "SLE-INSTALLER", + "url": "https://updates.suse.com/SUSE/Updates/SLE-INSTALLER/15-SP3/s390x/update/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE15-SP3-Installer-Updates for s390x", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-sles15-sp3-pool-s390x", + "parent_channel_label": null, + "product_id": 2139, + "repository_id": 4605, + "parent_product_id": null, + "root_product_id": 2139, + "update_tag": "SLE-Product-SLES", + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-SLES/15-SP3/s390x/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-SLES15-SP3-Pool for s390x", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-sles15-sp3-debuginfo-pool-s390x", + "parent_channel_label": "sle-product-sles15-sp3-pool-s390x", + "product_id": 2139, + "repository_id": 4606, + "parent_product_id": null, + "root_product_id": 2139, + "update_tag": "SLE-Product-SLES", + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-SLES/15-SP3/s390x/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-SLES15-SP3-Debuginfo-Pool for s390x", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-basesystem15-sp3-updates-s390x", + "parent_channel_label": "sle-product-sles15-sp3-pool-s390x", + "product_id": 2144, + "repository_id": 4629, + "parent_product_id": 2139, + "root_product_id": 2139, + "update_tag": "SLE-Module-Basesystem", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15-SP3/s390x/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Basesystem15-SP3-Updates for s390x", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-basesystem15-sp3-debuginfo-updates-s390x", + "parent_channel_label": "sle-product-sles15-sp3-pool-s390x", + "product_id": 2144, + "repository_id": 4630, + "parent_product_id": 2139, + "root_product_id": 2139, + "update_tag": "SLE-Module-Basesystem", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15-SP3/s390x/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Basesystem15-SP3-Debuginfo-Updates for s390x", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-basesystem15-sp3-pool-s390x", + "parent_channel_label": "sle-product-sles15-sp3-pool-s390x", + "product_id": 2144, + "repository_id": 4631, + "parent_product_id": 2139, + "root_product_id": 2139, + "update_tag": "SLE-Module-Basesystem", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP3/s390x/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Basesystem15-SP3-Pool for s390x", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-basesystem15-sp3-debuginfo-pool-s390x", + "parent_channel_label": "sle-product-sles15-sp3-pool-s390x", + "product_id": 2144, + "repository_id": 4632, + "parent_product_id": 2139, + "root_product_id": 2139, + "update_tag": "SLE-Module-Basesystem", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP3/s390x/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Basesystem15-SP3-Debuginfo-Pool for s390x", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-manager-tools15-updates-s390x-sp3", + "parent_channel_label": "sle-product-sles15-sp3-pool-s390x", + "product_id": 1711, + "repository_id": 2927, + "parent_product_id": 2144, + "root_product_id": 2139, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/15/s390x/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-Updates for s390x SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools15-debuginfo-updates-s390x-sp3", + "parent_channel_label": "sle-product-sles15-sp3-pool-s390x", + "product_id": 1711, + "repository_id": 2928, + "parent_product_id": 2144, + "root_product_id": 2139, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/15/s390x/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-Debuginfo-Updates for s390x SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools15-pool-s390x-sp3", + "parent_channel_label": "sle-product-sles15-sp3-pool-s390x", + "product_id": 1711, + "repository_id": 2929, + "parent_product_id": 2144, + "root_product_id": 2139, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/15/s390x/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-Pool for s390x SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools15-debuginfo-pool-s390x-sp3", + "parent_channel_label": "sle-product-sles15-sp3-pool-s390x", + "product_id": 1711, + "repository_id": 2930, + "parent_product_id": 2144, + "root_product_id": 2139, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/15/s390x/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-Debuginfo-Pool for s390x SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools15-beta-updates-s390x-sp3", + "parent_channel_label": "sle-product-sles15-sp3-pool-s390x", + "product_id": 1927, + "repository_id": 3895, + "parent_product_id": 1711, + "root_product_id": 2139, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/15-BETA/s390x/update/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-BETA-Updates for s390x SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools15-beta-debuginfo-updates-s390x-sp3", + "parent_channel_label": "sle-product-sles15-sp3-pool-s390x", + "product_id": 1927, + "repository_id": 3896, + "parent_product_id": 1711, + "root_product_id": 2139, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/15-BETA/s390x/update_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-BETA-Debuginfo-Updates for s390x SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools15-beta-pool-s390x-sp3", + "parent_channel_label": "sle-product-sles15-sp3-pool-s390x", + "product_id": 1927, + "repository_id": 3905, + "parent_product_id": 1711, + "root_product_id": 2139, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/15-BETA/s390x/product/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-BETA-Pool for s390x SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools15-beta-debuginfo-pool-s390x-sp3", + "parent_channel_label": "sle-product-sles15-sp3-pool-s390x", + "product_id": 1927, + "repository_id": 3906, + "parent_product_id": 1711, + "root_product_id": 2139, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/15-BETA/s390x/product_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-BETA-Debuginfo-Pool for s390x SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-module-desktop-applications15-sp3-updates-s390x", + "parent_channel_label": "sle-product-sles15-sp3-pool-s390x", + "product_id": 2148, + "repository_id": 4649, + "parent_product_id": 2144, + "root_product_id": 2139, + "update_tag": "SLE-Module-Desktop-Applications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15-SP3/s390x/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Desktop-Applications15-SP3-Updates for s390x", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-desktop-applications15-sp3-debuginfo-updates-s390x", + "parent_channel_label": "sle-product-sles15-sp3-pool-s390x", + "product_id": 2148, + "repository_id": 4650, + "parent_product_id": 2144, + "root_product_id": 2139, + "update_tag": "SLE-Module-Desktop-Applications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15-SP3/s390x/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Desktop-Applications15-SP3-Debuginfo-Updates for s390x", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-desktop-applications15-sp3-pool-s390x", + "parent_channel_label": "sle-product-sles15-sp3-pool-s390x", + "product_id": 2148, + "repository_id": 4651, + "parent_product_id": 2144, + "root_product_id": 2139, + "update_tag": "SLE-Module-Desktop-Applications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP3/s390x/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Desktop-Applications15-SP3-Pool for s390x", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-desktop-applications15-sp3-debuginfo-pool-s390x", + "parent_channel_label": "sle-product-sles15-sp3-pool-s390x", + "product_id": 2148, + "repository_id": 4652, + "parent_product_id": 2144, + "root_product_id": 2139, + "update_tag": "SLE-Module-Desktop-Applications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP3/s390x/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Desktop-Applications15-SP3-Debuginfo-Pool for s390x", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-devtools15-sp3-updates-s390x", + "parent_channel_label": "sle-product-sles15-sp3-pool-s390x", + "product_id": 2160, + "repository_id": 4709, + "parent_product_id": 2148, + "root_product_id": 2139, + "update_tag": "SLE-Module-Development-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15-SP3/s390x/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-DevTools15-SP3-Updates for s390x", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-devtools15-sp3-debuginfo-updates-s390x", + "parent_channel_label": "sle-product-sles15-sp3-pool-s390x", + "product_id": 2160, + "repository_id": 4710, + "parent_product_id": 2148, + "root_product_id": 2139, + "update_tag": "SLE-Module-Development-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15-SP3/s390x/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-DevTools15-SP3-Debuginfo-Updates for s390x", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-devtools15-sp3-pool-s390x", + "parent_channel_label": "sle-product-sles15-sp3-pool-s390x", + "product_id": 2160, + "repository_id": 4711, + "parent_product_id": 2148, + "root_product_id": 2139, + "update_tag": "SLE-Module-Development-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP3/s390x/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-DevTools15-SP3-Pool for s390x", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-devtools15-sp3-debuginfo-pool-s390x", + "parent_channel_label": "sle-product-sles15-sp3-pool-s390x", + "product_id": 2160, + "repository_id": 4712, + "parent_product_id": 2148, + "root_product_id": 2139, + "update_tag": "SLE-Module-Development-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP3/s390x/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-DevTools15-SP3-Debuginfo-Pool for s390x", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-server-applications15-sp3-updates-s390x", + "parent_channel_label": "sle-product-sles15-sp3-pool-s390x", + "product_id": 2152, + "repository_id": 4669, + "parent_product_id": 2144, + "root_product_id": 2139, + "update_tag": "SLE-Module-Server-Applications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15-SP3/s390x/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Server-Applications15-SP3-Updates for s390x", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-server-applications15-sp3-debuginfo-updates-s390x", + "parent_channel_label": "sle-product-sles15-sp3-pool-s390x", + "product_id": 2152, + "repository_id": 4670, + "parent_product_id": 2144, + "root_product_id": 2139, + "update_tag": "SLE-Module-Server-Applications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15-SP3/s390x/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Server-Applications15-SP3-Debuginfo-Updates for s390x", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-server-applications15-sp3-pool-s390x", + "parent_channel_label": "sle-product-sles15-sp3-pool-s390x", + "product_id": 2152, + "repository_id": 4671, + "parent_product_id": 2144, + "root_product_id": 2139, + "update_tag": "SLE-Module-Server-Applications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP3/s390x/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Server-Applications15-SP3-Pool for s390x", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-server-applications15-sp3-debuginfo-pool-s390x", + "parent_channel_label": "sle-product-sles15-sp3-pool-s390x", + "product_id": 2152, + "repository_id": 4672, + "parent_product_id": 2144, + "root_product_id": 2139, + "update_tag": "SLE-Module-Server-Applications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP3/s390x/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Server-Applications15-SP3-Debuginfo-Pool for s390x", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting15-sp3-updates-s390x", + "parent_channel_label": "sle-product-sles15-sp3-pool-s390x", + "product_id": 2164, + "repository_id": 4729, + "parent_product_id": 2152, + "root_product_id": 2139, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/15-SP3/s390x/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Web-Scripting15-SP3-Updates for s390x", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting15-sp3-debuginfo-updates-s390x", + "parent_channel_label": "sle-product-sles15-sp3-pool-s390x", + "product_id": 2164, + "repository_id": 4730, + "parent_product_id": 2152, + "root_product_id": 2139, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/15-SP3/s390x/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Web-Scripting15-SP3-Debuginfo-Updates for s390x", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting15-sp3-pool-s390x", + "parent_channel_label": "sle-product-sles15-sp3-pool-s390x", + "product_id": 2164, + "repository_id": 4731, + "parent_product_id": 2152, + "root_product_id": 2139, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP3/s390x/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Web-Scripting15-SP3-Pool for s390x", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting15-sp3-debuginfo-pool-s390x", + "parent_channel_label": "sle-product-sles15-sp3-pool-s390x", + "product_id": 2164, + "repository_id": 4732, + "parent_product_id": 2152, + "root_product_id": 2139, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP3/s390x/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Web-Scripting15-SP3-Debuginfo-Pool for s390x", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-legacy15-sp3-updates-s390x", + "parent_channel_label": "sle-product-sles15-sp3-pool-s390x", + "product_id": 2170, + "repository_id": 4759, + "parent_product_id": 2152, + "root_product_id": 2139, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/15-SP3/s390x/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy15-SP3-Updates for s390x", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-legacy15-sp3-debuginfo-updates-s390x", + "parent_channel_label": "sle-product-sles15-sp3-pool-s390x", + "product_id": 2170, + "repository_id": 4760, + "parent_product_id": 2152, + "root_product_id": 2139, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/15-SP3/s390x/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy15-SP3-Debuginfo-Updates for s390x", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-legacy15-sp3-pool-s390x", + "parent_channel_label": "sle-product-sles15-sp3-pool-s390x", + "product_id": 2170, + "repository_id": 4761, + "parent_product_id": 2152, + "root_product_id": 2139, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15-SP3/s390x/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy15-SP3-Pool for s390x", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-legacy15-sp3-debuginfo-pool-s390x", + "parent_channel_label": "sle-product-sles15-sp3-pool-s390x", + "product_id": 2170, + "repository_id": 4762, + "parent_product_id": 2152, + "root_product_id": 2139, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15-SP3/s390x/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy15-SP3-Debuginfo-Pool for s390x", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud15-sp3-updates-s390x", + "parent_channel_label": "sle-product-sles15-sp3-pool-s390x", + "product_id": 2174, + "repository_id": 4779, + "parent_product_id": 2152, + "root_product_id": 2139, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/15-SP3/s390x/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud15-SP3-Updates for s390x", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud15-sp3-debuginfo-updates-s390x", + "parent_channel_label": "sle-product-sles15-sp3-pool-s390x", + "product_id": 2174, + "repository_id": 4780, + "parent_product_id": 2152, + "root_product_id": 2139, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/15-SP3/s390x/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud15-SP3-Debuginfo-Updates for s390x", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud15-sp3-pool-s390x", + "parent_channel_label": "sle-product-sles15-sp3-pool-s390x", + "product_id": 2174, + "repository_id": 4781, + "parent_product_id": 2152, + "root_product_id": 2139, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP3/s390x/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud15-SP3-Pool for s390x", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud15-sp3-debuginfo-pool-s390x", + "parent_channel_label": "sle-product-sles15-sp3-pool-s390x", + "product_id": 2174, + "repository_id": 4782, + "parent_product_id": 2152, + "root_product_id": 2139, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP3/s390x/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud15-SP3-Debuginfo-Pool for s390x", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-ha15-sp3-updates-s390x", + "parent_channel_label": "sle-product-sles15-sp3-pool-s390x", + "product_id": 2194, + "repository_id": 4891, + "parent_product_id": 2152, + "root_product_id": 2139, + "update_tag": "SLE-Product-HA", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-HA/15-SP3/s390x/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HA15-SP3-Updates for s390x", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-ha15-sp3-debuginfo-updates-s390x", + "parent_channel_label": "sle-product-sles15-sp3-pool-s390x", + "product_id": 2194, + "repository_id": 4892, + "parent_product_id": 2152, + "root_product_id": 2139, + "update_tag": "SLE-Product-HA", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-HA/15-SP3/s390x/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HA15-SP3-Debuginfo-Updates for s390x", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-ha15-sp3-pool-s390x", + "parent_channel_label": "sle-product-sles15-sp3-pool-s390x", + "product_id": 2194, + "repository_id": 4893, + "parent_product_id": 2152, + "root_product_id": 2139, + "update_tag": "SLE-Product-HA", + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP3/s390x/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HA15-SP3-Pool for s390x", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-ha15-sp3-debuginfo-pool-s390x", + "parent_channel_label": "sle-product-sles15-sp3-pool-s390x", + "product_id": 2194, + "repository_id": 4894, + "parent_product_id": 2152, + "root_product_id": 2139, + "update_tag": "SLE-Product-HA", + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP3/s390x/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HA15-SP3-Debuginfo-Pool for s390x", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-containers15-sp3-updates-s390x", + "parent_channel_label": "sle-product-sles15-sp3-pool-s390x", + "product_id": 2156, + "repository_id": 4689, + "parent_product_id": 2144, + "root_product_id": 2139, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/15-SP3/s390x/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers15-SP3-Updates for s390x", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-containers15-sp3-debuginfo-updates-s390x", + "parent_channel_label": "sle-product-sles15-sp3-pool-s390x", + "product_id": 2156, + "repository_id": 4690, + "parent_product_id": 2144, + "root_product_id": 2139, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/15-SP3/s390x/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers15-SP3-Debuginfo-Updates for s390x", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-containers15-sp3-pool-s390x", + "parent_channel_label": "sle-product-sles15-sp3-pool-s390x", + "product_id": 2156, + "repository_id": 4691, + "parent_product_id": 2144, + "root_product_id": 2139, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP3/s390x/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers15-SP3-Pool for s390x", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-containers15-sp3-debuginfo-pool-s390x", + "parent_channel_label": "sle-product-sles15-sp3-pool-s390x", + "product_id": 2156, + "repository_id": 4692, + "parent_product_id": 2144, + "root_product_id": 2139, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP3/s390x/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers15-SP3-Debuginfo-Pool for s390x", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-transactional-server15-sp3-updates-s390x", + "parent_channel_label": "sle-product-sles15-sp3-pool-s390x", + "product_id": 2179, + "repository_id": 4804, + "parent_product_id": 2144, + "root_product_id": 2139, + "update_tag": "SLE-Module-Transactional-Server", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Transactional-Server/15-SP3/s390x/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Transactional-Server15-SP3-Updates for s390x", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-transactional-server15-sp3-debuginfo-updates-s390x", + "parent_channel_label": "sle-product-sles15-sp3-pool-s390x", + "product_id": 2179, + "repository_id": 4805, + "parent_product_id": 2144, + "root_product_id": 2139, + "update_tag": "SLE-Module-Transactional-Server", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Transactional-Server/15-SP3/s390x/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Transactional-Server15-SP3-Debuginfo-Updates for s390x", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-transactional-server15-sp3-pool-s390x", + "parent_channel_label": "sle-product-sles15-sp3-pool-s390x", + "product_id": 2179, + "repository_id": 4806, + "parent_product_id": 2144, + "root_product_id": 2139, + "update_tag": "SLE-Module-Transactional-Server", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Transactional-Server/15-SP3/s390x/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Transactional-Server15-SP3-Pool for s390x", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-transactional-server15-sp3-debuginfo-pool-s390x", + "parent_channel_label": "sle-product-sles15-sp3-pool-s390x", + "product_id": 2179, + "repository_id": 4807, + "parent_product_id": 2144, + "root_product_id": 2139, + "update_tag": "SLE-Module-Transactional-Server", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Transactional-Server/15-SP3/s390x/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Transactional-Server15-SP3-Debuginfo-Pool for s390x", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-python2-15-sp3-updates-s390x", + "parent_channel_label": "sle-product-sles15-sp3-pool-s390x", + "product_id": 2183, + "repository_id": 4824, + "parent_product_id": 2144, + "root_product_id": 2139, + "update_tag": "SLE-Module-Python2", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Python2/15-SP3/s390x/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Python2-15-SP3-Updates for s390x", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-python2-15-sp3-debuginfo-updates-s390x", + "parent_channel_label": "sle-product-sles15-sp3-pool-s390x", + "product_id": 2183, + "repository_id": 4825, + "parent_product_id": 2144, + "root_product_id": 2139, + "update_tag": "SLE-Module-Python2", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Python2/15-SP3/s390x/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Python2-15-SP3-Debuginfo-Updates for s390x", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-python2-15-sp3-pool-s390x", + "parent_channel_label": "sle-product-sles15-sp3-pool-s390x", + "product_id": 2183, + "repository_id": 4826, + "parent_product_id": 2144, + "root_product_id": 2139, + "update_tag": "SLE-Module-Python2", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Python2/15-SP3/s390x/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Python2-15-SP3-Pool for s390x", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-python2-15-sp3-debuginfo-pool-s390x", + "parent_channel_label": "sle-product-sles15-sp3-pool-s390x", + "product_id": 2183, + "repository_id": 4827, + "parent_product_id": 2144, + "root_product_id": 2139, + "update_tag": "SLE-Module-Python2", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Python2/15-SP3/s390x/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Python2-15-SP3-Debuginfo-Pool for s390x", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-live-patching15-sp3-updates-s390x", + "parent_channel_label": "sle-product-sles15-sp3-pool-s390x", + "product_id": 2186, + "repository_id": 4839, + "parent_product_id": 2144, + "root_product_id": 2139, + "update_tag": "SLE-Module-Live-Patching", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Live-Patching/15-SP3/s390x/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Live-Patching15-SP3-Updates for s390x", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-live-patching15-sp3-debuginfo-updates-s390x", + "parent_channel_label": "sle-product-sles15-sp3-pool-s390x", + "product_id": 2186, + "repository_id": 4840, + "parent_product_id": 2144, + "root_product_id": 2139, + "update_tag": "SLE-Module-Live-Patching", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Live-Patching/15-SP3/s390x/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Live-Patching15-SP3-Debuginfo-Updates for s390x", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-live-patching15-sp3-pool-s390x", + "parent_channel_label": "sle-product-sles15-sp3-pool-s390x", + "product_id": 2186, + "repository_id": 4841, + "parent_product_id": 2144, + "root_product_id": 2139, + "update_tag": "SLE-Module-Live-Patching", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Live-Patching/15-SP3/s390x/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Live-Patching15-SP3-Pool for s390x", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-live-patching15-sp3-debuginfo-pool-s390x", + "parent_channel_label": "sle-product-sles15-sp3-pool-s390x", + "product_id": 2186, + "repository_id": 4842, + "parent_product_id": 2144, + "root_product_id": 2139, + "update_tag": "SLE-Module-Live-Patching", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Live-Patching/15-SP3/s390x/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Live-Patching15-SP3-Debuginfo-Pool for s390x", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-packagehub-15-sp3-backports-pool-s390x", + "parent_channel_label": "sle-product-sles15-sp3-pool-s390x", + "product_id": 2190, + "repository_id": 4865, + "parent_product_id": 2144, + "root_product_id": 2139, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-15-SP3_s390x/standard/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-15-SP3-Backports-Pool for s390x", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-packagehub-15-sp3-backports-debuginfo-s390x", + "parent_channel_label": "sle-product-sles15-sp3-pool-s390x", + "product_id": 2190, + "repository_id": 4866, + "parent_product_id": 2144, + "root_product_id": 2139, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-15-SP3_s390x/standard_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-15-SP3-Backports-Debuginfo for s390x", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-packagehub-subpackages15-sp3-updates-s390x", + "parent_channel_label": "sle-product-sles15-sp3-pool-s390x", + "product_id": 2190, + "repository_id": 4867, + "parent_product_id": 2144, + "root_product_id": 2139, + "update_tag": "SLE-Module-Packagehub-Subpackages", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP3/s390x/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Packagehub-Subpackages15-SP3-Updates for s390x", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-packagehub-subpackages15-sp3-debuginfo-updates-s390x", + "parent_channel_label": "sle-product-sles15-sp3-pool-s390x", + "product_id": 2190, + "repository_id": 4868, + "parent_product_id": 2144, + "root_product_id": 2139, + "update_tag": "SLE-Module-Packagehub-Subpackages", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP3/s390x/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Packagehub-Subpackages15-SP3-Debuginfo-Updates for s390x", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-packagehub-15-sp3-pool-s390x", + "parent_channel_label": "sle-product-sles15-sp3-pool-s390x", + "product_id": 2190, + "repository_id": 4869, + "parent_product_id": 2144, + "root_product_id": 2139, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-15-SP3_s390x/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-15-SP3-Pool for s390x", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-packagehub-subpackages15-sp3-pool-s390x", + "parent_channel_label": "sle-product-sles15-sp3-pool-s390x", + "product_id": 2190, + "repository_id": 4870, + "parent_product_id": 2144, + "root_product_id": 2139, + "update_tag": "SLE-Module-Packagehub-Subpackages", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP3/s390x/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Packagehub-Subpackages15-SP3-Pool for s390x", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-packagehub-subpackages15-sp3-debuginfo-pool-s390x", + "parent_channel_label": "sle-product-sles15-sp3-pool-s390x", + "product_id": 2190, + "repository_id": 4871, + "parent_product_id": 2144, + "root_product_id": 2139, + "update_tag": "SLE-Module-Packagehub-Subpackages", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP3/s390x/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Packagehub-Subpackages15-SP3-Debuginfo-Pool for s390x", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-certifications-15-sp3-updates-s390x", + "parent_channel_label": "sle-product-sles15-sp3-pool-s390x", + "product_id": 2388, + "repository_id": 5522, + "parent_product_id": 2139, + "root_product_id": 2139, + "update_tag": "SLE-Module-Certifications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Certifications/15-SP3/s390x/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Certifications-15-SP3-Updates for s390x", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-certifications-15-sp3-debuginfo-updates-s390x", + "parent_channel_label": "sle-product-sles15-sp3-pool-s390x", + "product_id": 2388, + "repository_id": 5523, + "parent_product_id": 2139, + "root_product_id": 2139, + "update_tag": "SLE-Module-Certifications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Certifications/15-SP3/s390x/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Certifications-15-SP3-Debuginfo-Updates for s390x", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-certifications-15-sp3-pool-s390x", + "parent_channel_label": "sle-product-sles15-sp3-pool-s390x", + "product_id": 2388, + "repository_id": 5524, + "parent_product_id": 2139, + "root_product_id": 2139, + "update_tag": "SLE-Module-Certifications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Certifications/15-SP3/s390x/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Certifications-15-SP3-Pool for s390x", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-certifications-15-sp3-debuginfo-pool-s390x", + "parent_channel_label": "sle-product-sles15-sp3-pool-s390x", + "product_id": 2388, + "repository_id": 5525, + "parent_product_id": 2139, + "root_product_id": 2139, + "update_tag": "SLE-Module-Certifications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Certifications/15-SP3/s390x/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Certifications-15-SP3-Debuginfo-Pool for s390x", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-sles15-sp3-ltss-updates-s390x", + "parent_channel_label": "sle-product-sles15-sp3-pool-s390x", + "product_id": 2569, + "repository_id": 6133, + "parent_product_id": 2139, + "root_product_id": 2139, + "update_tag": "SLE-Product-SLES", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-SLES/15-SP3-LTSS/s390x/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-SLES15-SP3-LTSS-Updates for s390x", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-sles15-sp3-debuginfo-ltss-updates-s390x", + "parent_channel_label": "sle-product-sles15-sp3-pool-s390x", + "product_id": 2569, + "repository_id": 6134, + "parent_product_id": 2139, + "root_product_id": 2139, + "update_tag": "SLE-Product-SLES", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-SLES/15-SP3-LTSS/s390x/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-SLES15-SP3-Debuginfo-LTSS-Updates for s390x", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-sles15-sp3-updates-x86_64", + "parent_channel_label": "sle-product-sles15-sp3-pool-x86_64", + "product_id": 2140, + "repository_id": 4608, + "parent_product_id": null, + "root_product_id": 2140, + "update_tag": "SLE-Product-SLES", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-SLES/15-SP3/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-SLES15-SP3-Updates for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-sles15-sp3-debuginfo-updates-x86_64", + "parent_channel_label": "sle-product-sles15-sp3-pool-x86_64", + "product_id": 2140, + "repository_id": 4609, + "parent_product_id": null, + "root_product_id": 2140, + "update_tag": "SLE-Product-SLES", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-SLES/15-SP3/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-SLES15-SP3-Debuginfo-Updates for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle15-sp3-installer-updates-x86_64", + "parent_channel_label": "sle-product-sles15-sp3-pool-x86_64", + "product_id": 2140, + "repository_id": 4610, + "parent_product_id": null, + "root_product_id": 2140, + "update_tag": "SLE-INSTALLER", + "url": "https://updates.suse.com/SUSE/Updates/SLE-INSTALLER/15-SP3/x86_64/update/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE15-SP3-Installer-Updates for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-sles15-sp3-pool-x86_64", + "parent_channel_label": null, + "product_id": 2140, + "repository_id": 4611, + "parent_product_id": null, + "root_product_id": 2140, + "update_tag": "SLE-Product-SLES", + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-SLES/15-SP3/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-SLES15-SP3-Pool for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-sles15-sp3-debuginfo-pool-x86_64", + "parent_channel_label": "sle-product-sles15-sp3-pool-x86_64", + "product_id": 2140, + "repository_id": 4612, + "parent_product_id": null, + "root_product_id": 2140, + "update_tag": "SLE-Product-SLES", + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-SLES/15-SP3/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-SLES15-SP3-Debuginfo-Pool for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-basesystem15-sp3-updates-x86_64", + "parent_channel_label": "sle-product-sles15-sp3-pool-x86_64", + "product_id": 2145, + "repository_id": 4634, + "parent_product_id": 2140, + "root_product_id": 2140, + "update_tag": "SLE-Module-Basesystem", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15-SP3/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Basesystem15-SP3-Updates for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-basesystem15-sp3-debuginfo-updates-x86_64", + "parent_channel_label": "sle-product-sles15-sp3-pool-x86_64", + "product_id": 2145, + "repository_id": 4635, + "parent_product_id": 2140, + "root_product_id": 2140, + "update_tag": "SLE-Module-Basesystem", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15-SP3/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Basesystem15-SP3-Debuginfo-Updates for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-basesystem15-sp3-pool-x86_64", + "parent_channel_label": "sle-product-sles15-sp3-pool-x86_64", + "product_id": 2145, + "repository_id": 4636, + "parent_product_id": 2140, + "root_product_id": 2140, + "update_tag": "SLE-Module-Basesystem", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP3/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Basesystem15-SP3-Pool for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-basesystem15-sp3-debuginfo-pool-x86_64", + "parent_channel_label": "sle-product-sles15-sp3-pool-x86_64", + "product_id": 2145, + "repository_id": 4637, + "parent_product_id": 2140, + "root_product_id": 2140, + "update_tag": "SLE-Module-Basesystem", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP3/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Basesystem15-SP3-Debuginfo-Pool for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-manager-tools15-updates-x86_64-sp3", + "parent_channel_label": "sle-product-sles15-sp3-pool-x86_64", + "product_id": 1712, + "repository_id": 2932, + "parent_product_id": 2145, + "root_product_id": 2140, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/15/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-Updates for x86_64 SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools15-debuginfo-updates-x86_64-sp3", + "parent_channel_label": "sle-product-sles15-sp3-pool-x86_64", + "product_id": 1712, + "repository_id": 2933, + "parent_product_id": 2145, + "root_product_id": 2140, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/15/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-Debuginfo-Updates for x86_64 SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools15-pool-x86_64-sp3", + "parent_channel_label": "sle-product-sles15-sp3-pool-x86_64", + "product_id": 1712, + "repository_id": 2934, + "parent_product_id": 2145, + "root_product_id": 2140, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/15/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-Pool for x86_64 SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools15-debuginfo-pool-x86_64-sp3", + "parent_channel_label": "sle-product-sles15-sp3-pool-x86_64", + "product_id": 1712, + "repository_id": 2935, + "parent_product_id": 2145, + "root_product_id": 2140, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/15/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-Debuginfo-Pool for x86_64 SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools15-beta-updates-x86_64-sp3", + "parent_channel_label": "sle-product-sles15-sp3-pool-x86_64", + "product_id": 1928, + "repository_id": 3897, + "parent_product_id": 1712, + "root_product_id": 2140, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/15-BETA/x86_64/update/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-BETA-Updates for x86_64 SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools15-beta-debuginfo-updates-x86_64-sp3", + "parent_channel_label": "sle-product-sles15-sp3-pool-x86_64", + "product_id": 1928, + "repository_id": 3898, + "parent_product_id": 1712, + "root_product_id": 2140, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/15-BETA/x86_64/update_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-BETA-Debuginfo-Updates for x86_64 SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools15-beta-pool-x86_64-sp3", + "parent_channel_label": "sle-product-sles15-sp3-pool-x86_64", + "product_id": 1928, + "repository_id": 3908, + "parent_product_id": 1712, + "root_product_id": 2140, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/15-BETA/x86_64/product/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-BETA-Pool for x86_64 SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools15-beta-debuginfo-pool-x86_64-sp3", + "parent_channel_label": "sle-product-sles15-sp3-pool-x86_64", + "product_id": 1928, + "repository_id": 3909, + "parent_product_id": 1712, + "root_product_id": 2140, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/15-BETA/x86_64/product_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-BETA-Debuginfo-Pool for x86_64 SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-module-desktop-applications15-sp3-updates-x86_64", + "parent_channel_label": "sle-product-sles15-sp3-pool-x86_64", + "product_id": 2149, + "repository_id": 4654, + "parent_product_id": 2145, + "root_product_id": 2140, + "update_tag": "SLE-Module-Desktop-Applications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15-SP3/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Desktop-Applications15-SP3-Updates for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-desktop-applications15-sp3-debuginfo-updates-x86_64", + "parent_channel_label": "sle-product-sles15-sp3-pool-x86_64", + "product_id": 2149, + "repository_id": 4655, + "parent_product_id": 2145, + "root_product_id": 2140, + "update_tag": "SLE-Module-Desktop-Applications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15-SP3/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Desktop-Applications15-SP3-Debuginfo-Updates for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-desktop-applications15-sp3-pool-x86_64", + "parent_channel_label": "sle-product-sles15-sp3-pool-x86_64", + "product_id": 2149, + "repository_id": 4656, + "parent_product_id": 2145, + "root_product_id": 2140, + "update_tag": "SLE-Module-Desktop-Applications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP3/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Desktop-Applications15-SP3-Pool for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-desktop-applications15-sp3-debuginfo-pool-x86_64", + "parent_channel_label": "sle-product-sles15-sp3-pool-x86_64", + "product_id": 2149, + "repository_id": 4657, + "parent_product_id": 2145, + "root_product_id": 2140, + "update_tag": "SLE-Module-Desktop-Applications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP3/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Desktop-Applications15-SP3-Debuginfo-Pool for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-devtools15-sp3-updates-x86_64", + "parent_channel_label": "sle-product-sles15-sp3-pool-x86_64", + "product_id": 2161, + "repository_id": 4714, + "parent_product_id": 2149, + "root_product_id": 2140, + "update_tag": "SLE-Module-Development-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15-SP3/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-DevTools15-SP3-Updates for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-devtools15-sp3-debuginfo-updates-x86_64", + "parent_channel_label": "sle-product-sles15-sp3-pool-x86_64", + "product_id": 2161, + "repository_id": 4715, + "parent_product_id": 2149, + "root_product_id": 2140, + "update_tag": "SLE-Module-Development-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15-SP3/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-DevTools15-SP3-Debuginfo-Updates for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-devtools15-sp3-pool-x86_64", + "parent_channel_label": "sle-product-sles15-sp3-pool-x86_64", + "product_id": 2161, + "repository_id": 4716, + "parent_product_id": 2149, + "root_product_id": 2140, + "update_tag": "SLE-Module-Development-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP3/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-DevTools15-SP3-Pool for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-devtools15-sp3-debuginfo-pool-x86_64", + "parent_channel_label": "sle-product-sles15-sp3-pool-x86_64", + "product_id": 2161, + "repository_id": 4717, + "parent_product_id": 2149, + "root_product_id": 2140, + "update_tag": "SLE-Module-Development-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP3/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-DevTools15-SP3-Debuginfo-Pool for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-nvidia-compute-15-updates-x86_64-we-sp3", + "parent_channel_label": "sle-product-sles15-sp3-pool-x86_64", + "product_id": 2131, + "repository_id": 4554, + "parent_product_id": 2161, + "root_product_id": 2140, + "update_tag": "SLE-Module-NVIDIA-Compute", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-NVIDIA-Compute/15/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-NVIDIA-Compute-15-Updates for x86_64 WE SP3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-nvidia-compute-15-pool-x86_64-we-sp3", + "parent_channel_label": "sle-product-sles15-sp3-pool-x86_64", + "product_id": 2131, + "repository_id": 4556, + "parent_product_id": 2161, + "root_product_id": 2140, + "update_tag": "SLE-Module-NVIDIA-Compute", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-NVIDIA-Compute/15/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-NVIDIA-Compute-15-Pool for x86_64 WE SP3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "nvidia-compute-sle-15-x86_64-we-sp3", + "parent_channel_label": "sle-product-sles15-sp3-pool-x86_64", + "product_id": 2131, + "repository_id": 4563, + "parent_product_id": 2161, + "root_product_id": 2140, + "update_tag": null, + "url": "https://developer.download.nvidia.com/compute/cuda/repos/sles15/x86_64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "NVIDIA-Compute-SLE-15 for x86_64 WE SP3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-15-sp3-desktop-nvidia-driver-we", + "parent_channel_label": "sle-product-sles15-sp3-pool-x86_64", + "product_id": 2196, + "repository_id": 4577, + "parent_product_id": 2149, + "root_product_id": 2140, + "update_tag": null, + "url": "https://download.nvidia.com/suse/sle15sp3/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-15-SP3-Desktop-NVIDIA-Driver for x86_64 WE", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-we15-sp3-updates-x86_64", + "parent_channel_label": "sle-product-sles15-sp3-pool-x86_64", + "product_id": 2196, + "repository_id": 4901, + "parent_product_id": 2149, + "root_product_id": 2140, + "update_tag": "SLE-Product-WE", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-WE/15-SP3/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-WE15-SP3-Updates for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-we15-sp3-debuginfo-updates-x86_64", + "parent_channel_label": "sle-product-sles15-sp3-pool-x86_64", + "product_id": 2196, + "repository_id": 4902, + "parent_product_id": 2149, + "root_product_id": 2140, + "update_tag": "SLE-Product-WE", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-WE/15-SP3/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-WE15-SP3-Debuginfo-Updates for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-we15-sp3-pool-x86_64", + "parent_channel_label": "sle-product-sles15-sp3-pool-x86_64", + "product_id": 2196, + "repository_id": 4903, + "parent_product_id": 2149, + "root_product_id": 2140, + "update_tag": "SLE-Product-WE", + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-WE/15-SP3/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-WE15-SP3-Pool for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-we15-sp3-debuginfo-pool-x86_64", + "parent_channel_label": "sle-product-sles15-sp3-pool-x86_64", + "product_id": 2196, + "repository_id": 4904, + "parent_product_id": 2149, + "root_product_id": 2140, + "update_tag": "SLE-Product-WE", + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-WE/15-SP3/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-WE15-SP3-Debuginfo-Pool for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-server-applications15-sp3-updates-x86_64", + "parent_channel_label": "sle-product-sles15-sp3-pool-x86_64", + "product_id": 2153, + "repository_id": 4674, + "parent_product_id": 2145, + "root_product_id": 2140, + "update_tag": "SLE-Module-Server-Applications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15-SP3/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Server-Applications15-SP3-Updates for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-server-applications15-sp3-debuginfo-updates-x86_64", + "parent_channel_label": "sle-product-sles15-sp3-pool-x86_64", + "product_id": 2153, + "repository_id": 4675, + "parent_product_id": 2145, + "root_product_id": 2140, + "update_tag": "SLE-Module-Server-Applications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15-SP3/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Server-Applications15-SP3-Debuginfo-Updates for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-server-applications15-sp3-pool-x86_64", + "parent_channel_label": "sle-product-sles15-sp3-pool-x86_64", + "product_id": 2153, + "repository_id": 4676, + "parent_product_id": 2145, + "root_product_id": 2140, + "update_tag": "SLE-Module-Server-Applications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP3/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Server-Applications15-SP3-Pool for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-server-applications15-sp3-debuginfo-pool-x86_64", + "parent_channel_label": "sle-product-sles15-sp3-pool-x86_64", + "product_id": 2153, + "repository_id": 4677, + "parent_product_id": 2145, + "root_product_id": 2140, + "update_tag": "SLE-Module-Server-Applications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP3/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Server-Applications15-SP3-Debuginfo-Pool for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting15-sp3-updates-x86_64", + "parent_channel_label": "sle-product-sles15-sp3-pool-x86_64", + "product_id": 2165, + "repository_id": 4734, + "parent_product_id": 2153, + "root_product_id": 2140, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/15-SP3/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Web-Scripting15-SP3-Updates for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting15-sp3-debuginfo-updates-x86_64", + "parent_channel_label": "sle-product-sles15-sp3-pool-x86_64", + "product_id": 2165, + "repository_id": 4735, + "parent_product_id": 2153, + "root_product_id": 2140, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/15-SP3/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Web-Scripting15-SP3-Debuginfo-Updates for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting15-sp3-pool-x86_64", + "parent_channel_label": "sle-product-sles15-sp3-pool-x86_64", + "product_id": 2165, + "repository_id": 4736, + "parent_product_id": 2153, + "root_product_id": 2140, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP3/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Web-Scripting15-SP3-Pool for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting15-sp3-debuginfo-pool-x86_64", + "parent_channel_label": "sle-product-sles15-sp3-pool-x86_64", + "product_id": 2165, + "repository_id": 4737, + "parent_product_id": 2153, + "root_product_id": 2140, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP3/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Web-Scripting15-SP3-Debuginfo-Pool for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-legacy15-sp3-updates-x86_64", + "parent_channel_label": "sle-product-sles15-sp3-pool-x86_64", + "product_id": 2171, + "repository_id": 4764, + "parent_product_id": 2153, + "root_product_id": 2140, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/15-SP3/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy15-SP3-Updates for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-legacy15-sp3-debuginfo-updates-x86_64", + "parent_channel_label": "sle-product-sles15-sp3-pool-x86_64", + "product_id": 2171, + "repository_id": 4765, + "parent_product_id": 2153, + "root_product_id": 2140, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/15-SP3/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy15-SP3-Debuginfo-Updates for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-legacy15-sp3-pool-x86_64", + "parent_channel_label": "sle-product-sles15-sp3-pool-x86_64", + "product_id": 2171, + "repository_id": 4766, + "parent_product_id": 2153, + "root_product_id": 2140, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15-SP3/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy15-SP3-Pool for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-legacy15-sp3-debuginfo-pool-x86_64", + "parent_channel_label": "sle-product-sles15-sp3-pool-x86_64", + "product_id": 2171, + "repository_id": 4767, + "parent_product_id": 2153, + "root_product_id": 2140, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15-SP3/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy15-SP3-Debuginfo-Pool for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud15-sp3-updates-x86_64", + "parent_channel_label": "sle-product-sles15-sp3-pool-x86_64", + "product_id": 2175, + "repository_id": 4784, + "parent_product_id": 2153, + "root_product_id": 2140, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/15-SP3/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud15-SP3-Updates for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud15-sp3-debuginfo-updates-x86_64", + "parent_channel_label": "sle-product-sles15-sp3-pool-x86_64", + "product_id": 2175, + "repository_id": 4785, + "parent_product_id": 2153, + "root_product_id": 2140, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/15-SP3/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud15-SP3-Debuginfo-Updates for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud15-sp3-pool-x86_64", + "parent_channel_label": "sle-product-sles15-sp3-pool-x86_64", + "product_id": 2175, + "repository_id": 4786, + "parent_product_id": 2153, + "root_product_id": 2140, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP3/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud15-SP3-Pool for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud15-sp3-debuginfo-pool-x86_64", + "parent_channel_label": "sle-product-sles15-sp3-pool-x86_64", + "product_id": 2175, + "repository_id": 4787, + "parent_product_id": 2153, + "root_product_id": 2140, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP3/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud15-SP3-Debuginfo-Pool for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-ha15-sp3-updates-x86_64", + "parent_channel_label": "sle-product-sles15-sp3-pool-x86_64", + "product_id": 2195, + "repository_id": 4896, + "parent_product_id": 2153, + "root_product_id": 2140, + "update_tag": "SLE-Product-HA", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-HA/15-SP3/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HA15-SP3-Updates for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-ha15-sp3-debuginfo-updates-x86_64", + "parent_channel_label": "sle-product-sles15-sp3-pool-x86_64", + "product_id": 2195, + "repository_id": 4897, + "parent_product_id": 2153, + "root_product_id": 2140, + "update_tag": "SLE-Product-HA", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-HA/15-SP3/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HA15-SP3-Debuginfo-Updates for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-ha15-sp3-pool-x86_64", + "parent_channel_label": "sle-product-sles15-sp3-pool-x86_64", + "product_id": 2195, + "repository_id": 4898, + "parent_product_id": 2153, + "root_product_id": 2140, + "update_tag": "SLE-Product-HA", + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP3/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HA15-SP3-Pool for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-ha15-sp3-debuginfo-pool-x86_64", + "parent_channel_label": "sle-product-sles15-sp3-pool-x86_64", + "product_id": 2195, + "repository_id": 4899, + "parent_product_id": 2153, + "root_product_id": 2140, + "update_tag": "SLE-Product-HA", + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP3/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HA15-SP3-Debuginfo-Pool for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-enterprise-storage-7.1-updates-x86_64-sp3", + "parent_channel_label": "sle-product-sles15-sp3-pool-x86_64", + "product_id": 2415, + "repository_id": 5603, + "parent_product_id": 2153, + "root_product_id": 2140, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Updates/Storage/7.1/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-Enterprise-Storage-7.1-Updates for x86_64 SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-enterprise-storage-7.1-debuginfo-updates-x86_64-sp3", + "parent_channel_label": "sle-product-sles15-sp3-pool-x86_64", + "product_id": 2415, + "repository_id": 5604, + "parent_product_id": 2153, + "root_product_id": 2140, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Updates/Storage/7.1/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SUSE-Enterprise-Storage-7.1-Debuginfo-Updates for x86_64 SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-enterprise-storage-7.1-pool-x86_64-sp3", + "parent_channel_label": "sle-product-sles15-sp3-pool-x86_64", + "product_id": 2415, + "repository_id": 5605, + "parent_product_id": 2153, + "root_product_id": 2140, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Products/Storage/7.1/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-Enterprise-Storage-7.1-Pool for x86_64 SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-enterprise-storage-7.1-debuginfo-pool-x86_64-sp3", + "parent_channel_label": "sle-product-sles15-sp3-pool-x86_64", + "product_id": 2415, + "repository_id": 5606, + "parent_product_id": 2153, + "root_product_id": 2140, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Products/Storage/7.1/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SUSE-Enterprise-Storage-7.1-Debuginfo-Pool for x86_64 SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-containers15-sp3-updates-x86_64", + "parent_channel_label": "sle-product-sles15-sp3-pool-x86_64", + "product_id": 2157, + "repository_id": 4694, + "parent_product_id": 2145, + "root_product_id": 2140, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/15-SP3/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers15-SP3-Updates for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-containers15-sp3-debuginfo-updates-x86_64", + "parent_channel_label": "sle-product-sles15-sp3-pool-x86_64", + "product_id": 2157, + "repository_id": 4695, + "parent_product_id": 2145, + "root_product_id": 2140, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/15-SP3/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers15-SP3-Debuginfo-Updates for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-containers15-sp3-pool-x86_64", + "parent_channel_label": "sle-product-sles15-sp3-pool-x86_64", + "product_id": 2157, + "repository_id": 4696, + "parent_product_id": 2145, + "root_product_id": 2140, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP3/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers15-SP3-Pool for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-containers15-sp3-debuginfo-pool-x86_64", + "parent_channel_label": "sle-product-sles15-sp3-pool-x86_64", + "product_id": 2157, + "repository_id": 4697, + "parent_product_id": 2145, + "root_product_id": 2140, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP3/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers15-SP3-Debuginfo-Pool for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-cap-tools15-sp3-updates-x86_64", + "parent_channel_label": "sle-product-sles15-sp3-pool-x86_64", + "product_id": 2176, + "repository_id": 4789, + "parent_product_id": 2145, + "root_product_id": 2140, + "update_tag": "SLE-Module-CAP-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-CAP-Tools/15-SP3/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-CAP-Tools15-SP3-Updates for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-cap-tools15-sp3-debuginfo-updates-x86_64", + "parent_channel_label": "sle-product-sles15-sp3-pool-x86_64", + "product_id": 2176, + "repository_id": 4790, + "parent_product_id": 2145, + "root_product_id": 2140, + "update_tag": "SLE-Module-CAP-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-CAP-Tools/15-SP3/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-CAP-Tools15-SP3-Debuginfo-Updates for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-cap-tools15-sp3-pool-x86_64", + "parent_channel_label": "sle-product-sles15-sp3-pool-x86_64", + "product_id": 2176, + "repository_id": 4791, + "parent_product_id": 2145, + "root_product_id": 2140, + "update_tag": "SLE-Module-CAP-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-CAP-Tools/15-SP3/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-CAP-Tools15-SP3-Pool for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-cap-tools15-sp3-debuginfo-pool-x86_64", + "parent_channel_label": "sle-product-sles15-sp3-pool-x86_64", + "product_id": 2176, + "repository_id": 4792, + "parent_product_id": 2145, + "root_product_id": 2140, + "update_tag": "SLE-Module-CAP-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-CAP-Tools/15-SP3/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-CAP-Tools15-SP3-Debuginfo-Pool for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-transactional-server15-sp3-updates-x86_64", + "parent_channel_label": "sle-product-sles15-sp3-pool-x86_64", + "product_id": 2180, + "repository_id": 4809, + "parent_product_id": 2145, + "root_product_id": 2140, + "update_tag": "SLE-Module-Transactional-Server", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Transactional-Server/15-SP3/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Transactional-Server15-SP3-Updates for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-transactional-server15-sp3-debuginfo-updates-x86_64", + "parent_channel_label": "sle-product-sles15-sp3-pool-x86_64", + "product_id": 2180, + "repository_id": 4810, + "parent_product_id": 2145, + "root_product_id": 2140, + "update_tag": "SLE-Module-Transactional-Server", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Transactional-Server/15-SP3/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Transactional-Server15-SP3-Debuginfo-Updates for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-transactional-server15-sp3-pool-x86_64", + "parent_channel_label": "sle-product-sles15-sp3-pool-x86_64", + "product_id": 2180, + "repository_id": 4811, + "parent_product_id": 2145, + "root_product_id": 2140, + "update_tag": "SLE-Module-Transactional-Server", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Transactional-Server/15-SP3/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Transactional-Server15-SP3-Pool for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-transactional-server15-sp3-debuginfo-pool-x86_64", + "parent_channel_label": "sle-product-sles15-sp3-pool-x86_64", + "product_id": 2180, + "repository_id": 4812, + "parent_product_id": 2145, + "root_product_id": 2140, + "update_tag": "SLE-Module-Transactional-Server", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Transactional-Server/15-SP3/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Transactional-Server15-SP3-Debuginfo-Pool for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-python2-15-sp3-updates-x86_64", + "parent_channel_label": "sle-product-sles15-sp3-pool-x86_64", + "product_id": 2184, + "repository_id": 4829, + "parent_product_id": 2145, + "root_product_id": 2140, + "update_tag": "SLE-Module-Python2", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Python2/15-SP3/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Python2-15-SP3-Updates for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-python2-15-sp3-debuginfo-updates-x86_64", + "parent_channel_label": "sle-product-sles15-sp3-pool-x86_64", + "product_id": 2184, + "repository_id": 4830, + "parent_product_id": 2145, + "root_product_id": 2140, + "update_tag": "SLE-Module-Python2", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Python2/15-SP3/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Python2-15-SP3-Debuginfo-Updates for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-python2-15-sp3-pool-x86_64", + "parent_channel_label": "sle-product-sles15-sp3-pool-x86_64", + "product_id": 2184, + "repository_id": 4831, + "parent_product_id": 2145, + "root_product_id": 2140, + "update_tag": "SLE-Module-Python2", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Python2/15-SP3/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Python2-15-SP3-Pool for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-python2-15-sp3-debuginfo-pool-x86_64", + "parent_channel_label": "sle-product-sles15-sp3-pool-x86_64", + "product_id": 2184, + "repository_id": 4832, + "parent_product_id": 2145, + "root_product_id": 2140, + "update_tag": "SLE-Module-Python2", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Python2/15-SP3/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Python2-15-SP3-Debuginfo-Pool for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-live-patching15-sp3-updates-x86_64", + "parent_channel_label": "sle-product-sles15-sp3-pool-x86_64", + "product_id": 2187, + "repository_id": 4844, + "parent_product_id": 2145, + "root_product_id": 2140, + "update_tag": "SLE-Module-Live-Patching", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Live-Patching/15-SP3/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Live-Patching15-SP3-Updates for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-live-patching15-sp3-debuginfo-updates-x86_64", + "parent_channel_label": "sle-product-sles15-sp3-pool-x86_64", + "product_id": 2187, + "repository_id": 4845, + "parent_product_id": 2145, + "root_product_id": 2140, + "update_tag": "SLE-Module-Live-Patching", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Live-Patching/15-SP3/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Live-Patching15-SP3-Debuginfo-Updates for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-live-patching15-sp3-pool-x86_64", + "parent_channel_label": "sle-product-sles15-sp3-pool-x86_64", + "product_id": 2187, + "repository_id": 4846, + "parent_product_id": 2145, + "root_product_id": 2140, + "update_tag": "SLE-Module-Live-Patching", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Live-Patching/15-SP3/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Live-Patching15-SP3-Pool for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-live-patching15-sp3-debuginfo-pool-x86_64", + "parent_channel_label": "sle-product-sles15-sp3-pool-x86_64", + "product_id": 2187, + "repository_id": 4847, + "parent_product_id": 2145, + "root_product_id": 2140, + "update_tag": "SLE-Module-Live-Patching", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Live-Patching/15-SP3/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Live-Patching15-SP3-Debuginfo-Pool for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-packagehub-15-sp3-backports-pool-x86_64", + "parent_channel_label": "sle-product-sles15-sp3-pool-x86_64", + "product_id": 2191, + "repository_id": 4873, + "parent_product_id": 2145, + "root_product_id": 2140, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-15-SP3_x86_64/standard/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-15-SP3-Backports-Pool for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-packagehub-15-sp3-backports-debuginfo-x86_64", + "parent_channel_label": "sle-product-sles15-sp3-pool-x86_64", + "product_id": 2191, + "repository_id": 4874, + "parent_product_id": 2145, + "root_product_id": 2140, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-15-SP3_x86_64/standard_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-15-SP3-Backports-Debuginfo for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-packagehub-subpackages15-sp3-updates-x86_64", + "parent_channel_label": "sle-product-sles15-sp3-pool-x86_64", + "product_id": 2191, + "repository_id": 4875, + "parent_product_id": 2145, + "root_product_id": 2140, + "update_tag": "SLE-Module-Packagehub-Subpackages", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP3/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Packagehub-Subpackages15-SP3-Updates for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-packagehub-subpackages15-sp3-debuginfo-updates-x86_64", + "parent_channel_label": "sle-product-sles15-sp3-pool-x86_64", + "product_id": 2191, + "repository_id": 4876, + "parent_product_id": 2145, + "root_product_id": 2140, + "update_tag": "SLE-Module-Packagehub-Subpackages", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP3/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Packagehub-Subpackages15-SP3-Debuginfo-Updates for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-packagehub-15-sp3-pool-x86_64", + "parent_channel_label": "sle-product-sles15-sp3-pool-x86_64", + "product_id": 2191, + "repository_id": 4877, + "parent_product_id": 2145, + "root_product_id": 2140, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-15-SP3_x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-15-SP3-Pool for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-packagehub-subpackages15-sp3-pool-x86_64", + "parent_channel_label": "sle-product-sles15-sp3-pool-x86_64", + "product_id": 2191, + "repository_id": 4878, + "parent_product_id": 2145, + "root_product_id": 2140, + "update_tag": "SLE-Module-Packagehub-Subpackages", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP3/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Packagehub-Subpackages15-SP3-Pool for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-packagehub-subpackages15-sp3-debuginfo-pool-x86_64", + "parent_channel_label": "sle-product-sles15-sp3-pool-x86_64", + "product_id": 2191, + "repository_id": 4879, + "parent_product_id": 2145, + "root_product_id": 2140, + "update_tag": "SLE-Module-Packagehub-Subpackages", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP3/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Packagehub-Subpackages15-SP3-Debuginfo-Pool for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-certifications-15-sp3-updates-x86_64", + "parent_channel_label": "sle-product-sles15-sp3-pool-x86_64", + "product_id": 2389, + "repository_id": 5527, + "parent_product_id": 2140, + "root_product_id": 2140, + "update_tag": "SLE-Module-Certifications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Certifications/15-SP3/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Certifications-15-SP3-Updates for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-certifications-15-sp3-debuginfo-updates-x86_64", + "parent_channel_label": "sle-product-sles15-sp3-pool-x86_64", + "product_id": 2389, + "repository_id": 5528, + "parent_product_id": 2140, + "root_product_id": 2140, + "update_tag": "SLE-Module-Certifications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Certifications/15-SP3/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Certifications-15-SP3-Debuginfo-Updates for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-certifications-15-sp3-pool-x86_64", + "parent_channel_label": "sle-product-sles15-sp3-pool-x86_64", + "product_id": 2389, + "repository_id": 5529, + "parent_product_id": 2140, + "root_product_id": 2140, + "update_tag": "SLE-Module-Certifications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Certifications/15-SP3/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Certifications-15-SP3-Pool for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-certifications-15-sp3-debuginfo-pool-x86_64", + "parent_channel_label": "sle-product-sles15-sp3-pool-x86_64", + "product_id": 2389, + "repository_id": 5530, + "parent_product_id": 2140, + "root_product_id": 2140, + "update_tag": "SLE-Module-Certifications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Certifications/15-SP3/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Certifications-15-SP3-Debuginfo-Pool for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-sles15-sp3-ltss-updates-x86_64", + "parent_channel_label": "sle-product-sles15-sp3-pool-x86_64", + "product_id": 2570, + "repository_id": 6135, + "parent_product_id": 2140, + "root_product_id": 2140, + "update_tag": "SLE-Product-SLES", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-SLES/15-SP3-LTSS/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-SLES15-SP3-LTSS-Updates for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-sles15-sp3-debuginfo-ltss-updates-x86_64", + "parent_channel_label": "sle-product-sles15-sp3-pool-x86_64", + "product_id": 2570, + "repository_id": 6136, + "parent_product_id": 2140, + "root_product_id": 2140, + "update_tag": "SLE-Product-SLES", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-SLES/15-SP3-LTSS/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-SLES15-SP3-Debuginfo-LTSS-Updates for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-microos-5.0-updates-aarch64", + "parent_channel_label": "suse-microos-5.0-pool-aarch64", + "product_id": 2201, + "repository_id": 4931, + "parent_product_id": null, + "root_product_id": 2201, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Updates/SUSE-MicroOS/5.0/aarch64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-MicroOS-5.0-Updates for aarch64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "suse-microos-5.0-debuginfo-updates-aarch64", + "parent_channel_label": "suse-microos-5.0-pool-aarch64", + "product_id": 2201, + "repository_id": 4932, + "parent_product_id": null, + "root_product_id": 2201, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Updates/SUSE-MicroOS/5.0/aarch64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SUSE-MicroOS-5.0-Debuginfo-Updates for aarch64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "suse-microos-5.0-pool-aarch64", + "parent_channel_label": null, + "product_id": 2201, + "repository_id": 4933, + "parent_product_id": null, + "root_product_id": 2201, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Products/SUSE-MicroOS/5.0/aarch64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-MicroOS-5.0-Pool for aarch64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "suse-microos-5.0-debuginfo-pool-aarch64", + "parent_channel_label": "suse-microos-5.0-pool-aarch64", + "product_id": 2201, + "repository_id": 4934, + "parent_product_id": null, + "root_product_id": 2201, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Products/SUSE-MicroOS/5.0/aarch64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SUSE-MicroOS-5.0-Debuginfo-Pool for aarch64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools-for-micro5-updates-aarch64-5.0", + "parent_channel_label": "suse-microos-5.0-pool-aarch64", + "product_id": 2549, + "repository_id": 6032, + "parent_product_id": 2201, + "root_product_id": 2201, + "update_tag": "SLE-Manager-Tools-For-Micro-5", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools-For-Micro/5/aarch64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools-For-Micro5-Updates for aarch64 5.0", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools-for-micro5-debuginfo-updates-aarch64-5.0", + "parent_channel_label": "suse-microos-5.0-pool-aarch64", + "product_id": 2549, + "repository_id": 6033, + "parent_product_id": 2201, + "root_product_id": 2201, + "update_tag": "SLE-Manager-Tools-For-Micro-5", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools-For-Micro/5/aarch64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools-For-Micro5-Debuginfo-Updates for aarch64 5.0", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools-for-micro5-pool-aarch64-5.0", + "parent_channel_label": "suse-microos-5.0-pool-aarch64", + "product_id": 2549, + "repository_id": 6034, + "parent_product_id": 2201, + "root_product_id": 2201, + "update_tag": "SLE-Manager-Tools-For-Micro-5", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools-For-Micro/5/aarch64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools-For-Micro5-Pool for aarch64 5.0", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools-for-micro5-debuginfo-pool-aarch64-5.0", + "parent_channel_label": "suse-microos-5.0-pool-aarch64", + "product_id": 2549, + "repository_id": 6035, + "parent_product_id": 2201, + "root_product_id": 2201, + "update_tag": "SLE-Manager-Tools-For-Micro-5", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools-For-Micro/5/aarch64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools-For-Micro5-Debuginfo-Pool for aarch64 5.0", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools-beta-for-micro5-updates-aarch64-5.0", + "parent_channel_label": "suse-microos-5.0-pool-aarch64", + "product_id": 2552, + "repository_id": 6047, + "parent_product_id": 2549, + "root_product_id": 2201, + "update_tag": "SLE-Manager-Tools-Beta-For-Micro-5", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools-Beta-For-Micro/5/aarch64/update/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools-Beta-For-Micro5-Updates for aarch64 5.0", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools-beta-for-micro5-debuginfo-updates-aarch64-5.0", + "parent_channel_label": "suse-microos-5.0-pool-aarch64", + "product_id": 2552, + "repository_id": 6048, + "parent_product_id": 2549, + "root_product_id": 2201, + "update_tag": "SLE-Manager-Tools-Beta-For-Micro-5", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools-Beta-For-Micro/5/aarch64/update_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools-Beta-For-Micro5-Debuginfo-Updates for aarch64 5.0", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools-beta-for-micro5-pool-aarch64-5.0", + "parent_channel_label": "suse-microos-5.0-pool-aarch64", + "product_id": 2552, + "repository_id": 6049, + "parent_product_id": 2549, + "root_product_id": 2201, + "update_tag": "SLE-Manager-Tools-Beta-For-Micro-5", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools-Beta-For-Micro/5/aarch64/product/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools-Beta-For-Micro5-Pool for aarch64 5.0", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools-beta-for-micro5-debuginfo-pool-aarch64-5.0", + "parent_channel_label": "suse-microos-5.0-pool-aarch64", + "product_id": 2552, + "repository_id": 6050, + "parent_product_id": 2549, + "root_product_id": 2201, + "update_tag": "SLE-Manager-Tools-Beta-For-Micro-5", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools-Beta-For-Micro/5/aarch64/product_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools-Beta-For-Micro5-Debuginfo-Pool for aarch64 5.0", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "suse-microos-5.0-updates-x86_64", + "parent_channel_label": "suse-microos-5.0-pool-x86_64", + "product_id": 2202, + "repository_id": 4936, + "parent_product_id": null, + "root_product_id": 2202, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Updates/SUSE-MicroOS/5.0/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-MicroOS-5.0-Updates for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "suse-microos-5.0-debuginfo-updates-x86_64", + "parent_channel_label": "suse-microos-5.0-pool-x86_64", + "product_id": 2202, + "repository_id": 4937, + "parent_product_id": null, + "root_product_id": 2202, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Updates/SUSE-MicroOS/5.0/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SUSE-MicroOS-5.0-Debuginfo-Updates for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "suse-microos-5.0-pool-x86_64", + "parent_channel_label": null, + "product_id": 2202, + "repository_id": 4938, + "parent_product_id": null, + "root_product_id": 2202, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Products/SUSE-MicroOS/5.0/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-MicroOS-5.0-Pool for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "suse-microos-5.0-debuginfo-pool-x86_64", + "parent_channel_label": "suse-microos-5.0-pool-x86_64", + "product_id": 2202, + "repository_id": 4939, + "parent_product_id": null, + "root_product_id": 2202, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Products/SUSE-MicroOS/5.0/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SUSE-MicroOS-5.0-Debuginfo-Pool for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools-for-micro5-updates-x86_64-5.0", + "parent_channel_label": "suse-microos-5.0-pool-x86_64", + "product_id": 2551, + "repository_id": 6042, + "parent_product_id": 2202, + "root_product_id": 2202, + "update_tag": "SLE-Manager-Tools-For-Micro-5", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools-For-Micro/5/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools-For-Micro5-Updates for x86_64 5.0", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools-for-micro5-debuginfo-updates-x86_64-5.0", + "parent_channel_label": "suse-microos-5.0-pool-x86_64", + "product_id": 2551, + "repository_id": 6043, + "parent_product_id": 2202, + "root_product_id": 2202, + "update_tag": "SLE-Manager-Tools-For-Micro-5", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools-For-Micro/5/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools-For-Micro5-Debuginfo-Updates for x86_64 5.0", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools-for-micro5-pool-x86_64-5.0", + "parent_channel_label": "suse-microos-5.0-pool-x86_64", + "product_id": 2551, + "repository_id": 6044, + "parent_product_id": 2202, + "root_product_id": 2202, + "update_tag": "SLE-Manager-Tools-For-Micro-5", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools-For-Micro/5/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools-For-Micro5-Pool for x86_64 5.0", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools-for-micro5-debuginfo-pool-x86_64-5.0", + "parent_channel_label": "suse-microos-5.0-pool-x86_64", + "product_id": 2551, + "repository_id": 6045, + "parent_product_id": 2202, + "root_product_id": 2202, + "update_tag": "SLE-Manager-Tools-For-Micro-5", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools-For-Micro/5/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools-For-Micro5-Debuginfo-Pool for x86_64 5.0", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools-beta-for-micro5-updates-x86_64-5.0", + "parent_channel_label": "suse-microos-5.0-pool-x86_64", + "product_id": 2554, + "repository_id": 6057, + "parent_product_id": 2551, + "root_product_id": 2202, + "update_tag": "SLE-Manager-Tools-Beta-For-Micro-5", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools-Beta-For-Micro/5/x86_64/update/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools-Beta-For-Micro5-Updates for x86_64 5.0", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools-beta-for-micro5-debuginfo-updates-x86_64-5.0", + "parent_channel_label": "suse-microos-5.0-pool-x86_64", + "product_id": 2554, + "repository_id": 6058, + "parent_product_id": 2551, + "root_product_id": 2202, + "update_tag": "SLE-Manager-Tools-Beta-For-Micro-5", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools-Beta-For-Micro/5/x86_64/update_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools-Beta-For-Micro5-Debuginfo-Updates for x86_64 5.0", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools-beta-for-micro5-pool-x86_64-5.0", + "parent_channel_label": "suse-microos-5.0-pool-x86_64", + "product_id": 2554, + "repository_id": 6059, + "parent_product_id": 2551, + "root_product_id": 2202, + "update_tag": "SLE-Manager-Tools-Beta-For-Micro-5", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools-Beta-For-Micro/5/x86_64/product/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools-Beta-For-Micro5-Pool for x86_64 5.0", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools-beta-for-micro5-debuginfo-pool-x86_64-5.0", + "parent_channel_label": "suse-microos-5.0-pool-x86_64", + "product_id": 2554, + "repository_id": 6060, + "parent_product_id": 2551, + "root_product_id": 2202, + "update_tag": "SLE-Manager-Tools-Beta-For-Micro-5", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools-Beta-For-Micro/5/x86_64/product_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools-Beta-For-Micro5-Debuginfo-Pool for x86_64 5.0", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-product-suse-manager-server-4.2-updates-ppc64le", + "parent_channel_label": "sle-product-suse-manager-server-4.2-pool-ppc64le", + "product_id": 2220, + "repository_id": 4979, + "parent_product_id": null, + "root_product_id": 2220, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-SUSE-Manager-Server/4.2/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-SUSE-Manager-Server-4.2-Updates for ppc64le", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-product-suse-manager-server-4.2-debuginfo-updates-ppc64le", + "parent_channel_label": "sle-product-suse-manager-server-4.2-pool-ppc64le", + "product_id": 2220, + "repository_id": 4980, + "parent_product_id": null, + "root_product_id": 2220, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-SUSE-Manager-Server/4.2/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-SUSE-Manager-Server-4.2-Debuginfo-Updates for ppc64le", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-product-suse-manager-server-4.2-pool-ppc64le", + "parent_channel_label": null, + "product_id": 2220, + "repository_id": 4981, + "parent_product_id": null, + "root_product_id": 2220, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-SUSE-Manager-Server/4.2/ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-SUSE-Manager-Server-4.2-Pool for ppc64le", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-product-suse-manager-server-4.2-debuginfo-pool-ppc64le", + "parent_channel_label": "sle-product-suse-manager-server-4.2-pool-ppc64le", + "product_id": 2220, + "repository_id": 4982, + "parent_product_id": null, + "root_product_id": 2220, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-SUSE-Manager-Server/4.2/ppc64le/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-SUSE-Manager-Server-4.2-Debuginfo-Pool for ppc64le", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-basesystem15-sp3-updates-ppc64le-sms-4.2", + "parent_channel_label": "sle-product-suse-manager-server-4.2-pool-ppc64le", + "product_id": 2143, + "repository_id": 4624, + "parent_product_id": 2220, + "root_product_id": 2220, + "update_tag": "SLE-Module-Basesystem", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15-SP3/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Basesystem15-SP3-Updates for ppc64le SMS 4.2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-basesystem15-sp3-debuginfo-updates-ppc64le-sms-4.2", + "parent_channel_label": "sle-product-suse-manager-server-4.2-pool-ppc64le", + "product_id": 2143, + "repository_id": 4625, + "parent_product_id": 2220, + "root_product_id": 2220, + "update_tag": "SLE-Module-Basesystem", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15-SP3/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Basesystem15-SP3-Debuginfo-Updates for ppc64le SMS 4.2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-basesystem15-sp3-pool-ppc64le-sms-4.2", + "parent_channel_label": "sle-product-suse-manager-server-4.2-pool-ppc64le", + "product_id": 2143, + "repository_id": 4626, + "parent_product_id": 2220, + "root_product_id": 2220, + "update_tag": "SLE-Module-Basesystem", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP3/ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Basesystem15-SP3-Pool for ppc64le SMS 4.2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-basesystem15-sp3-debuginfo-pool-ppc64le-sms-4.2", + "parent_channel_label": "sle-product-suse-manager-server-4.2-pool-ppc64le", + "product_id": 2143, + "repository_id": 4627, + "parent_product_id": 2220, + "root_product_id": 2220, + "update_tag": "SLE-Module-Basesystem", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP3/ppc64le/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Basesystem15-SP3-Debuginfo-Pool for ppc64le SMS 4.2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-desktop-applications15-sp3-updates-ppc64le-sms-4.2", + "parent_channel_label": "sle-product-suse-manager-server-4.2-pool-ppc64le", + "product_id": 2147, + "repository_id": 4644, + "parent_product_id": 2143, + "root_product_id": 2220, + "update_tag": "SLE-Module-Desktop-Applications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15-SP3/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Desktop-Applications15-SP3-Updates for ppc64le SMS 4.2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-desktop-applications15-sp3-debuginfo-updates-ppc64le-sms-4.2", + "parent_channel_label": "sle-product-suse-manager-server-4.2-pool-ppc64le", + "product_id": 2147, + "repository_id": 4645, + "parent_product_id": 2143, + "root_product_id": 2220, + "update_tag": "SLE-Module-Desktop-Applications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15-SP3/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Desktop-Applications15-SP3-Debuginfo-Updates for ppc64le SMS 4.2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-desktop-applications15-sp3-pool-ppc64le-sms-4.2", + "parent_channel_label": "sle-product-suse-manager-server-4.2-pool-ppc64le", + "product_id": 2147, + "repository_id": 4646, + "parent_product_id": 2143, + "root_product_id": 2220, + "update_tag": "SLE-Module-Desktop-Applications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP3/ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Desktop-Applications15-SP3-Pool for ppc64le SMS 4.2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-desktop-applications15-sp3-debuginfo-pool-ppc64le-sms-4.2", + "parent_channel_label": "sle-product-suse-manager-server-4.2-pool-ppc64le", + "product_id": 2147, + "repository_id": 4647, + "parent_product_id": 2143, + "root_product_id": 2220, + "update_tag": "SLE-Module-Desktop-Applications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP3/ppc64le/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Desktop-Applications15-SP3-Debuginfo-Pool for ppc64le SMS 4.2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-devtools15-sp3-updates-ppc64le-sms-4.2", + "parent_channel_label": "sle-product-suse-manager-server-4.2-pool-ppc64le", + "product_id": 2159, + "repository_id": 4704, + "parent_product_id": 2147, + "root_product_id": 2220, + "update_tag": "SLE-Module-Development-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15-SP3/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-DevTools15-SP3-Updates for ppc64le SMS 4.2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-devtools15-sp3-debuginfo-updates-ppc64le-sms-4.2", + "parent_channel_label": "sle-product-suse-manager-server-4.2-pool-ppc64le", + "product_id": 2159, + "repository_id": 4705, + "parent_product_id": 2147, + "root_product_id": 2220, + "update_tag": "SLE-Module-Development-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15-SP3/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-DevTools15-SP3-Debuginfo-Updates for ppc64le SMS 4.2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-devtools15-sp3-pool-ppc64le-sms-4.2", + "parent_channel_label": "sle-product-suse-manager-server-4.2-pool-ppc64le", + "product_id": 2159, + "repository_id": 4706, + "parent_product_id": 2147, + "root_product_id": 2220, + "update_tag": "SLE-Module-Development-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP3/ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-DevTools15-SP3-Pool for ppc64le SMS 4.2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-devtools15-sp3-debuginfo-pool-ppc64le-sms-4.2", + "parent_channel_label": "sle-product-suse-manager-server-4.2-pool-ppc64le", + "product_id": 2159, + "repository_id": 4707, + "parent_product_id": 2147, + "root_product_id": 2220, + "update_tag": "SLE-Module-Development-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP3/ppc64le/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-DevTools15-SP3-Debuginfo-Pool for ppc64le SMS 4.2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-server-applications15-sp3-updates-ppc64le-sms-4.2", + "parent_channel_label": "sle-product-suse-manager-server-4.2-pool-ppc64le", + "product_id": 2151, + "repository_id": 4664, + "parent_product_id": 2143, + "root_product_id": 2220, + "update_tag": "SLE-Module-Server-Applications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15-SP3/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Server-Applications15-SP3-Updates for ppc64le SMS 4.2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-server-applications15-sp3-debuginfo-updates-ppc64le-sms-4.2", + "parent_channel_label": "sle-product-suse-manager-server-4.2-pool-ppc64le", + "product_id": 2151, + "repository_id": 4665, + "parent_product_id": 2143, + "root_product_id": 2220, + "update_tag": "SLE-Module-Server-Applications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15-SP3/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Server-Applications15-SP3-Debuginfo-Updates for ppc64le SMS 4.2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-server-applications15-sp3-pool-ppc64le-sms-4.2", + "parent_channel_label": "sle-product-suse-manager-server-4.2-pool-ppc64le", + "product_id": 2151, + "repository_id": 4666, + "parent_product_id": 2143, + "root_product_id": 2220, + "update_tag": "SLE-Module-Server-Applications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP3/ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Server-Applications15-SP3-Pool for ppc64le SMS 4.2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-server-applications15-sp3-debuginfo-pool-ppc64le-sms-4.2", + "parent_channel_label": "sle-product-suse-manager-server-4.2-pool-ppc64le", + "product_id": 2151, + "repository_id": 4667, + "parent_product_id": 2143, + "root_product_id": 2220, + "update_tag": "SLE-Module-Server-Applications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP3/ppc64le/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Server-Applications15-SP3-Debuginfo-Pool for ppc64le SMS 4.2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-web-scripting15-sp3-updates-ppc64le-sms-4.2", + "parent_channel_label": "sle-product-suse-manager-server-4.2-pool-ppc64le", + "product_id": 2163, + "repository_id": 4724, + "parent_product_id": 2151, + "root_product_id": 2220, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/15-SP3/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Web-Scripting15-SP3-Updates for ppc64le SMS 4.2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-web-scripting15-sp3-debuginfo-updates-ppc64le-sms-4.2", + "parent_channel_label": "sle-product-suse-manager-server-4.2-pool-ppc64le", + "product_id": 2163, + "repository_id": 4725, + "parent_product_id": 2151, + "root_product_id": 2220, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/15-SP3/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Web-Scripting15-SP3-Debuginfo-Updates for ppc64le SMS 4.2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-web-scripting15-sp3-pool-ppc64le-sms-4.2", + "parent_channel_label": "sle-product-suse-manager-server-4.2-pool-ppc64le", + "product_id": 2163, + "repository_id": 4726, + "parent_product_id": 2151, + "root_product_id": 2220, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP3/ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Web-Scripting15-SP3-Pool for ppc64le SMS 4.2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-web-scripting15-sp3-debuginfo-pool-ppc64le-sms-4.2", + "parent_channel_label": "sle-product-suse-manager-server-4.2-pool-ppc64le", + "product_id": 2163, + "repository_id": 4727, + "parent_product_id": 2151, + "root_product_id": 2220, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP3/ppc64le/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Web-Scripting15-SP3-Debuginfo-Pool for ppc64le SMS 4.2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-suse-manager-server-4.2-updates-ppc64le", + "parent_channel_label": "sle-product-suse-manager-server-4.2-pool-ppc64le", + "product_id": 2226, + "repository_id": 5009, + "parent_product_id": 2163, + "root_product_id": 2220, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-SUSE-Manager-Server/4.2/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-SUSE-Manager-Server-4.2-Updates for ppc64le", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-suse-manager-server-4.2-debuginfo-updates-ppc64le", + "parent_channel_label": "sle-product-suse-manager-server-4.2-pool-ppc64le", + "product_id": 2226, + "repository_id": 5010, + "parent_product_id": 2163, + "root_product_id": 2220, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-SUSE-Manager-Server/4.2/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-SUSE-Manager-Server-4.2-Debuginfo-Updates for ppc64le", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-suse-manager-server-4.2-pool-ppc64le", + "parent_channel_label": "sle-product-suse-manager-server-4.2-pool-ppc64le", + "product_id": 2226, + "repository_id": 5011, + "parent_product_id": 2163, + "root_product_id": 2220, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-SUSE-Manager-Server/4.2/ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-SUSE-Manager-Server-4.2-Pool for ppc64le", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-suse-manager-server-4.2-debuginfo-pool-ppc64le", + "parent_channel_label": "sle-product-suse-manager-server-4.2-pool-ppc64le", + "product_id": 2226, + "repository_id": 5012, + "parent_product_id": 2163, + "root_product_id": 2220, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-SUSE-Manager-Server/4.2/ppc64le/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-SUSE-Manager-Server-4.2-Debuginfo-Pool for ppc64le", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-legacy15-sp3-updates-ppc64le-sms-4.2", + "parent_channel_label": "sle-product-suse-manager-server-4.2-pool-ppc64le", + "product_id": 2169, + "repository_id": 4754, + "parent_product_id": 2151, + "root_product_id": 2220, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/15-SP3/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy15-SP3-Updates for ppc64le SMS 4.2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-legacy15-sp3-debuginfo-updates-ppc64le-sms-4.2", + "parent_channel_label": "sle-product-suse-manager-server-4.2-pool-ppc64le", + "product_id": 2169, + "repository_id": 4755, + "parent_product_id": 2151, + "root_product_id": 2220, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/15-SP3/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy15-SP3-Debuginfo-Updates for ppc64le SMS 4.2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-legacy15-sp3-pool-ppc64le-sms-4.2", + "parent_channel_label": "sle-product-suse-manager-server-4.2-pool-ppc64le", + "product_id": 2169, + "repository_id": 4756, + "parent_product_id": 2151, + "root_product_id": 2220, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15-SP3/ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy15-SP3-Pool for ppc64le SMS 4.2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-legacy15-sp3-debuginfo-pool-ppc64le-sms-4.2", + "parent_channel_label": "sle-product-suse-manager-server-4.2-pool-ppc64le", + "product_id": 2169, + "repository_id": 4757, + "parent_product_id": 2151, + "root_product_id": 2220, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15-SP3/ppc64le/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy15-SP3-Debuginfo-Pool for ppc64le SMS 4.2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-public-cloud15-sp3-updates-ppc64le-sms-4.2", + "parent_channel_label": "sle-product-suse-manager-server-4.2-pool-ppc64le", + "product_id": 2173, + "repository_id": 4774, + "parent_product_id": 2151, + "root_product_id": 2220, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/15-SP3/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud15-SP3-Updates for ppc64le SMS 4.2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-public-cloud15-sp3-debuginfo-updates-ppc64le-sms-4.2", + "parent_channel_label": "sle-product-suse-manager-server-4.2-pool-ppc64le", + "product_id": 2173, + "repository_id": 4775, + "parent_product_id": 2151, + "root_product_id": 2220, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/15-SP3/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud15-SP3-Debuginfo-Updates for ppc64le SMS 4.2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-public-cloud15-sp3-pool-ppc64le-sms-4.2", + "parent_channel_label": "sle-product-suse-manager-server-4.2-pool-ppc64le", + "product_id": 2173, + "repository_id": 4776, + "parent_product_id": 2151, + "root_product_id": 2220, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP3/ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud15-SP3-Pool for ppc64le SMS 4.2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-public-cloud15-sp3-debuginfo-pool-ppc64le-sms-4.2", + "parent_channel_label": "sle-product-suse-manager-server-4.2-pool-ppc64le", + "product_id": 2173, + "repository_id": 4777, + "parent_product_id": 2151, + "root_product_id": 2220, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP3/ppc64le/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud15-SP3-Debuginfo-Pool for ppc64le SMS 4.2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-product-ha15-sp3-updates-ppc64le-sms-4.2", + "parent_channel_label": "sle-product-suse-manager-server-4.2-pool-ppc64le", + "product_id": 2193, + "repository_id": 4886, + "parent_product_id": 2151, + "root_product_id": 2220, + "update_tag": "SLE-Product-HA", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-HA/15-SP3/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HA15-SP3-Updates for ppc64le SMS 4.2", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-product-ha15-sp3-debuginfo-updates-ppc64le-sms-4.2", + "parent_channel_label": "sle-product-suse-manager-server-4.2-pool-ppc64le", + "product_id": 2193, + "repository_id": 4887, + "parent_product_id": 2151, + "root_product_id": 2220, + "update_tag": "SLE-Product-HA", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-HA/15-SP3/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HA15-SP3-Debuginfo-Updates for ppc64le SMS 4.2", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-product-ha15-sp3-pool-ppc64le-sms-4.2", + "parent_channel_label": "sle-product-suse-manager-server-4.2-pool-ppc64le", + "product_id": 2193, + "repository_id": 4888, + "parent_product_id": 2151, + "root_product_id": 2220, + "update_tag": "SLE-Product-HA", + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP3/ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HA15-SP3-Pool for ppc64le SMS 4.2", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-product-ha15-sp3-debuginfo-pool-ppc64le-sms-4.2", + "parent_channel_label": "sle-product-suse-manager-server-4.2-pool-ppc64le", + "product_id": 2193, + "repository_id": 4889, + "parent_product_id": 2151, + "root_product_id": 2220, + "update_tag": "SLE-Product-HA", + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP3/ppc64le/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HA15-SP3-Debuginfo-Pool for ppc64le SMS 4.2", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-containers15-sp3-updates-ppc64le-sms-4.2", + "parent_channel_label": "sle-product-suse-manager-server-4.2-pool-ppc64le", + "product_id": 2155, + "repository_id": 4684, + "parent_product_id": 2143, + "root_product_id": 2220, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/15-SP3/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers15-SP3-Updates for ppc64le SMS 4.2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-containers15-sp3-debuginfo-updates-ppc64le-sms-4.2", + "parent_channel_label": "sle-product-suse-manager-server-4.2-pool-ppc64le", + "product_id": 2155, + "repository_id": 4685, + "parent_product_id": 2143, + "root_product_id": 2220, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/15-SP3/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers15-SP3-Debuginfo-Updates for ppc64le SMS 4.2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-containers15-sp3-pool-ppc64le-sms-4.2", + "parent_channel_label": "sle-product-suse-manager-server-4.2-pool-ppc64le", + "product_id": 2155, + "repository_id": 4686, + "parent_product_id": 2143, + "root_product_id": 2220, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP3/ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers15-SP3-Pool for ppc64le SMS 4.2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-containers15-sp3-debuginfo-pool-ppc64le-sms-4.2", + "parent_channel_label": "sle-product-suse-manager-server-4.2-pool-ppc64le", + "product_id": 2155, + "repository_id": 4687, + "parent_product_id": 2143, + "root_product_id": 2220, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP3/ppc64le/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers15-SP3-Debuginfo-Pool for ppc64le SMS 4.2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-python2-15-sp3-updates-ppc64le-sms-4.2", + "parent_channel_label": "sle-product-suse-manager-server-4.2-pool-ppc64le", + "product_id": 2182, + "repository_id": 4819, + "parent_product_id": 2143, + "root_product_id": 2220, + "update_tag": "SLE-Module-Python2", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Python2/15-SP3/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Python2-15-SP3-Updates for ppc64le SMS 4.2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-python2-15-sp3-debuginfo-updates-ppc64le-sms-4.2", + "parent_channel_label": "sle-product-suse-manager-server-4.2-pool-ppc64le", + "product_id": 2182, + "repository_id": 4820, + "parent_product_id": 2143, + "root_product_id": 2220, + "update_tag": "SLE-Module-Python2", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Python2/15-SP3/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Python2-15-SP3-Debuginfo-Updates for ppc64le SMS 4.2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-python2-15-sp3-pool-ppc64le-sms-4.2", + "parent_channel_label": "sle-product-suse-manager-server-4.2-pool-ppc64le", + "product_id": 2182, + "repository_id": 4821, + "parent_product_id": 2143, + "root_product_id": 2220, + "update_tag": "SLE-Module-Python2", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Python2/15-SP3/ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Python2-15-SP3-Pool for ppc64le SMS 4.2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-python2-15-sp3-debuginfo-pool-ppc64le-sms-4.2", + "parent_channel_label": "sle-product-suse-manager-server-4.2-pool-ppc64le", + "product_id": 2182, + "repository_id": 4822, + "parent_product_id": 2143, + "root_product_id": 2220, + "update_tag": "SLE-Module-Python2", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Python2/15-SP3/ppc64le/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Python2-15-SP3-Debuginfo-Pool for ppc64le SMS 4.2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "suse-packagehub-15-sp3-backports-pool-ppc64le-sms-4.2", + "parent_channel_label": "sle-product-suse-manager-server-4.2-pool-ppc64le", + "product_id": 2189, + "repository_id": 4857, + "parent_product_id": 2143, + "root_product_id": 2220, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-15-SP3_ppc64le/standard/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-15-SP3-Backports-Pool for ppc64le SMS 4.2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "suse-packagehub-15-sp3-backports-debuginfo-ppc64le-sms-4.2", + "parent_channel_label": "sle-product-suse-manager-server-4.2-pool-ppc64le", + "product_id": 2189, + "repository_id": 4858, + "parent_product_id": 2143, + "root_product_id": 2220, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-15-SP3_ppc64le/standard_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-15-SP3-Backports-Debuginfo for ppc64le SMS 4.2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-packagehub-subpackages15-sp3-updates-ppc64le-sms-4.2", + "parent_channel_label": "sle-product-suse-manager-server-4.2-pool-ppc64le", + "product_id": 2189, + "repository_id": 4859, + "parent_product_id": 2143, + "root_product_id": 2220, + "update_tag": "SLE-Module-Packagehub-Subpackages", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP3/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Packagehub-Subpackages15-SP3-Updates for ppc64le SMS 4.2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-packagehub-subpackages15-sp3-debuginfo-updates-ppc64le-sms-4.2", + "parent_channel_label": "sle-product-suse-manager-server-4.2-pool-ppc64le", + "product_id": 2189, + "repository_id": 4860, + "parent_product_id": 2143, + "root_product_id": 2220, + "update_tag": "SLE-Module-Packagehub-Subpackages", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP3/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Packagehub-Subpackages15-SP3-Debuginfo-Updates for ppc64le SMS 4.2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "suse-packagehub-15-sp3-pool-ppc64le-sms-4.2", + "parent_channel_label": "sle-product-suse-manager-server-4.2-pool-ppc64le", + "product_id": 2189, + "repository_id": 4861, + "parent_product_id": 2143, + "root_product_id": 2220, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-15-SP3_ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-15-SP3-Pool for ppc64le SMS 4.2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-packagehub-subpackages15-sp3-pool-ppc64le-sms-4.2", + "parent_channel_label": "sle-product-suse-manager-server-4.2-pool-ppc64le", + "product_id": 2189, + "repository_id": 4862, + "parent_product_id": 2143, + "root_product_id": 2220, + "update_tag": "SLE-Module-Packagehub-Subpackages", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP3/ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Packagehub-Subpackages15-SP3-Pool for ppc64le SMS 4.2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-packagehub-subpackages15-sp3-debuginfo-pool-ppc64le-sms-4.2", + "parent_channel_label": "sle-product-suse-manager-server-4.2-pool-ppc64le", + "product_id": 2189, + "repository_id": 4863, + "parent_product_id": 2143, + "root_product_id": 2220, + "update_tag": "SLE-Module-Packagehub-Subpackages", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP3/ppc64le/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Packagehub-Subpackages15-SP3-Debuginfo-Pool for ppc64le SMS 4.2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-product-suse-manager-server-4.2-updates-s390x", + "parent_channel_label": "sle-product-suse-manager-server-4.2-pool-s390x", + "product_id": 2221, + "repository_id": 4984, + "parent_product_id": null, + "root_product_id": 2221, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-SUSE-Manager-Server/4.2/s390x/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-SUSE-Manager-Server-4.2-Updates for s390x", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-product-suse-manager-server-4.2-debuginfo-updates-s390x", + "parent_channel_label": "sle-product-suse-manager-server-4.2-pool-s390x", + "product_id": 2221, + "repository_id": 4985, + "parent_product_id": null, + "root_product_id": 2221, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-SUSE-Manager-Server/4.2/s390x/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-SUSE-Manager-Server-4.2-Debuginfo-Updates for s390x", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-product-suse-manager-server-4.2-pool-s390x", + "parent_channel_label": null, + "product_id": 2221, + "repository_id": 4986, + "parent_product_id": null, + "root_product_id": 2221, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-SUSE-Manager-Server/4.2/s390x/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-SUSE-Manager-Server-4.2-Pool for s390x", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-product-suse-manager-server-4.2-debuginfo-pool-s390x", + "parent_channel_label": "sle-product-suse-manager-server-4.2-pool-s390x", + "product_id": 2221, + "repository_id": 4987, + "parent_product_id": null, + "root_product_id": 2221, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-SUSE-Manager-Server/4.2/s390x/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-SUSE-Manager-Server-4.2-Debuginfo-Pool for s390x", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-basesystem15-sp3-updates-s390x-sms-4.2", + "parent_channel_label": "sle-product-suse-manager-server-4.2-pool-s390x", + "product_id": 2144, + "repository_id": 4629, + "parent_product_id": 2221, + "root_product_id": 2221, + "update_tag": "SLE-Module-Basesystem", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15-SP3/s390x/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Basesystem15-SP3-Updates for s390x SMS 4.2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-basesystem15-sp3-debuginfo-updates-s390x-sms-4.2", + "parent_channel_label": "sle-product-suse-manager-server-4.2-pool-s390x", + "product_id": 2144, + "repository_id": 4630, + "parent_product_id": 2221, + "root_product_id": 2221, + "update_tag": "SLE-Module-Basesystem", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15-SP3/s390x/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Basesystem15-SP3-Debuginfo-Updates for s390x SMS 4.2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-basesystem15-sp3-pool-s390x-sms-4.2", + "parent_channel_label": "sle-product-suse-manager-server-4.2-pool-s390x", + "product_id": 2144, + "repository_id": 4631, + "parent_product_id": 2221, + "root_product_id": 2221, + "update_tag": "SLE-Module-Basesystem", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP3/s390x/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Basesystem15-SP3-Pool for s390x SMS 4.2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-basesystem15-sp3-debuginfo-pool-s390x-sms-4.2", + "parent_channel_label": "sle-product-suse-manager-server-4.2-pool-s390x", + "product_id": 2144, + "repository_id": 4632, + "parent_product_id": 2221, + "root_product_id": 2221, + "update_tag": "SLE-Module-Basesystem", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP3/s390x/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Basesystem15-SP3-Debuginfo-Pool for s390x SMS 4.2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-desktop-applications15-sp3-updates-s390x-sms-4.2", + "parent_channel_label": "sle-product-suse-manager-server-4.2-pool-s390x", + "product_id": 2148, + "repository_id": 4649, + "parent_product_id": 2144, + "root_product_id": 2221, + "update_tag": "SLE-Module-Desktop-Applications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15-SP3/s390x/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Desktop-Applications15-SP3-Updates for s390x SMS 4.2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-desktop-applications15-sp3-debuginfo-updates-s390x-sms-4.2", + "parent_channel_label": "sle-product-suse-manager-server-4.2-pool-s390x", + "product_id": 2148, + "repository_id": 4650, + "parent_product_id": 2144, + "root_product_id": 2221, + "update_tag": "SLE-Module-Desktop-Applications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15-SP3/s390x/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Desktop-Applications15-SP3-Debuginfo-Updates for s390x SMS 4.2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-desktop-applications15-sp3-pool-s390x-sms-4.2", + "parent_channel_label": "sle-product-suse-manager-server-4.2-pool-s390x", + "product_id": 2148, + "repository_id": 4651, + "parent_product_id": 2144, + "root_product_id": 2221, + "update_tag": "SLE-Module-Desktop-Applications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP3/s390x/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Desktop-Applications15-SP3-Pool for s390x SMS 4.2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-desktop-applications15-sp3-debuginfo-pool-s390x-sms-4.2", + "parent_channel_label": "sle-product-suse-manager-server-4.2-pool-s390x", + "product_id": 2148, + "repository_id": 4652, + "parent_product_id": 2144, + "root_product_id": 2221, + "update_tag": "SLE-Module-Desktop-Applications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP3/s390x/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Desktop-Applications15-SP3-Debuginfo-Pool for s390x SMS 4.2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-devtools15-sp3-updates-s390x-sms-4.2", + "parent_channel_label": "sle-product-suse-manager-server-4.2-pool-s390x", + "product_id": 2160, + "repository_id": 4709, + "parent_product_id": 2148, + "root_product_id": 2221, + "update_tag": "SLE-Module-Development-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15-SP3/s390x/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-DevTools15-SP3-Updates for s390x SMS 4.2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-devtools15-sp3-debuginfo-updates-s390x-sms-4.2", + "parent_channel_label": "sle-product-suse-manager-server-4.2-pool-s390x", + "product_id": 2160, + "repository_id": 4710, + "parent_product_id": 2148, + "root_product_id": 2221, + "update_tag": "SLE-Module-Development-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15-SP3/s390x/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-DevTools15-SP3-Debuginfo-Updates for s390x SMS 4.2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-devtools15-sp3-pool-s390x-sms-4.2", + "parent_channel_label": "sle-product-suse-manager-server-4.2-pool-s390x", + "product_id": 2160, + "repository_id": 4711, + "parent_product_id": 2148, + "root_product_id": 2221, + "update_tag": "SLE-Module-Development-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP3/s390x/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-DevTools15-SP3-Pool for s390x SMS 4.2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-devtools15-sp3-debuginfo-pool-s390x-sms-4.2", + "parent_channel_label": "sle-product-suse-manager-server-4.2-pool-s390x", + "product_id": 2160, + "repository_id": 4712, + "parent_product_id": 2148, + "root_product_id": 2221, + "update_tag": "SLE-Module-Development-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP3/s390x/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-DevTools15-SP3-Debuginfo-Pool for s390x SMS 4.2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-server-applications15-sp3-updates-s390x-sms-4.2", + "parent_channel_label": "sle-product-suse-manager-server-4.2-pool-s390x", + "product_id": 2152, + "repository_id": 4669, + "parent_product_id": 2144, + "root_product_id": 2221, + "update_tag": "SLE-Module-Server-Applications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15-SP3/s390x/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Server-Applications15-SP3-Updates for s390x SMS 4.2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-server-applications15-sp3-debuginfo-updates-s390x-sms-4.2", + "parent_channel_label": "sle-product-suse-manager-server-4.2-pool-s390x", + "product_id": 2152, + "repository_id": 4670, + "parent_product_id": 2144, + "root_product_id": 2221, + "update_tag": "SLE-Module-Server-Applications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15-SP3/s390x/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Server-Applications15-SP3-Debuginfo-Updates for s390x SMS 4.2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-server-applications15-sp3-pool-s390x-sms-4.2", + "parent_channel_label": "sle-product-suse-manager-server-4.2-pool-s390x", + "product_id": 2152, + "repository_id": 4671, + "parent_product_id": 2144, + "root_product_id": 2221, + "update_tag": "SLE-Module-Server-Applications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP3/s390x/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Server-Applications15-SP3-Pool for s390x SMS 4.2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-server-applications15-sp3-debuginfo-pool-s390x-sms-4.2", + "parent_channel_label": "sle-product-suse-manager-server-4.2-pool-s390x", + "product_id": 2152, + "repository_id": 4672, + "parent_product_id": 2144, + "root_product_id": 2221, + "update_tag": "SLE-Module-Server-Applications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP3/s390x/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Server-Applications15-SP3-Debuginfo-Pool for s390x SMS 4.2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-web-scripting15-sp3-updates-s390x-sms-4.2", + "parent_channel_label": "sle-product-suse-manager-server-4.2-pool-s390x", + "product_id": 2164, + "repository_id": 4729, + "parent_product_id": 2152, + "root_product_id": 2221, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/15-SP3/s390x/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Web-Scripting15-SP3-Updates for s390x SMS 4.2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-web-scripting15-sp3-debuginfo-updates-s390x-sms-4.2", + "parent_channel_label": "sle-product-suse-manager-server-4.2-pool-s390x", + "product_id": 2164, + "repository_id": 4730, + "parent_product_id": 2152, + "root_product_id": 2221, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/15-SP3/s390x/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Web-Scripting15-SP3-Debuginfo-Updates for s390x SMS 4.2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-web-scripting15-sp3-pool-s390x-sms-4.2", + "parent_channel_label": "sle-product-suse-manager-server-4.2-pool-s390x", + "product_id": 2164, + "repository_id": 4731, + "parent_product_id": 2152, + "root_product_id": 2221, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP3/s390x/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Web-Scripting15-SP3-Pool for s390x SMS 4.2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-web-scripting15-sp3-debuginfo-pool-s390x-sms-4.2", + "parent_channel_label": "sle-product-suse-manager-server-4.2-pool-s390x", + "product_id": 2164, + "repository_id": 4732, + "parent_product_id": 2152, + "root_product_id": 2221, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP3/s390x/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Web-Scripting15-SP3-Debuginfo-Pool for s390x SMS 4.2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-suse-manager-server-4.2-updates-s390x", + "parent_channel_label": "sle-product-suse-manager-server-4.2-pool-s390x", + "product_id": 2227, + "repository_id": 5014, + "parent_product_id": 2164, + "root_product_id": 2221, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-SUSE-Manager-Server/4.2/s390x/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-SUSE-Manager-Server-4.2-Updates for s390x", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-suse-manager-server-4.2-debuginfo-updates-s390x", + "parent_channel_label": "sle-product-suse-manager-server-4.2-pool-s390x", + "product_id": 2227, + "repository_id": 5015, + "parent_product_id": 2164, + "root_product_id": 2221, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-SUSE-Manager-Server/4.2/s390x/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-SUSE-Manager-Server-4.2-Debuginfo-Updates for s390x", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-suse-manager-server-4.2-pool-s390x", + "parent_channel_label": "sle-product-suse-manager-server-4.2-pool-s390x", + "product_id": 2227, + "repository_id": 5016, + "parent_product_id": 2164, + "root_product_id": 2221, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-SUSE-Manager-Server/4.2/s390x/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-SUSE-Manager-Server-4.2-Pool for s390x", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-suse-manager-server-4.2-debuginfo-pool-s390x", + "parent_channel_label": "sle-product-suse-manager-server-4.2-pool-s390x", + "product_id": 2227, + "repository_id": 5017, + "parent_product_id": 2164, + "root_product_id": 2221, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-SUSE-Manager-Server/4.2/s390x/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-SUSE-Manager-Server-4.2-Debuginfo-Pool for s390x", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-legacy15-sp3-updates-s390x-sms-4.2", + "parent_channel_label": "sle-product-suse-manager-server-4.2-pool-s390x", + "product_id": 2170, + "repository_id": 4759, + "parent_product_id": 2152, + "root_product_id": 2221, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/15-SP3/s390x/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy15-SP3-Updates for s390x SMS 4.2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-legacy15-sp3-debuginfo-updates-s390x-sms-4.2", + "parent_channel_label": "sle-product-suse-manager-server-4.2-pool-s390x", + "product_id": 2170, + "repository_id": 4760, + "parent_product_id": 2152, + "root_product_id": 2221, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/15-SP3/s390x/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy15-SP3-Debuginfo-Updates for s390x SMS 4.2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-legacy15-sp3-pool-s390x-sms-4.2", + "parent_channel_label": "sle-product-suse-manager-server-4.2-pool-s390x", + "product_id": 2170, + "repository_id": 4761, + "parent_product_id": 2152, + "root_product_id": 2221, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15-SP3/s390x/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy15-SP3-Pool for s390x SMS 4.2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-legacy15-sp3-debuginfo-pool-s390x-sms-4.2", + "parent_channel_label": "sle-product-suse-manager-server-4.2-pool-s390x", + "product_id": 2170, + "repository_id": 4762, + "parent_product_id": 2152, + "root_product_id": 2221, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15-SP3/s390x/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy15-SP3-Debuginfo-Pool for s390x SMS 4.2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-public-cloud15-sp3-updates-s390x-sms-4.2", + "parent_channel_label": "sle-product-suse-manager-server-4.2-pool-s390x", + "product_id": 2174, + "repository_id": 4779, + "parent_product_id": 2152, + "root_product_id": 2221, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/15-SP3/s390x/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud15-SP3-Updates for s390x SMS 4.2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-public-cloud15-sp3-debuginfo-updates-s390x-sms-4.2", + "parent_channel_label": "sle-product-suse-manager-server-4.2-pool-s390x", + "product_id": 2174, + "repository_id": 4780, + "parent_product_id": 2152, + "root_product_id": 2221, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/15-SP3/s390x/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud15-SP3-Debuginfo-Updates for s390x SMS 4.2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-public-cloud15-sp3-pool-s390x-sms-4.2", + "parent_channel_label": "sle-product-suse-manager-server-4.2-pool-s390x", + "product_id": 2174, + "repository_id": 4781, + "parent_product_id": 2152, + "root_product_id": 2221, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP3/s390x/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud15-SP3-Pool for s390x SMS 4.2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-public-cloud15-sp3-debuginfo-pool-s390x-sms-4.2", + "parent_channel_label": "sle-product-suse-manager-server-4.2-pool-s390x", + "product_id": 2174, + "repository_id": 4782, + "parent_product_id": 2152, + "root_product_id": 2221, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP3/s390x/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud15-SP3-Debuginfo-Pool for s390x SMS 4.2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-product-ha15-sp3-updates-s390x-sms-4.2", + "parent_channel_label": "sle-product-suse-manager-server-4.2-pool-s390x", + "product_id": 2194, + "repository_id": 4891, + "parent_product_id": 2152, + "root_product_id": 2221, + "update_tag": "SLE-Product-HA", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-HA/15-SP3/s390x/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HA15-SP3-Updates for s390x SMS 4.2", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-product-ha15-sp3-debuginfo-updates-s390x-sms-4.2", + "parent_channel_label": "sle-product-suse-manager-server-4.2-pool-s390x", + "product_id": 2194, + "repository_id": 4892, + "parent_product_id": 2152, + "root_product_id": 2221, + "update_tag": "SLE-Product-HA", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-HA/15-SP3/s390x/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HA15-SP3-Debuginfo-Updates for s390x SMS 4.2", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-product-ha15-sp3-pool-s390x-sms-4.2", + "parent_channel_label": "sle-product-suse-manager-server-4.2-pool-s390x", + "product_id": 2194, + "repository_id": 4893, + "parent_product_id": 2152, + "root_product_id": 2221, + "update_tag": "SLE-Product-HA", + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP3/s390x/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HA15-SP3-Pool for s390x SMS 4.2", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-product-ha15-sp3-debuginfo-pool-s390x-sms-4.2", + "parent_channel_label": "sle-product-suse-manager-server-4.2-pool-s390x", + "product_id": 2194, + "repository_id": 4894, + "parent_product_id": 2152, + "root_product_id": 2221, + "update_tag": "SLE-Product-HA", + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP3/s390x/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HA15-SP3-Debuginfo-Pool for s390x SMS 4.2", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-containers15-sp3-updates-s390x-sms-4.2", + "parent_channel_label": "sle-product-suse-manager-server-4.2-pool-s390x", + "product_id": 2156, + "repository_id": 4689, + "parent_product_id": 2144, + "root_product_id": 2221, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/15-SP3/s390x/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers15-SP3-Updates for s390x SMS 4.2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-containers15-sp3-debuginfo-updates-s390x-sms-4.2", + "parent_channel_label": "sle-product-suse-manager-server-4.2-pool-s390x", + "product_id": 2156, + "repository_id": 4690, + "parent_product_id": 2144, + "root_product_id": 2221, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/15-SP3/s390x/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers15-SP3-Debuginfo-Updates for s390x SMS 4.2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-containers15-sp3-pool-s390x-sms-4.2", + "parent_channel_label": "sle-product-suse-manager-server-4.2-pool-s390x", + "product_id": 2156, + "repository_id": 4691, + "parent_product_id": 2144, + "root_product_id": 2221, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP3/s390x/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers15-SP3-Pool for s390x SMS 4.2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-containers15-sp3-debuginfo-pool-s390x-sms-4.2", + "parent_channel_label": "sle-product-suse-manager-server-4.2-pool-s390x", + "product_id": 2156, + "repository_id": 4692, + "parent_product_id": 2144, + "root_product_id": 2221, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP3/s390x/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers15-SP3-Debuginfo-Pool for s390x SMS 4.2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-python2-15-sp3-updates-s390x-sms-4.2", + "parent_channel_label": "sle-product-suse-manager-server-4.2-pool-s390x", + "product_id": 2183, + "repository_id": 4824, + "parent_product_id": 2144, + "root_product_id": 2221, + "update_tag": "SLE-Module-Python2", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Python2/15-SP3/s390x/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Python2-15-SP3-Updates for s390x SMS 4.2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-python2-15-sp3-debuginfo-updates-s390x-sms-4.2", + "parent_channel_label": "sle-product-suse-manager-server-4.2-pool-s390x", + "product_id": 2183, + "repository_id": 4825, + "parent_product_id": 2144, + "root_product_id": 2221, + "update_tag": "SLE-Module-Python2", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Python2/15-SP3/s390x/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Python2-15-SP3-Debuginfo-Updates for s390x SMS 4.2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-python2-15-sp3-pool-s390x-sms-4.2", + "parent_channel_label": "sle-product-suse-manager-server-4.2-pool-s390x", + "product_id": 2183, + "repository_id": 4826, + "parent_product_id": 2144, + "root_product_id": 2221, + "update_tag": "SLE-Module-Python2", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Python2/15-SP3/s390x/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Python2-15-SP3-Pool for s390x SMS 4.2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-python2-15-sp3-debuginfo-pool-s390x-sms-4.2", + "parent_channel_label": "sle-product-suse-manager-server-4.2-pool-s390x", + "product_id": 2183, + "repository_id": 4827, + "parent_product_id": 2144, + "root_product_id": 2221, + "update_tag": "SLE-Module-Python2", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Python2/15-SP3/s390x/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Python2-15-SP3-Debuginfo-Pool for s390x SMS 4.2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "suse-packagehub-15-sp3-backports-pool-s390x-sms-4.2", + "parent_channel_label": "sle-product-suse-manager-server-4.2-pool-s390x", + "product_id": 2190, + "repository_id": 4865, + "parent_product_id": 2144, + "root_product_id": 2221, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-15-SP3_s390x/standard/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-15-SP3-Backports-Pool for s390x SMS 4.2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "suse-packagehub-15-sp3-backports-debuginfo-s390x-sms-4.2", + "parent_channel_label": "sle-product-suse-manager-server-4.2-pool-s390x", + "product_id": 2190, + "repository_id": 4866, + "parent_product_id": 2144, + "root_product_id": 2221, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-15-SP3_s390x/standard_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-15-SP3-Backports-Debuginfo for s390x SMS 4.2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-packagehub-subpackages15-sp3-updates-s390x-sms-4.2", + "parent_channel_label": "sle-product-suse-manager-server-4.2-pool-s390x", + "product_id": 2190, + "repository_id": 4867, + "parent_product_id": 2144, + "root_product_id": 2221, + "update_tag": "SLE-Module-Packagehub-Subpackages", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP3/s390x/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Packagehub-Subpackages15-SP3-Updates for s390x SMS 4.2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-packagehub-subpackages15-sp3-debuginfo-updates-s390x-sms-4.2", + "parent_channel_label": "sle-product-suse-manager-server-4.2-pool-s390x", + "product_id": 2190, + "repository_id": 4868, + "parent_product_id": 2144, + "root_product_id": 2221, + "update_tag": "SLE-Module-Packagehub-Subpackages", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP3/s390x/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Packagehub-Subpackages15-SP3-Debuginfo-Updates for s390x SMS 4.2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "suse-packagehub-15-sp3-pool-s390x-sms-4.2", + "parent_channel_label": "sle-product-suse-manager-server-4.2-pool-s390x", + "product_id": 2190, + "repository_id": 4869, + "parent_product_id": 2144, + "root_product_id": 2221, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-15-SP3_s390x/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-15-SP3-Pool for s390x SMS 4.2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-packagehub-subpackages15-sp3-pool-s390x-sms-4.2", + "parent_channel_label": "sle-product-suse-manager-server-4.2-pool-s390x", + "product_id": 2190, + "repository_id": 4870, + "parent_product_id": 2144, + "root_product_id": 2221, + "update_tag": "SLE-Module-Packagehub-Subpackages", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP3/s390x/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Packagehub-Subpackages15-SP3-Pool for s390x SMS 4.2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-packagehub-subpackages15-sp3-debuginfo-pool-s390x-sms-4.2", + "parent_channel_label": "sle-product-suse-manager-server-4.2-pool-s390x", + "product_id": 2190, + "repository_id": 4871, + "parent_product_id": 2144, + "root_product_id": 2221, + "update_tag": "SLE-Module-Packagehub-Subpackages", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP3/s390x/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Packagehub-Subpackages15-SP3-Debuginfo-Pool for s390x SMS 4.2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-product-suse-manager-server-4.2-updates-x86_64", + "parent_channel_label": "sle-product-suse-manager-server-4.2-pool-x86_64", + "product_id": 2222, + "repository_id": 4989, + "parent_product_id": null, + "root_product_id": 2222, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-SUSE-Manager-Server/4.2/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-SUSE-Manager-Server-4.2-Updates for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-product-suse-manager-server-4.2-debuginfo-updates-x86_64", + "parent_channel_label": "sle-product-suse-manager-server-4.2-pool-x86_64", + "product_id": 2222, + "repository_id": 4990, + "parent_product_id": null, + "root_product_id": 2222, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-SUSE-Manager-Server/4.2/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-SUSE-Manager-Server-4.2-Debuginfo-Updates for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-product-suse-manager-server-4.2-pool-x86_64", + "parent_channel_label": null, + "product_id": 2222, + "repository_id": 4991, + "parent_product_id": null, + "root_product_id": 2222, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-SUSE-Manager-Server/4.2/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-SUSE-Manager-Server-4.2-Pool for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-product-suse-manager-server-4.2-debuginfo-pool-x86_64", + "parent_channel_label": "sle-product-suse-manager-server-4.2-pool-x86_64", + "product_id": 2222, + "repository_id": 4992, + "parent_product_id": null, + "root_product_id": 2222, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-SUSE-Manager-Server/4.2/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-SUSE-Manager-Server-4.2-Debuginfo-Pool for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-basesystem15-sp3-updates-x86_64-sms-4.2", + "parent_channel_label": "sle-product-suse-manager-server-4.2-pool-x86_64", + "product_id": 2145, + "repository_id": 4634, + "parent_product_id": 2222, + "root_product_id": 2222, + "update_tag": "SLE-Module-Basesystem", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15-SP3/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Basesystem15-SP3-Updates for x86_64 SMS 4.2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-basesystem15-sp3-debuginfo-updates-x86_64-sms-4.2", + "parent_channel_label": "sle-product-suse-manager-server-4.2-pool-x86_64", + "product_id": 2145, + "repository_id": 4635, + "parent_product_id": 2222, + "root_product_id": 2222, + "update_tag": "SLE-Module-Basesystem", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15-SP3/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Basesystem15-SP3-Debuginfo-Updates for x86_64 SMS 4.2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-basesystem15-sp3-pool-x86_64-sms-4.2", + "parent_channel_label": "sle-product-suse-manager-server-4.2-pool-x86_64", + "product_id": 2145, + "repository_id": 4636, + "parent_product_id": 2222, + "root_product_id": 2222, + "update_tag": "SLE-Module-Basesystem", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP3/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Basesystem15-SP3-Pool for x86_64 SMS 4.2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-basesystem15-sp3-debuginfo-pool-x86_64-sms-4.2", + "parent_channel_label": "sle-product-suse-manager-server-4.2-pool-x86_64", + "product_id": 2145, + "repository_id": 4637, + "parent_product_id": 2222, + "root_product_id": 2222, + "update_tag": "SLE-Module-Basesystem", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP3/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Basesystem15-SP3-Debuginfo-Pool for x86_64 SMS 4.2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-desktop-applications15-sp3-updates-x86_64-sms-4.2", + "parent_channel_label": "sle-product-suse-manager-server-4.2-pool-x86_64", + "product_id": 2149, + "repository_id": 4654, + "parent_product_id": 2145, + "root_product_id": 2222, + "update_tag": "SLE-Module-Desktop-Applications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15-SP3/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Desktop-Applications15-SP3-Updates for x86_64 SMS 4.2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-desktop-applications15-sp3-debuginfo-updates-x86_64-sms-4.2", + "parent_channel_label": "sle-product-suse-manager-server-4.2-pool-x86_64", + "product_id": 2149, + "repository_id": 4655, + "parent_product_id": 2145, + "root_product_id": 2222, + "update_tag": "SLE-Module-Desktop-Applications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15-SP3/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Desktop-Applications15-SP3-Debuginfo-Updates for x86_64 SMS 4.2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-desktop-applications15-sp3-pool-x86_64-sms-4.2", + "parent_channel_label": "sle-product-suse-manager-server-4.2-pool-x86_64", + "product_id": 2149, + "repository_id": 4656, + "parent_product_id": 2145, + "root_product_id": 2222, + "update_tag": "SLE-Module-Desktop-Applications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP3/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Desktop-Applications15-SP3-Pool for x86_64 SMS 4.2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-desktop-applications15-sp3-debuginfo-pool-x86_64-sms-4.2", + "parent_channel_label": "sle-product-suse-manager-server-4.2-pool-x86_64", + "product_id": 2149, + "repository_id": 4657, + "parent_product_id": 2145, + "root_product_id": 2222, + "update_tag": "SLE-Module-Desktop-Applications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP3/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Desktop-Applications15-SP3-Debuginfo-Pool for x86_64 SMS 4.2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-devtools15-sp3-updates-x86_64-sms-4.2", + "parent_channel_label": "sle-product-suse-manager-server-4.2-pool-x86_64", + "product_id": 2161, + "repository_id": 4714, + "parent_product_id": 2149, + "root_product_id": 2222, + "update_tag": "SLE-Module-Development-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15-SP3/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-DevTools15-SP3-Updates for x86_64 SMS 4.2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-devtools15-sp3-debuginfo-updates-x86_64-sms-4.2", + "parent_channel_label": "sle-product-suse-manager-server-4.2-pool-x86_64", + "product_id": 2161, + "repository_id": 4715, + "parent_product_id": 2149, + "root_product_id": 2222, + "update_tag": "SLE-Module-Development-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15-SP3/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-DevTools15-SP3-Debuginfo-Updates for x86_64 SMS 4.2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-devtools15-sp3-pool-x86_64-sms-4.2", + "parent_channel_label": "sle-product-suse-manager-server-4.2-pool-x86_64", + "product_id": 2161, + "repository_id": 4716, + "parent_product_id": 2149, + "root_product_id": 2222, + "update_tag": "SLE-Module-Development-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP3/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-DevTools15-SP3-Pool for x86_64 SMS 4.2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-devtools15-sp3-debuginfo-pool-x86_64-sms-4.2", + "parent_channel_label": "sle-product-suse-manager-server-4.2-pool-x86_64", + "product_id": 2161, + "repository_id": 4717, + "parent_product_id": 2149, + "root_product_id": 2222, + "update_tag": "SLE-Module-Development-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP3/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-DevTools15-SP3-Debuginfo-Pool for x86_64 SMS 4.2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-server-applications15-sp3-updates-x86_64-sms-4.2", + "parent_channel_label": "sle-product-suse-manager-server-4.2-pool-x86_64", + "product_id": 2153, + "repository_id": 4674, + "parent_product_id": 2145, + "root_product_id": 2222, + "update_tag": "SLE-Module-Server-Applications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15-SP3/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Server-Applications15-SP3-Updates for x86_64 SMS 4.2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-server-applications15-sp3-debuginfo-updates-x86_64-sms-4.2", + "parent_channel_label": "sle-product-suse-manager-server-4.2-pool-x86_64", + "product_id": 2153, + "repository_id": 4675, + "parent_product_id": 2145, + "root_product_id": 2222, + "update_tag": "SLE-Module-Server-Applications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15-SP3/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Server-Applications15-SP3-Debuginfo-Updates for x86_64 SMS 4.2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-server-applications15-sp3-pool-x86_64-sms-4.2", + "parent_channel_label": "sle-product-suse-manager-server-4.2-pool-x86_64", + "product_id": 2153, + "repository_id": 4676, + "parent_product_id": 2145, + "root_product_id": 2222, + "update_tag": "SLE-Module-Server-Applications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP3/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Server-Applications15-SP3-Pool for x86_64 SMS 4.2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-server-applications15-sp3-debuginfo-pool-x86_64-sms-4.2", + "parent_channel_label": "sle-product-suse-manager-server-4.2-pool-x86_64", + "product_id": 2153, + "repository_id": 4677, + "parent_product_id": 2145, + "root_product_id": 2222, + "update_tag": "SLE-Module-Server-Applications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP3/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Server-Applications15-SP3-Debuginfo-Pool for x86_64 SMS 4.2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-web-scripting15-sp3-updates-x86_64-sms-4.2", + "parent_channel_label": "sle-product-suse-manager-server-4.2-pool-x86_64", + "product_id": 2165, + "repository_id": 4734, + "parent_product_id": 2153, + "root_product_id": 2222, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/15-SP3/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Web-Scripting15-SP3-Updates for x86_64 SMS 4.2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-web-scripting15-sp3-debuginfo-updates-x86_64-sms-4.2", + "parent_channel_label": "sle-product-suse-manager-server-4.2-pool-x86_64", + "product_id": 2165, + "repository_id": 4735, + "parent_product_id": 2153, + "root_product_id": 2222, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/15-SP3/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Web-Scripting15-SP3-Debuginfo-Updates for x86_64 SMS 4.2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-web-scripting15-sp3-pool-x86_64-sms-4.2", + "parent_channel_label": "sle-product-suse-manager-server-4.2-pool-x86_64", + "product_id": 2165, + "repository_id": 4736, + "parent_product_id": 2153, + "root_product_id": 2222, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP3/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Web-Scripting15-SP3-Pool for x86_64 SMS 4.2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-web-scripting15-sp3-debuginfo-pool-x86_64-sms-4.2", + "parent_channel_label": "sle-product-suse-manager-server-4.2-pool-x86_64", + "product_id": 2165, + "repository_id": 4737, + "parent_product_id": 2153, + "root_product_id": 2222, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP3/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Web-Scripting15-SP3-Debuginfo-Pool for x86_64 SMS 4.2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-suse-manager-server-4.2-updates-x86_64", + "parent_channel_label": "sle-product-suse-manager-server-4.2-pool-x86_64", + "product_id": 2228, + "repository_id": 5019, + "parent_product_id": 2165, + "root_product_id": 2222, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-SUSE-Manager-Server/4.2/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-SUSE-Manager-Server-4.2-Updates for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-suse-manager-server-4.2-debuginfo-updates-x86_64", + "parent_channel_label": "sle-product-suse-manager-server-4.2-pool-x86_64", + "product_id": 2228, + "repository_id": 5020, + "parent_product_id": 2165, + "root_product_id": 2222, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-SUSE-Manager-Server/4.2/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-SUSE-Manager-Server-4.2-Debuginfo-Updates for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-suse-manager-server-4.2-pool-x86_64", + "parent_channel_label": "sle-product-suse-manager-server-4.2-pool-x86_64", + "product_id": 2228, + "repository_id": 5021, + "parent_product_id": 2165, + "root_product_id": 2222, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-SUSE-Manager-Server/4.2/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-SUSE-Manager-Server-4.2-Pool for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-suse-manager-server-4.2-debuginfo-pool-x86_64", + "parent_channel_label": "sle-product-suse-manager-server-4.2-pool-x86_64", + "product_id": 2228, + "repository_id": 5022, + "parent_product_id": 2165, + "root_product_id": 2222, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-SUSE-Manager-Server/4.2/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-SUSE-Manager-Server-4.2-Debuginfo-Pool for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-legacy15-sp3-updates-x86_64-sms-4.2", + "parent_channel_label": "sle-product-suse-manager-server-4.2-pool-x86_64", + "product_id": 2171, + "repository_id": 4764, + "parent_product_id": 2153, + "root_product_id": 2222, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/15-SP3/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy15-SP3-Updates for x86_64 SMS 4.2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-legacy15-sp3-debuginfo-updates-x86_64-sms-4.2", + "parent_channel_label": "sle-product-suse-manager-server-4.2-pool-x86_64", + "product_id": 2171, + "repository_id": 4765, + "parent_product_id": 2153, + "root_product_id": 2222, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/15-SP3/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy15-SP3-Debuginfo-Updates for x86_64 SMS 4.2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-legacy15-sp3-pool-x86_64-sms-4.2", + "parent_channel_label": "sle-product-suse-manager-server-4.2-pool-x86_64", + "product_id": 2171, + "repository_id": 4766, + "parent_product_id": 2153, + "root_product_id": 2222, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15-SP3/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy15-SP3-Pool for x86_64 SMS 4.2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-legacy15-sp3-debuginfo-pool-x86_64-sms-4.2", + "parent_channel_label": "sle-product-suse-manager-server-4.2-pool-x86_64", + "product_id": 2171, + "repository_id": 4767, + "parent_product_id": 2153, + "root_product_id": 2222, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15-SP3/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy15-SP3-Debuginfo-Pool for x86_64 SMS 4.2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-public-cloud15-sp3-updates-x86_64-sms-4.2", + "parent_channel_label": "sle-product-suse-manager-server-4.2-pool-x86_64", + "product_id": 2175, + "repository_id": 4784, + "parent_product_id": 2153, + "root_product_id": 2222, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/15-SP3/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud15-SP3-Updates for x86_64 SMS 4.2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-public-cloud15-sp3-debuginfo-updates-x86_64-sms-4.2", + "parent_channel_label": "sle-product-suse-manager-server-4.2-pool-x86_64", + "product_id": 2175, + "repository_id": 4785, + "parent_product_id": 2153, + "root_product_id": 2222, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/15-SP3/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud15-SP3-Debuginfo-Updates for x86_64 SMS 4.2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-public-cloud15-sp3-pool-x86_64-sms-4.2", + "parent_channel_label": "sle-product-suse-manager-server-4.2-pool-x86_64", + "product_id": 2175, + "repository_id": 4786, + "parent_product_id": 2153, + "root_product_id": 2222, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP3/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud15-SP3-Pool for x86_64 SMS 4.2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-public-cloud15-sp3-debuginfo-pool-x86_64-sms-4.2", + "parent_channel_label": "sle-product-suse-manager-server-4.2-pool-x86_64", + "product_id": 2175, + "repository_id": 4787, + "parent_product_id": 2153, + "root_product_id": 2222, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP3/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud15-SP3-Debuginfo-Pool for x86_64 SMS 4.2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-product-ha15-sp3-updates-x86_64-sms-4.2", + "parent_channel_label": "sle-product-suse-manager-server-4.2-pool-x86_64", + "product_id": 2195, + "repository_id": 4896, + "parent_product_id": 2153, + "root_product_id": 2222, + "update_tag": "SLE-Product-HA", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-HA/15-SP3/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HA15-SP3-Updates for x86_64 SMS 4.2", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-product-ha15-sp3-debuginfo-updates-x86_64-sms-4.2", + "parent_channel_label": "sle-product-suse-manager-server-4.2-pool-x86_64", + "product_id": 2195, + "repository_id": 4897, + "parent_product_id": 2153, + "root_product_id": 2222, + "update_tag": "SLE-Product-HA", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-HA/15-SP3/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HA15-SP3-Debuginfo-Updates for x86_64 SMS 4.2", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-product-ha15-sp3-pool-x86_64-sms-4.2", + "parent_channel_label": "sle-product-suse-manager-server-4.2-pool-x86_64", + "product_id": 2195, + "repository_id": 4898, + "parent_product_id": 2153, + "root_product_id": 2222, + "update_tag": "SLE-Product-HA", + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP3/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HA15-SP3-Pool for x86_64 SMS 4.2", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-product-ha15-sp3-debuginfo-pool-x86_64-sms-4.2", + "parent_channel_label": "sle-product-suse-manager-server-4.2-pool-x86_64", + "product_id": 2195, + "repository_id": 4899, + "parent_product_id": 2153, + "root_product_id": 2222, + "update_tag": "SLE-Product-HA", + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP3/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HA15-SP3-Debuginfo-Pool for x86_64 SMS 4.2", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-containers15-sp3-updates-x86_64-sms-4.2", + "parent_channel_label": "sle-product-suse-manager-server-4.2-pool-x86_64", + "product_id": 2157, + "repository_id": 4694, + "parent_product_id": 2145, + "root_product_id": 2222, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/15-SP3/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers15-SP3-Updates for x86_64 SMS 4.2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-containers15-sp3-debuginfo-updates-x86_64-sms-4.2", + "parent_channel_label": "sle-product-suse-manager-server-4.2-pool-x86_64", + "product_id": 2157, + "repository_id": 4695, + "parent_product_id": 2145, + "root_product_id": 2222, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/15-SP3/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers15-SP3-Debuginfo-Updates for x86_64 SMS 4.2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-containers15-sp3-pool-x86_64-sms-4.2", + "parent_channel_label": "sle-product-suse-manager-server-4.2-pool-x86_64", + "product_id": 2157, + "repository_id": 4696, + "parent_product_id": 2145, + "root_product_id": 2222, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP3/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers15-SP3-Pool for x86_64 SMS 4.2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-containers15-sp3-debuginfo-pool-x86_64-sms-4.2", + "parent_channel_label": "sle-product-suse-manager-server-4.2-pool-x86_64", + "product_id": 2157, + "repository_id": 4697, + "parent_product_id": 2145, + "root_product_id": 2222, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP3/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers15-SP3-Debuginfo-Pool for x86_64 SMS 4.2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-python2-15-sp3-updates-x86_64-sms-4.2", + "parent_channel_label": "sle-product-suse-manager-server-4.2-pool-x86_64", + "product_id": 2184, + "repository_id": 4829, + "parent_product_id": 2145, + "root_product_id": 2222, + "update_tag": "SLE-Module-Python2", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Python2/15-SP3/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Python2-15-SP3-Updates for x86_64 SMS 4.2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-python2-15-sp3-debuginfo-updates-x86_64-sms-4.2", + "parent_channel_label": "sle-product-suse-manager-server-4.2-pool-x86_64", + "product_id": 2184, + "repository_id": 4830, + "parent_product_id": 2145, + "root_product_id": 2222, + "update_tag": "SLE-Module-Python2", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Python2/15-SP3/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Python2-15-SP3-Debuginfo-Updates for x86_64 SMS 4.2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-python2-15-sp3-pool-x86_64-sms-4.2", + "parent_channel_label": "sle-product-suse-manager-server-4.2-pool-x86_64", + "product_id": 2184, + "repository_id": 4831, + "parent_product_id": 2145, + "root_product_id": 2222, + "update_tag": "SLE-Module-Python2", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Python2/15-SP3/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Python2-15-SP3-Pool for x86_64 SMS 4.2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-python2-15-sp3-debuginfo-pool-x86_64-sms-4.2", + "parent_channel_label": "sle-product-suse-manager-server-4.2-pool-x86_64", + "product_id": 2184, + "repository_id": 4832, + "parent_product_id": 2145, + "root_product_id": 2222, + "update_tag": "SLE-Module-Python2", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Python2/15-SP3/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Python2-15-SP3-Debuginfo-Pool for x86_64 SMS 4.2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "suse-packagehub-15-sp3-backports-pool-x86_64-sms-4.2", + "parent_channel_label": "sle-product-suse-manager-server-4.2-pool-x86_64", + "product_id": 2191, + "repository_id": 4873, + "parent_product_id": 2145, + "root_product_id": 2222, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-15-SP3_x86_64/standard/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-15-SP3-Backports-Pool for x86_64 SMS 4.2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "suse-packagehub-15-sp3-backports-debuginfo-x86_64-sms-4.2", + "parent_channel_label": "sle-product-suse-manager-server-4.2-pool-x86_64", + "product_id": 2191, + "repository_id": 4874, + "parent_product_id": 2145, + "root_product_id": 2222, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-15-SP3_x86_64/standard_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-15-SP3-Backports-Debuginfo for x86_64 SMS 4.2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-packagehub-subpackages15-sp3-updates-x86_64-sms-4.2", + "parent_channel_label": "sle-product-suse-manager-server-4.2-pool-x86_64", + "product_id": 2191, + "repository_id": 4875, + "parent_product_id": 2145, + "root_product_id": 2222, + "update_tag": "SLE-Module-Packagehub-Subpackages", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP3/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Packagehub-Subpackages15-SP3-Updates for x86_64 SMS 4.2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-packagehub-subpackages15-sp3-debuginfo-updates-x86_64-sms-4.2", + "parent_channel_label": "sle-product-suse-manager-server-4.2-pool-x86_64", + "product_id": 2191, + "repository_id": 4876, + "parent_product_id": 2145, + "root_product_id": 2222, + "update_tag": "SLE-Module-Packagehub-Subpackages", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP3/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Packagehub-Subpackages15-SP3-Debuginfo-Updates for x86_64 SMS 4.2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "suse-packagehub-15-sp3-pool-x86_64-sms-4.2", + "parent_channel_label": "sle-product-suse-manager-server-4.2-pool-x86_64", + "product_id": 2191, + "repository_id": 4877, + "parent_product_id": 2145, + "root_product_id": 2222, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-15-SP3_x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-15-SP3-Pool for x86_64 SMS 4.2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-packagehub-subpackages15-sp3-pool-x86_64-sms-4.2", + "parent_channel_label": "sle-product-suse-manager-server-4.2-pool-x86_64", + "product_id": 2191, + "repository_id": 4878, + "parent_product_id": 2145, + "root_product_id": 2222, + "update_tag": "SLE-Module-Packagehub-Subpackages", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP3/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Packagehub-Subpackages15-SP3-Pool for x86_64 SMS 4.2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-packagehub-subpackages15-sp3-debuginfo-pool-x86_64-sms-4.2", + "parent_channel_label": "sle-product-suse-manager-server-4.2-pool-x86_64", + "product_id": 2191, + "repository_id": 4879, + "parent_product_id": 2145, + "root_product_id": 2222, + "update_tag": "SLE-Module-Packagehub-Subpackages", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP3/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Packagehub-Subpackages15-SP3-Debuginfo-Pool for x86_64 SMS 4.2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-product-suse-manager-proxy-4.2-updates-x86_64", + "parent_channel_label": "sle-product-suse-manager-proxy-4.2-pool-x86_64", + "product_id": 2223, + "repository_id": 4994, + "parent_product_id": null, + "root_product_id": 2223, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-SUSE-Manager-Proxy/4.2/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-SUSE-Manager-Proxy-4.2-Updates for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-product-suse-manager-proxy-4.2-debuginfo-updates-x86_64", + "parent_channel_label": "sle-product-suse-manager-proxy-4.2-pool-x86_64", + "product_id": 2223, + "repository_id": 4995, + "parent_product_id": null, + "root_product_id": 2223, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-SUSE-Manager-Proxy/4.2/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-SUSE-Manager-Proxy-4.2-Debuginfo-Updates for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-product-suse-manager-proxy-4.2-pool-x86_64", + "parent_channel_label": null, + "product_id": 2223, + "repository_id": 4996, + "parent_product_id": null, + "root_product_id": 2223, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-SUSE-Manager-Proxy/4.2/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-SUSE-Manager-Proxy-4.2-Pool for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-product-suse-manager-proxy-4.2-debuginfo-pool-x86_64", + "parent_channel_label": "sle-product-suse-manager-proxy-4.2-pool-x86_64", + "product_id": 2223, + "repository_id": 4997, + "parent_product_id": null, + "root_product_id": 2223, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-SUSE-Manager-Proxy/4.2/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-SUSE-Manager-Proxy-4.2-Debuginfo-Pool for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-basesystem15-sp3-updates-x86_64-proxy-4.2", + "parent_channel_label": "sle-product-suse-manager-proxy-4.2-pool-x86_64", + "product_id": 2145, + "repository_id": 4634, + "parent_product_id": 2223, + "root_product_id": 2223, + "update_tag": "SLE-Module-Basesystem", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15-SP3/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Basesystem15-SP3-Updates for x86_64 Proxy 4.2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-basesystem15-sp3-debuginfo-updates-x86_64-proxy-4.2", + "parent_channel_label": "sle-product-suse-manager-proxy-4.2-pool-x86_64", + "product_id": 2145, + "repository_id": 4635, + "parent_product_id": 2223, + "root_product_id": 2223, + "update_tag": "SLE-Module-Basesystem", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15-SP3/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Basesystem15-SP3-Debuginfo-Updates for x86_64 Proxy 4.2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-basesystem15-sp3-pool-x86_64-proxy-4.2", + "parent_channel_label": "sle-product-suse-manager-proxy-4.2-pool-x86_64", + "product_id": 2145, + "repository_id": 4636, + "parent_product_id": 2223, + "root_product_id": 2223, + "update_tag": "SLE-Module-Basesystem", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP3/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Basesystem15-SP3-Pool for x86_64 Proxy 4.2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-basesystem15-sp3-debuginfo-pool-x86_64-proxy-4.2", + "parent_channel_label": "sle-product-suse-manager-proxy-4.2-pool-x86_64", + "product_id": 2145, + "repository_id": 4637, + "parent_product_id": 2223, + "root_product_id": 2223, + "update_tag": "SLE-Module-Basesystem", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP3/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Basesystem15-SP3-Debuginfo-Pool for x86_64 Proxy 4.2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-desktop-applications15-sp3-updates-x86_64-proxy-4.2", + "parent_channel_label": "sle-product-suse-manager-proxy-4.2-pool-x86_64", + "product_id": 2149, + "repository_id": 4654, + "parent_product_id": 2145, + "root_product_id": 2223, + "update_tag": "SLE-Module-Desktop-Applications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15-SP3/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Desktop-Applications15-SP3-Updates for x86_64 Proxy 4.2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-desktop-applications15-sp3-debuginfo-updates-x86_64-proxy-4.2", + "parent_channel_label": "sle-product-suse-manager-proxy-4.2-pool-x86_64", + "product_id": 2149, + "repository_id": 4655, + "parent_product_id": 2145, + "root_product_id": 2223, + "update_tag": "SLE-Module-Desktop-Applications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15-SP3/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Desktop-Applications15-SP3-Debuginfo-Updates for x86_64 Proxy 4.2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-desktop-applications15-sp3-pool-x86_64-proxy-4.2", + "parent_channel_label": "sle-product-suse-manager-proxy-4.2-pool-x86_64", + "product_id": 2149, + "repository_id": 4656, + "parent_product_id": 2145, + "root_product_id": 2223, + "update_tag": "SLE-Module-Desktop-Applications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP3/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Desktop-Applications15-SP3-Pool for x86_64 Proxy 4.2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-desktop-applications15-sp3-debuginfo-pool-x86_64-proxy-4.2", + "parent_channel_label": "sle-product-suse-manager-proxy-4.2-pool-x86_64", + "product_id": 2149, + "repository_id": 4657, + "parent_product_id": 2145, + "root_product_id": 2223, + "update_tag": "SLE-Module-Desktop-Applications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP3/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Desktop-Applications15-SP3-Debuginfo-Pool for x86_64 Proxy 4.2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-devtools15-sp3-updates-x86_64-proxy-4.2", + "parent_channel_label": "sle-product-suse-manager-proxy-4.2-pool-x86_64", + "product_id": 2161, + "repository_id": 4714, + "parent_product_id": 2149, + "root_product_id": 2223, + "update_tag": "SLE-Module-Development-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15-SP3/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-DevTools15-SP3-Updates for x86_64 Proxy 4.2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-devtools15-sp3-debuginfo-updates-x86_64-proxy-4.2", + "parent_channel_label": "sle-product-suse-manager-proxy-4.2-pool-x86_64", + "product_id": 2161, + "repository_id": 4715, + "parent_product_id": 2149, + "root_product_id": 2223, + "update_tag": "SLE-Module-Development-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15-SP3/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-DevTools15-SP3-Debuginfo-Updates for x86_64 Proxy 4.2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-devtools15-sp3-pool-x86_64-proxy-4.2", + "parent_channel_label": "sle-product-suse-manager-proxy-4.2-pool-x86_64", + "product_id": 2161, + "repository_id": 4716, + "parent_product_id": 2149, + "root_product_id": 2223, + "update_tag": "SLE-Module-Development-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP3/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-DevTools15-SP3-Pool for x86_64 Proxy 4.2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-devtools15-sp3-debuginfo-pool-x86_64-proxy-4.2", + "parent_channel_label": "sle-product-suse-manager-proxy-4.2-pool-x86_64", + "product_id": 2161, + "repository_id": 4717, + "parent_product_id": 2149, + "root_product_id": 2223, + "update_tag": "SLE-Module-Development-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP3/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-DevTools15-SP3-Debuginfo-Pool for x86_64 Proxy 4.2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-server-applications15-sp3-updates-x86_64-proxy-4.2", + "parent_channel_label": "sle-product-suse-manager-proxy-4.2-pool-x86_64", + "product_id": 2153, + "repository_id": 4674, + "parent_product_id": 2145, + "root_product_id": 2223, + "update_tag": "SLE-Module-Server-Applications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15-SP3/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Server-Applications15-SP3-Updates for x86_64 Proxy 4.2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-server-applications15-sp3-debuginfo-updates-x86_64-proxy-4.2", + "parent_channel_label": "sle-product-suse-manager-proxy-4.2-pool-x86_64", + "product_id": 2153, + "repository_id": 4675, + "parent_product_id": 2145, + "root_product_id": 2223, + "update_tag": "SLE-Module-Server-Applications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15-SP3/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Server-Applications15-SP3-Debuginfo-Updates for x86_64 Proxy 4.2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-server-applications15-sp3-pool-x86_64-proxy-4.2", + "parent_channel_label": "sle-product-suse-manager-proxy-4.2-pool-x86_64", + "product_id": 2153, + "repository_id": 4676, + "parent_product_id": 2145, + "root_product_id": 2223, + "update_tag": "SLE-Module-Server-Applications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP3/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Server-Applications15-SP3-Pool for x86_64 Proxy 4.2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-server-applications15-sp3-debuginfo-pool-x86_64-proxy-4.2", + "parent_channel_label": "sle-product-suse-manager-proxy-4.2-pool-x86_64", + "product_id": 2153, + "repository_id": 4677, + "parent_product_id": 2145, + "root_product_id": 2223, + "update_tag": "SLE-Module-Server-Applications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP3/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Server-Applications15-SP3-Debuginfo-Pool for x86_64 Proxy 4.2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-web-scripting15-sp3-updates-x86_64-proxy-4.2", + "parent_channel_label": "sle-product-suse-manager-proxy-4.2-pool-x86_64", + "product_id": 2165, + "repository_id": 4734, + "parent_product_id": 2153, + "root_product_id": 2223, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/15-SP3/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Web-Scripting15-SP3-Updates for x86_64 Proxy 4.2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-web-scripting15-sp3-debuginfo-updates-x86_64-proxy-4.2", + "parent_channel_label": "sle-product-suse-manager-proxy-4.2-pool-x86_64", + "product_id": 2165, + "repository_id": 4735, + "parent_product_id": 2153, + "root_product_id": 2223, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/15-SP3/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Web-Scripting15-SP3-Debuginfo-Updates for x86_64 Proxy 4.2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-web-scripting15-sp3-pool-x86_64-proxy-4.2", + "parent_channel_label": "sle-product-suse-manager-proxy-4.2-pool-x86_64", + "product_id": 2165, + "repository_id": 4736, + "parent_product_id": 2153, + "root_product_id": 2223, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP3/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Web-Scripting15-SP3-Pool for x86_64 Proxy 4.2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-web-scripting15-sp3-debuginfo-pool-x86_64-proxy-4.2", + "parent_channel_label": "sle-product-suse-manager-proxy-4.2-pool-x86_64", + "product_id": 2165, + "repository_id": 4737, + "parent_product_id": 2153, + "root_product_id": 2223, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP3/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Web-Scripting15-SP3-Debuginfo-Pool for x86_64 Proxy 4.2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-legacy15-sp3-updates-x86_64-proxy-4.2", + "parent_channel_label": "sle-product-suse-manager-proxy-4.2-pool-x86_64", + "product_id": 2171, + "repository_id": 4764, + "parent_product_id": 2153, + "root_product_id": 2223, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/15-SP3/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy15-SP3-Updates for x86_64 Proxy 4.2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-legacy15-sp3-debuginfo-updates-x86_64-proxy-4.2", + "parent_channel_label": "sle-product-suse-manager-proxy-4.2-pool-x86_64", + "product_id": 2171, + "repository_id": 4765, + "parent_product_id": 2153, + "root_product_id": 2223, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/15-SP3/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy15-SP3-Debuginfo-Updates for x86_64 Proxy 4.2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-legacy15-sp3-pool-x86_64-proxy-4.2", + "parent_channel_label": "sle-product-suse-manager-proxy-4.2-pool-x86_64", + "product_id": 2171, + "repository_id": 4766, + "parent_product_id": 2153, + "root_product_id": 2223, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15-SP3/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy15-SP3-Pool for x86_64 Proxy 4.2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-legacy15-sp3-debuginfo-pool-x86_64-proxy-4.2", + "parent_channel_label": "sle-product-suse-manager-proxy-4.2-pool-x86_64", + "product_id": 2171, + "repository_id": 4767, + "parent_product_id": 2153, + "root_product_id": 2223, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15-SP3/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy15-SP3-Debuginfo-Pool for x86_64 Proxy 4.2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-public-cloud15-sp3-updates-x86_64-proxy-4.2", + "parent_channel_label": "sle-product-suse-manager-proxy-4.2-pool-x86_64", + "product_id": 2175, + "repository_id": 4784, + "parent_product_id": 2153, + "root_product_id": 2223, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/15-SP3/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud15-SP3-Updates for x86_64 Proxy 4.2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-public-cloud15-sp3-debuginfo-updates-x86_64-proxy-4.2", + "parent_channel_label": "sle-product-suse-manager-proxy-4.2-pool-x86_64", + "product_id": 2175, + "repository_id": 4785, + "parent_product_id": 2153, + "root_product_id": 2223, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/15-SP3/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud15-SP3-Debuginfo-Updates for x86_64 Proxy 4.2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-public-cloud15-sp3-pool-x86_64-proxy-4.2", + "parent_channel_label": "sle-product-suse-manager-proxy-4.2-pool-x86_64", + "product_id": 2175, + "repository_id": 4786, + "parent_product_id": 2153, + "root_product_id": 2223, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP3/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud15-SP3-Pool for x86_64 Proxy 4.2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-public-cloud15-sp3-debuginfo-pool-x86_64-proxy-4.2", + "parent_channel_label": "sle-product-suse-manager-proxy-4.2-pool-x86_64", + "product_id": 2175, + "repository_id": 4787, + "parent_product_id": 2153, + "root_product_id": 2223, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP3/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud15-SP3-Debuginfo-Pool for x86_64 Proxy 4.2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-product-ha15-sp3-updates-x86_64-proxy-4.2", + "parent_channel_label": "sle-product-suse-manager-proxy-4.2-pool-x86_64", + "product_id": 2195, + "repository_id": 4896, + "parent_product_id": 2153, + "root_product_id": 2223, + "update_tag": "SLE-Product-HA", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-HA/15-SP3/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HA15-SP3-Updates for x86_64 Proxy 4.2", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-product-ha15-sp3-debuginfo-updates-x86_64-proxy-4.2", + "parent_channel_label": "sle-product-suse-manager-proxy-4.2-pool-x86_64", + "product_id": 2195, + "repository_id": 4897, + "parent_product_id": 2153, + "root_product_id": 2223, + "update_tag": "SLE-Product-HA", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-HA/15-SP3/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HA15-SP3-Debuginfo-Updates for x86_64 Proxy 4.2", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-product-ha15-sp3-pool-x86_64-proxy-4.2", + "parent_channel_label": "sle-product-suse-manager-proxy-4.2-pool-x86_64", + "product_id": 2195, + "repository_id": 4898, + "parent_product_id": 2153, + "root_product_id": 2223, + "update_tag": "SLE-Product-HA", + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP3/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HA15-SP3-Pool for x86_64 Proxy 4.2", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-product-ha15-sp3-debuginfo-pool-x86_64-proxy-4.2", + "parent_channel_label": "sle-product-suse-manager-proxy-4.2-pool-x86_64", + "product_id": 2195, + "repository_id": 4899, + "parent_product_id": 2153, + "root_product_id": 2223, + "update_tag": "SLE-Product-HA", + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP3/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HA15-SP3-Debuginfo-Pool for x86_64 Proxy 4.2", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-suse-manager-proxy-4.2-updates-x86_64", + "parent_channel_label": "sle-product-suse-manager-proxy-4.2-pool-x86_64", + "product_id": 2225, + "repository_id": 5004, + "parent_product_id": 2153, + "root_product_id": 2223, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-SUSE-Manager-Proxy/4.2/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-SUSE-Manager-Proxy-4.2-Updates for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-suse-manager-proxy-4.2-debuginfo-updates-x86_64", + "parent_channel_label": "sle-product-suse-manager-proxy-4.2-pool-x86_64", + "product_id": 2225, + "repository_id": 5005, + "parent_product_id": 2153, + "root_product_id": 2223, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-SUSE-Manager-Proxy/4.2/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-SUSE-Manager-Proxy-4.2-Debuginfo-Updates for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-suse-manager-proxy-4.2-pool-x86_64", + "parent_channel_label": "sle-product-suse-manager-proxy-4.2-pool-x86_64", + "product_id": 2225, + "repository_id": 5006, + "parent_product_id": 2153, + "root_product_id": 2223, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-SUSE-Manager-Proxy/4.2/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-SUSE-Manager-Proxy-4.2-Pool for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-suse-manager-proxy-4.2-debuginfo-pool-x86_64", + "parent_channel_label": "sle-product-suse-manager-proxy-4.2-pool-x86_64", + "product_id": 2225, + "repository_id": 5007, + "parent_product_id": 2153, + "root_product_id": 2223, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-SUSE-Manager-Proxy/4.2/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-SUSE-Manager-Proxy-4.2-Debuginfo-Pool for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-containers15-sp3-updates-x86_64-proxy-4.2", + "parent_channel_label": "sle-product-suse-manager-proxy-4.2-pool-x86_64", + "product_id": 2157, + "repository_id": 4694, + "parent_product_id": 2145, + "root_product_id": 2223, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/15-SP3/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers15-SP3-Updates for x86_64 Proxy 4.2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-containers15-sp3-debuginfo-updates-x86_64-proxy-4.2", + "parent_channel_label": "sle-product-suse-manager-proxy-4.2-pool-x86_64", + "product_id": 2157, + "repository_id": 4695, + "parent_product_id": 2145, + "root_product_id": 2223, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/15-SP3/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers15-SP3-Debuginfo-Updates for x86_64 Proxy 4.2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-containers15-sp3-pool-x86_64-proxy-4.2", + "parent_channel_label": "sle-product-suse-manager-proxy-4.2-pool-x86_64", + "product_id": 2157, + "repository_id": 4696, + "parent_product_id": 2145, + "root_product_id": 2223, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP3/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers15-SP3-Pool for x86_64 Proxy 4.2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-containers15-sp3-debuginfo-pool-x86_64-proxy-4.2", + "parent_channel_label": "sle-product-suse-manager-proxy-4.2-pool-x86_64", + "product_id": 2157, + "repository_id": 4697, + "parent_product_id": 2145, + "root_product_id": 2223, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP3/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers15-SP3-Debuginfo-Pool for x86_64 Proxy 4.2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-python2-15-sp3-updates-x86_64-proxy-4.2", + "parent_channel_label": "sle-product-suse-manager-proxy-4.2-pool-x86_64", + "product_id": 2184, + "repository_id": 4829, + "parent_product_id": 2145, + "root_product_id": 2223, + "update_tag": "SLE-Module-Python2", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Python2/15-SP3/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Python2-15-SP3-Updates for x86_64 Proxy 4.2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-python2-15-sp3-debuginfo-updates-x86_64-proxy-4.2", + "parent_channel_label": "sle-product-suse-manager-proxy-4.2-pool-x86_64", + "product_id": 2184, + "repository_id": 4830, + "parent_product_id": 2145, + "root_product_id": 2223, + "update_tag": "SLE-Module-Python2", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Python2/15-SP3/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Python2-15-SP3-Debuginfo-Updates for x86_64 Proxy 4.2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-python2-15-sp3-pool-x86_64-proxy-4.2", + "parent_channel_label": "sle-product-suse-manager-proxy-4.2-pool-x86_64", + "product_id": 2184, + "repository_id": 4831, + "parent_product_id": 2145, + "root_product_id": 2223, + "update_tag": "SLE-Module-Python2", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Python2/15-SP3/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Python2-15-SP3-Pool for x86_64 Proxy 4.2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-python2-15-sp3-debuginfo-pool-x86_64-proxy-4.2", + "parent_channel_label": "sle-product-suse-manager-proxy-4.2-pool-x86_64", + "product_id": 2184, + "repository_id": 4832, + "parent_product_id": 2145, + "root_product_id": 2223, + "update_tag": "SLE-Module-Python2", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Python2/15-SP3/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Python2-15-SP3-Debuginfo-Pool for x86_64 Proxy 4.2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "suse-packagehub-15-sp3-backports-pool-x86_64-proxy-4.2", + "parent_channel_label": "sle-product-suse-manager-proxy-4.2-pool-x86_64", + "product_id": 2191, + "repository_id": 4873, + "parent_product_id": 2145, + "root_product_id": 2223, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-15-SP3_x86_64/standard/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-15-SP3-Backports-Pool for x86_64 Proxy 4.2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "suse-packagehub-15-sp3-backports-debuginfo-x86_64-proxy-4.2", + "parent_channel_label": "sle-product-suse-manager-proxy-4.2-pool-x86_64", + "product_id": 2191, + "repository_id": 4874, + "parent_product_id": 2145, + "root_product_id": 2223, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-15-SP3_x86_64/standard_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-15-SP3-Backports-Debuginfo for x86_64 Proxy 4.2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-packagehub-subpackages15-sp3-updates-x86_64-proxy-4.2", + "parent_channel_label": "sle-product-suse-manager-proxy-4.2-pool-x86_64", + "product_id": 2191, + "repository_id": 4875, + "parent_product_id": 2145, + "root_product_id": 2223, + "update_tag": "SLE-Module-Packagehub-Subpackages", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP3/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Packagehub-Subpackages15-SP3-Updates for x86_64 Proxy 4.2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-packagehub-subpackages15-sp3-debuginfo-updates-x86_64-proxy-4.2", + "parent_channel_label": "sle-product-suse-manager-proxy-4.2-pool-x86_64", + "product_id": 2191, + "repository_id": 4876, + "parent_product_id": 2145, + "root_product_id": 2223, + "update_tag": "SLE-Module-Packagehub-Subpackages", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP3/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Packagehub-Subpackages15-SP3-Debuginfo-Updates for x86_64 Proxy 4.2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "suse-packagehub-15-sp3-pool-x86_64-proxy-4.2", + "parent_channel_label": "sle-product-suse-manager-proxy-4.2-pool-x86_64", + "product_id": 2191, + "repository_id": 4877, + "parent_product_id": 2145, + "root_product_id": 2223, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-15-SP3_x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-15-SP3-Pool for x86_64 Proxy 4.2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-packagehub-subpackages15-sp3-pool-x86_64-proxy-4.2", + "parent_channel_label": "sle-product-suse-manager-proxy-4.2-pool-x86_64", + "product_id": 2191, + "repository_id": 4878, + "parent_product_id": 2145, + "root_product_id": 2223, + "update_tag": "SLE-Module-Packagehub-Subpackages", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP3/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Packagehub-Subpackages15-SP3-Pool for x86_64 Proxy 4.2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-packagehub-subpackages15-sp3-debuginfo-pool-x86_64-proxy-4.2", + "parent_channel_label": "sle-product-suse-manager-proxy-4.2-pool-x86_64", + "product_id": 2191, + "repository_id": 4879, + "parent_product_id": 2145, + "root_product_id": 2223, + "update_tag": "SLE-Module-Packagehub-Subpackages", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP3/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Packagehub-Subpackages15-SP3-Debuginfo-Pool for x86_64 Proxy 4.2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-product-suse-manager-retail-branch-server-4.2-updates-x86_64", + "parent_channel_label": "sle-product-suse-manager-retail-branch-server-4.2-pool-x86_64", + "product_id": 2224, + "repository_id": 4999, + "parent_product_id": null, + "root_product_id": 2224, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-SUSE-Manager-Retail-Branch-Server/4.2/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-SUSE-Manager-Retail-Branch-Server-4.2-Updates for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-product-suse-manager-retail-branch-server-4.2-debuginfo-updates-x86_64", + "parent_channel_label": "sle-product-suse-manager-retail-branch-server-4.2-pool-x86_64", + "product_id": 2224, + "repository_id": 5000, + "parent_product_id": null, + "root_product_id": 2224, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-SUSE-Manager-Retail-Branch-Server/4.2/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-SUSE-Manager-Retail-Branch-Server-4.2-Debuginfo-Updates for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-product-suse-manager-retail-branch-server-4.2-pool-x86_64", + "parent_channel_label": null, + "product_id": 2224, + "repository_id": 5001, + "parent_product_id": null, + "root_product_id": 2224, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-SUSE-Manager-Retail-Branch-Server/4.2/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-SUSE-Manager-Retail-Branch-Server-4.2-Pool for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-product-suse-manager-retail-branch-server-4.2-debuginfo-pool-x86_64", + "parent_channel_label": "sle-product-suse-manager-retail-branch-server-4.2-pool-x86_64", + "product_id": 2224, + "repository_id": 5002, + "parent_product_id": null, + "root_product_id": 2224, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-SUSE-Manager-Retail-Branch-Server/4.2/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-SUSE-Manager-Retail-Branch-Server-4.2-Debuginfo-Pool for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-basesystem15-sp3-updates-x86_64-smrbs-4.2", + "parent_channel_label": "sle-product-suse-manager-retail-branch-server-4.2-pool-x86_64", + "product_id": 2145, + "repository_id": 4634, + "parent_product_id": 2224, + "root_product_id": 2224, + "update_tag": "SLE-Module-Basesystem", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15-SP3/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Basesystem15-SP3-Updates for x86_64 SMRBS 4.2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-basesystem15-sp3-debuginfo-updates-x86_64-smrbs-4.2", + "parent_channel_label": "sle-product-suse-manager-retail-branch-server-4.2-pool-x86_64", + "product_id": 2145, + "repository_id": 4635, + "parent_product_id": 2224, + "root_product_id": 2224, + "update_tag": "SLE-Module-Basesystem", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15-SP3/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Basesystem15-SP3-Debuginfo-Updates for x86_64 SMRBS 4.2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-basesystem15-sp3-pool-x86_64-smrbs-4.2", + "parent_channel_label": "sle-product-suse-manager-retail-branch-server-4.2-pool-x86_64", + "product_id": 2145, + "repository_id": 4636, + "parent_product_id": 2224, + "root_product_id": 2224, + "update_tag": "SLE-Module-Basesystem", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP3/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Basesystem15-SP3-Pool for x86_64 SMRBS 4.2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-basesystem15-sp3-debuginfo-pool-x86_64-smrbs-4.2", + "parent_channel_label": "sle-product-suse-manager-retail-branch-server-4.2-pool-x86_64", + "product_id": 2145, + "repository_id": 4637, + "parent_product_id": 2224, + "root_product_id": 2224, + "update_tag": "SLE-Module-Basesystem", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP3/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Basesystem15-SP3-Debuginfo-Pool for x86_64 SMRBS 4.2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-desktop-applications15-sp3-updates-x86_64-smrbs-4.2", + "parent_channel_label": "sle-product-suse-manager-retail-branch-server-4.2-pool-x86_64", + "product_id": 2149, + "repository_id": 4654, + "parent_product_id": 2145, + "root_product_id": 2224, + "update_tag": "SLE-Module-Desktop-Applications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15-SP3/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Desktop-Applications15-SP3-Updates for x86_64 SMRBS 4.2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-desktop-applications15-sp3-debuginfo-updates-x86_64-smrbs-4.2", + "parent_channel_label": "sle-product-suse-manager-retail-branch-server-4.2-pool-x86_64", + "product_id": 2149, + "repository_id": 4655, + "parent_product_id": 2145, + "root_product_id": 2224, + "update_tag": "SLE-Module-Desktop-Applications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15-SP3/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Desktop-Applications15-SP3-Debuginfo-Updates for x86_64 SMRBS 4.2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-desktop-applications15-sp3-pool-x86_64-smrbs-4.2", + "parent_channel_label": "sle-product-suse-manager-retail-branch-server-4.2-pool-x86_64", + "product_id": 2149, + "repository_id": 4656, + "parent_product_id": 2145, + "root_product_id": 2224, + "update_tag": "SLE-Module-Desktop-Applications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP3/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Desktop-Applications15-SP3-Pool for x86_64 SMRBS 4.2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-desktop-applications15-sp3-debuginfo-pool-x86_64-smrbs-4.2", + "parent_channel_label": "sle-product-suse-manager-retail-branch-server-4.2-pool-x86_64", + "product_id": 2149, + "repository_id": 4657, + "parent_product_id": 2145, + "root_product_id": 2224, + "update_tag": "SLE-Module-Desktop-Applications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP3/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Desktop-Applications15-SP3-Debuginfo-Pool for x86_64 SMRBS 4.2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-devtools15-sp3-updates-x86_64-smrbs-4.2", + "parent_channel_label": "sle-product-suse-manager-retail-branch-server-4.2-pool-x86_64", + "product_id": 2161, + "repository_id": 4714, + "parent_product_id": 2149, + "root_product_id": 2224, + "update_tag": "SLE-Module-Development-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15-SP3/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-DevTools15-SP3-Updates for x86_64 SMRBS 4.2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-devtools15-sp3-debuginfo-updates-x86_64-smrbs-4.2", + "parent_channel_label": "sle-product-suse-manager-retail-branch-server-4.2-pool-x86_64", + "product_id": 2161, + "repository_id": 4715, + "parent_product_id": 2149, + "root_product_id": 2224, + "update_tag": "SLE-Module-Development-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15-SP3/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-DevTools15-SP3-Debuginfo-Updates for x86_64 SMRBS 4.2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-devtools15-sp3-pool-x86_64-smrbs-4.2", + "parent_channel_label": "sle-product-suse-manager-retail-branch-server-4.2-pool-x86_64", + "product_id": 2161, + "repository_id": 4716, + "parent_product_id": 2149, + "root_product_id": 2224, + "update_tag": "SLE-Module-Development-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP3/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-DevTools15-SP3-Pool for x86_64 SMRBS 4.2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-devtools15-sp3-debuginfo-pool-x86_64-smrbs-4.2", + "parent_channel_label": "sle-product-suse-manager-retail-branch-server-4.2-pool-x86_64", + "product_id": 2161, + "repository_id": 4717, + "parent_product_id": 2149, + "root_product_id": 2224, + "update_tag": "SLE-Module-Development-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP3/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-DevTools15-SP3-Debuginfo-Pool for x86_64 SMRBS 4.2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-server-applications15-sp3-updates-x86_64-smrbs-4.2", + "parent_channel_label": "sle-product-suse-manager-retail-branch-server-4.2-pool-x86_64", + "product_id": 2153, + "repository_id": 4674, + "parent_product_id": 2145, + "root_product_id": 2224, + "update_tag": "SLE-Module-Server-Applications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15-SP3/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Server-Applications15-SP3-Updates for x86_64 SMRBS 4.2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-server-applications15-sp3-debuginfo-updates-x86_64-smrbs-4.2", + "parent_channel_label": "sle-product-suse-manager-retail-branch-server-4.2-pool-x86_64", + "product_id": 2153, + "repository_id": 4675, + "parent_product_id": 2145, + "root_product_id": 2224, + "update_tag": "SLE-Module-Server-Applications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15-SP3/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Server-Applications15-SP3-Debuginfo-Updates for x86_64 SMRBS 4.2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-server-applications15-sp3-pool-x86_64-smrbs-4.2", + "parent_channel_label": "sle-product-suse-manager-retail-branch-server-4.2-pool-x86_64", + "product_id": 2153, + "repository_id": 4676, + "parent_product_id": 2145, + "root_product_id": 2224, + "update_tag": "SLE-Module-Server-Applications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP3/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Server-Applications15-SP3-Pool for x86_64 SMRBS 4.2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-server-applications15-sp3-debuginfo-pool-x86_64-smrbs-4.2", + "parent_channel_label": "sle-product-suse-manager-retail-branch-server-4.2-pool-x86_64", + "product_id": 2153, + "repository_id": 4677, + "parent_product_id": 2145, + "root_product_id": 2224, + "update_tag": "SLE-Module-Server-Applications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP3/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Server-Applications15-SP3-Debuginfo-Pool for x86_64 SMRBS 4.2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-web-scripting15-sp3-updates-x86_64-smrbs-4.2", + "parent_channel_label": "sle-product-suse-manager-retail-branch-server-4.2-pool-x86_64", + "product_id": 2165, + "repository_id": 4734, + "parent_product_id": 2153, + "root_product_id": 2224, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/15-SP3/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Web-Scripting15-SP3-Updates for x86_64 SMRBS 4.2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-web-scripting15-sp3-debuginfo-updates-x86_64-smrbs-4.2", + "parent_channel_label": "sle-product-suse-manager-retail-branch-server-4.2-pool-x86_64", + "product_id": 2165, + "repository_id": 4735, + "parent_product_id": 2153, + "root_product_id": 2224, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/15-SP3/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Web-Scripting15-SP3-Debuginfo-Updates for x86_64 SMRBS 4.2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-web-scripting15-sp3-pool-x86_64-smrbs-4.2", + "parent_channel_label": "sle-product-suse-manager-retail-branch-server-4.2-pool-x86_64", + "product_id": 2165, + "repository_id": 4736, + "parent_product_id": 2153, + "root_product_id": 2224, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP3/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Web-Scripting15-SP3-Pool for x86_64 SMRBS 4.2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-web-scripting15-sp3-debuginfo-pool-x86_64-smrbs-4.2", + "parent_channel_label": "sle-product-suse-manager-retail-branch-server-4.2-pool-x86_64", + "product_id": 2165, + "repository_id": 4737, + "parent_product_id": 2153, + "root_product_id": 2224, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP3/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Web-Scripting15-SP3-Debuginfo-Pool for x86_64 SMRBS 4.2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-legacy15-sp3-updates-x86_64-smrbs-4.2", + "parent_channel_label": "sle-product-suse-manager-retail-branch-server-4.2-pool-x86_64", + "product_id": 2171, + "repository_id": 4764, + "parent_product_id": 2153, + "root_product_id": 2224, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/15-SP3/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy15-SP3-Updates for x86_64 SMRBS 4.2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-legacy15-sp3-debuginfo-updates-x86_64-smrbs-4.2", + "parent_channel_label": "sle-product-suse-manager-retail-branch-server-4.2-pool-x86_64", + "product_id": 2171, + "repository_id": 4765, + "parent_product_id": 2153, + "root_product_id": 2224, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/15-SP3/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy15-SP3-Debuginfo-Updates for x86_64 SMRBS 4.2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-legacy15-sp3-pool-x86_64-smrbs-4.2", + "parent_channel_label": "sle-product-suse-manager-retail-branch-server-4.2-pool-x86_64", + "product_id": 2171, + "repository_id": 4766, + "parent_product_id": 2153, + "root_product_id": 2224, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15-SP3/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy15-SP3-Pool for x86_64 SMRBS 4.2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-legacy15-sp3-debuginfo-pool-x86_64-smrbs-4.2", + "parent_channel_label": "sle-product-suse-manager-retail-branch-server-4.2-pool-x86_64", + "product_id": 2171, + "repository_id": 4767, + "parent_product_id": 2153, + "root_product_id": 2224, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15-SP3/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy15-SP3-Debuginfo-Pool for x86_64 SMRBS 4.2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-public-cloud15-sp3-updates-x86_64-smrbs-4.2", + "parent_channel_label": "sle-product-suse-manager-retail-branch-server-4.2-pool-x86_64", + "product_id": 2175, + "repository_id": 4784, + "parent_product_id": 2153, + "root_product_id": 2224, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/15-SP3/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud15-SP3-Updates for x86_64 SMRBS 4.2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-public-cloud15-sp3-debuginfo-updates-x86_64-smrbs-4.2", + "parent_channel_label": "sle-product-suse-manager-retail-branch-server-4.2-pool-x86_64", + "product_id": 2175, + "repository_id": 4785, + "parent_product_id": 2153, + "root_product_id": 2224, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/15-SP3/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud15-SP3-Debuginfo-Updates for x86_64 SMRBS 4.2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-public-cloud15-sp3-pool-x86_64-smrbs-4.2", + "parent_channel_label": "sle-product-suse-manager-retail-branch-server-4.2-pool-x86_64", + "product_id": 2175, + "repository_id": 4786, + "parent_product_id": 2153, + "root_product_id": 2224, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP3/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud15-SP3-Pool for x86_64 SMRBS 4.2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-public-cloud15-sp3-debuginfo-pool-x86_64-smrbs-4.2", + "parent_channel_label": "sle-product-suse-manager-retail-branch-server-4.2-pool-x86_64", + "product_id": 2175, + "repository_id": 4787, + "parent_product_id": 2153, + "root_product_id": 2224, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP3/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud15-SP3-Debuginfo-Pool for x86_64 SMRBS 4.2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-product-ha15-sp3-updates-x86_64-smrbs-4.2", + "parent_channel_label": "sle-product-suse-manager-retail-branch-server-4.2-pool-x86_64", + "product_id": 2195, + "repository_id": 4896, + "parent_product_id": 2153, + "root_product_id": 2224, + "update_tag": "SLE-Product-HA", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-HA/15-SP3/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HA15-SP3-Updates for x86_64 SMRBS 4.2", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-product-ha15-sp3-debuginfo-updates-x86_64-smrbs-4.2", + "parent_channel_label": "sle-product-suse-manager-retail-branch-server-4.2-pool-x86_64", + "product_id": 2195, + "repository_id": 4897, + "parent_product_id": 2153, + "root_product_id": 2224, + "update_tag": "SLE-Product-HA", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-HA/15-SP3/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HA15-SP3-Debuginfo-Updates for x86_64 SMRBS 4.2", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-product-ha15-sp3-pool-x86_64-smrbs-4.2", + "parent_channel_label": "sle-product-suse-manager-retail-branch-server-4.2-pool-x86_64", + "product_id": 2195, + "repository_id": 4898, + "parent_product_id": 2153, + "root_product_id": 2224, + "update_tag": "SLE-Product-HA", + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP3/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HA15-SP3-Pool for x86_64 SMRBS 4.2", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-product-ha15-sp3-debuginfo-pool-x86_64-smrbs-4.2", + "parent_channel_label": "sle-product-suse-manager-retail-branch-server-4.2-pool-x86_64", + "product_id": 2195, + "repository_id": 4899, + "parent_product_id": 2153, + "root_product_id": 2224, + "update_tag": "SLE-Product-HA", + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP3/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HA15-SP3-Debuginfo-Pool for x86_64 SMRBS 4.2", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-suse-manager-proxy-4.2-updates-x86_64-smrbs", + "parent_channel_label": "sle-product-suse-manager-retail-branch-server-4.2-pool-x86_64", + "product_id": 2225, + "repository_id": 5004, + "parent_product_id": 2153, + "root_product_id": 2224, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-SUSE-Manager-Proxy/4.2/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-SUSE-Manager-Proxy-4.2-Updates for x86_64 SMRBS", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-suse-manager-proxy-4.2-debuginfo-updates-x86_64-smrbs", + "parent_channel_label": "sle-product-suse-manager-retail-branch-server-4.2-pool-x86_64", + "product_id": 2225, + "repository_id": 5005, + "parent_product_id": 2153, + "root_product_id": 2224, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-SUSE-Manager-Proxy/4.2/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-SUSE-Manager-Proxy-4.2-Debuginfo-Updates for x86_64 SMRBS", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-suse-manager-proxy-4.2-pool-x86_64-smrbs", + "parent_channel_label": "sle-product-suse-manager-retail-branch-server-4.2-pool-x86_64", + "product_id": 2225, + "repository_id": 5006, + "parent_product_id": 2153, + "root_product_id": 2224, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-SUSE-Manager-Proxy/4.2/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-SUSE-Manager-Proxy-4.2-Pool for x86_64 SMRBS", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-suse-manager-proxy-4.2-debuginfo-pool-x86_64-smrbs", + "parent_channel_label": "sle-product-suse-manager-retail-branch-server-4.2-pool-x86_64", + "product_id": 2225, + "repository_id": 5007, + "parent_product_id": 2153, + "root_product_id": 2224, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-SUSE-Manager-Proxy/4.2/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-SUSE-Manager-Proxy-4.2-Debuginfo-Pool for x86_64 SMRBS", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-suse-manager-retail-branch-server-4.2-updates-x86_64", + "parent_channel_label": "sle-product-suse-manager-retail-branch-server-4.2-pool-x86_64", + "product_id": 2229, + "repository_id": 5024, + "parent_product_id": 2225, + "root_product_id": 2224, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-SUSE-Manager-Retail-Branch-Server/4.2/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-SUSE-Manager-Retail-Branch-Server-4.2-Updates for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-suse-manager-retail-branch-server-4.2-debuginfo-updates-x86_64", + "parent_channel_label": "sle-product-suse-manager-retail-branch-server-4.2-pool-x86_64", + "product_id": 2229, + "repository_id": 5025, + "parent_product_id": 2225, + "root_product_id": 2224, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-SUSE-Manager-Retail-Branch-Server/4.2/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-SUSE-Manager-Retail-Branch-Server-4.2-Debuginfo-Updates for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-suse-manager-retail-branch-server-4.2-pool-x86_64", + "parent_channel_label": "sle-product-suse-manager-retail-branch-server-4.2-pool-x86_64", + "product_id": 2229, + "repository_id": 5026, + "parent_product_id": 2225, + "root_product_id": 2224, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-SUSE-Manager-Retail-Branch-Server/4.2/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-SUSE-Manager-Retail-Branch-Server-4.2-Pool for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-suse-manager-retail-branch-server-4.2-debuginfo-pool-x86_64", + "parent_channel_label": "sle-product-suse-manager-retail-branch-server-4.2-pool-x86_64", + "product_id": 2229, + "repository_id": 5027, + "parent_product_id": 2225, + "root_product_id": 2224, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-SUSE-Manager-Retail-Branch-Server/4.2/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-SUSE-Manager-Retail-Branch-Server-4.2-Debuginfo-Pool for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-containers15-sp3-updates-x86_64-smrbs-4.2", + "parent_channel_label": "sle-product-suse-manager-retail-branch-server-4.2-pool-x86_64", + "product_id": 2157, + "repository_id": 4694, + "parent_product_id": 2145, + "root_product_id": 2224, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/15-SP3/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers15-SP3-Updates for x86_64 SMRBS 4.2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-containers15-sp3-debuginfo-updates-x86_64-smrbs-4.2", + "parent_channel_label": "sle-product-suse-manager-retail-branch-server-4.2-pool-x86_64", + "product_id": 2157, + "repository_id": 4695, + "parent_product_id": 2145, + "root_product_id": 2224, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/15-SP3/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers15-SP3-Debuginfo-Updates for x86_64 SMRBS 4.2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-containers15-sp3-pool-x86_64-smrbs-4.2", + "parent_channel_label": "sle-product-suse-manager-retail-branch-server-4.2-pool-x86_64", + "product_id": 2157, + "repository_id": 4696, + "parent_product_id": 2145, + "root_product_id": 2224, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP3/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers15-SP3-Pool for x86_64 SMRBS 4.2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-containers15-sp3-debuginfo-pool-x86_64-smrbs-4.2", + "parent_channel_label": "sle-product-suse-manager-retail-branch-server-4.2-pool-x86_64", + "product_id": 2157, + "repository_id": 4697, + "parent_product_id": 2145, + "root_product_id": 2224, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP3/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers15-SP3-Debuginfo-Pool for x86_64 SMRBS 4.2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-python2-15-sp3-updates-x86_64-smrbs-4.2", + "parent_channel_label": "sle-product-suse-manager-retail-branch-server-4.2-pool-x86_64", + "product_id": 2184, + "repository_id": 4829, + "parent_product_id": 2145, + "root_product_id": 2224, + "update_tag": "SLE-Module-Python2", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Python2/15-SP3/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Python2-15-SP3-Updates for x86_64 SMRBS 4.2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-python2-15-sp3-debuginfo-updates-x86_64-smrbs-4.2", + "parent_channel_label": "sle-product-suse-manager-retail-branch-server-4.2-pool-x86_64", + "product_id": 2184, + "repository_id": 4830, + "parent_product_id": 2145, + "root_product_id": 2224, + "update_tag": "SLE-Module-Python2", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Python2/15-SP3/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Python2-15-SP3-Debuginfo-Updates for x86_64 SMRBS 4.2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-python2-15-sp3-pool-x86_64-smrbs-4.2", + "parent_channel_label": "sle-product-suse-manager-retail-branch-server-4.2-pool-x86_64", + "product_id": 2184, + "repository_id": 4831, + "parent_product_id": 2145, + "root_product_id": 2224, + "update_tag": "SLE-Module-Python2", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Python2/15-SP3/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Python2-15-SP3-Pool for x86_64 SMRBS 4.2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-python2-15-sp3-debuginfo-pool-x86_64-smrbs-4.2", + "parent_channel_label": "sle-product-suse-manager-retail-branch-server-4.2-pool-x86_64", + "product_id": 2184, + "repository_id": 4832, + "parent_product_id": 2145, + "root_product_id": 2224, + "update_tag": "SLE-Module-Python2", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Python2/15-SP3/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Python2-15-SP3-Debuginfo-Pool for x86_64 SMRBS 4.2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "suse-packagehub-15-sp3-backports-pool-x86_64-smrbs-4.2", + "parent_channel_label": "sle-product-suse-manager-retail-branch-server-4.2-pool-x86_64", + "product_id": 2191, + "repository_id": 4873, + "parent_product_id": 2145, + "root_product_id": 2224, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-15-SP3_x86_64/standard/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-15-SP3-Backports-Pool for x86_64 SMRBS 4.2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "suse-packagehub-15-sp3-backports-debuginfo-x86_64-smrbs-4.2", + "parent_channel_label": "sle-product-suse-manager-retail-branch-server-4.2-pool-x86_64", + "product_id": 2191, + "repository_id": 4874, + "parent_product_id": 2145, + "root_product_id": 2224, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-15-SP3_x86_64/standard_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-15-SP3-Backports-Debuginfo for x86_64 SMRBS 4.2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-packagehub-subpackages15-sp3-updates-x86_64-smrbs-4.2", + "parent_channel_label": "sle-product-suse-manager-retail-branch-server-4.2-pool-x86_64", + "product_id": 2191, + "repository_id": 4875, + "parent_product_id": 2145, + "root_product_id": 2224, + "update_tag": "SLE-Module-Packagehub-Subpackages", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP3/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Packagehub-Subpackages15-SP3-Updates for x86_64 SMRBS 4.2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-packagehub-subpackages15-sp3-debuginfo-updates-x86_64-smrbs-4.2", + "parent_channel_label": "sle-product-suse-manager-retail-branch-server-4.2-pool-x86_64", + "product_id": 2191, + "repository_id": 4876, + "parent_product_id": 2145, + "root_product_id": 2224, + "update_tag": "SLE-Module-Packagehub-Subpackages", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP3/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Packagehub-Subpackages15-SP3-Debuginfo-Updates for x86_64 SMRBS 4.2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "suse-packagehub-15-sp3-pool-x86_64-smrbs-4.2", + "parent_channel_label": "sle-product-suse-manager-retail-branch-server-4.2-pool-x86_64", + "product_id": 2191, + "repository_id": 4877, + "parent_product_id": 2145, + "root_product_id": 2224, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-15-SP3_x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-15-SP3-Pool for x86_64 SMRBS 4.2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-packagehub-subpackages15-sp3-pool-x86_64-smrbs-4.2", + "parent_channel_label": "sle-product-suse-manager-retail-branch-server-4.2-pool-x86_64", + "product_id": 2191, + "repository_id": 4878, + "parent_product_id": 2145, + "root_product_id": 2224, + "update_tag": "SLE-Module-Packagehub-Subpackages", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP3/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Packagehub-Subpackages15-SP3-Pool for x86_64 SMRBS 4.2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-packagehub-subpackages15-sp3-debuginfo-pool-x86_64-smrbs-4.2", + "parent_channel_label": "sle-product-suse-manager-retail-branch-server-4.2-pool-x86_64", + "product_id": 2191, + "repository_id": 4879, + "parent_product_id": 2145, + "root_product_id": 2224, + "update_tag": "SLE-Module-Packagehub-Subpackages", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP3/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Packagehub-Subpackages15-SP3-Debuginfo-Pool for x86_64 SMRBS 4.2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "opensuse-leap-15.3-pool-aarch64", + "parent_channel_label": null, + "product_id": 2233, + "repository_id": 5031, + "parent_product_id": null, + "root_product_id": 2233, + "update_tag": null, + "url": "http://download.opensuse.org/distribution/leap/15.3/repo/oss/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "openSUSE-Leap-15.3-Pool for aarch64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "opensuse-leap-15.3-nonoss-pool-aarch64", + "parent_channel_label": "opensuse-leap-15.3-pool-aarch64", + "product_id": 2233, + "repository_id": 5032, + "parent_product_id": null, + "root_product_id": 2233, + "update_tag": null, + "url": "http://download.opensuse.org/distribution/leap/15.3/repo/non-oss/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "openSUSE-Leap-15.3-NonOss-Pool for aarch64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "opensuse-leap-15.3-updates-aarch64", + "parent_channel_label": "opensuse-leap-15.3-pool-aarch64", + "product_id": 2233, + "repository_id": 5068, + "parent_product_id": null, + "root_product_id": 2233, + "update_tag": null, + "url": "http://download.opensuse.org/update/leap/15.3/oss/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "openSUSE-Leap-15.3-Updates for aarch64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "opensuse-leap-15.3-nonoss-updates-aarch64", + "parent_channel_label": "opensuse-leap-15.3-pool-aarch64", + "product_id": 2233, + "repository_id": 5069, + "parent_product_id": null, + "root_product_id": 2233, + "update_tag": null, + "url": "http://download.opensuse.org/update/leap/15.3/non-oss/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "openSUSE-Leap-15.3-NonOss-Updates for aarch64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "opensuse-backports-15.3-updates-aarch64", + "parent_channel_label": "opensuse-leap-15.3-pool-aarch64", + "product_id": 2233, + "repository_id": 5076, + "parent_product_id": null, + "root_product_id": 2233, + "update_tag": null, + "url": "http://download.opensuse.org/update/leap/15.3/backports/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "openSUSE-Backports-15.3-Updates for aarch64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-15-sp3-updates-aarch64-opensuse-15.3", + "parent_channel_label": "opensuse-leap-15.3-pool-aarch64", + "product_id": 2233, + "repository_id": 5077, + "parent_product_id": null, + "root_product_id": 2233, + "update_tag": null, + "url": "http://download.opensuse.org/update/leap/15.3/sle/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-15-SP3-Updates for aarch64 openSUSE 15.3", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-manager-tools15-updates-aarch64-opensuse-15.3", + "parent_channel_label": "opensuse-leap-15.3-pool-aarch64", + "product_id": 1709, + "repository_id": 2917, + "parent_product_id": 2233, + "root_product_id": 2233, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/15/aarch64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-Updates for aarch64 openSUSE 15.3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools15-debuginfo-updates-aarch64-opensuse-15.3", + "parent_channel_label": "opensuse-leap-15.3-pool-aarch64", + "product_id": 1709, + "repository_id": 2918, + "parent_product_id": 2233, + "root_product_id": 2233, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/15/aarch64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-Debuginfo-Updates for aarch64 openSUSE 15.3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools15-pool-aarch64-opensuse-15.3", + "parent_channel_label": "opensuse-leap-15.3-pool-aarch64", + "product_id": 1709, + "repository_id": 2919, + "parent_product_id": 2233, + "root_product_id": 2233, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/15/aarch64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-Pool for aarch64 openSUSE 15.3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools15-debuginfo-pool-aarch64-opensuse-15.3", + "parent_channel_label": "opensuse-leap-15.3-pool-aarch64", + "product_id": 1709, + "repository_id": 2920, + "parent_product_id": 2233, + "root_product_id": 2233, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/15/aarch64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-Debuginfo-Pool for aarch64 openSUSE 15.3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools15-beta-updates-aarch64-opensuse-15.3", + "parent_channel_label": "opensuse-leap-15.3-pool-aarch64", + "product_id": 1925, + "repository_id": 3891, + "parent_product_id": 1709, + "root_product_id": 2233, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/15-BETA/aarch64/update/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-BETA-Updates for aarch64 openSUSE 15.3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools15-beta-debuginfo-updates-aarch64-opensuse-15.3", + "parent_channel_label": "opensuse-leap-15.3-pool-aarch64", + "product_id": 1925, + "repository_id": 3892, + "parent_product_id": 1709, + "root_product_id": 2233, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/15-BETA/aarch64/update_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-BETA-Debuginfo-Updates for aarch64 openSUSE 15.3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools15-beta-pool-aarch64-opensuse-15.3", + "parent_channel_label": "opensuse-leap-15.3-pool-aarch64", + "product_id": 1925, + "repository_id": 3899, + "parent_product_id": 1709, + "root_product_id": 2233, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/15-BETA/aarch64/product/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-BETA-Pool for aarch64 openSUSE 15.3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools15-beta-debuginfo-pool-aarch64-opensuse-15.3", + "parent_channel_label": "opensuse-leap-15.3-pool-aarch64", + "product_id": 1925, + "repository_id": 3900, + "parent_product_id": 1709, + "root_product_id": 2233, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/15-BETA/aarch64/product_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-BETA-Debuginfo-Pool for aarch64 openSUSE 15.3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "opensuse-leap-15.3-pool-ppc64le", + "parent_channel_label": null, + "product_id": 2234, + "repository_id": 5031, + "parent_product_id": null, + "root_product_id": 2234, + "update_tag": null, + "url": "http://download.opensuse.org/distribution/leap/15.3/repo/oss/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "openSUSE-Leap-15.3-Pool for ppc64le", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "opensuse-leap-15.3-nonoss-pool-ppc64le", + "parent_channel_label": "opensuse-leap-15.3-pool-ppc64le", + "product_id": 2234, + "repository_id": 5032, + "parent_product_id": null, + "root_product_id": 2234, + "update_tag": null, + "url": "http://download.opensuse.org/distribution/leap/15.3/repo/non-oss/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "openSUSE-Leap-15.3-NonOss-Pool for ppc64le", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "opensuse-leap-15.3-updates-ppc64le", + "parent_channel_label": "opensuse-leap-15.3-pool-ppc64le", + "product_id": 2234, + "repository_id": 5068, + "parent_product_id": null, + "root_product_id": 2234, + "update_tag": null, + "url": "http://download.opensuse.org/update/leap/15.3/oss/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "openSUSE-Leap-15.3-Updates for ppc64le", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "opensuse-leap-15.3-nonoss-updates-ppc64le", + "parent_channel_label": "opensuse-leap-15.3-pool-ppc64le", + "product_id": 2234, + "repository_id": 5069, + "parent_product_id": null, + "root_product_id": 2234, + "update_tag": null, + "url": "http://download.opensuse.org/update/leap/15.3/non-oss/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "openSUSE-Leap-15.3-NonOss-Updates for ppc64le", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "opensuse-backports-15.3-updates-ppc64le", + "parent_channel_label": "opensuse-leap-15.3-pool-ppc64le", + "product_id": 2234, + "repository_id": 5076, + "parent_product_id": null, + "root_product_id": 2234, + "update_tag": null, + "url": "http://download.opensuse.org/update/leap/15.3/backports/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "openSUSE-Backports-15.3-Updates for ppc64le", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-15-sp3-updates-ppc64le-opensuse-15.3", + "parent_channel_label": "opensuse-leap-15.3-pool-ppc64le", + "product_id": 2234, + "repository_id": 5077, + "parent_product_id": null, + "root_product_id": 2234, + "update_tag": null, + "url": "http://download.opensuse.org/update/leap/15.3/sle/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-15-SP3-Updates for ppc64le openSUSE 15.3", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-manager-tools15-updates-ppc64le-opensuse-15.3", + "parent_channel_label": "opensuse-leap-15.3-pool-ppc64le", + "product_id": 1710, + "repository_id": 2922, + "parent_product_id": 2234, + "root_product_id": 2234, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/15/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-Updates for ppc64le openSUSE 15.3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools15-debuginfo-updates-ppc64le-opensuse-15.3", + "parent_channel_label": "opensuse-leap-15.3-pool-ppc64le", + "product_id": 1710, + "repository_id": 2923, + "parent_product_id": 2234, + "root_product_id": 2234, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/15/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-Debuginfo-Updates for ppc64le openSUSE 15.3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools15-pool-ppc64le-opensuse-15.3", + "parent_channel_label": "opensuse-leap-15.3-pool-ppc64le", + "product_id": 1710, + "repository_id": 2924, + "parent_product_id": 2234, + "root_product_id": 2234, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/15/ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-Pool for ppc64le openSUSE 15.3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools15-debuginfo-pool-ppc64le-opensuse-15.3", + "parent_channel_label": "opensuse-leap-15.3-pool-ppc64le", + "product_id": 1710, + "repository_id": 2925, + "parent_product_id": 2234, + "root_product_id": 2234, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/15/ppc64le/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-Debuginfo-Pool for ppc64le openSUSE 15.3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools15-beta-updates-ppc64le-opensuse-15.3", + "parent_channel_label": "opensuse-leap-15.3-pool-ppc64le", + "product_id": 1926, + "repository_id": 3893, + "parent_product_id": 1710, + "root_product_id": 2234, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/15-BETA/ppc64le/update/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-BETA-Updates for ppc64le openSUSE 15.3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools15-beta-debuginfo-updates-ppc64le-opensuse-15.3", + "parent_channel_label": "opensuse-leap-15.3-pool-ppc64le", + "product_id": 1926, + "repository_id": 3894, + "parent_product_id": 1710, + "root_product_id": 2234, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/15-BETA/ppc64le/update_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-BETA-Debuginfo-Updates for ppc64le openSUSE 15.3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools15-beta-pool-ppc64le-opensuse-15.3", + "parent_channel_label": "opensuse-leap-15.3-pool-ppc64le", + "product_id": 1926, + "repository_id": 3902, + "parent_product_id": 1710, + "root_product_id": 2234, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/15-BETA/ppc64le/product/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-BETA-Pool for ppc64le openSUSE 15.3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools15-beta-debuginfo-pool-ppc64le-opensuse-15.3", + "parent_channel_label": "opensuse-leap-15.3-pool-ppc64le", + "product_id": 1926, + "repository_id": 3903, + "parent_product_id": 1710, + "root_product_id": 2234, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/15-BETA/ppc64le/product_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-BETA-Debuginfo-Pool for ppc64le openSUSE 15.3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "opensuse-leap-15.3-pool-s390x", + "parent_channel_label": null, + "product_id": 2235, + "repository_id": 5031, + "parent_product_id": null, + "root_product_id": 2235, + "update_tag": null, + "url": "http://download.opensuse.org/distribution/leap/15.3/repo/oss/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "openSUSE-Leap-15.3-Pool for s390x", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "opensuse-leap-15.3-nonoss-pool-s390x", + "parent_channel_label": "opensuse-leap-15.3-pool-s390x", + "product_id": 2235, + "repository_id": 5032, + "parent_product_id": null, + "root_product_id": 2235, + "update_tag": null, + "url": "http://download.opensuse.org/distribution/leap/15.3/repo/non-oss/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "openSUSE-Leap-15.3-NonOss-Pool for s390x", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "opensuse-leap-15.3-updates-s390x", + "parent_channel_label": "opensuse-leap-15.3-pool-s390x", + "product_id": 2235, + "repository_id": 5068, + "parent_product_id": null, + "root_product_id": 2235, + "update_tag": null, + "url": "http://download.opensuse.org/update/leap/15.3/oss/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "openSUSE-Leap-15.3-Updates for s390x", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "opensuse-leap-15.3-nonoss-updates-s390x", + "parent_channel_label": "opensuse-leap-15.3-pool-s390x", + "product_id": 2235, + "repository_id": 5069, + "parent_product_id": null, + "root_product_id": 2235, + "update_tag": null, + "url": "http://download.opensuse.org/update/leap/15.3/non-oss/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "openSUSE-Leap-15.3-NonOss-Updates for s390x", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "opensuse-backports-15.3-updates-s390x", + "parent_channel_label": "opensuse-leap-15.3-pool-s390x", + "product_id": 2235, + "repository_id": 5076, + "parent_product_id": null, + "root_product_id": 2235, + "update_tag": null, + "url": "http://download.opensuse.org/update/leap/15.3/backports/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "openSUSE-Backports-15.3-Updates for s390x", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-15-sp3-updates-s390x-opensuse-15.3", + "parent_channel_label": "opensuse-leap-15.3-pool-s390x", + "product_id": 2235, + "repository_id": 5077, + "parent_product_id": null, + "root_product_id": 2235, + "update_tag": null, + "url": "http://download.opensuse.org/update/leap/15.3/sle/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-15-SP3-Updates for s390x openSUSE 15.3", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-manager-tools15-updates-s390x-opensuse-15.3", + "parent_channel_label": "opensuse-leap-15.3-pool-s390x", + "product_id": 1711, + "repository_id": 2927, + "parent_product_id": 2235, + "root_product_id": 2235, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/15/s390x/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-Updates for s390x openSUSE 15.3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools15-debuginfo-updates-s390x-opensuse-15.3", + "parent_channel_label": "opensuse-leap-15.3-pool-s390x", + "product_id": 1711, + "repository_id": 2928, + "parent_product_id": 2235, + "root_product_id": 2235, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/15/s390x/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-Debuginfo-Updates for s390x openSUSE 15.3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools15-pool-s390x-opensuse-15.3", + "parent_channel_label": "opensuse-leap-15.3-pool-s390x", + "product_id": 1711, + "repository_id": 2929, + "parent_product_id": 2235, + "root_product_id": 2235, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/15/s390x/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-Pool for s390x openSUSE 15.3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools15-debuginfo-pool-s390x-opensuse-15.3", + "parent_channel_label": "opensuse-leap-15.3-pool-s390x", + "product_id": 1711, + "repository_id": 2930, + "parent_product_id": 2235, + "root_product_id": 2235, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/15/s390x/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-Debuginfo-Pool for s390x openSUSE 15.3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools15-beta-updates-s390x-opensuse-15.3", + "parent_channel_label": "opensuse-leap-15.3-pool-s390x", + "product_id": 1927, + "repository_id": 3895, + "parent_product_id": 1711, + "root_product_id": 2235, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/15-BETA/s390x/update/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-BETA-Updates for s390x openSUSE 15.3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools15-beta-debuginfo-updates-s390x-opensuse-15.3", + "parent_channel_label": "opensuse-leap-15.3-pool-s390x", + "product_id": 1927, + "repository_id": 3896, + "parent_product_id": 1711, + "root_product_id": 2235, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/15-BETA/s390x/update_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-BETA-Debuginfo-Updates for s390x openSUSE 15.3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools15-beta-pool-s390x-opensuse-15.3", + "parent_channel_label": "opensuse-leap-15.3-pool-s390x", + "product_id": 1927, + "repository_id": 3905, + "parent_product_id": 1711, + "root_product_id": 2235, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/15-BETA/s390x/product/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-BETA-Pool for s390x openSUSE 15.3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools15-beta-debuginfo-pool-s390x-opensuse-15.3", + "parent_channel_label": "opensuse-leap-15.3-pool-s390x", + "product_id": 1927, + "repository_id": 3906, + "parent_product_id": 1711, + "root_product_id": 2235, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/15-BETA/s390x/product_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-BETA-Debuginfo-Pool for s390x openSUSE 15.3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "opensuse-leap-15.3-pool-x86_64", + "parent_channel_label": null, + "product_id": 2236, + "repository_id": 5031, + "parent_product_id": null, + "root_product_id": 2236, + "update_tag": null, + "url": "http://download.opensuse.org/distribution/leap/15.3/repo/oss/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "openSUSE-Leap-15.3-Pool for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "opensuse-leap-15.3-nonoss-pool-x86_64", + "parent_channel_label": "opensuse-leap-15.3-pool-x86_64", + "product_id": 2236, + "repository_id": 5032, + "parent_product_id": null, + "root_product_id": 2236, + "update_tag": null, + "url": "http://download.opensuse.org/distribution/leap/15.3/repo/non-oss/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "openSUSE-Leap-15.3-NonOss-Pool for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "opensuse-leap-15.3-updates-x86_64", + "parent_channel_label": "opensuse-leap-15.3-pool-x86_64", + "product_id": 2236, + "repository_id": 5068, + "parent_product_id": null, + "root_product_id": 2236, + "update_tag": null, + "url": "http://download.opensuse.org/update/leap/15.3/oss/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "openSUSE-Leap-15.3-Updates for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "opensuse-leap-15.3-nonoss-updates-x86_64", + "parent_channel_label": "opensuse-leap-15.3-pool-x86_64", + "product_id": 2236, + "repository_id": 5069, + "parent_product_id": null, + "root_product_id": 2236, + "update_tag": null, + "url": "http://download.opensuse.org/update/leap/15.3/non-oss/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "openSUSE-Leap-15.3-NonOss-Updates for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "opensuse-backports-15.3-updates-x86_64", + "parent_channel_label": "opensuse-leap-15.3-pool-x86_64", + "product_id": 2236, + "repository_id": 5076, + "parent_product_id": null, + "root_product_id": 2236, + "update_tag": null, + "url": "http://download.opensuse.org/update/leap/15.3/backports/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "openSUSE-Backports-15.3-Updates for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-15-sp3-updates-x86_64-opensuse-15.3", + "parent_channel_label": "opensuse-leap-15.3-pool-x86_64", + "product_id": 2236, + "repository_id": 5077, + "parent_product_id": null, + "root_product_id": 2236, + "update_tag": null, + "url": "http://download.opensuse.org/update/leap/15.3/sle/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-15-SP3-Updates for x86_64 openSUSE 15.3", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-manager-tools15-updates-x86_64-opensuse-15.3", + "parent_channel_label": "opensuse-leap-15.3-pool-x86_64", + "product_id": 1712, + "repository_id": 2932, + "parent_product_id": 2236, + "root_product_id": 2236, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/15/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-Updates for x86_64 openSUSE 15.3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools15-debuginfo-updates-x86_64-opensuse-15.3", + "parent_channel_label": "opensuse-leap-15.3-pool-x86_64", + "product_id": 1712, + "repository_id": 2933, + "parent_product_id": 2236, + "root_product_id": 2236, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/15/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-Debuginfo-Updates for x86_64 openSUSE 15.3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools15-pool-x86_64-opensuse-15.3", + "parent_channel_label": "opensuse-leap-15.3-pool-x86_64", + "product_id": 1712, + "repository_id": 2934, + "parent_product_id": 2236, + "root_product_id": 2236, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/15/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-Pool for x86_64 openSUSE 15.3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools15-debuginfo-pool-x86_64-opensuse-15.3", + "parent_channel_label": "opensuse-leap-15.3-pool-x86_64", + "product_id": 1712, + "repository_id": 2935, + "parent_product_id": 2236, + "root_product_id": 2236, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/15/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-Debuginfo-Pool for x86_64 openSUSE 15.3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools15-beta-updates-x86_64-opensuse-15.3", + "parent_channel_label": "opensuse-leap-15.3-pool-x86_64", + "product_id": 1928, + "repository_id": 3897, + "parent_product_id": 1712, + "root_product_id": 2236, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/15-BETA/x86_64/update/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-BETA-Updates for x86_64 openSUSE 15.3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools15-beta-debuginfo-updates-x86_64-opensuse-15.3", + "parent_channel_label": "opensuse-leap-15.3-pool-x86_64", + "product_id": 1928, + "repository_id": 3898, + "parent_product_id": 1712, + "root_product_id": 2236, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/15-BETA/x86_64/update_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-BETA-Debuginfo-Updates for x86_64 openSUSE 15.3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools15-beta-pool-x86_64-opensuse-15.3", + "parent_channel_label": "opensuse-leap-15.3-pool-x86_64", + "product_id": 1928, + "repository_id": 3908, + "parent_product_id": 1712, + "root_product_id": 2236, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/15-BETA/x86_64/product/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-BETA-Pool for x86_64 openSUSE 15.3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools15-beta-debuginfo-pool-x86_64-opensuse-15.3", + "parent_channel_label": "opensuse-leap-15.3-pool-x86_64", + "product_id": 1928, + "repository_id": 3909, + "parent_product_id": 1712, + "root_product_id": 2236, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/15-BETA/x86_64/product_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-BETA-Debuginfo-Pool for x86_64 openSUSE 15.3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "suse-microos-5.1-updates-aarch64", + "parent_channel_label": "suse-microos-5.1-pool-aarch64", + "product_id": 2282, + "repository_id": 5044, + "parent_product_id": null, + "root_product_id": 2282, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Updates/SUSE-MicroOS/5.1/aarch64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-MicroOS-5.1-Updates for aarch64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-microos-5.1-debuginfo-updates-aarch64", + "parent_channel_label": "suse-microos-5.1-pool-aarch64", + "product_id": 2282, + "repository_id": 5045, + "parent_product_id": null, + "root_product_id": 2282, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Updates/SUSE-MicroOS/5.1/aarch64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SUSE-MicroOS-5.1-Debuginfo-Updates for aarch64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-microos-5.1-pool-aarch64", + "parent_channel_label": null, + "product_id": 2282, + "repository_id": 5046, + "parent_product_id": null, + "root_product_id": 2282, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Products/SUSE-MicroOS/5.1/aarch64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-MicroOS-5.1-Pool for aarch64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-microos-5.1-debuginfo-pool-aarch64", + "parent_channel_label": "suse-microos-5.1-pool-aarch64", + "product_id": 2282, + "repository_id": 5047, + "parent_product_id": null, + "root_product_id": 2282, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Products/SUSE-MicroOS/5.1/aarch64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SUSE-MicroOS-5.1-Debuginfo-Pool for aarch64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-packagehub-15-sp3-backports-pool-aarch64-micro-5.1", + "parent_channel_label": "suse-microos-5.1-pool-aarch64", + "product_id": 2188, + "repository_id": 4849, + "parent_product_id": 2282, + "root_product_id": 2282, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-15-SP3_aarch64/standard/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-15-SP3-Backports-Pool for aarch64 Micro 5.1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-packagehub-15-sp3-backports-debuginfo-aarch64-micro-5.1", + "parent_channel_label": "suse-microos-5.1-pool-aarch64", + "product_id": 2188, + "repository_id": 4850, + "parent_product_id": 2282, + "root_product_id": 2282, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-15-SP3_aarch64/standard_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-15-SP3-Backports-Debuginfo for aarch64 Micro 5.1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-packagehub-subpackages15-sp3-updates-aarch64-micro-5.1", + "parent_channel_label": "suse-microos-5.1-pool-aarch64", + "product_id": 2188, + "repository_id": 4851, + "parent_product_id": 2282, + "root_product_id": 2282, + "update_tag": "SLE-Module-Packagehub-Subpackages", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP3/aarch64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Packagehub-Subpackages15-SP3-Updates for aarch64 Micro 5.1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-packagehub-subpackages15-sp3-debuginfo-updates-aarch64-micro-5.1", + "parent_channel_label": "suse-microos-5.1-pool-aarch64", + "product_id": 2188, + "repository_id": 4852, + "parent_product_id": 2282, + "root_product_id": 2282, + "update_tag": "SLE-Module-Packagehub-Subpackages", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP3/aarch64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Packagehub-Subpackages15-SP3-Debuginfo-Updates for aarch64 Micro 5.1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-packagehub-15-sp3-pool-aarch64-micro-5.1", + "parent_channel_label": "suse-microos-5.1-pool-aarch64", + "product_id": 2188, + "repository_id": 4853, + "parent_product_id": 2282, + "root_product_id": 2282, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-15-SP3_aarch64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-15-SP3-Pool for aarch64 Micro 5.1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-packagehub-subpackages15-sp3-pool-aarch64-micro-5.1", + "parent_channel_label": "suse-microos-5.1-pool-aarch64", + "product_id": 2188, + "repository_id": 4854, + "parent_product_id": 2282, + "root_product_id": 2282, + "update_tag": "SLE-Module-Packagehub-Subpackages", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP3/aarch64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Packagehub-Subpackages15-SP3-Pool for aarch64 Micro 5.1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-packagehub-subpackages15-sp3-debuginfo-pool-aarch64-micro-5.1", + "parent_channel_label": "suse-microos-5.1-pool-aarch64", + "product_id": 2188, + "repository_id": 4855, + "parent_product_id": 2282, + "root_product_id": 2282, + "update_tag": "SLE-Module-Packagehub-Subpackages", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP3/aarch64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Packagehub-Subpackages15-SP3-Debuginfo-Pool for aarch64 Micro 5.1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-manager-tools-for-micro5-updates-aarch64-5.1", + "parent_channel_label": "suse-microos-5.1-pool-aarch64", + "product_id": 2549, + "repository_id": 6032, + "parent_product_id": 2282, + "root_product_id": 2282, + "update_tag": "SLE-Manager-Tools-For-Micro-5", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools-For-Micro/5/aarch64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools-For-Micro5-Updates for aarch64 5.1", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools-for-micro5-debuginfo-updates-aarch64-5.1", + "parent_channel_label": "suse-microos-5.1-pool-aarch64", + "product_id": 2549, + "repository_id": 6033, + "parent_product_id": 2282, + "root_product_id": 2282, + "update_tag": "SLE-Manager-Tools-For-Micro-5", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools-For-Micro/5/aarch64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools-For-Micro5-Debuginfo-Updates for aarch64 5.1", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools-for-micro5-pool-aarch64-5.1", + "parent_channel_label": "suse-microos-5.1-pool-aarch64", + "product_id": 2549, + "repository_id": 6034, + "parent_product_id": 2282, + "root_product_id": 2282, + "update_tag": "SLE-Manager-Tools-For-Micro-5", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools-For-Micro/5/aarch64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools-For-Micro5-Pool for aarch64 5.1", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools-for-micro5-debuginfo-pool-aarch64-5.1", + "parent_channel_label": "suse-microos-5.1-pool-aarch64", + "product_id": 2549, + "repository_id": 6035, + "parent_product_id": 2282, + "root_product_id": 2282, + "update_tag": "SLE-Manager-Tools-For-Micro-5", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools-For-Micro/5/aarch64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools-For-Micro5-Debuginfo-Pool for aarch64 5.1", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools-beta-for-micro5-updates-aarch64-5.1", + "parent_channel_label": "suse-microos-5.1-pool-aarch64", + "product_id": 2552, + "repository_id": 6047, + "parent_product_id": 2549, + "root_product_id": 2282, + "update_tag": "SLE-Manager-Tools-Beta-For-Micro-5", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools-Beta-For-Micro/5/aarch64/update/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools-Beta-For-Micro5-Updates for aarch64 5.1", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools-beta-for-micro5-debuginfo-updates-aarch64-5.1", + "parent_channel_label": "suse-microos-5.1-pool-aarch64", + "product_id": 2552, + "repository_id": 6048, + "parent_product_id": 2549, + "root_product_id": 2282, + "update_tag": "SLE-Manager-Tools-Beta-For-Micro-5", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools-Beta-For-Micro/5/aarch64/update_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools-Beta-For-Micro5-Debuginfo-Updates for aarch64 5.1", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools-beta-for-micro5-pool-aarch64-5.1", + "parent_channel_label": "suse-microos-5.1-pool-aarch64", + "product_id": 2552, + "repository_id": 6049, + "parent_product_id": 2549, + "root_product_id": 2282, + "update_tag": "SLE-Manager-Tools-Beta-For-Micro-5", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools-Beta-For-Micro/5/aarch64/product/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools-Beta-For-Micro5-Pool for aarch64 5.1", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools-beta-for-micro5-debuginfo-pool-aarch64-5.1", + "parent_channel_label": "suse-microos-5.1-pool-aarch64", + "product_id": 2552, + "repository_id": 6050, + "parent_product_id": 2549, + "root_product_id": 2282, + "update_tag": "SLE-Manager-Tools-Beta-For-Micro-5", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools-Beta-For-Micro/5/aarch64/product_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools-Beta-For-Micro5-Debuginfo-Pool for aarch64 5.1", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "suse-microos-5.1-updates-x86_64", + "parent_channel_label": "suse-microos-5.1-pool-x86_64", + "product_id": 2283, + "repository_id": 5049, + "parent_product_id": null, + "root_product_id": 2283, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Updates/SUSE-MicroOS/5.1/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-MicroOS-5.1-Updates for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-microos-5.1-debuginfo-updates-x86_64", + "parent_channel_label": "suse-microos-5.1-pool-x86_64", + "product_id": 2283, + "repository_id": 5050, + "parent_product_id": null, + "root_product_id": 2283, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Updates/SUSE-MicroOS/5.1/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SUSE-MicroOS-5.1-Debuginfo-Updates for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-microos-5.1-pool-x86_64", + "parent_channel_label": null, + "product_id": 2283, + "repository_id": 5051, + "parent_product_id": null, + "root_product_id": 2283, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Products/SUSE-MicroOS/5.1/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-MicroOS-5.1-Pool for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-microos-5.1-debuginfo-pool-x86_64", + "parent_channel_label": "suse-microos-5.1-pool-x86_64", + "product_id": 2283, + "repository_id": 5052, + "parent_product_id": null, + "root_product_id": 2283, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Products/SUSE-MicroOS/5.1/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SUSE-MicroOS-5.1-Debuginfo-Pool for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-live-patching15-sp3-updates-x86_64-micro-5.1", + "parent_channel_label": "suse-microos-5.1-pool-x86_64", + "product_id": 2187, + "repository_id": 4844, + "parent_product_id": 2283, + "root_product_id": 2283, + "update_tag": "SLE-Module-Live-Patching", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Live-Patching/15-SP3/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Live-Patching15-SP3-Updates for x86_64 Micro 5.1", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-live-patching15-sp3-debuginfo-updates-x86_64-micro-5.1", + "parent_channel_label": "suse-microos-5.1-pool-x86_64", + "product_id": 2187, + "repository_id": 4845, + "parent_product_id": 2283, + "root_product_id": 2283, + "update_tag": "SLE-Module-Live-Patching", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Live-Patching/15-SP3/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Live-Patching15-SP3-Debuginfo-Updates for x86_64 Micro 5.1", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-live-patching15-sp3-pool-x86_64-micro-5.1", + "parent_channel_label": "suse-microos-5.1-pool-x86_64", + "product_id": 2187, + "repository_id": 4846, + "parent_product_id": 2283, + "root_product_id": 2283, + "update_tag": "SLE-Module-Live-Patching", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Live-Patching/15-SP3/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Live-Patching15-SP3-Pool for x86_64 Micro 5.1", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-live-patching15-sp3-debuginfo-pool-x86_64-micro-5.1", + "parent_channel_label": "suse-microos-5.1-pool-x86_64", + "product_id": 2187, + "repository_id": 4847, + "parent_product_id": 2283, + "root_product_id": 2283, + "update_tag": "SLE-Module-Live-Patching", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Live-Patching/15-SP3/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Live-Patching15-SP3-Debuginfo-Pool for x86_64 Micro 5.1", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-packagehub-15-sp3-backports-pool-x86_64-micro-5.1", + "parent_channel_label": "suse-microos-5.1-pool-x86_64", + "product_id": 2191, + "repository_id": 4873, + "parent_product_id": 2283, + "root_product_id": 2283, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-15-SP3_x86_64/standard/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-15-SP3-Backports-Pool for x86_64 Micro 5.1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-packagehub-15-sp3-backports-debuginfo-x86_64-micro-5.1", + "parent_channel_label": "suse-microos-5.1-pool-x86_64", + "product_id": 2191, + "repository_id": 4874, + "parent_product_id": 2283, + "root_product_id": 2283, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-15-SP3_x86_64/standard_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-15-SP3-Backports-Debuginfo for x86_64 Micro 5.1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-packagehub-subpackages15-sp3-updates-x86_64-micro-5.1", + "parent_channel_label": "suse-microos-5.1-pool-x86_64", + "product_id": 2191, + "repository_id": 4875, + "parent_product_id": 2283, + "root_product_id": 2283, + "update_tag": "SLE-Module-Packagehub-Subpackages", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP3/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Packagehub-Subpackages15-SP3-Updates for x86_64 Micro 5.1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-packagehub-subpackages15-sp3-debuginfo-updates-x86_64-micro-5.1", + "parent_channel_label": "suse-microos-5.1-pool-x86_64", + "product_id": 2191, + "repository_id": 4876, + "parent_product_id": 2283, + "root_product_id": 2283, + "update_tag": "SLE-Module-Packagehub-Subpackages", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP3/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Packagehub-Subpackages15-SP3-Debuginfo-Updates for x86_64 Micro 5.1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-packagehub-15-sp3-pool-x86_64-micro-5.1", + "parent_channel_label": "suse-microos-5.1-pool-x86_64", + "product_id": 2191, + "repository_id": 4877, + "parent_product_id": 2283, + "root_product_id": 2283, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-15-SP3_x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-15-SP3-Pool for x86_64 Micro 5.1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-packagehub-subpackages15-sp3-pool-x86_64-micro-5.1", + "parent_channel_label": "suse-microos-5.1-pool-x86_64", + "product_id": 2191, + "repository_id": 4878, + "parent_product_id": 2283, + "root_product_id": 2283, + "update_tag": "SLE-Module-Packagehub-Subpackages", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP3/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Packagehub-Subpackages15-SP3-Pool for x86_64 Micro 5.1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-packagehub-subpackages15-sp3-debuginfo-pool-x86_64-micro-5.1", + "parent_channel_label": "suse-microos-5.1-pool-x86_64", + "product_id": 2191, + "repository_id": 4879, + "parent_product_id": 2283, + "root_product_id": 2283, + "update_tag": "SLE-Module-Packagehub-Subpackages", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP3/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Packagehub-Subpackages15-SP3-Debuginfo-Pool for x86_64 Micro 5.1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-manager-tools-for-micro5-updates-x86_64-5.1", + "parent_channel_label": "suse-microos-5.1-pool-x86_64", + "product_id": 2551, + "repository_id": 6042, + "parent_product_id": 2283, + "root_product_id": 2283, + "update_tag": "SLE-Manager-Tools-For-Micro-5", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools-For-Micro/5/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools-For-Micro5-Updates for x86_64 5.1", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools-for-micro5-debuginfo-updates-x86_64-5.1", + "parent_channel_label": "suse-microos-5.1-pool-x86_64", + "product_id": 2551, + "repository_id": 6043, + "parent_product_id": 2283, + "root_product_id": 2283, + "update_tag": "SLE-Manager-Tools-For-Micro-5", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools-For-Micro/5/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools-For-Micro5-Debuginfo-Updates for x86_64 5.1", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools-for-micro5-pool-x86_64-5.1", + "parent_channel_label": "suse-microos-5.1-pool-x86_64", + "product_id": 2551, + "repository_id": 6044, + "parent_product_id": 2283, + "root_product_id": 2283, + "update_tag": "SLE-Manager-Tools-For-Micro-5", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools-For-Micro/5/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools-For-Micro5-Pool for x86_64 5.1", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools-for-micro5-debuginfo-pool-x86_64-5.1", + "parent_channel_label": "suse-microos-5.1-pool-x86_64", + "product_id": 2551, + "repository_id": 6045, + "parent_product_id": 2283, + "root_product_id": 2283, + "update_tag": "SLE-Manager-Tools-For-Micro-5", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools-For-Micro/5/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools-For-Micro5-Debuginfo-Pool for x86_64 5.1", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools-beta-for-micro5-updates-x86_64-5.1", + "parent_channel_label": "suse-microos-5.1-pool-x86_64", + "product_id": 2554, + "repository_id": 6057, + "parent_product_id": 2551, + "root_product_id": 2283, + "update_tag": "SLE-Manager-Tools-Beta-For-Micro-5", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools-Beta-For-Micro/5/x86_64/update/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools-Beta-For-Micro5-Updates for x86_64 5.1", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools-beta-for-micro5-debuginfo-updates-x86_64-5.1", + "parent_channel_label": "suse-microos-5.1-pool-x86_64", + "product_id": 2554, + "repository_id": 6058, + "parent_product_id": 2551, + "root_product_id": 2283, + "update_tag": "SLE-Manager-Tools-Beta-For-Micro-5", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools-Beta-For-Micro/5/x86_64/update_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools-Beta-For-Micro5-Debuginfo-Updates for x86_64 5.1", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools-beta-for-micro5-pool-x86_64-5.1", + "parent_channel_label": "suse-microos-5.1-pool-x86_64", + "product_id": 2554, + "repository_id": 6059, + "parent_product_id": 2551, + "root_product_id": 2283, + "update_tag": "SLE-Manager-Tools-Beta-For-Micro-5", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools-Beta-For-Micro/5/x86_64/product/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools-Beta-For-Micro5-Pool for x86_64 5.1", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools-beta-for-micro5-debuginfo-pool-x86_64-5.1", + "parent_channel_label": "suse-microos-5.1-pool-x86_64", + "product_id": 2554, + "repository_id": 6060, + "parent_product_id": 2551, + "root_product_id": 2283, + "update_tag": "SLE-Manager-Tools-Beta-For-Micro-5", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools-Beta-For-Micro/5/x86_64/product_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools-Beta-For-Micro5-Debuginfo-Pool for x86_64 5.1", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-product-rt-15-sp3-updates-x86_64", + "parent_channel_label": "sle-product-rt-15-sp3-pool-x86_64", + "product_id": 2285, + "repository_id": 5058, + "parent_product_id": null, + "root_product_id": 2285, + "update_tag": "SLE-Product-RT", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-RT/15-SP3/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-RT-15-SP3-Updates for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-rt15-sp3-debuginfo-updates-x86_64", + "parent_channel_label": "sle-product-rt-15-sp3-pool-x86_64", + "product_id": 2285, + "repository_id": 5059, + "parent_product_id": null, + "root_product_id": 2285, + "update_tag": "SLE-Product-RT", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-RT/15-SP3/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-RT15-SP3-Debuginfo-Updates for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-rt-15-sp3-pool-x86_64", + "parent_channel_label": null, + "product_id": 2285, + "repository_id": 5060, + "parent_product_id": null, + "root_product_id": 2285, + "update_tag": "SLE-Product-RT", + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-RT/15-SP3/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-RT-15-SP3-Pool for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-rt15-sp3-debuginfo-pool-x86_64", + "parent_channel_label": "sle-product-rt-15-sp3-pool-x86_64", + "product_id": 2285, + "repository_id": 5061, + "parent_product_id": null, + "root_product_id": 2285, + "update_tag": "SLE-Product-RT", + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-RT/15-SP3/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-RT15-SP3-Debuginfo-Pool for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-basesystem15-sp3-updates-x86_64-rt", + "parent_channel_label": "sle-product-rt-15-sp3-pool-x86_64", + "product_id": 2145, + "repository_id": 4634, + "parent_product_id": 2285, + "root_product_id": 2285, + "update_tag": "SLE-Module-Basesystem", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15-SP3/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Basesystem15-SP3-Updates for x86_64 RT", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-basesystem15-sp3-debuginfo-updates-x86_64-rt", + "parent_channel_label": "sle-product-rt-15-sp3-pool-x86_64", + "product_id": 2145, + "repository_id": 4635, + "parent_product_id": 2285, + "root_product_id": 2285, + "update_tag": "SLE-Module-Basesystem", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15-SP3/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Basesystem15-SP3-Debuginfo-Updates for x86_64 RT", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-basesystem15-sp3-pool-x86_64-rt", + "parent_channel_label": "sle-product-rt-15-sp3-pool-x86_64", + "product_id": 2145, + "repository_id": 4636, + "parent_product_id": 2285, + "root_product_id": 2285, + "update_tag": "SLE-Module-Basesystem", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP3/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Basesystem15-SP3-Pool for x86_64 RT", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-basesystem15-sp3-debuginfo-pool-x86_64-rt", + "parent_channel_label": "sle-product-rt-15-sp3-pool-x86_64", + "product_id": 2145, + "repository_id": 4637, + "parent_product_id": 2285, + "root_product_id": 2285, + "update_tag": "SLE-Module-Basesystem", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP3/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Basesystem15-SP3-Debuginfo-Pool for x86_64 RT", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-manager-tools15-updates-x86_64-rt-sp3", + "parent_channel_label": "sle-product-rt-15-sp3-pool-x86_64", + "product_id": 1712, + "repository_id": 2932, + "parent_product_id": 2145, + "root_product_id": 2285, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/15/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-Updates for x86_64 RT SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools15-debuginfo-updates-x86_64-rt-sp3", + "parent_channel_label": "sle-product-rt-15-sp3-pool-x86_64", + "product_id": 1712, + "repository_id": 2933, + "parent_product_id": 2145, + "root_product_id": 2285, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/15/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-Debuginfo-Updates for x86_64 RT SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools15-pool-x86_64-rt-sp3", + "parent_channel_label": "sle-product-rt-15-sp3-pool-x86_64", + "product_id": 1712, + "repository_id": 2934, + "parent_product_id": 2145, + "root_product_id": 2285, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/15/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-Pool for x86_64 RT SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools15-debuginfo-pool-x86_64-rt-sp3", + "parent_channel_label": "sle-product-rt-15-sp3-pool-x86_64", + "product_id": 1712, + "repository_id": 2935, + "parent_product_id": 2145, + "root_product_id": 2285, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/15/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-Debuginfo-Pool for x86_64 RT SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools15-beta-updates-x86_64-rt-sp3", + "parent_channel_label": "sle-product-rt-15-sp3-pool-x86_64", + "product_id": 1928, + "repository_id": 3897, + "parent_product_id": 1712, + "root_product_id": 2285, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/15-BETA/x86_64/update/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-BETA-Updates for x86_64 RT SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools15-beta-debuginfo-updates-x86_64-rt-sp3", + "parent_channel_label": "sle-product-rt-15-sp3-pool-x86_64", + "product_id": 1928, + "repository_id": 3898, + "parent_product_id": 1712, + "root_product_id": 2285, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/15-BETA/x86_64/update_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-BETA-Debuginfo-Updates for x86_64 RT SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools15-beta-pool-x86_64-rt-sp3", + "parent_channel_label": "sle-product-rt-15-sp3-pool-x86_64", + "product_id": 1928, + "repository_id": 3908, + "parent_product_id": 1712, + "root_product_id": 2285, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/15-BETA/x86_64/product/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-BETA-Pool for x86_64 RT SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools15-beta-debuginfo-pool-x86_64-rt-sp3", + "parent_channel_label": "sle-product-rt-15-sp3-pool-x86_64", + "product_id": 1928, + "repository_id": 3909, + "parent_product_id": 1712, + "root_product_id": 2285, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/15-BETA/x86_64/product_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-BETA-Debuginfo-Pool for x86_64 RT SP3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-module-desktop-applications15-sp3-updates-x86_64-rt", + "parent_channel_label": "sle-product-rt-15-sp3-pool-x86_64", + "product_id": 2149, + "repository_id": 4654, + "parent_product_id": 2145, + "root_product_id": 2285, + "update_tag": "SLE-Module-Desktop-Applications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15-SP3/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Desktop-Applications15-SP3-Updates for x86_64 RT", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-desktop-applications15-sp3-debuginfo-updates-x86_64-rt", + "parent_channel_label": "sle-product-rt-15-sp3-pool-x86_64", + "product_id": 2149, + "repository_id": 4655, + "parent_product_id": 2145, + "root_product_id": 2285, + "update_tag": "SLE-Module-Desktop-Applications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15-SP3/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Desktop-Applications15-SP3-Debuginfo-Updates for x86_64 RT", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-desktop-applications15-sp3-pool-x86_64-rt", + "parent_channel_label": "sle-product-rt-15-sp3-pool-x86_64", + "product_id": 2149, + "repository_id": 4656, + "parent_product_id": 2145, + "root_product_id": 2285, + "update_tag": "SLE-Module-Desktop-Applications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP3/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Desktop-Applications15-SP3-Pool for x86_64 RT", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-desktop-applications15-sp3-debuginfo-pool-x86_64-rt", + "parent_channel_label": "sle-product-rt-15-sp3-pool-x86_64", + "product_id": 2149, + "repository_id": 4657, + "parent_product_id": 2145, + "root_product_id": 2285, + "update_tag": "SLE-Module-Desktop-Applications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP3/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Desktop-Applications15-SP3-Debuginfo-Pool for x86_64 RT", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-devtools15-sp3-updates-x86_64-rt", + "parent_channel_label": "sle-product-rt-15-sp3-pool-x86_64", + "product_id": 2161, + "repository_id": 4714, + "parent_product_id": 2149, + "root_product_id": 2285, + "update_tag": "SLE-Module-Development-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15-SP3/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-DevTools15-SP3-Updates for x86_64 RT", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-devtools15-sp3-debuginfo-updates-x86_64-rt", + "parent_channel_label": "sle-product-rt-15-sp3-pool-x86_64", + "product_id": 2161, + "repository_id": 4715, + "parent_product_id": 2149, + "root_product_id": 2285, + "update_tag": "SLE-Module-Development-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15-SP3/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-DevTools15-SP3-Debuginfo-Updates for x86_64 RT", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-devtools15-sp3-pool-x86_64-rt", + "parent_channel_label": "sle-product-rt-15-sp3-pool-x86_64", + "product_id": 2161, + "repository_id": 4716, + "parent_product_id": 2149, + "root_product_id": 2285, + "update_tag": "SLE-Module-Development-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP3/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-DevTools15-SP3-Pool for x86_64 RT", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-devtools15-sp3-debuginfo-pool-x86_64-rt", + "parent_channel_label": "sle-product-rt-15-sp3-pool-x86_64", + "product_id": 2161, + "repository_id": 4717, + "parent_product_id": 2149, + "root_product_id": 2285, + "update_tag": "SLE-Module-Development-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP3/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-DevTools15-SP3-Debuginfo-Pool for x86_64 RT", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-server-applications15-sp3-updates-x86_64-rt", + "parent_channel_label": "sle-product-rt-15-sp3-pool-x86_64", + "product_id": 2153, + "repository_id": 4674, + "parent_product_id": 2145, + "root_product_id": 2285, + "update_tag": "SLE-Module-Server-Applications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15-SP3/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Server-Applications15-SP3-Updates for x86_64 RT", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-server-applications15-sp3-debuginfo-updates-x86_64-rt", + "parent_channel_label": "sle-product-rt-15-sp3-pool-x86_64", + "product_id": 2153, + "repository_id": 4675, + "parent_product_id": 2145, + "root_product_id": 2285, + "update_tag": "SLE-Module-Server-Applications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15-SP3/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Server-Applications15-SP3-Debuginfo-Updates for x86_64 RT", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-server-applications15-sp3-pool-x86_64-rt", + "parent_channel_label": "sle-product-rt-15-sp3-pool-x86_64", + "product_id": 2153, + "repository_id": 4676, + "parent_product_id": 2145, + "root_product_id": 2285, + "update_tag": "SLE-Module-Server-Applications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP3/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Server-Applications15-SP3-Pool for x86_64 RT", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-server-applications15-sp3-debuginfo-pool-x86_64-rt", + "parent_channel_label": "sle-product-rt-15-sp3-pool-x86_64", + "product_id": 2153, + "repository_id": 4677, + "parent_product_id": 2145, + "root_product_id": 2285, + "update_tag": "SLE-Module-Server-Applications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP3/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Server-Applications15-SP3-Debuginfo-Pool for x86_64 RT", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-rt15-sp3-updates-x86_64", + "parent_channel_label": "sle-product-rt-15-sp3-pool-x86_64", + "product_id": 2286, + "repository_id": 5063, + "parent_product_id": 2153, + "root_product_id": 2285, + "update_tag": "SLE-Module-RT", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-RT/15-SP3/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-RT15-SP3-Updates for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-rt15-sp3-debuginfo-updates-x86_64", + "parent_channel_label": "sle-product-rt-15-sp3-pool-x86_64", + "product_id": 2286, + "repository_id": 5064, + "parent_product_id": 2153, + "root_product_id": 2285, + "update_tag": "SLE-Module-RT", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-RT/15-SP3/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-RT15-SP3-Debuginfo-Updates for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-rt15-sp3-pool-x86_64", + "parent_channel_label": "sle-product-rt-15-sp3-pool-x86_64", + "product_id": 2286, + "repository_id": 5065, + "parent_product_id": 2153, + "root_product_id": 2285, + "update_tag": "SLE-Module-RT", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-RT/15-SP3/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-RT15-SP3-Pool for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-rt15-sp3-debuginfo-pool-x86_64", + "parent_channel_label": "sle-product-rt-15-sp3-pool-x86_64", + "product_id": 2286, + "repository_id": 5066, + "parent_product_id": 2153, + "root_product_id": 2285, + "update_tag": "SLE-Module-RT", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-RT/15-SP3/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-RT15-SP3-Debuginfo-Pool for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-containers15-sp3-updates-x86_64-rt", + "parent_channel_label": "sle-product-rt-15-sp3-pool-x86_64", + "product_id": 2157, + "repository_id": 4694, + "parent_product_id": 2145, + "root_product_id": 2285, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/15-SP3/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers15-SP3-Updates for x86_64 RT", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-containers15-sp3-debuginfo-updates-x86_64-rt", + "parent_channel_label": "sle-product-rt-15-sp3-pool-x86_64", + "product_id": 2157, + "repository_id": 4695, + "parent_product_id": 2145, + "root_product_id": 2285, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/15-SP3/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers15-SP3-Debuginfo-Updates for x86_64 RT", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-containers15-sp3-pool-x86_64-rt", + "parent_channel_label": "sle-product-rt-15-sp3-pool-x86_64", + "product_id": 2157, + "repository_id": 4696, + "parent_product_id": 2145, + "root_product_id": 2285, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP3/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers15-SP3-Pool for x86_64 RT", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-containers15-sp3-debuginfo-pool-x86_64-rt", + "parent_channel_label": "sle-product-rt-15-sp3-pool-x86_64", + "product_id": 2157, + "repository_id": 4697, + "parent_product_id": 2145, + "root_product_id": 2285, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP3/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers15-SP3-Debuginfo-Pool for x86_64 RT", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-certifications-15-sp3-updates-x86_64-rt", + "parent_channel_label": "sle-product-rt-15-sp3-pool-x86_64", + "product_id": 2389, + "repository_id": 5527, + "parent_product_id": 2285, + "root_product_id": 2285, + "update_tag": "SLE-Module-Certifications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Certifications/15-SP3/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Certifications-15-SP3-Updates for x86_64 RT", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-certifications-15-sp3-debuginfo-updates-x86_64-rt", + "parent_channel_label": "sle-product-rt-15-sp3-pool-x86_64", + "product_id": 2389, + "repository_id": 5528, + "parent_product_id": 2285, + "root_product_id": 2285, + "update_tag": "SLE-Module-Certifications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Certifications/15-SP3/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Certifications-15-SP3-Debuginfo-Updates for x86_64 RT", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-certifications-15-sp3-pool-x86_64-rt", + "parent_channel_label": "sle-product-rt-15-sp3-pool-x86_64", + "product_id": 2389, + "repository_id": 5529, + "parent_product_id": 2285, + "root_product_id": 2285, + "update_tag": "SLE-Module-Certifications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Certifications/15-SP3/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Certifications-15-SP3-Pool for x86_64 RT", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-certifications-15-sp3-debuginfo-pool-x86_64-rt", + "parent_channel_label": "sle-product-rt-15-sp3-pool-x86_64", + "product_id": 2389, + "repository_id": 5530, + "parent_product_id": 2285, + "root_product_id": 2285, + "update_tag": "SLE-Module-Certifications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Certifications/15-SP3/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Certifications-15-SP3-Debuginfo-Pool for x86_64 RT", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-microos-5.1-updates-s390x", + "parent_channel_label": "suse-microos-5.1-pool-s390x", + "product_id": 2287, + "repository_id": 5070, + "parent_product_id": null, + "root_product_id": 2287, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Updates/SUSE-MicroOS/5.1/s390x/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-MicroOS-5.1-Updates for s390x", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-microos-5.1-debuginfo-updates-s390x", + "parent_channel_label": "suse-microos-5.1-pool-s390x", + "product_id": 2287, + "repository_id": 5071, + "parent_product_id": null, + "root_product_id": 2287, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Updates/SUSE-MicroOS/5.1/s390x/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SUSE-MicroOS-5.1-Debuginfo-Updates for s390x", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-microos-5.1-pool-s390x", + "parent_channel_label": null, + "product_id": 2287, + "repository_id": 5072, + "parent_product_id": null, + "root_product_id": 2287, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Products/SUSE-MicroOS/5.1/s390x/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-MicroOS-5.1-Pool for s390x", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-microos-5.1-debuginfo-pool-s390x", + "parent_channel_label": "suse-microos-5.1-pool-s390x", + "product_id": 2287, + "repository_id": 5073, + "parent_product_id": null, + "root_product_id": 2287, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Products/SUSE-MicroOS/5.1/s390x/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SUSE-MicroOS-5.1-Debuginfo-Pool for s390x", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-live-patching15-sp3-updates-s390x-micro-5.1", + "parent_channel_label": "suse-microos-5.1-pool-s390x", + "product_id": 2186, + "repository_id": 4839, + "parent_product_id": 2287, + "root_product_id": 2287, + "update_tag": "SLE-Module-Live-Patching", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Live-Patching/15-SP3/s390x/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Live-Patching15-SP3-Updates for s390x Micro 5.1", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-live-patching15-sp3-debuginfo-updates-s390x-micro-5.1", + "parent_channel_label": "suse-microos-5.1-pool-s390x", + "product_id": 2186, + "repository_id": 4840, + "parent_product_id": 2287, + "root_product_id": 2287, + "update_tag": "SLE-Module-Live-Patching", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Live-Patching/15-SP3/s390x/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Live-Patching15-SP3-Debuginfo-Updates for s390x Micro 5.1", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-live-patching15-sp3-pool-s390x-micro-5.1", + "parent_channel_label": "suse-microos-5.1-pool-s390x", + "product_id": 2186, + "repository_id": 4841, + "parent_product_id": 2287, + "root_product_id": 2287, + "update_tag": "SLE-Module-Live-Patching", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Live-Patching/15-SP3/s390x/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Live-Patching15-SP3-Pool for s390x Micro 5.1", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-live-patching15-sp3-debuginfo-pool-s390x-micro-5.1", + "parent_channel_label": "suse-microos-5.1-pool-s390x", + "product_id": 2186, + "repository_id": 4842, + "parent_product_id": 2287, + "root_product_id": 2287, + "update_tag": "SLE-Module-Live-Patching", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Live-Patching/15-SP3/s390x/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Live-Patching15-SP3-Debuginfo-Pool for s390x Micro 5.1", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-packagehub-15-sp3-backports-pool-s390x-micro-5.1", + "parent_channel_label": "suse-microos-5.1-pool-s390x", + "product_id": 2190, + "repository_id": 4865, + "parent_product_id": 2287, + "root_product_id": 2287, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-15-SP3_s390x/standard/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-15-SP3-Backports-Pool for s390x Micro 5.1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-packagehub-15-sp3-backports-debuginfo-s390x-micro-5.1", + "parent_channel_label": "suse-microos-5.1-pool-s390x", + "product_id": 2190, + "repository_id": 4866, + "parent_product_id": 2287, + "root_product_id": 2287, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-15-SP3_s390x/standard_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-15-SP3-Backports-Debuginfo for s390x Micro 5.1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-packagehub-subpackages15-sp3-updates-s390x-micro-5.1", + "parent_channel_label": "suse-microos-5.1-pool-s390x", + "product_id": 2190, + "repository_id": 4867, + "parent_product_id": 2287, + "root_product_id": 2287, + "update_tag": "SLE-Module-Packagehub-Subpackages", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP3/s390x/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Packagehub-Subpackages15-SP3-Updates for s390x Micro 5.1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-packagehub-subpackages15-sp3-debuginfo-updates-s390x-micro-5.1", + "parent_channel_label": "suse-microos-5.1-pool-s390x", + "product_id": 2190, + "repository_id": 4868, + "parent_product_id": 2287, + "root_product_id": 2287, + "update_tag": "SLE-Module-Packagehub-Subpackages", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP3/s390x/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Packagehub-Subpackages15-SP3-Debuginfo-Updates for s390x Micro 5.1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-packagehub-15-sp3-pool-s390x-micro-5.1", + "parent_channel_label": "suse-microos-5.1-pool-s390x", + "product_id": 2190, + "repository_id": 4869, + "parent_product_id": 2287, + "root_product_id": 2287, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-15-SP3_s390x/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-15-SP3-Pool for s390x Micro 5.1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-packagehub-subpackages15-sp3-pool-s390x-micro-5.1", + "parent_channel_label": "suse-microos-5.1-pool-s390x", + "product_id": 2190, + "repository_id": 4870, + "parent_product_id": 2287, + "root_product_id": 2287, + "update_tag": "SLE-Module-Packagehub-Subpackages", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP3/s390x/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Packagehub-Subpackages15-SP3-Pool for s390x Micro 5.1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-packagehub-subpackages15-sp3-debuginfo-pool-s390x-micro-5.1", + "parent_channel_label": "suse-microos-5.1-pool-s390x", + "product_id": 2190, + "repository_id": 4871, + "parent_product_id": 2287, + "root_product_id": 2287, + "update_tag": "SLE-Module-Packagehub-Subpackages", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP3/s390x/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Packagehub-Subpackages15-SP3-Debuginfo-Pool for s390x Micro 5.1", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-manager-tools-for-micro5-updates-s390x-5.1", + "parent_channel_label": "suse-microos-5.1-pool-s390x", + "product_id": 2550, + "repository_id": 6037, + "parent_product_id": 2287, + "root_product_id": 2287, + "update_tag": "SLE-Manager-Tools-For-Micro-5", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools-For-Micro/5/s390x/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools-For-Micro5-Updates for s390x 5.1", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools-for-micro5-debuginfo-updates-s390x-5.1", + "parent_channel_label": "suse-microos-5.1-pool-s390x", + "product_id": 2550, + "repository_id": 6038, + "parent_product_id": 2287, + "root_product_id": 2287, + "update_tag": "SLE-Manager-Tools-For-Micro-5", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools-For-Micro/5/s390x/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools-For-Micro5-Debuginfo-Updates for s390x 5.1", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools-for-micro5-pool-s390x-5.1", + "parent_channel_label": "suse-microos-5.1-pool-s390x", + "product_id": 2550, + "repository_id": 6039, + "parent_product_id": 2287, + "root_product_id": 2287, + "update_tag": "SLE-Manager-Tools-For-Micro-5", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools-For-Micro/5/s390x/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools-For-Micro5-Pool for s390x 5.1", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools-for-micro5-debuginfo-pool-s390x-5.1", + "parent_channel_label": "suse-microos-5.1-pool-s390x", + "product_id": 2550, + "repository_id": 6040, + "parent_product_id": 2287, + "root_product_id": 2287, + "update_tag": "SLE-Manager-Tools-For-Micro-5", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools-For-Micro/5/s390x/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools-For-Micro5-Debuginfo-Pool for s390x 5.1", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools-beta-for-micro5-updates-s390x-5.1", + "parent_channel_label": "suse-microos-5.1-pool-s390x", + "product_id": 2553, + "repository_id": 6052, + "parent_product_id": 2550, + "root_product_id": 2287, + "update_tag": "SLE-Manager-Tools-Beta-For-Micro-5", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools-Beta-For-Micro/5/s390x/update/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools-Beta-For-Micro5-Updates for s390x 5.1", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools-beta-for-micro5-debuginfo-updates-s390x-5.1", + "parent_channel_label": "suse-microos-5.1-pool-s390x", + "product_id": 2553, + "repository_id": 6053, + "parent_product_id": 2550, + "root_product_id": 2287, + "update_tag": "SLE-Manager-Tools-Beta-For-Micro-5", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools-Beta-For-Micro/5/s390x/update_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools-Beta-For-Micro5-Debuginfo-Updates for s390x 5.1", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools-beta-for-micro5-pool-s390x-5.1", + "parent_channel_label": "suse-microos-5.1-pool-s390x", + "product_id": 2553, + "repository_id": 6054, + "parent_product_id": 2550, + "root_product_id": 2287, + "update_tag": "SLE-Manager-Tools-Beta-For-Micro-5", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools-Beta-For-Micro/5/s390x/product/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools-Beta-For-Micro5-Pool for s390x 5.1", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools-beta-for-micro5-debuginfo-pool-s390x-5.1", + "parent_channel_label": "suse-microos-5.1-pool-s390x", + "product_id": 2553, + "repository_id": 6055, + "parent_product_id": 2550, + "root_product_id": 2287, + "update_tag": "SLE-Manager-Tools-Beta-For-Micro-5", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools-Beta-For-Micro/5/s390x/product_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools-Beta-For-Micro5-Debuginfo-Pool for s390x 5.1", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-product-sles15-sp4-updates-aarch64", + "parent_channel_label": "sle-product-sles15-sp4-pool-aarch64", + "product_id": 2289, + "repository_id": 5082, + "parent_product_id": null, + "root_product_id": 2289, + "update_tag": "SLE-Product-SLES", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-SLES/15-SP4/aarch64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-SLES15-SP4-Updates for aarch64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-sles15-sp4-debuginfo-updates-aarch64", + "parent_channel_label": "sle-product-sles15-sp4-pool-aarch64", + "product_id": 2289, + "repository_id": 5083, + "parent_product_id": null, + "root_product_id": 2289, + "update_tag": "SLE-Product-SLES", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-SLES/15-SP4/aarch64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-SLES15-SP4-Debuginfo-Updates for aarch64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle15-sp4-installer-updates-aarch64", + "parent_channel_label": "sle-product-sles15-sp4-pool-aarch64", + "product_id": 2289, + "repository_id": 5084, + "parent_product_id": null, + "root_product_id": 2289, + "update_tag": "SLE-INSTALLER", + "url": "https://updates.suse.com/SUSE/Updates/SLE-INSTALLER/15-SP4/aarch64/update/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE15-SP4-Installer-Updates for aarch64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-sles15-sp4-pool-aarch64", + "parent_channel_label": null, + "product_id": 2289, + "repository_id": 5085, + "parent_product_id": null, + "root_product_id": 2289, + "update_tag": "SLE-Product-SLES", + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-SLES/15-SP4/aarch64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-SLES15-SP4-Pool for aarch64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-sles15-sp4-debuginfo-pool-aarch64", + "parent_channel_label": "sle-product-sles15-sp4-pool-aarch64", + "product_id": 2289, + "repository_id": 5086, + "parent_product_id": null, + "root_product_id": 2289, + "update_tag": "SLE-Product-SLES", + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-SLES/15-SP4/aarch64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-SLES15-SP4-Debuginfo-Pool for aarch64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-basesystem15-sp4-updates-aarch64", + "parent_channel_label": "sle-product-sles15-sp4-pool-aarch64", + "product_id": 2296, + "repository_id": 5122, + "parent_product_id": 2289, + "root_product_id": 2289, + "update_tag": "SLE-Module-Basesystem", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15-SP4/aarch64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Basesystem15-SP4-Updates for aarch64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-basesystem15-sp4-debuginfo-updates-aarch64", + "parent_channel_label": "sle-product-sles15-sp4-pool-aarch64", + "product_id": 2296, + "repository_id": 5123, + "parent_product_id": 2289, + "root_product_id": 2289, + "update_tag": "SLE-Module-Basesystem", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15-SP4/aarch64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Basesystem15-SP4-Debuginfo-Updates for aarch64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-basesystem15-sp4-pool-aarch64", + "parent_channel_label": "sle-product-sles15-sp4-pool-aarch64", + "product_id": 2296, + "repository_id": 5124, + "parent_product_id": 2289, + "root_product_id": 2289, + "update_tag": "SLE-Module-Basesystem", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP4/aarch64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Basesystem15-SP4-Pool for aarch64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-basesystem15-sp4-debuginfo-pool-aarch64", + "parent_channel_label": "sle-product-sles15-sp4-pool-aarch64", + "product_id": 2296, + "repository_id": 5125, + "parent_product_id": 2289, + "root_product_id": 2289, + "update_tag": "SLE-Module-Basesystem", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP4/aarch64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Basesystem15-SP4-Debuginfo-Pool for aarch64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-manager-tools15-updates-aarch64-sp4", + "parent_channel_label": "sle-product-sles15-sp4-pool-aarch64", + "product_id": 1709, + "repository_id": 2917, + "parent_product_id": 2296, + "root_product_id": 2289, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/15/aarch64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-Updates for aarch64 SP4", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools15-debuginfo-updates-aarch64-sp4", + "parent_channel_label": "sle-product-sles15-sp4-pool-aarch64", + "product_id": 1709, + "repository_id": 2918, + "parent_product_id": 2296, + "root_product_id": 2289, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/15/aarch64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-Debuginfo-Updates for aarch64 SP4", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools15-pool-aarch64-sp4", + "parent_channel_label": "sle-product-sles15-sp4-pool-aarch64", + "product_id": 1709, + "repository_id": 2919, + "parent_product_id": 2296, + "root_product_id": 2289, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/15/aarch64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-Pool for aarch64 SP4", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools15-debuginfo-pool-aarch64-sp4", + "parent_channel_label": "sle-product-sles15-sp4-pool-aarch64", + "product_id": 1709, + "repository_id": 2920, + "parent_product_id": 2296, + "root_product_id": 2289, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/15/aarch64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-Debuginfo-Pool for aarch64 SP4", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools15-beta-updates-aarch64-sp4", + "parent_channel_label": "sle-product-sles15-sp4-pool-aarch64", + "product_id": 1925, + "repository_id": 3891, + "parent_product_id": 1709, + "root_product_id": 2289, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/15-BETA/aarch64/update/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-BETA-Updates for aarch64 SP4", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools15-beta-debuginfo-updates-aarch64-sp4", + "parent_channel_label": "sle-product-sles15-sp4-pool-aarch64", + "product_id": 1925, + "repository_id": 3892, + "parent_product_id": 1709, + "root_product_id": 2289, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/15-BETA/aarch64/update_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-BETA-Debuginfo-Updates for aarch64 SP4", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools15-beta-pool-aarch64-sp4", + "parent_channel_label": "sle-product-sles15-sp4-pool-aarch64", + "product_id": 1925, + "repository_id": 3899, + "parent_product_id": 1709, + "root_product_id": 2289, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/15-BETA/aarch64/product/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-BETA-Pool for aarch64 SP4", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools15-beta-debuginfo-pool-aarch64-sp4", + "parent_channel_label": "sle-product-sles15-sp4-pool-aarch64", + "product_id": 1925, + "repository_id": 3900, + "parent_product_id": 1709, + "root_product_id": 2289, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/15-BETA/aarch64/product_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-BETA-Debuginfo-Pool for aarch64 SP4", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-module-desktop-applications15-sp4-updates-aarch64", + "parent_channel_label": "sle-product-sles15-sp4-pool-aarch64", + "product_id": 2300, + "repository_id": 5142, + "parent_product_id": 2296, + "root_product_id": 2289, + "update_tag": "SLE-Module-Desktop-Applications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15-SP4/aarch64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Desktop-Applications15-SP4-Updates for aarch64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-desktop-applications15-sp4-debuginfo-updates-aarch64", + "parent_channel_label": "sle-product-sles15-sp4-pool-aarch64", + "product_id": 2300, + "repository_id": 5143, + "parent_product_id": 2296, + "root_product_id": 2289, + "update_tag": "SLE-Module-Desktop-Applications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15-SP4/aarch64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Desktop-Applications15-SP4-Debuginfo-Updates for aarch64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-desktop-applications15-sp4-pool-aarch64", + "parent_channel_label": "sle-product-sles15-sp4-pool-aarch64", + "product_id": 2300, + "repository_id": 5144, + "parent_product_id": 2296, + "root_product_id": 2289, + "update_tag": "SLE-Module-Desktop-Applications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP4/aarch64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Desktop-Applications15-SP4-Pool for aarch64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-desktop-applications15-sp4-debuginfo-pool-aarch64", + "parent_channel_label": "sle-product-sles15-sp4-pool-aarch64", + "product_id": 2300, + "repository_id": 5145, + "parent_product_id": 2296, + "root_product_id": 2289, + "update_tag": "SLE-Module-Desktop-Applications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP4/aarch64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Desktop-Applications15-SP4-Debuginfo-Pool for aarch64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-devtools15-sp4-updates-aarch64", + "parent_channel_label": "sle-product-sles15-sp4-pool-aarch64", + "product_id": 2312, + "repository_id": 5202, + "parent_product_id": 2300, + "root_product_id": 2289, + "update_tag": "SLE-Module-Development-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15-SP4/aarch64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-DevTools15-SP4-Updates for aarch64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-devtools15-sp4-debuginfo-updates-aarch64", + "parent_channel_label": "sle-product-sles15-sp4-pool-aarch64", + "product_id": 2312, + "repository_id": 5203, + "parent_product_id": 2300, + "root_product_id": 2289, + "update_tag": "SLE-Module-Development-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15-SP4/aarch64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-DevTools15-SP4-Debuginfo-Updates for aarch64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-devtools15-sp4-pool-aarch64", + "parent_channel_label": "sle-product-sles15-sp4-pool-aarch64", + "product_id": 2312, + "repository_id": 5204, + "parent_product_id": 2300, + "root_product_id": 2289, + "update_tag": "SLE-Module-Development-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP4/aarch64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-DevTools15-SP4-Pool for aarch64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-devtools15-sp4-debuginfo-pool-aarch64", + "parent_channel_label": "sle-product-sles15-sp4-pool-aarch64", + "product_id": 2312, + "repository_id": 5205, + "parent_product_id": 2300, + "root_product_id": 2289, + "update_tag": "SLE-Module-Development-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP4/aarch64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-DevTools15-SP4-Debuginfo-Pool for aarch64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-nvidia-compute-15-updates-aarch64-we-sp4", + "parent_channel_label": "sle-product-sles15-sp4-pool-aarch64", + "product_id": 2130, + "repository_id": 4560, + "parent_product_id": 2312, + "root_product_id": 2289, + "update_tag": "SLE-Module-NVIDIA-Compute", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-NVIDIA-Compute/15/aarch64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-NVIDIA-Compute-15-Updates for aarch64 WE SP4", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-nvidia-compute-15-pool-aarch64-we-sp4", + "parent_channel_label": "sle-product-sles15-sp4-pool-aarch64", + "product_id": 2130, + "repository_id": 4561, + "parent_product_id": 2312, + "root_product_id": 2289, + "update_tag": "SLE-Module-NVIDIA-Compute", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-NVIDIA-Compute/15/aarch64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-NVIDIA-Compute-15-Pool for aarch64 WE SP4", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "nvidia-compute-sle-15-aarch64-we-sp4", + "parent_channel_label": "sle-product-sles15-sp4-pool-aarch64", + "product_id": 2130, + "repository_id": 4562, + "parent_product_id": 2312, + "root_product_id": 2289, + "update_tag": null, + "url": "https://developer.download.nvidia.com/compute/cuda/repos/sles15/sbsa/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "NVIDIA-Compute-SLE-15 for aarch64 WE SP4", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-server-applications15-sp4-updates-aarch64", + "parent_channel_label": "sle-product-sles15-sp4-pool-aarch64", + "product_id": 2304, + "repository_id": 5162, + "parent_product_id": 2296, + "root_product_id": 2289, + "update_tag": "SLE-Module-Server-Applications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15-SP4/aarch64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Server-Applications15-SP4-Updates for aarch64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-server-applications15-sp4-debuginfo-updates-aarch64", + "parent_channel_label": "sle-product-sles15-sp4-pool-aarch64", + "product_id": 2304, + "repository_id": 5163, + "parent_product_id": 2296, + "root_product_id": 2289, + "update_tag": "SLE-Module-Server-Applications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15-SP4/aarch64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Server-Applications15-SP4-Debuginfo-Updates for aarch64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-server-applications15-sp4-pool-aarch64", + "parent_channel_label": "sle-product-sles15-sp4-pool-aarch64", + "product_id": 2304, + "repository_id": 5164, + "parent_product_id": 2296, + "root_product_id": 2289, + "update_tag": "SLE-Module-Server-Applications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP4/aarch64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Server-Applications15-SP4-Pool for aarch64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-server-applications15-sp4-debuginfo-pool-aarch64", + "parent_channel_label": "sle-product-sles15-sp4-pool-aarch64", + "product_id": 2304, + "repository_id": 5165, + "parent_product_id": 2296, + "root_product_id": 2289, + "update_tag": "SLE-Module-Server-Applications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP4/aarch64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Server-Applications15-SP4-Debuginfo-Pool for aarch64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting15-sp4-updates-aarch64", + "parent_channel_label": "sle-product-sles15-sp4-pool-aarch64", + "product_id": 2316, + "repository_id": 5222, + "parent_product_id": 2304, + "root_product_id": 2289, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/15-SP4/aarch64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Web-Scripting15-SP4-Updates for aarch64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting15-sp4-debuginfo-updates-aarch64", + "parent_channel_label": "sle-product-sles15-sp4-pool-aarch64", + "product_id": 2316, + "repository_id": 5223, + "parent_product_id": 2304, + "root_product_id": 2289, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/15-SP4/aarch64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Web-Scripting15-SP4-Debuginfo-Updates for aarch64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting15-sp4-pool-aarch64", + "parent_channel_label": "sle-product-sles15-sp4-pool-aarch64", + "product_id": 2316, + "repository_id": 5224, + "parent_product_id": 2304, + "root_product_id": 2289, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP4/aarch64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Web-Scripting15-SP4-Pool for aarch64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting15-sp4-debuginfo-pool-aarch64", + "parent_channel_label": "sle-product-sles15-sp4-pool-aarch64", + "product_id": 2316, + "repository_id": 5225, + "parent_product_id": 2304, + "root_product_id": 2289, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP4/aarch64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Web-Scripting15-SP4-Debuginfo-Pool for aarch64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-legacy15-sp4-updates-aarch64", + "parent_channel_label": "sle-product-sles15-sp4-pool-aarch64", + "product_id": 2320, + "repository_id": 5242, + "parent_product_id": 2304, + "root_product_id": 2289, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/15-SP4/aarch64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy15-SP4-Updates for aarch64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-legacy15-sp4-debuginfo-updates-aarch64", + "parent_channel_label": "sle-product-sles15-sp4-pool-aarch64", + "product_id": 2320, + "repository_id": 5243, + "parent_product_id": 2304, + "root_product_id": 2289, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/15-SP4/aarch64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy15-SP4-Debuginfo-Updates for aarch64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-legacy15-sp4-pool-aarch64", + "parent_channel_label": "sle-product-sles15-sp4-pool-aarch64", + "product_id": 2320, + "repository_id": 5244, + "parent_product_id": 2304, + "root_product_id": 2289, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15-SP4/aarch64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy15-SP4-Pool for aarch64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-legacy15-sp4-debuginfo-pool-aarch64", + "parent_channel_label": "sle-product-sles15-sp4-pool-aarch64", + "product_id": 2320, + "repository_id": 5245, + "parent_product_id": 2304, + "root_product_id": 2289, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15-SP4/aarch64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy15-SP4-Debuginfo-Pool for aarch64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud15-sp4-updates-aarch64", + "parent_channel_label": "sle-product-sles15-sp4-pool-aarch64", + "product_id": 2324, + "repository_id": 5262, + "parent_product_id": 2304, + "root_product_id": 2289, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/15-SP4/aarch64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud15-SP4-Updates for aarch64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud15-sp4-debuginfo-updates-aarch64", + "parent_channel_label": "sle-product-sles15-sp4-pool-aarch64", + "product_id": 2324, + "repository_id": 5263, + "parent_product_id": 2304, + "root_product_id": 2289, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/15-SP4/aarch64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud15-SP4-Debuginfo-Updates for aarch64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud15-sp4-pool-aarch64", + "parent_channel_label": "sle-product-sles15-sp4-pool-aarch64", + "product_id": 2324, + "repository_id": 5264, + "parent_product_id": 2304, + "root_product_id": 2289, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP4/aarch64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud15-SP4-Pool for aarch64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud15-sp4-debuginfo-pool-aarch64", + "parent_channel_label": "sle-product-sles15-sp4-pool-aarch64", + "product_id": 2324, + "repository_id": 5265, + "parent_product_id": 2304, + "root_product_id": 2289, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP4/aarch64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud15-SP4-Debuginfo-Pool for aarch64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-ha15-sp4-updates-aarch64", + "parent_channel_label": "sle-product-sles15-sp4-pool-aarch64", + "product_id": 2337, + "repository_id": 5327, + "parent_product_id": 2304, + "root_product_id": 2289, + "update_tag": "SLE-Product-HA", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-HA/15-SP4/aarch64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HA15-SP4-Updates for aarch64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-ha15-sp4-debuginfo-updates-aarch64", + "parent_channel_label": "sle-product-sles15-sp4-pool-aarch64", + "product_id": 2337, + "repository_id": 5328, + "parent_product_id": 2304, + "root_product_id": 2289, + "update_tag": "SLE-Product-HA", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-HA/15-SP4/aarch64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HA15-SP4-Debuginfo-Updates for aarch64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-ha15-sp4-pool-aarch64", + "parent_channel_label": "sle-product-sles15-sp4-pool-aarch64", + "product_id": 2337, + "repository_id": 5329, + "parent_product_id": 2304, + "root_product_id": 2289, + "update_tag": "SLE-Product-HA", + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP4/aarch64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HA15-SP4-Pool for aarch64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-ha15-sp4-debuginfo-pool-aarch64", + "parent_channel_label": "sle-product-sles15-sp4-pool-aarch64", + "product_id": 2337, + "repository_id": 5330, + "parent_product_id": 2304, + "root_product_id": 2289, + "update_tag": "SLE-Product-HA", + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP4/aarch64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HA15-SP4-Debuginfo-Pool for aarch64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-containers15-sp4-updates-aarch64", + "parent_channel_label": "sle-product-sles15-sp4-pool-aarch64", + "product_id": 2308, + "repository_id": 5182, + "parent_product_id": 2296, + "root_product_id": 2289, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/15-SP4/aarch64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers15-SP4-Updates for aarch64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-containers15-sp4-debuginfo-updates-aarch64", + "parent_channel_label": "sle-product-sles15-sp4-pool-aarch64", + "product_id": 2308, + "repository_id": 5183, + "parent_product_id": 2296, + "root_product_id": 2289, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/15-SP4/aarch64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers15-SP4-Debuginfo-Updates for aarch64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-containers15-sp4-pool-aarch64", + "parent_channel_label": "sle-product-sles15-sp4-pool-aarch64", + "product_id": 2308, + "repository_id": 5184, + "parent_product_id": 2296, + "root_product_id": 2289, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP4/aarch64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers15-SP4-Pool for aarch64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-containers15-sp4-debuginfo-pool-aarch64", + "parent_channel_label": "sle-product-sles15-sp4-pool-aarch64", + "product_id": 2308, + "repository_id": 5185, + "parent_product_id": 2296, + "root_product_id": 2289, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP4/aarch64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers15-SP4-Debuginfo-Pool for aarch64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-transactional-server15-sp4-updates-aarch64", + "parent_channel_label": "sle-product-sles15-sp4-pool-aarch64", + "product_id": 2328, + "repository_id": 5282, + "parent_product_id": 2296, + "root_product_id": 2289, + "update_tag": "SLE-Module-Transactional-Server", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Transactional-Server/15-SP4/aarch64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Transactional-Server15-SP4-Updates for aarch64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-transactional-server15-sp4-debuginfo-updates-aarch64", + "parent_channel_label": "sle-product-sles15-sp4-pool-aarch64", + "product_id": 2328, + "repository_id": 5283, + "parent_product_id": 2296, + "root_product_id": 2289, + "update_tag": "SLE-Module-Transactional-Server", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Transactional-Server/15-SP4/aarch64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Transactional-Server15-SP4-Debuginfo-Updates for aarch64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-transactional-server15-sp4-pool-aarch64", + "parent_channel_label": "sle-product-sles15-sp4-pool-aarch64", + "product_id": 2328, + "repository_id": 5284, + "parent_product_id": 2296, + "root_product_id": 2289, + "update_tag": "SLE-Module-Transactional-Server", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Transactional-Server/15-SP4/aarch64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Transactional-Server15-SP4-Pool for aarch64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-transactional-server15-sp4-debuginfo-pool-aarch64", + "parent_channel_label": "sle-product-sles15-sp4-pool-aarch64", + "product_id": 2328, + "repository_id": 5285, + "parent_product_id": 2296, + "root_product_id": 2289, + "update_tag": "SLE-Module-Transactional-Server", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Transactional-Server/15-SP4/aarch64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Transactional-Server15-SP4-Debuginfo-Pool for aarch64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-packagehub-15-sp4-backports-pool-aarch64", + "parent_channel_label": "sle-product-sles15-sp4-pool-aarch64", + "product_id": 2344, + "repository_id": 5364, + "parent_product_id": 2296, + "root_product_id": 2289, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-15-SP4_aarch64/standard/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-15-SP4-Backports-Pool for aarch64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-packagehub-15-sp4-backports-debuginfo-aarch64", + "parent_channel_label": "sle-product-sles15-sp4-pool-aarch64", + "product_id": 2344, + "repository_id": 5365, + "parent_product_id": 2296, + "root_product_id": 2289, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-15-SP4_aarch64/standard_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-15-SP4-Backports-Debuginfo for aarch64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-packagehub-subpackages15-sp4-updates-aarch64", + "parent_channel_label": "sle-product-sles15-sp4-pool-aarch64", + "product_id": 2344, + "repository_id": 5366, + "parent_product_id": 2296, + "root_product_id": 2289, + "update_tag": "SLE-Module-Packagehub-Subpackages", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP4/aarch64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Packagehub-Subpackages15-SP4-Updates for aarch64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-packagehub-subpackages15-sp4-debuginfo-updates-aarch64", + "parent_channel_label": "sle-product-sles15-sp4-pool-aarch64", + "product_id": 2344, + "repository_id": 5367, + "parent_product_id": 2296, + "root_product_id": 2289, + "update_tag": "SLE-Module-Packagehub-Subpackages", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP4/aarch64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Packagehub-Subpackages15-SP4-Debuginfo-Updates for aarch64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-packagehub-15-sp4-pool-aarch64", + "parent_channel_label": "sle-product-sles15-sp4-pool-aarch64", + "product_id": 2344, + "repository_id": 5368, + "parent_product_id": 2296, + "root_product_id": 2289, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-15-SP4_aarch64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-15-SP4-Pool for aarch64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-packagehub-subpackages15-sp4-pool-aarch64", + "parent_channel_label": "sle-product-sles15-sp4-pool-aarch64", + "product_id": 2344, + "repository_id": 5369, + "parent_product_id": 2296, + "root_product_id": 2289, + "update_tag": "SLE-Module-Packagehub-Subpackages", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP4/aarch64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Packagehub-Subpackages15-SP4-Pool for aarch64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-packagehub-subpackages15-sp4-debuginfo-pool-aarch64", + "parent_channel_label": "sle-product-sles15-sp4-pool-aarch64", + "product_id": 2344, + "repository_id": 5370, + "parent_product_id": 2296, + "root_product_id": 2289, + "update_tag": "SLE-Module-Packagehub-Subpackages", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP4/aarch64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Packagehub-Subpackages15-SP4-Debuginfo-Pool for aarch64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-python3-15-sp4-updates-aarch64", + "parent_channel_label": "sle-product-sles15-sp4-pool-aarch64", + "product_id": 2402, + "repository_id": 5567, + "parent_product_id": 2296, + "root_product_id": 2289, + "update_tag": "SLE-Module-Python3", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Python3/15-SP4/aarch64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Python3-15-SP4-Updates for aarch64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-python3-15-sp4-debuginfo-updates-aarch64", + "parent_channel_label": "sle-product-sles15-sp4-pool-aarch64", + "product_id": 2402, + "repository_id": 5568, + "parent_product_id": 2296, + "root_product_id": 2289, + "update_tag": "SLE-Module-Python3", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Python3/15-SP4/aarch64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Python3-15-SP4-Debuginfo-Updates for aarch64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-python3-15-sp4-pool-aarch64", + "parent_channel_label": "sle-product-sles15-sp4-pool-aarch64", + "product_id": 2402, + "repository_id": 5569, + "parent_product_id": 2296, + "root_product_id": 2289, + "update_tag": "SLE-Module-Python3", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Python3/15-SP4/aarch64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Python3-15-SP4-Pool for aarch64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-python3-15-sp4-debuginfo-pool-aarch64", + "parent_channel_label": "sle-product-sles15-sp4-pool-aarch64", + "product_id": 2402, + "repository_id": 5570, + "parent_product_id": 2296, + "root_product_id": 2289, + "update_tag": "SLE-Module-Python3", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Python3/15-SP4/aarch64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Python3-15-SP4-Debuginfo-Pool for aarch64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-certifications-15-sp4-updates-aarch64", + "parent_channel_label": "sle-product-sles15-sp4-pool-aarch64", + "product_id": 2390, + "repository_id": 5532, + "parent_product_id": 2289, + "root_product_id": 2289, + "update_tag": "SLE-Module-Certifications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Certifications/15-SP4/aarch64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Certifications-15-SP4-Updates for aarch64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-certifications-15-sp4-debuginfo-updates-aarch64", + "parent_channel_label": "sle-product-sles15-sp4-pool-aarch64", + "product_id": 2390, + "repository_id": 5533, + "parent_product_id": 2289, + "root_product_id": 2289, + "update_tag": "SLE-Module-Certifications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Certifications/15-SP4/aarch64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Certifications-15-SP4-Debuginfo-Updates for aarch64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-certifications-15-sp4-pool-aarch64", + "parent_channel_label": "sle-product-sles15-sp4-pool-aarch64", + "product_id": 2390, + "repository_id": 5534, + "parent_product_id": 2289, + "root_product_id": 2289, + "update_tag": "SLE-Module-Certifications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Certifications/15-SP4/aarch64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Certifications-15-SP4-Pool for aarch64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-certifications-15-sp4-debuginfo-pool-aarch64", + "parent_channel_label": "sle-product-sles15-sp4-pool-aarch64", + "product_id": 2390, + "repository_id": 5535, + "parent_product_id": 2289, + "root_product_id": 2289, + "update_tag": "SLE-Module-Certifications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Certifications/15-SP4/aarch64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Certifications-15-SP4-Debuginfo-Pool for aarch64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-sles15-sp4-updates-ppc64le", + "parent_channel_label": "sle-product-sles15-sp4-pool-ppc64le", + "product_id": 2290, + "repository_id": 5088, + "parent_product_id": null, + "root_product_id": 2290, + "update_tag": "SLE-Product-SLES", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-SLES/15-SP4/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-SLES15-SP4-Updates for ppc64le", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-sles15-sp4-debuginfo-updates-ppc64le", + "parent_channel_label": "sle-product-sles15-sp4-pool-ppc64le", + "product_id": 2290, + "repository_id": 5089, + "parent_product_id": null, + "root_product_id": 2290, + "update_tag": "SLE-Product-SLES", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-SLES/15-SP4/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-SLES15-SP4-Debuginfo-Updates for ppc64le", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle15-sp4-installer-updates-ppc64le", + "parent_channel_label": "sle-product-sles15-sp4-pool-ppc64le", + "product_id": 2290, + "repository_id": 5090, + "parent_product_id": null, + "root_product_id": 2290, + "update_tag": "SLE-INSTALLER", + "url": "https://updates.suse.com/SUSE/Updates/SLE-INSTALLER/15-SP4/ppc64le/update/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE15-SP4-Installer-Updates for ppc64le", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-sles15-sp4-pool-ppc64le", + "parent_channel_label": null, + "product_id": 2290, + "repository_id": 5091, + "parent_product_id": null, + "root_product_id": 2290, + "update_tag": "SLE-Product-SLES", + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-SLES/15-SP4/ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-SLES15-SP4-Pool for ppc64le", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-sles15-sp4-debuginfo-pool-ppc64le", + "parent_channel_label": "sle-product-sles15-sp4-pool-ppc64le", + "product_id": 2290, + "repository_id": 5092, + "parent_product_id": null, + "root_product_id": 2290, + "update_tag": "SLE-Product-SLES", + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-SLES/15-SP4/ppc64le/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-SLES15-SP4-Debuginfo-Pool for ppc64le", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-basesystem15-sp4-updates-ppc64le", + "parent_channel_label": "sle-product-sles15-sp4-pool-ppc64le", + "product_id": 2297, + "repository_id": 5127, + "parent_product_id": 2290, + "root_product_id": 2290, + "update_tag": "SLE-Module-Basesystem", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15-SP4/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Basesystem15-SP4-Updates for ppc64le", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-basesystem15-sp4-debuginfo-updates-ppc64le", + "parent_channel_label": "sle-product-sles15-sp4-pool-ppc64le", + "product_id": 2297, + "repository_id": 5128, + "parent_product_id": 2290, + "root_product_id": 2290, + "update_tag": "SLE-Module-Basesystem", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15-SP4/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Basesystem15-SP4-Debuginfo-Updates for ppc64le", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-basesystem15-sp4-pool-ppc64le", + "parent_channel_label": "sle-product-sles15-sp4-pool-ppc64le", + "product_id": 2297, + "repository_id": 5129, + "parent_product_id": 2290, + "root_product_id": 2290, + "update_tag": "SLE-Module-Basesystem", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP4/ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Basesystem15-SP4-Pool for ppc64le", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-basesystem15-sp4-debuginfo-pool-ppc64le", + "parent_channel_label": "sle-product-sles15-sp4-pool-ppc64le", + "product_id": 2297, + "repository_id": 5130, + "parent_product_id": 2290, + "root_product_id": 2290, + "update_tag": "SLE-Module-Basesystem", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP4/ppc64le/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Basesystem15-SP4-Debuginfo-Pool for ppc64le", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-manager-tools15-updates-ppc64le-sp4", + "parent_channel_label": "sle-product-sles15-sp4-pool-ppc64le", + "product_id": 1710, + "repository_id": 2922, + "parent_product_id": 2297, + "root_product_id": 2290, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/15/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-Updates for ppc64le SP4", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools15-debuginfo-updates-ppc64le-sp4", + "parent_channel_label": "sle-product-sles15-sp4-pool-ppc64le", + "product_id": 1710, + "repository_id": 2923, + "parent_product_id": 2297, + "root_product_id": 2290, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/15/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-Debuginfo-Updates for ppc64le SP4", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools15-pool-ppc64le-sp4", + "parent_channel_label": "sle-product-sles15-sp4-pool-ppc64le", + "product_id": 1710, + "repository_id": 2924, + "parent_product_id": 2297, + "root_product_id": 2290, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/15/ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-Pool for ppc64le SP4", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools15-debuginfo-pool-ppc64le-sp4", + "parent_channel_label": "sle-product-sles15-sp4-pool-ppc64le", + "product_id": 1710, + "repository_id": 2925, + "parent_product_id": 2297, + "root_product_id": 2290, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/15/ppc64le/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-Debuginfo-Pool for ppc64le SP4", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools15-beta-updates-ppc64le-sp4", + "parent_channel_label": "sle-product-sles15-sp4-pool-ppc64le", + "product_id": 1926, + "repository_id": 3893, + "parent_product_id": 1710, + "root_product_id": 2290, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/15-BETA/ppc64le/update/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-BETA-Updates for ppc64le SP4", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools15-beta-debuginfo-updates-ppc64le-sp4", + "parent_channel_label": "sle-product-sles15-sp4-pool-ppc64le", + "product_id": 1926, + "repository_id": 3894, + "parent_product_id": 1710, + "root_product_id": 2290, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/15-BETA/ppc64le/update_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-BETA-Debuginfo-Updates for ppc64le SP4", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools15-beta-pool-ppc64le-sp4", + "parent_channel_label": "sle-product-sles15-sp4-pool-ppc64le", + "product_id": 1926, + "repository_id": 3902, + "parent_product_id": 1710, + "root_product_id": 2290, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/15-BETA/ppc64le/product/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-BETA-Pool for ppc64le SP4", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools15-beta-debuginfo-pool-ppc64le-sp4", + "parent_channel_label": "sle-product-sles15-sp4-pool-ppc64le", + "product_id": 1926, + "repository_id": 3903, + "parent_product_id": 1710, + "root_product_id": 2290, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/15-BETA/ppc64le/product_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-BETA-Debuginfo-Pool for ppc64le SP4", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-module-desktop-applications15-sp4-updates-ppc64le", + "parent_channel_label": "sle-product-sles15-sp4-pool-ppc64le", + "product_id": 2301, + "repository_id": 5147, + "parent_product_id": 2297, + "root_product_id": 2290, + "update_tag": "SLE-Module-Desktop-Applications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15-SP4/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Desktop-Applications15-SP4-Updates for ppc64le", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-desktop-applications15-sp4-debuginfo-updates-ppc64le", + "parent_channel_label": "sle-product-sles15-sp4-pool-ppc64le", + "product_id": 2301, + "repository_id": 5148, + "parent_product_id": 2297, + "root_product_id": 2290, + "update_tag": "SLE-Module-Desktop-Applications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15-SP4/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Desktop-Applications15-SP4-Debuginfo-Updates for ppc64le", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-desktop-applications15-sp4-pool-ppc64le", + "parent_channel_label": "sle-product-sles15-sp4-pool-ppc64le", + "product_id": 2301, + "repository_id": 5149, + "parent_product_id": 2297, + "root_product_id": 2290, + "update_tag": "SLE-Module-Desktop-Applications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP4/ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Desktop-Applications15-SP4-Pool for ppc64le", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-desktop-applications15-sp4-debuginfo-pool-ppc64le", + "parent_channel_label": "sle-product-sles15-sp4-pool-ppc64le", + "product_id": 2301, + "repository_id": 5150, + "parent_product_id": 2297, + "root_product_id": 2290, + "update_tag": "SLE-Module-Desktop-Applications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP4/ppc64le/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Desktop-Applications15-SP4-Debuginfo-Pool for ppc64le", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-devtools15-sp4-updates-ppc64le", + "parent_channel_label": "sle-product-sles15-sp4-pool-ppc64le", + "product_id": 2313, + "repository_id": 5207, + "parent_product_id": 2301, + "root_product_id": 2290, + "update_tag": "SLE-Module-Development-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15-SP4/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-DevTools15-SP4-Updates for ppc64le", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-devtools15-sp4-debuginfo-updates-ppc64le", + "parent_channel_label": "sle-product-sles15-sp4-pool-ppc64le", + "product_id": 2313, + "repository_id": 5208, + "parent_product_id": 2301, + "root_product_id": 2290, + "update_tag": "SLE-Module-Development-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15-SP4/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-DevTools15-SP4-Debuginfo-Updates for ppc64le", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-devtools15-sp4-pool-ppc64le", + "parent_channel_label": "sle-product-sles15-sp4-pool-ppc64le", + "product_id": 2313, + "repository_id": 5209, + "parent_product_id": 2301, + "root_product_id": 2290, + "update_tag": "SLE-Module-Development-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP4/ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-DevTools15-SP4-Pool for ppc64le", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-devtools15-sp4-debuginfo-pool-ppc64le", + "parent_channel_label": "sle-product-sles15-sp4-pool-ppc64le", + "product_id": 2313, + "repository_id": 5210, + "parent_product_id": 2301, + "root_product_id": 2290, + "update_tag": "SLE-Module-Development-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP4/ppc64le/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-DevTools15-SP4-Debuginfo-Pool for ppc64le", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-server-applications15-sp4-updates-ppc64le", + "parent_channel_label": "sle-product-sles15-sp4-pool-ppc64le", + "product_id": 2305, + "repository_id": 5167, + "parent_product_id": 2297, + "root_product_id": 2290, + "update_tag": "SLE-Module-Server-Applications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15-SP4/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Server-Applications15-SP4-Updates for ppc64le", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-server-applications15-sp4-debuginfo-updates-ppc64le", + "parent_channel_label": "sle-product-sles15-sp4-pool-ppc64le", + "product_id": 2305, + "repository_id": 5168, + "parent_product_id": 2297, + "root_product_id": 2290, + "update_tag": "SLE-Module-Server-Applications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15-SP4/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Server-Applications15-SP4-Debuginfo-Updates for ppc64le", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-server-applications15-sp4-pool-ppc64le", + "parent_channel_label": "sle-product-sles15-sp4-pool-ppc64le", + "product_id": 2305, + "repository_id": 5169, + "parent_product_id": 2297, + "root_product_id": 2290, + "update_tag": "SLE-Module-Server-Applications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP4/ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Server-Applications15-SP4-Pool for ppc64le", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-server-applications15-sp4-debuginfo-pool-ppc64le", + "parent_channel_label": "sle-product-sles15-sp4-pool-ppc64le", + "product_id": 2305, + "repository_id": 5170, + "parent_product_id": 2297, + "root_product_id": 2290, + "update_tag": "SLE-Module-Server-Applications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP4/ppc64le/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Server-Applications15-SP4-Debuginfo-Pool for ppc64le", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "ibm-power-adv-toolchain-ppc64le-sp4", + "parent_channel_label": "sle-product-sles15-sp4-pool-ppc64le", + "product_id": 2076, + "repository_id": 4430, + "parent_product_id": 2305, + "root_product_id": 2290, + "update_tag": null, + "url": "https://public.dhe.ibm.com/software/server/POWER/Linux/toolchain/at/suse/SLES_15/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "IBM-POWER-Adv-Toolchain for ppc64le SP4", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "ibm-power-tools-ppc64le-sp4", + "parent_channel_label": "sle-product-sles15-sp4-pool-ppc64le", + "product_id": 2077, + "repository_id": 4431, + "parent_product_id": 2305, + "root_product_id": 2290, + "update_tag": null, + "url": "https://public.dhe.ibm.com/software/server/POWER/Linux/yum/OSS/SLES/15/ppc64le/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "IBM-POWER-Tools for ppc64le SP4", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting15-sp4-updates-ppc64le", + "parent_channel_label": "sle-product-sles15-sp4-pool-ppc64le", + "product_id": 2317, + "repository_id": 5227, + "parent_product_id": 2305, + "root_product_id": 2290, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/15-SP4/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Web-Scripting15-SP4-Updates for ppc64le", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting15-sp4-debuginfo-updates-ppc64le", + "parent_channel_label": "sle-product-sles15-sp4-pool-ppc64le", + "product_id": 2317, + "repository_id": 5228, + "parent_product_id": 2305, + "root_product_id": 2290, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/15-SP4/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Web-Scripting15-SP4-Debuginfo-Updates for ppc64le", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting15-sp4-pool-ppc64le", + "parent_channel_label": "sle-product-sles15-sp4-pool-ppc64le", + "product_id": 2317, + "repository_id": 5229, + "parent_product_id": 2305, + "root_product_id": 2290, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP4/ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Web-Scripting15-SP4-Pool for ppc64le", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting15-sp4-debuginfo-pool-ppc64le", + "parent_channel_label": "sle-product-sles15-sp4-pool-ppc64le", + "product_id": 2317, + "repository_id": 5230, + "parent_product_id": 2305, + "root_product_id": 2290, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP4/ppc64le/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Web-Scripting15-SP4-Debuginfo-Pool for ppc64le", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-legacy15-sp4-updates-ppc64le", + "parent_channel_label": "sle-product-sles15-sp4-pool-ppc64le", + "product_id": 2321, + "repository_id": 5247, + "parent_product_id": 2305, + "root_product_id": 2290, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/15-SP4/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy15-SP4-Updates for ppc64le", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-legacy15-sp4-debuginfo-updates-ppc64le", + "parent_channel_label": "sle-product-sles15-sp4-pool-ppc64le", + "product_id": 2321, + "repository_id": 5248, + "parent_product_id": 2305, + "root_product_id": 2290, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/15-SP4/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy15-SP4-Debuginfo-Updates for ppc64le", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-legacy15-sp4-pool-ppc64le", + "parent_channel_label": "sle-product-sles15-sp4-pool-ppc64le", + "product_id": 2321, + "repository_id": 5249, + "parent_product_id": 2305, + "root_product_id": 2290, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15-SP4/ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy15-SP4-Pool for ppc64le", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-legacy15-sp4-debuginfo-pool-ppc64le", + "parent_channel_label": "sle-product-sles15-sp4-pool-ppc64le", + "product_id": 2321, + "repository_id": 5250, + "parent_product_id": 2305, + "root_product_id": 2290, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15-SP4/ppc64le/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy15-SP4-Debuginfo-Pool for ppc64le", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud15-sp4-updates-ppc64le", + "parent_channel_label": "sle-product-sles15-sp4-pool-ppc64le", + "product_id": 2325, + "repository_id": 5267, + "parent_product_id": 2305, + "root_product_id": 2290, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/15-SP4/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud15-SP4-Updates for ppc64le", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud15-sp4-debuginfo-updates-ppc64le", + "parent_channel_label": "sle-product-sles15-sp4-pool-ppc64le", + "product_id": 2325, + "repository_id": 5268, + "parent_product_id": 2305, + "root_product_id": 2290, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/15-SP4/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud15-SP4-Debuginfo-Updates for ppc64le", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud15-sp4-pool-ppc64le", + "parent_channel_label": "sle-product-sles15-sp4-pool-ppc64le", + "product_id": 2325, + "repository_id": 5269, + "parent_product_id": 2305, + "root_product_id": 2290, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP4/ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud15-SP4-Pool for ppc64le", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud15-sp4-debuginfo-pool-ppc64le", + "parent_channel_label": "sle-product-sles15-sp4-pool-ppc64le", + "product_id": 2325, + "repository_id": 5270, + "parent_product_id": 2305, + "root_product_id": 2290, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP4/ppc64le/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud15-SP4-Debuginfo-Pool for ppc64le", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-ha15-sp4-updates-ppc64le", + "parent_channel_label": "sle-product-sles15-sp4-pool-ppc64le", + "product_id": 2338, + "repository_id": 5332, + "parent_product_id": 2305, + "root_product_id": 2290, + "update_tag": "SLE-Product-HA", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-HA/15-SP4/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HA15-SP4-Updates for ppc64le", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-ha15-sp4-debuginfo-updates-ppc64le", + "parent_channel_label": "sle-product-sles15-sp4-pool-ppc64le", + "product_id": 2338, + "repository_id": 5333, + "parent_product_id": 2305, + "root_product_id": 2290, + "update_tag": "SLE-Product-HA", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-HA/15-SP4/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HA15-SP4-Debuginfo-Updates for ppc64le", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-ha15-sp4-pool-ppc64le", + "parent_channel_label": "sle-product-sles15-sp4-pool-ppc64le", + "product_id": 2338, + "repository_id": 5334, + "parent_product_id": 2305, + "root_product_id": 2290, + "update_tag": "SLE-Product-HA", + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP4/ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HA15-SP4-Pool for ppc64le", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-ha15-sp4-debuginfo-pool-ppc64le", + "parent_channel_label": "sle-product-sles15-sp4-pool-ppc64le", + "product_id": 2338, + "repository_id": 5335, + "parent_product_id": 2305, + "root_product_id": 2290, + "update_tag": "SLE-Product-HA", + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP4/ppc64le/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HA15-SP4-Debuginfo-Pool for ppc64le", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-containers15-sp4-updates-ppc64le", + "parent_channel_label": "sle-product-sles15-sp4-pool-ppc64le", + "product_id": 2309, + "repository_id": 5187, + "parent_product_id": 2297, + "root_product_id": 2290, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/15-SP4/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers15-SP4-Updates for ppc64le", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-containers15-sp4-debuginfo-updates-ppc64le", + "parent_channel_label": "sle-product-sles15-sp4-pool-ppc64le", + "product_id": 2309, + "repository_id": 5188, + "parent_product_id": 2297, + "root_product_id": 2290, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/15-SP4/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers15-SP4-Debuginfo-Updates for ppc64le", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-containers15-sp4-pool-ppc64le", + "parent_channel_label": "sle-product-sles15-sp4-pool-ppc64le", + "product_id": 2309, + "repository_id": 5189, + "parent_product_id": 2297, + "root_product_id": 2290, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP4/ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers15-SP4-Pool for ppc64le", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-containers15-sp4-debuginfo-pool-ppc64le", + "parent_channel_label": "sle-product-sles15-sp4-pool-ppc64le", + "product_id": 2309, + "repository_id": 5190, + "parent_product_id": 2297, + "root_product_id": 2290, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP4/ppc64le/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers15-SP4-Debuginfo-Pool for ppc64le", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-transactional-server15-sp4-updates-ppc64le", + "parent_channel_label": "sle-product-sles15-sp4-pool-ppc64le", + "product_id": 2329, + "repository_id": 5287, + "parent_product_id": 2297, + "root_product_id": 2290, + "update_tag": "SLE-Module-Transactional-Server", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Transactional-Server/15-SP4/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Transactional-Server15-SP4-Updates for ppc64le", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-transactional-server15-sp4-debuginfo-updates-ppc64le", + "parent_channel_label": "sle-product-sles15-sp4-pool-ppc64le", + "product_id": 2329, + "repository_id": 5288, + "parent_product_id": 2297, + "root_product_id": 2290, + "update_tag": "SLE-Module-Transactional-Server", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Transactional-Server/15-SP4/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Transactional-Server15-SP4-Debuginfo-Updates for ppc64le", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-transactional-server15-sp4-pool-ppc64le", + "parent_channel_label": "sle-product-sles15-sp4-pool-ppc64le", + "product_id": 2329, + "repository_id": 5289, + "parent_product_id": 2297, + "root_product_id": 2290, + "update_tag": "SLE-Module-Transactional-Server", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Transactional-Server/15-SP4/ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Transactional-Server15-SP4-Pool for ppc64le", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-transactional-server15-sp4-debuginfo-pool-ppc64le", + "parent_channel_label": "sle-product-sles15-sp4-pool-ppc64le", + "product_id": 2329, + "repository_id": 5290, + "parent_product_id": 2297, + "root_product_id": 2290, + "update_tag": "SLE-Module-Transactional-Server", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Transactional-Server/15-SP4/ppc64le/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Transactional-Server15-SP4-Debuginfo-Pool for ppc64le", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-live-patching15-sp4-updates-ppc64le", + "parent_channel_label": "sle-product-sles15-sp4-pool-ppc64le", + "product_id": 2332, + "repository_id": 5302, + "parent_product_id": 2297, + "root_product_id": 2290, + "update_tag": "SLE-Module-Live-Patching", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Live-Patching/15-SP4/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Live-Patching15-SP4-Updates for ppc64le", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-live-patching15-sp4-debuginfo-updates-ppc64le", + "parent_channel_label": "sle-product-sles15-sp4-pool-ppc64le", + "product_id": 2332, + "repository_id": 5303, + "parent_product_id": 2297, + "root_product_id": 2290, + "update_tag": "SLE-Module-Live-Patching", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Live-Patching/15-SP4/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Live-Patching15-SP4-Debuginfo-Updates for ppc64le", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-live-patching15-sp4-pool-ppc64le", + "parent_channel_label": "sle-product-sles15-sp4-pool-ppc64le", + "product_id": 2332, + "repository_id": 5304, + "parent_product_id": 2297, + "root_product_id": 2290, + "update_tag": "SLE-Module-Live-Patching", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Live-Patching/15-SP4/ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Live-Patching15-SP4-Pool for ppc64le", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-live-patching15-sp4-debuginfo-pool-ppc64le", + "parent_channel_label": "sle-product-sles15-sp4-pool-ppc64le", + "product_id": 2332, + "repository_id": 5305, + "parent_product_id": 2297, + "root_product_id": 2290, + "update_tag": "SLE-Module-Live-Patching", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Live-Patching/15-SP4/ppc64le/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Live-Patching15-SP4-Debuginfo-Pool for ppc64le", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-packagehub-15-sp4-backports-pool-ppc64le", + "parent_channel_label": "sle-product-sles15-sp4-pool-ppc64le", + "product_id": 2345, + "repository_id": 5372, + "parent_product_id": 2297, + "root_product_id": 2290, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-15-SP4_ppc64le/standard/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-15-SP4-Backports-Pool for ppc64le", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-packagehub-15-sp4-backports-debuginfo-ppc64le", + "parent_channel_label": "sle-product-sles15-sp4-pool-ppc64le", + "product_id": 2345, + "repository_id": 5373, + "parent_product_id": 2297, + "root_product_id": 2290, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-15-SP4_ppc64le/standard_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-15-SP4-Backports-Debuginfo for ppc64le", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-packagehub-subpackages15-sp4-updates-ppc64le", + "parent_channel_label": "sle-product-sles15-sp4-pool-ppc64le", + "product_id": 2345, + "repository_id": 5374, + "parent_product_id": 2297, + "root_product_id": 2290, + "update_tag": "SLE-Module-Packagehub-Subpackages", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP4/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Packagehub-Subpackages15-SP4-Updates for ppc64le", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-packagehub-subpackages15-sp4-debuginfo-updates-ppc64le", + "parent_channel_label": "sle-product-sles15-sp4-pool-ppc64le", + "product_id": 2345, + "repository_id": 5375, + "parent_product_id": 2297, + "root_product_id": 2290, + "update_tag": "SLE-Module-Packagehub-Subpackages", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP4/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Packagehub-Subpackages15-SP4-Debuginfo-Updates for ppc64le", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-packagehub-15-sp4-pool-ppc64le", + "parent_channel_label": "sle-product-sles15-sp4-pool-ppc64le", + "product_id": 2345, + "repository_id": 5376, + "parent_product_id": 2297, + "root_product_id": 2290, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-15-SP4_ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-15-SP4-Pool for ppc64le", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-packagehub-subpackages15-sp4-pool-ppc64le", + "parent_channel_label": "sle-product-sles15-sp4-pool-ppc64le", + "product_id": 2345, + "repository_id": 5377, + "parent_product_id": 2297, + "root_product_id": 2290, + "update_tag": "SLE-Module-Packagehub-Subpackages", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP4/ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Packagehub-Subpackages15-SP4-Pool for ppc64le", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-packagehub-subpackages15-sp4-debuginfo-pool-ppc64le", + "parent_channel_label": "sle-product-sles15-sp4-pool-ppc64le", + "product_id": 2345, + "repository_id": 5378, + "parent_product_id": 2297, + "root_product_id": 2290, + "update_tag": "SLE-Module-Packagehub-Subpackages", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP4/ppc64le/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Packagehub-Subpackages15-SP4-Debuginfo-Pool for ppc64le", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-python3-15-sp4-updates-ppc64le", + "parent_channel_label": "sle-product-sles15-sp4-pool-ppc64le", + "product_id": 2403, + "repository_id": 5572, + "parent_product_id": 2297, + "root_product_id": 2290, + "update_tag": "SLE-Module-Python3", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Python3/15-SP4/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Python3-15-SP4-Updates for ppc64le", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-python3-15-sp4-debuginfo-updates-ppc64le", + "parent_channel_label": "sle-product-sles15-sp4-pool-ppc64le", + "product_id": 2403, + "repository_id": 5573, + "parent_product_id": 2297, + "root_product_id": 2290, + "update_tag": "SLE-Module-Python3", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Python3/15-SP4/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Python3-15-SP4-Debuginfo-Updates for ppc64le", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-python3-15-sp4-pool-ppc64le", + "parent_channel_label": "sle-product-sles15-sp4-pool-ppc64le", + "product_id": 2403, + "repository_id": 5574, + "parent_product_id": 2297, + "root_product_id": 2290, + "update_tag": "SLE-Module-Python3", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Python3/15-SP4/ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Python3-15-SP4-Pool for ppc64le", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-python3-15-sp4-debuginfo-pool-ppc64le", + "parent_channel_label": "sle-product-sles15-sp4-pool-ppc64le", + "product_id": 2403, + "repository_id": 5575, + "parent_product_id": 2297, + "root_product_id": 2290, + "update_tag": "SLE-Module-Python3", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Python3/15-SP4/ppc64le/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Python3-15-SP4-Debuginfo-Pool for ppc64le", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-certifications-15-sp4-updates-ppc64le", + "parent_channel_label": "sle-product-sles15-sp4-pool-ppc64le", + "product_id": 2391, + "repository_id": 5537, + "parent_product_id": 2290, + "root_product_id": 2290, + "update_tag": "SLE-Module-Certifications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Certifications/15-SP4/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Certifications-15-SP4-Updates for ppc64le", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-certifications-15-sp4-debuginfo-updates-ppc64le", + "parent_channel_label": "sle-product-sles15-sp4-pool-ppc64le", + "product_id": 2391, + "repository_id": 5538, + "parent_product_id": 2290, + "root_product_id": 2290, + "update_tag": "SLE-Module-Certifications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Certifications/15-SP4/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Certifications-15-SP4-Debuginfo-Updates for ppc64le", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-certifications-15-sp4-pool-ppc64le", + "parent_channel_label": "sle-product-sles15-sp4-pool-ppc64le", + "product_id": 2391, + "repository_id": 5539, + "parent_product_id": 2290, + "root_product_id": 2290, + "update_tag": "SLE-Module-Certifications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Certifications/15-SP4/ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Certifications-15-SP4-Pool for ppc64le", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-certifications-15-sp4-debuginfo-pool-ppc64le", + "parent_channel_label": "sle-product-sles15-sp4-pool-ppc64le", + "product_id": 2391, + "repository_id": 5540, + "parent_product_id": 2290, + "root_product_id": 2290, + "update_tag": "SLE-Module-Certifications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Certifications/15-SP4/ppc64le/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Certifications-15-SP4-Debuginfo-Pool for ppc64le", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-sles15-sp4-updates-s390x", + "parent_channel_label": "sle-product-sles15-sp4-pool-s390x", + "product_id": 2291, + "repository_id": 5094, + "parent_product_id": null, + "root_product_id": 2291, + "update_tag": "SLE-Product-SLES", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-SLES/15-SP4/s390x/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-SLES15-SP4-Updates for s390x", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-sles15-sp4-debuginfo-updates-s390x", + "parent_channel_label": "sle-product-sles15-sp4-pool-s390x", + "product_id": 2291, + "repository_id": 5095, + "parent_product_id": null, + "root_product_id": 2291, + "update_tag": "SLE-Product-SLES", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-SLES/15-SP4/s390x/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-SLES15-SP4-Debuginfo-Updates for s390x", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle15-sp4-installer-updates-s390x", + "parent_channel_label": "sle-product-sles15-sp4-pool-s390x", + "product_id": 2291, + "repository_id": 5096, + "parent_product_id": null, + "root_product_id": 2291, + "update_tag": "SLE-INSTALLER", + "url": "https://updates.suse.com/SUSE/Updates/SLE-INSTALLER/15-SP4/s390x/update/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE15-SP4-Installer-Updates for s390x", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-sles15-sp4-pool-s390x", + "parent_channel_label": null, + "product_id": 2291, + "repository_id": 5097, + "parent_product_id": null, + "root_product_id": 2291, + "update_tag": "SLE-Product-SLES", + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-SLES/15-SP4/s390x/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-SLES15-SP4-Pool for s390x", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-sles15-sp4-debuginfo-pool-s390x", + "parent_channel_label": "sle-product-sles15-sp4-pool-s390x", + "product_id": 2291, + "repository_id": 5098, + "parent_product_id": null, + "root_product_id": 2291, + "update_tag": "SLE-Product-SLES", + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-SLES/15-SP4/s390x/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-SLES15-SP4-Debuginfo-Pool for s390x", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-basesystem15-sp4-updates-s390x", + "parent_channel_label": "sle-product-sles15-sp4-pool-s390x", + "product_id": 2298, + "repository_id": 5132, + "parent_product_id": 2291, + "root_product_id": 2291, + "update_tag": "SLE-Module-Basesystem", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15-SP4/s390x/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Basesystem15-SP4-Updates for s390x", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-basesystem15-sp4-debuginfo-updates-s390x", + "parent_channel_label": "sle-product-sles15-sp4-pool-s390x", + "product_id": 2298, + "repository_id": 5133, + "parent_product_id": 2291, + "root_product_id": 2291, + "update_tag": "SLE-Module-Basesystem", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15-SP4/s390x/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Basesystem15-SP4-Debuginfo-Updates for s390x", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-basesystem15-sp4-pool-s390x", + "parent_channel_label": "sle-product-sles15-sp4-pool-s390x", + "product_id": 2298, + "repository_id": 5134, + "parent_product_id": 2291, + "root_product_id": 2291, + "update_tag": "SLE-Module-Basesystem", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP4/s390x/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Basesystem15-SP4-Pool for s390x", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-basesystem15-sp4-debuginfo-pool-s390x", + "parent_channel_label": "sle-product-sles15-sp4-pool-s390x", + "product_id": 2298, + "repository_id": 5135, + "parent_product_id": 2291, + "root_product_id": 2291, + "update_tag": "SLE-Module-Basesystem", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP4/s390x/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Basesystem15-SP4-Debuginfo-Pool for s390x", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-manager-tools15-updates-s390x-sp4", + "parent_channel_label": "sle-product-sles15-sp4-pool-s390x", + "product_id": 1711, + "repository_id": 2927, + "parent_product_id": 2298, + "root_product_id": 2291, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/15/s390x/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-Updates for s390x SP4", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools15-debuginfo-updates-s390x-sp4", + "parent_channel_label": "sle-product-sles15-sp4-pool-s390x", + "product_id": 1711, + "repository_id": 2928, + "parent_product_id": 2298, + "root_product_id": 2291, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/15/s390x/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-Debuginfo-Updates for s390x SP4", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools15-pool-s390x-sp4", + "parent_channel_label": "sle-product-sles15-sp4-pool-s390x", + "product_id": 1711, + "repository_id": 2929, + "parent_product_id": 2298, + "root_product_id": 2291, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/15/s390x/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-Pool for s390x SP4", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools15-debuginfo-pool-s390x-sp4", + "parent_channel_label": "sle-product-sles15-sp4-pool-s390x", + "product_id": 1711, + "repository_id": 2930, + "parent_product_id": 2298, + "root_product_id": 2291, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/15/s390x/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-Debuginfo-Pool for s390x SP4", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools15-beta-updates-s390x-sp4", + "parent_channel_label": "sle-product-sles15-sp4-pool-s390x", + "product_id": 1927, + "repository_id": 3895, + "parent_product_id": 1711, + "root_product_id": 2291, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/15-BETA/s390x/update/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-BETA-Updates for s390x SP4", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools15-beta-debuginfo-updates-s390x-sp4", + "parent_channel_label": "sle-product-sles15-sp4-pool-s390x", + "product_id": 1927, + "repository_id": 3896, + "parent_product_id": 1711, + "root_product_id": 2291, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/15-BETA/s390x/update_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-BETA-Debuginfo-Updates for s390x SP4", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools15-beta-pool-s390x-sp4", + "parent_channel_label": "sle-product-sles15-sp4-pool-s390x", + "product_id": 1927, + "repository_id": 3905, + "parent_product_id": 1711, + "root_product_id": 2291, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/15-BETA/s390x/product/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-BETA-Pool for s390x SP4", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools15-beta-debuginfo-pool-s390x-sp4", + "parent_channel_label": "sle-product-sles15-sp4-pool-s390x", + "product_id": 1927, + "repository_id": 3906, + "parent_product_id": 1711, + "root_product_id": 2291, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/15-BETA/s390x/product_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-BETA-Debuginfo-Pool for s390x SP4", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-module-desktop-applications15-sp4-updates-s390x", + "parent_channel_label": "sle-product-sles15-sp4-pool-s390x", + "product_id": 2302, + "repository_id": 5152, + "parent_product_id": 2298, + "root_product_id": 2291, + "update_tag": "SLE-Module-Desktop-Applications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15-SP4/s390x/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Desktop-Applications15-SP4-Updates for s390x", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-desktop-applications15-sp4-debuginfo-updates-s390x", + "parent_channel_label": "sle-product-sles15-sp4-pool-s390x", + "product_id": 2302, + "repository_id": 5153, + "parent_product_id": 2298, + "root_product_id": 2291, + "update_tag": "SLE-Module-Desktop-Applications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15-SP4/s390x/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Desktop-Applications15-SP4-Debuginfo-Updates for s390x", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-desktop-applications15-sp4-pool-s390x", + "parent_channel_label": "sle-product-sles15-sp4-pool-s390x", + "product_id": 2302, + "repository_id": 5154, + "parent_product_id": 2298, + "root_product_id": 2291, + "update_tag": "SLE-Module-Desktop-Applications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP4/s390x/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Desktop-Applications15-SP4-Pool for s390x", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-desktop-applications15-sp4-debuginfo-pool-s390x", + "parent_channel_label": "sle-product-sles15-sp4-pool-s390x", + "product_id": 2302, + "repository_id": 5155, + "parent_product_id": 2298, + "root_product_id": 2291, + "update_tag": "SLE-Module-Desktop-Applications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP4/s390x/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Desktop-Applications15-SP4-Debuginfo-Pool for s390x", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-devtools15-sp4-updates-s390x", + "parent_channel_label": "sle-product-sles15-sp4-pool-s390x", + "product_id": 2314, + "repository_id": 5212, + "parent_product_id": 2302, + "root_product_id": 2291, + "update_tag": "SLE-Module-Development-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15-SP4/s390x/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-DevTools15-SP4-Updates for s390x", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-devtools15-sp4-debuginfo-updates-s390x", + "parent_channel_label": "sle-product-sles15-sp4-pool-s390x", + "product_id": 2314, + "repository_id": 5213, + "parent_product_id": 2302, + "root_product_id": 2291, + "update_tag": "SLE-Module-Development-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15-SP4/s390x/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-DevTools15-SP4-Debuginfo-Updates for s390x", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-devtools15-sp4-pool-s390x", + "parent_channel_label": "sle-product-sles15-sp4-pool-s390x", + "product_id": 2314, + "repository_id": 5214, + "parent_product_id": 2302, + "root_product_id": 2291, + "update_tag": "SLE-Module-Development-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP4/s390x/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-DevTools15-SP4-Pool for s390x", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-devtools15-sp4-debuginfo-pool-s390x", + "parent_channel_label": "sle-product-sles15-sp4-pool-s390x", + "product_id": 2314, + "repository_id": 5215, + "parent_product_id": 2302, + "root_product_id": 2291, + "update_tag": "SLE-Module-Development-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP4/s390x/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-DevTools15-SP4-Debuginfo-Pool for s390x", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-server-applications15-sp4-updates-s390x", + "parent_channel_label": "sle-product-sles15-sp4-pool-s390x", + "product_id": 2306, + "repository_id": 5172, + "parent_product_id": 2298, + "root_product_id": 2291, + "update_tag": "SLE-Module-Server-Applications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15-SP4/s390x/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Server-Applications15-SP4-Updates for s390x", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-server-applications15-sp4-debuginfo-updates-s390x", + "parent_channel_label": "sle-product-sles15-sp4-pool-s390x", + "product_id": 2306, + "repository_id": 5173, + "parent_product_id": 2298, + "root_product_id": 2291, + "update_tag": "SLE-Module-Server-Applications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15-SP4/s390x/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Server-Applications15-SP4-Debuginfo-Updates for s390x", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-server-applications15-sp4-pool-s390x", + "parent_channel_label": "sle-product-sles15-sp4-pool-s390x", + "product_id": 2306, + "repository_id": 5174, + "parent_product_id": 2298, + "root_product_id": 2291, + "update_tag": "SLE-Module-Server-Applications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP4/s390x/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Server-Applications15-SP4-Pool for s390x", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-server-applications15-sp4-debuginfo-pool-s390x", + "parent_channel_label": "sle-product-sles15-sp4-pool-s390x", + "product_id": 2306, + "repository_id": 5175, + "parent_product_id": 2298, + "root_product_id": 2291, + "update_tag": "SLE-Module-Server-Applications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP4/s390x/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Server-Applications15-SP4-Debuginfo-Pool for s390x", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting15-sp4-updates-s390x", + "parent_channel_label": "sle-product-sles15-sp4-pool-s390x", + "product_id": 2318, + "repository_id": 5232, + "parent_product_id": 2306, + "root_product_id": 2291, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/15-SP4/s390x/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Web-Scripting15-SP4-Updates for s390x", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting15-sp4-debuginfo-updates-s390x", + "parent_channel_label": "sle-product-sles15-sp4-pool-s390x", + "product_id": 2318, + "repository_id": 5233, + "parent_product_id": 2306, + "root_product_id": 2291, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/15-SP4/s390x/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Web-Scripting15-SP4-Debuginfo-Updates for s390x", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting15-sp4-pool-s390x", + "parent_channel_label": "sle-product-sles15-sp4-pool-s390x", + "product_id": 2318, + "repository_id": 5234, + "parent_product_id": 2306, + "root_product_id": 2291, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP4/s390x/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Web-Scripting15-SP4-Pool for s390x", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting15-sp4-debuginfo-pool-s390x", + "parent_channel_label": "sle-product-sles15-sp4-pool-s390x", + "product_id": 2318, + "repository_id": 5235, + "parent_product_id": 2306, + "root_product_id": 2291, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP4/s390x/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Web-Scripting15-SP4-Debuginfo-Pool for s390x", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-legacy15-sp4-updates-s390x", + "parent_channel_label": "sle-product-sles15-sp4-pool-s390x", + "product_id": 2322, + "repository_id": 5252, + "parent_product_id": 2306, + "root_product_id": 2291, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/15-SP4/s390x/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy15-SP4-Updates for s390x", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-legacy15-sp4-debuginfo-updates-s390x", + "parent_channel_label": "sle-product-sles15-sp4-pool-s390x", + "product_id": 2322, + "repository_id": 5253, + "parent_product_id": 2306, + "root_product_id": 2291, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/15-SP4/s390x/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy15-SP4-Debuginfo-Updates for s390x", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-legacy15-sp4-pool-s390x", + "parent_channel_label": "sle-product-sles15-sp4-pool-s390x", + "product_id": 2322, + "repository_id": 5254, + "parent_product_id": 2306, + "root_product_id": 2291, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15-SP4/s390x/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy15-SP4-Pool for s390x", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-legacy15-sp4-debuginfo-pool-s390x", + "parent_channel_label": "sle-product-sles15-sp4-pool-s390x", + "product_id": 2322, + "repository_id": 5255, + "parent_product_id": 2306, + "root_product_id": 2291, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15-SP4/s390x/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy15-SP4-Debuginfo-Pool for s390x", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud15-sp4-updates-s390x", + "parent_channel_label": "sle-product-sles15-sp4-pool-s390x", + "product_id": 2326, + "repository_id": 5272, + "parent_product_id": 2306, + "root_product_id": 2291, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/15-SP4/s390x/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud15-SP4-Updates for s390x", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud15-sp4-debuginfo-updates-s390x", + "parent_channel_label": "sle-product-sles15-sp4-pool-s390x", + "product_id": 2326, + "repository_id": 5273, + "parent_product_id": 2306, + "root_product_id": 2291, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/15-SP4/s390x/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud15-SP4-Debuginfo-Updates for s390x", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud15-sp4-pool-s390x", + "parent_channel_label": "sle-product-sles15-sp4-pool-s390x", + "product_id": 2326, + "repository_id": 5274, + "parent_product_id": 2306, + "root_product_id": 2291, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP4/s390x/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud15-SP4-Pool for s390x", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud15-sp4-debuginfo-pool-s390x", + "parent_channel_label": "sle-product-sles15-sp4-pool-s390x", + "product_id": 2326, + "repository_id": 5275, + "parent_product_id": 2306, + "root_product_id": 2291, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP4/s390x/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud15-SP4-Debuginfo-Pool for s390x", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-ha15-sp4-updates-s390x", + "parent_channel_label": "sle-product-sles15-sp4-pool-s390x", + "product_id": 2339, + "repository_id": 5337, + "parent_product_id": 2306, + "root_product_id": 2291, + "update_tag": "SLE-Product-HA", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-HA/15-SP4/s390x/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HA15-SP4-Updates for s390x", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-ha15-sp4-debuginfo-updates-s390x", + "parent_channel_label": "sle-product-sles15-sp4-pool-s390x", + "product_id": 2339, + "repository_id": 5338, + "parent_product_id": 2306, + "root_product_id": 2291, + "update_tag": "SLE-Product-HA", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-HA/15-SP4/s390x/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HA15-SP4-Debuginfo-Updates for s390x", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-ha15-sp4-pool-s390x", + "parent_channel_label": "sle-product-sles15-sp4-pool-s390x", + "product_id": 2339, + "repository_id": 5339, + "parent_product_id": 2306, + "root_product_id": 2291, + "update_tag": "SLE-Product-HA", + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP4/s390x/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HA15-SP4-Pool for s390x", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-ha15-sp4-debuginfo-pool-s390x", + "parent_channel_label": "sle-product-sles15-sp4-pool-s390x", + "product_id": 2339, + "repository_id": 5340, + "parent_product_id": 2306, + "root_product_id": 2291, + "update_tag": "SLE-Product-HA", + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP4/s390x/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HA15-SP4-Debuginfo-Pool for s390x", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-containers15-sp4-updates-s390x", + "parent_channel_label": "sle-product-sles15-sp4-pool-s390x", + "product_id": 2310, + "repository_id": 5192, + "parent_product_id": 2298, + "root_product_id": 2291, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/15-SP4/s390x/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers15-SP4-Updates for s390x", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-containers15-sp4-debuginfo-updates-s390x", + "parent_channel_label": "sle-product-sles15-sp4-pool-s390x", + "product_id": 2310, + "repository_id": 5193, + "parent_product_id": 2298, + "root_product_id": 2291, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/15-SP4/s390x/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers15-SP4-Debuginfo-Updates for s390x", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-containers15-sp4-pool-s390x", + "parent_channel_label": "sle-product-sles15-sp4-pool-s390x", + "product_id": 2310, + "repository_id": 5194, + "parent_product_id": 2298, + "root_product_id": 2291, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP4/s390x/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers15-SP4-Pool for s390x", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-containers15-sp4-debuginfo-pool-s390x", + "parent_channel_label": "sle-product-sles15-sp4-pool-s390x", + "product_id": 2310, + "repository_id": 5195, + "parent_product_id": 2298, + "root_product_id": 2291, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP4/s390x/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers15-SP4-Debuginfo-Pool for s390x", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-transactional-server15-sp4-updates-s390x", + "parent_channel_label": "sle-product-sles15-sp4-pool-s390x", + "product_id": 2330, + "repository_id": 5292, + "parent_product_id": 2298, + "root_product_id": 2291, + "update_tag": "SLE-Module-Transactional-Server", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Transactional-Server/15-SP4/s390x/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Transactional-Server15-SP4-Updates for s390x", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-transactional-server15-sp4-debuginfo-updates-s390x", + "parent_channel_label": "sle-product-sles15-sp4-pool-s390x", + "product_id": 2330, + "repository_id": 5293, + "parent_product_id": 2298, + "root_product_id": 2291, + "update_tag": "SLE-Module-Transactional-Server", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Transactional-Server/15-SP4/s390x/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Transactional-Server15-SP4-Debuginfo-Updates for s390x", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-transactional-server15-sp4-pool-s390x", + "parent_channel_label": "sle-product-sles15-sp4-pool-s390x", + "product_id": 2330, + "repository_id": 5294, + "parent_product_id": 2298, + "root_product_id": 2291, + "update_tag": "SLE-Module-Transactional-Server", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Transactional-Server/15-SP4/s390x/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Transactional-Server15-SP4-Pool for s390x", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-transactional-server15-sp4-debuginfo-pool-s390x", + "parent_channel_label": "sle-product-sles15-sp4-pool-s390x", + "product_id": 2330, + "repository_id": 5295, + "parent_product_id": 2298, + "root_product_id": 2291, + "update_tag": "SLE-Module-Transactional-Server", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Transactional-Server/15-SP4/s390x/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Transactional-Server15-SP4-Debuginfo-Pool for s390x", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-live-patching15-sp4-updates-s390x", + "parent_channel_label": "sle-product-sles15-sp4-pool-s390x", + "product_id": 2333, + "repository_id": 5307, + "parent_product_id": 2298, + "root_product_id": 2291, + "update_tag": "SLE-Module-Live-Patching", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Live-Patching/15-SP4/s390x/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Live-Patching15-SP4-Updates for s390x", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-live-patching15-sp4-debuginfo-updates-s390x", + "parent_channel_label": "sle-product-sles15-sp4-pool-s390x", + "product_id": 2333, + "repository_id": 5308, + "parent_product_id": 2298, + "root_product_id": 2291, + "update_tag": "SLE-Module-Live-Patching", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Live-Patching/15-SP4/s390x/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Live-Patching15-SP4-Debuginfo-Updates for s390x", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-live-patching15-sp4-pool-s390x", + "parent_channel_label": "sle-product-sles15-sp4-pool-s390x", + "product_id": 2333, + "repository_id": 5309, + "parent_product_id": 2298, + "root_product_id": 2291, + "update_tag": "SLE-Module-Live-Patching", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Live-Patching/15-SP4/s390x/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Live-Patching15-SP4-Pool for s390x", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-live-patching15-sp4-debuginfo-pool-s390x", + "parent_channel_label": "sle-product-sles15-sp4-pool-s390x", + "product_id": 2333, + "repository_id": 5310, + "parent_product_id": 2298, + "root_product_id": 2291, + "update_tag": "SLE-Module-Live-Patching", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Live-Patching/15-SP4/s390x/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Live-Patching15-SP4-Debuginfo-Pool for s390x", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-packagehub-15-sp4-backports-pool-s390x", + "parent_channel_label": "sle-product-sles15-sp4-pool-s390x", + "product_id": 2346, + "repository_id": 5380, + "parent_product_id": 2298, + "root_product_id": 2291, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-15-SP4_s390x/standard/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-15-SP4-Backports-Pool for s390x", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-packagehub-15-sp4-backports-debuginfo-s390x", + "parent_channel_label": "sle-product-sles15-sp4-pool-s390x", + "product_id": 2346, + "repository_id": 5381, + "parent_product_id": 2298, + "root_product_id": 2291, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-15-SP4_s390x/standard_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-15-SP4-Backports-Debuginfo for s390x", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-packagehub-subpackages15-sp4-updates-s390x", + "parent_channel_label": "sle-product-sles15-sp4-pool-s390x", + "product_id": 2346, + "repository_id": 5382, + "parent_product_id": 2298, + "root_product_id": 2291, + "update_tag": "SLE-Module-Packagehub-Subpackages", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP4/s390x/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Packagehub-Subpackages15-SP4-Updates for s390x", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-packagehub-subpackages15-sp4-debuginfo-updates-s390x", + "parent_channel_label": "sle-product-sles15-sp4-pool-s390x", + "product_id": 2346, + "repository_id": 5383, + "parent_product_id": 2298, + "root_product_id": 2291, + "update_tag": "SLE-Module-Packagehub-Subpackages", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP4/s390x/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Packagehub-Subpackages15-SP4-Debuginfo-Updates for s390x", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-packagehub-15-sp4-pool-s390x", + "parent_channel_label": "sle-product-sles15-sp4-pool-s390x", + "product_id": 2346, + "repository_id": 5384, + "parent_product_id": 2298, + "root_product_id": 2291, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-15-SP4_s390x/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-15-SP4-Pool for s390x", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-packagehub-subpackages15-sp4-pool-s390x", + "parent_channel_label": "sle-product-sles15-sp4-pool-s390x", + "product_id": 2346, + "repository_id": 5385, + "parent_product_id": 2298, + "root_product_id": 2291, + "update_tag": "SLE-Module-Packagehub-Subpackages", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP4/s390x/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Packagehub-Subpackages15-SP4-Pool for s390x", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-packagehub-subpackages15-sp4-debuginfo-pool-s390x", + "parent_channel_label": "sle-product-sles15-sp4-pool-s390x", + "product_id": 2346, + "repository_id": 5386, + "parent_product_id": 2298, + "root_product_id": 2291, + "update_tag": "SLE-Module-Packagehub-Subpackages", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP4/s390x/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Packagehub-Subpackages15-SP4-Debuginfo-Pool for s390x", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-python3-15-sp4-updates-s390x", + "parent_channel_label": "sle-product-sles15-sp4-pool-s390x", + "product_id": 2404, + "repository_id": 5577, + "parent_product_id": 2298, + "root_product_id": 2291, + "update_tag": "SLE-Module-Python3", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Python3/15-SP4/s390x/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Python3-15-SP4-Updates for s390x", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-python3-15-sp4-debuginfo-updates-s390x", + "parent_channel_label": "sle-product-sles15-sp4-pool-s390x", + "product_id": 2404, + "repository_id": 5578, + "parent_product_id": 2298, + "root_product_id": 2291, + "update_tag": "SLE-Module-Python3", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Python3/15-SP4/s390x/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Python3-15-SP4-Debuginfo-Updates for s390x", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-python3-15-sp4-pool-s390x", + "parent_channel_label": "sle-product-sles15-sp4-pool-s390x", + "product_id": 2404, + "repository_id": 5579, + "parent_product_id": 2298, + "root_product_id": 2291, + "update_tag": "SLE-Module-Python3", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Python3/15-SP4/s390x/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Python3-15-SP4-Pool for s390x", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-python3-15-sp4-debuginfo-pool-s390x", + "parent_channel_label": "sle-product-sles15-sp4-pool-s390x", + "product_id": 2404, + "repository_id": 5580, + "parent_product_id": 2298, + "root_product_id": 2291, + "update_tag": "SLE-Module-Python3", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Python3/15-SP4/s390x/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Python3-15-SP4-Debuginfo-Pool for s390x", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-certifications-15-sp4-updates-s390x", + "parent_channel_label": "sle-product-sles15-sp4-pool-s390x", + "product_id": 2392, + "repository_id": 5542, + "parent_product_id": 2291, + "root_product_id": 2291, + "update_tag": "SLE-Module-Certifications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Certifications/15-SP4/s390x/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Certifications-15-SP4-Updates for s390x", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-certifications-15-sp4-debuginfo-updates-s390x", + "parent_channel_label": "sle-product-sles15-sp4-pool-s390x", + "product_id": 2392, + "repository_id": 5543, + "parent_product_id": 2291, + "root_product_id": 2291, + "update_tag": "SLE-Module-Certifications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Certifications/15-SP4/s390x/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Certifications-15-SP4-Debuginfo-Updates for s390x", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-certifications-15-sp4-pool-s390x", + "parent_channel_label": "sle-product-sles15-sp4-pool-s390x", + "product_id": 2392, + "repository_id": 5544, + "parent_product_id": 2291, + "root_product_id": 2291, + "update_tag": "SLE-Module-Certifications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Certifications/15-SP4/s390x/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Certifications-15-SP4-Pool for s390x", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-certifications-15-sp4-debuginfo-pool-s390x", + "parent_channel_label": "sle-product-sles15-sp4-pool-s390x", + "product_id": 2392, + "repository_id": 5545, + "parent_product_id": 2291, + "root_product_id": 2291, + "update_tag": "SLE-Module-Certifications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Certifications/15-SP4/s390x/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Certifications-15-SP4-Debuginfo-Pool for s390x", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-sles15-sp4-updates-x86_64", + "parent_channel_label": "sle-product-sles15-sp4-pool-x86_64", + "product_id": 2292, + "repository_id": 5100, + "parent_product_id": null, + "root_product_id": 2292, + "update_tag": "SLE-Product-SLES", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-SLES/15-SP4/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-SLES15-SP4-Updates for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-sles15-sp4-debuginfo-updates-x86_64", + "parent_channel_label": "sle-product-sles15-sp4-pool-x86_64", + "product_id": 2292, + "repository_id": 5101, + "parent_product_id": null, + "root_product_id": 2292, + "update_tag": "SLE-Product-SLES", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-SLES/15-SP4/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-SLES15-SP4-Debuginfo-Updates for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle15-sp4-installer-updates-x86_64", + "parent_channel_label": "sle-product-sles15-sp4-pool-x86_64", + "product_id": 2292, + "repository_id": 5102, + "parent_product_id": null, + "root_product_id": 2292, + "update_tag": "SLE-INSTALLER", + "url": "https://updates.suse.com/SUSE/Updates/SLE-INSTALLER/15-SP4/x86_64/update/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE15-SP4-Installer-Updates for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-sles15-sp4-pool-x86_64", + "parent_channel_label": null, + "product_id": 2292, + "repository_id": 5103, + "parent_product_id": null, + "root_product_id": 2292, + "update_tag": "SLE-Product-SLES", + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-SLES/15-SP4/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-SLES15-SP4-Pool for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-sles15-sp4-debuginfo-pool-x86_64", + "parent_channel_label": "sle-product-sles15-sp4-pool-x86_64", + "product_id": 2292, + "repository_id": 5104, + "parent_product_id": null, + "root_product_id": 2292, + "update_tag": "SLE-Product-SLES", + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-SLES/15-SP4/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-SLES15-SP4-Debuginfo-Pool for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-basesystem15-sp4-updates-x86_64", + "parent_channel_label": "sle-product-sles15-sp4-pool-x86_64", + "product_id": 2299, + "repository_id": 5137, + "parent_product_id": 2292, + "root_product_id": 2292, + "update_tag": "SLE-Module-Basesystem", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15-SP4/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Basesystem15-SP4-Updates for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-basesystem15-sp4-debuginfo-updates-x86_64", + "parent_channel_label": "sle-product-sles15-sp4-pool-x86_64", + "product_id": 2299, + "repository_id": 5138, + "parent_product_id": 2292, + "root_product_id": 2292, + "update_tag": "SLE-Module-Basesystem", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15-SP4/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Basesystem15-SP4-Debuginfo-Updates for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-basesystem15-sp4-pool-x86_64", + "parent_channel_label": "sle-product-sles15-sp4-pool-x86_64", + "product_id": 2299, + "repository_id": 5139, + "parent_product_id": 2292, + "root_product_id": 2292, + "update_tag": "SLE-Module-Basesystem", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP4/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Basesystem15-SP4-Pool for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-basesystem15-sp4-debuginfo-pool-x86_64", + "parent_channel_label": "sle-product-sles15-sp4-pool-x86_64", + "product_id": 2299, + "repository_id": 5140, + "parent_product_id": 2292, + "root_product_id": 2292, + "update_tag": "SLE-Module-Basesystem", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP4/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Basesystem15-SP4-Debuginfo-Pool for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-manager-tools15-updates-x86_64-sp4", + "parent_channel_label": "sle-product-sles15-sp4-pool-x86_64", + "product_id": 1712, + "repository_id": 2932, + "parent_product_id": 2299, + "root_product_id": 2292, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/15/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-Updates for x86_64 SP4", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools15-debuginfo-updates-x86_64-sp4", + "parent_channel_label": "sle-product-sles15-sp4-pool-x86_64", + "product_id": 1712, + "repository_id": 2933, + "parent_product_id": 2299, + "root_product_id": 2292, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/15/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-Debuginfo-Updates for x86_64 SP4", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools15-pool-x86_64-sp4", + "parent_channel_label": "sle-product-sles15-sp4-pool-x86_64", + "product_id": 1712, + "repository_id": 2934, + "parent_product_id": 2299, + "root_product_id": 2292, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/15/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-Pool for x86_64 SP4", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools15-debuginfo-pool-x86_64-sp4", + "parent_channel_label": "sle-product-sles15-sp4-pool-x86_64", + "product_id": 1712, + "repository_id": 2935, + "parent_product_id": 2299, + "root_product_id": 2292, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/15/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-Debuginfo-Pool for x86_64 SP4", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools15-beta-updates-x86_64-sp4", + "parent_channel_label": "sle-product-sles15-sp4-pool-x86_64", + "product_id": 1928, + "repository_id": 3897, + "parent_product_id": 1712, + "root_product_id": 2292, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/15-BETA/x86_64/update/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-BETA-Updates for x86_64 SP4", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools15-beta-debuginfo-updates-x86_64-sp4", + "parent_channel_label": "sle-product-sles15-sp4-pool-x86_64", + "product_id": 1928, + "repository_id": 3898, + "parent_product_id": 1712, + "root_product_id": 2292, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/15-BETA/x86_64/update_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-BETA-Debuginfo-Updates for x86_64 SP4", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools15-beta-pool-x86_64-sp4", + "parent_channel_label": "sle-product-sles15-sp4-pool-x86_64", + "product_id": 1928, + "repository_id": 3908, + "parent_product_id": 1712, + "root_product_id": 2292, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/15-BETA/x86_64/product/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-BETA-Pool for x86_64 SP4", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools15-beta-debuginfo-pool-x86_64-sp4", + "parent_channel_label": "sle-product-sles15-sp4-pool-x86_64", + "product_id": 1928, + "repository_id": 3909, + "parent_product_id": 1712, + "root_product_id": 2292, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/15-BETA/x86_64/product_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-BETA-Debuginfo-Pool for x86_64 SP4", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-module-desktop-applications15-sp4-updates-x86_64", + "parent_channel_label": "sle-product-sles15-sp4-pool-x86_64", + "product_id": 2303, + "repository_id": 5157, + "parent_product_id": 2299, + "root_product_id": 2292, + "update_tag": "SLE-Module-Desktop-Applications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15-SP4/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Desktop-Applications15-SP4-Updates for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-desktop-applications15-sp4-debuginfo-updates-x86_64", + "parent_channel_label": "sle-product-sles15-sp4-pool-x86_64", + "product_id": 2303, + "repository_id": 5158, + "parent_product_id": 2299, + "root_product_id": 2292, + "update_tag": "SLE-Module-Desktop-Applications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15-SP4/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Desktop-Applications15-SP4-Debuginfo-Updates for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-desktop-applications15-sp4-pool-x86_64", + "parent_channel_label": "sle-product-sles15-sp4-pool-x86_64", + "product_id": 2303, + "repository_id": 5159, + "parent_product_id": 2299, + "root_product_id": 2292, + "update_tag": "SLE-Module-Desktop-Applications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP4/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Desktop-Applications15-SP4-Pool for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-desktop-applications15-sp4-debuginfo-pool-x86_64", + "parent_channel_label": "sle-product-sles15-sp4-pool-x86_64", + "product_id": 2303, + "repository_id": 5160, + "parent_product_id": 2299, + "root_product_id": 2292, + "update_tag": "SLE-Module-Desktop-Applications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP4/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Desktop-Applications15-SP4-Debuginfo-Pool for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-devtools15-sp4-updates-x86_64", + "parent_channel_label": "sle-product-sles15-sp4-pool-x86_64", + "product_id": 2315, + "repository_id": 5217, + "parent_product_id": 2303, + "root_product_id": 2292, + "update_tag": "SLE-Module-Development-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15-SP4/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-DevTools15-SP4-Updates for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-devtools15-sp4-debuginfo-updates-x86_64", + "parent_channel_label": "sle-product-sles15-sp4-pool-x86_64", + "product_id": 2315, + "repository_id": 5218, + "parent_product_id": 2303, + "root_product_id": 2292, + "update_tag": "SLE-Module-Development-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15-SP4/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-DevTools15-SP4-Debuginfo-Updates for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-devtools15-sp4-pool-x86_64", + "parent_channel_label": "sle-product-sles15-sp4-pool-x86_64", + "product_id": 2315, + "repository_id": 5219, + "parent_product_id": 2303, + "root_product_id": 2292, + "update_tag": "SLE-Module-Development-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP4/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-DevTools15-SP4-Pool for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-devtools15-sp4-debuginfo-pool-x86_64", + "parent_channel_label": "sle-product-sles15-sp4-pool-x86_64", + "product_id": 2315, + "repository_id": 5220, + "parent_product_id": 2303, + "root_product_id": 2292, + "update_tag": "SLE-Module-Development-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP4/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-DevTools15-SP4-Debuginfo-Pool for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-nvidia-compute-15-updates-x86_64-we-sp4", + "parent_channel_label": "sle-product-sles15-sp4-pool-x86_64", + "product_id": 2131, + "repository_id": 4554, + "parent_product_id": 2315, + "root_product_id": 2292, + "update_tag": "SLE-Module-NVIDIA-Compute", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-NVIDIA-Compute/15/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-NVIDIA-Compute-15-Updates for x86_64 WE SP4", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-nvidia-compute-15-pool-x86_64-we-sp4", + "parent_channel_label": "sle-product-sles15-sp4-pool-x86_64", + "product_id": 2131, + "repository_id": 4556, + "parent_product_id": 2315, + "root_product_id": 2292, + "update_tag": "SLE-Module-NVIDIA-Compute", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-NVIDIA-Compute/15/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-NVIDIA-Compute-15-Pool for x86_64 WE SP4", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "nvidia-compute-sle-15-x86_64-we-sp4", + "parent_channel_label": "sle-product-sles15-sp4-pool-x86_64", + "product_id": 2131, + "repository_id": 4563, + "parent_product_id": 2315, + "root_product_id": 2292, + "update_tag": null, + "url": "https://developer.download.nvidia.com/compute/cuda/repos/sles15/x86_64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "NVIDIA-Compute-SLE-15 for x86_64 WE SP4", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-15-sp4-desktop-nvidia-driver-x86_64-we", + "parent_channel_label": "sle-product-sles15-sp4-pool-x86_64", + "product_id": 2343, + "repository_id": 5119, + "parent_product_id": 2303, + "root_product_id": 2292, + "update_tag": null, + "url": "https://download.nvidia.com/suse/sle15sp4/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-15-SP4-Desktop-NVIDIA-Driver for x86_64 WE", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-we15-sp4-updates-x86_64", + "parent_channel_label": "sle-product-sles15-sp4-pool-x86_64", + "product_id": 2343, + "repository_id": 5357, + "parent_product_id": 2303, + "root_product_id": 2292, + "update_tag": "SLE-Product-WE", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-WE/15-SP4/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-WE15-SP4-Updates for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-we15-sp4-debuginfo-updates-x86_64", + "parent_channel_label": "sle-product-sles15-sp4-pool-x86_64", + "product_id": 2343, + "repository_id": 5358, + "parent_product_id": 2303, + "root_product_id": 2292, + "update_tag": "SLE-Product-WE", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-WE/15-SP4/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-WE15-SP4-Debuginfo-Updates for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-we15-sp4-pool-x86_64", + "parent_channel_label": "sle-product-sles15-sp4-pool-x86_64", + "product_id": 2343, + "repository_id": 5359, + "parent_product_id": 2303, + "root_product_id": 2292, + "update_tag": "SLE-Product-WE", + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-WE/15-SP4/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-WE15-SP4-Pool for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-we15-sp4-debuginfo-pool-x86_64", + "parent_channel_label": "sle-product-sles15-sp4-pool-x86_64", + "product_id": 2343, + "repository_id": 5360, + "parent_product_id": 2303, + "root_product_id": 2292, + "update_tag": "SLE-Product-WE", + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-WE/15-SP4/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-WE15-SP4-Debuginfo-Pool for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-server-applications15-sp4-updates-x86_64", + "parent_channel_label": "sle-product-sles15-sp4-pool-x86_64", + "product_id": 2307, + "repository_id": 5177, + "parent_product_id": 2299, + "root_product_id": 2292, + "update_tag": "SLE-Module-Server-Applications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15-SP4/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Server-Applications15-SP4-Updates for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-server-applications15-sp4-debuginfo-updates-x86_64", + "parent_channel_label": "sle-product-sles15-sp4-pool-x86_64", + "product_id": 2307, + "repository_id": 5178, + "parent_product_id": 2299, + "root_product_id": 2292, + "update_tag": "SLE-Module-Server-Applications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15-SP4/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Server-Applications15-SP4-Debuginfo-Updates for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-server-applications15-sp4-pool-x86_64", + "parent_channel_label": "sle-product-sles15-sp4-pool-x86_64", + "product_id": 2307, + "repository_id": 5179, + "parent_product_id": 2299, + "root_product_id": 2292, + "update_tag": "SLE-Module-Server-Applications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP4/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Server-Applications15-SP4-Pool for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-server-applications15-sp4-debuginfo-pool-x86_64", + "parent_channel_label": "sle-product-sles15-sp4-pool-x86_64", + "product_id": 2307, + "repository_id": 5180, + "parent_product_id": 2299, + "root_product_id": 2292, + "update_tag": "SLE-Module-Server-Applications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP4/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Server-Applications15-SP4-Debuginfo-Pool for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting15-sp4-updates-x86_64", + "parent_channel_label": "sle-product-sles15-sp4-pool-x86_64", + "product_id": 2319, + "repository_id": 5237, + "parent_product_id": 2307, + "root_product_id": 2292, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/15-SP4/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Web-Scripting15-SP4-Updates for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting15-sp4-debuginfo-updates-x86_64", + "parent_channel_label": "sle-product-sles15-sp4-pool-x86_64", + "product_id": 2319, + "repository_id": 5238, + "parent_product_id": 2307, + "root_product_id": 2292, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/15-SP4/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Web-Scripting15-SP4-Debuginfo-Updates for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting15-sp4-pool-x86_64", + "parent_channel_label": "sle-product-sles15-sp4-pool-x86_64", + "product_id": 2319, + "repository_id": 5239, + "parent_product_id": 2307, + "root_product_id": 2292, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP4/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Web-Scripting15-SP4-Pool for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting15-sp4-debuginfo-pool-x86_64", + "parent_channel_label": "sle-product-sles15-sp4-pool-x86_64", + "product_id": 2319, + "repository_id": 5240, + "parent_product_id": 2307, + "root_product_id": 2292, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP4/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Web-Scripting15-SP4-Debuginfo-Pool for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-legacy15-sp4-updates-x86_64", + "parent_channel_label": "sle-product-sles15-sp4-pool-x86_64", + "product_id": 2323, + "repository_id": 5257, + "parent_product_id": 2307, + "root_product_id": 2292, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/15-SP4/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy15-SP4-Updates for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-legacy15-sp4-debuginfo-updates-x86_64", + "parent_channel_label": "sle-product-sles15-sp4-pool-x86_64", + "product_id": 2323, + "repository_id": 5258, + "parent_product_id": 2307, + "root_product_id": 2292, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/15-SP4/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy15-SP4-Debuginfo-Updates for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-legacy15-sp4-pool-x86_64", + "parent_channel_label": "sle-product-sles15-sp4-pool-x86_64", + "product_id": 2323, + "repository_id": 5259, + "parent_product_id": 2307, + "root_product_id": 2292, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15-SP4/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy15-SP4-Pool for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-legacy15-sp4-debuginfo-pool-x86_64", + "parent_channel_label": "sle-product-sles15-sp4-pool-x86_64", + "product_id": 2323, + "repository_id": 5260, + "parent_product_id": 2307, + "root_product_id": 2292, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15-SP4/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy15-SP4-Debuginfo-Pool for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud15-sp4-updates-x86_64", + "parent_channel_label": "sle-product-sles15-sp4-pool-x86_64", + "product_id": 2327, + "repository_id": 5277, + "parent_product_id": 2307, + "root_product_id": 2292, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/15-SP4/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud15-SP4-Updates for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud15-sp4-debuginfo-updates-x86_64", + "parent_channel_label": "sle-product-sles15-sp4-pool-x86_64", + "product_id": 2327, + "repository_id": 5278, + "parent_product_id": 2307, + "root_product_id": 2292, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/15-SP4/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud15-SP4-Debuginfo-Updates for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud15-sp4-pool-x86_64", + "parent_channel_label": "sle-product-sles15-sp4-pool-x86_64", + "product_id": 2327, + "repository_id": 5279, + "parent_product_id": 2307, + "root_product_id": 2292, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP4/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud15-SP4-Pool for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud15-sp4-debuginfo-pool-x86_64", + "parent_channel_label": "sle-product-sles15-sp4-pool-x86_64", + "product_id": 2327, + "repository_id": 5280, + "parent_product_id": 2307, + "root_product_id": 2292, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP4/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud15-SP4-Debuginfo-Pool for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-ha15-sp4-updates-x86_64", + "parent_channel_label": "sle-product-sles15-sp4-pool-x86_64", + "product_id": 2340, + "repository_id": 5342, + "parent_product_id": 2307, + "root_product_id": 2292, + "update_tag": "SLE-Product-HA", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-HA/15-SP4/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HA15-SP4-Updates for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-ha15-sp4-debuginfo-updates-x86_64", + "parent_channel_label": "sle-product-sles15-sp4-pool-x86_64", + "product_id": 2340, + "repository_id": 5343, + "parent_product_id": 2307, + "root_product_id": 2292, + "update_tag": "SLE-Product-HA", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-HA/15-SP4/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HA15-SP4-Debuginfo-Updates for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-ha15-sp4-pool-x86_64", + "parent_channel_label": "sle-product-sles15-sp4-pool-x86_64", + "product_id": 2340, + "repository_id": 5344, + "parent_product_id": 2307, + "root_product_id": 2292, + "update_tag": "SLE-Product-HA", + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP4/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HA15-SP4-Pool for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-ha15-sp4-debuginfo-pool-x86_64", + "parent_channel_label": "sle-product-sles15-sp4-pool-x86_64", + "product_id": 2340, + "repository_id": 5345, + "parent_product_id": 2307, + "root_product_id": 2292, + "update_tag": "SLE-Product-HA", + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP4/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HA15-SP4-Debuginfo-Pool for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-containers15-sp4-updates-x86_64", + "parent_channel_label": "sle-product-sles15-sp4-pool-x86_64", + "product_id": 2311, + "repository_id": 5197, + "parent_product_id": 2299, + "root_product_id": 2292, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/15-SP4/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers15-SP4-Updates for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-containers15-sp4-debuginfo-updates-x86_64", + "parent_channel_label": "sle-product-sles15-sp4-pool-x86_64", + "product_id": 2311, + "repository_id": 5198, + "parent_product_id": 2299, + "root_product_id": 2292, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/15-SP4/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers15-SP4-Debuginfo-Updates for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-containers15-sp4-pool-x86_64", + "parent_channel_label": "sle-product-sles15-sp4-pool-x86_64", + "product_id": 2311, + "repository_id": 5199, + "parent_product_id": 2299, + "root_product_id": 2292, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP4/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers15-SP4-Pool for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-containers15-sp4-debuginfo-pool-x86_64", + "parent_channel_label": "sle-product-sles15-sp4-pool-x86_64", + "product_id": 2311, + "repository_id": 5200, + "parent_product_id": 2299, + "root_product_id": 2292, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP4/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers15-SP4-Debuginfo-Pool for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-transactional-server15-sp4-updates-x86_64", + "parent_channel_label": "sle-product-sles15-sp4-pool-x86_64", + "product_id": 2331, + "repository_id": 5297, + "parent_product_id": 2299, + "root_product_id": 2292, + "update_tag": "SLE-Module-Transactional-Server", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Transactional-Server/15-SP4/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Transactional-Server15-SP4-Updates for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-transactional-server15-sp4-debuginfo-updates-x86_64", + "parent_channel_label": "sle-product-sles15-sp4-pool-x86_64", + "product_id": 2331, + "repository_id": 5298, + "parent_product_id": 2299, + "root_product_id": 2292, + "update_tag": "SLE-Module-Transactional-Server", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Transactional-Server/15-SP4/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Transactional-Server15-SP4-Debuginfo-Updates for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-transactional-server15-sp4-pool-x86_64", + "parent_channel_label": "sle-product-sles15-sp4-pool-x86_64", + "product_id": 2331, + "repository_id": 5299, + "parent_product_id": 2299, + "root_product_id": 2292, + "update_tag": "SLE-Module-Transactional-Server", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Transactional-Server/15-SP4/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Transactional-Server15-SP4-Pool for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-transactional-server15-sp4-debuginfo-pool-x86_64", + "parent_channel_label": "sle-product-sles15-sp4-pool-x86_64", + "product_id": 2331, + "repository_id": 5300, + "parent_product_id": 2299, + "root_product_id": 2292, + "update_tag": "SLE-Module-Transactional-Server", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Transactional-Server/15-SP4/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Transactional-Server15-SP4-Debuginfo-Pool for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-live-patching15-sp4-updates-x86_64", + "parent_channel_label": "sle-product-sles15-sp4-pool-x86_64", + "product_id": 2334, + "repository_id": 5312, + "parent_product_id": 2299, + "root_product_id": 2292, + "update_tag": "SLE-Module-Live-Patching", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Live-Patching/15-SP4/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Live-Patching15-SP4-Updates for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-live-patching15-sp4-debuginfo-updates-x86_64", + "parent_channel_label": "sle-product-sles15-sp4-pool-x86_64", + "product_id": 2334, + "repository_id": 5313, + "parent_product_id": 2299, + "root_product_id": 2292, + "update_tag": "SLE-Module-Live-Patching", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Live-Patching/15-SP4/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Live-Patching15-SP4-Debuginfo-Updates for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-live-patching15-sp4-pool-x86_64", + "parent_channel_label": "sle-product-sles15-sp4-pool-x86_64", + "product_id": 2334, + "repository_id": 5314, + "parent_product_id": 2299, + "root_product_id": 2292, + "update_tag": "SLE-Module-Live-Patching", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Live-Patching/15-SP4/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Live-Patching15-SP4-Pool for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-live-patching15-sp4-debuginfo-pool-x86_64", + "parent_channel_label": "sle-product-sles15-sp4-pool-x86_64", + "product_id": 2334, + "repository_id": 5315, + "parent_product_id": 2299, + "root_product_id": 2292, + "update_tag": "SLE-Module-Live-Patching", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Live-Patching/15-SP4/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Live-Patching15-SP4-Debuginfo-Pool for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-packagehub-15-sp4-backports-pool-x86_64", + "parent_channel_label": "sle-product-sles15-sp4-pool-x86_64", + "product_id": 2347, + "repository_id": 5388, + "parent_product_id": 2299, + "root_product_id": 2292, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-15-SP4_x86_64/standard/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-15-SP4-Backports-Pool for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-packagehub-15-sp4-backports-debuginfo-x86_64", + "parent_channel_label": "sle-product-sles15-sp4-pool-x86_64", + "product_id": 2347, + "repository_id": 5389, + "parent_product_id": 2299, + "root_product_id": 2292, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-15-SP4_x86_64/standard_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-15-SP4-Backports-Debuginfo for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-packagehub-subpackages15-sp4-updates-x86_64", + "parent_channel_label": "sle-product-sles15-sp4-pool-x86_64", + "product_id": 2347, + "repository_id": 5390, + "parent_product_id": 2299, + "root_product_id": 2292, + "update_tag": "SLE-Module-Packagehub-Subpackages", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP4/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Packagehub-Subpackages15-SP4-Updates for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-packagehub-subpackages15-sp4-debuginfo-updates-x86_64", + "parent_channel_label": "sle-product-sles15-sp4-pool-x86_64", + "product_id": 2347, + "repository_id": 5391, + "parent_product_id": 2299, + "root_product_id": 2292, + "update_tag": "SLE-Module-Packagehub-Subpackages", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP4/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Packagehub-Subpackages15-SP4-Debuginfo-Updates for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-packagehub-15-sp4-pool-x86_64", + "parent_channel_label": "sle-product-sles15-sp4-pool-x86_64", + "product_id": 2347, + "repository_id": 5392, + "parent_product_id": 2299, + "root_product_id": 2292, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-15-SP4_x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-15-SP4-Pool for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-packagehub-subpackages15-sp4-pool-x86_64", + "parent_channel_label": "sle-product-sles15-sp4-pool-x86_64", + "product_id": 2347, + "repository_id": 5393, + "parent_product_id": 2299, + "root_product_id": 2292, + "update_tag": "SLE-Module-Packagehub-Subpackages", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP4/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Packagehub-Subpackages15-SP4-Pool for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-packagehub-subpackages15-sp4-debuginfo-pool-x86_64", + "parent_channel_label": "sle-product-sles15-sp4-pool-x86_64", + "product_id": 2347, + "repository_id": 5394, + "parent_product_id": 2299, + "root_product_id": 2292, + "update_tag": "SLE-Module-Packagehub-Subpackages", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP4/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Packagehub-Subpackages15-SP4-Debuginfo-Pool for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-python3-15-sp4-updates-x86_64", + "parent_channel_label": "sle-product-sles15-sp4-pool-x86_64", + "product_id": 2405, + "repository_id": 5582, + "parent_product_id": 2299, + "root_product_id": 2292, + "update_tag": "SLE-Module-Python3", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Python3/15-SP4/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Python3-15-SP4-Updates for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-python3-15-sp4-debuginfo-updates-x86_64", + "parent_channel_label": "sle-product-sles15-sp4-pool-x86_64", + "product_id": 2405, + "repository_id": 5583, + "parent_product_id": 2299, + "root_product_id": 2292, + "update_tag": "SLE-Module-Python3", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Python3/15-SP4/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Python3-15-SP4-Debuginfo-Updates for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-python3-15-sp4-pool-x86_64", + "parent_channel_label": "sle-product-sles15-sp4-pool-x86_64", + "product_id": 2405, + "repository_id": 5584, + "parent_product_id": 2299, + "root_product_id": 2292, + "update_tag": "SLE-Module-Python3", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Python3/15-SP4/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Python3-15-SP4-Pool for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-python3-15-sp4-debuginfo-pool-x86_64", + "parent_channel_label": "sle-product-sles15-sp4-pool-x86_64", + "product_id": 2405, + "repository_id": 5585, + "parent_product_id": 2299, + "root_product_id": 2292, + "update_tag": "SLE-Module-Python3", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Python3/15-SP4/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Python3-15-SP4-Debuginfo-Pool for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-certifications-15-sp4-updates-x86_64", + "parent_channel_label": "sle-product-sles15-sp4-pool-x86_64", + "product_id": 2393, + "repository_id": 5547, + "parent_product_id": 2292, + "root_product_id": 2292, + "update_tag": "SLE-Module-Certifications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Certifications/15-SP4/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Certifications-15-SP4-Updates for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-certifications-15-sp4-debuginfo-updates-x86_64", + "parent_channel_label": "sle-product-sles15-sp4-pool-x86_64", + "product_id": 2393, + "repository_id": 5548, + "parent_product_id": 2292, + "root_product_id": 2292, + "update_tag": "SLE-Module-Certifications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Certifications/15-SP4/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Certifications-15-SP4-Debuginfo-Updates for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-certifications-15-sp4-pool-x86_64", + "parent_channel_label": "sle-product-sles15-sp4-pool-x86_64", + "product_id": 2393, + "repository_id": 5549, + "parent_product_id": 2292, + "root_product_id": 2292, + "update_tag": "SLE-Module-Certifications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Certifications/15-SP4/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Certifications-15-SP4-Pool for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-certifications-15-sp4-debuginfo-pool-x86_64", + "parent_channel_label": "sle-product-sles15-sp4-pool-x86_64", + "product_id": 2393, + "repository_id": 5550, + "parent_product_id": 2292, + "root_product_id": 2292, + "update_tag": "SLE-Module-Certifications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Certifications/15-SP4/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Certifications-15-SP4-Debuginfo-Pool for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-sles_sap15-sp4-updates-ppc64le", + "parent_channel_label": "sle-product-sles_sap15-sp4-pool-ppc64le", + "product_id": 2293, + "repository_id": 5106, + "parent_product_id": null, + "root_product_id": 2293, + "update_tag": "SLE-Product-SLES_SAP", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-SLES_SAP/15-SP4/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-SLES_SAP15-SP4-Updates for ppc64le", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-sles_sap15-sp4-debuginfo-updates-ppc64le", + "parent_channel_label": "sle-product-sles_sap15-sp4-pool-ppc64le", + "product_id": 2293, + "repository_id": 5107, + "parent_product_id": null, + "root_product_id": 2293, + "update_tag": "SLE-Product-SLES_SAP", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-SLES_SAP/15-SP4/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-SLES_SAP15-SP4-Debuginfo-Updates for ppc64le", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-sles_sap15-sp4-pool-ppc64le", + "parent_channel_label": null, + "product_id": 2293, + "repository_id": 5108, + "parent_product_id": null, + "root_product_id": 2293, + "update_tag": "SLE-Product-SLES_SAP", + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-SLES_SAP/15-SP4/ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-SLES_SAP15-SP4-Pool for ppc64le", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-sles_sap15-sp4-debuginfo-pool-ppc64le", + "parent_channel_label": "sle-product-sles_sap15-sp4-pool-ppc64le", + "product_id": 2293, + "repository_id": 5109, + "parent_product_id": null, + "root_product_id": 2293, + "update_tag": "SLE-Product-SLES_SAP", + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-SLES_SAP/15-SP4/ppc64le/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-SLES_SAP15-SP4-Debuginfo-Pool for ppc64le", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-basesystem15-sp4-updates-ppc64le-sap", + "parent_channel_label": "sle-product-sles_sap15-sp4-pool-ppc64le", + "product_id": 2297, + "repository_id": 5127, + "parent_product_id": 2293, + "root_product_id": 2293, + "update_tag": "SLE-Module-Basesystem", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15-SP4/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Basesystem15-SP4-Updates for ppc64le SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-basesystem15-sp4-debuginfo-updates-ppc64le-sap", + "parent_channel_label": "sle-product-sles_sap15-sp4-pool-ppc64le", + "product_id": 2297, + "repository_id": 5128, + "parent_product_id": 2293, + "root_product_id": 2293, + "update_tag": "SLE-Module-Basesystem", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15-SP4/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Basesystem15-SP4-Debuginfo-Updates for ppc64le SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-basesystem15-sp4-pool-ppc64le-sap", + "parent_channel_label": "sle-product-sles_sap15-sp4-pool-ppc64le", + "product_id": 2297, + "repository_id": 5129, + "parent_product_id": 2293, + "root_product_id": 2293, + "update_tag": "SLE-Module-Basesystem", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP4/ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Basesystem15-SP4-Pool for ppc64le SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-basesystem15-sp4-debuginfo-pool-ppc64le-sap", + "parent_channel_label": "sle-product-sles_sap15-sp4-pool-ppc64le", + "product_id": 2297, + "repository_id": 5130, + "parent_product_id": 2293, + "root_product_id": 2293, + "update_tag": "SLE-Module-Basesystem", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP4/ppc64le/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Basesystem15-SP4-Debuginfo-Pool for ppc64le SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-manager-tools15-updates-ppc64le-sap-sp4", + "parent_channel_label": "sle-product-sles_sap15-sp4-pool-ppc64le", + "product_id": 1710, + "repository_id": 2922, + "parent_product_id": 2297, + "root_product_id": 2293, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/15/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-Updates for ppc64le SAP SP4", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools15-debuginfo-updates-ppc64le-sap-sp4", + "parent_channel_label": "sle-product-sles_sap15-sp4-pool-ppc64le", + "product_id": 1710, + "repository_id": 2923, + "parent_product_id": 2297, + "root_product_id": 2293, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/15/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-Debuginfo-Updates for ppc64le SAP SP4", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools15-pool-ppc64le-sap-sp4", + "parent_channel_label": "sle-product-sles_sap15-sp4-pool-ppc64le", + "product_id": 1710, + "repository_id": 2924, + "parent_product_id": 2297, + "root_product_id": 2293, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/15/ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-Pool for ppc64le SAP SP4", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools15-debuginfo-pool-ppc64le-sap-sp4", + "parent_channel_label": "sle-product-sles_sap15-sp4-pool-ppc64le", + "product_id": 1710, + "repository_id": 2925, + "parent_product_id": 2297, + "root_product_id": 2293, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/15/ppc64le/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-Debuginfo-Pool for ppc64le SAP SP4", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools15-beta-updates-ppc64le-sap-sp4", + "parent_channel_label": "sle-product-sles_sap15-sp4-pool-ppc64le", + "product_id": 1926, + "repository_id": 3893, + "parent_product_id": 1710, + "root_product_id": 2293, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/15-BETA/ppc64le/update/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-BETA-Updates for ppc64le SAP SP4", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools15-beta-debuginfo-updates-ppc64le-sap-sp4", + "parent_channel_label": "sle-product-sles_sap15-sp4-pool-ppc64le", + "product_id": 1926, + "repository_id": 3894, + "parent_product_id": 1710, + "root_product_id": 2293, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/15-BETA/ppc64le/update_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-BETA-Debuginfo-Updates for ppc64le SAP SP4", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools15-beta-pool-ppc64le-sap-sp4", + "parent_channel_label": "sle-product-sles_sap15-sp4-pool-ppc64le", + "product_id": 1926, + "repository_id": 3902, + "parent_product_id": 1710, + "root_product_id": 2293, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/15-BETA/ppc64le/product/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-BETA-Pool for ppc64le SAP SP4", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools15-beta-debuginfo-pool-ppc64le-sap-sp4", + "parent_channel_label": "sle-product-sles_sap15-sp4-pool-ppc64le", + "product_id": 1926, + "repository_id": 3903, + "parent_product_id": 1710, + "root_product_id": 2293, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/15-BETA/ppc64le/product_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-BETA-Debuginfo-Pool for ppc64le SAP SP4", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-module-desktop-applications15-sp4-updates-ppc64le-sap", + "parent_channel_label": "sle-product-sles_sap15-sp4-pool-ppc64le", + "product_id": 2301, + "repository_id": 5147, + "parent_product_id": 2297, + "root_product_id": 2293, + "update_tag": "SLE-Module-Desktop-Applications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15-SP4/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Desktop-Applications15-SP4-Updates for ppc64le SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-desktop-applications15-sp4-debuginfo-updates-ppc64le-sap", + "parent_channel_label": "sle-product-sles_sap15-sp4-pool-ppc64le", + "product_id": 2301, + "repository_id": 5148, + "parent_product_id": 2297, + "root_product_id": 2293, + "update_tag": "SLE-Module-Desktop-Applications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15-SP4/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Desktop-Applications15-SP4-Debuginfo-Updates for ppc64le SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-desktop-applications15-sp4-pool-ppc64le-sap", + "parent_channel_label": "sle-product-sles_sap15-sp4-pool-ppc64le", + "product_id": 2301, + "repository_id": 5149, + "parent_product_id": 2297, + "root_product_id": 2293, + "update_tag": "SLE-Module-Desktop-Applications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP4/ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Desktop-Applications15-SP4-Pool for ppc64le SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-desktop-applications15-sp4-debuginfo-pool-ppc64le-sap", + "parent_channel_label": "sle-product-sles_sap15-sp4-pool-ppc64le", + "product_id": 2301, + "repository_id": 5150, + "parent_product_id": 2297, + "root_product_id": 2293, + "update_tag": "SLE-Module-Desktop-Applications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP4/ppc64le/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Desktop-Applications15-SP4-Debuginfo-Pool for ppc64le SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-devtools15-sp4-updates-ppc64le-sap", + "parent_channel_label": "sle-product-sles_sap15-sp4-pool-ppc64le", + "product_id": 2313, + "repository_id": 5207, + "parent_product_id": 2301, + "root_product_id": 2293, + "update_tag": "SLE-Module-Development-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15-SP4/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-DevTools15-SP4-Updates for ppc64le SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-devtools15-sp4-debuginfo-updates-ppc64le-sap", + "parent_channel_label": "sle-product-sles_sap15-sp4-pool-ppc64le", + "product_id": 2313, + "repository_id": 5208, + "parent_product_id": 2301, + "root_product_id": 2293, + "update_tag": "SLE-Module-Development-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15-SP4/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-DevTools15-SP4-Debuginfo-Updates for ppc64le SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-devtools15-sp4-pool-ppc64le-sap", + "parent_channel_label": "sle-product-sles_sap15-sp4-pool-ppc64le", + "product_id": 2313, + "repository_id": 5209, + "parent_product_id": 2301, + "root_product_id": 2293, + "update_tag": "SLE-Module-Development-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP4/ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-DevTools15-SP4-Pool for ppc64le SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-devtools15-sp4-debuginfo-pool-ppc64le-sap", + "parent_channel_label": "sle-product-sles_sap15-sp4-pool-ppc64le", + "product_id": 2313, + "repository_id": 5210, + "parent_product_id": 2301, + "root_product_id": 2293, + "update_tag": "SLE-Module-Development-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP4/ppc64le/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-DevTools15-SP4-Debuginfo-Pool for ppc64le SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-server-applications15-sp4-updates-ppc64le-sap", + "parent_channel_label": "sle-product-sles_sap15-sp4-pool-ppc64le", + "product_id": 2305, + "repository_id": 5167, + "parent_product_id": 2297, + "root_product_id": 2293, + "update_tag": "SLE-Module-Server-Applications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15-SP4/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Server-Applications15-SP4-Updates for ppc64le SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-server-applications15-sp4-debuginfo-updates-ppc64le-sap", + "parent_channel_label": "sle-product-sles_sap15-sp4-pool-ppc64le", + "product_id": 2305, + "repository_id": 5168, + "parent_product_id": 2297, + "root_product_id": 2293, + "update_tag": "SLE-Module-Server-Applications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15-SP4/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Server-Applications15-SP4-Debuginfo-Updates for ppc64le SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-server-applications15-sp4-pool-ppc64le-sap", + "parent_channel_label": "sle-product-sles_sap15-sp4-pool-ppc64le", + "product_id": 2305, + "repository_id": 5169, + "parent_product_id": 2297, + "root_product_id": 2293, + "update_tag": "SLE-Module-Server-Applications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP4/ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Server-Applications15-SP4-Pool for ppc64le SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-server-applications15-sp4-debuginfo-pool-ppc64le-sap", + "parent_channel_label": "sle-product-sles_sap15-sp4-pool-ppc64le", + "product_id": 2305, + "repository_id": 5170, + "parent_product_id": 2297, + "root_product_id": 2293, + "update_tag": "SLE-Module-Server-Applications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP4/ppc64le/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Server-Applications15-SP4-Debuginfo-Pool for ppc64le SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "ibm-power-adv-toolchain-ppc64le-sap-sp4", + "parent_channel_label": "sle-product-sles_sap15-sp4-pool-ppc64le", + "product_id": 2076, + "repository_id": 4430, + "parent_product_id": 2305, + "root_product_id": 2293, + "update_tag": null, + "url": "https://public.dhe.ibm.com/software/server/POWER/Linux/toolchain/at/suse/SLES_15/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "IBM-POWER-Adv-Toolchain for ppc64le SAP SP4", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "ibm-power-tools-ppc64le-sap-sp4", + "parent_channel_label": "sle-product-sles_sap15-sp4-pool-ppc64le", + "product_id": 2077, + "repository_id": 4431, + "parent_product_id": 2305, + "root_product_id": 2293, + "update_tag": null, + "url": "https://public.dhe.ibm.com/software/server/POWER/Linux/yum/OSS/SLES/15/ppc64le/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "IBM-POWER-Tools for ppc64le SAP SP4", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting15-sp4-updates-ppc64le-sap", + "parent_channel_label": "sle-product-sles_sap15-sp4-pool-ppc64le", + "product_id": 2317, + "repository_id": 5227, + "parent_product_id": 2305, + "root_product_id": 2293, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/15-SP4/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Web-Scripting15-SP4-Updates for ppc64le SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting15-sp4-debuginfo-updates-ppc64le-sap", + "parent_channel_label": "sle-product-sles_sap15-sp4-pool-ppc64le", + "product_id": 2317, + "repository_id": 5228, + "parent_product_id": 2305, + "root_product_id": 2293, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/15-SP4/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Web-Scripting15-SP4-Debuginfo-Updates for ppc64le SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting15-sp4-pool-ppc64le-sap", + "parent_channel_label": "sle-product-sles_sap15-sp4-pool-ppc64le", + "product_id": 2317, + "repository_id": 5229, + "parent_product_id": 2305, + "root_product_id": 2293, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP4/ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Web-Scripting15-SP4-Pool for ppc64le SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting15-sp4-debuginfo-pool-ppc64le-sap", + "parent_channel_label": "sle-product-sles_sap15-sp4-pool-ppc64le", + "product_id": 2317, + "repository_id": 5230, + "parent_product_id": 2305, + "root_product_id": 2293, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP4/ppc64le/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Web-Scripting15-SP4-Debuginfo-Pool for ppc64le SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-legacy15-sp4-updates-ppc64le-sap", + "parent_channel_label": "sle-product-sles_sap15-sp4-pool-ppc64le", + "product_id": 2321, + "repository_id": 5247, + "parent_product_id": 2305, + "root_product_id": 2293, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/15-SP4/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy15-SP4-Updates for ppc64le SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-legacy15-sp4-debuginfo-updates-ppc64le-sap", + "parent_channel_label": "sle-product-sles_sap15-sp4-pool-ppc64le", + "product_id": 2321, + "repository_id": 5248, + "parent_product_id": 2305, + "root_product_id": 2293, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/15-SP4/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy15-SP4-Debuginfo-Updates for ppc64le SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-legacy15-sp4-pool-ppc64le-sap", + "parent_channel_label": "sle-product-sles_sap15-sp4-pool-ppc64le", + "product_id": 2321, + "repository_id": 5249, + "parent_product_id": 2305, + "root_product_id": 2293, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15-SP4/ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy15-SP4-Pool for ppc64le SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-legacy15-sp4-debuginfo-pool-ppc64le-sap", + "parent_channel_label": "sle-product-sles_sap15-sp4-pool-ppc64le", + "product_id": 2321, + "repository_id": 5250, + "parent_product_id": 2305, + "root_product_id": 2293, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15-SP4/ppc64le/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy15-SP4-Debuginfo-Pool for ppc64le SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud15-sp4-updates-ppc64le-sap", + "parent_channel_label": "sle-product-sles_sap15-sp4-pool-ppc64le", + "product_id": 2325, + "repository_id": 5267, + "parent_product_id": 2305, + "root_product_id": 2293, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/15-SP4/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud15-SP4-Updates for ppc64le SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud15-sp4-debuginfo-updates-ppc64le-sap", + "parent_channel_label": "sle-product-sles_sap15-sp4-pool-ppc64le", + "product_id": 2325, + "repository_id": 5268, + "parent_product_id": 2305, + "root_product_id": 2293, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/15-SP4/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud15-SP4-Debuginfo-Updates for ppc64le SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud15-sp4-pool-ppc64le-sap", + "parent_channel_label": "sle-product-sles_sap15-sp4-pool-ppc64le", + "product_id": 2325, + "repository_id": 5269, + "parent_product_id": 2305, + "root_product_id": 2293, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP4/ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud15-SP4-Pool for ppc64le SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud15-sp4-debuginfo-pool-ppc64le-sap", + "parent_channel_label": "sle-product-sles_sap15-sp4-pool-ppc64le", + "product_id": 2325, + "repository_id": 5270, + "parent_product_id": 2305, + "root_product_id": 2293, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP4/ppc64le/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud15-SP4-Debuginfo-Pool for ppc64le SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-ha15-sp4-updates-ppc64le-sap", + "parent_channel_label": "sle-product-sles_sap15-sp4-pool-ppc64le", + "product_id": 2338, + "repository_id": 5332, + "parent_product_id": 2305, + "root_product_id": 2293, + "update_tag": "SLE-Product-HA", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-HA/15-SP4/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Product-HA15-SP4-Updates for ppc64le SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-ha15-sp4-debuginfo-updates-ppc64le-sap", + "parent_channel_label": "sle-product-sles_sap15-sp4-pool-ppc64le", + "product_id": 2338, + "repository_id": 5333, + "parent_product_id": 2305, + "root_product_id": 2293, + "update_tag": "SLE-Product-HA", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-HA/15-SP4/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Product-HA15-SP4-Debuginfo-Updates for ppc64le SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-ha15-sp4-pool-ppc64le-sap", + "parent_channel_label": "sle-product-sles_sap15-sp4-pool-ppc64le", + "product_id": 2338, + "repository_id": 5334, + "parent_product_id": 2305, + "root_product_id": 2293, + "update_tag": "SLE-Product-HA", + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP4/ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Product-HA15-SP4-Pool for ppc64le SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-ha15-sp4-debuginfo-pool-ppc64le-sap", + "parent_channel_label": "sle-product-sles_sap15-sp4-pool-ppc64le", + "product_id": 2338, + "repository_id": 5335, + "parent_product_id": 2305, + "root_product_id": 2293, + "update_tag": "SLE-Product-HA", + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP4/ppc64le/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Product-HA15-SP4-Debuginfo-Pool for ppc64le SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-sap-applications15-sp4-updates-ppc64le", + "parent_channel_label": "sle-product-sles_sap15-sp4-pool-ppc64le", + "product_id": 2341, + "repository_id": 5347, + "parent_product_id": 2338, + "root_product_id": 2293, + "update_tag": "SLE-Module-SAP-Applications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-SAP-Applications/15-SP4/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-SAP-Applications15-SP4-Updates for ppc64le", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-sap-applications15-sp4-debuginfo-updates-ppc64le", + "parent_channel_label": "sle-product-sles_sap15-sp4-pool-ppc64le", + "product_id": 2341, + "repository_id": 5348, + "parent_product_id": 2338, + "root_product_id": 2293, + "update_tag": "SLE-Module-SAP-Applications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-SAP-Applications/15-SP4/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-SAP-Applications15-SP4-Debuginfo-Updates for ppc64le", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-sap-applications15-sp4-pool-ppc64le", + "parent_channel_label": "sle-product-sles_sap15-sp4-pool-ppc64le", + "product_id": 2341, + "repository_id": 5349, + "parent_product_id": 2338, + "root_product_id": 2293, + "update_tag": "SLE-Module-SAP-Applications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-SAP-Applications/15-SP4/ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-SAP-Applications15-SP4-Pool for ppc64le", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-sap-applications15-sp4-debuginfo-pool-ppc64le", + "parent_channel_label": "sle-product-sles_sap15-sp4-pool-ppc64le", + "product_id": 2341, + "repository_id": 5350, + "parent_product_id": 2338, + "root_product_id": 2293, + "update_tag": "SLE-Module-SAP-Applications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-SAP-Applications/15-SP4/ppc64le/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-SAP-Applications15-SP4-Debuginfo-Pool for ppc64le", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-containers15-sp4-updates-ppc64le-sap", + "parent_channel_label": "sle-product-sles_sap15-sp4-pool-ppc64le", + "product_id": 2309, + "repository_id": 5187, + "parent_product_id": 2297, + "root_product_id": 2293, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/15-SP4/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers15-SP4-Updates for ppc64le SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-containers15-sp4-debuginfo-updates-ppc64le-sap", + "parent_channel_label": "sle-product-sles_sap15-sp4-pool-ppc64le", + "product_id": 2309, + "repository_id": 5188, + "parent_product_id": 2297, + "root_product_id": 2293, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/15-SP4/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers15-SP4-Debuginfo-Updates for ppc64le SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-containers15-sp4-pool-ppc64le-sap", + "parent_channel_label": "sle-product-sles_sap15-sp4-pool-ppc64le", + "product_id": 2309, + "repository_id": 5189, + "parent_product_id": 2297, + "root_product_id": 2293, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP4/ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers15-SP4-Pool for ppc64le SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-containers15-sp4-debuginfo-pool-ppc64le-sap", + "parent_channel_label": "sle-product-sles_sap15-sp4-pool-ppc64le", + "product_id": 2309, + "repository_id": 5190, + "parent_product_id": 2297, + "root_product_id": 2293, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP4/ppc64le/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers15-SP4-Debuginfo-Pool for ppc64le SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-live-patching15-sp4-updates-ppc64le-sap", + "parent_channel_label": "sle-product-sles_sap15-sp4-pool-ppc64le", + "product_id": 2332, + "repository_id": 5302, + "parent_product_id": 2297, + "root_product_id": 2293, + "update_tag": "SLE-Module-Live-Patching", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Live-Patching/15-SP4/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Live-Patching15-SP4-Updates for ppc64le SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-live-patching15-sp4-debuginfo-updates-ppc64le-sap", + "parent_channel_label": "sle-product-sles_sap15-sp4-pool-ppc64le", + "product_id": 2332, + "repository_id": 5303, + "parent_product_id": 2297, + "root_product_id": 2293, + "update_tag": "SLE-Module-Live-Patching", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Live-Patching/15-SP4/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Live-Patching15-SP4-Debuginfo-Updates for ppc64le SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-live-patching15-sp4-pool-ppc64le-sap", + "parent_channel_label": "sle-product-sles_sap15-sp4-pool-ppc64le", + "product_id": 2332, + "repository_id": 5304, + "parent_product_id": 2297, + "root_product_id": 2293, + "update_tag": "SLE-Module-Live-Patching", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Live-Patching/15-SP4/ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Live-Patching15-SP4-Pool for ppc64le SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-live-patching15-sp4-debuginfo-pool-ppc64le-sap", + "parent_channel_label": "sle-product-sles_sap15-sp4-pool-ppc64le", + "product_id": 2332, + "repository_id": 5305, + "parent_product_id": 2297, + "root_product_id": 2293, + "update_tag": "SLE-Module-Live-Patching", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Live-Patching/15-SP4/ppc64le/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Live-Patching15-SP4-Debuginfo-Pool for ppc64le SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-packagehub-15-sp4-backports-pool-ppc64le-sap", + "parent_channel_label": "sle-product-sles_sap15-sp4-pool-ppc64le", + "product_id": 2345, + "repository_id": 5372, + "parent_product_id": 2297, + "root_product_id": 2293, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-15-SP4_ppc64le/standard/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-15-SP4-Backports-Pool for ppc64le SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-packagehub-15-sp4-backports-debuginfo-ppc64le-sap", + "parent_channel_label": "sle-product-sles_sap15-sp4-pool-ppc64le", + "product_id": 2345, + "repository_id": 5373, + "parent_product_id": 2297, + "root_product_id": 2293, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-15-SP4_ppc64le/standard_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-15-SP4-Backports-Debuginfo for ppc64le SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-packagehub-subpackages15-sp4-updates-ppc64le-sap", + "parent_channel_label": "sle-product-sles_sap15-sp4-pool-ppc64le", + "product_id": 2345, + "repository_id": 5374, + "parent_product_id": 2297, + "root_product_id": 2293, + "update_tag": "SLE-Module-Packagehub-Subpackages", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP4/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Packagehub-Subpackages15-SP4-Updates for ppc64le SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-packagehub-subpackages15-sp4-debuginfo-updates-ppc64le-sap", + "parent_channel_label": "sle-product-sles_sap15-sp4-pool-ppc64le", + "product_id": 2345, + "repository_id": 5375, + "parent_product_id": 2297, + "root_product_id": 2293, + "update_tag": "SLE-Module-Packagehub-Subpackages", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP4/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Packagehub-Subpackages15-SP4-Debuginfo-Updates for ppc64le SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-packagehub-15-sp4-pool-ppc64le-sap", + "parent_channel_label": "sle-product-sles_sap15-sp4-pool-ppc64le", + "product_id": 2345, + "repository_id": 5376, + "parent_product_id": 2297, + "root_product_id": 2293, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-15-SP4_ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-15-SP4-Pool for ppc64le SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-packagehub-subpackages15-sp4-pool-ppc64le-sap", + "parent_channel_label": "sle-product-sles_sap15-sp4-pool-ppc64le", + "product_id": 2345, + "repository_id": 5377, + "parent_product_id": 2297, + "root_product_id": 2293, + "update_tag": "SLE-Module-Packagehub-Subpackages", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP4/ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Packagehub-Subpackages15-SP4-Pool for ppc64le SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-packagehub-subpackages15-sp4-debuginfo-pool-ppc64le-sap", + "parent_channel_label": "sle-product-sles_sap15-sp4-pool-ppc64le", + "product_id": 2345, + "repository_id": 5378, + "parent_product_id": 2297, + "root_product_id": 2293, + "update_tag": "SLE-Module-Packagehub-Subpackages", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP4/ppc64le/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Packagehub-Subpackages15-SP4-Debuginfo-Pool for ppc64le SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-python3-15-sp4-updates-ppc64le-sap", + "parent_channel_label": "sle-product-sles_sap15-sp4-pool-ppc64le", + "product_id": 2403, + "repository_id": 5572, + "parent_product_id": 2297, + "root_product_id": 2293, + "update_tag": "SLE-Module-Python3", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Python3/15-SP4/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Python3-15-SP4-Updates for ppc64le SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-python3-15-sp4-debuginfo-updates-ppc64le-sap", + "parent_channel_label": "sle-product-sles_sap15-sp4-pool-ppc64le", + "product_id": 2403, + "repository_id": 5573, + "parent_product_id": 2297, + "root_product_id": 2293, + "update_tag": "SLE-Module-Python3", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Python3/15-SP4/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Python3-15-SP4-Debuginfo-Updates for ppc64le SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-python3-15-sp4-pool-ppc64le-sap", + "parent_channel_label": "sle-product-sles_sap15-sp4-pool-ppc64le", + "product_id": 2403, + "repository_id": 5574, + "parent_product_id": 2297, + "root_product_id": 2293, + "update_tag": "SLE-Module-Python3", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Python3/15-SP4/ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Python3-15-SP4-Pool for ppc64le SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-python3-15-sp4-debuginfo-pool-ppc64le-sap", + "parent_channel_label": "sle-product-sles_sap15-sp4-pool-ppc64le", + "product_id": 2403, + "repository_id": 5575, + "parent_product_id": 2297, + "root_product_id": 2293, + "update_tag": "SLE-Module-Python3", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Python3/15-SP4/ppc64le/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Python3-15-SP4-Debuginfo-Pool for ppc64le SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-certifications-15-sp4-updates-ppc64le-sap", + "parent_channel_label": "sle-product-sles_sap15-sp4-pool-ppc64le", + "product_id": 2391, + "repository_id": 5537, + "parent_product_id": 2293, + "root_product_id": 2293, + "update_tag": "SLE-Module-Certifications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Certifications/15-SP4/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Certifications-15-SP4-Updates for ppc64le SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-certifications-15-sp4-debuginfo-updates-ppc64le-sap", + "parent_channel_label": "sle-product-sles_sap15-sp4-pool-ppc64le", + "product_id": 2391, + "repository_id": 5538, + "parent_product_id": 2293, + "root_product_id": 2293, + "update_tag": "SLE-Module-Certifications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Certifications/15-SP4/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Certifications-15-SP4-Debuginfo-Updates for ppc64le SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-certifications-15-sp4-pool-ppc64le-sap", + "parent_channel_label": "sle-product-sles_sap15-sp4-pool-ppc64le", + "product_id": 2391, + "repository_id": 5539, + "parent_product_id": 2293, + "root_product_id": 2293, + "update_tag": "SLE-Module-Certifications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Certifications/15-SP4/ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Certifications-15-SP4-Pool for ppc64le SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-certifications-15-sp4-debuginfo-pool-ppc64le-sap", + "parent_channel_label": "sle-product-sles_sap15-sp4-pool-ppc64le", + "product_id": 2391, + "repository_id": 5540, + "parent_product_id": 2293, + "root_product_id": 2293, + "update_tag": "SLE-Module-Certifications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Certifications/15-SP4/ppc64le/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Certifications-15-SP4-Debuginfo-Pool for ppc64le SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-sles_sap15-sp4-updates-x86_64", + "parent_channel_label": "sle-product-sles_sap15-sp4-pool-x86_64", + "product_id": 2294, + "repository_id": 5111, + "parent_product_id": null, + "root_product_id": 2294, + "update_tag": "SLE-Product-SLES_SAP", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-SLES_SAP/15-SP4/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-SLES_SAP15-SP4-Updates for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-sles_sap15-sp4-debuginfo-updates-x86_64", + "parent_channel_label": "sle-product-sles_sap15-sp4-pool-x86_64", + "product_id": 2294, + "repository_id": 5112, + "parent_product_id": null, + "root_product_id": 2294, + "update_tag": "SLE-Product-SLES_SAP", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-SLES_SAP/15-SP4/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-SLES_SAP15-SP4-Debuginfo-Updates for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-sles_sap15-sp4-pool-x86_64", + "parent_channel_label": null, + "product_id": 2294, + "repository_id": 5113, + "parent_product_id": null, + "root_product_id": 2294, + "update_tag": "SLE-Product-SLES_SAP", + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-SLES_SAP/15-SP4/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-SLES_SAP15-SP4-Pool for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-sles_sap15-sp4-debuginfo-pool-x86_64", + "parent_channel_label": "sle-product-sles_sap15-sp4-pool-x86_64", + "product_id": 2294, + "repository_id": 5114, + "parent_product_id": null, + "root_product_id": 2294, + "update_tag": "SLE-Product-SLES_SAP", + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-SLES_SAP/15-SP4/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-SLES_SAP15-SP4-Debuginfo-Pool for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-basesystem15-sp4-updates-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-sp4-pool-x86_64", + "product_id": 2299, + "repository_id": 5137, + "parent_product_id": 2294, + "root_product_id": 2294, + "update_tag": "SLE-Module-Basesystem", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15-SP4/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Basesystem15-SP4-Updates for x86_64 SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-basesystem15-sp4-debuginfo-updates-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-sp4-pool-x86_64", + "product_id": 2299, + "repository_id": 5138, + "parent_product_id": 2294, + "root_product_id": 2294, + "update_tag": "SLE-Module-Basesystem", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15-SP4/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Basesystem15-SP4-Debuginfo-Updates for x86_64 SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-basesystem15-sp4-pool-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-sp4-pool-x86_64", + "product_id": 2299, + "repository_id": 5139, + "parent_product_id": 2294, + "root_product_id": 2294, + "update_tag": "SLE-Module-Basesystem", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP4/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Basesystem15-SP4-Pool for x86_64 SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-basesystem15-sp4-debuginfo-pool-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-sp4-pool-x86_64", + "product_id": 2299, + "repository_id": 5140, + "parent_product_id": 2294, + "root_product_id": 2294, + "update_tag": "SLE-Module-Basesystem", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP4/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Basesystem15-SP4-Debuginfo-Pool for x86_64 SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-manager-tools15-updates-x86_64-sap-sp4", + "parent_channel_label": "sle-product-sles_sap15-sp4-pool-x86_64", + "product_id": 1712, + "repository_id": 2932, + "parent_product_id": 2299, + "root_product_id": 2294, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/15/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-Updates for x86_64 SAP SP4", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools15-debuginfo-updates-x86_64-sap-sp4", + "parent_channel_label": "sle-product-sles_sap15-sp4-pool-x86_64", + "product_id": 1712, + "repository_id": 2933, + "parent_product_id": 2299, + "root_product_id": 2294, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/15/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-Debuginfo-Updates for x86_64 SAP SP4", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools15-pool-x86_64-sap-sp4", + "parent_channel_label": "sle-product-sles_sap15-sp4-pool-x86_64", + "product_id": 1712, + "repository_id": 2934, + "parent_product_id": 2299, + "root_product_id": 2294, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/15/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-Pool for x86_64 SAP SP4", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools15-debuginfo-pool-x86_64-sap-sp4", + "parent_channel_label": "sle-product-sles_sap15-sp4-pool-x86_64", + "product_id": 1712, + "repository_id": 2935, + "parent_product_id": 2299, + "root_product_id": 2294, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/15/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-Debuginfo-Pool for x86_64 SAP SP4", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools15-beta-updates-x86_64-sap-sp4", + "parent_channel_label": "sle-product-sles_sap15-sp4-pool-x86_64", + "product_id": 1928, + "repository_id": 3897, + "parent_product_id": 1712, + "root_product_id": 2294, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/15-BETA/x86_64/update/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-BETA-Updates for x86_64 SAP SP4", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools15-beta-debuginfo-updates-x86_64-sap-sp4", + "parent_channel_label": "sle-product-sles_sap15-sp4-pool-x86_64", + "product_id": 1928, + "repository_id": 3898, + "parent_product_id": 1712, + "root_product_id": 2294, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/15-BETA/x86_64/update_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-BETA-Debuginfo-Updates for x86_64 SAP SP4", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools15-beta-pool-x86_64-sap-sp4", + "parent_channel_label": "sle-product-sles_sap15-sp4-pool-x86_64", + "product_id": 1928, + "repository_id": 3908, + "parent_product_id": 1712, + "root_product_id": 2294, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/15-BETA/x86_64/product/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-BETA-Pool for x86_64 SAP SP4", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools15-beta-debuginfo-pool-x86_64-sap-sp4", + "parent_channel_label": "sle-product-sles_sap15-sp4-pool-x86_64", + "product_id": 1928, + "repository_id": 3909, + "parent_product_id": 1712, + "root_product_id": 2294, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/15-BETA/x86_64/product_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-BETA-Debuginfo-Pool for x86_64 SAP SP4", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-module-desktop-applications15-sp4-updates-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-sp4-pool-x86_64", + "product_id": 2303, + "repository_id": 5157, + "parent_product_id": 2299, + "root_product_id": 2294, + "update_tag": "SLE-Module-Desktop-Applications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15-SP4/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Desktop-Applications15-SP4-Updates for x86_64 SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-desktop-applications15-sp4-debuginfo-updates-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-sp4-pool-x86_64", + "product_id": 2303, + "repository_id": 5158, + "parent_product_id": 2299, + "root_product_id": 2294, + "update_tag": "SLE-Module-Desktop-Applications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15-SP4/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Desktop-Applications15-SP4-Debuginfo-Updates for x86_64 SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-desktop-applications15-sp4-pool-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-sp4-pool-x86_64", + "product_id": 2303, + "repository_id": 5159, + "parent_product_id": 2299, + "root_product_id": 2294, + "update_tag": "SLE-Module-Desktop-Applications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP4/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Desktop-Applications15-SP4-Pool for x86_64 SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-desktop-applications15-sp4-debuginfo-pool-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-sp4-pool-x86_64", + "product_id": 2303, + "repository_id": 5160, + "parent_product_id": 2299, + "root_product_id": 2294, + "update_tag": "SLE-Module-Desktop-Applications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP4/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Desktop-Applications15-SP4-Debuginfo-Pool for x86_64 SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-devtools15-sp4-updates-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-sp4-pool-x86_64", + "product_id": 2315, + "repository_id": 5217, + "parent_product_id": 2303, + "root_product_id": 2294, + "update_tag": "SLE-Module-Development-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15-SP4/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-DevTools15-SP4-Updates for x86_64 SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-devtools15-sp4-debuginfo-updates-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-sp4-pool-x86_64", + "product_id": 2315, + "repository_id": 5218, + "parent_product_id": 2303, + "root_product_id": 2294, + "update_tag": "SLE-Module-Development-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15-SP4/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-DevTools15-SP4-Debuginfo-Updates for x86_64 SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-devtools15-sp4-pool-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-sp4-pool-x86_64", + "product_id": 2315, + "repository_id": 5219, + "parent_product_id": 2303, + "root_product_id": 2294, + "update_tag": "SLE-Module-Development-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP4/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-DevTools15-SP4-Pool for x86_64 SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-devtools15-sp4-debuginfo-pool-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-sp4-pool-x86_64", + "product_id": 2315, + "repository_id": 5220, + "parent_product_id": 2303, + "root_product_id": 2294, + "update_tag": "SLE-Module-Development-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP4/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-DevTools15-SP4-Debuginfo-Pool for x86_64 SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-15-sp4-desktop-nvidia-driver-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-sp4-pool-x86_64", + "product_id": 2343, + "repository_id": 5119, + "parent_product_id": 2303, + "root_product_id": 2294, + "update_tag": null, + "url": "https://download.nvidia.com/suse/sle15sp4/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-15-SP4-Desktop-NVIDIA-Driver for x86_64 SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-we15-sp4-updates-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-sp4-pool-x86_64", + "product_id": 2343, + "repository_id": 5357, + "parent_product_id": 2303, + "root_product_id": 2294, + "update_tag": "SLE-Product-WE", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-WE/15-SP4/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-WE15-SP4-Updates for x86_64 SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-we15-sp4-debuginfo-updates-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-sp4-pool-x86_64", + "product_id": 2343, + "repository_id": 5358, + "parent_product_id": 2303, + "root_product_id": 2294, + "update_tag": "SLE-Product-WE", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-WE/15-SP4/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-WE15-SP4-Debuginfo-Updates for x86_64 SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-we15-sp4-pool-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-sp4-pool-x86_64", + "product_id": 2343, + "repository_id": 5359, + "parent_product_id": 2303, + "root_product_id": 2294, + "update_tag": "SLE-Product-WE", + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-WE/15-SP4/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-WE15-SP4-Pool for x86_64 SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-we15-sp4-debuginfo-pool-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-sp4-pool-x86_64", + "product_id": 2343, + "repository_id": 5360, + "parent_product_id": 2303, + "root_product_id": 2294, + "update_tag": "SLE-Product-WE", + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-WE/15-SP4/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-WE15-SP4-Debuginfo-Pool for x86_64 SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-server-applications15-sp4-updates-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-sp4-pool-x86_64", + "product_id": 2307, + "repository_id": 5177, + "parent_product_id": 2299, + "root_product_id": 2294, + "update_tag": "SLE-Module-Server-Applications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15-SP4/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Server-Applications15-SP4-Updates for x86_64 SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-server-applications15-sp4-debuginfo-updates-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-sp4-pool-x86_64", + "product_id": 2307, + "repository_id": 5178, + "parent_product_id": 2299, + "root_product_id": 2294, + "update_tag": "SLE-Module-Server-Applications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15-SP4/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Server-Applications15-SP4-Debuginfo-Updates for x86_64 SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-server-applications15-sp4-pool-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-sp4-pool-x86_64", + "product_id": 2307, + "repository_id": 5179, + "parent_product_id": 2299, + "root_product_id": 2294, + "update_tag": "SLE-Module-Server-Applications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP4/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Server-Applications15-SP4-Pool for x86_64 SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-server-applications15-sp4-debuginfo-pool-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-sp4-pool-x86_64", + "product_id": 2307, + "repository_id": 5180, + "parent_product_id": 2299, + "root_product_id": 2294, + "update_tag": "SLE-Module-Server-Applications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP4/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Server-Applications15-SP4-Debuginfo-Pool for x86_64 SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting15-sp4-updates-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-sp4-pool-x86_64", + "product_id": 2319, + "repository_id": 5237, + "parent_product_id": 2307, + "root_product_id": 2294, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/15-SP4/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Web-Scripting15-SP4-Updates for x86_64 SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting15-sp4-debuginfo-updates-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-sp4-pool-x86_64", + "product_id": 2319, + "repository_id": 5238, + "parent_product_id": 2307, + "root_product_id": 2294, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/15-SP4/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Web-Scripting15-SP4-Debuginfo-Updates for x86_64 SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting15-sp4-pool-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-sp4-pool-x86_64", + "product_id": 2319, + "repository_id": 5239, + "parent_product_id": 2307, + "root_product_id": 2294, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP4/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Web-Scripting15-SP4-Pool for x86_64 SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting15-sp4-debuginfo-pool-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-sp4-pool-x86_64", + "product_id": 2319, + "repository_id": 5240, + "parent_product_id": 2307, + "root_product_id": 2294, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP4/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Web-Scripting15-SP4-Debuginfo-Pool for x86_64 SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-legacy15-sp4-updates-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-sp4-pool-x86_64", + "product_id": 2323, + "repository_id": 5257, + "parent_product_id": 2307, + "root_product_id": 2294, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/15-SP4/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy15-SP4-Updates for x86_64 SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-legacy15-sp4-debuginfo-updates-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-sp4-pool-x86_64", + "product_id": 2323, + "repository_id": 5258, + "parent_product_id": 2307, + "root_product_id": 2294, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/15-SP4/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy15-SP4-Debuginfo-Updates for x86_64 SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-legacy15-sp4-pool-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-sp4-pool-x86_64", + "product_id": 2323, + "repository_id": 5259, + "parent_product_id": 2307, + "root_product_id": 2294, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15-SP4/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy15-SP4-Pool for x86_64 SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-legacy15-sp4-debuginfo-pool-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-sp4-pool-x86_64", + "product_id": 2323, + "repository_id": 5260, + "parent_product_id": 2307, + "root_product_id": 2294, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15-SP4/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy15-SP4-Debuginfo-Pool for x86_64 SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud15-sp4-updates-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-sp4-pool-x86_64", + "product_id": 2327, + "repository_id": 5277, + "parent_product_id": 2307, + "root_product_id": 2294, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/15-SP4/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud15-SP4-Updates for x86_64 SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud15-sp4-debuginfo-updates-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-sp4-pool-x86_64", + "product_id": 2327, + "repository_id": 5278, + "parent_product_id": 2307, + "root_product_id": 2294, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/15-SP4/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud15-SP4-Debuginfo-Updates for x86_64 SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud15-sp4-pool-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-sp4-pool-x86_64", + "product_id": 2327, + "repository_id": 5279, + "parent_product_id": 2307, + "root_product_id": 2294, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP4/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud15-SP4-Pool for x86_64 SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud15-sp4-debuginfo-pool-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-sp4-pool-x86_64", + "product_id": 2327, + "repository_id": 5280, + "parent_product_id": 2307, + "root_product_id": 2294, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP4/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud15-SP4-Debuginfo-Pool for x86_64 SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-ha15-sp4-updates-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-sp4-pool-x86_64", + "product_id": 2340, + "repository_id": 5342, + "parent_product_id": 2307, + "root_product_id": 2294, + "update_tag": "SLE-Product-HA", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-HA/15-SP4/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Product-HA15-SP4-Updates for x86_64 SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-ha15-sp4-debuginfo-updates-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-sp4-pool-x86_64", + "product_id": 2340, + "repository_id": 5343, + "parent_product_id": 2307, + "root_product_id": 2294, + "update_tag": "SLE-Product-HA", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-HA/15-SP4/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Product-HA15-SP4-Debuginfo-Updates for x86_64 SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-ha15-sp4-pool-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-sp4-pool-x86_64", + "product_id": 2340, + "repository_id": 5344, + "parent_product_id": 2307, + "root_product_id": 2294, + "update_tag": "SLE-Product-HA", + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP4/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Product-HA15-SP4-Pool for x86_64 SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-ha15-sp4-debuginfo-pool-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-sp4-pool-x86_64", + "product_id": 2340, + "repository_id": 5345, + "parent_product_id": 2307, + "root_product_id": 2294, + "update_tag": "SLE-Product-HA", + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP4/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Product-HA15-SP4-Debuginfo-Pool for x86_64 SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-sap-applications15-sp4-updates-x86_64", + "parent_channel_label": "sle-product-sles_sap15-sp4-pool-x86_64", + "product_id": 2342, + "repository_id": 5352, + "parent_product_id": 2340, + "root_product_id": 2294, + "update_tag": "SLE-Module-SAP-Applications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-SAP-Applications/15-SP4/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-SAP-Applications15-SP4-Updates for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-sap-applications15-sp4-debuginfo-updates-x86_64", + "parent_channel_label": "sle-product-sles_sap15-sp4-pool-x86_64", + "product_id": 2342, + "repository_id": 5353, + "parent_product_id": 2340, + "root_product_id": 2294, + "update_tag": "SLE-Module-SAP-Applications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-SAP-Applications/15-SP4/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-SAP-Applications15-SP4-Debuginfo-Updates for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-sap-applications15-sp4-pool-x86_64", + "parent_channel_label": "sle-product-sles_sap15-sp4-pool-x86_64", + "product_id": 2342, + "repository_id": 5354, + "parent_product_id": 2340, + "root_product_id": 2294, + "update_tag": "SLE-Module-SAP-Applications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-SAP-Applications/15-SP4/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-SAP-Applications15-SP4-Pool for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-sap-applications15-sp4-debuginfo-pool-x86_64", + "parent_channel_label": "sle-product-sles_sap15-sp4-pool-x86_64", + "product_id": 2342, + "repository_id": 5355, + "parent_product_id": 2340, + "root_product_id": 2294, + "update_tag": "SLE-Module-SAP-Applications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-SAP-Applications/15-SP4/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-SAP-Applications15-SP4-Debuginfo-Pool for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-containers15-sp4-updates-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-sp4-pool-x86_64", + "product_id": 2311, + "repository_id": 5197, + "parent_product_id": 2299, + "root_product_id": 2294, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/15-SP4/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers15-SP4-Updates for x86_64 SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-containers15-sp4-debuginfo-updates-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-sp4-pool-x86_64", + "product_id": 2311, + "repository_id": 5198, + "parent_product_id": 2299, + "root_product_id": 2294, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/15-SP4/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers15-SP4-Debuginfo-Updates for x86_64 SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-containers15-sp4-pool-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-sp4-pool-x86_64", + "product_id": 2311, + "repository_id": 5199, + "parent_product_id": 2299, + "root_product_id": 2294, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP4/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers15-SP4-Pool for x86_64 SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-containers15-sp4-debuginfo-pool-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-sp4-pool-x86_64", + "product_id": 2311, + "repository_id": 5200, + "parent_product_id": 2299, + "root_product_id": 2294, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP4/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers15-SP4-Debuginfo-Pool for x86_64 SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-live-patching15-sp4-updates-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-sp4-pool-x86_64", + "product_id": 2334, + "repository_id": 5312, + "parent_product_id": 2299, + "root_product_id": 2294, + "update_tag": "SLE-Module-Live-Patching", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Live-Patching/15-SP4/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Live-Patching15-SP4-Updates for x86_64 SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-live-patching15-sp4-debuginfo-updates-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-sp4-pool-x86_64", + "product_id": 2334, + "repository_id": 5313, + "parent_product_id": 2299, + "root_product_id": 2294, + "update_tag": "SLE-Module-Live-Patching", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Live-Patching/15-SP4/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Live-Patching15-SP4-Debuginfo-Updates for x86_64 SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-live-patching15-sp4-pool-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-sp4-pool-x86_64", + "product_id": 2334, + "repository_id": 5314, + "parent_product_id": 2299, + "root_product_id": 2294, + "update_tag": "SLE-Module-Live-Patching", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Live-Patching/15-SP4/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Live-Patching15-SP4-Pool for x86_64 SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-live-patching15-sp4-debuginfo-pool-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-sp4-pool-x86_64", + "product_id": 2334, + "repository_id": 5315, + "parent_product_id": 2299, + "root_product_id": 2294, + "update_tag": "SLE-Module-Live-Patching", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Live-Patching/15-SP4/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Live-Patching15-SP4-Debuginfo-Pool for x86_64 SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-packagehub-15-sp4-backports-pool-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-sp4-pool-x86_64", + "product_id": 2347, + "repository_id": 5388, + "parent_product_id": 2299, + "root_product_id": 2294, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-15-SP4_x86_64/standard/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-15-SP4-Backports-Pool for x86_64 SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-packagehub-15-sp4-backports-debuginfo-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-sp4-pool-x86_64", + "product_id": 2347, + "repository_id": 5389, + "parent_product_id": 2299, + "root_product_id": 2294, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-15-SP4_x86_64/standard_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-15-SP4-Backports-Debuginfo for x86_64 SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-packagehub-subpackages15-sp4-updates-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-sp4-pool-x86_64", + "product_id": 2347, + "repository_id": 5390, + "parent_product_id": 2299, + "root_product_id": 2294, + "update_tag": "SLE-Module-Packagehub-Subpackages", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP4/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Packagehub-Subpackages15-SP4-Updates for x86_64 SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-packagehub-subpackages15-sp4-debuginfo-updates-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-sp4-pool-x86_64", + "product_id": 2347, + "repository_id": 5391, + "parent_product_id": 2299, + "root_product_id": 2294, + "update_tag": "SLE-Module-Packagehub-Subpackages", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP4/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Packagehub-Subpackages15-SP4-Debuginfo-Updates for x86_64 SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-packagehub-15-sp4-pool-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-sp4-pool-x86_64", + "product_id": 2347, + "repository_id": 5392, + "parent_product_id": 2299, + "root_product_id": 2294, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-15-SP4_x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-15-SP4-Pool for x86_64 SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-packagehub-subpackages15-sp4-pool-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-sp4-pool-x86_64", + "product_id": 2347, + "repository_id": 5393, + "parent_product_id": 2299, + "root_product_id": 2294, + "update_tag": "SLE-Module-Packagehub-Subpackages", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP4/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Packagehub-Subpackages15-SP4-Pool for x86_64 SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-packagehub-subpackages15-sp4-debuginfo-pool-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-sp4-pool-x86_64", + "product_id": 2347, + "repository_id": 5394, + "parent_product_id": 2299, + "root_product_id": 2294, + "update_tag": "SLE-Module-Packagehub-Subpackages", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP4/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Packagehub-Subpackages15-SP4-Debuginfo-Pool for x86_64 SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-python3-15-sp4-updates-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-sp4-pool-x86_64", + "product_id": 2405, + "repository_id": 5582, + "parent_product_id": 2299, + "root_product_id": 2294, + "update_tag": "SLE-Module-Python3", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Python3/15-SP4/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Python3-15-SP4-Updates for x86_64 SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-python3-15-sp4-debuginfo-updates-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-sp4-pool-x86_64", + "product_id": 2405, + "repository_id": 5583, + "parent_product_id": 2299, + "root_product_id": 2294, + "update_tag": "SLE-Module-Python3", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Python3/15-SP4/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Python3-15-SP4-Debuginfo-Updates for x86_64 SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-python3-15-sp4-pool-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-sp4-pool-x86_64", + "product_id": 2405, + "repository_id": 5584, + "parent_product_id": 2299, + "root_product_id": 2294, + "update_tag": "SLE-Module-Python3", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Python3/15-SP4/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Python3-15-SP4-Pool for x86_64 SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-python3-15-sp4-debuginfo-pool-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-sp4-pool-x86_64", + "product_id": 2405, + "repository_id": 5585, + "parent_product_id": 2299, + "root_product_id": 2294, + "update_tag": "SLE-Module-Python3", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Python3/15-SP4/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Python3-15-SP4-Debuginfo-Pool for x86_64 SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-certifications-15-sp4-updates-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-sp4-pool-x86_64", + "product_id": 2393, + "repository_id": 5547, + "parent_product_id": 2294, + "root_product_id": 2294, + "update_tag": "SLE-Module-Certifications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Certifications/15-SP4/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Certifications-15-SP4-Updates for x86_64 SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-certifications-15-sp4-debuginfo-updates-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-sp4-pool-x86_64", + "product_id": 2393, + "repository_id": 5548, + "parent_product_id": 2294, + "root_product_id": 2294, + "update_tag": "SLE-Module-Certifications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Certifications/15-SP4/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Certifications-15-SP4-Debuginfo-Updates for x86_64 SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-certifications-15-sp4-pool-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-sp4-pool-x86_64", + "product_id": 2393, + "repository_id": 5549, + "parent_product_id": 2294, + "root_product_id": 2294, + "update_tag": "SLE-Module-Certifications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Certifications/15-SP4/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Certifications-15-SP4-Pool for x86_64 SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-certifications-15-sp4-debuginfo-pool-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-sp4-pool-x86_64", + "product_id": 2393, + "repository_id": 5550, + "parent_product_id": 2294, + "root_product_id": 2294, + "update_tag": "SLE-Module-Certifications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Certifications/15-SP4/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Certifications-15-SP4-Debuginfo-Pool for x86_64 SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-sled15-sp4-updates-x86_64", + "parent_channel_label": "sle-product-sled15-sp4-pool-x86_64", + "product_id": 2295, + "repository_id": 5116, + "parent_product_id": null, + "root_product_id": 2295, + "update_tag": "SLE-Product-SLED", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-SLED/15-SP4/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-SLED15-SP4-Updates for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-sled15-sp4-debuginfo-updates-x86_64", + "parent_channel_label": "sle-product-sled15-sp4-pool-x86_64", + "product_id": 2295, + "repository_id": 5117, + "parent_product_id": null, + "root_product_id": 2295, + "update_tag": "SLE-Product-SLED", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-SLED/15-SP4/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-SLED15-SP4-Debuginfo-Updates for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-sled15-sp4-pool-x86_64", + "parent_channel_label": null, + "product_id": 2295, + "repository_id": 5118, + "parent_product_id": null, + "root_product_id": 2295, + "update_tag": "SLE-Product-SLED", + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-SLED/15-SP4/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-SLED15-SP4-Pool for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-sled15-sp4-debuginfo-pool-x86_64", + "parent_channel_label": "sle-product-sled15-sp4-pool-x86_64", + "product_id": 2295, + "repository_id": 5120, + "parent_product_id": null, + "root_product_id": 2295, + "update_tag": "SLE-Product-SLED", + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-SLED/15-SP4/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-SLED15-SP4-Debuginfo-Pool for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-basesystem15-sp4-updates-x86_64-sled", + "parent_channel_label": "sle-product-sled15-sp4-pool-x86_64", + "product_id": 2299, + "repository_id": 5137, + "parent_product_id": 2295, + "root_product_id": 2295, + "update_tag": "SLE-Module-Basesystem", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15-SP4/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Basesystem15-SP4-Updates for x86_64 SLED", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-basesystem15-sp4-debuginfo-updates-x86_64-sled", + "parent_channel_label": "sle-product-sled15-sp4-pool-x86_64", + "product_id": 2299, + "repository_id": 5138, + "parent_product_id": 2295, + "root_product_id": 2295, + "update_tag": "SLE-Module-Basesystem", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15-SP4/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Basesystem15-SP4-Debuginfo-Updates for x86_64 SLED", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-basesystem15-sp4-pool-x86_64-sled", + "parent_channel_label": "sle-product-sled15-sp4-pool-x86_64", + "product_id": 2299, + "repository_id": 5139, + "parent_product_id": 2295, + "root_product_id": 2295, + "update_tag": "SLE-Module-Basesystem", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP4/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Basesystem15-SP4-Pool for x86_64 SLED", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-basesystem15-sp4-debuginfo-pool-x86_64-sled", + "parent_channel_label": "sle-product-sled15-sp4-pool-x86_64", + "product_id": 2299, + "repository_id": 5140, + "parent_product_id": 2295, + "root_product_id": 2295, + "update_tag": "SLE-Module-Basesystem", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP4/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Basesystem15-SP4-Debuginfo-Pool for x86_64 SLED", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-manager-tools15-updates-x86_64-sled-sp4", + "parent_channel_label": "sle-product-sled15-sp4-pool-x86_64", + "product_id": 1712, + "repository_id": 2932, + "parent_product_id": 2299, + "root_product_id": 2295, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/15/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-Updates for x86_64 SLED SP4", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools15-debuginfo-updates-x86_64-sled-sp4", + "parent_channel_label": "sle-product-sled15-sp4-pool-x86_64", + "product_id": 1712, + "repository_id": 2933, + "parent_product_id": 2299, + "root_product_id": 2295, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/15/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-Debuginfo-Updates for x86_64 SLED SP4", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools15-pool-x86_64-sled-sp4", + "parent_channel_label": "sle-product-sled15-sp4-pool-x86_64", + "product_id": 1712, + "repository_id": 2934, + "parent_product_id": 2299, + "root_product_id": 2295, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/15/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-Pool for x86_64 SLED SP4", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools15-debuginfo-pool-x86_64-sled-sp4", + "parent_channel_label": "sle-product-sled15-sp4-pool-x86_64", + "product_id": 1712, + "repository_id": 2935, + "parent_product_id": 2299, + "root_product_id": 2295, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/15/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-Debuginfo-Pool for x86_64 SLED SP4", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools15-beta-updates-x86_64-sled-sp4", + "parent_channel_label": "sle-product-sled15-sp4-pool-x86_64", + "product_id": 1928, + "repository_id": 3897, + "parent_product_id": 1712, + "root_product_id": 2295, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/15-BETA/x86_64/update/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-BETA-Updates for x86_64 SLED SP4", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools15-beta-debuginfo-updates-x86_64-sled-sp4", + "parent_channel_label": "sle-product-sled15-sp4-pool-x86_64", + "product_id": 1928, + "repository_id": 3898, + "parent_product_id": 1712, + "root_product_id": 2295, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/15-BETA/x86_64/update_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-BETA-Debuginfo-Updates for x86_64 SLED SP4", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools15-beta-pool-x86_64-sled-sp4", + "parent_channel_label": "sle-product-sled15-sp4-pool-x86_64", + "product_id": 1928, + "repository_id": 3908, + "parent_product_id": 1712, + "root_product_id": 2295, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/15-BETA/x86_64/product/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-BETA-Pool for x86_64 SLED SP4", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools15-beta-debuginfo-pool-x86_64-sled-sp4", + "parent_channel_label": "sle-product-sled15-sp4-pool-x86_64", + "product_id": 1928, + "repository_id": 3909, + "parent_product_id": 1712, + "root_product_id": 2295, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/15-BETA/x86_64/product_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-BETA-Debuginfo-Pool for x86_64 SLED SP4", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-module-desktop-applications15-sp4-updates-x86_64-sled", + "parent_channel_label": "sle-product-sled15-sp4-pool-x86_64", + "product_id": 2303, + "repository_id": 5157, + "parent_product_id": 2299, + "root_product_id": 2295, + "update_tag": "SLE-Module-Desktop-Applications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15-SP4/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Desktop-Applications15-SP4-Updates for x86_64 SLED", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-desktop-applications15-sp4-debuginfo-updates-x86_64-sled", + "parent_channel_label": "sle-product-sled15-sp4-pool-x86_64", + "product_id": 2303, + "repository_id": 5158, + "parent_product_id": 2299, + "root_product_id": 2295, + "update_tag": "SLE-Module-Desktop-Applications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15-SP4/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Desktop-Applications15-SP4-Debuginfo-Updates for x86_64 SLED", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-desktop-applications15-sp4-pool-x86_64-sled", + "parent_channel_label": "sle-product-sled15-sp4-pool-x86_64", + "product_id": 2303, + "repository_id": 5159, + "parent_product_id": 2299, + "root_product_id": 2295, + "update_tag": "SLE-Module-Desktop-Applications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP4/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Desktop-Applications15-SP4-Pool for x86_64 SLED", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-desktop-applications15-sp4-debuginfo-pool-x86_64-sled", + "parent_channel_label": "sle-product-sled15-sp4-pool-x86_64", + "product_id": 2303, + "repository_id": 5160, + "parent_product_id": 2299, + "root_product_id": 2295, + "update_tag": "SLE-Module-Desktop-Applications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP4/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Desktop-Applications15-SP4-Debuginfo-Pool for x86_64 SLED", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-devtools15-sp4-updates-x86_64-sled", + "parent_channel_label": "sle-product-sled15-sp4-pool-x86_64", + "product_id": 2315, + "repository_id": 5217, + "parent_product_id": 2303, + "root_product_id": 2295, + "update_tag": "SLE-Module-Development-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15-SP4/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-DevTools15-SP4-Updates for x86_64 SLED", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-devtools15-sp4-debuginfo-updates-x86_64-sled", + "parent_channel_label": "sle-product-sled15-sp4-pool-x86_64", + "product_id": 2315, + "repository_id": 5218, + "parent_product_id": 2303, + "root_product_id": 2295, + "update_tag": "SLE-Module-Development-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15-SP4/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-DevTools15-SP4-Debuginfo-Updates for x86_64 SLED", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-devtools15-sp4-pool-x86_64-sled", + "parent_channel_label": "sle-product-sled15-sp4-pool-x86_64", + "product_id": 2315, + "repository_id": 5219, + "parent_product_id": 2303, + "root_product_id": 2295, + "update_tag": "SLE-Module-Development-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP4/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-DevTools15-SP4-Pool for x86_64 SLED", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-devtools15-sp4-debuginfo-pool-x86_64-sled", + "parent_channel_label": "sle-product-sled15-sp4-pool-x86_64", + "product_id": 2315, + "repository_id": 5220, + "parent_product_id": 2303, + "root_product_id": 2295, + "update_tag": "SLE-Module-Development-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP4/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-DevTools15-SP4-Debuginfo-Pool for x86_64 SLED", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-15-sp4-desktop-nvidia-driver-x86_64", + "parent_channel_label": "sle-product-sled15-sp4-pool-x86_64", + "product_id": 2343, + "repository_id": 5119, + "parent_product_id": 2303, + "root_product_id": 2295, + "update_tag": null, + "url": "https://download.nvidia.com/suse/sle15sp4/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-15-SP4-Desktop-NVIDIA-Driver for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-we15-sp4-updates-x86_64-sled", + "parent_channel_label": "sle-product-sled15-sp4-pool-x86_64", + "product_id": 2343, + "repository_id": 5357, + "parent_product_id": 2303, + "root_product_id": 2295, + "update_tag": "SLE-Product-WE", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-WE/15-SP4/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Product-WE15-SP4-Updates for x86_64 SLED", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-we15-sp4-debuginfo-updates-x86_64-sled", + "parent_channel_label": "sle-product-sled15-sp4-pool-x86_64", + "product_id": 2343, + "repository_id": 5358, + "parent_product_id": 2303, + "root_product_id": 2295, + "update_tag": "SLE-Product-WE", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-WE/15-SP4/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Product-WE15-SP4-Debuginfo-Updates for x86_64 SLED", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-we15-sp4-pool-x86_64-sled", + "parent_channel_label": "sle-product-sled15-sp4-pool-x86_64", + "product_id": 2343, + "repository_id": 5359, + "parent_product_id": 2303, + "root_product_id": 2295, + "update_tag": "SLE-Product-WE", + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-WE/15-SP4/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Product-WE15-SP4-Pool for x86_64 SLED", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-we15-sp4-debuginfo-pool-x86_64-sled", + "parent_channel_label": "sle-product-sled15-sp4-pool-x86_64", + "product_id": 2343, + "repository_id": 5360, + "parent_product_id": 2303, + "root_product_id": 2295, + "update_tag": "SLE-Product-WE", + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-WE/15-SP4/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Product-WE15-SP4-Debuginfo-Pool for x86_64 SLED", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-packagehub-15-sp4-backports-pool-x86_64-sled", + "parent_channel_label": "sle-product-sled15-sp4-pool-x86_64", + "product_id": 2347, + "repository_id": 5388, + "parent_product_id": 2299, + "root_product_id": 2295, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-15-SP4_x86_64/standard/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-15-SP4-Backports-Pool for x86_64 SLED", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-packagehub-15-sp4-backports-debuginfo-x86_64-sled", + "parent_channel_label": "sle-product-sled15-sp4-pool-x86_64", + "product_id": 2347, + "repository_id": 5389, + "parent_product_id": 2299, + "root_product_id": 2295, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-15-SP4_x86_64/standard_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-15-SP4-Backports-Debuginfo for x86_64 SLED", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-packagehub-subpackages15-sp4-updates-x86_64-sled", + "parent_channel_label": "sle-product-sled15-sp4-pool-x86_64", + "product_id": 2347, + "repository_id": 5390, + "parent_product_id": 2299, + "root_product_id": 2295, + "update_tag": "SLE-Module-Packagehub-Subpackages", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP4/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Packagehub-Subpackages15-SP4-Updates for x86_64 SLED", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-packagehub-subpackages15-sp4-debuginfo-updates-x86_64-sled", + "parent_channel_label": "sle-product-sled15-sp4-pool-x86_64", + "product_id": 2347, + "repository_id": 5391, + "parent_product_id": 2299, + "root_product_id": 2295, + "update_tag": "SLE-Module-Packagehub-Subpackages", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP4/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Packagehub-Subpackages15-SP4-Debuginfo-Updates for x86_64 SLED", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-packagehub-15-sp4-pool-x86_64-sled", + "parent_channel_label": "sle-product-sled15-sp4-pool-x86_64", + "product_id": 2347, + "repository_id": 5392, + "parent_product_id": 2299, + "root_product_id": 2295, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-15-SP4_x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-15-SP4-Pool for x86_64 SLED", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-packagehub-subpackages15-sp4-pool-x86_64-sled", + "parent_channel_label": "sle-product-sled15-sp4-pool-x86_64", + "product_id": 2347, + "repository_id": 5393, + "parent_product_id": 2299, + "root_product_id": 2295, + "update_tag": "SLE-Module-Packagehub-Subpackages", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP4/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Packagehub-Subpackages15-SP4-Pool for x86_64 SLED", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-packagehub-subpackages15-sp4-debuginfo-pool-x86_64-sled", + "parent_channel_label": "sle-product-sled15-sp4-pool-x86_64", + "product_id": 2347, + "repository_id": 5394, + "parent_product_id": 2299, + "root_product_id": 2295, + "update_tag": "SLE-Module-Packagehub-Subpackages", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP4/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Packagehub-Subpackages15-SP4-Debuginfo-Pool for x86_64 SLED", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-python3-15-sp4-updates-x86_64-sled", + "parent_channel_label": "sle-product-sled15-sp4-pool-x86_64", + "product_id": 2405, + "repository_id": 5582, + "parent_product_id": 2299, + "root_product_id": 2295, + "update_tag": "SLE-Module-Python3", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Python3/15-SP4/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Python3-15-SP4-Updates for x86_64 SLED", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-python3-15-sp4-debuginfo-updates-x86_64-sled", + "parent_channel_label": "sle-product-sled15-sp4-pool-x86_64", + "product_id": 2405, + "repository_id": 5583, + "parent_product_id": 2299, + "root_product_id": 2295, + "update_tag": "SLE-Module-Python3", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Python3/15-SP4/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Python3-15-SP4-Debuginfo-Updates for x86_64 SLED", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-python3-15-sp4-pool-x86_64-sled", + "parent_channel_label": "sle-product-sled15-sp4-pool-x86_64", + "product_id": 2405, + "repository_id": 5584, + "parent_product_id": 2299, + "root_product_id": 2295, + "update_tag": "SLE-Module-Python3", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Python3/15-SP4/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Python3-15-SP4-Pool for x86_64 SLED", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-python3-15-sp4-debuginfo-pool-x86_64-sled", + "parent_channel_label": "sle-product-sled15-sp4-pool-x86_64", + "product_id": 2405, + "repository_id": 5585, + "parent_product_id": 2299, + "root_product_id": 2295, + "update_tag": "SLE-Module-Python3", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Python3/15-SP4/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Python3-15-SP4-Debuginfo-Pool for x86_64 SLED", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-certifications-15-sp4-updates-x86_64-sled", + "parent_channel_label": "sle-product-sled15-sp4-pool-x86_64", + "product_id": 2393, + "repository_id": 5547, + "parent_product_id": 2295, + "root_product_id": 2295, + "update_tag": "SLE-Module-Certifications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Certifications/15-SP4/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Certifications-15-SP4-Updates for x86_64 SLED", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-certifications-15-sp4-debuginfo-updates-x86_64-sled", + "parent_channel_label": "sle-product-sled15-sp4-pool-x86_64", + "product_id": 2393, + "repository_id": 5548, + "parent_product_id": 2295, + "root_product_id": 2295, + "update_tag": "SLE-Module-Certifications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Certifications/15-SP4/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Certifications-15-SP4-Debuginfo-Updates for x86_64 SLED", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-certifications-15-sp4-pool-x86_64-sled", + "parent_channel_label": "sle-product-sled15-sp4-pool-x86_64", + "product_id": 2393, + "repository_id": 5549, + "parent_product_id": 2295, + "root_product_id": 2295, + "update_tag": "SLE-Module-Certifications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Certifications/15-SP4/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Certifications-15-SP4-Pool for x86_64 SLED", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-certifications-15-sp4-debuginfo-pool-x86_64-sled", + "parent_channel_label": "sle-product-sled15-sp4-pool-x86_64", + "product_id": 2393, + "repository_id": 5550, + "parent_product_id": 2295, + "root_product_id": 2295, + "update_tag": "SLE-Module-Certifications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Certifications/15-SP4/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Certifications-15-SP4-Debuginfo-Pool for x86_64 SLED", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-hpc-15-sp4-updates-aarch64", + "parent_channel_label": "sle-product-hpc-15-sp4-pool-aarch64", + "product_id": 2353, + "repository_id": 5396, + "parent_product_id": null, + "root_product_id": 2353, + "update_tag": "SLE-Product-HPC", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-HPC/15-SP4/aarch64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HPC-15-SP4-Updates for aarch64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-hpc15-sp4-debuginfo-updates-aarch64", + "parent_channel_label": "sle-product-hpc-15-sp4-pool-aarch64", + "product_id": 2353, + "repository_id": 5397, + "parent_product_id": null, + "root_product_id": 2353, + "update_tag": "SLE-Product-HPC", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-HPC/15-SP4/aarch64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HPC15-SP4-Debuginfo-Updates for aarch64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-hpc-15-sp4-pool-aarch64", + "parent_channel_label": null, + "product_id": 2353, + "repository_id": 5398, + "parent_product_id": null, + "root_product_id": 2353, + "update_tag": "SLE-Product-HPC", + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-HPC/15-SP4/aarch64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HPC-15-SP4-Pool for aarch64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-hpc15-sp4-debuginfo-pool-aarch64", + "parent_channel_label": "sle-product-hpc-15-sp4-pool-aarch64", + "product_id": 2353, + "repository_id": 5399, + "parent_product_id": null, + "root_product_id": 2353, + "update_tag": "SLE-Product-HPC", + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-HPC/15-SP4/aarch64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HPC15-SP4-Debuginfo-Pool for aarch64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-basesystem15-sp4-updates-aarch64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp4-pool-aarch64", + "product_id": 2296, + "repository_id": 5122, + "parent_product_id": 2353, + "root_product_id": 2353, + "update_tag": "SLE-Module-Basesystem", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15-SP4/aarch64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Basesystem15-SP4-Updates for aarch64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-basesystem15-sp4-debuginfo-updates-aarch64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp4-pool-aarch64", + "product_id": 2296, + "repository_id": 5123, + "parent_product_id": 2353, + "root_product_id": 2353, + "update_tag": "SLE-Module-Basesystem", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15-SP4/aarch64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Basesystem15-SP4-Debuginfo-Updates for aarch64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-basesystem15-sp4-pool-aarch64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp4-pool-aarch64", + "product_id": 2296, + "repository_id": 5124, + "parent_product_id": 2353, + "root_product_id": 2353, + "update_tag": "SLE-Module-Basesystem", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP4/aarch64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Basesystem15-SP4-Pool for aarch64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-basesystem15-sp4-debuginfo-pool-aarch64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp4-pool-aarch64", + "product_id": 2296, + "repository_id": 5125, + "parent_product_id": 2353, + "root_product_id": 2353, + "update_tag": "SLE-Module-Basesystem", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP4/aarch64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Basesystem15-SP4-Debuginfo-Pool for aarch64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-manager-tools15-updates-aarch64-hpc-sp4", + "parent_channel_label": "sle-product-hpc-15-sp4-pool-aarch64", + "product_id": 1709, + "repository_id": 2917, + "parent_product_id": 2296, + "root_product_id": 2353, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/15/aarch64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-Updates for aarch64 HPC SP4", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools15-debuginfo-updates-aarch64-hpc-sp4", + "parent_channel_label": "sle-product-hpc-15-sp4-pool-aarch64", + "product_id": 1709, + "repository_id": 2918, + "parent_product_id": 2296, + "root_product_id": 2353, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/15/aarch64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-Debuginfo-Updates for aarch64 HPC SP4", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools15-pool-aarch64-hpc-sp4", + "parent_channel_label": "sle-product-hpc-15-sp4-pool-aarch64", + "product_id": 1709, + "repository_id": 2919, + "parent_product_id": 2296, + "root_product_id": 2353, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/15/aarch64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-Pool for aarch64 HPC SP4", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools15-debuginfo-pool-aarch64-hpc-sp4", + "parent_channel_label": "sle-product-hpc-15-sp4-pool-aarch64", + "product_id": 1709, + "repository_id": 2920, + "parent_product_id": 2296, + "root_product_id": 2353, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/15/aarch64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-Debuginfo-Pool for aarch64 HPC SP4", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools15-beta-updates-aarch64-hpc-sp4", + "parent_channel_label": "sle-product-hpc-15-sp4-pool-aarch64", + "product_id": 1925, + "repository_id": 3891, + "parent_product_id": 1709, + "root_product_id": 2353, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/15-BETA/aarch64/update/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-BETA-Updates for aarch64 HPC SP4", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools15-beta-debuginfo-updates-aarch64-hpc-sp4", + "parent_channel_label": "sle-product-hpc-15-sp4-pool-aarch64", + "product_id": 1925, + "repository_id": 3892, + "parent_product_id": 1709, + "root_product_id": 2353, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/15-BETA/aarch64/update_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-BETA-Debuginfo-Updates for aarch64 HPC SP4", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools15-beta-pool-aarch64-hpc-sp4", + "parent_channel_label": "sle-product-hpc-15-sp4-pool-aarch64", + "product_id": 1925, + "repository_id": 3899, + "parent_product_id": 1709, + "root_product_id": 2353, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/15-BETA/aarch64/product/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-BETA-Pool for aarch64 HPC SP4", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools15-beta-debuginfo-pool-aarch64-hpc-sp4", + "parent_channel_label": "sle-product-hpc-15-sp4-pool-aarch64", + "product_id": 1925, + "repository_id": 3900, + "parent_product_id": 1709, + "root_product_id": 2353, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/15-BETA/aarch64/product_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-BETA-Debuginfo-Pool for aarch64 HPC SP4", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-module-desktop-applications15-sp4-updates-aarch64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp4-pool-aarch64", + "product_id": 2300, + "repository_id": 5142, + "parent_product_id": 2296, + "root_product_id": 2353, + "update_tag": "SLE-Module-Desktop-Applications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15-SP4/aarch64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Desktop-Applications15-SP4-Updates for aarch64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-desktop-applications15-sp4-debuginfo-updates-aarch64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp4-pool-aarch64", + "product_id": 2300, + "repository_id": 5143, + "parent_product_id": 2296, + "root_product_id": 2353, + "update_tag": "SLE-Module-Desktop-Applications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15-SP4/aarch64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Desktop-Applications15-SP4-Debuginfo-Updates for aarch64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-desktop-applications15-sp4-pool-aarch64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp4-pool-aarch64", + "product_id": 2300, + "repository_id": 5144, + "parent_product_id": 2296, + "root_product_id": 2353, + "update_tag": "SLE-Module-Desktop-Applications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP4/aarch64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Desktop-Applications15-SP4-Pool for aarch64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-desktop-applications15-sp4-debuginfo-pool-aarch64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp4-pool-aarch64", + "product_id": 2300, + "repository_id": 5145, + "parent_product_id": 2296, + "root_product_id": 2353, + "update_tag": "SLE-Module-Desktop-Applications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP4/aarch64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Desktop-Applications15-SP4-Debuginfo-Pool for aarch64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-devtools15-sp4-updates-aarch64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp4-pool-aarch64", + "product_id": 2312, + "repository_id": 5202, + "parent_product_id": 2300, + "root_product_id": 2353, + "update_tag": "SLE-Module-Development-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15-SP4/aarch64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-DevTools15-SP4-Updates for aarch64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-devtools15-sp4-debuginfo-updates-aarch64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp4-pool-aarch64", + "product_id": 2312, + "repository_id": 5203, + "parent_product_id": 2300, + "root_product_id": 2353, + "update_tag": "SLE-Module-Development-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15-SP4/aarch64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-DevTools15-SP4-Debuginfo-Updates for aarch64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-devtools15-sp4-pool-aarch64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp4-pool-aarch64", + "product_id": 2312, + "repository_id": 5204, + "parent_product_id": 2300, + "root_product_id": 2353, + "update_tag": "SLE-Module-Development-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP4/aarch64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-DevTools15-SP4-Pool for aarch64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-devtools15-sp4-debuginfo-pool-aarch64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp4-pool-aarch64", + "product_id": 2312, + "repository_id": 5205, + "parent_product_id": 2300, + "root_product_id": 2353, + "update_tag": "SLE-Module-Development-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP4/aarch64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-DevTools15-SP4-Debuginfo-Pool for aarch64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-nvidia-compute-15-updates-aarch64-hpc-sp4", + "parent_channel_label": "sle-product-hpc-15-sp4-pool-aarch64", + "product_id": 2130, + "repository_id": 4560, + "parent_product_id": 2312, + "root_product_id": 2353, + "update_tag": "SLE-Module-NVIDIA-Compute", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-NVIDIA-Compute/15/aarch64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-NVIDIA-Compute-15-Updates for aarch64 HPC SP4", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-nvidia-compute-15-pool-aarch64-hpc-sp4", + "parent_channel_label": "sle-product-hpc-15-sp4-pool-aarch64", + "product_id": 2130, + "repository_id": 4561, + "parent_product_id": 2312, + "root_product_id": 2353, + "update_tag": "SLE-Module-NVIDIA-Compute", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-NVIDIA-Compute/15/aarch64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-NVIDIA-Compute-15-Pool for aarch64 HPC SP4", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "nvidia-compute-sle-15-aarch64-hpc-sp4", + "parent_channel_label": "sle-product-hpc-15-sp4-pool-aarch64", + "product_id": 2130, + "repository_id": 4562, + "parent_product_id": 2312, + "root_product_id": 2353, + "update_tag": null, + "url": "https://developer.download.nvidia.com/compute/cuda/repos/sles15/sbsa/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "NVIDIA-Compute-SLE-15 for aarch64 HPC SP4", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-server-applications15-sp4-updates-aarch64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp4-pool-aarch64", + "product_id": 2304, + "repository_id": 5162, + "parent_product_id": 2296, + "root_product_id": 2353, + "update_tag": "SLE-Module-Server-Applications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15-SP4/aarch64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Server-Applications15-SP4-Updates for aarch64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-server-applications15-sp4-debuginfo-updates-aarch64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp4-pool-aarch64", + "product_id": 2304, + "repository_id": 5163, + "parent_product_id": 2296, + "root_product_id": 2353, + "update_tag": "SLE-Module-Server-Applications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15-SP4/aarch64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Server-Applications15-SP4-Debuginfo-Updates for aarch64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-server-applications15-sp4-pool-aarch64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp4-pool-aarch64", + "product_id": 2304, + "repository_id": 5164, + "parent_product_id": 2296, + "root_product_id": 2353, + "update_tag": "SLE-Module-Server-Applications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP4/aarch64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Server-Applications15-SP4-Pool for aarch64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-server-applications15-sp4-debuginfo-pool-aarch64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp4-pool-aarch64", + "product_id": 2304, + "repository_id": 5165, + "parent_product_id": 2296, + "root_product_id": 2353, + "update_tag": "SLE-Module-Server-Applications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP4/aarch64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Server-Applications15-SP4-Debuginfo-Pool for aarch64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting15-sp4-updates-aarch64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp4-pool-aarch64", + "product_id": 2316, + "repository_id": 5222, + "parent_product_id": 2304, + "root_product_id": 2353, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/15-SP4/aarch64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Web-Scripting15-SP4-Updates for aarch64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting15-sp4-debuginfo-updates-aarch64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp4-pool-aarch64", + "product_id": 2316, + "repository_id": 5223, + "parent_product_id": 2304, + "root_product_id": 2353, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/15-SP4/aarch64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Web-Scripting15-SP4-Debuginfo-Updates for aarch64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting15-sp4-pool-aarch64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp4-pool-aarch64", + "product_id": 2316, + "repository_id": 5224, + "parent_product_id": 2304, + "root_product_id": 2353, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP4/aarch64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Web-Scripting15-SP4-Pool for aarch64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting15-sp4-debuginfo-pool-aarch64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp4-pool-aarch64", + "product_id": 2316, + "repository_id": 5225, + "parent_product_id": 2304, + "root_product_id": 2353, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP4/aarch64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Web-Scripting15-SP4-Debuginfo-Pool for aarch64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-hpc15-sp4-updates-aarch64", + "parent_channel_label": "sle-product-hpc-15-sp4-pool-aarch64", + "product_id": 2355, + "repository_id": 5406, + "parent_product_id": 2316, + "root_product_id": 2353, + "update_tag": "SLE-Module-HPC", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-HPC/15-SP4/aarch64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-HPC15-SP4-Updates for aarch64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-hpc15-sp4-debuginfo-updates-aarch64", + "parent_channel_label": "sle-product-hpc-15-sp4-pool-aarch64", + "product_id": 2355, + "repository_id": 5407, + "parent_product_id": 2316, + "root_product_id": 2353, + "update_tag": "SLE-Module-HPC", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-HPC/15-SP4/aarch64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-HPC15-SP4-Debuginfo-Updates for aarch64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-hpc15-sp4-pool-aarch64", + "parent_channel_label": "sle-product-hpc-15-sp4-pool-aarch64", + "product_id": 2355, + "repository_id": 5408, + "parent_product_id": 2316, + "root_product_id": 2353, + "update_tag": "SLE-Module-HPC", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-HPC/15-SP4/aarch64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-HPC15-SP4-Pool for aarch64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-hpc15-sp4-debuginfo-pool-aarch64", + "parent_channel_label": "sle-product-hpc-15-sp4-pool-aarch64", + "product_id": 2355, + "repository_id": 5409, + "parent_product_id": 2316, + "root_product_id": 2353, + "update_tag": "SLE-Module-HPC", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-HPC/15-SP4/aarch64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-HPC15-SP4-Debuginfo-Pool for aarch64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-legacy15-sp4-updates-aarch64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp4-pool-aarch64", + "product_id": 2320, + "repository_id": 5242, + "parent_product_id": 2304, + "root_product_id": 2353, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/15-SP4/aarch64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy15-SP4-Updates for aarch64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-legacy15-sp4-debuginfo-updates-aarch64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp4-pool-aarch64", + "product_id": 2320, + "repository_id": 5243, + "parent_product_id": 2304, + "root_product_id": 2353, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/15-SP4/aarch64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy15-SP4-Debuginfo-Updates for aarch64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-legacy15-sp4-pool-aarch64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp4-pool-aarch64", + "product_id": 2320, + "repository_id": 5244, + "parent_product_id": 2304, + "root_product_id": 2353, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15-SP4/aarch64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy15-SP4-Pool for aarch64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-legacy15-sp4-debuginfo-pool-aarch64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp4-pool-aarch64", + "product_id": 2320, + "repository_id": 5245, + "parent_product_id": 2304, + "root_product_id": 2353, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15-SP4/aarch64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy15-SP4-Debuginfo-Pool for aarch64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud15-sp4-updates-aarch64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp4-pool-aarch64", + "product_id": 2324, + "repository_id": 5262, + "parent_product_id": 2304, + "root_product_id": 2353, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/15-SP4/aarch64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud15-SP4-Updates for aarch64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud15-sp4-debuginfo-updates-aarch64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp4-pool-aarch64", + "product_id": 2324, + "repository_id": 5263, + "parent_product_id": 2304, + "root_product_id": 2353, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/15-SP4/aarch64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud15-SP4-Debuginfo-Updates for aarch64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud15-sp4-pool-aarch64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp4-pool-aarch64", + "product_id": 2324, + "repository_id": 5264, + "parent_product_id": 2304, + "root_product_id": 2353, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP4/aarch64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud15-SP4-Pool for aarch64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud15-sp4-debuginfo-pool-aarch64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp4-pool-aarch64", + "product_id": 2324, + "repository_id": 5265, + "parent_product_id": 2304, + "root_product_id": 2353, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP4/aarch64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud15-SP4-Debuginfo-Pool for aarch64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-ha15-sp4-updates-aarch64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp4-pool-aarch64", + "product_id": 2337, + "repository_id": 5327, + "parent_product_id": 2304, + "root_product_id": 2353, + "update_tag": "SLE-Product-HA", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-HA/15-SP4/aarch64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HA15-SP4-Updates for aarch64 HPC", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-ha15-sp4-debuginfo-updates-aarch64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp4-pool-aarch64", + "product_id": 2337, + "repository_id": 5328, + "parent_product_id": 2304, + "root_product_id": 2353, + "update_tag": "SLE-Product-HA", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-HA/15-SP4/aarch64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HA15-SP4-Debuginfo-Updates for aarch64 HPC", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-ha15-sp4-pool-aarch64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp4-pool-aarch64", + "product_id": 2337, + "repository_id": 5329, + "parent_product_id": 2304, + "root_product_id": 2353, + "update_tag": "SLE-Product-HA", + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP4/aarch64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HA15-SP4-Pool for aarch64 HPC", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-ha15-sp4-debuginfo-pool-aarch64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp4-pool-aarch64", + "product_id": 2337, + "repository_id": 5330, + "parent_product_id": 2304, + "root_product_id": 2353, + "update_tag": "SLE-Product-HA", + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP4/aarch64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HA15-SP4-Debuginfo-Pool for aarch64 HPC", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-containers15-sp4-updates-aarch64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp4-pool-aarch64", + "product_id": 2308, + "repository_id": 5182, + "parent_product_id": 2296, + "root_product_id": 2353, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/15-SP4/aarch64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers15-SP4-Updates for aarch64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-containers15-sp4-debuginfo-updates-aarch64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp4-pool-aarch64", + "product_id": 2308, + "repository_id": 5183, + "parent_product_id": 2296, + "root_product_id": 2353, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/15-SP4/aarch64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers15-SP4-Debuginfo-Updates for aarch64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-containers15-sp4-pool-aarch64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp4-pool-aarch64", + "product_id": 2308, + "repository_id": 5184, + "parent_product_id": 2296, + "root_product_id": 2353, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP4/aarch64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers15-SP4-Pool for aarch64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-containers15-sp4-debuginfo-pool-aarch64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp4-pool-aarch64", + "product_id": 2308, + "repository_id": 5185, + "parent_product_id": 2296, + "root_product_id": 2353, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP4/aarch64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers15-SP4-Debuginfo-Pool for aarch64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-packagehub-15-sp4-backports-pool-aarch64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp4-pool-aarch64", + "product_id": 2344, + "repository_id": 5364, + "parent_product_id": 2296, + "root_product_id": 2353, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-15-SP4_aarch64/standard/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-15-SP4-Backports-Pool for aarch64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-packagehub-15-sp4-backports-debuginfo-aarch64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp4-pool-aarch64", + "product_id": 2344, + "repository_id": 5365, + "parent_product_id": 2296, + "root_product_id": 2353, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-15-SP4_aarch64/standard_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-15-SP4-Backports-Debuginfo for aarch64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-packagehub-subpackages15-sp4-updates-aarch64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp4-pool-aarch64", + "product_id": 2344, + "repository_id": 5366, + "parent_product_id": 2296, + "root_product_id": 2353, + "update_tag": "SLE-Module-Packagehub-Subpackages", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP4/aarch64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Packagehub-Subpackages15-SP4-Updates for aarch64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-packagehub-subpackages15-sp4-debuginfo-updates-aarch64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp4-pool-aarch64", + "product_id": 2344, + "repository_id": 5367, + "parent_product_id": 2296, + "root_product_id": 2353, + "update_tag": "SLE-Module-Packagehub-Subpackages", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP4/aarch64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Packagehub-Subpackages15-SP4-Debuginfo-Updates for aarch64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-packagehub-15-sp4-pool-aarch64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp4-pool-aarch64", + "product_id": 2344, + "repository_id": 5368, + "parent_product_id": 2296, + "root_product_id": 2353, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-15-SP4_aarch64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-15-SP4-Pool for aarch64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-packagehub-subpackages15-sp4-pool-aarch64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp4-pool-aarch64", + "product_id": 2344, + "repository_id": 5369, + "parent_product_id": 2296, + "root_product_id": 2353, + "update_tag": "SLE-Module-Packagehub-Subpackages", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP4/aarch64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Packagehub-Subpackages15-SP4-Pool for aarch64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-packagehub-subpackages15-sp4-debuginfo-pool-aarch64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp4-pool-aarch64", + "product_id": 2344, + "repository_id": 5370, + "parent_product_id": 2296, + "root_product_id": 2353, + "update_tag": "SLE-Module-Packagehub-Subpackages", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP4/aarch64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Packagehub-Subpackages15-SP4-Debuginfo-Pool for aarch64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-python3-15-sp4-updates-aarch64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp4-pool-aarch64", + "product_id": 2402, + "repository_id": 5567, + "parent_product_id": 2296, + "root_product_id": 2353, + "update_tag": "SLE-Module-Python3", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Python3/15-SP4/aarch64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Python3-15-SP4-Updates for aarch64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-python3-15-sp4-debuginfo-updates-aarch64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp4-pool-aarch64", + "product_id": 2402, + "repository_id": 5568, + "parent_product_id": 2296, + "root_product_id": 2353, + "update_tag": "SLE-Module-Python3", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Python3/15-SP4/aarch64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Python3-15-SP4-Debuginfo-Updates for aarch64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-python3-15-sp4-pool-aarch64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp4-pool-aarch64", + "product_id": 2402, + "repository_id": 5569, + "parent_product_id": 2296, + "root_product_id": 2353, + "update_tag": "SLE-Module-Python3", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Python3/15-SP4/aarch64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Python3-15-SP4-Pool for aarch64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-python3-15-sp4-debuginfo-pool-aarch64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp4-pool-aarch64", + "product_id": 2402, + "repository_id": 5570, + "parent_product_id": 2296, + "root_product_id": 2353, + "update_tag": "SLE-Module-Python3", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Python3/15-SP4/aarch64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Python3-15-SP4-Debuginfo-Pool for aarch64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-hpc-15-sp4-espos-updates-aarch64", + "parent_channel_label": "sle-product-hpc-15-sp4-pool-aarch64", + "product_id": 2357, + "repository_id": 5416, + "parent_product_id": 2353, + "root_product_id": 2353, + "update_tag": "SLE-Product-HPC", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-HPC/15-SP4-ESPOS/aarch64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HPC-15-SP4-ESPOS-Updates for aarch64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-hpc-15-sp4-espos-debuginfo-updates-aarch64", + "parent_channel_label": "sle-product-hpc-15-sp4-pool-aarch64", + "product_id": 2357, + "repository_id": 5417, + "parent_product_id": 2353, + "root_product_id": 2353, + "update_tag": "SLE-Product-HPC", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-HPC/15-SP4-ESPOS/aarch64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HPC-15-SP4-ESPOS-Debuginfo-Updates for aarch64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-hpc-15-sp4-espos-pool-aarch64", + "parent_channel_label": "sle-product-hpc-15-sp4-pool-aarch64", + "product_id": 2357, + "repository_id": 5418, + "parent_product_id": 2353, + "root_product_id": 2353, + "update_tag": "SLE-Product-HPC", + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-HPC/15-SP4-ESPOS/aarch64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HPC-15-SP4-ESPOS-Pool for aarch64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-hpc-15-sp4-espos-debuginfo-pool-aarch64", + "parent_channel_label": "sle-product-hpc-15-sp4-pool-aarch64", + "product_id": 2357, + "repository_id": 5419, + "parent_product_id": 2353, + "root_product_id": 2353, + "update_tag": "SLE-Product-HPC", + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-HPC/15-SP4-ESPOS/aarch64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HPC-15-SP4-ESPOS-Debuginfo-Pool for aarch64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-hpc-15-sp4-ltss-updates-aarch64", + "parent_channel_label": "sle-product-hpc-15-sp4-pool-aarch64", + "product_id": 2359, + "repository_id": 5426, + "parent_product_id": 2353, + "root_product_id": 2353, + "update_tag": "SLE-Product-HPC", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-HPC/15-SP4-LTSS/aarch64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HPC-15-SP4-LTSS-Updates for aarch64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-hpc-15-sp4-ltss-debuginfo-updates-aarch64", + "parent_channel_label": "sle-product-hpc-15-sp4-pool-aarch64", + "product_id": 2359, + "repository_id": 5427, + "parent_product_id": 2353, + "root_product_id": 2353, + "update_tag": "SLE-Product-HPC", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-HPC/15-SP4-LTSS/aarch64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HPC-15-SP4-LTSS-Debuginfo-Updates for aarch64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-hpc-15-sp4-ltss-pool-aarch64", + "parent_channel_label": "sle-product-hpc-15-sp4-pool-aarch64", + "product_id": 2359, + "repository_id": 5428, + "parent_product_id": 2353, + "root_product_id": 2353, + "update_tag": "SLE-Product-HPC", + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-HPC/15-SP4-LTSS/aarch64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HPC-15-SP4-LTSS-Pool for aarch64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-hpc-15-sp4-ltss-debuginfo-pool-aarch64", + "parent_channel_label": "sle-product-hpc-15-sp4-pool-aarch64", + "product_id": 2359, + "repository_id": 5429, + "parent_product_id": 2353, + "root_product_id": 2353, + "update_tag": "SLE-Product-HPC", + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-HPC/15-SP4-LTSS/aarch64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HPC-15-SP4-LTSS-Debuginfo-Pool for aarch64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-certifications-15-sp4-updates-aarch64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp4-pool-aarch64", + "product_id": 2390, + "repository_id": 5532, + "parent_product_id": 2353, + "root_product_id": 2353, + "update_tag": "SLE-Module-Certifications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Certifications/15-SP4/aarch64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Certifications-15-SP4-Updates for aarch64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-certifications-15-sp4-debuginfo-updates-aarch64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp4-pool-aarch64", + "product_id": 2390, + "repository_id": 5533, + "parent_product_id": 2353, + "root_product_id": 2353, + "update_tag": "SLE-Module-Certifications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Certifications/15-SP4/aarch64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Certifications-15-SP4-Debuginfo-Updates for aarch64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-certifications-15-sp4-pool-aarch64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp4-pool-aarch64", + "product_id": 2390, + "repository_id": 5534, + "parent_product_id": 2353, + "root_product_id": 2353, + "update_tag": "SLE-Module-Certifications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Certifications/15-SP4/aarch64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Certifications-15-SP4-Pool for aarch64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-certifications-15-sp4-debuginfo-pool-aarch64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp4-pool-aarch64", + "product_id": 2390, + "repository_id": 5535, + "parent_product_id": 2353, + "root_product_id": 2353, + "update_tag": "SLE-Module-Certifications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Certifications/15-SP4/aarch64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Certifications-15-SP4-Debuginfo-Pool for aarch64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-hpc-15-sp4-updates-x86_64", + "parent_channel_label": "sle-product-hpc-15-sp4-pool-x86_64", + "product_id": 2354, + "repository_id": 5401, + "parent_product_id": null, + "root_product_id": 2354, + "update_tag": "SLE-Product-HPC", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-HPC/15-SP4/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HPC-15-SP4-Updates for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-hpc15-sp4-debuginfo-updates-x86_64", + "parent_channel_label": "sle-product-hpc-15-sp4-pool-x86_64", + "product_id": 2354, + "repository_id": 5402, + "parent_product_id": null, + "root_product_id": 2354, + "update_tag": "SLE-Product-HPC", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-HPC/15-SP4/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HPC15-SP4-Debuginfo-Updates for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-hpc-15-sp4-pool-x86_64", + "parent_channel_label": null, + "product_id": 2354, + "repository_id": 5403, + "parent_product_id": null, + "root_product_id": 2354, + "update_tag": "SLE-Product-HPC", + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-HPC/15-SP4/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HPC-15-SP4-Pool for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-hpc15-sp4-debuginfo-pool-x86_64", + "parent_channel_label": "sle-product-hpc-15-sp4-pool-x86_64", + "product_id": 2354, + "repository_id": 5404, + "parent_product_id": null, + "root_product_id": 2354, + "update_tag": "SLE-Product-HPC", + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-HPC/15-SP4/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HPC15-SP4-Debuginfo-Pool for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-basesystem15-sp4-updates-x86_64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp4-pool-x86_64", + "product_id": 2299, + "repository_id": 5137, + "parent_product_id": 2354, + "root_product_id": 2354, + "update_tag": "SLE-Module-Basesystem", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15-SP4/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Basesystem15-SP4-Updates for x86_64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-basesystem15-sp4-debuginfo-updates-x86_64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp4-pool-x86_64", + "product_id": 2299, + "repository_id": 5138, + "parent_product_id": 2354, + "root_product_id": 2354, + "update_tag": "SLE-Module-Basesystem", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15-SP4/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Basesystem15-SP4-Debuginfo-Updates for x86_64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-basesystem15-sp4-pool-x86_64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp4-pool-x86_64", + "product_id": 2299, + "repository_id": 5139, + "parent_product_id": 2354, + "root_product_id": 2354, + "update_tag": "SLE-Module-Basesystem", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP4/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Basesystem15-SP4-Pool for x86_64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-basesystem15-sp4-debuginfo-pool-x86_64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp4-pool-x86_64", + "product_id": 2299, + "repository_id": 5140, + "parent_product_id": 2354, + "root_product_id": 2354, + "update_tag": "SLE-Module-Basesystem", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP4/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Basesystem15-SP4-Debuginfo-Pool for x86_64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-manager-tools15-updates-x86_64-hpc-sp4", + "parent_channel_label": "sle-product-hpc-15-sp4-pool-x86_64", + "product_id": 1712, + "repository_id": 2932, + "parent_product_id": 2299, + "root_product_id": 2354, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/15/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-Updates for x86_64 HPC SP4", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools15-debuginfo-updates-x86_64-hpc-sp4", + "parent_channel_label": "sle-product-hpc-15-sp4-pool-x86_64", + "product_id": 1712, + "repository_id": 2933, + "parent_product_id": 2299, + "root_product_id": 2354, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/15/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-Debuginfo-Updates for x86_64 HPC SP4", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools15-pool-x86_64-hpc-sp4", + "parent_channel_label": "sle-product-hpc-15-sp4-pool-x86_64", + "product_id": 1712, + "repository_id": 2934, + "parent_product_id": 2299, + "root_product_id": 2354, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/15/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-Pool for x86_64 HPC SP4", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools15-debuginfo-pool-x86_64-hpc-sp4", + "parent_channel_label": "sle-product-hpc-15-sp4-pool-x86_64", + "product_id": 1712, + "repository_id": 2935, + "parent_product_id": 2299, + "root_product_id": 2354, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/15/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-Debuginfo-Pool for x86_64 HPC SP4", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools15-beta-updates-x86_64-hpc-sp4", + "parent_channel_label": "sle-product-hpc-15-sp4-pool-x86_64", + "product_id": 1928, + "repository_id": 3897, + "parent_product_id": 1712, + "root_product_id": 2354, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/15-BETA/x86_64/update/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-BETA-Updates for x86_64 HPC SP4", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools15-beta-debuginfo-updates-x86_64-hpc-sp4", + "parent_channel_label": "sle-product-hpc-15-sp4-pool-x86_64", + "product_id": 1928, + "repository_id": 3898, + "parent_product_id": 1712, + "root_product_id": 2354, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/15-BETA/x86_64/update_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-BETA-Debuginfo-Updates for x86_64 HPC SP4", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools15-beta-pool-x86_64-hpc-sp4", + "parent_channel_label": "sle-product-hpc-15-sp4-pool-x86_64", + "product_id": 1928, + "repository_id": 3908, + "parent_product_id": 1712, + "root_product_id": 2354, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/15-BETA/x86_64/product/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-BETA-Pool for x86_64 HPC SP4", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools15-beta-debuginfo-pool-x86_64-hpc-sp4", + "parent_channel_label": "sle-product-hpc-15-sp4-pool-x86_64", + "product_id": 1928, + "repository_id": 3909, + "parent_product_id": 1712, + "root_product_id": 2354, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/15-BETA/x86_64/product_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-BETA-Debuginfo-Pool for x86_64 HPC SP4", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-module-desktop-applications15-sp4-updates-x86_64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp4-pool-x86_64", + "product_id": 2303, + "repository_id": 5157, + "parent_product_id": 2299, + "root_product_id": 2354, + "update_tag": "SLE-Module-Desktop-Applications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15-SP4/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Desktop-Applications15-SP4-Updates for x86_64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-desktop-applications15-sp4-debuginfo-updates-x86_64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp4-pool-x86_64", + "product_id": 2303, + "repository_id": 5158, + "parent_product_id": 2299, + "root_product_id": 2354, + "update_tag": "SLE-Module-Desktop-Applications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15-SP4/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Desktop-Applications15-SP4-Debuginfo-Updates for x86_64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-desktop-applications15-sp4-pool-x86_64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp4-pool-x86_64", + "product_id": 2303, + "repository_id": 5159, + "parent_product_id": 2299, + "root_product_id": 2354, + "update_tag": "SLE-Module-Desktop-Applications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP4/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Desktop-Applications15-SP4-Pool for x86_64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-desktop-applications15-sp4-debuginfo-pool-x86_64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp4-pool-x86_64", + "product_id": 2303, + "repository_id": 5160, + "parent_product_id": 2299, + "root_product_id": 2354, + "update_tag": "SLE-Module-Desktop-Applications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP4/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Desktop-Applications15-SP4-Debuginfo-Pool for x86_64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-devtools15-sp4-updates-x86_64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp4-pool-x86_64", + "product_id": 2315, + "repository_id": 5217, + "parent_product_id": 2303, + "root_product_id": 2354, + "update_tag": "SLE-Module-Development-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15-SP4/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-DevTools15-SP4-Updates for x86_64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-devtools15-sp4-debuginfo-updates-x86_64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp4-pool-x86_64", + "product_id": 2315, + "repository_id": 5218, + "parent_product_id": 2303, + "root_product_id": 2354, + "update_tag": "SLE-Module-Development-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15-SP4/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-DevTools15-SP4-Debuginfo-Updates for x86_64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-devtools15-sp4-pool-x86_64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp4-pool-x86_64", + "product_id": 2315, + "repository_id": 5219, + "parent_product_id": 2303, + "root_product_id": 2354, + "update_tag": "SLE-Module-Development-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP4/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-DevTools15-SP4-Pool for x86_64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-devtools15-sp4-debuginfo-pool-x86_64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp4-pool-x86_64", + "product_id": 2315, + "repository_id": 5220, + "parent_product_id": 2303, + "root_product_id": 2354, + "update_tag": "SLE-Module-Development-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP4/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-DevTools15-SP4-Debuginfo-Pool for x86_64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-nvidia-compute-15-updates-x86_64-hpc-sp4", + "parent_channel_label": "sle-product-hpc-15-sp4-pool-x86_64", + "product_id": 2131, + "repository_id": 4554, + "parent_product_id": 2315, + "root_product_id": 2354, + "update_tag": "SLE-Module-NVIDIA-Compute", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-NVIDIA-Compute/15/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-NVIDIA-Compute-15-Updates for x86_64 HPC SP4", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-nvidia-compute-15-pool-x86_64-hpc-sp4", + "parent_channel_label": "sle-product-hpc-15-sp4-pool-x86_64", + "product_id": 2131, + "repository_id": 4556, + "parent_product_id": 2315, + "root_product_id": 2354, + "update_tag": "SLE-Module-NVIDIA-Compute", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-NVIDIA-Compute/15/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-NVIDIA-Compute-15-Pool for x86_64 HPC SP4", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "nvidia-compute-sle-15-x86_64-hpc-sp4", + "parent_channel_label": "sle-product-hpc-15-sp4-pool-x86_64", + "product_id": 2131, + "repository_id": 4563, + "parent_product_id": 2315, + "root_product_id": 2354, + "update_tag": null, + "url": "https://developer.download.nvidia.com/compute/cuda/repos/sles15/x86_64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "NVIDIA-Compute-SLE-15 for x86_64 HPC SP4", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-server-applications15-sp4-updates-x86_64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp4-pool-x86_64", + "product_id": 2307, + "repository_id": 5177, + "parent_product_id": 2299, + "root_product_id": 2354, + "update_tag": "SLE-Module-Server-Applications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15-SP4/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Server-Applications15-SP4-Updates for x86_64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-server-applications15-sp4-debuginfo-updates-x86_64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp4-pool-x86_64", + "product_id": 2307, + "repository_id": 5178, + "parent_product_id": 2299, + "root_product_id": 2354, + "update_tag": "SLE-Module-Server-Applications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15-SP4/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Server-Applications15-SP4-Debuginfo-Updates for x86_64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-server-applications15-sp4-pool-x86_64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp4-pool-x86_64", + "product_id": 2307, + "repository_id": 5179, + "parent_product_id": 2299, + "root_product_id": 2354, + "update_tag": "SLE-Module-Server-Applications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP4/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Server-Applications15-SP4-Pool for x86_64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-server-applications15-sp4-debuginfo-pool-x86_64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp4-pool-x86_64", + "product_id": 2307, + "repository_id": 5180, + "parent_product_id": 2299, + "root_product_id": 2354, + "update_tag": "SLE-Module-Server-Applications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP4/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Server-Applications15-SP4-Debuginfo-Pool for x86_64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting15-sp4-updates-x86_64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp4-pool-x86_64", + "product_id": 2319, + "repository_id": 5237, + "parent_product_id": 2307, + "root_product_id": 2354, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/15-SP4/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Web-Scripting15-SP4-Updates for x86_64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting15-sp4-debuginfo-updates-x86_64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp4-pool-x86_64", + "product_id": 2319, + "repository_id": 5238, + "parent_product_id": 2307, + "root_product_id": 2354, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/15-SP4/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Web-Scripting15-SP4-Debuginfo-Updates for x86_64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting15-sp4-pool-x86_64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp4-pool-x86_64", + "product_id": 2319, + "repository_id": 5239, + "parent_product_id": 2307, + "root_product_id": 2354, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP4/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Web-Scripting15-SP4-Pool for x86_64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting15-sp4-debuginfo-pool-x86_64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp4-pool-x86_64", + "product_id": 2319, + "repository_id": 5240, + "parent_product_id": 2307, + "root_product_id": 2354, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP4/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Web-Scripting15-SP4-Debuginfo-Pool for x86_64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-hpc15-sp4-updates-x86_64", + "parent_channel_label": "sle-product-hpc-15-sp4-pool-x86_64", + "product_id": 2356, + "repository_id": 5411, + "parent_product_id": 2319, + "root_product_id": 2354, + "update_tag": "SLE-Module-HPC", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-HPC/15-SP4/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-HPC15-SP4-Updates for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-hpc15-sp4-debuginfo-updates-x86_64", + "parent_channel_label": "sle-product-hpc-15-sp4-pool-x86_64", + "product_id": 2356, + "repository_id": 5412, + "parent_product_id": 2319, + "root_product_id": 2354, + "update_tag": "SLE-Module-HPC", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-HPC/15-SP4/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-HPC15-SP4-Debuginfo-Updates for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-hpc15-sp4-pool-x86_64", + "parent_channel_label": "sle-product-hpc-15-sp4-pool-x86_64", + "product_id": 2356, + "repository_id": 5413, + "parent_product_id": 2319, + "root_product_id": 2354, + "update_tag": "SLE-Module-HPC", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-HPC/15-SP4/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-HPC15-SP4-Pool for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-hpc15-sp4-debuginfo-pool-x86_64", + "parent_channel_label": "sle-product-hpc-15-sp4-pool-x86_64", + "product_id": 2356, + "repository_id": 5414, + "parent_product_id": 2319, + "root_product_id": 2354, + "update_tag": "SLE-Module-HPC", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-HPC/15-SP4/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-HPC15-SP4-Debuginfo-Pool for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-legacy15-sp4-updates-x86_64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp4-pool-x86_64", + "product_id": 2323, + "repository_id": 5257, + "parent_product_id": 2307, + "root_product_id": 2354, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/15-SP4/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy15-SP4-Updates for x86_64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-legacy15-sp4-debuginfo-updates-x86_64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp4-pool-x86_64", + "product_id": 2323, + "repository_id": 5258, + "parent_product_id": 2307, + "root_product_id": 2354, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/15-SP4/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy15-SP4-Debuginfo-Updates for x86_64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-legacy15-sp4-pool-x86_64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp4-pool-x86_64", + "product_id": 2323, + "repository_id": 5259, + "parent_product_id": 2307, + "root_product_id": 2354, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15-SP4/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy15-SP4-Pool for x86_64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-legacy15-sp4-debuginfo-pool-x86_64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp4-pool-x86_64", + "product_id": 2323, + "repository_id": 5260, + "parent_product_id": 2307, + "root_product_id": 2354, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15-SP4/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy15-SP4-Debuginfo-Pool for x86_64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud15-sp4-updates-x86_64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp4-pool-x86_64", + "product_id": 2327, + "repository_id": 5277, + "parent_product_id": 2307, + "root_product_id": 2354, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/15-SP4/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud15-SP4-Updates for x86_64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud15-sp4-debuginfo-updates-x86_64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp4-pool-x86_64", + "product_id": 2327, + "repository_id": 5278, + "parent_product_id": 2307, + "root_product_id": 2354, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/15-SP4/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud15-SP4-Debuginfo-Updates for x86_64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud15-sp4-pool-x86_64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp4-pool-x86_64", + "product_id": 2327, + "repository_id": 5279, + "parent_product_id": 2307, + "root_product_id": 2354, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP4/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud15-SP4-Pool for x86_64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud15-sp4-debuginfo-pool-x86_64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp4-pool-x86_64", + "product_id": 2327, + "repository_id": 5280, + "parent_product_id": 2307, + "root_product_id": 2354, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP4/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud15-SP4-Debuginfo-Pool for x86_64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-ha15-sp4-updates-x86_64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp4-pool-x86_64", + "product_id": 2340, + "repository_id": 5342, + "parent_product_id": 2307, + "root_product_id": 2354, + "update_tag": "SLE-Product-HA", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-HA/15-SP4/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HA15-SP4-Updates for x86_64 HPC", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-ha15-sp4-debuginfo-updates-x86_64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp4-pool-x86_64", + "product_id": 2340, + "repository_id": 5343, + "parent_product_id": 2307, + "root_product_id": 2354, + "update_tag": "SLE-Product-HA", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-HA/15-SP4/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HA15-SP4-Debuginfo-Updates for x86_64 HPC", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-ha15-sp4-pool-x86_64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp4-pool-x86_64", + "product_id": 2340, + "repository_id": 5344, + "parent_product_id": 2307, + "root_product_id": 2354, + "update_tag": "SLE-Product-HA", + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP4/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HA15-SP4-Pool for x86_64 HPC", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-ha15-sp4-debuginfo-pool-x86_64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp4-pool-x86_64", + "product_id": 2340, + "repository_id": 5345, + "parent_product_id": 2307, + "root_product_id": 2354, + "update_tag": "SLE-Product-HA", + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP4/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HA15-SP4-Debuginfo-Pool for x86_64 HPC", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-containers15-sp4-updates-x86_64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp4-pool-x86_64", + "product_id": 2311, + "repository_id": 5197, + "parent_product_id": 2299, + "root_product_id": 2354, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/15-SP4/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers15-SP4-Updates for x86_64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-containers15-sp4-debuginfo-updates-x86_64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp4-pool-x86_64", + "product_id": 2311, + "repository_id": 5198, + "parent_product_id": 2299, + "root_product_id": 2354, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/15-SP4/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers15-SP4-Debuginfo-Updates for x86_64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-containers15-sp4-pool-x86_64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp4-pool-x86_64", + "product_id": 2311, + "repository_id": 5199, + "parent_product_id": 2299, + "root_product_id": 2354, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP4/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers15-SP4-Pool for x86_64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-containers15-sp4-debuginfo-pool-x86_64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp4-pool-x86_64", + "product_id": 2311, + "repository_id": 5200, + "parent_product_id": 2299, + "root_product_id": 2354, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP4/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers15-SP4-Debuginfo-Pool for x86_64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-live-patching15-sp4-updates-x86_64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp4-pool-x86_64", + "product_id": 2334, + "repository_id": 5312, + "parent_product_id": 2299, + "root_product_id": 2354, + "update_tag": "SLE-Module-Live-Patching", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Live-Patching/15-SP4/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Live-Patching15-SP4-Updates for x86_64 HPC", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-live-patching15-sp4-debuginfo-updates-x86_64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp4-pool-x86_64", + "product_id": 2334, + "repository_id": 5313, + "parent_product_id": 2299, + "root_product_id": 2354, + "update_tag": "SLE-Module-Live-Patching", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Live-Patching/15-SP4/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Live-Patching15-SP4-Debuginfo-Updates for x86_64 HPC", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-live-patching15-sp4-pool-x86_64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp4-pool-x86_64", + "product_id": 2334, + "repository_id": 5314, + "parent_product_id": 2299, + "root_product_id": 2354, + "update_tag": "SLE-Module-Live-Patching", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Live-Patching/15-SP4/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Live-Patching15-SP4-Pool for x86_64 HPC", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-live-patching15-sp4-debuginfo-pool-x86_64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp4-pool-x86_64", + "product_id": 2334, + "repository_id": 5315, + "parent_product_id": 2299, + "root_product_id": 2354, + "update_tag": "SLE-Module-Live-Patching", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Live-Patching/15-SP4/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Live-Patching15-SP4-Debuginfo-Pool for x86_64 HPC", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-packagehub-15-sp4-backports-pool-x86_64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp4-pool-x86_64", + "product_id": 2347, + "repository_id": 5388, + "parent_product_id": 2299, + "root_product_id": 2354, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-15-SP4_x86_64/standard/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-15-SP4-Backports-Pool for x86_64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-packagehub-15-sp4-backports-debuginfo-x86_64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp4-pool-x86_64", + "product_id": 2347, + "repository_id": 5389, + "parent_product_id": 2299, + "root_product_id": 2354, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-15-SP4_x86_64/standard_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-15-SP4-Backports-Debuginfo for x86_64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-packagehub-subpackages15-sp4-updates-x86_64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp4-pool-x86_64", + "product_id": 2347, + "repository_id": 5390, + "parent_product_id": 2299, + "root_product_id": 2354, + "update_tag": "SLE-Module-Packagehub-Subpackages", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP4/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Packagehub-Subpackages15-SP4-Updates for x86_64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-packagehub-subpackages15-sp4-debuginfo-updates-x86_64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp4-pool-x86_64", + "product_id": 2347, + "repository_id": 5391, + "parent_product_id": 2299, + "root_product_id": 2354, + "update_tag": "SLE-Module-Packagehub-Subpackages", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP4/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Packagehub-Subpackages15-SP4-Debuginfo-Updates for x86_64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-packagehub-15-sp4-pool-x86_64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp4-pool-x86_64", + "product_id": 2347, + "repository_id": 5392, + "parent_product_id": 2299, + "root_product_id": 2354, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-15-SP4_x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-15-SP4-Pool for x86_64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-packagehub-subpackages15-sp4-pool-x86_64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp4-pool-x86_64", + "product_id": 2347, + "repository_id": 5393, + "parent_product_id": 2299, + "root_product_id": 2354, + "update_tag": "SLE-Module-Packagehub-Subpackages", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP4/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Packagehub-Subpackages15-SP4-Pool for x86_64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-packagehub-subpackages15-sp4-debuginfo-pool-x86_64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp4-pool-x86_64", + "product_id": 2347, + "repository_id": 5394, + "parent_product_id": 2299, + "root_product_id": 2354, + "update_tag": "SLE-Module-Packagehub-Subpackages", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP4/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Packagehub-Subpackages15-SP4-Debuginfo-Pool for x86_64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-python3-15-sp4-updates-x86_64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp4-pool-x86_64", + "product_id": 2405, + "repository_id": 5582, + "parent_product_id": 2299, + "root_product_id": 2354, + "update_tag": "SLE-Module-Python3", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Python3/15-SP4/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Python3-15-SP4-Updates for x86_64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-python3-15-sp4-debuginfo-updates-x86_64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp4-pool-x86_64", + "product_id": 2405, + "repository_id": 5583, + "parent_product_id": 2299, + "root_product_id": 2354, + "update_tag": "SLE-Module-Python3", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Python3/15-SP4/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Python3-15-SP4-Debuginfo-Updates for x86_64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-python3-15-sp4-pool-x86_64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp4-pool-x86_64", + "product_id": 2405, + "repository_id": 5584, + "parent_product_id": 2299, + "root_product_id": 2354, + "update_tag": "SLE-Module-Python3", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Python3/15-SP4/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Python3-15-SP4-Pool for x86_64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-python3-15-sp4-debuginfo-pool-x86_64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp4-pool-x86_64", + "product_id": 2405, + "repository_id": 5585, + "parent_product_id": 2299, + "root_product_id": 2354, + "update_tag": "SLE-Module-Python3", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Python3/15-SP4/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Python3-15-SP4-Debuginfo-Pool for x86_64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-hpc-15-sp4-espos-updates-x86_64", + "parent_channel_label": "sle-product-hpc-15-sp4-pool-x86_64", + "product_id": 2358, + "repository_id": 5421, + "parent_product_id": 2354, + "root_product_id": 2354, + "update_tag": "SLE-Product-HPC", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-HPC/15-SP4-ESPOS/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HPC-15-SP4-ESPOS-Updates for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-hpc-15-sp4-espos-debuginfo-updates-x86_64", + "parent_channel_label": "sle-product-hpc-15-sp4-pool-x86_64", + "product_id": 2358, + "repository_id": 5422, + "parent_product_id": 2354, + "root_product_id": 2354, + "update_tag": "SLE-Product-HPC", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-HPC/15-SP4-ESPOS/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HPC-15-SP4-ESPOS-Debuginfo-Updates for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-hpc-15-sp4-espos-pool-x86_64", + "parent_channel_label": "sle-product-hpc-15-sp4-pool-x86_64", + "product_id": 2358, + "repository_id": 5423, + "parent_product_id": 2354, + "root_product_id": 2354, + "update_tag": "SLE-Product-HPC", + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-HPC/15-SP4-ESPOS/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HPC-15-SP4-ESPOS-Pool for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-hpc-15-sp4-espos-debuginfo-pool-x86_64", + "parent_channel_label": "sle-product-hpc-15-sp4-pool-x86_64", + "product_id": 2358, + "repository_id": 5424, + "parent_product_id": 2354, + "root_product_id": 2354, + "update_tag": "SLE-Product-HPC", + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-HPC/15-SP4-ESPOS/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HPC-15-SP4-ESPOS-Debuginfo-Pool for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-hpc-15-sp4-ltss-updates-x86_64", + "parent_channel_label": "sle-product-hpc-15-sp4-pool-x86_64", + "product_id": 2360, + "repository_id": 5431, + "parent_product_id": 2354, + "root_product_id": 2354, + "update_tag": "SLE-Product-HPC", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-HPC/15-SP4-LTSS/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HPC-15-SP4-LTSS-Updates for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-hpc-15-sp4-ltss-debuginfo-updates-x86_64", + "parent_channel_label": "sle-product-hpc-15-sp4-pool-x86_64", + "product_id": 2360, + "repository_id": 5432, + "parent_product_id": 2354, + "root_product_id": 2354, + "update_tag": "SLE-Product-HPC", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-HPC/15-SP4-LTSS/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HPC-15-SP4-LTSS-Debuginfo-Updates for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-hpc-15-sp4-ltss-pool-x86_64", + "parent_channel_label": "sle-product-hpc-15-sp4-pool-x86_64", + "product_id": 2360, + "repository_id": 5433, + "parent_product_id": 2354, + "root_product_id": 2354, + "update_tag": "SLE-Product-HPC", + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-HPC/15-SP4-LTSS/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HPC-15-SP4-LTSS-Pool for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-hpc-15-sp4-ltss-debuginfo-pool-x86_64", + "parent_channel_label": "sle-product-hpc-15-sp4-pool-x86_64", + "product_id": 2360, + "repository_id": 5434, + "parent_product_id": 2354, + "root_product_id": 2354, + "update_tag": "SLE-Product-HPC", + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-HPC/15-SP4-LTSS/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HPC-15-SP4-LTSS-Debuginfo-Pool for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-certifications-15-sp4-updates-x86_64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp4-pool-x86_64", + "product_id": 2393, + "repository_id": 5547, + "parent_product_id": 2354, + "root_product_id": 2354, + "update_tag": "SLE-Module-Certifications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Certifications/15-SP4/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Certifications-15-SP4-Updates for x86_64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-certifications-15-sp4-debuginfo-updates-x86_64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp4-pool-x86_64", + "product_id": 2393, + "repository_id": 5548, + "parent_product_id": 2354, + "root_product_id": 2354, + "update_tag": "SLE-Module-Certifications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Certifications/15-SP4/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Certifications-15-SP4-Debuginfo-Updates for x86_64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-certifications-15-sp4-pool-x86_64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp4-pool-x86_64", + "product_id": 2393, + "repository_id": 5549, + "parent_product_id": 2354, + "root_product_id": 2354, + "update_tag": "SLE-Module-Certifications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Certifications/15-SP4/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Certifications-15-SP4-Pool for x86_64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-certifications-15-sp4-debuginfo-pool-x86_64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp4-pool-x86_64", + "product_id": 2393, + "repository_id": 5550, + "parent_product_id": 2354, + "root_product_id": 2354, + "update_tag": "SLE-Module-Certifications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Certifications/15-SP4/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Certifications-15-SP4-Debuginfo-Pool for x86_64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-suse-manager-server-4.3-updates-ppc64le", + "parent_channel_label": "sle-product-suse-manager-server-4.3-pool-ppc64le", + "product_id": 2376, + "repository_id": 5460, + "parent_product_id": null, + "root_product_id": 2376, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-SUSE-Manager-Server/4.3/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-SUSE-Manager-Server-4.3-Updates for ppc64le", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-product-suse-manager-server-4.3-debuginfo-updates-ppc64le", + "parent_channel_label": "sle-product-suse-manager-server-4.3-pool-ppc64le", + "product_id": 2376, + "repository_id": 5461, + "parent_product_id": null, + "root_product_id": 2376, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-SUSE-Manager-Server/4.3/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-SUSE-Manager-Server-4.3-Debuginfo-Updates for ppc64le", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-product-suse-manager-server-4.3-pool-ppc64le", + "parent_channel_label": null, + "product_id": 2376, + "repository_id": 5462, + "parent_product_id": null, + "root_product_id": 2376, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-SUSE-Manager-Server/4.3/ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-SUSE-Manager-Server-4.3-Pool for ppc64le", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-product-suse-manager-server-4.3-debuginfo-pool-ppc64le", + "parent_channel_label": "sle-product-suse-manager-server-4.3-pool-ppc64le", + "product_id": 2376, + "repository_id": 5463, + "parent_product_id": null, + "root_product_id": 2376, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-SUSE-Manager-Server/4.3/ppc64le/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-SUSE-Manager-Server-4.3-Debuginfo-Pool for ppc64le", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-basesystem15-sp4-updates-ppc64le-sms-4.3", + "parent_channel_label": "sle-product-suse-manager-server-4.3-pool-ppc64le", + "product_id": 2297, + "repository_id": 5127, + "parent_product_id": 2376, + "root_product_id": 2376, + "update_tag": "SLE-Module-Basesystem", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15-SP4/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Basesystem15-SP4-Updates for ppc64le SMS 4.3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-basesystem15-sp4-debuginfo-updates-ppc64le-sms-4.3", + "parent_channel_label": "sle-product-suse-manager-server-4.3-pool-ppc64le", + "product_id": 2297, + "repository_id": 5128, + "parent_product_id": 2376, + "root_product_id": 2376, + "update_tag": "SLE-Module-Basesystem", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15-SP4/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Basesystem15-SP4-Debuginfo-Updates for ppc64le SMS 4.3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-basesystem15-sp4-pool-ppc64le-sms-4.3", + "parent_channel_label": "sle-product-suse-manager-server-4.3-pool-ppc64le", + "product_id": 2297, + "repository_id": 5129, + "parent_product_id": 2376, + "root_product_id": 2376, + "update_tag": "SLE-Module-Basesystem", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP4/ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Basesystem15-SP4-Pool for ppc64le SMS 4.3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-basesystem15-sp4-debuginfo-pool-ppc64le-sms-4.3", + "parent_channel_label": "sle-product-suse-manager-server-4.3-pool-ppc64le", + "product_id": 2297, + "repository_id": 5130, + "parent_product_id": 2376, + "root_product_id": 2376, + "update_tag": "SLE-Module-Basesystem", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP4/ppc64le/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Basesystem15-SP4-Debuginfo-Pool for ppc64le SMS 4.3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-desktop-applications15-sp4-updates-ppc64le-sms-4.3", + "parent_channel_label": "sle-product-suse-manager-server-4.3-pool-ppc64le", + "product_id": 2301, + "repository_id": 5147, + "parent_product_id": 2297, + "root_product_id": 2376, + "update_tag": "SLE-Module-Desktop-Applications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15-SP4/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Desktop-Applications15-SP4-Updates for ppc64le SMS 4.3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-desktop-applications15-sp4-debuginfo-updates-ppc64le-sms-4.3", + "parent_channel_label": "sle-product-suse-manager-server-4.3-pool-ppc64le", + "product_id": 2301, + "repository_id": 5148, + "parent_product_id": 2297, + "root_product_id": 2376, + "update_tag": "SLE-Module-Desktop-Applications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15-SP4/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Desktop-Applications15-SP4-Debuginfo-Updates for ppc64le SMS 4.3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-desktop-applications15-sp4-pool-ppc64le-sms-4.3", + "parent_channel_label": "sle-product-suse-manager-server-4.3-pool-ppc64le", + "product_id": 2301, + "repository_id": 5149, + "parent_product_id": 2297, + "root_product_id": 2376, + "update_tag": "SLE-Module-Desktop-Applications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP4/ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Desktop-Applications15-SP4-Pool for ppc64le SMS 4.3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-desktop-applications15-sp4-debuginfo-pool-ppc64le-sms-4.3", + "parent_channel_label": "sle-product-suse-manager-server-4.3-pool-ppc64le", + "product_id": 2301, + "repository_id": 5150, + "parent_product_id": 2297, + "root_product_id": 2376, + "update_tag": "SLE-Module-Desktop-Applications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP4/ppc64le/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Desktop-Applications15-SP4-Debuginfo-Pool for ppc64le SMS 4.3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-devtools15-sp4-updates-ppc64le-sms-4.3", + "parent_channel_label": "sle-product-suse-manager-server-4.3-pool-ppc64le", + "product_id": 2313, + "repository_id": 5207, + "parent_product_id": 2301, + "root_product_id": 2376, + "update_tag": "SLE-Module-Development-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15-SP4/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-DevTools15-SP4-Updates for ppc64le SMS 4.3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-devtools15-sp4-debuginfo-updates-ppc64le-sms-4.3", + "parent_channel_label": "sle-product-suse-manager-server-4.3-pool-ppc64le", + "product_id": 2313, + "repository_id": 5208, + "parent_product_id": 2301, + "root_product_id": 2376, + "update_tag": "SLE-Module-Development-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15-SP4/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-DevTools15-SP4-Debuginfo-Updates for ppc64le SMS 4.3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-devtools15-sp4-pool-ppc64le-sms-4.3", + "parent_channel_label": "sle-product-suse-manager-server-4.3-pool-ppc64le", + "product_id": 2313, + "repository_id": 5209, + "parent_product_id": 2301, + "root_product_id": 2376, + "update_tag": "SLE-Module-Development-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP4/ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-DevTools15-SP4-Pool for ppc64le SMS 4.3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-devtools15-sp4-debuginfo-pool-ppc64le-sms-4.3", + "parent_channel_label": "sle-product-suse-manager-server-4.3-pool-ppc64le", + "product_id": 2313, + "repository_id": 5210, + "parent_product_id": 2301, + "root_product_id": 2376, + "update_tag": "SLE-Module-Development-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP4/ppc64le/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-DevTools15-SP4-Debuginfo-Pool for ppc64le SMS 4.3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-server-applications15-sp4-updates-ppc64le-sms-4.3", + "parent_channel_label": "sle-product-suse-manager-server-4.3-pool-ppc64le", + "product_id": 2305, + "repository_id": 5167, + "parent_product_id": 2297, + "root_product_id": 2376, + "update_tag": "SLE-Module-Server-Applications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15-SP4/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Server-Applications15-SP4-Updates for ppc64le SMS 4.3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-server-applications15-sp4-debuginfo-updates-ppc64le-sms-4.3", + "parent_channel_label": "sle-product-suse-manager-server-4.3-pool-ppc64le", + "product_id": 2305, + "repository_id": 5168, + "parent_product_id": 2297, + "root_product_id": 2376, + "update_tag": "SLE-Module-Server-Applications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15-SP4/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Server-Applications15-SP4-Debuginfo-Updates for ppc64le SMS 4.3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-server-applications15-sp4-pool-ppc64le-sms-4.3", + "parent_channel_label": "sle-product-suse-manager-server-4.3-pool-ppc64le", + "product_id": 2305, + "repository_id": 5169, + "parent_product_id": 2297, + "root_product_id": 2376, + "update_tag": "SLE-Module-Server-Applications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP4/ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Server-Applications15-SP4-Pool for ppc64le SMS 4.3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-server-applications15-sp4-debuginfo-pool-ppc64le-sms-4.3", + "parent_channel_label": "sle-product-suse-manager-server-4.3-pool-ppc64le", + "product_id": 2305, + "repository_id": 5170, + "parent_product_id": 2297, + "root_product_id": 2376, + "update_tag": "SLE-Module-Server-Applications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP4/ppc64le/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Server-Applications15-SP4-Debuginfo-Pool for ppc64le SMS 4.3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-web-scripting15-sp4-updates-ppc64le-sms-4.3", + "parent_channel_label": "sle-product-suse-manager-server-4.3-pool-ppc64le", + "product_id": 2317, + "repository_id": 5227, + "parent_product_id": 2305, + "root_product_id": 2376, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/15-SP4/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Web-Scripting15-SP4-Updates for ppc64le SMS 4.3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-web-scripting15-sp4-debuginfo-updates-ppc64le-sms-4.3", + "parent_channel_label": "sle-product-suse-manager-server-4.3-pool-ppc64le", + "product_id": 2317, + "repository_id": 5228, + "parent_product_id": 2305, + "root_product_id": 2376, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/15-SP4/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Web-Scripting15-SP4-Debuginfo-Updates for ppc64le SMS 4.3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-web-scripting15-sp4-pool-ppc64le-sms-4.3", + "parent_channel_label": "sle-product-suse-manager-server-4.3-pool-ppc64le", + "product_id": 2317, + "repository_id": 5229, + "parent_product_id": 2305, + "root_product_id": 2376, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP4/ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Web-Scripting15-SP4-Pool for ppc64le SMS 4.3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-web-scripting15-sp4-debuginfo-pool-ppc64le-sms-4.3", + "parent_channel_label": "sle-product-suse-manager-server-4.3-pool-ppc64le", + "product_id": 2317, + "repository_id": 5230, + "parent_product_id": 2305, + "root_product_id": 2376, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP4/ppc64le/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Web-Scripting15-SP4-Debuginfo-Pool for ppc64le SMS 4.3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-suse-manager-server-4.3-updates-ppc64le", + "parent_channel_label": "sle-product-suse-manager-server-4.3-pool-ppc64le", + "product_id": 2381, + "repository_id": 5485, + "parent_product_id": 2317, + "root_product_id": 2376, + "update_tag": "SLE-Module-SUSE-Manager-Server", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-SUSE-Manager-Server/4.3/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-SUSE-Manager-Server-4.3-Updates for ppc64le", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-suse-manager-server-4.3-debuginfo-updates-ppc64le", + "parent_channel_label": "sle-product-suse-manager-server-4.3-pool-ppc64le", + "product_id": 2381, + "repository_id": 5486, + "parent_product_id": 2317, + "root_product_id": 2376, + "update_tag": "SLE-Module-SUSE-Manager-Server", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-SUSE-Manager-Server/4.3/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-SUSE-Manager-Server-4.3-Debuginfo-Updates for ppc64le", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-suse-manager-server-4.3-pool-ppc64le", + "parent_channel_label": "sle-product-suse-manager-server-4.3-pool-ppc64le", + "product_id": 2381, + "repository_id": 5487, + "parent_product_id": 2317, + "root_product_id": 2376, + "update_tag": "SLE-Module-SUSE-Manager-Server", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-SUSE-Manager-Server/4.3/ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-SUSE-Manager-Server-4.3-Pool for ppc64le", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-suse-manager-server-4.3-debuginfo-pool-ppc64le", + "parent_channel_label": "sle-product-suse-manager-server-4.3-pool-ppc64le", + "product_id": 2381, + "repository_id": 5488, + "parent_product_id": 2317, + "root_product_id": 2376, + "update_tag": "SLE-Module-SUSE-Manager-Server", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-SUSE-Manager-Server/4.3/ppc64le/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-SUSE-Manager-Server-4.3-Debuginfo-Pool for ppc64le", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-legacy15-sp4-updates-ppc64le-sms-4.3", + "parent_channel_label": "sle-product-suse-manager-server-4.3-pool-ppc64le", + "product_id": 2321, + "repository_id": 5247, + "parent_product_id": 2305, + "root_product_id": 2376, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/15-SP4/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy15-SP4-Updates for ppc64le SMS 4.3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-legacy15-sp4-debuginfo-updates-ppc64le-sms-4.3", + "parent_channel_label": "sle-product-suse-manager-server-4.3-pool-ppc64le", + "product_id": 2321, + "repository_id": 5248, + "parent_product_id": 2305, + "root_product_id": 2376, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/15-SP4/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy15-SP4-Debuginfo-Updates for ppc64le SMS 4.3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-legacy15-sp4-pool-ppc64le-sms-4.3", + "parent_channel_label": "sle-product-suse-manager-server-4.3-pool-ppc64le", + "product_id": 2321, + "repository_id": 5249, + "parent_product_id": 2305, + "root_product_id": 2376, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15-SP4/ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy15-SP4-Pool for ppc64le SMS 4.3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-legacy15-sp4-debuginfo-pool-ppc64le-sms-4.3", + "parent_channel_label": "sle-product-suse-manager-server-4.3-pool-ppc64le", + "product_id": 2321, + "repository_id": 5250, + "parent_product_id": 2305, + "root_product_id": 2376, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15-SP4/ppc64le/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy15-SP4-Debuginfo-Pool for ppc64le SMS 4.3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-public-cloud15-sp4-updates-ppc64le-sms-4.3", + "parent_channel_label": "sle-product-suse-manager-server-4.3-pool-ppc64le", + "product_id": 2325, + "repository_id": 5267, + "parent_product_id": 2305, + "root_product_id": 2376, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/15-SP4/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud15-SP4-Updates for ppc64le SMS 4.3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-public-cloud15-sp4-debuginfo-updates-ppc64le-sms-4.3", + "parent_channel_label": "sle-product-suse-manager-server-4.3-pool-ppc64le", + "product_id": 2325, + "repository_id": 5268, + "parent_product_id": 2305, + "root_product_id": 2376, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/15-SP4/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud15-SP4-Debuginfo-Updates for ppc64le SMS 4.3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-public-cloud15-sp4-pool-ppc64le-sms-4.3", + "parent_channel_label": "sle-product-suse-manager-server-4.3-pool-ppc64le", + "product_id": 2325, + "repository_id": 5269, + "parent_product_id": 2305, + "root_product_id": 2376, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP4/ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud15-SP4-Pool for ppc64le SMS 4.3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-public-cloud15-sp4-debuginfo-pool-ppc64le-sms-4.3", + "parent_channel_label": "sle-product-suse-manager-server-4.3-pool-ppc64le", + "product_id": 2325, + "repository_id": 5270, + "parent_product_id": 2305, + "root_product_id": 2376, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP4/ppc64le/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud15-SP4-Debuginfo-Pool for ppc64le SMS 4.3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-product-ha15-sp4-updates-ppc64le-sms-4.3", + "parent_channel_label": "sle-product-suse-manager-server-4.3-pool-ppc64le", + "product_id": 2338, + "repository_id": 5332, + "parent_product_id": 2305, + "root_product_id": 2376, + "update_tag": "SLE-Product-HA", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-HA/15-SP4/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HA15-SP4-Updates for ppc64le SMS 4.3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-product-ha15-sp4-debuginfo-updates-ppc64le-sms-4.3", + "parent_channel_label": "sle-product-suse-manager-server-4.3-pool-ppc64le", + "product_id": 2338, + "repository_id": 5333, + "parent_product_id": 2305, + "root_product_id": 2376, + "update_tag": "SLE-Product-HA", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-HA/15-SP4/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HA15-SP4-Debuginfo-Updates for ppc64le SMS 4.3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-product-ha15-sp4-pool-ppc64le-sms-4.3", + "parent_channel_label": "sle-product-suse-manager-server-4.3-pool-ppc64le", + "product_id": 2338, + "repository_id": 5334, + "parent_product_id": 2305, + "root_product_id": 2376, + "update_tag": "SLE-Product-HA", + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP4/ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HA15-SP4-Pool for ppc64le SMS 4.3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-product-ha15-sp4-debuginfo-pool-ppc64le-sms-4.3", + "parent_channel_label": "sle-product-suse-manager-server-4.3-pool-ppc64le", + "product_id": 2338, + "repository_id": 5335, + "parent_product_id": 2305, + "root_product_id": 2376, + "update_tag": "SLE-Product-HA", + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP4/ppc64le/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HA15-SP4-Debuginfo-Pool for ppc64le SMS 4.3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-containers15-sp4-updates-ppc64le-sms-4.3", + "parent_channel_label": "sle-product-suse-manager-server-4.3-pool-ppc64le", + "product_id": 2309, + "repository_id": 5187, + "parent_product_id": 2297, + "root_product_id": 2376, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/15-SP4/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers15-SP4-Updates for ppc64le SMS 4.3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-containers15-sp4-debuginfo-updates-ppc64le-sms-4.3", + "parent_channel_label": "sle-product-suse-manager-server-4.3-pool-ppc64le", + "product_id": 2309, + "repository_id": 5188, + "parent_product_id": 2297, + "root_product_id": 2376, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/15-SP4/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers15-SP4-Debuginfo-Updates for ppc64le SMS 4.3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-containers15-sp4-pool-ppc64le-sms-4.3", + "parent_channel_label": "sle-product-suse-manager-server-4.3-pool-ppc64le", + "product_id": 2309, + "repository_id": 5189, + "parent_product_id": 2297, + "root_product_id": 2376, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP4/ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers15-SP4-Pool for ppc64le SMS 4.3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-containers15-sp4-debuginfo-pool-ppc64le-sms-4.3", + "parent_channel_label": "sle-product-suse-manager-server-4.3-pool-ppc64le", + "product_id": 2309, + "repository_id": 5190, + "parent_product_id": 2297, + "root_product_id": 2376, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP4/ppc64le/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers15-SP4-Debuginfo-Pool for ppc64le SMS 4.3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "suse-packagehub-15-sp4-backports-pool-ppc64le-sms-4.3", + "parent_channel_label": "sle-product-suse-manager-server-4.3-pool-ppc64le", + "product_id": 2345, + "repository_id": 5372, + "parent_product_id": 2297, + "root_product_id": 2376, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-15-SP4_ppc64le/standard/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-15-SP4-Backports-Pool for ppc64le SMS 4.3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "suse-packagehub-15-sp4-backports-debuginfo-ppc64le-sms-4.3", + "parent_channel_label": "sle-product-suse-manager-server-4.3-pool-ppc64le", + "product_id": 2345, + "repository_id": 5373, + "parent_product_id": 2297, + "root_product_id": 2376, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-15-SP4_ppc64le/standard_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-15-SP4-Backports-Debuginfo for ppc64le SMS 4.3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-packagehub-subpackages15-sp4-updates-ppc64le-sms-4.3", + "parent_channel_label": "sle-product-suse-manager-server-4.3-pool-ppc64le", + "product_id": 2345, + "repository_id": 5374, + "parent_product_id": 2297, + "root_product_id": 2376, + "update_tag": "SLE-Module-Packagehub-Subpackages", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP4/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Packagehub-Subpackages15-SP4-Updates for ppc64le SMS 4.3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-packagehub-subpackages15-sp4-debuginfo-updates-ppc64le-sms-4.3", + "parent_channel_label": "sle-product-suse-manager-server-4.3-pool-ppc64le", + "product_id": 2345, + "repository_id": 5375, + "parent_product_id": 2297, + "root_product_id": 2376, + "update_tag": "SLE-Module-Packagehub-Subpackages", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP4/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Packagehub-Subpackages15-SP4-Debuginfo-Updates for ppc64le SMS 4.3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "suse-packagehub-15-sp4-pool-ppc64le-sms-4.3", + "parent_channel_label": "sle-product-suse-manager-server-4.3-pool-ppc64le", + "product_id": 2345, + "repository_id": 5376, + "parent_product_id": 2297, + "root_product_id": 2376, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-15-SP4_ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-15-SP4-Pool for ppc64le SMS 4.3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-packagehub-subpackages15-sp4-pool-ppc64le-sms-4.3", + "parent_channel_label": "sle-product-suse-manager-server-4.3-pool-ppc64le", + "product_id": 2345, + "repository_id": 5377, + "parent_product_id": 2297, + "root_product_id": 2376, + "update_tag": "SLE-Module-Packagehub-Subpackages", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP4/ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Packagehub-Subpackages15-SP4-Pool for ppc64le SMS 4.3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-packagehub-subpackages15-sp4-debuginfo-pool-ppc64le-sms-4.3", + "parent_channel_label": "sle-product-suse-manager-server-4.3-pool-ppc64le", + "product_id": 2345, + "repository_id": 5378, + "parent_product_id": 2297, + "root_product_id": 2376, + "update_tag": "SLE-Module-Packagehub-Subpackages", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP4/ppc64le/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Packagehub-Subpackages15-SP4-Debuginfo-Pool for ppc64le SMS 4.3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-python3-15-sp4-updates-ppc64le-sms-4.3", + "parent_channel_label": "sle-product-suse-manager-server-4.3-pool-ppc64le", + "product_id": 2403, + "repository_id": 5572, + "parent_product_id": 2297, + "root_product_id": 2376, + "update_tag": "SLE-Module-Python3", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Python3/15-SP4/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Python3-15-SP4-Updates for ppc64le SMS 4.3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-python3-15-sp4-debuginfo-updates-ppc64le-sms-4.3", + "parent_channel_label": "sle-product-suse-manager-server-4.3-pool-ppc64le", + "product_id": 2403, + "repository_id": 5573, + "parent_product_id": 2297, + "root_product_id": 2376, + "update_tag": "SLE-Module-Python3", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Python3/15-SP4/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Python3-15-SP4-Debuginfo-Updates for ppc64le SMS 4.3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-python3-15-sp4-pool-ppc64le-sms-4.3", + "parent_channel_label": "sle-product-suse-manager-server-4.3-pool-ppc64le", + "product_id": 2403, + "repository_id": 5574, + "parent_product_id": 2297, + "root_product_id": 2376, + "update_tag": "SLE-Module-Python3", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Python3/15-SP4/ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Python3-15-SP4-Pool for ppc64le SMS 4.3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-python3-15-sp4-debuginfo-pool-ppc64le-sms-4.3", + "parent_channel_label": "sle-product-suse-manager-server-4.3-pool-ppc64le", + "product_id": 2403, + "repository_id": 5575, + "parent_product_id": 2297, + "root_product_id": 2376, + "update_tag": "SLE-Module-Python3", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Python3/15-SP4/ppc64le/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Python3-15-SP4-Debuginfo-Pool for ppc64le SMS 4.3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-product-suse-manager-server-4.3-updates-s390x", + "parent_channel_label": "sle-product-suse-manager-server-4.3-pool-s390x", + "product_id": 2377, + "repository_id": 5465, + "parent_product_id": null, + "root_product_id": 2377, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-SUSE-Manager-Server/4.3/s390x/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-SUSE-Manager-Server-4.3-Updates for s390x", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-product-suse-manager-server-4.3-debuginfo-updates-s390x", + "parent_channel_label": "sle-product-suse-manager-server-4.3-pool-s390x", + "product_id": 2377, + "repository_id": 5466, + "parent_product_id": null, + "root_product_id": 2377, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-SUSE-Manager-Server/4.3/s390x/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-SUSE-Manager-Server-4.3-Debuginfo-Updates for s390x", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-product-suse-manager-server-4.3-pool-s390x", + "parent_channel_label": null, + "product_id": 2377, + "repository_id": 5467, + "parent_product_id": null, + "root_product_id": 2377, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-SUSE-Manager-Server/4.3/s390x/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-SUSE-Manager-Server-4.3-Pool for s390x", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-product-suse-manager-server-4.3-debuginfo-pool-s390x", + "parent_channel_label": "sle-product-suse-manager-server-4.3-pool-s390x", + "product_id": 2377, + "repository_id": 5468, + "parent_product_id": null, + "root_product_id": 2377, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-SUSE-Manager-Server/4.3/s390x/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-SUSE-Manager-Server-4.3-Debuginfo-Pool for s390x", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-basesystem15-sp4-updates-s390x-sms-4.3", + "parent_channel_label": "sle-product-suse-manager-server-4.3-pool-s390x", + "product_id": 2298, + "repository_id": 5132, + "parent_product_id": 2377, + "root_product_id": 2377, + "update_tag": "SLE-Module-Basesystem", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15-SP4/s390x/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Basesystem15-SP4-Updates for s390x SMS 4.3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-basesystem15-sp4-debuginfo-updates-s390x-sms-4.3", + "parent_channel_label": "sle-product-suse-manager-server-4.3-pool-s390x", + "product_id": 2298, + "repository_id": 5133, + "parent_product_id": 2377, + "root_product_id": 2377, + "update_tag": "SLE-Module-Basesystem", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15-SP4/s390x/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Basesystem15-SP4-Debuginfo-Updates for s390x SMS 4.3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-basesystem15-sp4-pool-s390x-sms-4.3", + "parent_channel_label": "sle-product-suse-manager-server-4.3-pool-s390x", + "product_id": 2298, + "repository_id": 5134, + "parent_product_id": 2377, + "root_product_id": 2377, + "update_tag": "SLE-Module-Basesystem", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP4/s390x/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Basesystem15-SP4-Pool for s390x SMS 4.3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-basesystem15-sp4-debuginfo-pool-s390x-sms-4.3", + "parent_channel_label": "sle-product-suse-manager-server-4.3-pool-s390x", + "product_id": 2298, + "repository_id": 5135, + "parent_product_id": 2377, + "root_product_id": 2377, + "update_tag": "SLE-Module-Basesystem", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP4/s390x/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Basesystem15-SP4-Debuginfo-Pool for s390x SMS 4.3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-desktop-applications15-sp4-updates-s390x-sms-4.3", + "parent_channel_label": "sle-product-suse-manager-server-4.3-pool-s390x", + "product_id": 2302, + "repository_id": 5152, + "parent_product_id": 2298, + "root_product_id": 2377, + "update_tag": "SLE-Module-Desktop-Applications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15-SP4/s390x/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Desktop-Applications15-SP4-Updates for s390x SMS 4.3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-desktop-applications15-sp4-debuginfo-updates-s390x-sms-4.3", + "parent_channel_label": "sle-product-suse-manager-server-4.3-pool-s390x", + "product_id": 2302, + "repository_id": 5153, + "parent_product_id": 2298, + "root_product_id": 2377, + "update_tag": "SLE-Module-Desktop-Applications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15-SP4/s390x/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Desktop-Applications15-SP4-Debuginfo-Updates for s390x SMS 4.3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-desktop-applications15-sp4-pool-s390x-sms-4.3", + "parent_channel_label": "sle-product-suse-manager-server-4.3-pool-s390x", + "product_id": 2302, + "repository_id": 5154, + "parent_product_id": 2298, + "root_product_id": 2377, + "update_tag": "SLE-Module-Desktop-Applications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP4/s390x/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Desktop-Applications15-SP4-Pool for s390x SMS 4.3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-desktop-applications15-sp4-debuginfo-pool-s390x-sms-4.3", + "parent_channel_label": "sle-product-suse-manager-server-4.3-pool-s390x", + "product_id": 2302, + "repository_id": 5155, + "parent_product_id": 2298, + "root_product_id": 2377, + "update_tag": "SLE-Module-Desktop-Applications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP4/s390x/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Desktop-Applications15-SP4-Debuginfo-Pool for s390x SMS 4.3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-devtools15-sp4-updates-s390x-sms-4.3", + "parent_channel_label": "sle-product-suse-manager-server-4.3-pool-s390x", + "product_id": 2314, + "repository_id": 5212, + "parent_product_id": 2302, + "root_product_id": 2377, + "update_tag": "SLE-Module-Development-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15-SP4/s390x/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-DevTools15-SP4-Updates for s390x SMS 4.3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-devtools15-sp4-debuginfo-updates-s390x-sms-4.3", + "parent_channel_label": "sle-product-suse-manager-server-4.3-pool-s390x", + "product_id": 2314, + "repository_id": 5213, + "parent_product_id": 2302, + "root_product_id": 2377, + "update_tag": "SLE-Module-Development-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15-SP4/s390x/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-DevTools15-SP4-Debuginfo-Updates for s390x SMS 4.3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-devtools15-sp4-pool-s390x-sms-4.3", + "parent_channel_label": "sle-product-suse-manager-server-4.3-pool-s390x", + "product_id": 2314, + "repository_id": 5214, + "parent_product_id": 2302, + "root_product_id": 2377, + "update_tag": "SLE-Module-Development-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP4/s390x/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-DevTools15-SP4-Pool for s390x SMS 4.3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-devtools15-sp4-debuginfo-pool-s390x-sms-4.3", + "parent_channel_label": "sle-product-suse-manager-server-4.3-pool-s390x", + "product_id": 2314, + "repository_id": 5215, + "parent_product_id": 2302, + "root_product_id": 2377, + "update_tag": "SLE-Module-Development-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP4/s390x/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-DevTools15-SP4-Debuginfo-Pool for s390x SMS 4.3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-server-applications15-sp4-updates-s390x-sms-4.3", + "parent_channel_label": "sle-product-suse-manager-server-4.3-pool-s390x", + "product_id": 2306, + "repository_id": 5172, + "parent_product_id": 2298, + "root_product_id": 2377, + "update_tag": "SLE-Module-Server-Applications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15-SP4/s390x/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Server-Applications15-SP4-Updates for s390x SMS 4.3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-server-applications15-sp4-debuginfo-updates-s390x-sms-4.3", + "parent_channel_label": "sle-product-suse-manager-server-4.3-pool-s390x", + "product_id": 2306, + "repository_id": 5173, + "parent_product_id": 2298, + "root_product_id": 2377, + "update_tag": "SLE-Module-Server-Applications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15-SP4/s390x/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Server-Applications15-SP4-Debuginfo-Updates for s390x SMS 4.3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-server-applications15-sp4-pool-s390x-sms-4.3", + "parent_channel_label": "sle-product-suse-manager-server-4.3-pool-s390x", + "product_id": 2306, + "repository_id": 5174, + "parent_product_id": 2298, + "root_product_id": 2377, + "update_tag": "SLE-Module-Server-Applications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP4/s390x/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Server-Applications15-SP4-Pool for s390x SMS 4.3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-server-applications15-sp4-debuginfo-pool-s390x-sms-4.3", + "parent_channel_label": "sle-product-suse-manager-server-4.3-pool-s390x", + "product_id": 2306, + "repository_id": 5175, + "parent_product_id": 2298, + "root_product_id": 2377, + "update_tag": "SLE-Module-Server-Applications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP4/s390x/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Server-Applications15-SP4-Debuginfo-Pool for s390x SMS 4.3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-web-scripting15-sp4-updates-s390x-sms-4.3", + "parent_channel_label": "sle-product-suse-manager-server-4.3-pool-s390x", + "product_id": 2318, + "repository_id": 5232, + "parent_product_id": 2306, + "root_product_id": 2377, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/15-SP4/s390x/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Web-Scripting15-SP4-Updates for s390x SMS 4.3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-web-scripting15-sp4-debuginfo-updates-s390x-sms-4.3", + "parent_channel_label": "sle-product-suse-manager-server-4.3-pool-s390x", + "product_id": 2318, + "repository_id": 5233, + "parent_product_id": 2306, + "root_product_id": 2377, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/15-SP4/s390x/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Web-Scripting15-SP4-Debuginfo-Updates for s390x SMS 4.3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-web-scripting15-sp4-pool-s390x-sms-4.3", + "parent_channel_label": "sle-product-suse-manager-server-4.3-pool-s390x", + "product_id": 2318, + "repository_id": 5234, + "parent_product_id": 2306, + "root_product_id": 2377, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP4/s390x/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Web-Scripting15-SP4-Pool for s390x SMS 4.3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-web-scripting15-sp4-debuginfo-pool-s390x-sms-4.3", + "parent_channel_label": "sle-product-suse-manager-server-4.3-pool-s390x", + "product_id": 2318, + "repository_id": 5235, + "parent_product_id": 2306, + "root_product_id": 2377, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP4/s390x/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Web-Scripting15-SP4-Debuginfo-Pool for s390x SMS 4.3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-suse-manager-server-4.3-updates-s390x", + "parent_channel_label": "sle-product-suse-manager-server-4.3-pool-s390x", + "product_id": 2382, + "repository_id": 5490, + "parent_product_id": 2318, + "root_product_id": 2377, + "update_tag": "SLE-Module-SUSE-Manager-Server", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-SUSE-Manager-Server/4.3/s390x/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-SUSE-Manager-Server-4.3-Updates for s390x", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-suse-manager-server-4.3-debuginfo-updates-s390x", + "parent_channel_label": "sle-product-suse-manager-server-4.3-pool-s390x", + "product_id": 2382, + "repository_id": 5491, + "parent_product_id": 2318, + "root_product_id": 2377, + "update_tag": "SLE-Module-SUSE-Manager-Server", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-SUSE-Manager-Server/4.3/s390x/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-SUSE-Manager-Server-4.3-Debuginfo-Updates for s390x", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-suse-manager-server-4.3-pool-s390x", + "parent_channel_label": "sle-product-suse-manager-server-4.3-pool-s390x", + "product_id": 2382, + "repository_id": 5492, + "parent_product_id": 2318, + "root_product_id": 2377, + "update_tag": "SLE-Module-SUSE-Manager-Server", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-SUSE-Manager-Server/4.3/s390x/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-SUSE-Manager-Server-4.3-Pool for s390x", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-suse-manager-server-4.3-debuginfo-pool-s390x", + "parent_channel_label": "sle-product-suse-manager-server-4.3-pool-s390x", + "product_id": 2382, + "repository_id": 5493, + "parent_product_id": 2318, + "root_product_id": 2377, + "update_tag": "SLE-Module-SUSE-Manager-Server", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-SUSE-Manager-Server/4.3/s390x/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-SUSE-Manager-Server-4.3-Debuginfo-Pool for s390x", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-legacy15-sp4-updates-s390x-sms-4.3", + "parent_channel_label": "sle-product-suse-manager-server-4.3-pool-s390x", + "product_id": 2322, + "repository_id": 5252, + "parent_product_id": 2306, + "root_product_id": 2377, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/15-SP4/s390x/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy15-SP4-Updates for s390x SMS 4.3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-legacy15-sp4-debuginfo-updates-s390x-sms-4.3", + "parent_channel_label": "sle-product-suse-manager-server-4.3-pool-s390x", + "product_id": 2322, + "repository_id": 5253, + "parent_product_id": 2306, + "root_product_id": 2377, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/15-SP4/s390x/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy15-SP4-Debuginfo-Updates for s390x SMS 4.3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-legacy15-sp4-pool-s390x-sms-4.3", + "parent_channel_label": "sle-product-suse-manager-server-4.3-pool-s390x", + "product_id": 2322, + "repository_id": 5254, + "parent_product_id": 2306, + "root_product_id": 2377, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15-SP4/s390x/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy15-SP4-Pool for s390x SMS 4.3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-legacy15-sp4-debuginfo-pool-s390x-sms-4.3", + "parent_channel_label": "sle-product-suse-manager-server-4.3-pool-s390x", + "product_id": 2322, + "repository_id": 5255, + "parent_product_id": 2306, + "root_product_id": 2377, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15-SP4/s390x/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy15-SP4-Debuginfo-Pool for s390x SMS 4.3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-public-cloud15-sp4-updates-s390x-sms-4.3", + "parent_channel_label": "sle-product-suse-manager-server-4.3-pool-s390x", + "product_id": 2326, + "repository_id": 5272, + "parent_product_id": 2306, + "root_product_id": 2377, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/15-SP4/s390x/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud15-SP4-Updates for s390x SMS 4.3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-public-cloud15-sp4-debuginfo-updates-s390x-sms-4.3", + "parent_channel_label": "sle-product-suse-manager-server-4.3-pool-s390x", + "product_id": 2326, + "repository_id": 5273, + "parent_product_id": 2306, + "root_product_id": 2377, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/15-SP4/s390x/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud15-SP4-Debuginfo-Updates for s390x SMS 4.3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-public-cloud15-sp4-pool-s390x-sms-4.3", + "parent_channel_label": "sle-product-suse-manager-server-4.3-pool-s390x", + "product_id": 2326, + "repository_id": 5274, + "parent_product_id": 2306, + "root_product_id": 2377, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP4/s390x/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud15-SP4-Pool for s390x SMS 4.3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-public-cloud15-sp4-debuginfo-pool-s390x-sms-4.3", + "parent_channel_label": "sle-product-suse-manager-server-4.3-pool-s390x", + "product_id": 2326, + "repository_id": 5275, + "parent_product_id": 2306, + "root_product_id": 2377, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP4/s390x/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud15-SP4-Debuginfo-Pool for s390x SMS 4.3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-product-ha15-sp4-updates-s390x-sms-4.3", + "parent_channel_label": "sle-product-suse-manager-server-4.3-pool-s390x", + "product_id": 2339, + "repository_id": 5337, + "parent_product_id": 2306, + "root_product_id": 2377, + "update_tag": "SLE-Product-HA", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-HA/15-SP4/s390x/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HA15-SP4-Updates for s390x SMS 4.3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-product-ha15-sp4-debuginfo-updates-s390x-sms-4.3", + "parent_channel_label": "sle-product-suse-manager-server-4.3-pool-s390x", + "product_id": 2339, + "repository_id": 5338, + "parent_product_id": 2306, + "root_product_id": 2377, + "update_tag": "SLE-Product-HA", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-HA/15-SP4/s390x/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HA15-SP4-Debuginfo-Updates for s390x SMS 4.3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-product-ha15-sp4-pool-s390x-sms-4.3", + "parent_channel_label": "sle-product-suse-manager-server-4.3-pool-s390x", + "product_id": 2339, + "repository_id": 5339, + "parent_product_id": 2306, + "root_product_id": 2377, + "update_tag": "SLE-Product-HA", + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP4/s390x/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HA15-SP4-Pool for s390x SMS 4.3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-product-ha15-sp4-debuginfo-pool-s390x-sms-4.3", + "parent_channel_label": "sle-product-suse-manager-server-4.3-pool-s390x", + "product_id": 2339, + "repository_id": 5340, + "parent_product_id": 2306, + "root_product_id": 2377, + "update_tag": "SLE-Product-HA", + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP4/s390x/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HA15-SP4-Debuginfo-Pool for s390x SMS 4.3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-containers15-sp4-updates-s390x-sms-4.3", + "parent_channel_label": "sle-product-suse-manager-server-4.3-pool-s390x", + "product_id": 2310, + "repository_id": 5192, + "parent_product_id": 2298, + "root_product_id": 2377, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/15-SP4/s390x/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers15-SP4-Updates for s390x SMS 4.3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-containers15-sp4-debuginfo-updates-s390x-sms-4.3", + "parent_channel_label": "sle-product-suse-manager-server-4.3-pool-s390x", + "product_id": 2310, + "repository_id": 5193, + "parent_product_id": 2298, + "root_product_id": 2377, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/15-SP4/s390x/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers15-SP4-Debuginfo-Updates for s390x SMS 4.3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-containers15-sp4-pool-s390x-sms-4.3", + "parent_channel_label": "sle-product-suse-manager-server-4.3-pool-s390x", + "product_id": 2310, + "repository_id": 5194, + "parent_product_id": 2298, + "root_product_id": 2377, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP4/s390x/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers15-SP4-Pool for s390x SMS 4.3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-containers15-sp4-debuginfo-pool-s390x-sms-4.3", + "parent_channel_label": "sle-product-suse-manager-server-4.3-pool-s390x", + "product_id": 2310, + "repository_id": 5195, + "parent_product_id": 2298, + "root_product_id": 2377, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP4/s390x/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers15-SP4-Debuginfo-Pool for s390x SMS 4.3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "suse-packagehub-15-sp4-backports-pool-s390x-sms-4.3", + "parent_channel_label": "sle-product-suse-manager-server-4.3-pool-s390x", + "product_id": 2346, + "repository_id": 5380, + "parent_product_id": 2298, + "root_product_id": 2377, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-15-SP4_s390x/standard/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-15-SP4-Backports-Pool for s390x SMS 4.3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "suse-packagehub-15-sp4-backports-debuginfo-s390x-sms-4.3", + "parent_channel_label": "sle-product-suse-manager-server-4.3-pool-s390x", + "product_id": 2346, + "repository_id": 5381, + "parent_product_id": 2298, + "root_product_id": 2377, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-15-SP4_s390x/standard_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-15-SP4-Backports-Debuginfo for s390x SMS 4.3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-packagehub-subpackages15-sp4-updates-s390x-sms-4.3", + "parent_channel_label": "sle-product-suse-manager-server-4.3-pool-s390x", + "product_id": 2346, + "repository_id": 5382, + "parent_product_id": 2298, + "root_product_id": 2377, + "update_tag": "SLE-Module-Packagehub-Subpackages", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP4/s390x/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Packagehub-Subpackages15-SP4-Updates for s390x SMS 4.3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-packagehub-subpackages15-sp4-debuginfo-updates-s390x-sms-4.3", + "parent_channel_label": "sle-product-suse-manager-server-4.3-pool-s390x", + "product_id": 2346, + "repository_id": 5383, + "parent_product_id": 2298, + "root_product_id": 2377, + "update_tag": "SLE-Module-Packagehub-Subpackages", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP4/s390x/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Packagehub-Subpackages15-SP4-Debuginfo-Updates for s390x SMS 4.3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "suse-packagehub-15-sp4-pool-s390x-sms-4.3", + "parent_channel_label": "sle-product-suse-manager-server-4.3-pool-s390x", + "product_id": 2346, + "repository_id": 5384, + "parent_product_id": 2298, + "root_product_id": 2377, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-15-SP4_s390x/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-15-SP4-Pool for s390x SMS 4.3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-packagehub-subpackages15-sp4-pool-s390x-sms-4.3", + "parent_channel_label": "sle-product-suse-manager-server-4.3-pool-s390x", + "product_id": 2346, + "repository_id": 5385, + "parent_product_id": 2298, + "root_product_id": 2377, + "update_tag": "SLE-Module-Packagehub-Subpackages", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP4/s390x/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Packagehub-Subpackages15-SP4-Pool for s390x SMS 4.3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-packagehub-subpackages15-sp4-debuginfo-pool-s390x-sms-4.3", + "parent_channel_label": "sle-product-suse-manager-server-4.3-pool-s390x", + "product_id": 2346, + "repository_id": 5386, + "parent_product_id": 2298, + "root_product_id": 2377, + "update_tag": "SLE-Module-Packagehub-Subpackages", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP4/s390x/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Packagehub-Subpackages15-SP4-Debuginfo-Pool for s390x SMS 4.3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-python3-15-sp4-updates-s390x-sms-4.3", + "parent_channel_label": "sle-product-suse-manager-server-4.3-pool-s390x", + "product_id": 2404, + "repository_id": 5577, + "parent_product_id": 2298, + "root_product_id": 2377, + "update_tag": "SLE-Module-Python3", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Python3/15-SP4/s390x/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Python3-15-SP4-Updates for s390x SMS 4.3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-python3-15-sp4-debuginfo-updates-s390x-sms-4.3", + "parent_channel_label": "sle-product-suse-manager-server-4.3-pool-s390x", + "product_id": 2404, + "repository_id": 5578, + "parent_product_id": 2298, + "root_product_id": 2377, + "update_tag": "SLE-Module-Python3", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Python3/15-SP4/s390x/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Python3-15-SP4-Debuginfo-Updates for s390x SMS 4.3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-python3-15-sp4-pool-s390x-sms-4.3", + "parent_channel_label": "sle-product-suse-manager-server-4.3-pool-s390x", + "product_id": 2404, + "repository_id": 5579, + "parent_product_id": 2298, + "root_product_id": 2377, + "update_tag": "SLE-Module-Python3", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Python3/15-SP4/s390x/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Python3-15-SP4-Pool for s390x SMS 4.3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-python3-15-sp4-debuginfo-pool-s390x-sms-4.3", + "parent_channel_label": "sle-product-suse-manager-server-4.3-pool-s390x", + "product_id": 2404, + "repository_id": 5580, + "parent_product_id": 2298, + "root_product_id": 2377, + "update_tag": "SLE-Module-Python3", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Python3/15-SP4/s390x/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Python3-15-SP4-Debuginfo-Pool for s390x SMS 4.3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-product-suse-manager-server-4.3-updates-x86_64", + "parent_channel_label": "sle-product-suse-manager-server-4.3-pool-x86_64", + "product_id": 2378, + "repository_id": 5470, + "parent_product_id": null, + "root_product_id": 2378, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-SUSE-Manager-Server/4.3/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-SUSE-Manager-Server-4.3-Updates for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-product-suse-manager-server-4.3-debuginfo-updates-x86_64", + "parent_channel_label": "sle-product-suse-manager-server-4.3-pool-x86_64", + "product_id": 2378, + "repository_id": 5471, + "parent_product_id": null, + "root_product_id": 2378, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-SUSE-Manager-Server/4.3/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-SUSE-Manager-Server-4.3-Debuginfo-Updates for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-product-suse-manager-server-4.3-pool-x86_64", + "parent_channel_label": null, + "product_id": 2378, + "repository_id": 5472, + "parent_product_id": null, + "root_product_id": 2378, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-SUSE-Manager-Server/4.3/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-SUSE-Manager-Server-4.3-Pool for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-product-suse-manager-server-4.3-debuginfo-pool-x86_64", + "parent_channel_label": "sle-product-suse-manager-server-4.3-pool-x86_64", + "product_id": 2378, + "repository_id": 5473, + "parent_product_id": null, + "root_product_id": 2378, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-SUSE-Manager-Server/4.3/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-SUSE-Manager-Server-4.3-Debuginfo-Pool for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-basesystem15-sp4-updates-x86_64-sms-4.3", + "parent_channel_label": "sle-product-suse-manager-server-4.3-pool-x86_64", + "product_id": 2299, + "repository_id": 5137, + "parent_product_id": 2378, + "root_product_id": 2378, + "update_tag": "SLE-Module-Basesystem", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15-SP4/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Basesystem15-SP4-Updates for x86_64 SMS 4.3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-basesystem15-sp4-debuginfo-updates-x86_64-sms-4.3", + "parent_channel_label": "sle-product-suse-manager-server-4.3-pool-x86_64", + "product_id": 2299, + "repository_id": 5138, + "parent_product_id": 2378, + "root_product_id": 2378, + "update_tag": "SLE-Module-Basesystem", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15-SP4/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Basesystem15-SP4-Debuginfo-Updates for x86_64 SMS 4.3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-basesystem15-sp4-pool-x86_64-sms-4.3", + "parent_channel_label": "sle-product-suse-manager-server-4.3-pool-x86_64", + "product_id": 2299, + "repository_id": 5139, + "parent_product_id": 2378, + "root_product_id": 2378, + "update_tag": "SLE-Module-Basesystem", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP4/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Basesystem15-SP4-Pool for x86_64 SMS 4.3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-basesystem15-sp4-debuginfo-pool-x86_64-sms-4.3", + "parent_channel_label": "sle-product-suse-manager-server-4.3-pool-x86_64", + "product_id": 2299, + "repository_id": 5140, + "parent_product_id": 2378, + "root_product_id": 2378, + "update_tag": "SLE-Module-Basesystem", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP4/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Basesystem15-SP4-Debuginfo-Pool for x86_64 SMS 4.3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-desktop-applications15-sp4-updates-x86_64-sms-4.3", + "parent_channel_label": "sle-product-suse-manager-server-4.3-pool-x86_64", + "product_id": 2303, + "repository_id": 5157, + "parent_product_id": 2299, + "root_product_id": 2378, + "update_tag": "SLE-Module-Desktop-Applications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15-SP4/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Desktop-Applications15-SP4-Updates for x86_64 SMS 4.3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-desktop-applications15-sp4-debuginfo-updates-x86_64-sms-4.3", + "parent_channel_label": "sle-product-suse-manager-server-4.3-pool-x86_64", + "product_id": 2303, + "repository_id": 5158, + "parent_product_id": 2299, + "root_product_id": 2378, + "update_tag": "SLE-Module-Desktop-Applications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15-SP4/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Desktop-Applications15-SP4-Debuginfo-Updates for x86_64 SMS 4.3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-desktop-applications15-sp4-pool-x86_64-sms-4.3", + "parent_channel_label": "sle-product-suse-manager-server-4.3-pool-x86_64", + "product_id": 2303, + "repository_id": 5159, + "parent_product_id": 2299, + "root_product_id": 2378, + "update_tag": "SLE-Module-Desktop-Applications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP4/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Desktop-Applications15-SP4-Pool for x86_64 SMS 4.3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-desktop-applications15-sp4-debuginfo-pool-x86_64-sms-4.3", + "parent_channel_label": "sle-product-suse-manager-server-4.3-pool-x86_64", + "product_id": 2303, + "repository_id": 5160, + "parent_product_id": 2299, + "root_product_id": 2378, + "update_tag": "SLE-Module-Desktop-Applications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP4/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Desktop-Applications15-SP4-Debuginfo-Pool for x86_64 SMS 4.3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-devtools15-sp4-updates-x86_64-sms-4.3", + "parent_channel_label": "sle-product-suse-manager-server-4.3-pool-x86_64", + "product_id": 2315, + "repository_id": 5217, + "parent_product_id": 2303, + "root_product_id": 2378, + "update_tag": "SLE-Module-Development-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15-SP4/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-DevTools15-SP4-Updates for x86_64 SMS 4.3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-devtools15-sp4-debuginfo-updates-x86_64-sms-4.3", + "parent_channel_label": "sle-product-suse-manager-server-4.3-pool-x86_64", + "product_id": 2315, + "repository_id": 5218, + "parent_product_id": 2303, + "root_product_id": 2378, + "update_tag": "SLE-Module-Development-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15-SP4/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-DevTools15-SP4-Debuginfo-Updates for x86_64 SMS 4.3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-devtools15-sp4-pool-x86_64-sms-4.3", + "parent_channel_label": "sle-product-suse-manager-server-4.3-pool-x86_64", + "product_id": 2315, + "repository_id": 5219, + "parent_product_id": 2303, + "root_product_id": 2378, + "update_tag": "SLE-Module-Development-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP4/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-DevTools15-SP4-Pool for x86_64 SMS 4.3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-devtools15-sp4-debuginfo-pool-x86_64-sms-4.3", + "parent_channel_label": "sle-product-suse-manager-server-4.3-pool-x86_64", + "product_id": 2315, + "repository_id": 5220, + "parent_product_id": 2303, + "root_product_id": 2378, + "update_tag": "SLE-Module-Development-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP4/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-DevTools15-SP4-Debuginfo-Pool for x86_64 SMS 4.3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-server-applications15-sp4-updates-x86_64-sms-4.3", + "parent_channel_label": "sle-product-suse-manager-server-4.3-pool-x86_64", + "product_id": 2307, + "repository_id": 5177, + "parent_product_id": 2299, + "root_product_id": 2378, + "update_tag": "SLE-Module-Server-Applications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15-SP4/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Server-Applications15-SP4-Updates for x86_64 SMS 4.3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-server-applications15-sp4-debuginfo-updates-x86_64-sms-4.3", + "parent_channel_label": "sle-product-suse-manager-server-4.3-pool-x86_64", + "product_id": 2307, + "repository_id": 5178, + "parent_product_id": 2299, + "root_product_id": 2378, + "update_tag": "SLE-Module-Server-Applications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15-SP4/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Server-Applications15-SP4-Debuginfo-Updates for x86_64 SMS 4.3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-server-applications15-sp4-pool-x86_64-sms-4.3", + "parent_channel_label": "sle-product-suse-manager-server-4.3-pool-x86_64", + "product_id": 2307, + "repository_id": 5179, + "parent_product_id": 2299, + "root_product_id": 2378, + "update_tag": "SLE-Module-Server-Applications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP4/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Server-Applications15-SP4-Pool for x86_64 SMS 4.3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-server-applications15-sp4-debuginfo-pool-x86_64-sms-4.3", + "parent_channel_label": "sle-product-suse-manager-server-4.3-pool-x86_64", + "product_id": 2307, + "repository_id": 5180, + "parent_product_id": 2299, + "root_product_id": 2378, + "update_tag": "SLE-Module-Server-Applications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP4/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Server-Applications15-SP4-Debuginfo-Pool for x86_64 SMS 4.3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-web-scripting15-sp4-updates-x86_64-sms-4.3", + "parent_channel_label": "sle-product-suse-manager-server-4.3-pool-x86_64", + "product_id": 2319, + "repository_id": 5237, + "parent_product_id": 2307, + "root_product_id": 2378, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/15-SP4/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Web-Scripting15-SP4-Updates for x86_64 SMS 4.3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-web-scripting15-sp4-debuginfo-updates-x86_64-sms-4.3", + "parent_channel_label": "sle-product-suse-manager-server-4.3-pool-x86_64", + "product_id": 2319, + "repository_id": 5238, + "parent_product_id": 2307, + "root_product_id": 2378, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/15-SP4/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Web-Scripting15-SP4-Debuginfo-Updates for x86_64 SMS 4.3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-web-scripting15-sp4-pool-x86_64-sms-4.3", + "parent_channel_label": "sle-product-suse-manager-server-4.3-pool-x86_64", + "product_id": 2319, + "repository_id": 5239, + "parent_product_id": 2307, + "root_product_id": 2378, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP4/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Web-Scripting15-SP4-Pool for x86_64 SMS 4.3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-web-scripting15-sp4-debuginfo-pool-x86_64-sms-4.3", + "parent_channel_label": "sle-product-suse-manager-server-4.3-pool-x86_64", + "product_id": 2319, + "repository_id": 5240, + "parent_product_id": 2307, + "root_product_id": 2378, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP4/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Web-Scripting15-SP4-Debuginfo-Pool for x86_64 SMS 4.3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-suse-manager-server-4.3-updates-x86_64", + "parent_channel_label": "sle-product-suse-manager-server-4.3-pool-x86_64", + "product_id": 2383, + "repository_id": 5495, + "parent_product_id": 2319, + "root_product_id": 2378, + "update_tag": "SLE-Module-SUSE-Manager-Server", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-SUSE-Manager-Server/4.3/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-SUSE-Manager-Server-4.3-Updates for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-suse-manager-server-4.3-debuginfo-updates-x86_64", + "parent_channel_label": "sle-product-suse-manager-server-4.3-pool-x86_64", + "product_id": 2383, + "repository_id": 5496, + "parent_product_id": 2319, + "root_product_id": 2378, + "update_tag": "SLE-Module-SUSE-Manager-Server", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-SUSE-Manager-Server/4.3/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-SUSE-Manager-Server-4.3-Debuginfo-Updates for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-suse-manager-server-4.3-pool-x86_64", + "parent_channel_label": "sle-product-suse-manager-server-4.3-pool-x86_64", + "product_id": 2383, + "repository_id": 5497, + "parent_product_id": 2319, + "root_product_id": 2378, + "update_tag": "SLE-Module-SUSE-Manager-Server", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-SUSE-Manager-Server/4.3/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-SUSE-Manager-Server-4.3-Pool for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-suse-manager-server-4.3-debuginfo-pool-x86_64", + "parent_channel_label": "sle-product-suse-manager-server-4.3-pool-x86_64", + "product_id": 2383, + "repository_id": 5498, + "parent_product_id": 2319, + "root_product_id": 2378, + "update_tag": "SLE-Module-SUSE-Manager-Server", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-SUSE-Manager-Server/4.3/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-SUSE-Manager-Server-4.3-Debuginfo-Pool for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-legacy15-sp4-updates-x86_64-sms-4.3", + "parent_channel_label": "sle-product-suse-manager-server-4.3-pool-x86_64", + "product_id": 2323, + "repository_id": 5257, + "parent_product_id": 2307, + "root_product_id": 2378, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/15-SP4/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy15-SP4-Updates for x86_64 SMS 4.3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-legacy15-sp4-debuginfo-updates-x86_64-sms-4.3", + "parent_channel_label": "sle-product-suse-manager-server-4.3-pool-x86_64", + "product_id": 2323, + "repository_id": 5258, + "parent_product_id": 2307, + "root_product_id": 2378, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/15-SP4/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy15-SP4-Debuginfo-Updates for x86_64 SMS 4.3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-legacy15-sp4-pool-x86_64-sms-4.3", + "parent_channel_label": "sle-product-suse-manager-server-4.3-pool-x86_64", + "product_id": 2323, + "repository_id": 5259, + "parent_product_id": 2307, + "root_product_id": 2378, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15-SP4/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy15-SP4-Pool for x86_64 SMS 4.3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-legacy15-sp4-debuginfo-pool-x86_64-sms-4.3", + "parent_channel_label": "sle-product-suse-manager-server-4.3-pool-x86_64", + "product_id": 2323, + "repository_id": 5260, + "parent_product_id": 2307, + "root_product_id": 2378, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15-SP4/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy15-SP4-Debuginfo-Pool for x86_64 SMS 4.3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-public-cloud15-sp4-updates-x86_64-sms-4.3", + "parent_channel_label": "sle-product-suse-manager-server-4.3-pool-x86_64", + "product_id": 2327, + "repository_id": 5277, + "parent_product_id": 2307, + "root_product_id": 2378, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/15-SP4/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud15-SP4-Updates for x86_64 SMS 4.3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-public-cloud15-sp4-debuginfo-updates-x86_64-sms-4.3", + "parent_channel_label": "sle-product-suse-manager-server-4.3-pool-x86_64", + "product_id": 2327, + "repository_id": 5278, + "parent_product_id": 2307, + "root_product_id": 2378, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/15-SP4/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud15-SP4-Debuginfo-Updates for x86_64 SMS 4.3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-public-cloud15-sp4-pool-x86_64-sms-4.3", + "parent_channel_label": "sle-product-suse-manager-server-4.3-pool-x86_64", + "product_id": 2327, + "repository_id": 5279, + "parent_product_id": 2307, + "root_product_id": 2378, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP4/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud15-SP4-Pool for x86_64 SMS 4.3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-public-cloud15-sp4-debuginfo-pool-x86_64-sms-4.3", + "parent_channel_label": "sle-product-suse-manager-server-4.3-pool-x86_64", + "product_id": 2327, + "repository_id": 5280, + "parent_product_id": 2307, + "root_product_id": 2378, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP4/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud15-SP4-Debuginfo-Pool for x86_64 SMS 4.3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-product-ha15-sp4-updates-x86_64-sms-4.3", + "parent_channel_label": "sle-product-suse-manager-server-4.3-pool-x86_64", + "product_id": 2340, + "repository_id": 5342, + "parent_product_id": 2307, + "root_product_id": 2378, + "update_tag": "SLE-Product-HA", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-HA/15-SP4/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HA15-SP4-Updates for x86_64 SMS 4.3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-product-ha15-sp4-debuginfo-updates-x86_64-sms-4.3", + "parent_channel_label": "sle-product-suse-manager-server-4.3-pool-x86_64", + "product_id": 2340, + "repository_id": 5343, + "parent_product_id": 2307, + "root_product_id": 2378, + "update_tag": "SLE-Product-HA", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-HA/15-SP4/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HA15-SP4-Debuginfo-Updates for x86_64 SMS 4.3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-product-ha15-sp4-pool-x86_64-sms-4.3", + "parent_channel_label": "sle-product-suse-manager-server-4.3-pool-x86_64", + "product_id": 2340, + "repository_id": 5344, + "parent_product_id": 2307, + "root_product_id": 2378, + "update_tag": "SLE-Product-HA", + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP4/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HA15-SP4-Pool for x86_64 SMS 4.3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-product-ha15-sp4-debuginfo-pool-x86_64-sms-4.3", + "parent_channel_label": "sle-product-suse-manager-server-4.3-pool-x86_64", + "product_id": 2340, + "repository_id": 5345, + "parent_product_id": 2307, + "root_product_id": 2378, + "update_tag": "SLE-Product-HA", + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP4/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HA15-SP4-Debuginfo-Pool for x86_64 SMS 4.3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-containers15-sp4-updates-x86_64-sms-4.3", + "parent_channel_label": "sle-product-suse-manager-server-4.3-pool-x86_64", + "product_id": 2311, + "repository_id": 5197, + "parent_product_id": 2299, + "root_product_id": 2378, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/15-SP4/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers15-SP4-Updates for x86_64 SMS 4.3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-containers15-sp4-debuginfo-updates-x86_64-sms-4.3", + "parent_channel_label": "sle-product-suse-manager-server-4.3-pool-x86_64", + "product_id": 2311, + "repository_id": 5198, + "parent_product_id": 2299, + "root_product_id": 2378, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/15-SP4/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers15-SP4-Debuginfo-Updates for x86_64 SMS 4.3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-containers15-sp4-pool-x86_64-sms-4.3", + "parent_channel_label": "sle-product-suse-manager-server-4.3-pool-x86_64", + "product_id": 2311, + "repository_id": 5199, + "parent_product_id": 2299, + "root_product_id": 2378, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP4/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers15-SP4-Pool for x86_64 SMS 4.3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-containers15-sp4-debuginfo-pool-x86_64-sms-4.3", + "parent_channel_label": "sle-product-suse-manager-server-4.3-pool-x86_64", + "product_id": 2311, + "repository_id": 5200, + "parent_product_id": 2299, + "root_product_id": 2378, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP4/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers15-SP4-Debuginfo-Pool for x86_64 SMS 4.3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "suse-packagehub-15-sp4-backports-pool-x86_64-sms-4.3", + "parent_channel_label": "sle-product-suse-manager-server-4.3-pool-x86_64", + "product_id": 2347, + "repository_id": 5388, + "parent_product_id": 2299, + "root_product_id": 2378, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-15-SP4_x86_64/standard/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-15-SP4-Backports-Pool for x86_64 SMS 4.3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "suse-packagehub-15-sp4-backports-debuginfo-x86_64-sms-4.3", + "parent_channel_label": "sle-product-suse-manager-server-4.3-pool-x86_64", + "product_id": 2347, + "repository_id": 5389, + "parent_product_id": 2299, + "root_product_id": 2378, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-15-SP4_x86_64/standard_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-15-SP4-Backports-Debuginfo for x86_64 SMS 4.3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-packagehub-subpackages15-sp4-updates-x86_64-sms-4.3", + "parent_channel_label": "sle-product-suse-manager-server-4.3-pool-x86_64", + "product_id": 2347, + "repository_id": 5390, + "parent_product_id": 2299, + "root_product_id": 2378, + "update_tag": "SLE-Module-Packagehub-Subpackages", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP4/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Packagehub-Subpackages15-SP4-Updates for x86_64 SMS 4.3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-packagehub-subpackages15-sp4-debuginfo-updates-x86_64-sms-4.3", + "parent_channel_label": "sle-product-suse-manager-server-4.3-pool-x86_64", + "product_id": 2347, + "repository_id": 5391, + "parent_product_id": 2299, + "root_product_id": 2378, + "update_tag": "SLE-Module-Packagehub-Subpackages", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP4/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Packagehub-Subpackages15-SP4-Debuginfo-Updates for x86_64 SMS 4.3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "suse-packagehub-15-sp4-pool-x86_64-sms-4.3", + "parent_channel_label": "sle-product-suse-manager-server-4.3-pool-x86_64", + "product_id": 2347, + "repository_id": 5392, + "parent_product_id": 2299, + "root_product_id": 2378, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-15-SP4_x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-15-SP4-Pool for x86_64 SMS 4.3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-packagehub-subpackages15-sp4-pool-x86_64-sms-4.3", + "parent_channel_label": "sle-product-suse-manager-server-4.3-pool-x86_64", + "product_id": 2347, + "repository_id": 5393, + "parent_product_id": 2299, + "root_product_id": 2378, + "update_tag": "SLE-Module-Packagehub-Subpackages", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP4/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Packagehub-Subpackages15-SP4-Pool for x86_64 SMS 4.3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-packagehub-subpackages15-sp4-debuginfo-pool-x86_64-sms-4.3", + "parent_channel_label": "sle-product-suse-manager-server-4.3-pool-x86_64", + "product_id": 2347, + "repository_id": 5394, + "parent_product_id": 2299, + "root_product_id": 2378, + "update_tag": "SLE-Module-Packagehub-Subpackages", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP4/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Packagehub-Subpackages15-SP4-Debuginfo-Pool for x86_64 SMS 4.3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-python3-15-sp4-updates-x86_64-sms-4.3", + "parent_channel_label": "sle-product-suse-manager-server-4.3-pool-x86_64", + "product_id": 2405, + "repository_id": 5582, + "parent_product_id": 2299, + "root_product_id": 2378, + "update_tag": "SLE-Module-Python3", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Python3/15-SP4/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Python3-15-SP4-Updates for x86_64 SMS 4.3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-python3-15-sp4-debuginfo-updates-x86_64-sms-4.3", + "parent_channel_label": "sle-product-suse-manager-server-4.3-pool-x86_64", + "product_id": 2405, + "repository_id": 5583, + "parent_product_id": 2299, + "root_product_id": 2378, + "update_tag": "SLE-Module-Python3", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Python3/15-SP4/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Python3-15-SP4-Debuginfo-Updates for x86_64 SMS 4.3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-python3-15-sp4-pool-x86_64-sms-4.3", + "parent_channel_label": "sle-product-suse-manager-server-4.3-pool-x86_64", + "product_id": 2405, + "repository_id": 5584, + "parent_product_id": 2299, + "root_product_id": 2378, + "update_tag": "SLE-Module-Python3", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Python3/15-SP4/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Python3-15-SP4-Pool for x86_64 SMS 4.3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-python3-15-sp4-debuginfo-pool-x86_64-sms-4.3", + "parent_channel_label": "sle-product-suse-manager-server-4.3-pool-x86_64", + "product_id": 2405, + "repository_id": 5585, + "parent_product_id": 2299, + "root_product_id": 2378, + "update_tag": "SLE-Module-Python3", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Python3/15-SP4/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Python3-15-SP4-Debuginfo-Pool for x86_64 SMS 4.3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-product-suse-manager-proxy-4.3-updates-x86_64", + "parent_channel_label": "sle-product-suse-manager-proxy-4.3-pool-x86_64", + "product_id": 2379, + "repository_id": 5475, + "parent_product_id": null, + "root_product_id": 2379, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-SUSE-Manager-Proxy/4.3/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-SUSE-Manager-Proxy-4.3-Updates for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-product-suse-manager-proxy-4.3-debuginfo-updates-x86_64", + "parent_channel_label": "sle-product-suse-manager-proxy-4.3-pool-x86_64", + "product_id": 2379, + "repository_id": 5476, + "parent_product_id": null, + "root_product_id": 2379, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-SUSE-Manager-Proxy/4.3/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-SUSE-Manager-Proxy-4.3-Debuginfo-Updates for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-product-suse-manager-proxy-4.3-pool-x86_64", + "parent_channel_label": null, + "product_id": 2379, + "repository_id": 5477, + "parent_product_id": null, + "root_product_id": 2379, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-SUSE-Manager-Proxy/4.3/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-SUSE-Manager-Proxy-4.3-Pool for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-product-suse-manager-proxy-4.3-debuginfo-pool-x86_64", + "parent_channel_label": "sle-product-suse-manager-proxy-4.3-pool-x86_64", + "product_id": 2379, + "repository_id": 5478, + "parent_product_id": null, + "root_product_id": 2379, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-SUSE-Manager-Proxy/4.3/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-SUSE-Manager-Proxy-4.3-Debuginfo-Pool for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-basesystem15-sp4-updates-x86_64-proxy-4.3", + "parent_channel_label": "sle-product-suse-manager-proxy-4.3-pool-x86_64", + "product_id": 2299, + "repository_id": 5137, + "parent_product_id": 2379, + "root_product_id": 2379, + "update_tag": "SLE-Module-Basesystem", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15-SP4/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Basesystem15-SP4-Updates for x86_64 Proxy 4.3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-basesystem15-sp4-debuginfo-updates-x86_64-proxy-4.3", + "parent_channel_label": "sle-product-suse-manager-proxy-4.3-pool-x86_64", + "product_id": 2299, + "repository_id": 5138, + "parent_product_id": 2379, + "root_product_id": 2379, + "update_tag": "SLE-Module-Basesystem", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15-SP4/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Basesystem15-SP4-Debuginfo-Updates for x86_64 Proxy 4.3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-basesystem15-sp4-pool-x86_64-proxy-4.3", + "parent_channel_label": "sle-product-suse-manager-proxy-4.3-pool-x86_64", + "product_id": 2299, + "repository_id": 5139, + "parent_product_id": 2379, + "root_product_id": 2379, + "update_tag": "SLE-Module-Basesystem", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP4/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Basesystem15-SP4-Pool for x86_64 Proxy 4.3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-basesystem15-sp4-debuginfo-pool-x86_64-proxy-4.3", + "parent_channel_label": "sle-product-suse-manager-proxy-4.3-pool-x86_64", + "product_id": 2299, + "repository_id": 5140, + "parent_product_id": 2379, + "root_product_id": 2379, + "update_tag": "SLE-Module-Basesystem", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP4/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Basesystem15-SP4-Debuginfo-Pool for x86_64 Proxy 4.3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-desktop-applications15-sp4-updates-x86_64-proxy-4.3", + "parent_channel_label": "sle-product-suse-manager-proxy-4.3-pool-x86_64", + "product_id": 2303, + "repository_id": 5157, + "parent_product_id": 2299, + "root_product_id": 2379, + "update_tag": "SLE-Module-Desktop-Applications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15-SP4/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Desktop-Applications15-SP4-Updates for x86_64 Proxy 4.3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-desktop-applications15-sp4-debuginfo-updates-x86_64-proxy-4.3", + "parent_channel_label": "sle-product-suse-manager-proxy-4.3-pool-x86_64", + "product_id": 2303, + "repository_id": 5158, + "parent_product_id": 2299, + "root_product_id": 2379, + "update_tag": "SLE-Module-Desktop-Applications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15-SP4/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Desktop-Applications15-SP4-Debuginfo-Updates for x86_64 Proxy 4.3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-desktop-applications15-sp4-pool-x86_64-proxy-4.3", + "parent_channel_label": "sle-product-suse-manager-proxy-4.3-pool-x86_64", + "product_id": 2303, + "repository_id": 5159, + "parent_product_id": 2299, + "root_product_id": 2379, + "update_tag": "SLE-Module-Desktop-Applications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP4/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Desktop-Applications15-SP4-Pool for x86_64 Proxy 4.3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-desktop-applications15-sp4-debuginfo-pool-x86_64-proxy-4.3", + "parent_channel_label": "sle-product-suse-manager-proxy-4.3-pool-x86_64", + "product_id": 2303, + "repository_id": 5160, + "parent_product_id": 2299, + "root_product_id": 2379, + "update_tag": "SLE-Module-Desktop-Applications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP4/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Desktop-Applications15-SP4-Debuginfo-Pool for x86_64 Proxy 4.3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-devtools15-sp4-updates-x86_64-proxy-4.3", + "parent_channel_label": "sle-product-suse-manager-proxy-4.3-pool-x86_64", + "product_id": 2315, + "repository_id": 5217, + "parent_product_id": 2303, + "root_product_id": 2379, + "update_tag": "SLE-Module-Development-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15-SP4/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-DevTools15-SP4-Updates for x86_64 Proxy 4.3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-devtools15-sp4-debuginfo-updates-x86_64-proxy-4.3", + "parent_channel_label": "sle-product-suse-manager-proxy-4.3-pool-x86_64", + "product_id": 2315, + "repository_id": 5218, + "parent_product_id": 2303, + "root_product_id": 2379, + "update_tag": "SLE-Module-Development-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15-SP4/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-DevTools15-SP4-Debuginfo-Updates for x86_64 Proxy 4.3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-devtools15-sp4-pool-x86_64-proxy-4.3", + "parent_channel_label": "sle-product-suse-manager-proxy-4.3-pool-x86_64", + "product_id": 2315, + "repository_id": 5219, + "parent_product_id": 2303, + "root_product_id": 2379, + "update_tag": "SLE-Module-Development-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP4/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-DevTools15-SP4-Pool for x86_64 Proxy 4.3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-devtools15-sp4-debuginfo-pool-x86_64-proxy-4.3", + "parent_channel_label": "sle-product-suse-manager-proxy-4.3-pool-x86_64", + "product_id": 2315, + "repository_id": 5220, + "parent_product_id": 2303, + "root_product_id": 2379, + "update_tag": "SLE-Module-Development-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP4/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-DevTools15-SP4-Debuginfo-Pool for x86_64 Proxy 4.3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-server-applications15-sp4-updates-x86_64-proxy-4.3", + "parent_channel_label": "sle-product-suse-manager-proxy-4.3-pool-x86_64", + "product_id": 2307, + "repository_id": 5177, + "parent_product_id": 2299, + "root_product_id": 2379, + "update_tag": "SLE-Module-Server-Applications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15-SP4/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Server-Applications15-SP4-Updates for x86_64 Proxy 4.3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-server-applications15-sp4-debuginfo-updates-x86_64-proxy-4.3", + "parent_channel_label": "sle-product-suse-manager-proxy-4.3-pool-x86_64", + "product_id": 2307, + "repository_id": 5178, + "parent_product_id": 2299, + "root_product_id": 2379, + "update_tag": "SLE-Module-Server-Applications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15-SP4/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Server-Applications15-SP4-Debuginfo-Updates for x86_64 Proxy 4.3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-server-applications15-sp4-pool-x86_64-proxy-4.3", + "parent_channel_label": "sle-product-suse-manager-proxy-4.3-pool-x86_64", + "product_id": 2307, + "repository_id": 5179, + "parent_product_id": 2299, + "root_product_id": 2379, + "update_tag": "SLE-Module-Server-Applications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP4/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Server-Applications15-SP4-Pool for x86_64 Proxy 4.3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-server-applications15-sp4-debuginfo-pool-x86_64-proxy-4.3", + "parent_channel_label": "sle-product-suse-manager-proxy-4.3-pool-x86_64", + "product_id": 2307, + "repository_id": 5180, + "parent_product_id": 2299, + "root_product_id": 2379, + "update_tag": "SLE-Module-Server-Applications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP4/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Server-Applications15-SP4-Debuginfo-Pool for x86_64 Proxy 4.3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-web-scripting15-sp4-updates-x86_64-proxy-4.3", + "parent_channel_label": "sle-product-suse-manager-proxy-4.3-pool-x86_64", + "product_id": 2319, + "repository_id": 5237, + "parent_product_id": 2307, + "root_product_id": 2379, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/15-SP4/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Web-Scripting15-SP4-Updates for x86_64 Proxy 4.3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-web-scripting15-sp4-debuginfo-updates-x86_64-proxy-4.3", + "parent_channel_label": "sle-product-suse-manager-proxy-4.3-pool-x86_64", + "product_id": 2319, + "repository_id": 5238, + "parent_product_id": 2307, + "root_product_id": 2379, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/15-SP4/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Web-Scripting15-SP4-Debuginfo-Updates for x86_64 Proxy 4.3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-web-scripting15-sp4-pool-x86_64-proxy-4.3", + "parent_channel_label": "sle-product-suse-manager-proxy-4.3-pool-x86_64", + "product_id": 2319, + "repository_id": 5239, + "parent_product_id": 2307, + "root_product_id": 2379, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP4/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Web-Scripting15-SP4-Pool for x86_64 Proxy 4.3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-web-scripting15-sp4-debuginfo-pool-x86_64-proxy-4.3", + "parent_channel_label": "sle-product-suse-manager-proxy-4.3-pool-x86_64", + "product_id": 2319, + "repository_id": 5240, + "parent_product_id": 2307, + "root_product_id": 2379, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP4/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Web-Scripting15-SP4-Debuginfo-Pool for x86_64 Proxy 4.3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-legacy15-sp4-updates-x86_64-proxy-4.3", + "parent_channel_label": "sle-product-suse-manager-proxy-4.3-pool-x86_64", + "product_id": 2323, + "repository_id": 5257, + "parent_product_id": 2307, + "root_product_id": 2379, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/15-SP4/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy15-SP4-Updates for x86_64 Proxy 4.3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-legacy15-sp4-debuginfo-updates-x86_64-proxy-4.3", + "parent_channel_label": "sle-product-suse-manager-proxy-4.3-pool-x86_64", + "product_id": 2323, + "repository_id": 5258, + "parent_product_id": 2307, + "root_product_id": 2379, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/15-SP4/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy15-SP4-Debuginfo-Updates for x86_64 Proxy 4.3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-legacy15-sp4-pool-x86_64-proxy-4.3", + "parent_channel_label": "sle-product-suse-manager-proxy-4.3-pool-x86_64", + "product_id": 2323, + "repository_id": 5259, + "parent_product_id": 2307, + "root_product_id": 2379, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15-SP4/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy15-SP4-Pool for x86_64 Proxy 4.3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-legacy15-sp4-debuginfo-pool-x86_64-proxy-4.3", + "parent_channel_label": "sle-product-suse-manager-proxy-4.3-pool-x86_64", + "product_id": 2323, + "repository_id": 5260, + "parent_product_id": 2307, + "root_product_id": 2379, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15-SP4/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy15-SP4-Debuginfo-Pool for x86_64 Proxy 4.3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-public-cloud15-sp4-updates-x86_64-proxy-4.3", + "parent_channel_label": "sle-product-suse-manager-proxy-4.3-pool-x86_64", + "product_id": 2327, + "repository_id": 5277, + "parent_product_id": 2307, + "root_product_id": 2379, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/15-SP4/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud15-SP4-Updates for x86_64 Proxy 4.3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-public-cloud15-sp4-debuginfo-updates-x86_64-proxy-4.3", + "parent_channel_label": "sle-product-suse-manager-proxy-4.3-pool-x86_64", + "product_id": 2327, + "repository_id": 5278, + "parent_product_id": 2307, + "root_product_id": 2379, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/15-SP4/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud15-SP4-Debuginfo-Updates for x86_64 Proxy 4.3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-public-cloud15-sp4-pool-x86_64-proxy-4.3", + "parent_channel_label": "sle-product-suse-manager-proxy-4.3-pool-x86_64", + "product_id": 2327, + "repository_id": 5279, + "parent_product_id": 2307, + "root_product_id": 2379, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP4/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud15-SP4-Pool for x86_64 Proxy 4.3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-public-cloud15-sp4-debuginfo-pool-x86_64-proxy-4.3", + "parent_channel_label": "sle-product-suse-manager-proxy-4.3-pool-x86_64", + "product_id": 2327, + "repository_id": 5280, + "parent_product_id": 2307, + "root_product_id": 2379, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP4/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud15-SP4-Debuginfo-Pool for x86_64 Proxy 4.3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-product-ha15-sp4-updates-x86_64-proxy-4.3", + "parent_channel_label": "sle-product-suse-manager-proxy-4.3-pool-x86_64", + "product_id": 2340, + "repository_id": 5342, + "parent_product_id": 2307, + "root_product_id": 2379, + "update_tag": "SLE-Product-HA", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-HA/15-SP4/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HA15-SP4-Updates for x86_64 Proxy 4.3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-product-ha15-sp4-debuginfo-updates-x86_64-proxy-4.3", + "parent_channel_label": "sle-product-suse-manager-proxy-4.3-pool-x86_64", + "product_id": 2340, + "repository_id": 5343, + "parent_product_id": 2307, + "root_product_id": 2379, + "update_tag": "SLE-Product-HA", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-HA/15-SP4/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HA15-SP4-Debuginfo-Updates for x86_64 Proxy 4.3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-product-ha15-sp4-pool-x86_64-proxy-4.3", + "parent_channel_label": "sle-product-suse-manager-proxy-4.3-pool-x86_64", + "product_id": 2340, + "repository_id": 5344, + "parent_product_id": 2307, + "root_product_id": 2379, + "update_tag": "SLE-Product-HA", + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP4/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HA15-SP4-Pool for x86_64 Proxy 4.3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-product-ha15-sp4-debuginfo-pool-x86_64-proxy-4.3", + "parent_channel_label": "sle-product-suse-manager-proxy-4.3-pool-x86_64", + "product_id": 2340, + "repository_id": 5345, + "parent_product_id": 2307, + "root_product_id": 2379, + "update_tag": "SLE-Product-HA", + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP4/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HA15-SP4-Debuginfo-Pool for x86_64 Proxy 4.3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-suse-manager-proxy-4.3-updates-x86_64", + "parent_channel_label": "sle-product-suse-manager-proxy-4.3-pool-x86_64", + "product_id": 2384, + "repository_id": 5500, + "parent_product_id": 2307, + "root_product_id": 2379, + "update_tag": "SLE-Module-SUSE-Manager-Proxy", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-SUSE-Manager-Proxy/4.3/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-SUSE-Manager-Proxy-4.3-Updates for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-suse-manager-proxy-4.3-debuginfo-updates-x86_64", + "parent_channel_label": "sle-product-suse-manager-proxy-4.3-pool-x86_64", + "product_id": 2384, + "repository_id": 5501, + "parent_product_id": 2307, + "root_product_id": 2379, + "update_tag": "SLE-Module-SUSE-Manager-Proxy", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-SUSE-Manager-Proxy/4.3/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-SUSE-Manager-Proxy-4.3-Debuginfo-Updates for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-suse-manager-proxy-4.3-pool-x86_64", + "parent_channel_label": "sle-product-suse-manager-proxy-4.3-pool-x86_64", + "product_id": 2384, + "repository_id": 5502, + "parent_product_id": 2307, + "root_product_id": 2379, + "update_tag": "SLE-Module-SUSE-Manager-Proxy", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-SUSE-Manager-Proxy/4.3/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-SUSE-Manager-Proxy-4.3-Pool for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-suse-manager-proxy-4.3-debuginfo-pool-x86_64", + "parent_channel_label": "sle-product-suse-manager-proxy-4.3-pool-x86_64", + "product_id": 2384, + "repository_id": 5503, + "parent_product_id": 2307, + "root_product_id": 2379, + "update_tag": "SLE-Module-SUSE-Manager-Proxy", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-SUSE-Manager-Proxy/4.3/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-SUSE-Manager-Proxy-4.3-Debuginfo-Pool for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-containers15-sp4-updates-x86_64-proxy-4.3", + "parent_channel_label": "sle-product-suse-manager-proxy-4.3-pool-x86_64", + "product_id": 2311, + "repository_id": 5197, + "parent_product_id": 2299, + "root_product_id": 2379, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/15-SP4/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers15-SP4-Updates for x86_64 Proxy 4.3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-containers15-sp4-debuginfo-updates-x86_64-proxy-4.3", + "parent_channel_label": "sle-product-suse-manager-proxy-4.3-pool-x86_64", + "product_id": 2311, + "repository_id": 5198, + "parent_product_id": 2299, + "root_product_id": 2379, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/15-SP4/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers15-SP4-Debuginfo-Updates for x86_64 Proxy 4.3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-containers15-sp4-pool-x86_64-proxy-4.3", + "parent_channel_label": "sle-product-suse-manager-proxy-4.3-pool-x86_64", + "product_id": 2311, + "repository_id": 5199, + "parent_product_id": 2299, + "root_product_id": 2379, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP4/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers15-SP4-Pool for x86_64 Proxy 4.3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-containers15-sp4-debuginfo-pool-x86_64-proxy-4.3", + "parent_channel_label": "sle-product-suse-manager-proxy-4.3-pool-x86_64", + "product_id": 2311, + "repository_id": 5200, + "parent_product_id": 2299, + "root_product_id": 2379, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP4/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers15-SP4-Debuginfo-Pool for x86_64 Proxy 4.3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "suse-packagehub-15-sp4-backports-pool-x86_64-proxy-4.3", + "parent_channel_label": "sle-product-suse-manager-proxy-4.3-pool-x86_64", + "product_id": 2347, + "repository_id": 5388, + "parent_product_id": 2299, + "root_product_id": 2379, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-15-SP4_x86_64/standard/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-15-SP4-Backports-Pool for x86_64 Proxy 4.3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "suse-packagehub-15-sp4-backports-debuginfo-x86_64-proxy-4.3", + "parent_channel_label": "sle-product-suse-manager-proxy-4.3-pool-x86_64", + "product_id": 2347, + "repository_id": 5389, + "parent_product_id": 2299, + "root_product_id": 2379, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-15-SP4_x86_64/standard_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-15-SP4-Backports-Debuginfo for x86_64 Proxy 4.3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-packagehub-subpackages15-sp4-updates-x86_64-proxy-4.3", + "parent_channel_label": "sle-product-suse-manager-proxy-4.3-pool-x86_64", + "product_id": 2347, + "repository_id": 5390, + "parent_product_id": 2299, + "root_product_id": 2379, + "update_tag": "SLE-Module-Packagehub-Subpackages", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP4/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Packagehub-Subpackages15-SP4-Updates for x86_64 Proxy 4.3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-packagehub-subpackages15-sp4-debuginfo-updates-x86_64-proxy-4.3", + "parent_channel_label": "sle-product-suse-manager-proxy-4.3-pool-x86_64", + "product_id": 2347, + "repository_id": 5391, + "parent_product_id": 2299, + "root_product_id": 2379, + "update_tag": "SLE-Module-Packagehub-Subpackages", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP4/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Packagehub-Subpackages15-SP4-Debuginfo-Updates for x86_64 Proxy 4.3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "suse-packagehub-15-sp4-pool-x86_64-proxy-4.3", + "parent_channel_label": "sle-product-suse-manager-proxy-4.3-pool-x86_64", + "product_id": 2347, + "repository_id": 5392, + "parent_product_id": 2299, + "root_product_id": 2379, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-15-SP4_x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-15-SP4-Pool for x86_64 Proxy 4.3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-packagehub-subpackages15-sp4-pool-x86_64-proxy-4.3", + "parent_channel_label": "sle-product-suse-manager-proxy-4.3-pool-x86_64", + "product_id": 2347, + "repository_id": 5393, + "parent_product_id": 2299, + "root_product_id": 2379, + "update_tag": "SLE-Module-Packagehub-Subpackages", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP4/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Packagehub-Subpackages15-SP4-Pool for x86_64 Proxy 4.3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-packagehub-subpackages15-sp4-debuginfo-pool-x86_64-proxy-4.3", + "parent_channel_label": "sle-product-suse-manager-proxy-4.3-pool-x86_64", + "product_id": 2347, + "repository_id": 5394, + "parent_product_id": 2299, + "root_product_id": 2379, + "update_tag": "SLE-Module-Packagehub-Subpackages", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP4/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Packagehub-Subpackages15-SP4-Debuginfo-Pool for x86_64 Proxy 4.3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-python3-15-sp4-updates-x86_64-proxy-4.3", + "parent_channel_label": "sle-product-suse-manager-proxy-4.3-pool-x86_64", + "product_id": 2405, + "repository_id": 5582, + "parent_product_id": 2299, + "root_product_id": 2379, + "update_tag": "SLE-Module-Python3", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Python3/15-SP4/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Python3-15-SP4-Updates for x86_64 Proxy 4.3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-python3-15-sp4-debuginfo-updates-x86_64-proxy-4.3", + "parent_channel_label": "sle-product-suse-manager-proxy-4.3-pool-x86_64", + "product_id": 2405, + "repository_id": 5583, + "parent_product_id": 2299, + "root_product_id": 2379, + "update_tag": "SLE-Module-Python3", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Python3/15-SP4/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Python3-15-SP4-Debuginfo-Updates for x86_64 Proxy 4.3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-python3-15-sp4-pool-x86_64-proxy-4.3", + "parent_channel_label": "sle-product-suse-manager-proxy-4.3-pool-x86_64", + "product_id": 2405, + "repository_id": 5584, + "parent_product_id": 2299, + "root_product_id": 2379, + "update_tag": "SLE-Module-Python3", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Python3/15-SP4/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Python3-15-SP4-Pool for x86_64 Proxy 4.3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-python3-15-sp4-debuginfo-pool-x86_64-proxy-4.3", + "parent_channel_label": "sle-product-suse-manager-proxy-4.3-pool-x86_64", + "product_id": 2405, + "repository_id": 5585, + "parent_product_id": 2299, + "root_product_id": 2379, + "update_tag": "SLE-Module-Python3", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Python3/15-SP4/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Python3-15-SP4-Debuginfo-Pool for x86_64 Proxy 4.3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-product-suse-manager-retail-branch-server-4.3-updates-x86_64", + "parent_channel_label": "sle-product-suse-manager-retail-branch-server-4.3-pool-x86_64", + "product_id": 2380, + "repository_id": 5480, + "parent_product_id": null, + "root_product_id": 2380, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-SUSE-Manager-Retail-Branch-Server/4.3/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-SUSE-Manager-Retail-Branch-Server-4.3-Updates for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-product-suse-manager-retail-branch-server-4.3-debuginfo-updates-x86_64", + "parent_channel_label": "sle-product-suse-manager-retail-branch-server-4.3-pool-x86_64", + "product_id": 2380, + "repository_id": 5481, + "parent_product_id": null, + "root_product_id": 2380, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-SUSE-Manager-Retail-Branch-Server/4.3/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-SUSE-Manager-Retail-Branch-Server-4.3-Debuginfo-Updates for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-product-suse-manager-retail-branch-server-4.3-pool-x86_64", + "parent_channel_label": null, + "product_id": 2380, + "repository_id": 5482, + "parent_product_id": null, + "root_product_id": 2380, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-SUSE-Manager-Retail-Branch-Server/4.3/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-SUSE-Manager-Retail-Branch-Server-4.3-Pool for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-product-suse-manager-retail-branch-server-4.3-debuginfo-pool-x86_64", + "parent_channel_label": "sle-product-suse-manager-retail-branch-server-4.3-pool-x86_64", + "product_id": 2380, + "repository_id": 5483, + "parent_product_id": null, + "root_product_id": 2380, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-SUSE-Manager-Retail-Branch-Server/4.3/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-SUSE-Manager-Retail-Branch-Server-4.3-Debuginfo-Pool for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-basesystem15-sp4-updates-x86_64-smrbs-4.3", + "parent_channel_label": "sle-product-suse-manager-retail-branch-server-4.3-pool-x86_64", + "product_id": 2299, + "repository_id": 5137, + "parent_product_id": 2380, + "root_product_id": 2380, + "update_tag": "SLE-Module-Basesystem", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15-SP4/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Basesystem15-SP4-Updates for x86_64 SMRBS 4.3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-basesystem15-sp4-debuginfo-updates-x86_64-smrbs-4.3", + "parent_channel_label": "sle-product-suse-manager-retail-branch-server-4.3-pool-x86_64", + "product_id": 2299, + "repository_id": 5138, + "parent_product_id": 2380, + "root_product_id": 2380, + "update_tag": "SLE-Module-Basesystem", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15-SP4/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Basesystem15-SP4-Debuginfo-Updates for x86_64 SMRBS 4.3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-basesystem15-sp4-pool-x86_64-smrbs-4.3", + "parent_channel_label": "sle-product-suse-manager-retail-branch-server-4.3-pool-x86_64", + "product_id": 2299, + "repository_id": 5139, + "parent_product_id": 2380, + "root_product_id": 2380, + "update_tag": "SLE-Module-Basesystem", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP4/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Basesystem15-SP4-Pool for x86_64 SMRBS 4.3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-basesystem15-sp4-debuginfo-pool-x86_64-smrbs-4.3", + "parent_channel_label": "sle-product-suse-manager-retail-branch-server-4.3-pool-x86_64", + "product_id": 2299, + "repository_id": 5140, + "parent_product_id": 2380, + "root_product_id": 2380, + "update_tag": "SLE-Module-Basesystem", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP4/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Basesystem15-SP4-Debuginfo-Pool for x86_64 SMRBS 4.3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-desktop-applications15-sp4-updates-x86_64-smrbs-4.3", + "parent_channel_label": "sle-product-suse-manager-retail-branch-server-4.3-pool-x86_64", + "product_id": 2303, + "repository_id": 5157, + "parent_product_id": 2299, + "root_product_id": 2380, + "update_tag": "SLE-Module-Desktop-Applications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15-SP4/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Desktop-Applications15-SP4-Updates for x86_64 SMRBS 4.3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-desktop-applications15-sp4-debuginfo-updates-x86_64-smrbs-4.3", + "parent_channel_label": "sle-product-suse-manager-retail-branch-server-4.3-pool-x86_64", + "product_id": 2303, + "repository_id": 5158, + "parent_product_id": 2299, + "root_product_id": 2380, + "update_tag": "SLE-Module-Desktop-Applications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15-SP4/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Desktop-Applications15-SP4-Debuginfo-Updates for x86_64 SMRBS 4.3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-desktop-applications15-sp4-pool-x86_64-smrbs-4.3", + "parent_channel_label": "sle-product-suse-manager-retail-branch-server-4.3-pool-x86_64", + "product_id": 2303, + "repository_id": 5159, + "parent_product_id": 2299, + "root_product_id": 2380, + "update_tag": "SLE-Module-Desktop-Applications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP4/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Desktop-Applications15-SP4-Pool for x86_64 SMRBS 4.3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-desktop-applications15-sp4-debuginfo-pool-x86_64-smrbs-4.3", + "parent_channel_label": "sle-product-suse-manager-retail-branch-server-4.3-pool-x86_64", + "product_id": 2303, + "repository_id": 5160, + "parent_product_id": 2299, + "root_product_id": 2380, + "update_tag": "SLE-Module-Desktop-Applications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP4/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Desktop-Applications15-SP4-Debuginfo-Pool for x86_64 SMRBS 4.3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-devtools15-sp4-updates-x86_64-smrbs-4.3", + "parent_channel_label": "sle-product-suse-manager-retail-branch-server-4.3-pool-x86_64", + "product_id": 2315, + "repository_id": 5217, + "parent_product_id": 2303, + "root_product_id": 2380, + "update_tag": "SLE-Module-Development-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15-SP4/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-DevTools15-SP4-Updates for x86_64 SMRBS 4.3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-devtools15-sp4-debuginfo-updates-x86_64-smrbs-4.3", + "parent_channel_label": "sle-product-suse-manager-retail-branch-server-4.3-pool-x86_64", + "product_id": 2315, + "repository_id": 5218, + "parent_product_id": 2303, + "root_product_id": 2380, + "update_tag": "SLE-Module-Development-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15-SP4/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-DevTools15-SP4-Debuginfo-Updates for x86_64 SMRBS 4.3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-devtools15-sp4-pool-x86_64-smrbs-4.3", + "parent_channel_label": "sle-product-suse-manager-retail-branch-server-4.3-pool-x86_64", + "product_id": 2315, + "repository_id": 5219, + "parent_product_id": 2303, + "root_product_id": 2380, + "update_tag": "SLE-Module-Development-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP4/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-DevTools15-SP4-Pool for x86_64 SMRBS 4.3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-devtools15-sp4-debuginfo-pool-x86_64-smrbs-4.3", + "parent_channel_label": "sle-product-suse-manager-retail-branch-server-4.3-pool-x86_64", + "product_id": 2315, + "repository_id": 5220, + "parent_product_id": 2303, + "root_product_id": 2380, + "update_tag": "SLE-Module-Development-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP4/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-DevTools15-SP4-Debuginfo-Pool for x86_64 SMRBS 4.3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-server-applications15-sp4-updates-x86_64-smrbs-4.3", + "parent_channel_label": "sle-product-suse-manager-retail-branch-server-4.3-pool-x86_64", + "product_id": 2307, + "repository_id": 5177, + "parent_product_id": 2299, + "root_product_id": 2380, + "update_tag": "SLE-Module-Server-Applications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15-SP4/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Server-Applications15-SP4-Updates for x86_64 SMRBS 4.3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-server-applications15-sp4-debuginfo-updates-x86_64-smrbs-4.3", + "parent_channel_label": "sle-product-suse-manager-retail-branch-server-4.3-pool-x86_64", + "product_id": 2307, + "repository_id": 5178, + "parent_product_id": 2299, + "root_product_id": 2380, + "update_tag": "SLE-Module-Server-Applications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15-SP4/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Server-Applications15-SP4-Debuginfo-Updates for x86_64 SMRBS 4.3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-server-applications15-sp4-pool-x86_64-smrbs-4.3", + "parent_channel_label": "sle-product-suse-manager-retail-branch-server-4.3-pool-x86_64", + "product_id": 2307, + "repository_id": 5179, + "parent_product_id": 2299, + "root_product_id": 2380, + "update_tag": "SLE-Module-Server-Applications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP4/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Server-Applications15-SP4-Pool for x86_64 SMRBS 4.3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-server-applications15-sp4-debuginfo-pool-x86_64-smrbs-4.3", + "parent_channel_label": "sle-product-suse-manager-retail-branch-server-4.3-pool-x86_64", + "product_id": 2307, + "repository_id": 5180, + "parent_product_id": 2299, + "root_product_id": 2380, + "update_tag": "SLE-Module-Server-Applications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP4/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Server-Applications15-SP4-Debuginfo-Pool for x86_64 SMRBS 4.3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-web-scripting15-sp4-updates-x86_64-smrbs-4.3", + "parent_channel_label": "sle-product-suse-manager-retail-branch-server-4.3-pool-x86_64", + "product_id": 2319, + "repository_id": 5237, + "parent_product_id": 2307, + "root_product_id": 2380, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/15-SP4/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Web-Scripting15-SP4-Updates for x86_64 SMRBS 4.3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-web-scripting15-sp4-debuginfo-updates-x86_64-smrbs-4.3", + "parent_channel_label": "sle-product-suse-manager-retail-branch-server-4.3-pool-x86_64", + "product_id": 2319, + "repository_id": 5238, + "parent_product_id": 2307, + "root_product_id": 2380, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/15-SP4/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Web-Scripting15-SP4-Debuginfo-Updates for x86_64 SMRBS 4.3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-web-scripting15-sp4-pool-x86_64-smrbs-4.3", + "parent_channel_label": "sle-product-suse-manager-retail-branch-server-4.3-pool-x86_64", + "product_id": 2319, + "repository_id": 5239, + "parent_product_id": 2307, + "root_product_id": 2380, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP4/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Web-Scripting15-SP4-Pool for x86_64 SMRBS 4.3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-web-scripting15-sp4-debuginfo-pool-x86_64-smrbs-4.3", + "parent_channel_label": "sle-product-suse-manager-retail-branch-server-4.3-pool-x86_64", + "product_id": 2319, + "repository_id": 5240, + "parent_product_id": 2307, + "root_product_id": 2380, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP4/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Web-Scripting15-SP4-Debuginfo-Pool for x86_64 SMRBS 4.3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-legacy15-sp4-updates-x86_64-smrbs-4.3", + "parent_channel_label": "sle-product-suse-manager-retail-branch-server-4.3-pool-x86_64", + "product_id": 2323, + "repository_id": 5257, + "parent_product_id": 2307, + "root_product_id": 2380, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/15-SP4/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy15-SP4-Updates for x86_64 SMRBS 4.3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-legacy15-sp4-debuginfo-updates-x86_64-smrbs-4.3", + "parent_channel_label": "sle-product-suse-manager-retail-branch-server-4.3-pool-x86_64", + "product_id": 2323, + "repository_id": 5258, + "parent_product_id": 2307, + "root_product_id": 2380, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/15-SP4/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy15-SP4-Debuginfo-Updates for x86_64 SMRBS 4.3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-legacy15-sp4-pool-x86_64-smrbs-4.3", + "parent_channel_label": "sle-product-suse-manager-retail-branch-server-4.3-pool-x86_64", + "product_id": 2323, + "repository_id": 5259, + "parent_product_id": 2307, + "root_product_id": 2380, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15-SP4/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy15-SP4-Pool for x86_64 SMRBS 4.3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-legacy15-sp4-debuginfo-pool-x86_64-smrbs-4.3", + "parent_channel_label": "sle-product-suse-manager-retail-branch-server-4.3-pool-x86_64", + "product_id": 2323, + "repository_id": 5260, + "parent_product_id": 2307, + "root_product_id": 2380, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15-SP4/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy15-SP4-Debuginfo-Pool for x86_64 SMRBS 4.3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-public-cloud15-sp4-updates-x86_64-smrbs-4.3", + "parent_channel_label": "sle-product-suse-manager-retail-branch-server-4.3-pool-x86_64", + "product_id": 2327, + "repository_id": 5277, + "parent_product_id": 2307, + "root_product_id": 2380, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/15-SP4/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud15-SP4-Updates for x86_64 SMRBS 4.3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-public-cloud15-sp4-debuginfo-updates-x86_64-smrbs-4.3", + "parent_channel_label": "sle-product-suse-manager-retail-branch-server-4.3-pool-x86_64", + "product_id": 2327, + "repository_id": 5278, + "parent_product_id": 2307, + "root_product_id": 2380, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/15-SP4/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud15-SP4-Debuginfo-Updates for x86_64 SMRBS 4.3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-public-cloud15-sp4-pool-x86_64-smrbs-4.3", + "parent_channel_label": "sle-product-suse-manager-retail-branch-server-4.3-pool-x86_64", + "product_id": 2327, + "repository_id": 5279, + "parent_product_id": 2307, + "root_product_id": 2380, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP4/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud15-SP4-Pool for x86_64 SMRBS 4.3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-public-cloud15-sp4-debuginfo-pool-x86_64-smrbs-4.3", + "parent_channel_label": "sle-product-suse-manager-retail-branch-server-4.3-pool-x86_64", + "product_id": 2327, + "repository_id": 5280, + "parent_product_id": 2307, + "root_product_id": 2380, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP4/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud15-SP4-Debuginfo-Pool for x86_64 SMRBS 4.3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-product-ha15-sp4-updates-x86_64-smrbs-4.3", + "parent_channel_label": "sle-product-suse-manager-retail-branch-server-4.3-pool-x86_64", + "product_id": 2340, + "repository_id": 5342, + "parent_product_id": 2307, + "root_product_id": 2380, + "update_tag": "SLE-Product-HA", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-HA/15-SP4/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HA15-SP4-Updates for x86_64 SMRBS 4.3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-product-ha15-sp4-debuginfo-updates-x86_64-smrbs-4.3", + "parent_channel_label": "sle-product-suse-manager-retail-branch-server-4.3-pool-x86_64", + "product_id": 2340, + "repository_id": 5343, + "parent_product_id": 2307, + "root_product_id": 2380, + "update_tag": "SLE-Product-HA", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-HA/15-SP4/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HA15-SP4-Debuginfo-Updates for x86_64 SMRBS 4.3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-product-ha15-sp4-pool-x86_64-smrbs-4.3", + "parent_channel_label": "sle-product-suse-manager-retail-branch-server-4.3-pool-x86_64", + "product_id": 2340, + "repository_id": 5344, + "parent_product_id": 2307, + "root_product_id": 2380, + "update_tag": "SLE-Product-HA", + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP4/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HA15-SP4-Pool for x86_64 SMRBS 4.3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-product-ha15-sp4-debuginfo-pool-x86_64-smrbs-4.3", + "parent_channel_label": "sle-product-suse-manager-retail-branch-server-4.3-pool-x86_64", + "product_id": 2340, + "repository_id": 5345, + "parent_product_id": 2307, + "root_product_id": 2380, + "update_tag": "SLE-Product-HA", + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP4/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HA15-SP4-Debuginfo-Pool for x86_64 SMRBS 4.3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-suse-manager-proxy-4.3-updates-x86_64-smrbs", + "parent_channel_label": "sle-product-suse-manager-retail-branch-server-4.3-pool-x86_64", + "product_id": 2384, + "repository_id": 5500, + "parent_product_id": 2307, + "root_product_id": 2380, + "update_tag": "SLE-Module-SUSE-Manager-Proxy", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-SUSE-Manager-Proxy/4.3/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-SUSE-Manager-Proxy-4.3-Updates for x86_64 SMRBS", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-suse-manager-proxy-4.3-debuginfo-updates-x86_64-smrbs", + "parent_channel_label": "sle-product-suse-manager-retail-branch-server-4.3-pool-x86_64", + "product_id": 2384, + "repository_id": 5501, + "parent_product_id": 2307, + "root_product_id": 2380, + "update_tag": "SLE-Module-SUSE-Manager-Proxy", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-SUSE-Manager-Proxy/4.3/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-SUSE-Manager-Proxy-4.3-Debuginfo-Updates for x86_64 SMRBS", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-suse-manager-proxy-4.3-pool-x86_64-smrbs", + "parent_channel_label": "sle-product-suse-manager-retail-branch-server-4.3-pool-x86_64", + "product_id": 2384, + "repository_id": 5502, + "parent_product_id": 2307, + "root_product_id": 2380, + "update_tag": "SLE-Module-SUSE-Manager-Proxy", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-SUSE-Manager-Proxy/4.3/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-SUSE-Manager-Proxy-4.3-Pool for x86_64 SMRBS", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-suse-manager-proxy-4.3-debuginfo-pool-x86_64-smrbs", + "parent_channel_label": "sle-product-suse-manager-retail-branch-server-4.3-pool-x86_64", + "product_id": 2384, + "repository_id": 5503, + "parent_product_id": 2307, + "root_product_id": 2380, + "update_tag": "SLE-Module-SUSE-Manager-Proxy", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-SUSE-Manager-Proxy/4.3/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-SUSE-Manager-Proxy-4.3-Debuginfo-Pool for x86_64 SMRBS", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-suse-manager-retail-branch-server-4.3-updates-x86_64", + "parent_channel_label": "sle-product-suse-manager-retail-branch-server-4.3-pool-x86_64", + "product_id": 2385, + "repository_id": 5505, + "parent_product_id": 2384, + "root_product_id": 2380, + "update_tag": "SLE-Module-SUSE-Manager-Retail-Branch-Server", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-SUSE-Manager-Retail-Branch-Server/4.3/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-SUSE-Manager-Retail-Branch-Server-4.3-Updates for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-suse-manager-retail-branch-server-4.3-debuginfo-updates-x86_64", + "parent_channel_label": "sle-product-suse-manager-retail-branch-server-4.3-pool-x86_64", + "product_id": 2385, + "repository_id": 5506, + "parent_product_id": 2384, + "root_product_id": 2380, + "update_tag": "SLE-Module-SUSE-Manager-Retail-Branch-Server", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-SUSE-Manager-Retail-Branch-Server/4.3/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-SUSE-Manager-Retail-Branch-Server-4.3-Debuginfo-Updates for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-suse-manager-retail-branch-server-4.3-pool-x86_64", + "parent_channel_label": "sle-product-suse-manager-retail-branch-server-4.3-pool-x86_64", + "product_id": 2385, + "repository_id": 5507, + "parent_product_id": 2384, + "root_product_id": 2380, + "update_tag": "SLE-Module-SUSE-Manager-Retail-Branch-Server", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-SUSE-Manager-Retail-Branch-Server/4.3/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-SUSE-Manager-Retail-Branch-Server-4.3-Pool for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-suse-manager-retail-branch-server-4.3-debuginfo-pool-x86_64", + "parent_channel_label": "sle-product-suse-manager-retail-branch-server-4.3-pool-x86_64", + "product_id": 2385, + "repository_id": 5508, + "parent_product_id": 2384, + "root_product_id": 2380, + "update_tag": "SLE-Module-SUSE-Manager-Retail-Branch-Server", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-SUSE-Manager-Retail-Branch-Server/4.3/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-SUSE-Manager-Retail-Branch-Server-4.3-Debuginfo-Pool for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-containers15-sp4-updates-x86_64-smrbs-4.3", + "parent_channel_label": "sle-product-suse-manager-retail-branch-server-4.3-pool-x86_64", + "product_id": 2311, + "repository_id": 5197, + "parent_product_id": 2299, + "root_product_id": 2380, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/15-SP4/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers15-SP4-Updates for x86_64 SMRBS 4.3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-containers15-sp4-debuginfo-updates-x86_64-smrbs-4.3", + "parent_channel_label": "sle-product-suse-manager-retail-branch-server-4.3-pool-x86_64", + "product_id": 2311, + "repository_id": 5198, + "parent_product_id": 2299, + "root_product_id": 2380, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/15-SP4/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers15-SP4-Debuginfo-Updates for x86_64 SMRBS 4.3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-containers15-sp4-pool-x86_64-smrbs-4.3", + "parent_channel_label": "sle-product-suse-manager-retail-branch-server-4.3-pool-x86_64", + "product_id": 2311, + "repository_id": 5199, + "parent_product_id": 2299, + "root_product_id": 2380, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP4/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers15-SP4-Pool for x86_64 SMRBS 4.3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-containers15-sp4-debuginfo-pool-x86_64-smrbs-4.3", + "parent_channel_label": "sle-product-suse-manager-retail-branch-server-4.3-pool-x86_64", + "product_id": 2311, + "repository_id": 5200, + "parent_product_id": 2299, + "root_product_id": 2380, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP4/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers15-SP4-Debuginfo-Pool for x86_64 SMRBS 4.3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "suse-packagehub-15-sp4-backports-pool-x86_64-smrbs-4.3", + "parent_channel_label": "sle-product-suse-manager-retail-branch-server-4.3-pool-x86_64", + "product_id": 2347, + "repository_id": 5388, + "parent_product_id": 2299, + "root_product_id": 2380, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-15-SP4_x86_64/standard/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-15-SP4-Backports-Pool for x86_64 SMRBS 4.3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "suse-packagehub-15-sp4-backports-debuginfo-x86_64-smrbs-4.3", + "parent_channel_label": "sle-product-suse-manager-retail-branch-server-4.3-pool-x86_64", + "product_id": 2347, + "repository_id": 5389, + "parent_product_id": 2299, + "root_product_id": 2380, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-15-SP4_x86_64/standard_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-15-SP4-Backports-Debuginfo for x86_64 SMRBS 4.3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-packagehub-subpackages15-sp4-updates-x86_64-smrbs-4.3", + "parent_channel_label": "sle-product-suse-manager-retail-branch-server-4.3-pool-x86_64", + "product_id": 2347, + "repository_id": 5390, + "parent_product_id": 2299, + "root_product_id": 2380, + "update_tag": "SLE-Module-Packagehub-Subpackages", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP4/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Packagehub-Subpackages15-SP4-Updates for x86_64 SMRBS 4.3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-packagehub-subpackages15-sp4-debuginfo-updates-x86_64-smrbs-4.3", + "parent_channel_label": "sle-product-suse-manager-retail-branch-server-4.3-pool-x86_64", + "product_id": 2347, + "repository_id": 5391, + "parent_product_id": 2299, + "root_product_id": 2380, + "update_tag": "SLE-Module-Packagehub-Subpackages", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP4/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Packagehub-Subpackages15-SP4-Debuginfo-Updates for x86_64 SMRBS 4.3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "suse-packagehub-15-sp4-pool-x86_64-smrbs-4.3", + "parent_channel_label": "sle-product-suse-manager-retail-branch-server-4.3-pool-x86_64", + "product_id": 2347, + "repository_id": 5392, + "parent_product_id": 2299, + "root_product_id": 2380, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-15-SP4_x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-15-SP4-Pool for x86_64 SMRBS 4.3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-packagehub-subpackages15-sp4-pool-x86_64-smrbs-4.3", + "parent_channel_label": "sle-product-suse-manager-retail-branch-server-4.3-pool-x86_64", + "product_id": 2347, + "repository_id": 5393, + "parent_product_id": 2299, + "root_product_id": 2380, + "update_tag": "SLE-Module-Packagehub-Subpackages", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP4/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Packagehub-Subpackages15-SP4-Pool for x86_64 SMRBS 4.3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-packagehub-subpackages15-sp4-debuginfo-pool-x86_64-smrbs-4.3", + "parent_channel_label": "sle-product-suse-manager-retail-branch-server-4.3-pool-x86_64", + "product_id": 2347, + "repository_id": 5394, + "parent_product_id": 2299, + "root_product_id": 2380, + "update_tag": "SLE-Module-Packagehub-Subpackages", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP4/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Packagehub-Subpackages15-SP4-Debuginfo-Pool for x86_64 SMRBS 4.3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-python3-15-sp4-updates-x86_64-smrbs-4.3", + "parent_channel_label": "sle-product-suse-manager-retail-branch-server-4.3-pool-x86_64", + "product_id": 2405, + "repository_id": 5582, + "parent_product_id": 2299, + "root_product_id": 2380, + "update_tag": "SLE-Module-Python3", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Python3/15-SP4/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Python3-15-SP4-Updates for x86_64 SMRBS 4.3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-python3-15-sp4-debuginfo-updates-x86_64-smrbs-4.3", + "parent_channel_label": "sle-product-suse-manager-retail-branch-server-4.3-pool-x86_64", + "product_id": 2405, + "repository_id": 5583, + "parent_product_id": 2299, + "root_product_id": 2380, + "update_tag": "SLE-Module-Python3", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Python3/15-SP4/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Python3-15-SP4-Debuginfo-Updates for x86_64 SMRBS 4.3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-python3-15-sp4-pool-x86_64-smrbs-4.3", + "parent_channel_label": "sle-product-suse-manager-retail-branch-server-4.3-pool-x86_64", + "product_id": 2405, + "repository_id": 5584, + "parent_product_id": 2299, + "root_product_id": 2380, + "update_tag": "SLE-Module-Python3", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Python3/15-SP4/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Python3-15-SP4-Pool for x86_64 SMRBS 4.3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-python3-15-sp4-debuginfo-pool-x86_64-smrbs-4.3", + "parent_channel_label": "sle-product-suse-manager-retail-branch-server-4.3-pool-x86_64", + "product_id": 2405, + "repository_id": 5585, + "parent_product_id": 2299, + "root_product_id": 2380, + "update_tag": "SLE-Module-Python3", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Python3/15-SP4/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Python3-15-SP4-Debuginfo-Pool for x86_64 SMRBS 4.3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "suse-microos-5.2-updates-aarch64", + "parent_channel_label": "suse-microos-5.2-pool-aarch64", + "product_id": 2399, + "repository_id": 5552, + "parent_product_id": null, + "root_product_id": 2399, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Updates/SUSE-MicroOS/5.2/aarch64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-MicroOS-5.2-Updates for aarch64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-microos-5.2-debuginfo-updates-aarch64", + "parent_channel_label": "suse-microos-5.2-pool-aarch64", + "product_id": 2399, + "repository_id": 5553, + "parent_product_id": null, + "root_product_id": 2399, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Updates/SUSE-MicroOS/5.2/aarch64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SUSE-MicroOS-5.2-Debuginfo-Updates for aarch64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-microos-5.2-pool-aarch64", + "parent_channel_label": null, + "product_id": 2399, + "repository_id": 5554, + "parent_product_id": null, + "root_product_id": 2399, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Products/SUSE-MicroOS/5.2/aarch64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-MicroOS-5.2-Pool for aarch64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-microos-5.2-debuginfo-pool-aarch64", + "parent_channel_label": "suse-microos-5.2-pool-aarch64", + "product_id": 2399, + "repository_id": 5555, + "parent_product_id": null, + "root_product_id": 2399, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Products/SUSE-MicroOS/5.2/aarch64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SUSE-MicroOS-5.2-Debuginfo-Pool for aarch64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-packagehub-15-sp3-backports-pool-aarch64-micro-5.2", + "parent_channel_label": "suse-microos-5.2-pool-aarch64", + "product_id": 2188, + "repository_id": 4849, + "parent_product_id": 2399, + "root_product_id": 2399, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-15-SP3_aarch64/standard/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-15-SP3-Backports-Pool for aarch64 Micro 5.2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-packagehub-15-sp3-backports-debuginfo-aarch64-micro-5.2", + "parent_channel_label": "suse-microos-5.2-pool-aarch64", + "product_id": 2188, + "repository_id": 4850, + "parent_product_id": 2399, + "root_product_id": 2399, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-15-SP3_aarch64/standard_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-15-SP3-Backports-Debuginfo for aarch64 Micro 5.2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-packagehub-subpackages15-sp3-updates-aarch64-micro-5.2", + "parent_channel_label": "suse-microos-5.2-pool-aarch64", + "product_id": 2188, + "repository_id": 4851, + "parent_product_id": 2399, + "root_product_id": 2399, + "update_tag": "SLE-Module-Packagehub-Subpackages", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP3/aarch64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Packagehub-Subpackages15-SP3-Updates for aarch64 Micro 5.2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-packagehub-subpackages15-sp3-debuginfo-updates-aarch64-micro-5.2", + "parent_channel_label": "suse-microos-5.2-pool-aarch64", + "product_id": 2188, + "repository_id": 4852, + "parent_product_id": 2399, + "root_product_id": 2399, + "update_tag": "SLE-Module-Packagehub-Subpackages", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP3/aarch64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Packagehub-Subpackages15-SP3-Debuginfo-Updates for aarch64 Micro 5.2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-packagehub-15-sp3-pool-aarch64-micro-5.2", + "parent_channel_label": "suse-microos-5.2-pool-aarch64", + "product_id": 2188, + "repository_id": 4853, + "parent_product_id": 2399, + "root_product_id": 2399, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-15-SP3_aarch64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-15-SP3-Pool for aarch64 Micro 5.2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-packagehub-subpackages15-sp3-pool-aarch64-micro-5.2", + "parent_channel_label": "suse-microos-5.2-pool-aarch64", + "product_id": 2188, + "repository_id": 4854, + "parent_product_id": 2399, + "root_product_id": 2399, + "update_tag": "SLE-Module-Packagehub-Subpackages", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP3/aarch64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Packagehub-Subpackages15-SP3-Pool for aarch64 Micro 5.2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-packagehub-subpackages15-sp3-debuginfo-pool-aarch64-micro-5.2", + "parent_channel_label": "suse-microos-5.2-pool-aarch64", + "product_id": 2188, + "repository_id": 4855, + "parent_product_id": 2399, + "root_product_id": 2399, + "update_tag": "SLE-Module-Packagehub-Subpackages", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP3/aarch64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Packagehub-Subpackages15-SP3-Debuginfo-Pool for aarch64 Micro 5.2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-manager-tools-for-micro5-updates-aarch64-5.2", + "parent_channel_label": "suse-microos-5.2-pool-aarch64", + "product_id": 2549, + "repository_id": 6032, + "parent_product_id": 2399, + "root_product_id": 2399, + "update_tag": "SLE-Manager-Tools-For-Micro-5", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools-For-Micro/5/aarch64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools-For-Micro5-Updates for aarch64 5.2", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools-for-micro5-debuginfo-updates-aarch64-5.2", + "parent_channel_label": "suse-microos-5.2-pool-aarch64", + "product_id": 2549, + "repository_id": 6033, + "parent_product_id": 2399, + "root_product_id": 2399, + "update_tag": "SLE-Manager-Tools-For-Micro-5", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools-For-Micro/5/aarch64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools-For-Micro5-Debuginfo-Updates for aarch64 5.2", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools-for-micro5-pool-aarch64-5.2", + "parent_channel_label": "suse-microos-5.2-pool-aarch64", + "product_id": 2549, + "repository_id": 6034, + "parent_product_id": 2399, + "root_product_id": 2399, + "update_tag": "SLE-Manager-Tools-For-Micro-5", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools-For-Micro/5/aarch64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools-For-Micro5-Pool for aarch64 5.2", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools-for-micro5-debuginfo-pool-aarch64-5.2", + "parent_channel_label": "suse-microos-5.2-pool-aarch64", + "product_id": 2549, + "repository_id": 6035, + "parent_product_id": 2399, + "root_product_id": 2399, + "update_tag": "SLE-Manager-Tools-For-Micro-5", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools-For-Micro/5/aarch64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools-For-Micro5-Debuginfo-Pool for aarch64 5.2", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools-beta-for-micro5-updates-aarch64-5.2", + "parent_channel_label": "suse-microos-5.2-pool-aarch64", + "product_id": 2552, + "repository_id": 6047, + "parent_product_id": 2549, + "root_product_id": 2399, + "update_tag": "SLE-Manager-Tools-Beta-For-Micro-5", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools-Beta-For-Micro/5/aarch64/update/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools-Beta-For-Micro5-Updates for aarch64 5.2", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools-beta-for-micro5-debuginfo-updates-aarch64-5.2", + "parent_channel_label": "suse-microos-5.2-pool-aarch64", + "product_id": 2552, + "repository_id": 6048, + "parent_product_id": 2549, + "root_product_id": 2399, + "update_tag": "SLE-Manager-Tools-Beta-For-Micro-5", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools-Beta-For-Micro/5/aarch64/update_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools-Beta-For-Micro5-Debuginfo-Updates for aarch64 5.2", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools-beta-for-micro5-pool-aarch64-5.2", + "parent_channel_label": "suse-microos-5.2-pool-aarch64", + "product_id": 2552, + "repository_id": 6049, + "parent_product_id": 2549, + "root_product_id": 2399, + "update_tag": "SLE-Manager-Tools-Beta-For-Micro-5", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools-Beta-For-Micro/5/aarch64/product/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools-Beta-For-Micro5-Pool for aarch64 5.2", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools-beta-for-micro5-debuginfo-pool-aarch64-5.2", + "parent_channel_label": "suse-microos-5.2-pool-aarch64", + "product_id": 2552, + "repository_id": 6050, + "parent_product_id": 2549, + "root_product_id": 2399, + "update_tag": "SLE-Manager-Tools-Beta-For-Micro-5", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools-Beta-For-Micro/5/aarch64/product_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools-Beta-For-Micro5-Debuginfo-Pool for aarch64 5.2", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "suse-microos-5.2-updates-s390x", + "parent_channel_label": "suse-microos-5.2-pool-s390x", + "product_id": 2400, + "repository_id": 5557, + "parent_product_id": null, + "root_product_id": 2400, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Updates/SUSE-MicroOS/5.2/s390x/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-MicroOS-5.2-Updates for s390x", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-microos-5.2-debuginfo-updates-s390x", + "parent_channel_label": "suse-microos-5.2-pool-s390x", + "product_id": 2400, + "repository_id": 5558, + "parent_product_id": null, + "root_product_id": 2400, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Updates/SUSE-MicroOS/5.2/s390x/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SUSE-MicroOS-5.2-Debuginfo-Updates for s390x", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-microos-5.2-pool-s390x", + "parent_channel_label": null, + "product_id": 2400, + "repository_id": 5559, + "parent_product_id": null, + "root_product_id": 2400, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Products/SUSE-MicroOS/5.2/s390x/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-MicroOS-5.2-Pool for s390x", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-microos-5.2-debuginfo-pool-s390x", + "parent_channel_label": "suse-microos-5.2-pool-s390x", + "product_id": 2400, + "repository_id": 5560, + "parent_product_id": null, + "root_product_id": 2400, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Products/SUSE-MicroOS/5.2/s390x/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SUSE-MicroOS-5.2-Debuginfo-Pool for s390x", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-live-patching15-sp3-updates-s390x-micro-5.2", + "parent_channel_label": "suse-microos-5.2-pool-s390x", + "product_id": 2186, + "repository_id": 4839, + "parent_product_id": 2400, + "root_product_id": 2400, + "update_tag": "SLE-Module-Live-Patching", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Live-Patching/15-SP3/s390x/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Live-Patching15-SP3-Updates for s390x Micro 5.2", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-live-patching15-sp3-debuginfo-updates-s390x-micro-5.2", + "parent_channel_label": "suse-microos-5.2-pool-s390x", + "product_id": 2186, + "repository_id": 4840, + "parent_product_id": 2400, + "root_product_id": 2400, + "update_tag": "SLE-Module-Live-Patching", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Live-Patching/15-SP3/s390x/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Live-Patching15-SP3-Debuginfo-Updates for s390x Micro 5.2", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-live-patching15-sp3-pool-s390x-micro-5.2", + "parent_channel_label": "suse-microos-5.2-pool-s390x", + "product_id": 2186, + "repository_id": 4841, + "parent_product_id": 2400, + "root_product_id": 2400, + "update_tag": "SLE-Module-Live-Patching", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Live-Patching/15-SP3/s390x/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Live-Patching15-SP3-Pool for s390x Micro 5.2", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-live-patching15-sp3-debuginfo-pool-s390x-micro-5.2", + "parent_channel_label": "suse-microos-5.2-pool-s390x", + "product_id": 2186, + "repository_id": 4842, + "parent_product_id": 2400, + "root_product_id": 2400, + "update_tag": "SLE-Module-Live-Patching", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Live-Patching/15-SP3/s390x/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Live-Patching15-SP3-Debuginfo-Pool for s390x Micro 5.2", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-packagehub-15-sp3-backports-pool-s390x-micro-5.2", + "parent_channel_label": "suse-microos-5.2-pool-s390x", + "product_id": 2190, + "repository_id": 4865, + "parent_product_id": 2400, + "root_product_id": 2400, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-15-SP3_s390x/standard/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-15-SP3-Backports-Pool for s390x Micro 5.2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-packagehub-15-sp3-backports-debuginfo-s390x-micro-5.2", + "parent_channel_label": "suse-microos-5.2-pool-s390x", + "product_id": 2190, + "repository_id": 4866, + "parent_product_id": 2400, + "root_product_id": 2400, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-15-SP3_s390x/standard_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-15-SP3-Backports-Debuginfo for s390x Micro 5.2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-packagehub-subpackages15-sp3-updates-s390x-micro-5.2", + "parent_channel_label": "suse-microos-5.2-pool-s390x", + "product_id": 2190, + "repository_id": 4867, + "parent_product_id": 2400, + "root_product_id": 2400, + "update_tag": "SLE-Module-Packagehub-Subpackages", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP3/s390x/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Packagehub-Subpackages15-SP3-Updates for s390x Micro 5.2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-packagehub-subpackages15-sp3-debuginfo-updates-s390x-micro-5.2", + "parent_channel_label": "suse-microos-5.2-pool-s390x", + "product_id": 2190, + "repository_id": 4868, + "parent_product_id": 2400, + "root_product_id": 2400, + "update_tag": "SLE-Module-Packagehub-Subpackages", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP3/s390x/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Packagehub-Subpackages15-SP3-Debuginfo-Updates for s390x Micro 5.2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-packagehub-15-sp3-pool-s390x-micro-5.2", + "parent_channel_label": "suse-microos-5.2-pool-s390x", + "product_id": 2190, + "repository_id": 4869, + "parent_product_id": 2400, + "root_product_id": 2400, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-15-SP3_s390x/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-15-SP3-Pool for s390x Micro 5.2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-packagehub-subpackages15-sp3-pool-s390x-micro-5.2", + "parent_channel_label": "suse-microos-5.2-pool-s390x", + "product_id": 2190, + "repository_id": 4870, + "parent_product_id": 2400, + "root_product_id": 2400, + "update_tag": "SLE-Module-Packagehub-Subpackages", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP3/s390x/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Packagehub-Subpackages15-SP3-Pool for s390x Micro 5.2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-packagehub-subpackages15-sp3-debuginfo-pool-s390x-micro-5.2", + "parent_channel_label": "suse-microos-5.2-pool-s390x", + "product_id": 2190, + "repository_id": 4871, + "parent_product_id": 2400, + "root_product_id": 2400, + "update_tag": "SLE-Module-Packagehub-Subpackages", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP3/s390x/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Packagehub-Subpackages15-SP3-Debuginfo-Pool for s390x Micro 5.2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-manager-tools-for-micro5-updates-s390x-5.2", + "parent_channel_label": "suse-microos-5.2-pool-s390x", + "product_id": 2550, + "repository_id": 6037, + "parent_product_id": 2400, + "root_product_id": 2400, + "update_tag": "SLE-Manager-Tools-For-Micro-5", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools-For-Micro/5/s390x/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools-For-Micro5-Updates for s390x 5.2", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools-for-micro5-debuginfo-updates-s390x-5.2", + "parent_channel_label": "suse-microos-5.2-pool-s390x", + "product_id": 2550, + "repository_id": 6038, + "parent_product_id": 2400, + "root_product_id": 2400, + "update_tag": "SLE-Manager-Tools-For-Micro-5", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools-For-Micro/5/s390x/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools-For-Micro5-Debuginfo-Updates for s390x 5.2", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools-for-micro5-pool-s390x-5.2", + "parent_channel_label": "suse-microos-5.2-pool-s390x", + "product_id": 2550, + "repository_id": 6039, + "parent_product_id": 2400, + "root_product_id": 2400, + "update_tag": "SLE-Manager-Tools-For-Micro-5", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools-For-Micro/5/s390x/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools-For-Micro5-Pool for s390x 5.2", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools-for-micro5-debuginfo-pool-s390x-5.2", + "parent_channel_label": "suse-microos-5.2-pool-s390x", + "product_id": 2550, + "repository_id": 6040, + "parent_product_id": 2400, + "root_product_id": 2400, + "update_tag": "SLE-Manager-Tools-For-Micro-5", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools-For-Micro/5/s390x/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools-For-Micro5-Debuginfo-Pool for s390x 5.2", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools-beta-for-micro5-updates-s390x-5.2", + "parent_channel_label": "suse-microos-5.2-pool-s390x", + "product_id": 2553, + "repository_id": 6052, + "parent_product_id": 2550, + "root_product_id": 2400, + "update_tag": "SLE-Manager-Tools-Beta-For-Micro-5", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools-Beta-For-Micro/5/s390x/update/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools-Beta-For-Micro5-Updates for s390x 5.2", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools-beta-for-micro5-debuginfo-updates-s390x-5.2", + "parent_channel_label": "suse-microos-5.2-pool-s390x", + "product_id": 2553, + "repository_id": 6053, + "parent_product_id": 2550, + "root_product_id": 2400, + "update_tag": "SLE-Manager-Tools-Beta-For-Micro-5", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools-Beta-For-Micro/5/s390x/update_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools-Beta-For-Micro5-Debuginfo-Updates for s390x 5.2", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools-beta-for-micro5-pool-s390x-5.2", + "parent_channel_label": "suse-microos-5.2-pool-s390x", + "product_id": 2553, + "repository_id": 6054, + "parent_product_id": 2550, + "root_product_id": 2400, + "update_tag": "SLE-Manager-Tools-Beta-For-Micro-5", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools-Beta-For-Micro/5/s390x/product/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools-Beta-For-Micro5-Pool for s390x 5.2", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools-beta-for-micro5-debuginfo-pool-s390x-5.2", + "parent_channel_label": "suse-microos-5.2-pool-s390x", + "product_id": 2553, + "repository_id": 6055, + "parent_product_id": 2550, + "root_product_id": 2400, + "update_tag": "SLE-Manager-Tools-Beta-For-Micro-5", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools-Beta-For-Micro/5/s390x/product_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools-Beta-For-Micro5-Debuginfo-Pool for s390x 5.2", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "suse-microos-5.2-updates-x86_64", + "parent_channel_label": "suse-microos-5.2-pool-x86_64", + "product_id": 2401, + "repository_id": 5562, + "parent_product_id": null, + "root_product_id": 2401, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Updates/SUSE-MicroOS/5.2/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-MicroOS-5.2-Updates for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-microos-5.2-debuginfo-updates-x86_64", + "parent_channel_label": "suse-microos-5.2-pool-x86_64", + "product_id": 2401, + "repository_id": 5563, + "parent_product_id": null, + "root_product_id": 2401, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Updates/SUSE-MicroOS/5.2/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SUSE-MicroOS-5.2-Debuginfo-Updates for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-microos-5.2-pool-x86_64", + "parent_channel_label": null, + "product_id": 2401, + "repository_id": 5564, + "parent_product_id": null, + "root_product_id": 2401, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Products/SUSE-MicroOS/5.2/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-MicroOS-5.2-Pool for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-microos-5.2-debuginfo-pool-x86_64", + "parent_channel_label": "suse-microos-5.2-pool-x86_64", + "product_id": 2401, + "repository_id": 5565, + "parent_product_id": null, + "root_product_id": 2401, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Products/SUSE-MicroOS/5.2/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SUSE-MicroOS-5.2-Debuginfo-Pool for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-live-patching15-sp3-updates-x86_64-micro-5.2", + "parent_channel_label": "suse-microos-5.2-pool-x86_64", + "product_id": 2187, + "repository_id": 4844, + "parent_product_id": 2401, + "root_product_id": 2401, + "update_tag": "SLE-Module-Live-Patching", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Live-Patching/15-SP3/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Live-Patching15-SP3-Updates for x86_64 Micro 5.2", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-live-patching15-sp3-debuginfo-updates-x86_64-micro-5.2", + "parent_channel_label": "suse-microos-5.2-pool-x86_64", + "product_id": 2187, + "repository_id": 4845, + "parent_product_id": 2401, + "root_product_id": 2401, + "update_tag": "SLE-Module-Live-Patching", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Live-Patching/15-SP3/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Live-Patching15-SP3-Debuginfo-Updates for x86_64 Micro 5.2", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-live-patching15-sp3-pool-x86_64-micro-5.2", + "parent_channel_label": "suse-microos-5.2-pool-x86_64", + "product_id": 2187, + "repository_id": 4846, + "parent_product_id": 2401, + "root_product_id": 2401, + "update_tag": "SLE-Module-Live-Patching", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Live-Patching/15-SP3/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Live-Patching15-SP3-Pool for x86_64 Micro 5.2", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-live-patching15-sp3-debuginfo-pool-x86_64-micro-5.2", + "parent_channel_label": "suse-microos-5.2-pool-x86_64", + "product_id": 2187, + "repository_id": 4847, + "parent_product_id": 2401, + "root_product_id": 2401, + "update_tag": "SLE-Module-Live-Patching", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Live-Patching/15-SP3/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Live-Patching15-SP3-Debuginfo-Pool for x86_64 Micro 5.2", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-packagehub-15-sp3-backports-pool-x86_64-micro-5.2", + "parent_channel_label": "suse-microos-5.2-pool-x86_64", + "product_id": 2191, + "repository_id": 4873, + "parent_product_id": 2401, + "root_product_id": 2401, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-15-SP3_x86_64/standard/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-15-SP3-Backports-Pool for x86_64 Micro 5.2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-packagehub-15-sp3-backports-debuginfo-x86_64-micro-5.2", + "parent_channel_label": "suse-microos-5.2-pool-x86_64", + "product_id": 2191, + "repository_id": 4874, + "parent_product_id": 2401, + "root_product_id": 2401, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-15-SP3_x86_64/standard_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-15-SP3-Backports-Debuginfo for x86_64 Micro 5.2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-packagehub-subpackages15-sp3-updates-x86_64-micro-5.2", + "parent_channel_label": "suse-microos-5.2-pool-x86_64", + "product_id": 2191, + "repository_id": 4875, + "parent_product_id": 2401, + "root_product_id": 2401, + "update_tag": "SLE-Module-Packagehub-Subpackages", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP3/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Packagehub-Subpackages15-SP3-Updates for x86_64 Micro 5.2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-packagehub-subpackages15-sp3-debuginfo-updates-x86_64-micro-5.2", + "parent_channel_label": "suse-microos-5.2-pool-x86_64", + "product_id": 2191, + "repository_id": 4876, + "parent_product_id": 2401, + "root_product_id": 2401, + "update_tag": "SLE-Module-Packagehub-Subpackages", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP3/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Packagehub-Subpackages15-SP3-Debuginfo-Updates for x86_64 Micro 5.2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-packagehub-15-sp3-pool-x86_64-micro-5.2", + "parent_channel_label": "suse-microos-5.2-pool-x86_64", + "product_id": 2191, + "repository_id": 4877, + "parent_product_id": 2401, + "root_product_id": 2401, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-15-SP3_x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-15-SP3-Pool for x86_64 Micro 5.2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-packagehub-subpackages15-sp3-pool-x86_64-micro-5.2", + "parent_channel_label": "suse-microos-5.2-pool-x86_64", + "product_id": 2191, + "repository_id": 4878, + "parent_product_id": 2401, + "root_product_id": 2401, + "update_tag": "SLE-Module-Packagehub-Subpackages", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP3/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Packagehub-Subpackages15-SP3-Pool for x86_64 Micro 5.2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-packagehub-subpackages15-sp3-debuginfo-pool-x86_64-micro-5.2", + "parent_channel_label": "suse-microos-5.2-pool-x86_64", + "product_id": 2191, + "repository_id": 4879, + "parent_product_id": 2401, + "root_product_id": 2401, + "update_tag": "SLE-Module-Packagehub-Subpackages", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP3/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Packagehub-Subpackages15-SP3-Debuginfo-Pool for x86_64 Micro 5.2", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-manager-tools-for-micro5-updates-x86_64-5.2", + "parent_channel_label": "suse-microos-5.2-pool-x86_64", + "product_id": 2551, + "repository_id": 6042, + "parent_product_id": 2401, + "root_product_id": 2401, + "update_tag": "SLE-Manager-Tools-For-Micro-5", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools-For-Micro/5/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools-For-Micro5-Updates for x86_64 5.2", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools-for-micro5-debuginfo-updates-x86_64-5.2", + "parent_channel_label": "suse-microos-5.2-pool-x86_64", + "product_id": 2551, + "repository_id": 6043, + "parent_product_id": 2401, + "root_product_id": 2401, + "update_tag": "SLE-Manager-Tools-For-Micro-5", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools-For-Micro/5/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools-For-Micro5-Debuginfo-Updates for x86_64 5.2", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools-for-micro5-pool-x86_64-5.2", + "parent_channel_label": "suse-microos-5.2-pool-x86_64", + "product_id": 2551, + "repository_id": 6044, + "parent_product_id": 2401, + "root_product_id": 2401, + "update_tag": "SLE-Manager-Tools-For-Micro-5", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools-For-Micro/5/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools-For-Micro5-Pool for x86_64 5.2", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools-for-micro5-debuginfo-pool-x86_64-5.2", + "parent_channel_label": "suse-microos-5.2-pool-x86_64", + "product_id": 2551, + "repository_id": 6045, + "parent_product_id": 2401, + "root_product_id": 2401, + "update_tag": "SLE-Manager-Tools-For-Micro-5", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools-For-Micro/5/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools-For-Micro5-Debuginfo-Pool for x86_64 5.2", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools-beta-for-micro5-updates-x86_64-5.2", + "parent_channel_label": "suse-microos-5.2-pool-x86_64", + "product_id": 2554, + "repository_id": 6057, + "parent_product_id": 2551, + "root_product_id": 2401, + "update_tag": "SLE-Manager-Tools-Beta-For-Micro-5", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools-Beta-For-Micro/5/x86_64/update/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools-Beta-For-Micro5-Updates for x86_64 5.2", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools-beta-for-micro5-debuginfo-updates-x86_64-5.2", + "parent_channel_label": "suse-microos-5.2-pool-x86_64", + "product_id": 2554, + "repository_id": 6058, + "parent_product_id": 2551, + "root_product_id": 2401, + "update_tag": "SLE-Manager-Tools-Beta-For-Micro-5", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools-Beta-For-Micro/5/x86_64/update_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools-Beta-For-Micro5-Debuginfo-Updates for x86_64 5.2", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools-beta-for-micro5-pool-x86_64-5.2", + "parent_channel_label": "suse-microos-5.2-pool-x86_64", + "product_id": 2554, + "repository_id": 6059, + "parent_product_id": 2551, + "root_product_id": 2401, + "update_tag": "SLE-Manager-Tools-Beta-For-Micro-5", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools-Beta-For-Micro/5/x86_64/product/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools-Beta-For-Micro5-Pool for x86_64 5.2", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools-beta-for-micro5-debuginfo-pool-x86_64-5.2", + "parent_channel_label": "suse-microos-5.2-pool-x86_64", + "product_id": 2554, + "repository_id": 6060, + "parent_product_id": 2551, + "root_product_id": 2401, + "update_tag": "SLE-Manager-Tools-Beta-For-Micro-5", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools-Beta-For-Micro/5/x86_64/product_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools-Beta-For-Micro5-Debuginfo-Pool for x86_64 5.2", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "opensuse-leap-15.4-updates-aarch64", + "parent_channel_label": "opensuse-leap-15.4-pool-aarch64", + "product_id": 2406, + "repository_id": 5588, + "parent_product_id": null, + "root_product_id": 2406, + "update_tag": null, + "url": "http://download.opensuse.org/update/leap/15.4/oss/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "openSUSE-Leap-15.4-Updates for aarch64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "opensuse-leap-15.4-nonoss-updates-aarch64", + "parent_channel_label": "opensuse-leap-15.4-pool-aarch64", + "product_id": 2406, + "repository_id": 5589, + "parent_product_id": null, + "root_product_id": 2406, + "update_tag": null, + "url": "http://download.opensuse.org/update/leap/15.4/non-oss/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "openSUSE-Leap-15.4-NonOss-Updates for aarch64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-15-sp4-updates-aarch64-opensuse-15.4", + "parent_channel_label": "opensuse-leap-15.4-pool-aarch64", + "product_id": 2406, + "repository_id": 5591, + "parent_product_id": null, + "root_product_id": 2406, + "update_tag": null, + "url": "http://download.opensuse.org/update/leap/15.4/sle/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-15-SP4-Updates for aarch64 openSUSE 15.4", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "opensuse-leap-15.4-pool-aarch64", + "parent_channel_label": null, + "product_id": 2406, + "repository_id": 5592, + "parent_product_id": null, + "root_product_id": 2406, + "update_tag": null, + "url": "http://download.opensuse.org/distribution/leap/15.4/repo/oss/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "openSUSE-Leap-15.4-Pool for aarch64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "opensuse-leap-15.4-nonoss-pool-aarch64", + "parent_channel_label": "opensuse-leap-15.4-pool-aarch64", + "product_id": 2406, + "repository_id": 5593, + "parent_product_id": null, + "root_product_id": 2406, + "update_tag": null, + "url": "http://download.opensuse.org/distribution/leap/15.4/repo/non-oss/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "openSUSE-Leap-15.4-NonOss-Pool for aarch64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "opensuse-backports-15.4-updates-aarch64", + "parent_channel_label": "opensuse-leap-15.4-pool-aarch64", + "product_id": 2406, + "repository_id": 5597, + "parent_product_id": null, + "root_product_id": 2406, + "update_tag": null, + "url": "http://download.opensuse.org/update/leap/15.4/backports/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "openSUSE-Backports-15.4-Updates for aarch64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-manager-tools15-updates-aarch64-opensuse-15.4", + "parent_channel_label": "opensuse-leap-15.4-pool-aarch64", + "product_id": 1709, + "repository_id": 2917, + "parent_product_id": 2406, + "root_product_id": 2406, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/15/aarch64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-Updates for aarch64 openSUSE 15.4", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools15-debuginfo-updates-aarch64-opensuse-15.4", + "parent_channel_label": "opensuse-leap-15.4-pool-aarch64", + "product_id": 1709, + "repository_id": 2918, + "parent_product_id": 2406, + "root_product_id": 2406, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/15/aarch64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-Debuginfo-Updates for aarch64 openSUSE 15.4", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools15-pool-aarch64-opensuse-15.4", + "parent_channel_label": "opensuse-leap-15.4-pool-aarch64", + "product_id": 1709, + "repository_id": 2919, + "parent_product_id": 2406, + "root_product_id": 2406, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/15/aarch64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-Pool for aarch64 openSUSE 15.4", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools15-debuginfo-pool-aarch64-opensuse-15.4", + "parent_channel_label": "opensuse-leap-15.4-pool-aarch64", + "product_id": 1709, + "repository_id": 2920, + "parent_product_id": 2406, + "root_product_id": 2406, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/15/aarch64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-Debuginfo-Pool for aarch64 openSUSE 15.4", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools15-beta-updates-aarch64-opensuse-15.4", + "parent_channel_label": "opensuse-leap-15.4-pool-aarch64", + "product_id": 1925, + "repository_id": 3891, + "parent_product_id": 1709, + "root_product_id": 2406, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/15-BETA/aarch64/update/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-BETA-Updates for aarch64 openSUSE 15.4", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools15-beta-debuginfo-updates-aarch64-opensuse-15.4", + "parent_channel_label": "opensuse-leap-15.4-pool-aarch64", + "product_id": 1925, + "repository_id": 3892, + "parent_product_id": 1709, + "root_product_id": 2406, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/15-BETA/aarch64/update_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-BETA-Debuginfo-Updates for aarch64 openSUSE 15.4", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools15-beta-pool-aarch64-opensuse-15.4", + "parent_channel_label": "opensuse-leap-15.4-pool-aarch64", + "product_id": 1925, + "repository_id": 3899, + "parent_product_id": 1709, + "root_product_id": 2406, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/15-BETA/aarch64/product/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-BETA-Pool for aarch64 openSUSE 15.4", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools15-beta-debuginfo-pool-aarch64-opensuse-15.4", + "parent_channel_label": "opensuse-leap-15.4-pool-aarch64", + "product_id": 1925, + "repository_id": 3900, + "parent_product_id": 1709, + "root_product_id": 2406, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/15-BETA/aarch64/product_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-BETA-Debuginfo-Pool for aarch64 openSUSE 15.4", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "opensuse-leap-15.4-updates-ppc64le", + "parent_channel_label": "opensuse-leap-15.4-pool-ppc64le", + "product_id": 2407, + "repository_id": 5588, + "parent_product_id": null, + "root_product_id": 2407, + "update_tag": null, + "url": "http://download.opensuse.org/update/leap/15.4/oss/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "openSUSE-Leap-15.4-Updates for ppc64le", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "opensuse-leap-15.4-nonoss-updates-ppc64le", + "parent_channel_label": "opensuse-leap-15.4-pool-ppc64le", + "product_id": 2407, + "repository_id": 5589, + "parent_product_id": null, + "root_product_id": 2407, + "update_tag": null, + "url": "http://download.opensuse.org/update/leap/15.4/non-oss/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "openSUSE-Leap-15.4-NonOss-Updates for ppc64le", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-15-sp4-updates-ppc64le-opensuse-15.4", + "parent_channel_label": "opensuse-leap-15.4-pool-ppc64le", + "product_id": 2407, + "repository_id": 5591, + "parent_product_id": null, + "root_product_id": 2407, + "update_tag": null, + "url": "http://download.opensuse.org/update/leap/15.4/sle/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-15-SP4-Updates for ppc64le openSUSE 15.4", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "opensuse-leap-15.4-pool-ppc64le", + "parent_channel_label": null, + "product_id": 2407, + "repository_id": 5592, + "parent_product_id": null, + "root_product_id": 2407, + "update_tag": null, + "url": "http://download.opensuse.org/distribution/leap/15.4/repo/oss/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "openSUSE-Leap-15.4-Pool for ppc64le", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "opensuse-leap-15.4-nonoss-pool-ppc64le", + "parent_channel_label": "opensuse-leap-15.4-pool-ppc64le", + "product_id": 2407, + "repository_id": 5593, + "parent_product_id": null, + "root_product_id": 2407, + "update_tag": null, + "url": "http://download.opensuse.org/distribution/leap/15.4/repo/non-oss/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "openSUSE-Leap-15.4-NonOss-Pool for ppc64le", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "opensuse-backports-15.4-updates-ppc64le", + "parent_channel_label": "opensuse-leap-15.4-pool-ppc64le", + "product_id": 2407, + "repository_id": 5597, + "parent_product_id": null, + "root_product_id": 2407, + "update_tag": null, + "url": "http://download.opensuse.org/update/leap/15.4/backports/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "openSUSE-Backports-15.4-Updates for ppc64le", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-manager-tools15-updates-ppc64le-opensuse-15.4", + "parent_channel_label": "opensuse-leap-15.4-pool-ppc64le", + "product_id": 1710, + "repository_id": 2922, + "parent_product_id": 2407, + "root_product_id": 2407, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/15/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-Updates for ppc64le openSUSE 15.4", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools15-debuginfo-updates-ppc64le-opensuse-15.4", + "parent_channel_label": "opensuse-leap-15.4-pool-ppc64le", + "product_id": 1710, + "repository_id": 2923, + "parent_product_id": 2407, + "root_product_id": 2407, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/15/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-Debuginfo-Updates for ppc64le openSUSE 15.4", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools15-pool-ppc64le-opensuse-15.4", + "parent_channel_label": "opensuse-leap-15.4-pool-ppc64le", + "product_id": 1710, + "repository_id": 2924, + "parent_product_id": 2407, + "root_product_id": 2407, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/15/ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-Pool for ppc64le openSUSE 15.4", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools15-debuginfo-pool-ppc64le-opensuse-15.4", + "parent_channel_label": "opensuse-leap-15.4-pool-ppc64le", + "product_id": 1710, + "repository_id": 2925, + "parent_product_id": 2407, + "root_product_id": 2407, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/15/ppc64le/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-Debuginfo-Pool for ppc64le openSUSE 15.4", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools15-beta-updates-ppc64le-opensuse-15.4", + "parent_channel_label": "opensuse-leap-15.4-pool-ppc64le", + "product_id": 1926, + "repository_id": 3893, + "parent_product_id": 1710, + "root_product_id": 2407, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/15-BETA/ppc64le/update/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-BETA-Updates for ppc64le openSUSE 15.4", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools15-beta-debuginfo-updates-ppc64le-opensuse-15.4", + "parent_channel_label": "opensuse-leap-15.4-pool-ppc64le", + "product_id": 1926, + "repository_id": 3894, + "parent_product_id": 1710, + "root_product_id": 2407, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/15-BETA/ppc64le/update_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-BETA-Debuginfo-Updates for ppc64le openSUSE 15.4", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools15-beta-pool-ppc64le-opensuse-15.4", + "parent_channel_label": "opensuse-leap-15.4-pool-ppc64le", + "product_id": 1926, + "repository_id": 3902, + "parent_product_id": 1710, + "root_product_id": 2407, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/15-BETA/ppc64le/product/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-BETA-Pool for ppc64le openSUSE 15.4", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools15-beta-debuginfo-pool-ppc64le-opensuse-15.4", + "parent_channel_label": "opensuse-leap-15.4-pool-ppc64le", + "product_id": 1926, + "repository_id": 3903, + "parent_product_id": 1710, + "root_product_id": 2407, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/15-BETA/ppc64le/product_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-BETA-Debuginfo-Pool for ppc64le openSUSE 15.4", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "opensuse-leap-15.4-updates-s390x", + "parent_channel_label": "opensuse-leap-15.4-pool-s390x", + "product_id": 2408, + "repository_id": 5588, + "parent_product_id": null, + "root_product_id": 2408, + "update_tag": null, + "url": "http://download.opensuse.org/update/leap/15.4/oss/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "openSUSE-Leap-15.4-Updates for s390x", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "opensuse-leap-15.4-nonoss-updates-s390x", + "parent_channel_label": "opensuse-leap-15.4-pool-s390x", + "product_id": 2408, + "repository_id": 5589, + "parent_product_id": null, + "root_product_id": 2408, + "update_tag": null, + "url": "http://download.opensuse.org/update/leap/15.4/non-oss/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "openSUSE-Leap-15.4-NonOss-Updates for s390x", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-15-sp4-updates-s390x-opensuse-15.4", + "parent_channel_label": "opensuse-leap-15.4-pool-s390x", + "product_id": 2408, + "repository_id": 5591, + "parent_product_id": null, + "root_product_id": 2408, + "update_tag": null, + "url": "http://download.opensuse.org/update/leap/15.4/sle/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-15-SP4-Updates for s390x openSUSE 15.4", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "opensuse-leap-15.4-pool-s390x", + "parent_channel_label": null, + "product_id": 2408, + "repository_id": 5592, + "parent_product_id": null, + "root_product_id": 2408, + "update_tag": null, + "url": "http://download.opensuse.org/distribution/leap/15.4/repo/oss/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "openSUSE-Leap-15.4-Pool for s390x", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "opensuse-leap-15.4-nonoss-pool-s390x", + "parent_channel_label": "opensuse-leap-15.4-pool-s390x", + "product_id": 2408, + "repository_id": 5593, + "parent_product_id": null, + "root_product_id": 2408, + "update_tag": null, + "url": "http://download.opensuse.org/distribution/leap/15.4/repo/non-oss/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "openSUSE-Leap-15.4-NonOss-Pool for s390x", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "opensuse-backports-15.4-updates-s390x", + "parent_channel_label": "opensuse-leap-15.4-pool-s390x", + "product_id": 2408, + "repository_id": 5597, + "parent_product_id": null, + "root_product_id": 2408, + "update_tag": null, + "url": "http://download.opensuse.org/update/leap/15.4/backports/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "openSUSE-Backports-15.4-Updates for s390x", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-manager-tools15-updates-s390x-opensuse-15.4", + "parent_channel_label": "opensuse-leap-15.4-pool-s390x", + "product_id": 1711, + "repository_id": 2927, + "parent_product_id": 2408, + "root_product_id": 2408, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/15/s390x/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-Updates for s390x openSUSE 15.4", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools15-debuginfo-updates-s390x-opensuse-15.4", + "parent_channel_label": "opensuse-leap-15.4-pool-s390x", + "product_id": 1711, + "repository_id": 2928, + "parent_product_id": 2408, + "root_product_id": 2408, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/15/s390x/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-Debuginfo-Updates for s390x openSUSE 15.4", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools15-pool-s390x-opensuse-15.4", + "parent_channel_label": "opensuse-leap-15.4-pool-s390x", + "product_id": 1711, + "repository_id": 2929, + "parent_product_id": 2408, + "root_product_id": 2408, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/15/s390x/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-Pool for s390x openSUSE 15.4", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools15-debuginfo-pool-s390x-opensuse-15.4", + "parent_channel_label": "opensuse-leap-15.4-pool-s390x", + "product_id": 1711, + "repository_id": 2930, + "parent_product_id": 2408, + "root_product_id": 2408, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/15/s390x/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-Debuginfo-Pool for s390x openSUSE 15.4", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools15-beta-updates-s390x-opensuse-15.4", + "parent_channel_label": "opensuse-leap-15.4-pool-s390x", + "product_id": 1927, + "repository_id": 3895, + "parent_product_id": 1711, + "root_product_id": 2408, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/15-BETA/s390x/update/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-BETA-Updates for s390x openSUSE 15.4", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools15-beta-debuginfo-updates-s390x-opensuse-15.4", + "parent_channel_label": "opensuse-leap-15.4-pool-s390x", + "product_id": 1927, + "repository_id": 3896, + "parent_product_id": 1711, + "root_product_id": 2408, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/15-BETA/s390x/update_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-BETA-Debuginfo-Updates for s390x openSUSE 15.4", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools15-beta-pool-s390x-opensuse-15.4", + "parent_channel_label": "opensuse-leap-15.4-pool-s390x", + "product_id": 1927, + "repository_id": 3905, + "parent_product_id": 1711, + "root_product_id": 2408, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/15-BETA/s390x/product/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-BETA-Pool for s390x openSUSE 15.4", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools15-beta-debuginfo-pool-s390x-opensuse-15.4", + "parent_channel_label": "opensuse-leap-15.4-pool-s390x", + "product_id": 1927, + "repository_id": 3906, + "parent_product_id": 1711, + "root_product_id": 2408, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/15-BETA/s390x/product_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-BETA-Debuginfo-Pool for s390x openSUSE 15.4", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "opensuse-leap-15.4-updates-x86_64", + "parent_channel_label": "opensuse-leap-15.4-pool-x86_64", + "product_id": 2409, + "repository_id": 5588, + "parent_product_id": null, + "root_product_id": 2409, + "update_tag": null, + "url": "http://download.opensuse.org/update/leap/15.4/oss/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "openSUSE-Leap-15.4-Updates for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "opensuse-leap-15.4-nonoss-updates-x86_64", + "parent_channel_label": "opensuse-leap-15.4-pool-x86_64", + "product_id": 2409, + "repository_id": 5589, + "parent_product_id": null, + "root_product_id": 2409, + "update_tag": null, + "url": "http://download.opensuse.org/update/leap/15.4/non-oss/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "openSUSE-Leap-15.4-NonOss-Updates for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-15-sp4-updates-x86_64-opensuse-15.4", + "parent_channel_label": "opensuse-leap-15.4-pool-x86_64", + "product_id": 2409, + "repository_id": 5591, + "parent_product_id": null, + "root_product_id": 2409, + "update_tag": null, + "url": "http://download.opensuse.org/update/leap/15.4/sle/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-15-SP4-Updates for x86_64 openSUSE 15.4", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "opensuse-leap-15.4-pool-x86_64", + "parent_channel_label": null, + "product_id": 2409, + "repository_id": 5592, + "parent_product_id": null, + "root_product_id": 2409, + "update_tag": null, + "url": "http://download.opensuse.org/distribution/leap/15.4/repo/oss/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "openSUSE-Leap-15.4-Pool for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "opensuse-leap-15.4-nonoss-pool-x86_64", + "parent_channel_label": "opensuse-leap-15.4-pool-x86_64", + "product_id": 2409, + "repository_id": 5593, + "parent_product_id": null, + "root_product_id": 2409, + "update_tag": null, + "url": "http://download.opensuse.org/distribution/leap/15.4/repo/non-oss/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "openSUSE-Leap-15.4-NonOss-Pool for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "opensuse-backports-15.4-updates-x86_64", + "parent_channel_label": "opensuse-leap-15.4-pool-x86_64", + "product_id": 2409, + "repository_id": 5597, + "parent_product_id": null, + "root_product_id": 2409, + "update_tag": null, + "url": "http://download.opensuse.org/update/leap/15.4/backports/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "openSUSE-Backports-15.4-Updates for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-manager-tools15-updates-x86_64-opensuse-15.4", + "parent_channel_label": "opensuse-leap-15.4-pool-x86_64", + "product_id": 1712, + "repository_id": 2932, + "parent_product_id": 2409, + "root_product_id": 2409, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/15/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-Updates for x86_64 openSUSE 15.4", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools15-debuginfo-updates-x86_64-opensuse-15.4", + "parent_channel_label": "opensuse-leap-15.4-pool-x86_64", + "product_id": 1712, + "repository_id": 2933, + "parent_product_id": 2409, + "root_product_id": 2409, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/15/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-Debuginfo-Updates for x86_64 openSUSE 15.4", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools15-pool-x86_64-opensuse-15.4", + "parent_channel_label": "opensuse-leap-15.4-pool-x86_64", + "product_id": 1712, + "repository_id": 2934, + "parent_product_id": 2409, + "root_product_id": 2409, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/15/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-Pool for x86_64 openSUSE 15.4", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools15-debuginfo-pool-x86_64-opensuse-15.4", + "parent_channel_label": "opensuse-leap-15.4-pool-x86_64", + "product_id": 1712, + "repository_id": 2935, + "parent_product_id": 2409, + "root_product_id": 2409, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/15/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-Debuginfo-Pool for x86_64 openSUSE 15.4", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools15-beta-updates-x86_64-opensuse-15.4", + "parent_channel_label": "opensuse-leap-15.4-pool-x86_64", + "product_id": 1928, + "repository_id": 3897, + "parent_product_id": 1712, + "root_product_id": 2409, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/15-BETA/x86_64/update/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-BETA-Updates for x86_64 openSUSE 15.4", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools15-beta-debuginfo-updates-x86_64-opensuse-15.4", + "parent_channel_label": "opensuse-leap-15.4-pool-x86_64", + "product_id": 1928, + "repository_id": 3898, + "parent_product_id": 1712, + "root_product_id": 2409, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/15-BETA/x86_64/update_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-BETA-Debuginfo-Updates for x86_64 openSUSE 15.4", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools15-beta-pool-x86_64-opensuse-15.4", + "parent_channel_label": "opensuse-leap-15.4-pool-x86_64", + "product_id": 1928, + "repository_id": 3908, + "parent_product_id": 1712, + "root_product_id": 2409, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/15-BETA/x86_64/product/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-BETA-Pool for x86_64 openSUSE 15.4", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools15-beta-debuginfo-pool-x86_64-opensuse-15.4", + "parent_channel_label": "opensuse-leap-15.4-pool-x86_64", + "product_id": 1928, + "repository_id": 3909, + "parent_product_id": 1712, + "root_product_id": 2409, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/15-BETA/x86_64/product_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-BETA-Debuginfo-Pool for x86_64 openSUSE 15.4", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-product-rt-15-sp4-updates-x86_64", + "parent_channel_label": "sle-product-rt-15-sp4-pool-x86_64", + "product_id": 2421, + "repository_id": 5610, + "parent_product_id": null, + "root_product_id": 2421, + "update_tag": "SLE-Product-RT", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-RT/15-SP4/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-RT-15-SP4-Updates for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-rt15-sp4-debuginfo-updates-x86_64", + "parent_channel_label": "sle-product-rt-15-sp4-pool-x86_64", + "product_id": 2421, + "repository_id": 5611, + "parent_product_id": null, + "root_product_id": 2421, + "update_tag": "SLE-Product-RT", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-RT/15-SP4/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-RT15-SP4-Debuginfo-Updates for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-rt-15-sp4-pool-x86_64", + "parent_channel_label": null, + "product_id": 2421, + "repository_id": 5612, + "parent_product_id": null, + "root_product_id": 2421, + "update_tag": "SLE-Product-RT", + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-RT/15-SP4/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-RT-15-SP4-Pool for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-rt15-sp4-debuginfo-pool-x86_64", + "parent_channel_label": "sle-product-rt-15-sp4-pool-x86_64", + "product_id": 2421, + "repository_id": 5613, + "parent_product_id": null, + "root_product_id": 2421, + "update_tag": "SLE-Product-RT", + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-RT/15-SP4/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-RT15-SP4-Debuginfo-Pool for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-basesystem15-sp4-updates-x86_64-rt", + "parent_channel_label": "sle-product-rt-15-sp4-pool-x86_64", + "product_id": 2299, + "repository_id": 5137, + "parent_product_id": 2421, + "root_product_id": 2421, + "update_tag": "SLE-Module-Basesystem", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15-SP4/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Basesystem15-SP4-Updates for x86_64 RT", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-basesystem15-sp4-debuginfo-updates-x86_64-rt", + "parent_channel_label": "sle-product-rt-15-sp4-pool-x86_64", + "product_id": 2299, + "repository_id": 5138, + "parent_product_id": 2421, + "root_product_id": 2421, + "update_tag": "SLE-Module-Basesystem", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15-SP4/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Basesystem15-SP4-Debuginfo-Updates for x86_64 RT", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-basesystem15-sp4-pool-x86_64-rt", + "parent_channel_label": "sle-product-rt-15-sp4-pool-x86_64", + "product_id": 2299, + "repository_id": 5139, + "parent_product_id": 2421, + "root_product_id": 2421, + "update_tag": "SLE-Module-Basesystem", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP4/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Basesystem15-SP4-Pool for x86_64 RT", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-basesystem15-sp4-debuginfo-pool-x86_64-rt", + "parent_channel_label": "sle-product-rt-15-sp4-pool-x86_64", + "product_id": 2299, + "repository_id": 5140, + "parent_product_id": 2421, + "root_product_id": 2421, + "update_tag": "SLE-Module-Basesystem", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP4/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Basesystem15-SP4-Debuginfo-Pool for x86_64 RT", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-manager-tools15-updates-x86_64-rt-sp4", + "parent_channel_label": "sle-product-rt-15-sp4-pool-x86_64", + "product_id": 1712, + "repository_id": 2932, + "parent_product_id": 2299, + "root_product_id": 2421, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/15/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-Updates for x86_64 RT SP4", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools15-debuginfo-updates-x86_64-rt-sp4", + "parent_channel_label": "sle-product-rt-15-sp4-pool-x86_64", + "product_id": 1712, + "repository_id": 2933, + "parent_product_id": 2299, + "root_product_id": 2421, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/15/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-Debuginfo-Updates for x86_64 RT SP4", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools15-pool-x86_64-rt-sp4", + "parent_channel_label": "sle-product-rt-15-sp4-pool-x86_64", + "product_id": 1712, + "repository_id": 2934, + "parent_product_id": 2299, + "root_product_id": 2421, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/15/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-Pool for x86_64 RT SP4", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools15-debuginfo-pool-x86_64-rt-sp4", + "parent_channel_label": "sle-product-rt-15-sp4-pool-x86_64", + "product_id": 1712, + "repository_id": 2935, + "parent_product_id": 2299, + "root_product_id": 2421, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/15/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-Debuginfo-Pool for x86_64 RT SP4", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools15-beta-updates-x86_64-rt-sp4", + "parent_channel_label": "sle-product-rt-15-sp4-pool-x86_64", + "product_id": 1928, + "repository_id": 3897, + "parent_product_id": 1712, + "root_product_id": 2421, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/15-BETA/x86_64/update/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-BETA-Updates for x86_64 RT SP4", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools15-beta-debuginfo-updates-x86_64-rt-sp4", + "parent_channel_label": "sle-product-rt-15-sp4-pool-x86_64", + "product_id": 1928, + "repository_id": 3898, + "parent_product_id": 1712, + "root_product_id": 2421, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/15-BETA/x86_64/update_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-BETA-Debuginfo-Updates for x86_64 RT SP4", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools15-beta-pool-x86_64-rt-sp4", + "parent_channel_label": "sle-product-rt-15-sp4-pool-x86_64", + "product_id": 1928, + "repository_id": 3908, + "parent_product_id": 1712, + "root_product_id": 2421, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/15-BETA/x86_64/product/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-BETA-Pool for x86_64 RT SP4", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools15-beta-debuginfo-pool-x86_64-rt-sp4", + "parent_channel_label": "sle-product-rt-15-sp4-pool-x86_64", + "product_id": 1928, + "repository_id": 3909, + "parent_product_id": 1712, + "root_product_id": 2421, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/15-BETA/x86_64/product_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-BETA-Debuginfo-Pool for x86_64 RT SP4", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-module-desktop-applications15-sp4-updates-x86_64-rt", + "parent_channel_label": "sle-product-rt-15-sp4-pool-x86_64", + "product_id": 2303, + "repository_id": 5157, + "parent_product_id": 2299, + "root_product_id": 2421, + "update_tag": "SLE-Module-Desktop-Applications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15-SP4/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Desktop-Applications15-SP4-Updates for x86_64 RT", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-desktop-applications15-sp4-debuginfo-updates-x86_64-rt", + "parent_channel_label": "sle-product-rt-15-sp4-pool-x86_64", + "product_id": 2303, + "repository_id": 5158, + "parent_product_id": 2299, + "root_product_id": 2421, + "update_tag": "SLE-Module-Desktop-Applications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15-SP4/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Desktop-Applications15-SP4-Debuginfo-Updates for x86_64 RT", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-desktop-applications15-sp4-pool-x86_64-rt", + "parent_channel_label": "sle-product-rt-15-sp4-pool-x86_64", + "product_id": 2303, + "repository_id": 5159, + "parent_product_id": 2299, + "root_product_id": 2421, + "update_tag": "SLE-Module-Desktop-Applications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP4/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Desktop-Applications15-SP4-Pool for x86_64 RT", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-desktop-applications15-sp4-debuginfo-pool-x86_64-rt", + "parent_channel_label": "sle-product-rt-15-sp4-pool-x86_64", + "product_id": 2303, + "repository_id": 5160, + "parent_product_id": 2299, + "root_product_id": 2421, + "update_tag": "SLE-Module-Desktop-Applications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP4/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Desktop-Applications15-SP4-Debuginfo-Pool for x86_64 RT", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-devtools15-sp4-updates-x86_64-rt", + "parent_channel_label": "sle-product-rt-15-sp4-pool-x86_64", + "product_id": 2315, + "repository_id": 5217, + "parent_product_id": 2303, + "root_product_id": 2421, + "update_tag": "SLE-Module-Development-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15-SP4/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-DevTools15-SP4-Updates for x86_64 RT", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-devtools15-sp4-debuginfo-updates-x86_64-rt", + "parent_channel_label": "sle-product-rt-15-sp4-pool-x86_64", + "product_id": 2315, + "repository_id": 5218, + "parent_product_id": 2303, + "root_product_id": 2421, + "update_tag": "SLE-Module-Development-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15-SP4/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-DevTools15-SP4-Debuginfo-Updates for x86_64 RT", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-devtools15-sp4-pool-x86_64-rt", + "parent_channel_label": "sle-product-rt-15-sp4-pool-x86_64", + "product_id": 2315, + "repository_id": 5219, + "parent_product_id": 2303, + "root_product_id": 2421, + "update_tag": "SLE-Module-Development-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP4/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-DevTools15-SP4-Pool for x86_64 RT", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-devtools15-sp4-debuginfo-pool-x86_64-rt", + "parent_channel_label": "sle-product-rt-15-sp4-pool-x86_64", + "product_id": 2315, + "repository_id": 5220, + "parent_product_id": 2303, + "root_product_id": 2421, + "update_tag": "SLE-Module-Development-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP4/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-DevTools15-SP4-Debuginfo-Pool for x86_64 RT", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-server-applications15-sp4-updates-x86_64-rt", + "parent_channel_label": "sle-product-rt-15-sp4-pool-x86_64", + "product_id": 2307, + "repository_id": 5177, + "parent_product_id": 2299, + "root_product_id": 2421, + "update_tag": "SLE-Module-Server-Applications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15-SP4/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Server-Applications15-SP4-Updates for x86_64 RT", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-server-applications15-sp4-debuginfo-updates-x86_64-rt", + "parent_channel_label": "sle-product-rt-15-sp4-pool-x86_64", + "product_id": 2307, + "repository_id": 5178, + "parent_product_id": 2299, + "root_product_id": 2421, + "update_tag": "SLE-Module-Server-Applications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15-SP4/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Server-Applications15-SP4-Debuginfo-Updates for x86_64 RT", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-server-applications15-sp4-pool-x86_64-rt", + "parent_channel_label": "sle-product-rt-15-sp4-pool-x86_64", + "product_id": 2307, + "repository_id": 5179, + "parent_product_id": 2299, + "root_product_id": 2421, + "update_tag": "SLE-Module-Server-Applications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP4/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Server-Applications15-SP4-Pool for x86_64 RT", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-server-applications15-sp4-debuginfo-pool-x86_64-rt", + "parent_channel_label": "sle-product-rt-15-sp4-pool-x86_64", + "product_id": 2307, + "repository_id": 5180, + "parent_product_id": 2299, + "root_product_id": 2421, + "update_tag": "SLE-Module-Server-Applications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP4/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Server-Applications15-SP4-Debuginfo-Pool for x86_64 RT", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-rt15-sp4-updates-x86_64", + "parent_channel_label": "sle-product-rt-15-sp4-pool-x86_64", + "product_id": 2422, + "repository_id": 5615, + "parent_product_id": 2307, + "root_product_id": 2421, + "update_tag": "SLE-Module-RT", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-RT/15-SP4/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-RT15-SP4-Updates for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-rt15-sp4-debuginfo-updates-x86_64", + "parent_channel_label": "sle-product-rt-15-sp4-pool-x86_64", + "product_id": 2422, + "repository_id": 5616, + "parent_product_id": 2307, + "root_product_id": 2421, + "update_tag": "SLE-Module-RT", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-RT/15-SP4/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-RT15-SP4-Debuginfo-Updates for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-rt15-sp4-pool-x86_64", + "parent_channel_label": "sle-product-rt-15-sp4-pool-x86_64", + "product_id": 2422, + "repository_id": 5617, + "parent_product_id": 2307, + "root_product_id": 2421, + "update_tag": "SLE-Module-RT", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-RT/15-SP4/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-RT15-SP4-Pool for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-rt15-sp4-debuginfo-pool-x86_64", + "parent_channel_label": "sle-product-rt-15-sp4-pool-x86_64", + "product_id": 2422, + "repository_id": 5618, + "parent_product_id": 2307, + "root_product_id": 2421, + "update_tag": "SLE-Module-RT", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-RT/15-SP4/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-RT15-SP4-Debuginfo-Pool for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-containers15-sp4-updates-x86_64-rt", + "parent_channel_label": "sle-product-rt-15-sp4-pool-x86_64", + "product_id": 2311, + "repository_id": 5197, + "parent_product_id": 2299, + "root_product_id": 2421, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/15-SP4/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers15-SP4-Updates for x86_64 RT", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-containers15-sp4-debuginfo-updates-x86_64-rt", + "parent_channel_label": "sle-product-rt-15-sp4-pool-x86_64", + "product_id": 2311, + "repository_id": 5198, + "parent_product_id": 2299, + "root_product_id": 2421, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/15-SP4/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers15-SP4-Debuginfo-Updates for x86_64 RT", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-containers15-sp4-pool-x86_64-rt", + "parent_channel_label": "sle-product-rt-15-sp4-pool-x86_64", + "product_id": 2311, + "repository_id": 5199, + "parent_product_id": 2299, + "root_product_id": 2421, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP4/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers15-SP4-Pool for x86_64 RT", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-containers15-sp4-debuginfo-pool-x86_64-rt", + "parent_channel_label": "sle-product-rt-15-sp4-pool-x86_64", + "product_id": 2311, + "repository_id": 5200, + "parent_product_id": 2299, + "root_product_id": 2421, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP4/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers15-SP4-Debuginfo-Pool for x86_64 RT", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-live-patching15-sp4-updates-x86_64-rt", + "parent_channel_label": "sle-product-rt-15-sp4-pool-x86_64", + "product_id": 2334, + "repository_id": 5312, + "parent_product_id": 2299, + "root_product_id": 2421, + "update_tag": "SLE-Module-Live-Patching", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Live-Patching/15-SP4/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Live-Patching15-SP4-Updates for x86_64 RT", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-live-patching15-sp4-debuginfo-updates-x86_64-rt", + "parent_channel_label": "sle-product-rt-15-sp4-pool-x86_64", + "product_id": 2334, + "repository_id": 5313, + "parent_product_id": 2299, + "root_product_id": 2421, + "update_tag": "SLE-Module-Live-Patching", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Live-Patching/15-SP4/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Live-Patching15-SP4-Debuginfo-Updates for x86_64 RT", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-live-patching15-sp4-pool-x86_64-rt", + "parent_channel_label": "sle-product-rt-15-sp4-pool-x86_64", + "product_id": 2334, + "repository_id": 5314, + "parent_product_id": 2299, + "root_product_id": 2421, + "update_tag": "SLE-Module-Live-Patching", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Live-Patching/15-SP4/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Live-Patching15-SP4-Pool for x86_64 RT", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-live-patching15-sp4-debuginfo-pool-x86_64-rt", + "parent_channel_label": "sle-product-rt-15-sp4-pool-x86_64", + "product_id": 2334, + "repository_id": 5315, + "parent_product_id": 2299, + "root_product_id": 2421, + "update_tag": "SLE-Module-Live-Patching", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Live-Patching/15-SP4/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Live-Patching15-SP4-Debuginfo-Pool for x86_64 RT", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-certifications-15-sp4-updates-x86_64-rt", + "parent_channel_label": "sle-product-rt-15-sp4-pool-x86_64", + "product_id": 2393, + "repository_id": 5547, + "parent_product_id": 2421, + "root_product_id": 2421, + "update_tag": "SLE-Module-Certifications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Certifications/15-SP4/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Certifications-15-SP4-Updates for x86_64 RT", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-certifications-15-sp4-debuginfo-updates-x86_64-rt", + "parent_channel_label": "sle-product-rt-15-sp4-pool-x86_64", + "product_id": 2393, + "repository_id": 5548, + "parent_product_id": 2421, + "root_product_id": 2421, + "update_tag": "SLE-Module-Certifications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Certifications/15-SP4/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Certifications-15-SP4-Debuginfo-Updates for x86_64 RT", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-certifications-15-sp4-pool-x86_64-rt", + "parent_channel_label": "sle-product-rt-15-sp4-pool-x86_64", + "product_id": 2393, + "repository_id": 5549, + "parent_product_id": 2421, + "root_product_id": 2421, + "update_tag": "SLE-Module-Certifications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Certifications/15-SP4/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Certifications-15-SP4-Pool for x86_64 RT", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-certifications-15-sp4-debuginfo-pool-x86_64-rt", + "parent_channel_label": "sle-product-rt-15-sp4-pool-x86_64", + "product_id": 2393, + "repository_id": 5550, + "parent_product_id": 2421, + "root_product_id": 2421, + "update_tag": "SLE-Module-Certifications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Certifications/15-SP4/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Certifications-15-SP4-Debuginfo-Pool for x86_64 RT", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-micro-5.3-updates-aarch64", + "parent_channel_label": "sle-micro-5.3-pool-aarch64", + "product_id": 2426, + "repository_id": 5620, + "parent_product_id": null, + "root_product_id": 2426, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Updates/SLE-Micro/5.3/aarch64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Micro-5.3-Updates for aarch64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-micro-5.3-debuginfo-updates-aarch64", + "parent_channel_label": "sle-micro-5.3-pool-aarch64", + "product_id": 2426, + "repository_id": 5621, + "parent_product_id": null, + "root_product_id": 2426, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Updates/SLE-Micro/5.3/aarch64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Micro-5.3-Debuginfo-Updates for aarch64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-micro-5.3-pool-aarch64", + "parent_channel_label": null, + "product_id": 2426, + "repository_id": 5622, + "parent_product_id": null, + "root_product_id": 2426, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Products/SLE-Micro/5.3/aarch64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Micro-5.3-Pool for aarch64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-micro-5.3-debuginfo-pool-aarch64", + "parent_channel_label": "sle-micro-5.3-pool-aarch64", + "product_id": 2426, + "repository_id": 5623, + "parent_product_id": null, + "root_product_id": 2426, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Products/SLE-Micro/5.3/aarch64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Micro-5.3-Debuginfo-Pool for aarch64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-packagehub-15-sp4-backports-pool-aarch64-micro-5.3", + "parent_channel_label": "sle-micro-5.3-pool-aarch64", + "product_id": 2344, + "repository_id": 5364, + "parent_product_id": 2426, + "root_product_id": 2426, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-15-SP4_aarch64/standard/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-15-SP4-Backports-Pool for aarch64 Micro 5.3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-packagehub-15-sp4-backports-debuginfo-aarch64-micro-5.3", + "parent_channel_label": "sle-micro-5.3-pool-aarch64", + "product_id": 2344, + "repository_id": 5365, + "parent_product_id": 2426, + "root_product_id": 2426, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-15-SP4_aarch64/standard_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-15-SP4-Backports-Debuginfo for aarch64 Micro 5.3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-packagehub-subpackages15-sp4-updates-aarch64-micro-5.3", + "parent_channel_label": "sle-micro-5.3-pool-aarch64", + "product_id": 2344, + "repository_id": 5366, + "parent_product_id": 2426, + "root_product_id": 2426, + "update_tag": "SLE-Module-Packagehub-Subpackages", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP4/aarch64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Packagehub-Subpackages15-SP4-Updates for aarch64 Micro 5.3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-packagehub-subpackages15-sp4-debuginfo-updates-aarch64-micro-5.3", + "parent_channel_label": "sle-micro-5.3-pool-aarch64", + "product_id": 2344, + "repository_id": 5367, + "parent_product_id": 2426, + "root_product_id": 2426, + "update_tag": "SLE-Module-Packagehub-Subpackages", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP4/aarch64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Packagehub-Subpackages15-SP4-Debuginfo-Updates for aarch64 Micro 5.3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-packagehub-15-sp4-pool-aarch64-micro-5.3", + "parent_channel_label": "sle-micro-5.3-pool-aarch64", + "product_id": 2344, + "repository_id": 5368, + "parent_product_id": 2426, + "root_product_id": 2426, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-15-SP4_aarch64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-15-SP4-Pool for aarch64 Micro 5.3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-packagehub-subpackages15-sp4-pool-aarch64-micro-5.3", + "parent_channel_label": "sle-micro-5.3-pool-aarch64", + "product_id": 2344, + "repository_id": 5369, + "parent_product_id": 2426, + "root_product_id": 2426, + "update_tag": "SLE-Module-Packagehub-Subpackages", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP4/aarch64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Packagehub-Subpackages15-SP4-Pool for aarch64 Micro 5.3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-packagehub-subpackages15-sp4-debuginfo-pool-aarch64-micro-5.3", + "parent_channel_label": "sle-micro-5.3-pool-aarch64", + "product_id": 2344, + "repository_id": 5370, + "parent_product_id": 2426, + "root_product_id": 2426, + "update_tag": "SLE-Module-Packagehub-Subpackages", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP4/aarch64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Packagehub-Subpackages15-SP4-Debuginfo-Pool for aarch64 Micro 5.3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-manager-tools-for-micro5-updates-aarch64-5.3", + "parent_channel_label": "sle-micro-5.3-pool-aarch64", + "product_id": 2549, + "repository_id": 6032, + "parent_product_id": 2426, + "root_product_id": 2426, + "update_tag": "SLE-Manager-Tools-For-Micro-5", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools-For-Micro/5/aarch64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools-For-Micro5-Updates for aarch64 5.3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools-for-micro5-debuginfo-updates-aarch64-5.3", + "parent_channel_label": "sle-micro-5.3-pool-aarch64", + "product_id": 2549, + "repository_id": 6033, + "parent_product_id": 2426, + "root_product_id": 2426, + "update_tag": "SLE-Manager-Tools-For-Micro-5", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools-For-Micro/5/aarch64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools-For-Micro5-Debuginfo-Updates for aarch64 5.3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools-for-micro5-pool-aarch64-5.3", + "parent_channel_label": "sle-micro-5.3-pool-aarch64", + "product_id": 2549, + "repository_id": 6034, + "parent_product_id": 2426, + "root_product_id": 2426, + "update_tag": "SLE-Manager-Tools-For-Micro-5", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools-For-Micro/5/aarch64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools-For-Micro5-Pool for aarch64 5.3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools-for-micro5-debuginfo-pool-aarch64-5.3", + "parent_channel_label": "sle-micro-5.3-pool-aarch64", + "product_id": 2549, + "repository_id": 6035, + "parent_product_id": 2426, + "root_product_id": 2426, + "update_tag": "SLE-Manager-Tools-For-Micro-5", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools-For-Micro/5/aarch64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools-For-Micro5-Debuginfo-Pool for aarch64 5.3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools-beta-for-micro5-updates-aarch64-5.3", + "parent_channel_label": "sle-micro-5.3-pool-aarch64", + "product_id": 2552, + "repository_id": 6047, + "parent_product_id": 2549, + "root_product_id": 2426, + "update_tag": "SLE-Manager-Tools-Beta-For-Micro-5", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools-Beta-For-Micro/5/aarch64/update/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools-Beta-For-Micro5-Updates for aarch64 5.3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools-beta-for-micro5-debuginfo-updates-aarch64-5.3", + "parent_channel_label": "sle-micro-5.3-pool-aarch64", + "product_id": 2552, + "repository_id": 6048, + "parent_product_id": 2549, + "root_product_id": 2426, + "update_tag": "SLE-Manager-Tools-Beta-For-Micro-5", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools-Beta-For-Micro/5/aarch64/update_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools-Beta-For-Micro5-Debuginfo-Updates for aarch64 5.3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools-beta-for-micro5-pool-aarch64-5.3", + "parent_channel_label": "sle-micro-5.3-pool-aarch64", + "product_id": 2552, + "repository_id": 6049, + "parent_product_id": 2549, + "root_product_id": 2426, + "update_tag": "SLE-Manager-Tools-Beta-For-Micro-5", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools-Beta-For-Micro/5/aarch64/product/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools-Beta-For-Micro5-Pool for aarch64 5.3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools-beta-for-micro5-debuginfo-pool-aarch64-5.3", + "parent_channel_label": "sle-micro-5.3-pool-aarch64", + "product_id": 2552, + "repository_id": 6050, + "parent_product_id": 2549, + "root_product_id": 2426, + "update_tag": "SLE-Manager-Tools-Beta-For-Micro-5", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools-Beta-For-Micro/5/aarch64/product_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools-Beta-For-Micro5-Debuginfo-Pool for aarch64 5.3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-micro-5.3-updates-s390x", + "parent_channel_label": "sle-micro-5.3-pool-s390x", + "product_id": 2427, + "repository_id": 5625, + "parent_product_id": null, + "root_product_id": 2427, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Updates/SLE-Micro/5.3/s390x/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Micro-5.3-Updates for s390x", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-micro-5.3-debuginfo-updates-s390x", + "parent_channel_label": "sle-micro-5.3-pool-s390x", + "product_id": 2427, + "repository_id": 5626, + "parent_product_id": null, + "root_product_id": 2427, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Updates/SLE-Micro/5.3/s390x/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Micro-5.3-Debuginfo-Updates for s390x", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-micro-5.3-pool-s390x", + "parent_channel_label": null, + "product_id": 2427, + "repository_id": 5627, + "parent_product_id": null, + "root_product_id": 2427, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Products/SLE-Micro/5.3/s390x/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Micro-5.3-Pool for s390x", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-micro-5.3-debuginfo-pool-s390x", + "parent_channel_label": "sle-micro-5.3-pool-s390x", + "product_id": 2427, + "repository_id": 5628, + "parent_product_id": null, + "root_product_id": 2427, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Products/SLE-Micro/5.3/s390x/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Micro-5.3-Debuginfo-Pool for s390x", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-live-patching15-sp4-updates-s390x-micro-5.3", + "parent_channel_label": "sle-micro-5.3-pool-s390x", + "product_id": 2333, + "repository_id": 5307, + "parent_product_id": 2427, + "root_product_id": 2427, + "update_tag": "SLE-Module-Live-Patching", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Live-Patching/15-SP4/s390x/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Live-Patching15-SP4-Updates for s390x Micro 5.3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-live-patching15-sp4-debuginfo-updates-s390x-micro-5.3", + "parent_channel_label": "sle-micro-5.3-pool-s390x", + "product_id": 2333, + "repository_id": 5308, + "parent_product_id": 2427, + "root_product_id": 2427, + "update_tag": "SLE-Module-Live-Patching", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Live-Patching/15-SP4/s390x/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Live-Patching15-SP4-Debuginfo-Updates for s390x Micro 5.3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-live-patching15-sp4-pool-s390x-micro-5.3", + "parent_channel_label": "sle-micro-5.3-pool-s390x", + "product_id": 2333, + "repository_id": 5309, + "parent_product_id": 2427, + "root_product_id": 2427, + "update_tag": "SLE-Module-Live-Patching", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Live-Patching/15-SP4/s390x/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Live-Patching15-SP4-Pool for s390x Micro 5.3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-live-patching15-sp4-debuginfo-pool-s390x-micro-5.3", + "parent_channel_label": "sle-micro-5.3-pool-s390x", + "product_id": 2333, + "repository_id": 5310, + "parent_product_id": 2427, + "root_product_id": 2427, + "update_tag": "SLE-Module-Live-Patching", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Live-Patching/15-SP4/s390x/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Live-Patching15-SP4-Debuginfo-Pool for s390x Micro 5.3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-packagehub-15-sp4-backports-pool-s390x-micro-5.3", + "parent_channel_label": "sle-micro-5.3-pool-s390x", + "product_id": 2346, + "repository_id": 5380, + "parent_product_id": 2427, + "root_product_id": 2427, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-15-SP4_s390x/standard/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-15-SP4-Backports-Pool for s390x Micro 5.3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-packagehub-15-sp4-backports-debuginfo-s390x-micro-5.3", + "parent_channel_label": "sle-micro-5.3-pool-s390x", + "product_id": 2346, + "repository_id": 5381, + "parent_product_id": 2427, + "root_product_id": 2427, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-15-SP4_s390x/standard_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-15-SP4-Backports-Debuginfo for s390x Micro 5.3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-packagehub-subpackages15-sp4-updates-s390x-micro-5.3", + "parent_channel_label": "sle-micro-5.3-pool-s390x", + "product_id": 2346, + "repository_id": 5382, + "parent_product_id": 2427, + "root_product_id": 2427, + "update_tag": "SLE-Module-Packagehub-Subpackages", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP4/s390x/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Packagehub-Subpackages15-SP4-Updates for s390x Micro 5.3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-packagehub-subpackages15-sp4-debuginfo-updates-s390x-micro-5.3", + "parent_channel_label": "sle-micro-5.3-pool-s390x", + "product_id": 2346, + "repository_id": 5383, + "parent_product_id": 2427, + "root_product_id": 2427, + "update_tag": "SLE-Module-Packagehub-Subpackages", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP4/s390x/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Packagehub-Subpackages15-SP4-Debuginfo-Updates for s390x Micro 5.3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-packagehub-15-sp4-pool-s390x-micro-5.3", + "parent_channel_label": "sle-micro-5.3-pool-s390x", + "product_id": 2346, + "repository_id": 5384, + "parent_product_id": 2427, + "root_product_id": 2427, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-15-SP4_s390x/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-15-SP4-Pool for s390x Micro 5.3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-packagehub-subpackages15-sp4-pool-s390x-micro-5.3", + "parent_channel_label": "sle-micro-5.3-pool-s390x", + "product_id": 2346, + "repository_id": 5385, + "parent_product_id": 2427, + "root_product_id": 2427, + "update_tag": "SLE-Module-Packagehub-Subpackages", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP4/s390x/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Packagehub-Subpackages15-SP4-Pool for s390x Micro 5.3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-packagehub-subpackages15-sp4-debuginfo-pool-s390x-micro-5.3", + "parent_channel_label": "sle-micro-5.3-pool-s390x", + "product_id": 2346, + "repository_id": 5386, + "parent_product_id": 2427, + "root_product_id": 2427, + "update_tag": "SLE-Module-Packagehub-Subpackages", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP4/s390x/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Packagehub-Subpackages15-SP4-Debuginfo-Pool for s390x Micro 5.3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-manager-tools-for-micro5-updates-s390x-5.3", + "parent_channel_label": "sle-micro-5.3-pool-s390x", + "product_id": 2550, + "repository_id": 6037, + "parent_product_id": 2427, + "root_product_id": 2427, + "update_tag": "SLE-Manager-Tools-For-Micro-5", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools-For-Micro/5/s390x/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools-For-Micro5-Updates for s390x 5.3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools-for-micro5-debuginfo-updates-s390x-5.3", + "parent_channel_label": "sle-micro-5.3-pool-s390x", + "product_id": 2550, + "repository_id": 6038, + "parent_product_id": 2427, + "root_product_id": 2427, + "update_tag": "SLE-Manager-Tools-For-Micro-5", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools-For-Micro/5/s390x/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools-For-Micro5-Debuginfo-Updates for s390x 5.3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools-for-micro5-pool-s390x-5.3", + "parent_channel_label": "sle-micro-5.3-pool-s390x", + "product_id": 2550, + "repository_id": 6039, + "parent_product_id": 2427, + "root_product_id": 2427, + "update_tag": "SLE-Manager-Tools-For-Micro-5", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools-For-Micro/5/s390x/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools-For-Micro5-Pool for s390x 5.3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools-for-micro5-debuginfo-pool-s390x-5.3", + "parent_channel_label": "sle-micro-5.3-pool-s390x", + "product_id": 2550, + "repository_id": 6040, + "parent_product_id": 2427, + "root_product_id": 2427, + "update_tag": "SLE-Manager-Tools-For-Micro-5", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools-For-Micro/5/s390x/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools-For-Micro5-Debuginfo-Pool for s390x 5.3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools-beta-for-micro5-updates-s390x-5.3", + "parent_channel_label": "sle-micro-5.3-pool-s390x", + "product_id": 2553, + "repository_id": 6052, + "parent_product_id": 2550, + "root_product_id": 2427, + "update_tag": "SLE-Manager-Tools-Beta-For-Micro-5", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools-Beta-For-Micro/5/s390x/update/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools-Beta-For-Micro5-Updates for s390x 5.3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools-beta-for-micro5-debuginfo-updates-s390x-5.3", + "parent_channel_label": "sle-micro-5.3-pool-s390x", + "product_id": 2553, + "repository_id": 6053, + "parent_product_id": 2550, + "root_product_id": 2427, + "update_tag": "SLE-Manager-Tools-Beta-For-Micro-5", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools-Beta-For-Micro/5/s390x/update_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools-Beta-For-Micro5-Debuginfo-Updates for s390x 5.3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools-beta-for-micro5-pool-s390x-5.3", + "parent_channel_label": "sle-micro-5.3-pool-s390x", + "product_id": 2553, + "repository_id": 6054, + "parent_product_id": 2550, + "root_product_id": 2427, + "update_tag": "SLE-Manager-Tools-Beta-For-Micro-5", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools-Beta-For-Micro/5/s390x/product/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools-Beta-For-Micro5-Pool for s390x 5.3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools-beta-for-micro5-debuginfo-pool-s390x-5.3", + "parent_channel_label": "sle-micro-5.3-pool-s390x", + "product_id": 2553, + "repository_id": 6055, + "parent_product_id": 2550, + "root_product_id": 2427, + "update_tag": "SLE-Manager-Tools-Beta-For-Micro-5", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools-Beta-For-Micro/5/s390x/product_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools-Beta-For-Micro5-Debuginfo-Pool for s390x 5.3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-micro-5.3-updates-x86_64", + "parent_channel_label": "sle-micro-5.3-pool-x86_64", + "product_id": 2428, + "repository_id": 5630, + "parent_product_id": null, + "root_product_id": 2428, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Updates/SLE-Micro/5.3/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Micro-5.3-Updates for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-micro-5.3-debuginfo-updates-x86_64", + "parent_channel_label": "sle-micro-5.3-pool-x86_64", + "product_id": 2428, + "repository_id": 5631, + "parent_product_id": null, + "root_product_id": 2428, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Updates/SLE-Micro/5.3/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Micro-5.3-Debuginfo-Updates for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-micro-5.3-pool-x86_64", + "parent_channel_label": null, + "product_id": 2428, + "repository_id": 5632, + "parent_product_id": null, + "root_product_id": 2428, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Products/SLE-Micro/5.3/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Micro-5.3-Pool for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-micro-5.3-debuginfo-pool-x86_64", + "parent_channel_label": "sle-micro-5.3-pool-x86_64", + "product_id": 2428, + "repository_id": 5633, + "parent_product_id": null, + "root_product_id": 2428, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Products/SLE-Micro/5.3/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Micro-5.3-Debuginfo-Pool for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-live-patching15-sp4-updates-x86_64-micro-5.3", + "parent_channel_label": "sle-micro-5.3-pool-x86_64", + "product_id": 2334, + "repository_id": 5312, + "parent_product_id": 2428, + "root_product_id": 2428, + "update_tag": "SLE-Module-Live-Patching", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Live-Patching/15-SP4/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Live-Patching15-SP4-Updates for x86_64 Micro 5.3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-live-patching15-sp4-debuginfo-updates-x86_64-micro-5.3", + "parent_channel_label": "sle-micro-5.3-pool-x86_64", + "product_id": 2334, + "repository_id": 5313, + "parent_product_id": 2428, + "root_product_id": 2428, + "update_tag": "SLE-Module-Live-Patching", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Live-Patching/15-SP4/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Live-Patching15-SP4-Debuginfo-Updates for x86_64 Micro 5.3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-live-patching15-sp4-pool-x86_64-micro-5.3", + "parent_channel_label": "sle-micro-5.3-pool-x86_64", + "product_id": 2334, + "repository_id": 5314, + "parent_product_id": 2428, + "root_product_id": 2428, + "update_tag": "SLE-Module-Live-Patching", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Live-Patching/15-SP4/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Live-Patching15-SP4-Pool for x86_64 Micro 5.3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-live-patching15-sp4-debuginfo-pool-x86_64-micro-5.3", + "parent_channel_label": "sle-micro-5.3-pool-x86_64", + "product_id": 2334, + "repository_id": 5315, + "parent_product_id": 2428, + "root_product_id": 2428, + "update_tag": "SLE-Module-Live-Patching", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Live-Patching/15-SP4/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Live-Patching15-SP4-Debuginfo-Pool for x86_64 Micro 5.3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-packagehub-15-sp4-backports-pool-x86_64-micro-5.3", + "parent_channel_label": "sle-micro-5.3-pool-x86_64", + "product_id": 2347, + "repository_id": 5388, + "parent_product_id": 2428, + "root_product_id": 2428, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-15-SP4_x86_64/standard/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-15-SP4-Backports-Pool for x86_64 Micro 5.3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-packagehub-15-sp4-backports-debuginfo-x86_64-micro-5.3", + "parent_channel_label": "sle-micro-5.3-pool-x86_64", + "product_id": 2347, + "repository_id": 5389, + "parent_product_id": 2428, + "root_product_id": 2428, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-15-SP4_x86_64/standard_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-15-SP4-Backports-Debuginfo for x86_64 Micro 5.3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-packagehub-subpackages15-sp4-updates-x86_64-micro-5.3", + "parent_channel_label": "sle-micro-5.3-pool-x86_64", + "product_id": 2347, + "repository_id": 5390, + "parent_product_id": 2428, + "root_product_id": 2428, + "update_tag": "SLE-Module-Packagehub-Subpackages", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP4/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Packagehub-Subpackages15-SP4-Updates for x86_64 Micro 5.3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-packagehub-subpackages15-sp4-debuginfo-updates-x86_64-micro-5.3", + "parent_channel_label": "sle-micro-5.3-pool-x86_64", + "product_id": 2347, + "repository_id": 5391, + "parent_product_id": 2428, + "root_product_id": 2428, + "update_tag": "SLE-Module-Packagehub-Subpackages", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP4/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Packagehub-Subpackages15-SP4-Debuginfo-Updates for x86_64 Micro 5.3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-packagehub-15-sp4-pool-x86_64-micro-5.3", + "parent_channel_label": "sle-micro-5.3-pool-x86_64", + "product_id": 2347, + "repository_id": 5392, + "parent_product_id": 2428, + "root_product_id": 2428, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-15-SP4_x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-15-SP4-Pool for x86_64 Micro 5.3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-packagehub-subpackages15-sp4-pool-x86_64-micro-5.3", + "parent_channel_label": "sle-micro-5.3-pool-x86_64", + "product_id": 2347, + "repository_id": 5393, + "parent_product_id": 2428, + "root_product_id": 2428, + "update_tag": "SLE-Module-Packagehub-Subpackages", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP4/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Packagehub-Subpackages15-SP4-Pool for x86_64 Micro 5.3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-packagehub-subpackages15-sp4-debuginfo-pool-x86_64-micro-5.3", + "parent_channel_label": "sle-micro-5.3-pool-x86_64", + "product_id": 2347, + "repository_id": 5394, + "parent_product_id": 2428, + "root_product_id": 2428, + "update_tag": "SLE-Module-Packagehub-Subpackages", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP4/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Packagehub-Subpackages15-SP4-Debuginfo-Pool for x86_64 Micro 5.3", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-manager-tools-for-micro5-updates-x86_64-5.3", + "parent_channel_label": "sle-micro-5.3-pool-x86_64", + "product_id": 2551, + "repository_id": 6042, + "parent_product_id": 2428, + "root_product_id": 2428, + "update_tag": "SLE-Manager-Tools-For-Micro-5", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools-For-Micro/5/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools-For-Micro5-Updates for x86_64 5.3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools-for-micro5-debuginfo-updates-x86_64-5.3", + "parent_channel_label": "sle-micro-5.3-pool-x86_64", + "product_id": 2551, + "repository_id": 6043, + "parent_product_id": 2428, + "root_product_id": 2428, + "update_tag": "SLE-Manager-Tools-For-Micro-5", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools-For-Micro/5/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools-For-Micro5-Debuginfo-Updates for x86_64 5.3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools-for-micro5-pool-x86_64-5.3", + "parent_channel_label": "sle-micro-5.3-pool-x86_64", + "product_id": 2551, + "repository_id": 6044, + "parent_product_id": 2428, + "root_product_id": 2428, + "update_tag": "SLE-Manager-Tools-For-Micro-5", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools-For-Micro/5/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools-For-Micro5-Pool for x86_64 5.3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools-for-micro5-debuginfo-pool-x86_64-5.3", + "parent_channel_label": "sle-micro-5.3-pool-x86_64", + "product_id": 2551, + "repository_id": 6045, + "parent_product_id": 2428, + "root_product_id": 2428, + "update_tag": "SLE-Manager-Tools-For-Micro-5", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools-For-Micro/5/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools-For-Micro5-Debuginfo-Pool for x86_64 5.3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools-beta-for-micro5-updates-x86_64-5.3", + "parent_channel_label": "sle-micro-5.3-pool-x86_64", + "product_id": 2554, + "repository_id": 6057, + "parent_product_id": 2551, + "root_product_id": 2428, + "update_tag": "SLE-Manager-Tools-Beta-For-Micro-5", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools-Beta-For-Micro/5/x86_64/update/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools-Beta-For-Micro5-Updates for x86_64 5.3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools-beta-for-micro5-debuginfo-updates-x86_64-5.3", + "parent_channel_label": "sle-micro-5.3-pool-x86_64", + "product_id": 2554, + "repository_id": 6058, + "parent_product_id": 2551, + "root_product_id": 2428, + "update_tag": "SLE-Manager-Tools-Beta-For-Micro-5", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools-Beta-For-Micro/5/x86_64/update_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools-Beta-For-Micro5-Debuginfo-Updates for x86_64 5.3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools-beta-for-micro5-pool-x86_64-5.3", + "parent_channel_label": "sle-micro-5.3-pool-x86_64", + "product_id": 2554, + "repository_id": 6059, + "parent_product_id": 2551, + "root_product_id": 2428, + "update_tag": "SLE-Manager-Tools-Beta-For-Micro-5", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools-Beta-For-Micro/5/x86_64/product/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools-Beta-For-Micro5-Pool for x86_64 5.3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools-beta-for-micro5-debuginfo-pool-x86_64-5.3", + "parent_channel_label": "sle-micro-5.3-pool-x86_64", + "product_id": 2554, + "repository_id": 6060, + "parent_product_id": 2551, + "root_product_id": 2428, + "update_tag": "SLE-Manager-Tools-Beta-For-Micro-5", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools-Beta-For-Micro/5/x86_64/product_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools-Beta-For-Micro5-Debuginfo-Pool for x86_64 5.3", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-product-sles15-sp5-updates-aarch64", + "parent_channel_label": "sle-product-sles15-sp5-pool-aarch64", + "product_id": 2462, + "repository_id": 5643, + "parent_product_id": null, + "root_product_id": 2462, + "update_tag": "SLE-Product-SLES", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-SLES/15-SP5/aarch64/update/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-SLES15-SP5-Updates for aarch64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-sles15-sp5-debuginfo-updates-aarch64", + "parent_channel_label": "sle-product-sles15-sp5-pool-aarch64", + "product_id": 2462, + "repository_id": 5644, + "parent_product_id": null, + "root_product_id": 2462, + "update_tag": "SLE-Product-SLES", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-SLES/15-SP5/aarch64/update_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-SLES15-SP5-Debuginfo-Updates for aarch64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle15-sp5-installer-updates-aarch64", + "parent_channel_label": "sle-product-sles15-sp5-pool-aarch64", + "product_id": 2462, + "repository_id": 5645, + "parent_product_id": null, + "root_product_id": 2462, + "update_tag": "SLE-INSTALLER", + "url": "https://updates.suse.com/SUSE/Updates/SLE-INSTALLER/15-SP5/aarch64/update/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE15-SP5-Installer-Updates for aarch64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-sles15-sp5-pool-aarch64", + "parent_channel_label": null, + "product_id": 2462, + "repository_id": 5646, + "parent_product_id": null, + "root_product_id": 2462, + "update_tag": "SLE-Product-SLES", + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-SLES/15-SP5/aarch64/product/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-SLES15-SP5-Pool for aarch64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-sles15-sp5-debuginfo-pool-aarch64", + "parent_channel_label": "sle-product-sles15-sp5-pool-aarch64", + "product_id": 2462, + "repository_id": 5647, + "parent_product_id": null, + "root_product_id": 2462, + "update_tag": "SLE-Product-SLES", + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-SLES/15-SP5/aarch64/product_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-SLES15-SP5-Debuginfo-Pool for aarch64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-basesystem15-sp5-updates-aarch64", + "parent_channel_label": "sle-product-sles15-sp5-pool-aarch64", + "product_id": 2471, + "repository_id": 5693, + "parent_product_id": 2462, + "root_product_id": 2462, + "update_tag": "SLE-Module-Basesystem", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15-SP5/aarch64/update/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Basesystem15-SP5-Updates for aarch64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-basesystem15-sp5-debuginfo-updates-aarch64", + "parent_channel_label": "sle-product-sles15-sp5-pool-aarch64", + "product_id": 2471, + "repository_id": 5694, + "parent_product_id": 2462, + "root_product_id": 2462, + "update_tag": "SLE-Module-Basesystem", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15-SP5/aarch64/update_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Basesystem15-SP5-Debuginfo-Updates for aarch64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-basesystem15-sp5-pool-aarch64", + "parent_channel_label": "sle-product-sles15-sp5-pool-aarch64", + "product_id": 2471, + "repository_id": 5695, + "parent_product_id": 2462, + "root_product_id": 2462, + "update_tag": "SLE-Module-Basesystem", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP5/aarch64/product/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Basesystem15-SP5-Pool for aarch64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-basesystem15-sp5-debuginfo-pool-aarch64", + "parent_channel_label": "sle-product-sles15-sp5-pool-aarch64", + "product_id": 2471, + "repository_id": 5696, + "parent_product_id": 2462, + "root_product_id": 2462, + "update_tag": "SLE-Module-Basesystem", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP5/aarch64/product_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Basesystem15-SP5-Debuginfo-Pool for aarch64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-manager-tools15-updates-aarch64-sp5", + "parent_channel_label": "sle-product-sles15-sp5-pool-aarch64", + "product_id": 1709, + "repository_id": 2917, + "parent_product_id": 2471, + "root_product_id": 2462, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/15/aarch64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-Updates for aarch64 SP5", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools15-debuginfo-updates-aarch64-sp5", + "parent_channel_label": "sle-product-sles15-sp5-pool-aarch64", + "product_id": 1709, + "repository_id": 2918, + "parent_product_id": 2471, + "root_product_id": 2462, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/15/aarch64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-Debuginfo-Updates for aarch64 SP5", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools15-pool-aarch64-sp5", + "parent_channel_label": "sle-product-sles15-sp5-pool-aarch64", + "product_id": 1709, + "repository_id": 2919, + "parent_product_id": 2471, + "root_product_id": 2462, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/15/aarch64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-Pool for aarch64 SP5", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools15-debuginfo-pool-aarch64-sp5", + "parent_channel_label": "sle-product-sles15-sp5-pool-aarch64", + "product_id": 1709, + "repository_id": 2920, + "parent_product_id": 2471, + "root_product_id": 2462, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/15/aarch64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-Debuginfo-Pool for aarch64 SP5", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools15-beta-updates-aarch64-sp5", + "parent_channel_label": "sle-product-sles15-sp5-pool-aarch64", + "product_id": 1925, + "repository_id": 3891, + "parent_product_id": 1709, + "root_product_id": 2462, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/15-BETA/aarch64/update/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-BETA-Updates for aarch64 SP5", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools15-beta-debuginfo-updates-aarch64-sp5", + "parent_channel_label": "sle-product-sles15-sp5-pool-aarch64", + "product_id": 1925, + "repository_id": 3892, + "parent_product_id": 1709, + "root_product_id": 2462, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/15-BETA/aarch64/update_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-BETA-Debuginfo-Updates for aarch64 SP5", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools15-beta-pool-aarch64-sp5", + "parent_channel_label": "sle-product-sles15-sp5-pool-aarch64", + "product_id": 1925, + "repository_id": 3899, + "parent_product_id": 1709, + "root_product_id": 2462, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/15-BETA/aarch64/product/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-BETA-Pool for aarch64 SP5", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools15-beta-debuginfo-pool-aarch64-sp5", + "parent_channel_label": "sle-product-sles15-sp5-pool-aarch64", + "product_id": 1925, + "repository_id": 3900, + "parent_product_id": 1709, + "root_product_id": 2462, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/15-BETA/aarch64/product_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-BETA-Debuginfo-Pool for aarch64 SP5", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-module-desktop-applications15-sp5-updates-aarch64", + "parent_channel_label": "sle-product-sles15-sp5-pool-aarch64", + "product_id": 2475, + "repository_id": 5713, + "parent_product_id": 2471, + "root_product_id": 2462, + "update_tag": "SLE-Module-Desktop-Applications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15-SP5/aarch64/update/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Desktop-Applications15-SP5-Updates for aarch64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-desktop-applications15-sp5-debuginfo-updates-aarch64", + "parent_channel_label": "sle-product-sles15-sp5-pool-aarch64", + "product_id": 2475, + "repository_id": 5714, + "parent_product_id": 2471, + "root_product_id": 2462, + "update_tag": "SLE-Module-Desktop-Applications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15-SP5/aarch64/update_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Desktop-Applications15-SP5-Debuginfo-Updates for aarch64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-desktop-applications15-sp5-pool-aarch64", + "parent_channel_label": "sle-product-sles15-sp5-pool-aarch64", + "product_id": 2475, + "repository_id": 5715, + "parent_product_id": 2471, + "root_product_id": 2462, + "update_tag": "SLE-Module-Desktop-Applications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP5/aarch64/product/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Desktop-Applications15-SP5-Pool for aarch64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-desktop-applications15-sp5-debuginfo-pool-aarch64", + "parent_channel_label": "sle-product-sles15-sp5-pool-aarch64", + "product_id": 2475, + "repository_id": 5716, + "parent_product_id": 2471, + "root_product_id": 2462, + "update_tag": "SLE-Module-Desktop-Applications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP5/aarch64/product_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Desktop-Applications15-SP5-Debuginfo-Pool for aarch64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-devtools15-sp5-updates-aarch64", + "parent_channel_label": "sle-product-sles15-sp5-pool-aarch64", + "product_id": 2487, + "repository_id": 5773, + "parent_product_id": 2475, + "root_product_id": 2462, + "update_tag": "SLE-Module-Development-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15-SP5/aarch64/update/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-DevTools15-SP5-Updates for aarch64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-devtools15-sp5-debuginfo-updates-aarch64", + "parent_channel_label": "sle-product-sles15-sp5-pool-aarch64", + "product_id": 2487, + "repository_id": 5774, + "parent_product_id": 2475, + "root_product_id": 2462, + "update_tag": "SLE-Module-Development-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15-SP5/aarch64/update_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-DevTools15-SP5-Debuginfo-Updates for aarch64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-devtools15-sp5-pool-aarch64", + "parent_channel_label": "sle-product-sles15-sp5-pool-aarch64", + "product_id": 2487, + "repository_id": 5775, + "parent_product_id": 2475, + "root_product_id": 2462, + "update_tag": "SLE-Module-Development-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP5/aarch64/product/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-DevTools15-SP5-Pool for aarch64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-devtools15-sp5-debuginfo-pool-aarch64", + "parent_channel_label": "sle-product-sles15-sp5-pool-aarch64", + "product_id": 2487, + "repository_id": 5776, + "parent_product_id": 2475, + "root_product_id": 2462, + "update_tag": "SLE-Module-Development-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP5/aarch64/product_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-DevTools15-SP5-Debuginfo-Pool for aarch64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-nvidia-compute-15-updates-aarch64-we-sp5", + "parent_channel_label": "sle-product-sles15-sp5-pool-aarch64", + "product_id": 2130, + "repository_id": 4560, + "parent_product_id": 2487, + "root_product_id": 2462, + "update_tag": "SLE-Module-NVIDIA-Compute", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-NVIDIA-Compute/15/aarch64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-NVIDIA-Compute-15-Updates for aarch64 WE SP5", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-nvidia-compute-15-pool-aarch64-we-sp5", + "parent_channel_label": "sle-product-sles15-sp5-pool-aarch64", + "product_id": 2130, + "repository_id": 4561, + "parent_product_id": 2487, + "root_product_id": 2462, + "update_tag": "SLE-Module-NVIDIA-Compute", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-NVIDIA-Compute/15/aarch64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-NVIDIA-Compute-15-Pool for aarch64 WE SP5", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "nvidia-compute-sle-15-aarch64-we-sp5", + "parent_channel_label": "sle-product-sles15-sp5-pool-aarch64", + "product_id": 2130, + "repository_id": 4562, + "parent_product_id": 2487, + "root_product_id": 2462, + "update_tag": null, + "url": "https://developer.download.nvidia.com/compute/cuda/repos/sles15/sbsa/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "NVIDIA-Compute-SLE-15 for aarch64 WE SP5", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-server-applications15-sp5-updates-aarch64", + "parent_channel_label": "sle-product-sles15-sp5-pool-aarch64", + "product_id": 2479, + "repository_id": 5733, + "parent_product_id": 2471, + "root_product_id": 2462, + "update_tag": "SLE-Module-Server-Applications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15-SP5/aarch64/update/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Server-Applications15-SP5-Updates for aarch64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-server-applications15-sp5-debuginfo-updates-aarch64", + "parent_channel_label": "sle-product-sles15-sp5-pool-aarch64", + "product_id": 2479, + "repository_id": 5734, + "parent_product_id": 2471, + "root_product_id": 2462, + "update_tag": "SLE-Module-Server-Applications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15-SP5/aarch64/update_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Server-Applications15-SP5-Debuginfo-Updates for aarch64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-server-applications15-sp5-pool-aarch64", + "parent_channel_label": "sle-product-sles15-sp5-pool-aarch64", + "product_id": 2479, + "repository_id": 5735, + "parent_product_id": 2471, + "root_product_id": 2462, + "update_tag": "SLE-Module-Server-Applications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP5/aarch64/product/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Server-Applications15-SP5-Pool for aarch64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-server-applications15-sp5-debuginfo-pool-aarch64", + "parent_channel_label": "sle-product-sles15-sp5-pool-aarch64", + "product_id": 2479, + "repository_id": 5736, + "parent_product_id": 2471, + "root_product_id": 2462, + "update_tag": "SLE-Module-Server-Applications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP5/aarch64/product_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Server-Applications15-SP5-Debuginfo-Pool for aarch64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting15-sp5-updates-aarch64", + "parent_channel_label": "sle-product-sles15-sp5-pool-aarch64", + "product_id": 2491, + "repository_id": 5793, + "parent_product_id": 2479, + "root_product_id": 2462, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/15-SP5/aarch64/update/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Web-Scripting15-SP5-Updates for aarch64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting15-sp5-debuginfo-updates-aarch64", + "parent_channel_label": "sle-product-sles15-sp5-pool-aarch64", + "product_id": 2491, + "repository_id": 5794, + "parent_product_id": 2479, + "root_product_id": 2462, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/15-SP5/aarch64/update_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Web-Scripting15-SP5-Debuginfo-Updates for aarch64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting15-sp5-pool-aarch64", + "parent_channel_label": "sle-product-sles15-sp5-pool-aarch64", + "product_id": 2491, + "repository_id": 5795, + "parent_product_id": 2479, + "root_product_id": 2462, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP5/aarch64/product/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Web-Scripting15-SP5-Pool for aarch64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting15-sp5-debuginfo-pool-aarch64", + "parent_channel_label": "sle-product-sles15-sp5-pool-aarch64", + "product_id": 2491, + "repository_id": 5796, + "parent_product_id": 2479, + "root_product_id": 2462, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP5/aarch64/product_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Web-Scripting15-SP5-Debuginfo-Pool for aarch64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-legacy15-sp5-updates-aarch64", + "parent_channel_label": "sle-product-sles15-sp5-pool-aarch64", + "product_id": 2497, + "repository_id": 5823, + "parent_product_id": 2479, + "root_product_id": 2462, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/15-SP5/aarch64/update/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy15-SP5-Updates for aarch64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-legacy15-sp5-debuginfo-updates-aarch64", + "parent_channel_label": "sle-product-sles15-sp5-pool-aarch64", + "product_id": 2497, + "repository_id": 5824, + "parent_product_id": 2479, + "root_product_id": 2462, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/15-SP5/aarch64/update_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy15-SP5-Debuginfo-Updates for aarch64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-legacy15-sp5-pool-aarch64", + "parent_channel_label": "sle-product-sles15-sp5-pool-aarch64", + "product_id": 2497, + "repository_id": 5825, + "parent_product_id": 2479, + "root_product_id": 2462, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15-SP5/aarch64/product/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy15-SP5-Pool for aarch64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-legacy15-sp5-debuginfo-pool-aarch64", + "parent_channel_label": "sle-product-sles15-sp5-pool-aarch64", + "product_id": 2497, + "repository_id": 5826, + "parent_product_id": 2479, + "root_product_id": 2462, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15-SP5/aarch64/product_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy15-SP5-Debuginfo-Pool for aarch64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud15-sp5-updates-aarch64", + "parent_channel_label": "sle-product-sles15-sp5-pool-aarch64", + "product_id": 2501, + "repository_id": 5843, + "parent_product_id": 2479, + "root_product_id": 2462, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/15-SP5/aarch64/update/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud15-SP5-Updates for aarch64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud15-sp5-debuginfo-updates-aarch64", + "parent_channel_label": "sle-product-sles15-sp5-pool-aarch64", + "product_id": 2501, + "repository_id": 5844, + "parent_product_id": 2479, + "root_product_id": 2462, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/15-SP5/aarch64/update_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud15-SP5-Debuginfo-Updates for aarch64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud15-sp5-pool-aarch64", + "parent_channel_label": "sle-product-sles15-sp5-pool-aarch64", + "product_id": 2501, + "repository_id": 5845, + "parent_product_id": 2479, + "root_product_id": 2462, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP5/aarch64/product/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud15-SP5-Pool for aarch64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud15-sp5-debuginfo-pool-aarch64", + "parent_channel_label": "sle-product-sles15-sp5-pool-aarch64", + "product_id": 2501, + "repository_id": 5846, + "parent_product_id": 2479, + "root_product_id": 2462, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP5/aarch64/product_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud15-SP5-Debuginfo-Pool for aarch64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-ha15-sp5-updates-aarch64", + "parent_channel_label": "sle-product-sles15-sp5-pool-aarch64", + "product_id": 2514, + "repository_id": 5908, + "parent_product_id": 2479, + "root_product_id": 2462, + "update_tag": "SLE-Product-HA", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-HA/15-SP5/aarch64/update/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HA15-SP5-Updates for aarch64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-ha15-sp5-debuginfo-updates-aarch64", + "parent_channel_label": "sle-product-sles15-sp5-pool-aarch64", + "product_id": 2514, + "repository_id": 5909, + "parent_product_id": 2479, + "root_product_id": 2462, + "update_tag": "SLE-Product-HA", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-HA/15-SP5/aarch64/update_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HA15-SP5-Debuginfo-Updates for aarch64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-ha15-sp5-pool-aarch64", + "parent_channel_label": "sle-product-sles15-sp5-pool-aarch64", + "product_id": 2514, + "repository_id": 5910, + "parent_product_id": 2479, + "root_product_id": 2462, + "update_tag": "SLE-Product-HA", + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP5/aarch64/product/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HA15-SP5-Pool for aarch64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-ha15-sp5-debuginfo-pool-aarch64", + "parent_channel_label": "sle-product-sles15-sp5-pool-aarch64", + "product_id": 2514, + "repository_id": 5911, + "parent_product_id": 2479, + "root_product_id": 2462, + "update_tag": "SLE-Product-HA", + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP5/aarch64/product_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HA15-SP5-Debuginfo-Pool for aarch64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-containers15-sp5-updates-aarch64", + "parent_channel_label": "sle-product-sles15-sp5-pool-aarch64", + "product_id": 2483, + "repository_id": 5753, + "parent_product_id": 2471, + "root_product_id": 2462, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/15-SP5/aarch64/update/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers15-SP5-Updates for aarch64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-containers15-sp5-debuginfo-updates-aarch64", + "parent_channel_label": "sle-product-sles15-sp5-pool-aarch64", + "product_id": 2483, + "repository_id": 5754, + "parent_product_id": 2471, + "root_product_id": 2462, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/15-SP5/aarch64/update_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers15-SP5-Debuginfo-Updates for aarch64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-containers15-sp5-pool-aarch64", + "parent_channel_label": "sle-product-sles15-sp5-pool-aarch64", + "product_id": 2483, + "repository_id": 5755, + "parent_product_id": 2471, + "root_product_id": 2462, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP5/aarch64/product/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers15-SP5-Pool for aarch64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-containers15-sp5-debuginfo-pool-aarch64", + "parent_channel_label": "sle-product-sles15-sp5-pool-aarch64", + "product_id": 2483, + "repository_id": 5756, + "parent_product_id": 2471, + "root_product_id": 2462, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP5/aarch64/product_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers15-SP5-Debuginfo-Pool for aarch64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-transactional-server15-sp5-updates-aarch64", + "parent_channel_label": "sle-product-sles15-sp5-pool-aarch64", + "product_id": 2505, + "repository_id": 5863, + "parent_product_id": 2471, + "root_product_id": 2462, + "update_tag": "SLE-Module-Transactional-Server", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Transactional-Server/15-SP5/aarch64/update/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Transactional-Server15-SP5-Updates for aarch64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-transactional-server15-sp5-debuginfo-updates-aarch64", + "parent_channel_label": "sle-product-sles15-sp5-pool-aarch64", + "product_id": 2505, + "repository_id": 5864, + "parent_product_id": 2471, + "root_product_id": 2462, + "update_tag": "SLE-Module-Transactional-Server", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Transactional-Server/15-SP5/aarch64/update_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Transactional-Server15-SP5-Debuginfo-Updates for aarch64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-transactional-server15-sp5-pool-aarch64", + "parent_channel_label": "sle-product-sles15-sp5-pool-aarch64", + "product_id": 2505, + "repository_id": 5865, + "parent_product_id": 2471, + "root_product_id": 2462, + "update_tag": "SLE-Module-Transactional-Server", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Transactional-Server/15-SP5/aarch64/product/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Transactional-Server15-SP5-Pool for aarch64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-transactional-server15-sp5-debuginfo-pool-aarch64", + "parent_channel_label": "sle-product-sles15-sp5-pool-aarch64", + "product_id": 2505, + "repository_id": 5866, + "parent_product_id": 2471, + "root_product_id": 2462, + "update_tag": "SLE-Module-Transactional-Server", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Transactional-Server/15-SP5/aarch64/product_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Transactional-Server15-SP5-Debuginfo-Pool for aarch64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-python3-15-sp5-updates-aarch64", + "parent_channel_label": "sle-product-sles15-sp5-pool-aarch64", + "product_id": 2533, + "repository_id": 5943, + "parent_product_id": 2471, + "root_product_id": 2462, + "update_tag": "SLE-Module-Python3", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Python3/15-SP5/aarch64/update/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Python3-15-SP5-Updates for aarch64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-python3-15-sp5-debuginfo-updates-aarch64", + "parent_channel_label": "sle-product-sles15-sp5-pool-aarch64", + "product_id": 2533, + "repository_id": 5944, + "parent_product_id": 2471, + "root_product_id": 2462, + "update_tag": "SLE-Module-Python3", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Python3/15-SP5/aarch64/update_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Python3-15-SP5-Debuginfo-Updates for aarch64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-python3-15-sp5-pool-aarch64", + "parent_channel_label": "sle-product-sles15-sp5-pool-aarch64", + "product_id": 2533, + "repository_id": 5945, + "parent_product_id": 2471, + "root_product_id": 2462, + "update_tag": "SLE-Module-Python3", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Python3/15-SP5/aarch64/product/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Python3-15-SP5-Pool for aarch64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-python3-15-sp5-debuginfo-pool-aarch64", + "parent_channel_label": "sle-product-sles15-sp5-pool-aarch64", + "product_id": 2533, + "repository_id": 5946, + "parent_product_id": 2471, + "root_product_id": 2462, + "update_tag": "SLE-Module-Python3", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Python3/15-SP5/aarch64/product_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Python3-15-SP5-Debuginfo-Pool for aarch64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-packagehub-15-sp5-backports-pool-aarch64", + "parent_channel_label": "sle-product-sles15-sp5-pool-aarch64", + "product_id": 2559, + "repository_id": 6089, + "parent_product_id": 2471, + "root_product_id": 2462, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-15-SP5_aarch64/standard/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-15-SP5-Backports-Pool for aarch64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-packagehub-15-sp5-backports-debuginfo-aarch64", + "parent_channel_label": "sle-product-sles15-sp5-pool-aarch64", + "product_id": 2559, + "repository_id": 6090, + "parent_product_id": 2471, + "root_product_id": 2462, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-15-SP5_aarch64/standard_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-15-SP5-Backports-Debuginfo for aarch64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-packagehub-subpackages15-sp5-updates-aarch64", + "parent_channel_label": "sle-product-sles15-sp5-pool-aarch64", + "product_id": 2559, + "repository_id": 6091, + "parent_product_id": 2471, + "root_product_id": 2462, + "update_tag": "SLE-Module-Packagehub-Subpackages", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP5/aarch64/update/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Packagehub-Subpackages15-SP5-Updates for aarch64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-packagehub-subpackages15-sp5-debuginfo-updates-aarch64", + "parent_channel_label": "sle-product-sles15-sp5-pool-aarch64", + "product_id": 2559, + "repository_id": 6092, + "parent_product_id": 2471, + "root_product_id": 2462, + "update_tag": "SLE-Module-Packagehub-Subpackages", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP5/aarch64/update_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Packagehub-Subpackages15-SP5-Debuginfo-Updates for aarch64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-packagehub-15-sp5-pool-aarch64", + "parent_channel_label": "sle-product-sles15-sp5-pool-aarch64", + "product_id": 2559, + "repository_id": 6093, + "parent_product_id": 2471, + "root_product_id": 2462, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-15-SP5_aarch64/product/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-15-SP5-Pool for aarch64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-packagehub-subpackages15-sp5-pool-aarch64", + "parent_channel_label": "sle-product-sles15-sp5-pool-aarch64", + "product_id": 2559, + "repository_id": 6094, + "parent_product_id": 2471, + "root_product_id": 2462, + "update_tag": "SLE-Module-Packagehub-Subpackages", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP5/aarch64/product/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Packagehub-Subpackages15-SP5-Pool for aarch64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-packagehub-subpackages15-sp5-debuginfo-pool-aarch64", + "parent_channel_label": "sle-product-sles15-sp5-pool-aarch64", + "product_id": 2559, + "repository_id": 6095, + "parent_product_id": 2471, + "root_product_id": 2462, + "update_tag": "SLE-Module-Packagehub-Subpackages", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP5/aarch64/product_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Packagehub-Subpackages15-SP5-Debuginfo-Pool for aarch64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-certifications-15-sp5-updates-aarch64", + "parent_channel_label": "sle-product-sles15-sp5-pool-aarch64", + "product_id": 2555, + "repository_id": 6065, + "parent_product_id": 2462, + "root_product_id": 2462, + "update_tag": "SLE-Module-Certifications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Certifications/15-SP5/aarch64/update/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Certifications-15-SP5-Updates for aarch64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-certifications-15-sp5-debuginfo-updates-aarch64", + "parent_channel_label": "sle-product-sles15-sp5-pool-aarch64", + "product_id": 2555, + "repository_id": 6066, + "parent_product_id": 2462, + "root_product_id": 2462, + "update_tag": "SLE-Module-Certifications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Certifications/15-SP5/aarch64/update_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Certifications-15-SP5-Debuginfo-Updates for aarch64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-certifications-15-sp5-pool-aarch64", + "parent_channel_label": "sle-product-sles15-sp5-pool-aarch64", + "product_id": 2555, + "repository_id": 6067, + "parent_product_id": 2462, + "root_product_id": 2462, + "update_tag": "SLE-Module-Certifications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Certifications/15-SP5/aarch64/product/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Certifications-15-SP5-Pool for aarch64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-certifications-15-sp5-debuginfo-pool-aarch64", + "parent_channel_label": "sle-product-sles15-sp5-pool-aarch64", + "product_id": 2555, + "repository_id": 6068, + "parent_product_id": 2462, + "root_product_id": 2462, + "update_tag": "SLE-Module-Certifications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Certifications/15-SP5/aarch64/product_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Certifications-15-SP5-Debuginfo-Pool for aarch64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-sles15-sp5-updates-ppc64le", + "parent_channel_label": "sle-product-sles15-sp5-pool-ppc64le", + "product_id": 2463, + "repository_id": 5649, + "parent_product_id": null, + "root_product_id": 2463, + "update_tag": "SLE-Product-SLES", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-SLES/15-SP5/ppc64le/update/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-SLES15-SP5-Updates for ppc64le", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-sles15-sp5-debuginfo-updates-ppc64le", + "parent_channel_label": "sle-product-sles15-sp5-pool-ppc64le", + "product_id": 2463, + "repository_id": 5650, + "parent_product_id": null, + "root_product_id": 2463, + "update_tag": "SLE-Product-SLES", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-SLES/15-SP5/ppc64le/update_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-SLES15-SP5-Debuginfo-Updates for ppc64le", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle15-sp5-installer-updates-ppc64le", + "parent_channel_label": "sle-product-sles15-sp5-pool-ppc64le", + "product_id": 2463, + "repository_id": 5651, + "parent_product_id": null, + "root_product_id": 2463, + "update_tag": "SLE-INSTALLER", + "url": "https://updates.suse.com/SUSE/Updates/SLE-INSTALLER/15-SP5/ppc64le/update/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE15-SP5-Installer-Updates for ppc64le", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-sles15-sp5-pool-ppc64le", + "parent_channel_label": null, + "product_id": 2463, + "repository_id": 5652, + "parent_product_id": null, + "root_product_id": 2463, + "update_tag": "SLE-Product-SLES", + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-SLES/15-SP5/ppc64le/product/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-SLES15-SP5-Pool for ppc64le", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-sles15-sp5-debuginfo-pool-ppc64le", + "parent_channel_label": "sle-product-sles15-sp5-pool-ppc64le", + "product_id": 2463, + "repository_id": 5653, + "parent_product_id": null, + "root_product_id": 2463, + "update_tag": "SLE-Product-SLES", + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-SLES/15-SP5/ppc64le/product_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-SLES15-SP5-Debuginfo-Pool for ppc64le", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-basesystem15-sp5-updates-ppc64le", + "parent_channel_label": "sle-product-sles15-sp5-pool-ppc64le", + "product_id": 2472, + "repository_id": 5698, + "parent_product_id": 2463, + "root_product_id": 2463, + "update_tag": "SLE-Module-Basesystem", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15-SP5/ppc64le/update/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Basesystem15-SP5-Updates for ppc64le", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-basesystem15-sp5-debuginfo-updates-ppc64le", + "parent_channel_label": "sle-product-sles15-sp5-pool-ppc64le", + "product_id": 2472, + "repository_id": 5699, + "parent_product_id": 2463, + "root_product_id": 2463, + "update_tag": "SLE-Module-Basesystem", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15-SP5/ppc64le/update_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Basesystem15-SP5-Debuginfo-Updates for ppc64le", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-basesystem15-sp5-pool-ppc64le", + "parent_channel_label": "sle-product-sles15-sp5-pool-ppc64le", + "product_id": 2472, + "repository_id": 5700, + "parent_product_id": 2463, + "root_product_id": 2463, + "update_tag": "SLE-Module-Basesystem", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP5/ppc64le/product/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Basesystem15-SP5-Pool for ppc64le", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-basesystem15-sp5-debuginfo-pool-ppc64le", + "parent_channel_label": "sle-product-sles15-sp5-pool-ppc64le", + "product_id": 2472, + "repository_id": 5701, + "parent_product_id": 2463, + "root_product_id": 2463, + "update_tag": "SLE-Module-Basesystem", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP5/ppc64le/product_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Basesystem15-SP5-Debuginfo-Pool for ppc64le", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-manager-tools15-updates-ppc64le-sp5", + "parent_channel_label": "sle-product-sles15-sp5-pool-ppc64le", + "product_id": 1710, + "repository_id": 2922, + "parent_product_id": 2472, + "root_product_id": 2463, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/15/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-Updates for ppc64le SP5", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools15-debuginfo-updates-ppc64le-sp5", + "parent_channel_label": "sle-product-sles15-sp5-pool-ppc64le", + "product_id": 1710, + "repository_id": 2923, + "parent_product_id": 2472, + "root_product_id": 2463, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/15/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-Debuginfo-Updates for ppc64le SP5", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools15-pool-ppc64le-sp5", + "parent_channel_label": "sle-product-sles15-sp5-pool-ppc64le", + "product_id": 1710, + "repository_id": 2924, + "parent_product_id": 2472, + "root_product_id": 2463, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/15/ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-Pool for ppc64le SP5", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools15-debuginfo-pool-ppc64le-sp5", + "parent_channel_label": "sle-product-sles15-sp5-pool-ppc64le", + "product_id": 1710, + "repository_id": 2925, + "parent_product_id": 2472, + "root_product_id": 2463, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/15/ppc64le/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-Debuginfo-Pool for ppc64le SP5", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools15-beta-updates-ppc64le-sp5", + "parent_channel_label": "sle-product-sles15-sp5-pool-ppc64le", + "product_id": 1926, + "repository_id": 3893, + "parent_product_id": 1710, + "root_product_id": 2463, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/15-BETA/ppc64le/update/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-BETA-Updates for ppc64le SP5", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools15-beta-debuginfo-updates-ppc64le-sp5", + "parent_channel_label": "sle-product-sles15-sp5-pool-ppc64le", + "product_id": 1926, + "repository_id": 3894, + "parent_product_id": 1710, + "root_product_id": 2463, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/15-BETA/ppc64le/update_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-BETA-Debuginfo-Updates for ppc64le SP5", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools15-beta-pool-ppc64le-sp5", + "parent_channel_label": "sle-product-sles15-sp5-pool-ppc64le", + "product_id": 1926, + "repository_id": 3902, + "parent_product_id": 1710, + "root_product_id": 2463, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/15-BETA/ppc64le/product/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-BETA-Pool for ppc64le SP5", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools15-beta-debuginfo-pool-ppc64le-sp5", + "parent_channel_label": "sle-product-sles15-sp5-pool-ppc64le", + "product_id": 1926, + "repository_id": 3903, + "parent_product_id": 1710, + "root_product_id": 2463, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/15-BETA/ppc64le/product_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-BETA-Debuginfo-Pool for ppc64le SP5", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-module-desktop-applications15-sp5-updates-ppc64le", + "parent_channel_label": "sle-product-sles15-sp5-pool-ppc64le", + "product_id": 2476, + "repository_id": 5718, + "parent_product_id": 2472, + "root_product_id": 2463, + "update_tag": "SLE-Module-Desktop-Applications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15-SP5/ppc64le/update/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Desktop-Applications15-SP5-Updates for ppc64le", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-desktop-applications15-sp5-debuginfo-updates-ppc64le", + "parent_channel_label": "sle-product-sles15-sp5-pool-ppc64le", + "product_id": 2476, + "repository_id": 5719, + "parent_product_id": 2472, + "root_product_id": 2463, + "update_tag": "SLE-Module-Desktop-Applications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15-SP5/ppc64le/update_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Desktop-Applications15-SP5-Debuginfo-Updates for ppc64le", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-desktop-applications15-sp5-pool-ppc64le", + "parent_channel_label": "sle-product-sles15-sp5-pool-ppc64le", + "product_id": 2476, + "repository_id": 5720, + "parent_product_id": 2472, + "root_product_id": 2463, + "update_tag": "SLE-Module-Desktop-Applications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP5/ppc64le/product/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Desktop-Applications15-SP5-Pool for ppc64le", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-desktop-applications15-sp5-debuginfo-pool-ppc64le", + "parent_channel_label": "sle-product-sles15-sp5-pool-ppc64le", + "product_id": 2476, + "repository_id": 5721, + "parent_product_id": 2472, + "root_product_id": 2463, + "update_tag": "SLE-Module-Desktop-Applications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP5/ppc64le/product_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Desktop-Applications15-SP5-Debuginfo-Pool for ppc64le", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-devtools15-sp5-updates-ppc64le", + "parent_channel_label": "sle-product-sles15-sp5-pool-ppc64le", + "product_id": 2488, + "repository_id": 5778, + "parent_product_id": 2476, + "root_product_id": 2463, + "update_tag": "SLE-Module-Development-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15-SP5/ppc64le/update/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-DevTools15-SP5-Updates for ppc64le", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-devtools15-sp5-debuginfo-updates-ppc64le", + "parent_channel_label": "sle-product-sles15-sp5-pool-ppc64le", + "product_id": 2488, + "repository_id": 5779, + "parent_product_id": 2476, + "root_product_id": 2463, + "update_tag": "SLE-Module-Development-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15-SP5/ppc64le/update_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-DevTools15-SP5-Debuginfo-Updates for ppc64le", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-devtools15-sp5-pool-ppc64le", + "parent_channel_label": "sle-product-sles15-sp5-pool-ppc64le", + "product_id": 2488, + "repository_id": 5780, + "parent_product_id": 2476, + "root_product_id": 2463, + "update_tag": "SLE-Module-Development-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP5/ppc64le/product/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-DevTools15-SP5-Pool for ppc64le", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-devtools15-sp5-debuginfo-pool-ppc64le", + "parent_channel_label": "sle-product-sles15-sp5-pool-ppc64le", + "product_id": 2488, + "repository_id": 5781, + "parent_product_id": 2476, + "root_product_id": 2463, + "update_tag": "SLE-Module-Development-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP5/ppc64le/product_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-DevTools15-SP5-Debuginfo-Pool for ppc64le", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-server-applications15-sp5-updates-ppc64le", + "parent_channel_label": "sle-product-sles15-sp5-pool-ppc64le", + "product_id": 2480, + "repository_id": 5738, + "parent_product_id": 2472, + "root_product_id": 2463, + "update_tag": "SLE-Module-Server-Applications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15-SP5/ppc64le/update/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Server-Applications15-SP5-Updates for ppc64le", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-server-applications15-sp5-debuginfo-updates-ppc64le", + "parent_channel_label": "sle-product-sles15-sp5-pool-ppc64le", + "product_id": 2480, + "repository_id": 5739, + "parent_product_id": 2472, + "root_product_id": 2463, + "update_tag": "SLE-Module-Server-Applications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15-SP5/ppc64le/update_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Server-Applications15-SP5-Debuginfo-Updates for ppc64le", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-server-applications15-sp5-pool-ppc64le", + "parent_channel_label": "sle-product-sles15-sp5-pool-ppc64le", + "product_id": 2480, + "repository_id": 5740, + "parent_product_id": 2472, + "root_product_id": 2463, + "update_tag": "SLE-Module-Server-Applications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP5/ppc64le/product/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Server-Applications15-SP5-Pool for ppc64le", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-server-applications15-sp5-debuginfo-pool-ppc64le", + "parent_channel_label": "sle-product-sles15-sp5-pool-ppc64le", + "product_id": 2480, + "repository_id": 5741, + "parent_product_id": 2472, + "root_product_id": 2463, + "update_tag": "SLE-Module-Server-Applications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP5/ppc64le/product_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Server-Applications15-SP5-Debuginfo-Pool for ppc64le", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "ibm-power-adv-toolchain-ppc64le-sp5", + "parent_channel_label": "sle-product-sles15-sp5-pool-ppc64le", + "product_id": 2076, + "repository_id": 4430, + "parent_product_id": 2480, + "root_product_id": 2463, + "update_tag": null, + "url": "https://public.dhe.ibm.com/software/server/POWER/Linux/toolchain/at/suse/SLES_15/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "IBM-POWER-Adv-Toolchain for ppc64le SP5", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "ibm-power-tools-ppc64le-sp5", + "parent_channel_label": "sle-product-sles15-sp5-pool-ppc64le", + "product_id": 2077, + "repository_id": 4431, + "parent_product_id": 2480, + "root_product_id": 2463, + "update_tag": null, + "url": "https://public.dhe.ibm.com/software/server/POWER/Linux/yum/OSS/SLES/15/ppc64le/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "IBM-POWER-Tools for ppc64le SP5", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting15-sp5-updates-ppc64le", + "parent_channel_label": "sle-product-sles15-sp5-pool-ppc64le", + "product_id": 2492, + "repository_id": 5798, + "parent_product_id": 2480, + "root_product_id": 2463, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/15-SP5/ppc64le/update/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Web-Scripting15-SP5-Updates for ppc64le", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting15-sp5-debuginfo-updates-ppc64le", + "parent_channel_label": "sle-product-sles15-sp5-pool-ppc64le", + "product_id": 2492, + "repository_id": 5799, + "parent_product_id": 2480, + "root_product_id": 2463, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/15-SP5/ppc64le/update_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Web-Scripting15-SP5-Debuginfo-Updates for ppc64le", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting15-sp5-pool-ppc64le", + "parent_channel_label": "sle-product-sles15-sp5-pool-ppc64le", + "product_id": 2492, + "repository_id": 5800, + "parent_product_id": 2480, + "root_product_id": 2463, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP5/ppc64le/product/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Web-Scripting15-SP5-Pool for ppc64le", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting15-sp5-debuginfo-pool-ppc64le", + "parent_channel_label": "sle-product-sles15-sp5-pool-ppc64le", + "product_id": 2492, + "repository_id": 5801, + "parent_product_id": 2480, + "root_product_id": 2463, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP5/ppc64le/product_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Web-Scripting15-SP5-Debuginfo-Pool for ppc64le", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-legacy15-sp5-updates-ppc64le", + "parent_channel_label": "sle-product-sles15-sp5-pool-ppc64le", + "product_id": 2498, + "repository_id": 5828, + "parent_product_id": 2480, + "root_product_id": 2463, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/15-SP5/ppc64le/update/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy15-SP5-Updates for ppc64le", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-legacy15-sp5-debuginfo-updates-ppc64le", + "parent_channel_label": "sle-product-sles15-sp5-pool-ppc64le", + "product_id": 2498, + "repository_id": 5829, + "parent_product_id": 2480, + "root_product_id": 2463, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/15-SP5/ppc64le/update_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy15-SP5-Debuginfo-Updates for ppc64le", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-legacy15-sp5-pool-ppc64le", + "parent_channel_label": "sle-product-sles15-sp5-pool-ppc64le", + "product_id": 2498, + "repository_id": 5830, + "parent_product_id": 2480, + "root_product_id": 2463, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15-SP5/ppc64le/product/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy15-SP5-Pool for ppc64le", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-legacy15-sp5-debuginfo-pool-ppc64le", + "parent_channel_label": "sle-product-sles15-sp5-pool-ppc64le", + "product_id": 2498, + "repository_id": 5831, + "parent_product_id": 2480, + "root_product_id": 2463, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15-SP5/ppc64le/product_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy15-SP5-Debuginfo-Pool for ppc64le", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud15-sp5-updates-ppc64le", + "parent_channel_label": "sle-product-sles15-sp5-pool-ppc64le", + "product_id": 2502, + "repository_id": 5848, + "parent_product_id": 2480, + "root_product_id": 2463, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/15-SP5/ppc64le/update/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud15-SP5-Updates for ppc64le", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud15-sp5-debuginfo-updates-ppc64le", + "parent_channel_label": "sle-product-sles15-sp5-pool-ppc64le", + "product_id": 2502, + "repository_id": 5849, + "parent_product_id": 2480, + "root_product_id": 2463, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/15-SP5/ppc64le/update_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud15-SP5-Debuginfo-Updates for ppc64le", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud15-sp5-pool-ppc64le", + "parent_channel_label": "sle-product-sles15-sp5-pool-ppc64le", + "product_id": 2502, + "repository_id": 5850, + "parent_product_id": 2480, + "root_product_id": 2463, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP5/ppc64le/product/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud15-SP5-Pool for ppc64le", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud15-sp5-debuginfo-pool-ppc64le", + "parent_channel_label": "sle-product-sles15-sp5-pool-ppc64le", + "product_id": 2502, + "repository_id": 5851, + "parent_product_id": 2480, + "root_product_id": 2463, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP5/ppc64le/product_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud15-SP5-Debuginfo-Pool for ppc64le", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-ha15-sp5-updates-ppc64le", + "parent_channel_label": "sle-product-sles15-sp5-pool-ppc64le", + "product_id": 2515, + "repository_id": 5913, + "parent_product_id": 2480, + "root_product_id": 2463, + "update_tag": "SLE-Product-HA", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-HA/15-SP5/ppc64le/update/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HA15-SP5-Updates for ppc64le", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-ha15-sp5-debuginfo-updates-ppc64le", + "parent_channel_label": "sle-product-sles15-sp5-pool-ppc64le", + "product_id": 2515, + "repository_id": 5914, + "parent_product_id": 2480, + "root_product_id": 2463, + "update_tag": "SLE-Product-HA", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-HA/15-SP5/ppc64le/update_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HA15-SP5-Debuginfo-Updates for ppc64le", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-ha15-sp5-pool-ppc64le", + "parent_channel_label": "sle-product-sles15-sp5-pool-ppc64le", + "product_id": 2515, + "repository_id": 5915, + "parent_product_id": 2480, + "root_product_id": 2463, + "update_tag": "SLE-Product-HA", + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP5/ppc64le/product/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HA15-SP5-Pool for ppc64le", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-ha15-sp5-debuginfo-pool-ppc64le", + "parent_channel_label": "sle-product-sles15-sp5-pool-ppc64le", + "product_id": 2515, + "repository_id": 5916, + "parent_product_id": 2480, + "root_product_id": 2463, + "update_tag": "SLE-Product-HA", + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP5/ppc64le/product_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HA15-SP5-Debuginfo-Pool for ppc64le", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-containers15-sp5-updates-ppc64le", + "parent_channel_label": "sle-product-sles15-sp5-pool-ppc64le", + "product_id": 2484, + "repository_id": 5758, + "parent_product_id": 2472, + "root_product_id": 2463, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/15-SP5/ppc64le/update/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers15-SP5-Updates for ppc64le", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-containers15-sp5-debuginfo-updates-ppc64le", + "parent_channel_label": "sle-product-sles15-sp5-pool-ppc64le", + "product_id": 2484, + "repository_id": 5759, + "parent_product_id": 2472, + "root_product_id": 2463, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/15-SP5/ppc64le/update_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers15-SP5-Debuginfo-Updates for ppc64le", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-containers15-sp5-pool-ppc64le", + "parent_channel_label": "sle-product-sles15-sp5-pool-ppc64le", + "product_id": 2484, + "repository_id": 5760, + "parent_product_id": 2472, + "root_product_id": 2463, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP5/ppc64le/product/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers15-SP5-Pool for ppc64le", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-containers15-sp5-debuginfo-pool-ppc64le", + "parent_channel_label": "sle-product-sles15-sp5-pool-ppc64le", + "product_id": 2484, + "repository_id": 5761, + "parent_product_id": 2472, + "root_product_id": 2463, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP5/ppc64le/product_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers15-SP5-Debuginfo-Pool for ppc64le", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-transactional-server15-sp5-updates-ppc64le", + "parent_channel_label": "sle-product-sles15-sp5-pool-ppc64le", + "product_id": 2506, + "repository_id": 5868, + "parent_product_id": 2472, + "root_product_id": 2463, + "update_tag": "SLE-Module-Transactional-Server", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Transactional-Server/15-SP5/ppc64le/update/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Transactional-Server15-SP5-Updates for ppc64le", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-transactional-server15-sp5-debuginfo-updates-ppc64le", + "parent_channel_label": "sle-product-sles15-sp5-pool-ppc64le", + "product_id": 2506, + "repository_id": 5869, + "parent_product_id": 2472, + "root_product_id": 2463, + "update_tag": "SLE-Module-Transactional-Server", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Transactional-Server/15-SP5/ppc64le/update_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Transactional-Server15-SP5-Debuginfo-Updates for ppc64le", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-transactional-server15-sp5-pool-ppc64le", + "parent_channel_label": "sle-product-sles15-sp5-pool-ppc64le", + "product_id": 2506, + "repository_id": 5870, + "parent_product_id": 2472, + "root_product_id": 2463, + "update_tag": "SLE-Module-Transactional-Server", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Transactional-Server/15-SP5/ppc64le/product/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Transactional-Server15-SP5-Pool for ppc64le", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-transactional-server15-sp5-debuginfo-pool-ppc64le", + "parent_channel_label": "sle-product-sles15-sp5-pool-ppc64le", + "product_id": 2506, + "repository_id": 5871, + "parent_product_id": 2472, + "root_product_id": 2463, + "update_tag": "SLE-Module-Transactional-Server", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Transactional-Server/15-SP5/ppc64le/product_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Transactional-Server15-SP5-Debuginfo-Pool for ppc64le", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-live-patching15-sp5-updates-ppc64le", + "parent_channel_label": "sle-product-sles15-sp5-pool-ppc64le", + "product_id": 2509, + "repository_id": 5883, + "parent_product_id": 2472, + "root_product_id": 2463, + "update_tag": "SLE-Module-Live-Patching", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Live-Patching/15-SP5/ppc64le/update/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Live-Patching15-SP5-Updates for ppc64le", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-live-patching15-sp5-debuginfo-updates-ppc64le", + "parent_channel_label": "sle-product-sles15-sp5-pool-ppc64le", + "product_id": 2509, + "repository_id": 5884, + "parent_product_id": 2472, + "root_product_id": 2463, + "update_tag": "SLE-Module-Live-Patching", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Live-Patching/15-SP5/ppc64le/update_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Live-Patching15-SP5-Debuginfo-Updates for ppc64le", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-live-patching15-sp5-pool-ppc64le", + "parent_channel_label": "sle-product-sles15-sp5-pool-ppc64le", + "product_id": 2509, + "repository_id": 5885, + "parent_product_id": 2472, + "root_product_id": 2463, + "update_tag": "SLE-Module-Live-Patching", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Live-Patching/15-SP5/ppc64le/product/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Live-Patching15-SP5-Pool for ppc64le", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-live-patching15-sp5-debuginfo-pool-ppc64le", + "parent_channel_label": "sle-product-sles15-sp5-pool-ppc64le", + "product_id": 2509, + "repository_id": 5886, + "parent_product_id": 2472, + "root_product_id": 2463, + "update_tag": "SLE-Module-Live-Patching", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Live-Patching/15-SP5/ppc64le/product_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Live-Patching15-SP5-Debuginfo-Pool for ppc64le", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-python3-15-sp5-updates-ppc64le", + "parent_channel_label": "sle-product-sles15-sp5-pool-ppc64le", + "product_id": 2534, + "repository_id": 5948, + "parent_product_id": 2472, + "root_product_id": 2463, + "update_tag": "SLE-Module-Python3", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Python3/15-SP5/ppc64le/update/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Python3-15-SP5-Updates for ppc64le", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-python3-15-sp5-debuginfo-updates-ppc64le", + "parent_channel_label": "sle-product-sles15-sp5-pool-ppc64le", + "product_id": 2534, + "repository_id": 5949, + "parent_product_id": 2472, + "root_product_id": 2463, + "update_tag": "SLE-Module-Python3", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Python3/15-SP5/ppc64le/update_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Python3-15-SP5-Debuginfo-Updates for ppc64le", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-python3-15-sp5-pool-ppc64le", + "parent_channel_label": "sle-product-sles15-sp5-pool-ppc64le", + "product_id": 2534, + "repository_id": 5950, + "parent_product_id": 2472, + "root_product_id": 2463, + "update_tag": "SLE-Module-Python3", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Python3/15-SP5/ppc64le/product/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Python3-15-SP5-Pool for ppc64le", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-python3-15-sp5-debuginfo-pool-ppc64le", + "parent_channel_label": "sle-product-sles15-sp5-pool-ppc64le", + "product_id": 2534, + "repository_id": 5951, + "parent_product_id": 2472, + "root_product_id": 2463, + "update_tag": "SLE-Module-Python3", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Python3/15-SP5/ppc64le/product_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Python3-15-SP5-Debuginfo-Pool for ppc64le", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-packagehub-15-sp5-backports-pool-ppc64le", + "parent_channel_label": "sle-product-sles15-sp5-pool-ppc64le", + "product_id": 2560, + "repository_id": 6097, + "parent_product_id": 2472, + "root_product_id": 2463, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-15-SP5_ppc64le/standard/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-15-SP5-Backports-Pool for ppc64le", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-packagehub-15-sp5-backports-debuginfo-ppc64le", + "parent_channel_label": "sle-product-sles15-sp5-pool-ppc64le", + "product_id": 2560, + "repository_id": 6098, + "parent_product_id": 2472, + "root_product_id": 2463, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-15-SP5_ppc64le/standard_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-15-SP5-Backports-Debuginfo for ppc64le", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-packagehub-subpackages15-sp5-updates-ppc64le", + "parent_channel_label": "sle-product-sles15-sp5-pool-ppc64le", + "product_id": 2560, + "repository_id": 6099, + "parent_product_id": 2472, + "root_product_id": 2463, + "update_tag": "SLE-Module-Packagehub-Subpackages", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP5/ppc64le/update/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Packagehub-Subpackages15-SP5-Updates for ppc64le", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-packagehub-subpackages15-sp5-debuginfo-updates-ppc64le", + "parent_channel_label": "sle-product-sles15-sp5-pool-ppc64le", + "product_id": 2560, + "repository_id": 6100, + "parent_product_id": 2472, + "root_product_id": 2463, + "update_tag": "SLE-Module-Packagehub-Subpackages", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP5/ppc64le/update_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Packagehub-Subpackages15-SP5-Debuginfo-Updates for ppc64le", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-packagehub-15-sp5-pool-ppc64le", + "parent_channel_label": "sle-product-sles15-sp5-pool-ppc64le", + "product_id": 2560, + "repository_id": 6101, + "parent_product_id": 2472, + "root_product_id": 2463, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-15-SP5_ppc64le/product/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-15-SP5-Pool for ppc64le", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-packagehub-subpackages15-sp5-pool-ppc64le", + "parent_channel_label": "sle-product-sles15-sp5-pool-ppc64le", + "product_id": 2560, + "repository_id": 6102, + "parent_product_id": 2472, + "root_product_id": 2463, + "update_tag": "SLE-Module-Packagehub-Subpackages", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP5/ppc64le/product/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Packagehub-Subpackages15-SP5-Pool for ppc64le", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-packagehub-subpackages15-sp5-debuginfo-pool-ppc64le", + "parent_channel_label": "sle-product-sles15-sp5-pool-ppc64le", + "product_id": 2560, + "repository_id": 6103, + "parent_product_id": 2472, + "root_product_id": 2463, + "update_tag": "SLE-Module-Packagehub-Subpackages", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP5/ppc64le/product_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Packagehub-Subpackages15-SP5-Debuginfo-Pool for ppc64le", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-certifications-15-sp5-updates-ppc64le", + "parent_channel_label": "sle-product-sles15-sp5-pool-ppc64le", + "product_id": 2556, + "repository_id": 6070, + "parent_product_id": 2463, + "root_product_id": 2463, + "update_tag": "SLE-Module-Certifications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Certifications/15-SP5/ppc64le/update/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Certifications-15-SP5-Updates for ppc64le", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-certifications-15-sp5-debuginfo-updates-ppc64le", + "parent_channel_label": "sle-product-sles15-sp5-pool-ppc64le", + "product_id": 2556, + "repository_id": 6071, + "parent_product_id": 2463, + "root_product_id": 2463, + "update_tag": "SLE-Module-Certifications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Certifications/15-SP5/ppc64le/update_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Certifications-15-SP5-Debuginfo-Updates for ppc64le", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-certifications-15-sp5-pool-ppc64le", + "parent_channel_label": "sle-product-sles15-sp5-pool-ppc64le", + "product_id": 2556, + "repository_id": 6072, + "parent_product_id": 2463, + "root_product_id": 2463, + "update_tag": "SLE-Module-Certifications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Certifications/15-SP5/ppc64le/product/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Certifications-15-SP5-Pool for ppc64le", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-certifications-15-sp5-debuginfo-pool-ppc64le", + "parent_channel_label": "sle-product-sles15-sp5-pool-ppc64le", + "product_id": 2556, + "repository_id": 6073, + "parent_product_id": 2463, + "root_product_id": 2463, + "update_tag": "SLE-Module-Certifications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Certifications/15-SP5/ppc64le/product_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Certifications-15-SP5-Debuginfo-Pool for ppc64le", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-sles15-sp5-updates-s390x", + "parent_channel_label": "sle-product-sles15-sp5-pool-s390x", + "product_id": 2464, + "repository_id": 5655, + "parent_product_id": null, + "root_product_id": 2464, + "update_tag": "SLE-Product-SLES", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-SLES/15-SP5/s390x/update/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-SLES15-SP5-Updates for s390x", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-sles15-sp5-debuginfo-updates-s390x", + "parent_channel_label": "sle-product-sles15-sp5-pool-s390x", + "product_id": 2464, + "repository_id": 5656, + "parent_product_id": null, + "root_product_id": 2464, + "update_tag": "SLE-Product-SLES", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-SLES/15-SP5/s390x/update_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-SLES15-SP5-Debuginfo-Updates for s390x", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle15-sp5-installer-updates-s390x", + "parent_channel_label": "sle-product-sles15-sp5-pool-s390x", + "product_id": 2464, + "repository_id": 5657, + "parent_product_id": null, + "root_product_id": 2464, + "update_tag": "SLE-INSTALLER", + "url": "https://updates.suse.com/SUSE/Updates/SLE-INSTALLER/15-SP5/s390x/update/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE15-SP5-Installer-Updates for s390x", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-sles15-sp5-pool-s390x", + "parent_channel_label": null, + "product_id": 2464, + "repository_id": 5658, + "parent_product_id": null, + "root_product_id": 2464, + "update_tag": "SLE-Product-SLES", + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-SLES/15-SP5/s390x/product/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-SLES15-SP5-Pool for s390x", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-sles15-sp5-debuginfo-pool-s390x", + "parent_channel_label": "sle-product-sles15-sp5-pool-s390x", + "product_id": 2464, + "repository_id": 5659, + "parent_product_id": null, + "root_product_id": 2464, + "update_tag": "SLE-Product-SLES", + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-SLES/15-SP5/s390x/product_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-SLES15-SP5-Debuginfo-Pool for s390x", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-basesystem15-sp5-updates-s390x", + "parent_channel_label": "sle-product-sles15-sp5-pool-s390x", + "product_id": 2473, + "repository_id": 5703, + "parent_product_id": 2464, + "root_product_id": 2464, + "update_tag": "SLE-Module-Basesystem", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15-SP5/s390x/update/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Basesystem15-SP5-Updates for s390x", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-basesystem15-sp5-debuginfo-updates-s390x", + "parent_channel_label": "sle-product-sles15-sp5-pool-s390x", + "product_id": 2473, + "repository_id": 5704, + "parent_product_id": 2464, + "root_product_id": 2464, + "update_tag": "SLE-Module-Basesystem", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15-SP5/s390x/update_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Basesystem15-SP5-Debuginfo-Updates for s390x", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-basesystem15-sp5-pool-s390x", + "parent_channel_label": "sle-product-sles15-sp5-pool-s390x", + "product_id": 2473, + "repository_id": 5705, + "parent_product_id": 2464, + "root_product_id": 2464, + "update_tag": "SLE-Module-Basesystem", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP5/s390x/product/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Basesystem15-SP5-Pool for s390x", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-basesystem15-sp5-debuginfo-pool-s390x", + "parent_channel_label": "sle-product-sles15-sp5-pool-s390x", + "product_id": 2473, + "repository_id": 5706, + "parent_product_id": 2464, + "root_product_id": 2464, + "update_tag": "SLE-Module-Basesystem", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP5/s390x/product_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Basesystem15-SP5-Debuginfo-Pool for s390x", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-manager-tools15-updates-s390x-sp5", + "parent_channel_label": "sle-product-sles15-sp5-pool-s390x", + "product_id": 1711, + "repository_id": 2927, + "parent_product_id": 2473, + "root_product_id": 2464, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/15/s390x/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-Updates for s390x SP5", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools15-debuginfo-updates-s390x-sp5", + "parent_channel_label": "sle-product-sles15-sp5-pool-s390x", + "product_id": 1711, + "repository_id": 2928, + "parent_product_id": 2473, + "root_product_id": 2464, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/15/s390x/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-Debuginfo-Updates for s390x SP5", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools15-pool-s390x-sp5", + "parent_channel_label": "sle-product-sles15-sp5-pool-s390x", + "product_id": 1711, + "repository_id": 2929, + "parent_product_id": 2473, + "root_product_id": 2464, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/15/s390x/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-Pool for s390x SP5", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools15-debuginfo-pool-s390x-sp5", + "parent_channel_label": "sle-product-sles15-sp5-pool-s390x", + "product_id": 1711, + "repository_id": 2930, + "parent_product_id": 2473, + "root_product_id": 2464, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/15/s390x/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-Debuginfo-Pool for s390x SP5", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools15-beta-updates-s390x-sp5", + "parent_channel_label": "sle-product-sles15-sp5-pool-s390x", + "product_id": 1927, + "repository_id": 3895, + "parent_product_id": 1711, + "root_product_id": 2464, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/15-BETA/s390x/update/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-BETA-Updates for s390x SP5", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools15-beta-debuginfo-updates-s390x-sp5", + "parent_channel_label": "sle-product-sles15-sp5-pool-s390x", + "product_id": 1927, + "repository_id": 3896, + "parent_product_id": 1711, + "root_product_id": 2464, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/15-BETA/s390x/update_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-BETA-Debuginfo-Updates for s390x SP5", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools15-beta-pool-s390x-sp5", + "parent_channel_label": "sle-product-sles15-sp5-pool-s390x", + "product_id": 1927, + "repository_id": 3905, + "parent_product_id": 1711, + "root_product_id": 2464, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/15-BETA/s390x/product/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-BETA-Pool for s390x SP5", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools15-beta-debuginfo-pool-s390x-sp5", + "parent_channel_label": "sle-product-sles15-sp5-pool-s390x", + "product_id": 1927, + "repository_id": 3906, + "parent_product_id": 1711, + "root_product_id": 2464, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/15-BETA/s390x/product_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-BETA-Debuginfo-Pool for s390x SP5", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-module-desktop-applications15-sp5-updates-s390x", + "parent_channel_label": "sle-product-sles15-sp5-pool-s390x", + "product_id": 2477, + "repository_id": 5723, + "parent_product_id": 2473, + "root_product_id": 2464, + "update_tag": "SLE-Module-Desktop-Applications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15-SP5/s390x/update/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Desktop-Applications15-SP5-Updates for s390x", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-desktop-applications15-sp5-debuginfo-updates-s390x", + "parent_channel_label": "sle-product-sles15-sp5-pool-s390x", + "product_id": 2477, + "repository_id": 5724, + "parent_product_id": 2473, + "root_product_id": 2464, + "update_tag": "SLE-Module-Desktop-Applications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15-SP5/s390x/update_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Desktop-Applications15-SP5-Debuginfo-Updates for s390x", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-desktop-applications15-sp5-pool-s390x", + "parent_channel_label": "sle-product-sles15-sp5-pool-s390x", + "product_id": 2477, + "repository_id": 5725, + "parent_product_id": 2473, + "root_product_id": 2464, + "update_tag": "SLE-Module-Desktop-Applications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP5/s390x/product/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Desktop-Applications15-SP5-Pool for s390x", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-desktop-applications15-sp5-debuginfo-pool-s390x", + "parent_channel_label": "sle-product-sles15-sp5-pool-s390x", + "product_id": 2477, + "repository_id": 5726, + "parent_product_id": 2473, + "root_product_id": 2464, + "update_tag": "SLE-Module-Desktop-Applications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP5/s390x/product_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Desktop-Applications15-SP5-Debuginfo-Pool for s390x", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-devtools15-sp5-updates-s390x", + "parent_channel_label": "sle-product-sles15-sp5-pool-s390x", + "product_id": 2489, + "repository_id": 5783, + "parent_product_id": 2477, + "root_product_id": 2464, + "update_tag": "SLE-Module-Development-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15-SP5/s390x/update/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-DevTools15-SP5-Updates for s390x", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-devtools15-sp5-debuginfo-updates-s390x", + "parent_channel_label": "sle-product-sles15-sp5-pool-s390x", + "product_id": 2489, + "repository_id": 5784, + "parent_product_id": 2477, + "root_product_id": 2464, + "update_tag": "SLE-Module-Development-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15-SP5/s390x/update_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-DevTools15-SP5-Debuginfo-Updates for s390x", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-devtools15-sp5-pool-s390x", + "parent_channel_label": "sle-product-sles15-sp5-pool-s390x", + "product_id": 2489, + "repository_id": 5785, + "parent_product_id": 2477, + "root_product_id": 2464, + "update_tag": "SLE-Module-Development-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP5/s390x/product/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-DevTools15-SP5-Pool for s390x", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-devtools15-sp5-debuginfo-pool-s390x", + "parent_channel_label": "sle-product-sles15-sp5-pool-s390x", + "product_id": 2489, + "repository_id": 5786, + "parent_product_id": 2477, + "root_product_id": 2464, + "update_tag": "SLE-Module-Development-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP5/s390x/product_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-DevTools15-SP5-Debuginfo-Pool for s390x", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-server-applications15-sp5-updates-s390x", + "parent_channel_label": "sle-product-sles15-sp5-pool-s390x", + "product_id": 2481, + "repository_id": 5743, + "parent_product_id": 2473, + "root_product_id": 2464, + "update_tag": "SLE-Module-Server-Applications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15-SP5/s390x/update/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Server-Applications15-SP5-Updates for s390x", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-server-applications15-sp5-debuginfo-updates-s390x", + "parent_channel_label": "sle-product-sles15-sp5-pool-s390x", + "product_id": 2481, + "repository_id": 5744, + "parent_product_id": 2473, + "root_product_id": 2464, + "update_tag": "SLE-Module-Server-Applications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15-SP5/s390x/update_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Server-Applications15-SP5-Debuginfo-Updates for s390x", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-server-applications15-sp5-pool-s390x", + "parent_channel_label": "sle-product-sles15-sp5-pool-s390x", + "product_id": 2481, + "repository_id": 5745, + "parent_product_id": 2473, + "root_product_id": 2464, + "update_tag": "SLE-Module-Server-Applications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP5/s390x/product/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Server-Applications15-SP5-Pool for s390x", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-server-applications15-sp5-debuginfo-pool-s390x", + "parent_channel_label": "sle-product-sles15-sp5-pool-s390x", + "product_id": 2481, + "repository_id": 5746, + "parent_product_id": 2473, + "root_product_id": 2464, + "update_tag": "SLE-Module-Server-Applications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP5/s390x/product_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Server-Applications15-SP5-Debuginfo-Pool for s390x", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting15-sp5-updates-s390x", + "parent_channel_label": "sle-product-sles15-sp5-pool-s390x", + "product_id": 2493, + "repository_id": 5803, + "parent_product_id": 2481, + "root_product_id": 2464, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/15-SP5/s390x/update/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Web-Scripting15-SP5-Updates for s390x", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting15-sp5-debuginfo-updates-s390x", + "parent_channel_label": "sle-product-sles15-sp5-pool-s390x", + "product_id": 2493, + "repository_id": 5804, + "parent_product_id": 2481, + "root_product_id": 2464, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/15-SP5/s390x/update_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Web-Scripting15-SP5-Debuginfo-Updates for s390x", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting15-sp5-pool-s390x", + "parent_channel_label": "sle-product-sles15-sp5-pool-s390x", + "product_id": 2493, + "repository_id": 5805, + "parent_product_id": 2481, + "root_product_id": 2464, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP5/s390x/product/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Web-Scripting15-SP5-Pool for s390x", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting15-sp5-debuginfo-pool-s390x", + "parent_channel_label": "sle-product-sles15-sp5-pool-s390x", + "product_id": 2493, + "repository_id": 5806, + "parent_product_id": 2481, + "root_product_id": 2464, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP5/s390x/product_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Web-Scripting15-SP5-Debuginfo-Pool for s390x", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-legacy15-sp5-updates-s390x", + "parent_channel_label": "sle-product-sles15-sp5-pool-s390x", + "product_id": 2499, + "repository_id": 5833, + "parent_product_id": 2481, + "root_product_id": 2464, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/15-SP5/s390x/update/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy15-SP5-Updates for s390x", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-legacy15-sp5-debuginfo-updates-s390x", + "parent_channel_label": "sle-product-sles15-sp5-pool-s390x", + "product_id": 2499, + "repository_id": 5834, + "parent_product_id": 2481, + "root_product_id": 2464, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/15-SP5/s390x/update_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy15-SP5-Debuginfo-Updates for s390x", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-legacy15-sp5-pool-s390x", + "parent_channel_label": "sle-product-sles15-sp5-pool-s390x", + "product_id": 2499, + "repository_id": 5835, + "parent_product_id": 2481, + "root_product_id": 2464, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15-SP5/s390x/product/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy15-SP5-Pool for s390x", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-legacy15-sp5-debuginfo-pool-s390x", + "parent_channel_label": "sle-product-sles15-sp5-pool-s390x", + "product_id": 2499, + "repository_id": 5836, + "parent_product_id": 2481, + "root_product_id": 2464, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15-SP5/s390x/product_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy15-SP5-Debuginfo-Pool for s390x", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud15-sp5-updates-s390x", + "parent_channel_label": "sle-product-sles15-sp5-pool-s390x", + "product_id": 2503, + "repository_id": 5853, + "parent_product_id": 2481, + "root_product_id": 2464, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/15-SP5/s390x/update/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud15-SP5-Updates for s390x", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud15-sp5-debuginfo-updates-s390x", + "parent_channel_label": "sle-product-sles15-sp5-pool-s390x", + "product_id": 2503, + "repository_id": 5854, + "parent_product_id": 2481, + "root_product_id": 2464, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/15-SP5/s390x/update_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud15-SP5-Debuginfo-Updates for s390x", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud15-sp5-pool-s390x", + "parent_channel_label": "sle-product-sles15-sp5-pool-s390x", + "product_id": 2503, + "repository_id": 5855, + "parent_product_id": 2481, + "root_product_id": 2464, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP5/s390x/product/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud15-SP5-Pool for s390x", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud15-sp5-debuginfo-pool-s390x", + "parent_channel_label": "sle-product-sles15-sp5-pool-s390x", + "product_id": 2503, + "repository_id": 5856, + "parent_product_id": 2481, + "root_product_id": 2464, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP5/s390x/product_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud15-SP5-Debuginfo-Pool for s390x", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-ha15-sp5-updates-s390x", + "parent_channel_label": "sle-product-sles15-sp5-pool-s390x", + "product_id": 2516, + "repository_id": 5918, + "parent_product_id": 2481, + "root_product_id": 2464, + "update_tag": "SLE-Product-HA", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-HA/15-SP5/s390x/update/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HA15-SP5-Updates for s390x", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-ha15-sp5-debuginfo-updates-s390x", + "parent_channel_label": "sle-product-sles15-sp5-pool-s390x", + "product_id": 2516, + "repository_id": 5919, + "parent_product_id": 2481, + "root_product_id": 2464, + "update_tag": "SLE-Product-HA", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-HA/15-SP5/s390x/update_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HA15-SP5-Debuginfo-Updates for s390x", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-ha15-sp5-pool-s390x", + "parent_channel_label": "sle-product-sles15-sp5-pool-s390x", + "product_id": 2516, + "repository_id": 5920, + "parent_product_id": 2481, + "root_product_id": 2464, + "update_tag": "SLE-Product-HA", + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP5/s390x/product/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HA15-SP5-Pool for s390x", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-ha15-sp5-debuginfo-pool-s390x", + "parent_channel_label": "sle-product-sles15-sp5-pool-s390x", + "product_id": 2516, + "repository_id": 5921, + "parent_product_id": 2481, + "root_product_id": 2464, + "update_tag": "SLE-Product-HA", + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP5/s390x/product_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HA15-SP5-Debuginfo-Pool for s390x", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-containers15-sp5-updates-s390x", + "parent_channel_label": "sle-product-sles15-sp5-pool-s390x", + "product_id": 2485, + "repository_id": 5763, + "parent_product_id": 2473, + "root_product_id": 2464, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/15-SP5/s390x/update/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers15-SP5-Updates for s390x", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-containers15-sp5-debuginfo-updates-s390x", + "parent_channel_label": "sle-product-sles15-sp5-pool-s390x", + "product_id": 2485, + "repository_id": 5764, + "parent_product_id": 2473, + "root_product_id": 2464, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/15-SP5/s390x/update_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers15-SP5-Debuginfo-Updates for s390x", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-containers15-sp5-pool-s390x", + "parent_channel_label": "sle-product-sles15-sp5-pool-s390x", + "product_id": 2485, + "repository_id": 5765, + "parent_product_id": 2473, + "root_product_id": 2464, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP5/s390x/product/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers15-SP5-Pool for s390x", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-containers15-sp5-debuginfo-pool-s390x", + "parent_channel_label": "sle-product-sles15-sp5-pool-s390x", + "product_id": 2485, + "repository_id": 5766, + "parent_product_id": 2473, + "root_product_id": 2464, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP5/s390x/product_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers15-SP5-Debuginfo-Pool for s390x", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-transactional-server15-sp5-updates-s390x", + "parent_channel_label": "sle-product-sles15-sp5-pool-s390x", + "product_id": 2507, + "repository_id": 5873, + "parent_product_id": 2473, + "root_product_id": 2464, + "update_tag": "SLE-Module-Transactional-Server", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Transactional-Server/15-SP5/s390x/update/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Transactional-Server15-SP5-Updates for s390x", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-transactional-server15-sp5-debuginfo-updates-s390x", + "parent_channel_label": "sle-product-sles15-sp5-pool-s390x", + "product_id": 2507, + "repository_id": 5874, + "parent_product_id": 2473, + "root_product_id": 2464, + "update_tag": "SLE-Module-Transactional-Server", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Transactional-Server/15-SP5/s390x/update_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Transactional-Server15-SP5-Debuginfo-Updates for s390x", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-transactional-server15-sp5-pool-s390x", + "parent_channel_label": "sle-product-sles15-sp5-pool-s390x", + "product_id": 2507, + "repository_id": 5875, + "parent_product_id": 2473, + "root_product_id": 2464, + "update_tag": "SLE-Module-Transactional-Server", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Transactional-Server/15-SP5/s390x/product/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Transactional-Server15-SP5-Pool for s390x", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-transactional-server15-sp5-debuginfo-pool-s390x", + "parent_channel_label": "sle-product-sles15-sp5-pool-s390x", + "product_id": 2507, + "repository_id": 5876, + "parent_product_id": 2473, + "root_product_id": 2464, + "update_tag": "SLE-Module-Transactional-Server", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Transactional-Server/15-SP5/s390x/product_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Transactional-Server15-SP5-Debuginfo-Pool for s390x", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-live-patching15-sp5-updates-s390x", + "parent_channel_label": "sle-product-sles15-sp5-pool-s390x", + "product_id": 2510, + "repository_id": 5888, + "parent_product_id": 2473, + "root_product_id": 2464, + "update_tag": "SLE-Module-Live-Patching", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Live-Patching/15-SP5/s390x/update/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Live-Patching15-SP5-Updates for s390x", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-live-patching15-sp5-debuginfo-updates-s390x", + "parent_channel_label": "sle-product-sles15-sp5-pool-s390x", + "product_id": 2510, + "repository_id": 5889, + "parent_product_id": 2473, + "root_product_id": 2464, + "update_tag": "SLE-Module-Live-Patching", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Live-Patching/15-SP5/s390x/update_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Live-Patching15-SP5-Debuginfo-Updates for s390x", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-live-patching15-sp5-pool-s390x", + "parent_channel_label": "sle-product-sles15-sp5-pool-s390x", + "product_id": 2510, + "repository_id": 5890, + "parent_product_id": 2473, + "root_product_id": 2464, + "update_tag": "SLE-Module-Live-Patching", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Live-Patching/15-SP5/s390x/product/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Live-Patching15-SP5-Pool for s390x", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-live-patching15-sp5-debuginfo-pool-s390x", + "parent_channel_label": "sle-product-sles15-sp5-pool-s390x", + "product_id": 2510, + "repository_id": 5891, + "parent_product_id": 2473, + "root_product_id": 2464, + "update_tag": "SLE-Module-Live-Patching", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Live-Patching/15-SP5/s390x/product_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Live-Patching15-SP5-Debuginfo-Pool for s390x", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-python3-15-sp5-updates-s390x", + "parent_channel_label": "sle-product-sles15-sp5-pool-s390x", + "product_id": 2535, + "repository_id": 5953, + "parent_product_id": 2473, + "root_product_id": 2464, + "update_tag": "SLE-Module-Python3", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Python3/15-SP5/s390x/update/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Python3-15-SP5-Updates for s390x", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-python3-15-sp5-debuginfo-updates-s390x", + "parent_channel_label": "sle-product-sles15-sp5-pool-s390x", + "product_id": 2535, + "repository_id": 5954, + "parent_product_id": 2473, + "root_product_id": 2464, + "update_tag": "SLE-Module-Python3", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Python3/15-SP5/s390x/update_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Python3-15-SP5-Debuginfo-Updates for s390x", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-python3-15-sp5-pool-s390x", + "parent_channel_label": "sle-product-sles15-sp5-pool-s390x", + "product_id": 2535, + "repository_id": 5955, + "parent_product_id": 2473, + "root_product_id": 2464, + "update_tag": "SLE-Module-Python3", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Python3/15-SP5/s390x/product/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Python3-15-SP5-Pool for s390x", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-python3-15-sp5-debuginfo-pool-s390x", + "parent_channel_label": "sle-product-sles15-sp5-pool-s390x", + "product_id": 2535, + "repository_id": 5956, + "parent_product_id": 2473, + "root_product_id": 2464, + "update_tag": "SLE-Module-Python3", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Python3/15-SP5/s390x/product_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Python3-15-SP5-Debuginfo-Pool for s390x", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-packagehub-15-sp5-backports-pool-s390x", + "parent_channel_label": "sle-product-sles15-sp5-pool-s390x", + "product_id": 2561, + "repository_id": 6105, + "parent_product_id": 2473, + "root_product_id": 2464, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-15-SP5_s390x/standard/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-15-SP5-Backports-Pool for s390x", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-packagehub-15-sp5-backports-debuginfo-s390x", + "parent_channel_label": "sle-product-sles15-sp5-pool-s390x", + "product_id": 2561, + "repository_id": 6106, + "parent_product_id": 2473, + "root_product_id": 2464, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-15-SP5_s390x/standard_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-15-SP5-Backports-Debuginfo for s390x", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-packagehub-subpackages15-sp5-updates-s390x", + "parent_channel_label": "sle-product-sles15-sp5-pool-s390x", + "product_id": 2561, + "repository_id": 6107, + "parent_product_id": 2473, + "root_product_id": 2464, + "update_tag": "SLE-Module-Packagehub-Subpackages", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP5/s390x/update/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Packagehub-Subpackages15-SP5-Updates for s390x", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-packagehub-subpackages15-sp5-debuginfo-updates-s390x", + "parent_channel_label": "sle-product-sles15-sp5-pool-s390x", + "product_id": 2561, + "repository_id": 6108, + "parent_product_id": 2473, + "root_product_id": 2464, + "update_tag": "SLE-Module-Packagehub-Subpackages", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP5/s390x/update_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Packagehub-Subpackages15-SP5-Debuginfo-Updates for s390x", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-packagehub-15-sp5-pool-s390x", + "parent_channel_label": "sle-product-sles15-sp5-pool-s390x", + "product_id": 2561, + "repository_id": 6109, + "parent_product_id": 2473, + "root_product_id": 2464, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-15-SP5_s390x/product/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-15-SP5-Pool for s390x", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-packagehub-subpackages15-sp5-pool-s390x", + "parent_channel_label": "sle-product-sles15-sp5-pool-s390x", + "product_id": 2561, + "repository_id": 6110, + "parent_product_id": 2473, + "root_product_id": 2464, + "update_tag": "SLE-Module-Packagehub-Subpackages", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP5/s390x/product/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Packagehub-Subpackages15-SP5-Pool for s390x", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-packagehub-subpackages15-sp5-debuginfo-pool-s390x", + "parent_channel_label": "sle-product-sles15-sp5-pool-s390x", + "product_id": 2561, + "repository_id": 6111, + "parent_product_id": 2473, + "root_product_id": 2464, + "update_tag": "SLE-Module-Packagehub-Subpackages", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP5/s390x/product_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Packagehub-Subpackages15-SP5-Debuginfo-Pool for s390x", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-certifications-15-sp5-updates-s390x", + "parent_channel_label": "sle-product-sles15-sp5-pool-s390x", + "product_id": 2557, + "repository_id": 6075, + "parent_product_id": 2464, + "root_product_id": 2464, + "update_tag": "SLE-Module-Certifications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Certifications/15-SP5/s390x/update/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Certifications-15-SP5-Updates for s390x", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-certifications-15-sp5-debuginfo-updates-s390x", + "parent_channel_label": "sle-product-sles15-sp5-pool-s390x", + "product_id": 2557, + "repository_id": 6076, + "parent_product_id": 2464, + "root_product_id": 2464, + "update_tag": "SLE-Module-Certifications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Certifications/15-SP5/s390x/update_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Certifications-15-SP5-Debuginfo-Updates for s390x", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-certifications-15-sp5-pool-s390x", + "parent_channel_label": "sle-product-sles15-sp5-pool-s390x", + "product_id": 2557, + "repository_id": 6077, + "parent_product_id": 2464, + "root_product_id": 2464, + "update_tag": "SLE-Module-Certifications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Certifications/15-SP5/s390x/product/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Certifications-15-SP5-Pool for s390x", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-certifications-15-sp5-debuginfo-pool-s390x", + "parent_channel_label": "sle-product-sles15-sp5-pool-s390x", + "product_id": 2557, + "repository_id": 6078, + "parent_product_id": 2464, + "root_product_id": 2464, + "update_tag": "SLE-Module-Certifications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Certifications/15-SP5/s390x/product_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Certifications-15-SP5-Debuginfo-Pool for s390x", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-sles15-sp5-updates-x86_64", + "parent_channel_label": "sle-product-sles15-sp5-pool-x86_64", + "product_id": 2465, + "repository_id": 5661, + "parent_product_id": null, + "root_product_id": 2465, + "update_tag": "SLE-Product-SLES", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-SLES/15-SP5/x86_64/update/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-SLES15-SP5-Updates for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-sles15-sp5-debuginfo-updates-x86_64", + "parent_channel_label": "sle-product-sles15-sp5-pool-x86_64", + "product_id": 2465, + "repository_id": 5662, + "parent_product_id": null, + "root_product_id": 2465, + "update_tag": "SLE-Product-SLES", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-SLES/15-SP5/x86_64/update_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-SLES15-SP5-Debuginfo-Updates for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle15-sp5-installer-updates-x86_64", + "parent_channel_label": "sle-product-sles15-sp5-pool-x86_64", + "product_id": 2465, + "repository_id": 5663, + "parent_product_id": null, + "root_product_id": 2465, + "update_tag": "SLE-INSTALLER", + "url": "https://updates.suse.com/SUSE/Updates/SLE-INSTALLER/15-SP5/x86_64/update/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE15-SP5-Installer-Updates for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-sles15-sp5-pool-x86_64", + "parent_channel_label": null, + "product_id": 2465, + "repository_id": 5664, + "parent_product_id": null, + "root_product_id": 2465, + "update_tag": "SLE-Product-SLES", + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-SLES/15-SP5/x86_64/product/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-SLES15-SP5-Pool for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-sles15-sp5-debuginfo-pool-x86_64", + "parent_channel_label": "sle-product-sles15-sp5-pool-x86_64", + "product_id": 2465, + "repository_id": 5665, + "parent_product_id": null, + "root_product_id": 2465, + "update_tag": "SLE-Product-SLES", + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-SLES/15-SP5/x86_64/product_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-SLES15-SP5-Debuginfo-Pool for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-basesystem15-sp5-updates-x86_64", + "parent_channel_label": "sle-product-sles15-sp5-pool-x86_64", + "product_id": 2474, + "repository_id": 5708, + "parent_product_id": 2465, + "root_product_id": 2465, + "update_tag": "SLE-Module-Basesystem", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15-SP5/x86_64/update/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Basesystem15-SP5-Updates for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-basesystem15-sp5-debuginfo-updates-x86_64", + "parent_channel_label": "sle-product-sles15-sp5-pool-x86_64", + "product_id": 2474, + "repository_id": 5709, + "parent_product_id": 2465, + "root_product_id": 2465, + "update_tag": "SLE-Module-Basesystem", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15-SP5/x86_64/update_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Basesystem15-SP5-Debuginfo-Updates for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-basesystem15-sp5-pool-x86_64", + "parent_channel_label": "sle-product-sles15-sp5-pool-x86_64", + "product_id": 2474, + "repository_id": 5710, + "parent_product_id": 2465, + "root_product_id": 2465, + "update_tag": "SLE-Module-Basesystem", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP5/x86_64/product/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Basesystem15-SP5-Pool for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-basesystem15-sp5-debuginfo-pool-x86_64", + "parent_channel_label": "sle-product-sles15-sp5-pool-x86_64", + "product_id": 2474, + "repository_id": 5711, + "parent_product_id": 2465, + "root_product_id": 2465, + "update_tag": "SLE-Module-Basesystem", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP5/x86_64/product_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Basesystem15-SP5-Debuginfo-Pool for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-manager-tools15-updates-x86_64-sp5", + "parent_channel_label": "sle-product-sles15-sp5-pool-x86_64", + "product_id": 1712, + "repository_id": 2932, + "parent_product_id": 2474, + "root_product_id": 2465, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/15/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-Updates for x86_64 SP5", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools15-debuginfo-updates-x86_64-sp5", + "parent_channel_label": "sle-product-sles15-sp5-pool-x86_64", + "product_id": 1712, + "repository_id": 2933, + "parent_product_id": 2474, + "root_product_id": 2465, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/15/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-Debuginfo-Updates for x86_64 SP5", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools15-pool-x86_64-sp5", + "parent_channel_label": "sle-product-sles15-sp5-pool-x86_64", + "product_id": 1712, + "repository_id": 2934, + "parent_product_id": 2474, + "root_product_id": 2465, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/15/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-Pool for x86_64 SP5", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools15-debuginfo-pool-x86_64-sp5", + "parent_channel_label": "sle-product-sles15-sp5-pool-x86_64", + "product_id": 1712, + "repository_id": 2935, + "parent_product_id": 2474, + "root_product_id": 2465, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/15/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-Debuginfo-Pool for x86_64 SP5", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools15-beta-updates-x86_64-sp5", + "parent_channel_label": "sle-product-sles15-sp5-pool-x86_64", + "product_id": 1928, + "repository_id": 3897, + "parent_product_id": 1712, + "root_product_id": 2465, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/15-BETA/x86_64/update/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-BETA-Updates for x86_64 SP5", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools15-beta-debuginfo-updates-x86_64-sp5", + "parent_channel_label": "sle-product-sles15-sp5-pool-x86_64", + "product_id": 1928, + "repository_id": 3898, + "parent_product_id": 1712, + "root_product_id": 2465, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/15-BETA/x86_64/update_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-BETA-Debuginfo-Updates for x86_64 SP5", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools15-beta-pool-x86_64-sp5", + "parent_channel_label": "sle-product-sles15-sp5-pool-x86_64", + "product_id": 1928, + "repository_id": 3908, + "parent_product_id": 1712, + "root_product_id": 2465, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/15-BETA/x86_64/product/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-BETA-Pool for x86_64 SP5", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools15-beta-debuginfo-pool-x86_64-sp5", + "parent_channel_label": "sle-product-sles15-sp5-pool-x86_64", + "product_id": 1928, + "repository_id": 3909, + "parent_product_id": 1712, + "root_product_id": 2465, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/15-BETA/x86_64/product_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-BETA-Debuginfo-Pool for x86_64 SP5", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-module-desktop-applications15-sp5-updates-x86_64", + "parent_channel_label": "sle-product-sles15-sp5-pool-x86_64", + "product_id": 2478, + "repository_id": 5728, + "parent_product_id": 2474, + "root_product_id": 2465, + "update_tag": "SLE-Module-Desktop-Applications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15-SP5/x86_64/update/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Desktop-Applications15-SP5-Updates for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-desktop-applications15-sp5-debuginfo-updates-x86_64", + "parent_channel_label": "sle-product-sles15-sp5-pool-x86_64", + "product_id": 2478, + "repository_id": 5729, + "parent_product_id": 2474, + "root_product_id": 2465, + "update_tag": "SLE-Module-Desktop-Applications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15-SP5/x86_64/update_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Desktop-Applications15-SP5-Debuginfo-Updates for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-desktop-applications15-sp5-pool-x86_64", + "parent_channel_label": "sle-product-sles15-sp5-pool-x86_64", + "product_id": 2478, + "repository_id": 5730, + "parent_product_id": 2474, + "root_product_id": 2465, + "update_tag": "SLE-Module-Desktop-Applications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP5/x86_64/product/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Desktop-Applications15-SP5-Pool for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-desktop-applications15-sp5-debuginfo-pool-x86_64", + "parent_channel_label": "sle-product-sles15-sp5-pool-x86_64", + "product_id": 2478, + "repository_id": 5731, + "parent_product_id": 2474, + "root_product_id": 2465, + "update_tag": "SLE-Module-Desktop-Applications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP5/x86_64/product_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Desktop-Applications15-SP5-Debuginfo-Pool for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-devtools15-sp5-updates-x86_64", + "parent_channel_label": "sle-product-sles15-sp5-pool-x86_64", + "product_id": 2490, + "repository_id": 5788, + "parent_product_id": 2478, + "root_product_id": 2465, + "update_tag": "SLE-Module-Development-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15-SP5/x86_64/update/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-DevTools15-SP5-Updates for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-devtools15-sp5-debuginfo-updates-x86_64", + "parent_channel_label": "sle-product-sles15-sp5-pool-x86_64", + "product_id": 2490, + "repository_id": 5789, + "parent_product_id": 2478, + "root_product_id": 2465, + "update_tag": "SLE-Module-Development-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15-SP5/x86_64/update_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-DevTools15-SP5-Debuginfo-Updates for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-devtools15-sp5-pool-x86_64", + "parent_channel_label": "sle-product-sles15-sp5-pool-x86_64", + "product_id": 2490, + "repository_id": 5790, + "parent_product_id": 2478, + "root_product_id": 2465, + "update_tag": "SLE-Module-Development-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP5/x86_64/product/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-DevTools15-SP5-Pool for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-devtools15-sp5-debuginfo-pool-x86_64", + "parent_channel_label": "sle-product-sles15-sp5-pool-x86_64", + "product_id": 2490, + "repository_id": 5791, + "parent_product_id": 2478, + "root_product_id": 2465, + "update_tag": "SLE-Module-Development-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP5/x86_64/product_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-DevTools15-SP5-Debuginfo-Pool for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-nvidia-compute-15-updates-x86_64-we-sp5", + "parent_channel_label": "sle-product-sles15-sp5-pool-x86_64", + "product_id": 2131, + "repository_id": 4554, + "parent_product_id": 2490, + "root_product_id": 2465, + "update_tag": "SLE-Module-NVIDIA-Compute", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-NVIDIA-Compute/15/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-NVIDIA-Compute-15-Updates for x86_64 WE SP5", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-nvidia-compute-15-pool-x86_64-we-sp5", + "parent_channel_label": "sle-product-sles15-sp5-pool-x86_64", + "product_id": 2131, + "repository_id": 4556, + "parent_product_id": 2490, + "root_product_id": 2465, + "update_tag": "SLE-Module-NVIDIA-Compute", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-NVIDIA-Compute/15/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-NVIDIA-Compute-15-Pool for x86_64 WE SP5", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "nvidia-compute-sle-15-x86_64-we-sp5", + "parent_channel_label": "sle-product-sles15-sp5-pool-x86_64", + "product_id": 2131, + "repository_id": 4563, + "parent_product_id": 2490, + "root_product_id": 2465, + "update_tag": null, + "url": "https://developer.download.nvidia.com/compute/cuda/repos/sles15/x86_64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "NVIDIA-Compute-SLE-15 for x86_64 WE SP5", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-15-sp5-desktop-nvidia-driver-x86_64-we", + "parent_channel_label": "sle-product-sles15-sp5-pool-x86_64", + "product_id": 2513, + "repository_id": 5680, + "parent_product_id": 2478, + "root_product_id": 2465, + "update_tag": null, + "url": "https://download.nvidia.com/suse/sle15sp5/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-15-SP5-Desktop-NVIDIA-Driver for x86_64 WE", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-we15-sp5-updates-x86_64", + "parent_channel_label": "sle-product-sles15-sp5-pool-x86_64", + "product_id": 2513, + "repository_id": 5903, + "parent_product_id": 2478, + "root_product_id": 2465, + "update_tag": "SLE-Product-WE", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-WE/15-SP5/x86_64/update/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-WE15-SP5-Updates for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-we15-sp5-debuginfo-updates-x86_64", + "parent_channel_label": "sle-product-sles15-sp5-pool-x86_64", + "product_id": 2513, + "repository_id": 5904, + "parent_product_id": 2478, + "root_product_id": 2465, + "update_tag": "SLE-Product-WE", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-WE/15-SP5/x86_64/update_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-WE15-SP5-Debuginfo-Updates for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-we15-sp5-pool-x86_64", + "parent_channel_label": "sle-product-sles15-sp5-pool-x86_64", + "product_id": 2513, + "repository_id": 5905, + "parent_product_id": 2478, + "root_product_id": 2465, + "update_tag": "SLE-Product-WE", + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-WE/15-SP5/x86_64/product/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-WE15-SP5-Pool for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-we15-sp5-debuginfo-pool-x86_64", + "parent_channel_label": "sle-product-sles15-sp5-pool-x86_64", + "product_id": 2513, + "repository_id": 5906, + "parent_product_id": 2478, + "root_product_id": 2465, + "update_tag": "SLE-Product-WE", + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-WE/15-SP5/x86_64/product_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-WE15-SP5-Debuginfo-Pool for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-server-applications15-sp5-updates-x86_64", + "parent_channel_label": "sle-product-sles15-sp5-pool-x86_64", + "product_id": 2482, + "repository_id": 5748, + "parent_product_id": 2474, + "root_product_id": 2465, + "update_tag": "SLE-Module-Server-Applications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15-SP5/x86_64/update/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Server-Applications15-SP5-Updates for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-server-applications15-sp5-debuginfo-updates-x86_64", + "parent_channel_label": "sle-product-sles15-sp5-pool-x86_64", + "product_id": 2482, + "repository_id": 5749, + "parent_product_id": 2474, + "root_product_id": 2465, + "update_tag": "SLE-Module-Server-Applications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15-SP5/x86_64/update_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Server-Applications15-SP5-Debuginfo-Updates for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-server-applications15-sp5-pool-x86_64", + "parent_channel_label": "sle-product-sles15-sp5-pool-x86_64", + "product_id": 2482, + "repository_id": 5750, + "parent_product_id": 2474, + "root_product_id": 2465, + "update_tag": "SLE-Module-Server-Applications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP5/x86_64/product/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Server-Applications15-SP5-Pool for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-server-applications15-sp5-debuginfo-pool-x86_64", + "parent_channel_label": "sle-product-sles15-sp5-pool-x86_64", + "product_id": 2482, + "repository_id": 5751, + "parent_product_id": 2474, + "root_product_id": 2465, + "update_tag": "SLE-Module-Server-Applications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP5/x86_64/product_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Server-Applications15-SP5-Debuginfo-Pool for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting15-sp5-updates-x86_64", + "parent_channel_label": "sle-product-sles15-sp5-pool-x86_64", + "product_id": 2494, + "repository_id": 5808, + "parent_product_id": 2482, + "root_product_id": 2465, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/15-SP5/x86_64/update/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Web-Scripting15-SP5-Updates for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting15-sp5-debuginfo-updates-x86_64", + "parent_channel_label": "sle-product-sles15-sp5-pool-x86_64", + "product_id": 2494, + "repository_id": 5809, + "parent_product_id": 2482, + "root_product_id": 2465, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/15-SP5/x86_64/update_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Web-Scripting15-SP5-Debuginfo-Updates for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting15-sp5-pool-x86_64", + "parent_channel_label": "sle-product-sles15-sp5-pool-x86_64", + "product_id": 2494, + "repository_id": 5810, + "parent_product_id": 2482, + "root_product_id": 2465, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP5/x86_64/product/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Web-Scripting15-SP5-Pool for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting15-sp5-debuginfo-pool-x86_64", + "parent_channel_label": "sle-product-sles15-sp5-pool-x86_64", + "product_id": 2494, + "repository_id": 5811, + "parent_product_id": 2482, + "root_product_id": 2465, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP5/x86_64/product_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Web-Scripting15-SP5-Debuginfo-Pool for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-legacy15-sp5-updates-x86_64", + "parent_channel_label": "sle-product-sles15-sp5-pool-x86_64", + "product_id": 2500, + "repository_id": 5838, + "parent_product_id": 2482, + "root_product_id": 2465, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/15-SP5/x86_64/update/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy15-SP5-Updates for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-legacy15-sp5-debuginfo-updates-x86_64", + "parent_channel_label": "sle-product-sles15-sp5-pool-x86_64", + "product_id": 2500, + "repository_id": 5839, + "parent_product_id": 2482, + "root_product_id": 2465, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/15-SP5/x86_64/update_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy15-SP5-Debuginfo-Updates for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-legacy15-sp5-pool-x86_64", + "parent_channel_label": "sle-product-sles15-sp5-pool-x86_64", + "product_id": 2500, + "repository_id": 5840, + "parent_product_id": 2482, + "root_product_id": 2465, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15-SP5/x86_64/product/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy15-SP5-Pool for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-legacy15-sp5-debuginfo-pool-x86_64", + "parent_channel_label": "sle-product-sles15-sp5-pool-x86_64", + "product_id": 2500, + "repository_id": 5841, + "parent_product_id": 2482, + "root_product_id": 2465, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15-SP5/x86_64/product_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy15-SP5-Debuginfo-Pool for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud15-sp5-updates-x86_64", + "parent_channel_label": "sle-product-sles15-sp5-pool-x86_64", + "product_id": 2504, + "repository_id": 5858, + "parent_product_id": 2482, + "root_product_id": 2465, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/15-SP5/x86_64/update/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud15-SP5-Updates for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud15-sp5-debuginfo-updates-x86_64", + "parent_channel_label": "sle-product-sles15-sp5-pool-x86_64", + "product_id": 2504, + "repository_id": 5859, + "parent_product_id": 2482, + "root_product_id": 2465, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/15-SP5/x86_64/update_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud15-SP5-Debuginfo-Updates for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud15-sp5-pool-x86_64", + "parent_channel_label": "sle-product-sles15-sp5-pool-x86_64", + "product_id": 2504, + "repository_id": 5860, + "parent_product_id": 2482, + "root_product_id": 2465, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP5/x86_64/product/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud15-SP5-Pool for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud15-sp5-debuginfo-pool-x86_64", + "parent_channel_label": "sle-product-sles15-sp5-pool-x86_64", + "product_id": 2504, + "repository_id": 5861, + "parent_product_id": 2482, + "root_product_id": 2465, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP5/x86_64/product_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud15-SP5-Debuginfo-Pool for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-ha15-sp5-updates-x86_64", + "parent_channel_label": "sle-product-sles15-sp5-pool-x86_64", + "product_id": 2517, + "repository_id": 5923, + "parent_product_id": 2482, + "root_product_id": 2465, + "update_tag": "SLE-Product-HA", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-HA/15-SP5/x86_64/update/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HA15-SP5-Updates for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-ha15-sp5-debuginfo-updates-x86_64", + "parent_channel_label": "sle-product-sles15-sp5-pool-x86_64", + "product_id": 2517, + "repository_id": 5924, + "parent_product_id": 2482, + "root_product_id": 2465, + "update_tag": "SLE-Product-HA", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-HA/15-SP5/x86_64/update_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HA15-SP5-Debuginfo-Updates for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-ha15-sp5-pool-x86_64", + "parent_channel_label": "sle-product-sles15-sp5-pool-x86_64", + "product_id": 2517, + "repository_id": 5925, + "parent_product_id": 2482, + "root_product_id": 2465, + "update_tag": "SLE-Product-HA", + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP5/x86_64/product/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HA15-SP5-Pool for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-ha15-sp5-debuginfo-pool-x86_64", + "parent_channel_label": "sle-product-sles15-sp5-pool-x86_64", + "product_id": 2517, + "repository_id": 5926, + "parent_product_id": 2482, + "root_product_id": 2465, + "update_tag": "SLE-Product-HA", + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP5/x86_64/product_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HA15-SP5-Debuginfo-Pool for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-sap-business-one15-sp5-updates-x86_64-sles", + "parent_channel_label": "sle-product-sles15-sp5-pool-x86_64", + "product_id": 2589, + "repository_id": 6203, + "parent_product_id": 2482, + "root_product_id": 2465, + "update_tag": "SLE-Module-SAP-Business-One", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-SAP-Business-One/15-SP5/x86_64/update/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-SAP-Business-One15-SP5-Updates for x86_64 SLES", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-sap-business-one15-sp5-debuginfo-updates-x86_64-sles", + "parent_channel_label": "sle-product-sles15-sp5-pool-x86_64", + "product_id": 2589, + "repository_id": 6204, + "parent_product_id": 2482, + "root_product_id": 2465, + "update_tag": "SLE-Module-SAP-Business-One", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-SAP-Business-One/15-SP5/x86_64/update_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-SAP-Business-One15-SP5-Debuginfo-Updates for x86_64 SLES", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-sap-business-one15-sp5-pool-x86_64-sles", + "parent_channel_label": "sle-product-sles15-sp5-pool-x86_64", + "product_id": 2589, + "repository_id": 6205, + "parent_product_id": 2482, + "root_product_id": 2465, + "update_tag": "SLE-Module-SAP-Business-One", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-SAP-Business-One/15-SP5/x86_64/product/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-SAP-Business-One15-SP5-Pool for x86_64 SLES", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-sap-business-one15-sp5-debuginfo-pool-x86_64-sles", + "parent_channel_label": "sle-product-sles15-sp5-pool-x86_64", + "product_id": 2589, + "repository_id": 6206, + "parent_product_id": 2482, + "root_product_id": 2465, + "update_tag": "SLE-Module-SAP-Business-One", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-SAP-Business-One/15-SP5/x86_64/product_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-SAP-Business-One15-SP5-Debuginfo-Pool for x86_64 SLES", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-containers15-sp5-updates-x86_64", + "parent_channel_label": "sle-product-sles15-sp5-pool-x86_64", + "product_id": 2486, + "repository_id": 5768, + "parent_product_id": 2474, + "root_product_id": 2465, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/15-SP5/x86_64/update/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers15-SP5-Updates for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-containers15-sp5-debuginfo-updates-x86_64", + "parent_channel_label": "sle-product-sles15-sp5-pool-x86_64", + "product_id": 2486, + "repository_id": 5769, + "parent_product_id": 2474, + "root_product_id": 2465, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/15-SP5/x86_64/update_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers15-SP5-Debuginfo-Updates for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-containers15-sp5-pool-x86_64", + "parent_channel_label": "sle-product-sles15-sp5-pool-x86_64", + "product_id": 2486, + "repository_id": 5770, + "parent_product_id": 2474, + "root_product_id": 2465, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP5/x86_64/product/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers15-SP5-Pool for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-containers15-sp5-debuginfo-pool-x86_64", + "parent_channel_label": "sle-product-sles15-sp5-pool-x86_64", + "product_id": 2486, + "repository_id": 5771, + "parent_product_id": 2474, + "root_product_id": 2465, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP5/x86_64/product_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers15-SP5-Debuginfo-Pool for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-transactional-server15-sp5-updates-x86_64", + "parent_channel_label": "sle-product-sles15-sp5-pool-x86_64", + "product_id": 2508, + "repository_id": 5878, + "parent_product_id": 2474, + "root_product_id": 2465, + "update_tag": "SLE-Module-Transactional-Server", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Transactional-Server/15-SP5/x86_64/update/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Transactional-Server15-SP5-Updates for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-transactional-server15-sp5-debuginfo-updates-x86_64", + "parent_channel_label": "sle-product-sles15-sp5-pool-x86_64", + "product_id": 2508, + "repository_id": 5879, + "parent_product_id": 2474, + "root_product_id": 2465, + "update_tag": "SLE-Module-Transactional-Server", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Transactional-Server/15-SP5/x86_64/update_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Transactional-Server15-SP5-Debuginfo-Updates for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-transactional-server15-sp5-pool-x86_64", + "parent_channel_label": "sle-product-sles15-sp5-pool-x86_64", + "product_id": 2508, + "repository_id": 5880, + "parent_product_id": 2474, + "root_product_id": 2465, + "update_tag": "SLE-Module-Transactional-Server", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Transactional-Server/15-SP5/x86_64/product/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Transactional-Server15-SP5-Pool for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-transactional-server15-sp5-debuginfo-pool-x86_64", + "parent_channel_label": "sle-product-sles15-sp5-pool-x86_64", + "product_id": 2508, + "repository_id": 5881, + "parent_product_id": 2474, + "root_product_id": 2465, + "update_tag": "SLE-Module-Transactional-Server", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Transactional-Server/15-SP5/x86_64/product_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Transactional-Server15-SP5-Debuginfo-Pool for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-live-patching15-sp5-updates-x86_64", + "parent_channel_label": "sle-product-sles15-sp5-pool-x86_64", + "product_id": 2511, + "repository_id": 5893, + "parent_product_id": 2474, + "root_product_id": 2465, + "update_tag": "SLE-Module-Live-Patching", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Live-Patching/15-SP5/x86_64/update/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Live-Patching15-SP5-Updates for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-live-patching15-sp5-debuginfo-updates-x86_64", + "parent_channel_label": "sle-product-sles15-sp5-pool-x86_64", + "product_id": 2511, + "repository_id": 5894, + "parent_product_id": 2474, + "root_product_id": 2465, + "update_tag": "SLE-Module-Live-Patching", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Live-Patching/15-SP5/x86_64/update_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Live-Patching15-SP5-Debuginfo-Updates for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-live-patching15-sp5-pool-x86_64", + "parent_channel_label": "sle-product-sles15-sp5-pool-x86_64", + "product_id": 2511, + "repository_id": 5895, + "parent_product_id": 2474, + "root_product_id": 2465, + "update_tag": "SLE-Module-Live-Patching", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Live-Patching/15-SP5/x86_64/product/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Live-Patching15-SP5-Pool for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-live-patching15-sp5-debuginfo-pool-x86_64", + "parent_channel_label": "sle-product-sles15-sp5-pool-x86_64", + "product_id": 2511, + "repository_id": 5896, + "parent_product_id": 2474, + "root_product_id": 2465, + "update_tag": "SLE-Module-Live-Patching", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Live-Patching/15-SP5/x86_64/product_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Live-Patching15-SP5-Debuginfo-Pool for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-python3-15-sp5-updates-x86_64", + "parent_channel_label": "sle-product-sles15-sp5-pool-x86_64", + "product_id": 2536, + "repository_id": 5958, + "parent_product_id": 2474, + "root_product_id": 2465, + "update_tag": "SLE-Module-Python3", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Python3/15-SP5/x86_64/update/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Python3-15-SP5-Updates for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-python3-15-sp5-debuginfo-updates-x86_64", + "parent_channel_label": "sle-product-sles15-sp5-pool-x86_64", + "product_id": 2536, + "repository_id": 5959, + "parent_product_id": 2474, + "root_product_id": 2465, + "update_tag": "SLE-Module-Python3", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Python3/15-SP5/x86_64/update_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Python3-15-SP5-Debuginfo-Updates for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-python3-15-sp5-pool-x86_64", + "parent_channel_label": "sle-product-sles15-sp5-pool-x86_64", + "product_id": 2536, + "repository_id": 5960, + "parent_product_id": 2474, + "root_product_id": 2465, + "update_tag": "SLE-Module-Python3", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Python3/15-SP5/x86_64/product/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Python3-15-SP5-Pool for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-python3-15-sp5-debuginfo-pool-x86_64", + "parent_channel_label": "sle-product-sles15-sp5-pool-x86_64", + "product_id": 2536, + "repository_id": 5961, + "parent_product_id": 2474, + "root_product_id": 2465, + "update_tag": "SLE-Module-Python3", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Python3/15-SP5/x86_64/product_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Python3-15-SP5-Debuginfo-Pool for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-packagehub-15-sp5-backports-pool-x86_64", + "parent_channel_label": "sle-product-sles15-sp5-pool-x86_64", + "product_id": 2562, + "repository_id": 6113, + "parent_product_id": 2474, + "root_product_id": 2465, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-15-SP5_x86_64/standard/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-15-SP5-Backports-Pool for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-packagehub-15-sp5-backports-debuginfo-x86_64", + "parent_channel_label": "sle-product-sles15-sp5-pool-x86_64", + "product_id": 2562, + "repository_id": 6114, + "parent_product_id": 2474, + "root_product_id": 2465, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-15-SP5_x86_64/standard_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-15-SP5-Backports-Debuginfo for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-packagehub-subpackages15-sp5-updates-x86_64", + "parent_channel_label": "sle-product-sles15-sp5-pool-x86_64", + "product_id": 2562, + "repository_id": 6115, + "parent_product_id": 2474, + "root_product_id": 2465, + "update_tag": "SLE-Module-Packagehub-Subpackages", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP5/x86_64/update/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Packagehub-Subpackages15-SP5-Updates for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-packagehub-subpackages15-sp5-debuginfo-updates-x86_64", + "parent_channel_label": "sle-product-sles15-sp5-pool-x86_64", + "product_id": 2562, + "repository_id": 6116, + "parent_product_id": 2474, + "root_product_id": 2465, + "update_tag": "SLE-Module-Packagehub-Subpackages", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP5/x86_64/update_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Packagehub-Subpackages15-SP5-Debuginfo-Updates for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-packagehub-15-sp5-pool-x86_64", + "parent_channel_label": "sle-product-sles15-sp5-pool-x86_64", + "product_id": 2562, + "repository_id": 6117, + "parent_product_id": 2474, + "root_product_id": 2465, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-15-SP5_x86_64/product/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-15-SP5-Pool for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-packagehub-subpackages15-sp5-pool-x86_64", + "parent_channel_label": "sle-product-sles15-sp5-pool-x86_64", + "product_id": 2562, + "repository_id": 6118, + "parent_product_id": 2474, + "root_product_id": 2465, + "update_tag": "SLE-Module-Packagehub-Subpackages", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP5/x86_64/product/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Packagehub-Subpackages15-SP5-Pool for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-packagehub-subpackages15-sp5-debuginfo-pool-x86_64", + "parent_channel_label": "sle-product-sles15-sp5-pool-x86_64", + "product_id": 2562, + "repository_id": 6119, + "parent_product_id": 2474, + "root_product_id": 2465, + "update_tag": "SLE-Module-Packagehub-Subpackages", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP5/x86_64/product_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Packagehub-Subpackages15-SP5-Debuginfo-Pool for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-certifications-15-sp5-updates-x86_64", + "parent_channel_label": "sle-product-sles15-sp5-pool-x86_64", + "product_id": 2558, + "repository_id": 6080, + "parent_product_id": 2465, + "root_product_id": 2465, + "update_tag": "SLE-Module-Certifications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Certifications/15-SP5/x86_64/update/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Certifications-15-SP5-Updates for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-certifications-15-sp5-debuginfo-updates-x86_64", + "parent_channel_label": "sle-product-sles15-sp5-pool-x86_64", + "product_id": 2558, + "repository_id": 6081, + "parent_product_id": 2465, + "root_product_id": 2465, + "update_tag": "SLE-Module-Certifications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Certifications/15-SP5/x86_64/update_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Certifications-15-SP5-Debuginfo-Updates for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-certifications-15-sp5-pool-x86_64", + "parent_channel_label": "sle-product-sles15-sp5-pool-x86_64", + "product_id": 2558, + "repository_id": 6082, + "parent_product_id": 2465, + "root_product_id": 2465, + "update_tag": "SLE-Module-Certifications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Certifications/15-SP5/x86_64/product/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Certifications-15-SP5-Pool for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-certifications-15-sp5-debuginfo-pool-x86_64", + "parent_channel_label": "sle-product-sles15-sp5-pool-x86_64", + "product_id": 2558, + "repository_id": 6083, + "parent_product_id": 2465, + "root_product_id": 2465, + "update_tag": "SLE-Module-Certifications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Certifications/15-SP5/x86_64/product_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Certifications-15-SP5-Debuginfo-Pool for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle15-sp5-installer-updates-ppc64le-sap", + "parent_channel_label": "sle-product-sles_sap15-sp5-pool-ppc64le", + "product_id": 2466, + "repository_id": 5651, + "parent_product_id": null, + "root_product_id": 2466, + "update_tag": "SLE-INSTALLER", + "url": "https://updates.suse.com/SUSE/Updates/SLE-INSTALLER/15-SP5/ppc64le/update/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE15-SP5-Installer-Updates for ppc64le SAP", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-sles_sap15-sp5-updates-ppc64le", + "parent_channel_label": "sle-product-sles_sap15-sp5-pool-ppc64le", + "product_id": 2466, + "repository_id": 5667, + "parent_product_id": null, + "root_product_id": 2466, + "update_tag": "SLE-Product-SLES_SAP", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-SLES_SAP/15-SP5/ppc64le/update/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-SLES_SAP15-SP5-Updates for ppc64le", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-sles_sap15-sp5-debuginfo-updates-ppc64le", + "parent_channel_label": "sle-product-sles_sap15-sp5-pool-ppc64le", + "product_id": 2466, + "repository_id": 5668, + "parent_product_id": null, + "root_product_id": 2466, + "update_tag": "SLE-Product-SLES_SAP", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-SLES_SAP/15-SP5/ppc64le/update_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-SLES_SAP15-SP5-Debuginfo-Updates for ppc64le", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-sles_sap15-sp5-pool-ppc64le", + "parent_channel_label": null, + "product_id": 2466, + "repository_id": 5669, + "parent_product_id": null, + "root_product_id": 2466, + "update_tag": "SLE-Product-SLES_SAP", + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-SLES_SAP/15-SP5/ppc64le/product/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-SLES_SAP15-SP5-Pool for ppc64le", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-sles_sap15-sp5-debuginfo-pool-ppc64le", + "parent_channel_label": "sle-product-sles_sap15-sp5-pool-ppc64le", + "product_id": 2466, + "repository_id": 5670, + "parent_product_id": null, + "root_product_id": 2466, + "update_tag": "SLE-Product-SLES_SAP", + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-SLES_SAP/15-SP5/ppc64le/product_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-SLES_SAP15-SP5-Debuginfo-Pool for ppc64le", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-basesystem15-sp5-updates-ppc64le-sap", + "parent_channel_label": "sle-product-sles_sap15-sp5-pool-ppc64le", + "product_id": 2472, + "repository_id": 5698, + "parent_product_id": 2466, + "root_product_id": 2466, + "update_tag": "SLE-Module-Basesystem", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15-SP5/ppc64le/update/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Basesystem15-SP5-Updates for ppc64le SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-basesystem15-sp5-debuginfo-updates-ppc64le-sap", + "parent_channel_label": "sle-product-sles_sap15-sp5-pool-ppc64le", + "product_id": 2472, + "repository_id": 5699, + "parent_product_id": 2466, + "root_product_id": 2466, + "update_tag": "SLE-Module-Basesystem", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15-SP5/ppc64le/update_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Basesystem15-SP5-Debuginfo-Updates for ppc64le SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-basesystem15-sp5-pool-ppc64le-sap", + "parent_channel_label": "sle-product-sles_sap15-sp5-pool-ppc64le", + "product_id": 2472, + "repository_id": 5700, + "parent_product_id": 2466, + "root_product_id": 2466, + "update_tag": "SLE-Module-Basesystem", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP5/ppc64le/product/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Basesystem15-SP5-Pool for ppc64le SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-basesystem15-sp5-debuginfo-pool-ppc64le-sap", + "parent_channel_label": "sle-product-sles_sap15-sp5-pool-ppc64le", + "product_id": 2472, + "repository_id": 5701, + "parent_product_id": 2466, + "root_product_id": 2466, + "update_tag": "SLE-Module-Basesystem", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP5/ppc64le/product_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Basesystem15-SP5-Debuginfo-Pool for ppc64le SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-manager-tools15-updates-ppc64le-sap-sp5", + "parent_channel_label": "sle-product-sles_sap15-sp5-pool-ppc64le", + "product_id": 1710, + "repository_id": 2922, + "parent_product_id": 2472, + "root_product_id": 2466, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/15/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-Updates for ppc64le SAP SP5", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools15-debuginfo-updates-ppc64le-sap-sp5", + "parent_channel_label": "sle-product-sles_sap15-sp5-pool-ppc64le", + "product_id": 1710, + "repository_id": 2923, + "parent_product_id": 2472, + "root_product_id": 2466, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/15/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-Debuginfo-Updates for ppc64le SAP SP5", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools15-pool-ppc64le-sap-sp5", + "parent_channel_label": "sle-product-sles_sap15-sp5-pool-ppc64le", + "product_id": 1710, + "repository_id": 2924, + "parent_product_id": 2472, + "root_product_id": 2466, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/15/ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-Pool for ppc64le SAP SP5", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools15-debuginfo-pool-ppc64le-sap-sp5", + "parent_channel_label": "sle-product-sles_sap15-sp5-pool-ppc64le", + "product_id": 1710, + "repository_id": 2925, + "parent_product_id": 2472, + "root_product_id": 2466, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/15/ppc64le/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-Debuginfo-Pool for ppc64le SAP SP5", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools15-beta-updates-ppc64le-sap-sp5", + "parent_channel_label": "sle-product-sles_sap15-sp5-pool-ppc64le", + "product_id": 1926, + "repository_id": 3893, + "parent_product_id": 1710, + "root_product_id": 2466, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/15-BETA/ppc64le/update/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-BETA-Updates for ppc64le SAP SP5", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools15-beta-debuginfo-updates-ppc64le-sap-sp5", + "parent_channel_label": "sle-product-sles_sap15-sp5-pool-ppc64le", + "product_id": 1926, + "repository_id": 3894, + "parent_product_id": 1710, + "root_product_id": 2466, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/15-BETA/ppc64le/update_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-BETA-Debuginfo-Updates for ppc64le SAP SP5", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools15-beta-pool-ppc64le-sap-sp5", + "parent_channel_label": "sle-product-sles_sap15-sp5-pool-ppc64le", + "product_id": 1926, + "repository_id": 3902, + "parent_product_id": 1710, + "root_product_id": 2466, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/15-BETA/ppc64le/product/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-BETA-Pool for ppc64le SAP SP5", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools15-beta-debuginfo-pool-ppc64le-sap-sp5", + "parent_channel_label": "sle-product-sles_sap15-sp5-pool-ppc64le", + "product_id": 1926, + "repository_id": 3903, + "parent_product_id": 1710, + "root_product_id": 2466, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/15-BETA/ppc64le/product_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-BETA-Debuginfo-Pool for ppc64le SAP SP5", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-module-desktop-applications15-sp5-updates-ppc64le-sap", + "parent_channel_label": "sle-product-sles_sap15-sp5-pool-ppc64le", + "product_id": 2476, + "repository_id": 5718, + "parent_product_id": 2472, + "root_product_id": 2466, + "update_tag": "SLE-Module-Desktop-Applications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15-SP5/ppc64le/update/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Desktop-Applications15-SP5-Updates for ppc64le SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-desktop-applications15-sp5-debuginfo-updates-ppc64le-sap", + "parent_channel_label": "sle-product-sles_sap15-sp5-pool-ppc64le", + "product_id": 2476, + "repository_id": 5719, + "parent_product_id": 2472, + "root_product_id": 2466, + "update_tag": "SLE-Module-Desktop-Applications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15-SP5/ppc64le/update_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Desktop-Applications15-SP5-Debuginfo-Updates for ppc64le SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-desktop-applications15-sp5-pool-ppc64le-sap", + "parent_channel_label": "sle-product-sles_sap15-sp5-pool-ppc64le", + "product_id": 2476, + "repository_id": 5720, + "parent_product_id": 2472, + "root_product_id": 2466, + "update_tag": "SLE-Module-Desktop-Applications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP5/ppc64le/product/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Desktop-Applications15-SP5-Pool for ppc64le SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-desktop-applications15-sp5-debuginfo-pool-ppc64le-sap", + "parent_channel_label": "sle-product-sles_sap15-sp5-pool-ppc64le", + "product_id": 2476, + "repository_id": 5721, + "parent_product_id": 2472, + "root_product_id": 2466, + "update_tag": "SLE-Module-Desktop-Applications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP5/ppc64le/product_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Desktop-Applications15-SP5-Debuginfo-Pool for ppc64le SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-devtools15-sp5-updates-ppc64le-sap", + "parent_channel_label": "sle-product-sles_sap15-sp5-pool-ppc64le", + "product_id": 2488, + "repository_id": 5778, + "parent_product_id": 2476, + "root_product_id": 2466, + "update_tag": "SLE-Module-Development-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15-SP5/ppc64le/update/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-DevTools15-SP5-Updates for ppc64le SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-devtools15-sp5-debuginfo-updates-ppc64le-sap", + "parent_channel_label": "sle-product-sles_sap15-sp5-pool-ppc64le", + "product_id": 2488, + "repository_id": 5779, + "parent_product_id": 2476, + "root_product_id": 2466, + "update_tag": "SLE-Module-Development-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15-SP5/ppc64le/update_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-DevTools15-SP5-Debuginfo-Updates for ppc64le SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-devtools15-sp5-pool-ppc64le-sap", + "parent_channel_label": "sle-product-sles_sap15-sp5-pool-ppc64le", + "product_id": 2488, + "repository_id": 5780, + "parent_product_id": 2476, + "root_product_id": 2466, + "update_tag": "SLE-Module-Development-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP5/ppc64le/product/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-DevTools15-SP5-Pool for ppc64le SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-devtools15-sp5-debuginfo-pool-ppc64le-sap", + "parent_channel_label": "sle-product-sles_sap15-sp5-pool-ppc64le", + "product_id": 2488, + "repository_id": 5781, + "parent_product_id": 2476, + "root_product_id": 2466, + "update_tag": "SLE-Module-Development-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP5/ppc64le/product_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-DevTools15-SP5-Debuginfo-Pool for ppc64le SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-server-applications15-sp5-updates-ppc64le-sap", + "parent_channel_label": "sle-product-sles_sap15-sp5-pool-ppc64le", + "product_id": 2480, + "repository_id": 5738, + "parent_product_id": 2472, + "root_product_id": 2466, + "update_tag": "SLE-Module-Server-Applications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15-SP5/ppc64le/update/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Server-Applications15-SP5-Updates for ppc64le SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-server-applications15-sp5-debuginfo-updates-ppc64le-sap", + "parent_channel_label": "sle-product-sles_sap15-sp5-pool-ppc64le", + "product_id": 2480, + "repository_id": 5739, + "parent_product_id": 2472, + "root_product_id": 2466, + "update_tag": "SLE-Module-Server-Applications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15-SP5/ppc64le/update_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Server-Applications15-SP5-Debuginfo-Updates for ppc64le SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-server-applications15-sp5-pool-ppc64le-sap", + "parent_channel_label": "sle-product-sles_sap15-sp5-pool-ppc64le", + "product_id": 2480, + "repository_id": 5740, + "parent_product_id": 2472, + "root_product_id": 2466, + "update_tag": "SLE-Module-Server-Applications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP5/ppc64le/product/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Server-Applications15-SP5-Pool for ppc64le SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-server-applications15-sp5-debuginfo-pool-ppc64le-sap", + "parent_channel_label": "sle-product-sles_sap15-sp5-pool-ppc64le", + "product_id": 2480, + "repository_id": 5741, + "parent_product_id": 2472, + "root_product_id": 2466, + "update_tag": "SLE-Module-Server-Applications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP5/ppc64le/product_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Server-Applications15-SP5-Debuginfo-Pool for ppc64le SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "ibm-power-adv-toolchain-ppc64le-sap-sp5", + "parent_channel_label": "sle-product-sles_sap15-sp5-pool-ppc64le", + "product_id": 2076, + "repository_id": 4430, + "parent_product_id": 2480, + "root_product_id": 2466, + "update_tag": null, + "url": "https://public.dhe.ibm.com/software/server/POWER/Linux/toolchain/at/suse/SLES_15/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "IBM-POWER-Adv-Toolchain for ppc64le SAP SP5", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "ibm-power-tools-ppc64le-sap-sp5", + "parent_channel_label": "sle-product-sles_sap15-sp5-pool-ppc64le", + "product_id": 2077, + "repository_id": 4431, + "parent_product_id": 2480, + "root_product_id": 2466, + "update_tag": null, + "url": "https://public.dhe.ibm.com/software/server/POWER/Linux/yum/OSS/SLES/15/ppc64le/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "IBM-POWER-Tools for ppc64le SAP SP5", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting15-sp5-updates-ppc64le-sap", + "parent_channel_label": "sle-product-sles_sap15-sp5-pool-ppc64le", + "product_id": 2492, + "repository_id": 5798, + "parent_product_id": 2480, + "root_product_id": 2466, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/15-SP5/ppc64le/update/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Web-Scripting15-SP5-Updates for ppc64le SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting15-sp5-debuginfo-updates-ppc64le-sap", + "parent_channel_label": "sle-product-sles_sap15-sp5-pool-ppc64le", + "product_id": 2492, + "repository_id": 5799, + "parent_product_id": 2480, + "root_product_id": 2466, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/15-SP5/ppc64le/update_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Web-Scripting15-SP5-Debuginfo-Updates for ppc64le SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting15-sp5-pool-ppc64le-sap", + "parent_channel_label": "sle-product-sles_sap15-sp5-pool-ppc64le", + "product_id": 2492, + "repository_id": 5800, + "parent_product_id": 2480, + "root_product_id": 2466, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP5/ppc64le/product/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Web-Scripting15-SP5-Pool for ppc64le SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting15-sp5-debuginfo-pool-ppc64le-sap", + "parent_channel_label": "sle-product-sles_sap15-sp5-pool-ppc64le", + "product_id": 2492, + "repository_id": 5801, + "parent_product_id": 2480, + "root_product_id": 2466, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP5/ppc64le/product_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Web-Scripting15-SP5-Debuginfo-Pool for ppc64le SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-legacy15-sp5-updates-ppc64le-sap", + "parent_channel_label": "sle-product-sles_sap15-sp5-pool-ppc64le", + "product_id": 2498, + "repository_id": 5828, + "parent_product_id": 2480, + "root_product_id": 2466, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/15-SP5/ppc64le/update/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy15-SP5-Updates for ppc64le SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-legacy15-sp5-debuginfo-updates-ppc64le-sap", + "parent_channel_label": "sle-product-sles_sap15-sp5-pool-ppc64le", + "product_id": 2498, + "repository_id": 5829, + "parent_product_id": 2480, + "root_product_id": 2466, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/15-SP5/ppc64le/update_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy15-SP5-Debuginfo-Updates for ppc64le SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-legacy15-sp5-pool-ppc64le-sap", + "parent_channel_label": "sle-product-sles_sap15-sp5-pool-ppc64le", + "product_id": 2498, + "repository_id": 5830, + "parent_product_id": 2480, + "root_product_id": 2466, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15-SP5/ppc64le/product/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy15-SP5-Pool for ppc64le SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-legacy15-sp5-debuginfo-pool-ppc64le-sap", + "parent_channel_label": "sle-product-sles_sap15-sp5-pool-ppc64le", + "product_id": 2498, + "repository_id": 5831, + "parent_product_id": 2480, + "root_product_id": 2466, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15-SP5/ppc64le/product_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy15-SP5-Debuginfo-Pool for ppc64le SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud15-sp5-updates-ppc64le-sap", + "parent_channel_label": "sle-product-sles_sap15-sp5-pool-ppc64le", + "product_id": 2502, + "repository_id": 5848, + "parent_product_id": 2480, + "root_product_id": 2466, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/15-SP5/ppc64le/update/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud15-SP5-Updates for ppc64le SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud15-sp5-debuginfo-updates-ppc64le-sap", + "parent_channel_label": "sle-product-sles_sap15-sp5-pool-ppc64le", + "product_id": 2502, + "repository_id": 5849, + "parent_product_id": 2480, + "root_product_id": 2466, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/15-SP5/ppc64le/update_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud15-SP5-Debuginfo-Updates for ppc64le SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud15-sp5-pool-ppc64le-sap", + "parent_channel_label": "sle-product-sles_sap15-sp5-pool-ppc64le", + "product_id": 2502, + "repository_id": 5850, + "parent_product_id": 2480, + "root_product_id": 2466, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP5/ppc64le/product/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud15-SP5-Pool for ppc64le SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud15-sp5-debuginfo-pool-ppc64le-sap", + "parent_channel_label": "sle-product-sles_sap15-sp5-pool-ppc64le", + "product_id": 2502, + "repository_id": 5851, + "parent_product_id": 2480, + "root_product_id": 2466, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP5/ppc64le/product_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud15-SP5-Debuginfo-Pool for ppc64le SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-ha15-sp5-updates-ppc64le-sap", + "parent_channel_label": "sle-product-sles_sap15-sp5-pool-ppc64le", + "product_id": 2515, + "repository_id": 5913, + "parent_product_id": 2480, + "root_product_id": 2466, + "update_tag": "SLE-Product-HA", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-HA/15-SP5/ppc64le/update/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Product-HA15-SP5-Updates for ppc64le SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-ha15-sp5-debuginfo-updates-ppc64le-sap", + "parent_channel_label": "sle-product-sles_sap15-sp5-pool-ppc64le", + "product_id": 2515, + "repository_id": 5914, + "parent_product_id": 2480, + "root_product_id": 2466, + "update_tag": "SLE-Product-HA", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-HA/15-SP5/ppc64le/update_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Product-HA15-SP5-Debuginfo-Updates for ppc64le SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-ha15-sp5-pool-ppc64le-sap", + "parent_channel_label": "sle-product-sles_sap15-sp5-pool-ppc64le", + "product_id": 2515, + "repository_id": 5915, + "parent_product_id": 2480, + "root_product_id": 2466, + "update_tag": "SLE-Product-HA", + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP5/ppc64le/product/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Product-HA15-SP5-Pool for ppc64le SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-ha15-sp5-debuginfo-pool-ppc64le-sap", + "parent_channel_label": "sle-product-sles_sap15-sp5-pool-ppc64le", + "product_id": 2515, + "repository_id": 5916, + "parent_product_id": 2480, + "root_product_id": 2466, + "update_tag": "SLE-Product-HA", + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP5/ppc64le/product_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Product-HA15-SP5-Debuginfo-Pool for ppc64le SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-sap-applications15-sp5-updates-ppc64le", + "parent_channel_label": "sle-product-sles_sap15-sp5-pool-ppc64le", + "product_id": 2518, + "repository_id": 5928, + "parent_product_id": 2515, + "root_product_id": 2466, + "update_tag": "SLE-Module-SAP-Applications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-SAP-Applications/15-SP5/ppc64le/update/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-SAP-Applications15-SP5-Updates for ppc64le", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-sap-applications15-sp5-debuginfo-updates-ppc64le", + "parent_channel_label": "sle-product-sles_sap15-sp5-pool-ppc64le", + "product_id": 2518, + "repository_id": 5929, + "parent_product_id": 2515, + "root_product_id": 2466, + "update_tag": "SLE-Module-SAP-Applications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-SAP-Applications/15-SP5/ppc64le/update_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-SAP-Applications15-SP5-Debuginfo-Updates for ppc64le", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-sap-applications15-sp5-pool-ppc64le", + "parent_channel_label": "sle-product-sles_sap15-sp5-pool-ppc64le", + "product_id": 2518, + "repository_id": 5930, + "parent_product_id": 2515, + "root_product_id": 2466, + "update_tag": "SLE-Module-SAP-Applications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-SAP-Applications/15-SP5/ppc64le/product/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-SAP-Applications15-SP5-Pool for ppc64le", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-sap-applications15-sp5-debuginfo-pool-ppc64le", + "parent_channel_label": "sle-product-sles_sap15-sp5-pool-ppc64le", + "product_id": 2518, + "repository_id": 5931, + "parent_product_id": 2515, + "root_product_id": 2466, + "update_tag": "SLE-Module-SAP-Applications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-SAP-Applications/15-SP5/ppc64le/product_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-SAP-Applications15-SP5-Debuginfo-Pool for ppc64le", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-containers15-sp5-updates-ppc64le-sap", + "parent_channel_label": "sle-product-sles_sap15-sp5-pool-ppc64le", + "product_id": 2484, + "repository_id": 5758, + "parent_product_id": 2472, + "root_product_id": 2466, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/15-SP5/ppc64le/update/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers15-SP5-Updates for ppc64le SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-containers15-sp5-debuginfo-updates-ppc64le-sap", + "parent_channel_label": "sle-product-sles_sap15-sp5-pool-ppc64le", + "product_id": 2484, + "repository_id": 5759, + "parent_product_id": 2472, + "root_product_id": 2466, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/15-SP5/ppc64le/update_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers15-SP5-Debuginfo-Updates for ppc64le SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-containers15-sp5-pool-ppc64le-sap", + "parent_channel_label": "sle-product-sles_sap15-sp5-pool-ppc64le", + "product_id": 2484, + "repository_id": 5760, + "parent_product_id": 2472, + "root_product_id": 2466, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP5/ppc64le/product/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers15-SP5-Pool for ppc64le SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-containers15-sp5-debuginfo-pool-ppc64le-sap", + "parent_channel_label": "sle-product-sles_sap15-sp5-pool-ppc64le", + "product_id": 2484, + "repository_id": 5761, + "parent_product_id": 2472, + "root_product_id": 2466, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP5/ppc64le/product_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers15-SP5-Debuginfo-Pool for ppc64le SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-live-patching15-sp5-updates-ppc64le-sap", + "parent_channel_label": "sle-product-sles_sap15-sp5-pool-ppc64le", + "product_id": 2509, + "repository_id": 5883, + "parent_product_id": 2472, + "root_product_id": 2466, + "update_tag": "SLE-Module-Live-Patching", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Live-Patching/15-SP5/ppc64le/update/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Live-Patching15-SP5-Updates for ppc64le SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-live-patching15-sp5-debuginfo-updates-ppc64le-sap", + "parent_channel_label": "sle-product-sles_sap15-sp5-pool-ppc64le", + "product_id": 2509, + "repository_id": 5884, + "parent_product_id": 2472, + "root_product_id": 2466, + "update_tag": "SLE-Module-Live-Patching", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Live-Patching/15-SP5/ppc64le/update_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Live-Patching15-SP5-Debuginfo-Updates for ppc64le SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-live-patching15-sp5-pool-ppc64le-sap", + "parent_channel_label": "sle-product-sles_sap15-sp5-pool-ppc64le", + "product_id": 2509, + "repository_id": 5885, + "parent_product_id": 2472, + "root_product_id": 2466, + "update_tag": "SLE-Module-Live-Patching", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Live-Patching/15-SP5/ppc64le/product/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Live-Patching15-SP5-Pool for ppc64le SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-live-patching15-sp5-debuginfo-pool-ppc64le-sap", + "parent_channel_label": "sle-product-sles_sap15-sp5-pool-ppc64le", + "product_id": 2509, + "repository_id": 5886, + "parent_product_id": 2472, + "root_product_id": 2466, + "update_tag": "SLE-Module-Live-Patching", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Live-Patching/15-SP5/ppc64le/product_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Live-Patching15-SP5-Debuginfo-Pool for ppc64le SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-python3-15-sp5-updates-ppc64le-sap", + "parent_channel_label": "sle-product-sles_sap15-sp5-pool-ppc64le", + "product_id": 2534, + "repository_id": 5948, + "parent_product_id": 2472, + "root_product_id": 2466, + "update_tag": "SLE-Module-Python3", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Python3/15-SP5/ppc64le/update/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Python3-15-SP5-Updates for ppc64le SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-python3-15-sp5-debuginfo-updates-ppc64le-sap", + "parent_channel_label": "sle-product-sles_sap15-sp5-pool-ppc64le", + "product_id": 2534, + "repository_id": 5949, + "parent_product_id": 2472, + "root_product_id": 2466, + "update_tag": "SLE-Module-Python3", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Python3/15-SP5/ppc64le/update_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Python3-15-SP5-Debuginfo-Updates for ppc64le SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-python3-15-sp5-pool-ppc64le-sap", + "parent_channel_label": "sle-product-sles_sap15-sp5-pool-ppc64le", + "product_id": 2534, + "repository_id": 5950, + "parent_product_id": 2472, + "root_product_id": 2466, + "update_tag": "SLE-Module-Python3", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Python3/15-SP5/ppc64le/product/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Python3-15-SP5-Pool for ppc64le SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-python3-15-sp5-debuginfo-pool-ppc64le-sap", + "parent_channel_label": "sle-product-sles_sap15-sp5-pool-ppc64le", + "product_id": 2534, + "repository_id": 5951, + "parent_product_id": 2472, + "root_product_id": 2466, + "update_tag": "SLE-Module-Python3", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Python3/15-SP5/ppc64le/product_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Python3-15-SP5-Debuginfo-Pool for ppc64le SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-packagehub-15-sp5-backports-pool-ppc64le-sap", + "parent_channel_label": "sle-product-sles_sap15-sp5-pool-ppc64le", + "product_id": 2560, + "repository_id": 6097, + "parent_product_id": 2472, + "root_product_id": 2466, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-15-SP5_ppc64le/standard/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-15-SP5-Backports-Pool for ppc64le SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-packagehub-15-sp5-backports-debuginfo-ppc64le-sap", + "parent_channel_label": "sle-product-sles_sap15-sp5-pool-ppc64le", + "product_id": 2560, + "repository_id": 6098, + "parent_product_id": 2472, + "root_product_id": 2466, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-15-SP5_ppc64le/standard_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-15-SP5-Backports-Debuginfo for ppc64le SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-packagehub-subpackages15-sp5-updates-ppc64le-sap", + "parent_channel_label": "sle-product-sles_sap15-sp5-pool-ppc64le", + "product_id": 2560, + "repository_id": 6099, + "parent_product_id": 2472, + "root_product_id": 2466, + "update_tag": "SLE-Module-Packagehub-Subpackages", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP5/ppc64le/update/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Packagehub-Subpackages15-SP5-Updates for ppc64le SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-packagehub-subpackages15-sp5-debuginfo-updates-ppc64le-sap", + "parent_channel_label": "sle-product-sles_sap15-sp5-pool-ppc64le", + "product_id": 2560, + "repository_id": 6100, + "parent_product_id": 2472, + "root_product_id": 2466, + "update_tag": "SLE-Module-Packagehub-Subpackages", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP5/ppc64le/update_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Packagehub-Subpackages15-SP5-Debuginfo-Updates for ppc64le SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-packagehub-15-sp5-pool-ppc64le-sap", + "parent_channel_label": "sle-product-sles_sap15-sp5-pool-ppc64le", + "product_id": 2560, + "repository_id": 6101, + "parent_product_id": 2472, + "root_product_id": 2466, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-15-SP5_ppc64le/product/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-15-SP5-Pool for ppc64le SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-packagehub-subpackages15-sp5-pool-ppc64le-sap", + "parent_channel_label": "sle-product-sles_sap15-sp5-pool-ppc64le", + "product_id": 2560, + "repository_id": 6102, + "parent_product_id": 2472, + "root_product_id": 2466, + "update_tag": "SLE-Module-Packagehub-Subpackages", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP5/ppc64le/product/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Packagehub-Subpackages15-SP5-Pool for ppc64le SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-packagehub-subpackages15-sp5-debuginfo-pool-ppc64le-sap", + "parent_channel_label": "sle-product-sles_sap15-sp5-pool-ppc64le", + "product_id": 2560, + "repository_id": 6103, + "parent_product_id": 2472, + "root_product_id": 2466, + "update_tag": "SLE-Module-Packagehub-Subpackages", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP5/ppc64le/product_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Packagehub-Subpackages15-SP5-Debuginfo-Pool for ppc64le SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-certifications-15-sp5-updates-ppc64le-sap", + "parent_channel_label": "sle-product-sles_sap15-sp5-pool-ppc64le", + "product_id": 2556, + "repository_id": 6070, + "parent_product_id": 2466, + "root_product_id": 2466, + "update_tag": "SLE-Module-Certifications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Certifications/15-SP5/ppc64le/update/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Certifications-15-SP5-Updates for ppc64le SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-certifications-15-sp5-debuginfo-updates-ppc64le-sap", + "parent_channel_label": "sle-product-sles_sap15-sp5-pool-ppc64le", + "product_id": 2556, + "repository_id": 6071, + "parent_product_id": 2466, + "root_product_id": 2466, + "update_tag": "SLE-Module-Certifications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Certifications/15-SP5/ppc64le/update_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Certifications-15-SP5-Debuginfo-Updates for ppc64le SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-certifications-15-sp5-pool-ppc64le-sap", + "parent_channel_label": "sle-product-sles_sap15-sp5-pool-ppc64le", + "product_id": 2556, + "repository_id": 6072, + "parent_product_id": 2466, + "root_product_id": 2466, + "update_tag": "SLE-Module-Certifications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Certifications/15-SP5/ppc64le/product/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Certifications-15-SP5-Pool for ppc64le SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-certifications-15-sp5-debuginfo-pool-ppc64le-sap", + "parent_channel_label": "sle-product-sles_sap15-sp5-pool-ppc64le", + "product_id": 2556, + "repository_id": 6073, + "parent_product_id": 2466, + "root_product_id": 2466, + "update_tag": "SLE-Module-Certifications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Certifications/15-SP5/ppc64le/product_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Certifications-15-SP5-Debuginfo-Pool for ppc64le SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle15-sp5-installer-updates-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-sp5-pool-x86_64", + "product_id": 2467, + "repository_id": 5663, + "parent_product_id": null, + "root_product_id": 2467, + "update_tag": "SLE-INSTALLER", + "url": "https://updates.suse.com/SUSE/Updates/SLE-INSTALLER/15-SP5/x86_64/update/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE15-SP5-Installer-Updates for x86_64 SAP", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-sles_sap15-sp5-updates-x86_64", + "parent_channel_label": "sle-product-sles_sap15-sp5-pool-x86_64", + "product_id": 2467, + "repository_id": 5672, + "parent_product_id": null, + "root_product_id": 2467, + "update_tag": "SLE-Product-SLES_SAP", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-SLES_SAP/15-SP5/x86_64/update/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-SLES_SAP15-SP5-Updates for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-sles_sap15-sp5-debuginfo-updates-x86_64", + "parent_channel_label": "sle-product-sles_sap15-sp5-pool-x86_64", + "product_id": 2467, + "repository_id": 5673, + "parent_product_id": null, + "root_product_id": 2467, + "update_tag": "SLE-Product-SLES_SAP", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-SLES_SAP/15-SP5/x86_64/update_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-SLES_SAP15-SP5-Debuginfo-Updates for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-sles_sap15-sp5-pool-x86_64", + "parent_channel_label": null, + "product_id": 2467, + "repository_id": 5674, + "parent_product_id": null, + "root_product_id": 2467, + "update_tag": "SLE-Product-SLES_SAP", + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-SLES_SAP/15-SP5/x86_64/product/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-SLES_SAP15-SP5-Pool for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-sles_sap15-sp5-debuginfo-pool-x86_64", + "parent_channel_label": "sle-product-sles_sap15-sp5-pool-x86_64", + "product_id": 2467, + "repository_id": 5675, + "parent_product_id": null, + "root_product_id": 2467, + "update_tag": "SLE-Product-SLES_SAP", + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-SLES_SAP/15-SP5/x86_64/product_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-SLES_SAP15-SP5-Debuginfo-Pool for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-basesystem15-sp5-updates-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-sp5-pool-x86_64", + "product_id": 2474, + "repository_id": 5708, + "parent_product_id": 2467, + "root_product_id": 2467, + "update_tag": "SLE-Module-Basesystem", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15-SP5/x86_64/update/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Basesystem15-SP5-Updates for x86_64 SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-basesystem15-sp5-debuginfo-updates-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-sp5-pool-x86_64", + "product_id": 2474, + "repository_id": 5709, + "parent_product_id": 2467, + "root_product_id": 2467, + "update_tag": "SLE-Module-Basesystem", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15-SP5/x86_64/update_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Basesystem15-SP5-Debuginfo-Updates for x86_64 SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-basesystem15-sp5-pool-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-sp5-pool-x86_64", + "product_id": 2474, + "repository_id": 5710, + "parent_product_id": 2467, + "root_product_id": 2467, + "update_tag": "SLE-Module-Basesystem", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP5/x86_64/product/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Basesystem15-SP5-Pool for x86_64 SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-basesystem15-sp5-debuginfo-pool-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-sp5-pool-x86_64", + "product_id": 2474, + "repository_id": 5711, + "parent_product_id": 2467, + "root_product_id": 2467, + "update_tag": "SLE-Module-Basesystem", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP5/x86_64/product_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Basesystem15-SP5-Debuginfo-Pool for x86_64 SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-manager-tools15-updates-x86_64-sap-sp5", + "parent_channel_label": "sle-product-sles_sap15-sp5-pool-x86_64", + "product_id": 1712, + "repository_id": 2932, + "parent_product_id": 2474, + "root_product_id": 2467, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/15/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-Updates for x86_64 SAP SP5", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools15-debuginfo-updates-x86_64-sap-sp5", + "parent_channel_label": "sle-product-sles_sap15-sp5-pool-x86_64", + "product_id": 1712, + "repository_id": 2933, + "parent_product_id": 2474, + "root_product_id": 2467, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/15/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-Debuginfo-Updates for x86_64 SAP SP5", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools15-pool-x86_64-sap-sp5", + "parent_channel_label": "sle-product-sles_sap15-sp5-pool-x86_64", + "product_id": 1712, + "repository_id": 2934, + "parent_product_id": 2474, + "root_product_id": 2467, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/15/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-Pool for x86_64 SAP SP5", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools15-debuginfo-pool-x86_64-sap-sp5", + "parent_channel_label": "sle-product-sles_sap15-sp5-pool-x86_64", + "product_id": 1712, + "repository_id": 2935, + "parent_product_id": 2474, + "root_product_id": 2467, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/15/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-Debuginfo-Pool for x86_64 SAP SP5", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools15-beta-updates-x86_64-sap-sp5", + "parent_channel_label": "sle-product-sles_sap15-sp5-pool-x86_64", + "product_id": 1928, + "repository_id": 3897, + "parent_product_id": 1712, + "root_product_id": 2467, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/15-BETA/x86_64/update/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-BETA-Updates for x86_64 SAP SP5", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools15-beta-debuginfo-updates-x86_64-sap-sp5", + "parent_channel_label": "sle-product-sles_sap15-sp5-pool-x86_64", + "product_id": 1928, + "repository_id": 3898, + "parent_product_id": 1712, + "root_product_id": 2467, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/15-BETA/x86_64/update_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-BETA-Debuginfo-Updates for x86_64 SAP SP5", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools15-beta-pool-x86_64-sap-sp5", + "parent_channel_label": "sle-product-sles_sap15-sp5-pool-x86_64", + "product_id": 1928, + "repository_id": 3908, + "parent_product_id": 1712, + "root_product_id": 2467, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/15-BETA/x86_64/product/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-BETA-Pool for x86_64 SAP SP5", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools15-beta-debuginfo-pool-x86_64-sap-sp5", + "parent_channel_label": "sle-product-sles_sap15-sp5-pool-x86_64", + "product_id": 1928, + "repository_id": 3909, + "parent_product_id": 1712, + "root_product_id": 2467, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/15-BETA/x86_64/product_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-BETA-Debuginfo-Pool for x86_64 SAP SP5", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-module-desktop-applications15-sp5-updates-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-sp5-pool-x86_64", + "product_id": 2478, + "repository_id": 5728, + "parent_product_id": 2474, + "root_product_id": 2467, + "update_tag": "SLE-Module-Desktop-Applications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15-SP5/x86_64/update/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Desktop-Applications15-SP5-Updates for x86_64 SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-desktop-applications15-sp5-debuginfo-updates-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-sp5-pool-x86_64", + "product_id": 2478, + "repository_id": 5729, + "parent_product_id": 2474, + "root_product_id": 2467, + "update_tag": "SLE-Module-Desktop-Applications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15-SP5/x86_64/update_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Desktop-Applications15-SP5-Debuginfo-Updates for x86_64 SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-desktop-applications15-sp5-pool-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-sp5-pool-x86_64", + "product_id": 2478, + "repository_id": 5730, + "parent_product_id": 2474, + "root_product_id": 2467, + "update_tag": "SLE-Module-Desktop-Applications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP5/x86_64/product/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Desktop-Applications15-SP5-Pool for x86_64 SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-desktop-applications15-sp5-debuginfo-pool-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-sp5-pool-x86_64", + "product_id": 2478, + "repository_id": 5731, + "parent_product_id": 2474, + "root_product_id": 2467, + "update_tag": "SLE-Module-Desktop-Applications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP5/x86_64/product_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Desktop-Applications15-SP5-Debuginfo-Pool for x86_64 SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-devtools15-sp5-updates-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-sp5-pool-x86_64", + "product_id": 2490, + "repository_id": 5788, + "parent_product_id": 2478, + "root_product_id": 2467, + "update_tag": "SLE-Module-Development-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15-SP5/x86_64/update/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-DevTools15-SP5-Updates for x86_64 SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-devtools15-sp5-debuginfo-updates-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-sp5-pool-x86_64", + "product_id": 2490, + "repository_id": 5789, + "parent_product_id": 2478, + "root_product_id": 2467, + "update_tag": "SLE-Module-Development-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15-SP5/x86_64/update_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-DevTools15-SP5-Debuginfo-Updates for x86_64 SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-devtools15-sp5-pool-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-sp5-pool-x86_64", + "product_id": 2490, + "repository_id": 5790, + "parent_product_id": 2478, + "root_product_id": 2467, + "update_tag": "SLE-Module-Development-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP5/x86_64/product/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-DevTools15-SP5-Pool for x86_64 SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-devtools15-sp5-debuginfo-pool-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-sp5-pool-x86_64", + "product_id": 2490, + "repository_id": 5791, + "parent_product_id": 2478, + "root_product_id": 2467, + "update_tag": "SLE-Module-Development-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP5/x86_64/product_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-DevTools15-SP5-Debuginfo-Pool for x86_64 SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-15-sp5-desktop-nvidia-driver-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-sp5-pool-x86_64", + "product_id": 2513, + "repository_id": 5680, + "parent_product_id": 2478, + "root_product_id": 2467, + "update_tag": null, + "url": "https://download.nvidia.com/suse/sle15sp5/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-15-SP5-Desktop-NVIDIA-Driver for x86_64 SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-we15-sp5-updates-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-sp5-pool-x86_64", + "product_id": 2513, + "repository_id": 5903, + "parent_product_id": 2478, + "root_product_id": 2467, + "update_tag": "SLE-Product-WE", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-WE/15-SP5/x86_64/update/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-WE15-SP5-Updates for x86_64 SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-we15-sp5-debuginfo-updates-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-sp5-pool-x86_64", + "product_id": 2513, + "repository_id": 5904, + "parent_product_id": 2478, + "root_product_id": 2467, + "update_tag": "SLE-Product-WE", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-WE/15-SP5/x86_64/update_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-WE15-SP5-Debuginfo-Updates for x86_64 SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-we15-sp5-pool-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-sp5-pool-x86_64", + "product_id": 2513, + "repository_id": 5905, + "parent_product_id": 2478, + "root_product_id": 2467, + "update_tag": "SLE-Product-WE", + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-WE/15-SP5/x86_64/product/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-WE15-SP5-Pool for x86_64 SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-we15-sp5-debuginfo-pool-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-sp5-pool-x86_64", + "product_id": 2513, + "repository_id": 5906, + "parent_product_id": 2478, + "root_product_id": 2467, + "update_tag": "SLE-Product-WE", + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-WE/15-SP5/x86_64/product_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-WE15-SP5-Debuginfo-Pool for x86_64 SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-server-applications15-sp5-updates-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-sp5-pool-x86_64", + "product_id": 2482, + "repository_id": 5748, + "parent_product_id": 2474, + "root_product_id": 2467, + "update_tag": "SLE-Module-Server-Applications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15-SP5/x86_64/update/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Server-Applications15-SP5-Updates for x86_64 SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-server-applications15-sp5-debuginfo-updates-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-sp5-pool-x86_64", + "product_id": 2482, + "repository_id": 5749, + "parent_product_id": 2474, + "root_product_id": 2467, + "update_tag": "SLE-Module-Server-Applications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15-SP5/x86_64/update_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Server-Applications15-SP5-Debuginfo-Updates for x86_64 SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-server-applications15-sp5-pool-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-sp5-pool-x86_64", + "product_id": 2482, + "repository_id": 5750, + "parent_product_id": 2474, + "root_product_id": 2467, + "update_tag": "SLE-Module-Server-Applications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP5/x86_64/product/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Server-Applications15-SP5-Pool for x86_64 SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-server-applications15-sp5-debuginfo-pool-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-sp5-pool-x86_64", + "product_id": 2482, + "repository_id": 5751, + "parent_product_id": 2474, + "root_product_id": 2467, + "update_tag": "SLE-Module-Server-Applications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP5/x86_64/product_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Server-Applications15-SP5-Debuginfo-Pool for x86_64 SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting15-sp5-updates-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-sp5-pool-x86_64", + "product_id": 2494, + "repository_id": 5808, + "parent_product_id": 2482, + "root_product_id": 2467, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/15-SP5/x86_64/update/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Web-Scripting15-SP5-Updates for x86_64 SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting15-sp5-debuginfo-updates-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-sp5-pool-x86_64", + "product_id": 2494, + "repository_id": 5809, + "parent_product_id": 2482, + "root_product_id": 2467, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/15-SP5/x86_64/update_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Web-Scripting15-SP5-Debuginfo-Updates for x86_64 SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting15-sp5-pool-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-sp5-pool-x86_64", + "product_id": 2494, + "repository_id": 5810, + "parent_product_id": 2482, + "root_product_id": 2467, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP5/x86_64/product/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Web-Scripting15-SP5-Pool for x86_64 SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting15-sp5-debuginfo-pool-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-sp5-pool-x86_64", + "product_id": 2494, + "repository_id": 5811, + "parent_product_id": 2482, + "root_product_id": 2467, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP5/x86_64/product_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Web-Scripting15-SP5-Debuginfo-Pool for x86_64 SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-legacy15-sp5-updates-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-sp5-pool-x86_64", + "product_id": 2500, + "repository_id": 5838, + "parent_product_id": 2482, + "root_product_id": 2467, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/15-SP5/x86_64/update/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy15-SP5-Updates for x86_64 SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-legacy15-sp5-debuginfo-updates-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-sp5-pool-x86_64", + "product_id": 2500, + "repository_id": 5839, + "parent_product_id": 2482, + "root_product_id": 2467, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Legacy/15-SP5/x86_64/update_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy15-SP5-Debuginfo-Updates for x86_64 SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-legacy15-sp5-pool-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-sp5-pool-x86_64", + "product_id": 2500, + "repository_id": 5840, + "parent_product_id": 2482, + "root_product_id": 2467, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15-SP5/x86_64/product/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy15-SP5-Pool for x86_64 SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-legacy15-sp5-debuginfo-pool-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-sp5-pool-x86_64", + "product_id": 2500, + "repository_id": 5841, + "parent_product_id": 2482, + "root_product_id": 2467, + "update_tag": "SLE-Module-Legacy", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Legacy/15-SP5/x86_64/product_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Legacy15-SP5-Debuginfo-Pool for x86_64 SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud15-sp5-updates-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-sp5-pool-x86_64", + "product_id": 2504, + "repository_id": 5858, + "parent_product_id": 2482, + "root_product_id": 2467, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/15-SP5/x86_64/update/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud15-SP5-Updates for x86_64 SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud15-sp5-debuginfo-updates-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-sp5-pool-x86_64", + "product_id": 2504, + "repository_id": 5859, + "parent_product_id": 2482, + "root_product_id": 2467, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/15-SP5/x86_64/update_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud15-SP5-Debuginfo-Updates for x86_64 SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud15-sp5-pool-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-sp5-pool-x86_64", + "product_id": 2504, + "repository_id": 5860, + "parent_product_id": 2482, + "root_product_id": 2467, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP5/x86_64/product/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud15-SP5-Pool for x86_64 SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud15-sp5-debuginfo-pool-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-sp5-pool-x86_64", + "product_id": 2504, + "repository_id": 5861, + "parent_product_id": 2482, + "root_product_id": 2467, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP5/x86_64/product_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud15-SP5-Debuginfo-Pool for x86_64 SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-ha15-sp5-updates-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-sp5-pool-x86_64", + "product_id": 2517, + "repository_id": 5923, + "parent_product_id": 2482, + "root_product_id": 2467, + "update_tag": "SLE-Product-HA", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-HA/15-SP5/x86_64/update/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Product-HA15-SP5-Updates for x86_64 SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-ha15-sp5-debuginfo-updates-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-sp5-pool-x86_64", + "product_id": 2517, + "repository_id": 5924, + "parent_product_id": 2482, + "root_product_id": 2467, + "update_tag": "SLE-Product-HA", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-HA/15-SP5/x86_64/update_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Product-HA15-SP5-Debuginfo-Updates for x86_64 SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-ha15-sp5-pool-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-sp5-pool-x86_64", + "product_id": 2517, + "repository_id": 5925, + "parent_product_id": 2482, + "root_product_id": 2467, + "update_tag": "SLE-Product-HA", + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP5/x86_64/product/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Product-HA15-SP5-Pool for x86_64 SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-ha15-sp5-debuginfo-pool-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-sp5-pool-x86_64", + "product_id": 2517, + "repository_id": 5926, + "parent_product_id": 2482, + "root_product_id": 2467, + "update_tag": "SLE-Product-HA", + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP5/x86_64/product_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Product-HA15-SP5-Debuginfo-Pool for x86_64 SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-sap-applications15-sp5-updates-x86_64", + "parent_channel_label": "sle-product-sles_sap15-sp5-pool-x86_64", + "product_id": 2519, + "repository_id": 5933, + "parent_product_id": 2517, + "root_product_id": 2467, + "update_tag": "SLE-Module-SAP-Applications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-SAP-Applications/15-SP5/x86_64/update/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-SAP-Applications15-SP5-Updates for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-sap-applications15-sp5-debuginfo-updates-x86_64", + "parent_channel_label": "sle-product-sles_sap15-sp5-pool-x86_64", + "product_id": 2519, + "repository_id": 5934, + "parent_product_id": 2517, + "root_product_id": 2467, + "update_tag": "SLE-Module-SAP-Applications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-SAP-Applications/15-SP5/x86_64/update_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-SAP-Applications15-SP5-Debuginfo-Updates for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-sap-applications15-sp5-pool-x86_64", + "parent_channel_label": "sle-product-sles_sap15-sp5-pool-x86_64", + "product_id": 2519, + "repository_id": 5935, + "parent_product_id": 2517, + "root_product_id": 2467, + "update_tag": "SLE-Module-SAP-Applications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-SAP-Applications/15-SP5/x86_64/product/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-SAP-Applications15-SP5-Pool for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-sap-applications15-sp5-debuginfo-pool-x86_64", + "parent_channel_label": "sle-product-sles_sap15-sp5-pool-x86_64", + "product_id": 2519, + "repository_id": 5936, + "parent_product_id": 2517, + "root_product_id": 2467, + "update_tag": "SLE-Module-SAP-Applications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-SAP-Applications/15-SP5/x86_64/product_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-SAP-Applications15-SP5-Debuginfo-Pool for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-sap-business-one15-sp5-updates-x86_64", + "parent_channel_label": "sle-product-sles_sap15-sp5-pool-x86_64", + "product_id": 2589, + "repository_id": 6203, + "parent_product_id": 2482, + "root_product_id": 2467, + "update_tag": "SLE-Module-SAP-Business-One", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-SAP-Business-One/15-SP5/x86_64/update/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-SAP-Business-One15-SP5-Updates for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-sap-business-one15-sp5-debuginfo-updates-x86_64", + "parent_channel_label": "sle-product-sles_sap15-sp5-pool-x86_64", + "product_id": 2589, + "repository_id": 6204, + "parent_product_id": 2482, + "root_product_id": 2467, + "update_tag": "SLE-Module-SAP-Business-One", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-SAP-Business-One/15-SP5/x86_64/update_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-SAP-Business-One15-SP5-Debuginfo-Updates for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-sap-business-one15-sp5-pool-x86_64", + "parent_channel_label": "sle-product-sles_sap15-sp5-pool-x86_64", + "product_id": 2589, + "repository_id": 6205, + "parent_product_id": 2482, + "root_product_id": 2467, + "update_tag": "SLE-Module-SAP-Business-One", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-SAP-Business-One/15-SP5/x86_64/product/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-SAP-Business-One15-SP5-Pool for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-sap-business-one15-sp5-debuginfo-pool-x86_64", + "parent_channel_label": "sle-product-sles_sap15-sp5-pool-x86_64", + "product_id": 2589, + "repository_id": 6206, + "parent_product_id": 2482, + "root_product_id": 2467, + "update_tag": "SLE-Module-SAP-Business-One", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-SAP-Business-One/15-SP5/x86_64/product_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-SAP-Business-One15-SP5-Debuginfo-Pool for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-containers15-sp5-updates-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-sp5-pool-x86_64", + "product_id": 2486, + "repository_id": 5768, + "parent_product_id": 2474, + "root_product_id": 2467, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/15-SP5/x86_64/update/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers15-SP5-Updates for x86_64 SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-containers15-sp5-debuginfo-updates-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-sp5-pool-x86_64", + "product_id": 2486, + "repository_id": 5769, + "parent_product_id": 2474, + "root_product_id": 2467, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/15-SP5/x86_64/update_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers15-SP5-Debuginfo-Updates for x86_64 SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-containers15-sp5-pool-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-sp5-pool-x86_64", + "product_id": 2486, + "repository_id": 5770, + "parent_product_id": 2474, + "root_product_id": 2467, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP5/x86_64/product/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers15-SP5-Pool for x86_64 SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-containers15-sp5-debuginfo-pool-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-sp5-pool-x86_64", + "product_id": 2486, + "repository_id": 5771, + "parent_product_id": 2474, + "root_product_id": 2467, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP5/x86_64/product_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers15-SP5-Debuginfo-Pool for x86_64 SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-live-patching15-sp5-updates-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-sp5-pool-x86_64", + "product_id": 2511, + "repository_id": 5893, + "parent_product_id": 2474, + "root_product_id": 2467, + "update_tag": "SLE-Module-Live-Patching", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Live-Patching/15-SP5/x86_64/update/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Live-Patching15-SP5-Updates for x86_64 SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-live-patching15-sp5-debuginfo-updates-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-sp5-pool-x86_64", + "product_id": 2511, + "repository_id": 5894, + "parent_product_id": 2474, + "root_product_id": 2467, + "update_tag": "SLE-Module-Live-Patching", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Live-Patching/15-SP5/x86_64/update_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Live-Patching15-SP5-Debuginfo-Updates for x86_64 SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-live-patching15-sp5-pool-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-sp5-pool-x86_64", + "product_id": 2511, + "repository_id": 5895, + "parent_product_id": 2474, + "root_product_id": 2467, + "update_tag": "SLE-Module-Live-Patching", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Live-Patching/15-SP5/x86_64/product/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Live-Patching15-SP5-Pool for x86_64 SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-live-patching15-sp5-debuginfo-pool-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-sp5-pool-x86_64", + "product_id": 2511, + "repository_id": 5896, + "parent_product_id": 2474, + "root_product_id": 2467, + "update_tag": "SLE-Module-Live-Patching", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Live-Patching/15-SP5/x86_64/product_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Live-Patching15-SP5-Debuginfo-Pool for x86_64 SAP", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-python3-15-sp5-updates-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-sp5-pool-x86_64", + "product_id": 2536, + "repository_id": 5958, + "parent_product_id": 2474, + "root_product_id": 2467, + "update_tag": "SLE-Module-Python3", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Python3/15-SP5/x86_64/update/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Python3-15-SP5-Updates for x86_64 SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-python3-15-sp5-debuginfo-updates-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-sp5-pool-x86_64", + "product_id": 2536, + "repository_id": 5959, + "parent_product_id": 2474, + "root_product_id": 2467, + "update_tag": "SLE-Module-Python3", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Python3/15-SP5/x86_64/update_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Python3-15-SP5-Debuginfo-Updates for x86_64 SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-python3-15-sp5-pool-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-sp5-pool-x86_64", + "product_id": 2536, + "repository_id": 5960, + "parent_product_id": 2474, + "root_product_id": 2467, + "update_tag": "SLE-Module-Python3", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Python3/15-SP5/x86_64/product/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Python3-15-SP5-Pool for x86_64 SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-python3-15-sp5-debuginfo-pool-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-sp5-pool-x86_64", + "product_id": 2536, + "repository_id": 5961, + "parent_product_id": 2474, + "root_product_id": 2467, + "update_tag": "SLE-Module-Python3", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Python3/15-SP5/x86_64/product_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Python3-15-SP5-Debuginfo-Pool for x86_64 SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-packagehub-15-sp5-backports-pool-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-sp5-pool-x86_64", + "product_id": 2562, + "repository_id": 6113, + "parent_product_id": 2474, + "root_product_id": 2467, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-15-SP5_x86_64/standard/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-15-SP5-Backports-Pool for x86_64 SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-packagehub-15-sp5-backports-debuginfo-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-sp5-pool-x86_64", + "product_id": 2562, + "repository_id": 6114, + "parent_product_id": 2474, + "root_product_id": 2467, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-15-SP5_x86_64/standard_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-15-SP5-Backports-Debuginfo for x86_64 SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-packagehub-subpackages15-sp5-updates-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-sp5-pool-x86_64", + "product_id": 2562, + "repository_id": 6115, + "parent_product_id": 2474, + "root_product_id": 2467, + "update_tag": "SLE-Module-Packagehub-Subpackages", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP5/x86_64/update/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Packagehub-Subpackages15-SP5-Updates for x86_64 SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-packagehub-subpackages15-sp5-debuginfo-updates-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-sp5-pool-x86_64", + "product_id": 2562, + "repository_id": 6116, + "parent_product_id": 2474, + "root_product_id": 2467, + "update_tag": "SLE-Module-Packagehub-Subpackages", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP5/x86_64/update_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Packagehub-Subpackages15-SP5-Debuginfo-Updates for x86_64 SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-packagehub-15-sp5-pool-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-sp5-pool-x86_64", + "product_id": 2562, + "repository_id": 6117, + "parent_product_id": 2474, + "root_product_id": 2467, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-15-SP5_x86_64/product/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-15-SP5-Pool for x86_64 SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-packagehub-subpackages15-sp5-pool-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-sp5-pool-x86_64", + "product_id": 2562, + "repository_id": 6118, + "parent_product_id": 2474, + "root_product_id": 2467, + "update_tag": "SLE-Module-Packagehub-Subpackages", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP5/x86_64/product/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Packagehub-Subpackages15-SP5-Pool for x86_64 SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-packagehub-subpackages15-sp5-debuginfo-pool-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-sp5-pool-x86_64", + "product_id": 2562, + "repository_id": 6119, + "parent_product_id": 2474, + "root_product_id": 2467, + "update_tag": "SLE-Module-Packagehub-Subpackages", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP5/x86_64/product_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Packagehub-Subpackages15-SP5-Debuginfo-Pool for x86_64 SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-certifications-15-sp5-updates-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-sp5-pool-x86_64", + "product_id": 2558, + "repository_id": 6080, + "parent_product_id": 2467, + "root_product_id": 2467, + "update_tag": "SLE-Module-Certifications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Certifications/15-SP5/x86_64/update/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Certifications-15-SP5-Updates for x86_64 SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-certifications-15-sp5-debuginfo-updates-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-sp5-pool-x86_64", + "product_id": 2558, + "repository_id": 6081, + "parent_product_id": 2467, + "root_product_id": 2467, + "update_tag": "SLE-Module-Certifications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Certifications/15-SP5/x86_64/update_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Certifications-15-SP5-Debuginfo-Updates for x86_64 SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-certifications-15-sp5-pool-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-sp5-pool-x86_64", + "product_id": 2558, + "repository_id": 6082, + "parent_product_id": 2467, + "root_product_id": 2467, + "update_tag": "SLE-Module-Certifications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Certifications/15-SP5/x86_64/product/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Certifications-15-SP5-Pool for x86_64 SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-certifications-15-sp5-debuginfo-pool-x86_64-sap", + "parent_channel_label": "sle-product-sles_sap15-sp5-pool-x86_64", + "product_id": 2558, + "repository_id": 6083, + "parent_product_id": 2467, + "root_product_id": 2467, + "update_tag": "SLE-Module-Certifications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Certifications/15-SP5/x86_64/product_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Certifications-15-SP5-Debuginfo-Pool for x86_64 SAP", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle15-sp5-installer-updates-x86_64-sled", + "parent_channel_label": "sle-product-sled15-sp5-pool-x86_64", + "product_id": 2468, + "repository_id": 5663, + "parent_product_id": null, + "root_product_id": 2468, + "update_tag": "SLE-INSTALLER", + "url": "https://updates.suse.com/SUSE/Updates/SLE-INSTALLER/15-SP5/x86_64/update/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE15-SP5-Installer-Updates for x86_64 SLED", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-sled15-sp5-updates-x86_64", + "parent_channel_label": "sle-product-sled15-sp5-pool-x86_64", + "product_id": 2468, + "repository_id": 5677, + "parent_product_id": null, + "root_product_id": 2468, + "update_tag": "SLE-Product-SLED", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-SLED/15-SP5/x86_64/update/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-SLED15-SP5-Updates for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-sled15-sp5-debuginfo-updates-x86_64", + "parent_channel_label": "sle-product-sled15-sp5-pool-x86_64", + "product_id": 2468, + "repository_id": 5678, + "parent_product_id": null, + "root_product_id": 2468, + "update_tag": "SLE-Product-SLED", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-SLED/15-SP5/x86_64/update_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-SLED15-SP5-Debuginfo-Updates for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-sled15-sp5-pool-x86_64", + "parent_channel_label": null, + "product_id": 2468, + "repository_id": 5679, + "parent_product_id": null, + "root_product_id": 2468, + "update_tag": "SLE-Product-SLED", + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-SLED/15-SP5/x86_64/product/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-SLED15-SP5-Pool for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-sled15-sp5-debuginfo-pool-x86_64", + "parent_channel_label": "sle-product-sled15-sp5-pool-x86_64", + "product_id": 2468, + "repository_id": 5681, + "parent_product_id": null, + "root_product_id": 2468, + "update_tag": "SLE-Product-SLED", + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-SLED/15-SP5/x86_64/product_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-SLED15-SP5-Debuginfo-Pool for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-basesystem15-sp5-updates-x86_64-sled", + "parent_channel_label": "sle-product-sled15-sp5-pool-x86_64", + "product_id": 2474, + "repository_id": 5708, + "parent_product_id": 2468, + "root_product_id": 2468, + "update_tag": "SLE-Module-Basesystem", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15-SP5/x86_64/update/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Basesystem15-SP5-Updates for x86_64 SLED", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-basesystem15-sp5-debuginfo-updates-x86_64-sled", + "parent_channel_label": "sle-product-sled15-sp5-pool-x86_64", + "product_id": 2474, + "repository_id": 5709, + "parent_product_id": 2468, + "root_product_id": 2468, + "update_tag": "SLE-Module-Basesystem", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15-SP5/x86_64/update_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Basesystem15-SP5-Debuginfo-Updates for x86_64 SLED", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-basesystem15-sp5-pool-x86_64-sled", + "parent_channel_label": "sle-product-sled15-sp5-pool-x86_64", + "product_id": 2474, + "repository_id": 5710, + "parent_product_id": 2468, + "root_product_id": 2468, + "update_tag": "SLE-Module-Basesystem", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP5/x86_64/product/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Basesystem15-SP5-Pool for x86_64 SLED", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-basesystem15-sp5-debuginfo-pool-x86_64-sled", + "parent_channel_label": "sle-product-sled15-sp5-pool-x86_64", + "product_id": 2474, + "repository_id": 5711, + "parent_product_id": 2468, + "root_product_id": 2468, + "update_tag": "SLE-Module-Basesystem", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP5/x86_64/product_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Basesystem15-SP5-Debuginfo-Pool for x86_64 SLED", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-manager-tools15-updates-x86_64-sled-sp5", + "parent_channel_label": "sle-product-sled15-sp5-pool-x86_64", + "product_id": 1712, + "repository_id": 2932, + "parent_product_id": 2474, + "root_product_id": 2468, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/15/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-Updates for x86_64 SLED SP5", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools15-debuginfo-updates-x86_64-sled-sp5", + "parent_channel_label": "sle-product-sled15-sp5-pool-x86_64", + "product_id": 1712, + "repository_id": 2933, + "parent_product_id": 2474, + "root_product_id": 2468, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/15/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-Debuginfo-Updates for x86_64 SLED SP5", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools15-pool-x86_64-sled-sp5", + "parent_channel_label": "sle-product-sled15-sp5-pool-x86_64", + "product_id": 1712, + "repository_id": 2934, + "parent_product_id": 2474, + "root_product_id": 2468, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/15/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-Pool for x86_64 SLED SP5", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools15-debuginfo-pool-x86_64-sled-sp5", + "parent_channel_label": "sle-product-sled15-sp5-pool-x86_64", + "product_id": 1712, + "repository_id": 2935, + "parent_product_id": 2474, + "root_product_id": 2468, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/15/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-Debuginfo-Pool for x86_64 SLED SP5", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools15-beta-updates-x86_64-sled-sp5", + "parent_channel_label": "sle-product-sled15-sp5-pool-x86_64", + "product_id": 1928, + "repository_id": 3897, + "parent_product_id": 1712, + "root_product_id": 2468, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/15-BETA/x86_64/update/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-BETA-Updates for x86_64 SLED SP5", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools15-beta-debuginfo-updates-x86_64-sled-sp5", + "parent_channel_label": "sle-product-sled15-sp5-pool-x86_64", + "product_id": 1928, + "repository_id": 3898, + "parent_product_id": 1712, + "root_product_id": 2468, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/15-BETA/x86_64/update_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-BETA-Debuginfo-Updates for x86_64 SLED SP5", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools15-beta-pool-x86_64-sled-sp5", + "parent_channel_label": "sle-product-sled15-sp5-pool-x86_64", + "product_id": 1928, + "repository_id": 3908, + "parent_product_id": 1712, + "root_product_id": 2468, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/15-BETA/x86_64/product/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-BETA-Pool for x86_64 SLED SP5", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools15-beta-debuginfo-pool-x86_64-sled-sp5", + "parent_channel_label": "sle-product-sled15-sp5-pool-x86_64", + "product_id": 1928, + "repository_id": 3909, + "parent_product_id": 1712, + "root_product_id": 2468, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/15-BETA/x86_64/product_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-BETA-Debuginfo-Pool for x86_64 SLED SP5", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-module-desktop-applications15-sp5-updates-x86_64-sled", + "parent_channel_label": "sle-product-sled15-sp5-pool-x86_64", + "product_id": 2478, + "repository_id": 5728, + "parent_product_id": 2474, + "root_product_id": 2468, + "update_tag": "SLE-Module-Desktop-Applications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15-SP5/x86_64/update/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Desktop-Applications15-SP5-Updates for x86_64 SLED", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-desktop-applications15-sp5-debuginfo-updates-x86_64-sled", + "parent_channel_label": "sle-product-sled15-sp5-pool-x86_64", + "product_id": 2478, + "repository_id": 5729, + "parent_product_id": 2474, + "root_product_id": 2468, + "update_tag": "SLE-Module-Desktop-Applications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15-SP5/x86_64/update_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Desktop-Applications15-SP5-Debuginfo-Updates for x86_64 SLED", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-desktop-applications15-sp5-pool-x86_64-sled", + "parent_channel_label": "sle-product-sled15-sp5-pool-x86_64", + "product_id": 2478, + "repository_id": 5730, + "parent_product_id": 2474, + "root_product_id": 2468, + "update_tag": "SLE-Module-Desktop-Applications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP5/x86_64/product/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Desktop-Applications15-SP5-Pool for x86_64 SLED", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-desktop-applications15-sp5-debuginfo-pool-x86_64-sled", + "parent_channel_label": "sle-product-sled15-sp5-pool-x86_64", + "product_id": 2478, + "repository_id": 5731, + "parent_product_id": 2474, + "root_product_id": 2468, + "update_tag": "SLE-Module-Desktop-Applications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP5/x86_64/product_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Desktop-Applications15-SP5-Debuginfo-Pool for x86_64 SLED", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-devtools15-sp5-updates-x86_64-sled", + "parent_channel_label": "sle-product-sled15-sp5-pool-x86_64", + "product_id": 2490, + "repository_id": 5788, + "parent_product_id": 2478, + "root_product_id": 2468, + "update_tag": "SLE-Module-Development-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15-SP5/x86_64/update/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-DevTools15-SP5-Updates for x86_64 SLED", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-devtools15-sp5-debuginfo-updates-x86_64-sled", + "parent_channel_label": "sle-product-sled15-sp5-pool-x86_64", + "product_id": 2490, + "repository_id": 5789, + "parent_product_id": 2478, + "root_product_id": 2468, + "update_tag": "SLE-Module-Development-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15-SP5/x86_64/update_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-DevTools15-SP5-Debuginfo-Updates for x86_64 SLED", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-devtools15-sp5-pool-x86_64-sled", + "parent_channel_label": "sle-product-sled15-sp5-pool-x86_64", + "product_id": 2490, + "repository_id": 5790, + "parent_product_id": 2478, + "root_product_id": 2468, + "update_tag": "SLE-Module-Development-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP5/x86_64/product/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-DevTools15-SP5-Pool for x86_64 SLED", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-devtools15-sp5-debuginfo-pool-x86_64-sled", + "parent_channel_label": "sle-product-sled15-sp5-pool-x86_64", + "product_id": 2490, + "repository_id": 5791, + "parent_product_id": 2478, + "root_product_id": 2468, + "update_tag": "SLE-Module-Development-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP5/x86_64/product_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-DevTools15-SP5-Debuginfo-Pool for x86_64 SLED", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-15-sp5-desktop-nvidia-driver-x86_64", + "parent_channel_label": "sle-product-sled15-sp5-pool-x86_64", + "product_id": 2513, + "repository_id": 5680, + "parent_product_id": 2478, + "root_product_id": 2468, + "update_tag": null, + "url": "https://download.nvidia.com/suse/sle15sp5/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-15-SP5-Desktop-NVIDIA-Driver for x86_64", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-we15-sp5-updates-x86_64-sled", + "parent_channel_label": "sle-product-sled15-sp5-pool-x86_64", + "product_id": 2513, + "repository_id": 5903, + "parent_product_id": 2478, + "root_product_id": 2468, + "update_tag": "SLE-Product-WE", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-WE/15-SP5/x86_64/update/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Product-WE15-SP5-Updates for x86_64 SLED", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-we15-sp5-debuginfo-updates-x86_64-sled", + "parent_channel_label": "sle-product-sled15-sp5-pool-x86_64", + "product_id": 2513, + "repository_id": 5904, + "parent_product_id": 2478, + "root_product_id": 2468, + "update_tag": "SLE-Product-WE", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-WE/15-SP5/x86_64/update_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Product-WE15-SP5-Debuginfo-Updates for x86_64 SLED", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-we15-sp5-pool-x86_64-sled", + "parent_channel_label": "sle-product-sled15-sp5-pool-x86_64", + "product_id": 2513, + "repository_id": 5905, + "parent_product_id": 2478, + "root_product_id": 2468, + "update_tag": "SLE-Product-WE", + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-WE/15-SP5/x86_64/product/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Product-WE15-SP5-Pool for x86_64 SLED", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-we15-sp5-debuginfo-pool-x86_64-sled", + "parent_channel_label": "sle-product-sled15-sp5-pool-x86_64", + "product_id": 2513, + "repository_id": 5906, + "parent_product_id": 2478, + "root_product_id": 2468, + "update_tag": "SLE-Product-WE", + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-WE/15-SP5/x86_64/product_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Product-WE15-SP5-Debuginfo-Pool for x86_64 SLED", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-python3-15-sp5-updates-x86_64-sled", + "parent_channel_label": "sle-product-sled15-sp5-pool-x86_64", + "product_id": 2536, + "repository_id": 5958, + "parent_product_id": 2474, + "root_product_id": 2468, + "update_tag": "SLE-Module-Python3", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Python3/15-SP5/x86_64/update/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Python3-15-SP5-Updates for x86_64 SLED", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-python3-15-sp5-debuginfo-updates-x86_64-sled", + "parent_channel_label": "sle-product-sled15-sp5-pool-x86_64", + "product_id": 2536, + "repository_id": 5959, + "parent_product_id": 2474, + "root_product_id": 2468, + "update_tag": "SLE-Module-Python3", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Python3/15-SP5/x86_64/update_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Python3-15-SP5-Debuginfo-Updates for x86_64 SLED", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-python3-15-sp5-pool-x86_64-sled", + "parent_channel_label": "sle-product-sled15-sp5-pool-x86_64", + "product_id": 2536, + "repository_id": 5960, + "parent_product_id": 2474, + "root_product_id": 2468, + "update_tag": "SLE-Module-Python3", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Python3/15-SP5/x86_64/product/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Python3-15-SP5-Pool for x86_64 SLED", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-python3-15-sp5-debuginfo-pool-x86_64-sled", + "parent_channel_label": "sle-product-sled15-sp5-pool-x86_64", + "product_id": 2536, + "repository_id": 5961, + "parent_product_id": 2474, + "root_product_id": 2468, + "update_tag": "SLE-Module-Python3", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Python3/15-SP5/x86_64/product_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Python3-15-SP5-Debuginfo-Pool for x86_64 SLED", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-packagehub-15-sp5-backports-pool-x86_64-sled", + "parent_channel_label": "sle-product-sled15-sp5-pool-x86_64", + "product_id": 2562, + "repository_id": 6113, + "parent_product_id": 2474, + "root_product_id": 2468, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-15-SP5_x86_64/standard/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-15-SP5-Backports-Pool for x86_64 SLED", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-packagehub-15-sp5-backports-debuginfo-x86_64-sled", + "parent_channel_label": "sle-product-sled15-sp5-pool-x86_64", + "product_id": 2562, + "repository_id": 6114, + "parent_product_id": 2474, + "root_product_id": 2468, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-15-SP5_x86_64/standard_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-15-SP5-Backports-Debuginfo for x86_64 SLED", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-packagehub-subpackages15-sp5-updates-x86_64-sled", + "parent_channel_label": "sle-product-sled15-sp5-pool-x86_64", + "product_id": 2562, + "repository_id": 6115, + "parent_product_id": 2474, + "root_product_id": 2468, + "update_tag": "SLE-Module-Packagehub-Subpackages", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP5/x86_64/update/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Packagehub-Subpackages15-SP5-Updates for x86_64 SLED", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-packagehub-subpackages15-sp5-debuginfo-updates-x86_64-sled", + "parent_channel_label": "sle-product-sled15-sp5-pool-x86_64", + "product_id": 2562, + "repository_id": 6116, + "parent_product_id": 2474, + "root_product_id": 2468, + "update_tag": "SLE-Module-Packagehub-Subpackages", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP5/x86_64/update_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Packagehub-Subpackages15-SP5-Debuginfo-Updates for x86_64 SLED", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "suse-packagehub-15-sp5-pool-x86_64-sled", + "parent_channel_label": "sle-product-sled15-sp5-pool-x86_64", + "product_id": 2562, + "repository_id": 6117, + "parent_product_id": 2474, + "root_product_id": 2468, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-15-SP5_x86_64/product/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-15-SP5-Pool for x86_64 SLED", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-packagehub-subpackages15-sp5-pool-x86_64-sled", + "parent_channel_label": "sle-product-sled15-sp5-pool-x86_64", + "product_id": 2562, + "repository_id": 6118, + "parent_product_id": 2474, + "root_product_id": 2468, + "update_tag": "SLE-Module-Packagehub-Subpackages", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP5/x86_64/product/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Packagehub-Subpackages15-SP5-Pool for x86_64 SLED", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-packagehub-subpackages15-sp5-debuginfo-pool-x86_64-sled", + "parent_channel_label": "sle-product-sled15-sp5-pool-x86_64", + "product_id": 2562, + "repository_id": 6119, + "parent_product_id": 2474, + "root_product_id": 2468, + "update_tag": "SLE-Module-Packagehub-Subpackages", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP5/x86_64/product_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Packagehub-Subpackages15-SP5-Debuginfo-Pool for x86_64 SLED", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-certifications-15-sp5-updates-x86_64-sled", + "parent_channel_label": "sle-product-sled15-sp5-pool-x86_64", + "product_id": 2558, + "repository_id": 6080, + "parent_product_id": 2468, + "root_product_id": 2468, + "update_tag": "SLE-Module-Certifications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Certifications/15-SP5/x86_64/update/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Certifications-15-SP5-Updates for x86_64 SLED", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-certifications-15-sp5-debuginfo-updates-x86_64-sled", + "parent_channel_label": "sle-product-sled15-sp5-pool-x86_64", + "product_id": 2558, + "repository_id": 6081, + "parent_product_id": 2468, + "root_product_id": 2468, + "update_tag": "SLE-Module-Certifications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Certifications/15-SP5/x86_64/update_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Certifications-15-SP5-Debuginfo-Updates for x86_64 SLED", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-certifications-15-sp5-pool-x86_64-sled", + "parent_channel_label": "sle-product-sled15-sp5-pool-x86_64", + "product_id": 2558, + "repository_id": 6082, + "parent_product_id": 2468, + "root_product_id": 2468, + "update_tag": "SLE-Module-Certifications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Certifications/15-SP5/x86_64/product/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Certifications-15-SP5-Pool for x86_64 SLED", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-certifications-15-sp5-debuginfo-pool-x86_64-sled", + "parent_channel_label": "sle-product-sled15-sp5-pool-x86_64", + "product_id": 2558, + "repository_id": 6083, + "parent_product_id": 2468, + "root_product_id": 2468, + "update_tag": "SLE-Module-Certifications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Certifications/15-SP5/x86_64/product_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Certifications-15-SP5-Debuginfo-Pool for x86_64 SLED", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle15-sp5-installer-updates-aarch64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp5-pool-aarch64", + "product_id": 2469, + "repository_id": 5645, + "parent_product_id": null, + "root_product_id": 2469, + "update_tag": "SLE-INSTALLER", + "url": "https://updates.suse.com/SUSE/Updates/SLE-INSTALLER/15-SP5/aarch64/update/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE15-SP5-Installer-Updates for aarch64 HPC", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-hpc-15-sp5-updates-aarch64", + "parent_channel_label": "sle-product-hpc-15-sp5-pool-aarch64", + "product_id": 2469, + "repository_id": 5683, + "parent_product_id": null, + "root_product_id": 2469, + "update_tag": "SLE-Product-HPC", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-HPC/15-SP5/aarch64/update/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HPC-15-SP5-Updates for aarch64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-hpc15-sp5-debuginfo-updates-aarch64", + "parent_channel_label": "sle-product-hpc-15-sp5-pool-aarch64", + "product_id": 2469, + "repository_id": 5684, + "parent_product_id": null, + "root_product_id": 2469, + "update_tag": "SLE-Product-HPC", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-HPC/15-SP5/aarch64/update_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HPC15-SP5-Debuginfo-Updates for aarch64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-hpc-15-sp5-pool-aarch64", + "parent_channel_label": null, + "product_id": 2469, + "repository_id": 5685, + "parent_product_id": null, + "root_product_id": 2469, + "update_tag": "SLE-Product-HPC", + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-HPC/15-SP5/aarch64/product/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HPC-15-SP5-Pool for aarch64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-hpc15-sp5-debuginfo-pool-aarch64", + "parent_channel_label": "sle-product-hpc-15-sp5-pool-aarch64", + "product_id": 2469, + "repository_id": 5686, + "parent_product_id": null, + "root_product_id": 2469, + "update_tag": "SLE-Product-HPC", + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-HPC/15-SP5/aarch64/product_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HPC15-SP5-Debuginfo-Pool for aarch64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-basesystem15-sp5-updates-aarch64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp5-pool-aarch64", + "product_id": 2471, + "repository_id": 5693, + "parent_product_id": 2469, + "root_product_id": 2469, + "update_tag": "SLE-Module-Basesystem", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15-SP5/aarch64/update/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Basesystem15-SP5-Updates for aarch64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-basesystem15-sp5-debuginfo-updates-aarch64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp5-pool-aarch64", + "product_id": 2471, + "repository_id": 5694, + "parent_product_id": 2469, + "root_product_id": 2469, + "update_tag": "SLE-Module-Basesystem", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15-SP5/aarch64/update_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Basesystem15-SP5-Debuginfo-Updates for aarch64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-basesystem15-sp5-pool-aarch64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp5-pool-aarch64", + "product_id": 2471, + "repository_id": 5695, + "parent_product_id": 2469, + "root_product_id": 2469, + "update_tag": "SLE-Module-Basesystem", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP5/aarch64/product/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Basesystem15-SP5-Pool for aarch64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-basesystem15-sp5-debuginfo-pool-aarch64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp5-pool-aarch64", + "product_id": 2471, + "repository_id": 5696, + "parent_product_id": 2469, + "root_product_id": 2469, + "update_tag": "SLE-Module-Basesystem", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP5/aarch64/product_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Basesystem15-SP5-Debuginfo-Pool for aarch64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-manager-tools15-updates-aarch64-hpc-sp5", + "parent_channel_label": "sle-product-hpc-15-sp5-pool-aarch64", + "product_id": 1709, + "repository_id": 2917, + "parent_product_id": 2471, + "root_product_id": 2469, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/15/aarch64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-Updates for aarch64 HPC SP5", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools15-debuginfo-updates-aarch64-hpc-sp5", + "parent_channel_label": "sle-product-hpc-15-sp5-pool-aarch64", + "product_id": 1709, + "repository_id": 2918, + "parent_product_id": 2471, + "root_product_id": 2469, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/15/aarch64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-Debuginfo-Updates for aarch64 HPC SP5", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools15-pool-aarch64-hpc-sp5", + "parent_channel_label": "sle-product-hpc-15-sp5-pool-aarch64", + "product_id": 1709, + "repository_id": 2919, + "parent_product_id": 2471, + "root_product_id": 2469, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/15/aarch64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-Pool for aarch64 HPC SP5", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools15-debuginfo-pool-aarch64-hpc-sp5", + "parent_channel_label": "sle-product-hpc-15-sp5-pool-aarch64", + "product_id": 1709, + "repository_id": 2920, + "parent_product_id": 2471, + "root_product_id": 2469, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/15/aarch64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-Debuginfo-Pool for aarch64 HPC SP5", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools15-beta-updates-aarch64-hpc-sp5", + "parent_channel_label": "sle-product-hpc-15-sp5-pool-aarch64", + "product_id": 1925, + "repository_id": 3891, + "parent_product_id": 1709, + "root_product_id": 2469, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/15-BETA/aarch64/update/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-BETA-Updates for aarch64 HPC SP5", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools15-beta-debuginfo-updates-aarch64-hpc-sp5", + "parent_channel_label": "sle-product-hpc-15-sp5-pool-aarch64", + "product_id": 1925, + "repository_id": 3892, + "parent_product_id": 1709, + "root_product_id": 2469, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/15-BETA/aarch64/update_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-BETA-Debuginfo-Updates for aarch64 HPC SP5", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools15-beta-pool-aarch64-hpc-sp5", + "parent_channel_label": "sle-product-hpc-15-sp5-pool-aarch64", + "product_id": 1925, + "repository_id": 3899, + "parent_product_id": 1709, + "root_product_id": 2469, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/15-BETA/aarch64/product/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-BETA-Pool for aarch64 HPC SP5", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools15-beta-debuginfo-pool-aarch64-hpc-sp5", + "parent_channel_label": "sle-product-hpc-15-sp5-pool-aarch64", + "product_id": 1925, + "repository_id": 3900, + "parent_product_id": 1709, + "root_product_id": 2469, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/15-BETA/aarch64/product_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-BETA-Debuginfo-Pool for aarch64 HPC SP5", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-module-desktop-applications15-sp5-updates-aarch64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp5-pool-aarch64", + "product_id": 2475, + "repository_id": 5713, + "parent_product_id": 2471, + "root_product_id": 2469, + "update_tag": "SLE-Module-Desktop-Applications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15-SP5/aarch64/update/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Desktop-Applications15-SP5-Updates for aarch64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-desktop-applications15-sp5-debuginfo-updates-aarch64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp5-pool-aarch64", + "product_id": 2475, + "repository_id": 5714, + "parent_product_id": 2471, + "root_product_id": 2469, + "update_tag": "SLE-Module-Desktop-Applications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15-SP5/aarch64/update_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Desktop-Applications15-SP5-Debuginfo-Updates for aarch64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-desktop-applications15-sp5-pool-aarch64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp5-pool-aarch64", + "product_id": 2475, + "repository_id": 5715, + "parent_product_id": 2471, + "root_product_id": 2469, + "update_tag": "SLE-Module-Desktop-Applications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP5/aarch64/product/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Desktop-Applications15-SP5-Pool for aarch64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-desktop-applications15-sp5-debuginfo-pool-aarch64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp5-pool-aarch64", + "product_id": 2475, + "repository_id": 5716, + "parent_product_id": 2471, + "root_product_id": 2469, + "update_tag": "SLE-Module-Desktop-Applications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP5/aarch64/product_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Desktop-Applications15-SP5-Debuginfo-Pool for aarch64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-devtools15-sp5-updates-aarch64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp5-pool-aarch64", + "product_id": 2487, + "repository_id": 5773, + "parent_product_id": 2475, + "root_product_id": 2469, + "update_tag": "SLE-Module-Development-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15-SP5/aarch64/update/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-DevTools15-SP5-Updates for aarch64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-devtools15-sp5-debuginfo-updates-aarch64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp5-pool-aarch64", + "product_id": 2487, + "repository_id": 5774, + "parent_product_id": 2475, + "root_product_id": 2469, + "update_tag": "SLE-Module-Development-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15-SP5/aarch64/update_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-DevTools15-SP5-Debuginfo-Updates for aarch64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-devtools15-sp5-pool-aarch64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp5-pool-aarch64", + "product_id": 2487, + "repository_id": 5775, + "parent_product_id": 2475, + "root_product_id": 2469, + "update_tag": "SLE-Module-Development-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP5/aarch64/product/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-DevTools15-SP5-Pool for aarch64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-devtools15-sp5-debuginfo-pool-aarch64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp5-pool-aarch64", + "product_id": 2487, + "repository_id": 5776, + "parent_product_id": 2475, + "root_product_id": 2469, + "update_tag": "SLE-Module-Development-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP5/aarch64/product_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-DevTools15-SP5-Debuginfo-Pool for aarch64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-nvidia-compute-15-updates-aarch64-hpc-sp5", + "parent_channel_label": "sle-product-hpc-15-sp5-pool-aarch64", + "product_id": 2130, + "repository_id": 4560, + "parent_product_id": 2487, + "root_product_id": 2469, + "update_tag": "SLE-Module-NVIDIA-Compute", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-NVIDIA-Compute/15/aarch64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-NVIDIA-Compute-15-Updates for aarch64 HPC SP5", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-nvidia-compute-15-pool-aarch64-hpc-sp5", + "parent_channel_label": "sle-product-hpc-15-sp5-pool-aarch64", + "product_id": 2130, + "repository_id": 4561, + "parent_product_id": 2487, + "root_product_id": 2469, + "update_tag": "SLE-Module-NVIDIA-Compute", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-NVIDIA-Compute/15/aarch64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-NVIDIA-Compute-15-Pool for aarch64 HPC SP5", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "nvidia-compute-sle-15-aarch64-hpc-sp5", + "parent_channel_label": "sle-product-hpc-15-sp5-pool-aarch64", + "product_id": 2130, + "repository_id": 4562, + "parent_product_id": 2487, + "root_product_id": 2469, + "update_tag": null, + "url": "https://developer.download.nvidia.com/compute/cuda/repos/sles15/sbsa/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "NVIDIA-Compute-SLE-15 for aarch64 HPC SP5", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-server-applications15-sp5-updates-aarch64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp5-pool-aarch64", + "product_id": 2479, + "repository_id": 5733, + "parent_product_id": 2471, + "root_product_id": 2469, + "update_tag": "SLE-Module-Server-Applications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15-SP5/aarch64/update/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Server-Applications15-SP5-Updates for aarch64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-server-applications15-sp5-debuginfo-updates-aarch64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp5-pool-aarch64", + "product_id": 2479, + "repository_id": 5734, + "parent_product_id": 2471, + "root_product_id": 2469, + "update_tag": "SLE-Module-Server-Applications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15-SP5/aarch64/update_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Server-Applications15-SP5-Debuginfo-Updates for aarch64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-server-applications15-sp5-pool-aarch64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp5-pool-aarch64", + "product_id": 2479, + "repository_id": 5735, + "parent_product_id": 2471, + "root_product_id": 2469, + "update_tag": "SLE-Module-Server-Applications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP5/aarch64/product/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Server-Applications15-SP5-Pool for aarch64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-server-applications15-sp5-debuginfo-pool-aarch64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp5-pool-aarch64", + "product_id": 2479, + "repository_id": 5736, + "parent_product_id": 2471, + "root_product_id": 2469, + "update_tag": "SLE-Module-Server-Applications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP5/aarch64/product_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Server-Applications15-SP5-Debuginfo-Pool for aarch64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting15-sp5-updates-aarch64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp5-pool-aarch64", + "product_id": 2491, + "repository_id": 5793, + "parent_product_id": 2479, + "root_product_id": 2469, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/15-SP5/aarch64/update/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Web-Scripting15-SP5-Updates for aarch64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting15-sp5-debuginfo-updates-aarch64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp5-pool-aarch64", + "product_id": 2491, + "repository_id": 5794, + "parent_product_id": 2479, + "root_product_id": 2469, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/15-SP5/aarch64/update_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Web-Scripting15-SP5-Debuginfo-Updates for aarch64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting15-sp5-pool-aarch64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp5-pool-aarch64", + "product_id": 2491, + "repository_id": 5795, + "parent_product_id": 2479, + "root_product_id": 2469, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP5/aarch64/product/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Web-Scripting15-SP5-Pool for aarch64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting15-sp5-debuginfo-pool-aarch64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp5-pool-aarch64", + "product_id": 2491, + "repository_id": 5796, + "parent_product_id": 2479, + "root_product_id": 2469, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP5/aarch64/product_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Web-Scripting15-SP5-Debuginfo-Pool for aarch64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-hpc15-sp5-updates-aarch64", + "parent_channel_label": "sle-product-hpc-15-sp5-pool-aarch64", + "product_id": 2495, + "repository_id": 5813, + "parent_product_id": 2491, + "root_product_id": 2469, + "update_tag": "SLE-Module-HPC", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-HPC/15-SP5/aarch64/update/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-HPC15-SP5-Updates for aarch64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-hpc15-sp5-debuginfo-updates-aarch64", + "parent_channel_label": "sle-product-hpc-15-sp5-pool-aarch64", + "product_id": 2495, + "repository_id": 5814, + "parent_product_id": 2491, + "root_product_id": 2469, + "update_tag": "SLE-Module-HPC", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-HPC/15-SP5/aarch64/update_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-HPC15-SP5-Debuginfo-Updates for aarch64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-hpc15-sp5-pool-aarch64", + "parent_channel_label": "sle-product-hpc-15-sp5-pool-aarch64", + "product_id": 2495, + "repository_id": 5815, + "parent_product_id": 2491, + "root_product_id": 2469, + "update_tag": "SLE-Module-HPC", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-HPC/15-SP5/aarch64/product/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-HPC15-SP5-Pool for aarch64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-hpc15-sp5-debuginfo-pool-aarch64", + "parent_channel_label": "sle-product-hpc-15-sp5-pool-aarch64", + "product_id": 2495, + "repository_id": 5816, + "parent_product_id": 2491, + "root_product_id": 2469, + "update_tag": "SLE-Module-HPC", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-HPC/15-SP5/aarch64/product_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-HPC15-SP5-Debuginfo-Pool for aarch64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud15-sp5-updates-aarch64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp5-pool-aarch64", + "product_id": 2501, + "repository_id": 5843, + "parent_product_id": 2479, + "root_product_id": 2469, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/15-SP5/aarch64/update/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud15-SP5-Updates for aarch64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud15-sp5-debuginfo-updates-aarch64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp5-pool-aarch64", + "product_id": 2501, + "repository_id": 5844, + "parent_product_id": 2479, + "root_product_id": 2469, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/15-SP5/aarch64/update_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud15-SP5-Debuginfo-Updates for aarch64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud15-sp5-pool-aarch64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp5-pool-aarch64", + "product_id": 2501, + "repository_id": 5845, + "parent_product_id": 2479, + "root_product_id": 2469, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP5/aarch64/product/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud15-SP5-Pool for aarch64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud15-sp5-debuginfo-pool-aarch64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp5-pool-aarch64", + "product_id": 2501, + "repository_id": 5846, + "parent_product_id": 2479, + "root_product_id": 2469, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP5/aarch64/product_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud15-SP5-Debuginfo-Pool for aarch64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-ha15-sp5-updates-aarch64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp5-pool-aarch64", + "product_id": 2514, + "repository_id": 5908, + "parent_product_id": 2479, + "root_product_id": 2469, + "update_tag": "SLE-Product-HA", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-HA/15-SP5/aarch64/update/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HA15-SP5-Updates for aarch64 HPC", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-ha15-sp5-debuginfo-updates-aarch64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp5-pool-aarch64", + "product_id": 2514, + "repository_id": 5909, + "parent_product_id": 2479, + "root_product_id": 2469, + "update_tag": "SLE-Product-HA", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-HA/15-SP5/aarch64/update_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HA15-SP5-Debuginfo-Updates for aarch64 HPC", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-ha15-sp5-pool-aarch64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp5-pool-aarch64", + "product_id": 2514, + "repository_id": 5910, + "parent_product_id": 2479, + "root_product_id": 2469, + "update_tag": "SLE-Product-HA", + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP5/aarch64/product/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HA15-SP5-Pool for aarch64 HPC", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-ha15-sp5-debuginfo-pool-aarch64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp5-pool-aarch64", + "product_id": 2514, + "repository_id": 5911, + "parent_product_id": 2479, + "root_product_id": 2469, + "update_tag": "SLE-Product-HA", + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP5/aarch64/product_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HA15-SP5-Debuginfo-Pool for aarch64 HPC", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-containers15-sp5-updates-aarch64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp5-pool-aarch64", + "product_id": 2483, + "repository_id": 5753, + "parent_product_id": 2471, + "root_product_id": 2469, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/15-SP5/aarch64/update/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers15-SP5-Updates for aarch64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-containers15-sp5-debuginfo-updates-aarch64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp5-pool-aarch64", + "product_id": 2483, + "repository_id": 5754, + "parent_product_id": 2471, + "root_product_id": 2469, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/15-SP5/aarch64/update_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers15-SP5-Debuginfo-Updates for aarch64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-containers15-sp5-pool-aarch64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp5-pool-aarch64", + "product_id": 2483, + "repository_id": 5755, + "parent_product_id": 2471, + "root_product_id": 2469, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP5/aarch64/product/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers15-SP5-Pool for aarch64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-containers15-sp5-debuginfo-pool-aarch64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp5-pool-aarch64", + "product_id": 2483, + "repository_id": 5756, + "parent_product_id": 2471, + "root_product_id": 2469, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP5/aarch64/product_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers15-SP5-Debuginfo-Pool for aarch64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-python3-15-sp5-updates-aarch64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp5-pool-aarch64", + "product_id": 2533, + "repository_id": 5943, + "parent_product_id": 2471, + "root_product_id": 2469, + "update_tag": "SLE-Module-Python3", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Python3/15-SP5/aarch64/update/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Python3-15-SP5-Updates for aarch64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-python3-15-sp5-debuginfo-updates-aarch64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp5-pool-aarch64", + "product_id": 2533, + "repository_id": 5944, + "parent_product_id": 2471, + "root_product_id": 2469, + "update_tag": "SLE-Module-Python3", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Python3/15-SP5/aarch64/update_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Python3-15-SP5-Debuginfo-Updates for aarch64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-python3-15-sp5-pool-aarch64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp5-pool-aarch64", + "product_id": 2533, + "repository_id": 5945, + "parent_product_id": 2471, + "root_product_id": 2469, + "update_tag": "SLE-Module-Python3", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Python3/15-SP5/aarch64/product/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Python3-15-SP5-Pool for aarch64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-python3-15-sp5-debuginfo-pool-aarch64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp5-pool-aarch64", + "product_id": 2533, + "repository_id": 5946, + "parent_product_id": 2471, + "root_product_id": 2469, + "update_tag": "SLE-Module-Python3", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Python3/15-SP5/aarch64/product_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Python3-15-SP5-Debuginfo-Pool for aarch64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-certifications-15-sp5-updates-aarch64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp5-pool-aarch64", + "product_id": 2555, + "repository_id": 6065, + "parent_product_id": 2469, + "root_product_id": 2469, + "update_tag": "SLE-Module-Certifications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Certifications/15-SP5/aarch64/update/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Certifications-15-SP5-Updates for aarch64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-certifications-15-sp5-debuginfo-updates-aarch64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp5-pool-aarch64", + "product_id": 2555, + "repository_id": 6066, + "parent_product_id": 2469, + "root_product_id": 2469, + "update_tag": "SLE-Module-Certifications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Certifications/15-SP5/aarch64/update_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Certifications-15-SP5-Debuginfo-Updates for aarch64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-certifications-15-sp5-pool-aarch64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp5-pool-aarch64", + "product_id": 2555, + "repository_id": 6067, + "parent_product_id": 2469, + "root_product_id": 2469, + "update_tag": "SLE-Module-Certifications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Certifications/15-SP5/aarch64/product/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Certifications-15-SP5-Pool for aarch64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-certifications-15-sp5-debuginfo-pool-aarch64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp5-pool-aarch64", + "product_id": 2555, + "repository_id": 6068, + "parent_product_id": 2469, + "root_product_id": 2469, + "update_tag": "SLE-Module-Certifications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Certifications/15-SP5/aarch64/product_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Certifications-15-SP5-Debuginfo-Pool for aarch64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle15-sp5-installer-updates-x86_64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp5-pool-x86_64", + "product_id": 2470, + "repository_id": 5663, + "parent_product_id": null, + "root_product_id": 2470, + "update_tag": "SLE-INSTALLER", + "url": "https://updates.suse.com/SUSE/Updates/SLE-INSTALLER/15-SP5/x86_64/update/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE15-SP5-Installer-Updates for x86_64 HPC", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-hpc-15-sp5-updates-x86_64", + "parent_channel_label": "sle-product-hpc-15-sp5-pool-x86_64", + "product_id": 2470, + "repository_id": 5688, + "parent_product_id": null, + "root_product_id": 2470, + "update_tag": "SLE-Product-HPC", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-HPC/15-SP5/x86_64/update/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HPC-15-SP5-Updates for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-hpc15-sp5-debuginfo-updates-x86_64", + "parent_channel_label": "sle-product-hpc-15-sp5-pool-x86_64", + "product_id": 2470, + "repository_id": 5689, + "parent_product_id": null, + "root_product_id": 2470, + "update_tag": "SLE-Product-HPC", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-HPC/15-SP5/x86_64/update_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HPC15-SP5-Debuginfo-Updates for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-hpc-15-sp5-pool-x86_64", + "parent_channel_label": null, + "product_id": 2470, + "repository_id": 5690, + "parent_product_id": null, + "root_product_id": 2470, + "update_tag": "SLE-Product-HPC", + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-HPC/15-SP5/x86_64/product/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HPC-15-SP5-Pool for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-hpc15-sp5-debuginfo-pool-x86_64", + "parent_channel_label": "sle-product-hpc-15-sp5-pool-x86_64", + "product_id": 2470, + "repository_id": 5691, + "parent_product_id": null, + "root_product_id": 2470, + "update_tag": "SLE-Product-HPC", + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-HPC/15-SP5/x86_64/product_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HPC15-SP5-Debuginfo-Pool for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-basesystem15-sp5-updates-x86_64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp5-pool-x86_64", + "product_id": 2474, + "repository_id": 5708, + "parent_product_id": 2470, + "root_product_id": 2470, + "update_tag": "SLE-Module-Basesystem", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15-SP5/x86_64/update/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Basesystem15-SP5-Updates for x86_64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-basesystem15-sp5-debuginfo-updates-x86_64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp5-pool-x86_64", + "product_id": 2474, + "repository_id": 5709, + "parent_product_id": 2470, + "root_product_id": 2470, + "update_tag": "SLE-Module-Basesystem", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15-SP5/x86_64/update_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Basesystem15-SP5-Debuginfo-Updates for x86_64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-basesystem15-sp5-pool-x86_64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp5-pool-x86_64", + "product_id": 2474, + "repository_id": 5710, + "parent_product_id": 2470, + "root_product_id": 2470, + "update_tag": "SLE-Module-Basesystem", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP5/x86_64/product/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Basesystem15-SP5-Pool for x86_64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-basesystem15-sp5-debuginfo-pool-x86_64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp5-pool-x86_64", + "product_id": 2474, + "repository_id": 5711, + "parent_product_id": 2470, + "root_product_id": 2470, + "update_tag": "SLE-Module-Basesystem", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP5/x86_64/product_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Basesystem15-SP5-Debuginfo-Pool for x86_64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-manager-tools15-updates-x86_64-hpc-sp5", + "parent_channel_label": "sle-product-hpc-15-sp5-pool-x86_64", + "product_id": 1712, + "repository_id": 2932, + "parent_product_id": 2474, + "root_product_id": 2470, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/15/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-Updates for x86_64 HPC SP5", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools15-debuginfo-updates-x86_64-hpc-sp5", + "parent_channel_label": "sle-product-hpc-15-sp5-pool-x86_64", + "product_id": 1712, + "repository_id": 2933, + "parent_product_id": 2474, + "root_product_id": 2470, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/15/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-Debuginfo-Updates for x86_64 HPC SP5", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools15-pool-x86_64-hpc-sp5", + "parent_channel_label": "sle-product-hpc-15-sp5-pool-x86_64", + "product_id": 1712, + "repository_id": 2934, + "parent_product_id": 2474, + "root_product_id": 2470, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/15/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-Pool for x86_64 HPC SP5", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools15-debuginfo-pool-x86_64-hpc-sp5", + "parent_channel_label": "sle-product-hpc-15-sp5-pool-x86_64", + "product_id": 1712, + "repository_id": 2935, + "parent_product_id": 2474, + "root_product_id": 2470, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/15/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-Debuginfo-Pool for x86_64 HPC SP5", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools15-beta-updates-x86_64-hpc-sp5", + "parent_channel_label": "sle-product-hpc-15-sp5-pool-x86_64", + "product_id": 1928, + "repository_id": 3897, + "parent_product_id": 1712, + "root_product_id": 2470, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/15-BETA/x86_64/update/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-BETA-Updates for x86_64 HPC SP5", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools15-beta-debuginfo-updates-x86_64-hpc-sp5", + "parent_channel_label": "sle-product-hpc-15-sp5-pool-x86_64", + "product_id": 1928, + "repository_id": 3898, + "parent_product_id": 1712, + "root_product_id": 2470, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/15-BETA/x86_64/update_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-BETA-Debuginfo-Updates for x86_64 HPC SP5", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools15-beta-pool-x86_64-hpc-sp5", + "parent_channel_label": "sle-product-hpc-15-sp5-pool-x86_64", + "product_id": 1928, + "repository_id": 3908, + "parent_product_id": 1712, + "root_product_id": 2470, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/15-BETA/x86_64/product/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-BETA-Pool for x86_64 HPC SP5", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools15-beta-debuginfo-pool-x86_64-hpc-sp5", + "parent_channel_label": "sle-product-hpc-15-sp5-pool-x86_64", + "product_id": 1928, + "repository_id": 3909, + "parent_product_id": 1712, + "root_product_id": 2470, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/15-BETA/x86_64/product_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-BETA-Debuginfo-Pool for x86_64 HPC SP5", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-module-desktop-applications15-sp5-updates-x86_64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp5-pool-x86_64", + "product_id": 2478, + "repository_id": 5728, + "parent_product_id": 2474, + "root_product_id": 2470, + "update_tag": "SLE-Module-Desktop-Applications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15-SP5/x86_64/update/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Desktop-Applications15-SP5-Updates for x86_64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-desktop-applications15-sp5-debuginfo-updates-x86_64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp5-pool-x86_64", + "product_id": 2478, + "repository_id": 5729, + "parent_product_id": 2474, + "root_product_id": 2470, + "update_tag": "SLE-Module-Desktop-Applications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15-SP5/x86_64/update_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Desktop-Applications15-SP5-Debuginfo-Updates for x86_64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-desktop-applications15-sp5-pool-x86_64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp5-pool-x86_64", + "product_id": 2478, + "repository_id": 5730, + "parent_product_id": 2474, + "root_product_id": 2470, + "update_tag": "SLE-Module-Desktop-Applications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP5/x86_64/product/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Desktop-Applications15-SP5-Pool for x86_64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-desktop-applications15-sp5-debuginfo-pool-x86_64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp5-pool-x86_64", + "product_id": 2478, + "repository_id": 5731, + "parent_product_id": 2474, + "root_product_id": 2470, + "update_tag": "SLE-Module-Desktop-Applications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP5/x86_64/product_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Desktop-Applications15-SP5-Debuginfo-Pool for x86_64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-devtools15-sp5-updates-x86_64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp5-pool-x86_64", + "product_id": 2490, + "repository_id": 5788, + "parent_product_id": 2478, + "root_product_id": 2470, + "update_tag": "SLE-Module-Development-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15-SP5/x86_64/update/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-DevTools15-SP5-Updates for x86_64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-devtools15-sp5-debuginfo-updates-x86_64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp5-pool-x86_64", + "product_id": 2490, + "repository_id": 5789, + "parent_product_id": 2478, + "root_product_id": 2470, + "update_tag": "SLE-Module-Development-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15-SP5/x86_64/update_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-DevTools15-SP5-Debuginfo-Updates for x86_64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-devtools15-sp5-pool-x86_64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp5-pool-x86_64", + "product_id": 2490, + "repository_id": 5790, + "parent_product_id": 2478, + "root_product_id": 2470, + "update_tag": "SLE-Module-Development-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP5/x86_64/product/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-DevTools15-SP5-Pool for x86_64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-devtools15-sp5-debuginfo-pool-x86_64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp5-pool-x86_64", + "product_id": 2490, + "repository_id": 5791, + "parent_product_id": 2478, + "root_product_id": 2470, + "update_tag": "SLE-Module-Development-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP5/x86_64/product_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-DevTools15-SP5-Debuginfo-Pool for x86_64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-nvidia-compute-15-updates-x86_64-hpc-sp5", + "parent_channel_label": "sle-product-hpc-15-sp5-pool-x86_64", + "product_id": 2131, + "repository_id": 4554, + "parent_product_id": 2490, + "root_product_id": 2470, + "update_tag": "SLE-Module-NVIDIA-Compute", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-NVIDIA-Compute/15/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-NVIDIA-Compute-15-Updates for x86_64 HPC SP5", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-nvidia-compute-15-pool-x86_64-hpc-sp5", + "parent_channel_label": "sle-product-hpc-15-sp5-pool-x86_64", + "product_id": 2131, + "repository_id": 4556, + "parent_product_id": 2490, + "root_product_id": 2470, + "update_tag": "SLE-Module-NVIDIA-Compute", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-NVIDIA-Compute/15/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-NVIDIA-Compute-15-Pool for x86_64 HPC SP5", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "nvidia-compute-sle-15-x86_64-hpc-sp5", + "parent_channel_label": "sle-product-hpc-15-sp5-pool-x86_64", + "product_id": 2131, + "repository_id": 4563, + "parent_product_id": 2490, + "root_product_id": 2470, + "update_tag": null, + "url": "https://developer.download.nvidia.com/compute/cuda/repos/sles15/x86_64/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "NVIDIA-Compute-SLE-15 for x86_64 HPC SP5", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-server-applications15-sp5-updates-x86_64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp5-pool-x86_64", + "product_id": 2482, + "repository_id": 5748, + "parent_product_id": 2474, + "root_product_id": 2470, + "update_tag": "SLE-Module-Server-Applications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15-SP5/x86_64/update/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Server-Applications15-SP5-Updates for x86_64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-server-applications15-sp5-debuginfo-updates-x86_64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp5-pool-x86_64", + "product_id": 2482, + "repository_id": 5749, + "parent_product_id": 2474, + "root_product_id": 2470, + "update_tag": "SLE-Module-Server-Applications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15-SP5/x86_64/update_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Server-Applications15-SP5-Debuginfo-Updates for x86_64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-server-applications15-sp5-pool-x86_64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp5-pool-x86_64", + "product_id": 2482, + "repository_id": 5750, + "parent_product_id": 2474, + "root_product_id": 2470, + "update_tag": "SLE-Module-Server-Applications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP5/x86_64/product/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Server-Applications15-SP5-Pool for x86_64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-server-applications15-sp5-debuginfo-pool-x86_64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp5-pool-x86_64", + "product_id": 2482, + "repository_id": 5751, + "parent_product_id": 2474, + "root_product_id": 2470, + "update_tag": "SLE-Module-Server-Applications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP5/x86_64/product_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Server-Applications15-SP5-Debuginfo-Pool for x86_64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting15-sp5-updates-x86_64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp5-pool-x86_64", + "product_id": 2494, + "repository_id": 5808, + "parent_product_id": 2482, + "root_product_id": 2470, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/15-SP5/x86_64/update/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Web-Scripting15-SP5-Updates for x86_64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting15-sp5-debuginfo-updates-x86_64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp5-pool-x86_64", + "product_id": 2494, + "repository_id": 5809, + "parent_product_id": 2482, + "root_product_id": 2470, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Web-Scripting/15-SP5/x86_64/update_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Web-Scripting15-SP5-Debuginfo-Updates for x86_64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting15-sp5-pool-x86_64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp5-pool-x86_64", + "product_id": 2494, + "repository_id": 5810, + "parent_product_id": 2482, + "root_product_id": 2470, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP5/x86_64/product/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Web-Scripting15-SP5-Pool for x86_64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-web-scripting15-sp5-debuginfo-pool-x86_64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp5-pool-x86_64", + "product_id": 2494, + "repository_id": 5811, + "parent_product_id": 2482, + "root_product_id": 2470, + "update_tag": "SLE-Module-Web-Scripting", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Web-Scripting/15-SP5/x86_64/product_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Web-Scripting15-SP5-Debuginfo-Pool for x86_64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-hpc15-sp5-updates-x86_64", + "parent_channel_label": "sle-product-hpc-15-sp5-pool-x86_64", + "product_id": 2496, + "repository_id": 5818, + "parent_product_id": 2494, + "root_product_id": 2470, + "update_tag": "SLE-Module-HPC", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-HPC/15-SP5/x86_64/update/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-HPC15-SP5-Updates for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-hpc15-sp5-debuginfo-updates-x86_64", + "parent_channel_label": "sle-product-hpc-15-sp5-pool-x86_64", + "product_id": 2496, + "repository_id": 5819, + "parent_product_id": 2494, + "root_product_id": 2470, + "update_tag": "SLE-Module-HPC", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-HPC/15-SP5/x86_64/update_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-HPC15-SP5-Debuginfo-Updates for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-hpc15-sp5-pool-x86_64", + "parent_channel_label": "sle-product-hpc-15-sp5-pool-x86_64", + "product_id": 2496, + "repository_id": 5820, + "parent_product_id": 2494, + "root_product_id": 2470, + "update_tag": "SLE-Module-HPC", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-HPC/15-SP5/x86_64/product/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-HPC15-SP5-Pool for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-hpc15-sp5-debuginfo-pool-x86_64", + "parent_channel_label": "sle-product-hpc-15-sp5-pool-x86_64", + "product_id": 2496, + "repository_id": 5821, + "parent_product_id": 2494, + "root_product_id": 2470, + "update_tag": "SLE-Module-HPC", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-HPC/15-SP5/x86_64/product_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-HPC15-SP5-Debuginfo-Pool for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud15-sp5-updates-x86_64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp5-pool-x86_64", + "product_id": 2504, + "repository_id": 5858, + "parent_product_id": 2482, + "root_product_id": 2470, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/15-SP5/x86_64/update/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud15-SP5-Updates for x86_64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud15-sp5-debuginfo-updates-x86_64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp5-pool-x86_64", + "product_id": 2504, + "repository_id": 5859, + "parent_product_id": 2482, + "root_product_id": 2470, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Public-Cloud/15-SP5/x86_64/update_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud15-SP5-Debuginfo-Updates for x86_64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud15-sp5-pool-x86_64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp5-pool-x86_64", + "product_id": 2504, + "repository_id": 5860, + "parent_product_id": 2482, + "root_product_id": 2470, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP5/x86_64/product/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud15-SP5-Pool for x86_64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-public-cloud15-sp5-debuginfo-pool-x86_64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp5-pool-x86_64", + "product_id": 2504, + "repository_id": 5861, + "parent_product_id": 2482, + "root_product_id": 2470, + "update_tag": "SLE-Module-Public-Cloud", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Public-Cloud/15-SP5/x86_64/product_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Public-Cloud15-SP5-Debuginfo-Pool for x86_64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-ha15-sp5-updates-x86_64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp5-pool-x86_64", + "product_id": 2517, + "repository_id": 5923, + "parent_product_id": 2482, + "root_product_id": 2470, + "update_tag": "SLE-Product-HA", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-HA/15-SP5/x86_64/update/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HA15-SP5-Updates for x86_64 HPC", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-ha15-sp5-debuginfo-updates-x86_64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp5-pool-x86_64", + "product_id": 2517, + "repository_id": 5924, + "parent_product_id": 2482, + "root_product_id": 2470, + "update_tag": "SLE-Product-HA", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-HA/15-SP5/x86_64/update_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HA15-SP5-Debuginfo-Updates for x86_64 HPC", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-ha15-sp5-pool-x86_64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp5-pool-x86_64", + "product_id": 2517, + "repository_id": 5925, + "parent_product_id": 2482, + "root_product_id": 2470, + "update_tag": "SLE-Product-HA", + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP5/x86_64/product/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HA15-SP5-Pool for x86_64 HPC", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-ha15-sp5-debuginfo-pool-x86_64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp5-pool-x86_64", + "product_id": 2517, + "repository_id": 5926, + "parent_product_id": 2482, + "root_product_id": 2470, + "update_tag": "SLE-Product-HA", + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-HA/15-SP5/x86_64/product_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-HA15-SP5-Debuginfo-Pool for x86_64 HPC", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-containers15-sp5-updates-x86_64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp5-pool-x86_64", + "product_id": 2486, + "repository_id": 5768, + "parent_product_id": 2474, + "root_product_id": 2470, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/15-SP5/x86_64/update/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers15-SP5-Updates for x86_64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-containers15-sp5-debuginfo-updates-x86_64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp5-pool-x86_64", + "product_id": 2486, + "repository_id": 5769, + "parent_product_id": 2474, + "root_product_id": 2470, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/15-SP5/x86_64/update_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers15-SP5-Debuginfo-Updates for x86_64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-containers15-sp5-pool-x86_64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp5-pool-x86_64", + "product_id": 2486, + "repository_id": 5770, + "parent_product_id": 2474, + "root_product_id": 2470, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP5/x86_64/product/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers15-SP5-Pool for x86_64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-containers15-sp5-debuginfo-pool-x86_64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp5-pool-x86_64", + "product_id": 2486, + "repository_id": 5771, + "parent_product_id": 2474, + "root_product_id": 2470, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP5/x86_64/product_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers15-SP5-Debuginfo-Pool for x86_64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-live-patching15-sp5-updates-x86_64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp5-pool-x86_64", + "product_id": 2511, + "repository_id": 5893, + "parent_product_id": 2474, + "root_product_id": 2470, + "update_tag": "SLE-Module-Live-Patching", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Live-Patching/15-SP5/x86_64/update/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Live-Patching15-SP5-Updates for x86_64 HPC", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-live-patching15-sp5-debuginfo-updates-x86_64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp5-pool-x86_64", + "product_id": 2511, + "repository_id": 5894, + "parent_product_id": 2474, + "root_product_id": 2470, + "update_tag": "SLE-Module-Live-Patching", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Live-Patching/15-SP5/x86_64/update_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Live-Patching15-SP5-Debuginfo-Updates for x86_64 HPC", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-live-patching15-sp5-pool-x86_64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp5-pool-x86_64", + "product_id": 2511, + "repository_id": 5895, + "parent_product_id": 2474, + "root_product_id": 2470, + "update_tag": "SLE-Module-Live-Patching", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Live-Patching/15-SP5/x86_64/product/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Live-Patching15-SP5-Pool for x86_64 HPC", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-live-patching15-sp5-debuginfo-pool-x86_64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp5-pool-x86_64", + "product_id": 2511, + "repository_id": 5896, + "parent_product_id": 2474, + "root_product_id": 2470, + "update_tag": "SLE-Module-Live-Patching", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Live-Patching/15-SP5/x86_64/product_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Live-Patching15-SP5-Debuginfo-Pool for x86_64 HPC", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-python3-15-sp5-updates-x86_64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp5-pool-x86_64", + "product_id": 2536, + "repository_id": 5958, + "parent_product_id": 2474, + "root_product_id": 2470, + "update_tag": "SLE-Module-Python3", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Python3/15-SP5/x86_64/update/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Python3-15-SP5-Updates for x86_64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-python3-15-sp5-debuginfo-updates-x86_64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp5-pool-x86_64", + "product_id": 2536, + "repository_id": 5959, + "parent_product_id": 2474, + "root_product_id": 2470, + "update_tag": "SLE-Module-Python3", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Python3/15-SP5/x86_64/update_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Python3-15-SP5-Debuginfo-Updates for x86_64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-python3-15-sp5-pool-x86_64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp5-pool-x86_64", + "product_id": 2536, + "repository_id": 5960, + "parent_product_id": 2474, + "root_product_id": 2470, + "update_tag": "SLE-Module-Python3", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Python3/15-SP5/x86_64/product/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Python3-15-SP5-Pool for x86_64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-python3-15-sp5-debuginfo-pool-x86_64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp5-pool-x86_64", + "product_id": 2536, + "repository_id": 5961, + "parent_product_id": 2474, + "root_product_id": 2470, + "update_tag": "SLE-Module-Python3", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Python3/15-SP5/x86_64/product_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Python3-15-SP5-Debuginfo-Pool for x86_64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-certifications-15-sp5-updates-x86_64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp5-pool-x86_64", + "product_id": 2558, + "repository_id": 6080, + "parent_product_id": 2470, + "root_product_id": 2470, + "update_tag": "SLE-Module-Certifications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Certifications/15-SP5/x86_64/update/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Certifications-15-SP5-Updates for x86_64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-certifications-15-sp5-debuginfo-updates-x86_64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp5-pool-x86_64", + "product_id": 2558, + "repository_id": 6081, + "parent_product_id": 2470, + "root_product_id": 2470, + "update_tag": "SLE-Module-Certifications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Certifications/15-SP5/x86_64/update_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Certifications-15-SP5-Debuginfo-Updates for x86_64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-certifications-15-sp5-pool-x86_64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp5-pool-x86_64", + "product_id": 2558, + "repository_id": 6082, + "parent_product_id": 2470, + "root_product_id": 2470, + "update_tag": "SLE-Module-Certifications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Certifications/15-SP5/x86_64/product/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Certifications-15-SP5-Pool for x86_64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-certifications-15-sp5-debuginfo-pool-x86_64-hpc", + "parent_channel_label": "sle-product-hpc-15-sp5-pool-x86_64", + "product_id": 2558, + "repository_id": 6083, + "parent_product_id": 2470, + "root_product_id": 2470, + "update_tag": "SLE-Module-Certifications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Certifications/15-SP5/x86_64/product_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Certifications-15-SP5-Debuginfo-Pool for x86_64 HPC", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-micro-5.4-updates-aarch64", + "parent_channel_label": "sle-micro-5.4-pool-aarch64", + "product_id": 2572, + "repository_id": 6140, + "parent_product_id": null, + "root_product_id": 2572, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Updates/SLE-Micro/5.4/aarch64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Micro-5.4-Updates for aarch64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-micro-5.4-debuginfo-updates-aarch64", + "parent_channel_label": "sle-micro-5.4-pool-aarch64", + "product_id": 2572, + "repository_id": 6141, + "parent_product_id": null, + "root_product_id": 2572, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Updates/SLE-Micro/5.4/aarch64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Micro-5.4-Debuginfo-Updates for aarch64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-micro-5.4-pool-aarch64", + "parent_channel_label": null, + "product_id": 2572, + "repository_id": 6142, + "parent_product_id": null, + "root_product_id": 2572, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Products/SLE-Micro/5.4/aarch64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Micro-5.4-Pool for aarch64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-micro-5.4-debuginfo-pool-aarch64", + "parent_channel_label": "sle-micro-5.4-pool-aarch64", + "product_id": 2572, + "repository_id": 6143, + "parent_product_id": null, + "root_product_id": 2572, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Products/SLE-Micro/5.4/aarch64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Micro-5.4-Debuginfo-Pool for aarch64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "suse-packagehub-15-sp4-backports-pool-aarch64-micro-5.4", + "parent_channel_label": "sle-micro-5.4-pool-aarch64", + "product_id": 2344, + "repository_id": 5364, + "parent_product_id": 2572, + "root_product_id": 2572, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-15-SP4_aarch64/standard/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-15-SP4-Backports-Pool for aarch64 Micro 5.4", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "suse-packagehub-15-sp4-backports-debuginfo-aarch64-micro-5.4", + "parent_channel_label": "sle-micro-5.4-pool-aarch64", + "product_id": 2344, + "repository_id": 5365, + "parent_product_id": 2572, + "root_product_id": 2572, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-15-SP4_aarch64/standard_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-15-SP4-Backports-Debuginfo for aarch64 Micro 5.4", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-packagehub-subpackages15-sp4-updates-aarch64-micro-5.4", + "parent_channel_label": "sle-micro-5.4-pool-aarch64", + "product_id": 2344, + "repository_id": 5366, + "parent_product_id": 2572, + "root_product_id": 2572, + "update_tag": "SLE-Module-Packagehub-Subpackages", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP4/aarch64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Packagehub-Subpackages15-SP4-Updates for aarch64 Micro 5.4", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-packagehub-subpackages15-sp4-debuginfo-updates-aarch64-micro-5.4", + "parent_channel_label": "sle-micro-5.4-pool-aarch64", + "product_id": 2344, + "repository_id": 5367, + "parent_product_id": 2572, + "root_product_id": 2572, + "update_tag": "SLE-Module-Packagehub-Subpackages", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP4/aarch64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Packagehub-Subpackages15-SP4-Debuginfo-Updates for aarch64 Micro 5.4", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "suse-packagehub-15-sp4-pool-aarch64-micro-5.4", + "parent_channel_label": "sle-micro-5.4-pool-aarch64", + "product_id": 2344, + "repository_id": 5368, + "parent_product_id": 2572, + "root_product_id": 2572, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-15-SP4_aarch64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-15-SP4-Pool for aarch64 Micro 5.4", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-packagehub-subpackages15-sp4-pool-aarch64-micro-5.4", + "parent_channel_label": "sle-micro-5.4-pool-aarch64", + "product_id": 2344, + "repository_id": 5369, + "parent_product_id": 2572, + "root_product_id": 2572, + "update_tag": "SLE-Module-Packagehub-Subpackages", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP4/aarch64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Packagehub-Subpackages15-SP4-Pool for aarch64 Micro 5.4", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-packagehub-subpackages15-sp4-debuginfo-pool-aarch64-micro-5.4", + "parent_channel_label": "sle-micro-5.4-pool-aarch64", + "product_id": 2344, + "repository_id": 5370, + "parent_product_id": 2572, + "root_product_id": 2572, + "update_tag": "SLE-Module-Packagehub-Subpackages", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP4/aarch64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Packagehub-Subpackages15-SP4-Debuginfo-Pool for aarch64 Micro 5.4", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools-for-micro5-updates-aarch64-5.4", + "parent_channel_label": "sle-micro-5.4-pool-aarch64", + "product_id": 2549, + "repository_id": 6032, + "parent_product_id": 2572, + "root_product_id": 2572, + "update_tag": "SLE-Manager-Tools-For-Micro-5", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools-For-Micro/5/aarch64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools-For-Micro5-Updates for aarch64 5.4", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools-for-micro5-debuginfo-updates-aarch64-5.4", + "parent_channel_label": "sle-micro-5.4-pool-aarch64", + "product_id": 2549, + "repository_id": 6033, + "parent_product_id": 2572, + "root_product_id": 2572, + "update_tag": "SLE-Manager-Tools-For-Micro-5", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools-For-Micro/5/aarch64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools-For-Micro5-Debuginfo-Updates for aarch64 5.4", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools-for-micro5-pool-aarch64-5.4", + "parent_channel_label": "sle-micro-5.4-pool-aarch64", + "product_id": 2549, + "repository_id": 6034, + "parent_product_id": 2572, + "root_product_id": 2572, + "update_tag": "SLE-Manager-Tools-For-Micro-5", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools-For-Micro/5/aarch64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools-For-Micro5-Pool for aarch64 5.4", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools-for-micro5-debuginfo-pool-aarch64-5.4", + "parent_channel_label": "sle-micro-5.4-pool-aarch64", + "product_id": 2549, + "repository_id": 6035, + "parent_product_id": 2572, + "root_product_id": 2572, + "update_tag": "SLE-Manager-Tools-For-Micro-5", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools-For-Micro/5/aarch64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools-For-Micro5-Debuginfo-Pool for aarch64 5.4", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools-beta-for-micro5-updates-aarch64-5.4", + "parent_channel_label": "sle-micro-5.4-pool-aarch64", + "product_id": 2552, + "repository_id": 6047, + "parent_product_id": 2549, + "root_product_id": 2572, + "update_tag": "SLE-Manager-Tools-Beta-For-Micro-5", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools-Beta-For-Micro/5/aarch64/update/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools-Beta-For-Micro5-Updates for aarch64 5.4", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools-beta-for-micro5-debuginfo-updates-aarch64-5.4", + "parent_channel_label": "sle-micro-5.4-pool-aarch64", + "product_id": 2552, + "repository_id": 6048, + "parent_product_id": 2549, + "root_product_id": 2572, + "update_tag": "SLE-Manager-Tools-Beta-For-Micro-5", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools-Beta-For-Micro/5/aarch64/update_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools-Beta-For-Micro5-Debuginfo-Updates for aarch64 5.4", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools-beta-for-micro5-pool-aarch64-5.4", + "parent_channel_label": "sle-micro-5.4-pool-aarch64", + "product_id": 2552, + "repository_id": 6049, + "parent_product_id": 2549, + "root_product_id": 2572, + "update_tag": "SLE-Manager-Tools-Beta-For-Micro-5", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools-Beta-For-Micro/5/aarch64/product/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools-Beta-For-Micro5-Pool for aarch64 5.4", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools-beta-for-micro5-debuginfo-pool-aarch64-5.4", + "parent_channel_label": "sle-micro-5.4-pool-aarch64", + "product_id": 2552, + "repository_id": 6050, + "parent_product_id": 2549, + "root_product_id": 2572, + "update_tag": "SLE-Manager-Tools-Beta-For-Micro-5", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools-Beta-For-Micro/5/aarch64/product_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools-Beta-For-Micro5-Debuginfo-Pool for aarch64 5.4", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-micro-5.4-updates-s390x", + "parent_channel_label": "sle-micro-5.4-pool-s390x", + "product_id": 2573, + "repository_id": 6145, + "parent_product_id": null, + "root_product_id": 2573, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Updates/SLE-Micro/5.4/s390x/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Micro-5.4-Updates for s390x", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-micro-5.4-debuginfo-updates-s390x", + "parent_channel_label": "sle-micro-5.4-pool-s390x", + "product_id": 2573, + "repository_id": 6146, + "parent_product_id": null, + "root_product_id": 2573, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Updates/SLE-Micro/5.4/s390x/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Micro-5.4-Debuginfo-Updates for s390x", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-micro-5.4-pool-s390x", + "parent_channel_label": null, + "product_id": 2573, + "repository_id": 6147, + "parent_product_id": null, + "root_product_id": 2573, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Products/SLE-Micro/5.4/s390x/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Micro-5.4-Pool for s390x", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-micro-5.4-debuginfo-pool-s390x", + "parent_channel_label": "sle-micro-5.4-pool-s390x", + "product_id": 2573, + "repository_id": 6148, + "parent_product_id": null, + "root_product_id": 2573, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Products/SLE-Micro/5.4/s390x/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Micro-5.4-Debuginfo-Pool for s390x", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-live-patching15-sp4-updates-s390x-micro-5.4", + "parent_channel_label": "sle-micro-5.4-pool-s390x", + "product_id": 2333, + "repository_id": 5307, + "parent_product_id": 2573, + "root_product_id": 2573, + "update_tag": "SLE-Module-Live-Patching", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Live-Patching/15-SP4/s390x/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Live-Patching15-SP4-Updates for s390x Micro 5.4", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-live-patching15-sp4-debuginfo-updates-s390x-micro-5.4", + "parent_channel_label": "sle-micro-5.4-pool-s390x", + "product_id": 2333, + "repository_id": 5308, + "parent_product_id": 2573, + "root_product_id": 2573, + "update_tag": "SLE-Module-Live-Patching", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Live-Patching/15-SP4/s390x/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Live-Patching15-SP4-Debuginfo-Updates for s390x Micro 5.4", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-live-patching15-sp4-pool-s390x-micro-5.4", + "parent_channel_label": "sle-micro-5.4-pool-s390x", + "product_id": 2333, + "repository_id": 5309, + "parent_product_id": 2573, + "root_product_id": 2573, + "update_tag": "SLE-Module-Live-Patching", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Live-Patching/15-SP4/s390x/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Live-Patching15-SP4-Pool for s390x Micro 5.4", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-live-patching15-sp4-debuginfo-pool-s390x-micro-5.4", + "parent_channel_label": "sle-micro-5.4-pool-s390x", + "product_id": 2333, + "repository_id": 5310, + "parent_product_id": 2573, + "root_product_id": 2573, + "update_tag": "SLE-Module-Live-Patching", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Live-Patching/15-SP4/s390x/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Live-Patching15-SP4-Debuginfo-Pool for s390x Micro 5.4", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "suse-packagehub-15-sp4-backports-pool-s390x-micro-5.4", + "parent_channel_label": "sle-micro-5.4-pool-s390x", + "product_id": 2346, + "repository_id": 5380, + "parent_product_id": 2573, + "root_product_id": 2573, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-15-SP4_s390x/standard/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-15-SP4-Backports-Pool for s390x Micro 5.4", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "suse-packagehub-15-sp4-backports-debuginfo-s390x-micro-5.4", + "parent_channel_label": "sle-micro-5.4-pool-s390x", + "product_id": 2346, + "repository_id": 5381, + "parent_product_id": 2573, + "root_product_id": 2573, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-15-SP4_s390x/standard_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-15-SP4-Backports-Debuginfo for s390x Micro 5.4", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-packagehub-subpackages15-sp4-updates-s390x-micro-5.4", + "parent_channel_label": "sle-micro-5.4-pool-s390x", + "product_id": 2346, + "repository_id": 5382, + "parent_product_id": 2573, + "root_product_id": 2573, + "update_tag": "SLE-Module-Packagehub-Subpackages", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP4/s390x/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Packagehub-Subpackages15-SP4-Updates for s390x Micro 5.4", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-packagehub-subpackages15-sp4-debuginfo-updates-s390x-micro-5.4", + "parent_channel_label": "sle-micro-5.4-pool-s390x", + "product_id": 2346, + "repository_id": 5383, + "parent_product_id": 2573, + "root_product_id": 2573, + "update_tag": "SLE-Module-Packagehub-Subpackages", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP4/s390x/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Packagehub-Subpackages15-SP4-Debuginfo-Updates for s390x Micro 5.4", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "suse-packagehub-15-sp4-pool-s390x-micro-5.4", + "parent_channel_label": "sle-micro-5.4-pool-s390x", + "product_id": 2346, + "repository_id": 5384, + "parent_product_id": 2573, + "root_product_id": 2573, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-15-SP4_s390x/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-15-SP4-Pool for s390x Micro 5.4", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-packagehub-subpackages15-sp4-pool-s390x-micro-5.4", + "parent_channel_label": "sle-micro-5.4-pool-s390x", + "product_id": 2346, + "repository_id": 5385, + "parent_product_id": 2573, + "root_product_id": 2573, + "update_tag": "SLE-Module-Packagehub-Subpackages", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP4/s390x/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Packagehub-Subpackages15-SP4-Pool for s390x Micro 5.4", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-packagehub-subpackages15-sp4-debuginfo-pool-s390x-micro-5.4", + "parent_channel_label": "sle-micro-5.4-pool-s390x", + "product_id": 2346, + "repository_id": 5386, + "parent_product_id": 2573, + "root_product_id": 2573, + "update_tag": "SLE-Module-Packagehub-Subpackages", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP4/s390x/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Packagehub-Subpackages15-SP4-Debuginfo-Pool for s390x Micro 5.4", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools-for-micro5-updates-s390x-5.4", + "parent_channel_label": "sle-micro-5.4-pool-s390x", + "product_id": 2550, + "repository_id": 6037, + "parent_product_id": 2573, + "root_product_id": 2573, + "update_tag": "SLE-Manager-Tools-For-Micro-5", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools-For-Micro/5/s390x/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools-For-Micro5-Updates for s390x 5.4", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools-for-micro5-debuginfo-updates-s390x-5.4", + "parent_channel_label": "sle-micro-5.4-pool-s390x", + "product_id": 2550, + "repository_id": 6038, + "parent_product_id": 2573, + "root_product_id": 2573, + "update_tag": "SLE-Manager-Tools-For-Micro-5", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools-For-Micro/5/s390x/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools-For-Micro5-Debuginfo-Updates for s390x 5.4", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools-for-micro5-pool-s390x-5.4", + "parent_channel_label": "sle-micro-5.4-pool-s390x", + "product_id": 2550, + "repository_id": 6039, + "parent_product_id": 2573, + "root_product_id": 2573, + "update_tag": "SLE-Manager-Tools-For-Micro-5", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools-For-Micro/5/s390x/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools-For-Micro5-Pool for s390x 5.4", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools-for-micro5-debuginfo-pool-s390x-5.4", + "parent_channel_label": "sle-micro-5.4-pool-s390x", + "product_id": 2550, + "repository_id": 6040, + "parent_product_id": 2573, + "root_product_id": 2573, + "update_tag": "SLE-Manager-Tools-For-Micro-5", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools-For-Micro/5/s390x/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools-For-Micro5-Debuginfo-Pool for s390x 5.4", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools-beta-for-micro5-updates-s390x-5.4", + "parent_channel_label": "sle-micro-5.4-pool-s390x", + "product_id": 2553, + "repository_id": 6052, + "parent_product_id": 2550, + "root_product_id": 2573, + "update_tag": "SLE-Manager-Tools-Beta-For-Micro-5", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools-Beta-For-Micro/5/s390x/update/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools-Beta-For-Micro5-Updates for s390x 5.4", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools-beta-for-micro5-debuginfo-updates-s390x-5.4", + "parent_channel_label": "sle-micro-5.4-pool-s390x", + "product_id": 2553, + "repository_id": 6053, + "parent_product_id": 2550, + "root_product_id": 2573, + "update_tag": "SLE-Manager-Tools-Beta-For-Micro-5", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools-Beta-For-Micro/5/s390x/update_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools-Beta-For-Micro5-Debuginfo-Updates for s390x 5.4", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools-beta-for-micro5-pool-s390x-5.4", + "parent_channel_label": "sle-micro-5.4-pool-s390x", + "product_id": 2553, + "repository_id": 6054, + "parent_product_id": 2550, + "root_product_id": 2573, + "update_tag": "SLE-Manager-Tools-Beta-For-Micro-5", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools-Beta-For-Micro/5/s390x/product/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools-Beta-For-Micro5-Pool for s390x 5.4", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools-beta-for-micro5-debuginfo-pool-s390x-5.4", + "parent_channel_label": "sle-micro-5.4-pool-s390x", + "product_id": 2553, + "repository_id": 6055, + "parent_product_id": 2550, + "root_product_id": 2573, + "update_tag": "SLE-Manager-Tools-Beta-For-Micro-5", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools-Beta-For-Micro/5/s390x/product_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools-Beta-For-Micro5-Debuginfo-Pool for s390x 5.4", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-micro-5.4-updates-x86_64", + "parent_channel_label": "sle-micro-5.4-pool-x86_64", + "product_id": 2574, + "repository_id": 6150, + "parent_product_id": null, + "root_product_id": 2574, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Updates/SLE-Micro/5.4/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Micro-5.4-Updates for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-micro-5.4-debuginfo-updates-x86_64", + "parent_channel_label": "sle-micro-5.4-pool-x86_64", + "product_id": 2574, + "repository_id": 6151, + "parent_product_id": null, + "root_product_id": 2574, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Updates/SLE-Micro/5.4/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Micro-5.4-Debuginfo-Updates for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-micro-5.4-pool-x86_64", + "parent_channel_label": null, + "product_id": 2574, + "repository_id": 6152, + "parent_product_id": null, + "root_product_id": 2574, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Products/SLE-Micro/5.4/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Micro-5.4-Pool for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-micro-5.4-debuginfo-pool-x86_64", + "parent_channel_label": "sle-micro-5.4-pool-x86_64", + "product_id": 2574, + "repository_id": 6153, + "parent_product_id": null, + "root_product_id": 2574, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Products/SLE-Micro/5.4/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Micro-5.4-Debuginfo-Pool for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-live-patching15-sp4-updates-x86_64-micro-5.4", + "parent_channel_label": "sle-micro-5.4-pool-x86_64", + "product_id": 2334, + "repository_id": 5312, + "parent_product_id": 2574, + "root_product_id": 2574, + "update_tag": "SLE-Module-Live-Patching", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Live-Patching/15-SP4/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Live-Patching15-SP4-Updates for x86_64 Micro 5.4", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-live-patching15-sp4-debuginfo-updates-x86_64-micro-5.4", + "parent_channel_label": "sle-micro-5.4-pool-x86_64", + "product_id": 2334, + "repository_id": 5313, + "parent_product_id": 2574, + "root_product_id": 2574, + "update_tag": "SLE-Module-Live-Patching", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Live-Patching/15-SP4/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Live-Patching15-SP4-Debuginfo-Updates for x86_64 Micro 5.4", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-live-patching15-sp4-pool-x86_64-micro-5.4", + "parent_channel_label": "sle-micro-5.4-pool-x86_64", + "product_id": 2334, + "repository_id": 5314, + "parent_product_id": 2574, + "root_product_id": 2574, + "update_tag": "SLE-Module-Live-Patching", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Live-Patching/15-SP4/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Live-Patching15-SP4-Pool for x86_64 Micro 5.4", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-live-patching15-sp4-debuginfo-pool-x86_64-micro-5.4", + "parent_channel_label": "sle-micro-5.4-pool-x86_64", + "product_id": 2334, + "repository_id": 5315, + "parent_product_id": 2574, + "root_product_id": 2574, + "update_tag": "SLE-Module-Live-Patching", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Live-Patching/15-SP4/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Live-Patching15-SP4-Debuginfo-Pool for x86_64 Micro 5.4", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "suse-packagehub-15-sp4-backports-pool-x86_64-micro-5.4", + "parent_channel_label": "sle-micro-5.4-pool-x86_64", + "product_id": 2347, + "repository_id": 5388, + "parent_product_id": 2574, + "root_product_id": 2574, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-15-SP4_x86_64/standard/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-15-SP4-Backports-Pool for x86_64 Micro 5.4", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "suse-packagehub-15-sp4-backports-debuginfo-x86_64-micro-5.4", + "parent_channel_label": "sle-micro-5.4-pool-x86_64", + "product_id": 2347, + "repository_id": 5389, + "parent_product_id": 2574, + "root_product_id": 2574, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-15-SP4_x86_64/standard_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-15-SP4-Backports-Debuginfo for x86_64 Micro 5.4", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-packagehub-subpackages15-sp4-updates-x86_64-micro-5.4", + "parent_channel_label": "sle-micro-5.4-pool-x86_64", + "product_id": 2347, + "repository_id": 5390, + "parent_product_id": 2574, + "root_product_id": 2574, + "update_tag": "SLE-Module-Packagehub-Subpackages", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP4/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Packagehub-Subpackages15-SP4-Updates for x86_64 Micro 5.4", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-packagehub-subpackages15-sp4-debuginfo-updates-x86_64-micro-5.4", + "parent_channel_label": "sle-micro-5.4-pool-x86_64", + "product_id": 2347, + "repository_id": 5391, + "parent_product_id": 2574, + "root_product_id": 2574, + "update_tag": "SLE-Module-Packagehub-Subpackages", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Packagehub-Subpackages/15-SP4/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Packagehub-Subpackages15-SP4-Debuginfo-Updates for x86_64 Micro 5.4", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "suse-packagehub-15-sp4-pool-x86_64-micro-5.4", + "parent_channel_label": "sle-micro-5.4-pool-x86_64", + "product_id": 2347, + "repository_id": 5392, + "parent_product_id": 2574, + "root_product_id": 2574, + "update_tag": null, + "url": "https://updates.suse.com/SUSE/Backports/SLE-15-SP4_x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SUSE-PackageHub-15-SP4-Pool for x86_64 Micro 5.4", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-packagehub-subpackages15-sp4-pool-x86_64-micro-5.4", + "parent_channel_label": "sle-micro-5.4-pool-x86_64", + "product_id": 2347, + "repository_id": 5393, + "parent_product_id": 2574, + "root_product_id": 2574, + "update_tag": "SLE-Module-Packagehub-Subpackages", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP4/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Packagehub-Subpackages15-SP4-Pool for x86_64 Micro 5.4", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-module-packagehub-subpackages15-sp4-debuginfo-pool-x86_64-micro-5.4", + "parent_channel_label": "sle-micro-5.4-pool-x86_64", + "product_id": 2347, + "repository_id": 5394, + "parent_product_id": 2574, + "root_product_id": 2574, + "update_tag": "SLE-Module-Packagehub-Subpackages", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Packagehub-Subpackages/15-SP4/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Packagehub-Subpackages15-SP4-Debuginfo-Pool for x86_64 Micro 5.4", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools-for-micro5-updates-x86_64-5.4", + "parent_channel_label": "sle-micro-5.4-pool-x86_64", + "product_id": 2551, + "repository_id": 6042, + "parent_product_id": 2574, + "root_product_id": 2574, + "update_tag": "SLE-Manager-Tools-For-Micro-5", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools-For-Micro/5/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools-For-Micro5-Updates for x86_64 5.4", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools-for-micro5-debuginfo-updates-x86_64-5.4", + "parent_channel_label": "sle-micro-5.4-pool-x86_64", + "product_id": 2551, + "repository_id": 6043, + "parent_product_id": 2574, + "root_product_id": 2574, + "update_tag": "SLE-Manager-Tools-For-Micro-5", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools-For-Micro/5/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools-For-Micro5-Debuginfo-Updates for x86_64 5.4", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools-for-micro5-pool-x86_64-5.4", + "parent_channel_label": "sle-micro-5.4-pool-x86_64", + "product_id": 2551, + "repository_id": 6044, + "parent_product_id": 2574, + "root_product_id": 2574, + "update_tag": "SLE-Manager-Tools-For-Micro-5", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools-For-Micro/5/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools-For-Micro5-Pool for x86_64 5.4", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools-for-micro5-debuginfo-pool-x86_64-5.4", + "parent_channel_label": "sle-micro-5.4-pool-x86_64", + "product_id": 2551, + "repository_id": 6045, + "parent_product_id": 2574, + "root_product_id": 2574, + "update_tag": "SLE-Manager-Tools-For-Micro-5", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools-For-Micro/5/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools-For-Micro5-Debuginfo-Pool for x86_64 5.4", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools-beta-for-micro5-updates-x86_64-5.4", + "parent_channel_label": "sle-micro-5.4-pool-x86_64", + "product_id": 2554, + "repository_id": 6057, + "parent_product_id": 2551, + "root_product_id": 2574, + "update_tag": "SLE-Manager-Tools-Beta-For-Micro-5", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools-Beta-For-Micro/5/x86_64/update/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools-Beta-For-Micro5-Updates for x86_64 5.4", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools-beta-for-micro5-debuginfo-updates-x86_64-5.4", + "parent_channel_label": "sle-micro-5.4-pool-x86_64", + "product_id": 2554, + "repository_id": 6058, + "parent_product_id": 2551, + "root_product_id": 2574, + "update_tag": "SLE-Manager-Tools-Beta-For-Micro-5", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools-Beta-For-Micro/5/x86_64/update_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools-Beta-For-Micro5-Debuginfo-Updates for x86_64 5.4", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools-beta-for-micro5-pool-x86_64-5.4", + "parent_channel_label": "sle-micro-5.4-pool-x86_64", + "product_id": 2554, + "repository_id": 6059, + "parent_product_id": 2551, + "root_product_id": 2574, + "update_tag": "SLE-Manager-Tools-Beta-For-Micro-5", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools-Beta-For-Micro/5/x86_64/product/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools-Beta-For-Micro5-Pool for x86_64 5.4", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools-beta-for-micro5-debuginfo-pool-x86_64-5.4", + "parent_channel_label": "sle-micro-5.4-pool-x86_64", + "product_id": 2554, + "repository_id": 6060, + "parent_product_id": 2551, + "root_product_id": 2574, + "update_tag": "SLE-Manager-Tools-Beta-For-Micro-5", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools-Beta-For-Micro/5/x86_64/product_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools-Beta-For-Micro5-Debuginfo-Pool for x86_64 5.4", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-product-rt-15-sp5-updates-x86_64", + "parent_channel_label": "sle-product-rt-15-sp5-pool-x86_64", + "product_id": 2582, + "repository_id": 6171, + "parent_product_id": null, + "root_product_id": 2582, + "update_tag": "SLE-Product-RT", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-RT/15-SP5/x86_64/update/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-RT-15-SP5-Updates for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-rt15-sp5-debuginfo-updates-x86_64", + "parent_channel_label": "sle-product-rt-15-sp5-pool-x86_64", + "product_id": 2582, + "repository_id": 6172, + "parent_product_id": null, + "root_product_id": 2582, + "update_tag": "SLE-Product-RT", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Product-RT/15-SP5/x86_64/update_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-RT15-SP5-Debuginfo-Updates for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-rt-15-sp5-pool-x86_64", + "parent_channel_label": null, + "product_id": 2582, + "repository_id": 6173, + "parent_product_id": null, + "root_product_id": 2582, + "update_tag": "SLE-Product-RT", + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-RT/15-SP5/x86_64/product/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-RT-15-SP5-Pool for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-product-rt15-sp5-debuginfo-pool-x86_64", + "parent_channel_label": "sle-product-rt-15-sp5-pool-x86_64", + "product_id": 2582, + "repository_id": 6174, + "parent_product_id": null, + "root_product_id": 2582, + "update_tag": "SLE-Product-RT", + "url": "https://updates.suse.com/SUSE/Products/SLE-Product-RT/15-SP5/x86_64/product_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Product-RT15-SP5-Debuginfo-Pool for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-basesystem15-sp5-updates-x86_64-rt", + "parent_channel_label": "sle-product-rt-15-sp5-pool-x86_64", + "product_id": 2474, + "repository_id": 5708, + "parent_product_id": 2582, + "root_product_id": 2582, + "update_tag": "SLE-Module-Basesystem", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15-SP5/x86_64/update/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Basesystem15-SP5-Updates for x86_64 RT", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-basesystem15-sp5-debuginfo-updates-x86_64-rt", + "parent_channel_label": "sle-product-rt-15-sp5-pool-x86_64", + "product_id": 2474, + "repository_id": 5709, + "parent_product_id": 2582, + "root_product_id": 2582, + "update_tag": "SLE-Module-Basesystem", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Basesystem/15-SP5/x86_64/update_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Basesystem15-SP5-Debuginfo-Updates for x86_64 RT", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-basesystem15-sp5-pool-x86_64-rt", + "parent_channel_label": "sle-product-rt-15-sp5-pool-x86_64", + "product_id": 2474, + "repository_id": 5710, + "parent_product_id": 2582, + "root_product_id": 2582, + "update_tag": "SLE-Module-Basesystem", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP5/x86_64/product/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Basesystem15-SP5-Pool for x86_64 RT", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-basesystem15-sp5-debuginfo-pool-x86_64-rt", + "parent_channel_label": "sle-product-rt-15-sp5-pool-x86_64", + "product_id": 2474, + "repository_id": 5711, + "parent_product_id": 2582, + "root_product_id": 2582, + "update_tag": "SLE-Module-Basesystem", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Basesystem/15-SP5/x86_64/product_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Basesystem15-SP5-Debuginfo-Pool for x86_64 RT", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-manager-tools15-updates-x86_64-rt-sp5", + "parent_channel_label": "sle-product-rt-15-sp5-pool-x86_64", + "product_id": 1712, + "repository_id": 2932, + "parent_product_id": 2474, + "root_product_id": 2582, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/15/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-Updates for x86_64 RT SP5", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools15-debuginfo-updates-x86_64-rt-sp5", + "parent_channel_label": "sle-product-rt-15-sp5-pool-x86_64", + "product_id": 1712, + "repository_id": 2933, + "parent_product_id": 2474, + "root_product_id": 2582, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/15/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-Debuginfo-Updates for x86_64 RT SP5", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools15-pool-x86_64-rt-sp5", + "parent_channel_label": "sle-product-rt-15-sp5-pool-x86_64", + "product_id": 1712, + "repository_id": 2934, + "parent_product_id": 2474, + "root_product_id": 2582, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/15/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-Pool for x86_64 RT SP5", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools15-debuginfo-pool-x86_64-rt-sp5", + "parent_channel_label": "sle-product-rt-15-sp5-pool-x86_64", + "product_id": 1712, + "repository_id": 2935, + "parent_product_id": 2474, + "root_product_id": 2582, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/15/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-Debuginfo-Pool for x86_64 RT SP5", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools15-beta-updates-x86_64-rt-sp5", + "parent_channel_label": "sle-product-rt-15-sp5-pool-x86_64", + "product_id": 1928, + "repository_id": 3897, + "parent_product_id": 1712, + "root_product_id": 2582, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/15-BETA/x86_64/update/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-BETA-Updates for x86_64 RT SP5", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools15-beta-debuginfo-updates-x86_64-rt-sp5", + "parent_channel_label": "sle-product-rt-15-sp5-pool-x86_64", + "product_id": 1928, + "repository_id": 3898, + "parent_product_id": 1712, + "root_product_id": 2582, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/15-BETA/x86_64/update_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-BETA-Debuginfo-Updates for x86_64 RT SP5", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools15-beta-pool-x86_64-rt-sp5", + "parent_channel_label": "sle-product-rt-15-sp5-pool-x86_64", + "product_id": 1928, + "repository_id": 3908, + "parent_product_id": 1712, + "root_product_id": 2582, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/15-BETA/x86_64/product/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-BETA-Pool for x86_64 RT SP5", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools15-beta-debuginfo-pool-x86_64-rt-sp5", + "parent_channel_label": "sle-product-rt-15-sp5-pool-x86_64", + "product_id": 1928, + "repository_id": 3909, + "parent_product_id": 1712, + "root_product_id": 2582, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/15-BETA/x86_64/product_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-BETA-Debuginfo-Pool for x86_64 RT SP5", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-module-desktop-applications15-sp5-updates-x86_64-rt", + "parent_channel_label": "sle-product-rt-15-sp5-pool-x86_64", + "product_id": 2478, + "repository_id": 5728, + "parent_product_id": 2474, + "root_product_id": 2582, + "update_tag": "SLE-Module-Desktop-Applications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15-SP5/x86_64/update/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Desktop-Applications15-SP5-Updates for x86_64 RT", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-desktop-applications15-sp5-debuginfo-updates-x86_64-rt", + "parent_channel_label": "sle-product-rt-15-sp5-pool-x86_64", + "product_id": 2478, + "repository_id": 5729, + "parent_product_id": 2474, + "root_product_id": 2582, + "update_tag": "SLE-Module-Desktop-Applications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Desktop-Applications/15-SP5/x86_64/update_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Desktop-Applications15-SP5-Debuginfo-Updates for x86_64 RT", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-desktop-applications15-sp5-pool-x86_64-rt", + "parent_channel_label": "sle-product-rt-15-sp5-pool-x86_64", + "product_id": 2478, + "repository_id": 5730, + "parent_product_id": 2474, + "root_product_id": 2582, + "update_tag": "SLE-Module-Desktop-Applications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP5/x86_64/product/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Desktop-Applications15-SP5-Pool for x86_64 RT", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-desktop-applications15-sp5-debuginfo-pool-x86_64-rt", + "parent_channel_label": "sle-product-rt-15-sp5-pool-x86_64", + "product_id": 2478, + "repository_id": 5731, + "parent_product_id": 2474, + "root_product_id": 2582, + "update_tag": "SLE-Module-Desktop-Applications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Desktop-Applications/15-SP5/x86_64/product_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Desktop-Applications15-SP5-Debuginfo-Pool for x86_64 RT", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-devtools15-sp5-updates-x86_64-rt", + "parent_channel_label": "sle-product-rt-15-sp5-pool-x86_64", + "product_id": 2490, + "repository_id": 5788, + "parent_product_id": 2478, + "root_product_id": 2582, + "update_tag": "SLE-Module-Development-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15-SP5/x86_64/update/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-DevTools15-SP5-Updates for x86_64 RT", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-devtools15-sp5-debuginfo-updates-x86_64-rt", + "parent_channel_label": "sle-product-rt-15-sp5-pool-x86_64", + "product_id": 2490, + "repository_id": 5789, + "parent_product_id": 2478, + "root_product_id": 2582, + "update_tag": "SLE-Module-Development-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Development-Tools/15-SP5/x86_64/update_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-DevTools15-SP5-Debuginfo-Updates for x86_64 RT", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-devtools15-sp5-pool-x86_64-rt", + "parent_channel_label": "sle-product-rt-15-sp5-pool-x86_64", + "product_id": 2490, + "repository_id": 5790, + "parent_product_id": 2478, + "root_product_id": 2582, + "update_tag": "SLE-Module-Development-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP5/x86_64/product/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-DevTools15-SP5-Pool for x86_64 RT", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-devtools15-sp5-debuginfo-pool-x86_64-rt", + "parent_channel_label": "sle-product-rt-15-sp5-pool-x86_64", + "product_id": 2490, + "repository_id": 5791, + "parent_product_id": 2478, + "root_product_id": 2582, + "update_tag": "SLE-Module-Development-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Development-Tools/15-SP5/x86_64/product_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-DevTools15-SP5-Debuginfo-Pool for x86_64 RT", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-server-applications15-sp5-updates-x86_64-rt", + "parent_channel_label": "sle-product-rt-15-sp5-pool-x86_64", + "product_id": 2482, + "repository_id": 5748, + "parent_product_id": 2474, + "root_product_id": 2582, + "update_tag": "SLE-Module-Server-Applications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15-SP5/x86_64/update/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Server-Applications15-SP5-Updates for x86_64 RT", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-server-applications15-sp5-debuginfo-updates-x86_64-rt", + "parent_channel_label": "sle-product-rt-15-sp5-pool-x86_64", + "product_id": 2482, + "repository_id": 5749, + "parent_product_id": 2474, + "root_product_id": 2582, + "update_tag": "SLE-Module-Server-Applications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Server-Applications/15-SP5/x86_64/update_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Server-Applications15-SP5-Debuginfo-Updates for x86_64 RT", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-server-applications15-sp5-pool-x86_64-rt", + "parent_channel_label": "sle-product-rt-15-sp5-pool-x86_64", + "product_id": 2482, + "repository_id": 5750, + "parent_product_id": 2474, + "root_product_id": 2582, + "update_tag": "SLE-Module-Server-Applications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP5/x86_64/product/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Server-Applications15-SP5-Pool for x86_64 RT", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-server-applications15-sp5-debuginfo-pool-x86_64-rt", + "parent_channel_label": "sle-product-rt-15-sp5-pool-x86_64", + "product_id": 2482, + "repository_id": 5751, + "parent_product_id": 2474, + "root_product_id": 2582, + "update_tag": "SLE-Module-Server-Applications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Server-Applications/15-SP5/x86_64/product_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-Server-Applications15-SP5-Debuginfo-Pool for x86_64 RT", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-rt15-sp5-updates-x86_64", + "parent_channel_label": "sle-product-rt-15-sp5-pool-x86_64", + "product_id": 2583, + "repository_id": 6176, + "parent_product_id": 2482, + "root_product_id": 2582, + "update_tag": "SLE-Module-RT", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-RT/15-SP5/x86_64/update/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-RT15-SP5-Updates for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-rt15-sp5-debuginfo-updates-x86_64", + "parent_channel_label": "sle-product-rt-15-sp5-pool-x86_64", + "product_id": 2583, + "repository_id": 6177, + "parent_product_id": 2482, + "root_product_id": 2582, + "update_tag": "SLE-Module-RT", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-RT/15-SP5/x86_64/update_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-RT15-SP5-Debuginfo-Updates for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-rt15-sp5-pool-x86_64", + "parent_channel_label": "sle-product-rt-15-sp5-pool-x86_64", + "product_id": 2583, + "repository_id": 6178, + "parent_product_id": 2482, + "root_product_id": 2582, + "update_tag": "SLE-Module-RT", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-RT/15-SP5/x86_64/product/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-RT15-SP5-Pool for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-rt15-sp5-debuginfo-pool-x86_64", + "parent_channel_label": "sle-product-rt-15-sp5-pool-x86_64", + "product_id": 2583, + "repository_id": 6179, + "parent_product_id": 2482, + "root_product_id": 2582, + "update_tag": "SLE-Module-RT", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-RT/15-SP5/x86_64/product_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Module-RT15-SP5-Debuginfo-Pool for x86_64", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-containers15-sp5-updates-x86_64-rt", + "parent_channel_label": "sle-product-rt-15-sp5-pool-x86_64", + "product_id": 2486, + "repository_id": 5768, + "parent_product_id": 2474, + "root_product_id": 2582, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/15-SP5/x86_64/update/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers15-SP5-Updates for x86_64 RT", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-containers15-sp5-debuginfo-updates-x86_64-rt", + "parent_channel_label": "sle-product-rt-15-sp5-pool-x86_64", + "product_id": 2486, + "repository_id": 5769, + "parent_product_id": 2474, + "root_product_id": 2582, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Containers/15-SP5/x86_64/update_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers15-SP5-Debuginfo-Updates for x86_64 RT", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-containers15-sp5-pool-x86_64-rt", + "parent_channel_label": "sle-product-rt-15-sp5-pool-x86_64", + "product_id": 2486, + "repository_id": 5770, + "parent_product_id": 2474, + "root_product_id": 2582, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP5/x86_64/product/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers15-SP5-Pool for x86_64 RT", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-containers15-sp5-debuginfo-pool-x86_64-rt", + "parent_channel_label": "sle-product-rt-15-sp5-pool-x86_64", + "product_id": 2486, + "repository_id": 5771, + "parent_product_id": 2474, + "root_product_id": 2582, + "update_tag": "SLE-Module-Containers", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Containers/15-SP5/x86_64/product_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Containers15-SP5-Debuginfo-Pool for x86_64 RT", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-live-patching15-sp5-updates-x86_64-rt", + "parent_channel_label": "sle-product-rt-15-sp5-pool-x86_64", + "product_id": 2511, + "repository_id": 5893, + "parent_product_id": 2474, + "root_product_id": 2582, + "update_tag": "SLE-Module-Live-Patching", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Live-Patching/15-SP5/x86_64/update/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Live-Patching15-SP5-Updates for x86_64 RT", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-live-patching15-sp5-debuginfo-updates-x86_64-rt", + "parent_channel_label": "sle-product-rt-15-sp5-pool-x86_64", + "product_id": 2511, + "repository_id": 5894, + "parent_product_id": 2474, + "root_product_id": 2582, + "update_tag": "SLE-Module-Live-Patching", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Live-Patching/15-SP5/x86_64/update_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Live-Patching15-SP5-Debuginfo-Updates for x86_64 RT", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-live-patching15-sp5-pool-x86_64-rt", + "parent_channel_label": "sle-product-rt-15-sp5-pool-x86_64", + "product_id": 2511, + "repository_id": 5895, + "parent_product_id": 2474, + "root_product_id": 2582, + "update_tag": "SLE-Module-Live-Patching", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Live-Patching/15-SP5/x86_64/product/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Live-Patching15-SP5-Pool for x86_64 RT", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-live-patching15-sp5-debuginfo-pool-x86_64-rt", + "parent_channel_label": "sle-product-rt-15-sp5-pool-x86_64", + "product_id": 2511, + "repository_id": 5896, + "parent_product_id": 2474, + "root_product_id": 2582, + "update_tag": "SLE-Module-Live-Patching", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Live-Patching/15-SP5/x86_64/product_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Live-Patching15-SP5-Debuginfo-Pool for x86_64 RT", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-certifications-15-sp5-updates-x86_64-rt", + "parent_channel_label": "sle-product-rt-15-sp5-pool-x86_64", + "product_id": 2558, + "repository_id": 6080, + "parent_product_id": 2582, + "root_product_id": 2582, + "update_tag": "SLE-Module-Certifications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Certifications/15-SP5/x86_64/update/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Certifications-15-SP5-Updates for x86_64 RT", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-certifications-15-sp5-debuginfo-updates-x86_64-rt", + "parent_channel_label": "sle-product-rt-15-sp5-pool-x86_64", + "product_id": 2558, + "repository_id": 6081, + "parent_product_id": 2582, + "root_product_id": 2582, + "update_tag": "SLE-Module-Certifications", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Module-Certifications/15-SP5/x86_64/update_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Certifications-15-SP5-Debuginfo-Updates for x86_64 RT", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-certifications-15-sp5-pool-x86_64-rt", + "parent_channel_label": "sle-product-rt-15-sp5-pool-x86_64", + "product_id": 2558, + "repository_id": 6082, + "parent_product_id": 2582, + "root_product_id": 2582, + "update_tag": "SLE-Module-Certifications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Certifications/15-SP5/x86_64/product/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Certifications-15-SP5-Pool for x86_64 RT", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-module-certifications-15-sp5-debuginfo-pool-x86_64-rt", + "parent_channel_label": "sle-product-rt-15-sp5-pool-x86_64", + "product_id": 2558, + "repository_id": 6083, + "parent_product_id": 2582, + "root_product_id": 2582, + "update_tag": "SLE-Module-Certifications", + "url": "https://updates.suse.com/SUSE/Products/SLE-Module-Certifications/15-SP5/x86_64/product_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "SLE-Module-Certifications-15-SP5-Debuginfo-Pool for x86_64 RT", + "product_type": "module", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "opensuse-leap-15.5-updates-aarch64", + "parent_channel_label": "opensuse-leap-15.5-pool-aarch64", + "product_id": 2585, + "repository_id": 6189, + "parent_product_id": null, + "root_product_id": 2585, + "update_tag": null, + "url": "http://download.opensuse.org/update/leap/15.5/oss/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "openSUSE-Leap-15.5-Updates for aarch64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "opensuse-leap-15.5-nonoss-updates-aarch64", + "parent_channel_label": "opensuse-leap-15.5-pool-aarch64", + "product_id": 2585, + "repository_id": 6190, + "parent_product_id": null, + "root_product_id": 2585, + "update_tag": null, + "url": "http://download.opensuse.org/update/leap/15.5/non-oss/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "openSUSE-Leap-15.5-NonOss-Updates for aarch64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "opensuse-leap-15.5-pool-aarch64", + "parent_channel_label": null, + "product_id": 2585, + "repository_id": 6193, + "parent_product_id": null, + "root_product_id": 2585, + "update_tag": null, + "url": "http://download.opensuse.org/distribution/leap/15.5/repo/oss/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "openSUSE-Leap-15.5-Pool for aarch64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "opensuse-leap-15.5-nonoss-pool-aarch64", + "parent_channel_label": "opensuse-leap-15.5-pool-aarch64", + "product_id": 2585, + "repository_id": 6194, + "parent_product_id": null, + "root_product_id": 2585, + "update_tag": null, + "url": "http://download.opensuse.org/distribution/leap/15.5/repo/non-oss/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "openSUSE-Leap-15.5-NonOss-Pool for aarch64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "opensuse-sle-15.5-updates-aarch64", + "parent_channel_label": "opensuse-leap-15.5-pool-aarch64", + "product_id": 2585, + "repository_id": 6197, + "parent_product_id": null, + "root_product_id": 2585, + "update_tag": null, + "url": "http://download.opensuse.org/update/leap/15.5/sle/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "openSUSE-SLE-15.5-Updates for aarch64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "opensuse-backports-15.5-updates-aarch64", + "parent_channel_label": "opensuse-leap-15.5-pool-aarch64", + "product_id": 2585, + "repository_id": 6198, + "parent_product_id": null, + "root_product_id": 2585, + "update_tag": null, + "url": "http://download.opensuse.org/update/leap/15.5/backports/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "openSUSE-Backports-15.5-Updates for aarch64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-manager-tools15-updates-aarch64-opensuse-15.5", + "parent_channel_label": "opensuse-leap-15.5-pool-aarch64", + "product_id": 1709, + "repository_id": 2917, + "parent_product_id": 2585, + "root_product_id": 2585, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/15/aarch64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-Updates for aarch64 openSUSE 15.5", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools15-debuginfo-updates-aarch64-opensuse-15.5", + "parent_channel_label": "opensuse-leap-15.5-pool-aarch64", + "product_id": 1709, + "repository_id": 2918, + "parent_product_id": 2585, + "root_product_id": 2585, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/15/aarch64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-Debuginfo-Updates for aarch64 openSUSE 15.5", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools15-pool-aarch64-opensuse-15.5", + "parent_channel_label": "opensuse-leap-15.5-pool-aarch64", + "product_id": 1709, + "repository_id": 2919, + "parent_product_id": 2585, + "root_product_id": 2585, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/15/aarch64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-Pool for aarch64 openSUSE 15.5", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools15-debuginfo-pool-aarch64-opensuse-15.5", + "parent_channel_label": "opensuse-leap-15.5-pool-aarch64", + "product_id": 1709, + "repository_id": 2920, + "parent_product_id": 2585, + "root_product_id": 2585, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/15/aarch64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-Debuginfo-Pool for aarch64 openSUSE 15.5", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools15-beta-updates-aarch64-opensuse-15.5", + "parent_channel_label": "opensuse-leap-15.5-pool-aarch64", + "product_id": 1925, + "repository_id": 3891, + "parent_product_id": 1709, + "root_product_id": 2585, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/15-BETA/aarch64/update/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-BETA-Updates for aarch64 openSUSE 15.5", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools15-beta-debuginfo-updates-aarch64-opensuse-15.5", + "parent_channel_label": "opensuse-leap-15.5-pool-aarch64", + "product_id": 1925, + "repository_id": 3892, + "parent_product_id": 1709, + "root_product_id": 2585, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/15-BETA/aarch64/update_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-BETA-Debuginfo-Updates for aarch64 openSUSE 15.5", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools15-beta-pool-aarch64-opensuse-15.5", + "parent_channel_label": "opensuse-leap-15.5-pool-aarch64", + "product_id": 1925, + "repository_id": 3899, + "parent_product_id": 1709, + "root_product_id": 2585, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/15-BETA/aarch64/product/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-BETA-Pool for aarch64 openSUSE 15.5", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools15-beta-debuginfo-pool-aarch64-opensuse-15.5", + "parent_channel_label": "opensuse-leap-15.5-pool-aarch64", + "product_id": 1925, + "repository_id": 3900, + "parent_product_id": 1709, + "root_product_id": 2585, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/15-BETA/aarch64/product_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-BETA-Debuginfo-Pool for aarch64 openSUSE 15.5", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "opensuse-leap-15.5-updates-ppc64le", + "parent_channel_label": "opensuse-leap-15.5-pool-ppc64le", + "product_id": 2586, + "repository_id": 6189, + "parent_product_id": null, + "root_product_id": 2586, + "update_tag": null, + "url": "http://download.opensuse.org/update/leap/15.5/oss/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "openSUSE-Leap-15.5-Updates for ppc64le", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "opensuse-leap-15.5-nonoss-updates-ppc64le", + "parent_channel_label": "opensuse-leap-15.5-pool-ppc64le", + "product_id": 2586, + "repository_id": 6190, + "parent_product_id": null, + "root_product_id": 2586, + "update_tag": null, + "url": "http://download.opensuse.org/update/leap/15.5/non-oss/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "openSUSE-Leap-15.5-NonOss-Updates for ppc64le", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "opensuse-leap-15.5-pool-ppc64le", + "parent_channel_label": null, + "product_id": 2586, + "repository_id": 6193, + "parent_product_id": null, + "root_product_id": 2586, + "update_tag": null, + "url": "http://download.opensuse.org/distribution/leap/15.5/repo/oss/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "openSUSE-Leap-15.5-Pool for ppc64le", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "opensuse-leap-15.5-nonoss-pool-ppc64le", + "parent_channel_label": "opensuse-leap-15.5-pool-ppc64le", + "product_id": 2586, + "repository_id": 6194, + "parent_product_id": null, + "root_product_id": 2586, + "update_tag": null, + "url": "http://download.opensuse.org/distribution/leap/15.5/repo/non-oss/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "openSUSE-Leap-15.5-NonOss-Pool for ppc64le", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "opensuse-sle-15.5-updates-ppc64le", + "parent_channel_label": "opensuse-leap-15.5-pool-ppc64le", + "product_id": 2586, + "repository_id": 6197, + "parent_product_id": null, + "root_product_id": 2586, + "update_tag": null, + "url": "http://download.opensuse.org/update/leap/15.5/sle/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "openSUSE-SLE-15.5-Updates for ppc64le", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "opensuse-backports-15.5-updates-ppc64le", + "parent_channel_label": "opensuse-leap-15.5-pool-ppc64le", + "product_id": 2586, + "repository_id": 6198, + "parent_product_id": null, + "root_product_id": 2586, + "update_tag": null, + "url": "http://download.opensuse.org/update/leap/15.5/backports/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "openSUSE-Backports-15.5-Updates for ppc64le", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-manager-tools15-updates-ppc64le-opensuse-15.5", + "parent_channel_label": "opensuse-leap-15.5-pool-ppc64le", + "product_id": 1710, + "repository_id": 2922, + "parent_product_id": 2586, + "root_product_id": 2586, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/15/ppc64le/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-Updates for ppc64le openSUSE 15.5", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools15-debuginfo-updates-ppc64le-opensuse-15.5", + "parent_channel_label": "opensuse-leap-15.5-pool-ppc64le", + "product_id": 1710, + "repository_id": 2923, + "parent_product_id": 2586, + "root_product_id": 2586, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/15/ppc64le/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-Debuginfo-Updates for ppc64le openSUSE 15.5", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools15-pool-ppc64le-opensuse-15.5", + "parent_channel_label": "opensuse-leap-15.5-pool-ppc64le", + "product_id": 1710, + "repository_id": 2924, + "parent_product_id": 2586, + "root_product_id": 2586, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/15/ppc64le/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-Pool for ppc64le openSUSE 15.5", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools15-debuginfo-pool-ppc64le-opensuse-15.5", + "parent_channel_label": "opensuse-leap-15.5-pool-ppc64le", + "product_id": 1710, + "repository_id": 2925, + "parent_product_id": 2586, + "root_product_id": 2586, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/15/ppc64le/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-Debuginfo-Pool for ppc64le openSUSE 15.5", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools15-beta-updates-ppc64le-opensuse-15.5", + "parent_channel_label": "opensuse-leap-15.5-pool-ppc64le", + "product_id": 1926, + "repository_id": 3893, + "parent_product_id": 1710, + "root_product_id": 2586, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/15-BETA/ppc64le/update/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-BETA-Updates for ppc64le openSUSE 15.5", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools15-beta-debuginfo-updates-ppc64le-opensuse-15.5", + "parent_channel_label": "opensuse-leap-15.5-pool-ppc64le", + "product_id": 1926, + "repository_id": 3894, + "parent_product_id": 1710, + "root_product_id": 2586, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/15-BETA/ppc64le/update_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-BETA-Debuginfo-Updates for ppc64le openSUSE 15.5", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools15-beta-pool-ppc64le-opensuse-15.5", + "parent_channel_label": "opensuse-leap-15.5-pool-ppc64le", + "product_id": 1926, + "repository_id": 3902, + "parent_product_id": 1710, + "root_product_id": 2586, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/15-BETA/ppc64le/product/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-BETA-Pool for ppc64le openSUSE 15.5", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools15-beta-debuginfo-pool-ppc64le-opensuse-15.5", + "parent_channel_label": "opensuse-leap-15.5-pool-ppc64le", + "product_id": 1926, + "repository_id": 3903, + "parent_product_id": 1710, + "root_product_id": 2586, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/15-BETA/ppc64le/product_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-BETA-Debuginfo-Pool for ppc64le openSUSE 15.5", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "opensuse-leap-15.5-updates-s390x", + "parent_channel_label": "opensuse-leap-15.5-pool-s390x", + "product_id": 2587, + "repository_id": 6189, + "parent_product_id": null, + "root_product_id": 2587, + "update_tag": null, + "url": "http://download.opensuse.org/update/leap/15.5/oss/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "openSUSE-Leap-15.5-Updates for s390x", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "opensuse-leap-15.5-nonoss-updates-s390x", + "parent_channel_label": "opensuse-leap-15.5-pool-s390x", + "product_id": 2587, + "repository_id": 6190, + "parent_product_id": null, + "root_product_id": 2587, + "update_tag": null, + "url": "http://download.opensuse.org/update/leap/15.5/non-oss/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "openSUSE-Leap-15.5-NonOss-Updates for s390x", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "opensuse-leap-15.5-pool-s390x", + "parent_channel_label": null, + "product_id": 2587, + "repository_id": 6193, + "parent_product_id": null, + "root_product_id": 2587, + "update_tag": null, + "url": "http://download.opensuse.org/distribution/leap/15.5/repo/oss/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "openSUSE-Leap-15.5-Pool for s390x", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "opensuse-leap-15.5-nonoss-pool-s390x", + "parent_channel_label": "opensuse-leap-15.5-pool-s390x", + "product_id": 2587, + "repository_id": 6194, + "parent_product_id": null, + "root_product_id": 2587, + "update_tag": null, + "url": "http://download.opensuse.org/distribution/leap/15.5/repo/non-oss/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "openSUSE-Leap-15.5-NonOss-Pool for s390x", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "opensuse-sle-15.5-updates-s390x", + "parent_channel_label": "opensuse-leap-15.5-pool-s390x", + "product_id": 2587, + "repository_id": 6197, + "parent_product_id": null, + "root_product_id": 2587, + "update_tag": null, + "url": "http://download.opensuse.org/update/leap/15.5/sle/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "openSUSE-SLE-15.5-Updates for s390x", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "opensuse-backports-15.5-updates-s390x", + "parent_channel_label": "opensuse-leap-15.5-pool-s390x", + "product_id": 2587, + "repository_id": 6198, + "parent_product_id": null, + "root_product_id": 2587, + "update_tag": null, + "url": "http://download.opensuse.org/update/leap/15.5/backports/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "openSUSE-Backports-15.5-Updates for s390x", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-manager-tools15-updates-s390x-opensuse-15.5", + "parent_channel_label": "opensuse-leap-15.5-pool-s390x", + "product_id": 1711, + "repository_id": 2927, + "parent_product_id": 2587, + "root_product_id": 2587, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/15/s390x/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-Updates for s390x openSUSE 15.5", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools15-debuginfo-updates-s390x-opensuse-15.5", + "parent_channel_label": "opensuse-leap-15.5-pool-s390x", + "product_id": 1711, + "repository_id": 2928, + "parent_product_id": 2587, + "root_product_id": 2587, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/15/s390x/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-Debuginfo-Updates for s390x openSUSE 15.5", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools15-pool-s390x-opensuse-15.5", + "parent_channel_label": "opensuse-leap-15.5-pool-s390x", + "product_id": 1711, + "repository_id": 2929, + "parent_product_id": 2587, + "root_product_id": 2587, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/15/s390x/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-Pool for s390x openSUSE 15.5", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools15-debuginfo-pool-s390x-opensuse-15.5", + "parent_channel_label": "opensuse-leap-15.5-pool-s390x", + "product_id": 1711, + "repository_id": 2930, + "parent_product_id": 2587, + "root_product_id": 2587, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/15/s390x/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-Debuginfo-Pool for s390x openSUSE 15.5", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools15-beta-updates-s390x-opensuse-15.5", + "parent_channel_label": "opensuse-leap-15.5-pool-s390x", + "product_id": 1927, + "repository_id": 3895, + "parent_product_id": 1711, + "root_product_id": 2587, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/15-BETA/s390x/update/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-BETA-Updates for s390x openSUSE 15.5", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools15-beta-debuginfo-updates-s390x-opensuse-15.5", + "parent_channel_label": "opensuse-leap-15.5-pool-s390x", + "product_id": 1927, + "repository_id": 3896, + "parent_product_id": 1711, + "root_product_id": 2587, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/15-BETA/s390x/update_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-BETA-Debuginfo-Updates for s390x openSUSE 15.5", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools15-beta-pool-s390x-opensuse-15.5", + "parent_channel_label": "opensuse-leap-15.5-pool-s390x", + "product_id": 1927, + "repository_id": 3905, + "parent_product_id": 1711, + "root_product_id": 2587, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/15-BETA/s390x/product/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-BETA-Pool for s390x openSUSE 15.5", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools15-beta-debuginfo-pool-s390x-opensuse-15.5", + "parent_channel_label": "opensuse-leap-15.5-pool-s390x", + "product_id": 1927, + "repository_id": 3906, + "parent_product_id": 1711, + "root_product_id": 2587, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/15-BETA/s390x/product_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-BETA-Debuginfo-Pool for s390x openSUSE 15.5", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "opensuse-leap-15.5-updates-x86_64", + "parent_channel_label": "opensuse-leap-15.5-pool-x86_64", + "product_id": 2588, + "repository_id": 6189, + "parent_product_id": null, + "root_product_id": 2588, + "update_tag": null, + "url": "http://download.opensuse.org/update/leap/15.5/oss/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "openSUSE-Leap-15.5-Updates for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "opensuse-leap-15.5-nonoss-updates-x86_64", + "parent_channel_label": "opensuse-leap-15.5-pool-x86_64", + "product_id": 2588, + "repository_id": 6190, + "parent_product_id": null, + "root_product_id": 2588, + "update_tag": null, + "url": "http://download.opensuse.org/update/leap/15.5/non-oss/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "openSUSE-Leap-15.5-NonOss-Updates for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "opensuse-leap-15.5-pool-x86_64", + "parent_channel_label": null, + "product_id": 2588, + "repository_id": 6193, + "parent_product_id": null, + "root_product_id": 2588, + "update_tag": null, + "url": "http://download.opensuse.org/distribution/leap/15.5/repo/oss/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "openSUSE-Leap-15.5-Pool for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "opensuse-leap-15.5-nonoss-pool-x86_64", + "parent_channel_label": "opensuse-leap-15.5-pool-x86_64", + "product_id": 2588, + "repository_id": 6194, + "parent_product_id": null, + "root_product_id": 2588, + "update_tag": null, + "url": "http://download.opensuse.org/distribution/leap/15.5/repo/non-oss/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": false, + "channel_name": "openSUSE-Leap-15.5-NonOss-Pool for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "opensuse-sle-15.5-updates-x86_64", + "parent_channel_label": "opensuse-leap-15.5-pool-x86_64", + "product_id": 2588, + "repository_id": 6197, + "parent_product_id": null, + "root_product_id": 2588, + "update_tag": null, + "url": "http://download.opensuse.org/update/leap/15.5/sle/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "openSUSE-SLE-15.5-Updates for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "opensuse-backports-15.5-updates-x86_64", + "parent_channel_label": "opensuse-leap-15.5-pool-x86_64", + "product_id": 2588, + "repository_id": 6198, + "parent_product_id": null, + "root_product_id": 2588, + "update_tag": null, + "url": "http://download.opensuse.org/update/leap/15.5/backports/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": false, + "channel_name": "openSUSE-Backports-15.5-Updates for x86_64", + "product_type": "base", + "gpg_info": [ + ], + "tags": [ + ] + }, + { + "channel_label": "sle-manager-tools15-updates-x86_64-opensuse-15.5", + "parent_channel_label": "opensuse-leap-15.5-pool-x86_64", + "product_id": 1712, + "repository_id": 2932, + "parent_product_id": 2588, + "root_product_id": 2588, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/15/x86_64/update/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-Updates for x86_64 openSUSE 15.5", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools15-debuginfo-updates-x86_64-opensuse-15.5", + "parent_channel_label": "opensuse-leap-15.5-pool-x86_64", + "product_id": 1712, + "repository_id": 2933, + "parent_product_id": 2588, + "root_product_id": 2588, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/15/x86_64/update_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-Debuginfo-Updates for x86_64 openSUSE 15.5", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools15-pool-x86_64-opensuse-15.5", + "parent_channel_label": "opensuse-leap-15.5-pool-x86_64", + "product_id": 1712, + "repository_id": 2934, + "parent_product_id": 2588, + "root_product_id": 2588, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/15/x86_64/product/", + "release_stage": "released", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-Pool for x86_64 openSUSE 15.5", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools15-debuginfo-pool-x86_64-opensuse-15.5", + "parent_channel_label": "opensuse-leap-15.5-pool-x86_64", + "product_id": 1712, + "repository_id": 2935, + "parent_product_id": 2588, + "root_product_id": 2588, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/15/x86_64/product_debug/", + "release_stage": "released", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-Debuginfo-Pool for x86_64 openSUSE 15.5", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "SUMA3.2", + "SUMA4.0", + "SUMA4.1", + "SUMA4.2", + "SUMA4.3", + "Beta", + "OESTest" + ] + }, + { + "channel_label": "sle-manager-tools15-beta-updates-x86_64-opensuse-15.5", + "parent_channel_label": "opensuse-leap-15.5-pool-x86_64", + "product_id": 1928, + "repository_id": 3897, + "parent_product_id": 1712, + "root_product_id": 2588, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/15-BETA/x86_64/update/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-BETA-Updates for x86_64 openSUSE 15.5", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools15-beta-debuginfo-updates-x86_64-opensuse-15.5", + "parent_channel_label": "opensuse-leap-15.5-pool-x86_64", + "product_id": 1928, + "repository_id": 3898, + "parent_product_id": 1712, + "root_product_id": 2588, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Updates/SLE-Manager-Tools/15-BETA/x86_64/update_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-BETA-Debuginfo-Updates for x86_64 openSUSE 15.5", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools15-beta-pool-x86_64-opensuse-15.5", + "parent_channel_label": "opensuse-leap-15.5-pool-x86_64", + "product_id": 1928, + "repository_id": 3908, + "parent_product_id": 1712, + "root_product_id": 2588, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/15-BETA/x86_64/product/", + "release_stage": "beta", + "mandatory": true, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-BETA-Pool for x86_64 openSUSE 15.5", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + }, + { + "channel_label": "sle-manager-tools15-beta-debuginfo-pool-x86_64-opensuse-15.5", + "parent_channel_label": "opensuse-leap-15.5-pool-x86_64", + "product_id": 1928, + "repository_id": 3909, + "parent_product_id": 1712, + "root_product_id": 2588, + "update_tag": "SLE-Manager-Tools", + "url": "https://updates.suse.com/SUSE/Products/SLE-Manager-Tools/15-BETA/x86_64/product_debug/", + "release_stage": "beta", + "mandatory": false, + "signed": true, + "recommended": true, + "channel_name": "SLE-Manager-Tools15-BETA-Debuginfo-Pool for x86_64 openSUSE 15.5", + "product_type": "extension", + "gpg_info": [ + ], + "tags": [ + "Beta" + ] + } +] \ No newline at end of file diff --git a/java/code/src/com/redhat/rhn/manager/content/ubuntu/UbuntuErrataManager.java b/java/code/src/com/redhat/rhn/manager/content/ubuntu/UbuntuErrataManager.java index 598535023ce1..1c210afa74ec 100644 --- a/java/code/src/com/redhat/rhn/manager/content/ubuntu/UbuntuErrataManager.java +++ b/java/code/src/com/redhat/rhn/manager/content/ubuntu/UbuntuErrataManager.java @@ -128,7 +128,7 @@ private static Map downloadUbuntuErrataInfo(String jso } } - private static List parseUbuntuErrata(Map errataInfo) { + private static Stream parseUbuntuErrata(Map errataInfo) { return errataInfo.values().stream().map(ubuntuErrataInfo -> { String description = ubuntuErrataInfo.getDescription().length() > 4000 ? ubuntuErrataInfo.getDescription().substring(0, 4000) : @@ -171,7 +171,7 @@ private static List parseUbuntuErrata(Map errat description, reboot, packageData); - }).collect(Collectors.toList()); + }); } private static Map getUbuntuErrataInfo() throws IOException { @@ -193,11 +193,13 @@ private static Map getUbuntuErrataInfo() throws IOExce * @throws IOException in case of download issues */ public static void sync(Set channelIds) throws IOException { - LOG.debug("sync started - get and parse errata"); - List ubuntuErrataInfo = parseUbuntuErrata(getUbuntuErrataInfo()); + LOG.debug("sync started - get and parse errata, totalMemory:{}, freeMemory:{}", + Runtime.getRuntime().totalMemory(), Runtime.getRuntime().freeMemory()); + Stream ubuntuErrataInfo = parseUbuntuErrata(getUbuntuErrataInfo()); LOG.debug("get and parse errata finished - process Ubuntu Errata By Id"); processUbuntuErrataByIds(channelIds, ubuntuErrataInfo); - LOG.debug("process Ubuntu Errata By Id finished"); + LOG.debug("process Ubuntu Errata By Id finished, totalMemory:{}, freeMemory:{}", + Runtime.getRuntime().totalMemory(), Runtime.getRuntime().freeMemory()); } /** @@ -205,7 +207,7 @@ public static void sync(Set channelIds) throws IOException { * @param channelIds list of channel ids to match errata against * @param ubuntuErrataInfo list of ubuntu errata entries */ - public static void processUbuntuErrataByIds(Set channelIds, List ubuntuErrataInfo) { + public static void processUbuntuErrataByIds(Set channelIds, Stream ubuntuErrataInfo) { processUbuntuErrata(channelIds.stream() .map(ChannelFactory::lookupById) .collect(Collectors.toSet()), ubuntuErrataInfo); @@ -216,27 +218,14 @@ public static void processUbuntuErrataByIds(Set channelIds, List ub * @param channels list of channels to match errata against * @param ubuntuErrataInfo list of ubuntu errata entries */ - public static void processUbuntuErrata(Set channels, List ubuntuErrataInfo) { + public static void processUbuntuErrata(Set channels, Stream ubuntuErrataInfo) { Map> ubuntuChannels = channels.stream() .filter(c -> c.isTypeDeb() && !c.isCloned()) .collect(Collectors.toMap(c -> c, Channel::getPackages)); - List uniqueCVEs = ubuntuErrataInfo.stream() - .flatMap(e -> e.getCves().stream().filter(c -> c.startsWith("CVE-"))) - .distinct() - .collect(Collectors.toList()); - - Map cveByName = TimeUtils.logTime(LOG, "looking up " + uniqueCVEs.size() + " CVEs", - () -> uniqueCVEs.stream() - .map(CveFactory::lookupOrInsertByName) - .collect(Collectors.toMap(Cve::getName, e -> e))); - Set changedErrata = new HashSet<>(); - TimeUtils.logTime(LOG, "writing " + ubuntuErrataInfo.size() + " erratas to db", () -> ubuntuErrataInfo.stream() - .flatMap(entry -> { - - + TimeUtils.logTime(LOG, "writing erratas to db", () -> ubuntuErrataInfo.flatMap(entry -> { Map> matchingPackagesByChannel = TimeUtils.logTime(LOG, "matching packages for " + entry.getId(), () -> ubuntuChannels.entrySet().stream() @@ -296,9 +285,14 @@ else if (split.length == 2) { errata.setProduct("Ubuntu"); errata.setSolution("-"); errata.setSynopsis(entry.getIsummary()); + + // faster lookup for existing entries + Map cveByName = errata.getCves().stream() + .collect(Collectors.toMap(Cve::getName, cve -> cve)); + Set cves = entry.getCves().stream() .filter(c -> c.startsWith("CVE-")) - .map(cveByName::get) + .map(name -> cveByName.computeIfAbsent(name, CveFactory::lookupOrInsertByName)) .collect(Collectors.toSet()); errata.setCves(cves); errata.setDescription(entry.getDescription()); diff --git a/java/code/src/com/redhat/rhn/manager/distupgrade/DistUpgradeManager.java b/java/code/src/com/redhat/rhn/manager/distupgrade/DistUpgradeManager.java index 607e6f654e30..fca9a8683868 100644 --- a/java/code/src/com/redhat/rhn/manager/distupgrade/DistUpgradeManager.java +++ b/java/code/src/com/redhat/rhn/manager/distupgrade/DistUpgradeManager.java @@ -606,6 +606,7 @@ public static Set performChannelChecks(List channelLabels, User us /** * Schedule a distribution upgrade for a given server. + * (private as it does not take PAYG into account) * * @param user the user who is scheduling * @param server the server to migrate @@ -618,7 +619,7 @@ public static Set performChannelChecks(List channelLabels, User us * @throws TaskomaticApiException if there was a Taskomatic error * (typically: Taskomatic is down) */ - public static Long scheduleDistUpgrade(User user, Server server, + private static Long scheduleDistUpgrade(User user, Server server, SUSEProductSet targetSet, Collection channelIDs, boolean dryRun, boolean allowVendorChange, Date earliest) throws TaskomaticApiException { // Create action details @@ -681,6 +682,57 @@ public static Long scheduleDistUpgrade(User user, Server server, return ActionManager.scheduleDistUpgrade(user, server, details, earliest).getId(); } + /** + * Schedule a distribution upgrade for a given server, allowing passing the PAYG flag. + * + * @param user the user who is scheduling + * @param server the server to migrate + * @param targetSet set of target products (base product and addons) + * @param channelIDs IDs of all channels to subscribe + * @param dryRun perform a dry run + * @param allowVendorChange allow vendor change during dist upgrade + * @param earliest earliest schedule date + * @param isPayg tells the method how to behave if SUMA is PAYG + * @return the action ID + * @throws TaskomaticApiException if there was a Taskomatic error + * @throws DistUpgradePaygException if the SUSE Manager instance is PAYG. + */ + public static Long scheduleDistUpgrade(User user, Server server, + SUSEProductSet targetSet, Collection channelIDs, + boolean dryRun, boolean allowVendorChange, Date earliest, + boolean isPayg) + throws TaskomaticApiException, DistUpgradePaygException { + + if (isPayg) { + /* + Changing product family I.e + - SLES 15 SP5 to SLES for SAP 15 SP4 or + - from OpenSUSE Leap 15.4 to SLES 15 SP4 + is not allowed. + Only SP migrations should be possible. + Also individual assigning channels to perform a migration is forbidden + */ + SUSEProduct installedBaseProduct = server.getInstalledProductSet() + .map(SUSEProductSet::getBaseProduct) + .orElseThrow(() -> + new FaultException(-1, "listMigrationTargetError", "Server has no Products installed.")); + if (targetSet != null) { + SUSEProduct targetBaseProduct = targetSet.getBaseProduct(); + if (targetBaseProduct.getChannelFamily() == null || + installedBaseProduct.getChannelFamily() == null || + !targetBaseProduct.getChannelFamily().equals(installedBaseProduct.getChannelFamily())) { + throw new DistUpgradePaygException( + "In PAYG SUMA instances, changing the product family is forbidden"); + } + } + else { + throw new DistUpgradePaygException("In PAYG SUMA instances, individual migrations are forbidden"); + } + } + + return scheduleDistUpgrade(user, server, targetSet, channelIDs, dryRun, allowVendorChange, earliest); + } + /** * Remove incompatible migration targets compared to the installed products. * Write the failed products in the missingSuccesorExtensions set in case it should diff --git a/java/code/src/com/redhat/rhn/manager/distupgrade/DistUpgradePaygException.java b/java/code/src/com/redhat/rhn/manager/distupgrade/DistUpgradePaygException.java new file mode 100644 index 000000000000..38e061b50775 --- /dev/null +++ b/java/code/src/com/redhat/rhn/manager/distupgrade/DistUpgradePaygException.java @@ -0,0 +1,30 @@ +/* + * Copyright (c) 2023 SUSE LLC + * + * This software is licensed to you under the GNU General Public License, + * version 2 (GPLv2). There is NO WARRANTY for this software, express or + * implied, including the implied warranties of MERCHANTABILITY or FITNESS + * FOR A PARTICULAR PURPOSE. You should have received a copy of GPLv2 + * along with this software; if not, see + * http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt. + * + * Red Hat trademarks are not licensed under GPLv2. No permission is + * granted to use or replicate Red Hat trademarks that are incorporated + * in this software or its documentation. + */ + +package com.redhat.rhn.manager.distupgrade; + +/** + * Exception thrown in case a product migration is attempted in a SUMA PAYG instace + */ +public class DistUpgradePaygException extends DistUpgradeException { + + /** + * Constructor + * @param message the cause + */ + public DistUpgradePaygException(String message) { + super(message); + } +} diff --git a/java/code/src/com/redhat/rhn/manager/distupgrade/test/DistUpgradeManagerTest.java b/java/code/src/com/redhat/rhn/manager/distupgrade/test/DistUpgradeManagerTest.java index 86cc5a1dd9b2..6806aad4e149 100644 --- a/java/code/src/com/redhat/rhn/manager/distupgrade/test/DistUpgradeManagerTest.java +++ b/java/code/src/com/redhat/rhn/manager/distupgrade/test/DistUpgradeManagerTest.java @@ -660,7 +660,7 @@ public void testScheduleDistUpgrade() throws Exception { channelIDs.add(channel2.getId()); Date scheduleDate = new Date(); Long actionID = DistUpgradeManager.scheduleDistUpgrade( - user, server, targetSet, channelIDs, true, false, scheduleDate); + user, server, targetSet, channelIDs, true, false, scheduleDate, false); // Get the scheduled action and check the contents DistUpgradeAction action = (DistUpgradeAction) ActionFactory.lookupById(actionID); assertEquals(ActionFactory.TYPE_DIST_UPGRADE, action.getActionType()); diff --git a/java/code/src/com/redhat/rhn/manager/kickstart/KickstartScheduleCommand.java b/java/code/src/com/redhat/rhn/manager/kickstart/KickstartScheduleCommand.java index f187add21510..d23950a6e3dc 100644 --- a/java/code/src/com/redhat/rhn/manager/kickstart/KickstartScheduleCommand.java +++ b/java/code/src/com/redhat/rhn/manager/kickstart/KickstartScheduleCommand.java @@ -514,8 +514,7 @@ public ValidatorError store() { return storeInternal(); } catch (TaskomaticApiException e) { - log.error("Taskomatic Exception during kickstart schedule:"); - log.error(e); + log.error("Taskomatic Exception during kickstart schedule:", e); return new ValidatorError("taskscheduler.down"); } } diff --git a/java/code/src/com/redhat/rhn/manager/kickstart/cobbler/CobblerDistroCreateCommand.java b/java/code/src/com/redhat/rhn/manager/kickstart/cobbler/CobblerDistroCreateCommand.java index 17e29c4043b3..f275ecece12b 100644 --- a/java/code/src/com/redhat/rhn/manager/kickstart/cobbler/CobblerDistroCreateCommand.java +++ b/java/code/src/com/redhat/rhn/manager/kickstart/cobbler/CobblerDistroCreateCommand.java @@ -24,9 +24,6 @@ import com.redhat.rhn.domain.user.User; import com.redhat.rhn.manager.satellite.CobblerSyncCommand; -import org.apache.logging.log4j.LogManager; -import org.apache.logging.log4j.Logger; - import java.util.List; /** @@ -34,7 +31,6 @@ */ public class CobblerDistroCreateCommand extends CobblerDistroCommand { - private static Logger log = LogManager.getLogger(CobblerDistroCreateCommand.class); private boolean syncProfiles; /** * Constructor @@ -74,8 +70,6 @@ public CobblerDistroCreateCommand(KickstartableTree ksTreeIn, */ @Override public ValidatorError store() { - log.debug("Token : [{}]", xmlRpcToken); - CobblerDistroHelper.getInstance().createDistroFromTree( CobblerXMLRPCHelper.getConnection(user), tree); diff --git a/java/code/src/com/redhat/rhn/manager/kickstart/cobbler/CobblerLoginCommand.java b/java/code/src/com/redhat/rhn/manager/kickstart/cobbler/CobblerLoginCommand.java index d21e442feb41..c51f99d165bf 100644 --- a/java/code/src/com/redhat/rhn/manager/kickstart/cobbler/CobblerLoginCommand.java +++ b/java/code/src/com/redhat/rhn/manager/kickstart/cobbler/CobblerLoginCommand.java @@ -44,10 +44,10 @@ public String login(String usernameIn, String passwordIn) { XMLRPCInvoker helper = (XMLRPCInvoker) MethodUtil.getClassFromConfig( CobblerXMLRPCHelper.class.getName()); - List args = new ArrayList<>(); + List args = new ArrayList<>(); args.add(usernameIn); args.add(passwordIn); - String retval = null; + String retval; try { retval = (String) helper.invokeMethod("login", args); } @@ -57,7 +57,7 @@ public String login(String usernameIn, String passwordIn) { throw new NoCobblerTokenException( "We had an error trying to login.", e); } - log.debug("token received from cobbler: {}", retval); + log.debug("token received from cobbler"); return retval; } @@ -73,9 +73,9 @@ public boolean checkToken(String token) { XMLRPCInvoker helper = (XMLRPCInvoker) MethodUtil.getClassFromConfig( CobblerXMLRPCHelper.class.getName()); - List args = new ArrayList<>(); + List args = new ArrayList<>(); args.add(token); - Boolean retval = null; + Boolean retval; try { retval = (Boolean) helper.invokeMethod("token_check", args); if (retval == null) { @@ -91,7 +91,7 @@ public boolean checkToken(String token) { throw new NoCobblerTokenException( "We errored out trying to check the token.", e); } - log.debug("token received from cobbler: {}", retval); + log.debug("token received from cobbler"); return retval; } diff --git a/java/code/src/com/redhat/rhn/manager/kickstart/cobbler/CobblerPowerCommand.java b/java/code/src/com/redhat/rhn/manager/kickstart/cobbler/CobblerPowerCommand.java index a83baf2f1be7..bc054fa66370 100644 --- a/java/code/src/com/redhat/rhn/manager/kickstart/cobbler/CobblerPowerCommand.java +++ b/java/code/src/com/redhat/rhn/manager/kickstart/cobbler/CobblerPowerCommand.java @@ -124,7 +124,7 @@ public ValidatorError store() { } } catch (XmlRpcException e) { - log.error(e); + log.error(e.getMessage(), e); } if (success) { if (server != null) { diff --git a/java/code/src/com/redhat/rhn/manager/recurringactions/RecurringActionManager.java b/java/code/src/com/redhat/rhn/manager/recurringactions/RecurringActionManager.java index ceeb2108101e..7106954701bb 100644 --- a/java/code/src/com/redhat/rhn/manager/recurringactions/RecurringActionManager.java +++ b/java/code/src/com/redhat/rhn/manager/recurringactions/RecurringActionManager.java @@ -140,11 +140,7 @@ private static MinionRecurringAction createMinionRecurringAction(RecurringAction long minionId, User user) { MinionServer minion = MinionServerFactory.lookupById(minionId) .orElseThrow(() -> new EntityNotExistsException(MinionServer.class, minionId)); - MinionRecurringAction action = new MinionRecurringAction( - createRecurringActionType(actionType), - true, minion, user - ); - return action; + return new MinionRecurringAction(createRecurringActionType(actionType), true, minion, user); } /** @@ -160,10 +156,7 @@ private static GroupRecurringAction createGroupRecurringAction(RecurringActionTy if (group == null) { throw new EntityNotExistsException(ServerGroup.class, groupId); } - GroupRecurringAction action = new GroupRecurringAction( - createRecurringActionType(actionType), - true, group, user); - return action; + return new GroupRecurringAction(createRecurringActionType(actionType), true, group, user); } /** diff --git a/java/code/src/com/redhat/rhn/manager/rhnpackage/PackageManager.java b/java/code/src/com/redhat/rhn/manager/rhnpackage/PackageManager.java index bd6e991ffcf6..84c0d5a3d6fb 100644 --- a/java/code/src/com/redhat/rhn/manager/rhnpackage/PackageManager.java +++ b/java/code/src/com/redhat/rhn/manager/rhnpackage/PackageManager.java @@ -1307,7 +1307,7 @@ public static DataResult listOrphanPackages(Long orgId, boolean .from("rhnPackageSource PS " + "inner join rhnSourceRPM SRPM on PS.source_rpm_id = SRPM.id " + "left join rhnPackage P on SRPM.id = P.source_rpm_id " + - "left join rhnChannelPackage CP on CP.package_id") + "left join rhnChannelPackage CP on CP.package_id = P.id ") .where("PS.org_id = :org_id AND CP.package_id is null") .run(Map.of("org_id", orgId), pc, PagedSqlQueryBuilder::parseFilterAsText, PackageOverview.class); } diff --git a/java/code/src/com/redhat/rhn/manager/rhnpackage/test/PackageManagerPtfTest.java b/java/code/src/com/redhat/rhn/manager/rhnpackage/test/PackageManagerPtfTest.java index 4b20c7162816..ae16c8f2d609 100644 --- a/java/code/src/com/redhat/rhn/manager/rhnpackage/test/PackageManagerPtfTest.java +++ b/java/code/src/com/redhat/rhn/manager/rhnpackage/test/PackageManagerPtfTest.java @@ -120,8 +120,6 @@ public void testUpgradable() { PackageTestUtils.installPackagesOnServer(List.of(ptfPackage, ptfMaster, standard), server); - commitAndCloseSession(); - ChannelFactory.refreshNewestPackageCache(channel, "java::test"); ServerFactory.updateServerNeededCache(server.getId()); diff --git a/java/code/src/com/redhat/rhn/manager/satellite/UpgradeCommand.java b/java/code/src/com/redhat/rhn/manager/satellite/UpgradeCommand.java index 0f130eab497a..d3d655b49420 100644 --- a/java/code/src/com/redhat/rhn/manager/satellite/UpgradeCommand.java +++ b/java/code/src/com/redhat/rhn/manager/satellite/UpgradeCommand.java @@ -60,6 +60,7 @@ import java.util.List; import java.util.Set; import java.util.stream.Collectors; +import java.util.stream.Stream; /** * Class responsible for executing one-time upgrade logic @@ -316,10 +317,12 @@ private void regenerateConfigChannelFiles() { // list of directories with given prefix and natural number suffix in the salt root private Set listDirsWithPrefix(String prefix) throws IOException { - return Files.list(saltRootPath) + try (Stream pathStream = Files.list(saltRootPath)) { + return pathStream .filter(path -> path.getFileName().toString().matches("^" + prefix + "\\d*$") && - path.toFile().isDirectory()) + path.toFile().isDirectory()) .collect(Collectors.toSet()); + } } /** diff --git a/java/code/src/com/redhat/rhn/manager/session/SessionManager.java b/java/code/src/com/redhat/rhn/manager/session/SessionManager.java index 15b23f030608..a235d12c4e2f 100644 --- a/java/code/src/com/redhat/rhn/manager/session/SessionManager.java +++ b/java/code/src/com/redhat/rhn/manager/session/SessionManager.java @@ -340,7 +340,6 @@ public static boolean isPxtSessionKeyValid(String key) { if (data != null && data.length == 2) { String recomputedkey = generateSessionKey(data[0]); - logger.debug("recomputed [{}] cookiekey [{}]", recomputedkey, data[1]); return recomputedkey.equals(data[1]); } diff --git a/java/code/src/com/redhat/rhn/manager/setup/MirrorCredentialsManager.java b/java/code/src/com/redhat/rhn/manager/setup/MirrorCredentialsManager.java index c2ea961f061c..95a95ad589fb 100644 --- a/java/code/src/com/redhat/rhn/manager/setup/MirrorCredentialsManager.java +++ b/java/code/src/com/redhat/rhn/manager/setup/MirrorCredentialsManager.java @@ -14,6 +14,7 @@ */ package com.redhat.rhn.manager.setup; +import com.redhat.rhn.GlobalInstanceHolder; import com.redhat.rhn.common.conf.Config; import com.redhat.rhn.common.conf.ConfigDefaults; import com.redhat.rhn.domain.channel.ChannelFamily; @@ -25,9 +26,9 @@ import com.redhat.rhn.manager.content.ContentSyncException; import com.redhat.rhn.manager.content.ContentSyncManager; +import com.suse.cloud.CloudPaygManager; import com.suse.scc.SCCSystemRegistrationManager; import com.suse.scc.client.SCCClient; -import com.suse.scc.client.SCCClientException; import com.suse.scc.client.SCCConfig; import com.suse.scc.client.SCCWebClient; import com.suse.scc.model.SCCSubscriptionJson; @@ -53,6 +54,23 @@ public class MirrorCredentialsManager { /** Logger instance */ private static Logger log = LogManager.getLogger(MirrorCredentialsManager.class); + private final CloudPaygManager cloudPaygManager; + + /** + * Default Constructor + */ + public MirrorCredentialsManager() { + this(GlobalInstanceHolder.PAYG_MANAGER); + } + + /** + * Constructore + * @param cloudPaygManagerIn the cloud manager + */ + public MirrorCredentialsManager(CloudPaygManager cloudPaygManagerIn) { + cloudPaygManager = cloudPaygManagerIn; + } + /** * Find all currently available mirror credentials and return them. * @@ -60,7 +78,7 @@ public class MirrorCredentialsManager { */ public List findMirrorCredentials() { List credsList = new ArrayList<>(); - for (Credentials c : CredentialsFactory.lookupSCCCredentials()) { + for (Credentials c : CredentialsFactory.listSCCCredentials()) { MirrorCredentialsDto creds = new MirrorCredentialsDto( c.getUsername(), c.getPassword()); creds.setId(c.getId()); @@ -110,7 +128,7 @@ public long storeMirrorCredentials(MirrorCredentialsDto creds, throw new ContentSyncException("User or password is empty"); } // Check if the supplied user name already exists in stored credentials - for (Credentials existingCred : CredentialsFactory.lookupSCCCredentials()) { + for (Credentials existingCred : CredentialsFactory.listSCCCredentials()) { if (existingCred.getUsername().equals(creds.getUser()) && (creds.getId() != existingCred.getId())) { throw new MirrorCredentialsNotUniqueException("Username already exists"); @@ -138,9 +156,11 @@ public long storeMirrorCredentials(MirrorCredentialsDto creds, } // Make this the primary pair of credentials if it's the only one - if (CredentialsFactory.lookupSCCCredentials().size() == 1) { + if (CredentialsFactory.listSCCCredentials().size() == 1) { makePrimaryCredentials(c.getId()); } + // update info about hasSCCCredentials + cloudPaygManager.checkRefreshCache(true); return c.getId(); } @@ -160,7 +180,7 @@ public void deleteMirrorCredentials(Long id, HttpServletRequest request) // Make new primary credentials if necessary if (credentials.isPrimary()) { - List credsList = CredentialsFactory.lookupSCCCredentials(); + List credsList = CredentialsFactory.listSCCCredentials(); if (credsList != null && !credsList.isEmpty()) { credsList.stream().filter(c -> !c.equals(dbCreds)).findFirst() .ifPresent(c -> { @@ -190,7 +210,7 @@ public void deleteMirrorCredentials(Long id, HttpServletRequest request) } // Clear Repository Authentications - SCCCachingFactory.lookupRepositoryAuthByCredential(dbCreds).stream() + SCCCachingFactory.lookupRepositoryAuthByCredential(dbCreds) .forEach(SCCCachingFactory::deleteRepositoryAuth); // Clear the cache for deleted credentials @@ -204,6 +224,9 @@ public void deleteMirrorCredentials(Long id, HttpServletRequest request) // Link orphan content sources ContentSyncManager csm = new ContentSyncManager(); csm.linkAndRefreshContentSource(null); + + // update info about hasSCCCredentials + cloudPaygManager.checkRefreshCache(true); } /** @@ -241,20 +264,16 @@ else if (dbCreds.getUrl() != null) { public List getSubscriptions(MirrorCredentialsDto creds, HttpServletRequest request, boolean forceRefresh) { // Implicitly download subscriptions if requested - if (forceRefresh || - SetupWizardSessionCache.credentialsStatusUnknown(creds, request)) { + if (forceRefresh || SetupWizardSessionCache.credentialsStatusUnknown(creds, request)) { if (log.isDebugEnabled()) { log.debug("Downloading subscriptions for {}", creds.getUser()); } try { - Credentials credentials = - CredentialsFactory.lookupCredentialsById(creds.getId()); - List subscriptions = new ContentSyncManager(). - updateSubscriptions(credentials); - SetupWizardSessionCache.storeSubscriptions( - makeDtos(subscriptions), creds, request); + Credentials credentials = CredentialsFactory.lookupCredentialsById(creds.getId()); + List subscriptions = new ContentSyncManager().updateSubscriptions(credentials); + SetupWizardSessionCache.storeSubscriptions(makeDtos(subscriptions), creds, request); } - catch (SCCClientException e) { + catch (ContentSyncException e) { log.error("Error getting subscriptions for {}: {}", creds.getUser(), e.getMessage()); } } diff --git a/java/code/src/com/redhat/rhn/manager/system/SystemManager.java b/java/code/src/com/redhat/rhn/manager/system/SystemManager.java index 3b3d2d9d76bb..0309e22e27c9 100644 --- a/java/code/src/com/redhat/rhn/manager/system/SystemManager.java +++ b/java/code/src/com/redhat/rhn/manager/system/SystemManager.java @@ -3936,7 +3936,7 @@ public static void setReportDbUser(MinionServer minion, boolean forcePwChange) { .orElse(CredentialsFactory.createCredentials( "hermes_" + RandomStringUtils.random(8, 0, 0, true, false, null, new SecureRandom()), RandomStringUtils.random(24, 0, 0, true, true, null, new SecureRandom()), - Credentials.TYPE_REPORT_CREDS, null)); + Credentials.TYPE_REPORT_CREDS)); if (forcePwChange) { credentials.setPassword(RandomStringUtils.random(24, 0, 0, true, true, null, new SecureRandom())); CredentialsFactory.storeCredentials(credentials); diff --git a/java/code/src/com/redhat/rhn/taskomatic/TaskoFactory.java b/java/code/src/com/redhat/rhn/taskomatic/TaskoFactory.java index 9e8973418bc3..330c3d5ea699 100644 --- a/java/code/src/com/redhat/rhn/taskomatic/TaskoFactory.java +++ b/java/code/src/com/redhat/rhn/taskomatic/TaskoFactory.java @@ -29,6 +29,7 @@ import org.hibernate.criterion.Projections; import org.hibernate.criterion.Restrictions; import org.hibernate.criterion.Subqueries; +import org.quartz.SchedulerException; import java.util.Date; import java.util.HashMap; @@ -460,21 +461,15 @@ public static TaskoRun getLatestRun(String bunchName) { * @return schedule */ public static TaskoSchedule reinitializeScheduleFromNow(TaskoSchedule schedule, - Date now) { + Date now) throws InvalidParamException, SchedulerException { TaskoQuartzHelper.destroyJob(schedule.getOrgId(), schedule.getJobLabel()); schedule.setActiveFrom(now); if (!schedule.isCronSchedule()) { schedule.setActiveTill(now); } TaskoFactory.save(schedule); - try { - TaskoQuartzHelper.createJob(schedule); - return schedule; - } - catch (InvalidParamException e) { - // Pech gehabt() - } - return null; + TaskoQuartzHelper.createJob(schedule); + return schedule; } private static boolean runBelongToOrg(Integer orgId, TaskoRun run) { diff --git a/java/code/src/com/redhat/rhn/taskomatic/TaskoJob.java b/java/code/src/com/redhat/rhn/taskomatic/TaskoJob.java index 31af79cf7d6f..20827aad1892 100644 --- a/java/code/src/com/redhat/rhn/taskomatic/TaskoJob.java +++ b/java/code/src/com/redhat/rhn/taskomatic/TaskoJob.java @@ -27,6 +27,7 @@ import org.apache.logging.log4j.Logger; import org.quartz.Job; import org.quartz.JobExecutionContext; +import org.quartz.SchedulerException; import java.lang.reflect.InvocationTargetException; import java.time.Instant; @@ -79,7 +80,7 @@ private boolean isTaskSingleThreaded(TaskoTask task) { catch (InstantiationException | ClassNotFoundException | IllegalAccessException | NoSuchMethodException | InvocationTargetException e) { // will be caught later - log.error("Error trying to instance a new class of {}: {}", task.getTaskClass(), e.getMessage()); + log.error("Error trying to instance a new class of {}: {}", task.getTaskClass(), e.getMessage(), e); return false; } } @@ -148,7 +149,7 @@ private boolean isTaskRunning(TaskoSchedule schedule, TaskoTask task) { return false; } - private boolean checkThreadAvailable(TaskoSchedule schedule, RhnJob job, TaskoTask task) { + private boolean checkThreadAvailable(TaskoSchedule schedule, RhnJob job, TaskoTask task) throws SchedulerException { if (!isTaskThreadAvailable(job, task)) { int rescheduleSeconds = job.getRescheduleTime(); log.info("{} RESCHEDULED in {} seconds", schedule.getJobLabel(), rescheduleSeconds); @@ -203,7 +204,7 @@ private TaskoRun runTask(TaskoSchedule schedule, TaskoTask task, TaskoTemplate t } } catch (Exception e) { - log.error(e); + log.error(e.getMessage(), e); } } return result; diff --git a/java/code/src/com/redhat/rhn/taskomatic/TaskoQuartzHelper.java b/java/code/src/com/redhat/rhn/taskomatic/TaskoQuartzHelper.java index 360e599e18f5..af690faae934 100644 --- a/java/code/src/com/redhat/rhn/taskomatic/TaskoQuartzHelper.java +++ b/java/code/src/com/redhat/rhn/taskomatic/TaskoQuartzHelper.java @@ -64,7 +64,7 @@ public static void unscheduleTrigger(Trigger trigger) { triggerKey(trigger.getKey().getName(), trigger.getKey().getGroup())); } catch (SchedulerException e) { - // be silent + log.error("Unable to remove scheduled trigger {}", trigger.getJobKey(), e); } } @@ -73,8 +73,9 @@ public static void unscheduleTrigger(Trigger trigger) { * @param schedule schedule as a job template * @return date of first schedule * @throws InvalidParamException thrown in case of invalid cron expression + * @throws SchedulerException */ - public static Date createJob(TaskoSchedule schedule) throws InvalidParamException { + public static Date createJob(TaskoSchedule schedule) throws InvalidParamException, SchedulerException { // create trigger Trigger trigger = null; if (isCronExpressionEmpty(schedule.getCronExpr())) { @@ -113,16 +114,9 @@ public static Date createJob(TaskoSchedule schedule) throws InvalidParamExceptio jobDetail.usingJobData("schedule_id", schedule.getId()); // schedule job - try { - Date date = - SchedulerKernel.getScheduler().scheduleJob(jobDetail.build(), trigger); - log.info("Job {} scheduled successfully.", schedule.getJobLabel()); - return date; - } - catch (SchedulerException e) { - log.warn("Job {} failed to schedule.", schedule.getJobLabel()); - return null; - } + Date date = SchedulerKernel.getScheduler().scheduleJob(jobDetail.build(), trigger); + log.info("Job {} scheduled successfully.", schedule.getJobLabel()); + return date; } /** @@ -131,21 +125,17 @@ public static Date createJob(TaskoSchedule schedule) throws InvalidParamExceptio * @param schedule for the job to be rescheduled * @param startAtDate trigger time * @return the date of the trigger or null if scheduling was not successful + * @throws SchedulerException */ - public static Date rescheduleJob(TaskoSchedule schedule, Instant startAtDate) { + public static Date rescheduleJob(TaskoSchedule schedule, Instant startAtDate) throws SchedulerException { // create trigger String timestamp = TIMESTAMP_FORMAT.format(startAtDate); TriggerKey retryTriggerKey = new TriggerKey(schedule.getJobLabel() + "-retry" + timestamp, getGroupName(schedule.getOrgId())); - try { - Trigger retryTrigger = SchedulerKernel.getScheduler().getTrigger(retryTriggerKey); - if (retryTrigger != null) { - log.warn("Retry trigger {} already exists", retryTriggerKey); - return retryTrigger.getStartTime(); - } - } - catch (SchedulerException e) { - log.warn("no trigger found {}", retryTriggerKey); + Trigger retryTrigger = SchedulerKernel.getScheduler().getTrigger(retryTriggerKey); + if (retryTrigger != null) { + log.warn("Retry trigger {} already exists", retryTriggerKey); + return retryTrigger.getStartTime(); } Trigger trigger = newTrigger() .withIdentity(schedule.getJobLabel() + "-retry" + timestamp, getGroupName(schedule.getOrgId())) @@ -166,33 +156,24 @@ public static Date rescheduleJob(TaskoSchedule schedule, Instant startAtDate) { jobDetail.usingJobData("schedule_id", schedule.getId()); // schedule job - try { - Date date = - SchedulerKernel.getScheduler().scheduleJob(trigger); - log.info("Job {} rescheduled with trigger {}", schedule.getJobLabel(), trigger.getKey()); - return date; - } - catch (SchedulerException e) { - log.info("Job {} failed to be reschedule with trigger {}", schedule.getJobLabel(), trigger.getKey(), e); - return null; - } + Date date = SchedulerKernel.getScheduler().scheduleJob(trigger); + log.info("Job {} rescheduled with trigger {}", schedule.getJobLabel(), trigger.getKey()); + return date; } /** * unschedules job - * @param orgId organization id + * + * @param orgId organization id * @param jobLabel job name - * @return 1 if successful */ - public static Integer destroyJob(Integer orgId, String jobLabel) { + public static void destroyJob(Integer orgId, String jobLabel) { try { - SchedulerKernel.getScheduler() - .unscheduleJob(triggerKey(jobLabel, getGroupName(orgId))); + SchedulerKernel.getScheduler().unscheduleJob(triggerKey(jobLabel, getGroupName(orgId))); log.info("Job {} unscheduled successfully.", jobLabel); - return 1; } catch (SchedulerException e) { - return null; + log.error("Unable to unschedule job {} of organization # {}", jobLabel, orgId, e); } } diff --git a/java/code/src/com/redhat/rhn/taskomatic/TaskoXmlRpcHandler.java b/java/code/src/com/redhat/rhn/taskomatic/TaskoXmlRpcHandler.java index 245de9a559cc..49202bfe9514 100644 --- a/java/code/src/com/redhat/rhn/taskomatic/TaskoXmlRpcHandler.java +++ b/java/code/src/com/redhat/rhn/taskomatic/TaskoXmlRpcHandler.java @@ -117,29 +117,26 @@ public TaskoBunch lookupBunchByName(String bunchName) { */ public Date scheduleBunch(Integer orgId, String bunchName, String jobLabel, Date startTime, Date endTime, String cronExpression, Map params) - throws NoSuchBunchTaskException, InvalidParamException { - TaskoBunch bunch = null; - try { - bunch = doBasicCheck(orgId, bunchName, jobLabel); - } - catch (SchedulerException se) { - return null; - } + throws NoSuchBunchTaskException, InvalidParamException, SchedulerException { + + TaskoBunch bunch = doBasicCheck(orgId, bunchName, jobLabel); if (!TaskoQuartzHelper.isValidCronExpression(cronExpression)) { throw new InvalidParamException("Cron trigger: " + cronExpression); } // create schedule - TaskoSchedule schedule = new TaskoSchedule(orgId, bunch, jobLabel, params, - startTime, endTime, cronExpression); + TaskoSchedule schedule = new TaskoSchedule(orgId, bunch, jobLabel, params, startTime, endTime, cronExpression); TaskoFactory.save(schedule); HibernateFactory.commitTransaction(); // create job - Date scheduleDate = TaskoQuartzHelper.createJob(schedule); - if (scheduleDate == null) { + try { + return TaskoQuartzHelper.createJob(schedule); + } + catch (SchedulerException | InvalidParamException e) { + log.error("Unable to create job {}", schedule.getJobLabel(), e); TaskoFactory.delete(schedule); HibernateFactory.commitTransaction(); + throw e; } - return scheduleDate; } /** @@ -157,9 +154,9 @@ public Date scheduleBunch(Integer orgId, String bunchName, String jobLabel, */ public Date scheduleSatBunch(String bunchName, String jobLabel, Date startTime, Date endTime, String cronExpression, Map params) - throws NoSuchBunchTaskException, InvalidParamException { - return scheduleBunch(null, bunchName, jobLabel, startTime, endTime, - cronExpression, params); + throws NoSuchBunchTaskException, InvalidParamException, SchedulerException { + + return scheduleBunch(null, bunchName, jobLabel, startTime, endTime, cronExpression, params); } /** @@ -176,9 +173,9 @@ public Date scheduleSatBunch(String bunchName, String jobLabel, */ public Date scheduleBunch(Integer orgId, String bunchName, String jobLabel, String cronExpression, Map params) - throws NoSuchBunchTaskException, InvalidParamException { - return scheduleBunch(orgId, bunchName, jobLabel, new Date(), null, - cronExpression, params); + throws NoSuchBunchTaskException, InvalidParamException, SchedulerException { + + return scheduleBunch(orgId, bunchName, jobLabel, new Date(), null, cronExpression, params); } /** @@ -194,13 +191,14 @@ public Date scheduleBunch(Integer orgId, String bunchName, String jobLabel, */ public Date scheduleSatBunch(String bunchName, String jobLabel, String cronExpression, Map params) - throws NoSuchBunchTaskException, InvalidParamException { - return scheduleBunch(null, bunchName, jobLabel, - cronExpression, params); + throws NoSuchBunchTaskException, InvalidParamException, SchedulerException { + + return scheduleBunch(null, bunchName, jobLabel, cronExpression, params); } - private TaskoBunch doBasicCheck(Integer orgId, String bunchName, String jobLabel) throws NoSuchBunchTaskException, - InvalidParamException, SchedulerException { + private TaskoBunch doBasicCheck(Integer orgId, String bunchName, String jobLabel) + throws NoSuchBunchTaskException, InvalidParamException, SchedulerException { + TaskoBunch bunch = checkBunchName(orgId, bunchName); isAlreadyScheduled(orgId, jobLabel); return bunch; @@ -214,8 +212,7 @@ private TaskoBunch doBasicCheck(Integer orgId, String bunchName, String jobLabel */ public Integer unscheduleBunch(Integer orgId, String jobLabel) { // one or none shall be returned - List scheduleList = - TaskoFactory.listActiveSchedulesByOrgAndLabel(orgId, jobLabel); + List scheduleList = TaskoFactory.listActiveSchedulesByOrgAndLabel(orgId, jobLabel); Trigger trigger; try { trigger = SchedulerKernel.getScheduler().getTrigger(triggerKey(jobLabel, @@ -262,9 +259,9 @@ public Integer unscheduleSatBunches(List jobLabels) { * @throws NoSuchBunchTaskException thrown if bunch name not known * @throws InvalidParamException shall not be thrown */ - public Date scheduleSingleSatBunchRun(String bunchName, String jobLabel, - Map params, Date start) - throws NoSuchBunchTaskException, InvalidParamException { + public Date scheduleSingleSatBunchRun(String bunchName, String jobLabel, Map params, Date start) + throws NoSuchBunchTaskException, InvalidParamException, SchedulerException { + return scheduleSingleBunchRun(null, bunchName, jobLabel, params, start); } @@ -279,6 +276,7 @@ public Date scheduleSingleSatBunchRun(String bunchName, String jobLabel, */ public List scheduleRuns(String bunchName, String jobLabel, List> params) throws NoSuchBunchTaskException, InvalidParamException { + return scheduleRuns(null, bunchName, jobLabel, params); } @@ -292,17 +290,10 @@ public List scheduleRuns(String bunchName, String jobLabel, List scheduleRuns(Integer orgId, String bunchName, String jobLabel, List> paramsList) throws NoSuchBunchTaskException, InvalidParamException { + List scheduleDates = new ArrayList<>(); TaskoBunch bunch = checkBunchName(orgId, bunchName); - for (Map params:paramsList) { + for (Map params : paramsList) { String label = getJobLabel(params, jobLabel); try { isAlreadyScheduled(orgId, label); } - catch (SchedulerException se) { - return null; + catch (SchedulerException | InvalidParamException e) { + log.warn("Already scheduled {}: {}", label, e.getMessage(), e); + continue; } // create schedule String earliestAction = String.valueOf(params.get("earliest_action")); @@ -376,11 +365,17 @@ public List scheduleRuns(Integer orgId, String bunchName, String jobLabel, HibernateFactory.commitTransaction(); // create job - Date scheduleDate = TaskoQuartzHelper.createJob(schedule); - if (scheduleDate == null) { + Date scheduleDate = null; + try { + scheduleDate = TaskoQuartzHelper.createJob(schedule); + } + catch (InvalidParamException | SchedulerException e) { + log.error("Unable to create job {}", schedule.getJobLabel(), e); TaskoFactory.delete(schedule); } - scheduleDates.add(scheduleDate); + if (scheduleDate != null) { + scheduleDates.add(scheduleDate); + } } HibernateFactory.commitTransaction(); return scheduleDates; @@ -396,7 +391,8 @@ public List scheduleRuns(Integer orgId, String bunchName, String jobLabel, * @throws InvalidParamException shall not be thrown */ public Date scheduleSingleSatBunchRun(String bunchName, Map params, Date start) - throws NoSuchBunchTaskException, InvalidParamException { + throws NoSuchBunchTaskException, InvalidParamException, SchedulerException { + return scheduleSingleBunchRun(null, bunchName, params, start); } @@ -410,7 +406,8 @@ public Date scheduleSingleSatBunchRun(String bunchName, Map params, Date start) * @throws InvalidParamException shall not be thrown */ public Date scheduleSingleBunchRun(Integer orgId, String bunchName, Map params) - throws NoSuchBunchTaskException, InvalidParamException { + throws NoSuchBunchTaskException, InvalidParamException, SchedulerException { + return scheduleSingleBunchRun(orgId, bunchName, params, new Date()); } @@ -423,26 +420,25 @@ public Date scheduleSingleBunchRun(Integer orgId, String bunchName, Map params) * @throws InvalidParamException shall not be thrown */ public Date scheduleSingleSatBunchRun(String bunchName, Map params) - throws NoSuchBunchTaskException, InvalidParamException { + throws NoSuchBunchTaskException, InvalidParamException, SchedulerException { + return scheduleSingleBunchRun(null, bunchName, params, new Date()); } - private String getUniqueSingleJobLabel(Integer orgId, String bunchName) - throws SchedulerException { + private String getUniqueSingleJobLabel(Integer orgId, String bunchName) throws SchedulerException { String jobLabel = "single-" + bunchName + "-"; - Integer count = 0; - while (!TaskoFactory.listSchedulesByOrgAndLabel(orgId, jobLabel + count.toString()) + int count = 0; + while (!TaskoFactory.listSchedulesByOrgAndLabel(orgId, jobLabel + count) .isEmpty() || (SchedulerKernel.getScheduler() - .getTrigger(triggerKey(jobLabel + count.toString(), + .getTrigger(triggerKey(jobLabel + count, TaskoQuartzHelper.getGroupName(orgId))) != null)) { count++; } - return jobLabel + count.toString(); + return jobLabel + count; } - private TaskoBunch checkBunchName(Integer orgId, String bunchName) - throws NoSuchBunchTaskException { + private TaskoBunch checkBunchName(Integer orgId, String bunchName) throws NoSuchBunchTaskException { TaskoBunch bunch = null; if (orgId == null) { bunch = TaskoFactory.lookupSatBunchByName(bunchName); @@ -498,7 +494,7 @@ public List listActiveSatSchedules() { * @throws NoSuchBunchTaskException in case of unknown org bunch name */ public List listActiveSchedulesByBunch(Integer orgId, String bunchName) - throws NoSuchBunchTaskException { + throws NoSuchBunchTaskException { return TaskoFactory.listActiveSchedulesByOrgAndBunch(orgId, bunchName); } @@ -508,8 +504,8 @@ public List listActiveSchedulesByBunch(Integer orgId, String bunc * @return list of schedules * @throws NoSuchBunchTaskException in case of unknown sat bunch name */ - public List listActiveSatSchedulesByBunch(String bunchName) - throws NoSuchBunchTaskException { + public List listActiveSatSchedulesByBunch(String bunchName) throws NoSuchBunchTaskException { + return TaskoFactory.listActiveSchedulesByOrgAndBunch(null, bunchName); } @@ -551,11 +547,13 @@ public List reinitializeAllSchedulesFromNow() { List schedules = new ArrayList<>(); Date now = new Date(); for (TaskoSchedule schedule : TaskoFactory.listFuture()) { - TaskoSchedule reinited = - TaskoFactory.reinitializeScheduleFromNow(schedule, now); - if (reinited != null) { + try { + TaskoSchedule reinited = TaskoFactory.reinitializeScheduleFromNow(schedule, now); schedules.add(reinited); } + catch (InvalidParamException | SchedulerException e) { + log.error("Unable to reinitialize schedule for job {}", schedule.getJobLabel(), e); + } } return schedules; } @@ -564,7 +562,6 @@ public List reinitializeAllSchedulesFromNow() { * Get the job label by constructing using partial job label and some other parameters * @param paramsMap maps containing data about actionn * @param partialJobLabel partial job label - * @return */ private String getJobLabel(Map paramsMap, String partialJobLabel) { StringBuilder label = new StringBuilder(partialJobLabel).append(paramsMap.get("action_id")); @@ -581,8 +578,8 @@ private String getJobLabel(Map paramsMap, String partialJobLabel * @throws SchedulerException * @throws InvalidParamException */ - private void isAlreadyScheduled(Integer orgId, String jobLabel) - throws SchedulerException, InvalidParamException { + private void isAlreadyScheduled(Integer orgId, String jobLabel) throws SchedulerException, InvalidParamException { + if (!TaskoFactory.listActiveSchedulesByOrgAndLabel(orgId, jobLabel).isEmpty() || (SchedulerKernel.getScheduler().getTrigger(triggerKey(jobLabel, TaskoQuartzHelper.getGroupName(orgId))) != null)) { diff --git a/java/code/src/com/redhat/rhn/taskomatic/task/ForwardRegistrationTask.java b/java/code/src/com/redhat/rhn/taskomatic/task/ForwardRegistrationTask.java index 2e164902d0da..e15001d0de85 100644 --- a/java/code/src/com/redhat/rhn/taskomatic/task/ForwardRegistrationTask.java +++ b/java/code/src/com/redhat/rhn/taskomatic/task/ForwardRegistrationTask.java @@ -14,6 +14,7 @@ */ package com.redhat.rhn.taskomatic.task; +import com.redhat.rhn.GlobalInstanceHolder; import com.redhat.rhn.common.conf.Config; import com.redhat.rhn.common.conf.ConfigDefaults; import com.redhat.rhn.domain.credentials.Credentials; @@ -52,12 +53,19 @@ public String getConfigNamespace() { @Override public void execute(JobExecutionContext arg0) { if (!ConfigDefaults.get().isForwardRegistrationEnabled()) { - log.debug("Forwarding registrations disabled"); - return; + if (GlobalInstanceHolder.PAYG_MANAGER.isPaygInstance() && + GlobalInstanceHolder.PAYG_MANAGER.hasSCCCredentials()) { + log.warn("SUSE Manager PAYG instances must forward registration data to SCC when " + + "credentials are provided. Data will be sent independently of the configuration setting."); + } + else { + log.debug("Forwarding registrations disabled"); + return; + } } if (Config.get().getString(ContentSyncManager.RESOURCE_PATH) == null) { - List credentials = CredentialsFactory.lookupSCCCredentials(); + List credentials = CredentialsFactory.listSCCCredentials(); Optional optPrimCred = credentials.stream() .filter(Credentials::isPrimarySCCCredential) .findFirst(); @@ -114,7 +122,7 @@ private void executeSCCTasks(Credentials primaryCredentials) { } } catch (URISyntaxException e) { - log.error(e); + log.error(e.getMessage(), e); } } } diff --git a/java/code/src/com/redhat/rhn/taskomatic/task/HubReportDbUpdateWorker.java b/java/code/src/com/redhat/rhn/taskomatic/task/HubReportDbUpdateWorker.java index f05ffca02573..a83d9ff6d751 100644 --- a/java/code/src/com/redhat/rhn/taskomatic/task/HubReportDbUpdateWorker.java +++ b/java/code/src/com/redhat/rhn/taskomatic/task/HubReportDbUpdateWorker.java @@ -189,7 +189,7 @@ public void run() { catch (Exception e) { parentQueue.getQueueRun().failed(); parentQueue.changeRun(null); - log.error(e); + log.error(e.getMessage(), e); } finally { parentQueue.workerDone(); diff --git a/java/code/src/com/redhat/rhn/taskomatic/task/MinionActionChainExecutor.java b/java/code/src/com/redhat/rhn/taskomatic/task/MinionActionChainExecutor.java index e571706b3eab..cbf40856ac5a 100644 --- a/java/code/src/com/redhat/rhn/taskomatic/task/MinionActionChainExecutor.java +++ b/java/code/src/com/redhat/rhn/taskomatic/task/MinionActionChainExecutor.java @@ -21,6 +21,7 @@ import com.redhat.rhn.domain.action.ActionChainFactory; import com.redhat.rhn.domain.action.ActionFactory; +import com.suse.cloud.CloudPaygManager; import com.suse.manager.webui.services.SaltServerActionService; import org.apache.commons.collections.CollectionUtils; @@ -44,20 +45,24 @@ public class MinionActionChainExecutor extends RhnJavaJob { public static final LocalizationService LOCALIZATION = LocalizationService.getInstance(); private final SaltServerActionService saltServerActionService; + private final CloudPaygManager cloudPaygManager; /** * Default constructor. */ public MinionActionChainExecutor() { - this(GlobalInstanceHolder.SALT_SERVER_ACTION_SERVICE); + this(GlobalInstanceHolder.SALT_SERVER_ACTION_SERVICE, GlobalInstanceHolder.PAYG_MANAGER); } /** * Constructs an instance specifying the {@link SaltServerActionService}. Meant to be used only for unit test. * @param saltServerActionServiceIn the salt service + * @param cloudPaygManagerIn the cloud payg manager */ - public MinionActionChainExecutor(SaltServerActionService saltServerActionServiceIn) { + public MinionActionChainExecutor(SaltServerActionService saltServerActionServiceIn, + CloudPaygManager cloudPaygManagerIn) { saltServerActionService = saltServerActionServiceIn; + cloudPaygManager = cloudPaygManagerIn; } @Override @@ -125,6 +130,18 @@ public void execute(JobExecutionContext context) { return; } + if (!cloudPaygManager.isCompliant()) { + log.error("This action was not executed because SUSE Manager Server PAYG is unable to send " + + "accounting data to the cloud provider."); + List actionsId = actionChain.getEntries() + .stream() + .map(ActionChainEntry::getActionId) + .filter(Objects::nonNull) + .collect(Collectors.toList()); + ActionFactory.rejectScheduledActions(actionsId, + LOCALIZATION.getMessage("task.action.rejection.notcompliant")); + return; + } log.info("Executing action chain: {}", actionChainId); diff --git a/java/code/src/com/redhat/rhn/taskomatic/task/MinionActionExecutor.java b/java/code/src/com/redhat/rhn/taskomatic/task/MinionActionExecutor.java index c17da071458c..782ab025d2aa 100644 --- a/java/code/src/com/redhat/rhn/taskomatic/task/MinionActionExecutor.java +++ b/java/code/src/com/redhat/rhn/taskomatic/task/MinionActionExecutor.java @@ -25,6 +25,7 @@ import com.redhat.rhn.domain.user.UserFactory; import com.redhat.rhn.manager.system.SystemManager; +import com.suse.cloud.CloudPaygManager; import com.suse.manager.webui.services.SaltServerActionService; import org.apache.commons.collections.CollectionUtils; @@ -48,20 +49,24 @@ public class MinionActionExecutor extends RhnJavaJob { private static final LocalizationService LOCALIZATION = LocalizationService.getInstance(); private final SaltServerActionService saltServerActionService; + private final CloudPaygManager cloudPaygManager; /** * Default constructor. */ public MinionActionExecutor() { - this(GlobalInstanceHolder.SALT_SERVER_ACTION_SERVICE); + this(GlobalInstanceHolder.SALT_SERVER_ACTION_SERVICE, GlobalInstanceHolder.PAYG_MANAGER); } /** * Constructs an instance specifying the {@link SaltServerActionService}. Meant to be used only for unit test. * @param saltServerActionServiceIn the salt service + * @param cloudPaygManagerIn the cloud payg manager */ - public MinionActionExecutor(SaltServerActionService saltServerActionServiceIn) { + public MinionActionExecutor(SaltServerActionService saltServerActionServiceIn, + CloudPaygManager cloudPaygManagerIn) { this.saltServerActionService = saltServerActionServiceIn; + this.cloudPaygManager = cloudPaygManagerIn; } @Override @@ -111,7 +116,8 @@ public void execute(JobExecutionContext context) { // HACK: it is possible that this Taskomatic task triggered before the corresponding Action was really // COMMITted in the database. Wait for some minutes checking if it appears int waitedTime = 0; - while (countQueuedServerActions(action) == 0 && waitedTime < ACTION_DATABASE_GRACE_TIME) { + while (countQueuedServerActions(action) == 0 && waitedTime < ACTION_DATABASE_GRACE_TIME && + !allServerActionsFinished(action)) { action = ActionFactory.lookupById(actionId); try { Thread.sleep(ACTION_DATABASE_POLL_TIME); @@ -128,6 +134,14 @@ public void execute(JobExecutionContext context) { return; } + // Instead of putting the thread to sleep in the loop above, checking if all server actions have already + // finished (they might have been manually canceled, for example) will prevent blocking the Taskomatic for + // actions that will never appear in the database. + if (allServerActionsFinished(action)) { + log.warn("All server actions for action {} are finished. Skipping it.", actionId); + return; + } + if (countQueuedServerActions(action) == 0) { log.error("Action with id={} has no server with status QUEUED", actionId); return; @@ -150,6 +164,13 @@ public void execute(JobExecutionContext context) { return; } + if (!cloudPaygManager.isCompliant()) { + log.error("This action was not executed because SUSE Manager Server PAYG is unable to send " + + "accounting data to the cloud provider."); + ActionFactory.rejectScheduledActions(List.of(actionId), + LOCALIZATION.getMessage("task.action.rejection.notcompliant")); + return; + } log.info("Executing action: {}", actionId); @@ -192,4 +213,13 @@ private long countQueuedServerActions(Action action) { .filter(serverAction -> ActionFactory.STATUS_QUEUED.equals(serverAction.getStatus())) .count(); } + + private boolean allServerActionsFinished(Action action) { + return action != null && + !CollectionUtils.isEmpty(action.getServerActions()) && + action.getServerActions().stream().allMatch(serverAction -> + ActionFactory.STATUS_FAILED.equals(serverAction.getStatus()) || + ActionFactory.STATUS_COMPLETED.equals(serverAction.getStatus()) + ); + } } diff --git a/java/code/src/com/redhat/rhn/taskomatic/task/RepoSyncTask.java b/java/code/src/com/redhat/rhn/taskomatic/task/RepoSyncTask.java index a596b4a615ef..44e2a36d3729 100644 --- a/java/code/src/com/redhat/rhn/taskomatic/task/RepoSyncTask.java +++ b/java/code/src/com/redhat/rhn/taskomatic/task/RepoSyncTask.java @@ -14,8 +14,10 @@ */ package com.redhat.rhn.taskomatic.task; +import com.redhat.rhn.GlobalInstanceHolder; import com.redhat.rhn.common.conf.Config; import com.redhat.rhn.common.conf.ConfigDefaults; +import com.redhat.rhn.common.localization.LocalizationService; import com.redhat.rhn.domain.channel.Channel; import com.redhat.rhn.domain.channel.ChannelFactory; import com.redhat.rhn.domain.channel.ContentSource; @@ -73,6 +75,16 @@ public void execute(JobExecutionContext context) { } } } + if (!GlobalInstanceHolder.PAYG_MANAGER.isCompliant()) { + log.error("Synchronization of repositories is forbidden as SUSE Manager Server PAYG " + + "is unable to send accounting data to the cloud provider."); + NotificationMessage notificationMessage = UserNotificationFactory.createNotificationMessage( + new ChannelSyncFailed(null, null, LocalizationService.getInstance() + .getMessage("notification.channelsyncfailed.notcompliant"))); + UserNotificationFactory.storeNotificationMessageFor(notificationMessage, + Collections.singleton(RoleFactory.CHANNEL_ADMIN), Optional.empty()); + return; + } for (Long channelId : channelIds) { Channel channel = ChannelFactory.lookupById(channelId); @@ -96,7 +108,7 @@ public void execute(JobExecutionContext context) { } - log.error(e.getMessage()); + log.error(e.getMessage(), e); } NotificationMessage notificationMessage = UserNotificationFactory.createNotificationMessage( new ChannelSyncFinished(channel.getId(), channel.getName()) @@ -118,7 +130,7 @@ public void execute(JobExecutionContext context) { UbuntuErrataManager.sync(new HashSet<>(channelIds)); } catch (IOException e) { - log.error(e); + log.error(e.getMessage(), e); } } diff --git a/java/code/src/com/redhat/rhn/taskomatic/task/SSHMinionActionExecutor.java b/java/code/src/com/redhat/rhn/taskomatic/task/SSHMinionActionExecutor.java index dc7fc6d3c116..f937052198e2 100644 --- a/java/code/src/com/redhat/rhn/taskomatic/task/SSHMinionActionExecutor.java +++ b/java/code/src/com/redhat/rhn/taskomatic/task/SSHMinionActionExecutor.java @@ -17,14 +17,18 @@ import com.redhat.rhn.GlobalInstanceHolder; import com.redhat.rhn.common.hibernate.HibernateFactory; +import com.redhat.rhn.common.localization.LocalizationService; import com.redhat.rhn.domain.action.Action; import com.redhat.rhn.domain.action.ActionFactory; import com.redhat.rhn.domain.server.MinionServer; import com.redhat.rhn.domain.server.MinionServerFactory; +import com.suse.cloud.CloudPaygManager; + import org.quartz.JobExecutionContext; import java.util.Date; +import java.util.List; import java.util.Optional; /** @@ -32,6 +36,23 @@ */ public class SSHMinionActionExecutor extends RhnJavaJob { + private final CloudPaygManager cloudPaygManager; + + /** + * Default Constructor + */ + public SSHMinionActionExecutor() { + this(GlobalInstanceHolder.PAYG_MANAGER); + } + + /** + * Constructor + * @param cloudPaygManagerIn the payg manager + */ + public SSHMinionActionExecutor(CloudPaygManager cloudPaygManagerIn) { + cloudPaygManager = cloudPaygManagerIn; + } + @Override public int getDefaultParallelThreads() { return 20; @@ -62,6 +83,13 @@ public void execute(JobExecutionContext context) { log.error("Action not found: {}", actionId); return; } + if (!cloudPaygManager.isCompliant()) { + log.error("This action was not executed because SUSE Manager Server PAYG is unable to send " + + "accounting data to the cloud provider."); + ActionFactory.rejectScheduledActions(List.of(actionId), + LocalizationService.getInstance().getMessage("task.action.rejection.notcompliant")); + return; + } action.getServerActions().stream() .filter(sa -> sshMinionOpt.get().getId().equals(sa.getServerId())).findFirst() diff --git a/java/code/src/com/redhat/rhn/taskomatic/task/TaskHelper.java b/java/code/src/com/redhat/rhn/taskomatic/task/TaskHelper.java index 0efbf376999c..fbd998e182a3 100644 --- a/java/code/src/com/redhat/rhn/taskomatic/task/TaskHelper.java +++ b/java/code/src/com/redhat/rhn/taskomatic/task/TaskHelper.java @@ -30,6 +30,7 @@ import org.apache.logging.log4j.LogManager; import org.apache.logging.log4j.Logger; +import org.quartz.SchedulerException; import java.net.InetAddress; import java.util.ArrayList; @@ -141,7 +142,7 @@ public static void scheduleActionExecution(Action action) { new TaskoXmlRpcHandler().scheduleSingleSatBunchRun(TaskomaticApi.MINION_ACTION_BUNCH_LABEL, TaskomaticApi.MINION_ACTION_JOB_PREFIX + action.getId(), params, action.getEarliestAction()); } - catch (NoSuchBunchTaskException | InvalidParamException e) { + catch (NoSuchBunchTaskException | InvalidParamException | SchedulerException e) { LOG.error("Could not schedule action: {}", action.getActionType(), e); } } diff --git a/java/code/src/com/redhat/rhn/taskomatic/task/errata/ErrataCacheWorker.java b/java/code/src/com/redhat/rhn/taskomatic/task/errata/ErrataCacheWorker.java index c3d24247f845..bf75b1b9040c 100644 --- a/java/code/src/com/redhat/rhn/taskomatic/task/errata/ErrataCacheWorker.java +++ b/java/code/src/com/redhat/rhn/taskomatic/task/errata/ErrataCacheWorker.java @@ -88,7 +88,7 @@ else if (ErrataCacheWorker.BY_CHANNEL.equals(task.getName())) { HibernateFactory.commitTransaction(); } catch (Exception e) { - logger.error(e); + logger.error(e.getMessage(), e); HibernateFactory.rollbackTransaction(); } finally { diff --git a/java/code/src/com/redhat/rhn/taskomatic/task/errata/ErrataQueueWorker.java b/java/code/src/com/redhat/rhn/taskomatic/task/errata/ErrataQueueWorker.java index 0ed71716dd59..4c3310632900 100644 --- a/java/code/src/com/redhat/rhn/taskomatic/task/errata/ErrataQueueWorker.java +++ b/java/code/src/com/redhat/rhn/taskomatic/task/errata/ErrataQueueWorker.java @@ -71,7 +71,7 @@ public void run() { HibernateFactory.commitTransaction(); } catch (Exception e) { - logger.error(e); + logger.error(e.getMessage(), e); HibernateFactory.rollbackTransaction(); } finally { diff --git a/java/code/src/com/redhat/rhn/taskomatic/task/gatherer/VirtualHostManagerProcessor.java b/java/code/src/com/redhat/rhn/taskomatic/task/gatherer/VirtualHostManagerProcessor.java index c7dcb0303706..c16b88b0b4e6 100644 --- a/java/code/src/com/redhat/rhn/taskomatic/task/gatherer/VirtualHostManagerProcessor.java +++ b/java/code/src/com/redhat/rhn/taskomatic/task/gatherer/VirtualHostManagerProcessor.java @@ -277,10 +277,14 @@ private void updateServerCpu(Server server, HostJson host) { cpu.setArch(ServerFactory.lookupCPUArchByName(host.getCpuArch())); cpu.setMHz(Long.toString(Math.round(host.getCpuMhz()))); - cpu.setNrCPU(host.getTotalCpuThreads().longValue()); - cpu.setNrsocket(host.getTotalCpuSockets().longValue()); - cpu.setNrCore(host.getTotalCpuCores().longValue() / host.getTotalCpuSockets().longValue()); - cpu.setNrThread(host.getTotalCpuThreads().longValue() / host.getTotalCpuCores().longValue()); + if (host.getTotalCpuSockets().longValue() > 0L) { + cpu.setNrsocket(host.getTotalCpuSockets().longValue()); + cpu.setNrCore(host.getTotalCpuCores().longValue() / host.getTotalCpuSockets().longValue()); + cpu.setNrThread(host.getTotalCpuThreads().longValue() / host.getTotalCpuCores().longValue()); + cpu.setNrCPU(host.getTotalCpuThreads().longValue()); + } + // else insufficient data for subscription matching. We keep totalSockets == null as matcher react on it + // set no CPU value in that case to prevent division by zero cpu.setVendor(host.getCpuVendor()); cpu.setModel(host.getCpuDescription()); diff --git a/java/code/src/com/redhat/rhn/taskomatic/task/payg/PaygAuthDataExtractor.java b/java/code/src/com/redhat/rhn/taskomatic/task/payg/PaygAuthDataExtractor.java index b35aff7c6cc2..efb762cdbdf4 100644 --- a/java/code/src/com/redhat/rhn/taskomatic/task/payg/PaygAuthDataExtractor.java +++ b/java/code/src/com/redhat/rhn/taskomatic/task/payg/PaygAuthDataExtractor.java @@ -25,6 +25,7 @@ import com.google.gson.GsonBuilder; import com.jcraft.jsch.ChannelExec; import com.jcraft.jsch.JSch; +import com.jcraft.jsch.JSchException; import com.jcraft.jsch.Session; import org.apache.commons.lang3.StringUtils; @@ -34,6 +35,8 @@ import java.io.IOException; import java.io.InputStream; import java.io.InputStreamReader; +import java.io.OutputStream; +import java.util.Arrays; public class PaygAuthDataExtractor { @@ -47,10 +50,79 @@ public class PaygAuthDataExtractor { private static final Logger LOG = LogManager.getLogger(PaygAuthDataExtractor.class); - private final Gson GSON = new GsonBuilder() - .registerTypeAdapterFactory(new OptionalTypeAdapterFactory()) - .serializeNulls() - .create(); + private static final Gson GSON = new GsonBuilder() + .registerTypeAdapterFactory(new OptionalTypeAdapterFactory()) + .serializeNulls() + .create(); + + public enum OsSpecificExtractor { + SLES_EXTRACTOR("SLES", "sudo python3", "script/payg_extract_repo_data.py"), + RHEL_EXTRACTOR("RHEL", "sudo /usr/libexec/platform-python", "script/rhui_extract_repo_data.py"), + RHEL7_EXTRACTOR("RHEL7", "sudo python", "script/rhui7_extract_repo_data.py"); + + private final String osLabel; + private final String scriptExecutor; + private final String extractorScript; + + /** + * Constructor + * @param osLabelIn the lable + * @param scriptExecutorIn the script executor + * @param extractorScriptIn the script path + */ + OsSpecificExtractor(String osLabelIn, String scriptExecutorIn, String extractorScriptIn) { + this.osLabel = osLabelIn; + this.scriptExecutor = scriptExecutorIn; + this.extractorScript = extractorScriptIn; + } + + /** + * @param osLabel the os label + * @return the extractor + */ + public static OsSpecificExtractor forOS(String osLabel) { + return Arrays.stream(PaygAuthDataExtractor.OsSpecificExtractor.values()) + .filter(extractor -> osLabel.equalsIgnoreCase(extractor.getOsLabel())) + .findFirst() + .orElseThrow(() -> new IllegalStateException("Unable to create an extractor for OS " + osLabel)); + } + + // Getters + /** + * @return return the os label + */ + public String getOsLabel() { + return osLabel; + } + + /** + * @return return the extractor script + */ + public String getExtractorScript() { + return extractorScript; + } + + /** + * @return return the script executor + */ + public String getScriptExecutor() { + return scriptExecutor; + } + } + + private PaygInstanceInfo processOutput(int exitStatus, String error, String output) { + if (exitStatus != 0 || error.length() > 0) { + LOG.error("Exit status: {}", exitStatus); + LOG.error("stderr:\n{}", error); + throw new PaygDataExtractException(error); + } + if (output.length() == 0) { + LOG.error("Exit status was success but no data retrieved"); + throw new PaygDataExtractException("No data retrieved from the instance."); + } + return GSON.fromJson(output, PaygInstanceInfo.class); + } + /** * This method will use the ssh connection data to open an ssh connection to the instance @@ -60,28 +132,26 @@ public class PaygAuthDataExtractor { * @return Authentication data and cryptographic material to connect to cloud rmt host * @throws Exception */ - public PaygInstanceInfo extractAuthData(PaygSshData instance) throws Exception { + private PaygInstanceInfo extractAuthDataSSH(PaygSshData instance) throws Exception { Session sessionsTarget = null, sessionBastion = null; try { JSch.setConfig("StrictHostKeyChecking", "no"); JSch sshTarget = new JSch(); - //sshTarget.setKnownHosts(KNOWN_HOSTS); if (!StringUtils.isEmpty(instance.getKey())) { String authKeypassIn = instance.getKeyPassword() != null ? instance.getKeyPassword() : ""; sshTarget.addIdentity("targetkey", instance.getKey().getBytes(), null, authKeypassIn.getBytes()); } - Integer sshPortIn = instance.getPort() != null ? instance.getPort() : 22; + int sshPortIn = instance.getPort() != null ? instance.getPort() : 22; if (!StringUtils.isEmpty(instance.getBastionHost())) { JSch sshBastion = new JSch(); - //sshBastion.setKnownHosts(KNOWN_HOSTS); if (!StringUtils.isEmpty(instance.getBastionKey())) { String bastionAuthKeyPassIn = instance.getBastionKeyPassword() != null ? instance.getBastionKeyPassword() : ""; sshBastion.addIdentity("bastionkey", instance.getBastionKey().getBytes(), null, bastionAuthKeyPassIn.getBytes()); } - Integer bastionSshPortIn = instance.getBastionPort() != null ? instance.getBastionPort() : 22; + int bastionSshPortIn = instance.getBastionPort() != null ? instance.getBastionPort() : 22; sessionBastion = sshBastion.getSession(instance.getBastionUsername(), instance.getBastionHost(), bastionSshPortIn); if (!StringUtils.isEmpty(instance.getBastionPassword())) { @@ -102,15 +172,13 @@ public PaygInstanceInfo extractAuthData(PaygSshData instance) throws Exception { sessionsTarget.setTimeout(CONNECTION_TIMEOUT); sessionsTarget.connect(); + OsSpecificExtractor extractor = getOsSpecificExtractor(sessionsTarget); ChannelExec channel = (ChannelExec) sessionsTarget.openChannel("exec"); + try { - // next step will be execute a python3 file using this method. - // Should we pass a []byte? String + file content - channel.setCommand("sudo python3 "); - channel.setInputStream(PaygAuthDataExtractor.class - .getResourceAsStream("script/payg_extract_repo_data.py")); + channel.setCommand(extractor.getScriptExecutor()); + channel.setInputStream(PaygAuthDataExtractor.class.getResourceAsStream(extractor.getExtractorScript())); - //channel.setInputStream(null); InputStream stdout = channel.getInputStream(); InputStream stderr = channel.getErrStream(); channel.connect(); @@ -122,16 +190,7 @@ public PaygInstanceInfo extractAuthData(PaygSshData instance) throws Exception { waitForChannelClosed(channel); int exitStatus = channel.getExitStatus(); - if (exitStatus != 0 || error.length() > 0) { - LOG.error("Exit status: {}", exitStatus); - LOG.error("stderr:\n{}", error); - throw new PaygDataExtractException(error.toString()); - } - if (output.length() == 0) { - LOG.error("Exit status was success but no data retrieved"); - throw new PaygDataExtractException("No data retrieved from the instance."); - } - return GSON.fromJson(output.toString(), PaygInstanceInfo.class); + return processOutput(exitStatus, error.toString(), output.toString()); } finally { if (channel != null) { @@ -165,6 +224,104 @@ public PaygInstanceInfo extractAuthData(PaygSshData instance) throws Exception { } } + /** + * This method will use the local instance + * and extract all authentication data and cryptographic material needed to connect to the cloud rmt servers. + * To do that, a python script will be executed on this instance. + * (Just public to be able to mock this method in tests) + * @return Authentication data and cryptographic material to connect to cloud rmt host + */ + protected PaygInstanceInfo extractAuthDataLocal() { + String[] cmd = {"python3"}; + InputStream programStream = PaygAuthDataExtractor.class + .getResourceAsStream("script/payg_extract_repo_data.py"); + try { + Process p = new ProcessBuilder() + .command(cmd) + .start(); + + OutputStream stdin = p.getOutputStream(); + InputStream stdout = p.getInputStream(); + InputStream stderr = p.getErrorStream(); + programStream.transferTo(stdin); + stdin.close(); + programStream.close(); + + String output = getCommandOutput(stdout).toString(); + String error = getCommandOutput(stderr).toString(); + + int exitStatus = p.waitFor(); + + + //TODO: add additional product information + return processOutput(exitStatus, error, output); + } + catch (IOException e) { + LOG.error(e.getMessage(), e); + } + catch (InterruptedException e) { + Thread.currentThread().interrupt(); + LOG.error(e.getMessage(), e); + } + return null; + } + + /** + * This method will use the ssh connection data to open an ssh connection to the instance + * and extract all authentication data and cryptographic material needed to connect to the cloud rmt servers. + * To o that, a python script will be executed on the target instance. + * @param instance payg ssh data connection object + * @return Authentication data and cryptographic material to connect to cloud rmt host + * @throws Exception + */ + public PaygInstanceInfo extractAuthData(PaygSshData instance) throws Exception { + if (instance.isSUSEManagerPayg()) { + return extractAuthDataLocal(); + } + + return extractAuthDataSSH(instance); + } + + private OsSpecificExtractor getOsSpecificExtractor(Session sessionsTarget) throws JSchException, IOException { + ChannelExec channel = (ChannelExec) sessionsTarget.openChannel("exec"); + try { + channel.setCommand("/bin/sh "); + channel.setInputStream(PaygAuthDataExtractor.class.getResourceAsStream("script/detect_os.sh")); + + //channel.setInputStream(null); + InputStream stdout = channel.getInputStream(); + InputStream stderr = channel.getErrStream(); + channel.connect(); + + // read all command output, otherwise channel will never be closed + StringBuilder output = getCommandOutput(stdout); + StringBuilder error = getCommandOutput(stderr); + + waitForChannelClosed(channel); + int exitStatus = channel.getExitStatus(); + + if (exitStatus != 0 || error.length() > 0) { + LOG.error("Exit status: {}", exitStatus); + LOG.error("stderr:\n{}", error); + throw new PaygDataExtractException(error.toString()); + } + if (output.length() == 0) { + LOG.error("Exit status was success but no data retrieved"); + throw new PaygDataExtractException("No data retrieved from the instance."); + } + return OsSpecificExtractor.forOS(output.toString().trim()); + } + finally { + if (channel != null) { + try { + channel.disconnect(); + } + catch (Exception e) { + LOG.error("Error disconnection jsch session", e); + } + } + } + } private StringBuilder getCommandOutput(InputStream channelStdout) throws IOException { StringBuilder output = new StringBuilder(); InputStreamReader stream = new InputStreamReader(channelStdout); @@ -188,6 +345,7 @@ private void waitForChannelClosed(ChannelExec channel) { Thread.sleep(RESPONSE_TIMEOUT / 10); } catch (InterruptedException e) { + Thread.currentThread().interrupt(); // Should not happen LOG.error("error when waiting for channel to be closed", e); } diff --git a/java/code/src/com/redhat/rhn/taskomatic/task/payg/PaygAuthDataProcessor.java b/java/code/src/com/redhat/rhn/taskomatic/task/payg/PaygAuthDataProcessor.java index 690e6f169ad0..2d12bae11587 100644 --- a/java/code/src/com/redhat/rhn/taskomatic/task/payg/PaygAuthDataProcessor.java +++ b/java/code/src/com/redhat/rhn/taskomatic/task/payg/PaygAuthDataProcessor.java @@ -15,16 +15,23 @@ package com.redhat.rhn.taskomatic.task.payg; +import com.redhat.rhn.common.conf.ConfigDefaults; +import com.redhat.rhn.domain.channel.ChannelFactory; +import com.redhat.rhn.domain.channel.ContentSource; +import com.redhat.rhn.domain.channel.SslContentSource; import com.redhat.rhn.domain.cloudpayg.CloudRmtHost; import com.redhat.rhn.domain.cloudpayg.CloudRmtHostFactory; +import com.redhat.rhn.domain.cloudpayg.PaygProductFactory; import com.redhat.rhn.domain.cloudpayg.PaygSshData; import com.redhat.rhn.domain.cloudpayg.PaygSshDataFactory; import com.redhat.rhn.domain.credentials.Credentials; import com.redhat.rhn.domain.credentials.CredentialsFactory; -import com.redhat.rhn.domain.scc.SCCCachingFactory; -import com.redhat.rhn.domain.scc.SCCRepository; +import com.redhat.rhn.domain.kickstart.KickstartFactory; +import com.redhat.rhn.domain.kickstart.crypto.SslCryptoKey; +import com.redhat.rhn.domain.org.Org; +import com.redhat.rhn.domain.org.OrgFactory; +import com.redhat.rhn.domain.product.Tuple2; import com.redhat.rhn.domain.scc.SCCRepositoryAuth; -import com.redhat.rhn.domain.scc.SCCRepositoryCloudRmtAuth; import com.redhat.rhn.taskomatic.task.payg.beans.PaygInstanceInfo; import com.redhat.rhn.taskomatic.task.payg.beans.PaygProductInfo; @@ -36,11 +43,15 @@ import java.net.URI; import java.net.URISyntaxException; -import java.util.ArrayList; +import java.nio.charset.StandardCharsets; +import java.util.Arrays; import java.util.HashMap; +import java.util.HashSet; +import java.util.LinkedList; import java.util.List; import java.util.Map; import java.util.Optional; +import java.util.Set; import java.util.stream.Collectors; public class PaygAuthDataProcessor { @@ -62,38 +73,150 @@ public class PaygAuthDataProcessor { */ public void processPaygInstanceData(PaygSshData instance, PaygInstanceInfo paygData) throws URISyntaxException { - LOG.debug("Number installed Products: {}", paygData.getProducts().size()); - Credentials credentials = processAndGetCredentials(instance, paygData); - List existingRepos = SCCCachingFactory.lookupRepositoryAuthByCredential(credentials); - - List repositories = getReposToInsert(paygData.getProducts()); - - List processedRepoAuth = new ArrayList<>(); - repositories.forEach(sccRepo-> { - SCCRepositoryAuth authRepo = existingRepos.stream().filter(r -> r.getRepo().getId().equals(sccRepo.getId())) - .findFirst().orElseGet(() -> { - SCCRepositoryCloudRmtAuth newAuth = new SCCRepositoryCloudRmtAuth(); - newAuth.setRepo(sccRepo); - return newAuth; - }); - - authRepo.setCredentials(credentials); - // Update content source URL, since it should be pointing to a Credentials record, and it may have changed - if (authRepo.getContentSource() != null) { - authRepo.getContentSource().setSourceUrl(authRepo.getUrl()); + LOG.debug("Process data for {}", paygData.getType()); + if (paygData.getType().equals("CLOUDRMT")) { + Credentials credentials = processAndGetCredentials(instance, paygData); + LOG.debug("Number installed Products: {}", paygData.getProducts().size()); + + // Update the PAYG products associated with the credentials + LOG.debug("Associating the installed products with the credentials # {}", credentials.getId()); + PaygProductFactory.updateProducts(credentials, paygData.getProducts()); + + // Add the Tools and Proxy products that are accessible when in SUMA Payg environment + List products = new LinkedList<>(paygData.getProducts()); + if (instance.isSUSEManagerPayg()) { + products.addAll(PaygProductFactory.listAdditionalProductsForSUMAPayg()); + } + + // Update the authorizations for accessing the product repositories + List repoAuths = PaygProductFactory.refreshRepositoriesAuths(credentials, products); + LOG.debug("Total repository authentication processed: {}", repoAuths.size()); + + // Store the information about the Cloud RMT server + processCloudRmtHost(instance, paygData); + } + else if (paygData.getType().equals("RHUI")) { + LOG.debug("Number repositories: {}", paygData.getRepositories().size()); + long instanceId = instance.getId(); + Org org = OrgFactory.lookupById(ConfigDefaults.get().getRhuiDefaultOrgId()); + Map cryptoKeyMap = extractCryptoKeys(paygData, instanceId, org); + + // extract repositories from paygData and create or update them + processRepositories(paygData, cryptoKeyMap, instance, org); + } + } + + private void processRepositories(PaygInstanceInfo paygData, Map cryptoKeyMap, + PaygSshData instance, Org org) throws URISyntaxException { + Set newIdents = new HashSet<>(); + for (Map.Entry> repo : paygData.getRepositories().entrySet()) { + boolean needCredentials = paygData.getHeaderAuth().containsKey("X-RHUI-ID"); + String repoIdent = repo.getKey() + "-i" + instance.getId(); + Map repodata = repo.getValue(); + URI uri = new URI(repodata.get("url")); + String queryString = uri.getQuery(); + + if (needCredentials) { + Credentials credentials = processAndGetCredentials(instance, paygData); + queryString = buildQueryString(uri.getQuery(), "credentials", "mirrcred_" + credentials.getId()); + } + ContentSource contentSource = + Optional.ofNullable(ChannelFactory.lookupContentSourceByOrgAndLabel(org, repoIdent)) + .orElseGet(() -> { + ContentSource cs = new ContentSource(); + cs.setOrg(org); + cs.setLabel(repoIdent); + cs.setType(ChannelFactory.lookupContentSourceType("yum")); + cs.setMetadataSigned(false); + return cs; + }); + contentSource.setSourceUrl(new URI(uri.getScheme(), uri.getUserInfo(), uri.getHost(), uri.getPort(), + uri.getPath(), queryString, uri.getFragment()).toString()); + + if (repodata.containsKey("sslclientcert") && + cryptoKeyMap.containsKey(repodata.get("sslclientcert")) && + repodata.containsKey("sslclientkey") && + cryptoKeyMap.containsKey(repodata.get("sslclientkey")) && + repodata.containsKey("sslcacert") && + cryptoKeyMap.containsKey(repodata.get("sslcacert"))) { + SslContentSource sslCs = new SslContentSource(); + sslCs.setClientCert(cryptoKeyMap.get(repodata.get("sslclientcert"))); + sslCs.setClientKey(cryptoKeyMap.get(repodata.get("sslclientkey"))); + sslCs.setCaCert(cryptoKeyMap.get(repodata.get("sslcacert"))); + contentSource.setSslSets(Set.of(sslCs)); + } + else if (repodata.containsKey("sslclientcert") || + repodata.containsKey("sslclientkey")) { + LOG.error("Repository has incomplete client certificate values: {}", repoIdent); + continue; } + newIdents.add(repoIdent); + ChannelFactory.save(contentSource); + } + // Cleanup unused repositories + PaygSshDataFactory.listRhuiRepositoriesCreatedByInstance(instance) + .stream() + .filter(c -> !newIdents.contains(c.getLabel())) + .forEach(ChannelFactory::remove); - SCCCachingFactory.saveRepositoryAuth(authRepo); - processedRepoAuth.add(authRepo); - }); + } - LOG.debug("Total repository authentication inserted: {}", processedRepoAuth.size()); - existingRepos.stream() - .filter(er -> processedRepoAuth.stream().noneMatch(pr -> er.getId().equals(pr.getId()))) - .forEach(SCCCachingFactory::deleteRepositoryAuth); + private Map extractCryptoKeys(PaygInstanceInfo paygData, long instanceId, Org org) { + Map cryptoKeyMap = new HashMap<>(); - processCloudRmtHost(instance, paygData); + for (Map.Entry cert : paygData.getCertificates().entrySet()) { + String filename = cert.getKey().substring(cert.getKey().lastIndexOf("/") + 1); + String desc = String.format("RHUI %s %s (I%d)", "Client Certificate", filename, instanceId); + if (cert.getValue().contains("PRIVATE KEY")) { + // private key + desc = String.format("RHUI %s %s (I%d)", "Private Key", filename, instanceId); + } + else if (filename.equals("Bundle")) { + desc = String.format("RHUI %s %s (I%d)", "CA Certificate", filename, instanceId); + } + else { + if (cert.getKey().contains("/product/")) { + // client certificate + desc = String.format("RHUI %s %s (I%d)", "Certificate", filename, instanceId); + } + else if (filename.endsWith(".crt")) { + // ca cert + desc = String.format("RHUI %s %s (I%d)", "CA Certificate", filename, instanceId); + } + } + String cryptoKeyDesc = desc; + SslCryptoKey cryptoKey = + (SslCryptoKey) Optional.ofNullable(KickstartFactory.lookupCryptoKey(cryptoKeyDesc, org)) + .orElseGet(() -> { + SslCryptoKey sslkey = new SslCryptoKey(); + sslkey.setCryptoKeyType(KickstartFactory.KEY_TYPE_SSL); + sslkey.setOrg(org); + sslkey.setDescription(cryptoKeyDesc); + return sslkey; + }); + cryptoKey.setKey(cert.getValue().getBytes(StandardCharsets.UTF_8)); + KickstartFactory.saveCryptoKey(cryptoKey); + cryptoKeyMap.put(cert.getKey(), cryptoKey); + } + // crypto keys might change, but a cleanup will only happen when removing the instance + return cryptoKeyMap; + } + private String buildQueryString(String query, String newKey, String newValue) { + Map queryparams = Arrays.stream( + Optional.ofNullable(query) + .orElse("") + .split("&")) + .filter(p -> p.contains("=")) // filter out possible auth tokens + .map(p -> { + String[] s = p.split("=", 2); + return new Tuple2(s[0], s[1]); + }) + .collect(Collectors.toMap(Tuple2::getA, Tuple2::getB)); + queryparams.put(newKey, newValue); + return queryparams.entrySet().stream() + .map(e -> e.getKey() + "=" + e.getValue()) + .collect(Collectors.joining("&")); } private void processCloudRmtHost(PaygSshData instance, PaygInstanceInfo paygData) { @@ -112,36 +235,64 @@ private void processCloudRmtHost(PaygSshData instance, PaygInstanceInfo paygData private Credentials processAndGetCredentials(PaygSshData instance, PaygInstanceInfo paygData) throws URISyntaxException { - final String username = paygData.getBasicAuth().get("username"); - final String password = paygData.getBasicAuth().get("password"); - Credentials credentials = Optional.ofNullable(instance.getCredentials()).orElseGet(() -> - CredentialsFactory.createCredentials(username, password, Credentials.TYPE_CLOUD_RMT, null)); + if (paygData.getType().equals("CLOUDRMT")) { + final String username = paygData.getBasicAuth().get("username"); + final String password = paygData.getBasicAuth().get("password"); + Credentials credentialsIn = instance.getCredentials(); + Credentials credentials = Optional.ofNullable(instance.getCredentials()) + .orElseGet(() -> + CredentialsFactory.createCredentials(username, password, Credentials.TYPE_CLOUD_RMT)); - credentials.setUsername(username); - credentials.setPassword(password); + credentials.setUsername(username); + credentials.setPassword(password); - URI credentialsURI = new URI("https", paygData.getRmtHost().get("hostname"), "/repo", null); - credentials.setUrl(credentialsURI.toString()); + URI credentialsURI = new URI("https", paygData.getRmtHost().get("hostname"), "/repo", null); + credentials.setUrl(credentialsURI.toString()); - if (paygData.getHeaderAuth() != null && paygData.getHeaderAuth().contains(":")) { - String[] headSplit = paygData.getHeaderAuth().split(":", 2); - Map headers = new HashMap<>(); - headers.put(headSplit[0], headSplit[1]); - credentials.setExtraAuthData(GSON.toJson(headers).getBytes()); - } - credentials.setPaygSshData(instance); + if (paygData.getHeaderAuth() != null) { + credentials.setExtraAuthData(GSON.toJson(paygData.getHeaderAuth()).getBytes()); + } + credentials.setPaygSshData(instance); - CredentialsFactory.storeCredentials(credentials); + if (credentialsIn == null || !credentialsIn.equals(credentials)) { + // storeCredentials update the modified date which should only be + // done when the data really change as it would force a full + // scc product refresh + CredentialsFactory.storeCredentials(credentials); + } - instance.setCredentials(credentials); - PaygSshDataFactory.savePaygSshData(instance); + instance.setCredentials(credentials); + PaygSshDataFactory.savePaygSshData(instance); + return credentials; + } + else if (paygData.getType().equals("RHUI")) { + Credentials credentials = Optional.ofNullable(instance.getCredentials()) + .orElseGet(() -> + CredentialsFactory.createCredentials("RHUI", " ", Credentials.TYPE_RHUI)); + if (paygData.getHeaderAuth() != null) { + credentials.setExtraAuthData(GSON.toJson(paygData.getHeaderAuth()).getBytes()); + } + credentials.setPaygSshData(instance); - return credentials; + CredentialsFactory.storeCredentials(credentials); + instance.setCredentials(credentials); + PaygSshDataFactory.savePaygSshData(instance); + return credentials; + } + throw new PaygDataExtractException("Unknown data type: " + paygData.getType()); } - - private List getReposToInsert(List products) { - return products.stream().map(product -> - SCCCachingFactory.lookupRepositoriesByProductNameAndArchForPayg(product.getName(), product.getArch()) - ).flatMap(List::stream).collect(Collectors.toList()); + /** + * Invalidate PAYG Instance credentials + * @param instance the instance + */ + public void invalidateCredentials(PaygSshData instance) { + Optional.ofNullable(instance.getCredentials()) + .ifPresent(c -> { + Map headers = new HashMap<>(); + c.setExtraAuthData(GSON.toJson(headers).getBytes()); + c.setPassword("invalidated"); + CredentialsFactory.storeCredentials(c); + }); } + } diff --git a/java/code/src/com/redhat/rhn/taskomatic/task/payg/PaygComputeDimensionsTask.java b/java/code/src/com/redhat/rhn/taskomatic/task/payg/PaygComputeDimensionsTask.java new file mode 100644 index 000000000000..79d9b3f1fc45 --- /dev/null +++ b/java/code/src/com/redhat/rhn/taskomatic/task/payg/PaygComputeDimensionsTask.java @@ -0,0 +1,138 @@ +/* + * Copyright (c) 2023 SUSE LLC + * + * This software is licensed to you under the GNU General Public License, + * version 2 (GPLv2). There is NO WARRANTY for this software, express or + * implied, including the implied warranties of MERCHANTABILITY or FITNESS + * FOR A PARTICULAR PURPOSE. You should have received a copy of GPLv2 + * along with this software; if not, see + * http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt. + * + * Red Hat trademarks are not licensed under GPLv2. No permission is + * granted to use or replicate Red Hat trademarks that are incorporated + * in this software or its documentation. + */ + +package com.redhat.rhn.taskomatic.task.payg; + +import com.redhat.rhn.GlobalInstanceHolder; +import com.redhat.rhn.common.conf.Config; +import com.redhat.rhn.common.util.TimeUtils; +import com.redhat.rhn.domain.server.ServerFactory; +import com.redhat.rhn.taskomatic.task.RhnJavaJob; +import com.redhat.rhn.taskomatic.task.payg.dimensions.DimensionCalculator; +import com.redhat.rhn.taskomatic.task.payg.dimensions.DimensionRule; +import com.redhat.rhn.taskomatic.task.payg.dimensions.DimensionsConfiguration; + +import com.suse.cloud.CloudPaygManager; +import com.suse.cloud.domain.PaygDimensionComputation; +import com.suse.cloud.domain.PaygDimensionFactory; + +import org.apache.logging.log4j.LogManager; +import org.apache.logging.log4j.Logger; +import org.quartz.JobExecutionContext; +import org.quartz.JobExecutionException; + +import java.time.Instant; +import java.time.temporal.ChronoUnit; +import java.util.List; +import java.util.stream.Collectors; +import java.util.stream.IntStream; + +public class PaygComputeDimensionsTask extends RhnJavaJob { + + private static final Logger LOGGER = LogManager.getLogger(PaygComputeDimensionsTask.class); + public static final int DEFAULT_BATCH_SIZE = 500; + + private final DimensionsConfiguration configuration; + + private final CloudPaygManager cloudManager; + + private final PaygDimensionFactory dimensionFactory; + + /** + * Default constructor. + */ + public PaygComputeDimensionsTask() { + this(DimensionsConfiguration.DEFAULT_CONFIGURATION, new PaygDimensionFactory(), + GlobalInstanceHolder.PAYG_MANAGER); + } + + /** + * Builds an instance with the given configuration + * @param configurationIn the dimensions configuration + * @param dimensionFactoryIn the dimension factory + * @param cloudManagerIn the cloud manager + */ + public PaygComputeDimensionsTask(DimensionsConfiguration configurationIn, PaygDimensionFactory dimensionFactoryIn, + CloudPaygManager cloudManagerIn) { + this.configuration = configurationIn; + this.dimensionFactory = dimensionFactoryIn; + this.cloudManager = cloudManagerIn; + } + + @Override + public String getConfigNamespace() { + return "payg.dimensions"; + } + + @Override + public void execute(JobExecutionContext jobExecutionContext) throws JobExecutionException { + if (!cloudManager.isPaygInstance()) { + LOGGER.debug("Not a PAYG instance. Exit"); + return; + } + + Instant startTime = Instant.now(); + int batchSize = Config.get().getInt(getConfigurationKey("batch_size"), DEFAULT_BATCH_SIZE); + + LOGGER.info("Starting PAYG Dimension Computation"); + LOGGER.info("Using batchSize of {}", batchSize); + + DimensionCalculator calculator = new DimensionCalculator(batchSize); + + List allServerIds = ServerFactory.listAllServerIds(); + + PaygDimensionComputation result = new PaygDimensionComputation(); + + TimeUtils.logTime(LOGGER, "Computing all dimensions", () -> { + try { + configuration.forEachDimension((dimension, rules) -> { + LOGGER.info("Computing dimension {} with the following rules\n{} ", dimension, formatRules(rules)); + + long count = calculator.computeDimension(allServerIds, rules); + result.addDimensionResult(dimension, count); + LOGGER.info("Computation completed for dimension {}. Total count {}.", count, dimension); + }); + + result.setSuccess(true); + } + catch (Exception ex) { + LOGGER.error("Unexpected exception while computing dimensions", ex); + + result.clearDimensions(); + result.setSuccess(false); + } + }); + + try { + dimensionFactory.save(result); + } + catch (RuntimeException ex) { + LOGGER.error("Unable to store computation result", ex); + } + + long duration = ChronoUnit.SECONDS.between(startTime, Instant.now()); + LOGGER.info("PAYG Dimension Computation completed. Process took {} seconds.", duration); + } + + private String getConfigurationKey(String key) { + return "taskomatic." + getConfigNamespace() + "." + key; + } + + private static String formatRules(List rules) { + return IntStream.range(0, rules.size()) + .mapToObj(idx -> String.format("#%d: %s", idx, rules.get(idx).toString())) + .collect(Collectors.joining("\n")); + } +} diff --git a/java/code/src/com/redhat/rhn/taskomatic/task/payg/PaygUpdateAuthTask.java b/java/code/src/com/redhat/rhn/taskomatic/task/payg/PaygUpdateAuthTask.java index ef8624e62036..83c221fb9edf 100644 --- a/java/code/src/com/redhat/rhn/taskomatic/task/payg/PaygUpdateAuthTask.java +++ b/java/code/src/com/redhat/rhn/taskomatic/task/payg/PaygUpdateAuthTask.java @@ -15,21 +15,24 @@ package com.redhat.rhn.taskomatic.task.payg; +import com.redhat.rhn.GlobalInstanceHolder; import com.redhat.rhn.common.hibernate.HibernateFactory; -import com.redhat.rhn.common.localization.LocalizationService; +import com.redhat.rhn.common.hibernate.LookupException; import com.redhat.rhn.domain.cloudpayg.PaygSshData; import com.redhat.rhn.domain.cloudpayg.PaygSshDataFactory; import com.redhat.rhn.domain.notification.NotificationMessage; import com.redhat.rhn.domain.notification.UserNotificationFactory; import com.redhat.rhn.domain.notification.types.PaygAuthenticationUpdateFailed; import com.redhat.rhn.domain.role.RoleFactory; +import com.redhat.rhn.taskomatic.TaskomaticApi; import com.redhat.rhn.taskomatic.task.RhnJavaJob; import com.redhat.rhn.taskomatic.task.payg.beans.PaygInstanceInfo; +import com.suse.cloud.CloudPaygManager; +import com.suse.manager.admin.PaygAdminManager; + import com.jcraft.jsch.JSchException; -import org.apache.logging.log4j.LogManager; -import org.apache.logging.log4j.Logger; import org.quartz.JobExecutionContext; import java.util.Collections; @@ -40,7 +43,7 @@ public class PaygUpdateAuthTask extends RhnJavaJob { private final PaygAuthDataProcessor paygDataProcessor = new PaygAuthDataProcessor(); private PaygAuthDataExtractor paygDataExtractor = new PaygAuthDataExtractor(); - private static final Logger LOG = LogManager.getLogger(PaygUpdateAuthTask.class); + private CloudPaygManager cloudPaygManager = GlobalInstanceHolder.PAYG_MANAGER; private static final String KEY_ID = "sshData_id"; @@ -49,9 +52,35 @@ public String getConfigNamespace() { return "payg"; } + private void manageLocalHostPayg() { + if (cloudPaygManager.isPaygInstance()) { + if (PaygSshDataFactory.lookupByHostname("localhost").isEmpty()) { + PaygSshData paygSshData = PaygSshDataFactory.createPaygSshData(); + paygSshData.setHost("localhost"); + paygSshData.setDescription("SUSE Manager PAYG"); + paygSshData.setUsername("root"); + PaygSshDataFactory.savePaygSshData(paygSshData); + HibernateFactory.getSession().flush(); + HibernateFactory.commitTransaction(); + } + } + else { + try { + PaygAdminManager pam = new PaygAdminManager(new TaskomaticApi()); + pam.delete("localhost"); + } + catch (LookupException e) { + log.debug("No localhost PAYG instance found, noting to delete"); + } + } + } + @Override public void execute(JobExecutionContext jobExecutionContext) { log.debug("Running PaygUpdateAuthTask"); + + manageLocalHostPayg(); + if (jobExecutionContext != null && jobExecutionContext.getJobDetail().getJobDataMap().containsKey(KEY_ID)) { Optional paygData = PaygSshDataFactory.lookupById( Integer.parseInt((String) jobExecutionContext.getJobDetail().getJobDataMap().get(KEY_ID))); @@ -71,11 +100,17 @@ public void setPaygDataExtractor(PaygAuthDataExtractor paygDataExtractorIn) { this.paygDataExtractor = paygDataExtractorIn; } + /** + * Need for automatic tests + * @param mgrIn + */ + public void setCloudPaygManager(CloudPaygManager mgrIn) { + cloudPaygManager = mgrIn; + } + private void updateInstanceData(PaygSshData instance) { - PaygInstanceInfo paygData; - LocalizationService ls = LocalizationService.getInstance(); try { - paygData = paygDataExtractor.extractAuthData(instance); + PaygInstanceInfo paygData = paygDataExtractor.extractAuthData(instance); paygDataProcessor.processPaygInstanceData(instance, paygData); instance.setStatus(PaygSshData.Status.S); instance.setErrorMessage(""); @@ -83,12 +118,12 @@ private void updateInstanceData(PaygSshData instance) { } catch (PaygDataExtractException | JSchException e) { - LOG.error("error getting instance data ", e); + log.error("error getting instance data ", e); saveError(instance, e.getMessage()); } catch (Exception e) { - LOG.error("error processing instance data", e); + log.error("error processing instance data", e); // Error message will be empty because we don't want to show this error on UI saveError(instance, ""); } @@ -108,6 +143,11 @@ private void saveError(PaygSshData instance, String errorMessage) { UserNotificationFactory.storeNotificationMessageFor(notificationMessage, Collections.singleton(RoleFactory.CHANNEL_ADMIN), Optional.empty()); } + else { + // was in error state before. At least second time failed to get the data + // invalidate existing credentials + paygDataProcessor.invalidateCredentials(instance); + } instance.setStatus(PaygSshData.Status.E); instance.setErrorMessage(errorMessage); PaygSshDataFactory.savePaygSshData(instance); diff --git a/java/code/src/com/redhat/rhn/taskomatic/task/payg/beans/PaygInstanceInfo.java b/java/code/src/com/redhat/rhn/taskomatic/task/payg/beans/PaygInstanceInfo.java index bf20bde82f49..54186fc8984f 100644 --- a/java/code/src/com/redhat/rhn/taskomatic/task/payg/beans/PaygInstanceInfo.java +++ b/java/code/src/com/redhat/rhn/taskomatic/task/payg/beans/PaygInstanceInfo.java @@ -24,28 +24,77 @@ * Class representing the payg information retrieved from the instance by the python script */ public class PaygInstanceInfo { + private String type; private List products; @SerializedName("basic_auth") private Map basicAuth; - @SerializedName("header_auth") - private String headerAuth; @SerializedName("rmt_host") private Map rmtHost; + @SerializedName("header_auth") + private Map headerAuth; + private Map> repositories; + @SerializedName("certs") + private Map certificates; + + /** + * Constructor for type CLOUDRMT + * @param productsIn + * @param basicAuthIn + * @param headerAuthIn + * @param rmtHostIn + */ + public PaygInstanceInfo(List productsIn, Map basicAuthIn, + Map headerAuthIn, Map rmtHostIn) { + this.type = "CLOUDRMT"; + this.products = productsIn; + this.basicAuth = basicAuthIn; + this.headerAuth = headerAuthIn; + this.rmtHost = rmtHostIn; + } + + /** + * Constructor for type RHUI + * @param headerAuthIn + * @param certificatesIn + * @param repositoriesIn + */ + public PaygInstanceInfo(Map headerAuthIn, Map certificatesIn, + Map> repositoriesIn) { + this.type = "RHUI"; + this.headerAuth = headerAuthIn; + this.certificates = certificatesIn; + this.repositories = repositoriesIn; + } /** - * Constructor with all parameters + * Constructor for all types + * @param typeIn * @param productsIn * @param basicAuthIn * @param headerAuthIn * @param rmtHostIn + * @param certificatesIn + * @param repositoriesIn */ - public PaygInstanceInfo(List productsIn, + public PaygInstanceInfo(String typeIn, List productsIn, Map basicAuthIn, - String headerAuthIn, Map rmtHostIn) { + Map headerAuthIn, Map rmtHostIn, + Map certificatesIn, Map> repositoriesIn) { + this.type = typeIn; this.products = productsIn; this.basicAuth = basicAuthIn; this.headerAuth = headerAuthIn; this.rmtHost = rmtHostIn; + this.certificates = certificatesIn; + this.repositories = repositoriesIn; + } + + public String getType() { + return type; + } + + public void setType(String typeIn) { + type = typeIn; } public List getProducts() { @@ -64,11 +113,11 @@ public void setBasicAuth(Map basicAuthIn) { this.basicAuth = basicAuthIn; } - public String getHeaderAuth() { + public Map getHeaderAuth() { return headerAuth; } - public void setHeaderAuth(String headerAuthIn) { + public void setHeaderAuth(Map headerAuthIn) { this.headerAuth = headerAuthIn; } @@ -79,4 +128,20 @@ public Map getRmtHost() { public void setRmtHost(Map rmtHostIn) { this.rmtHost = rmtHostIn; } + + public Map> getRepositories() { + return repositories; + } + + public void setRepositories(Map> repositoriesIn) { + repositories = repositoriesIn; + } + + public Map getCertificates() { + return certificates; + } + + public void setCertificates(Map certificatesIn) { + certificates = certificatesIn; + } } diff --git a/java/code/src/com/redhat/rhn/taskomatic/task/payg/dimensions/DimensionCalculator.java b/java/code/src/com/redhat/rhn/taskomatic/task/payg/dimensions/DimensionCalculator.java new file mode 100644 index 000000000000..e01fa2504bb3 --- /dev/null +++ b/java/code/src/com/redhat/rhn/taskomatic/task/payg/dimensions/DimensionCalculator.java @@ -0,0 +1,90 @@ +/* + * Copyright (c) 2023 SUSE LLC + * + * This software is licensed to you under the GNU General Public License, + * version 2 (GPLv2). There is NO WARRANTY for this software, express or + * implied, including the implied warranties of MERCHANTABILITY or FITNESS + * FOR A PARTICULAR PURPOSE. You should have received a copy of GPLv2 + * along with this software; if not, see + * http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt. + * + * Red Hat trademarks are not licensed under GPLv2. No permission is + * granted to use or replicate Red Hat trademarks that are incorporated + * in this software or its documentation. + */ + +package com.redhat.rhn.taskomatic.task.payg.dimensions; + +import com.redhat.rhn.common.hibernate.HibernateFactory; +import com.redhat.rhn.domain.server.Server; +import com.redhat.rhn.domain.server.ServerFactory; + +import org.apache.commons.collections.CollectionUtils; +import org.apache.logging.log4j.LogManager; +import org.apache.logging.log4j.Logger; + +import java.util.List; +import java.util.stream.IntStream; + +/** + * Class that handles the computation logic for a dimension and a rule list + */ +public class DimensionCalculator { + + private static final Logger LOGGER = LogManager.getLogger(DimensionCalculator.class); + + private final int batchSize; + + /** + * Default constructor + * @param batchSizeIn the number of server to process at a time + */ + public DimensionCalculator(int batchSizeIn) { + this.batchSize = Math.min(batchSizeIn, HibernateFactory.LIST_BATCH_MAX_SIZE); + } + + /** + * Compute a dimension with the specified list of rules. The rules will be applied in the given order. + * + * @param serverIds the list of ids of the servers to process + * @param rulesList the list of rules used to compute this dimension + * + * @return the number of server that satisfy all the given rules. + */ + public long computeDimension(List serverIds, List rulesList) { + if (CollectionUtils.isEmpty(serverIds)) { + return 0L; + } + + return IntStream.iterate(0, i -> i < serverIds.size(), i -> i + batchSize) + // Split the ids in batches + .mapToObj(i -> serverIds.subList(i, Math.min(i + batchSize, serverIds.size()))) + // Read all the servers in the batch from the database + .map(ids -> ServerFactory.lookupByIds(ids)) + // Count the servers in this batch + .map(servers -> servers.stream() + // Take only the server that are included by all the rules + .filter(server -> applyRules(server, rulesList)) + // Count how many servers we still have + .count()) + // Aggregate the results for all the batches + .reduce(0L, Long::sum); + } + + /** + * Applies all the rules sequentially + * @param server the server to check + * @param rulesList the list of rules + * @return true if all the rules includes the server, false otherwise. + */ + private static boolean applyRules(Server server, List rulesList) { + for (int i = 0; i < rulesList.size(); i++) { + if (!rulesList.get(i).includes(server)) { + LOGGER.info("Server {} is excluded by rule #{}", server.getId(), i); + return false; + } + } + + return true; + } +} diff --git a/java/code/src/com/redhat/rhn/taskomatic/task/payg/dimensions/DimensionRule.java b/java/code/src/com/redhat/rhn/taskomatic/task/payg/dimensions/DimensionRule.java new file mode 100644 index 000000000000..f65711115da0 --- /dev/null +++ b/java/code/src/com/redhat/rhn/taskomatic/task/payg/dimensions/DimensionRule.java @@ -0,0 +1,80 @@ +/* + * Copyright (c) 2023 SUSE LLC + * + * This software is licensed to you under the GNU General Public License, + * version 2 (GPLv2). There is NO WARRANTY for this software, express or + * implied, including the implied warranties of MERCHANTABILITY or FITNESS + * FOR A PARTICULAR PURPOSE. You should have received a copy of GPLv2 + * along with this software; if not, see + * http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt. + * + * Red Hat trademarks are not licensed under GPLv2. No permission is + * granted to use or replicate Red Hat trademarks that are incorporated + * in this software or its documentation. + */ + +package com.redhat.rhn.taskomatic.task.payg.dimensions; + +import com.redhat.rhn.domain.server.Server; + +public interface DimensionRule { + + /** + * Apply this rule to the given server. + * @param server the server to test + * @return true if the test is successful. + */ + boolean test(Server server); + + /** + * Define the type of rule, incluse or exclusive + * @return the rule type + */ + RuleType getRuleType(); + + /** + * Invert this rule. + * @return an inverted version of this rule + */ + default DimensionRule invert() { + + final DimensionRule rule = this; + return new DimensionRule() { + @Override + public boolean test(Server server) { + return !rule.test(server); + } + + @Override + public RuleType getRuleType() { + return rule.getRuleType() == RuleType.INCLUDE ? RuleType.EXCLUDE : RuleType.INCLUDE; + } + }; + } + + /** + * Check if the specified server is included by this rule + * @param server the server to check + * @return true if this rule is inclusive and the test passes or if it's exclusive and fails. + */ + default boolean includes(Server server) { + if (getRuleType() == RuleType.EXCLUDE) { + return invert().test(server); + } + + return test(server); + } + + /** + * Check if the specified server is excluded by this rule + * @param server the server to check + * @return true if this rule is exclusive and the test passes or it's inclusive and fails. + */ + default boolean excludes(Server server) { + if (getRuleType() == RuleType.INCLUDE) { + return invert().test(server); + } + + return test(server); + } +} diff --git a/java/code/src/com/redhat/rhn/taskomatic/task/payg/dimensions/DimensionsConfiguration.java b/java/code/src/com/redhat/rhn/taskomatic/task/payg/dimensions/DimensionsConfiguration.java new file mode 100644 index 000000000000..9d190347b8a4 --- /dev/null +++ b/java/code/src/com/redhat/rhn/taskomatic/task/payg/dimensions/DimensionsConfiguration.java @@ -0,0 +1,81 @@ +/* + * Copyright (c) 2023 SUSE LLC + * + * This software is licensed to you under the GNU General Public License, + * version 2 (GPLv2). There is NO WARRANTY for this software, express or + * implied, including the implied warranties of MERCHANTABILITY or FITNESS + * FOR A PARTICULAR PURPOSE. You should have received a copy of GPLv2 + * along with this software; if not, see + * http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt. + * + * Red Hat trademarks are not licensed under GPLv2. No permission is + * granted to use or replicate Red Hat trademarks that are incorporated + * in this software or its documentation. + */ + +package com.redhat.rhn.taskomatic.task.payg.dimensions; + +import com.redhat.rhn.manager.entitlement.EntitlementManager; +import com.redhat.rhn.taskomatic.task.payg.dimensions.rules.BaseProductRule; +import com.redhat.rhn.taskomatic.task.payg.dimensions.rules.EntitlementRule; +import com.redhat.rhn.taskomatic.task.payg.dimensions.rules.RequirementType; +import com.redhat.rhn.taskomatic.task.payg.dimensions.rules.SUSEManagerToolsRule; + +import com.suse.cloud.domain.BillingDimension; + +import java.util.Collections; +import java.util.List; +import java.util.Map; +import java.util.Set; +import java.util.function.BiConsumer; + +/** + * Configuration for the PAYG dimension computation + */ +public class DimensionsConfiguration { + + private final Map> configurationMap; + + /** + * Default PAYG configuration. Used by the {@link com.redhat.rhn.taskomatic.task.payg.PaygComputeDimensionsTask} + */ + public static final DimensionsConfiguration DEFAULT_CONFIGURATION = new DimensionsConfiguration( + Map.of( + BillingDimension.MANAGED_SYSTEMS, List.of( + new EntitlementRule(RuleType.INCLUDE, RequirementType.ANY, + Set.of(EntitlementManager.SALT, EntitlementManager.MANAGEMENT)), + new BaseProductRule(RuleType.EXCLUDE, Set.of("sles_sap"), true), + new SUSEManagerToolsRule() + ), + + BillingDimension.MONITORING, List.of( + new EntitlementRule(RuleType.INCLUDE, RequirementType.ANY, Set.of(EntitlementManager.MONITORING)) + ) + ) + ); + + private DimensionsConfiguration(Map> configurationMapIn) { + this.configurationMap = configurationMapIn; + } + + public Set getDimensions() { + return Collections.unmodifiableSet(configurationMap.keySet()); + } + + /** + * Retrieves the rule configured for the given dimension + * @param dimension the dimension to retrieve + * @return a list of rules, or an empty list if the requested dimension is not configured + */ + public List getRulesForDimension(BillingDimension dimension) { + return Collections.unmodifiableList(configurationMap.getOrDefault(dimension, Collections.emptyList())); + } + + /** + * Executes the given operation for each configured dimensions. + * @param consumer a consumer that receives the dimensions and the list of rules + */ + public void forEachDimension(BiConsumer> consumer) { + configurationMap.forEach(consumer); + } +} diff --git a/java/code/src/com/redhat/rhn/taskomatic/task/payg/dimensions/RuleType.java b/java/code/src/com/redhat/rhn/taskomatic/task/payg/dimensions/RuleType.java new file mode 100644 index 000000000000..ffbb150e7a9e --- /dev/null +++ b/java/code/src/com/redhat/rhn/taskomatic/task/payg/dimensions/RuleType.java @@ -0,0 +1,21 @@ +/* + * Copyright (c) 2023 SUSE LLC + * + * This software is licensed to you under the GNU General Public License, + * version 2 (GPLv2). There is NO WARRANTY for this software, express or + * implied, including the implied warranties of MERCHANTABILITY or FITNESS + * FOR A PARTICULAR PURPOSE. You should have received a copy of GPLv2 + * along with this software; if not, see + * http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt. + * + * Red Hat trademarks are not licensed under GPLv2. No permission is + * granted to use or replicate Red Hat trademarks that are incorporated + * in this software or its documentation. + */ + +package com.redhat.rhn.taskomatic.task.payg.dimensions; + +public enum RuleType { + INCLUDE, + EXCLUDE, +} diff --git a/java/code/src/com/redhat/rhn/taskomatic/task/payg/dimensions/rules/AddonProductRule.java b/java/code/src/com/redhat/rhn/taskomatic/task/payg/dimensions/rules/AddonProductRule.java new file mode 100644 index 000000000000..132ba189fd28 --- /dev/null +++ b/java/code/src/com/redhat/rhn/taskomatic/task/payg/dimensions/rules/AddonProductRule.java @@ -0,0 +1,83 @@ +/* + * Copyright (c) 2023 SUSE LLC + * + * This software is licensed to you under the GNU General Public License, + * version 2 (GPLv2). There is NO WARRANTY for this software, express or + * implied, including the implied warranties of MERCHANTABILITY or FITNESS + * FOR A PARTICULAR PURPOSE. You should have received a copy of GPLv2 + * along with this software; if not, see + * http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt. + * + * Red Hat trademarks are not licensed under GPLv2. No permission is + * granted to use or replicate Red Hat trademarks that are incorporated + * in this software or its documentation. + */ + +package com.redhat.rhn.taskomatic.task.payg.dimensions.rules; + +import com.redhat.rhn.domain.product.SUSEProduct; +import com.redhat.rhn.domain.server.Server; +import com.redhat.rhn.taskomatic.task.payg.dimensions.DimensionRule; +import com.redhat.rhn.taskomatic.task.payg.dimensions.RuleType; + +import java.util.Set; +import java.util.stream.Collectors; + +/** + * Rule that checks if the given server has any of or all the specified addon products installed. + */ +public class AddonProductRule implements DimensionRule { + + private final RuleType ruleType; + + private final RequirementType requirementType; + + private final Set addonProducts; + + /** + * Default constructor + * + * @param ruleTypeIn The type of rule + * @param requirementTypeIn specifies how to match the entitlement to the server:
+ *
    + *
  • ANY: The server must have at least one of the specified entitlements
  • + *
  • ALL: The server must have all the given entitlements
  • + *
@param addonProductsIn + * @param addonProductsIn the set of products + */ + public AddonProductRule(RuleType ruleTypeIn, RequirementType requirementTypeIn, Set addonProductsIn) { + this.ruleType = ruleTypeIn; + this.requirementType = requirementTypeIn; + this.addonProducts = addonProductsIn; + } + + @Override + public boolean test(Server server) { + Set serverAddonProducts = server.getInstalledProductSet() + .stream() + .flatMap(suseProductSet -> suseProductSet.getAddonProducts().stream()) + .map(SUSEProduct::getName) + .collect(Collectors.toSet()); + switch (requirementType) { + case ANY: + return addonProducts.stream().anyMatch(e -> serverAddonProducts.contains(e)); + + case ALL: + return serverAddonProducts.containsAll(addonProducts); + + default: + throw new IllegalStateException("Unexpected requirement type: " + requirementType); + } + } + + @Override + public RuleType getRuleType() { + return ruleType; + } + + @Override + public String toString() { + return String.format("AddonProductRule: %s if server has %s of the addons [%s]", ruleType, requirementType, + String.join(", ", addonProducts)); + } +} diff --git a/java/code/src/com/redhat/rhn/taskomatic/task/payg/dimensions/rules/BaseProductRule.java b/java/code/src/com/redhat/rhn/taskomatic/task/payg/dimensions/rules/BaseProductRule.java new file mode 100644 index 000000000000..dc03a62b95ec --- /dev/null +++ b/java/code/src/com/redhat/rhn/taskomatic/task/payg/dimensions/rules/BaseProductRule.java @@ -0,0 +1,68 @@ +/* + * Copyright (c) 2023 SUSE LLC + * + * This software is licensed to you under the GNU General Public License, + * version 2 (GPLv2). There is NO WARRANTY for this software, express or + * implied, including the implied warranties of MERCHANTABILITY or FITNESS + * FOR A PARTICULAR PURPOSE. You should have received a copy of GPLv2 + * along with this software; if not, see + * http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt. + * + * Red Hat trademarks are not licensed under GPLv2. No permission is + * granted to use or replicate Red Hat trademarks that are incorporated + * in this software or its documentation. + */ + +package com.redhat.rhn.taskomatic.task.payg.dimensions.rules; + +import com.redhat.rhn.domain.server.Server; +import com.redhat.rhn.taskomatic.task.payg.dimensions.DimensionRule; +import com.redhat.rhn.taskomatic.task.payg.dimensions.RuleType; + +import java.util.Set; + +/** + * Rule to check the installed base product + */ +public class BaseProductRule implements DimensionRule { + + private final RuleType ruleType; + + private final Set baseProducts; + + private final boolean onlyPaygServers; + + /** + * Build a new entitlement rule + * @param ruleTypeIn The type of rule + * @param baseProductsIn the set of products + * @param onlyPaygServerIn consider only payg servers + */ + public BaseProductRule(RuleType ruleTypeIn, Set baseProductsIn, boolean onlyPaygServerIn) { + this.ruleType = ruleTypeIn; + this.baseProducts = baseProductsIn; + this.onlyPaygServers = onlyPaygServerIn; + } + + @Override + public boolean test(Server server) { + if (onlyPaygServers && !server.isPayg()) { + return false; + } + + return server.getInstalledProductSet() + .filter(suseProductSet -> baseProducts.contains(suseProductSet.getBaseProduct().getName())) + .isPresent(); + } + + @Override + public RuleType getRuleType() { + return ruleType; + } + + @Override + public String toString() { + return String.format("BaseProductRule: %s if server base product is any of [%s]", ruleType, + String.join(", ", baseProducts)); + } +} diff --git a/java/code/src/com/redhat/rhn/taskomatic/task/payg/dimensions/rules/EntitlementRule.java b/java/code/src/com/redhat/rhn/taskomatic/task/payg/dimensions/rules/EntitlementRule.java new file mode 100644 index 000000000000..833a0095ee81 --- /dev/null +++ b/java/code/src/com/redhat/rhn/taskomatic/task/payg/dimensions/rules/EntitlementRule.java @@ -0,0 +1,81 @@ +/* + * Copyright (c) 2023 SUSE LLC + * + * This software is licensed to you under the GNU General Public License, + * version 2 (GPLv2). There is NO WARRANTY for this software, express or + * implied, including the implied warranties of MERCHANTABILITY or FITNESS + * FOR A PARTICULAR PURPOSE. You should have received a copy of GPLv2 + * along with this software; if not, see + * http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt. + * + * Red Hat trademarks are not licensed under GPLv2. No permission is + * granted to use or replicate Red Hat trademarks that are incorporated + * in this software or its documentation. + */ + +package com.redhat.rhn.taskomatic.task.payg.dimensions.rules; + +import com.redhat.rhn.domain.entitlement.Entitlement; +import com.redhat.rhn.domain.server.Server; +import com.redhat.rhn.taskomatic.task.payg.dimensions.DimensionRule; +import com.redhat.rhn.taskomatic.task.payg.dimensions.RuleType; + +import java.util.Set; +import java.util.stream.Collectors; + +/** + * Rule that checks if the given server has any of or all the specified entitlement + */ +public class EntitlementRule implements DimensionRule { + + private final RuleType ruleType; + + private final RequirementType requirementType; + + private final Set entitlements; + + /** + * Build a new entitlement rule + * @param ruleTypeIn The type of rule + * @param requirementTypeIn specifies how to match the entitlement to the server:
+ *
    + *
  • ANY: The server must have at least one of the specified entitlements
  • + *
  • ALL: The server must have all the given entitlements
  • + *
+ * @param entitlementsIn the set of entitlements + */ + public EntitlementRule(RuleType ruleTypeIn, RequirementType requirementTypeIn, Set entitlementsIn) { + this.ruleType = ruleTypeIn; + this.requirementType = requirementTypeIn; + this.entitlements = entitlementsIn; + } + + @Override + public boolean test(Server server) { + Set serverEntitlements = server.getEntitlements(); + + switch (requirementType) { + case ANY: + return entitlements.stream().anyMatch(e -> serverEntitlements.contains(e)); + + case ALL: + return serverEntitlements.containsAll(entitlements); + + default: + throw new IllegalStateException("Unexpected requirement type: " + requirementType); + } + } + + @Override + public RuleType getRuleType() { + return ruleType; + } + + @Override + public String toString() { + return String.format("EntitlementRule: %s if server has %s of [%s]", ruleType, requirementType, + entitlements.stream() + .map(e -> e.getHumanReadableLabel()) + .collect(Collectors.joining(", "))); + } +} diff --git a/java/code/src/com/redhat/rhn/taskomatic/task/payg/dimensions/rules/RequirementType.java b/java/code/src/com/redhat/rhn/taskomatic/task/payg/dimensions/rules/RequirementType.java new file mode 100644 index 000000000000..e539376de91c --- /dev/null +++ b/java/code/src/com/redhat/rhn/taskomatic/task/payg/dimensions/rules/RequirementType.java @@ -0,0 +1,21 @@ +/* + * Copyright (c) 2023 SUSE LLC + * + * This software is licensed to you under the GNU General Public License, + * version 2 (GPLv2). There is NO WARRANTY for this software, express or + * implied, including the implied warranties of MERCHANTABILITY or FITNESS + * FOR A PARTICULAR PURPOSE. You should have received a copy of GPLv2 + * along with this software; if not, see + * http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt. + * + * Red Hat trademarks are not licensed under GPLv2. No permission is + * granted to use or replicate Red Hat trademarks that are incorporated + * in this software or its documentation. + */ + +package com.redhat.rhn.taskomatic.task.payg.dimensions.rules; + +public enum RequirementType { + ANY, + ALL +} diff --git a/java/code/src/com/redhat/rhn/taskomatic/task/payg/dimensions/rules/SUSEManagerToolsRule.java b/java/code/src/com/redhat/rhn/taskomatic/task/payg/dimensions/rules/SUSEManagerToolsRule.java new file mode 100644 index 000000000000..bd8b59c4db1b --- /dev/null +++ b/java/code/src/com/redhat/rhn/taskomatic/task/payg/dimensions/rules/SUSEManagerToolsRule.java @@ -0,0 +1,76 @@ +/* + * Copyright (c) 2023 SUSE LLC + * + * This software is licensed to you under the GNU General Public License, + * version 2 (GPLv2). There is NO WARRANTY for this software, express or + * implied, including the implied warranties of MERCHANTABILITY or FITNESS + * FOR A PARTICULAR PURPOSE. You should have received a copy of GPLv2 + * along with this software; if not, see + * http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt. + * + * Red Hat trademarks are not licensed under GPLv2. No permission is + * granted to use or replicate Red Hat trademarks that are incorporated + * in this software or its documentation. + */ + +package com.redhat.rhn.taskomatic.task.payg.dimensions.rules; + +import com.redhat.rhn.domain.channel.ChannelFamilyFactory; +import com.redhat.rhn.domain.product.SUSEProductSet; +import com.redhat.rhn.domain.server.Server; +import com.redhat.rhn.taskomatic.task.payg.dimensions.DimensionRule; +import com.redhat.rhn.taskomatic.task.payg.dimensions.RuleType; + +import java.util.Objects; +import java.util.stream.Stream; + +/** + * A rule to filter server that use the SUSE Manager tools + */ +public class SUSEManagerToolsRule implements DimensionRule { + + public static final String VERSION_12_REGEX = "12(\\.[1-9]*)?"; + public static final String SLE_PRODUCT_FAMILY = "sle"; + + @Override + public boolean test(Server server) { + // If the SUSE Manager tools are part of the base we count it + if (areToolsPartOfBaseProduct(server)) { + return true; + } + + // Match the Manager Tools family among the products or the subscribed channels + return Stream.concat( + // Extract the families the installed products + server.getInstalledProducts().stream().map(prd -> prd.getSUSEProduct().getChannelFamily()), + // Extract the families from the subscribed channels + server.getChannels().stream().flatMap(ch -> ch.getChannelFamilies().stream()) + ) + .filter(Objects::nonNull) + .anyMatch(family -> ChannelFamilyFactory.TOOLS_CHANNEL_FAMILY_LABEL.equals(family.getLabel())); + } + + @Override + public RuleType getRuleType() { + return RuleType.INCLUDE; + } + + /** + * Returns true if this server has a base product that includes already SUSE Manager tools. This is a special + * case for all SLE 12 products. + * @param server the server to check + * @return true if the SUSE Manager tools are included in the base product, false otherwise. + */ + private static boolean areToolsPartOfBaseProduct(Server server) { + return server.getInstalledProductSet() + .map(SUSEProductSet::getBaseProduct) + .filter(product -> product.getName().startsWith(SLE_PRODUCT_FAMILY) && + product.getVersion().matches(VERSION_12_REGEX)) + .isPresent(); + } + + @Override + public String toString() { + return String.format("SUSEManagerToolsRule: %s if server has the SUSE Manager Tools", getRuleType()); + } +} diff --git a/java/code/src/com/redhat/rhn/taskomatic/task/payg/dimensions/rules/test/AddonProductRuleTest.java b/java/code/src/com/redhat/rhn/taskomatic/task/payg/dimensions/rules/test/AddonProductRuleTest.java new file mode 100644 index 000000000000..8bb5049beebe --- /dev/null +++ b/java/code/src/com/redhat/rhn/taskomatic/task/payg/dimensions/rules/test/AddonProductRuleTest.java @@ -0,0 +1,174 @@ +/* + * Copyright (c) 2023 SUSE LLC + * + * This software is licensed to you under the GNU General Public License, + * version 2 (GPLv2). There is NO WARRANTY for this software, express or + * implied, including the implied warranties of MERCHANTABILITY or FITNESS + * FOR A PARTICULAR PURPOSE. You should have received a copy of GPLv2 + * along with this software; if not, see + * http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt. + * + * Red Hat trademarks are not licensed under GPLv2. No permission is + * granted to use or replicate Red Hat trademarks that are incorporated + * in this software or its documentation. + */ + +package com.redhat.rhn.taskomatic.task.payg.dimensions.rules.test; + +import static org.jmock.AbstractExpectations.returnValue; +import static org.junit.jupiter.api.Assertions.assertFalse; +import static org.junit.jupiter.api.Assertions.assertTrue; + +import com.redhat.rhn.domain.product.SUSEProduct; +import com.redhat.rhn.domain.product.SUSEProductSet; +import com.redhat.rhn.domain.server.Server; +import com.redhat.rhn.taskomatic.task.payg.dimensions.DimensionRule; +import com.redhat.rhn.taskomatic.task.payg.dimensions.RuleType; +import com.redhat.rhn.taskomatic.task.payg.dimensions.rules.AddonProductRule; +import com.redhat.rhn.taskomatic.task.payg.dimensions.rules.RequirementType; +import com.redhat.rhn.testing.RhnJmockBaseTestCase; + +import org.jmock.imposters.ByteBuddyClassImposteriser; +import org.junit.jupiter.api.BeforeEach; +import org.junit.jupiter.api.Test; + +import java.util.List; +import java.util.Optional; +import java.util.Set; + +public class AddonProductRuleTest extends RhnJmockBaseTestCase { + + @BeforeEach + public void setup() { + setImposteriser(ByteBuddyClassImposteriser.INSTANCE); + } + + @Test + public void canExcludeWithAnAllRequirement() { + SUSEProductSet productSet = mock(SUSEProductSet.class); + Server server = mock(Server.class); + + checking(expectations -> { + // mock a server with the following addons + expectations.allowing(productSet).getAddonProducts(); + expectations.will(returnValue(List.of( + new SUSEProduct("sle-module-server-applications"), + new SUSEProduct("sle-module-containers") + ))); + + expectations.allowing(server).isPayg(); + expectations.will(returnValue(true)); + + expectations.allowing(server).getInstalledProductSet(); + expectations.will(returnValue(Optional.of(productSet))); + }); + + // Create a rule that requires ALL the following addons + DimensionRule rule = new AddonProductRule(RuleType.INCLUDE, RequirementType.ALL, Set.of( + "sle-module-containers", + "sle-module-web-scripting", + "sle-module-development-tools" + )); + + // Server must not be included by the rule + assertFalse(rule.includes(server)); + assertTrue(rule.excludes(server)); + } + + @Test + public void canIncludeWithAnAllRequirement() { + SUSEProductSet productSet = mock(SUSEProductSet.class); + Server server = mock(Server.class); + + checking(expectations -> { + // mock a server with the following addons + expectations.allowing(productSet).getAddonProducts(); + expectations.will(returnValue(List.of( + new SUSEProduct("sle-module-server-applications"), + new SUSEProduct("sle-module-containers"), + new SUSEProduct("sle-module-web-scripting"), + new SUSEProduct("sle-module-development-tools") + ))); + + expectations.allowing(server).isPayg(); + expectations.will(returnValue(true)); + + expectations.allowing(server).getInstalledProductSet(); + expectations.will(returnValue(Optional.of(productSet))); + }); + + // Create a rule that requires ALL the following addons + DimensionRule rule = new AddonProductRule(RuleType.INCLUDE, RequirementType.ALL, Set.of( + "sle-module-containers", + "sle-module-web-scripting", + "sle-module-development-tools" + )); + + // Server must be included by the rule + assertTrue(rule.includes(server)); + assertFalse(rule.excludes(server)); + } + + @Test + public void canIncludeWithAnAnyRequirement() { + SUSEProductSet productSet = mock(SUSEProductSet.class); + Server server = mock(Server.class); + + checking(expectations -> { + // mock a server with the following addons: sle-module-server-applications, sle-module-containers + expectations.allowing(productSet).getAddonProducts(); + expectations.will(returnValue(List.of( + new SUSEProduct("sle-module-server-applications"), + new SUSEProduct("sle-module-containers") + ))); + + expectations.allowing(server).isPayg(); + expectations.will(returnValue(true)); + + expectations.allowing(server).getInstalledProductSet(); + expectations.will(returnValue(Optional.of(productSet))); + }); + + // Create a rule that requires ALL the following addons + DimensionRule rule = new AddonProductRule(RuleType.INCLUDE, RequirementType.ANY, Set.of( + "sle-module-containers", + "sle-module-web-scripting", + "sle-module-development-tools" + )); + + // Server must not be included by the rule + assertTrue(rule.includes(server)); + assertFalse(rule.excludes(server)); + } + + @Test + public void canExcludeWithAnAnyRequirement() { + SUSEProductSet productSet = mock(SUSEProductSet.class); + Server server = mock(Server.class); + + checking(expectations -> { + // mock a server with the following addons: sle-module-server-applications, sle-module-containers + expectations.allowing(productSet).getAddonProducts(); + expectations.will(returnValue(List.of( + new SUSEProduct("sle-module-server-applications") + ))); + + expectations.allowing(server).isPayg(); + expectations.will(returnValue(true)); + + expectations.allowing(server).getInstalledProductSet(); + expectations.will(returnValue(Optional.of(productSet))); + }); + + // Create a rule that requires ALL the following addons + DimensionRule rule = new AddonProductRule(RuleType.INCLUDE, RequirementType.ANY, Set.of( + "sle-module-containers", + "sle-module-web-scripting", + "sle-module-development-tools" + )); + + // Server must not be included by the rule + assertFalse(rule.includes(server)); + assertTrue(rule.excludes(server)); + } +} diff --git a/java/code/src/com/redhat/rhn/taskomatic/task/payg/dimensions/rules/test/BaseProductRuleTest.java b/java/code/src/com/redhat/rhn/taskomatic/task/payg/dimensions/rules/test/BaseProductRuleTest.java new file mode 100644 index 000000000000..97ff95a1cdb0 --- /dev/null +++ b/java/code/src/com/redhat/rhn/taskomatic/task/payg/dimensions/rules/test/BaseProductRuleTest.java @@ -0,0 +1,97 @@ +/* + * Copyright (c) 2023 SUSE LLC + * + * This software is licensed to you under the GNU General Public License, + * version 2 (GPLv2). There is NO WARRANTY for this software, express or + * implied, including the implied warranties of MERCHANTABILITY or FITNESS + * FOR A PARTICULAR PURPOSE. You should have received a copy of GPLv2 + * along with this software; if not, see + * http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt. + * + * Red Hat trademarks are not licensed under GPLv2. No permission is + * granted to use or replicate Red Hat trademarks that are incorporated + * in this software or its documentation. + */ + +package com.redhat.rhn.taskomatic.task.payg.dimensions.rules.test; + +import static com.redhat.rhn.common.util.Asserts.assertTrue; +import static org.jmock.AbstractExpectations.returnValue; + +import com.redhat.rhn.domain.product.SUSEProduct; +import com.redhat.rhn.domain.product.SUSEProductSet; +import com.redhat.rhn.domain.server.Server; +import com.redhat.rhn.taskomatic.task.payg.dimensions.DimensionRule; +import com.redhat.rhn.taskomatic.task.payg.dimensions.RuleType; +import com.redhat.rhn.taskomatic.task.payg.dimensions.rules.BaseProductRule; +import com.redhat.rhn.testing.RhnJmockBaseTestCase; + +import org.jmock.imposters.ByteBuddyClassImposteriser; +import org.junit.jupiter.api.BeforeEach; +import org.junit.jupiter.api.Test; + +import java.util.Collections; +import java.util.Optional; +import java.util.Set; + +public class BaseProductRuleTest extends RhnJmockBaseTestCase { + + @BeforeEach + public void setup() { + setImposteriser(ByteBuddyClassImposteriser.INSTANCE); + } + + @Test + public void canExcludePaygServerWithSlesForSap() { + SUSEProduct slesSAP = new SUSEProduct("sles_sap"); + Server server = mock(Server.class); + + checking(expectations -> { + expectations.allowing(server).isPayg(); + expectations.will(returnValue(true)); + + expectations.allowing(server).getInstalledProductSet(); + expectations.will(returnValue(Optional.of(new SUSEProductSet(slesSAP, Collections.emptyList())))); + }); + + DimensionRule rule = new BaseProductRule(RuleType.EXCLUDE, Set.of("sles_sap"), true); + + assertTrue(rule.excludes(server)); + } + + @Test + public void canIncludeIfServerIsNotPayg() { + SUSEProduct slesSAP = new SUSEProduct("sles_sap"); + Server server = mock(Server.class); + + checking(expectations -> { + expectations.allowing(server).isPayg(); + expectations.will(returnValue(false)); + + expectations.allowing(server).getInstalledProductSet(); + expectations.will(returnValue(Optional.of(new SUSEProductSet(slesSAP, Collections.emptyList())))); + }); + + DimensionRule rule = new BaseProductRule(RuleType.EXCLUDE, Set.of("sles_sap"), true); + + assertTrue(rule.includes(server)); + } + + @Test + public void canTestCorrectlyWithMultipleValue() { + SUSEProduct slesSAP = new SUSEProduct("suse-manager-server"); + Server server = mock(Server.class); + + checking(expectations -> { + expectations.allowing(server).isPayg(); + expectations.will(returnValue(true)); + + expectations.allowing(server).getInstalledProductSet(); + expectations.will(returnValue(Optional.of(new SUSEProductSet(slesSAP, Collections.emptyList())))); + }); + + DimensionRule rule = new BaseProductRule(RuleType.INCLUDE, Set.of("sles", "sles_sap", "sles_bcl"), true); + + assertTrue(rule.excludes(server)); + } +} diff --git a/java/code/src/com/redhat/rhn/taskomatic/task/payg/dimensions/rules/test/EntitlementRuleTest.java b/java/code/src/com/redhat/rhn/taskomatic/task/payg/dimensions/rules/test/EntitlementRuleTest.java new file mode 100644 index 000000000000..c151af6f0b34 --- /dev/null +++ b/java/code/src/com/redhat/rhn/taskomatic/task/payg/dimensions/rules/test/EntitlementRuleTest.java @@ -0,0 +1,142 @@ +/* + * Copyright (c) 2023 SUSE LLC + * + * This software is licensed to you under the GNU General Public License, + * version 2 (GPLv2). There is NO WARRANTY for this software, express or + * implied, including the implied warranties of MERCHANTABILITY or FITNESS + * FOR A PARTICULAR PURPOSE. You should have received a copy of GPLv2 + * along with this software; if not, see + * http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt. + * + * Red Hat trademarks are not licensed under GPLv2. No permission is + * granted to use or replicate Red Hat trademarks that are incorporated + * in this software or its documentation. + */ + +package com.redhat.rhn.taskomatic.task.payg.dimensions.rules.test; + +import static org.jmock.AbstractExpectations.returnValue; +import static org.junit.jupiter.api.Assertions.assertFalse; +import static org.junit.jupiter.api.Assertions.assertTrue; + +import com.redhat.rhn.domain.entitlement.ManagementEntitlement; +import com.redhat.rhn.domain.entitlement.MonitoringEntitlement; +import com.redhat.rhn.domain.entitlement.SaltEntitlement; +import com.redhat.rhn.domain.entitlement.VirtualizationEntitlement; +import com.redhat.rhn.domain.server.Server; +import com.redhat.rhn.taskomatic.task.payg.dimensions.DimensionRule; +import com.redhat.rhn.taskomatic.task.payg.dimensions.RuleType; +import com.redhat.rhn.taskomatic.task.payg.dimensions.rules.EntitlementRule; +import com.redhat.rhn.taskomatic.task.payg.dimensions.rules.RequirementType; +import com.redhat.rhn.testing.RhnJmockBaseTestCase; + +import org.jmock.imposters.ByteBuddyClassImposteriser; +import org.junit.jupiter.api.BeforeEach; +import org.junit.jupiter.api.Test; + +import java.util.Set; + +public class EntitlementRuleTest extends RhnJmockBaseTestCase { + + @BeforeEach + public void setup() { + setImposteriser(ByteBuddyClassImposteriser.INSTANCE); + } + + @Test + public void canExcludeWithAnAllRequirement() { + Server server = mock(Server.class); + + checking(expectations -> { + // mock a server with the following entitlements + expectations.allowing(server).getEntitlements(); + expectations.will(returnValue(Set.of( + new SaltEntitlement(), + new MonitoringEntitlement()) + )); + }); + + // Create a rule that requires ALL the following addons + DimensionRule rule = new EntitlementRule(RuleType.INCLUDE, RequirementType.ALL, Set.of( + new SaltEntitlement(), + new VirtualizationEntitlement() + )); + + // Server must not be included by the rule + assertFalse(rule.includes(server)); + assertTrue(rule.excludes(server)); + } + + @Test + public void canIncludeWithAnAllRequirement() { + Server server = mock(Server.class); + + checking(expectations -> { + // mock a server with the following entitlements + expectations.allowing(server).getEntitlements(); + expectations.will(returnValue(Set.of( + new SaltEntitlement(), + new VirtualizationEntitlement()) + )); + }); + + // Create a rule that requires ALL the following addons + DimensionRule rule = new EntitlementRule(RuleType.INCLUDE, RequirementType.ALL, Set.of( + new SaltEntitlement(), + new VirtualizationEntitlement() + )); + + // Server must be included by the rule + assertTrue(rule.includes(server)); + assertFalse(rule.excludes(server)); + } + + @Test + public void canIncludeWithAnAnyRequirement() { + Server server = mock(Server.class); + + checking(expectations -> { + // mock a server with the following entitlements + expectations.allowing(server).getEntitlements(); + expectations.will(returnValue(Set.of( + new SaltEntitlement(), + new MonitoringEntitlement()) + )); + }); + + // Create a rule that requires ANY of the following addons + DimensionRule rule = new EntitlementRule(RuleType.INCLUDE, RequirementType.ANY, Set.of( + new SaltEntitlement(), + new VirtualizationEntitlement() + )); + + // Server must not be included by the rule + assertTrue(rule.includes(server)); + assertFalse(rule.excludes(server)); + } + + @Test + public void canExcludeWithAnAnyRequirement() { + Server server = mock(Server.class); + + checking(expectations -> { + // mock a server with the following entitlements + expectations.allowing(server).getEntitlements(); + expectations.will(returnValue(Set.of( + new ManagementEntitlement(), + new MonitoringEntitlement()) + )); + }); + + + // Create a rule that requires ANY of the following addons + DimensionRule rule = new EntitlementRule(RuleType.INCLUDE, RequirementType.ANY, Set.of( + new SaltEntitlement(), + new VirtualizationEntitlement() + )); + + // Server must not be included by the rule + assertFalse(rule.includes(server)); + assertTrue(rule.excludes(server)); + } +} diff --git a/java/code/src/com/redhat/rhn/taskomatic/task/payg/dimensions/rules/test/SUSEManagerToolsRuleTest.java b/java/code/src/com/redhat/rhn/taskomatic/task/payg/dimensions/rules/test/SUSEManagerToolsRuleTest.java new file mode 100644 index 000000000000..f9fe0471465e --- /dev/null +++ b/java/code/src/com/redhat/rhn/taskomatic/task/payg/dimensions/rules/test/SUSEManagerToolsRuleTest.java @@ -0,0 +1,183 @@ +/* + * Copyright (c) 2023 SUSE LLC + * + * This software is licensed to you under the GNU General Public License, + * version 2 (GPLv2). There is NO WARRANTY for this software, express or + * implied, including the implied warranties of MERCHANTABILITY or FITNESS + * FOR A PARTICULAR PURPOSE. You should have received a copy of GPLv2 + * along with this software; if not, see + * http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt. + * + * Red Hat trademarks are not licensed under GPLv2. No permission is + * granted to use or replicate Red Hat trademarks that are incorporated + * in this software or its documentation. + */ + +package com.redhat.rhn.taskomatic.task.payg.dimensions.rules.test; + +import static org.jmock.AbstractExpectations.returnValue; +import static org.junit.jupiter.api.Assertions.assertFalse; +import static org.junit.jupiter.api.Assertions.assertTrue; + +import com.redhat.rhn.domain.channel.Channel; +import com.redhat.rhn.domain.channel.ChannelFamily; +import com.redhat.rhn.domain.product.SUSEProduct; +import com.redhat.rhn.domain.product.SUSEProductSet; +import com.redhat.rhn.domain.server.InstalledProduct; +import com.redhat.rhn.domain.server.Server; +import com.redhat.rhn.taskomatic.task.payg.dimensions.DimensionRule; +import com.redhat.rhn.taskomatic.task.payg.dimensions.rules.SUSEManagerToolsRule; +import com.redhat.rhn.testing.RhnJmockBaseTestCase; + +import org.apache.commons.lang3.RandomStringUtils; +import org.jmock.imposters.ByteBuddyClassImposteriser; +import org.junit.jupiter.api.BeforeEach; +import org.junit.jupiter.api.Test; + +import java.util.Collections; +import java.util.Optional; +import java.util.Set; + +public class SUSEManagerToolsRuleTest extends RhnJmockBaseTestCase { + + @BeforeEach + public void setup() { + setImposteriser(ByteBuddyClassImposteriser.INSTANCE); + } + + @Test + public void canIncludeWhenProductHasToolsExtensionOrChannelIsSubscribed() { + Set productSetWithSUMATools = Set.of( + mockProduct("sles", "15", true, "7261"), + mockProduct("sle-module-basesystem", "15.4", false, "MODULE"), + mockProduct("sle-module-server-applications", "15.4", false, "MODULE"), + mockProduct("sle-manager-tools", "15.4", false, "SLE-M-T") + ); + + Set channelSetWithSUMATools = Set.of( + mockChannel("sle-product-sles15-sp4-pool-x86_64", "7261"), + mockChannel("sle-product-sles15-sp4-updates-x86_64", "7261"), + mockChannel("sle-module-basesystem15-sp4-pool-x86_64", "MODULE"), + mockChannel("sle-module-basesystem15-sp4-updates-x86_64", "MODULE"), + mockChannel("sle-module-server-applications15-sp4-pool-x86_64", "MODULE"), + mockChannel("sle-module-server-applications15-sp4-updates-x86_64", "MODULE"), + mockChannel("sle-manager-tools15-pool-x86_64-sp4", "SLE-M-T"), + mockChannel("sle-manager-tools15-updates-x86_64-sp4", "SLE-M-T") + ); + + Server serverBoth = mockServer(productSetWithSUMATools, channelSetWithSUMATools); + Server serverOnlyProduct = mockServer(productSetWithSUMATools, Collections.emptySet()); + Server serverOnlyChannel = mockServer(Collections.emptySet(), channelSetWithSUMATools); + + DimensionRule managerToolsRule = new SUSEManagerToolsRule(); + + assertTrue(managerToolsRule.includes(serverBoth)); + assertFalse(managerToolsRule.excludes(serverBoth)); + + assertTrue(managerToolsRule.includes(serverOnlyProduct)); + assertFalse(managerToolsRule.excludes(serverOnlyProduct)); + + assertTrue(managerToolsRule.includes(serverOnlyChannel)); + assertFalse(managerToolsRule.excludes(serverOnlyChannel)); + } + + @Test + public void canExcludeWhenNoToolsArePresent() { + Set channelSetWithoutSUMATools = Set.of( + mockChannel("custom-channel-x86_64", null), + mockChannel("custom-channel-updates-x86_64", null) + ); + + Server server = mockServer(Collections.emptySet(), channelSetWithoutSUMATools); + + DimensionRule managerToolsRule = new SUSEManagerToolsRule(); + + assertTrue(managerToolsRule.excludes(server)); + assertFalse(managerToolsRule.includes(server)); + } + + @Test + public void canIncludeSLES12Server() { + Set sle12ProductSet = Set.of( + mockProduct("sles", "12.3", true, "7261") + ); + + Set sles12ChannelSet = Set.of( + mockChannel("sles12-sp3-pool-x86_64", "7261"), + mockChannel("sles12-sp3-updates-x86_64", "7261"), + mockChannel("sle-manager-tools12-pool-x86_64-sp3", "7261"), + mockChannel("sle-manager-tools12-updates-x86_64-sp3", "7261") + ); + + Server server = mockServer(sle12ProductSet, sles12ChannelSet); + + DimensionRule managerToolsRule = new SUSEManagerToolsRule(); + + assertTrue(managerToolsRule.includes(server)); + assertFalse(managerToolsRule.excludes(server)); + } + + private Channel mockChannel(String channelLabel, String channelFamily) { + Channel channel = mock(Channel.class, channelLabel); + + checking(expectations -> { + expectations.allowing(channel).getLabel(); + expectations.will(returnValue(channelLabel)); + + expectations.allowing(channel).getChannelFamilies(); + expectations.will(returnValue( + channelFamily != null ? Set.of(new ChannelFamily(channelFamily)) : Collections.emptySet() + )); + }); + + return channel; + } + + private Server mockServer(Set installedProductsSet, Set channelsSet) { + Server server = mock(Server.class, RandomStringUtils.randomNumeric(10)); + + checking(expectations -> { + expectations.allowing(server).getInstalledProducts(); + expectations.will(returnValue(installedProductsSet)); + + expectations.allowing(server).getInstalledProductSet(); + expectations.will(returnValue(Optional.of(new SUSEProductSet(installedProductsSet)))); + + expectations.allowing(server).getChannels(); + expectations.will(returnValue(channelsSet)); + }); + + return server; + } + + private InstalledProduct mockProduct(String productName, String version, boolean isBase, String channelFamily) { + InstalledProduct installedProduct = mock(InstalledProduct.class, "installed_" + productName); + SUSEProduct suseProduct = mock(SUSEProduct.class, productName); + + checking(expectations -> { + expectations.allowing(suseProduct).isBase(); + expectations.will(returnValue(isBase)); + + expectations.allowing(suseProduct).getName(); + expectations.will(returnValue(productName)); + + expectations.allowing(suseProduct).getVersion(); + expectations.will(returnValue(version)); + + expectations.allowing(suseProduct).getFriendlyName(); + expectations.will(returnValue("Mock for " + productName + " " + version)); + + expectations.allowing(suseProduct).getChannelFamily(); + expectations.will(returnValue(new ChannelFamily(channelFamily))); + + expectations.allowing(installedProduct).isBaseproduct(); + expectations.will(returnValue(isBase)); + + expectations.allowing(installedProduct).getSUSEProduct(); + expectations.will(returnValue(suseProduct)); + }); + + return installedProduct; + } + +} diff --git a/java/code/src/com/redhat/rhn/taskomatic/task/payg/script/detect_os.sh b/java/code/src/com/redhat/rhn/taskomatic/task/payg/script/detect_os.sh new file mode 100644 index 000000000000..31026b6f36dd --- /dev/null +++ b/java/code/src/com/redhat/rhn/taskomatic/task/payg/script/detect_os.sh @@ -0,0 +1,13 @@ +#! /bin/sh + +. /etc/os-release + +MAJ_VER=$(echo $VERSION_ID | awk -F. '{print $1}') + +if [ $ID == "sles" -a $MAJ_VER -ge 12 ]; then + echo "SLES" +elif [ $ID == "rhel" -a $MAJ_VER -ge 8 ]; then + echo "RHEL" +elif [ $ID == "rhel" ]; then + echo "RHEL7" +fi diff --git a/java/code/src/com/redhat/rhn/taskomatic/task/payg/script/payg_extract_repo_data.py b/java/code/src/com/redhat/rhn/taskomatic/task/payg/script/payg_extract_repo_data.py index 3fa10bf3ffb7..603793439b80 100644 --- a/java/code/src/com/redhat/rhn/taskomatic/task/payg/script/payg_extract_repo_data.py +++ b/java/code/src/com/redhat/rhn/taskomatic/task/payg/script/payg_extract_repo_data.py @@ -13,6 +13,7 @@ # Please submit bugfixes or comments via https://bugs.opensuse.org/ # +import csv import subprocess import xml.etree.ElementTree as ET from urllib.parse import urlparse, parse_qs @@ -21,6 +22,7 @@ from pathlib import Path import glob import os +import platform from collections import namedtuple INPUT_TEMPLATE = """RESOLVEURL @@ -32,6 +34,7 @@ CREDENTIALS_NAME = "SCCcredentials" + def system_exit(code, messages=None): "Exit with a code and optional message(s). Saved a few lines of code." @@ -39,11 +42,25 @@ def system_exit(code, messages=None): print(message, file=sys.stderr) sys.exit(code) + def is_payg_instance(): - return os.path.isfile('/usr/sbin/registercloudguest') + flavor_check = "/usr/bin/instance-flavor-check" + if not os.path.isfile(flavor_check) or not os.access(flavor_check, os.X_OK): + system_exit(1, ["instance-flavor-check tool is not available.", + "For a correct PAYG detection please install the 'python-instance-billing-flavor-check' package"]) + + try: + result = subprocess.run(flavor_check, check=False, stdout=subprocess.PIPE, universal_newlines=True).stdout.strip() + except subprocess.CalledProcessError as e: + system_exit(1, ["Failed to execute instance-flavor-check tool.", e]) + + return result == "PAYG" + + SuseCloudInfo = namedtuple('SuseCloudInfo', ['header_auth', 'hostname']) + def _get_suse_cloud_info(): input = INPUT_TEMPLATE % (CREDENTIALS_NAME, "/") try: @@ -54,8 +71,30 @@ def _get_suse_cloud_info(): full_output = auth_data_output.split("\n") _, header_auth, _, repository_url = full_output repository_url_parsed = urlparse(repository_url) + k, v = header_auth.split(":", 1) + + headers = _get_instance_identification() + headers[k] = v + + return SuseCloudInfo(headers, repository_url_parsed.netloc) + + +def _get_instance_identification(): + path = next((p for p in map(lambda f: Path(f), ["/etc/os-release", "/usr/lib/os-release"]) if p.exists()), None) + if path is None: + return [] + + with open(path) as stream: + reader = csv.reader(stream, delimiter="=") + os_release = dict(reader) + + return { + "X-Instance-Identifier": os_release["NAME"], + "X-Instance-Version": os_release["VERSION_ID"], + "X-Instance-Arch": platform.machine() + } + - return SuseCloudInfo(header_auth, repository_url_parsed.netloc) def _extract_http_auth(credentials): credentials_file = '/etc/zypp/credentials.d/' + credentials @@ -72,6 +111,7 @@ def _extract_http_auth(credentials): password = var.strip() return {"username": username, "password": password} + def _extract_rmt_server_info(netloc): try: # we need to find the IP address, since it is not resolvable in any DNS. It is hardcoded in the hosts file @@ -104,9 +144,14 @@ def _get_installed_suse_products(): "version": product_xml.find("./version").text, "arch": product_xml.find("./arch").text } + if product["name"] == "sle-manager-tools": + # no payg product has manager tools. When it appears, it comes from + # a registration against SUSE Manager + continue products.append(product) return products + def load_instance_info(): header_auth, hostname = _get_suse_cloud_info() @@ -114,14 +159,16 @@ def load_instance_info(): credentials_data = _extract_http_auth(CREDENTIALS_NAME) products = _get_installed_suse_products() - return { "products": products, + return { "type": "CLOUDRMT", + "products": products, "basic_auth": credentials_data, "header_auth": header_auth, "rmt_host": rmt_host_data} + def main(): if not is_payg_instance(): - system_exit(1, ["instance is not pay-as-you-go"]) + system_exit(1, ["instance is not PAYG"]) payg_data = load_instance_info() print(json.dumps(payg_data)) @@ -145,4 +192,4 @@ def main(): # 4- unable to get ip for repository server # 5- repository credentials file not found # 6- CA file for cloud RMT server not found -# 9- generic error \ No newline at end of file +# 9- generic error diff --git a/java/code/src/com/redhat/rhn/taskomatic/task/payg/script/rhui7_extract_repo_data.py b/java/code/src/com/redhat/rhn/taskomatic/task/payg/script/rhui7_extract_repo_data.py new file mode 100644 index 000000000000..26461deefd75 --- /dev/null +++ b/java/code/src/com/redhat/rhn/taskomatic/task/payg/script/rhui7_extract_repo_data.py @@ -0,0 +1,283 @@ +# +# Copyright (c) 2023 SUSE LLC +# +# This software is licensed to you under the GNU General Public License, +# version 2 (GPLv2). There is NO WARRANTY for this software, express or +# implied, including the implied warranties of MERCHANTABILITY or FITNESS +# FOR A PARTICULAR PURPOSE. You should have received a copy of GPLv2 +# along with this software; if not, see +# http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt. +# +# Please submit bugfixes or comments via https://bugs.opensuse.org/ +# + +from __future__ import print_function + +import base64 +import glob +import json +import os +import platform +import re +import os +import subprocess +import sys +import traceback +import urlparse + +PATTERN_SECTION = r'^\[(.+)\]$' +PATTERN_KV = r'\s*=\s*' + +ID_DOC_HEADER = "X-RHUI-ID" +ID_SIG_HEADER = "X-RHUI-SIGNATURE" +TOKEN_TTL_HEADER = "X-aws-ec2-metadata-token-ttl-seconds" +TOKEN_HEADER_ID = "X-aws-ec2-metadata-token" +ID_DOC_URL = "http://169.254.169.254/latest/dynamic/instance-identity/document" +ID_SIG_URL = "http://169.254.169.254/latest/dynamic/instance-identity/signature" +TOKEN_URL = "http://169.254.169.254/latest/api/token" + +try: + import urllib2 + from urllib2 import ProxyHandler + + # We do not want to use a proxy to read the Amazon instance metadata, so bypass + # any proxy that might be set, including by http{s}_proxy environment + # variable(s). + proxy_handler = ProxyHandler({}) + opener = urllib2.build_opener(proxy_handler) + HAS_URLLIB = True +except: + HAS_URLLIB = False + +cloud_vendor = "unknown" + +def system_exit(code, messages=None): + "Exit with a code and optional message(s). Saved a few lines of code." + + for message in messages: + print(message, file=sys.stderr) + sys.exit(code) + + +def _read_aws_metadata(url, token): + if not HAS_URLLIB: + return + req = urllib2.Request(url) + req.add_header(TOKEN_HEADER_ID, token) + try: + fp = opener.open(req) + data = fp.read() + fp.close() + except urllib.error.URLError as e: + system_exit(3, ["Unable to get aws metadata ({})".format(e)]) + + return data + + +def _get_token(): + req = urllib2.Request(url=TOKEN_URL, data=b'') + req.get_method = lambda: 'PUT' + req.add_header(TOKEN_TTL_HEADER, '3600') # Time to live in seconds + fp = opener.open(req) + token = fp.read() + fp.close() + + return token + + +def _load_id(token): + ''' + Loads and returns the Amazon metadata for identifying the instance. + + @rtype: string + ''' + return _read_aws_metadata(ID_DOC_URL, token) + + +def _load_signature(token): + ''' + Loads and returns the signature of hte Amazon identification metadata. + + @rtype: string + ''' + return _read_aws_metadata(ID_SIG_URL, token) + +def _get_arch(): + return platform.processor() + +def is_rhui_instance(): + return is_rhui + + +def get_rhui_url(url): + """ + check the url if it is a RHUI url. + If yes, return it, otherwise return an empty string + """ + global cloud_vendor + surl = url.strip().replace(',', "") + urlparams = urlparse.urlparse(url.strip()) + if urlparams.hostname.startswith("rhui.") and urlparams.hostname.endswith(".redhat.com"): + cloud_vendor = "aws" + return surl + elif urlparams.hostname.startswith("rhui") and urlparams.hostname.endswith(".microsoft.com"): + cloud_vendor = "azure" + return surl + elif urlparams.hostname.startswith("rhui.") and urlparams.hostname.endswith(".googlecloud.com"): + cloud_vendor = "gcp" + return surl + elif urlparams.hostname.startswith("packages.cloud.google.com"): + # this contains the package with the certificates + cloud_vendor = "gcp" + return surl + return "" + + +def _parse_repositories(): + global is_rhui + global repo_dict + is_rhui = False + repo_dict = {} + + try: + repos_out = subprocess.check_output(["yum", "repolist", "all", "-v"], stderr=subprocess.PIPE, universal_newlines=True) + except subprocess.CalledProcessError as e: + system_exit(2, ["Got error when getting repo processed URL(error {}):".format(e)]) + repo_id = "" + repo_url = "" + for line in repos_out.split("\n"): + if line.startswith("Repo-id"): + ident = (line.split(":", 1)[1]).strip() + repo_id = ident.split("/")[0] + if "rhui-" in repo_id: + is_rhui = True + elif line.startswith("Repo-mirrors"): + repo_url = get_rhui_url(line.split(":", 1)[1]) + elif repo_url == "" and line.startswith("Repo-baseurl"): + repo_url = get_rhui_url(re.split('\s+', line)[2]) + elif line.strip() == "": + if (repo_id != "" and repo_url != ""): + repo_dict[repo_id] = { "url" : repo_url } + repo_id = "" + repo_url = "" + if (repo_id != "" and repo_url != ""): + repo_dict[repo_id] = { "url" : repo_url } + + # parse the repositories to get the matching certificates + for repofile in glob.glob("/etc/yum.repos.d/*.repo"): + with open(repofile, "r") as r: + ident = "" + state = 0 + for line in r: + s = line.strip() + if re.match(PATTERN_SECTION, s): + ident = re.findall(PATTERN_SECTION, s)[0] + state = 1 + if '$basearch' in ident: + ident = ident.replace('$basearch', _get_arch()) + elif state == 1 and ident and ident in repo_dict: + if "=" in s: + k,v = re.split(PATTERN_KV, s, 1) + if k in ["sslclientcert", "sslclientkey", "sslcacert"]: + repo_dict[ident][k] = v + if "sslcacert" not in repo_dict[ident]: + repo_dict[ident]["sslcacert"] = "Bundle" # default + elif s == "": + ident = "" + state = 0 + return repo_dict + + +def _get_rhui_info(): + if not HAS_URLLIB: + return {} + # Retrieve the Amazon metadata + try: + token = _get_token() + id_doc = _load_id(token) + id_sig = _load_signature(token) + id_doc_header = "" + id_sig_header = "" + + if id_doc and id_sig: + # Encode it so it can be inserted as an HTTP header + # Signature does not need to be encoded, it already is. + id_doc_header = base64.urlsafe_b64encode(id_doc).decode() + id_sig_header = base64.urlsafe_b64encode(id_sig).decode() + + return {ID_DOC_HEADER: id_doc_header, ID_SIG_HEADER: id_sig_header} + except: + # not AWS cloud ? + return {} + + +def _get_certificate_info(): + """ + Return a dict with all RHUI certificates and keys using + the path as key + """ + usedCrts = set() + for d in repo_dict.values(): + for k, v in d.items(): + if k.startswith('ssl'): + usedCrts.add(v) + + certs = {} + for crt in glob.glob("/etc/pki/rhui/*.*"): + if crt not in usedCrts: + # get only the certificates we really need + continue + with open(crt, "r") as c: + certs[crt] = c.read() + + for crt in glob.glob("/etc/pki/rhui/**/*.*"): + if crt not in usedCrts: + # get only the certificates we really need + continue + with open(crt, "r") as c: + certs[crt] = c.read() + + if "Bundle" in usedCrts: + with open("/etc/pki/ca-trust/extracted/pem/tls-ca-bundle.pem", "r") as c: + certs["Bundle"] = c.read() + + return certs + + +def load_instance_info(): + header_auth = _get_rhui_info() + certs = _get_certificate_info() + + return { "type": "RHUI", + "header_auth": header_auth, + "certs": certs, + "repositories": repo_dict} + +def main(): + os.environ["LC_ALL"] = "C" + _parse_repositories() + if not is_rhui_instance(): + system_exit(1, ["instance is not connection to RHUI"]) + + rhui_data = load_instance_info() + print(json.dumps(rhui_data)) + + +if __name__ == '__main__': + try: + main() + sys.exit(0) + except KeyboardInterrupt: + system_exit(9, ["User interrupted process."]) + except SystemExit as e: + sys.exit(e.code) + except Exception as e: + #traceback.print_exc() + system_exit(9, ["ERROR: {}".format(e)]) + +# Error codes +# 1- system is not a RHUI instance +# 2- error returning existing repositories +# 3- error when getting processed URL and Header from RHUI +# 6- CA file for cloud RMT server not found +# 9- generic error diff --git a/java/code/src/com/redhat/rhn/taskomatic/task/payg/script/rhui_extract_repo_data.py b/java/code/src/com/redhat/rhn/taskomatic/task/payg/script/rhui_extract_repo_data.py new file mode 100644 index 000000000000..021c7fd95acc --- /dev/null +++ b/java/code/src/com/redhat/rhn/taskomatic/task/payg/script/rhui_extract_repo_data.py @@ -0,0 +1,259 @@ +# +# Copyright (c) 2023 SUSE LLC +# +# This software is licensed to you under the GNU General Public License, +# version 2 (GPLv2). There is NO WARRANTY for this software, express or +# implied, including the implied warranties of MERCHANTABILITY or FITNESS +# FOR A PARTICULAR PURPOSE. You should have received a copy of GPLv2 +# along with this software; if not, see +# http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt. +# +# Please submit bugfixes or comments via https://bugs.opensuse.org/ +# + +import base64 +import glob +import json +import platform +import re +import subprocess +import os +import sys +import traceback +import urllib.request +import urllib.parse as urlparse + +PATTERN_SECTION = r'^\[(.+)\]$' +PATTERN_KV = r'\s*=\s*' + +ID_DOC_HEADER = "X-RHUI-ID" +ID_SIG_HEADER = "X-RHUI-SIGNATURE" +TOKEN_TTL_HEADER = "X-aws-ec2-metadata-token-ttl-seconds" +TOKEN_HEADER_ID = "X-aws-ec2-metadata-token" +ID_DOC_URL = "http://169.254.169.254/latest/dynamic/instance-identity/document" +ID_SIG_URL = "http://169.254.169.254/latest/dynamic/instance-identity/signature" +TOKEN_URL = "http://169.254.169.254/latest/api/token" +# We do not want to use a proxy to read the Amazon instance metadata, so bypass +# any proxy that might be set, including by http{s}_proxy environment +# variable(s). +proxy_handler = urllib.request.ProxyHandler({}) +opener = urllib.request.build_opener(proxy_handler) + +cloud_vendor = "unknown" + +def system_exit(code, messages=None): + "Exit with a code and optional message(s). Saved a few lines of code." + + for message in messages: + print(message, file=sys.stderr) + sys.exit(code) + +def _read_aws_metadata(url, token): + req = urllib.request.Request(url) + req.add_header(TOKEN_HEADER_ID, token) + try: + with opener.open(req) as response: + return response.read() + except urllib.error.URLError as e: + system_exit(3, ["Unable to get aws metadata ({})".format(e)]) + +def _get_token(): + req = urllib.request.Request(url=TOKEN_URL, + data=b'', method='PUT') + req.add_header(TOKEN_TTL_HEADER, '3600') # Time to live in seconds + with opener.open(req) as response: + return response.read() + +def _load_id(token): + ''' + Loads and returns the Amazon metadata for identifying the instance. + + @rtype: string + ''' + return _read_aws_metadata(ID_DOC_URL, token) + + +def _load_signature(token): + ''' + Loads and returns the signature of hte Amazon identification metadata. + + @rtype: string + ''' + return _read_aws_metadata(ID_SIG_URL, token) + +def _get_arch(): + return platform.processor() + +def is_rhui_instance(): + return is_rhui + + +def get_rhui_url(url): + """ + check the url if it is a RHUI url. + If yes, return it, otherwise return an empty string + """ + global cloud_vendor + surl = url.strip().replace(',', "") + urlparams = urlparse.urlparse(surl) + if urlparams.hostname.startswith("rhui.") and urlparams.hostname.endswith(".redhat.com"): + cloud_vendor = "aws" + return surl + elif urlparams.hostname.startswith("rhui") and urlparams.hostname.endswith(".microsoft.com"): + cloud_vendor = "azure" + return surl + elif urlparams.hostname.startswith("rhui.") and urlparams.hostname.endswith(".googlecloud.com"): + cloud_vendor = "gcp" + return surl + elif urlparams.hostname.startswith("packages.cloud.google.com"): + # this contains the package with the certificates + cloud_vendor = "gcp" + return surl + return "" + + +def _parse_repositories(): + global is_rhui + global repo_dict + is_rhui = False + repo_dict = {} + + try: + repos_out = subprocess.check_output(["yum", "repolist", "--all", "-v"], stderr=subprocess.PIPE, universal_newlines=True) + except subprocess.CalledProcessError as e: + system_exit(2, ["Got error when getting repo processed URL(error {}):".format(e)]) + repo_id = "" + repo_url = "" + for line in repos_out.split("\n"): + if line.startswith("Repo-id"): + ident = (line.split(":", 1)[1]).strip() + repo_id = ident.split("/")[0] + if "rhui-" in repo_id: + is_rhui = True + elif line.startswith("Repo-mirrors"): + repo_url = get_rhui_url(line.split(":", 1)[1]) + elif repo_url == "" and line.startswith("Repo-baseurl"): + repo_url = get_rhui_url(re.split('\s+', line)[2]) + elif line.strip() == "": + if (repo_id != "" and repo_url != ""): + repo_dict[repo_id] = { "url" : repo_url } + repo_id = "" + repo_url = "" + if (repo_id != "" and repo_url != ""): + repo_dict[repo_id] = { "url" : repo_url } + + # parse the repositories to get the matching certificates + for repofile in glob.glob("/etc/yum.repos.d/*.repo"): + with open(repofile, "r") as r: + ident = "" + state = 0 + for line in r: + s = line.strip() + if re.match(PATTERN_SECTION, s): + ident = re.findall(PATTERN_SECTION, s)[0] + state = 1 + if '$basearch' in ident: + ident = ident.replace('$basearch', _get_arch()) + elif state == 1 and ident and ident in repo_dict: + if "=" in s: + k,v = re.split(PATTERN_KV, s, 1) + if k in ["sslclientcert", "sslclientkey", "sslcacert"]: + repo_dict[ident][k] = v + if "sslcacert" not in repo_dict[ident]: + repo_dict[ident]["sslcacert"] = "Bundle" # default + elif s == "": + ident = "" + state = 0 + return repo_dict + + +def _get_rhui_info(): + # Retrieve the Amazon metadata + try: + token = _get_token() + id_doc = _load_id(token) + id_sig = _load_signature(token) + id_doc_header = "" + id_sig_header = "" + + if id_doc and id_sig: + # Encode it so it can be inserted as an HTTP header + # Signature does not need to be encoded, it already is. + id_doc_header = base64.urlsafe_b64encode(id_doc).decode() + id_sig_header = base64.urlsafe_b64encode(id_sig).decode() + + return {ID_DOC_HEADER: id_doc_header, ID_SIG_HEADER: id_sig_header} + except urllib.error.URLError as e: + # not AWS cloud ? + return {} + + + +def _get_certificate_info(): + """ + Return a dict with all RHUI certificates and keys using + the path as key + """ + usedCrts = set() + for d in repo_dict.values(): + for k, v in d.items(): + if k.startswith('ssl'): + usedCrts.add(v) + + certs = {} + for crt in glob.glob("/etc/pki/rhui/*.*"): + if crt not in usedCrts: + # get only the certificates we really need + continue + with open(crt, "r") as c: + certs[crt] = c.read() + + for crt in glob.glob("/etc/pki/rhui/**/*.*"): + if crt not in usedCrts: + # get only the certificates we really need + continue + with open(crt, "r") as c: + certs[crt] = c.read() + + if "Bundle" in usedCrts: + with open("/etc/pki/ca-trust/extracted/pem/tls-ca-bundle.pem", "r") as c: + certs["Bundle"] = c.read() + return certs + + +def load_instance_info(): + header_auth = _get_rhui_info() + certs = _get_certificate_info() + + return { "type": "RHUI", + "header_auth": header_auth, + "certs": certs, + "repositories": repo_dict} + +def main(): + _parse_repositories() + if not is_rhui_instance(): + system_exit(1, ["instance is not connection to RHUI"]) + + rhui_data = load_instance_info() + print(json.dumps(rhui_data)) + + +if __name__ == '__main__': + try: + main() + sys.exit(0) + except KeyboardInterrupt: + system_exit(9, ["User interrupted process."]) + except SystemExit as e: + sys.exit(e.code) + except Exception as e: + #traceback.print_exc() + system_exit(9, ["ERROR: {}".format(e)]) + +# Error codes +# 1- system is not a RHUI instance +# 2- error returning existing repositories +# 3- error when getting processed URL and Header from RHUI +# 6- CA file for cloud RMT server not found +# 9- generic error diff --git a/java/code/src/com/redhat/rhn/taskomatic/task/payg/test/PaygAuthDataProcessorTest.java b/java/code/src/com/redhat/rhn/taskomatic/task/payg/test/PaygAuthDataProcessorTest.java index f68968c39e08..ecd3ea565614 100644 --- a/java/code/src/com/redhat/rhn/taskomatic/task/payg/test/PaygAuthDataProcessorTest.java +++ b/java/code/src/com/redhat/rhn/taskomatic/task/payg/test/PaygAuthDataProcessorTest.java @@ -91,7 +91,7 @@ public void testFirstExecution() throws URISyntaxException { @Test public void testUpdateData() throws URISyntaxException { - Credentials cred = CredentialsFactory.createCredentials("u", "p", Credentials.TYPE_CLOUD_RMT, null); + Credentials cred = CredentialsFactory.createCredentials("u", "p", Credentials.TYPE_CLOUD_RMT); cred.setUrl("//my_url"); cred.setPaygSshData(paygData); paygData.setCredentials(cred); @@ -113,7 +113,7 @@ public void testUpdateData() throws URISyntaxException { @Test public void testUpdateRepos() throws URISyntaxException { - Credentials cred = CredentialsFactory.createCredentials("u", "p", Credentials.TYPE_CLOUD_RMT, null); + Credentials cred = CredentialsFactory.createCredentials("u", "p", Credentials.TYPE_CLOUD_RMT); cred.setUrl("//my_url"); cred.setPaygSshData(paygData); paygData.setCredentials(cred); @@ -229,14 +229,14 @@ private PaygInstanceInfo createPaygInstanceInfo() { basicAuth.put("username", "SCC_05c394f"); basicAuth.put("password", "0e248802"); - String headerAuth = "X-Instance-Data:PGRvY3VtZW50PnsKICAiYWNjb3VudElkIiA6ICI2NDEwODAwN"; + Map headerAuth = new HashMap<>(); + headerAuth.put("X-Instance-Data", "PGRvY3VtZW50PnsKICAiYWNjb3VudElkIiA6ICI2NDEwODAwN"); Map rmtHost = new HashMap<>(); rmtHost.put("hostname", "smt-ec2.susecloud.net"); rmtHost.put("ip", "18.156.40.199"); rmtHost.put("server_ca", "-----BEGIN CERTIFICATE-----"); - PaygInstanceInfo info = new PaygInstanceInfo(products, basicAuth, headerAuth, rmtHost); - return info; + return new PaygInstanceInfo(products, basicAuth, headerAuth, rmtHost); } } diff --git a/java/code/src/com/redhat/rhn/taskomatic/task/payg/test/PaygComputeDimensionsTaskTest.java b/java/code/src/com/redhat/rhn/taskomatic/task/payg/test/PaygComputeDimensionsTaskTest.java new file mode 100644 index 000000000000..e23dfac97e4f --- /dev/null +++ b/java/code/src/com/redhat/rhn/taskomatic/task/payg/test/PaygComputeDimensionsTaskTest.java @@ -0,0 +1,193 @@ +/* + * Copyright (c) 2023 SUSE LLC + * + * This software is licensed to you under the GNU General Public License, + * version 2 (GPLv2). There is NO WARRANTY for this software, express or + * implied, including the implied warranties of MERCHANTABILITY or FITNESS + * FOR A PARTICULAR PURPOSE. You should have received a copy of GPLv2 + * along with this software; if not, see + * http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt. + * + * Red Hat trademarks are not licensed under GPLv2. No permission is + * granted to use or replicate Red Hat trademarks that are incorporated + * in this software or its documentation. + */ + +package com.redhat.rhn.taskomatic.task.payg.test; + +import static com.redhat.rhn.domain.product.test.SUSEProductTestUtils.createTestSUSEProduct; +import static com.redhat.rhn.domain.product.test.SUSEProductTestUtils.installSUSEProductsOnServer; +import static org.junit.jupiter.api.Assertions.assertEquals; +import static org.junit.jupiter.api.Assertions.assertNotNull; +import static org.junit.jupiter.api.Assertions.assertTrue; +import static org.junit.jupiter.api.Assertions.fail; + +import com.redhat.rhn.domain.server.Server; +import com.redhat.rhn.domain.server.ServerFactory; +import com.redhat.rhn.domain.server.test.MinionServerFactoryTest; +import com.redhat.rhn.domain.server.test.ServerFactoryTest; +import com.redhat.rhn.manager.entitlement.EntitlementManager; +import com.redhat.rhn.manager.formula.FormulaMonitoringManager; +import com.redhat.rhn.manager.system.ServerGroupManager; +import com.redhat.rhn.manager.system.entitling.SystemEntitlementManager; +import com.redhat.rhn.manager.system.entitling.SystemEntitler; +import com.redhat.rhn.manager.system.entitling.SystemUnentitler; +import com.redhat.rhn.taskomatic.task.payg.PaygComputeDimensionsTask; +import com.redhat.rhn.taskomatic.task.payg.dimensions.DimensionsConfiguration; +import com.redhat.rhn.testing.JMockBaseTestCaseWithUser; + +import com.suse.cloud.CloudPaygManager; +import com.suse.cloud.domain.BillingDimension; +import com.suse.cloud.domain.PaygDimensionComputation; +import com.suse.cloud.domain.PaygDimensionFactory; +import com.suse.manager.virtualization.VirtManagerSalt; +import com.suse.manager.webui.services.iface.MonitoringManager; +import com.suse.manager.webui.services.iface.SaltApi; +import com.suse.manager.webui.services.iface.VirtManager; +import com.suse.manager.webui.services.test.TestSaltApi; + +import org.junit.jupiter.api.BeforeEach; +import org.junit.jupiter.api.Test; +import org.quartz.JobExecutionContext; + +import java.util.Date; +import java.util.Set; + +public class PaygComputeDimensionsTaskTest extends JMockBaseTestCaseWithUser { + + private static final String ARCH_X86_64 = "x86_64"; + private static final String ARCH_IBM_Z = "s390x"; + + private JobExecutionContext contextMock; + private PaygDimensionFactory factory; + private CloudPaygManager cloudManager; + private SystemEntitlementManager systemEntitlementManager; + + @BeforeEach + public void before() { + contextMock = mock(JobExecutionContext.class); + // Force being in PAYG context + cloudManager = new CloudPaygManager() { + @Override + public boolean isPaygInstance() { + return true; + } + }; + + factory = new PaygDimensionFactory(); + SaltApi saltApi = new TestSaltApi(); + + ServerGroupManager serverGroupManager = new ServerGroupManager(saltApi); + VirtManager virtManager = new VirtManagerSalt(saltApi); + MonitoringManager monitoringManager = new FormulaMonitoringManager(saltApi); + + systemEntitlementManager = new SystemEntitlementManager( + new SystemUnentitler(virtManager, monitoringManager, serverGroupManager), + new SystemEntitler(saltApi, virtManager, monitoringManager, serverGroupManager) + ); + } + + @Test + public void canComputeDimensions() throws Exception { + assertTrue(ServerFactory.listAllServerIds().isEmpty(), "Unable to execute test: " + + "there are entries the rhnserver table not cleaned up by previous unit tests."); + + // Creating the servers // MANAGED_SYSTEMS MONITORING + createPaygSLESSapServer(); // + createSLES12Server(); // X + createOpenSUSEServer(); // X X + createSUSEManagerProxy(); // + createTraditionalClient(); // X + + assertEquals(ServerFactory.listAllServerIds().size(), 5, "The expected servers were not created"); + + var task = new PaygComputeDimensionsTask(DimensionsConfiguration.DEFAULT_CONFIGURATION, factory, cloudManager); + + task.execute(contextMock); + + PaygDimensionComputation computationResult = factory.getLatestSuccessfulComputation(); + + assertNotNull(computationResult, "No successful computation found"); + assertTrue(computationResult.isSuccess(), "Computation was not successful"); + assertEquals(2, computationResult.getDimensionResults().size(), "Wrong number of result returned"); + + // Check the result for the MANAGED_SYSTEMS dimension + computationResult.getResultForDimension(BillingDimension.MANAGED_SYSTEMS) + .ifPresentOrElse( + result -> assertEquals(3L, result.getCount(), "Wrong count for dimension MANAGED_SYSTEMS"), + () -> fail("No result for dimension MANAGED_SYSTEMS") + ); + + // Check the result for the MONITORING dimension + computationResult.getResultForDimension(BillingDimension.MONITORING) + .ifPresentOrElse( + result -> assertEquals(1L, result.getCount(), "Wrong count for dimension MONITORING"), + () -> fail("No result for dimension MONITORING") + ); + } + + private void createPaygSLESSapServer() { + Server server = MinionServerFactoryTest.createTestMinionServer(user); + server.setServerArch(ServerFactory.lookupServerArchByName(ARCH_X86_64)); + server.setPayg(true); + ServerFactory.save(server); + + installSUSEProductsOnServer(server, Set.of( + createTestSUSEProduct(user, "sles_sap", "15.4", ARCH_X86_64, "AiO", true), + createTestSUSEProduct(user, "sle-module-basesystem", "15.4", ARCH_X86_64, "MODULE", false), + createTestSUSEProduct(user, "sle-manager-tools", "15", ARCH_X86_64, "SLE-M-T", false) + )); + } + + private void createSLES12Server() { + Server server = MinionServerFactoryTest.createTestMinionServer(user); + server.setServerArch(ServerFactory.lookupServerArchByName(ARCH_IBM_Z)); + ServerFactory.save(server); + + installSUSEProductsOnServer(server, Set.of( + createTestSUSEProduct(user, "sles", "12.3", ARCH_IBM_Z, "SLES-Z", true) + )); + } + + private void createOpenSUSEServer() { + Server server = MinionServerFactoryTest.createTestMinionServer(user); + server.setServerArch(ServerFactory.lookupServerArchByName(ARCH_X86_64)); + ServerFactory.save(server); + + systemEntitlementManager.addEntitlementToServer(server, EntitlementManager.MONITORING); + + installSUSEProductsOnServer(server, Set.of( + createTestSUSEProduct(user, "opensuse", "15.2", ARCH_X86_64, "OPENSUSE", true), + createTestSUSEProduct(user, "sle-manager-tools", "15", ARCH_X86_64, "SLE-M-T", false) + )); + } + + private void createSUSEManagerProxy() { + Server server = MinionServerFactoryTest.createTestMinionServer(user); + server.setServerArch(ServerFactory.lookupServerArchByName(ARCH_X86_64)); + ServerFactory.save(server); + + installSUSEProductsOnServer(server, Set.of( + createTestSUSEProduct(user, "suse-manager-proxy", "4.3", ARCH_X86_64, "SMP", true), + createTestSUSEProduct(user, "sle-module-basesystem", "15.4", ARCH_X86_64, "MODULE", false), + createTestSUSEProduct(user, "sle-module-server-applications", "15.4", ARCH_X86_64, "MODULE", false), + createTestSUSEProduct(user, "sle-module-suse-manager-proxy", "15.4", ARCH_X86_64, "MODULE", false) + )); + } + + private void createTraditionalClient() { + Server server = ServerFactoryTest.createUnentitledTestServer( + user, true, ServerFactoryTest.TYPE_SERVER_NORMAL, new Date() + ); + server.setServerArch(ServerFactory.lookupServerArchByName(ARCH_X86_64)); + ServerFactory.save(server); + + systemEntitlementManager.setBaseEntitlement(server, EntitlementManager.MANAGEMENT); + + installSUSEProductsOnServer(server, Set.of( + createTestSUSEProduct(user, "sles_sap", "12", ARCH_X86_64, "AiO", true), + createTestSUSEProduct(user, "sles-ltss", "12", ARCH_X86_64, "SLES12-GA-LTSS-X86", false), + createTestSUSEProduct(user, "sle-module-legacy", "12", ARCH_X86_64, "MODULE", false) + )); + } +} diff --git a/java/code/src/com/redhat/rhn/taskomatic/task/payg/test/PaygUpdateAuthTaskTest.java b/java/code/src/com/redhat/rhn/taskomatic/task/payg/test/PaygUpdateAuthTaskTest.java index c824093bab30..9a4d674fceff 100644 --- a/java/code/src/com/redhat/rhn/taskomatic/task/payg/test/PaygUpdateAuthTaskTest.java +++ b/java/code/src/com/redhat/rhn/taskomatic/task/payg/test/PaygUpdateAuthTaskTest.java @@ -16,25 +16,43 @@ package com.redhat.rhn.taskomatic.task.payg.test; import static org.junit.jupiter.api.Assertions.assertEquals; +import static org.junit.jupiter.api.Assertions.assertNotNull; import static org.junit.jupiter.api.Assertions.assertNull; +import static org.junit.jupiter.api.Assertions.assertTrue; import com.redhat.rhn.common.hibernate.HibernateFactory; +import com.redhat.rhn.domain.channel.ChannelFactory; +import com.redhat.rhn.domain.channel.ContentSource; +import com.redhat.rhn.domain.channel.SslContentSource; import com.redhat.rhn.domain.cloudpayg.CloudRmtHostFactory; import com.redhat.rhn.domain.cloudpayg.PaygSshData; import com.redhat.rhn.domain.cloudpayg.PaygSshDataFactory; +import com.redhat.rhn.domain.credentials.Credentials; +import com.redhat.rhn.domain.credentials.CredentialsFactory; import com.redhat.rhn.domain.notification.UserNotificationFactory; import com.redhat.rhn.domain.notification.types.NotificationType; +import com.redhat.rhn.domain.org.OrgFactory; +import com.redhat.rhn.domain.product.SUSEProductFactory; +import com.redhat.rhn.domain.scc.SCCCachingFactory; import com.redhat.rhn.frontend.xmlrpc.test.BaseHandlerTestCase; +import com.redhat.rhn.manager.content.ContentSyncManager; import com.redhat.rhn.taskomatic.task.payg.PaygAuthDataExtractor; import com.redhat.rhn.taskomatic.task.payg.PaygDataExtractException; import com.redhat.rhn.taskomatic.task.payg.PaygUpdateAuthTask; import com.redhat.rhn.taskomatic.task.payg.beans.PaygInstanceInfo; import com.redhat.rhn.taskomatic.task.payg.beans.PaygProductInfo; +import com.redhat.rhn.testing.TestUtils; +import com.suse.cloud.CloudPaygManager; + +import com.github.tomakehurst.wiremock.WireMockServer; +import com.github.tomakehurst.wiremock.client.WireMock; +import com.github.tomakehurst.wiremock.core.WireMockConfiguration; import com.google.gson.Gson; import com.google.gson.GsonBuilder; import com.jcraft.jsch.JSchException; +import org.apache.commons.io.FileUtils; import org.jmock.Expectations; import org.jmock.imposters.ByteBuddyClassImposteriser; import org.jmock.junit5.JUnit5Mockery; @@ -45,12 +63,20 @@ import org.junit.jupiter.api.extension.ExtendWith; import org.junit.jupiter.api.extension.RegisterExtension; +import java.io.BufferedReader; +import java.io.File; +import java.io.InputStreamReader; +import java.net.HttpURLConnection; +import java.nio.file.Files; +import java.nio.file.Path; import java.time.Instant; import java.util.Date; import java.util.HashMap; import java.util.LinkedList; import java.util.List; import java.util.Map; +import java.util.Objects; +import java.util.stream.Collectors; @ExtendWith(JUnit5Mockery.class) public class PaygUpdateAuthTaskTest extends BaseHandlerTestCase { @@ -62,6 +88,11 @@ public class PaygUpdateAuthTaskTest extends BaseHandlerTestCase { .serializeNulls() .create(); + private static final String PRODUCTS_UNSCOPED = + "/com/redhat/rhn/manager/content/test/smallBase/productsUnscoped.json"; + private static final String PRODUCT_TREE = "/com/redhat/rhn/manager/content/test/smallBase/product_tree.json"; + private static final String UPGRADE_PATHS = "/com/redhat/rhn/manager/content/test/smallBase/upgrade_paths.json"; + @RegisterExtension protected static final JUnit5Mockery CONTEXT = new JUnit5Mockery() {{ setThreadingPolicy(new Synchroniser()); @@ -82,6 +113,7 @@ public void setUp() throws Exception { super.setUp(); clearDb(); + PAYG_DATA_TASK.setCloudPaygManager(new CloudPaygManager()); paygData = createPaygSshData(); PaygSshDataFactory.savePaygSshData(paygData); paygInstanceInfo = createPaygInstanceInfo(); @@ -97,12 +129,184 @@ public void tearDown() throws Exception { } private void clearDb() { + SCCCachingFactory.clearRepositories(); + SCCCachingFactory.clearSubscriptions(); + SUSEProductFactory.findAllSUSEProducts().forEach(SUSEProductFactory::remove); + CredentialsFactory.listSCCCredentials().forEach(CredentialsFactory::removeCredentials); CloudRmtHostFactory.lookupCloudRmtHosts().forEach(CloudRmtHostFactory::deleteCloudRmtHost); PaygSshDataFactory.lookupPaygSshData().forEach(PaygSshDataFactory::deletePaygSshData); UserNotificationFactory.deleteNotificationMessagesBefore(Date.from(Instant.now())); HibernateFactory.commitTransaction(); } + @Test + public void testLocalhostPaygConnection() throws Exception { + CONTEXT.checking(new Expectations() { + { + oneOf(paygAuthDataExtractorMock).extractAuthData(with(any(PaygSshData.class))); + will(returnValue(paygInstanceInfo)); + oneOf(paygAuthDataExtractorMock).extractAuthData(with(any(PaygSshData.class))); + will(returnValue(paygInstanceInfo)); + oneOf(paygAuthDataExtractorMock).extractAuthData(with(any(PaygSshData.class))); + will(returnValue(paygInstanceInfo)); + }}); + CloudPaygManager mgr = new CloudPaygManager() { + @Override + public boolean isPaygInstance() { + return true; + } + }; + PAYG_DATA_TASK.setCloudPaygManager(mgr); + PAYG_DATA_TASK.execute(null); + for (PaygSshData outPaygData : PaygSshDataFactory.lookupPaygSshData()) { + switch (outPaygData.getHost()) { + case "localhost": + assertEquals("SUSE Manager PAYG", outPaygData.getDescription()); + assertEquals("root", outPaygData.getUsername()); + assertEquals("https://smt-ec2.susecloud.net/repo", outPaygData.getCredentials().getUrl()); + //Fake URL for next test + outPaygData.getCredentials().setUrl("http://localhost:8888/repo"); + break; + case "my-instance": + assertEquals("username", outPaygData.getUsername()); + assertEquals("password", outPaygData.getPassword()); + assertEquals(21, outPaygData.getPort()); + break; + default: + assertTrue(false, "unexpected result"); + } + } + + WireMockServer wireMockServer = new WireMockServer(WireMockConfiguration.wireMockConfig().port(8888)); + wireMockServer.start(); + + WireMock.configureFor("localhost", 8888); + String productsUnscoped = new BufferedReader(new InputStreamReader( + PaygUpdateAuthTaskTest.class.getResourceAsStream(PRODUCTS_UNSCOPED))) + .lines().collect(Collectors.joining("\n")); + + String productTree = new BufferedReader(new InputStreamReader( + PaygUpdateAuthTaskTest.class.getResourceAsStream(PRODUCT_TREE))) + .lines().collect(Collectors.joining("\n")); + + WireMock.stubFor( + WireMock.get(WireMock.urlPathEqualTo("/connect/organizations/products/unscoped")) + .willReturn(WireMock.aResponse() + .withStatus(HttpURLConnection.HTTP_OK) + .withHeader("Content-Type", "application/json") + .withBody(productsUnscoped))); + + WireMock.stubFor( + WireMock.get(WireMock.urlPathEqualTo("/suma/product_tree.json")) + .willReturn(WireMock.aResponse() + .withStatus(HttpURLConnection.HTTP_OK) + .withHeader("Content-Type", "application/json") + .withBody(productTree))); + + Path tmpLogDir = Files.createTempDirectory("scc-data"); + try { + ContentSyncManager csm = new ContentSyncManager(tmpLogDir, mgr); + csm.setUpgradePathsJson(new File(TestUtils.findTestData(UPGRADE_PATHS).getPath())); + csm.updateSUSEProducts(csm.getProducts()); + + WireMock.verify(WireMock.getRequestedFor( + WireMock.urlPathEqualTo("/connect/organizations/products/unscoped"))); + WireMock.verify(WireMock.getRequestedFor( + WireMock.urlPathEqualTo("/suma/product_tree.json"))); + wireMockServer.stop(); + } + finally { + if (Objects.nonNull(tmpLogDir)) { + FileUtils.forceDelete(tmpLogDir.toFile()); + } + } + + mgr = new CloudPaygManager() { + @Override + public boolean isPaygInstance() { + return false; + } + }; + PAYG_DATA_TASK.setCloudPaygManager(mgr); + PAYG_DATA_TASK.execute(null); + for (PaygSshData outPaygData : PaygSshDataFactory.lookupPaygSshData()) { + switch (outPaygData.getHost()) { + case "my-instance": + assertEquals("username", outPaygData.getUsername()); + assertEquals("password", outPaygData.getPassword()); + assertEquals(21, outPaygData.getPort()); + break; + default: + assertTrue(false, "unexpected result"); + } + } + } + public void testRHUIConnection() throws Exception { + PaygInstanceInfo rhuiInstanceInfo = createRHUIInstanceInfo(); + CONTEXT.checking(new Expectations() { + { + oneOf(paygAuthDataExtractorMock).extractAuthData(with(any(PaygSshData.class))); + will(returnValue(rhuiInstanceInfo)); + }}); + PAYG_DATA_TASK.execute(null); + for (PaygSshData outPaygData : PaygSshDataFactory.lookupPaygSshData()) { + Credentials creds = outPaygData.getCredentials(); + assertEquals("rhui", creds.getType().getLabel()); + assertEquals("RHUI", creds.getUsername()); + assertEquals(" ", creds.getPassword()); + Map extraAuthData = GSON.fromJson(new String(creds.getExtraAuthData()), Map.class); + assertEquals(extraAuthData.size(), 2); + assertEquals("PGRvY3VtZW50PnsKICAiYWNjb3VudElkIiA6ICI2NDEwODAwN", extraAuthData.get("X-RHUI-ID")); + assertEquals("WStaWWtsN0dNY1FJeHNLK3BPYlcyZ3JqeHBFR3g4TkRPejBtRmdEakJW", + extraAuthData.get("X-RHUI-SIGNATURE")); + + + for (ContentSource cs : ChannelFactory.lookupContentSources(OrgFactory.lookupById(1L))) { + long cid = creds.getId(); + String dCertFmt = String.format("RHUI %s %s (C%d)", "Client Certificate", "%s", cid); + String dKeyFmt = String.format("RHUI %s %s (C%d)", "Private Key", "%s", cid); + String dCa = String.format("RHUI %s %s (C%d)", "CA Certificate", "ca-cert.crt", cid); + + if (cs.getLabel().equals("repo-label-1-c" + cid)) { + String dCert = String.format(dCertFmt, "repo-1.crt"); + String dKey = String.format(dKeyFmt, "repo-1.key"); + + assertEquals("http://example.domain.top/path/to/repository_1?credentials=mirrcred_" + cid, + cs.getSourceUrl()); + assertEquals(1, cs.getSslSets().size()); + SslContentSource sslcerts = cs.getSslSets().stream().findFirst().orElseThrow(); + + assertEquals(dCert, sslcerts.getClientCert().getDescription()); + assertEquals("CLIENT CERTIFICATE 1", sslcerts.getClientCert().getKeyString()); + + assertEquals(dKey, sslcerts.getClientKey().getDescription()); + assertEquals("CLIENT PRIVATE KEY 1", sslcerts.getClientKey().getKeyString()); + + assertEquals(dCa, sslcerts.getCaCert().getDescription()); + assertEquals("CA CERTIFICATE", sslcerts.getCaCert().getKeyString()); + } + else if (cs.getLabel().equals("repo-label-2-c" + cid)) { + String dCert = String.format(dCertFmt, "repo-2.crt"); + String dKey = String.format(dKeyFmt, "repo-2.key"); + + assertEquals("http://example.domain.top/path/to/repository_2?credentials=mirrcred_" + cid, + cs.getSourceUrl()); + assertEquals(1, cs.getSslSets().size()); + SslContentSource sslcerts = cs.getSslSets().stream().findFirst().orElseThrow(); + + assertEquals(dCert, sslcerts.getClientCert().getDescription()); + assertEquals("CLIENT CERTIFICATE 2", sslcerts.getClientCert().getKeyString()); + + assertEquals(dKey, sslcerts.getClientKey().getDescription()); + assertEquals("CLIENT PRIVATE KEY 2", sslcerts.getClientKey().getKeyString()); + + assertEquals(dCa, sslcerts.getCaCert().getDescription()); + assertEquals("CA CERTIFICATE", sslcerts.getCaCert().getKeyString()); + } + } + } + } + @Test public void testJschException() throws Exception { CONTEXT.checking(new Expectations() { @@ -135,6 +339,72 @@ public void testPaygDataExtractException() throws Exception { UserNotificationFactory.listAllNotificationMessages().get(0).getType()); } + /** + * Test PAYG Instance shutdown. On first Error the credentials should not yet been invalidated. + * This should happen on the second try which failed. When the connection is restored, + * the credentials should be restored as well. + * @throws Exception + */ + @Test + public void testPaygDataExtractExceptionInvalidateCredentials() throws Exception { + CONTEXT.checking(new Expectations() { + { + oneOf(paygAuthDataExtractorMock).extractAuthData(with(any(PaygSshData.class))); + will(returnValue(paygInstanceInfo)); + oneOf(paygAuthDataExtractorMock).extractAuthData(with(any(PaygSshData.class))); + will(throwException(new PaygDataExtractException("My PaygDataExtractException"))); + oneOf(paygAuthDataExtractorMock).extractAuthData(with(any(PaygSshData.class))); + will(throwException(new PaygDataExtractException("My PaygDataExtractException"))); + oneOf(paygAuthDataExtractorMock).extractAuthData(with(any(PaygSshData.class))); + will(returnValue(paygInstanceInfo)); + }}); + // first call successfull - set credentials and a header + PAYG_DATA_TASK.execute(null); + paygData = HibernateFactory.reload(paygData); + assertEquals(paygData.getStatus(), PaygSshData.Status.S); + Credentials creds = paygData.getCredentials(); + assertNotNull(creds); + assertEquals("0e248802", creds.getPassword()); + assertEquals("{\"X-Instance-Data\":\"PGRvY3VtZW50PnsKICAiYWNjb3VudElkIiA6ICI2NDEwODAwN\"}", + new String(creds.getExtraAuthData())); + + // second call failed - set status to Error, but keep credentials + PAYG_DATA_TASK.execute(null); + paygData = HibernateFactory.reload(paygData); + + assertContains(paygData.getErrorMessage(), "My PaygDataExtractException"); + assertEquals(paygData.getStatus(), PaygSshData.Status.E); + assertEquals(1, UserNotificationFactory.listAllNotificationMessages().size()); + assertEquals(NotificationType.PaygAuthenticationUpdateFailed, + UserNotificationFactory.listAllNotificationMessages().get(0).getType()); + creds = paygData.getCredentials(); + assertNotNull(creds); + assertEquals("0e248802", creds.getPassword()); + assertEquals("{\"X-Instance-Data\":\"PGRvY3VtZW50PnsKICAiYWNjb3VudElkIiA6ICI2NDEwODAwN\"}", + new String(creds.getExtraAuthData())); + + // third call failed - invalidate credentials + PAYG_DATA_TASK.execute(null); + paygData = HibernateFactory.reload(paygData); + + assertContains(paygData.getErrorMessage(), "My PaygDataExtractException"); + assertEquals(paygData.getStatus(), PaygSshData.Status.E); + creds = paygData.getCredentials(); + assertNotNull(creds); + assertEquals("invalidated", creds.getPassword()); + assertEquals("{}", new String(creds.getExtraAuthData())); + + // forth call successfull - restore credentials and a header again + PAYG_DATA_TASK.execute(null); + paygData = HibernateFactory.reload(paygData); + assertEquals(paygData.getStatus(), PaygSshData.Status.S); + creds = paygData.getCredentials(); + assertNotNull(creds); + assertEquals("0e248802", creds.getPassword()); + assertEquals("{\"X-Instance-Data\":\"PGRvY3VtZW50PnsKICAiYWNjb3VudElkIiA6ICI2NDEwODAwN\"}", + new String(creds.getExtraAuthData())); + } + @Test public void testGenericException() throws Exception { CONTEXT.checking(new Expectations() { @@ -188,14 +458,45 @@ private PaygInstanceInfo createPaygInstanceInfo() { basicAuth.put("username", "SCC_05c394f"); basicAuth.put("password", "0e248802"); - String headerAuth = "X-Instance-Data:PGRvY3VtZW50PnsKICAiYWNjb3VudElkIiA6ICI2NDEwODAwN"; + Map headerAuth = new HashMap<>(); + headerAuth.put("X-Instance-Data", "PGRvY3VtZW50PnsKICAiYWNjb3VudElkIiA6ICI2NDEwODAwN"); Map rmtHost = new HashMap<>(); rmtHost.put("hostname", "smt-ec2.susecloud.net"); rmtHost.put("ip", "18.156.40.199"); rmtHost.put("server_ca", "-----BEGIN CERTIFICATE-----"); - PaygInstanceInfo info = new PaygInstanceInfo(products, basicAuth, headerAuth, rmtHost); + return new PaygInstanceInfo(products, basicAuth, headerAuth, rmtHost); + } + + private PaygInstanceInfo createRHUIInstanceInfo() { + Map headerAuth = new HashMap<>(); + headerAuth.put("X-RHUI-ID", "PGRvY3VtZW50PnsKICAiYWNjb3VudElkIiA6ICI2NDEwODAwN"); + headerAuth.put("X-RHUI-SIGNATURE", "WStaWWtsN0dNY1FJeHNLK3BPYlcyZ3JqeHBFR3g4TkRPejBtRmdEakJW"); + + Map> repositories = new HashMap<>(); + Map repodata = new HashMap<>(); + repodata.put("url", "http://example.domain.top/path/to/repository_1"); + repodata.put("sslclientcert", "/etc/pki/rhui/product/repo-1.crt"); + repodata.put("sslclientkey", "/etc/pki/rhui/repo-1.key"); + repodata.put("sslcacert", "/etc/pki/rhui/ca-cert.crt"); + repositories.put("repo-label-1", repodata); + + repodata = new HashMap<>(); + repodata.put("url", "http://example.domain.top/path/to/repository_2"); + repodata.put("sslclientcert", "/etc/pki/rhui/product/repo-2.crt"); + repodata.put("sslclientkey", "/etc/pki/rhui/repo-2.key"); + repodata.put("sslcacert", "/etc/pki/rhui/ca-cert.crt"); + repositories.put("repo-label-2", repodata); + + Map certs = new HashMap<>(); + certs.put("/etc/pki/rhui/product/repo-1.crt", "CLIENT CERTIFICATE 1"); + certs.put("/etc/pki/rhui/repo-1.key", "CLIENT PRIVATE KEY 1"); + certs.put("/etc/pki/rhui/ca-cert.crt", "CA CERTIFICATE"); + certs.put("/etc/pki/rhui/product/repo-2.crt", "CLIENT CERTIFICATE 2"); + certs.put("/etc/pki/rhui/repo-2.key", "CLIENT PRIVATE KEY 2"); + + PaygInstanceInfo info = new PaygInstanceInfo(headerAuth, certs, repositories); return info; } } diff --git a/java/code/src/com/redhat/rhn/taskomatic/task/repomd/ChannelRepodataWorker.java b/java/code/src/com/redhat/rhn/taskomatic/task/repomd/ChannelRepodataWorker.java index 19f03b9246af..91c4b059d738 100644 --- a/java/code/src/com/redhat/rhn/taskomatic/task/repomd/ChannelRepodataWorker.java +++ b/java/code/src/com/redhat/rhn/taskomatic/task/repomd/ChannelRepodataWorker.java @@ -30,6 +30,7 @@ import com.redhat.rhn.domain.contentmgmt.ContentProjectFactory; import com.redhat.rhn.domain.contentmgmt.EnvironmentTarget.Status; import com.redhat.rhn.domain.contentmgmt.SoftwareEnvironmentTarget; +import com.redhat.rhn.domain.rhnpackage.PackageFactory; import com.redhat.rhn.taskomatic.task.TaskConstants; import com.redhat.rhn.taskomatic.task.threaded.QueueWorker; import com.redhat.rhn.taskomatic.task.threaded.TaskQueue; @@ -72,7 +73,7 @@ public ChannelRepodataWorker(Map workItem, Logger parentLogger) Channel channelToProcess = ChannelFactory.lookupByLabel(channelLabelToProcess); // if the channelExists in the db still if (channelToProcess != null && - channelToProcess.getChannelArch().getArchType().getLabel().equalsIgnoreCase("deb")) { + channelToProcess.getChannelArch().getArchType().getLabel().equalsIgnoreCase(PackageFactory.ARCH_TYPE_DEB)) { repoWriter = new DebRepositoryWriter(prefixPath, mountPoint); } else { @@ -136,7 +137,7 @@ public void run() { } } catch (Exception e) { - logger.error(e); + logger.error(e.getMessage(), e); parentQueue.getQueueRun().failed(); // unmark channel to be worked on markInProgress(false); diff --git a/java/code/src/com/redhat/rhn/taskomatic/task/repomd/DebPackageWriter.java b/java/code/src/com/redhat/rhn/taskomatic/task/repomd/DebPackageWriter.java index 1be0a10cce04..29d85da74baf 100644 --- a/java/code/src/com/redhat/rhn/taskomatic/task/repomd/DebPackageWriter.java +++ b/java/code/src/com/redhat/rhn/taskomatic/task/repomd/DebPackageWriter.java @@ -73,6 +73,7 @@ public void addPackage(PackageDto pkgDto) throws IOException { String pkgSnippet = pkgDto.getPrimaryXml(); if (ConfigDefaults.get().useDBRepodata() && !StringUtils.isBlank(pkgSnippet)) { out.write(pkgSnippet); + out.newLine(); return; } StringWriter wrt = new StringWriter(); diff --git a/java/code/src/com/redhat/rhn/taskomatic/task/repomd/RpmRepositoryWriter.java b/java/code/src/com/redhat/rhn/taskomatic/task/repomd/RpmRepositoryWriter.java index fcdd781f3d44..b7d06171790c 100644 --- a/java/code/src/com/redhat/rhn/taskomatic/task/repomd/RpmRepositoryWriter.java +++ b/java/code/src/com/redhat/rhn/taskomatic/task/repomd/RpmRepositoryWriter.java @@ -476,11 +476,8 @@ private void generateSolv(Channel channel) { private void generateBadRepo(Channel channel, String prefix) { log.warn("No repo will be generated for channel {}", channel.getLabel()); deleteRepomdFiles(channel.getLabel(), false); - try { - FileWriter norepo = new FileWriter(prefix + NOREPO_FILE); - norepo.write("No repo will be generated for channel " + - channel.getLabel() + ".\n"); - norepo.close(); + try (FileWriter norepo = new FileWriter(prefix + NOREPO_FILE)) { + norepo.write("No repo will be generated for channel " + channel.getLabel() + ".\n"); } catch (IOException e) { log.warn("Cannot create " + NOREPO_FILE + " file."); @@ -549,29 +546,36 @@ private RepomdIndexData loadRepoMetadataFile(Channel channel, String checksumAlg return null; } - DigestInputStream digestStream; - try { - digestStream = new DigestInputStream(stream, MessageDigest - .getInstance(checksumAlgo)); + try (DigestInputStream digestStream = new DigestInputStream(stream, MessageDigest.getInstance(checksumAlgo))) { + + if (!computeDigest(digestStream)) { + return null; + } + + Date timeStamp = new Date(metadataFile.lastModified()); + + return new RepomdIndexData( + StringUtil.getHexString(digestStream.getMessageDigest().digest()), + null, + timeStamp + ); } - catch (NoSuchAlgorithmException nsae) { + catch (IOException | NoSuchAlgorithmException nsae) { throw new RepomdRuntimeException(nsae); } - byte[] bytes = new byte[10]; + } + private static boolean computeDigest(DigestInputStream digestStream) { try { + byte[] bytes = new byte[10]; while (digestStream.read(bytes) != -1) { - // no-op + // no-op, just fully consume the stream so that the digest is computed } } catch (IOException e) { - return null; + return false; } - - Date timeStamp = new Date(metadataFile.lastModified()); - - return new RepomdIndexData(StringUtil.getHexString(digestStream - .getMessageDigest().digest()), null, timeStamp); + return true; } /** diff --git a/java/code/src/com/redhat/rhn/taskomatic/task/systems/SystemsOverviewUpdateWorker.java b/java/code/src/com/redhat/rhn/taskomatic/task/systems/SystemsOverviewUpdateWorker.java index b07dc0174336..fcf791705cd5 100644 --- a/java/code/src/com/redhat/rhn/taskomatic/task/systems/SystemsOverviewUpdateWorker.java +++ b/java/code/src/com/redhat/rhn/taskomatic/task/systems/SystemsOverviewUpdateWorker.java @@ -62,7 +62,7 @@ public void run() { HibernateFactory.commitTransaction(); } catch (Exception e) { - logger.error(e); + logger.error(e.getMessage(), e); HibernateFactory.rollbackTransaction(); } finally { diff --git a/java/code/src/com/redhat/rhn/taskomatic/task/test/MinionActionChainExecutorTest.java b/java/code/src/com/redhat/rhn/taskomatic/task/test/MinionActionChainExecutorTest.java index b5f8eda2e26f..518e4a95a150 100644 --- a/java/code/src/com/redhat/rhn/taskomatic/task/test/MinionActionChainExecutorTest.java +++ b/java/code/src/com/redhat/rhn/taskomatic/task/test/MinionActionChainExecutorTest.java @@ -32,6 +32,7 @@ import com.redhat.rhn.testing.JMockBaseTestCaseWithUser; import com.redhat.rhn.testing.TestUtils; +import com.suse.cloud.CloudPaygManager; import com.suse.manager.webui.services.SaltServerActionService; import org.jmock.imposters.ByteBuddyClassImposteriser; @@ -122,7 +123,8 @@ public void rejectsActionChainsWithOldEarliestDate() { JobExecutionContext context = new JobExecutionContextImpl(scheduler, firedBundle, job); - MinionActionChainExecutor actionExecutor = new MinionActionChainExecutor(saltServerActionService); + MinionActionChainExecutor actionExecutor = new MinionActionChainExecutor(saltServerActionService, + new CloudPaygManager()); actionExecutor.execute(context); context().assertIsSatisfied(); diff --git a/java/code/src/com/redhat/rhn/taskomatic/task/test/MinionActionExecutorTest.java b/java/code/src/com/redhat/rhn/taskomatic/task/test/MinionActionExecutorTest.java index 69ea6578bdfa..8be2e08927a4 100644 --- a/java/code/src/com/redhat/rhn/taskomatic/task/test/MinionActionExecutorTest.java +++ b/java/code/src/com/redhat/rhn/taskomatic/task/test/MinionActionExecutorTest.java @@ -28,6 +28,7 @@ import com.redhat.rhn.testing.JMockBaseTestCaseWithUser; import com.redhat.rhn.testing.TestUtils; +import com.suse.cloud.CloudPaygManager; import com.suse.manager.webui.services.SaltServerActionService; import org.jmock.imposters.ByteBuddyClassImposteriser; @@ -119,7 +120,7 @@ public void rejectsActionsWithOldEarliestDate() { JobExecutionContext context = new JobExecutionContextImpl(scheduler, firedBundle, job); - MinionActionExecutor actionExecutor = new MinionActionExecutor(saltServerActionService); + MinionActionExecutor actionExecutor = new MinionActionExecutor(saltServerActionService, new CloudPaygManager()); actionExecutor.execute(context); HibernateFactory.getSession().clear(); diff --git a/java/code/src/com/redhat/rhn/taskomatic/task/test/SubscribeChannelsActionTest.java b/java/code/src/com/redhat/rhn/taskomatic/task/test/SubscribeChannelsActionTest.java index 04a8333fb1d3..dd0b9c24b67c 100644 --- a/java/code/src/com/redhat/rhn/taskomatic/task/test/SubscribeChannelsActionTest.java +++ b/java/code/src/com/redhat/rhn/taskomatic/task/test/SubscribeChannelsActionTest.java @@ -39,6 +39,7 @@ import com.redhat.rhn.testing.JMockBaseTestCaseWithUser; import com.redhat.rhn.testing.TestUtils; +import com.suse.cloud.CloudPaygManager; import com.suse.manager.webui.services.SaltServerActionService; import org.jmock.Expectations; @@ -110,7 +111,7 @@ public void testSubscribeChannelsMinions() throws Exception { will(returnValue(dataMap)); }}); - MinionActionExecutor executor = new MinionActionExecutor(saltServerActionService); + MinionActionExecutor executor = new MinionActionExecutor(saltServerActionService, new CloudPaygManager()); executor.execute(ctx); HibernateFactory.getSession().flush(); diff --git a/java/code/src/com/redhat/rhn/taskomatic/task/threaded/TaskQueue.java b/java/code/src/com/redhat/rhn/taskomatic/task/threaded/TaskQueue.java index 0ffc2f018642..35e5ce953f21 100644 --- a/java/code/src/com/redhat/rhn/taskomatic/task/threaded/TaskQueue.java +++ b/java/code/src/com/redhat/rhn/taskomatic/task/threaded/TaskQueue.java @@ -123,7 +123,7 @@ public void run() { unsetTaskQueueDone(); } catch (InterruptedException e) { - queueDriver.getLogger().error(e); + queueDriver.getLogger().error(e.getMessage(), e); HibernateFactory.commitTransaction(); HibernateFactory.closeSession(); HibernateFactory.getSession(); @@ -137,7 +137,7 @@ public void run() { waitForEmptyQueue(); } catch (InterruptedException e) { - queueDriver.getLogger().error(e); + queueDriver.getLogger().error(e.getMessage(), e); HibernateFactory.commitTransaction(); HibernateFactory.closeSession(); HibernateFactory.getSession(); @@ -181,7 +181,7 @@ void shutdown() { Thread.sleep(100); } catch (InterruptedException e) { - queueDriver.getLogger().error(e); + queueDriver.getLogger().error(e.getMessage(), e); return; } } diff --git a/java/code/src/com/redhat/rhn/testing/ImageTestUtils.java b/java/code/src/com/redhat/rhn/testing/ImageTestUtils.java index b26922eeeeeb..a9b614bf4336 100644 --- a/java/code/src/com/redhat/rhn/testing/ImageTestUtils.java +++ b/java/code/src/com/redhat/rhn/testing/ImageTestUtils.java @@ -303,7 +303,7 @@ public static ActivationKey createActivationKey(User user) throws Exception { */ public static Credentials createCredentials() { return CredentialsFactory.createCredentials("testuser", "testpass", - Credentials.TYPE_REGISTRY, null); + Credentials.TYPE_REGISTRY); } /** diff --git a/java/code/src/com/redhat/rhn/testing/RhnBaseTestCase.java b/java/code/src/com/redhat/rhn/testing/RhnBaseTestCase.java index 4c3f638b796b..8772e95eaf0e 100644 --- a/java/code/src/com/redhat/rhn/testing/RhnBaseTestCase.java +++ b/java/code/src/com/redhat/rhn/testing/RhnBaseTestCase.java @@ -14,6 +14,7 @@ */ package com.redhat.rhn.testing; +import static org.junit.jupiter.api.Assertions.assertFalse; import static org.junit.jupiter.api.Assertions.assertNotNull; import static org.junit.jupiter.api.Assertions.assertTrue; import static org.junit.jupiter.api.Assertions.fail; @@ -97,6 +98,16 @@ public static void assertContains(Collection coll, A elem) { assertTrue(coll.contains(elem)); } + /** + * Assert that coll does not contain elem + * @param element type + * @param coll a collection + * @param elem the element that should not be in the collection + */ + public static void assertNotContains(Collection coll, A elem) { + assertFalse(coll.contains(elem)); + } + /** * Assert that coll is not empty * @param coll the collection diff --git a/java/code/src/com/redhat/rhn/webapp/RhnServletListener.java b/java/code/src/com/redhat/rhn/webapp/RhnServletListener.java index ac261e2451a4..7d41c8c47f56 100644 --- a/java/code/src/com/redhat/rhn/webapp/RhnServletListener.java +++ b/java/code/src/com/redhat/rhn/webapp/RhnServletListener.java @@ -57,7 +57,8 @@ public class RhnServletListener implements ServletContextListener { private final SaltReactor saltReactor = new SaltReactor( GlobalInstanceHolder.SALT_API, GlobalInstanceHolder.SYSTEM_QUERY, GlobalInstanceHolder.SALT_SERVER_ACTION_SERVICE, - GlobalInstanceHolder.SALT_UTILS); + GlobalInstanceHolder.SALT_UTILS, + GlobalInstanceHolder.PAYG_MANAGER); private void startMessaging() { // Start the MessageQueue thread listening for diff --git a/java/code/src/com/suse/cloud/CloudPaygManager.java b/java/code/src/com/suse/cloud/CloudPaygManager.java new file mode 100644 index 000000000000..71e78fb6737a --- /dev/null +++ b/java/code/src/com/suse/cloud/CloudPaygManager.java @@ -0,0 +1,402 @@ +/* + * Copyright (c) 2023 SUSE LLC + * + * This software is licensed to you under the GNU General Public License, + * version 2 (GPLv2). There is NO WARRANTY for this software, express or + * implied, including the implied warranties of MERCHANTABILITY or FITNESS + * FOR A PARTICULAR PURPOSE. You should have received a copy of GPLv2 + * along with this software; if not, see + * http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt. + * + * Red Hat trademarks are not licensed under GPLv2. No permission is + * granted to use or replicate Red Hat trademarks that are incorporated + * in this software or its documentation. + */ +package com.suse.cloud; + +import com.redhat.rhn.common.util.http.HttpClientAdapter; +import com.redhat.rhn.domain.credentials.Credentials; +import com.redhat.rhn.domain.credentials.CredentialsFactory; +import com.redhat.rhn.manager.content.ContentSyncManager; +import com.redhat.rhn.manager.satellite.SystemCommandExecutor; +import com.redhat.rhn.taskomatic.TaskomaticApi; +import com.redhat.rhn.taskomatic.TaskomaticApiException; + +import com.google.gson.Gson; +import com.google.gson.GsonBuilder; + +import org.apache.commons.lang3.BooleanUtils; +import org.apache.commons.lang3.StringUtils; +import org.apache.http.HttpResponse; +import org.apache.http.HttpStatus; +import org.apache.http.client.methods.HttpGet; +import org.apache.logging.log4j.LogManager; +import org.apache.logging.log4j.Logger; + +import java.io.File; +import java.io.IOException; +import java.io.InputStream; +import java.nio.charset.StandardCharsets; +import java.nio.file.Files; +import java.nio.file.Path; +import java.time.Duration; +import java.time.Instant; +import java.util.List; +import java.util.concurrent.ExecutionException; + +/** + * Public Cloud PAYG management class + */ +public class CloudPaygManager { + private static final Logger LOG = LogManager.getLogger(CloudPaygManager.class); + protected static Path cspBillingAdapterConfig = new File("/var/lib/csp-billing-adapter/csp-config.json").toPath(); + + private final Gson gson = new GsonBuilder().setDateFormat(CspBillingAdapterStatus.DATE_FORMAT).create(); + + private Boolean isPaygInstance; + private Boolean hasSCCCredentials; + private CloudProvider cloudProvider; + private boolean isCompliant; + private Instant cacheTime; + public enum CloudProvider { + None, + AWS, + AZURE, + GCE + } + + private final TaskomaticApi tapi; + private final ContentSyncManager mgr; + + /** + * Constructor + */ + public CloudPaygManager() { + tapi = new TaskomaticApi(); + mgr = new ContentSyncManager(null, this); + cacheTime = Instant.MIN; + hasSCCCredentials = null; + cloudProvider = CloudProvider.None; + isPaygInstance = null; + isCompliant = false; + } + + /** + * Constructor + * @param tapiIn the taskomatic api object + * @param syncManagerIn the content sync manager object + */ + public CloudPaygManager(TaskomaticApi tapiIn, ContentSyncManager syncManagerIn) { + tapi = tapiIn; + mgr = syncManagerIn; + cacheTime = Instant.MIN; + hasSCCCredentials = null; + cloudProvider = CloudProvider.None; + isPaygInstance = null; + isCompliant = false; + } + + /** + * @return if this is a PAYG cloud instance + */ + public boolean isPaygInstance() { + checkRefreshCache(false); + if (isPaygInstance == null) { + isPaygInstance = detectPaygInstance(); + } + return isPaygInstance; + } + + /** + * @return the CloudProvider + */ + public CloudProvider getCloudProvider() { + checkRefreshCache(false); + if (cloudProvider == CloudProvider.None) { + cloudProvider = detectCloudProvider(); + } + return cloudProvider; + } + + /** + * @return return true when we have SCC credentials + */ + public boolean hasSCCCredentials() { + checkRefreshCache(false); + if (hasSCCCredentials == null) { + hasSCCCredentials = detectHasSCCCredentials(); + } + return hasSCCCredentials; + } + + /** + * Check if SUSE Manager PAYG is operating in a compliant mode + * @return true if not payg or all components works as they should, otherwise false + */ + public boolean isCompliant() { + checkRefreshCache(false); + return isCompliant; + } + + /** + * Check and perform a refresh of the stored data if needed + * @param force if true, force a refresh independent of the time + * @return true when a refresh happened, otherwise false + */ + public boolean checkRefreshCache(boolean force) { + // if isCompliant is false, we re-detect + if (force || !isCompliant || Duration.between(cacheTime, Instant.now()).toHours() >= 1) { + // cached values older than 1 hour - time to refresh + cloudProvider = detectCloudProvider(); + isPaygInstance = detectPaygInstance(); + hasSCCCredentials = detectHasSCCCredentials(); + isCompliant = detectIsCompliant(); + cacheTime = Instant.now(); + return true; + } + return false; + } + + /** + * Only for testing - overwrite the detected provider + * @param providerIn the provider + */ + public void setCloudProvider(CloudProvider providerIn) { + cloudProvider = providerIn; + cacheTime = Instant.now(); + } + + /** + * Only for testing - overwrite the detected isPaygInstance + * @param isPaygInstanceIn is payg instance + */ + public void setPaygInstance(boolean isPaygInstanceIn) { + isPaygInstance = isPaygInstanceIn; + cacheTime = Instant.now(); + } + + /** + * Only for testing - overwrite the detected hasSCCCredentials + * @param hasSCCCredentialsIn has scc credentials + */ + public void setHasSCCCredentials(boolean hasSCCCredentialsIn) { + hasSCCCredentials = hasSCCCredentialsIn; + cacheTime = Instant.now(); + } + + /** + * Only for testing - overwrite the detected isCompliant + * @param isCompliantIn is system compliant + */ + public void setCompliant(boolean isCompliantIn) { + isCompliant = isCompliantIn; + cacheTime = Instant.now(); + } + + private CloudProvider detectCloudProvider() { + if (isFileExecutable("/usr/bin/ec2metadata")) { + return CloudProvider.AWS; + } + else if (isFileExecutable("/usr/bin/azuremetadata")) { + return CloudProvider.AZURE; + } + else if (isFileExecutable("/usr/bin/gcemetadata")) { + return CloudProvider.GCE; + } + return CloudProvider.None; + } + + private boolean detectPaygInstance() { + if (!isFileExecutable("/usr/bin/instance-flavor-check")) { + return false; + } + + try { + return "PAYG".equals(getInstanceType()); + } + catch (ExecutionException ex) { + LOG.error("Unable to identify the instance type. Fallback to BYOS.", ex); + return false; + } + } + + private boolean detectHasSCCCredentials() { + List cl = CredentialsFactory.listSCCCredentials(); + hasSCCCredentials = false; + if (cl.size() > 0) { + for (Credentials c : cl) { + if (mgr.isSCCCredentials(c)) { + hasSCCCredentials = true; + break; + } + } + } + return hasSCCCredentials; + } + + private boolean detectIsCompliant() { + // do not use isPaygInstance() to prevent a loop + if (BooleanUtils.isFalse(isPaygInstance)) { + return true; + } + + // Check if the payg-dimension-computation job is active + try { + if (tapi.lookupScheduleByBunchAndLabel(null, "payg-dimension-computation-bunch", + "payg-dimension-computation-default") == null) { + LOG.error("payg-dimension-computation job is not active"); + return false; + } + } + catch (TaskomaticApiException e) { + LOG.error("Unable to check payg-dimension-computation job is active"); + LOG.info(e.getMessage(), e); + return false; + } + + // files of this package should not be modified + if (hasPackageModifications("billing-data-service")) { + return false; + } + + // we only need to check compliance for SUMA PAYG + try { + if (!requestUrl("http://localhost:18888/").equals("online")) { + LOG.error("Billing Data Service offline"); + return false; + } + } + catch (IOException e) { + LOG.error("Billing Data Service down"); + LOG.info(e.getMessage(), e); + return false; + } + + // files of this package should not be modified + if (hasPackageModifications("csp-billing-adapter-service") || + hasPackageModifications("python3-csp-billing-adapter") || + hasPackageModifications("python3-csp-billing-adapter-local")) { + return false; + } + if (cloudProvider.equals(CloudProvider.AWS) && + hasPackageModifications("python3-csp-billing-adapter-amazon")) { + return false; + } + if (cloudProvider.equals(CloudProvider.AZURE) && + hasPackageModifications("python3-csp-billing-adapter-azure")) { + return false; + } + if (!isServiceRunning("csp-billing-adapter.service")) { + return false; + } + return checkCspBillingAdapterStatus(); + } + + protected boolean checkCspBillingAdapterStatus() { + try { + CspBillingAdapterStatus cspStatus = gson.fromJson( + Files.readString(cspBillingAdapterConfig), CspBillingAdapterStatus.class); + if (!cspStatus.getErrors().isEmpty()) { + LOG.error("CPS Billing Adapter reported errors: {}", String.join("\n", cspStatus.getErrors())); + } + return cspStatus.isBillingApiAccessOk(); + } + catch (Exception e) { + LOG.error("Unable to read CSP Billing Adapter status file"); + LOG.info(e.getMessage(), e); + } + return false; + } + + /** + * Test if the provided service is running + * @param serviceIn service name + * @return true when it is running, otherwise false + */ + protected boolean isServiceRunning(String serviceIn) { + String[] cmd = {"/usr/bin/systemctl", "-q", "is-active", serviceIn}; + SystemCommandExecutor scexec = new SystemCommandExecutor(); + int retcode = scexec.execute(cmd); + if (retcode != 0) { + LOG.error("Service '{}' is not running.", serviceIn); + return false; + } + return true; + } + + /** + * Test if the files of the given package name have modifications. + * It checks only the checksum of the files. Modifications of the permissions + * or ownership are not detected. + * Also if the package is not installed does not result in an error. + * @param pkg the package name to check + * @return true if the package is installed and files were modified, otherwise false + */ + protected boolean hasPackageModifications(String pkg) { + String[] cmd = {"/usr/bin/rpm", "-V", pkg}; + SystemCommandExecutor scexec = new SystemCommandExecutor(); + int retcode = scexec.execute(cmd); + if (retcode != 0) { + // missing packages result in message "package ... is not installed" and will not match "5" + // 5 means checksum changed / file is modified. Example "S.5....T. /path/to/file" + if (scexec.getLastCommandOutput().lines() + .filter(l -> !l.endsWith(".pyc")) + .anyMatch(l -> l.charAt(2) == '5')) { + LOG.error("Package '{}' was modifified", pkg); + LOG.info(scexec.getLastCommandOutput()); + return true; + } + } + return false; + } + + /** + * Check if file exists and is executable + * @param filename a filename to check + * @return returns true when file exists and is executable + */ + protected boolean isFileExecutable(String filename) { + return Files.isExecutable(Path.of(filename)); + } + + /** + * Executes the script to check the instance type and returns it. + * @return PAYG or BYOS depending on the instance type. + * @throws ExecutionException when the script is not successfully executed + */ + protected String getInstanceType() throws ExecutionException { + try { + Process proc = Runtime.getRuntime().exec("/usr/bin/sudo /usr/bin/instance-flavor-check"); + proc.waitFor(); + + try (InputStream inputStream = proc.getInputStream()) { + String type = StringUtils.trim(new String(inputStream.readAllBytes(), StandardCharsets.UTF_8)); + LOG.debug("Script execution returned {} with exit code {}", type, proc.exitValue()); + return type; + } + } + catch (InterruptedException ex) { + Thread.currentThread().interrupt(); + + throw new ExecutionException("Interrupted while checking the instance type", ex); + } + catch (Exception ex) { + throw new ExecutionException("Unexpected Error while checking the instance type", ex); + } + } + + + protected String requestUrl(String url) throws IOException { + HttpClientAdapter httpClient = new HttpClientAdapter(); + HttpGet httpGet = new HttpGet(url); + HttpResponse httpResponse = httpClient.executeRequest(httpGet); + if (httpResponse.getStatusLine().getStatusCode() == HttpStatus.SC_OK) { + return new String(httpResponse.getEntity().getContent().readAllBytes(), StandardCharsets.UTF_8); + } + else { + throw new IOException("error downloading " + url + " status code " + + httpResponse.getStatusLine().getStatusCode()); + } + } + +} diff --git a/java/code/src/com/suse/cloud/CspBillingAdapterStatus.java b/java/code/src/com/suse/cloud/CspBillingAdapterStatus.java new file mode 100644 index 000000000000..a51770625f8a --- /dev/null +++ b/java/code/src/com/suse/cloud/CspBillingAdapterStatus.java @@ -0,0 +1,81 @@ +/* + * Copyright (c) 2023 SUSE LLC + * + * This software is licensed to you under the GNU General Public License, + * version 2 (GPLv2). There is NO WARRANTY for this software, express or + * implied, including the implied warranties of MERCHANTABILITY or FITNESS + * FOR A PARTICULAR PURPOSE. You should have received a copy of GPLv2 + * along with this software; if not, see + * http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt. + * + * Red Hat trademarks are not licensed under GPLv2. No permission is + * granted to use or replicate Red Hat trademarks that are incorporated + * in this software or its documentation. + */ +package com.suse.cloud; + +import com.google.gson.annotations.SerializedName; + +import java.util.Date; +import java.util.List; + +/** + * CspBillingAdapter Status + */ +public class CspBillingAdapterStatus { + + public static final String DATE_FORMAT = "yyyy-MM-dd'T'HH:mm:ss.SSSz"; + + @SerializedName("billing_api_access_ok") + private boolean billingApiAccessOk; + @SerializedName("timestamp") + private Date timestamp; + @SerializedName("expire") + private Date expire; + @SerializedName("errors") + private List errors; + + /** + * @return return true if api access was ok + */ + public boolean isBillingApiAccessOk() { + return billingApiAccessOk; + } + + private void setBillingApiAccessOk(Boolean billingApiAccessOkIn) { + billingApiAccessOk = billingApiAccessOkIn; + } + + /** + * @return return the timestamp + */ + public Date getTimestamp() { + return timestamp; + } + + private void setTimestamp(Date timestampIn) { + timestamp = timestampIn; + } + + /** + * @return return the expire timestamp + */ + public Date getExpire() { + return expire; + } + + private void setExpire(Date expireIn) { + expire = expireIn; + } + + /** + * @return return a list of errors + */ + public List getErrors() { + return errors; + } + + private void setErrors(List errorsIn) { + errors = errorsIn; + } +} diff --git a/java/code/src/com/suse/cloud/domain/BillingDimension.java b/java/code/src/com/suse/cloud/domain/BillingDimension.java new file mode 100644 index 000000000000..cc1527b77c4c --- /dev/null +++ b/java/code/src/com/suse/cloud/domain/BillingDimension.java @@ -0,0 +1,57 @@ +/* + * Copyright (c) 2023 SUSE LLC + * + * This software is licensed to you under the GNU General Public License, + * version 2 (GPLv2). There is NO WARRANTY for this software, express or + * implied, including the implied warranties of MERCHANTABILITY or FITNESS + * FOR A PARTICULAR PURPOSE. You should have received a copy of GPLv2 + * along with this software; if not, see + * http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt. + * + * Red Hat trademarks are not licensed under GPLv2. No permission is + * granted to use or replicate Red Hat trademarks that are incorporated + * in this software or its documentation. + */ + +package com.suse.cloud.domain; + +import java.util.Arrays; +import java.util.Objects; + +public enum BillingDimension { + MANAGED_SYSTEMS, + MONITORING; + + private final String label; + + /** + * Default constructor, uses the enum name converted to lowercase as label + */ + BillingDimension() { + this(null); + } + + /** + * Constructor to explicitly specify a label + * @param labelIn the label for this enum value + */ + BillingDimension(String labelIn) { + this.label = labelIn != null ? labelIn : this.name().toLowerCase(); + } + + public String getLabel() { + return label; + } + + /** + * Retrieve the {@link BillingDimension} with the given label + * @param label the label of the dimension + * @return the enum value corresponding to the specified label + */ + public static BillingDimension byLabel(String label) { + return Arrays.stream(BillingDimension.values()) + .filter(e -> Objects.equals(e.getLabel(), label)) + .findFirst() + .orElseThrow(() -> new IllegalArgumentException("Invalid BillingDimension value " + label)); + } +} diff --git a/java/code/src/com/suse/cloud/domain/BillingDimensionEnumType.java b/java/code/src/com/suse/cloud/domain/BillingDimensionEnumType.java new file mode 100644 index 000000000000..36d135d9bb46 --- /dev/null +++ b/java/code/src/com/suse/cloud/domain/BillingDimensionEnumType.java @@ -0,0 +1,39 @@ +/* + * Copyright (c) 2023 SUSE LLC + * + * This software is licensed to you under the GNU General Public License, + * version 2 (GPLv2). There is NO WARRANTY for this software, express or + * implied, including the implied warranties of MERCHANTABILITY or FITNESS + * FOR A PARTICULAR PURPOSE. You should have received a copy of GPLv2 + * along with this software; if not, see + * http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt. + * + * Red Hat trademarks are not licensed under GPLv2. No permission is + * granted to use or replicate Red Hat trademarks that are incorporated + * in this software or its documentation. + */ + +package com.suse.cloud.domain; + +import com.redhat.rhn.domain.errata.CustomEnumType; + +import java.sql.Types; + +/** + * Maps the {@link BillingDimension} enum to its integer id + */ +public class BillingDimensionEnumType extends CustomEnumType { + + /** + * Default Constructor + */ + public BillingDimensionEnumType() { + super(BillingDimension.class, String.class, BillingDimension::getLabel, v -> BillingDimension.byLabel(v)); + } + + @Override + public int getSqlType() { + // Returning other, as this is mapped to a PostgreSQL enum, not to a VARCHAR + return Types.OTHER; + } +} diff --git a/java/code/src/com/suse/cloud/domain/PaygDimensionComputation.java b/java/code/src/com/suse/cloud/domain/PaygDimensionComputation.java new file mode 100644 index 000000000000..b0f2308b569d --- /dev/null +++ b/java/code/src/com/suse/cloud/domain/PaygDimensionComputation.java @@ -0,0 +1,198 @@ +/* + * Copyright (c) 2023 SUSE LLC + * + * This software is licensed to you under the GNU General Public License, + * version 2 (GPLv2). There is NO WARRANTY for this software, express or + * implied, including the implied warranties of MERCHANTABILITY or FITNESS + * FOR A PARTICULAR PURPOSE. You should have received a copy of GPLv2 + * along with this software; if not, see + * http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt. + * + * Red Hat trademarks are not licensed under GPLv2. No permission is + * granted to use or replicate Red Hat trademarks that are incorporated + * in this software or its documentation. + */ + +package com.suse.cloud.domain; + +import org.apache.commons.lang3.builder.EqualsBuilder; +import org.apache.commons.lang3.builder.HashCodeBuilder; + +import java.util.Date; +import java.util.HashSet; +import java.util.Optional; +import java.util.Set; +import java.util.StringJoiner; + +import javax.persistence.CascadeType; +import javax.persistence.Column; +import javax.persistence.Entity; +import javax.persistence.FetchType; +import javax.persistence.GeneratedValue; +import javax.persistence.GenerationType; +import javax.persistence.Id; +import javax.persistence.NamedQuery; +import javax.persistence.OneToMany; +import javax.persistence.SequenceGenerator; +import javax.persistence.Table; +import javax.persistence.Temporal; +import javax.persistence.TemporalType; + +/** + * Entity that represent the result of computation made by + * {@link com.redhat.rhn.taskomatic.task.payg.PaygComputeDimensionsTask}. + */ +@Entity +@Table(name = "susepaygdimensioncomputation") +@NamedQuery( + name = "PaygDimensionComputation.lookupById", + query = "FROM PaygDimensionComputation AS c WHERE c.id = :id" +) +@NamedQuery( + name = "PaygDimensionComputation.getLatestSuccessful", + query = "FROM PaygDimensionComputation AS c WHERE c.success = true ORDER BY c.timestamp DESC" +) +public class PaygDimensionComputation { + + private Long id; + + private Date timestamp; + + private boolean success; + + private Set dimensionResults; + + /** + * Default constructor. + */ + public PaygDimensionComputation() { + this.timestamp = new Date(); + this.dimensionResults = new HashSet<>(); + } + + @Id + @Column(name = "id") + @GeneratedValue(strategy = GenerationType.SEQUENCE, generator = "paygDimensionComputation_seq") + @SequenceGenerator(name = "paygDimensionComputation_seq", sequenceName = "susePaygDimensionComputation_id_seq", + allocationSize = 1) + public Long getId() { + return id; + } + + public void setId(Long idIn) { + this.id = idIn; + } + + @Temporal(TemporalType.TIMESTAMP) + @Column(name = "timestamp") + public Date getTimestamp() { + return timestamp; + } + + public void setTimestamp(Date timestampIn) { + this.timestamp = timestampIn; + } + + @Column(name = "success") + public boolean isSuccess() { + return success; + } + + public void setSuccess(boolean successIn) { + this.success = successIn; + } + + @OneToMany(fetch = FetchType.LAZY, cascade = CascadeType.ALL, orphanRemoval = true, mappedBy = "computation") + public Set getDimensionResults() { + return dimensionResults; + } + + public void setDimensionResults(Set dimensionResultsIn) { + this.dimensionResults = dimensionResultsIn; + } + + /** + * Add the result for a specific dimension + * @param dimension the computed dimension + * @param count the number of instances for this dimension + */ + public void addDimensionResult(BillingDimension dimension, long count) { + if (dimension == null) { + return; + } + + if (dimensionResults == null) { + dimensionResults = new HashSet<>(); + } + else { + removeDimension(dimension); + } + + dimensionResults.add(new PaygDimensionResult(dimension, this, count)); + } + + /** + * Removes the result for the specified dimension + * @param dimension the dimension to remove from the stored results + * @return true if the dimension existed, false otherwise + */ + public boolean removeDimension(BillingDimension dimension) { + if (dimensionResults == null || dimension == null) { + return false; + } + + return dimensionResults.removeIf(result -> dimension.equals(result.getDimension())); + } + + /** + * Returns the result corresponding to the given dimension + * @param dimension the dimension to retrieve + * @return the result if present or null + */ + public Optional getResultForDimension(BillingDimension dimension) { + return dimensionResults.stream() + .filter(result -> dimension.equals(result.getDimension())) + .findFirst(); + } + + /** + * Removes all dimensions results previously added. + */ + public void clearDimensions() { + dimensionResults = null; + } + + @Override + public boolean equals(Object o) { + if (this == o) { + return true; + } + + if (!(o instanceof PaygDimensionComputation)) { + return false; + } + + PaygDimensionComputation that = (PaygDimensionComputation) o; + + return new EqualsBuilder().append(success, that.success).append(id, that.id) + .append(timestamp, that.timestamp) + .append(dimensionResults, that.dimensionResults) + .isEquals(); + } + + @Override + public int hashCode() { + return new HashCodeBuilder(17, 37).append(id).append(timestamp).append(success).append(dimensionResults) + .toHashCode(); + } + + @Override + public String toString() { + return new StringJoiner(", ", PaygDimensionComputation.class.getSimpleName() + "[", "]") + .add("id=" + id) + .add("timestamp=" + timestamp) + .add("success=" + success) + .add("dimensionResults=" + dimensionResults) + .toString(); + } +} diff --git a/java/code/src/com/suse/cloud/domain/PaygDimensionFactory.java b/java/code/src/com/suse/cloud/domain/PaygDimensionFactory.java new file mode 100644 index 000000000000..12536425a1cb --- /dev/null +++ b/java/code/src/com/suse/cloud/domain/PaygDimensionFactory.java @@ -0,0 +1,66 @@ +/* + * Copyright (c) 2023 SUSE LLC + * + * This software is licensed to you under the GNU General Public License, + * version 2 (GPLv2). There is NO WARRANTY for this software, express or + * implied, including the implied warranties of MERCHANTABILITY or FITNESS + * FOR A PARTICULAR PURPOSE. You should have received a copy of GPLv2 + * along with this software; if not, see + * http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt. + * + * Red Hat trademarks are not licensed under GPLv2. No permission is + * granted to use or replicate Red Hat trademarks that are incorporated + * in this software or its documentation. + */ + +package com.suse.cloud.domain; + +import com.redhat.rhn.common.hibernate.HibernateFactory; + +import org.apache.logging.log4j.LogManager; +import org.apache.logging.log4j.Logger; +import org.hibernate.Session; + +/** + * Factory to store and retrieve {@link PaygDimensionComputation} + */ +public class PaygDimensionFactory extends HibernateFactory { + + private static final Logger LOGGER = LogManager.getLogger(PaygDimensionFactory.class); + + @Override + protected Logger getLogger() { + return LOGGER; + } + + /** + * Retrieves a result by its id + * @param id the id of the computation + * @return the computation result if present, or null + */ + public PaygDimensionComputation lookupById(Long id) { + return getSession().createNamedQuery("PaygDimensionComputation.lookupById", PaygDimensionComputation.class) + .setParameter("id", id) + .uniqueResult(); + } + + /** + * Persist the given instance in the database + * @param computationResult the instance to persist + */ + public void save(PaygDimensionComputation computationResult) { + super.saveObject(computationResult); + } + + /** + * Retrieves the latest successful computation result. + * + * @return the latest valid result + */ + public PaygDimensionComputation getLatestSuccessfulComputation() { + Session session = getSession(); + return session.createNamedQuery("PaygDimensionComputation.getLatestSuccessful", PaygDimensionComputation.class) + .setMaxResults(1) + .uniqueResult(); + } +} diff --git a/java/code/src/com/suse/cloud/domain/PaygDimensionResult.java b/java/code/src/com/suse/cloud/domain/PaygDimensionResult.java new file mode 100644 index 000000000000..5393f113bd6b --- /dev/null +++ b/java/code/src/com/suse/cloud/domain/PaygDimensionResult.java @@ -0,0 +1,149 @@ +/* + * Copyright (c) 2023 SUSE LLC + * + * This software is licensed to you under the GNU General Public License, + * version 2 (GPLv2). There is NO WARRANTY for this software, express or + * implied, including the implied warranties of MERCHANTABILITY or FITNESS + * FOR A PARTICULAR PURPOSE. You should have received a copy of GPLv2 + * along with this software; if not, see + * http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt. + * + * Red Hat trademarks are not licensed under GPLv2. No permission is + * granted to use or replicate Red Hat trademarks that are incorporated + * in this software or its documentation. + */ + +package com.suse.cloud.domain; + +import org.apache.commons.lang3.builder.EqualsBuilder; +import org.apache.commons.lang3.builder.HashCodeBuilder; +import org.hibernate.annotations.Type; + +import java.util.StringJoiner; + +import javax.persistence.Column; +import javax.persistence.Entity; +import javax.persistence.GeneratedValue; +import javax.persistence.GenerationType; +import javax.persistence.Id; +import javax.persistence.JoinColumn; +import javax.persistence.ManyToOne; +import javax.persistence.SequenceGenerator; +import javax.persistence.Table; +import javax.persistence.Transient; + +@Entity +@Table(name = "susepaygdimensionresult") +public class PaygDimensionResult { + + private Long id; + + private PaygDimensionComputation computation; + + private BillingDimension dimension; + + private Long count; + + /** + * Default constructor + */ + public PaygDimensionResult() { + } + + /** + * Build an instance with the specified values + * @param dimensionIn the billing dimension + * @param computationIn the computation that this result is part of + * @param countIn the count computed for this dimension + */ + public PaygDimensionResult(BillingDimension dimensionIn, PaygDimensionComputation computationIn, Long countIn) { + this.dimension = dimensionIn; + this.computation = computationIn; + this.count = countIn; + } + + @Id + @Column(name = "id") + @GeneratedValue(strategy = GenerationType.SEQUENCE, generator = "paygDimensionResult_seq") + @SequenceGenerator(name = "paygDimensionResult_seq", sequenceName = "susePaygDimensionResult_id_seq", + allocationSize = 1) + public Long getId() { + return id; + } + + public void setId(Long idIn) { + this.id = idIn; + } + + @ManyToOne() + @JoinColumn(name = "computation_id", nullable = false) + public PaygDimensionComputation getComputation() { + return computation; + } + + public void setComputation(PaygDimensionComputation computationIn) { + this.computation = computationIn; + } + + @Transient + public Long getComputationId() { + return this.computation != null ? this.computation.getId() : null; + } + + @Column(name = "dimension") + @Type(type = "com.suse.cloud.domain.BillingDimensionEnumType") + public BillingDimension getDimension() { + return dimension; + } + + public void setDimension(BillingDimension dimensionIn) { + this.dimension = dimensionIn; + } + + @Column(name = "count") + public Long getCount() { + return count; + } + + public void setCount(Long countIn) { + this.count = countIn; + } + + @Override + public boolean equals(Object o) { + if (this == o) { + return true; + } + + if (o == null || getClass() != o.getClass()) { + return false; + } + + PaygDimensionResult that = (PaygDimensionResult) o; + + return new EqualsBuilder().append(id, that.id) + .append(getComputationId(), that.getComputationId()) + .append(dimension, that.dimension) + .append(count, that.count) + .isEquals(); + } + + @Override + public int hashCode() { + return new HashCodeBuilder(17, 37).append(id) + .append(getComputationId()) + .append(dimension).append(count) + .toHashCode(); + } + + @Override + public String toString() { + return new StringJoiner(", ", PaygDimensionResult.class.getSimpleName() + "[", "]") + .add("id=" + id) + .add("computationId=" + getComputationId()) + .add("dimension=" + dimension) + .add("count=" + count) + .toString(); + } + +} diff --git a/java/code/src/com/suse/cloud/domain/test/PaygDimensionFactoryTest.java b/java/code/src/com/suse/cloud/domain/test/PaygDimensionFactoryTest.java new file mode 100644 index 000000000000..937553406511 --- /dev/null +++ b/java/code/src/com/suse/cloud/domain/test/PaygDimensionFactoryTest.java @@ -0,0 +1,98 @@ +/* + * Copyright (c) 2023 SUSE LLC + * + * This software is licensed to you under the GNU General Public License, + * version 2 (GPLv2). There is NO WARRANTY for this software, express or + * implied, including the implied warranties of MERCHANTABILITY or FITNESS + * FOR A PARTICULAR PURPOSE. You should have received a copy of GPLv2 + * along with this software; if not, see + * http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt. + * + * Red Hat trademarks are not licensed under GPLv2. No permission is + * granted to use or replicate Red Hat trademarks that are incorporated + * in this software or its documentation. + */ + +package com.suse.cloud.domain.test; + +import static org.junit.jupiter.api.Assertions.assertEquals; +import static org.junit.jupiter.api.Assertions.assertNotNull; +import static org.junit.jupiter.api.Assertions.assertTrue; + +import com.redhat.rhn.testing.BaseTestCaseWithUser; + +import com.suse.cloud.domain.BillingDimension; +import com.suse.cloud.domain.PaygDimensionComputation; +import com.suse.cloud.domain.PaygDimensionFactory; +import com.suse.cloud.domain.PaygDimensionResult; + +import org.junit.jupiter.api.Test; + +import java.time.Instant; +import java.time.temporal.ChronoUnit; +import java.util.Date; +import java.util.Optional; + +public class PaygDimensionFactoryTest extends BaseTestCaseWithUser { + + private PaygDimensionFactory factory; + + @Test + public void canSaveAndRetrieveResult() { + PaygDimensionComputation result = new PaygDimensionComputation(); + + result.setSuccess(true); + result.setTimestamp(new Date()); + result.addDimensionResult(BillingDimension.MANAGED_SYSTEMS, 4L); + + factory = new PaygDimensionFactory(); + factory.save(result); + + assertNotNull(result.getId()); + + PaygDimensionComputation reloaded = factory.lookupById(result.getId()); + assertTrue(reloaded.isSuccess()); + assertEquals(1, reloaded.getDimensionResults().size()); + + Optional managedSystems = reloaded.getResultForDimension(BillingDimension.MANAGED_SYSTEMS); + assertTrue(managedSystems.isPresent()); + managedSystems.ifPresent(dimensionResult -> { + assertEquals(reloaded.getId(), dimensionResult.getComputationId()); + assertEquals(4L, dimensionResult.getCount()); + }); + } + + @Test + public void canRetrieveLatestSuccessfulResult() { + factory = new PaygDimensionFactory(); + + PaygDimensionComputation result1 = new PaygDimensionComputation(); + result1.setSuccess(true); + result1.setTimestamp(Date.from(Instant.now().minus(5, ChronoUnit.MINUTES))); + result1.addDimensionResult(BillingDimension.MANAGED_SYSTEMS, 10); + factory.save(result1); + + PaygDimensionComputation result2 = new PaygDimensionComputation(); + result2.setSuccess(true); + result2.setTimestamp(Date.from(Instant.now().minus(10, ChronoUnit.MINUTES))); + result2.addDimensionResult(BillingDimension.MANAGED_SYSTEMS, 4); + factory.save(result2); + + PaygDimensionComputation result3 = new PaygDimensionComputation(); + result3.setSuccess(false); + result3.setTimestamp(Date.from(Instant.now())); + factory.save(result3); + + PaygDimensionComputation latest = factory.getLatestSuccessfulComputation(); + assertNotNull(latest); + assertTrue(latest.isSuccess()); + assertEquals(1, latest.getDimensionResults().size()); + + Optional managedSystems = latest.getResultForDimension(BillingDimension.MANAGED_SYSTEMS); + assertTrue(managedSystems.isPresent()); + managedSystems.ifPresent(dimensionResult -> { + assertEquals(latest.getId(), dimensionResult.getComputationId()); + assertEquals(10L, dimensionResult.getCount()); + }); + } +} diff --git a/java/code/src/com/suse/cloud/test/CloudPaygManagerTest.java b/java/code/src/com/suse/cloud/test/CloudPaygManagerTest.java new file mode 100644 index 000000000000..fefab252850c --- /dev/null +++ b/java/code/src/com/suse/cloud/test/CloudPaygManagerTest.java @@ -0,0 +1,318 @@ +/* + * Copyright (c) 2023 SUSE LLC + * + * This software is licensed to you under the GNU General Public License, + * version 2 (GPLv2). There is NO WARRANTY for this software, express or + * implied, including the implied warranties of MERCHANTABILITY or FITNESS + * FOR A PARTICULAR PURPOSE. You should have received a copy of GPLv2 + * along with this software; if not, see + * http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt. + * + * Red Hat trademarks are not licensed under GPLv2. No permission is + * granted to use or replicate Red Hat trademarks that are incorporated + * in this software or its documentation. + */ +package com.suse.cloud.test; + +import static org.junit.jupiter.api.Assertions.assertEquals; +import static org.junit.jupiter.api.Assertions.assertFalse; +import static org.junit.jupiter.api.Assertions.assertTrue; + +import com.redhat.rhn.domain.credentials.Credentials; +import com.redhat.rhn.domain.credentials.CredentialsFactory; +import com.redhat.rhn.domain.user.User; +import com.redhat.rhn.manager.content.ContentSyncManager; +import com.redhat.rhn.taskomatic.TaskomaticApi; +import com.redhat.rhn.taskomatic.TaskomaticApiException; +import com.redhat.rhn.testing.BaseTestCaseWithUser; +import com.redhat.rhn.testing.TestUtils; + +import com.suse.cloud.CloudPaygManager; +import com.suse.cloud.CspBillingAdapterStatus; + +import com.google.gson.Gson; +import com.google.gson.GsonBuilder; + +import org.junit.jupiter.api.Test; + +import java.io.File; +import java.io.IOException; +import java.nio.file.Files; +import java.util.HashMap; +import java.util.Map; +import java.util.Optional; + +public class CloudPaygManagerTest extends BaseTestCaseWithUser { + + private static class ContentSyncManagerTestHelper extends ContentSyncManager { + private boolean isSCCCredentialsResult = true; + public void setIsSCCCredentialsResult(boolean resultIn) { + isSCCCredentialsResult = resultIn; + } + public boolean isSCCCredentials(Credentials c) { + return isSCCCredentialsResult; + } + } + + private static class TaskomaticApiTestHelper extends TaskomaticApi { + private Optional> result; + private Optional exception; + + public void setNull() { + this.result = Optional.empty(); + this.exception = Optional.empty(); + } + + public void setException(TaskomaticApiException exIn) { + this.exception = Optional.of(exIn); + this.result = Optional.empty(); + } + + public void setResult(Map resultIn) { + this.result = Optional.of(resultIn); + this.exception = Optional.empty(); + } + + public Map lookupScheduleByBunchAndLabel(User user, String bunchName, String scheduleLabel) + throws TaskomaticApiException { + if (result.isPresent()) { + return result.get(); + } + else if (exception.isPresent()) { + throw exception.get(); + } + else { + return null; + } + } + } + + public static class CloudPaygManagerTestHelper extends CloudPaygManager { + + private String iType = "BYOS"; + private String reqResult = ""; + private boolean serviceRunning = true; + private boolean packageModified = false; + + public CloudPaygManagerTestHelper() throws IOException, ClassNotFoundException { + super(); + setCspBillingAdapterStatusFile("csp-config.ok.json"); + } + public CloudPaygManagerTestHelper(TaskomaticApi tapiIn, ContentSyncManager syncManagerIn) + throws IOException, ClassNotFoundException { + super(tapiIn, syncManagerIn); + setCspBillingAdapterStatusFile("csp-config.ok.json"); + } + + @Override + protected boolean isFileExecutable(String filename) { + return filename.equals("/usr/bin/instance-flavor-check") || + filename.equals("/usr/bin/ec2metadata"); + } + + public void setInstanceType(String iTypeIn) { + iType = iTypeIn; + } + + public void setRequestResult(String reqResultIn) { + reqResult = reqResultIn; + } + + public void setServiceRunning(boolean isRunning) { + serviceRunning = isRunning; + } + + public void setPackageModified(boolean pkgModifiedIn) { + packageModified = pkgModifiedIn; + } + + protected String getInstanceType() { + return iType; + } + @Override + protected String requestUrl(String url) { + return reqResult; + } + @Override + protected boolean isServiceRunning(String serviceIn) { + return serviceRunning; + } + @Override + protected boolean hasPackageModifications(String pkg) { + return packageModified; + } + private void setCspBillingAdapterStatusFile(String testFileName) throws IOException, ClassNotFoundException { + String jarPath = "/com/suse/cloud/test/data/"; + cspBillingAdapterConfig = new File(TestUtils.findTestData(jarPath + testFileName).getPath()).toPath(); + } + } + + @Test + public void testCloudProvider() { + CloudPaygManager cpm = new CloudPaygManager(); + CloudPaygManager.CloudProvider prv = cpm.getCloudProvider(); + assertEquals(CloudPaygManager.CloudProvider.None, prv); + + CloudPaygManager cpmAWS = new CloudPaygManager() { + @Override + protected boolean isFileExecutable(String filename) { + return filename.equals("/usr/bin/ec2metadata"); + } + }; + assertEquals(CloudPaygManager.CloudProvider.AWS, cpmAWS.getCloudProvider()); + + CloudPaygManager cpmAzure = new CloudPaygManager() { + @Override + protected boolean isFileExecutable(String filename) { + return filename.equals("/usr/bin/azuremetadata"); + } + }; + assertEquals(CloudPaygManager.CloudProvider.AZURE, cpmAzure.getCloudProvider()); + + CloudPaygManager cpmGce = new CloudPaygManager() { + @Override + protected boolean isFileExecutable(String filename) { + return filename.equals("/usr/bin/gcemetadata"); + } + }; + assertEquals(CloudPaygManager.CloudProvider.GCE, cpmGce.getCloudProvider()); + } + + @Test + public void testIsPayg() throws IOException, ClassNotFoundException { + CloudPaygManagerTestHelper cpm = new CloudPaygManagerTestHelper(); + cpm.setInstanceType("PAYG"); + assertTrue(cpm.isPaygInstance(), "Expecting a PAYG instance"); + } + + @Test + public void testRefresh() throws IOException, ClassNotFoundException { + TaskomaticApiTestHelper tapi = new TaskomaticApiTestHelper(); + tapi.setResult(new HashMap<>()); + CloudPaygManagerTestHelper cpm = new CloudPaygManagerTestHelper(tapi, new ContentSyncManager()); + cpm.setInstanceType("PAYG"); + cpm.setRequestResult("online"); + + assertTrue(cpm.checkRefreshCache(false), "Not refreshed"); + + assertTrue(cpm.isPaygInstance(), "Not a PAYG instance"); + assertFalse(cpm.hasSCCCredentials(), "Has SCC credentials"); + assertEquals(CloudPaygManager.CloudProvider.AWS, cpm.getCloudProvider()); + assertTrue(cpm.isCompliant(), "Is not compliant"); + } + + @Test + public void testRefreshIsCompliant() throws IOException, ClassNotFoundException { + TaskomaticApiTestHelper tapi = new TaskomaticApiTestHelper(); + tapi.setNull(); + + CloudPaygManagerTestHelper cpm = new CloudPaygManagerTestHelper(tapi, new ContentSyncManager()); + cpm.setInstanceType("PAYG"); + cpm.setRequestResult("online"); + cpm.setServiceRunning(true); + cpm.setPackageModified(false); + + // test 1 - no schedule available + assertTrue(cpm.checkRefreshCache(false), "Not refreshed"); + assertFalse(cpm.isCompliant(), "Unexpected: Is compliant"); + + + // test 2 - taskomatic api throw exception + tapi.setException(new TaskomaticApiException(new Exception("failed"))); + assertTrue(cpm.checkRefreshCache(false), "Not refreshed"); + assertFalse(cpm.isCompliant(), "Unexpected: Is compliant"); + + // test 3 - active schedule exists + tapi.setResult(new HashMap()); + assertTrue(cpm.isCompliant(), "Unexpected: Is not compliant"); + // test cache is used + assertFalse(cpm.checkRefreshCache(false), "Unexpected: refresh happened"); + + // test 4 - billing-data-service is down + cpm.setRequestResult("error"); + assertTrue(cpm.checkRefreshCache(true), "Not refreshed"); + assertFalse(cpm.isCompliant(), "Unexpected: Is compliant"); + + // test 5 - packages are modified + cpm.setRequestResult("online"); + cpm.setPackageModified(true); + assertTrue(cpm.checkRefreshCache(false), "Not refreshed"); + assertFalse(cpm.isCompliant(), "Unexpected: Is compliant"); + + // test 6 - billing adapter is down + cpm.setPackageModified(false); + cpm.setServiceRunning(false); + assertTrue(cpm.checkRefreshCache(false), "Not refreshed"); + assertFalse(cpm.isCompliant(), "Unexpected: Is compliant"); + + cpm.setServiceRunning(true); + assertTrue(cpm.checkRefreshCache(false), "Not refreshed"); + assertTrue(cpm.isCompliant(), "Unexpected: Is not compliant"); + + // test 7 - billing adapter report errors + cpm.setCspBillingAdapterStatusFile("csp-config.nonet.json"); + assertTrue(cpm.checkRefreshCache(true), "Not refreshed"); + assertFalse(cpm.isCompliant(), "Unexpected: Is compliant"); + + } + + @Test + public void testHasSCCCredentials() { + + ContentSyncManagerTestHelper csm = new ContentSyncManagerTestHelper(); + CloudPaygManager cpm = new CloudPaygManager(new TaskomaticApi(), csm); + + // test 1 - no credentials available + assertFalse(cpm.hasSCCCredentials(), "Has SCC credentials"); + + // test 2 - credentials available identifies as SCC credentials + csm.setIsSCCCredentialsResult(true); + Credentials credentials = CredentialsFactory.createSCCCredentials(); + credentials.setPassword("dummy"); + credentials.setUrl("dummy"); + credentials.setUsername("dummy"); + CredentialsFactory.storeCredentials(credentials); + + assertTrue(cpm.checkRefreshCache(true), "Not refreshed"); + assertTrue(cpm.hasSCCCredentials(), "Has no SCC credentials"); + + CredentialsFactory.removeCredentials(credentials); + + // test 3 - no credentials available + assertTrue(cpm.checkRefreshCache(true), "Not refreshed"); + assertFalse(cpm.hasSCCCredentials(), "Has SCC credentials"); + + // test 4 - credentials available not identified as SCC credentials + csm.setIsSCCCredentialsResult(false); + credentials = CredentialsFactory.createSCCCredentials(); + credentials.setPassword("dummy"); + credentials.setUsername("mf_user"); + CredentialsFactory.storeCredentials(credentials); + + assertTrue(cpm.checkRefreshCache(true), "Not refreshed"); + assertFalse(cpm.hasSCCCredentials(), "Has SCC credentials"); + } + + @Test + public void testCspBillingAdapterStatusParsing() throws IOException, ClassNotFoundException { + Gson gson = new GsonBuilder().setDateFormat(CspBillingAdapterStatus.DATE_FORMAT).create(); + String jarPath = "/com/suse/cloud/test/data/"; + CspBillingAdapterStatus cspStatus = gson.fromJson(Files.readString( + new File(TestUtils.findTestData(jarPath + "csp-config.ok.json").getPath()).toPath()), + CspBillingAdapterStatus.class); + assertTrue(cspStatus.isBillingApiAccessOk(), "Unexpected error: status should be ok"); + assertTrue(cspStatus.getErrors().isEmpty(), "Unexpected errors found"); + assertEquals(1692881466L, cspStatus.getTimestamp().toInstant().getEpochSecond()); + + cspStatus = gson.fromJson(Files.readString( + new File(TestUtils.findTestData(jarPath + "csp-config.nocreds.json").getPath()).toPath()), + CspBillingAdapterStatus.class); + assertFalse(cspStatus.isBillingApiAccessOk(), "Unexpected error: status should be false"); + assertContains(cspStatus.getErrors(), + "Failed to meter bill dimension managed_systems: Unable to locate credentials"); + assertContains(cspStatus.getErrors(), + "Failed to meter bill dimension monitoring: Unable to locate credentials"); + assertEquals(1692708633L, cspStatus.getTimestamp().toInstant().getEpochSecond()); + + } +} diff --git a/java/code/src/com/suse/cloud/test/data/csp-config.nocreds.json b/java/code/src/com/suse/cloud/test/data/csp-config.nocreds.json new file mode 100644 index 000000000000..6386733eeef0 --- /dev/null +++ b/java/code/src/com/suse/cloud/test/data/csp-config.nocreds.json @@ -0,0 +1,31 @@ +{ + "billing_api_access_ok": false, + "timestamp": "2023-08-22T12:50:33.182585+00:00", + "expire": "2023-08-22T08:50:32.195449+00:00", + "customer_csp_data": { + "document": { + "accountId": "123456789012", + "architecture": "x86_64", + "availabilityZone": "eu-central-1c", + "billingProducts": null, + "devpayProductCodes": null, + "marketplaceProductCodes": null, + "imageId": "ami-00112233aabbccddf", + "instanceId": "i-987654321abcdef00", + "instanceType": "m6a.xlarge", + "kernelId": null, + "pendingTime": "2023-08-22T07:36:54Z", + "privateIp": "172.16.1.180", + "ramdiskId": null, + "region": "eu-central-1", + "version": "2017-09-30" + }, + "signature": "Op2zfG4NInG17V3R0uESk7uF6bkt1fb76MTpW4T/96LsKRMJ2yI3ijtxMKWr\nUA/h7dqaiHf42qlNlAw=", + "pkcs7": "MIAGCSqGSIb3DQEHAqCAMIACAQExCzAJBgUrDgMCGgUAMIAGCSqENvZGVzIiA6IG51bGwsCiAgIm1hcmtldHBsYWNl\nUHJvZHVjdENvZGVzIiA6IG51bGwsCiAgImltYWdlSWQiIDogImFtaS0wMDM2YTUyZmEyM2IxZDVi\nNyIsCiAgImluc3RhbmNlSWQiIDogImktMDdjNjM0YTZmNTljMjA2ZjIiLAogICJpbnN0YW5jZVR5\ncGUiIDogIm02YS54bGFyZ2UiLAogICJrZXJuZWxJZCIgOiBudWxsLAogICJwZW5kaW5nVGltZSIg\nOiAiMjAyMy0wOC0yMlQwNzozNjo1NFoiLAogICJwcml2YXRlSXAiIDogIjE3Mi4xNi4xLjE4MCIs\nCiAgInJhbWRpc2tJZCIgOiBudWxsLAogICJyZWdpb24iIDogImV1LWNlbnRyYWwtMSIsCiAgInZl\ncnNpb24iIDogIjIwMTctMDktMzAiCn0AAAAAMYIBQTCCAT0CAQEwaTBcMQswCQYDVQQGEwJVUzEZ\nMBcGA1UECBMQV2FzaGluZ3RvbiBTdGF0ZTEQMA4GA1UEBxMHU2VhdHRsZTEgMB4GA1UEChMXQW1h\nem9uIFdlYiBTZXJ2aWNlcyBMTEMCCQCWukjZ5V4aZzAJBgUrDgMCGgUAoIGEMBgGCSqGSIb3DQEJ\nAzELBgkqhkiG9w0BBwEwHAYJKoZIhvcNAQkFMQ8XDTIzMDgyMjA3MzY1NFowIwYJKoZIhvcNAQkE\nMRYEFFP7QEJwA953FMd28MvpC40eGapkMCUGCSqGSIb3DQEJNDEYMBYwCQYFKw4DAhoFAKEJBgcq\nhkjOOAQDMAkGByqGSM44BAMEMDAuAhUAtFf75in1Ey71+LVV0PqU3ZA5vpYCFQCZaLIZDnzeSR/a\n7qGLpMzAnduidAAAAAAAAA==", + "cloud_provider": "amazon" + }, + "errors": [ + "Failed to meter bill dimension managed_systems: Unable to locate credentials", + "Failed to meter bill dimension monitoring: Unable to locate credentials" + ] +} diff --git a/java/code/src/com/suse/cloud/test/data/csp-config.nonet.json b/java/code/src/com/suse/cloud/test/data/csp-config.nonet.json new file mode 100644 index 000000000000..ab63e1b4a6cd --- /dev/null +++ b/java/code/src/com/suse/cloud/test/data/csp-config.nonet.json @@ -0,0 +1,32 @@ +{ + "billing_api_access_ok": false, + "timestamp": "2023-08-24T13:51:49.750229+00:00", + "expire": "2023-08-24T12:51:11.484066+00:00", + "customer_csp_data": { + "document": { + "accountId": "123456789012", + "architecture": "x86_64", + "availabilityZone": "eu-central-1c", + "billingProducts": null, + "devpayProductCodes": null, + "marketplaceProductCodes": null, + "imageId": "ami-00112233aabbccddf", + "instanceId": "i-987654321abcdef00", + "instanceType": "m6a.xlarge", + "kernelId": null, + "pendingTime": "2023-08-24T07:55:52Z", + "privateIp": "172.16.1.180", + "ramdiskId": null, + "region": "eu-central-1", + "version": "2017-09-30" + }, + "signature": "gilSJ8lhVKSR7uOpfmMmc4BK4lAVtyy8YTrC29tvTT1duimx4FFXDHc/jTOJv3mrfA8Zfi\ntszOuoUi09bl67bVvG0=", + "pkcs7": "MIAGCSqGSIb3DQEHAqCAMIACAQExG51bGwsCiAgIm1hcmtldHBsYWNl\nUHJvZHVjdENvZGVzIiA6IG51bGwsCiAgImltYWdlSWQiIDogImFtaS0wMDM2YTUyZmEyM2IxZDVi\nNyIsCiAgImluc3RhbmNlSWQiIDogImktMDdjNjM0YTZmNTljMjA2ZjIiLAogICJpbnN0YW5jZVR5\ncGUiIDogIm02YS54bGFyZ2UiLAogICJrZXJuZWxJZCIgOiBudWxsLAogICJwZW5kaW5nVGltZSIg\nOiAiMjAyMy0wOC0yNFQwNzo1NTo1MloiLAogICJwcml2YXRlSXAiIDogIjE3Mi4xNi4xLjE4MCIs\nCiAgInJhbWRpc2tJZCIgOiBudWxsLAogICJyZWdpb24iIDogImV1LWNlbnRyYWwtMSIsCiAgInZl\ncnNpb24iIDogIjIwMTctMDktMzAiCn0AAAAAMYIBPzCCATsCAQEwaTBcMQswCQYDVQQGEwJVUzEZ\nMBcGA1UECBMQV2FzaGluZ3RvbiBTdGF0ZTEQMA4GA1UEBxMHU2VhdHRsZTEgMB4GA1UEChMXQW1h\nem9uIFdlYiBTZXJ2aWNlcyBMTEMCCQCWukjZ5V4aZzAJBgUrDgMCGgUAoIGEMBgGCSqGSIb3DQEJ\nAzELBgkqhkiG9w0BBwEwHAYJKoZIhvcNAQkFMQ8XDTIzMDgyNDA3NTU1NFowIwYJKoZIhvcNAQkE\nMRYEFBfiBGpm7B1sQ9Tu6YbGEc22Gc1AMCUGCSqGSIb3DQEJNDEYMBYwCQYFKw4DAhoFAKEJBgcq\nhkjOOAQDMAkGByqGSM44BAMELjAsAhQpmECGTxF1AUTVPHcDJhNtuXVoYAIUeAkwsgh1HR8fnnA8\nzqG6EPiHDYgAAAAAAAA=", + "cloud_provider": "amazon" + }, + "errors": [ + "Failed to meter bill dimension managed_systems: Connect timeout on endpoint URL: \"https://metering.marketplace.eu-central-1.amazonaws.com/\"", + "Failed to meter bill dimension monitoring: Connect timeout on endpoint URL: \"https://metering.marketplace.eu-central-1.amazonaws.com/\"" + ], + "base_product": "" +} diff --git a/java/code/src/com/suse/cloud/test/data/csp-config.ok.json b/java/code/src/com/suse/cloud/test/data/csp-config.ok.json new file mode 100644 index 000000000000..7a467f7c366c --- /dev/null +++ b/java/code/src/com/suse/cloud/test/data/csp-config.ok.json @@ -0,0 +1,29 @@ +{ + "billing_api_access_ok": true, + "timestamp": "2023-08-24T12:51:06.484066+00:00", + "expire": "2023-08-24T12:51:11.484066+00:00", + "customer_csp_data": { + "document": { + "accountId": "123456789012", + "architecture": "x86_64", + "availabilityZone": "eu-central-1c", + "billingProducts": null, + "devpayProductCodes": null, + "marketplaceProductCodes": null, + "imageId": "ami-00112233aabbccddf", + "instanceId": "i-987654321abcdef00", + "instanceType": "m6a.xlarge", + "kernelId": null, + "pendingTime": "2023-08-24T07:55:52Z", + "privateIp": "172.16.1.180", + "ramdiskId": null, + "region": "eu-central-1", + "version": "2017-09-30" + }, + "signature": "gilSJ8lhVKSR7uOpfmMmc4BkAPbxfvwc4lAVtyy8YTrC29tvTT1duimx4FFXDHc/jTOJv3mrfA8Zfi\ntszOuoUi09bl67bVvG0=", + "pkcs7": "MIAGCSqGSIb3DQEHAqCAMIACAQEGV2cGF5UHJvZHVjdENvZGVzIiA6IG51bGwsCiAgIm1hcmtldHBsYWNl\nUHJvZHVjdENvZGVzIiA6IG51bGwsCiAgImltYWdlSWQiIDogImFtaS0wMDM2YTUyZmEyM2IxZDVi\nNyIsCiAgImluc3RhbmNlSWQiIDogImktMDdjNjM0YTZmNTljMjA2ZjIiLAogICJpbnN0YW5jZVR5\ncGUiIDogIm02YS54bGFyZ2UiLAogICJrZXJuZWxJZCIgOiBudWxsLAogICJwZW5kaW5nVGltZSIg\nOiAiMjAyMy0wOC0yNFQwNzo1NTo1MloiLAogICJwcml2YXRlSXAiIDogIjE3Mi4xNi4xLjE4MCIs\nCiAgInJhbWRpc2tJZCIgOiBudWxsLAogICJyZWdpb24iIDogImV1LWNlbnRyYWwtMSIsCiAgInZl\ncnNpb24iIDogIjIwMTctMDktMzAiCn0AAAAAMYIBPzCCATsCAQEwaTBcMQswCQYDVQQGEwJVUzEZ\nMBcGA1UECBMQV2FzaGluZ3RvbiBTdGF0ZTEQMA4GA1UEBxMHU2VhdHRsZTEgMB4GA1UEChMXQW1h\nem9uIFdlYiBTZXJ2aWNlcyBMTEMCCQCWukjZ5V4aZzAJBgUrDgMCGgUAoIGEMBgGCSqGSIb3DQEJ\nAzELBgkqhkiG9w0BBwEwHAYJKoZIhvcNAQkFMQ8XDTIzMDgyNDA3NTU1NFowIwYJKoZIhvcNAQkE\nMRYEFBfiBGpm7B1sQ9Tu6YbGEc22Gc1AMCUGCSqGSIb3DQEJNDEYMBYwCQYFKw4DAhoFAKEJBgcq\nhkjOOAQDMAkGByqGSM44BAMELjAsAhQpmECGTxF1AUTVPHcDJhNtuXVoYAIUeAkwsgh1HR8fnnA8\nzqG6EPiHDYgAAAAAAAA=", + "cloud_provider": "amazon" + }, + "errors": [], + "base_product": "" +} diff --git a/java/code/src/com/suse/manager/admin/PaygAdminManager.java b/java/code/src/com/suse/manager/admin/PaygAdminManager.java index 41779a109376..41287768924c 100644 --- a/java/code/src/com/suse/manager/admin/PaygAdminManager.java +++ b/java/code/src/com/suse/manager/admin/PaygAdminManager.java @@ -19,11 +19,16 @@ import com.redhat.rhn.common.hibernate.LookupException; import com.redhat.rhn.common.validator.ValidatorException; import com.redhat.rhn.common.validator.ValidatorResult; +import com.redhat.rhn.domain.channel.ChannelFactory; +import com.redhat.rhn.domain.channel.ContentSource; import com.redhat.rhn.domain.cloudpayg.CloudRmtHostFactory; import com.redhat.rhn.domain.cloudpayg.PaygSshData; import com.redhat.rhn.domain.cloudpayg.PaygSshDataFactory; import com.redhat.rhn.domain.credentials.Credentials; import com.redhat.rhn.domain.credentials.CredentialsFactory; +import com.redhat.rhn.domain.kickstart.KickstartFactory; +import com.redhat.rhn.domain.kickstart.crypto.CryptoKey; +import com.redhat.rhn.domain.kickstart.crypto.SslCryptoKey; import com.redhat.rhn.domain.scc.SCCCachingFactory; import com.redhat.rhn.domain.scc.SCCRepositoryAuth; import com.redhat.rhn.frontend.action.common.BadParameterException; @@ -41,6 +46,9 @@ import java.util.List; import java.util.Map; import java.util.Optional; +import java.util.Set; +import java.util.stream.Collectors; +import java.util.stream.Stream; public class PaygAdminManager { @@ -251,7 +259,7 @@ public PaygSshData setDetails(Integer id, PaygProperties paygProperties) { public PaygSshData setDetails(String host, Map details) { if (StringUtils.isEmpty(host)) { LOG.debug("payg empty host"); - throw new BadParameterException("Pay-as-you-go host cannot be empty"); + throw new BadParameterException("PAYG host cannot be empty"); } PaygSshData paygSshData = PaygSshDataFactory.lookupByHostname(host) .orElseThrow(() -> new LookupException("Host not found: " + host)); @@ -385,11 +393,26 @@ public boolean delete(String host) { private boolean delete(PaygSshData paygSshData) { Credentials creds = paygSshData.getCredentials(); - if (creds != null) { - LOG.debug("deleting {} -> {}", paygSshData.getId(), paygSshData.getHost()); + LOG.debug("deleting payg data {} -> {}", paygSshData.getId(), paygSshData.getHost()); + if (creds != null && creds.isTypeOf(Credentials.TYPE_CLOUD_RMT)) { List existingRepos = SCCCachingFactory.lookupRepositoryAuthByCredential(creds); + LOG.debug("deleting repo auth ids {}", + existingRepos.stream().map(r -> r.getId().toString()).collect(Collectors.joining(", "))); existingRepos.forEach(SCCCachingFactory::deleteRepositoryAuth); } + else { // RHUI - some clouds have no credentials + List csUrls = PaygSshDataFactory.listRhuiRepositoriesCreatedByInstance(paygSshData); + Set sslCryptoKeys = csUrls.stream() + .flatMap(cs -> cs.getSslSets().stream()) + .flatMap(scs -> Stream.of(scs.getCaCert(), scs.getClientCert(), scs.getClientKey())) + .collect(Collectors.toSet()); + LOG.debug("deleting repositories {}", + csUrls.stream().map(ContentSource::getLabel).collect(Collectors.joining(", "))); + csUrls.forEach(ChannelFactory::remove); + LOG.debug("deleting crypto keys {}", + sslCryptoKeys.stream().map(CryptoKey::getDescription).collect(Collectors.joining(", "))); + sslCryptoKeys.forEach(KickstartFactory::removeCryptoKey); + } Optional.ofNullable(paygSshData.getCredentials()).ifPresent(CredentialsFactory::removeCredentials); Optional.ofNullable(paygSshData.getRmtHosts()).ifPresent(CloudRmtHostFactory::deleteCloudRmtHost); PaygSshDataFactory.deletePaygSshData(paygSshData); diff --git a/java/code/src/com/suse/manager/api/RouteFactory.java b/java/code/src/com/suse/manager/api/RouteFactory.java index b31c8d493dec..df278e3d3060 100644 --- a/java/code/src/com/suse/manager/api/RouteFactory.java +++ b/java/code/src/com/suse/manager/api/RouteFactory.java @@ -157,7 +157,7 @@ public Route createRoute(List methods, BaseHandler handler) { requestParams.putAll(requestParser.parseBody(req.body())); } catch (ParseException e) { - LOG.error(e); + LOG.error(e.getMessage(), e); throw Spark.halt(HttpStatus.SC_BAD_REQUEST, e.getMessage()); } diff --git a/java/code/src/com/suse/manager/gatherer/GathererJsonIO.java b/java/code/src/com/suse/manager/gatherer/GathererJsonIO.java index bf425bd87963..fc1a25c47ad6 100644 --- a/java/code/src/com/suse/manager/gatherer/GathererJsonIO.java +++ b/java/code/src/com/suse/manager/gatherer/GathererJsonIO.java @@ -26,6 +26,7 @@ import com.google.gson.TypeAdapter; import com.google.gson.reflect.TypeToken; import com.google.gson.stream.JsonReader; +import com.google.gson.stream.JsonToken; import com.google.gson.stream.JsonWriter; import java.io.IOException; @@ -100,11 +101,18 @@ public GathererModule read(JsonReader reader) throws IOException { reader.beginObject(); while (reader.hasNext()) { String key = reader.nextName(); + String value = null; + if (reader.peek() == JsonToken.NULL) { + reader.nextNull(); + } + else { + value = reader.nextString(); + } if (key.equals("module")) { - gm.setName(reader.nextString()); + gm.setName(value); } else { - gm.addParameter(key, reader.nextString()); + gm.addParameter(key, value); } } reader.endObject(); diff --git a/java/code/src/com/suse/manager/gatherer/HostJson.java b/java/code/src/com/suse/manager/gatherer/HostJson.java index 1b8744f2db6d..516fa822a6db 100644 --- a/java/code/src/com/suse/manager/gatherer/HostJson.java +++ b/java/code/src/com/suse/manager/gatherer/HostJson.java @@ -88,10 +88,10 @@ public String getHostIdentifier() { /** * Gets the total CPU socket count. - * @return the number of sockets + * @return the number of sockets - can be 0 if insufficient data were send */ public Integer getTotalCpuSockets() { - return totalCpuSockets; + return totalCpuSockets == null ? 0 : totalCpuSockets; } /** @@ -99,7 +99,7 @@ public Integer getTotalCpuSockets() { * @return the cpu cores */ public Integer getTotalCpuCores() { - return totalCpuCores; + return totalCpuCores == null ? 1 : totalCpuCores; } /** @@ -107,7 +107,7 @@ public Integer getTotalCpuCores() { * @return the CPU thread count */ public Integer getTotalCpuThreads() { - return totalCpuThreads; + return totalCpuThreads == null ? 1 : totalCpuThreads; } /** diff --git a/java/code/src/com/suse/manager/gatherer/test/GathererJsonIOTest.java b/java/code/src/com/suse/manager/gatherer/test/GathererJsonIOTest.java index e3f7869795b6..b0dffff72ed1 100644 --- a/java/code/src/com/suse/manager/gatherer/test/GathererJsonIOTest.java +++ b/java/code/src/com/suse/manager/gatherer/test/GathererJsonIOTest.java @@ -55,9 +55,10 @@ public void testReadGathererModules() throws Exception { FileUtils.readStringFromFile(TestUtils.findTestData(MODULELIST).getPath()); Map mods = new GathererJsonIO().readGathererModules(json); - assertEquals(2, mods.keySet().size()); + assertEquals(3, mods.keySet().size()); assertTrue(mods.keySet().contains("VMware")); assertTrue(mods.keySet().contains("SUSECloud")); + assertTrue(mods.keySet().contains("Libvirt")); for (GathererModule g : mods.values()) { if (g.getName().equals("VMware")) { @@ -76,6 +77,11 @@ else if (g.getName().equals("SUSECloud")) { assertTrue(g.getParameters().containsKey("protocol")); assertTrue(g.getParameters().containsKey("tenant")); } + else if (g.getName().equals("Libvirt")) { + assertTrue(g.getParameters().containsKey("uri")); + assertTrue(g.getParameters().containsKey("sasl_username")); + assertTrue(g.getParameters().containsKey("sasl_password")); + } else { fail("Unknown Module"); } diff --git a/java/code/src/com/suse/manager/gatherer/test/modulelist.json b/java/code/src/com/suse/manager/gatherer/test/modulelist.json index 12f3d18e73f1..64613aab280c 100644 --- a/java/code/src/com/suse/manager/gatherer/test/modulelist.json +++ b/java/code/src/com/suse/manager/gatherer/test/modulelist.json @@ -14,6 +14,12 @@ "port": 443, "username": "", "password": "" + }, + "Libvirt": { + "module": "Libvirt", + "uri": "", + "sasl_username": null, + "sasl_password": null } } diff --git a/java/code/src/com/suse/manager/maintenance/rescheduling/CancelRescheduleStrategy.java b/java/code/src/com/suse/manager/maintenance/rescheduling/CancelRescheduleStrategy.java index 899aa42a76bb..a1938543d9e8 100644 --- a/java/code/src/com/suse/manager/maintenance/rescheduling/CancelRescheduleStrategy.java +++ b/java/code/src/com/suse/manager/maintenance/rescheduling/CancelRescheduleStrategy.java @@ -55,7 +55,7 @@ public RescheduleResult reschedule(User user, Map> actionsS } } catch (TaskomaticApiException | RuntimeException e) { - LOG.error(e); + LOG.error(e.getMessage(), e); throw new RescheduleException(e); } result.setSuccess(true); diff --git a/java/code/src/com/suse/manager/reactor/PGEventStream.java b/java/code/src/com/suse/manager/reactor/PGEventStream.java index 5f2d2b3745ca..6269cb0516a1 100644 --- a/java/code/src/com/suse/manager/reactor/PGEventStream.java +++ b/java/code/src/com/suse/manager/reactor/PGEventStream.java @@ -101,9 +101,9 @@ public PGEventStream() throws SaltException { connection = (PGConnection) dataSource.getConnection(); connection.addNotificationListener(this); - Statement stmt = connection.createStatement(); - stmt.execute("LISTEN suseSaltEvent"); - stmt.close(); + try (Statement stmt = connection.createStatement()) { + stmt.execute("LISTEN suseSaltEvent"); + } startConnectionWatchdog(); diff --git a/java/code/src/com/suse/manager/reactor/SaltReactor.java b/java/code/src/com/suse/manager/reactor/SaltReactor.java index b1e9f43208c2..0fdf5e12a3e4 100644 --- a/java/code/src/com/suse/manager/reactor/SaltReactor.java +++ b/java/code/src/com/suse/manager/reactor/SaltReactor.java @@ -25,6 +25,7 @@ import com.redhat.rhn.manager.system.SystemManager; import com.redhat.rhn.taskomatic.TaskomaticApiException; +import com.suse.cloud.CloudPaygManager; import com.suse.manager.reactor.messaging.AbstractLibvirtEngineMessage; import com.suse.manager.reactor.messaging.ApplyStatesEventMessage; import com.suse.manager.reactor.messaging.ApplyStatesEventMessageAction; @@ -91,6 +92,7 @@ public class SaltReactor { private final SystemQuery systemQuery; private final SaltServerActionService saltServerActionService; private final SaltUtils saltUtils; + private final CloudPaygManager paygMgr; // The event stream object private EventStream eventStream; @@ -106,13 +108,15 @@ public class SaltReactor { * @param systemQueryIn instance to get system information. * @param saltServerActionServiceIn * @param saltUtilsIn + * @param paygMgrIn */ public SaltReactor(SaltApi saltApiIn, SystemQuery systemQueryIn, SaltServerActionService saltServerActionServiceIn, - SaltUtils saltUtilsIn) { + SaltUtils saltUtilsIn, CloudPaygManager paygMgrIn) { this.saltApi = saltApiIn; this.systemQuery = systemQueryIn; this.saltServerActionService = saltServerActionServiceIn; this.saltUtils = saltUtilsIn; + this.paygMgr = paygMgrIn; } /** @@ -122,7 +126,7 @@ public void start() { VirtManager virtManager = new VirtManagerSalt(saltApi); // Configure message queue to handle minion registrations - MessageQueue.registerAction(new RegisterMinionEventMessageAction(systemQuery, saltApi), + MessageQueue.registerAction(new RegisterMinionEventMessageAction(systemQuery, saltApi, paygMgr), RegisterMinionEventMessage.class); MessageQueue.registerAction(new ApplyStatesEventMessageAction(), ApplyStatesEventMessage.class); @@ -309,11 +313,11 @@ public Stream eventToMessages(BeaconEvent beaconEvent) { () -> MinionServerFactory.findByMinionId(beaconEvent.getMinionId()) .ifPresent(minionServer -> { try { - ActionManager.schedulePackageRefresh(minionServer.getOrg(), minionServer); + ActionManager.schedulePackageRefresh(Optional.empty(), minionServer); } catch (TaskomaticApiException e) { - LOG.error("Could not schedule package refresh for minion: {}", minionServer.getMinionId()); - LOG.error(e); + LOG.error("Could not schedule package refresh for minion: {}", + minionServer.getMinionId(), e); } })) ); diff --git a/java/code/src/com/suse/manager/reactor/messaging/JobReturnEventMessageAction.java b/java/code/src/com/suse/manager/reactor/messaging/JobReturnEventMessageAction.java index 727b6ff6d238..af0d77893025 100644 --- a/java/code/src/com/suse/manager/reactor/messaging/JobReturnEventMessageAction.java +++ b/java/code/src/com/suse/manager/reactor/messaging/JobReturnEventMessageAction.java @@ -23,6 +23,7 @@ import com.redhat.rhn.domain.server.MinionServer; import com.redhat.rhn.domain.server.MinionServerFactory; import com.redhat.rhn.domain.server.VirtualInstance; +import com.redhat.rhn.domain.user.User; import com.redhat.rhn.manager.action.ActionManager; import com.redhat.rhn.manager.system.SystemManager; import com.redhat.rhn.taskomatic.TaskomaticApiException; @@ -56,6 +57,7 @@ import java.util.Map; import java.util.Objects; import java.util.Optional; +import java.util.concurrent.atomic.AtomicReference; import java.util.stream.Collectors; @@ -88,7 +90,7 @@ private static Optional eventToJson(JobReturnEvent jobReturnEvent) jobReturnEvent.getData().getResult(JsonElement.class)); } catch (JsonSyntaxException e) { - LOG.error("JSON syntax error while decoding into a StateApplyResult:"); + LOG.error("JSON syntax error while decoding into a StateApplyResult:", e); LOG.error(jobReturnEvent.getData().getResult(JsonElement.class).toString()); } return jsonResult; @@ -146,6 +148,7 @@ public void execute(EventMessage msg) { if (!jobResult.isPresent()) { return; } + AtomicReference> scheduler = new AtomicReference<>(Optional.empty()); JsonElement jsonResult = jobResult.get(); // The Salt reactor triggers a "suma-action-chain" job (mgractionchains.resume) at // 'minion/startup/event/'. This means the result might not be a JSON in case of @@ -162,6 +165,7 @@ public void execute(EventMessage msg) { .flatMap(ActionChainFactory::getActionChain); actionChain.ifPresent(ac -> { + scheduler.set(Optional.ofNullable(ac.getUser())); ac.getEntries().stream() .flatMap(ace -> ace.getAction().getServerActions().stream()) .filter(sa -> sa.getServer().asMinionServer() @@ -204,7 +208,7 @@ public void execute(EventMessage msg) { .stream() // handlePackageChange for all the results in actions chain result. .anyMatch(Boolean.TRUE::equals); if (packageRefreshNeeded) { - schedulePackageRefresh(jobReturnEvent.getMinionId()); + schedulePackageRefresh(scheduler.get(), jobReturnEvent.getMinionId()); } }); @@ -212,15 +216,19 @@ public void execute(EventMessage msg) { if (!isActionChainInvolved && !isFunctionTestMode && handlePackageChanges(jobReturnEvent, Optional.ofNullable(function).map(Xor::right), jobResult)) { Date earliest = new Date(); + Optional scheduler = Optional.empty(); if (actionId.isPresent()) { Optional action = Optional.ofNullable(ActionFactory.lookupById(actionId.get())); - if (action.isPresent() && action.get().getActionType().equals(ActionFactory.TYPE_DIST_UPGRADE)) { - Calendar calendar = Calendar.getInstance(); - calendar.add(Calendar.SECOND, 30); - earliest = calendar.getTime(); + if (action.isPresent()) { + scheduler = Optional.ofNullable(action.get().getSchedulerUser()); + if (action.get().getActionType().equals(ActionFactory.TYPE_DIST_UPGRADE)) { + Calendar calendar = Calendar.getInstance(); + calendar.add(Calendar.SECOND, 30); + earliest = calendar.getTime(); + } } } - schedulePackageRefresh(jobReturnEvent.getMinionId(), earliest); + schedulePackageRefresh(scheduler, jobReturnEvent.getMinionId(), earliest); } // Check if event was triggered in response to state scheduled at minion start-up event @@ -306,8 +314,7 @@ private boolean handlePackageChanges(JobReturnEvent jobReturnEvent, Optional user, String minionId) { + schedulePackageRefresh(user, minionId, new Date()); } /** @@ -327,13 +334,13 @@ private void schedulePackageRefresh(String minionId) { * @param minionId ID of the minion for which package refresh should be scheduled * @param earliest The earliest time this action should be run. */ - private void schedulePackageRefresh(String minionId, Date earliest) { + private void schedulePackageRefresh(Optional user, String minionId, Date earliest) { MinionServerFactory.findByMinionId(minionId).ifPresent(minionServer -> { try { - ActionManager.schedulePackageRefresh(minionServer.getOrg(), minionServer, earliest); + ActionManager.schedulePackageRefresh(user, minionServer, earliest); } catch (TaskomaticApiException e) { - LOG.error(e); + LOG.error(e.getMessage(), e); } }); } diff --git a/java/code/src/com/suse/manager/reactor/messaging/RegisterMinionEventMessageAction.java b/java/code/src/com/suse/manager/reactor/messaging/RegisterMinionEventMessageAction.java index bfec37efe1af..2895c01a03b5 100644 --- a/java/code/src/com/suse/manager/reactor/messaging/RegisterMinionEventMessageAction.java +++ b/java/code/src/com/suse/manager/reactor/messaging/RegisterMinionEventMessageAction.java @@ -20,6 +20,7 @@ import static java.util.Optional.ofNullable; import com.redhat.rhn.common.hibernate.HibernateFactory; +import com.redhat.rhn.common.localization.LocalizationService; import com.redhat.rhn.common.messaging.EventMessage; import com.redhat.rhn.common.messaging.MessageAction; import com.redhat.rhn.common.messaging.MessageQueue; @@ -59,6 +60,7 @@ import com.redhat.rhn.manager.system.entitling.SystemEntitler; import com.redhat.rhn.manager.system.entitling.SystemUnentitler; +import com.suse.cloud.CloudPaygManager; import com.suse.manager.reactor.utils.ValueMap; import com.suse.manager.utils.SaltUtils; import com.suse.manager.virtualization.VirtManagerSalt; @@ -94,6 +96,7 @@ import java.util.Comparator; import java.util.Date; import java.util.List; +import java.util.Locale; import java.util.Map; import java.util.Objects; import java.util.Optional; @@ -115,6 +118,8 @@ public class RegisterMinionEventMessageAction implements MessageAction { private final SystemQuery systemQuery; private final SystemEntitlementManager entitlementManager; + private final CloudPaygManager cloudPaygManager; + private static final String FQDN = "fqdn"; private static final String TERMINALS_GROUP_NAME = "TERMINALS"; @@ -123,10 +128,12 @@ public class RegisterMinionEventMessageAction implements MessageAction { * * @param systemQueryIn systemQuery instance for gathering data from a system. * @param saltApiIn saltApi instance for gathering data from a system. + * @param paygMgrIn {@link CloudPaygManager} instance */ - public RegisterMinionEventMessageAction(SystemQuery systemQueryIn, SaltApi saltApiIn) { + public RegisterMinionEventMessageAction(SystemQuery systemQueryIn, SaltApi saltApiIn, CloudPaygManager paygMgrIn) { saltApi = saltApiIn; systemQuery = systemQueryIn; + cloudPaygManager = paygMgrIn; VirtManager virtManager = new VirtManagerSalt(saltApi); MonitoringManager monitoringManager = new FormulaMonitoringManager(saltApi); ServerGroupManager groupManager = new ServerGroupManager(saltApi); @@ -271,12 +278,13 @@ private void registerMinion(String minionId, boolean isSaltSSH, Optional { @@ -435,6 +443,25 @@ public void finalizeMinionRegistration(String minionId, .orElseThrow(() -> new SaltException("Missing systeminfo result. Aborting registration.")); ValueMap grains = systemInfo.getGrains(); + + if (cloudPaygManager.isPaygInstance() && !cloudPaygManager.hasSCCCredentials() && + !RegistrationUtils.isAllowedOnPayg(systemQuery, minionId, Collections.emptySet(), grains)) { + + Object[] args = {minionId}; + // If the minion is not in the cloud + if (grains.getValueAsString("instance_id").length() == 0) { + // DC instances are not allowed to be onboarded without SCC credentials + throw new RegisterMinionException(minionId, org, "bootstrap.minion.error.payg.dcregistered", args); + } + else { + // BYOS in cloud instances is not allowed to register on a pure SUMA PAYG + // exception: free products or SUSE Manager Proxy + // Attention: minion could be PAYG, so it might lack of package `instance-flavor-check` + throw new RegisterMinionException(minionId, org, + "bootstrap.minion.error.payg.byosregistered", args); + } + } + MinionServer minion = migrateOrCreateSystem(minionId, isSaltSSH, activationKeyOverride, machineId, grains); minion.setMachineId(machineId); @@ -548,6 +575,10 @@ else if (!minion.getOrg().equals(org)) { systemInfo.getUptimeSeconds().ifPresent(us -> SaltUtils.handleUptimeUpdate(minion, us.longValue())); RegistrationUtils.finishRegistration(minion, activationKey, creator, !isSaltSSH, isSaltSSH); } + catch (RegisterMinionException rme) { + LOG.error("Error registering minion id: {}", minionId, rme); + throw rme; + } catch (Exception t) { LOG.error("Error registering minion id: {}", minionId, t); throw new RegisterMinionException(minionId, org); @@ -1020,7 +1051,7 @@ public Consumer getExceptionHandler() { if (e instanceof RegisterMinionException) { RegisterMinionException rme = (RegisterMinionException) e; NotificationMessage notificationMessage = UserNotificationFactory.createNotificationMessage( - new OnboardingFailed(rme.minionId, e.getMessage()) + new OnboardingFailed(rme.minionId, e.getLocalizedMessage()) ); if (rme.org == null) { UserNotificationFactory.storeNotificationMessageFor(notificationMessage, @@ -1040,15 +1071,40 @@ public Consumer getExceptionHandler() { public class RegisterMinionException extends RuntimeException { private final String minionId; private final Org org; + private final String messageId; + private final transient Object [] arguments; + RegisterMinionException(String minionIdIn, Org orgIn) { super(); + messageId = ""; minionId = minionIdIn; org = orgIn; + arguments = null; } RegisterMinionException(String minionIdIn, Org orgIn, String msgIn) { super(msgIn); + messageId = ""; + minionId = minionIdIn; + org = orgIn; + arguments = null; + } + + RegisterMinionException(String minionIdIn, Org orgIn, String msgId, Object [] args) { + super(LocalizationService.getInstance().getMessage(msgId, Locale.US, args)); + messageId = msgId; minionId = minionIdIn; org = orgIn; + arguments = args; + } + + /** + * @return return the message localized - if it was translated + */ + public String getLocalizedMessage() { + if (messageId.isEmpty()) { + return getMessage(); + } + return LocalizationService.getInstance().getMessage(messageId, arguments); } } } diff --git a/java/code/src/com/suse/manager/reactor/messaging/RegistrationUtils.java b/java/code/src/com/suse/manager/reactor/messaging/RegistrationUtils.java index 4a0838946f0c..14850f753c9e 100644 --- a/java/code/src/com/suse/manager/reactor/messaging/RegistrationUtils.java +++ b/java/code/src/com/suse/manager/reactor/messaging/RegistrationUtils.java @@ -26,6 +26,7 @@ import com.redhat.rhn.common.messaging.MessageQueue; import com.redhat.rhn.common.validator.ValidatorResult; import com.redhat.rhn.domain.channel.Channel; +import com.redhat.rhn.domain.channel.ChannelFamily; import com.redhat.rhn.domain.entitlement.Entitlement; import com.redhat.rhn.domain.product.SUSEProduct; import com.redhat.rhn.domain.product.SUSEProductChannel; @@ -84,6 +85,8 @@ public class RegistrationUtils { private static final String OS_ARCH = "osarch"; private static final Logger LOG = LogManager.getLogger(RegistrationUtils.class); + public static final String OS_MAJOR_RELEASE = "osmajorrelease"; + public static final String OS_RELEASE = "osrelease"; private static SystemEntitlementManager systemEntitlementManager = GlobalInstanceHolder.SYSTEM_ENTITLEMENT_MANAGER; @@ -350,11 +353,47 @@ private static Set findChannelsForProducts(Set suseProduct ); } + /** + * Check if the products installed on the minion are allowed for free + * use on a SUSE Manager PAYG Server + * @param systemQuery query api + * @param minionId the minionId + * @param channels assigned channels + * @param grains the system grains + * @return true if the use is allowed + */ + public static boolean isAllowedOnPayg(SystemQuery systemQuery, String minionId, + Set channels, ValueMap grains) { + boolean isPaygClient = grains.getOptionalAsBoolean("is_payg_instance").orElse(false); + if (isPaygClient) { + return true; + } + return identifyProduct(systemQuery, minionId, grains.getValueAsString(OS_ARCH), channels, grains) + .stream() + .allMatch(p -> { + if (p.getFree()) { + return true; + } + ChannelFamily cf = p.getChannelFamily(); + if (cf != null) { + return cf.getLabel().equals("SMP") || cf.getLabel().equals("SLE-M-T"); + } + return false; + }); + } + private static Set identifyProduct(SystemQuery systemQuery, MinionServer server, ValueMap grains) { - if ("suse".equalsIgnoreCase(grains.getValueAsString(OS))) { + return identifyProduct(systemQuery, server.getMinionId(), server.getServerArch().getLabel(), + server.getChannels(), grains); + } + private static Set identifyProduct(SystemQuery systemQuery, String minionId, String arch, + Set channels, ValueMap grains) { + String osGrain = grains.getValueAsString(OS); + String osArchGrain = grains.getValueAsString(OS_ARCH); + if ("suse".equalsIgnoreCase(osGrain)) { Optional> productList = - systemQuery.getProducts(server.getMinionId()); - return Opt.stream(productList).flatMap(pl -> pl.stream() + systemQuery.getProducts(minionId); + return productList.stream().flatMap(pl -> pl.stream() .flatMap(pi -> { String osName = pi.getName().toLowerCase(); String osVersion = pi.getVersion(); @@ -363,48 +402,47 @@ private static Set identifyProduct(SystemQuery systemQuery, MinionS Optional suseProduct = ofNullable(SUSEProductFactory.findSUSEProduct(osName, osVersion, osRelease, osArch, true)); - if (!suseProduct.isPresent()) { + if (suseProduct.isEmpty()) { LOG.warn("No product match found for: {} {} {} {}", osName, osVersion, osRelease, osArch); } - return Opt.stream(suseProduct); + return suseProduct.stream(); })).collect(toSet()); } else if (Set.of("redhat", "centos", "oel", "alibaba cloud (aliyun)", "almalinux", "amazon", "rocky") - .contains(grains.getValueAsString(OS).toLowerCase())) { + .contains(osGrain.toLowerCase())) { - Optional redhatProductInfo = systemQuery.redhatProductInfo(server.getMinionId()); + Optional redhatProductInfo = systemQuery.redhatProductInfo(minionId); Optional rhelProduct = redhatProductInfo.flatMap(x -> RhelUtils.detectRhelProduct( - server, x.getWhatProvidesRes(), x.getWhatProvidesSLL(), x.getRhelReleaseContent(), + channels, arch, x.getWhatProvidesRes(), x.getWhatProvidesSLL(), x.getRhelReleaseContent(), x.getCentosReleaseContent(), x.getOracleReleaseContent(), x.getAlibabaReleaseContent(), x.getAlmaReleaseContent(), x.getAmazonReleaseContent(), x.getRockyReleaseContent())); return Opt.stream(rhelProduct).flatMap(rhel -> { if (rhel.getSuseBaseProduct().isEmpty()) { LOG.warn("No product match found for: {} {} {} {}", rhel.getName(), rhel.getVersion(), - rhel.getRelease(), server.getServerArch().getCompatibleChannelArch()); + rhel.getRelease(), arch); return Stream.empty(); } return rhel.getAllSuseProducts().stream(); }).collect(toSet()); } - else if ("ubuntu".equalsIgnoreCase(grains.getValueAsString(OS))) { + else if ("ubuntu".equalsIgnoreCase(osGrain)) { SUSEProduct product = SUSEProductFactory.findSUSEProduct("ubuntu-client", - grains.getValueAsString("osrelease"), null, grains.getValueAsString(OS_ARCH) + "-deb", false); + grains.getValueAsString(OS_RELEASE), null, osArchGrain + "-deb", false); if (product != null) { return Collections.singleton(product); } } - else if ("debian".equalsIgnoreCase(grains.getValueAsString(OS))) { + else if ("debian".equalsIgnoreCase(osGrain)) { SUSEProduct product = SUSEProductFactory.findSUSEProduct("debian-client", - grains.getValueAsString("osmajorrelease"), null, grains.getValueAsString(OS_ARCH) + "-deb", false); + grains.getValueAsString(OS_MAJOR_RELEASE), null, osArchGrain + "-deb", false); if (product != null) { return Collections.singleton(product); } } - LOG.warn("No product match found. OS grain is {}, arch is {}", grains.getValueAsString(OS), - grains.getValueAsString(OS_ARCH)); + LOG.warn("No product match found. OS grain is {}, arch is {}", osGrain, osArchGrain); return emptySet(); } diff --git a/java/code/src/com/suse/manager/reactor/test/RebootInfoBeaconTest.java b/java/code/src/com/suse/manager/reactor/test/RebootInfoBeaconTest.java index c99a15de977a..483e39a7e69d 100644 --- a/java/code/src/com/suse/manager/reactor/test/RebootInfoBeaconTest.java +++ b/java/code/src/com/suse/manager/reactor/test/RebootInfoBeaconTest.java @@ -23,6 +23,7 @@ import com.redhat.rhn.testing.RhnJmockBaseTestCase; import com.redhat.rhn.testing.UserTestUtils; +import com.suse.cloud.CloudPaygManager; import com.suse.manager.reactor.SaltReactor; import com.suse.manager.utils.SaltKeyUtils; import com.suse.manager.utils.SaltUtils; @@ -61,11 +62,13 @@ public void setUp() { SaltService saltService = createSaltService(); SaltServerActionService saltServerActionService = createSaltServerActionService(saltService, saltService); SaltUtils saltUtils = new SaltUtils(saltService, saltService); + CloudPaygManager paygMgr = new CloudPaygManager(); reactor = new SaltReactor( saltService, saltService, saltServerActionService, - saltUtils + saltUtils, + paygMgr ); } diff --git a/java/code/src/com/suse/manager/reactor/test/RegisterMinionActionTest.java b/java/code/src/com/suse/manager/reactor/test/RegisterMinionActionTest.java index 42f241da10d7..c8fe34a238b8 100644 --- a/java/code/src/com/suse/manager/reactor/test/RegisterMinionActionTest.java +++ b/java/code/src/com/suse/manager/reactor/test/RegisterMinionActionTest.java @@ -77,6 +77,7 @@ import com.redhat.rhn.testing.TestUtils; import com.redhat.rhn.testing.UserTestUtils; +import com.suse.cloud.CloudPaygManager; import com.suse.manager.reactor.messaging.RegisterMinionEventMessage; import com.suse.manager.reactor.messaging.RegisterMinionEventMessageAction; import com.suse.manager.reactor.utils.test.RhelUtilsTest; @@ -150,6 +151,7 @@ public class RegisterMinionActionTest extends JMockBaseTestCaseWithUser { private Path metadataDirOfficial; private SaltService saltServiceMock; private SystemManager systemManager; + private CloudPaygManager cloudManager4Test; @FunctionalInterface private interface ExpectationsFunction { @@ -294,6 +296,12 @@ public void setUp() throws Exception { saltServiceMock = mock(SaltService.class); systemManager = new SystemManager(ServerFactory.SINGLETON, ServerGroupFactory.SINGLETON, saltServiceMock); + cloudManager4Test = new CloudPaygManager() { + @Override + public boolean isPaygInstance() { + return false; + } + }; context().checking(new Expectations() {{ allowing(saltServiceMock).refreshPillar(with(any(MinionList.class))); @@ -374,7 +382,7 @@ public void executeTest(ExpectationsFunction expectations, ActivationKeySupplier } RegisterMinionEventMessageAction action = new RegisterMinionEventMessageAction(saltServiceMock, - saltServiceMock); + saltServiceMock, cloudManager4Test); action.execute(new RegisterMinionEventMessage(MINION_ID, startupGrains)); // Verify the resulting system entry @@ -481,7 +489,7 @@ public void testAlreadyRegisteredMinionWithSameMachineId2() throws Exception { null, DEFAULT_CONTACT_METHOD); } catch (RegisterMinionEventMessageAction.RegisterMinionException e) { - assertContains(e.getMessage(), "Systems with conflicting minion_id and machine-id were found"); + assertContains(e.getMessage(), "Systems with conflicting minion ID and machine ID were found"); assertContains(e.getMessage(), "Please remove conflicting systems first (" + server1.getId() + ", " + server2.getId() + ")"); return; @@ -1790,6 +1798,199 @@ public void testMinionWithUsedReActivationKeyWithStartUpGrains() throws Exceptio Optional.of(minionStartUpGrains)); } + /** + * Test a registration of a non-free BYOS client at a PAYG SUMA Server. + * @throws Exception + */ + @Test + public void testRegisterMinionBYOSonPAYG() throws Exception { + cloudManager4Test = new CloudPaygManager() { + @Override + public boolean isPaygInstance() { + return true; + } + }; + ChannelFamily channelFamily = createTestChannelFamily(); + SUSEProduct product = SUSEProductTestUtils.createTestSUSEProduct(channelFamily); + product.setFree(false); + try { + executeTest( + (key) -> new Expectations() {{ + allowing(saltServiceMock).getSystemInfoFull(MINION_ID); + will(returnValue(getSystemInfo(MINION_ID, "byos", key))); + List pil = new ArrayList<>(); + ProductInfo pi = new ProductInfo( + product.getName(), + product.getArch().getLabel(), "descr", "eol", "epoch", "flavor", + true, true, "productline", Optional.of("registerrelease"), + "test", "repo", "shortname", "summary", "vendor", + product.getVersion()); + pil.add(pi); + allowing(saltServiceMock).getProducts(with(any(String.class))); + will(returnValue(Optional.of(pil))); + }}, + ACTIVATION_KEY_SUPPLIER, + (optMinion, machineId, key) -> assertTrue(optMinion.isEmpty()), + DEFAULT_CONTACT_METHOD); + } + catch (RegisterMinionEventMessageAction.RegisterMinionException e) { + assertContains(e.getMessage(), MINION_ID); + assertContains(e.getMessage(), "To manage BYOS (Bring-your-own-Subscription) clients " + + "you have to configure SCC Credentials"); + return; + } + finally { + MinionPendingRegistrationService.removeMinion(MINION_ID); + } + fail("Expected Exception not thrown"); + } + + /** + * Test a registration of a non-free DC client at a PAYG SUMA Server. + * @throws Exception + */ + @Test + public void testRegisterMinionDConPAYG() throws Exception { + cloudManager4Test = new CloudPaygManager() { + @Override + public boolean isPaygInstance() { + return true; + } + }; + ChannelFamily channelFamily = createTestChannelFamily(); + SUSEProduct product = SUSEProductTestUtils.createTestSUSEProduct(channelFamily); + product.setFree(false); + try { + executeTest( + (key) -> new Expectations() {{ + allowing(saltServiceMock).getSystemInfoFull(MINION_ID); + will(returnValue(getSystemInfo(MINION_ID, null, key))); + List pil = new ArrayList<>(); + ProductInfo pi = new ProductInfo( + product.getName(), + product.getArch().getLabel(), "descr", "eol", "epoch", "flavor", + true, true, "productline", Optional.of("registerrelease"), + "test", "repo", "shortname", "summary", "vendor", + product.getVersion()); + pil.add(pi); + allowing(saltServiceMock).getProducts(with(any(String.class))); + will(returnValue(Optional.of(pil))); + }}, + ACTIVATION_KEY_SUPPLIER, + (optMinion, machineId, key) -> assertTrue(optMinion.isEmpty()), + DEFAULT_CONTACT_METHOD); + } + catch (RegisterMinionEventMessageAction.RegisterMinionException e) { + assertContains(e.getMessage(), MINION_ID); + assertContains(e.getMessage(), "To manage Datacenter clients you have to configure SCC Credentials"); + return; + } + finally { + MinionPendingRegistrationService.removeMinion(MINION_ID); + } + fail("Expected Exception not thrown"); + } + + /** + * Test registration of a free BYOS client at a SUMA PAYG Server + * @throws Exception + */ + @Test + public void testRegisterMinionFreeBYOSonPAYG() throws Exception { + cloudManager4Test = new CloudPaygManager() { + @Override + public boolean isPaygInstance() { + return true; + } + }; + ChannelFamily channelFamily = createTestChannelFamily(); + SUSEProduct product = SUSEProductTestUtils.createTestSUSEProduct(channelFamily); + product.setFree(true); + executeTest( + (key) -> new Expectations() {{ + allowing(saltServiceMock).getSystemInfoFull(MINION_ID); + will(returnValue(getSystemInfo(MINION_ID, null, key))); + List pil = new ArrayList<>(); + ProductInfo pi = new ProductInfo( + product.getName(), + product.getArch().getLabel(), "descr", "eol", "epoch", "flavor", + true, true, "productline", Optional.of("registerrelease"), + "test", "repo", "shortname", "summary", "vendor", + product.getVersion()); + pil.add(pi); + allowing(saltServiceMock).getProducts(with(any(String.class))); + will(returnValue(Optional.of(pil))); + }}, + ACTIVATION_KEY_SUPPLIER, + (optMinion, machineId, key) -> assertTrue(optMinion.isPresent()), + DEFAULT_CONTACT_METHOD); + } + + /** + * Test registration of a SUSE Manager Proxy at a SUMA PAYG Server + * @throws Exception + */ + @Test + public void testRegisterMinionSumaProxyOnPAYG() throws Exception { + cloudManager4Test = new CloudPaygManager() { + @Override + public boolean isPaygInstance() { + return true; + } + }; + ChannelFamily channelFamily = createTestChannelFamily(); + channelFamily.setName("SUSE Manager Proxy"); + channelFamily.setLabel("SMP"); + + SUSEProduct product = SUSEProductTestUtils.createTestSUSEProduct(channelFamily); + product.setName("suse-manager-proxy"); + product.setVersion("4.3"); + product.setArch(PackageFactory.lookupPackageArchByLabel("x86_64")); + product.setFree(false); + SUSEProductFactory.save(product); + + executeTest( + (key) -> new Expectations() {{ + allowing(saltServiceMock).getSystemInfoFull(MINION_ID); + will(returnValue(getSystemInfo(MINION_ID, null, key))); + List pil = new ArrayList<>(); + ProductInfo pi = new ProductInfo( + product.getName(), + product.getArch().getLabel(), "descr", "eol", "epoch", "flavor", + true, true, "productline", Optional.of("registerrelease"), + "test", "repo", "shortname", "summary", "vendor", + product.getVersion()); + pil.add(pi); + allowing(saltServiceMock).getProducts(with(any(String.class))); + will(returnValue(Optional.of(pil))); + }}, + ACTIVATION_KEY_SUPPLIER, + (optMinion, machineId, key) -> assertTrue(optMinion.isPresent()), + DEFAULT_CONTACT_METHOD); + } + + /** + * Test registration of a PAYG Client at a SUMA PAYG Server + * @throws Exception + */ + @Test + public void testRegisterMinionPAYGonPAYG() throws Exception { + cloudManager4Test = new CloudPaygManager() { + @Override + public boolean isPaygInstance() { + return true; + } + }; + executeTest( + (key) -> new Expectations() {{ + allowing(saltServiceMock).getSystemInfoFull(MINION_ID); + will(returnValue(getSystemInfo(MINION_ID, "slespayg", key))); + }}, + ACTIVATION_KEY_SUPPLIER, + (optMinion, machineId, key) -> assertTrue(optMinion.isPresent()), + DEFAULT_CONTACT_METHOD); + } + private Channel setupBaseAndRequiredChannels(ChannelFamily channelFamily, SUSEProduct product) throws Exception { @@ -1840,7 +2041,7 @@ private void setupStubs(SUSEProduct product) } }); RegisterMinionEventMessageAction action = - new RegisterMinionEventMessageAction(saltServiceMock, saltServiceMock); + new RegisterMinionEventMessageAction(saltServiceMock, saltServiceMock, cloudManager4Test); action.execute(new RegisterMinionEventMessage(MINION_ID, Optional.of(DEFAULT_MINION_START_UP_GRAINS))); } diff --git a/java/code/src/com/suse/manager/reactor/test/dummy_systeminfo_byos.json b/java/code/src/com/suse/manager/reactor/test/dummy_systeminfo_byos.json new file mode 100644 index 000000000000..d49292230ed0 --- /dev/null +++ b/java/code/src/com/suse/manager/reactor/test/dummy_systeminfo_byos.json @@ -0,0 +1,280 @@ +{ + "mgrcompat_|-sync_beacons_|-saltutil.sync_beacons_|-module_run": { + "comment": "Module function saltutil.sync_beacons executed", + "name": "saltutil.sync_beacons", + "start_time": "15:10:28.808934", + "result": true, + "duration": 93.715, + "__run_num__": 2, + "__sls__": "util.syncbeacons", + "changes": { + "ret": [] + }, + "__id__": "sync_beacons" + }, + "mgrcompat_|-status_uptime_|-status.uptime_|-module_run": { + "comment": "Module function status.uptime executed", + "name": "status.uptime", + "start_time": "15:10:28.902879", + "result": true, + "duration": 16.436, + "__run_num__": 3, + "__sls__": "util.systeminfo", + "changes": { + "ret": { + "users": 2, + "seconds": 27, + "since_t": 1551709288, + "days": 0, + "since_iso": "2019-03-04T14:21:28.933041", + "time": "0:0" + } + + }, + "__id__": "status_uptime" + }, + "mgrcompat_|-sync_grains_|-saltutil.sync_grains_|-module_run": { + "comment": "Module function saltutil.sync_grains executed", + "name": "saltutil.sync_grains", + "start_time": "15:10:27.968460", + "result": true, + "duration": 832.525, + "__run_num__": 1, + "__sls__": "util.syncgrains", + "changes": { + "ret": [] + }, + "__id__": "sync_grains" + }, + "mgrcompat_|-sync_modules_|-saltutil.sync_modules_|-module_run": { + "comment": "Module function saltutil.sync_modules executed", + "name": "saltutil.sync_modules", + "start_time": "15:10:27.664062", + "result": true, + "duration": 304.157, + "__run_num__": 0, + "__sls__": "util.syncmodules", + "changes": { + "ret": [] + }, + "__id__": "sync_modules" + }, + "mgrcompat_|-grains_update_|-grains.items_|-module_run": { + "comment": "Module function grains.item executed", + "name": "grains.item", + "start_time": "15:10:28.919644", + "result": true, + "duration": 2.556, + "__run_num__": 4, + "__sls__": "util.systeminfo", + "changes": { + "ret": { + "biosversion": "rel-1.7.5-0-ge51488c-20150524_160643-cloud127", + "kernel": "Linux", + "domain": "vagrant.local", + "biosreleasedate": "04/01/2014", + "zmqversion": "4.0.4", + "kernelrelease": "3.12.48-52.27-default", + "pythonpath": [ + "/usr/bin", + "/usr/lib/python27.zip", + "/usr/lib64/python2.7", + "/usr/lib64/python2.7/plat-linux2", + "/usr/lib64/python2.7/lib-tk", + "/usr/lib64/python2.7/lib-old", + "/usr/lib64/python2.7/lib-dynload", + "/usr/lib64/python2.7/site-packages", + "/usr/local/lib64/python2.7/site-packages", + "/usr/local/lib/python2.7/site-packages", + "/usr/lib/python2.7/site-packages" + ], + "instance_id": "aws", + "ip_interfaces": { + "lo": [ + "127.0.0.1", + "::1" + ], + "eth1": [ + "172.16.37.5", + "fe80::5054:ff:feb0:1da2" + ], + "eth0": [ + "192.168.121.35", + "fe80::5054:ff:fe4f:7102" + ] + }, + "shell": "/bin/bash", + "mem_total": 489, + "saltversioninfo": [ + 2015, + 8, + 2, + 0 + ], + "SSDs": [], + "server": "suma3pg.vagrant.local", + "id": "clisles12-suma3pg.vagrant.local", + "osrelease": "12", + "ps": "ps -efH", + "server_id": 1617825398, + "uuid": "75299898-533c-ff48-8b5c-be026df56f74", + "ip6_interfaces": { + "lo": [ + "::1" + ], + "eth1": [ + "fe80::5054:ff:feb0:1da2" + ], + "eth0": [ + "fe80::5054:ff:fe4f:7102" + ] + }, + "num_cpus": 1, + "hwaddr_interfaces": { + "lo": "00:00:00:00:00:00", + "eth1": "52:54:00:b0:1d:a2", + "eth0": "52:54:00:4f:71:02" + }, + "init": "systemd", + "ip4_interfaces": { + "lo": [ + "127.0.0.1" + ], + "eth1": [ + "172.16.37.5" + ], + "eth0": [ + "192.168.121.35" + ] + }, + "osfullname": "SLES", + "master": "suma3pg", + "ipv4": [ + "127.0.0.1", + "172.16.37.5", + "192.168.121.35" + ], + "ipv6": [ + "::1", + "fe80::5054:ff:fe4f:7102", + "fe80::5054:ff:feb0:1da2" + ], + "role": "client", + "cpusockets": 1, + "cpu_flags": [ + "fpu", + "vme", + "de", + "pse", + "tsc", + "msr", + "pae", + "mce", + "cx8", + "apic", + "sep", + "mtrr", + "pge", + "mca", + "cmov", + "pat", + "pse36", + "clflush", + "mmx", + "fxsr", + "sse", + "sse2", + "ss", + "syscall", + "nx", + "pdpe1gb", + "rdtscp", + "lm", + "constant_tsc", + "rep_good", + "nopl", + "eagerfpu", + "pni", + "pclmulqdq", + "vmx", + "ssse3", + "fma", + "cx16", + "pcid", + "sse4_1", + "sse4_2", + "x2apic", + "movbe", + "popcnt", + "tsc_deadline_timer", + "aes", + "xsave", + "avx", + "f16c", + "rdrand", + "hypervisor", + "lahf_lm", + "abm", + "xsaveopt", + "vnmi", + "ept", + "fsgsbase", + "bmi1", + "avx2", + "smep", + "bmi2", + "erms", + "invpcid" + ], + "localhost": "clisles12-suma3pg", + "lsb_distrib_id": "SLES", + "fqdn_ip4": [ + "127.0.0.1" + ], + "fqdn_ip6": [], + "nodename": "clisles12-suma3pg", + "saltversion": "2015.8.2", + "lsb_distrib_release": "12", + "systemd": { + "version": "210", + "features": "+PAM +LIBWRAP +AUDIT +SELINUX -IMA +SYSVINIT +LIBCRYPTSETUP +GCRYPT +ACL +XZ +SECCOMP +APPARMOR" + }, + "saltpath": "/usr/lib/python2.7/site-packages/salt", + "host": "clisles12-suma3pg", + "os_family": "Suse", + "oscodename": "SUSE Linux Enterprise Server 12", + "gpus": [], + "pythonversion": [ + 2, + 7, + 9, + "final", + 0 + ], + "manufacturer": "QEMU", + "num_gpus": 0, + "virtual": "kvm", + "cpu_model": "Intel Xeon E312xx (Sandy Bridge)", + "fqdn": "clisles12-suma3pg.vagrant.local", + "fqdns": ["minion3sp2.tf.local", "minion3sp2.suse.local"], + "pythonexecutable": "/usr/bin/python", + "productname": "Standard PC (i440FX + PIIX, 1996)", + "osarch": "x86_64", + "cpuarch": "x86_64", + "lsb_distrib_codename": "SUSE Linux Enterprise Server 12", + "osrelease_info": [ + 12 + ], + "locale_info": { + "detectedencoding": "UTF-8", + "defaultlanguage": "en_US", + "defaultencoding": "UTF-8" + }, + "path": "/sbin:/usr/sbin:/usr/local/sbin:/root/bin:/usr/local/bin:/usr/bin:/bin:/usr/games:/usr/lib/mit/bin:/usr/lib/mit/sbin", + "machine_id": "44da3fc9b97b6552cc668bcd56498fe5", + "os": "SUSE" + } + }, + "__id__": "grains_update" + } + } diff --git a/java/code/src/com/suse/manager/reactor/test/dummy_systeminfo_slespayg.json b/java/code/src/com/suse/manager/reactor/test/dummy_systeminfo_slespayg.json new file mode 100644 index 000000000000..6bdc5b4bea20 --- /dev/null +++ b/java/code/src/com/suse/manager/reactor/test/dummy_systeminfo_slespayg.json @@ -0,0 +1,280 @@ +{ + "mgrcompat_|-sync_beacons_|-saltutil.sync_beacons_|-module_run": { + "comment": "Module function saltutil.sync_beacons executed", + "name": "saltutil.sync_beacons", + "start_time": "15:10:28.808934", + "result": true, + "duration": 93.715, + "__run_num__": 2, + "__sls__": "util.syncbeacons", + "changes": { + "ret": [] + }, + "__id__": "sync_beacons" + }, + "mgrcompat_|-status_uptime_|-status.uptime_|-module_run": { + "comment": "Module function status.uptime executed", + "name": "status.uptime", + "start_time": "15:10:28.902879", + "result": true, + "duration": 16.436, + "__run_num__": 3, + "__sls__": "util.systeminfo", + "changes": { + "ret": { + "users": 2, + "seconds": 27, + "since_t": 1551709288, + "days": 0, + "since_iso": "2019-03-04T14:21:28.933041", + "time": "0:0" + } + + }, + "__id__": "status_uptime" + }, + "mgrcompat_|-sync_grains_|-saltutil.sync_grains_|-module_run": { + "comment": "Module function saltutil.sync_grains executed", + "name": "saltutil.sync_grains", + "start_time": "15:10:27.968460", + "result": true, + "duration": 832.525, + "__run_num__": 1, + "__sls__": "util.syncgrains", + "changes": { + "ret": [] + }, + "__id__": "sync_grains" + }, + "mgrcompat_|-sync_modules_|-saltutil.sync_modules_|-module_run": { + "comment": "Module function saltutil.sync_modules executed", + "name": "saltutil.sync_modules", + "start_time": "15:10:27.664062", + "result": true, + "duration": 304.157, + "__run_num__": 0, + "__sls__": "util.syncmodules", + "changes": { + "ret": [] + }, + "__id__": "sync_modules" + }, + "mgrcompat_|-grains_update_|-grains.items_|-module_run": { + "comment": "Module function grains.item executed", + "name": "grains.item", + "start_time": "15:10:28.919644", + "result": true, + "duration": 2.556, + "__run_num__": 4, + "__sls__": "util.systeminfo", + "changes": { + "ret": { + "biosversion": "rel-1.7.5-0-ge51488c-20150524_160643-cloud127", + "kernel": "Linux", + "domain": "vagrant.local", + "biosreleasedate": "04/01/2014", + "zmqversion": "4.0.4", + "kernelrelease": "3.12.48-52.27-default", + "pythonpath": [ + "/usr/bin", + "/usr/lib/python27.zip", + "/usr/lib64/python2.7", + "/usr/lib64/python2.7/plat-linux2", + "/usr/lib64/python2.7/lib-tk", + "/usr/lib64/python2.7/lib-old", + "/usr/lib64/python2.7/lib-dynload", + "/usr/lib64/python2.7/site-packages", + "/usr/local/lib64/python2.7/site-packages", + "/usr/local/lib/python2.7/site-packages", + "/usr/lib/python2.7/site-packages" + ], + "ip_interfaces": { + "lo": [ + "127.0.0.1", + "::1" + ], + "eth1": [ + "172.16.37.5", + "fe80::5054:ff:feb0:1da2" + ], + "eth0": [ + "192.168.121.35", + "fe80::5054:ff:fe4f:7102" + ] + }, + "is_payg_instance": true, + "shell": "/bin/bash", + "mem_total": 489, + "saltversioninfo": [ + 2015, + 8, + 2, + 0 + ], + "SSDs": [], + "server": "suma3pg.vagrant.local", + "id": "clisles12-suma3pg.vagrant.local", + "osrelease": "12", + "ps": "ps -efH", + "server_id": 1617825398, + "uuid": "75299898-533c-ff48-8b5c-be026df56f74", + "ip6_interfaces": { + "lo": [ + "::1" + ], + "eth1": [ + "fe80::5054:ff:feb0:1da2" + ], + "eth0": [ + "fe80::5054:ff:fe4f:7102" + ] + }, + "num_cpus": 1, + "hwaddr_interfaces": { + "lo": "00:00:00:00:00:00", + "eth1": "52:54:00:b0:1d:a2", + "eth0": "52:54:00:4f:71:02" + }, + "init": "systemd", + "ip4_interfaces": { + "lo": [ + "127.0.0.1" + ], + "eth1": [ + "172.16.37.5" + ], + "eth0": [ + "192.168.121.35" + ] + }, + "osfullname": "SLES", + "master": "suma3pg", + "ipv4": [ + "127.0.0.1", + "172.16.37.5", + "192.168.121.35" + ], + "ipv6": [ + "::1", + "fe80::5054:ff:fe4f:7102", + "fe80::5054:ff:feb0:1da2" + ], + "role": "client", + "cpusockets": 1, + "cpu_flags": [ + "fpu", + "vme", + "de", + "pse", + "tsc", + "msr", + "pae", + "mce", + "cx8", + "apic", + "sep", + "mtrr", + "pge", + "mca", + "cmov", + "pat", + "pse36", + "clflush", + "mmx", + "fxsr", + "sse", + "sse2", + "ss", + "syscall", + "nx", + "pdpe1gb", + "rdtscp", + "lm", + "constant_tsc", + "rep_good", + "nopl", + "eagerfpu", + "pni", + "pclmulqdq", + "vmx", + "ssse3", + "fma", + "cx16", + "pcid", + "sse4_1", + "sse4_2", + "x2apic", + "movbe", + "popcnt", + "tsc_deadline_timer", + "aes", + "xsave", + "avx", + "f16c", + "rdrand", + "hypervisor", + "lahf_lm", + "abm", + "xsaveopt", + "vnmi", + "ept", + "fsgsbase", + "bmi1", + "avx2", + "smep", + "bmi2", + "erms", + "invpcid" + ], + "localhost": "clisles12-suma3pg", + "lsb_distrib_id": "SLES", + "fqdn_ip4": [ + "127.0.0.1" + ], + "fqdn_ip6": [], + "nodename": "clisles12-suma3pg", + "saltversion": "2015.8.2", + "lsb_distrib_release": "12", + "systemd": { + "version": "210", + "features": "+PAM +LIBWRAP +AUDIT +SELINUX -IMA +SYSVINIT +LIBCRYPTSETUP +GCRYPT +ACL +XZ +SECCOMP +APPARMOR" + }, + "saltpath": "/usr/lib/python2.7/site-packages/salt", + "host": "clisles12-suma3pg", + "os_family": "Suse", + "oscodename": "SUSE Linux Enterprise Server 12", + "gpus": [], + "pythonversion": [ + 2, + 7, + 9, + "final", + 0 + ], + "manufacturer": "QEMU", + "num_gpus": 0, + "virtual": "kvm", + "cpu_model": "Intel Xeon E312xx (Sandy Bridge)", + "fqdn": "clisles12-suma3pg.vagrant.local", + "fqdns": ["minion3sp2.tf.local", "minion3sp2.suse.local"], + "pythonexecutable": "/usr/bin/python", + "productname": "Standard PC (i440FX + PIIX, 1996)", + "osarch": "x86_64", + "cpuarch": "x86_64", + "lsb_distrib_codename": "SUSE Linux Enterprise Server 12", + "osrelease_info": [ + 12 + ], + "locale_info": { + "detectedencoding": "UTF-8", + "defaultlanguage": "en_US", + "defaultencoding": "UTF-8" + }, + "path": "/sbin:/usr/sbin:/usr/local/sbin:/root/bin:/usr/local/bin:/usr/bin:/bin:/usr/games:/usr/lib/mit/bin:/usr/lib/mit/sbin", + "machine_id": "44da3fc9b97b6552cc668bcd56498fe5", + "os": "SUSE" + } + }, + "__id__": "grains_update" + } + } diff --git a/java/code/src/com/suse/manager/saltboot/PXEEventMessageAction.java b/java/code/src/com/suse/manager/saltboot/PXEEventMessageAction.java index 126c0830e3a5..bacbade7317b 100644 --- a/java/code/src/com/suse/manager/saltboot/PXEEventMessageAction.java +++ b/java/code/src/com/suse/manager/saltboot/PXEEventMessageAction.java @@ -29,7 +29,9 @@ public class PXEEventMessageAction implements MessageAction { @Override public void execute(EventMessage msg) { PXEEvent pxeEvent = ((PXEEventMessage) msg).getPXEEventMessage(); + LOG.debug("Processing PXEEvent for minion {}", pxeEvent.getMinionId()); + // Part 1 - update PXE entries if (pxeEvent.getRoot().isEmpty()) { LOG.error("Root device not specified in PXE event for minion {}. Ignoring event", pxeEvent.getMinionId()); return; @@ -48,6 +50,9 @@ public void execute(EventMessage msg) { SaltbootUtils.createSaltbootSystem(pxeEvent.getMinionId(), pxeEvent.getBootImage(), pxeEvent.getSaltbootGroup(), pxeEvent.getHwAddresses(), kernelParameters); + + // Part 2 - reset pillar data "saltboot:force_*" or "custom_info:saltboot_force_*" if present + SaltbootUtils.resetSaltbootRedeployFlags(pxeEvent.getMinionId()); } @Override diff --git a/java/code/src/com/suse/manager/saltboot/SaltbootUtils.java b/java/code/src/com/suse/manager/saltboot/SaltbootUtils.java index 81ae1a9b0ecc..a2fb07149f88 100644 --- a/java/code/src/com/suse/manager/saltboot/SaltbootUtils.java +++ b/java/code/src/com/suse/manager/saltboot/SaltbootUtils.java @@ -15,10 +15,16 @@ package com.suse.manager.saltboot; +import com.redhat.rhn.common.hibernate.HibernateFactory; import com.redhat.rhn.domain.image.ImageInfo; import com.redhat.rhn.domain.image.OSImageStoreUtils; +import com.redhat.rhn.domain.org.CustomDataKey; import com.redhat.rhn.domain.org.Org; +import com.redhat.rhn.domain.org.OrgFactory; +import com.redhat.rhn.domain.server.CustomDataValue; +import com.redhat.rhn.domain.server.MinionServer; import com.redhat.rhn.domain.server.MinionServerFactory; +import com.redhat.rhn.domain.server.ServerFactory; import com.redhat.rhn.manager.kickstart.cobbler.CobblerXMLRPCHelper; import com.suse.manager.webui.utils.salt.custom.OSImageInspectSlsResult.BootImage; @@ -32,6 +38,7 @@ import org.cobbler.SystemRecord; import java.util.List; +import java.util.Map; import java.util.Optional; import java.util.stream.Collectors; @@ -62,7 +69,7 @@ public static void createSaltbootDistro(ImageInfo imageInfo, BootImage bootImage .setKernelOptions(Optional.of("panic=60 splash=silent")) .setArch(imageInfo.getImageArch().getName()).setBreed("generic") .build(con); - cd.setComment("Distro for image " + name + "belonging to organization " + imageInfo.getOrg().getName()); + cd.setComment("Distro for image " + name + " belonging to organization " + imageInfo.getOrg().getName()); cd.save(); // Each distro have its own private profile for individual system records @@ -108,22 +115,31 @@ public static void createSaltbootProfile(String saltbootGroup, String kernelOpti String distroToUse; if (bootImage == null || bootImage.isEmpty()) { SaltbootVersionCompare saltbootCompare = new SaltbootVersionCompare(); - distroToUse = Distro.list(con).stream().map(d -> d.getName()).sorted(saltbootCompare) - .collect(Collectors.toList()).stream().findFirst().orElseThrow( - () -> new SaltbootException("No registered image found")); + distroToUse = Distro.list(con) + .stream() + .map(d -> d.getName()) + .filter(s -> s.startsWith(org.getId() + "-")) + .min(saltbootCompare) + .orElseThrow(() -> new SaltbootException("No registered image found")); } else if (bootImageVersion == null || bootImageVersion.isEmpty()) { SaltbootVersionCompare saltbootCompare = new SaltbootVersionCompare(); - distroToUse = Distro.list(con).stream().map(d -> d.getName()).filter(s -> s.startsWith(org.getId() + "-" + - bootImage)).sorted(saltbootCompare).collect(Collectors.toList()).stream().findFirst() + distroToUse = Distro.list(con) + .stream() + .map(d -> d.getName()) + .filter(s -> s.startsWith(org.getId() + "-" + bootImage)) + .min(saltbootCompare) .orElseThrow(() -> new SaltbootException("Specified image name is not known")); } else if (!bootImageVersion.contains("-")) { // bootImageVersion does not have revision SaltbootVersionCompare saltbootCompare = new SaltbootVersionCompare(); - distroToUse = Distro.list(con).stream().map(d -> d.getName()).filter(s -> s.startsWith(org.getId() + "-" + - bootImage + "-" + bootImageVersion)).sorted(saltbootCompare).collect(Collectors.toList()) - .stream().findFirst().orElseThrow(() -> new SaltbootException("Specified image name is not known")); + distroToUse = Distro.list(con) + .stream() + .map(d -> d.getName()) + .filter(s -> s.startsWith(org.getId() + "-" + bootImage + "-" + bootImageVersion)) + .min(saltbootCompare) + .orElseThrow(() -> new SaltbootException("Specified image name is not known")); } else { distroToUse = org.getId() + "-" + bootImage + "-" + bootImageVersion; @@ -179,8 +195,9 @@ public static void deleteSaltbootProfile(String profileName, Org org) { public static void createSaltbootSystem(String minionId, String bootImage, String saltbootGroup, List hwAddresses, String kernelParams) throws SaltbootException { CobblerConnection con = CobblerXMLRPCHelper.getAutomatedConnection(); - Org org = MinionServerFactory.findByMinionId(minionId).orElseThrow( - () -> new SaltbootException("Unable to find minion entry for minion id " + minionId)).getOrg(); + MinionServer minion = MinionServerFactory.findByMinionId(minionId).orElseThrow( + () -> new SaltbootException("Unable to find minion entry for minion id " + minionId)); + Org org = minion.getOrg(); Profile profile = Profile.lookupByName(con, org.getId() + "-" + bootImage); if (profile == null) { @@ -216,6 +233,8 @@ public static void createSaltbootSystem(String minionId, String bootImage, Strin system.setNetworkInterfaces(networks); system.enableNetboot(true); system.save(); + + minion.setCobblerId(system.getId()); } /** @@ -224,7 +243,7 @@ public static void createSaltbootSystem(String minionId, String bootImage, Strin * * @param minionId */ - public void deleteSaltbootSystem(String minionId) { + public static void deleteSaltbootSystem(String minionId) { CobblerConnection con = CobblerXMLRPCHelper.getAutomatedConnection(); Org org = MinionServerFactory.findByMinionId(minionId).orElseThrow( () -> new SaltbootException("Unable to find minion entry for minion id " + minionId)).getOrg(); @@ -233,4 +252,83 @@ public void deleteSaltbootSystem(String minionId) { sr.remove(); } } + + /** + * Remove saltboot:force_redeploy and saltboot:force_repartition flags + * These flags can be both as a saltboot:force* pillars ( from saltboot formula) + * or custom info saltboot_force_* keys + * + * Consumer of these flags is saltboot state + * @param minionId + */ + public static void resetSaltbootRedeployFlags(String minionId) { + MinionServerFactory.findByMinionId(minionId).ifPresentOrElse( + minion -> { + // Look for custom_info or formula_saltboot category. + // If flag is set somewhere else, then we can't reset it + removeSaltbootRedeployPillar(minion); + removeSaltbootRedeployCustomInfo(minion); + }, + () -> LOG.error("Trying to reset saltboot flag for nonexisting minion {}", minionId)); + } + + /** + * Remove saltboot:force_redeploy and saltboot:force_repartition from saltboot pillar data + * @param minion + */ + private static void removeSaltbootRedeployPillar(MinionServer minion) { + minion.getPillarByCategory("tuning-saltboot").ifPresent( + pillar -> { + Map pillarData = pillar.getPillar(); + Map saltboot = (Map)pillarData.get("saltboot"); + + // Check if saltboot data are present at all, remove pillar if there is nothing else + if (saltboot == null) { + if (pillarData.isEmpty()) { + minion.getPillars().remove(pillar); + HibernateFactory.getSession().remove(pillar); + } + return; + } + boolean changed = false; + if (saltboot.remove("force_redeploy") != null) { + changed = true; + } + if (saltboot.remove("force_repartition") != null) { + changed = true; + } + if (changed) { + LOG.debug("saltboot redeploy flags removed"); + if (saltboot.isEmpty() && pillarData.size() == 1) { + // Remove pillar completely if we cleared saltboot data and it was the only entry + minion.getPillars().remove(pillar); + HibernateFactory.getSession().remove(pillar); + } + else { + pillar.setPillar(pillarData); + } + } + } + ); + } + + /** + * Remove saltboot_force_redeploy and saltboot_force_repartition custom info values from the minion + * @param minion + */ + private static void removeSaltbootRedeployCustomInfo(MinionServer minion) { + CustomDataKey saltbootRedeploy = OrgFactory.lookupKeyByLabelAndOrg("saltboot_force_redeploy", minion.getOrg()); + CustomDataValue redeploy = minion.getCustomDataValue(saltbootRedeploy); + if (redeploy != null) { + ServerFactory.removeCustomDataValue(minion, saltbootRedeploy); + } + CustomDataKey saltbootRepart = OrgFactory.lookupKeyByLabelAndOrg("saltboot_force_repartition", minion.getOrg()); + CustomDataValue repart = minion.getCustomDataValue(saltbootRepart); + if (repart != null) { + ServerFactory.removeCustomDataValue(minion, saltbootRepart); + } + if (redeploy != null || repart != null) { + LOG.debug("saltboot custom info redeploy flags removed"); + } + } } diff --git a/java/code/src/com/suse/manager/saltboot/test/PXEEventTest.java b/java/code/src/com/suse/manager/saltboot/test/PXEEventTest.java index 60db13cd6ab4..902216f74fd8 100644 --- a/java/code/src/com/suse/manager/saltboot/test/PXEEventTest.java +++ b/java/code/src/com/suse/manager/saltboot/test/PXEEventTest.java @@ -15,33 +15,86 @@ package com.suse.manager.saltboot.test; +import static com.redhat.rhn.domain.org.test.CustomDataKeyTest.createTestCustomDataKey; +import static com.redhat.rhn.domain.server.test.CustomDataValueTest.createTestCustomDataValue; import static java.util.Collections.emptyMap; import static java.util.Collections.singletonMap; import static java.util.Optional.empty; import static org.junit.jupiter.api.Assertions.assertEquals; +import static org.junit.jupiter.api.Assertions.assertFalse; +import static org.junit.jupiter.api.Assertions.assertNotNull; +import static org.junit.jupiter.api.Assertions.assertNull; import static org.junit.jupiter.api.Assertions.assertTrue; +import com.redhat.rhn.domain.org.CustomDataKey; +import com.redhat.rhn.domain.org.OrgFactory; +import com.redhat.rhn.domain.server.CustomDataValue; +import com.redhat.rhn.domain.server.MinionServer; +import com.redhat.rhn.domain.server.Pillar; +import com.redhat.rhn.domain.server.ServerGroup; +import com.redhat.rhn.domain.server.ServerGroupFactory; +import com.redhat.rhn.domain.server.test.MinionServerFactoryTest; import com.redhat.rhn.testing.JMockBaseTestCaseWithUser; +import com.redhat.rhn.testing.TestUtils; import com.suse.manager.saltboot.PXEEvent; +import com.suse.manager.saltboot.PXEEventMessage; +import com.suse.manager.saltboot.PXEEventMessageAction; import com.suse.salt.netapi.datatypes.Event; +import org.cobbler.Distro; +import org.cobbler.Profile; +import org.cobbler.SystemRecord; +import org.cobbler.test.MockConnection; import org.jmock.Expectations; import org.jmock.imposters.ByteBuddyClassImposteriser; +import org.junit.jupiter.api.AfterEach; import org.junit.jupiter.api.BeforeEach; import org.junit.jupiter.api.Test; import java.util.HashMap; +import java.util.HashSet; import java.util.Map; import java.util.Optional; +import java.util.Set; public class PXEEventTest extends JMockBaseTestCaseWithUser { + private MockConnection cobblerMock; + private static final String MINION_ID = "minion.local"; + private static final String SALTBOOT_PILLAR = "tuning-saltboot"; + + private static final String SALTBOOT_FORMULA = "formula-saltboot"; + private static final String BOOT_IMAGE = "POS_Image_JeOS7-7.0.0-1"; + private static final String SALTBOOT_GROUP = "groupPrefix"; + @Override @BeforeEach public void setUp() throws Exception { super.setUp(); setImposteriser(ByteBuddyClassImposteriser.INSTANCE); + cobblerMock = new MockConnection("http://localhost", "token"); + + // create cobbler distro and saltboot profile + Distro distro = new Distro.Builder() + .setName(user.getOrg().getId() + "-" + BOOT_IMAGE) + .setKernel("kernel_file") + .setInitrd("initrd_file") + .setKernelOptions(Optional.of("panic=60 splash=silent")) + .build(cobblerMock); + distro.save(); + + Profile imageProfile = Profile.create(cobblerMock, user.getOrg().getId() + "-" + BOOT_IMAGE, distro); + imageProfile.save(); + Profile profile = Profile.create(cobblerMock, user.getOrg().getId() + "-" + SALTBOOT_GROUP, distro); + profile.save(); + } + + @Override + @AfterEach + public void tearDown() throws Exception { + super.tearDown(); + MockConnection.clear(); } private Map createTestData(String minionId, String saltbootGroup, String root, String saltDevice, @@ -75,6 +128,27 @@ private Map createTestData(String minionId, String saltbootGroup return data; } + + private Map createSaltbootTestData(Boolean repartition, Boolean redeploy) { + return createSaltbootTestData(repartition, redeploy, null); + } + + private Map createSaltbootTestData(Boolean repartition, Boolean redeploy, Boolean extraData) { + Map data = new HashMap<>(); + Map saltbootData = new HashMap<>(); + if (repartition != null) { + saltbootData.put("force_repartition", repartition); + } + if (redeploy != null) { + saltbootData.put("force_redeploy", redeploy); + } + if (extraData != null && extraData) { + saltbootData.put("extraData", "are here"); + } + data.put("saltboot", saltbootData); + return data; + } + /** * Tests parsing {@link PXEEvent}. * "Happy path" scenario. @@ -82,8 +156,8 @@ private Map createTestData(String minionId, String saltbootGroup @Test public void testParse() { Event event = mock(Event.class); - Map data = createTestData("minion.local", "groupPrefix", "root=/dev/sda1", - "/dev/sda1", "POS_Image_JeOS7-7.0.0-1", "custom=option", true); + Map data = createTestData(MINION_ID, SALTBOOT_GROUP, "root=/dev/sda1", + "/dev/sda1", BOOT_IMAGE, "custom=option", true); context().checking(new Expectations() {{ allowing(event).getTag(); will(returnValue("suse/manager/pxe_update")); @@ -95,12 +169,12 @@ public void testParse() { assertTrue(parsed.isPresent()); parsed.ifPresent(e -> { - assertEquals("minion.local", e.getMinionId()); - assertEquals("groupPrefix", e.getSaltbootGroup()); + assertEquals(MINION_ID, e.getMinionId()); + assertEquals(SALTBOOT_GROUP, e.getSaltbootGroup()); assertEquals("root=/dev/sda1", e.getRoot()); assertEquals(Optional.of("/dev/sda1"), e.getSaltDevice()); assertEquals(Optional.of("custom=option"), e.getKernelParameters()); - assertEquals("POS_Image_JeOS7-7.0.0-1", e.getBootImage()); + assertEquals(BOOT_IMAGE, e.getBootImage()); // Localhost device should be parsed out assertEquals(1, e.getHwAddresses().size()); assertEquals(e.getHwAddresses().get(0), "00:11:22:33:44:55"); @@ -142,8 +216,8 @@ public void testParseNoGrains() { @Test public void testParseNoHWaddresses() { Event event = mock(Event.class); - Map data = createTestData("minion.local", "groupPrefix", "root=/dev/sda1", - "/dev/sda1", "POS_Image_JeOS7-7.0.0-1", "custom=option", false); + Map data = createTestData(MINION_ID, SALTBOOT_GROUP, "root=/dev/sda1", + "/dev/sda1", BOOT_IMAGE, "custom=option", false); context().checking(new Expectations() {{ allowing(event).getTag(); will(returnValue("suse/manager/pxe_update")); @@ -159,8 +233,8 @@ public void testParseNoHWaddresses() { @Test public void testParseNoRoot() { Event event = mock(Event.class); - Map data = createTestData("minion.local", "groupPrefix", "", - "/dev/sda1", "POS_Image_JeOS7-7.0.0-1", "custom=option", true); + Map data = createTestData(MINION_ID, SALTBOOT_GROUP, "", + "/dev/sda1", BOOT_IMAGE, "custom=option", true); context().checking(new Expectations() {{ allowing(event).getTag(); will(returnValue("suse/manager/pxe_update")); @@ -176,7 +250,7 @@ public void testParseNoRoot() { @Test public void testParseNoBootImage() { Event event = mock(Event.class); - Map data = createTestData("minion.local", "groupPrefix", "root=/dev/sda1", + Map data = createTestData(MINION_ID, SALTBOOT_GROUP, "root=/dev/sda1", "/dev/sda1", "", "custom=option", true); context().checking(new Expectations() {{ allowing(event).getTag(); @@ -193,8 +267,8 @@ public void testParseNoBootImage() { @Test public void testParseNoKernelOptions() { Event event = mock(Event.class); - Map data = createTestData("minion.local", "groupPrefix", "root=/dev/sda1", - "/dev/sda1", "POS_Image_JeOS7-7.0.0-1", "", true); + Map data = createTestData(MINION_ID, SALTBOOT_GROUP, "root=/dev/sda1", + "/dev/sda1", BOOT_IMAGE, "", true); context().checking(new Expectations() {{ allowing(event).getTag(); will(returnValue("suse/manager/pxe_update")); @@ -205,12 +279,12 @@ public void testParseNoKernelOptions() { assertTrue(parsed.isPresent()); parsed.ifPresent(e -> { - assertEquals("minion.local", e.getMinionId()); - assertEquals("groupPrefix", e.getSaltbootGroup()); + assertEquals(MINION_ID, e.getMinionId()); + assertEquals(SALTBOOT_GROUP, e.getSaltbootGroup()); assertEquals("root=/dev/sda1", e.getRoot()); assertEquals(Optional.of("/dev/sda1"), e.getSaltDevice()); assertEquals(Optional.empty(), e.getKernelParameters()); - assertEquals("POS_Image_JeOS7-7.0.0-1", e.getBootImage()); + assertEquals(BOOT_IMAGE, e.getBootImage()); // Localhost device should be parsed out assertEquals(1, e.getHwAddresses().size()); assertEquals(e.getHwAddresses().get(0), "00:11:22:33:44:55"); @@ -223,8 +297,8 @@ public void testParseNoKernelOptions() { @Test public void testParseNoSaltDevice() { Event event = mock(Event.class); - Map data = createTestData("minion.local", "groupPrefix", "root=/dev/sda1", - "", "POS_Image_JeOS7-7.0.0-1", "custom=option", true); + Map data = createTestData(MINION_ID, SALTBOOT_GROUP, "root=/dev/sda1", + "", BOOT_IMAGE, "custom=option", true); context().checking(new Expectations() {{ allowing(event).getTag(); will(returnValue("suse/manager/pxe_update")); @@ -235,15 +309,295 @@ public void testParseNoSaltDevice() { assertTrue(parsed.isPresent()); parsed.ifPresent(e -> { - assertEquals("minion.local", e.getMinionId()); - assertEquals("groupPrefix", e.getSaltbootGroup()); + assertEquals(MINION_ID, e.getMinionId()); + assertEquals(SALTBOOT_GROUP, e.getSaltbootGroup()); assertEquals("root=/dev/sda1", e.getRoot()); assertEquals(Optional.empty(), e.getSaltDevice()); assertEquals(Optional.of("custom=option"), e.getKernelParameters()); - assertEquals("POS_Image_JeOS7-7.0.0-1", e.getBootImage()); + assertEquals(BOOT_IMAGE, e.getBootImage()); // Localhost device should be parsed out assertEquals(1, e.getHwAddresses().size()); assertEquals(e.getHwAddresses().get(0), "00:11:22:33:44:55"); }); } + + /** + * Tests default PXE event handling + * + * Processing the event, when repart or redeploy flags are not set and when tuning-saltboot is minion pillar + * @throws Exception + */ + @Test + public void testPXEEventAction() throws Exception { + MinionServer minion = MinionServerFactoryTest.createTestMinionServer(user); + + Event event = mock(Event.class); + Map data = createTestData(minion.getMinionId(), SALTBOOT_GROUP, "root=/dev/sda1", + "/dev/sda1", BOOT_IMAGE, "custom=option", true); + context().checking(new Expectations() {{ + allowing(event).getTag(); + will(returnValue("suse/manager/pxe_update")); + allowing(event).getData(); + will(returnValue(data)); + }}); + + Optional pxeevent = PXEEvent.parse(event); + assertTrue(pxeevent.isPresent()); + + PXEEventMessage pxemsg = new PXEEventMessage(pxeevent.get()); + PXEEventMessageAction action = new PXEEventMessageAction(); + + // Add pillar data without any redeployment flag + Set pillars = new HashSet<>(); + pillars.add(new Pillar(SALTBOOT_PILLAR, createSaltbootTestData(null, null, true), minion)); + minion.setPillars(pillars); + minion = TestUtils.saveAndReload(minion); + + assertTrue(minion.getPillarByCategory(SALTBOOT_PILLAR).isPresent()); + + // Do the thing + action.execute(pxemsg); + + // Validate pillar data, there shouldn't be any saltboot redeploy pillars + minion = reload(minion); + assertTrue(minion.getPillarByCategory(SALTBOOT_PILLAR).isPresent()); + Pillar returnedPillar = minion.getPillarByCategory(SALTBOOT_PILLAR).get(); + Map saltboot = (Map)returnedPillar.getPillar().get("saltboot"); + assertNull(saltboot.get("force_redeploy")); + assertNull(saltboot.get("force_repartition")); + + // Validate custom info data, there shouldn't be any + CustomDataKey saltbootRedeploy = OrgFactory.lookupKeyByLabelAndOrg("saltboot_force_redeploy", minion.getOrg()); + CustomDataValue redeploy = minion.getCustomDataValue(saltbootRedeploy); + assertNull(redeploy); + + CustomDataKey saltbootRepart = OrgFactory.lookupKeyByLabelAndOrg("saltboot_force_repartition", minion.getOrg()); + CustomDataValue repart = minion.getCustomDataValue(saltbootRepart); + assertNull(repart); + + // System should be registered in cobbler + assertNotNull(minion.getCobblerId()); + assertNotNull(SystemRecord.lookupByName(cobblerMock, user.getOrg().getId() + "-" + minion.getMinionId())); + } + + /** + * Tests default PXE event handling + * + * Processing the event, when repart or redeploy flags are not set and when saltboot-formula is group formula + * Check we do not do any modifications + * @throws Exception + */ + @Test + public void testPXEEventActionNoFlag() throws Exception { + MinionServer minion = MinionServerFactoryTest.createTestMinionServer(user); + ServerGroup hwtypeGroup = ServerGroupFactory.create("HWTYPE:test", "testgroup", user.getOrg()); + minion.addGroup(hwtypeGroup); + + Event event = mock(Event.class); + Map data = createTestData(minion.getMinionId(), SALTBOOT_GROUP, "root=/dev/sda1", + "/dev/sda1", BOOT_IMAGE, "custom=option", true); + context().checking(new Expectations() {{ + allowing(event).getTag(); + will(returnValue("suse/manager/pxe_update")); + allowing(event).getData(); + will(returnValue(data)); + }}); + + Optional pxeevent = PXEEvent.parse(event); + assertTrue(pxeevent.isPresent()); + + PXEEventMessage pxemsg = new PXEEventMessage(pxeevent.get()); + PXEEventMessageAction action = new PXEEventMessageAction(); + + + // Create group saltboot pillar + Set pillars = new HashSet<>(); + pillars.add(new Pillar(SALTBOOT_FORMULA, createSaltbootTestData(null, null), hwtypeGroup)); + hwtypeGroup.setPillars(pillars); + hwtypeGroup = TestUtils.saveAndReload(hwtypeGroup); + assertTrue(hwtypeGroup.getPillarByCategory(SALTBOOT_FORMULA).isPresent()); + + // Add pillar data without any redeployment flag + pillars = new HashSet<>(); + pillars.add(new Pillar(SALTBOOT_PILLAR, createSaltbootTestData(false, null), minion)); + minion.setPillars(pillars); + minion = TestUtils.saveAndReload(minion); + assertTrue(minion.getPillarByCategory(SALTBOOT_PILLAR).isPresent()); + + // Do the thing + action.execute(pxemsg); + + // Validate pillar data + minion = reload(minion); + hwtypeGroup = reload(hwtypeGroup); + assertFalse(minion.getPillarByCategory(SALTBOOT_PILLAR).isPresent()); + assertTrue(hwtypeGroup.getPillarByCategory(SALTBOOT_FORMULA).isPresent()); + Pillar returnedPillar = hwtypeGroup.getPillarByCategory(SALTBOOT_FORMULA).get(); + Map saltboot = (Map)returnedPillar.getPillar().get("saltboot"); + assertNull(saltboot.get("force_redeploy")); + assertNull(saltboot.get("force_repartition")); + + // Validate custom info data + CustomDataKey saltbootRedeploy = OrgFactory.lookupKeyByLabelAndOrg("saltboot_force_redeploy", minion.getOrg()); + CustomDataValue redeploy = minion.getCustomDataValue(saltbootRedeploy); + assertNull(redeploy); + + CustomDataKey saltbootRepart = OrgFactory.lookupKeyByLabelAndOrg("saltboot_force_repartition", minion.getOrg()); + CustomDataValue repart = minion.getCustomDataValue(saltbootRepart); + assertNull(repart); + + assertNotNull(minion.getCobblerId()); + assertNotNull(SystemRecord.lookupByName(cobblerMock, user.getOrg().getId() + "-" + minion.getMinionId())); + } + + /** + * Test we clear redeploy and repartition pillar when they are set for minion + * @throws Exception + */ + @Test + public void testPXEEventActionPillarOnly() throws Exception { + MinionServer minion = MinionServerFactoryTest.createTestMinionServer(user); + ServerGroup hwtypeGroup = ServerGroupFactory.create("HWTYPE:test", "testgroup", user.getOrg()); + minion.addGroup(hwtypeGroup); + + Event event = mock(Event.class); + Map data = createTestData(minion.getMinionId(), SALTBOOT_GROUP, "root=/dev/sda1", + "/dev/sda1", BOOT_IMAGE, "custom=option", true); + context().checking(new Expectations() {{ + allowing(event).getTag(); + will(returnValue("suse/manager/pxe_update")); + allowing(event).getData(); + will(returnValue(data)); + }}); + + Optional pxeevent = PXEEvent.parse(event); + assertTrue(pxeevent.isPresent()); + + PXEEventMessage pxemsg = new PXEEventMessage(pxeevent.get()); + PXEEventMessageAction action = new PXEEventMessageAction(); + + // Generic group pillar + Set pillars = new HashSet<>(); + pillars.add(new Pillar(SALTBOOT_FORMULA, createSaltbootTestData(null, null), hwtypeGroup)); + hwtypeGroup.setPillars(pillars); + hwtypeGroup = TestUtils.saveAndReload(hwtypeGroup); + + // Override by system pillar with redeploy flag + pillars = new HashSet<>(); + pillars.add(new Pillar(SALTBOOT_PILLAR, createSaltbootTestData(true, true, true), minion)); + minion.setPillars(pillars); + minion = TestUtils.saveAndReload(minion); + + assertTrue(hwtypeGroup.getPillarByCategory(SALTBOOT_FORMULA).isPresent()); + assertTrue(minion.getPillarByCategory(SALTBOOT_PILLAR).isPresent()); + Pillar returnedPillar = hwtypeGroup.getPillarByCategory(SALTBOOT_FORMULA).get(); + Map saltboot = (Map)returnedPillar.getPillar().get("saltboot"); + assertNull(saltboot.get("force_redeploy")); + assertNull(saltboot.get("force_repartition")); + returnedPillar = minion.getPillarByCategory(SALTBOOT_PILLAR).get(); + saltboot = (Map)returnedPillar.getPillar().get("saltboot"); + assertNotNull(saltboot.get("force_redeploy")); + assertNotNull(saltboot.get("force_repartition")); + + // Do the thing + action.execute(pxemsg); + + // Validate pillar data + // group data should not be touched, minion data should be reset + minion = reload(minion); + hwtypeGroup = reload(hwtypeGroup); + assertTrue(minion.getPillarByCategory(SALTBOOT_PILLAR).isPresent()); + assertTrue(hwtypeGroup.getPillarByCategory(SALTBOOT_FORMULA).isPresent()); + returnedPillar = hwtypeGroup.getPillarByCategory(SALTBOOT_FORMULA).get(); + saltboot = (Map)returnedPillar.getPillar().get("saltboot"); + assertNull(saltboot.get("force_redeploy")); + assertNull(saltboot.get("force_repartition")); + returnedPillar = minion.getPillarByCategory(SALTBOOT_PILLAR).get(); + saltboot = (Map)returnedPillar.getPillar().get("saltboot"); + assertNull(saltboot.get("force_redeploy")); + assertNull(saltboot.get("force_repartition")); + + // Validate custom info data + CustomDataKey saltbootRedeploy = OrgFactory.lookupKeyByLabelAndOrg("saltboot_force_redeploy", minion.getOrg()); + CustomDataValue redeploy = minion.getCustomDataValue(saltbootRedeploy); + assertNull(redeploy); + + CustomDataKey saltbootRepart = OrgFactory.lookupKeyByLabelAndOrg("saltboot_force_repartition", minion.getOrg()); + CustomDataValue repart = minion.getCustomDataValue(saltbootRepart); + assertNull(repart); + + assertNotNull(minion.getCobblerId()); + assertNotNull(SystemRecord.lookupByName(cobblerMock, user.getOrg().getId() + "-" + minion.getMinionId())); + } + + /** + * Tests PXE event handling with custom info set to redeployment + * + * Processing the event, when repart or redeploy flags are not set and when saltboot-formula is group formula + * Check that we do not modify group formula + * @throws Exception + */ + @Test + public void testPXEEventActionCustomInfoOnly() throws Exception { + MinionServer minion = MinionServerFactoryTest.createTestMinionServer(user); + ServerGroup hwtypeGroup = ServerGroupFactory.create("HWTYPE:test", "testgroup", user.getOrg()); + + Event event = mock(Event.class); + Map data = createTestData(minion.getMinionId(), SALTBOOT_GROUP, "root=/dev/sda1", + "/dev/sda1", BOOT_IMAGE, "custom=option", true); + context().checking(new Expectations() {{ + allowing(event).getTag(); + will(returnValue("suse/manager/pxe_update")); + allowing(event).getData(); + will(returnValue(data)); + }}); + + Optional pxeevent = PXEEvent.parse(event); + assertTrue(pxeevent.isPresent()); + + PXEEventMessage pxemsg = new PXEEventMessage(pxeevent.get()); + PXEEventMessageAction action = new PXEEventMessageAction(); + + Set pillars = new HashSet<>(); + pillars.add(new Pillar(SALTBOOT_FORMULA, createSaltbootTestData(null, null), hwtypeGroup)); + hwtypeGroup.setPillars(pillars); + hwtypeGroup = TestUtils.saveAndReload(hwtypeGroup); + + assertFalse(minion.getPillarByCategory(SALTBOOT_PILLAR).isPresent()); + assertTrue(hwtypeGroup.getPillarByCategory(SALTBOOT_FORMULA).isPresent()); + + CustomDataKey saltbootRedeploy = createTestCustomDataKey(user, "saltboot_force_redeploy"); + CustomDataKey saltbootRepart = createTestCustomDataKey(user, "saltboot_force_repartition"); + + user.getOrg().addCustomDataKey(saltbootRedeploy); + user.getOrg().addCustomDataKey(saltbootRepart); + + createTestCustomDataValue(user, saltbootRedeploy, minion, "True"); + createTestCustomDataValue(user, saltbootRepart, minion, "True"); + + // Do the thing + action.execute(pxemsg); + + // Validate pillar data + minion = reload(minion); + hwtypeGroup = reload(hwtypeGroup); + assertFalse(minion.getPillarByCategory(SALTBOOT_PILLAR).isPresent()); + assertTrue(hwtypeGroup.getPillarByCategory(SALTBOOT_FORMULA).isPresent()); + Pillar returnedPillar = hwtypeGroup.getPillarByCategory(SALTBOOT_FORMULA).get(); + Map saltboot = (Map)returnedPillar.getPillar().get("saltboot"); + assertNull(saltboot.get("force_redeploy")); + assertNull(saltboot.get("force_repartition")); + + // Validate custom info data + saltbootRedeploy = OrgFactory.lookupKeyByLabelAndOrg("saltboot_force_redeploy", minion.getOrg()); + CustomDataValue redeploy = minion.getCustomDataValue(saltbootRedeploy); + assertNull(redeploy); + + saltbootRepart = OrgFactory.lookupKeyByLabelAndOrg("saltboot_force_repartition", minion.getOrg()); + CustomDataValue repart = minion.getCustomDataValue(saltbootRepart); + assertNull(repart); + + assertNotNull(minion.getCobblerId()); + assertNotNull(SystemRecord.lookupByName(cobblerMock, user.getOrg().getId() + "-" + minion.getMinionId())); + } } diff --git a/java/code/src/com/suse/manager/ssl/SSLCertManager.java b/java/code/src/com/suse/manager/ssl/SSLCertManager.java index 6ad5056a833f..60d4d82a567f 100644 --- a/java/code/src/com/suse/manager/ssl/SSLCertManager.java +++ b/java/code/src/com/suse/manager/ssl/SSLCertManager.java @@ -94,8 +94,8 @@ public SSLCertPair generateCertificate(SSLCertPair caPair, String password, SSLC File serverFolder = new File(sslBuildDir, data.getMachineName()); File serverCertFile = new File(serverFolder, "server.crt"); File serverKeyFile = new File(serverFolder, "server.key"); - return new SSLCertPair(FileUtils.readStringFromFile(serverCertFile.getAbsolutePath()), - FileUtils.readStringFromFile(serverKeyFile.getAbsolutePath())); + return new SSLCertPair(FileUtils.readStringFromFile(serverCertFile.getAbsolutePath(), true), + FileUtils.readStringFromFile(serverKeyFile.getAbsolutePath(), true)); } catch (RhnRuntimeException | IOException err) { String msg = err.getMessage(); diff --git a/java/code/src/com/suse/manager/utils/SaltUtils.java b/java/code/src/com/suse/manager/utils/SaltUtils.java index 3318c7b1dd95..a70718c1c2e4 100644 --- a/java/code/src/com/suse/manager/utils/SaltUtils.java +++ b/java/code/src/com/suse/manager/utils/SaltUtils.java @@ -476,6 +476,18 @@ private static Map>>> extractPackageDelta( .getType() ).getRet(); } + else if (json.getAsJsonObject().has("installed") && json.getAsJsonObject().has("removed")) { + var installedRemoved = + Json.GSON.>>>>>fromJson( + json, + new TypeToken>>>>>() { } + .getType() + ); + + var delta = new HashMap<>(installedRemoved.getInstalled()); + delta.putAll(installedRemoved.getRemoved()); + return delta; + } else { return Json.GSON.fromJson( json, @@ -485,6 +497,32 @@ private static Map>>> extractPackageDelta( } } + /** + * Wrapper object representing a "changes" element containing "installed" and "removed" elements inside: + * "changes: { "installed": "pkg_name": { "new": "", "old": "1.7.9" } } + * + * @deprecated Temporarily here until available in a new version of salt-net-api. + * + * @param the type that is wrapped + */ + @Deprecated + static class InstalledRemoved { + private T installed; + private T removed; + + InstalledRemoved() { + // default constructor + } + + public T getInstalled() { + return this.installed; + } + + public T getRemoved() { + return this.removed; + } + } + /** * Update a given server action based on data from the corresponding job return event. * diff --git a/java/code/src/com/suse/manager/webui/Router.java b/java/code/src/com/suse/manager/webui/Router.java index 70fec40cba26..8dc2374ba0fd 100644 --- a/java/code/src/com/suse/manager/webui/Router.java +++ b/java/code/src/com/suse/manager/webui/Router.java @@ -29,6 +29,7 @@ import com.redhat.rhn.manager.system.SystemManager; import com.redhat.rhn.taskomatic.TaskomaticApi; +import com.suse.cloud.CloudPaygManager; import com.suse.manager.api.HttpApiRegistry; import com.suse.manager.kubernetes.KubernetesManager; import com.suse.manager.utils.SaltKeyUtils; @@ -115,12 +116,13 @@ public void init() { SaltKeyUtils saltKeyUtils = GlobalInstanceHolder.SALT_KEY_UTILS; ServerGroupManager serverGroupManager = GlobalInstanceHolder.SERVER_GROUP_MANAGER; SystemManager systemManager = GlobalInstanceHolder.SYSTEM_MANAGER; + CloudPaygManager paygManager = GlobalInstanceHolder.PAYG_MANAGER; SystemsController systemsController = new SystemsController(saltApi); ProxyController proxyController = new ProxyController(systemManager); SaltSSHController saltSSHController = new SaltSSHController(saltApi); NotificationMessageController notificationMessageController = - new NotificationMessageController(systemQuery, saltApi); + new NotificationMessageController(systemQuery, saltApi, paygManager); MinionsAPI minionsAPI = new MinionsAPI(saltApi, sshMinionBootstrapper, regularMinionBootstrapper, saltKeyUtils); StatesAPI statesAPI = new StatesAPI(saltApi, taskomaticApi, serverGroupManager); diff --git a/java/code/src/com/suse/manager/webui/controllers/ImageStoreController.java b/java/code/src/com/suse/manager/webui/controllers/ImageStoreController.java index 219e4294264d..38d5df835025 100644 --- a/java/code/src/com/suse/manager/webui/controllers/ImageStoreController.java +++ b/java/code/src/com/suse/manager/webui/controllers/ImageStoreController.java @@ -210,8 +210,7 @@ public static Object getSingle(Request req, Response res, User user) { json.addProperty("uri", s.getUri()); json.addProperty("storeType", s.getStoreType().getLabel()); - if (s.getCreds() != null && s.getCreds().getType().getLabel().equals( - Credentials.TYPE_REGISTRY)) { + if (s.getCreds() != null && s.getCreds().isTypeOf(Credentials.TYPE_REGISTRY)) { Credentials dc = s.getCreds(); json.addProperty("username", dc.getUsername()); json.addProperty("password", dc.getPassword()); @@ -251,8 +250,7 @@ public static Object getSingleByLabel(Request req, Response res, User user) { json.addProperty("uri", uriPrefix + s.getUri()); json.addProperty("storeType", s.getStoreType().getLabel()); - if (s.getCreds() != null && s.getCreds().getType().getLabel().equals( - Credentials.TYPE_REGISTRY)) { + if (s.getCreds() != null && s.getCreds().isTypeOf(Credentials.TYPE_REGISTRY)) { Credentials dc = s.getCreds(); json.addProperty("username", dc.getUsername()); json.addProperty("password", dc.getPassword()); diff --git a/java/code/src/com/suse/manager/webui/controllers/NotificationMessageController.java b/java/code/src/com/suse/manager/webui/controllers/NotificationMessageController.java index 005d6ce69950..414ca9a697f6 100644 --- a/java/code/src/com/suse/manager/webui/controllers/NotificationMessageController.java +++ b/java/code/src/com/suse/manager/webui/controllers/NotificationMessageController.java @@ -29,6 +29,7 @@ import com.redhat.rhn.taskomatic.TaskomaticApi; import com.redhat.rhn.taskomatic.TaskomaticApiException; +import com.suse.cloud.CloudPaygManager; import com.suse.manager.reactor.messaging.RegisterMinionEventMessage; import com.suse.manager.reactor.messaging.RegisterMinionEventMessageAction; import com.suse.manager.webui.services.iface.SaltApi; @@ -65,14 +66,17 @@ public class NotificationMessageController { private final SaltApi saltApi; private final SystemQuery systemQuery; + private final CloudPaygManager paygManager; /** * @param systemQueryIn instance for getting information from a system. * @param saltApiIn instance for getting information from a system. + * @param paygMgrIn instance of {@link CloudPaygManager} */ - public NotificationMessageController(SystemQuery systemQueryIn, SaltApi saltApiIn) { + public NotificationMessageController(SystemQuery systemQueryIn, SaltApi saltApiIn, CloudPaygManager paygMgrIn) { this.saltApi = saltApiIn; this.systemQuery = systemQueryIn; + this.paygManager = paygMgrIn; } /** @@ -216,7 +220,8 @@ public String retryOnboarding(Request request, Response response, User user) { String severity = "success"; String resultMessage = "Onboarding restarted of the minioniId '%s'"; - RegisterMinionEventMessageAction action = new RegisterMinionEventMessageAction(systemQuery, saltApi); + RegisterMinionEventMessageAction action = + new RegisterMinionEventMessageAction(systemQuery, saltApi, paygManager); action.execute(new RegisterMinionEventMessage(minionId, Optional.empty())); Map data = new HashMap<>(); diff --git a/java/code/src/com/suse/manager/webui/controllers/ProductsController.java b/java/code/src/com/suse/manager/webui/controllers/ProductsController.java index 66d89d17485c..9debbfc37e73 100644 --- a/java/code/src/com/suse/manager/webui/controllers/ProductsController.java +++ b/java/code/src/com/suse/manager/webui/controllers/ProductsController.java @@ -98,6 +98,7 @@ public static void initRoutes(JadeTemplateEngine jade) { get("/manager/admin/setup/products", withUserPreferences(withCsrfToken(withOrgAdmin(ProductsController::show))), jade); get("/manager/api/admin/products", withUser(ProductsController::data)); + get("/manager/api/admin/products/metadata", withUser(ProductsController::getMetadata)); post("/manager/api/admin/mandatoryChannels", withUser(ProductsController::getMandatoryChannels)); post("/manager/admin/setup/products", withProductAdmin(ProductsController::addProduct)); @@ -122,18 +123,34 @@ public static void initRoutes(JadeTemplateEngine jade) { * @return the ModelAndView object to render the page */ public static ModelAndView show(Request request, Response response, User user) { - TaskoRun latestRun = TaskoFactory.getLatestRun("mgr-sync-refresh-bunch"); + return new ModelAndView(getMetadataMap(), "templates/products/show.jade"); + } - Map data = new HashMap<>(); + /** + * Retrieves the metadata of the products page + * + * @param request the request + * @param response the response + * @param user the user + * @return a JSON object containing the metadata + */ + public static String getMetadata(Request request, Response response, User user) { + return json(response, getMetadataMap()); + } + + private static Map getMetadataMap() { + TaskoRun latestRun = TaskoFactory.getLatestRun("mgr-sync-refresh-bunch"); ContentSyncManager csm = new ContentSyncManager(); - data.put(ISS_MASTER, String.valueOf(IssFactory.getCurrentMaster() == null)); - data.put(REFRESH_NEEDED, String.valueOf(csm.isRefreshNeeded(null))); - data.put(REFRESH_RUNNING, String.valueOf(latestRun != null && latestRun.getEndTime() == null)); - data.put(REFRESH_FILE_LOCKED, String.valueOf(FileLocks.SCC_REFRESH_LOCK.isLocked())); - data.put(NO_TOOLS_CHANNEL_SUBSCRIPTION, - String.valueOf(!(ConfigDefaults.get().isUyuni() || csm.hasToolsChannelSubscription()))); - - return new ModelAndView(data, "templates/products/show.jade"); + + Map metadataMap = new HashMap<>(); + metadataMap.put(ISS_MASTER, IssFactory.getCurrentMaster() == null); + metadataMap.put(REFRESH_NEEDED, csm.isRefreshNeeded(null)); + metadataMap.put(REFRESH_RUNNING, latestRun != null && latestRun.getEndTime() == null); + metadataMap.put(REFRESH_FILE_LOCKED, FileLocks.SCC_REFRESH_LOCK.isLocked()); + metadataMap.put(NO_TOOLS_CHANNEL_SUBSCRIPTION, !(ConfigDefaults.get().isUyuni() || + csm.hasToolsChannelSubscription() || csm.canSyncToolsChannelViaCloudRMT())); + + return metadataMap; } /** diff --git a/java/code/src/com/suse/manager/webui/controllers/RecurringActionController.java b/java/code/src/com/suse/manager/webui/controllers/RecurringActionController.java index a086148400f2..4f2caaaea304 100644 --- a/java/code/src/com/suse/manager/webui/controllers/RecurringActionController.java +++ b/java/code/src/com/suse/manager/webui/controllers/RecurringActionController.java @@ -190,11 +190,12 @@ public static String listByEntity(Request request, Response response, User user) */ public static String getStatesConfig(Request request, Response response, User user) { String target = request.queryParams("target"); + String idParam = request.queryParams("id"); String targetLowerCase = target != null ? target.toLowerCase() : ""; Set result = new HashSet<>(); // use a set to avoid duplicates - if (request.queryParams("id") != null) { - Long id = Long.parseLong(request.queryParams("id")); + if (idParam != null) { + Long id = Long.parseLong(idParam); Optional action = RecurringActionManager.find(id); if (action.isEmpty()) { return json(response, HttpStatus.SC_NOT_FOUND, ResultJson.error("Action " + id + " not found")); diff --git a/java/code/src/com/suse/manager/webui/controllers/SSOController.java b/java/code/src/com/suse/manager/webui/controllers/SSOController.java index 35e166dbca48..542e27582e36 100644 --- a/java/code/src/com/suse/manager/webui/controllers/SSOController.java +++ b/java/code/src/com/suse/manager/webui/controllers/SSOController.java @@ -141,16 +141,16 @@ public static Object getACS(Request request, Response response) { return response; } catch (LookupException e) { - LOG.error("Unable to find user: {}", e.getMessage()); + LOG.error("Unable to find user: {}", e.getMessage(), e); return "Internal error during SSO authentication phase. Have you created the corresponding user in " + "SUSE Manager? See product documentation"; } catch (SettingsException e) { - LOG.error("Unable to parse settings for SSO: {}", e.getMessage()); + LOG.error("Unable to parse settings for SSO: {}", e.getMessage(), e); return "Internal error during SSO authentication phase - please check the logs " + e.getMessage(); } catch (Exception e) { - LOG.error(e); + LOG.error(e.getMessage(), e); } } return null; @@ -182,10 +182,10 @@ public static Object getMetadata(Request request, Response response) { } } catch (IOException | SettingsException | Error | CertificateEncodingException e) { - LOG.error("Unable to parse settings for SSO and/or certificate error: {}", e.getMessage()); + LOG.error("Unable to parse settings for SSO and/or certificate error: {}", e.getMessage(), e); } catch (Exception e) { - LOG.error(e.getMessage()); + LOG.error(e.getMessage(), e); } return response; } @@ -210,7 +210,7 @@ public static Object logout(Request request, Response response) { return response; } catch (SettingsException | IOException | XMLEntityException e) { - LOG.error("Unable to parse settings for SSO and/or XML parsing: {}", e.getMessage()); + LOG.error("Unable to parse settings for SSO and/or XML parsing: {}", e.getMessage(), e); } } @@ -234,10 +234,10 @@ public static Object sls(Request request, Response response) { return "You have been logged out"; } catch (ServletException | SettingsException e) { - LOG.error("Unable to parse settings for SSO: {}", e.getMessage()); + LOG.error("Unable to parse settings for SSO: {}", e.getMessage(), e); } catch (Exception e) { - LOG.error(e.getMessage()); + LOG.error(e.getMessage(), e); } } return null; diff --git a/java/code/src/com/suse/manager/webui/controllers/bootstrap/AbstractMinionBootstrapper.java b/java/code/src/com/suse/manager/webui/controllers/bootstrap/AbstractMinionBootstrapper.java index 5b34f3ab8402..fb67193496ad 100644 --- a/java/code/src/com/suse/manager/webui/controllers/bootstrap/AbstractMinionBootstrapper.java +++ b/java/code/src/com/suse/manager/webui/controllers/bootstrap/AbstractMinionBootstrapper.java @@ -32,6 +32,7 @@ import com.redhat.rhn.manager.system.AnsibleManager; import com.redhat.rhn.manager.token.ActivationKeyManager; +import com.suse.cloud.CloudPaygManager; import com.suse.manager.utils.SaltUtils; import com.suse.manager.webui.controllers.utils.CommandExecutionException; import com.suse.manager.webui.controllers.utils.ContactMethodUtil; @@ -68,6 +69,7 @@ public abstract class AbstractMinionBootstrapper { protected final SaltApi saltApi; protected final SystemQuery systemQuery; + protected final CloudPaygManager paygManager; private static final int KEY_LENGTH_LIMIT = 1_000_000; @@ -78,10 +80,12 @@ public abstract class AbstractMinionBootstrapper { * Constructor * @param systemQueryIn salt service * @param saltApiIn salt service + * @param paygMgrIn cloudPaygManager */ - protected AbstractMinionBootstrapper(SystemQuery systemQueryIn, SaltApi saltApiIn) { + protected AbstractMinionBootstrapper(SystemQuery systemQueryIn, SaltApi saltApiIn, CloudPaygManager paygMgrIn) { this.saltApi = saltApiIn; this.systemQuery = systemQueryIn; + this.paygManager = paygMgrIn; } /** @@ -184,7 +188,7 @@ protected BootstrapResult bootstrapInternal(BootstrapParameters params, User use } } catch (CommandExecutionException | IOException e) { - LOG.error(e); + LOG.error(e.getMessage(), e); return new BootstrapResult(false, contactMethod, LOC.getMessage("bootstrap.minion.error.permcmdexec", SALT_SSH_DIR_PATH + "/known_hosts")); } diff --git a/java/code/src/com/suse/manager/webui/controllers/bootstrap/RegularMinionBootstrapper.java b/java/code/src/com/suse/manager/webui/controllers/bootstrap/RegularMinionBootstrapper.java index a07f73d96550..c8f908c3e210 100644 --- a/java/code/src/com/suse/manager/webui/controllers/bootstrap/RegularMinionBootstrapper.java +++ b/java/code/src/com/suse/manager/webui/controllers/bootstrap/RegularMinionBootstrapper.java @@ -19,6 +19,7 @@ import com.redhat.rhn.domain.server.ServerFactory; import com.redhat.rhn.domain.user.User; +import com.suse.cloud.CloudPaygManager; import com.suse.manager.reactor.messaging.ApplyStatesEventMessage; import com.suse.manager.webui.services.iface.SaltApi; import com.suse.manager.webui.services.iface.SystemQuery; @@ -48,9 +49,10 @@ public class RegularMinionBootstrapper extends AbstractMinionBootstrapper { * getInstance. * @param systemQueryIn systemQuery to use * @param saltApiIn saltApi to use + * @param paygMgrIn {@link CloudPaygManager} to use */ - public RegularMinionBootstrapper(SystemQuery systemQueryIn, SaltApi saltApiIn) { - super(systemQueryIn, saltApiIn); + public RegularMinionBootstrapper(SystemQuery systemQueryIn, SaltApi saltApiIn, CloudPaygManager paygMgrIn) { + super(systemQueryIn, saltApiIn, paygMgrIn); } @Override diff --git a/java/code/src/com/suse/manager/webui/controllers/bootstrap/SSHMinionBootstrapper.java b/java/code/src/com/suse/manager/webui/controllers/bootstrap/SSHMinionBootstrapper.java index 15b3e10eff26..e2f323ea7a47 100644 --- a/java/code/src/com/suse/manager/webui/controllers/bootstrap/SSHMinionBootstrapper.java +++ b/java/code/src/com/suse/manager/webui/controllers/bootstrap/SSHMinionBootstrapper.java @@ -23,6 +23,7 @@ import com.redhat.rhn.domain.server.ServerFactory; import com.redhat.rhn.domain.user.User; +import com.suse.cloud.CloudPaygManager; import com.suse.manager.reactor.messaging.ApplyStatesEventMessage; import com.suse.manager.reactor.messaging.RegisterMinionEventMessageAction; import com.suse.manager.webui.controllers.utils.ContactMethodUtil; @@ -60,9 +61,10 @@ public class SSHMinionBootstrapper extends AbstractMinionBootstrapper { * getInstance. * @param systemQueryIn systemQuery to use * @param saltApiIn saltApi to use + * @param paygMgrIn cloudPaygManager to use */ - public SSHMinionBootstrapper(SystemQuery systemQueryIn, SaltApi saltApiIn) { - super(systemQueryIn, saltApiIn); + public SSHMinionBootstrapper(SystemQuery systemQueryIn, SaltApi saltApiIn, CloudPaygManager paygMgrIn) { + super(systemQueryIn, saltApiIn, paygMgrIn); } @Override @@ -136,7 +138,7 @@ protected BootstrapResult bootstrapInternal(BootstrapParameters params, User use // we want to override this in tests protected RegisterMinionEventMessageAction getRegisterAction() { - return new RegisterMinionEventMessageAction(systemQuery, saltApi); + return new RegisterMinionEventMessageAction(systemQuery, saltApi, paygManager); } /** diff --git a/java/code/src/com/suse/manager/webui/controllers/contentmanagement/handlers/AppStreamsApiController.java b/java/code/src/com/suse/manager/webui/controllers/contentmanagement/handlers/AppStreamsApiController.java index 0427c721ba42..62d5d2e68f6e 100644 --- a/java/code/src/com/suse/manager/webui/controllers/contentmanagement/handlers/AppStreamsApiController.java +++ b/java/code/src/com/suse/manager/webui/controllers/contentmanagement/handlers/AppStreamsApiController.java @@ -66,10 +66,11 @@ public static String getModulesInChannel(Request req, Response res, User user) { return json(res, ResultJson.success(API.getAllModulesInChannel(channel))); } catch (NumberFormatException e) { + LOG.error(e.getMessage(), e); throw Spark.halt(HttpStatus.SC_BAD_REQUEST); } catch (ModulemdApiException e) { - LOG.error(e); + LOG.error(e.getMessage(), e); return json(res, ResultJson.error(LOC.getMessage("contentmanagement.modules_error"))); } } diff --git a/java/code/src/com/suse/manager/webui/controllers/contentmanagement/handlers/FilterApiController.java b/java/code/src/com/suse/manager/webui/controllers/contentmanagement/handlers/FilterApiController.java index da22dea286f0..27aba1343806 100644 --- a/java/code/src/com/suse/manager/webui/controllers/contentmanagement/handlers/FilterApiController.java +++ b/java/code/src/com/suse/manager/webui/controllers/contentmanagement/handlers/FilterApiController.java @@ -174,7 +174,7 @@ private static String createFromTemplate(Request req, Response res, User user) { createdFilters = TEMPLATE_MGR.createAppStreamFilters(prefix, channel, user); } catch (ModulemdApiException e) { - LOG.error(e); + LOG.error(e.getMessage(), e); return json(GSON, res, ResultJson.error(LOC.getMessage("contentmanagement.modules_error"))); } break; diff --git a/java/code/src/com/suse/manager/webui/controllers/login/LoginController.java b/java/code/src/com/suse/manager/webui/controllers/login/LoginController.java index 67c75fc6f4fa..fbaaf8d61f57 100644 --- a/java/code/src/com/suse/manager/webui/controllers/login/LoginController.java +++ b/java/code/src/com/suse/manager/webui/controllers/login/LoginController.java @@ -20,6 +20,7 @@ import static spark.Spark.get; import static spark.Spark.post; +import com.redhat.rhn.GlobalInstanceHolder; import com.redhat.rhn.common.conf.Config; import com.redhat.rhn.common.conf.ConfigDefaults; import com.redhat.rhn.common.conf.sso.SSOConfig; @@ -51,6 +52,7 @@ import spark.ModelAndView; import spark.Request; import spark.Response; +import spark.Spark; import spark.template.jade.JadeTemplateEngine; /** @@ -134,6 +136,13 @@ public static ModelAndView loginView(Request request, Response response) { model.put("webTheme", ConfigDefaults.get().getDefaultWebTheme()); model.put("diskspaceSeverity", LoginHelper.validateDiskSpaceAvailability()); + // Pay as you go code + boolean sccForwardWarning = GlobalInstanceHolder.PAYG_MANAGER.isPaygInstance() && + GlobalInstanceHolder.PAYG_MANAGER.hasSCCCredentials() && + !ConfigDefaults.get().isForwardRegistrationEnabled(); + + model.put("sccForwardWarning", sccForwardWarning); + return new ModelAndView(model, "controllers/login/templates/login.jade"); } @@ -151,13 +160,18 @@ public static String login(Request request, Response response) { // External-auth didn't return a user - try local-auth if (user == null) { - try { - user = UserManager.loginUser(creds.getLogin(), creds.getPassword()); - log.info("LOCAL AUTH SUCCESS: [{}]", user.getLogin()); + if (creds == null) { + Spark.halt(HttpServletResponse.SC_BAD_REQUEST); } - catch (LoginException e) { - log.error("LOCAL AUTH FAILURE: [{}]", creds.getLogin()); - errorMsg = Optional.of(LocalizationService.getInstance().getMessage(e.getMessage())); + else { + try { + user = UserManager.loginUser(creds.getLogin(), creds.getPassword()); + log.info("LOCAL AUTH SUCCESS: [{}]", user.getLogin()); + } + catch (LoginException e) { + log.error("LOCAL AUTH FAILURE: [{}]", creds.getLogin()); + errorMsg = Optional.of(LocalizationService.getInstance().getMessage(e.getMessage())); + } } } // External-auth returned a user and no errors diff --git a/java/code/src/com/suse/manager/webui/controllers/login/templates/login.jade b/java/code/src/com/suse/manager/webui/controllers/login/templates/login.jade index 8de453ff48ae..ce35b02ab03c 100644 --- a/java/code/src/com/suse/manager/webui/controllers/login/templates/login.jade +++ b/java/code/src/com/suse/manager/webui/controllers/login/templates/login.jade @@ -58,6 +58,7 @@ html(lang=window.preferredLocale.replace("_", "-")) loginLength: '!{loginLength}', passwordLength: '!{passwordLength}', diskspaceSeverity: '#{diskspaceSeverity}', + sccForwardWarning: JSON.parse('#{sccForwardWarning}'), } ) validate(); diff --git a/java/code/src/com/suse/manager/webui/controllers/test/BaseControllerTestCase.java b/java/code/src/com/suse/manager/webui/controllers/test/BaseControllerTestCase.java index 2937229cfb33..27ff27ea05ff 100644 --- a/java/code/src/com/suse/manager/webui/controllers/test/BaseControllerTestCase.java +++ b/java/code/src/com/suse/manager/webui/controllers/test/BaseControllerTestCase.java @@ -22,6 +22,7 @@ import java.io.UnsupportedEncodingException; import java.util.Collections; +import java.util.Map; import spark.Request; import spark.RequestResponseFactory; @@ -63,6 +64,20 @@ protected Request getRequestWithCsrf(String uri, Object... vars) { return request; } + /** + * Creates a request with csrf token and params. + * + * @param uri the uri + * @param queryParams the params + * @param vars the vars + * @return the request with csrf + */ + protected Request getRequestWithCsrfAndParams(String uri, Map queryParams, Object... vars) { + Request request = SparkTestUtils.createMockRequestWithParams(baseUri + uri, queryParams, vars); + request.session(true).attribute("csrf_token", "bleh"); + return request; + } + /** * Creates a request with csrf token. * diff --git a/java/code/src/com/suse/manager/webui/controllers/test/RecurringActionControllerTest.java b/java/code/src/com/suse/manager/webui/controllers/test/RecurringActionControllerTest.java index d40f06ac552f..d008f93b3cb3 100644 --- a/java/code/src/com/suse/manager/webui/controllers/test/RecurringActionControllerTest.java +++ b/java/code/src/com/suse/manager/webui/controllers/test/RecurringActionControllerTest.java @@ -18,17 +18,22 @@ import static java.util.Optional.empty; import static java.util.Optional.of; import static org.junit.jupiter.api.Assertions.assertEquals; -import static org.junit.jupiter.api.Assertions.assertNotNull; +import static org.junit.jupiter.api.Assertions.assertTrue; import static org.junit.jupiter.api.Assertions.fail; import com.redhat.rhn.domain.org.OrgFactory; import com.redhat.rhn.domain.recurringactions.RecurringAction; import com.redhat.rhn.domain.recurringactions.RecurringActionFactory; import com.redhat.rhn.domain.role.RoleFactory; +import com.redhat.rhn.domain.server.ManagedServerGroup; +import com.redhat.rhn.domain.server.MinionServer; +import com.redhat.rhn.domain.server.ServerGroupFactory; +import com.redhat.rhn.domain.server.test.MinionServerFactoryTest; import com.redhat.rhn.domain.user.User; import com.redhat.rhn.manager.recurringactions.RecurringActionManager; import com.redhat.rhn.taskomatic.TaskomaticApi; import com.redhat.rhn.testing.RhnMockHttpServletResponse; +import com.redhat.rhn.testing.ServerGroupTestUtils; import com.redhat.rhn.testing.TestUtils; import com.suse.manager.webui.controllers.RecurringActionController; @@ -48,6 +53,7 @@ import java.util.Optional; import spark.HaltException; +import spark.Request; import spark.RequestResponseFactory; import spark.Response; @@ -58,6 +64,8 @@ public class RecurringActionControllerTest extends BaseControllerTestCase { private Response response; + private MinionServer minionServer; + private static final Gson GSON = new GsonBuilder().create(); private TaskomaticApi taskomaticMock; @@ -75,6 +83,8 @@ public void setUp() throws Exception { response = RequestResponseFactory.create(new RhnMockHttpServletResponse()); + minionServer = MinionServerFactoryTest.createTestMinionServer(user); + // mocking taskomaticMock = context().mock(TaskomaticApi.class); RecurringActionManager.setTaskomaticApi(taskomaticMock); @@ -86,34 +96,121 @@ public void setUp() throws Exception { } @Test - public void testCreateAction() throws UnsupportedEncodingException { + public void testCreateOrgHighstateAction() throws UnsupportedEncodingException { Long orgId = user.getOrg().getId(); + String actionName = "org-highstate-1"; + createOrgHighstateAction(orgId, actionName); - var actionJsonString = createActionJsonString(empty(), "test-schedule-123", of(orgId)); - var saveRequest = getPostRequestWithCsrfAndBody("/manager/api/recurringactions/save", actionJsonString); - RecurringActionController.save(saveRequest, response, user); + var list = listRecurringActions("ORG", orgId); + assertEquals(1, list.size()); - var listRequest = getRequestWithCsrf("/manager/api/recurringactions/:type/:id", "ORG", orgId); + Map action = list.iterator().next(); + var details = getDetails(action); - var list = GSON.fromJson(RecurringActionController.listByEntity(listRequest, response, user), List.class); + assertEquals(orgId, extractTargetId(action)); + assertEquals(actionName, action.get("scheduleName")); + assertEquals("HIGHSTATE", action.get("actionType")); + assertEquals(user.getLogin(), details.getCreatorLogin()); + } + + @Test + public void testCreateMinionHighstateAction() throws Exception { + String actionName = "minion-highstate-1"; + createMinionHighstateAction(minionServer.getId(), actionName); + var list = listRecurringActions("MINION", minionServer.getId()); assertEquals(1, list.size()); - Map action = (Map) list.iterator().next(); - assertNotNull(action.get("targetId")); - assertEquals("test-schedule-123", action.get("scheduleName")); - var detailsRequest = getRequestWithCsrf("/manager/api/recurringactions/:id/details", - (long) Double.parseDouble(action.get("recurringActionId").toString())); - var details = GSON.fromJson( - RecurringActionController.getDetails(detailsRequest, response, user), RecurringActionDetailsDto.class + var action = list.get(0); + assertEquals(minionServer.getId(), extractTargetId(action)); + assertEquals(actionName, action.get("scheduleName")); + assertEquals("HIGHSTATE", action.get("actionType")); + } + + @Test + public void testCreateGroupHighstateAction() throws Exception { + ManagedServerGroup group = ServerGroupFactory.create( + ServerGroupTestUtils.NAME, + ServerGroupTestUtils.DESCRIPTION, + user.getOrg() ); - assertEquals(user.getLogin(), details.getCreatorLogin()); + String actionName = "group-highstate-1"; + createGroupHighstateAction(group.getId(), actionName); + var list = listRecurringActions("GROUP", group.getId()); + assertEquals(1, list.size()); + + var action = list.get(0); + assertEquals(group.getId(), extractTargetId(action)); + assertEquals(actionName, action.get("scheduleName")); + assertEquals("HIGHSTATE", action.get("actionType")); + } + + @Test + public void testGetStatesConfigInternalStates() { + var request = getRequestWithCsrf("/manager/api/recurringactions/states"); + var states = RecurringActionController.getStatesConfig(request, response, user); + assertTrue(states.contains("hardware.profileupdate")); + assertTrue(states.contains("packages.profileupdate")); + assertTrue(states.contains("util.syncstates")); + assertTrue(states.contains("util.syncgrains")); + assertTrue(states.contains("util.syncmodules")); + assertTrue(states.contains("uptodate")); + } + + @Test + public void testGetStatesConfigActionStates() throws Exception { + String actionName = "minion-custom-state-1"; + String stateName = "packages.profileupdate"; + createMinionCustomStateAction(minionServer.getId(), actionName, stateName); + var action = listRecurringActions("MINION", minionServer.getId()).get(0); + var actionDetails = getDetails(action); + assertEquals(1, actionDetails.getStates().size()); + assertEquals(stateName, actionDetails.getStates().iterator().next().getName()); + + var params = Map.of("id", extractActionId(action).toString()); + var request = getRequestWithCsrfAndParams("/manager/api/recurringactions/states", params); + var states = RecurringActionController.getStatesConfig(request, response, user); + assertTrue(states.contains(stateName)); + } + + @Test + public void testGetStatesConfigHighstateAction() throws UnsupportedEncodingException { + Long orgId = user.getOrg().getId(); + createOrgHighstateAction(orgId, "org-highstate-3"); + Long actionId = extractActionId(listRecurringActions("ORG", orgId).get(0)); + + // Should throw an exception when listing config states for a highstate action + var params = Map.of("id", actionId.toString()); + var request = getRequestWithCsrfAndParams("/manager/api/recurringactions/states", params); + try { + RecurringActionController.getStatesConfig(request, response, user); + fail("An exception should have been thrown"); + } + catch (HaltException e) { + assertEquals(400, e.statusCode()); + } + } + + @Test + public void testGetStatesConfigInvalidActionId() { + var params = Map.of("id", "53"); + var request = getRequestWithCsrfAndParams("/manager/api/recurringactions/states", params); + var states = RecurringActionController.getStatesConfig(request, response, user); + + // Trying to list config states of an action that doesn't exist. + assertTrue(states.contains("Action 53 not found")); } @Test public void testCreateActionSameName() throws UnsupportedEncodingException { Long orgId = user.getOrg().getId(); - var actionJsonString = createActionJsonString(empty(), "test-schedule-123", of(orgId)); + var actionJsonString = createActionJsonString( + empty(), + "test-schedule-123", + of(orgId), + "org", + "HIGHSTATE" + ); var saveRequest = getPostRequestWithCsrfAndBody("/manager/api/recurringactions/save", actionJsonString); RecurringActionController.save(saveRequest, response, user); @@ -134,13 +231,24 @@ public void testUpdateAction() throws UnsupportedEncodingException { user.addPermanentRole(RoleFactory.SAT_ADMIN); var orgId = org.getId(); - var actionJsonString = createActionJsonString(empty(), "test-schedule-123", of(orgId)); + var actionJsonString = createActionJsonString( + empty(), + "test-schedule-123", + of(orgId), + "org", + "HIGHSTATE" + ); var createRequest = getPostRequestWithCsrfAndBody("/manager/api/recurringactions/save", actionJsonString); RecurringActionController.save(createRequest, response, user); var actionId = RecurringActionFactory.listOrgRecurringActions(orgId).iterator().next().getId(); - var updateJsonStr = createActionJsonString(of(actionId), "new-name-123", empty()); + var updateJsonStr = createActionJsonString( + of(actionId), + "new-name-123", empty(), + "org", + "HIGHSTATE" + ); var updateRequest = getPostRequestWithCsrfAndBody("/manager/api/recurringactions/save", updateJsonStr); RecurringActionController.save(updateRequest, response, user); @@ -148,15 +256,77 @@ public void testUpdateAction() throws UnsupportedEncodingException { assertEquals("new-name-123", updated.getName()); } - private static String createActionJsonString(Optional actionId, String scheduleName, - Optional targetId) { + @Test + public void testDeleteSchedule() throws Exception { + // Should throw an exception when trying to delete an action that doesn't exist. + var request = getRequestWithCsrf("/manager/api/recurringactions/:id/delete", "55"); + try { + RecurringActionController.deleteSchedule(request, response, user); + fail("An exception should have been thrown"); + } + catch (HaltException e) { + assertEquals(400, e.statusCode()); + } + + createMinionHighstateAction(minionServer.getId(), "minion-schedule-to-be-deleted"); + var list = listRecurringActions("MINION", minionServer.getId()); + assertEquals(1, list.size()); + + var actionId = extractActionId(list.get(0)); + request = getRequestWithCsrf("/manager/api/recurringactions/:id/delete", actionId); + RecurringActionController.deleteSchedule(request, response, user); + + list = listRecurringActions("MINION", minionServer.getId()); + assertTrue(list.isEmpty()); + } + + private Request makeSaveRequest( + String name, + String targetType, + Optional targetId, + String actionType, + Optional stateName + ) throws UnsupportedEncodingException { + var actionJsonString = createActionJsonString(empty(), name, targetId, targetType, actionType, stateName); + return getPostRequestWithCsrfAndBody("/manager/api/recurringactions/save", actionJsonString); + } + + private Request makeSaveRequest( + String name, + String targetType, + Optional targetId, + String actionType + ) throws UnsupportedEncodingException { + var actionJsonString = createActionJsonString(empty(), name, targetId, targetType, actionType); + return getPostRequestWithCsrfAndBody("/manager/api/recurringactions/save", actionJsonString); + } + + private static String createActionJsonString( + Optional actionId, + String scheduleName, + Optional targetId, + String targetType, + String actionType + ) { + return createActionJsonString(actionId, scheduleName, targetId, targetType, actionType, Optional.empty()); + } + + private static String createActionJsonString( + Optional actionId, + String scheduleName, + Optional targetId, + String targetType, + String actionType, + Optional stateName + ) { return "{" + actionId.map(id -> "'recurringActionId': " + id + ",").orElse("") + "'scheduleName': '" + scheduleName + "'," + targetId.map(id -> "'targetId': " + id + ",").orElse("") + - "'targetType': 'org'," + - "'actionType': 'HIGHSTATE'," + + "'targetType': '" + targetType + "'," + + "'actionType': '" + actionType + "'," + "'details': {" + + createStatesJsonString(actionType, stateName) + "'type': 'hourly'," + "'cronTimes': " + " {'minute': '0'," + @@ -167,4 +337,56 @@ private static String createActionJsonString(Optional actionId, String sch " }" + "}"; } + + private static String createStatesJsonString(String actionType, Optional stateName) { + if ("HIGHSTATE".equals(actionType)) { + return ""; + } + + return "'states': [" + + "{ 'type': 'internal_state', 'name': '" + stateName.get() + "', 'position': 0 }" + + "],"; + } + + private List> listRecurringActions(String type, Long targetId) { + var listRequest = getRequestWithCsrf("/manager/api/recurringactions/:type/:id", type, targetId); + return GSON.fromJson(RecurringActionController.listByEntity(listRequest, response, user), List.class); + } + + private void createMinionHighstateAction(Long minionId, String name) throws Exception { + var saveRequest = makeSaveRequest(name, "minion", of(minionId), "HIGHSTATE"); + RecurringActionController.save(saveRequest, response, user); + } + + private void createMinionCustomStateAction(Long minionId, String name, String stateName) throws Exception { + var saveRequest = makeSaveRequest(name, "minion", of(minionId), "CUSTOMSTATE", of(stateName)); + RecurringActionController.save(saveRequest, response, user); + } + + private void createGroupHighstateAction(Long groupId, String name) throws Exception { + var saveRequest = makeSaveRequest(name, "group", of(groupId), "HIGHSTATE"); + RecurringActionController.save(saveRequest, response, user); + } + private void createOrgHighstateAction(Long orgId, String name) throws UnsupportedEncodingException { + var saveRequest = makeSaveRequest(name, "org", of(orgId), "HIGHSTATE"); + RecurringActionController.save(saveRequest, response, user); + } + + private RecurringActionDetailsDto getDetails(Map action) { + Long actionId = extractActionId(action); + var request = getRequestWithCsrf("/manager/api/recurringactions/:id/details", actionId); + var details = GSON.fromJson( + RecurringActionController.getDetails(request, response, user), RecurringActionDetailsDto.class + ); + return details; + } + + private Long extractTargetId(Map action) { + return (long) Double.parseDouble(action.get("targetId").toString()); + } + + private Long extractActionId(Map action) { + return (long) Double.parseDouble(action.get("recurringActionId").toString()); + } + } diff --git a/java/code/src/com/suse/manager/webui/controllers/utils/test/AbstractMinionBootstrapperTestBase.java b/java/code/src/com/suse/manager/webui/controllers/utils/test/AbstractMinionBootstrapperTestBase.java index 99460919b409..7758b69139e9 100644 --- a/java/code/src/com/suse/manager/webui/controllers/utils/test/AbstractMinionBootstrapperTestBase.java +++ b/java/code/src/com/suse/manager/webui/controllers/utils/test/AbstractMinionBootstrapperTestBase.java @@ -26,6 +26,7 @@ import com.redhat.rhn.domain.token.ActivationKey; import com.redhat.rhn.testing.JMockBaseTestCaseWithUser; +import com.suse.cloud.CloudPaygManager; import com.suse.manager.webui.controllers.bootstrap.AbstractMinionBootstrapper; import com.suse.manager.webui.controllers.bootstrap.BootstrapResult; import com.suse.manager.webui.services.impl.SaltSSHService; @@ -57,6 +58,7 @@ public abstract class AbstractMinionBootstrapperTestBase extends JMockBaseTestCaseWithUser { protected SaltService saltServiceMock; + protected CloudPaygManager paygManager; // tested object, initialized in subclasses protected AbstractMinionBootstrapper bootstrapper; @@ -67,6 +69,7 @@ public void setUp() throws Exception { super.setUp(); setImposteriser(ByteBuddyClassImposteriser.INSTANCE); saltServiceMock = mock(SaltService.class); + paygManager = new CloudPaygManager(); } /** diff --git a/java/code/src/com/suse/manager/webui/controllers/utils/test/RegularMinionBootstrapperTest.java b/java/code/src/com/suse/manager/webui/controllers/utils/test/RegularMinionBootstrapperTest.java index 5ffc2f69fda6..90b37b3be4c0 100644 --- a/java/code/src/com/suse/manager/webui/controllers/utils/test/RegularMinionBootstrapperTest.java +++ b/java/code/src/com/suse/manager/webui/controllers/utils/test/RegularMinionBootstrapperTest.java @@ -59,7 +59,7 @@ public class RegularMinionBootstrapperTest extends AbstractMinionBootstrapperTes @BeforeEach public void setUp() throws Exception { super.setUp(); - bootstrapper = new RegularMinionBootstrapper(saltServiceMock, saltServiceMock); + bootstrapper = new RegularMinionBootstrapper(saltServiceMock, saltServiceMock, paygManager); } /** diff --git a/java/code/src/com/suse/manager/webui/controllers/utils/test/SSHMinionBootstrapperTest.java b/java/code/src/com/suse/manager/webui/controllers/utils/test/SSHMinionBootstrapperTest.java index 17808a34b179..06637f572b51 100644 --- a/java/code/src/com/suse/manager/webui/controllers/utils/test/SSHMinionBootstrapperTest.java +++ b/java/code/src/com/suse/manager/webui/controllers/utils/test/SSHMinionBootstrapperTest.java @@ -44,7 +44,7 @@ public class SSHMinionBootstrapperTest extends AbstractMinionBootstrapperTestBas @BeforeEach public void setUp() throws Exception { super.setUp(); - bootstrapper = new SSHMinionBootstrapper(saltServiceMock, saltServiceMock); + bootstrapper = new SSHMinionBootstrapper(saltServiceMock, saltServiceMock, paygManager); } @Override @@ -57,7 +57,7 @@ public void testBootstrapSuccess() throws Exception { private SSHMinionBootstrapper mockRegistrationBootstrapper( Optional activationKeyLabel) { - return new SSHMinionBootstrapper(saltServiceMock, saltServiceMock) { + return new SSHMinionBootstrapper(saltServiceMock, saltServiceMock, paygManager) { @Override protected RegisterMinionEventMessageAction getRegisterAction() { RegisterMinionEventMessageAction action = diff --git a/java/code/src/com/suse/manager/webui/menu/MenuTree.java b/java/code/src/com/suse/manager/webui/menu/MenuTree.java index 3512202ab1a6..da4e5f2636b6 100644 --- a/java/code/src/com/suse/manager/webui/menu/MenuTree.java +++ b/java/code/src/com/suse/manager/webui/menu/MenuTree.java @@ -148,7 +148,7 @@ private MenuItem getSystemsNode(User user, Map adminRoles) { .withPrimaryUrl("/rhn/manager/systems/list/all?qc=group_count&q=0") .withVisibility(adminRoles.get("org"))) .addChild(new MenuItem("Inactive") - .withPrimaryUrl("/rhn/manager/systems/list/all?qc=system_kind&q=awol")) + .withPrimaryUrl("/rhn/manager/systems/list/all?qc=status_type&q=awol")) .addChild(new MenuItem("Recently Registered") .withPrimaryUrl("/rhn/manager/systems/list/all?qc=created_days&q=>6")) .addChild(new MenuItem("Proxy") @@ -419,7 +419,7 @@ private MenuItem getAdminNode(Map adminRoles) { .withPrimaryUrl("/rhn/admin/setup/MirrorCredentials.do")) .addChild(new MenuItem("Products") .withPrimaryUrl("/rhn/manager/admin/setup/products")) - .addChild(new MenuItem("Pay-as-you-go") + .addChild(new MenuItem("PAYG Connections") .withPrimaryUrl("/rhn/manager/admin/setup/payg") .withDir("/rhn/manager/admin/setup/payg") .withDir("/rhn/manager/admin/setup/payg/create"))) diff --git a/java/code/src/com/suse/manager/webui/services/SaltServerActionService.java b/java/code/src/com/suse/manager/webui/services/SaltServerActionService.java index 5503f2b053fe..f3881187a5cc 100644 --- a/java/code/src/com/suse/manager/webui/services/SaltServerActionService.java +++ b/java/code/src/com/suse/manager/webui/services/SaltServerActionService.java @@ -117,6 +117,7 @@ import com.redhat.rhn.domain.server.VirtualInstanceFactory; import com.redhat.rhn.domain.token.ActivationKey; import com.redhat.rhn.domain.token.ActivationKeyFactory; +import com.redhat.rhn.domain.user.User; import com.redhat.rhn.frontend.dto.PackageListItem; import com.redhat.rhn.manager.action.ActionManager; import com.redhat.rhn.manager.kickstart.cobbler.CobblerXMLRPCHelper; @@ -729,6 +730,7 @@ else if (stateApplyResult.getChanges() != null) { .contains(SYSTEM_REBOOT)).orElse(false)); boolean refreshPkg = false; + Optional scheduler = Optional.empty(); for (Map.Entry>> entry : actionChainResult.entrySet()) { String stateIdKey = entry.getKey(); StateApplyResult> stateResult = entry.getValue(); @@ -740,13 +742,13 @@ else if (stateApplyResult.getChanges() != null) { // only reboot needs special handling, // for salt pkg update there's no need to split the sls in case of salt-ssh minions + Action action = ActionFactory.lookupById(stateId.getActionId()); if (stateResult.getName().map(x -> x.fold(Arrays::asList, List::of) .contains(SYSTEM_REBOOT)).orElse(false) && stateResult.isResult()) { - Action rebootAction = ActionFactory.lookupById(stateId.getActionId()); - if (rebootAction.getActionType().equals(ActionFactory.TYPE_REBOOT)) { + if (action.getActionType().equals(ActionFactory.TYPE_REBOOT)) { Optional rebootServerAction = - rebootAction.getServerActions().stream() + action.getServerActions().stream() .filter(sa -> sa.getServer().asMinionServer().isPresent() && sa.getServer().asMinionServer().get() .getMinionId().equals(minionId)) @@ -765,16 +767,18 @@ else if (stateApplyResult.getChanges() != null) { if (stateResult.isResult() && saltUtils.shouldRefreshPackageList(stateResult.getName(), Optional.of(stateResult.getChanges().getRet()))) { + scheduler = Optional.ofNullable(action.getSchedulerUser()); refreshPkg = true; } } } Optional minionServer = MinionServerFactory.findByMinionId(minionId); if (refreshPkg) { + Optional finalScheduler = scheduler; minionServer.ifPresent(minion -> { LOG.info("Scheduling a package profile update for minion {}", minionId); try { - ActionManager.schedulePackageRefresh(minion.getOrg(), minion); + ActionManager.schedulePackageRefresh(finalScheduler, minion); } catch (TaskomaticApiException e) { LOG.error("Could not schedule package refresh for minion: {}", minion.getMinionId(), e); @@ -1379,7 +1383,7 @@ private Map, List> remoteCommandAction( } catch (IOException e) { String errorMsg = "Could not write script to file " + scriptFile + " - " + e; - LOG.error(errorMsg); + LOG.error(errorMsg, e); scriptAction.getServerActions().stream() .filter(entry -> entry.getServer().asMinionServer() .map(minionServer -> minions.contains(new MinionSummary(minionServer))) @@ -2468,7 +2472,7 @@ public void executeSSHAction(Action action, MinionServer minion, boolean forcePk result = saltApi.rawJsonCall(call, minion.getMinionId()); } catch (RuntimeException e) { - LOG.error("Error executing Salt call for action: {}on minion {}", + LOG.error("Error executing Salt call for action: {} on minion {}", action.getName(), minion.getMinionId(), e); sa.setStatus(STATUS_FAILED); sa.setResultMsg("Error calling Salt: " + e.getMessage()); @@ -2513,11 +2517,11 @@ else if (sa.getStatus().equals(ActionFactory.STATUS_QUEUED)) { LOG.info("Scheduling a package profile update"); try { - ActionManager.schedulePackageRefresh(minion.getOrg(), minion); + ActionManager.schedulePackageRefresh( + Optional.ofNullable(action.getSchedulerUser()), minion); } catch (TaskomaticApiException e) { - LOG.error("Could not schedule package refresh for minion: {}", minion.getMinionId()); - LOG.error(e); + LOG.error("Could not schedule package refresh for minion: {}", minion.getMinionId(), e); } } }); diff --git a/java/code/src/com/suse/manager/webui/services/impl/SaltService.java b/java/code/src/com/suse/manager/webui/services/impl/SaltService.java index 254864fa3e10..1d7cf1bb3238 100644 --- a/java/code/src/com/suse/manager/webui/services/impl/SaltService.java +++ b/java/code/src/com/suse/manager/webui/services/impl/SaltService.java @@ -594,7 +594,7 @@ public void eventStreamClosed(int code, String phrase) { } } catch (JavaMailException javaMailException) { - LOG.error("Error sending email: {}", javaMailException.getMessage()); + LOG.error("Error sending email: {}", javaMailException.getMessage(), javaMailException); } catch (InterruptedException e1) { LOG.error("Interrupted during sleep", e1); @@ -1063,7 +1063,7 @@ public Optional getUptimeForMinion(MinionServer minion) { } } catch (RuntimeException e) { - LOG.error(e); + LOG.error(e.getMessage(), e); } return uptime; } diff --git a/java/code/src/com/suse/manager/webui/utils/MinionActionUtils.java b/java/code/src/com/suse/manager/webui/utils/MinionActionUtils.java index 9127b68b6029..9df2d5212e11 100644 --- a/java/code/src/com/suse/manager/webui/utils/MinionActionUtils.java +++ b/java/code/src/com/suse/manager/webui/utils/MinionActionUtils.java @@ -181,17 +181,19 @@ public void cleanupScriptActions() throws IOException { Path scriptsDir = saltUtils.getScriptsDir(); if (Files.isDirectory(scriptsDir)) { Pattern p = Pattern.compile("script_(\\d*).sh"); - Files.list(scriptsDir).forEach(file -> { - Matcher m = p.matcher(file.getFileName().toString()); - if (m.find()) { - long actionId = Long.parseLong(m.group(1)); - Action action = ActionFactory.lookupById(actionId); - if (action == null || action.allServersFinished()) { - LOG.info("Deleting script file: {}", file); - FileUtils.deleteFile(file); + try (Stream pathStream = Files.list(scriptsDir)) { + pathStream.forEach(file -> { + Matcher m = p.matcher(file.getFileName().toString()); + if (m.find()) { + long actionId = Long.parseLong(m.group(1)); + Action action = ActionFactory.lookupById(actionId); + if (action == null || action.allServersFinished()) { + LOG.info("Deleting script file: {}", file); + FileUtils.deleteFile(file); + } } - } - }); + }); + } } } diff --git a/java/code/src/com/suse/manager/webui/utils/UserPreferenceUtils.java b/java/code/src/com/suse/manager/webui/utils/UserPreferenceUtils.java index 7dc6c7cc852e..ca70e47c817a 100644 --- a/java/code/src/com/suse/manager/webui/utils/UserPreferenceUtils.java +++ b/java/code/src/com/suse/manager/webui/utils/UserPreferenceUtils.java @@ -104,6 +104,16 @@ public String getDocsLocale(PageContext pageContext) { HttpServletRequest request = (HttpServletRequest) pageContext.getRequest(); User user = new RequestContext(request).getCurrentUser(); + return getDocsLocale(user); + } + + /** + * Get the user's configured documentation locale. If no user is available return the config default + * + * @param user the current user + * @return the users documentation locale + */ + public String getDocsLocale(User user) { if (isUserAuthenticated(user)) { String locale = user.getPreferredDocsLocale(); if (locale != null) { diff --git a/java/code/src/com/suse/manager/webui/utils/test/InputValidatorTest.java b/java/code/src/com/suse/manager/webui/utils/test/InputValidatorTest.java index 7c6a9bdf10cc..7fca351123ab 100644 --- a/java/code/src/com/suse/manager/webui/utils/test/InputValidatorTest.java +++ b/java/code/src/com/suse/manager/webui/utils/test/InputValidatorTest.java @@ -17,6 +17,7 @@ import static org.junit.jupiter.api.Assertions.assertEquals; import static org.junit.jupiter.api.Assertions.assertTrue; +import com.suse.cloud.CloudPaygManager; import com.suse.manager.webui.controllers.MinionsAPI; import com.suse.manager.webui.controllers.bootstrap.RegularMinionBootstrapper; import com.suse.manager.webui.services.iface.SaltApi; @@ -44,6 +45,7 @@ public class InputValidatorTest { private SaltApi saltApi = new TestSaltApi(); private SystemQuery systemQuery = new TestSystemQuery(); + private CloudPaygManager paygManager = new CloudPaygManager(); /** * Test the check for required fields. @@ -52,7 +54,8 @@ public class InputValidatorTest { public void testValidateBootstrapInputUserEmpty() { String json = "{user: ''}"; BootstrapHostsJson input = MinionsAPI.GSON.fromJson(json, BootstrapHostsJson.class); - BootstrapParameters params = new RegularMinionBootstrapper(systemQuery, saltApi).createBootstrapParams(input); + BootstrapParameters params = new RegularMinionBootstrapper(systemQuery, saltApi, paygManager) + .createBootstrapParams(input); List validationErrors = InputValidator.INSTANCE.validateBootstrapInput(params); assertEquals(2, validationErrors.size()); assertTrue(validationErrors.contains(HOST_ERROR_MESSAGE)); @@ -66,7 +69,8 @@ public void testValidateBootstrapInputUserEmpty() { public void testValidateBootstrapInputUserLettersNumbers() { String json = "{user: 'Admin1', host: 'host.domain.com'}"; BootstrapHostsJson input = MinionsAPI.GSON.fromJson(json, BootstrapHostsJson.class); - BootstrapParameters params = new RegularMinionBootstrapper(systemQuery, saltApi).createBootstrapParams(input); + BootstrapParameters params = new RegularMinionBootstrapper(systemQuery, saltApi, paygManager) + .createBootstrapParams(input); List validationErrors = InputValidator.INSTANCE.validateBootstrapInput(params); assertTrue(validationErrors.isEmpty()); } @@ -78,7 +82,8 @@ public void testValidateBootstrapInputUserLettersNumbers() { public void testValidateBootstrapInputUserDot() { String json = "{user: 'my.admin', host: 'host.domain.com'}"; BootstrapHostsJson input = MinionsAPI.GSON.fromJson(json, BootstrapHostsJson.class); - BootstrapParameters params = new RegularMinionBootstrapper(systemQuery, saltApi).createBootstrapParams(input); + BootstrapParameters params = new RegularMinionBootstrapper(systemQuery, saltApi, paygManager) + .createBootstrapParams(input); List validationErrors = InputValidator.INSTANCE.validateBootstrapInput(params); assertTrue(validationErrors.isEmpty()); } @@ -90,7 +95,8 @@ public void testValidateBootstrapInputUserDot() { public void testValidateBootstrapInputUserBackslash() { String json = "{user: 'domain\\\\admin', host: 'host.domain.com'}"; BootstrapHostsJson input = MinionsAPI.GSON.fromJson(json, BootstrapHostsJson.class); - BootstrapParameters params = new RegularMinionBootstrapper(systemQuery, saltApi).createBootstrapParams(input); + BootstrapParameters params = new RegularMinionBootstrapper(systemQuery, saltApi, paygManager) + .createBootstrapParams(input); List validationErrors = InputValidator.INSTANCE.validateBootstrapInput(params); assertTrue(validationErrors.isEmpty()); } @@ -102,7 +108,8 @@ public void testValidateBootstrapInputUserBackslash() { public void testValidateBootstrapInputUserDash() { String json = "{user: 'my-admin', host: 'host.domain.com'}"; BootstrapHostsJson input = MinionsAPI.GSON.fromJson(json, BootstrapHostsJson.class); - BootstrapParameters params = new RegularMinionBootstrapper(systemQuery, saltApi).createBootstrapParams(input); + BootstrapParameters params = new RegularMinionBootstrapper(systemQuery, saltApi, paygManager) + .createBootstrapParams(input); List validationErrors = InputValidator.INSTANCE.validateBootstrapInput(params); assertTrue(validationErrors.isEmpty()); } @@ -114,7 +121,8 @@ public void testValidateBootstrapInputUserDash() { public void testValidateBootstrapInputUserUnderscore() { String json = "{user: 'my_admin', host: 'host.domain.com'}"; BootstrapHostsJson input = MinionsAPI.GSON.fromJson(json, BootstrapHostsJson.class); - BootstrapParameters params = new RegularMinionBootstrapper(systemQuery, saltApi).createBootstrapParams(input); + BootstrapParameters params = new RegularMinionBootstrapper(systemQuery, saltApi, paygManager) + .createBootstrapParams(input); List validationErrors = InputValidator.INSTANCE.validateBootstrapInput(params); assertTrue(validationErrors.isEmpty()); } @@ -126,7 +134,8 @@ public void testValidateBootstrapInputUserUnderscore() { public void testValidateBootstrapInputUserInvalid() { String json = "{user: '$(execme)', host: 'host.domain.com'}"; BootstrapHostsJson input = MinionsAPI.GSON.fromJson(json, BootstrapHostsJson.class); - BootstrapParameters params = new RegularMinionBootstrapper(systemQuery, saltApi).createBootstrapParams(input); + BootstrapParameters params = new RegularMinionBootstrapper(systemQuery, saltApi, paygManager) + .createBootstrapParams(input); List validationErrors = InputValidator.INSTANCE.validateBootstrapInput(params); assertEquals(1, validationErrors.size()); assertTrue(validationErrors.contains(USER_ERROR_MESSAGE)); @@ -139,7 +148,8 @@ public void testValidateBootstrapInputUserInvalid() { public void testValidateBootstrapInputHostInvalid() { String json = "{user: 'toor', host: '`execme`'}"; BootstrapHostsJson input = MinionsAPI.GSON.fromJson(json, BootstrapHostsJson.class); - BootstrapParameters params = new RegularMinionBootstrapper(systemQuery, saltApi).createBootstrapParams(input); + BootstrapParameters params = new RegularMinionBootstrapper(systemQuery, saltApi, paygManager) + .createBootstrapParams(input); List validationErrors = InputValidator.INSTANCE.validateBootstrapInput(params); assertEquals(1, validationErrors.size()); assertTrue(validationErrors.contains(HOST_ERROR_MESSAGE)); @@ -152,7 +162,8 @@ public void testValidateBootstrapInputHostInvalid() { public void testValidateBootstrapInputHostIPv4() { String json = "{user: 'toor', host: '192.168.1.1'}"; BootstrapHostsJson input = MinionsAPI.GSON.fromJson(json, BootstrapHostsJson.class); - BootstrapParameters params = new RegularMinionBootstrapper(systemQuery, saltApi).createBootstrapParams(input); + BootstrapParameters params = new RegularMinionBootstrapper(systemQuery, saltApi, paygManager) + .createBootstrapParams(input); List validationErrors = InputValidator.INSTANCE.validateBootstrapInput(params); assertTrue(validationErrors.isEmpty()); } @@ -164,7 +175,8 @@ public void testValidateBootstrapInputHostIPv4() { public void testValidateBootstrapInputHostIPv6() { String json = "{user: 'toor', host: '[2001:0db8:0000:0000:0000:0000:1428:57ab]'}"; BootstrapHostsJson input = MinionsAPI.GSON.fromJson(json, BootstrapHostsJson.class); - BootstrapParameters params = new RegularMinionBootstrapper(systemQuery, saltApi).createBootstrapParams(input); + BootstrapParameters params = new RegularMinionBootstrapper(systemQuery, saltApi, paygManager) + .createBootstrapParams(input); List validationErrors = InputValidator.INSTANCE.validateBootstrapInput(params); assertTrue(validationErrors.isEmpty()); } @@ -176,7 +188,8 @@ public void testValidateBootstrapInputHostIPv6() { public void testValidateBootstrapInputDefaultUser() { String json = "{}"; BootstrapHostsJson input = MinionsAPI.GSON.fromJson(json, BootstrapHostsJson.class); - BootstrapParameters params = new RegularMinionBootstrapper(systemQuery, saltApi).createBootstrapParams(input); + BootstrapParameters params = new RegularMinionBootstrapper(systemQuery, saltApi, paygManager) + .createBootstrapParams(input); List validationErrors = InputValidator.INSTANCE.validateBootstrapInput(params); assertEquals(1, validationErrors.size()); assertTrue(validationErrors.contains(HOST_ERROR_MESSAGE)); @@ -189,7 +202,8 @@ public void testValidateBootstrapInputDefaultUser() { public void testValidateBootstrapInputMinimal() { String json = "{host: 'host.domain.com', user: 'root'}"; BootstrapHostsJson input = MinionsAPI.GSON.fromJson(json, BootstrapHostsJson.class); - BootstrapParameters params = new RegularMinionBootstrapper(systemQuery, saltApi).createBootstrapParams(input); + BootstrapParameters params = new RegularMinionBootstrapper(systemQuery, saltApi, paygManager) + .createBootstrapParams(input); List validationErrors = InputValidator.INSTANCE.validateBootstrapInput(params); assertTrue(validationErrors.isEmpty()); } @@ -201,7 +215,8 @@ public void testValidateBootstrapInputMinimal() { public void testValidateBootstrapInputPortEmpty() { String json = "{host: 'host.domain.com', user: 'root', port: ''}"; BootstrapHostsJson input = MinionsAPI.GSON.fromJson(json, BootstrapHostsJson.class); - BootstrapParameters params = new RegularMinionBootstrapper(systemQuery, saltApi).createBootstrapParams(input); + BootstrapParameters params = new RegularMinionBootstrapper(systemQuery, saltApi, paygManager) + .createBootstrapParams(input); List validationErrors = InputValidator.INSTANCE.validateBootstrapInput(params); assertTrue(validationErrors.isEmpty()); } @@ -213,14 +228,15 @@ public void testValidateBootstrapInputPortEmpty() { public void testValidateBootstrapInputPortRange() { String json = "{host: 'host.domain.com', user: 'root', port: '99999'}"; BootstrapHostsJson input = MinionsAPI.GSON.fromJson(json, BootstrapHostsJson.class); - BootstrapParameters params = new RegularMinionBootstrapper(systemQuery, saltApi).createBootstrapParams(input); + BootstrapParameters params = new RegularMinionBootstrapper(systemQuery, saltApi, paygManager) + .createBootstrapParams(input); List validationErrors = InputValidator.INSTANCE.validateBootstrapInput(params); assertEquals(1, validationErrors.size()); assertTrue(validationErrors.contains(PORT_ERROR_MESSAGE)); json = "{host: 'host.domain.com', user: 'root', port: '-1'}"; input = MinionsAPI.GSON.fromJson(json, BootstrapHostsJson.class); - params = new RegularMinionBootstrapper(systemQuery, saltApi).createBootstrapParams(input); + params = new RegularMinionBootstrapper(systemQuery, saltApi, paygManager).createBootstrapParams(input); validationErrors = InputValidator.INSTANCE.validateBootstrapInput(params); assertEquals(1, validationErrors.size()); assertTrue(validationErrors.contains(PORT_ERROR_MESSAGE)); @@ -233,7 +249,8 @@ public void testValidateBootstrapInputPortRange() { public void testValidateBootstrapInputPortValid() { String json = "{host: 'host.domain.com', user: 'root', port: '8888'}"; BootstrapHostsJson input = MinionsAPI.GSON.fromJson(json, BootstrapHostsJson.class); - BootstrapParameters params = new RegularMinionBootstrapper(systemQuery, saltApi).createBootstrapParams(input); + BootstrapParameters params = new RegularMinionBootstrapper(systemQuery, saltApi, paygManager) + .createBootstrapParams(input); List validationErrors = InputValidator.INSTANCE.validateBootstrapInput(params); assertTrue(validationErrors.isEmpty()); } diff --git a/java/code/src/com/suse/manager/xmlrpc/admin/AdminPaygHandler.java b/java/code/src/com/suse/manager/xmlrpc/admin/AdminPaygHandler.java index da373e497917..930969e13050 100644 --- a/java/code/src/com/suse/manager/xmlrpc/admin/AdminPaygHandler.java +++ b/java/code/src/com/suse/manager/xmlrpc/admin/AdminPaygHandler.java @@ -30,7 +30,7 @@ * Payg-as-you-go XMLRPC Handler * * @apidoc.namespace admin - * @apidoc.doc Provides methods to access and modify pay-as-you-go ssh connection data + * @apidoc.doc Provides methods to access and modify PAYG ssh connection data */ public class AdminPaygHandler extends BaseHandler { diff --git a/java/code/src/com/suse/manager/xmlrpc/serializer/test/SystemEventDetailsDtoSerializerTest.java b/java/code/src/com/suse/manager/xmlrpc/serializer/test/SystemEventDetailsDtoSerializerTest.java index 17702fc53e89..97383df5d769 100644 --- a/java/code/src/com/suse/manager/xmlrpc/serializer/test/SystemEventDetailsDtoSerializerTest.java +++ b/java/code/src/com/suse/manager/xmlrpc/serializer/test/SystemEventDetailsDtoSerializerTest.java @@ -48,7 +48,7 @@ public void testSerializeSystemEventDetailDto() { dto.setHistoryType(ActionFactory.TYPE_HARDWARE_REFRESH_LIST.getLabel()); dto.setHistoryTypeName(ActionFactory.TYPE_HARDWARE_REFRESH_LIST.getName()); dto.setHistoryStatus(ActionFactory.STATUS_COMPLETED.getName()); - dto.setSummary("Hardware List Refresh scheduled by (none)"); + dto.setSummary("Hardware List Refresh scheduled by (system)"); dto.setCreated(Date.from(LocalDateTime.of(2021, 10, 5, 16, 55) .atZone(ZoneOffset.systemDefault()) .toInstant())); @@ -81,7 +81,7 @@ public void testSerializeSystemEventDetailDto() { assertTrue(xml.contains("Completed")); assertTrue(xml.contains("summary")); - assertTrue(xml.contains("Hardware List Refresh scheduled by (none)")); + assertTrue(xml.contains("Hardware List Refresh scheduled by (system)")); assertTrue(xml.contains("created")); assertTrue(xml.contains("20211005T16:55:00")); diff --git a/java/code/src/com/suse/manager/xmlrpc/serializer/test/SystemEventDtoSerializerTest.java b/java/code/src/com/suse/manager/xmlrpc/serializer/test/SystemEventDtoSerializerTest.java index 37dc8e675c2d..54bf1e20d66b 100644 --- a/java/code/src/com/suse/manager/xmlrpc/serializer/test/SystemEventDtoSerializerTest.java +++ b/java/code/src/com/suse/manager/xmlrpc/serializer/test/SystemEventDtoSerializerTest.java @@ -44,7 +44,7 @@ public void testSerializeSystemEventDto() { dto.setHistoryType(ActionFactory.TYPE_HARDWARE_REFRESH_LIST.getLabel()); dto.setHistoryTypeName(ActionFactory.TYPE_HARDWARE_REFRESH_LIST.getName()); dto.setHistoryStatus(ActionFactory.STATUS_COMPLETED.getName()); - dto.setSummary("Hardware List Refresh scheduled by (none)"); + dto.setSummary("Hardware List Refresh scheduled by (system)"); dto.setCompleted(Date.from(LocalDateTime.of(2021, 10, 5, 17, 0) .atZone(ZoneOffset.systemDefault()) .toInstant())); @@ -65,7 +65,7 @@ public void testSerializeSystemEventDto() { assertTrue(xml.contains("Completed")); assertTrue(xml.contains("summary")); - assertTrue(xml.contains("Hardware List Refresh scheduled by (none)")); + assertTrue(xml.contains("Hardware List Refresh scheduled by (system)")); assertTrue(xml.contains("completed")); assertTrue(xml.contains("20211005T17:00:00")); diff --git a/java/code/src/com/suse/scc/SCCSystemRegistrationManager.java b/java/code/src/com/suse/scc/SCCSystemRegistrationManager.java index 09521b6d26d8..aeada7afe9d6 100644 --- a/java/code/src/com/suse/scc/SCCSystemRegistrationManager.java +++ b/java/code/src/com/suse/scc/SCCSystemRegistrationManager.java @@ -147,7 +147,14 @@ public void register(List items, Credentials primaryCredential) items.forEach(cacheItem -> { try { Credentials itemCredentials = cacheItem.getOptCredentials().orElse(primaryCredential); - if (cacheItem.getOptServer().filter(s -> s.isForeign()).isEmpty()) { + /* + If a system is PAYG, we don't want to send (at least for now) information to SCC + so that the customer is not charged twice for the same machine. In the future we'll + send the machine with the flag `is_payg` set to true, but that will be done when the SCC + team supports it. + */ + if (cacheItem.getOptServer().filter(s -> s.isForeign()).isEmpty() && + cacheItem.getOptServer().filter(s -> s.isPayg()).isEmpty()) { LOG.debug("Forward registration of {}", cacheItem); SCCSystemCredentialsJson systemCredentials = sccClient.createSystem( getPayload(cacheItem), @@ -157,7 +164,7 @@ public void register(List items, Credentials primaryCredential) cacheItem.setSccLogin(systemCredentials.getLogin()); cacheItem.setSccPasswd(systemCredentials.getPassword()); } - // Foreign systems will not be send to SCC + // Foreign systems and PAYG will not be sent to SCC // but we need the entry in case it is a hypervisor and we need to send // virtualization host data to SCC cacheItem.setSccRegistrationRequired(false); diff --git a/java/code/src/com/suse/scc/client/SCCClientFactory.java b/java/code/src/com/suse/scc/client/SCCClientFactory.java deleted file mode 100644 index 250341e19141..000000000000 --- a/java/code/src/com/suse/scc/client/SCCClientFactory.java +++ /dev/null @@ -1,51 +0,0 @@ -/* - * Copyright (c) 2014 SUSE LLC - * - * This software is licensed to you under the GNU General Public License, - * version 2 (GPLv2). There is NO WARRANTY for this software, express or - * implied, including the implied warranties of MERCHANTABILITY or FITNESS - * FOR A PARTICULAR PURPOSE. You should have received a copy of GPLv2 - * along with this software; if not, see - * http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt. - * - * Red Hat trademarks are not licensed under GPLv2. No permission is - * granted to use or replicate Red Hat trademarks that are incorporated - * in this software or its documentation. - */ -package com.suse.scc.client; - -import java.net.URI; - -/** - * Instantiates {@link SCCClient} - */ -public class SCCClientFactory { - - /** - * Private constructor. - */ - private SCCClientFactory() { - // nothing to do here - } - - /** - * Factory method. - * @param url the URL of scc - * @param username the username - * @param password the password - * @param resourcePath the local path for JSON files or null - * @param uuid the UUID or null - * @return the new {@link SCCWebClient} - */ - public static SCCClient getInstance(URI url, String username, String password, - String resourcePath, String uuid) { - - if (resourcePath != null) { - return new SCCFileClient(new SCCConfig(resourcePath)); - } - else { - SCCConfig config = new SCCConfig(url, username, password, uuid); - return new SCCWebClient(config); - } - } -} diff --git a/java/code/src/com/suse/scc/client/SCCConfig.java b/java/code/src/com/suse/scc/client/SCCConfig.java index 9ae67c1199d4..24d6bd20cf6d 100644 --- a/java/code/src/com/suse/scc/client/SCCConfig.java +++ b/java/code/src/com/suse/scc/client/SCCConfig.java @@ -16,6 +16,9 @@ import java.net.URI; import java.net.URISyntaxException; +import java.util.HashMap; +import java.util.Map; +import java.util.Optional; /** * SCC configuration container class. @@ -57,6 +60,8 @@ public class SCCConfig { /** Path to the logging directory. */ private String loggingDir; + private Map additionalHeaders; + /** True to skip owner setting in tests */ private boolean skipOwner = false; @@ -66,7 +71,7 @@ public class SCCConfig { * @param localResourcePathIn the local resource path */ public SCCConfig(String localResourcePathIn) { - this(DEFAULT_URL, null, null, null, localResourcePathIn, DEFAULT_LOGGING_DIR, false); + this(DEFAULT_URL, null, null, null, localResourcePathIn, DEFAULT_LOGGING_DIR, false, null); } /** @@ -77,7 +82,20 @@ public SCCConfig(String localResourcePathIn) { * @param uuidIn the UUID */ public SCCConfig(URI urlIn, String usernameIn, String passwordIn, String uuidIn) { - this(urlIn, usernameIn, passwordIn, uuidIn, null, DEFAULT_LOGGING_DIR, false); + this(urlIn, usernameIn, passwordIn, uuidIn, null, DEFAULT_LOGGING_DIR, false, null); + } + + /** + * Instantiates a new SCC config to read from SCC with default logging directory. + * @param urlIn the url + * @param usernameIn the username + * @param passwordIn the password + * @param uuidIn the UUID + * @param additionalHeadersIn additional headers for the request + */ + public SCCConfig(URI urlIn, String usernameIn, String passwordIn, String uuidIn, + Map additionalHeadersIn) { + this(urlIn, usernameIn, passwordIn, uuidIn, null, DEFAULT_LOGGING_DIR, false, additionalHeadersIn); } /** @@ -90,8 +108,25 @@ public SCCConfig(URI urlIn, String usernameIn, String passwordIn, String uuidIn) * @param loggingDirIn the logging dir * @param skipOwnerIn skip owner setting for testing */ + public SCCConfig(URI urlIn, String usernameIn, String passwordIn, String uuidIn, String localResourcePathIn, + String loggingDirIn, boolean skipOwnerIn) { + this(urlIn, usernameIn, passwordIn, uuidIn, localResourcePathIn, loggingDirIn, skipOwnerIn, null); + } + + /** + * Full constructor. + * @param urlIn the url + * @param usernameIn the username + * @param passwordIn the password + * @param uuidIn the UUID + * @param localResourcePathIn the local resource path + * @param loggingDirIn the logging dir + * @param skipOwnerIn skip owner setting for testing + * @param additionalHeadersIn map of additional headers to set for the request + */ public SCCConfig(URI urlIn, String usernameIn, String passwordIn, String uuidIn, - String localResourcePathIn, String loggingDirIn, boolean skipOwnerIn) { + String localResourcePathIn, String loggingDirIn, boolean skipOwnerIn, + Map additionalHeadersIn) { url = urlIn; username = usernameIn; password = passwordIn; @@ -99,6 +134,7 @@ public SCCConfig(URI urlIn, String usernameIn, String passwordIn, String uuidIn, localResourcePath = localResourcePathIn; loggingDir = loggingDirIn; skipOwner = skipOwnerIn; + additionalHeaders = additionalHeadersIn; } /** @@ -155,4 +191,11 @@ public String getLoggingDir() { public boolean isSkipOwner() { return skipOwner; } + + /** + * @return additional headers + */ + public Map getAdditionalHeaders() { + return Optional.ofNullable(additionalHeaders).orElse(new HashMap<>()); + } } diff --git a/java/code/src/com/suse/scc/client/SCCRequestFactory.java b/java/code/src/com/suse/scc/client/SCCRequestFactory.java index 558372d1f250..c8e4fc77dfea 100644 --- a/java/code/src/com/suse/scc/client/SCCRequestFactory.java +++ b/java/code/src/com/suse/scc/client/SCCRequestFactory.java @@ -20,6 +20,8 @@ import org.apache.http.client.methods.HttpGet; import org.apache.http.client.methods.HttpRequestBase; +import java.util.Map; + /** * Helper class for setting up HTTP Requests as {@link HttpRequestBase} objects. */ @@ -73,6 +75,11 @@ public HttpRequestBase initRequest(String method, String endpoint, SCCConfig con request.addHeader("User-Agent", Config.get().getString(ConfigDefaults.PRODUCT_NAME) + "/" + ConfigDefaults.get().getProductVersion()); + // add additional headers from the config + for (Map.Entry e : config.getAdditionalHeaders().entrySet()) { + request.addHeader(e.getKey(), e.getValue()); + } + return request; } } diff --git a/java/code/src/com/suse/scc/test/SCCClientTest.java b/java/code/src/com/suse/scc/test/SCCClientTest.java index dac56dd59de2..819a0e931655 100644 --- a/java/code/src/com/suse/scc/test/SCCClientTest.java +++ b/java/code/src/com/suse/scc/test/SCCClientTest.java @@ -25,7 +25,8 @@ import com.suse.scc.client.SCCClient; import com.suse.scc.client.SCCClientException; -import com.suse.scc.client.SCCClientFactory; +import com.suse.scc.client.SCCConfig; +import com.suse.scc.client.SCCFileClient; import com.suse.scc.model.SCCProductJson; import com.suse.scc.model.SCCRepositoryJson; import com.suse.scc.model.SCCSubscriptionJson; @@ -217,8 +218,7 @@ public void testListRepositoriesFromDirectory() throws Exception { "/com/suse/scc/test/connect/organizations/repositories.json"), new File(tmpDir.getAbsolutePath() + "/organizations_repositories.json")); try { - SCCClient scc = SCCClientFactory.getInstance(null, null, null, - tmpDir.getAbsolutePath(), null); + SCCClient scc = new SCCFileClient(new SCCConfig(tmpDir.getAbsolutePath())); List repos = scc.listRepositories(); // Assertions diff --git a/java/code/src/com/suse/scc/test/SCCSystemRegistrationManagerTest.java b/java/code/src/com/suse/scc/test/SCCSystemRegistrationManagerTest.java index 42dd54445769..b2909ae54629 100644 --- a/java/code/src/com/suse/scc/test/SCCSystemRegistrationManagerTest.java +++ b/java/code/src/com/suse/scc/test/SCCSystemRegistrationManagerTest.java @@ -148,6 +148,36 @@ public void deleteSystem(long id, String username, String password) { assertEquals(0, itemsAfterDeregistration.size()); } + @Test + public void sccSystemRegistrationLifecycleForPAYGInstance() throws Exception { + Server testSystem = ServerTestUtils.createTestSystem(); + ServerInfo serverInfo = testSystem.getServerInfo(); + serverInfo.setCheckin(new Date(0)); // 1970-01-01 00:00:00 UTC + testSystem.setServerInfo(serverInfo); + testSystem.setPayg(true); + + SCCWebClient sccWebClient = new SCCWebClient(new SCCConfig( + new URI("https://localhost"), "username", "password", "uuid")); + + SCCSystemRegistrationManager sccSystemRegistrationManager = new SCCSystemRegistrationManager(sccWebClient); + SCCCachingFactory.initNewSystemsToForward(); + + List allUnregistered = SCCCachingFactory.findSystemsToForwardRegistration(); + List testSystems = allUnregistered.stream() + .filter(i -> i.getOptServer().get().equals(testSystem)) + .collect(Collectors.toList()); + + Credentials credentials = CredentialsFactory.createSCCCredentials(); + credentials.setUsername("username"); + credentials.setPassword("password"); + credentials.setUrl("https://scc.suse.com"); + CredentialsFactory.storeCredentials(credentials); + + sccSystemRegistrationManager.register(testSystems, credentials); + List afterRegistration = SCCCachingFactory.findSystemsToForwardRegistration(); + assertEquals(allUnregistered.size() - 1, afterRegistration.size()); + } + @Test public void testUpdateSystems() throws Exception { Path tmpSaltRoot = Files.createTempDirectory("salt"); diff --git a/java/code/src/org/cobbler/CobblerConnection.java b/java/code/src/org/cobbler/CobblerConnection.java index dfcb599da094..a39ecf3c839b 100644 --- a/java/code/src/org/cobbler/CobblerConnection.java +++ b/java/code/src/org/cobbler/CobblerConnection.java @@ -139,8 +139,17 @@ public String login(String login, String password) { * @param args to pass to method * @return Object returned. */ - private Object invokeMethod(String procedureName, List args) { - log.debug("procedure: {} args: {}", procedureName, args); + private Object invokeMethod(String procedureName, List args) { + if (log.isDebugEnabled()) { + List dbgArgs = new LinkedList<>(args); + String lastArg = (String) dbgArgs.get(dbgArgs.size() - 1); + if (lastArg.length() == 36 && lastArg.endsWith("==")) { + // probably a base64 token + dbgArgs.remove(dbgArgs.size() - 1); + dbgArgs.add(""); + } + log.debug("procedure: {} args: {}", procedureName, dbgArgs); + } Object retval; try { retval = client.invoke(procedureName, args); diff --git a/java/code/webapp/WEB-INF/nav/setup_wizard.xml b/java/code/webapp/WEB-INF/nav/setup_wizard.xml index 4b4a006f11ce..aa2d86aa140d 100644 --- a/java/code/webapp/WEB-INF/nav/setup_wizard.xml +++ b/java/code/webapp/WEB-INF/nav/setup_wizard.xml @@ -9,7 +9,7 @@ /rhn/manager/admin/setup/products - + /rhn/manager/admin/setup/payg diff --git a/java/conf/log4j2.xml.taskomatic b/java/conf/log4j2.xml.taskomatic index 3766c60017c7..6698107f0381 100644 --- a/java/conf/log4j2.xml.taskomatic +++ b/java/conf/log4j2.xml.taskomatic @@ -7,6 +7,17 @@ + + + + + + + + + + + + + + + + + + diff --git a/java/manager-build.xml b/java/manager-build.xml index c2689a520d62..c9eedcc229a6 100644 --- a/java/manager-build.xml +++ b/java/manager-build.xml @@ -21,6 +21,7 @@ + @@ -226,7 +227,14 @@ yarn is not in the PATH. Please install yarn first. - + + + + + + + + @@ -235,10 +243,6 @@ - - - - @@ -294,6 +298,136 @@ + + + + + + + + + + + + + + + kubectl is not in the PATH. Please install kubectl first. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/java/spacewalk-java.changes b/java/spacewalk-java.changes index 937100e03381..26e605edb391 100644 --- a/java/spacewalk-java.changes +++ b/java/spacewalk-java.changes @@ -55,6 +55,20 @@ organization (bsc#1209220) - Fix RHEL9 / SLL9 product discovery (bsc#1209993) +------------------------------------------------------------------- +Thu Jun 22 18:59:40 CEST 2023 - marina.latini@suse.com + +- version 4.4.18-1 + * Fix session information leak CVE-2023-22644 (bsc#1210107) + * Fix credentials and other secrets disclosure when debug log is enabled + CVE-2023-22644 (bsc#1210154) + * Remove web session swap secrets output in logs CVE-2023-22644 (bsc#1210086) + * Do not output cobbler xmlrpc token in debug logs CVE-2023-22644 (bsc#1210162) + * Do not output URL parameters for tiny urls CVE-2023-22644 (bsc#1210101) + * Do not log SSL certificate / key file content CVE-2023-22644 (bsc#1210094) + * Update tomcat jars to version 9.0.75 + * Update jetty-util to version 9.4.51 + ------------------------------------------------------------------- Wed Apr 19 12:47:06 CEST 2023 - marina.latini@suse.com diff --git a/java/spacewalk-java.changes.cbbayburt.mgr-libmod-path b/java/spacewalk-java.changes.cbbayburt.mgr-libmod-path new file mode 100644 index 000000000000..edb0c882fcee --- /dev/null +++ b/java/spacewalk-java.changes.cbbayburt.mgr-libmod-path @@ -0,0 +1 @@ +- Call mgr-libmod with its absolute path diff --git a/java/spacewalk-java.changes.cbosdo.inactive-systems-fix b/java/spacewalk-java.changes.cbosdo.inactive-systems-fix new file mode 100644 index 000000000000..5083c8409b51 --- /dev/null +++ b/java/spacewalk-java.changes.cbosdo.inactive-systems-fix @@ -0,0 +1 @@ +- Fix the URL for inactive systems page diff --git a/java/spacewalk-java.changes.cbosdo.local-reportdb b/java/spacewalk-java.changes.cbosdo.local-reportdb new file mode 100644 index 000000000000..d7338755b62a --- /dev/null +++ b/java/spacewalk-java.changes.cbosdo.local-reportdb @@ -0,0 +1 @@ +- Don't force ssl verification on reportdb using localhost diff --git a/java/spacewalk-java.changes.mackdk.4.3-allow-sync-with-rmt b/java/spacewalk-java.changes.mackdk.4.3-allow-sync-with-rmt new file mode 100644 index 000000000000..cee493850aaa --- /dev/null +++ b/java/spacewalk-java.changes.mackdk.4.3-allow-sync-with-rmt @@ -0,0 +1,2 @@ +- Introduced new API to update the products page metadata +- Extracted additional authentication information needed for PAYG diff --git a/java/spacewalk-java.changes.mackdk.4.3-fix-null-credentials-handling b/java/spacewalk-java.changes.mackdk.4.3-fix-null-credentials-handling new file mode 100644 index 000000000000..159d0bb4da3f --- /dev/null +++ b/java/spacewalk-java.changes.mackdk.4.3-fix-null-credentials-handling @@ -0,0 +1 @@ +- Fixed handling of null credentials in RMT credentials check diff --git a/java/spacewalk-java.changes.mackdk.4.3-integrate-payg-check b/java/spacewalk-java.changes.mackdk.4.3-integrate-payg-check new file mode 100644 index 000000000000..77bf9da21353 --- /dev/null +++ b/java/spacewalk-java.changes.mackdk.4.3-integrate-payg-check @@ -0,0 +1 @@ +- Integrate instance-flavor-check to detect if the instance is PAYG diff --git a/java/spacewalk-java.changes.mackdk.count-suma-tools-only b/java/spacewalk-java.changes.mackdk.count-suma-tools-only new file mode 100644 index 000000000000..4d1fd9e6fa81 --- /dev/null +++ b/java/spacewalk-java.changes.mackdk.count-suma-tools-only @@ -0,0 +1 @@ +- Added rule to count only servers with SUSE Manager Tools as managed clients diff --git a/java/spacewalk-java.changes.mackdk.payg-part1 b/java/spacewalk-java.changes.mackdk.payg-part1 new file mode 100644 index 000000000000..f078ba669efc --- /dev/null +++ b/java/spacewalk-java.changes.mackdk.payg-part1 @@ -0,0 +1 @@ +- Added taskomatic job to compute and store billing dimensions for PAYG diff --git a/java/spacewalk-java.changes.mackdk.taskomatic-do-not-hide-scheduling-errors b/java/spacewalk-java.changes.mackdk.taskomatic-do-not-hide-scheduling-errors new file mode 100644 index 000000000000..ad0e0318217c --- /dev/null +++ b/java/spacewalk-java.changes.mackdk.taskomatic-do-not-hide-scheduling-errors @@ -0,0 +1 @@ +- Do not ignore scheduling errors in Taskomatic diff --git a/java/spacewalk-java.changes.mbussolotto.parse_null b/java/spacewalk-java.changes.mbussolotto.parse_null new file mode 100644 index 000000000000..6e9a1cd25822 --- /dev/null +++ b/java/spacewalk-java.changes.mbussolotto.parse_null @@ -0,0 +1 @@ +- parse virtual-host-gatherer null value diff --git a/java/spacewalk-java.changes.mc.Manager-4.3-check-csp-adapter-operating-state b/java/spacewalk-java.changes.mc.Manager-4.3-check-csp-adapter-operating-state new file mode 100644 index 000000000000..872ecb684d3b --- /dev/null +++ b/java/spacewalk-java.changes.mc.Manager-4.3-check-csp-adapter-operating-state @@ -0,0 +1 @@ +- check csp billing adapter status diff --git a/java/spacewalk-java.changes.mc.Manager-4.3-fix-source-rpm-sql-query b/java/spacewalk-java.changes.mc.Manager-4.3-fix-source-rpm-sql-query new file mode 100644 index 000000000000..062b795d2755 --- /dev/null +++ b/java/spacewalk-java.changes.mc.Manager-4.3-fix-source-rpm-sql-query @@ -0,0 +1 @@ +- fix syntax error in sql query for source package search diff --git a/java/spacewalk-java.changes.mc.Manager-4.3-improve-mailer-init b/java/spacewalk-java.changes.mc.Manager-4.3-improve-mailer-init new file mode 100644 index 000000000000..1da8de1a1fd1 --- /dev/null +++ b/java/spacewalk-java.changes.mc.Manager-4.3-improve-mailer-init @@ -0,0 +1 @@ +- catch exceptions and log a message when mailer setup failed (bsc#1213009) diff --git a/java/spacewalk-java.changes.mc.Manager-4.3-suma-payg-2-better-payg-error b/java/spacewalk-java.changes.mc.Manager-4.3-suma-payg-2-better-payg-error new file mode 100644 index 000000000000..e97b5f8eeabc --- /dev/null +++ b/java/spacewalk-java.changes.mc.Manager-4.3-suma-payg-2-better-payg-error @@ -0,0 +1 @@ +- improve error message when instance-flavor-check tool is not installed diff --git a/java/spacewalk-java.changes.mc.Manager-4.3-suma-payg-billing-adapter-checks b/java/spacewalk-java.changes.mc.Manager-4.3-suma-payg-billing-adapter-checks new file mode 100644 index 000000000000..efb1e307bf6d --- /dev/null +++ b/java/spacewalk-java.changes.mc.Manager-4.3-suma-payg-billing-adapter-checks @@ -0,0 +1 @@ +- add compliance checks when running as PAYG diff --git a/java/spacewalk-java.changes.mc.fix-lib-logging b/java/spacewalk-java.changes.mc.fix-lib-logging new file mode 100644 index 000000000000..25aba61ea77d --- /dev/null +++ b/java/spacewalk-java.changes.mc.fix-lib-logging @@ -0,0 +1 @@ +- fix logging of libraries using apache-commons-logging diff --git a/java/spacewalk-java.changes.mcalmer.Manager-4.3-suma-payg-2-fix-refresh b/java/spacewalk-java.changes.mcalmer.Manager-4.3-suma-payg-2-fix-refresh new file mode 100644 index 000000000000..5519858eae2a --- /dev/null +++ b/java/spacewalk-java.changes.mcalmer.Manager-4.3-suma-payg-2-fix-refresh @@ -0,0 +1 @@ +- fix auto product refresh in case of SUSE Manager PAYG Server diff --git a/java/spacewalk-java.changes.mcalmer.invalidate-payg-credentials-after-instance-is-unavailable b/java/spacewalk-java.changes.mcalmer.invalidate-payg-credentials-after-instance-is-unavailable new file mode 100644 index 000000000000..b3047fd9010e --- /dev/null +++ b/java/spacewalk-java.changes.mcalmer.invalidate-payg-credentials-after-instance-is-unavailable @@ -0,0 +1 @@ +- invalidate PAYG client credentials after repeated connection failure (bsc#1213445) diff --git a/java/spacewalk-java.changes.mcalmer.payg-part1 b/java/spacewalk-java.changes.mcalmer.payg-part1 new file mode 100644 index 000000000000..56225334512e --- /dev/null +++ b/java/spacewalk-java.changes.mcalmer.payg-part1 @@ -0,0 +1,3 @@ +- Detect a Cloud PAYG instance and connect it to the RMT infrastructure +- Access SUSE Manager Proxy repositories from cloud rmt infrastructure +- restrict registration on pure PAYG Server diff --git a/java/spacewalk-java.changes.mcalmer.rhui-via-payg b/java/spacewalk-java.changes.mcalmer.rhui-via-payg new file mode 100644 index 000000000000..9ded2f3e0e3c --- /dev/null +++ b/java/spacewalk-java.changes.mcalmer.rhui-via-payg @@ -0,0 +1 @@ +- add RHUI support to Pay-as-you-go connection feature diff --git a/java/spacewalk-java.changes.mikeletux.Manager-4.3-suma-payg-avoid-migrations b/java/spacewalk-java.changes.mikeletux.Manager-4.3-suma-payg-avoid-migrations new file mode 100644 index 000000000000..6f39790b057e --- /dev/null +++ b/java/spacewalk-java.changes.mikeletux.Manager-4.3-suma-payg-avoid-migrations @@ -0,0 +1 @@ +- Restrict product migrations for PAYG diff --git a/java/spacewalk-java.changes.mikeletux.Manager-4.3-suma-payg-scc-fw-warning b/java/spacewalk-java.changes.mikeletux.Manager-4.3-suma-payg-scc-fw-warning new file mode 100644 index 000000000000..61547e3c5f79 --- /dev/null +++ b/java/spacewalk-java.changes.mikeletux.Manager-4.3-suma-payg-scc-fw-warning @@ -0,0 +1 @@ +- Add warning message in login UI for PAYG with SCC credentials and no forward registration. diff --git a/java/spacewalk-java.changes.mikeletux.restrict-cloning b/java/spacewalk-java.changes.mikeletux.restrict-cloning new file mode 100644 index 000000000000..0e10d2455724 --- /dev/null +++ b/java/spacewalk-java.changes.mikeletux.restrict-cloning @@ -0,0 +1 @@ +- Restrict cloning channels under different product channels for PAYG diff --git a/java/spacewalk-java.changes.mikeletux.send-data-scc b/java/spacewalk-java.changes.mikeletux.send-data-scc new file mode 100644 index 000000000000..8236bf86db40 --- /dev/null +++ b/java/spacewalk-java.changes.mikeletux.send-data-scc @@ -0,0 +1 @@ +- Avoid sending data to SCC about PAYG instances diff --git a/java/spacewalk-java.changes.nadvornik.channel_access b/java/spacewalk-java.changes.nadvornik.channel_access new file mode 100644 index 000000000000..dc3ac6b41155 --- /dev/null +++ b/java/spacewalk-java.changes.nadvornik.channel_access @@ -0,0 +1 @@ +- Optimize org channel accessibility query (bsc#1211874) diff --git a/java/spacewalk-java.changes.nadvornik.ubuntu_errata_opt b/java/spacewalk-java.changes.nadvornik.ubuntu_errata_opt new file mode 100644 index 000000000000..efdc09257331 --- /dev/null +++ b/java/spacewalk-java.changes.nadvornik.ubuntu_errata_opt @@ -0,0 +1 @@ +- Optimize memory usage in UbuntuErrataManager diff --git a/java/spacewalk-java.changes.oholecek.saltboot_pillars b/java/spacewalk-java.changes.oholecek.saltboot_pillars new file mode 100644 index 000000000000..17fecb186b5a --- /dev/null +++ b/java/spacewalk-java.changes.oholecek.saltboot_pillars @@ -0,0 +1,3 @@ +- Add saltboot redeploy and repartition based on pillars + (jsc#SUMA-158) +- Add system pillar API access {get|set}Pillar diff --git a/java/spacewalk-java.changes.parlt.set-package-refresh-scheduler b/java/spacewalk-java.changes.parlt.set-package-refresh-scheduler new file mode 100644 index 000000000000..82c5b6fc8d6f --- /dev/null +++ b/java/spacewalk-java.changes.parlt.set-package-refresh-scheduler @@ -0,0 +1,2 @@ +- Change default scheduler from (none) to (system) +- Set user for package list refresh action if possible diff --git a/java/spacewalk-java.changes.vzhestkov.extend-listErrataNamesForServers-for-salt-bundle b/java/spacewalk-java.changes.vzhestkov.extend-listErrataNamesForServers-for-salt-bundle new file mode 100644 index 000000000000..f5ed443fc3b5 --- /dev/null +++ b/java/spacewalk-java.changes.vzhestkov.extend-listErrataNamesForServers-for-salt-bundle @@ -0,0 +1,2 @@ +- Consider venv-salt-minion package update as salt update + to prevent backtraces on upgrading salt with itself (bsc#1211884) diff --git a/java/spacewalk-java.changes.welder.bsc1213288 b/java/spacewalk-java.changes.welder.bsc1213288 new file mode 100644 index 000000000000..93bf3d0e62e8 --- /dev/null +++ b/java/spacewalk-java.changes.welder.bsc1213288 @@ -0,0 +1 @@ +- Fix processing of pkg.purged results (bsc#1213288) diff --git a/java/spacewalk-java.changes.welder.bsc1213716 b/java/spacewalk-java.changes.welder.bsc1213716 new file mode 100644 index 000000000000..61f5e20acc9f --- /dev/null +++ b/java/spacewalk-java.changes.welder.bsc1213716 @@ -0,0 +1 @@ +- Fix debian Packages file generation (bsc#1213716) diff --git a/java/spacewalk-java.changes.welder.bsc1214316 b/java/spacewalk-java.changes.welder.bsc1214316 new file mode 100644 index 000000000000..bc6284389076 --- /dev/null +++ b/java/spacewalk-java.changes.welder.bsc1214316 @@ -0,0 +1 @@ +- Fix Most Critical Systems list (bsc#1214316) diff --git a/java/spacewalk-java.changes.welder.fix-npe-auth-empty-body b/java/spacewalk-java.changes.welder.fix-npe-auth-empty-body new file mode 100644 index 000000000000..bd3032ce4daf --- /dev/null +++ b/java/spacewalk-java.changes.welder.fix-npe-auth-empty-body @@ -0,0 +1 @@ +- Fix NPE in auth endpoint when an empty body is provided diff --git a/java/spacewalk-java.changes.welder.fix-taskomatic-blocking b/java/spacewalk-java.changes.welder.fix-taskomatic-blocking new file mode 100644 index 000000000000..02faaf0a58c5 --- /dev/null +++ b/java/spacewalk-java.changes.welder.fix-taskomatic-blocking @@ -0,0 +1 @@ +- Fix action executor to prevent blocking Taskomatic for actions that are already finished (bsc#1214121) diff --git a/java/spacewalk-java.changes.witek.update_monitoring_added b/java/spacewalk-java.changes.witek.update_monitoring_added new file mode 100644 index 000000000000..80f5b5551608 --- /dev/null +++ b/java/spacewalk-java.changes.witek.update_monitoring_added @@ -0,0 +1 @@ +- Extend success message after adding monitoring property (bsc#1212168) diff --git a/java/spacewalk-java.spec b/java/spacewalk-java.spec index 7d7ae6eb5224..7f5a3544dbcd 100644 --- a/java/spacewalk-java.spec +++ b/java/spacewalk-java.spec @@ -59,7 +59,7 @@ Name: spacewalk-java Summary: Java web application files for Spacewalk License: GPL-2.0-only Group: Applications/Internet -Version: 4.4.17 +Version: 4.4.18 Release: 1 URL: https://github.com/uyuni-project/uyuni Source0: https://github.com/uyuni-project/uyuni/archive/%{name}-%{version}-1.tar.gz @@ -119,6 +119,7 @@ BuildRequires: jsch BuildRequires: jta BuildRequires: libxml2 BuildRequires: log4j +BuildRequires: log4j-jcl BuildRequires: log4j-slf4j BuildRequires: netty BuildRequires: objectweb-asm >= 9.2 @@ -206,6 +207,7 @@ Requires: jpa-api Requires: jta Requires: libsolv-tools Requires: log4j +Requires: log4j-jcl Requires: log4j-slf4j Requires: mgr-libmod Requires: netty @@ -363,6 +365,7 @@ Requires: jcommon Requires: jpa-api Requires: jsch Requires: log4j +Requires: log4j-jcl Requires: quartz Requires: simple-core Requires: spacewalk-java-config diff --git a/java/tito.props b/java/tito.props index e6da4046023a..879bedb0e576 100644 --- a/java/tito.props +++ b/java/tito.props @@ -5,5 +5,5 @@ salt-netapi-client=0.20 salt-netapi-client=0.20 [conf/rhn_java.conf] -java.min_schema_version=4.4.5 +java.min_schema_version=4.4.7 java.min_report_schema_version=4.3.5 diff --git a/proxy/proxy/spacewalk-proxy.changes.oholecek.fix-wsgi-pkgname b/proxy/proxy/spacewalk-proxy.changes.oholecek.fix-wsgi-pkgname new file mode 100644 index 000000000000..0f8007040c5a --- /dev/null +++ b/proxy/proxy/spacewalk-proxy.changes.oholecek.fix-wsgi-pkgname @@ -0,0 +1 @@ +- Use new apache wsgi mod package name diff --git a/proxy/proxy/spacewalk-proxy.spec b/proxy/proxy/spacewalk-proxy.spec index 8ec36449b1c9..4a495e8cf5c3 100644 --- a/proxy/proxy/spacewalk-proxy.spec +++ b/proxy/proxy/spacewalk-proxy.spec @@ -84,7 +84,7 @@ Group: Applications/Internet Requires: httpd Requires: spacewalk-proxy-package-manager %if 0%{?suse_version} -Requires: apache2-mod_wsgi-python3 +Requires: apache2-mod_wsgi Requires: apache2-prefork %else Requires: mod_ssl @@ -127,7 +127,7 @@ Requires(pre): uyuni-base-common BuildRequires: uyuni-base-common %if 0%{?suse_version} BuildRequires: apache2 -Requires: apache2-mod_wsgi-python3 +Requires: apache2-mod_wsgi %else BuildRequires: httpd Requires: mod_ssl diff --git a/client/debian/apt-spacewalk/LICENSE b/python/billingdataservice/LICENSE similarity index 100% rename from client/debian/apt-spacewalk/LICENSE rename to python/billingdataservice/LICENSE diff --git a/python/billingdataservice/billing-data-service b/python/billingdataservice/billing-data-service new file mode 100644 index 000000000000..e95928f95bfb --- /dev/null +++ b/python/billingdataservice/billing-data-service @@ -0,0 +1,17 @@ +#!/bin/bash + +# +# start script +# + +pushd $(dirname $0) + +SYSCONFIG=/etc/sysconfig/billing-data-service +test -f $SYSCONFIG && . $SYSCONFIG + +OPTIONS=${ARGS} +export FLASK_APP=billingdataservice.py +export WERKZEUG_RUN_MAIN="true" + +/usr/bin/flask run --host=${LISTEN} --port=${PORT} ${OPTIONS} + diff --git a/python/billingdataservice/billing-data-service.changes b/python/billingdataservice/billing-data-service.changes new file mode 100644 index 000000000000..cc733b5d6bd5 --- /dev/null +++ b/python/billingdataservice/billing-data-service.changes @@ -0,0 +1,5 @@ +------------------------------------------------------------------- +Tue May 09 13:43:10 CEST 2023 - mc@suse.de + +- version 0.1-1 + * initial release diff --git a/python/billingdataservice/billing-data-service.changes.mc.Manager-4.3-billing-adapter-checks-2 b/python/billingdataservice/billing-data-service.changes.mc.Manager-4.3-billing-adapter-checks-2 new file mode 100644 index 000000000000..04abcb74e40e --- /dev/null +++ b/python/billingdataservice/billing-data-service.changes.mc.Manager-4.3-billing-adapter-checks-2 @@ -0,0 +1 @@ +- require csp-billing-adapter service diff --git a/python/billingdataservice/billing-data-service.changes.mc.Manager-4.3-suma-payg-add-debs-to-billing-service b/python/billingdataservice/billing-data-service.changes.mc.Manager-4.3-suma-payg-add-debs-to-billing-service new file mode 100644 index 000000000000..ca8eb167314d --- /dev/null +++ b/python/billingdataservice/billing-data-service.changes.mc.Manager-4.3-suma-payg-add-debs-to-billing-service @@ -0,0 +1 @@ +- add required dependencies to package and service diff --git a/python/billingdataservice/billing-data-service.changes.mc.Manager-4.3-suma-payg-change-metric-api b/python/billingdataservice/billing-data-service.changes.mc.Manager-4.3-suma-payg-change-metric-api new file mode 100644 index 000000000000..e34c59b5719f --- /dev/null +++ b/python/billingdataservice/billing-data-service.changes.mc.Manager-4.3-suma-payg-change-metric-api @@ -0,0 +1 @@ +- change billing api datastructure diff --git a/python/billingdataservice/billing-data-service.changes.mcalmer.payg-part1 b/python/billingdataservice/billing-data-service.changes.mcalmer.payg-part1 new file mode 100644 index 000000000000..434fcf5c2629 --- /dev/null +++ b/python/billingdataservice/billing-data-service.changes.mcalmer.payg-part1 @@ -0,0 +1 @@ +- show data for managed systems and monitored systems diff --git a/python/billingdataservice/billing-data-service.service b/python/billingdataservice/billing-data-service.service new file mode 100644 index 000000000000..5f95e9e362e9 --- /dev/null +++ b/python/billingdataservice/billing-data-service.service @@ -0,0 +1,14 @@ +[Unit] +Description=SUSE Manager PAYG billing data service +After=local-fs.target network.target postgresql.service +Before=tomcat.service taskomatic.service +Requires=postgresql.service + +[Service] +Type=simple +ExecStart=/srv/billing-data-service/billing-data-service +Restart=on-failure + +[Install] +WantedBy=multi-user.target + diff --git a/python/billingdataservice/billing-data-service.spec b/python/billingdataservice/billing-data-service.spec new file mode 100644 index 000000000000..f9551eb6560d --- /dev/null +++ b/python/billingdataservice/billing-data-service.spec @@ -0,0 +1,87 @@ +# +# spec file for package billing-data-service +# +# Copyright (c) 2023 SUSE LLC +# +# All modifications and additions to the file contributed by third parties +# remain the property of their copyright owners, unless otherwise agreed +# upon. The license for this file, and modifications and additions to the +# file, is the same license as for the pristine package itself (unless the +# license for the pristine package is not an Open Source License, in which +# case the license is the MIT License). An "Open Source License" is a +# license that conforms to the Open Source Definition (Version 1.9) +# published by the Open Source Initiative. + +# Please submit bugfixes or comments via https://bugs.opensuse.org/ +# + + +Name: billing-data-service +Version: 0.1 +Release: 1 +Summary: Server to request billing information +License: GPL-2.0-only +Group: System/Daemons +URL: https://github.com/uyuni-project/uyuni +Source: %{name}-%{version}.tar.gz +BuildArch: noarch +BuildRoot: %{_tmppath}/%{name}-%{version}-build +Requires: apache2 +Requires: csp-billing-adapter-service +Requires: python3-Flask +Requires: spacewalk-backend-sql +Requires: spacewalk-taskomatic +Requires: tomcat + +%description +Server to provide PAYG billing information in public clouds + +%prep +%setup -q + +%build + +%install +mkdir -p %{buildroot}%{_sysconfdir}/sysconfig +mkdir -p %{buildroot}%{_sbindir} +mkdir -p %{buildroot}%{_unitdir} +mkdir -p %{buildroot}%{_fillupdir} +mkdir -p %{buildroot}/srv/billing-data-service + +install -m 0755 billing-data-service %{buildroot}/srv/billing-data-service/billing-data-service +install -m 0644 billingdataservice.py %{buildroot}/srv/billing-data-service/billingdataservice.py +install -m 0644 billing-data-service.sysconfig %{buildroot}%{_fillupdir}/sysconfig.%{name} +install -m 0644 billing-data-service.service %{buildroot}%{_unitdir}/billing-data-service.service +ln -sf service %{buildroot}%{_sbindir}/rcbilling-data-service + +# when you shutdown billing-data-service, systemd shutdown also these +SYSTEMD_OVERRIDE_SERVICES="tomcat.service apache2.service taskomatic.service" +for service in ${SYSTEMD_OVERRIDE_SERVICES}; do + mkdir -p %{buildroot}%{_unitdir}/${service}.d + install -m 0644 payg-service-override.conf %{buildroot}%{_unitdir}/${service}.d/payg-override.conf +done + +%pre +%service_add_pre billing-data-service.service + +%post +%fillup_only +%service_add_post billing-data-service.service + +%preun +%service_del_preun billing-data-service.service + +%postun +%service_del_postun billing-data-service.service + +%files +%license LICENSE +%dir %{_sysconfdir}/sysconfig +%dir /srv/billing-data-service +%{_sbindir}/rcbilling-data-service +%attr(0755, root, root) /srv/billing-data-service/billing-data-service +/srv/billing-data-service/billingdataservice.py +%{_unitdir}/* +%{_fillupdir}/sysconfig.%{name} + +%changelog diff --git a/python/billingdataservice/billing-data-service.sysconfig b/python/billingdataservice/billing-data-service.sysconfig new file mode 100644 index 000000000000..f6b7c311bc28 --- /dev/null +++ b/python/billingdataservice/billing-data-service.sysconfig @@ -0,0 +1,31 @@ +## Path: System/Services +## Description: The SUSE Manager Billing Data Service +## Type: string() +## Default: "127.0.0.1" +## ServiceRestart: billing-data-service +# +# IP to listen on +# +LISTEN="127.0.0.1" + +## Path: System/Services +## Description: The SUSE Manager Billing Data Service +## Type: string() +## Default: "18888" +## ServiceRestart: billing-data-service +# +# Port to listen on +# +PORT="18888" + +## Path: System/Services +## Description: The SUSE Manager Billing Data Service +## Type: string() +## Default: "" +## ServiceRestart: billing-data-service +# +# Additional arguments for the billing-data-service +# Please call: flask run --help +# to get a full list of possible options. +# +ARGS="" diff --git a/python/billingdataservice/billingdataservice.py b/python/billingdataservice/billingdataservice.py new file mode 100644 index 000000000000..e897dd9af38a --- /dev/null +++ b/python/billingdataservice/billingdataservice.py @@ -0,0 +1,53 @@ +# +# Copyright (c) 2023 SUSE LLC +# +# This software is licensed to you under the GNU General Public License, +# version 2 (GPLv2). There is NO WARRANTY for this software, express or +# implied, including the implied warranties of MERCHANTABILITY or FITNESS +# FOR A PARTICULAR PURPOSE. You should have received a copy of GPLv2 +# along with this software; if not, see +# http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt. + +import os +import json +from flask import Flask, abort +from spacewalk.server import rhnSQL +from spacewalk.common.rhnConfig import initCFG + +# disable the development warning banner for newer Flask versions +# where maybe the environment variable WERKZEUG_RUN_MAIN does not +# work anymore +# +#from flask import cli +#cli.show_server_banner = lambda *_: None + +app = Flask(__name__) + +if os.environ.get("TESTING", "0") != "1": + initCFG('server.susemanager') + rhnSQL.initDB() + +@app.route("/") +def index(): + result = rhnSQL.fetchone_dict(rhnSQL.Statement("select '1' || '2' || '3' as testing from dual")) + if result: + return "online" + abort(503) #Service Unavailable + + +_query_metering_data = rhnSQL.Statement(""" + SELECT r.dimension usage_metric, r.count + FROM susePaygDimensionResult r + WHERE r.computation_id = (SELECT c.id + FROM susePaygDimensionComputation c + WHERE c.success = true + ORDER BY c.timestamp DESC + LIMIT 1) +""") + +@app.route("/metering") +def metering(): + h = rhnSQL.prepare(_query_metering_data) + h.execute() + result = h.fetchall_dict() or [] + return json.dumps({ "usage_metrics" : result}) diff --git a/python/billingdataservice/payg-service-override.conf b/python/billingdataservice/payg-service-override.conf new file mode 100644 index 000000000000..7ddefbd5d7a3 --- /dev/null +++ b/python/billingdataservice/payg-service-override.conf @@ -0,0 +1,3 @@ +[Unit] +Requires=billing-data-service.service +Requires=csp-billing-adapter.service diff --git a/python/billingdataservice/pytest_cleanup.sh b/python/billingdataservice/pytest_cleanup.sh new file mode 100755 index 000000000000..43d086e7e173 --- /dev/null +++ b/python/billingdataservice/pytest_cleanup.sh @@ -0,0 +1,8 @@ +#! /bin/bash +# +rm -f rhn +rm -f uyuni +rm -f spacewalk +rm -rf venv +rm -rf .pytest_cache +rm -rf __pycache__ diff --git a/python/billingdataservice/pytest_setup.sh b/python/billingdataservice/pytest_setup.sh new file mode 100755 index 000000000000..f9ae6a63175f --- /dev/null +++ b/python/billingdataservice/pytest_setup.sh @@ -0,0 +1,7 @@ +#! /bin/bash +python3 -m venv venv +venv/bin/pip install flask pytest pyOpenSSL +ln -s ../spacewalk . +ln -s ../uyuni . +ln -s ../rhn . +echo "venv/bin/python3 -m pytest -s tests/" diff --git a/python/billingdataservice/tests/test_billing.py b/python/billingdataservice/tests/test_billing.py new file mode 100644 index 000000000000..b659234d38ff --- /dev/null +++ b/python/billingdataservice/tests/test_billing.py @@ -0,0 +1,53 @@ +from unittest.mock import MagicMock, call, patch + +import json +import pytest + +import os +os.environ['TESTING'] = "1" + +import billingdataservice + +@patch("billingdataservice.initCFG", MagicMock()) +@patch("billingdataservice.rhnSQL.initDB", MagicMock()) +@patch("billingdataservice.rhnSQL.Statement", MagicMock()) +@pytest.fixture +def client(): + testdata1 = [{"usage_metric": "managed_systems", "count": "10"}, {"usage_metric": "monitoring", "count": "5"}] + client = billingdataservice.app.test_client() + with patch( + "billingdataservice.rhnSQL.fetchone_dict", + MagicMock(side_effect=["123", None]) + ): + yield client + +def test_index(client): + """Call index page.""" + + rv = client.get('/') + assert b'online' in rv.data + + rv = client.get('/') + assert rv.status_code == 503 + +def test_metering(client): + """Call metering API""" + mock_fetchall_dict = MagicMock(name="mock2", return_value=[{"usage_metric": "managed_systems", "count": "10"}, {"usage_metric": "monitoring", "count": "5"}]) + mock_cursor = MagicMock(name="mock1") + mock_cursor.fetchall_dict = mock_fetchall_dict + + with patch("billingdataservice.rhnSQL.prepare", MagicMock(return_value=mock_cursor)): + rv = client.get('/metering') + assert rv.status_code == 200 + r = json.loads(rv.data) + assert "usage_metrics" in r + for dim in r["usage_metrics"]: + assert "usage_metric" in dim + if dim["usage_metric"] == "managed_systems": + assert dim["count"] == "10" + elif dim["usage_metric"] == "monitoring": + assert dim["count"] == "5" + else: + assert False + + diff --git a/python/spacewalk/common/rhnConfig.py b/python/spacewalk/common/rhnConfig.py index 0fce7040b747..a05b4d452fda 100644 --- a/python/spacewalk/common/rhnConfig.py +++ b/python/spacewalk/common/rhnConfig.py @@ -100,6 +100,9 @@ def is_initialized(self): def modifiedYN(self): """returns last modified time diff if rhn.conf has changed.""" + if not os.path.exists(self.filename): + return 0 + try: si = os.stat(self.filename) except OSError: @@ -142,7 +145,8 @@ def parse(self): # Now that we parsed the defaults, we parse the multi-key # self.filename configuration (ie, /etc/rhn/rhn.conf) - self.__parsedConfig = parse_file(self.filename) + if os.path.exists(self.filename): + self.__parsedConfig = parse_file(self.filename) # And now generate and cache the current component self.__merge() diff --git a/python/spacewalk/common/rhnLog.py b/python/spacewalk/common/rhnLog.py index 6d189a8c36f1..d3ff21ea5ea3 100644 --- a/python/spacewalk/common/rhnLog.py +++ b/python/spacewalk/common/rhnLog.py @@ -100,7 +100,7 @@ def initLOG(log_file="stderr", level=0, component=""): # fetch uid, gid so we can do a "chown ..." with cfg_component(component=None) as CFG: - apache_uid, apache_gid = getUidGid(CFG.httpd_user, CFG.httpd_group) + apache_uid, apache_gid = getUidGid(CFG.get('httpd_user', 'wwwrun'), CFG.get('httpd_group', 'www')) try: os.makedirs(log_path) @@ -187,7 +187,7 @@ def __init__(self, log_file, level, component): set_close_on_exec(self.fd) if newfileYN: with cfg_component(component=None) as CFG: - apache_uid, apache_gid = getUidGid(CFG.httpd_user, CFG.httpd_group) + apache_uid, apache_gid = getUidGid(CFG.get('httpd_user', 'wwwrun'), CFG.get('httpd_group', 'www')) os.chown(self.file, apache_uid, apache_gid) os.chmod(self.file, int('0660', 8)) except: diff --git a/python/spacewalk/po/aln.po b/python/spacewalk/po/aln.po index b33c85492807..61bf3263ec56 100644 --- a/python/spacewalk/po/aln.po +++ b/python/spacewalk/po/aln.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Spacewalk\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-30 15:17+0200\n" +"POT-Creation-Date: 2023-08-11 15:28+0200\n" "PO-Revision-Date: 2011-03-04 16:08+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/python/spacewalk/po/ar.po b/python/spacewalk/po/ar.po index bbf3158c6250..39858472d97f 100644 --- a/python/spacewalk/po/ar.po +++ b/python/spacewalk/po/ar.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: Spacewalk\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-30 15:17+0200\n" +"POT-Creation-Date: 2023-08-11 15:28+0200\n" "PO-Revision-Date: 2011-03-04 16:08+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Arabic \n" diff --git a/python/spacewalk/po/as.po b/python/spacewalk/po/as.po index 9ba1ad6c4cd5..892781f87aa5 100644 --- a/python/spacewalk/po/as.po +++ b/python/spacewalk/po/as.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Spacewalk\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-30 15:17+0200\n" +"POT-Creation-Date: 2023-08-11 15:28+0200\n" "PO-Revision-Date: 2011-03-04 16:08+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Assamese (http://www.transifex.com/projects/p/fedora/language/" diff --git a/python/spacewalk/po/ast.po b/python/spacewalk/po/ast.po index 2e76643a6475..3e6a1d351746 100644 --- a/python/spacewalk/po/ast.po +++ b/python/spacewalk/po/ast.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Spacewalk\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-30 15:17+0200\n" +"POT-Creation-Date: 2023-08-11 15:28+0200\n" "PO-Revision-Date: 2011-03-04 16:08+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Asturian (http://www.transifex.com/projects/p/fedora/language/" diff --git a/python/spacewalk/po/bal.po b/python/spacewalk/po/bal.po index e58600603ac3..70281662134d 100644 --- a/python/spacewalk/po/bal.po +++ b/python/spacewalk/po/bal.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Spacewalk\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-30 15:17+0200\n" +"POT-Creation-Date: 2023-08-11 15:28+0200\n" "PO-Revision-Date: 2011-03-04 16:08+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Balochi \n" diff --git a/python/spacewalk/po/bg.po b/python/spacewalk/po/bg.po index 7d9887b60710..7fdd6194c20c 100644 --- a/python/spacewalk/po/bg.po +++ b/python/spacewalk/po/bg.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Spacewalk\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-30 15:17+0200\n" +"POT-Creation-Date: 2023-08-11 15:28+0200\n" "PO-Revision-Date: 2011-03-04 16:08+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Bulgarian \n" diff --git a/python/spacewalk/po/bn.po b/python/spacewalk/po/bn.po index 598a377147ef..4f6cccabf89c 100644 --- a/python/spacewalk/po/bn.po +++ b/python/spacewalk/po/bn.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: Spacewalk\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-30 15:17+0200\n" +"POT-Creation-Date: 2023-08-11 15:28+0200\n" "PO-Revision-Date: 2018-03-16 10:53+0000\n" "Last-Translator: Copied by Zanata \n" "Language-Team: Bengali \n" diff --git a/python/spacewalk/po/bn_BD.po b/python/spacewalk/po/bn_BD.po index 12bb91b4c5ac..26854412e517 100644 --- a/python/spacewalk/po/bn_BD.po +++ b/python/spacewalk/po/bn_BD.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Spacewalk\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-30 15:17+0200\n" +"POT-Creation-Date: 2023-08-11 15:28+0200\n" "PO-Revision-Date: 2011-03-04 16:08+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/python/spacewalk/po/bn_IN.po b/python/spacewalk/po/bn_IN.po index ea5a7650349e..4eb501b5922f 100644 --- a/python/spacewalk/po/bn_IN.po +++ b/python/spacewalk/po/bn_IN.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: Spacewalk\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-30 15:17+0200\n" +"POT-Creation-Date: 2023-08-11 15:28+0200\n" "PO-Revision-Date: 2011-03-04 16:08+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Bengali (India) \n" diff --git a/python/spacewalk/po/bs.po b/python/spacewalk/po/bs.po index 4b2804a3ad8b..0b282ec9ba7e 100644 --- a/python/spacewalk/po/bs.po +++ b/python/spacewalk/po/bs.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Spacewalk\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-30 15:17+0200\n" +"POT-Creation-Date: 2023-08-11 15:28+0200\n" "PO-Revision-Date: 2011-03-04 16:08+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Bosnian (http://www.transifex.com/projects/p/fedora/language/" diff --git a/python/spacewalk/po/ca.po b/python/spacewalk/po/ca.po index 1685c1e6ef93..523d091e4476 100644 --- a/python/spacewalk/po/ca.po +++ b/python/spacewalk/po/ca.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: Spacewalk\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-30 15:17+0200\n" +"POT-Creation-Date: 2023-08-11 15:28+0200\n" "PO-Revision-Date: 2022-04-01 18:12+0000\n" "Last-Translator: David Medina \n" "Language-Team: Catalan \n" "Language-Team: Czech \n" diff --git a/python/spacewalk/po/da.po b/python/spacewalk/po/da.po index 6e44d23f0c4c..4546bae0172f 100644 --- a/python/spacewalk/po/da.po +++ b/python/spacewalk/po/da.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: Spacewalk\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-30 15:17+0200\n" +"POT-Creation-Date: 2023-08-11 15:28+0200\n" "PO-Revision-Date: 2011-03-04 16:08+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Danish \n" diff --git a/python/spacewalk/po/de.po b/python/spacewalk/po/de.po index a558917a3d82..4fb95c997a8f 100644 --- a/python/spacewalk/po/de.po +++ b/python/spacewalk/po/de.po @@ -14,7 +14,7 @@ msgid "" msgstr "" "Project-Id-Version: Spacewalk\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-30 15:17+0200\n" +"POT-Creation-Date: 2023-08-11 15:28+0200\n" "PO-Revision-Date: 2023-03-31 13:14+0000\n" "Last-Translator: Georg Mayer \n" "Language-Team: German \n" "Language-Team: LANGUAGE \n" diff --git a/python/spacewalk/po/el.po b/python/spacewalk/po/el.po index ef673f1ca045..01272e38f61b 100644 --- a/python/spacewalk/po/el.po +++ b/python/spacewalk/po/el.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Spacewalk\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-30 15:17+0200\n" +"POT-Creation-Date: 2023-08-11 15:28+0200\n" "PO-Revision-Date: 2011-03-04 16:08+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Greek \n" diff --git a/python/spacewalk/po/en.po b/python/spacewalk/po/en.po index 420eed0e1f1f..bf7c6520fba0 100644 --- a/python/spacewalk/po/en.po +++ b/python/spacewalk/po/en.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: RHN 2.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-30 15:17+0200\n" +"POT-Creation-Date: 2023-08-11 15:28+0200\n" "PO-Revision-Date: 2021-02-08 09:56+0000\n" "Last-Translator: Jens Maucher \n" "Language-Team: English \n" "Language-Team: Spanish \n" "Language-Team: Estonian (http://www.transifex.com/projects/p/fedora/language/" diff --git a/python/spacewalk/po/eu.po b/python/spacewalk/po/eu.po index 9d1c414aebdc..53a3174bc5f7 100644 --- a/python/spacewalk/po/eu.po +++ b/python/spacewalk/po/eu.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Spacewalk\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-30 15:17+0200\n" +"POT-Creation-Date: 2023-08-11 15:28+0200\n" "PO-Revision-Date: 2018-03-16 10:54+0000\n" "Last-Translator: Copied by Zanata \n" "Language-Team: Basque (http://www.transifex.com/projects/p/fedora/language/" diff --git a/python/spacewalk/po/fa.po b/python/spacewalk/po/fa.po index 4e315a27457e..fe6c7f026d45 100644 --- a/python/spacewalk/po/fa.po +++ b/python/spacewalk/po/fa.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Spacewalk\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-30 15:17+0200\n" +"POT-Creation-Date: 2023-08-11 15:28+0200\n" "PO-Revision-Date: 2020-07-28 12:34+0000\n" "Last-Translator: hayyan rostami \n" "Language-Team: Persian \n" "Language-Team: Finnish \n" "Language-Team: French \n" diff --git a/python/spacewalk/po/gu.po b/python/spacewalk/po/gu.po index 457e4a1662f0..536448b24d7b 100644 --- a/python/spacewalk/po/gu.po +++ b/python/spacewalk/po/gu.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Spacewalk\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-30 15:17+0200\n" +"POT-Creation-Date: 2023-08-11 15:28+0200\n" "PO-Revision-Date: 2011-03-04 16:08+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Gujarati \n" diff --git a/python/spacewalk/po/he.po b/python/spacewalk/po/he.po index e20e15a8feab..2224a0443044 100644 --- a/python/spacewalk/po/he.po +++ b/python/spacewalk/po/he.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Spacewalk\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-30 15:17+0200\n" +"POT-Creation-Date: 2023-08-11 15:28+0200\n" "PO-Revision-Date: 2011-03-04 16:08+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Hebrew \n" diff --git a/python/spacewalk/po/hi.po b/python/spacewalk/po/hi.po index fef46422aef7..c9e4ac8fb14d 100644 --- a/python/spacewalk/po/hi.po +++ b/python/spacewalk/po/hi.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Spacewalk\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-30 15:17+0200\n" +"POT-Creation-Date: 2023-08-11 15:28+0200\n" "PO-Revision-Date: 2011-03-04 16:08+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Hindi \n" diff --git a/python/spacewalk/po/hu.po b/python/spacewalk/po/hu.po index 893f56efb85f..95ac927b8c5c 100644 --- a/python/spacewalk/po/hu.po +++ b/python/spacewalk/po/hu.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: Spacewalk\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-30 15:17+0200\n" +"POT-Creation-Date: 2023-08-11 15:28+0200\n" "PO-Revision-Date: 2018-03-16 10:54+0000\n" "Last-Translator: Copied by Zanata \n" "Language-Team: Hungarian \n" diff --git a/python/spacewalk/po/id.po b/python/spacewalk/po/id.po index ca0ee1a0255f..0ca17e054e19 100644 --- a/python/spacewalk/po/id.po +++ b/python/spacewalk/po/id.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Spacewalk\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-30 15:17+0200\n" +"POT-Creation-Date: 2023-08-11 15:28+0200\n" "PO-Revision-Date: 2020-09-12 19:48+0000\n" "Last-Translator: Kukuh Syafaat \n" "Language-Team: Indonesian \n" "Language-Team: Icelandic (http://www.transifex.com/projects/p/fedora/" diff --git a/python/spacewalk/po/it.po b/python/spacewalk/po/it.po index aaa8a6578756..f3c8f729a6c8 100644 --- a/python/spacewalk/po/it.po +++ b/python/spacewalk/po/it.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: Spacewalk\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-30 15:17+0200\n" -"PO-Revision-Date: 2021-09-21 12:12+0000\n" -"Last-Translator: Francesco Esposito \n" +"POT-Creation-Date: 2023-08-11 15:28+0200\n" +"PO-Revision-Date: 2023-08-04 15:15+0000\n" +"Last-Translator: Michele Bussolotto \n" "Language-Team: Italian \n" "Language: it\n" @@ -21,7 +21,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 4.7.1\n" +"X-Generator: Weblate 4.9.1\n" #: ../server/apacheAuth.py:66 #, python-format @@ -57,11 +57,13 @@ msgid "" "While running '%s': caught\n" "%s : %s\n" msgstr "" +"Durante l'esecuzione '%s': catturato\n" +"%s : %s\n" #: ../server/apacheRequest.py:606 #, python-format msgid "Invalid URI %s" -msgstr "" +msgstr "URI Invalido %s" #: ../server/configFilesHandler.py:129 ../server/handlers/app/packages.py:192 #: ../server/handlers/xmlrpc/registration.py:217 diff --git a/python/spacewalk/po/ja.po b/python/spacewalk/po/ja.po index e39a62e881a6..6a2f97bf3816 100644 --- a/python/spacewalk/po/ja.po +++ b/python/spacewalk/po/ja.po @@ -15,7 +15,7 @@ msgid "" msgstr "" "Project-Id-Version: Spacewalk\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-30 15:17+0200\n" +"POT-Creation-Date: 2023-08-11 15:28+0200\n" "PO-Revision-Date: 2022-08-29 04:13+0000\n" "Last-Translator: Carina Hagl \n" "Language-Team: Japanese \n" "Language-Team: Kannada (http://www.transifex.com/projects/p/fedora/language/" diff --git a/python/spacewalk/po/ko.po b/python/spacewalk/po/ko.po index bd2b17c30440..106971b522dc 100644 --- a/python/spacewalk/po/ko.po +++ b/python/spacewalk/po/ko.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: Spacewalk\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-30 15:17+0200\n" +"POT-Creation-Date: 2023-08-11 15:28+0200\n" "PO-Revision-Date: 2021-03-31 12:58+0000\n" "Last-Translator: Seeun Lee \n" "Language-Team: Korean \n" "Language-Team: Lithuanian (http://www.transifex.com/projects/p/fedora/" diff --git a/python/spacewalk/po/mai.po b/python/spacewalk/po/mai.po index b772a6b388d2..7e8723e88778 100644 --- a/python/spacewalk/po/mai.po +++ b/python/spacewalk/po/mai.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Spacewalk\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-30 15:17+0200\n" +"POT-Creation-Date: 2023-08-11 15:28+0200\n" "PO-Revision-Date: 2011-03-04 16:08+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Maithili (http://www.transifex.com/projects/p/fedora/language/" diff --git a/python/spacewalk/po/mk.po b/python/spacewalk/po/mk.po index 4304a0af6f78..c81a83928e4a 100644 --- a/python/spacewalk/po/mk.po +++ b/python/spacewalk/po/mk.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-30 15:17+0200\n" +"POT-Creation-Date: 2023-08-11 15:28+0200\n" "PO-Revision-Date: 2023-05-29 06:14+0000\n" "Last-Translator: Kristijan Fremen Velkovski \n" "Language-Team: Macedonian \n" "Language-Team: Malayalam \n" diff --git a/python/spacewalk/po/mr.po b/python/spacewalk/po/mr.po index b615a8ddbd4c..9389e04e21da 100644 --- a/python/spacewalk/po/mr.po +++ b/python/spacewalk/po/mr.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Spacewalk\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-30 15:17+0200\n" +"POT-Creation-Date: 2023-08-11 15:28+0200\n" "PO-Revision-Date: 2011-03-04 16:08+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Marathi (http://www.transifex.com/projects/p/fedora/language/" diff --git a/python/spacewalk/po/nb.po b/python/spacewalk/po/nb.po index 7fd4b37e96bd..b08a109ec65f 100644 --- a/python/spacewalk/po/nb.po +++ b/python/spacewalk/po/nb.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Spacewalk\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-30 15:17+0200\n" +"POT-Creation-Date: 2023-08-11 15:28+0200\n" "PO-Revision-Date: 2011-03-04 16:08+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Norwegian Bokmål \n" diff --git a/python/spacewalk/po/nds.po b/python/spacewalk/po/nds.po index a88c358a5254..501583807eb0 100644 --- a/python/spacewalk/po/nds.po +++ b/python/spacewalk/po/nds.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Spacewalk\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-30 15:17+0200\n" +"POT-Creation-Date: 2023-08-11 15:28+0200\n" "PO-Revision-Date: 2011-03-04 16:08+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Low German \n" diff --git a/python/spacewalk/po/nl.po b/python/spacewalk/po/nl.po index 0fd7a19d84e4..9f5e37b8dffd 100644 --- a/python/spacewalk/po/nl.po +++ b/python/spacewalk/po/nl.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: Spacewalk\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-30 15:17+0200\n" +"POT-Creation-Date: 2023-08-11 15:28+0200\n" "PO-Revision-Date: 2011-03-04 16:08+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Dutch (http://www.transifex.com/projects/p/fedora/language/" diff --git a/python/spacewalk/po/nn.po b/python/spacewalk/po/nn.po index 78d6ce2f7dbc..d55cdd5fdf8f 100644 --- a/python/spacewalk/po/nn.po +++ b/python/spacewalk/po/nn.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Spacewalk\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-30 15:17+0200\n" +"POT-Creation-Date: 2023-08-11 15:28+0200\n" "PO-Revision-Date: 2011-03-04 16:08+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Norwegian Nynorsk \n" diff --git a/python/spacewalk/po/or.po b/python/spacewalk/po/or.po index 80cb6cb5a9fd..cef4fa6d45d0 100644 --- a/python/spacewalk/po/or.po +++ b/python/spacewalk/po/or.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Spacewalk\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-30 15:17+0200\n" +"POT-Creation-Date: 2023-08-11 15:28+0200\n" "PO-Revision-Date: 2011-03-04 16:08+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Oriya (http://www.transifex.com/projects/p/fedora/language/" diff --git a/python/spacewalk/po/pa.po b/python/spacewalk/po/pa.po index d66e73c43b98..0cc959340eff 100644 --- a/python/spacewalk/po/pa.po +++ b/python/spacewalk/po/pa.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: Spacewalk\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-30 15:17+0200\n" +"POT-Creation-Date: 2023-08-11 15:28+0200\n" "PO-Revision-Date: 2011-03-04 16:08+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Panjabi (Punjabi) \n" diff --git a/python/spacewalk/po/pl.po b/python/spacewalk/po/pl.po index 9fb086b9bfe8..c37e85bb9582 100644 --- a/python/spacewalk/po/pl.po +++ b/python/spacewalk/po/pl.po @@ -4,7 +4,7 @@ msgid "" msgstr "" "Project-Id-Version: Spacewalk\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-30 15:17+0200\n" +"POT-Creation-Date: 2023-08-11 15:28+0200\n" "PO-Revision-Date: 2018-03-16 04:50+0000\n" "Last-Translator: Piotr Drąg \n" "Language-Team: Polish\n" diff --git a/python/spacewalk/po/pt.po b/python/spacewalk/po/pt.po index c1bfff6886de..185289f8d18e 100644 --- a/python/spacewalk/po/pt.po +++ b/python/spacewalk/po/pt.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Spacewalk\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-30 15:17+0200\n" +"POT-Creation-Date: 2023-08-11 15:28+0200\n" "PO-Revision-Date: 2020-08-17 13:26+0000\n" "Last-Translator: Ricardo Mateus \n" "Language-Team: Portuguese \n" "Language-Team: Portuguese (Brazil) \n" "Language-Team: Romanian (http://www.transifex.com/projects/p/fedora/language/" diff --git a/python/spacewalk/po/ru.po b/python/spacewalk/po/ru.po index b3dd729c7102..c9ef9ef4ea5c 100644 --- a/python/spacewalk/po/ru.po +++ b/python/spacewalk/po/ru.po @@ -14,7 +14,7 @@ msgid "" msgstr "" "Project-Id-Version: Spacewalk\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-30 15:17+0200\n" +"POT-Creation-Date: 2023-08-11 15:28+0200\n" "PO-Revision-Date: 2018-03-16 10:54+0000\n" "Last-Translator: Copied by Zanata \n" "Language-Team: Russian \n" diff --git a/python/spacewalk/po/si.po b/python/spacewalk/po/si.po index c0e6ab59c651..6313cd5b9f0c 100644 --- a/python/spacewalk/po/si.po +++ b/python/spacewalk/po/si.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Spacewalk\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-30 15:17+0200\n" +"POT-Creation-Date: 2023-08-11 15:28+0200\n" "PO-Revision-Date: 2011-03-04 16:08+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Sinhala (http://www.transifex.com/projects/p/fedora/language/" diff --git a/python/spacewalk/po/sk.po b/python/spacewalk/po/sk.po index 7122284d87ef..b4762b3ffd34 100644 --- a/python/spacewalk/po/sk.po +++ b/python/spacewalk/po/sk.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Spacewalk\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-30 15:17+0200\n" +"POT-Creation-Date: 2023-08-11 15:28+0200\n" "PO-Revision-Date: 2022-08-11 16:13+0000\n" "Last-Translator: Ferdinand Galko \n" "Language-Team: Slovak \n" "Language-Team: LANGUAGE \n" diff --git a/python/spacewalk/po/spacewalk-backend-server.pot b/python/spacewalk/po/spacewalk-backend-server.pot index d8b16134a5c4..1148f7a0123e 100644 --- a/python/spacewalk/po/spacewalk-backend-server.pot +++ b/python/spacewalk/po/spacewalk-backend-server.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-30 15:17+0200\n" +"POT-Creation-Date: 2023-08-11 15:28+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/python/spacewalk/po/sq.po b/python/spacewalk/po/sq.po index 65ffaf0f3f79..87e2df0d37a9 100644 --- a/python/spacewalk/po/sq.po +++ b/python/spacewalk/po/sq.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Spacewalk\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-30 15:17+0200\n" +"POT-Creation-Date: 2023-08-11 15:28+0200\n" "PO-Revision-Date: 2011-03-04 16:08+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Albanian (http://www.transifex.com/projects/p/fedora/language/" diff --git a/python/spacewalk/po/sr.po b/python/spacewalk/po/sr.po index 35c1262124e8..3a5d5a814d7e 100644 --- a/python/spacewalk/po/sr.po +++ b/python/spacewalk/po/sr.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Spacewalk\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-30 15:17+0200\n" +"POT-Creation-Date: 2023-08-11 15:28+0200\n" "PO-Revision-Date: 2011-03-04 16:08+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Serbian \n" diff --git a/python/spacewalk/po/sv.po b/python/spacewalk/po/sv.po index 354c1cee77dc..4627e93181a9 100644 --- a/python/spacewalk/po/sv.po +++ b/python/spacewalk/po/sv.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: Spacewalk\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-30 15:17+0200\n" +"POT-Creation-Date: 2023-08-11 15:28+0200\n" "PO-Revision-Date: 2018-03-16 10:54+0000\n" "Last-Translator: Copied by Zanata \n" "Language-Team: Swedish (http://www.transifex.com/projects/p/fedora/language/" diff --git a/python/spacewalk/po/ta.po b/python/spacewalk/po/ta.po index d4f2d6d60c3f..fcbf79f6d3ad 100644 --- a/python/spacewalk/po/ta.po +++ b/python/spacewalk/po/ta.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: Spacewalk\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-30 15:17+0200\n" +"POT-Creation-Date: 2023-08-11 15:28+0200\n" "PO-Revision-Date: 2011-03-04 16:08+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Tamil \n" diff --git a/python/spacewalk/po/te.po b/python/spacewalk/po/te.po index 4d16b1273a36..2c7b8e6a18d2 100644 --- a/python/spacewalk/po/te.po +++ b/python/spacewalk/po/te.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Spacewalk\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-30 15:17+0200\n" +"POT-Creation-Date: 2023-08-11 15:28+0200\n" "PO-Revision-Date: 2011-03-04 16:08+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Telugu (http://www.transifex.com/projects/p/fedora/language/" diff --git a/python/spacewalk/po/tg.po b/python/spacewalk/po/tg.po index 3ca531349e9d..012caa022c21 100644 --- a/python/spacewalk/po/tg.po +++ b/python/spacewalk/po/tg.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Spacewalk\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-30 15:17+0200\n" +"POT-Creation-Date: 2023-08-11 15:28+0200\n" "PO-Revision-Date: 2011-03-04 16:08+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Tajik (http://www.transifex.com/projects/p/fedora/language/" diff --git a/python/spacewalk/po/tr.po b/python/spacewalk/po/tr.po index 08a4b8fbde32..efb2c9637395 100644 --- a/python/spacewalk/po/tr.po +++ b/python/spacewalk/po/tr.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Spacewalk\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-30 15:17+0200\n" +"POT-Creation-Date: 2023-08-11 15:28+0200\n" "PO-Revision-Date: 2011-03-04 16:08+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/fedora/language/" diff --git a/python/spacewalk/po/uk.po b/python/spacewalk/po/uk.po index d862ccf3670e..a481d2d79096 100644 --- a/python/spacewalk/po/uk.po +++ b/python/spacewalk/po/uk.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: Spacewalk\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-30 15:17+0200\n" +"POT-Creation-Date: 2023-08-11 15:28+0200\n" "PO-Revision-Date: 2018-03-16 12:50+0000\n" "Last-Translator: Yuri Chornoivan \n" "Language-Team: Ukrainian \n" diff --git a/python/spacewalk/po/ur.po b/python/spacewalk/po/ur.po index de98768ef6e8..d0bcea6d0fdb 100644 --- a/python/spacewalk/po/ur.po +++ b/python/spacewalk/po/ur.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Spacewalk\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-30 15:17+0200\n" +"POT-Creation-Date: 2023-08-11 15:28+0200\n" "PO-Revision-Date: 2011-03-04 16:08+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Urdu \n" diff --git a/python/spacewalk/po/vi.po b/python/spacewalk/po/vi.po index 204e8ea58dd5..163772361c90 100644 --- a/python/spacewalk/po/vi.po +++ b/python/spacewalk/po/vi.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Spacewalk\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-30 15:17+0200\n" +"POT-Creation-Date: 2023-08-11 15:28+0200\n" "PO-Revision-Date: 2011-03-04 16:08+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/fedora/" diff --git a/python/spacewalk/po/zh_CN.po b/python/spacewalk/po/zh_CN.po index 4beda770a57e..0b2a04970c39 100644 --- a/python/spacewalk/po/zh_CN.po +++ b/python/spacewalk/po/zh_CN.po @@ -14,7 +14,7 @@ msgid "" msgstr "" "Project-Id-Version: Spacewalk\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-30 15:17+0200\n" +"POT-Creation-Date: 2023-08-11 15:28+0200\n" "PO-Revision-Date: 2023-06-26 04:15+0000\n" "Last-Translator: Grace Yu \n" "Language-Team: Chinese (China) \n" "Language-Team: Chinese (Hong Kong) \n" diff --git a/python/spacewalk/po/zh_TW.po b/python/spacewalk/po/zh_TW.po index 6196fd085348..d44f1da7d285 100644 --- a/python/spacewalk/po/zh_TW.po +++ b/python/spacewalk/po/zh_TW.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: Spacewalk\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-30 15:17+0200\n" +"POT-Creation-Date: 2023-08-11 15:28+0200\n" "PO-Revision-Date: 2011-03-04 16:08+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Chinese (Taiwan) \n" diff --git a/python/spacewalk/satellite_tools/repo_plugins/yum_src.py b/python/spacewalk/satellite_tools/repo_plugins/yum_src.py index e57293175668..012a61f263c8 100644 --- a/python/spacewalk/satellite_tools/repo_plugins/yum_src.py +++ b/python/spacewalk/satellite_tools/repo_plugins/yum_src.py @@ -653,6 +653,7 @@ def setup_repo(self, repo, uln_repo=False): """ Setup repository and fetch metadata """ + plugin_used = False; self.zypposync = ZyppoSync(root=repo.root) zypp_repo_url = self._prep_zypp_repo_url(self.url, uln_repo) @@ -672,18 +673,27 @@ def setup_repo(self, repo, uln_repo=False): ''' if uln_repo: _url = 'plugin:spacewalk-uln-resolver?url={}'.format(zypp_repo_url) + plugin_used = True elif self.http_headers: headers_location = os.path.join(repo.root, "etc/zypp/repos.d", str(self.channel_label or self.reponame) + ".headers") with open(headers_location, "w") as repo_headers_file: repo_headers_file.write(json.dumps(self.http_headers)) - _url = 'plugin:spacewalk-extra-http-headers?url={}&headers_file={}'.format(quote(zypp_repo_url), quote(headers_location)) + # RHUI mirror url works only as mirror and cannot be used to download content + # but zypp plugins do not work with "mirrorlist" keyword, only with baseurl. + # So let's take the first url from the mirrorlist if it exists and use it as baseurl + baseurl = mirrorlist[0] if mirrorlist else zypp_repo_url + _url = 'plugin:spacewalk-extra-http-headers?url={}&headers_file={}'.format(quote(baseurl), quote(headers_location)) + plugin_used = True else: _url = zypp_repo_url if not mirrorlist else os.path.join(repo.root, 'mirrorlist.txt') with open(os.path.join(repo.root, "etc/zypp/repos.d", str(self.channel_label or self.reponame) + ".repo"), "w") as repo_conf_file: + _repo_url = 'baseurl' + if mirrorlist and not plugin_used: + _repo_url = "mirrorlist" repo_conf_file.write(repo_cfg.format( reponame=self.channel_label or self.reponame, - repo_url='baseurl' if not mirrorlist else 'mirrorlist', + repo_url=_repo_url, url=_url, gpgcheck="0" if self.insecure else "1" )) @@ -741,16 +751,36 @@ def _prep_zypp_repo_url(self, url, uln_repo): query_params['ssl_clientcert'] = self.sslclientcert if self.sslclientkey: query_params['ssl_clientkey'] = self.sslclientkey - new_query = unquote(urlencode(query_params, doseq=True)) # urlparse cannot handle uln urls, so we need to keep this check if uln_repo: + new_query = unquote(urlencode(query_params, doseq=True)) return "{0}&{1}".format(url, new_query) parsed_url = urlparse(url) + netloc = parsed_url.netloc + if parsed_url.username and parsed_url.password: + creds_cfg = ''' +username={user} +password={passwd} +''' + netloc = parsed_url.hostname + if parsed_url.port: + netloc = "{0}:{1}".format(netloc, parsed_url.port) + cdir = os.path.join(REPOSYNC_ZYPPER_ROOT, "etc/zypp/credentials.d") + if not os.path.exists(cdir): + os.makedirs(cdir) + cfile = os.path.join(cdir, str(self.channel_label or self.reponame)) + with open(cfile, "w") as creds_file: + creds_file.write(creds_cfg.format(user=parsed_url.username, + passwd=parsed_url.password)) + query_params['credentials'] = str(self.channel_label or self.reponame) + os.chmod(cfile, int('0600', 8)) + new_query = unquote(urlencode(query_params, doseq=True)) + existing_query = parsed_url.query combined_query = "&".join([q for q in [existing_query, new_query] if q]) return urlunparse(( parsed_url.scheme, - parsed_url.netloc, + netloc, parsed_url.path, parsed_url.params, combined_query, diff --git a/python/spacewalk/satellite_tools/reposync.py b/python/spacewalk/satellite_tools/reposync.py index a41dbbc3e9d7..01de32847503 100644 --- a/python/spacewalk/satellite_tools/reposync.py +++ b/python/spacewalk/satellite_tools/reposync.py @@ -373,21 +373,23 @@ def clear_ssl_cache(): def verify_certificates_dates(certs): + """ + One certificate must be valid. Bundles may contain expired certs. + It does not make sense to check them all. + """ cert = "" is_cert = False - has_valid_certs = False for line in certs.split('\n'): if not is_cert and line.startswith("-----BEGIN CERTIFICATE"): is_cert = True if is_cert: cert += line + '\n' if is_cert and line.startswith("-----END CERTIFICATE"): - if not verify_certificate_dates(cert): - return False - cert = "" + if verify_certificate_dates(cert): + return True is_cert = False - has_valid_certs = True - return has_valid_certs + cert = "" + return False def get_single_ssl_set(keys, check_dates=False): @@ -1880,19 +1882,27 @@ def _url_with_repo_credentials(self, url_in): ) sys.exit(1) # SCC - read credentials from DB - h = rhnSQL.prepare("SELECT username, password, extra_auth FROM suseCredentials WHERE id = :id") + h = rhnSQL.prepare(""" + SELECT c.username, c.password, c.extra_auth, ct.label type + FROM suseCredentials c + JOIN suseCredentialsType ct on c.type_id = ct.id + WHERE c.id = :id + """) h.execute(id=creds_no) credentials = h.fetchone_dict() or None if not credentials: log2(0, 0, "Could not figure out which credentials to use " "for this URL: "+url.getURL(stripPw=True), stream=sys.stderr) sys.exit(1) - url.username = credentials['username'] - url.password = base64.decodestring(credentials['password'].encode()).decode() + if credentials['type'] != "rhui": + url.username = credentials['username'] + url.password = base64.decodestring(credentials['password'].encode()).decode() # remove query parameter from url url.query = "" if 'extra_auth' in credentials and credentials['extra_auth']: headers = json.loads(credentials['extra_auth'].tobytes()) + if not headers: + log2(0, 0, "Empty extra auth headers. Possibly the PAYG instance is down?") return {"url": url.getURL(), "http_headers": headers} def upload_patches(self, notices): diff --git a/python/spacewalk/satellite_tools/rhn_ssl_dbstore.py b/python/spacewalk/satellite_tools/rhn_ssl_dbstore.py index 668dc37dfeab..30fe53e880a0 100644 --- a/python/spacewalk/satellite_tools/rhn_ssl_dbstore.py +++ b/python/spacewalk/satellite_tools/rhn_ssl_dbstore.py @@ -29,7 +29,7 @@ def processCommandline(): options = [ Option('--ca-cert', action='store', default=DEFAULT_TRUSTED_CERT, type="string", - help='public CA certificate, default is %s' % DEFAULT_TRUSTED_CERT), + help='public CA certificate, default is %s. If the value is \'-\' the CA is read from STDIN' % DEFAULT_TRUSTED_CERT), Option('--label', action='store', default='RHN-ORG-TRUSTED-SSL-CERT', type="string", help='FOR TESTING ONLY - alternative database label for this CA certificate, ' + 'default is "RHN-ORG-TRUSTED-SSL-CERT"'), @@ -45,7 +45,9 @@ def processCommandline(): "--help): %s\n" % repr(args)) raise ValueError(msg) - if not os.path.exists(values.ca_cert): + if values.ca_cert == '-': + values.ca_cert = sys.stdin.read().strip() + elif not os.path.exists(values.ca_cert): sys.stderr.write("ERROR: can't find CA certificate at this location: " "%s\n" % values.ca_cert) sys.exit(10) diff --git a/python/spacewalk/satellite_tools/satCerts.py b/python/spacewalk/satellite_tools/satCerts.py index 79621ed2e0ee..1999d7a192e6 100644 --- a/python/spacewalk/satellite_tools/satCerts.py +++ b/python/spacewalk/satellite_tools/satCerts.py @@ -39,7 +39,10 @@ def get_certificate_info(cert_str): not_before = cert.get_not_before().get_datetime() not_after = cert.get_not_after().get_datetime() subject = cert.get_subject() - cn = subject.CN + try: + cn = subject.CN + except AttributeError: + cn = "" serial_number = cert.get_serial_number() return cn, serial_number, not_before, not_after @@ -160,12 +163,15 @@ def _lobUpdate_rhnCryptoKey(rhn_cryptokey_id, cert): def store_CaCert(description, caCert, verbosity=0): org_ids = get_all_orgs() org_ids.append({'id': None}) - f = open(caCert, 'rb') - try: - cert = f.read().strip() - finally: - if f is not None: - f.close() + if " CERTIFICATE-----" in caCert: + cert = caCert + else: + f = open(caCert, 'rb') + try: + cert = f.read().strip() + finally: + if f is not None: + f.close() for org_id in org_ids: org_id = org_id['id'] store_rhnCryptoKey(description, cert, org_id, verbosity) diff --git a/python/spacewalk/satellite_tools/spacewalk-data-fsck b/python/spacewalk/satellite_tools/spacewalk-data-fsck index da8bfcdf2361..54fe2e978e87 100755 --- a/python/spacewalk/satellite_tools/spacewalk-data-fsck +++ b/python/spacewalk/satellite_tools/spacewalk-data-fsck @@ -59,11 +59,19 @@ def db_init(): def src_package_query(): - query = """select p.id - from rhnPackage p + query = """select p.source_rpm_id + from rhnPackageSource p where p.path like :filename""" return query + +def package_find_by_src_id(): + query = """select id + from rhnPackage p + where source_rpm_id = :id""" + return query + + def package_query(options, bind_path=False): query = """select %s from %s @@ -353,9 +361,16 @@ def is_orphaned_srpm(path, file): if is_srpm(file): query = src_package_query() h = rhnSQL.prepare(query) - wildcard_filename = "%/" + file.replace('src','%') + wildcard_filename = "%/" + os.path.basename(file) h.execute(filename=wildcard_filename) row = h.fetchone_dict() + if not row: + log(0, f"SRPM not in DB: {path}") + return True + query = package_find_by_src_id() + h = rhnSQL.prepare(query) + h.execute(id=row['source_rpm_id']) + row = h.fetchone_dict() if not row: log(0, "SRPM without matching RPM in db: %s" % (path)) return True diff --git a/python/spacewalk/satellite_tools/spacewalk-debug b/python/spacewalk/satellite_tools/spacewalk-debug index c5de37132557..9a7e4cd78894 100755 --- a/python/spacewalk/satellite_tools/spacewalk-debug +++ b/python/spacewalk/satellite_tools/spacewalk-debug @@ -261,6 +261,7 @@ if [ -d /var/lib/cobbler ]; then cp -fa /var/lib/cobbler/config $DIR/cobbler-lib/ cp -fa /var/lib/cobbler/kickstarts $DIR/cobbler-lib/ cp -fa /var/lib/cobbler/triggers $DIR/cobbler-lib/ + cp -fa /var/lib/cobbler/collections $DIR/cobbler-lib/ fi if [ -d /var/lib/rhn/kickstarts ]; then cp -fa /var/lib/rhn/kickstarts/* $DIR/kickstarts/ diff --git a/python/spacewalk/spacewalk-backend.changes.agraul.supportutils-add-cobbler-collections b/python/spacewalk/spacewalk-backend.changes.agraul.supportutils-add-cobbler-collections new file mode 100644 index 000000000000..5138505884cc --- /dev/null +++ b/python/spacewalk/spacewalk-backend.changes.agraul.supportutils-add-cobbler-collections @@ -0,0 +1 @@ +- Add cobbler collections to supportconfig diff --git a/python/spacewalk/spacewalk-backend.changes.apatard.spacewalk-data-fsck-srpm b/python/spacewalk/spacewalk-backend.changes.apatard.spacewalk-data-fsck-srpm new file mode 100644 index 000000000000..2a54032bb177 --- /dev/null +++ b/python/spacewalk/spacewalk-backend.changes.apatard.spacewalk-data-fsck-srpm @@ -0,0 +1 @@ +- Fix spacewalk-data-fsck src.rpm handling diff --git a/python/spacewalk/spacewalk-backend.changes.cbosdo.rhnconfig-nofile b/python/spacewalk/spacewalk-backend.changes.cbosdo.rhnconfig-nofile new file mode 100644 index 000000000000..71b461e69276 --- /dev/null +++ b/python/spacewalk/spacewalk-backend.changes.cbosdo.rhnconfig-nofile @@ -0,0 +1 @@ +- Accept missing rhn.conf file diff --git a/python/spacewalk/spacewalk-backend.changes.mcalmer.invalidate-payg-credentials-after-instance-is-unavailable b/python/spacewalk/spacewalk-backend.changes.mcalmer.invalidate-payg-credentials-after-instance-is-unavailable new file mode 100644 index 000000000000..e0b9b88e1311 --- /dev/null +++ b/python/spacewalk/spacewalk-backend.changes.mcalmer.invalidate-payg-credentials-after-instance-is-unavailable @@ -0,0 +1 @@ +- add hint about missing auth header for PAYG instances (bsc#1213445) diff --git a/python/spacewalk/spacewalk-backend.changes.mcalmer.payg-part1 b/python/spacewalk/spacewalk-backend.changes.mcalmer.payg-part1 new file mode 100644 index 000000000000..4c021ea4255c --- /dev/null +++ b/python/spacewalk/spacewalk-backend.changes.mcalmer.payg-part1 @@ -0,0 +1 @@ +- use credentials file for reposync if password is in URL diff --git a/python/spacewalk/spacewalk-backend.changes.mcalmer.rhui-via-payg b/python/spacewalk/spacewalk-backend.changes.mcalmer.rhui-via-payg new file mode 100644 index 000000000000..ab52d7b968c7 --- /dev/null +++ b/python/spacewalk/spacewalk-backend.changes.mcalmer.rhui-via-payg @@ -0,0 +1 @@ +- implement new RHUI support in reposync diff --git a/python/spacewalk/spacewalk-backend.changes.mcalmer.store-ca-in-db b/python/spacewalk/spacewalk-backend.changes.mcalmer.store-ca-in-db new file mode 100644 index 000000000000..808a89f94e24 --- /dev/null +++ b/python/spacewalk/spacewalk-backend.changes.mcalmer.store-ca-in-db @@ -0,0 +1 @@ +- rhn-ssl-dbstore read ca from STDIN (bsc#1212856) diff --git a/python/test/unit/spacewalk/satellite_tools/test_reposync.py b/python/test/unit/spacewalk/satellite_tools/test_reposync.py index acd7ce9cc851..5a60960c9a9c 100644 --- a/python/test/unit/spacewalk/satellite_tools/test_reposync.py +++ b/python/test/unit/spacewalk/satellite_tools/test_reposync.py @@ -634,7 +634,7 @@ def test_set_repo_credentials_number_credentials(self): "http://example.com/?credentials=testcreds_42" ] } - _mock_rhnsql(self.reposync, [{ 'username' : 'foo', 'password': 'c2VjcmV0' , 'extra_auth': memoryview(b'{\"my_header\": \"my_value\"}')}]) + _mock_rhnsql(self.reposync, [{ 'username' : 'foo', 'password': 'c2VjcmV0', 'type': 'cloudrmt', 'extra_auth': memoryview(b'{\"my_header\": \"my_value\"}')}]) self.assertEqual( rs.set_repo_credentials(url), [{"url":"http://foo:secret@example.com/", "http_headers": {"my_header": "my_value"}}]) @@ -776,7 +776,8 @@ def test__url_with_repo_credentials(self): config = { 'return_value.fetchone_dict.return_value': { "username": "user#1", - "password": base64.encodestring(password.encode()).decode() + "password": base64.encodestring(password.encode()).decode(), + "type": "SCC" } } patcher = patch( @@ -788,7 +789,7 @@ def test__url_with_repo_credentials(self): {"url": 'http://{0}:{1}@some.url'.format(username, password), "http_headers": {}} ) mock_prepare.assert_called_once_with( - 'SELECT username, password, extra_auth FROM suseCredentials WHERE id = :id' + '\n SELECT c.username, c.password, c.extra_auth, ct.label type\n FROM suseCredentials c\n JOIN suseCredentialsType ct on c.type_id = ct.id\n WHERE c.id = :id\n ' ) mock_prepare().execute.assert_called_once_with(id=credentials_id) diff --git a/python/test/unit/spacewalk/satellite_tools/test_yum_src.py b/python/test/unit/spacewalk/satellite_tools/test_yum_src.py index 591881dc94dd..e3049df2184c 100644 --- a/python/test/unit/spacewalk/satellite_tools/test_yum_src.py +++ b/python/test/unit/spacewalk/satellite_tools/test_yum_src.py @@ -27,6 +27,12 @@ from io import StringIO except ImportError: from StringIO import StringIO + +try: + from urlparse import urlparse, urlunparse +except: + from urllib.parse import urlparse, urlunparse + from collections import namedtuple from mock import Mock, MagicMock, patch, mock_open @@ -386,7 +392,8 @@ def test_prep_zypp_repo_url_with_proxy(self): ("https://example.com/", False), ("https://example.org/repo/path/?token", False), ("uln://example.com/", True), - ("uln:///channel", True) + ("uln:///channel", True), + ("https://user:password@example.org/repo/path/", False) ] proxy_url = "http://proxy.example.com:8080" proxy_user = "user" @@ -394,6 +401,7 @@ def test_prep_zypp_repo_url_with_proxy(self): cs.proxy_hostname = proxy_url cs.proxy_user = proxy_user cs.proxy_pass = proxy_pass + cs.channel_label = "testchannel" for url, is_uln in urls: if is_uln or "?" in url: @@ -401,16 +409,32 @@ def test_prep_zypp_repo_url_with_proxy(self): else: separator = "?" - expected_url = "{}{}proxy={}&proxyuser={}&proxypass={}".format(url, + exp_url = url + parsed_url = urlparse(url) + extra_query="" + if parsed_url.username and parsed_url.password: + netloc = parsed_url.hostname + if parsed_url.port: + netloc = "{1}:{2}".format(netloc, parsed_url.port) + + exp_url = urlunparse((parsed_url.scheme, netloc, parsed_url.path, + parsed_url.params, parsed_url.query, parsed_url.fragment)) + extra_query = "&credentials={}".format(cs.channel_label) + + expected_url = "{}{}proxy={}&proxyuser={}&proxypass={}{}".format(exp_url, separator, quote(proxy_url), proxy_user, - proxy_pass + proxy_pass, + extra_query ) + with patch( + "builtins.open", mock_open() + ), patch( + "spacewalk.satellite_tools.repo_plugins.yum_src.os.chmod", Mock()): + comp_url = cs._prep_zypp_repo_url(url, is_uln) - comp_url = cs._prep_zypp_repo_url(url, is_uln) - - assert expected_url == comp_url + assert expected_url == comp_url def test_update_notice_parse(self): update_notice_xml = StringIO( diff --git a/python/uyuni/common/fileutils.py b/python/uyuni/common/fileutils.py index 3c6cb06a013c..91396583680f 100644 --- a/python/uyuni/common/fileutils.py +++ b/python/uyuni/common/fileutils.py @@ -301,9 +301,9 @@ def createPath(path, user=None, group=None, chmod=int('0755', 8)): """ with cfg_component(component=None) as CFG: if user is None: - user = CFG.httpd_user + user = CFG.get('httpd_user', 'wwwrun') if group is None: - group = CFG.httpd_group + group = CFG.get('httpd_group', 'www') path = cleanupAbsPath(path) if not os.path.exists(path): @@ -324,7 +324,7 @@ def setPermsPath(path, user=None, group='root', chmod=int('0750', 8)): """chown user.group and set permissions to chmod""" if user is None: with cfg_component(component=None) as CFG: - user = CFG.httpd_user + user = CFG.get('httpd_user', 'wwwrun') if not os.path.exists(path): raise OSError("*** ERROR: Path doesn't exist (can't set permissions): %s" % path) diff --git a/python/uyuni/common/rhn_deb.py b/python/uyuni/common/rhn_deb.py index 1830e0030737..4eae546e2814 100644 --- a/python/uyuni/common/rhn_deb.py +++ b/python/uyuni/common/rhn_deb.py @@ -21,6 +21,7 @@ import tempfile from debian import debfile +from debian.deb822 import Deb822 from uyuni.common.usix import raise_with_tb from uyuni.common import checksum @@ -34,6 +35,25 @@ class deb_Header: + # this is a workaround for issue in python-debian + # https://www.mail-archive.com/pkg-python-debian-maint@alioth-lists.debian.net/msg00598.html + # after the issue is fixed, remove this function + def get_file(self, control, fname): + if fname.startswith('./'): + fname = fname[2:] + elif fname.startswith('/'): + fname = fname[1:] + + try: + fobj = control.tgz().extractfile(fname) + except KeyError: + raise debfile.DebError("control.tar.* not found inside package") + + if fobj is None: + raise debfile.DebError("control.tar.* not found inside package") + + return fobj + "Wrapper class for an deb header - we need to store a flag is_source" def __init__(self, stream): @@ -50,7 +70,14 @@ def __init__(self, stream): try: # Fill info about package - debcontrol = self.deb.debcontrol() + try: + debcontrol = self.deb.debcontrol() + except debfile.DebError: + # this is a workaround for issue in python-debian + # https://www.mail-archive.com/pkg-python-debian-maint@alioth-lists.debian.net/msg00598.html + debcontrol = Deb822(self.get_file(self.deb.control, 'control')) + + self.hdr = { 'name': debcontrol.get_as_string('Package'), 'arch': debcontrol.get_as_string('Architecture') + '-deb', diff --git a/python/uyuni/uyuni-common-libs.changes.cbosdo.rhnconfig-nofile b/python/uyuni/uyuni-common-libs.changes.cbosdo.rhnconfig-nofile new file mode 100644 index 000000000000..71b461e69276 --- /dev/null +++ b/python/uyuni/uyuni-common-libs.changes.cbosdo.rhnconfig-nofile @@ -0,0 +1 @@ +- Accept missing rhn.conf file diff --git a/python/uyuni/uyuni-common-libs.changes.mbussolotto.fix_deb b/python/uyuni/uyuni-common-libs.changes.mbussolotto.fix_deb new file mode 100644 index 000000000000..cca6f776f94a --- /dev/null +++ b/python/uyuni/uyuni-common-libs.changes.mbussolotto.fix_deb @@ -0,0 +1 @@ +- Workaround for python3-debian bug about collecting control file (bsc#1211525, bsc#1208692) diff --git a/rel-eng/bin/mkchlog b/rel-eng/bin/mkchlog index 6c4d08591209..9e9d8d233d4d 100755 --- a/rel-eng/bin/mkchlog +++ b/rel-eng/bin/mkchlog @@ -20,33 +20,49 @@ The default editor can be specified by setting the EDITOR environment variable. -f, --feature set the feature name to use as a filename part -u, --username set the username to use as a filename part -r, --remove remove existing changelog file + -n, --no-wrap do not wrap automatically the message at 67 characters -h, --help display this help and exit Uyuni project: EOF } -while [[ $# -gt 0 ]]; do - case $1 in +# Out of the box macOS ships with BSD getopt which doesn't support long args +if [ "$(uname -s)" == "Darwin" ] && $(man getopt | grep -i -q "bsd"); then + echo "Error: This tool requires GNU getopt, but your system is using BSD getopt. Please install GNU getopt and add it to your PATH." + exit 1 +fi + +ARGS=$(getopt -n mkchlog -o rhnf:u: --long remove,help,no-wrap,feature:username: -- "$@") +if [ $? -ne 0 ]; then + exit 1 +fi + +eval set -- "$ARGS" +while [ : ]; do + case "$1" in -h|--help) usage exit ;; -f|--feature) FEATURE=$2 - shift - shift + shift 2 ;; -u|--username) USER=$2 - shift - shift + shift 2 ;; -r|--remove) REMOVE=1 shift ;; - *) + -n|--no-wrap) + NO_WRAP=1 + shift + ;; + --) + shift break ;; esac @@ -57,11 +73,16 @@ if ! command -v git &>/dev/null; then exit 1 fi -GITROOT=`git rev-parse --show-toplevel` -CURDIR=`git rev-parse --show-prefix` -GITMAIL=`git config --get user.email` +GITROOT=`git rev-parse --show-toplevel 2>/dev/null` +if [ $? -ne 0 ] || ! [ -d $GITROOT/rel-eng/packages ]; then + echo "Error: Not in Uyuni working directory." + exit 1 +fi + +CURDIR=`git rev-parse --show-prefix` || exit 1 if [ -z "$USER" ]; then + GITMAIL=`git config --get user.email 2>/dev/null` if [ -n "$GITMAIL" ]; then USER=${GITMAIL%@*} else @@ -70,7 +91,7 @@ if [ -z "$USER" ]; then fi if [ -z "$FEATURE" ]; then - FEATURE=`git rev-parse --abbrev-ref HEAD` + FEATURE=`git rev-parse --abbrev-ref HEAD 2>/dev/null` if [ -z "$FEATURE" ] || [ "HEAD" == "$FEATURE" ]; then echo "Cannot read the branch name from the current HEAD. Omitting the feature name part." unset FEATURE @@ -110,7 +131,7 @@ function getEditorCmd() { # Specific CLI options for common text editors case "$cmd" in - vi | vim) + vi*) cmd="$cmd +1 +startinsert!" ;; *) @@ -140,7 +161,11 @@ if ! [ -z $REMOVE ]; then fi # Add the new entry -echo "- $1" > $CHFILE.new +if [ -z $NO_WRAP ]; then + echo "$1" | fold -s -w 65 | sed '1s/^.*$/- &/;2,$s/^.*$/ &/' > $CHFILE.new +else + echo "- $1" > $CHFILE.new +fi # Append older entries cat $CHFILE >> $CHFILE.new 2>/dev/null diff --git a/rel-eng/packages/billing-data-service b/rel-eng/packages/billing-data-service new file mode 100644 index 000000000000..655998b7c27b --- /dev/null +++ b/rel-eng/packages/billing-data-service @@ -0,0 +1 @@ +0.1-1 python/billingdataservice/ diff --git a/rel-eng/packages/hub-xmlrpc-api-image b/rel-eng/packages/hub-xmlrpc-api-image new file mode 100644 index 000000000000..45971d5a183c --- /dev/null +++ b/rel-eng/packages/hub-xmlrpc-api-image @@ -0,0 +1 @@ +4.4.0 containers/hub-xmlrpc-api-image/ diff --git a/rel-eng/packages/server-helm b/rel-eng/packages/server-helm new file mode 100644 index 000000000000..7ffc33013560 --- /dev/null +++ b/rel-eng/packages/server-helm @@ -0,0 +1 @@ +4.4.0 containers/server-helm/ diff --git a/rel-eng/packages/server-image b/rel-eng/packages/server-image new file mode 100644 index 000000000000..fe257db88808 --- /dev/null +++ b/rel-eng/packages/server-image @@ -0,0 +1 @@ +4.4.0 containers/server-image/ diff --git a/rel-eng/packages/spacewalk-java b/rel-eng/packages/spacewalk-java index 1316cec52472..7b078f0dc0d2 100644 --- a/rel-eng/packages/spacewalk-java +++ b/rel-eng/packages/spacewalk-java @@ -1 +1 @@ -4.4.17-1 java/ +4.4.18-1 java/ diff --git a/schema/spacewalk/common/data/rhnTaskoBunch.sql b/schema/spacewalk/common/data/rhnTaskoBunch.sql index 1d24c9b5e310..a3de2ec634cf 100644 --- a/schema/spacewalk/common/data/rhnTaskoBunch.sql +++ b/schema/spacewalk/common/data/rhnTaskoBunch.sql @@ -138,4 +138,7 @@ VALUES (sequence_nextval('rhn_tasko_bunch_id_seq'), 'update-system-overview-bunc INSERT INTO rhnTaskoBunch (id, name, description, org_bunch) VALUES (sequence_nextval('rhn_tasko_bunch_id_seq'), 'system-profile-refresh-bunch', 'Refresh System Profiles of all registered servers', null); +INSERT INTO rhnTaskoBunch (id, name, description, org_bunch) +VALUES (sequence_nextval('rhn_tasko_bunch_id_seq'), 'payg-dimension-computation-bunch', 'Compute the dimensions data required for PAYG billing', null); + commit; diff --git a/schema/spacewalk/common/data/rhnTaskoSchedule.sql b/schema/spacewalk/common/data/rhnTaskoSchedule.sql index 2ef95c3cf646..4cafdef5b603 100644 --- a/schema/spacewalk/common/data/rhnTaskoSchedule.sql +++ b/schema/spacewalk/common/data/rhnTaskoSchedule.sql @@ -66,6 +66,11 @@ INSERT INTO rhnTaskoSchedule (id, job_label, bunch_id, active_from, cron_expr) (SELECT id FROM rhnTaskoBunch WHERE name='auto-errata-bunch'), current_timestamp, '0 5/10 * * * ?'); +INSERT INTO rhnTaskoSchedule (id, job_label, bunch_id, active_from, cron_expr) +VALUES(sequence_nextval('rhn_tasko_schedule_id_seq'), 'update-payg-default', + (SELECT id FROM rhnTaskoBunch WHERE name='update-payg-data-bunch'), + current_timestamp, '0 0/10 * * * ?'); + -- Every 15 minutes INSERT INTO rhnTaskoSchedule (id, job_label, bunch_id, active_from, cron_expr) @@ -80,6 +85,21 @@ INSERT INTO rhnTaskoSchedule (id, job_label, bunch_id, active_from, cron_expr) -- Every hour +INSERT INTO rhnTaskoSchedule (id, job_label, bunch_id, active_from, cron_expr) +VALUES (sequence_nextval('rhn_tasko_schedule_id_seq'), 'payg-dimension-computation-default', + (SELECT id FROM rhnTaskoBunch WHERE name='payg-dimension-computation-bunch'), + current_timestamp, '0 45 * * * ?'); + +INSERT INTO rhnTaskoSchedule (id, job_label, bunch_id, active_from, cron_expr) + VALUES(sequence_nextval('rhn_tasko_schedule_id_seq'), 'uuid-cleanup-default', + (SELECT id FROM rhnTaskoBunch WHERE name='uuid-cleanup-bunch'), + current_timestamp, '0 0 * * * ?'); + +INSERT INTO rhnTaskoSchedule (id, job_label, bunch_id, active_from, cron_expr) + VALUES (sequence_nextval('rhn_tasko_schedule_id_seq'), 'minion-action-chain-cleanup-default', + (SELECT id FROM rhnTaskoBunch WHERE name='minion-action-chain-cleanup-bunch'), + current_timestamp, '0 0 * * * ?'); + INSERT INTO rhnTaskoSchedule (id, job_label, bunch_id, active_from, cron_expr) VALUES(sequence_nextval('rhn_tasko_schedule_id_seq'), 'reboot-action-cleanup-default', (SELECT id FROM rhnTaskoBunch WHERE name='reboot-action-cleanup-bunch'), @@ -90,16 +110,11 @@ INSERT INTO rhnTaskoSchedule (id, job_label, bunch_id, active_from, cron_expr) (SELECT id FROM rhnTaskoBunch WHERE name='minion-checkin-bunch'), current_timestamp, '0 0 * * * ?'); -INSERT INTO rhnTaskoSchedule (id, job_label, bunch_id, active_from, cron_expr) - VALUES (sequence_nextval('rhn_tasko_schedule_id_seq'), 'minion-action-cleanup-default', - (SELECT id FROM rhnTaskoBunch WHERE name='minion-action-cleanup-bunch'), - current_timestamp, '0 0 0 * * ?'); INSERT INTO rhnTaskoSchedule (id, job_label, bunch_id, active_from, cron_expr) VALUES (sequence_nextval('rhn_tasko_schedule_id_seq'), 'update-system-overview-default', (SELECT id FROM rhnTaskoBunch WHERE name='update-system-overview-bunch'), current_timestamp, '0 0 * * * ?'); - -- Once a day at 4:05:00 AM (beware of 2AM cronjobs) INSERT INTO rhnTaskoSchedule (id, job_label, bunch_id, active_from, cron_expr) @@ -136,6 +151,11 @@ INSERT INTO rhnTaskoSchedule (id, job_label, bunch_id, active_from, cron_expr) -- Once a day at 00:00 +INSERT INTO rhnTaskoSchedule (id, job_label, bunch_id, active_from, cron_expr) + VALUES (sequence_nextval('rhn_tasko_schedule_id_seq'), 'minion-action-cleanup-default', + (SELECT id FROM rhnTaskoBunch WHERE name='minion-action-cleanup-bunch'), + current_timestamp, '0 0 0 * * ?'); + INSERT INTO rhnTaskoSchedule (id, job_label, bunch_id, active_from, cron_expr) VALUES (sequence_nextval('rhn_tasko_schedule_id_seq'), 'mgr-sync-refresh-default', (SELECT id FROM rhnTaskoBunch WHERE name='mgr-sync-refresh-bunch'), @@ -146,31 +166,16 @@ INSERT INTO rhnTaskoSchedule (id, job_label, bunch_id, active_from, cron_expr) (SELECT id FROM rhnTaskoBunch WHERE name='gatherer-matcher-bunch'), current_timestamp, '0 0 0 ? * *'); -INSERT INTO rhnTaskoSchedule (id, job_label, bunch_id, active_from, cron_expr) - VALUES(sequence_nextval('rhn_tasko_schedule_id_seq'), 'uuid-cleanup-default', - (SELECT id FROM rhnTaskoBunch WHERE name='uuid-cleanup-bunch'), - current_timestamp, '0 0 * * * ?'); - INSERT INTO rhnTaskoSchedule (id, job_label, bunch_id, active_from, cron_expr) VALUES (sequence_nextval('rhn_tasko_schedule_id_seq'), 'token-cleanup-default', (SELECT id FROM rhnTaskoBunch WHERE name='token-cleanup-bunch'), current_timestamp, '0 0 0 ? * *'); -INSERT INTO rhnTaskoSchedule (id, job_label, bunch_id, active_from, cron_expr) - VALUES (sequence_nextval('rhn_tasko_schedule_id_seq'), 'minion-action-chain-cleanup-default', - (SELECT id FROM rhnTaskoBunch WHERE name='minion-action-chain-cleanup-bunch'), - current_timestamp, '0 0 * * * ?'); - INSERT INTO rhnTaskoSchedule (id, job_label, bunch_id, active_from, cron_expr) VALUES (sequence_nextval('rhn_tasko_schedule_id_seq'), 'notifications-cleanup-default', (SELECT id FROM rhnTaskoBunch WHERE name='notifications-cleanup-bunch'), current_timestamp, '0 0 0 ? * *'); -INSERT INTO rhnTaskoSchedule (id, job_label, bunch_id, active_from, cron_expr) -VALUES(sequence_nextval('rhn_tasko_schedule_id_seq'), 'update-payg-default', - (SELECT id FROM rhnTaskoBunch WHERE name='update-payg-data-bunch'), - current_timestamp, '0 0/10 * * * ?'); - INSERT INTO rhnTaskoSchedule (id, job_label, bunch_id, active_from, cron_expr) VALUES (sequence_nextval('rhn_tasko_schedule_id_seq'), 'update-reporting-default', (SELECT id FROM rhnTaskoBunch WHERE name='mgr-update-reporting-bunch'), diff --git a/schema/spacewalk/common/data/rhnTaskoTask.sql b/schema/spacewalk/common/data/rhnTaskoTask.sql index a1fccf949dab..9901feb20f34 100644 --- a/schema/spacewalk/common/data/rhnTaskoTask.sql +++ b/schema/spacewalk/common/data/rhnTaskoTask.sql @@ -143,4 +143,7 @@ VALUES (sequence_nextval('rhn_tasko_task_id_seq'), 'system-overview-update-queue INSERT INTO rhnTaskoTask (id, name, class) VALUES (sequence_nextval('rhn_tasko_task_id_seq'), 'system-profile-refresh', 'com.redhat.rhn.taskomatic.task.SystemProfileRefreshTask'); +INSERT INTO rhnTaskoTask (id, name, class) +VALUES (sequence_nextval('rhn_tasko_task_id_seq'), 'payg-dimension-computation', 'com.redhat.rhn.taskomatic.task.payg.PaygComputeDimensionsTask'); + commit; diff --git a/schema/spacewalk/common/data/rhnTaskoTemplate.sql b/schema/spacewalk/common/data/rhnTaskoTemplate.sql index 8c75647203e4..05ff9b3a807a 100644 --- a/schema/spacewalk/common/data/rhnTaskoTemplate.sql +++ b/schema/spacewalk/common/data/rhnTaskoTemplate.sql @@ -315,4 +315,11 @@ INSERT INTO rhnTaskoTemplate (id, bunch_id, task_id, ordering, start_if) 0, null); +INSERT INTO rhnTaskoTemplate (id, bunch_id, task_id, ordering, start_if) + VALUES (sequence_nextval('rhn_tasko_template_id_seq'), + (SELECT id FROM rhnTaskoBunch WHERE name='payg-dimension-computation-bunch'), + (SELECT id FROM rhnTaskoTask WHERE name='payg-dimension-computation'), + 0, + null); + commit; diff --git a/schema/spacewalk/common/data/suseCredentialsType.sql b/schema/spacewalk/common/data/suseCredentialsType.sql index a15c3a53ec0f..e86dcbef5494 100644 --- a/schema/spacewalk/common/data/suseCredentialsType.sql +++ b/schema/spacewalk/common/data/suseCredentialsType.sql @@ -28,4 +28,7 @@ insert into suseCredentialsType (id, label, name) values insert into suseCredentialsType (id, label, name) values (sequence_nextval('suse_credtype_id_seq'), 'reportcreds', 'Reporting DB Credentials'); +insert into suseCredentialsType (id, label, name) values + (sequence_nextval('suse_credtype_id_seq'), 'rhui', 'Red Hat Update Infrastructure'); + commit; diff --git a/schema/spacewalk/common/tables/rhnTaskoTask.sql b/schema/spacewalk/common/tables/rhnTaskoTask.sql index 6780093c2526..231814debcb7 100644 --- a/schema/spacewalk/common/tables/rhnTaskoTask.sql +++ b/schema/spacewalk/common/tables/rhnTaskoTask.sql @@ -20,7 +20,7 @@ CREATE TABLE rhnTaskoTask CONSTRAINT rhn_tasko_task_id_pk PRIMARY KEY, name VARCHAR(80) NOT NULL CONSTRAINT rhn_tasko_task_name_uq UNIQUE, - class VARCHAR(60) NOT NULL, + class VARCHAR(120) NOT NULL, created TIMESTAMPTZ DEFAULT (current_timestamp) NOT NULL, modified TIMESTAMPTZ diff --git a/schema/spacewalk/common/tables/susePaygDimensionComputation.sql b/schema/spacewalk/common/tables/susePaygDimensionComputation.sql new file mode 100644 index 000000000000..ecf0758e037d --- /dev/null +++ b/schema/spacewalk/common/tables/susePaygDimensionComputation.sql @@ -0,0 +1,23 @@ +-- +-- Copyright (c) 2023 SUSE +-- +-- This software is licensed to you under the GNU General Public License, +-- version 2 (GPLv2). There is NO WARRANTY for this software, express or +-- implied, including the implied warranties of MERCHANTABILITY or FITNESS +-- FOR A PARTICULAR PURPOSE. You should have received a copy of GPLv2 +-- along with this software; if not, see +-- http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt. +-- + +CREATE TABLE susePaygDimensionComputation +( + id NUMERIC NOT NULL + CONSTRAINT susePaygDimensionComputation_pk PRIMARY KEY, + timestamp TIMESTAMPTZ DEFAULT (current_timestamp) NOT NULL, + success BOOLEAN +); + +CREATE SEQUENCE susePaygDimensionComputation_id_seq; + +CREATE INDEX susePaygDimensionComputation_timestamp_idx + ON susePaygDimensionComputation (timestamp DESC); diff --git a/schema/spacewalk/common/tables/susePaygDimensionResult.sql b/schema/spacewalk/common/tables/susePaygDimensionResult.sql new file mode 100644 index 000000000000..151542d72cf1 --- /dev/null +++ b/schema/spacewalk/common/tables/susePaygDimensionResult.sql @@ -0,0 +1,23 @@ +-- +-- Copyright (c) 2023 SUSE +-- +-- This software is licensed to you under the GNU General Public License, +-- version 2 (GPLv2). There is NO WARRANTY for this software, express or +-- implied, including the implied warranties of MERCHANTABILITY or FITNESS +-- FOR A PARTICULAR PURPOSE. You should have received a copy of GPLv2 +-- along with this software; if not, see +-- http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt. +-- + +CREATE TABLE susePaygDimensionResult +( + id NUMERIC NOT NULL + CONSTRAINT susePaygDimensionResult_id_pk PRIMARY KEY, + computation_id NUMERIC NOT NULL + CONSTRAINT susePaygDimensionResult_computation_fk + REFERENCES susePaygDimensionComputation (id), + dimension billing_dimension_t NOT NULL, + count NUMERIC NOT NULL +); + +CREATE SEQUENCE susePaygDimensionResult_id_seq; diff --git a/schema/spacewalk/common/tables/susePaygProduct.sql b/schema/spacewalk/common/tables/susePaygProduct.sql new file mode 100644 index 000000000000..a0d6d9511812 --- /dev/null +++ b/schema/spacewalk/common/tables/susePaygProduct.sql @@ -0,0 +1,30 @@ +-- +-- Copyright (c) 2023 SUSE +-- +-- This software is licensed to you under the GNU General Public License, +-- version 2 (GPLv2). There is NO WARRANTY for this software, express or +-- implied, including the implied warranties of MERCHANTABILITY or FITNESS +-- FOR A PARTICULAR PURPOSE. You should have received a copy of GPLv2 +-- along with this software; if not, see +-- http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt. +-- + +CREATE TABLE susePaygProduct +( + id NUMERIC NOT NULL + CONSTRAINT susePaygProduct_pk PRIMARY KEY, + credentials_id NUMERIC NOT NULL + CONSTRAINT susePaygProduct_credentials_id_fk + REFERENCES suseCredentials (id) + ON DELETE CASCADE, + name VARCHAR(256), + version VARCHAR(256), + arch VARCHAR(256), + created TIMESTAMPTZ DEFAULT (current_timestamp) NOT NULL, + modified TIMESTAMPTZ DEFAULT (current_timestamp) NOT NULL +); + +CREATE SEQUENCE susePaygProduct_id_seq; + +CREATE UNIQUE INDEX susePaygProduct_credentials_product_uq + ON susePaygProduct (credentials_id, name, version, arch); diff --git a/schema/spacewalk/common/tables/tables.deps b/schema/spacewalk/common/tables/tables.deps index 30e9eb54bbaf..11c648615e66 100644 --- a/schema/spacewalk/common/tables/tables.deps +++ b/schema/spacewalk/common/tables/tables.deps @@ -288,3 +288,4 @@ suseUserNotification :: suseNotificationMessage web_contact suseRecurringAction :: web_customer web_contact rhnServerGroup suseMinionInfo suseAnsiblePath :: rhnServer rhnActionPlaybook :: rhnAction +susePaygDimensionResult :: billing_dimension_t susePaygDimensionComputation diff --git a/schema/spacewalk/postgres/class/billing_dimension_t.sql b/schema/spacewalk/postgres/class/billing_dimension_t.sql new file mode 100644 index 000000000000..1678dabb69ca --- /dev/null +++ b/schema/spacewalk/postgres/class/billing_dimension_t.sql @@ -0,0 +1,4 @@ +CREATE TYPE billing_dimension_t AS ENUM ( + 'managed_systems', + 'monitoring' +); diff --git a/schema/spacewalk/susemanager-schema.changes.mackdk.4.3-allow-sync-with-rmt b/schema/spacewalk/susemanager-schema.changes.mackdk.4.3-allow-sync-with-rmt new file mode 100644 index 000000000000..733745b8dad9 --- /dev/null +++ b/schema/spacewalk/susemanager-schema.changes.mackdk.4.3-allow-sync-with-rmt @@ -0,0 +1 @@ +- Store the PAYG products diff --git a/schema/spacewalk/susemanager-schema.changes.mackdk.payg-part1 b/schema/spacewalk/susemanager-schema.changes.mackdk.payg-part1 new file mode 100644 index 000000000000..65a6d89e6b2d --- /dev/null +++ b/schema/spacewalk/susemanager-schema.changes.mackdk.payg-part1 @@ -0,0 +1,2 @@ +- Added new tables to handle PAYG instances computations +- Added PAYG dimension computation taskomatic job configuration diff --git a/schema/spacewalk/susemanager-schema.changes.mcalmer.rhui-via-payg b/schema/spacewalk/susemanager-schema.changes.mcalmer.rhui-via-payg new file mode 100644 index 000000000000..5bb7ef9ec095 --- /dev/null +++ b/schema/spacewalk/susemanager-schema.changes.mcalmer.rhui-via-payg @@ -0,0 +1 @@ +- add new credentials type RHUI diff --git a/schema/spacewalk/upgrade/susemanager-schema-4.4.6-to-susemanager-schema-4.4.7/001-add-rhui-credential-type.sql b/schema/spacewalk/upgrade/susemanager-schema-4.4.6-to-susemanager-schema-4.4.7/001-add-rhui-credential-type.sql new file mode 100644 index 000000000000..638b93b95a18 --- /dev/null +++ b/schema/spacewalk/upgrade/susemanager-schema-4.4.6-to-susemanager-schema-4.4.7/001-add-rhui-credential-type.sql @@ -0,0 +1,4 @@ +insert into suseCredentialsType (id, label, name) + select sequence_nextval('suse_credtype_id_seq'), 'rhui', 'Red Hat Update Infrastructure' + where not exists(select 1 from suseCredentialsType where label = 'rhui'); + diff --git a/schema/spacewalk/upgrade/susemanager-schema-4.4.5-to-susemanager-schema-4.4.6/100-update-recurring-action.sql b/schema/spacewalk/upgrade/susemanager-schema-4.4.6-to-susemanager-schema-4.4.7/100-update-recurring-action.sql similarity index 100% rename from schema/spacewalk/upgrade/susemanager-schema-4.4.5-to-susemanager-schema-4.4.6/100-update-recurring-action.sql rename to schema/spacewalk/upgrade/susemanager-schema-4.4.6-to-susemanager-schema-4.4.7/100-update-recurring-action.sql diff --git a/schema/spacewalk/upgrade/susemanager-schema-4.4.6-to-susemanager-schema-4.4.7/200-payg-add-computation-tables.sql b/schema/spacewalk/upgrade/susemanager-schema-4.4.6-to-susemanager-schema-4.4.7/200-payg-add-computation-tables.sql new file mode 100644 index 000000000000..b060e37e9f48 --- /dev/null +++ b/schema/spacewalk/upgrade/susemanager-schema-4.4.6-to-susemanager-schema-4.4.7/200-payg-add-computation-tables.sql @@ -0,0 +1,37 @@ +CREATE TABLE IF NOT EXISTS susePaygDimensionComputation +( + id NUMERIC NOT NULL + CONSTRAINT susePaygDimensionComputation_pk PRIMARY KEY, + timestamp TIMESTAMPTZ DEFAULT (current_timestamp) NOT NULL, + success BOOLEAN +); + +CREATE SEQUENCE IF NOT EXISTS susePaygDimensionComputation_id_seq; + +CREATE INDEX IF NOT EXISTS susePaygDimensionComputation_timestamp_idx + ON susePaygDimensionComputation (timestamp DESC); + +DO $$ +BEGIN + IF NOT EXISTS (SELECT 1 FROM pg_type WHERE typname = 'billing_dimension_t') THEN + CREATE TYPE billing_dimension_t AS ENUM ( + 'managed_systems', + 'monitoring' + ); + ELSE + RAISE NOTICE 'type "billing_dimension_t" already exists, skipping'; + END IF; +END $$; + +CREATE TABLE IF NOT EXISTS susePaygDimensionResult +( + id NUMERIC NOT NULL + CONSTRAINT susePaygDimensionResult_id_pk PRIMARY KEY, + computation_id NUMERIC NOT NULL + CONSTRAINT susePaygDimensionResult_computation_fk + REFERENCES susePaygDimensionComputation (id), + dimension billing_dimension_t NOT NULL, + count NUMERIC NOT NULL +); + +CREATE SEQUENCE IF NOT EXISTS susePaygDimensionResult_id_seq; diff --git a/schema/spacewalk/upgrade/susemanager-schema-4.4.6-to-susemanager-schema-4.4.7/201-payg-taskomatic.sql b/schema/spacewalk/upgrade/susemanager-schema-4.4.6-to-susemanager-schema-4.4.7/201-payg-taskomatic.sql new file mode 100644 index 000000000000..30996180fc16 --- /dev/null +++ b/schema/spacewalk/upgrade/susemanager-schema-4.4.6-to-susemanager-schema-4.4.7/201-payg-taskomatic.sql @@ -0,0 +1,38 @@ +ALTER TABLE rhntaskotask ALTER COLUMN class TYPE varchar(120); + +INSERT INTO rhnTaskoBunch (id, name, description, org_bunch) +SELECT sequence_nextval('rhn_tasko_bunch_id_seq'), 'payg-dimension-computation-bunch', + 'Compute the dimensions data required for PAYG billing', null +WHERE NOT EXISTS ( + SELECT 1 FROM rhnTaskoBunch + WHERE name = 'payg-dimension-computation-bunch' + ); + +INSERT INTO rhnTaskoSchedule (id, job_label, bunch_id, active_from, cron_expr) +SELECT sequence_nextval('rhn_tasko_schedule_id_seq'), 'payg-dimension-computation-default', + (SELECT id FROM rhnTaskoBunch WHERE name='payg-dimension-computation-bunch'), + current_timestamp, '0 45 * ? * * *' +WHERE NOT EXISTS ( + SELECT 1 FROM rhnTaskoSchedule + WHERE job_label = 'payg-dimension-computation-default' + ); + +INSERT INTO rhnTaskoTask (id, name, class) +SELECT sequence_nextval('rhn_tasko_task_id_seq'), 'payg-dimension-computation', + 'com.redhat.rhn.taskomatic.task.payg.PaygComputeDimensionsTask' +WHERE NOT EXISTS ( + SELECT 1 FROM rhnTaskoTask + WHERE name = 'payg-dimension-computation' + ); + +INSERT INTO rhnTaskoTemplate (id, bunch_id, task_id, ordering, start_if) +SELECT sequence_nextval('rhn_tasko_template_id_seq'), + (SELECT id FROM rhnTaskoBunch WHERE name='payg-dimension-computation-bunch'), + (SELECT id FROM rhnTaskoTask WHERE name='payg-dimension-computation'), + 0, null +WHERE NOT EXISTS ( + SELECT 1 FROM rhnTaskoTemplate + WHERE bunch_id = (SELECT id FROM rhnTaskoBunch WHERE name = 'payg-dimension-computation-bunch') + AND task_id = (SELECT id FROM rhnTaskoTask WHERE name = 'payg-dimension-computation') + AND ordering = 0 + ); diff --git a/schema/spacewalk/upgrade/susemanager-schema-4.4.6-to-susemanager-schema-4.4.7/202-payg-products.sql b/schema/spacewalk/upgrade/susemanager-schema-4.4.6-to-susemanager-schema-4.4.7/202-payg-products.sql new file mode 100644 index 000000000000..5777e8224377 --- /dev/null +++ b/schema/spacewalk/upgrade/susemanager-schema-4.4.6-to-susemanager-schema-4.4.7/202-payg-products.sql @@ -0,0 +1,19 @@ +CREATE TABLE IF NOT EXISTS susePaygProduct +( + id NUMERIC NOT NULL + CONSTRAINT susePaygProduct_pk PRIMARY KEY, + credentials_id NUMERIC NOT NULL + CONSTRAINT susePaygProduct_credentials_id_fk + REFERENCES suseCredentials (id) + ON DELETE CASCADE, + name VARCHAR(256), + version VARCHAR(256), + arch VARCHAR(256), + created TIMESTAMPTZ DEFAULT (current_timestamp) NOT NULL, + modified TIMESTAMPTZ DEFAULT (current_timestamp) NOT NULL +); + +CREATE SEQUENCE IF NOT EXISTS susePaygProduct_id_seq; + +CREATE UNIQUE INDEX IF NOT EXISTS susePaygProduct_credentials_product_uq + ON susePaygProduct (credentials_id, name, version, arch); diff --git a/spacecmd/po/de.po b/spacecmd/po/de.po index 23a19c5ff8f5..e08de44ecdad 100644 --- a/spacecmd/po/de.po +++ b/spacecmd/po/de.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-30 15:18+0200\n" +"POT-Creation-Date: 2023-07-28 15:10+0200\n" "PO-Revision-Date: 2022-08-02 12:06+0000\n" "Last-Translator: Michael Calmer \n" "Language-Team: German \n" "Language-Team: Spanish \n" "Language-Team: Italian \n" "Language-Team: Japanese \n" "Language-Team: Korean \n" "Language-Team: Portuguese (Brazil) \n" "Language-Team: Slovak \n" @@ -264,8 +264,8 @@ msgstr "activationkey_delete: Vymazať aktivačný kľúč" msgid "usage: activationkey_delete KEY" msgstr "použitie: activationkey_delete KĽÚČ" -#: ../src/spacecmd/activationkey.py:831 ../src/spacecmd/cryptokey.py:141 -#: ../src/spacecmd/cryptokey.py:200 ../src/spacecmd/custominfo.py:97 +#: ../src/spacecmd/activationkey.py:831 ../src/spacecmd/cryptokey.py:176 +#: ../src/spacecmd/cryptokey.py:235 ../src/spacecmd/custominfo.py:97 #, python-format msgid "No keys matched argument %s" msgstr "Žiadne kľúče sa nezhodujú s argumentom %s" @@ -942,13 +942,13 @@ msgstr "Označenie: %s" msgid "Name: %s" msgstr "Názov: %s" -#: ../src/spacecmd/configchannel.py:446 ../src/spacecmd/cryptokey.py:217 +#: ../src/spacecmd/configchannel.py:446 ../src/spacecmd/cryptokey.py:252 #: ../src/spacecmd/group.py:573 ../src/spacecmd/system.py:683 #, python-format msgid "Description: %s" msgstr "Popis: %s" -#: ../src/spacecmd/configchannel.py:447 ../src/spacecmd/cryptokey.py:218 +#: ../src/spacecmd/configchannel.py:447 ../src/spacecmd/cryptokey.py:253 #: ../src/spacecmd/group.py:574 ../src/spacecmd/kickstart.py:507 #: ../src/spacecmd/kickstart.py:1976 #, python-format @@ -993,7 +993,7 @@ msgstr "Názov:" msgid "Label:" msgstr "Označenie:" -#: ../src/spacecmd/configchannel.py:482 ../src/spacecmd/cryptokey.py:67 +#: ../src/spacecmd/configchannel.py:482 ../src/spacecmd/cryptokey.py:107 #: ../src/spacecmd/custominfo.py:60 ../src/spacecmd/custominfo.py:205 #: ../src/spacecmd/group.py:190 ../src/spacecmd/softwarechannel.py:788 #: ../src/spacecmd/system.py:3798 @@ -1080,7 +1080,7 @@ msgstr "Revízia musí byť celé číslo" #. get the contents of the script #: ../src/spacecmd/configchannel.py:638 ../src/spacecmd/configchannel.py:946 -#: ../src/spacecmd/cryptokey.py:69 ../src/spacecmd/kickstart.py:2033 +#: ../src/spacecmd/cryptokey.py:109 ../src/spacecmd/kickstart.py:2033 #: ../src/spacecmd/snippet.py:143 msgid "Read an existing file [y/N]:" msgstr "Čítať existujúci súbor [a/N]:" @@ -1563,59 +1563,79 @@ msgstr "" " -d POPIS\n" " -f SÚBOR_KĽÚČA" -#: ../src/spacecmd/cryptokey.py:63 +#: ../src/spacecmd/cryptokey.py:69 +msgid "cryptokey_update: Update a cryptographic key" +msgstr "cryptokey_update: Aktualizovať šifrovací kľúč" + +#: ../src/spacecmd/cryptokey.py:70 +msgid "" +"usage: cryptokey_update [options])\n" +"\n" +"options:\n" +" -t GPG or SSL\n" +" -d DESCRIPTION\n" +" -f KEY_FILE" +msgstr "" +"použitie: cryptokey_update [voľby])\n" +"\n" +"voľby:\n" +" -t GPG alebo SSL\n" +" -d POPIS\n" +" -f SÚBOR_KĽÚČA" + +#: ../src/spacecmd/cryptokey.py:103 msgid "GPG or SSL [G/S]:" msgstr "GPG alebo SSL [G/S]:" -#: ../src/spacecmd/cryptokey.py:76 +#: ../src/spacecmd/cryptokey.py:116 msgid "The key type is required" msgstr "Vyžaduje sa typ kľúča" -#: ../src/spacecmd/cryptokey.py:80 +#: ../src/spacecmd/cryptokey.py:120 msgid "A description is required" msgstr "Vyžaduje sa popis" -#: ../src/spacecmd/cryptokey.py:84 +#: ../src/spacecmd/cryptokey.py:124 msgid "A file containing the key is required" msgstr "Vyžaduje sa súbor obsahujúci kľúč" -#: ../src/spacecmd/cryptokey.py:92 +#: ../src/spacecmd/cryptokey.py:132 msgid "No contents of the file" msgstr "Žiadny obsah súboru" -#: ../src/spacecmd/cryptokey.py:101 +#: ../src/spacecmd/cryptokey.py:141 msgid "Invalid key type" msgstr "Neplatný typ kľúča" -#: ../src/spacecmd/cryptokey.py:115 +#: ../src/spacecmd/cryptokey.py:150 msgid "cryptokey_delete: Delete a cryptographic key" msgstr "cryptokey_delete: Vymazať šifrovací kľúč" -#: ../src/spacecmd/cryptokey.py:116 +#: ../src/spacecmd/cryptokey.py:151 msgid "usage: cryptokey_delete NAME" msgstr "použitie: cryptokey_delete NÁZOV" -#: ../src/spacecmd/cryptokey.py:147 +#: ../src/spacecmd/cryptokey.py:182 msgid "Delete key(s) [y/N]:" msgstr "Vymazať kľúč(e) [a/N]:" -#: ../src/spacecmd/cryptokey.py:158 +#: ../src/spacecmd/cryptokey.py:193 msgid "cryptokey_list: List all cryptographic keys (SSL, GPG)" msgstr "cryptokey_list: Vypísať zoznam všetkých šifrovacích kľúčov (SSL, GPG)" -#: ../src/spacecmd/cryptokey.py:159 +#: ../src/spacecmd/cryptokey.py:194 msgid "usage: cryptokey_list" msgstr "použitie: cryptokey_list" -#: ../src/spacecmd/cryptokey.py:177 +#: ../src/spacecmd/cryptokey.py:212 msgid "cryptokey_details: Show the contents of a cryptographic key" msgstr "cryptokey_details: Zobraziť obsah šifrovacieho kľúča" -#: ../src/spacecmd/cryptokey.py:178 +#: ../src/spacecmd/cryptokey.py:213 msgid "usage: cryptokey_details KEY ..." msgstr "použitie: cryptokey_details KĽÚČ ..." -#: ../src/spacecmd/cryptokey.py:210 +#: ../src/spacecmd/cryptokey.py:245 #, python-format msgid "%s is not a valid crypto key" msgstr "%s nie je platný šifrovací kľúč" @@ -3250,7 +3270,7 @@ msgstr " * Podrobnosti->Voľby jadra" #: ../src/spacecmd/kickstart.py:2570 #, python-format msgid " * Details->Post Kernel Options : %s" -msgstr " * Podrobnosti->Voľby jadra po : %s" +msgstr " * Podrobnosti->Následné voľby jadra : %s" #: ../src/spacecmd/kickstart.py:2586 msgid "no kickstart label given" diff --git a/spacecmd/po/spacecmd.pot b/spacecmd/po/spacecmd.pot index 8ead368da976..1b76e8767d50 100644 --- a/spacecmd/po/spacecmd.pot +++ b/spacecmd/po/spacecmd.pot @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-30 15:18+0200\n" +"POT-Creation-Date: 2023-07-28 15:10+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -232,8 +232,8 @@ msgstr "" msgid "usage: activationkey_delete KEY" msgstr "" -#: ../src/spacecmd/activationkey.py:831 ../src/spacecmd/cryptokey.py:141 -#: ../src/spacecmd/cryptokey.py:200 ../src/spacecmd/custominfo.py:97 +#: ../src/spacecmd/activationkey.py:831 ../src/spacecmd/cryptokey.py:176 +#: ../src/spacecmd/cryptokey.py:235 ../src/spacecmd/custominfo.py:97 #, python-format msgid "No keys matched argument %s" msgstr "" @@ -851,13 +851,13 @@ msgstr "" msgid "Name: %s" msgstr "" -#: ../src/spacecmd/configchannel.py:446 ../src/spacecmd/cryptokey.py:217 +#: ../src/spacecmd/configchannel.py:446 ../src/spacecmd/cryptokey.py:252 #: ../src/spacecmd/group.py:573 ../src/spacecmd/system.py:683 #, python-format msgid "Description: %s" msgstr "" -#: ../src/spacecmd/configchannel.py:447 ../src/spacecmd/cryptokey.py:218 +#: ../src/spacecmd/configchannel.py:447 ../src/spacecmd/cryptokey.py:253 #: ../src/spacecmd/group.py:574 ../src/spacecmd/kickstart.py:507 #: ../src/spacecmd/kickstart.py:1976 #, python-format @@ -895,7 +895,7 @@ msgstr "" msgid "Label:" msgstr "" -#: ../src/spacecmd/configchannel.py:482 ../src/spacecmd/cryptokey.py:67 +#: ../src/spacecmd/configchannel.py:482 ../src/spacecmd/cryptokey.py:107 #: ../src/spacecmd/custominfo.py:60 ../src/spacecmd/custominfo.py:205 #: ../src/spacecmd/group.py:190 ../src/spacecmd/softwarechannel.py:788 #: ../src/spacecmd/system.py:3798 @@ -982,7 +982,7 @@ msgstr "" #. get the contents of the script #: ../src/spacecmd/configchannel.py:638 ../src/spacecmd/configchannel.py:946 -#: ../src/spacecmd/cryptokey.py:69 ../src/spacecmd/kickstart.py:2033 +#: ../src/spacecmd/cryptokey.py:109 ../src/spacecmd/kickstart.py:2033 #: ../src/spacecmd/snippet.py:143 msgid "Read an existing file [y/N]:" msgstr "" @@ -1396,59 +1396,73 @@ msgid "" " -f KEY_FILE" msgstr "" -#: ../src/spacecmd/cryptokey.py:63 +#: ../src/spacecmd/cryptokey.py:69 +msgid "cryptokey_update: Update a cryptographic key" +msgstr "" + +#: ../src/spacecmd/cryptokey.py:70 +msgid "" +"usage: cryptokey_update [options])\n" +"\n" +"options:\n" +" -t GPG or SSL\n" +" -d DESCRIPTION\n" +" -f KEY_FILE" +msgstr "" + +#: ../src/spacecmd/cryptokey.py:103 msgid "GPG or SSL [G/S]:" msgstr "" -#: ../src/spacecmd/cryptokey.py:76 +#: ../src/spacecmd/cryptokey.py:116 msgid "The key type is required" msgstr "" -#: ../src/spacecmd/cryptokey.py:80 +#: ../src/spacecmd/cryptokey.py:120 msgid "A description is required" msgstr "" -#: ../src/spacecmd/cryptokey.py:84 +#: ../src/spacecmd/cryptokey.py:124 msgid "A file containing the key is required" msgstr "" -#: ../src/spacecmd/cryptokey.py:92 +#: ../src/spacecmd/cryptokey.py:132 msgid "No contents of the file" msgstr "" -#: ../src/spacecmd/cryptokey.py:101 +#: ../src/spacecmd/cryptokey.py:141 msgid "Invalid key type" msgstr "" -#: ../src/spacecmd/cryptokey.py:115 +#: ../src/spacecmd/cryptokey.py:150 msgid "cryptokey_delete: Delete a cryptographic key" msgstr "" -#: ../src/spacecmd/cryptokey.py:116 +#: ../src/spacecmd/cryptokey.py:151 msgid "usage: cryptokey_delete NAME" msgstr "" -#: ../src/spacecmd/cryptokey.py:147 +#: ../src/spacecmd/cryptokey.py:182 msgid "Delete key(s) [y/N]:" msgstr "" -#: ../src/spacecmd/cryptokey.py:158 +#: ../src/spacecmd/cryptokey.py:193 msgid "cryptokey_list: List all cryptographic keys (SSL, GPG)" msgstr "" -#: ../src/spacecmd/cryptokey.py:159 +#: ../src/spacecmd/cryptokey.py:194 msgid "usage: cryptokey_list" msgstr "" -#: ../src/spacecmd/cryptokey.py:177 +#: ../src/spacecmd/cryptokey.py:212 msgid "cryptokey_details: Show the contents of a cryptographic key" msgstr "" -#: ../src/spacecmd/cryptokey.py:178 +#: ../src/spacecmd/cryptokey.py:213 msgid "usage: cryptokey_details KEY ..." msgstr "" -#: ../src/spacecmd/cryptokey.py:210 +#: ../src/spacecmd/cryptokey.py:245 #, python-format msgid "%s is not a valid crypto key" msgstr "" diff --git a/spacecmd/po/zh_CN.po b/spacecmd/po/zh_CN.po index ec0fbc69502b..5735a69e5ba4 100644 --- a/spacecmd/po/zh_CN.po +++ b/spacecmd/po/zh_CN.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-30 15:18+0200\n" +"POT-Creation-Date: 2023-07-28 15:10+0200\n" "PO-Revision-Date: 2023-06-26 04:15+0000\n" "Last-Translator: Grace Yu \n" "Language-Team: Chinese (China) 1320 || 0%{?rhel} >= 8 -%global build_py3 1 -%endif - -%define pythonX %{?build_py3: python3}%{!?build_py3: python} - Summary: Various utility scripts and data files for Spacewalk installations License: GPL-2.0-only Group: Applications/Internet @@ -32,7 +26,7 @@ Version: 4.4.5 Release: 1 Source0: https://github.com/uyuni-project/uyuni/archive/%{name}-%{version}.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-build -Requires: %{pythonX} +Requires: python3 Requires: lsof Requires: procps Requires: python3-websockify @@ -79,9 +73,6 @@ mkdir -p $RPM_BUILD_ROOT%{_mandir}/man8/ %{_bindir}/pod2man --section=8 man/rhn-deploy-ca-cert.pl.pod > $RPM_BUILD_ROOT%{_mandir}/man8/rhn-deploy-ca-cert.pl.8 %{_bindir}/pod2man --section=8 man/rhn-install-ssl-cert.pl.pod > $RPM_BUILD_ROOT%{_mandir}/man8/rhn-install-ssl-cert.pl.8 chmod 0644 $RPM_BUILD_ROOT%{_mandir}/man8/*.8* -%if 0%{?build_py3} -sed -i 's|#!/usr/bin/python|#!/usr/bin/python3|' $RPM_BUILD_ROOT/usr/bin/salt-secrets-config.py -%endif %post if [ -x /usr/bin/systemctl ]; then @@ -118,6 +109,7 @@ fi %{_unitdir}/salt-secrets-config.service %{_unitdir}/cobbler-refresh-mkloaders.service %{_unitdir}/mgr-websockify.service +%{_unitdir}/mgr-check-payg.service %{_unitdir}/uyuni-check-database.service %{_unitdir}/uyuni-update-config.service %{_unitdir}/*.service.d diff --git a/spacewalk/admin/spacewalk-startup-helper b/spacewalk/admin/spacewalk-startup-helper index 607c2f0275c3..774ca8ee9d0a 100755 --- a/spacewalk/admin/spacewalk-startup-helper +++ b/spacewalk/admin/spacewalk-startup-helper @@ -26,6 +26,42 @@ perform_report_db_schema_upgrade() { fi } +isPayg() { + if [ ! -x /usr/bin/instance-flavor-check ]; then + return 1 + fi + + TYPE=$(/usr/bin/instance-flavor-check) + [ "$TYPE" == "PAYG" ] +} + +enforce_service_installed_running() { + PACKAGE_NAME=$1 + SERVICE_NAME=$2 + isPayg + if [ $? -eq 0 ]; then + + rpm -q $PACKAGE_NAME + if [ $? -ne 0 ]; then + echo "$PACKAGE_NAME not installed. Installing now..." + zypper --non-interactive install $PACKAGE_NAME + systemctl start $SERVICE_NAME + fi + + systemctl is-active --quiet $SERVICE_NAME + if [ $? -ne 0 ]; then + echo "$SERVICE_NAME needs to be running." + exit 1 + fi + + fi +} + +check_billing_service() { + enforce_service_installed_running billing-data-service billing-data-service + enforce_service_installed_running csp-billing-adapter-service csp-billing-adapter +} + check_schema_version() { MIN_JAVA_SCHEMA=$( egrep -m1 "^java.min_schema_version[[:space:]]*=" /usr/share/rhn/config-defaults/rhn_java.conf | sed 's/^java.min_schema_version[[:space:]]*=[[:space:]]*\(.*\)/\1/' || echo "" ) CMP=$(echo "select evr_t_compare(X.evr, evr_t('0', '$MIN_JAVA_SCHEMA', '0', 'rpm')) from (select PE.evr from rhnVersionInfo vi join rhnPackageEVR pe on vi.evr_id = pe.id where vi.label = 'schema') X;" | spacewalk-sql --select-mode - | sed -n 3p | xargs) @@ -228,4 +264,5 @@ case $1 in wait-for-database) check_database;; check-database) check_database;; wait-for-taskomatic) wait_for_taskomatic;; + check-billing-service) check_billing_service;; esac diff --git a/spacewalk/admin/spacewalk.target b/spacewalk/admin/spacewalk.target index 246ead37fec0..8cc62b6cd735 100644 --- a/spacewalk/admin/spacewalk.target +++ b/spacewalk/admin/spacewalk.target @@ -1,5 +1,6 @@ [Unit] Description=Spacewalk +Requires=mgr-check-payg.service Requires=uyuni-update-config.service Requires=uyuni-check-database.service Requires=tomcat.service diff --git a/spacewalk/certs-tools/Makefile.certs b/spacewalk/certs-tools/Makefile.certs index 65513d5ad06a..8cc42ee4ca1b 100644 --- a/spacewalk/certs-tools/Makefile.certs +++ b/spacewalk/certs-tools/Makefile.certs @@ -18,7 +18,7 @@ SUBDIR = certs FILES = __init__ rhn_ssl_tool sslToolCli sslToolConfig sslToolLib \ - timeLib rhn_bootstrap rhn_bootstrap_strings client_config_update \ + timeLib rhn_bootstrap rhn_bootstrap_strings \ mgr_ssl_cert_setup INSTALL_ROOT_FILES = gen-rpm.sh sign.sh update-ca-cert-trust.sh @@ -51,17 +51,9 @@ install :: $(SBINFILES) $(BINFILES) $(PYBINFILES) $(MANS) $(PREFIX)/$(MANDIR) $(INSTALL_BIN) $(f) $(PREFIX)$(BINDIR)/$(f) ; ) $(foreach f,$(PYBINFILES), \ $(INSTALL_BIN) $(f) $(PREFIX)$(BINDIR)/$(f)-$(PYTHONVERSION) ; ) - -install :: instClientScript @$(foreach f,$(INSTALL_ROOT_FILES), \ $(INSTALL_DATA) $(f) $(PREFIX)$(ROOT)/$(SUBDIR)/$(f) ; ) -# note: this file is in two places. One in the RPM and one in pub/bootstrap/ -instClientScript: $(PUB_BOOTSTRAP_DIR)/client_config_update.py - -$(PUB_BOOTSTRAP_DIR)/client_config_update.py : $(PREFIX)/$(PUB_BOOTSTRAP_DIR) client_config_update.py - install -m 0755 client_config_update.py $(PREFIX)/$@ - %.$(MANSECT) : %.sgml /usr/bin/docbook2man $< diff --git a/spacewalk/certs-tools/client_config_update.py b/spacewalk/certs-tools/client_config_update.py deleted file mode 100755 index bf8bebf2ede3..000000000000 --- a/spacewalk/certs-tools/client_config_update.py +++ /dev/null @@ -1,216 +0,0 @@ -#!/usr/bin/python -u -# -# Copyright (c) 2008--2013 Red Hat, Inc. -# -# This software is licensed to you under the GNU General Public License, -# version 2 (GPLv2). There is NO WARRANTY for this software, express or -# implied, including the implied warranties of MERCHANTABILITY or FITNESS -# FOR A PARTICULAR PURPOSE. You should have received a copy of GPLv2 -# along with this software; if not, see -# http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt. -# -# Red Hat trademarks are not licensed under GPLv2. No permission is -# granted to use or replicate Red Hat trademarks that are incorporated -# in this software or its documentation. -# -# key=value formatted "config file" mapping script -# -# NOT TO BE USED DIRECTLY -# This is called by a script generated by the rhn-bootstrap utility. -# -# Specifically engineered with the RHN Update Agent configuration files -# in mind though it is relatively generic in nature. -# -# Author: Todd Warner -# - -""" -Client configuration mapping script that writes to an SUSE Manager Update Agent-type -config file(s) - -I.e., maps a file with SUSE Manager Update Agent-like key=value pairs e.g., -serverURL=https://test-satellite.example.redhat.com/XMLRPC -enableProxy=0 -sslCACert=/usr/share/rhn/RHN-ORG-TRUSTED-SSL-CERT - -And maps that to the client's configuration files. - -------------- -To map new settings to a file that uses the format key=value, where -key[comment]=value is a comment line you do this (e.g., mapping -key=value pairs to /etc/sysconfig/rhn/up2date): - - 1. edit a file (e.g., 'client-config-overrides.txt'), inputing new key=value pairs - to replace in config file (e.g., /etc/sysconfig/rhn/up2date). - Specifically: -serverURL=https://test-satellite.example.redhat.com/XMLRPC - - 2. ./client_config_update.py /etc/sysconfig/rhn/up2date client-config-overrides.txt - -That's all there is to it. - -If you are running an older RHN Update Agent, the rhn_register file can be -mapped as well: - - ./client_config_update.py /etc/sysconfig/rhn/rhn_register client-config-overrides.txt -""" - - -from __future__ import print_function -import os -import sys -import tempfile - -DEFAULT_CLIENT_CONFIG_OVERRIDES = 'client-config-overrides.txt' - -RHN_REGISTER = "/etc/sysconfig/rhn/rhn_register" -UP2DATE = "/etc/sysconfig/rhn/up2date" - - -def _parseConfigLine(line): - """parse a line from a config file. Format can be either "key=value\n" - or "whatever text\n" - - return either: - (key, value) - or - None - The '\n' is always stripped from the value. - """ - - kv = line.decode('utf8').split('=') - if len(kv) < 2: - # not a setting - return None - - if len(kv) > 2: - # '=' is part of the value, need to rejoin it. - kv = [kv[0], '='.join(kv[1:])] - - if kv[0].find('[comment]') > 0: - # comment; not a setting - return None - - # it's a setting, trim the '\n' and return the (key, value) pair. - kv[0] = kv[0].strip() - kv[1] = kv[1].strip() - return tuple(kv) - -def readConfigFile(configFile): - "read in config file, return dictionary of key/value pairs" - - fin = open(configFile, 'rb') - - d = {} - - for line in fin.readlines(): - kv = _parseConfigLine(line) - if kv: - d[kv[0]] = kv[1] - return d - - -def dumpConfigFile(configFile): - "print out dictionary of key/value pairs from configFile" - - import pprint - pprint.pprint(readConfigFile(configFile)) - - -def mapNewSettings(configFile, dnew): - fo = tempfile.TemporaryFile(prefix = '/tmp/client-config-overrides-', mode = 'r+b') - fin = open(configFile, 'rb') - - changedYN = 0 - - # write to temp file - for line in fin.readlines(): - kv = _parseConfigLine(line) - if not kv: - # not a setting, write the unaltered line - fo.write(line) - else: - # it's a setting, populate from the dictionary - if kv[0] in dnew: - if dnew[kv[0]] != kv[1]: - fo.write(('%s=%s\n' % (kv[0], dnew[kv[0]])).encode('utf8')) - changedYN = 1 - else: - fo.write(line) - # it's a setting but not being mapped - else: - fo.write(line) - fin.close() - - if changedYN: - # write from temp file to configFile - fout = open(configFile, 'wb') - fo.seek(0) - fout.write(fo.read()) - print('*', configFile, 'written') - - -def parseCommandline(): - """parse/process the commandline - - Commandline is dead simple for easiest portability. - """ - - # USAGE & HELP! - if '--usage' in sys.argv or '-h' in sys.argv or '--help' in sys.argv: - print("""\ -usage: python %s CONFIG_FILENAME NEW_MAPPINGS [options] -arguments: - CONFIG_FILENAME config file to alter - NEW_MAPPINGS file containing new settings that map onto the - config file -options: - -h, --help show this help message and exit - --usage show brief usage summary - -examples: - python %s %s %s - python %s %s %s -""" % (sys.argv[0], - sys.argv[0], RHN_REGISTER, DEFAULT_CLIENT_CONFIG_OVERRIDES, - sys.argv[0], UP2DATE, DEFAULT_CLIENT_CONFIG_OVERRIDES)) - - sys.exit(0) - - - if len(sys.argv) != 3: - msg = "ERROR: exactly two arguments are required, see --help" - raise TypeError(msg) - - configFilename = os.path.abspath(sys.argv[1]) - newMappings = os.path.abspath(sys.argv[2]) - - if not os.path.exists(configFilename): - msg = ("ERROR: filename to alter (1st argument), does not exist:\n" - " %s" - % configFilename) - raise IOError(msg) - - if not os.path.exists(newMappings): - msg = ("ERROR: filename that contains the mappings (2nd argument), " - "does not exist:\n" - " %s" % newMappings) - raise IOError(msg) - - return configFilename, newMappings - - -def main(): - "parse commandline, process config file key=value mappings" - - configFilename, newMappings = parseCommandline() - #dumpConfigFile(configFilename) - #mapNewSettings('test-up2date', readConfigFile(DEFAULT_CLIENT_CONFIG_OVERRIDES)) - - mapNewSettings(configFilename, readConfigFile(newMappings)) - -if __name__ == '__main__': - try: - sys.exit(main() or 0) - except Exception as err: - print(err) diff --git a/spacewalk/certs-tools/gen-test-cert-chain.sh b/spacewalk/certs-tools/gen-test-cert-chain.sh index 3e90e2532aa0..663def3aa723 100755 --- a/spacewalk/certs-tools/gen-test-cert-chain.sh +++ b/spacewalk/certs-tools/gen-test-cert-chain.sh @@ -6,6 +6,10 @@ DIR=demoCA PASSWORD="secret" +# rsa, or any of "openssl ecparam -list_curves" +#PKEYALGO="secp384r1" +PKEYALGO="rsa" + ROOTCA="RootCA" ORGCA="OrgCa" TEAMCA="TeamCA" @@ -38,7 +42,7 @@ dir = ./$DIR database = \$dir/index.txt serial = \$dir/serial new_certs_dir = \$dir/newcerts -default_md = sha256 +default_md = sha384 default_days = 365 # how closely we follow policy @@ -96,22 +100,37 @@ OPENSSLCNF export commonname=$ROOTCA export subaltname="" -openssl req -config $DIR/openssl.cnf -extensions req_ca_x509_extensions -new -x509 -keyout $DIR/$ROOTCA.key -out $DIR/$ROOTCA.crt -days 1024 -passout pass:$PASSWORD +if [ $PKEYALGO = "rsa" ]; then + openssl genrsa -out $DIR/$ROOTCA.key -passout pass:$PASSWORD -aes256 2048 +else + openssl ecparam -genkey -name $PKEYALGO | openssl ec -aes256 -passout pass:$PASSWORD -out $DIR/$ROOTCA.key +fi + +openssl req -config $DIR/openssl.cnf -extensions req_ca_x509_extensions -new -x509 -key $DIR/$ROOTCA.key -out $DIR/$ROOTCA.crt -days 1024 -passin pass:$PASSWORD #----------------------------------------------------------------- export commonname=$ORGCA -openssl genrsa -out $DIR/private/$commonname.key -passout pass:$PASSWORD 2048 +if [ $PKEYALGO = "rsa" ]; then + openssl genrsa -out $DIR/private/$commonname.key -passout pass:$PASSWORD -aes256 2048 +else + openssl ecparam -genkey -name $PKEYALGO | openssl ec -aes256 -passout pass:$PASSWORD -out $DIR/private/$commonname.key +fi + -openssl req -config $DIR/openssl.cnf -extensions req_ca_x509_extensions -new -key $DIR/private/$commonname.key -out $DIR/requests/$commonname.csr +openssl req -config $DIR/openssl.cnf -extensions req_ca_x509_extensions -new -key $DIR/private/$commonname.key -out $DIR/requests/$commonname.csr -passin pass:$PASSWORD openssl ca -config $DIR/openssl.cnf -create_serial -extensions req_ca_x509_extensions -in $DIR/requests/$commonname.csr -keyfile $DIR/$ROOTCA.key \ -cert $DIR/$ROOTCA.crt -passin pass:$PASSWORD -out $DIR/certs/$commonname.crt -days 500 -batch #----------------------------------------------------------------- export commonname=$TEAMCA -openssl genrsa -out $DIR/private/$commonname.key -passout pass:$PASSWORD 2048 +if [ $PKEYALGO = "rsa" ]; then + openssl genrsa -out $DIR/private/$commonname.key -passout pass:$PASSWORD -aes256 2048 +else + openssl ecparam -genkey -name $PKEYALGO | openssl ec -aes256 -passout pass:$PASSWORD -out $DIR/private/$commonname.key +fi -openssl req -config $DIR/openssl.cnf -extensions req_ca_x509_extensions -new -key $DIR/private/$commonname.key -out $DIR/requests/$commonname.csr +openssl req -config $DIR/openssl.cnf -extensions req_ca_x509_extensions -new -key $DIR/private/$commonname.key -out $DIR/requests/$commonname.csr -passin pass:$PASSWORD openssl ca -config $DIR/openssl.cnf -create_serial -extensions req_ca_x509_extensions -in $DIR/requests/$commonname.csr -keyfile $DIR/private/$ORGCA.key \ -cert $DIR/certs/$ORGCA.crt -passin pass:$PASSWORD -out $DIR/certs/$commonname.crt -days 400 -batch @@ -119,17 +138,25 @@ openssl ca -config $DIR/openssl.cnf -create_serial -extensions req_ca_x509_exten #----------------------------------------------------------------- export commonname=$SRVCRT export subaltname=$SRVALTNAME -openssl genrsa -out $DIR/private/$commonname.key -passout pass:$PASSWORD 2048 +if [ $PKEYALGO = "rsa" ]; then + openssl genrsa -out $DIR/private/$commonname.key -passout pass:$PASSWORD -aes256 2048 +else + openssl ecparam -genkey -name $PKEYALGO | openssl ec -aes256 -passout pass:$PASSWORD -out $DIR/private/$commonname.key +fi -openssl req -config $DIR/openssl.cnf -extensions req_server_x509_extensions -new -key $DIR/private/$commonname.key -out $DIR/requests/$commonname.csr +openssl req -config $DIR/openssl.cnf -extensions req_server_x509_extensions -new -key $DIR/private/$commonname.key -out $DIR/requests/$commonname.csr -passin pass:$PASSWORD openssl ca -config $DIR/openssl.cnf -create_serial -extensions req_server_x509_extensions -in $DIR/requests/$commonname.csr -keyfile $DIR/private/$TEAMCA.key \ -cert $DIR/certs/$TEAMCA.crt -passin pass:$PASSWORD -out $DIR/certs/$commonname.crt -days 365 -batch mkdir -p $DIR/package -cp $DIR/$ROOTCA.crt $DIR/package/root-ca.crt +openssl x509 -text -in $DIR/$ROOTCA.crt > $DIR/package/root-ca.crt cat $DIR/certs/$ORGCA.crt $DIR/certs/$TEAMCA.crt > $DIR/package/intermediate-ca.crt cp $DIR/certs/$SRVCRT.crt $DIR/package/server.crt -cp $DIR/private/$SRVCRT.key $DIR/package/server.key +if [ $PKEYALGO = "rsa" ]; then + openssl rsa -passin pass:$PASSWORD -in $DIR/private/$SRVCRT.key -out $DIR/package/server.key +else + openssl ec -passin pass:$PASSWORD -in $DIR/private/$SRVCRT.key -out $DIR/package/server.key +fi echo "Test Certificates in $DIR/package/" diff --git a/spacewalk/certs-tools/mgr-bootstrap.sgml b/spacewalk/certs-tools/mgr-bootstrap.sgml index 981ee85d66a7..17093f450488 100644 --- a/spacewalk/certs-tools/mgr-bootstrap.sgml +++ b/spacewalk/certs-tools/mgr-bootstrap.sgml @@ -185,7 +185,6 @@ Files /usr/bin/mgr-bootstrap - /usr/bin/client_config_update.py /usr/bin/client-config-overrides.txt diff --git a/spacewalk/certs-tools/mgr_ssl_cert_setup.py b/spacewalk/certs-tools/mgr_ssl_cert_setup.py index f3dae130dc1f..26ac41be2fdf 100755 --- a/spacewalk/certs-tools/mgr_ssl_cert_setup.py +++ b/spacewalk/certs-tools/mgr_ssl_cert_setup.py @@ -56,6 +56,7 @@ class CertCheckError(Exception): pass +privatekeytype = "unknown" FilesContent = namedtuple("FilesContent", ["root_ca", "server_cert", "server_key", "intermediate_cas"]) def log_error(msg): @@ -298,33 +299,42 @@ def getCertWithText(cert): return out.stdout.decode("utf-8") -def getRsaKey(key): +def getPrivateKey(key): + if "-----BEGIN RSA PRIVATE KEY-----" in key: + privatekeytype = "rsa" + elif "-----BEGIN EC PRIVATE KEY-----" in key: + privatekeytype = "ec" + else: + log_error("Unknown Private Key type") + return None + # set an invalid password to prevent asking in case of an encrypted one out = subprocess.run( - ["openssl", "rsa", "-passin", "pass:invalid"], + ["openssl", privatekeytype, "-passin", "pass:invalid"], stdout=subprocess.PIPE, stderr=subprocess.PIPE, input=key.encode("utf-8") ) + if out.returncode: - log_error("Invalid RSA Key: {}".format(out.stderr.decode("utf-8"))) + log_error("Invalid {} Key: {}".format(privatekeytype.upper(), out.stderr.decode("utf-8"))) return None return out.stdout.decode("utf-8") def checkKeyBelongToCert(key, cert): out = subprocess.run( - ["openssl", "rsa", "-noout", "-modulus"], + ["openssl", "pkey", "-pubout"], stdout=subprocess.PIPE, stderr=subprocess.PIPE, input=key.encode("utf-8"), ) if out.returncode: - log_error("Invalid RSA Key: {}".format(out.stderr.decode("utf-8"))) + log_error("Invalid {} Key: {}".format(privatekeytype.upper(), out.stderr.decode("utf-8"))) raise CertCheckError("Invalid Key") - keyModulus = out.stdout.decode("utf-8") + keyPubKey = out.stdout.decode("utf-8") out = subprocess.run( - ["openssl", "x509", "-noout", "-modulus"], + ["openssl", "x509", "-noout", "-pubkey"], stdout=subprocess.PIPE, stderr=subprocess.PIPE, input=cert.encode("utf-8"), @@ -333,9 +343,10 @@ def checkKeyBelongToCert(key, cert): log_error("Invalid Cert file: {}".format(out.stderr.decode("utf-8"))) raise CertCheckError("Invalid Certificate") - certModulus = out.stdout.decode("utf-8") - if keyModulus != certModulus: + certPubKey = out.stdout.decode("utf-8") + if keyPubKey != certPubKey: log_error("The provided key does not belong to the server certificate") + log("{} vs. {}".format(keyPubKey, certPubKey), 1) raise CertCheckError("Key does not belong to Certificate") @@ -472,6 +483,25 @@ def deployPg(server_key_content): log("""$> systemctl restart postgresql.service """) +def deployCAInDB(certData): + if not os.path.exists("/usr/bin/rhn-ssl-dbstore"): + # not a Uyuni Server - skip deploying into DB + return + + for h, ca in certData.items(): + if ca["root"]: + out = subprocess.run( + ["/usr/bin/rhn-ssl-dbstore", "--ca-cert", "-"], + stdout=subprocess.PIPE, + stderr=subprocess.PIPE, + input=ca["content"].encode("utf-8"), + ) + if out.returncode: + log_error("Failed to upload CA Certificate to DB: {}".format(out.stderr.decode("utf-8"))) + raise OSError("Failed to upload CA Certificate to DB") + break + + def deployCAUyuni(certData): for h, ca in certData.items(): if ca["root"]: @@ -501,8 +531,8 @@ def checks(server_key_content,server_cert_content, certData): """ Perform different checks on the input data """ - if not getRsaKey(server_key_content): - raise CertCheckError("Unable to read the server key. Encrypted?") + if not getPrivateKey(server_key_content): + raise CertCheckError("Unable to read the server key. Is it maybe encrypted?") checkKeyBelongToCert(server_key_content, server_cert_content) @@ -557,6 +587,7 @@ def _main(): deployApache(apache_cert_content, files_content.server_key) deployPg(files_content.server_key) deployCAUyuni(certData) + deployCAInDB(certData) def main(): diff --git a/spacewalk/certs-tools/rhn_bootstrap.py b/spacewalk/certs-tools/rhn_bootstrap.py index 3aaffcc2e19d..8b098b186087 100755 --- a/spacewalk/certs-tools/rhn_bootstrap.py +++ b/spacewalk/certs-tools/rhn_bootstrap.py @@ -39,7 +39,6 @@ ## local imports from uyuni.common import rhn_rpm from spacewalk.common.rhnConfig import CFG, initCFG -from .client_config_update import readConfigFile from .rhn_bootstrap_strings import \ getHeader, getGPGKeyImportSh, \ getCorpCACertSh, getRegistrationStackSh, \ @@ -66,6 +65,8 @@ initCFG('server') DOC_ROOT = CFG.DOCUMENTROOT +initCFG('java') + DEFAULT_APACHE_PUB_DIRECTORY = DOC_ROOT + '/pub' DEFAULT_OVERRIDES = 'client-config-overrides.txt' DEFAULT_SCRIPT = 'bootstrap.sh' @@ -83,6 +84,47 @@ errnoCANotFound = 16 errnoGPGNotFound = 17 +def _parseConfigLine(line): + """parse a line from a config file. Format can be either "key=value\n" + or "whatever text\n" + + return either: + (key, value) + or + None + The '\n' is always stripped from the value. + """ + + kv = line.decode('utf8').split('=') + if len(kv) < 2: + # not a setting + return None + + if len(kv) > 2: + # '=' is part of the value, need to rejoin it. + kv = [kv[0], '='.join(kv[1:])] + + if kv[0].find('[comment]') > 0: + # comment; not a setting + return None + + # it's a setting, trim the '\n' and return the (key, value) pair. + kv[0] = kv[0].strip() + kv[1] = kv[1].strip() + return tuple(kv) + +def readConfigFile(configFile): + "read in config file, return dictionary of key/value pairs" + + fin = open(configFile, 'rb') + + d = {} + + for line in fin.readlines(): + kv = _parseConfigLine(line) + if kv: + d[kv[0]] = kv[1] + return d # should come out of common code when we move this code out of # rhns-certs-tools @@ -154,7 +196,7 @@ def getDefaultOptions(): 'activation-keys': '', 'overrides': DEFAULT_OVERRIDES, 'script': DEFAULT_SCRIPT, - 'hostname': socket.getfqdn(), + 'hostname': CFG.HOSTNAME if CFG.has_key('hostname') else socket.getfqdn(), 'ssl-cert': '', # will trigger a search 'gpg-key': "", 'http-proxy': "", @@ -498,8 +540,6 @@ def writeClientConfigOverrides(options): fout.write("""\ # RHN Client (rhn_register/up2date) config-overrides file v4.0 # -# To be used only in conjuction with client_config_update.py -# # This file was autogenerated. # # The simple rules: diff --git a/spacewalk/certs-tools/rhn_bootstrap_strings.py b/spacewalk/certs-tools/rhn_bootstrap_strings.py index 89dc320575f9..abe2ed4e01af 100644 --- a/spacewalk/certs-tools/rhn_bootstrap_strings.py +++ b/spacewalk/certs-tools/rhn_bootstrap_strings.py @@ -605,7 +605,7 @@ def getRegistrationStackSh(): call_tukit "zypper --non-interactive update {PKG_NAME_VENV_UPDATE} ||:" fi else - if [ -z "$SNAPSHOT_ID"]; then + if [ -z "$SNAPSHOT_ID" ]; then zypper --non-interactive up {PKG_NAME_UPDATE} $RHNLIB_PKG ||: else call_tukit "zypper --non-interactive update {PKG_NAME_UPDATE} $RHNLIB_PKG ||:" @@ -896,12 +896,14 @@ def getRegistrationSaltSh(productName): fi MINION_ID_FILE="${{SNAPSHOT_PREFIX}}/etc/salt/minion_id" +MINION_PKI_CONF="${{SNAPSHOT_PREFIX}}/etc/salt/pki" MINION_CONFIG_DIR="${{SNAPSHOT_PREFIX}}/etc/salt/minion.d" SUSEMANAGER_MASTER_FILE="${{MINION_CONFIG_DIR}}/susemanager.conf" MINION_SERVICE="salt-minion" if [ $VENV_ENABLED -eq 1 ]; then MINION_ID_FILE="${{SNAPSHOT_PREFIX}}/etc/venv-salt-minion/minion_id" + MINION_PKI_CONF="${{SNAPSHOT_PREFIX}}/etc/venv-salt-minion/pki" MINION_CONFIG_DIR="${{SNAPSHOT_PREFIX}}/etc/venv-salt-minion/minion.d" SUSEMANAGER_MASTER_FILE="${{MINION_CONFIG_DIR}}/susemanager.conf" MINION_SERVICE="venv-salt-minion" @@ -951,6 +953,11 @@ def getRegistrationSaltSh(productName): SALT_RUNNING: 1 EOF +# Remove old minion keys so reregistration do different master works +if [ -d "$MINION_PKI_CONF" ]; then + rm -r "$MINION_PKI_CONF" +fi + if [ -n "$SNAPSHOT_ID" ]; then cat <> "${{MINION_CONFIG_DIR}}/transactional_update.conf" # Enable the transactional_update executor diff --git a/spacewalk/certs-tools/spacewalk-certs-tools.changes b/spacewalk/certs-tools/spacewalk-certs-tools.changes index 05b2d2956e89..75043df1d282 100644 --- a/spacewalk/certs-tools/spacewalk-certs-tools.changes +++ b/spacewalk/certs-tools/spacewalk-certs-tools.changes @@ -1,4 +1,5 @@ - Add openssl3 compatibility. +- mgr-bootstrap read the hostname from rhn.conf if possible - Read CA password from a file - Also ship SUSE specific files on Enterprise Linux. - Use the CA cert in the pki config to generate build host rpm diff --git a/spacewalk/certs-tools/spacewalk-certs-tools.changes.mbussolotto.remove_client_config_update b/spacewalk/certs-tools/spacewalk-certs-tools.changes.mbussolotto.remove_client_config_update new file mode 100644 index 000000000000..e5dff0de0831 --- /dev/null +++ b/spacewalk/certs-tools/spacewalk-certs-tools.changes.mbussolotto.remove_client_config_update @@ -0,0 +1 @@ +- Remove client_config_update.py diff --git a/spacewalk/certs-tools/spacewalk-certs-tools.changes.mbussolotto.reregistering b/spacewalk/certs-tools/spacewalk-certs-tools.changes.mbussolotto.reregistering new file mode 100644 index 000000000000..524d9c4fa723 --- /dev/null +++ b/spacewalk/certs-tools/spacewalk-certs-tools.changes.mbussolotto.reregistering @@ -0,0 +1 @@ +- Remove server keys to allow reregistering to different master diff --git a/spacewalk/certs-tools/spacewalk-certs-tools.changes.mcalmer.store-ca-in-db b/spacewalk/certs-tools/spacewalk-certs-tools.changes.mcalmer.store-ca-in-db new file mode 100644 index 000000000000..4e778b6e8d77 --- /dev/null +++ b/spacewalk/certs-tools/spacewalk-certs-tools.changes.mcalmer.store-ca-in-db @@ -0,0 +1 @@ +- mgr-ssl-cert-setup: store CA certificate in database (bsc#1212856) diff --git a/spacewalk/certs-tools/spacewalk-certs-tools.changes.mcalmer.support-ec-crypto-keys-in-certs b/spacewalk/certs-tools/spacewalk-certs-tools.changes.mcalmer.support-ec-crypto-keys-in-certs new file mode 100644 index 000000000000..bc2f4dfd05fc --- /dev/null +++ b/spacewalk/certs-tools/spacewalk-certs-tools.changes.mcalmer.support-ec-crypto-keys-in-certs @@ -0,0 +1 @@ +- support EC Cryptography with mgr-ssl-cert-setup diff --git a/spacewalk/certs-tools/spacewalk-certs-tools.spec b/spacewalk/certs-tools/spacewalk-certs-tools.spec index fbb69106fb9c..ff9c2dd391fd 100644 --- a/spacewalk/certs-tools/spacewalk-certs-tools.spec +++ b/spacewalk/certs-tools/spacewalk-certs-tools.spec @@ -87,7 +87,7 @@ sed -i 's|etc/httpd/conf|etc/apache2|g' ssl-howto.txt %install install -d -m 755 $RPM_BUILD_ROOT/%{rhnroot}/certs -sed -i '1s|python\b|python3|' rhn-ssl-tool mgr-package-rpm-certificate-osimage rhn-bootstrap client_config_update.py +sed -i '1s|python\b|python3|' rhn-ssl-tool mgr-package-rpm-certificate-osimage rhn-bootstrap make -f Makefile.certs install PREFIX=$RPM_BUILD_ROOT ROOT=%{rhnroot} \ PYTHONPATH=%{python3_sitelib} PYTHONVERSION=%{python3_version} \ MANDIR=%{_mandir} PUB_BOOTSTRAP_DIR=%{pub_bootstrap_dir} @@ -126,7 +126,6 @@ ln -s spacewalk-ssh-push-init $RPM_BUILD_ROOT/%{_sbindir}/mgr-ssh-push-init %doc %{_mandir}/man1/mgr-*.1* %doc ssl-howto-simple.txt ssl-howto.txt %license LICENSE -%{pub_bootstrap_dir}/client_config_update.py* %dir %{rhnroot} %dir %{pub_dir} %dir %{pub_bootstrap_dir} diff --git a/spacewalk/certs-tools/spacewalk-ssh-push-init b/spacewalk/certs-tools/spacewalk-ssh-push-init index d95629abf93a..08e505a505fc 100755 --- a/spacewalk/certs-tools/spacewalk-ssh-push-init +++ b/spacewalk/certs-tools/spacewalk-ssh-push-init @@ -268,7 +268,7 @@ if [ "${USE_TUNNEL}" = "Y" ]; then exit_in_case_of_error echo "* Cleaning up temporary files" - ssh -i ${SSH_IDENTITY} ${OPTIONS} ${USER}@${CLIENT} "rm -fv enable.sh bootstrap.sh client-config-overrides-tunnel.txt client_config_update.py" + ssh -i ${SSH_IDENTITY} ${OPTIONS} ${USER}@${CLIENT} "rm -fv enable.sh bootstrap.sh client-config-overrides-tunnel.txt" cleanup_temp_files elif [ -n "${BOOTSTRAP}" ]; then # Simple registration with given bootstrap script @@ -278,5 +278,5 @@ elif [ -n "${BOOTSTRAP}" ]; then exit_in_case_of_error echo "* Cleaning up temporary files remotely" - ssh -i ${SSH_IDENTITY} ${OPTIONS} ${USER}@${CLIENT} "rm -fv bootstrap.sh client-config-overrides.txt client_config_update.py" + ssh -i ${SSH_IDENTITY} ${OPTIONS} ${USER}@${CLIENT} "rm -fv bootstrap.sh client-config-overrides.txt" fi diff --git a/spacewalk/config/etc/sudoers.d/spacewalk b/spacewalk/config/etc/sudoers.d/spacewalk index e292b5efc3c5..f52f67d4386b 100644 --- a/spacewalk/config/etc/sudoers.d/spacewalk +++ b/spacewalk/config/etc/sudoers.d/spacewalk @@ -4,7 +4,8 @@ Cmnd_Alias CONFIG_RHN = /usr/sbin/rhn-sat-restart-silent,\ /usr/bin/rhn-bootstrap,\ /usr/bin/rhn-ssl-tool,\ /sbin/service taskomatic restart,\ - /usr/sbin/mgr-monitoring-ctl + /usr/sbin/mgr-monitoring-ctl,\ + /usr/bin/instance-flavor-check # The CONFIG_RHN commands are required for reconfiguration of a # running Red Hat Satellite. They should be enabled for proper operation diff --git a/spacewalk/config/spacewalk-config.changes.mc.Manager-4.3-suma-payg-scc-fw-warning b/spacewalk/config/spacewalk-config.changes.mc.Manager-4.3-suma-payg-scc-fw-warning new file mode 100644 index 000000000000..f0f206ac9793 --- /dev/null +++ b/spacewalk/config/spacewalk-config.changes.mc.Manager-4.3-suma-payg-scc-fw-warning @@ -0,0 +1 @@ +- allow calling instance-flavor-check via sudo diff --git a/spacewalk/setup/Makefile.PL b/spacewalk/setup/Makefile.PL index 0be240c71d7c..863a288ef68e 100644 --- a/spacewalk/setup/Makefile.PL +++ b/spacewalk/setup/Makefile.PL @@ -11,14 +11,11 @@ WriteMakefile( EXE_FILES => ['bin/spacewalk-setup', 'bin/spacewalk-make-mount-points', 'bin/spacewalk-setup-cobbler', - 'bin/spacewalk-setup-httpd', - 'bin/spacewalk-setup-sudoers'], + 'bin/spacewalk-setup-httpd'], PREREQ_PM => { 'Test::More' => 0, }, - MAN1PODS => { 'lib/Spacewalk/Setup.pm' => '$(INST_MAN1DIR)/spacewalk-setup.$(MAN1EXT)', - 'bin/spacewalk-setup-sudoers' => '$(INST_MAN1DIR)/spacewalk-setup-sudoers.$(MAN1EXT)', - }, + MAN1PODS => { 'lib/Spacewalk/Setup.pm' => '$(INST_MAN1DIR)/spacewalk-setup.$(MAN1EXT)', }, dist => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', }, clean => { FILES => 'Spacewalk-Setup-*' }, ); diff --git a/spacewalk/setup/bin/spacewalk-setup b/spacewalk/setup/bin/spacewalk-setup index 3be2d0e9d5ae..24d75fc627c4 100755 --- a/spacewalk/setup/bin/spacewalk-setup +++ b/spacewalk/setup/bin/spacewalk-setup @@ -130,8 +130,6 @@ if(not $opts{"skip-initial-configuration"}) { chown -1, $www_gid, $config_opts->{'mount_point'} . '/systems'; } -setup_sudoers(); - print Spacewalk::Setup::loc("* Configuring apache SSL virtual host.\n"); setup_mod_ssl(\%opts, \%answers); @@ -244,7 +242,7 @@ sub setup_cobbler { my %options = (); Spacewalk::Setup::read_config('/usr/share/rhn/config-defaults/rhn.conf',\%options); - system(COBBLER_COMMAND . " --apache2-config-directory " . $options{'httpd_config_dir'}); + system(COBBLER_COMMAND . " --apache2-config-directory " . $options{'httpd_config_dir'} . " -f " . $answers->{'hostname'}); my $skip_rhnconf = 0; open(FILE, "<" . Spacewalk::Setup::DEFAULT_RHN_CONF_LOCATION); @@ -383,11 +381,6 @@ sub setup_cc { -password => 1); } -sub setup_sudoers { - Spacewalk::Setup::system_or_exit(['/usr/bin/spacewalk-setup-sudoers', ''], 1, - 'Could not setup sudo for Spacewalk commands.'); - return; -} sub passwords_match { my $password_1 = shift; @@ -703,8 +696,6 @@ sub setup_ssl_certs { Spacewalk::Setup::system_or_exit(['/usr/bin/mgr-ssl-cert-setup', @opts], 37, "Could not deploy the certificates."); - - store_ssl_cert(-ssl_dir => $answers->{'ssl-dir'}); } sub print_country_list { @@ -788,21 +779,6 @@ sub generate_server_cert { return; } -sub store_ssl_cert { - my %params = validate(@_, { ssl_dir => 1, - ca_cert => { default => DEFAULT_CA_CERT_NAME }, - }); - - - my $cert_path = File::Spec->catfile($params{ssl_dir}, $params{ca_cert}); - my @opts = ("--ca-cert=${cert_path}"); - - Spacewalk::Setup::system_or_exit(['/usr/bin/rhn-ssl-dbstore', @opts], 39, - "There was a problem storing the SSL certificate."); - - return; -} - sub populate_initial_configs { my $opts = shift; my $answers = shift; diff --git a/spacewalk/setup/bin/spacewalk-setup-cobbler b/spacewalk/setup/bin/spacewalk-setup-cobbler index bdf99ef1790b..707a5f111170 100755 --- a/spacewalk/setup/bin/spacewalk-setup-cobbler +++ b/spacewalk/setup/bin/spacewalk-setup-cobbler @@ -24,6 +24,7 @@ parser.add_argument('--cobbler-config-directory', '-c', dest='cobbler_config_dir help='The directory where "settings" and "modules.conf" are in.') parser.add_argument('--apache2-config-directory', '-a', dest='httpd_config_directory', default="/etc/apache2/conf.d", help='The directory where the Apache config file "cobbler.conf" is in.') +parser.add_argument('--fqdn', '-f', dest='fqdn', default=None) COBBLER_CONFIG_DIRECTORY = "/etc/cobbler/" COBBLER_CONFIG_FILES = ["modules.conf", "settings.yaml"] @@ -41,20 +42,21 @@ def backup_file(file_path: str): copyfile(file_path, "%s.backup" % file_path) -def manipulate_cobbler_settings(config_dir: str, settings_yaml: str): +def manipulate_cobbler_settings(config_dir: str, settings_yaml: str, fqdn: str): """ Manipulate the main Cobbler configuration file which is in YAML format. This function backs the original configuration up and writes a new one with the required changes to the disk. :param config_dir: The directory of Cobbler where the config files are. :param settings_yaml: The name of the main YAML file of Cobbler. + :param fqdn: The FQDN of the server. If None (default), the FQDN is resolved from the system """ full_path = os.path.join(config_dir, settings_yaml) backup_file(full_path) with open(full_path) as settings_file: filecontent = yaml.safe_load(settings_file.read()) - filecontent["server"] = socket.getfqdn() + filecontent["server"] = fqdn or socket.getfqdn() # In case of failing DNS resolution, we get a OSError (socket.gaierror) try: @@ -72,7 +74,7 @@ def manipulate_cobbler_settings(config_dir: str, settings_yaml: str): exit(1) filecontent["pxe_just_once"] = True - filecontent["redhat_management_server"] = socket.getfqdn() + filecontent["redhat_management_server"] = fqdn or socket.getfqdn() yaml_dump = yaml.safe_dump(filecontent) with open(full_path, "w") as settings_file: settings_file.write(yaml_dump) @@ -128,7 +130,7 @@ def main(): """ args = parser.parse_args() sanitize_args(args) - manipulate_cobbler_settings(COBBLER_CONFIG_DIRECTORY, COBBLER_CONFIG_FILES[1]) + manipulate_cobbler_settings(COBBLER_CONFIG_DIRECTORY, COBBLER_CONFIG_FILES[1], args.fqdn) manipulate_cobbler_modules(COBBLER_CONFIG_DIRECTORY, COBBLER_CONFIG_FILES[0]) remove_virtual_host(HTTPD_CONFIG_DIRECTORY, COBBLER_HTTP_CONFIG) diff --git a/spacewalk/setup/bin/spacewalk-setup-sudoers b/spacewalk/setup/bin/spacewalk-setup-sudoers deleted file mode 100755 index 3196b80d97a5..000000000000 --- a/spacewalk/setup/bin/spacewalk-setup-sudoers +++ /dev/null @@ -1,83 +0,0 @@ -#!/usr/bin/perl -# -# Copyright (c) 2008--2017 Red Hat, Inc. -# -# This software is licensed to you under the GNU General Public License, -# version 2 (GPLv2). There is NO WARRANTY for this software, express or -# implied, including the implied warranties of MERCHANTABILITY or FITNESS -# FOR A PARTICULAR PURPOSE. You should have received a copy of GPLv2 -# along with this software; if not, see -# http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt. -# -# Red Hat trademarks are not licensed under GPLv2. No permission is -# granted to use or replicate Red Hat trademarks that are incorporated -# in this software or its documentation. - -use strict; -use Spacewalk::Setup; - -sub setup_sudoers { - my $opts = shift; - my $answers = shift; - - my ($sudoers_content_orig, $sudoers_content); - my $sudoers_path = '/etc/sudoers'; - - local *FILE; - if (-e $sudoers_path) { - # If /etc/sudoers exists, let's modify that - open FILE, $sudoers_path or die "Error reading [$sudoers_path]: $!\n"; - } else { - return; - } - { - local $/ = undef; - $sudoers_content = ; - $sudoers_content_orig = $sudoers_content if not defined $sudoers_content_orig; - } - close FILE; - - # The sudoers.clear file has regular expressions for clearing - # old configuration - if (open FILE, Spacewalk::Setup::SHARED_DIR . '/sudoers.clear') { - while (defined(my $regexp = )) { - chomp $regexp; - $sudoers_content =~ s!$regexp!!igm; - } - close FILE; - } - - if ($sudoers_content ne $sudoers_content_orig) { - open FILE, "> $sudoers_path" or die "Error writing [$sudoers_path]: $!\n"; - chmod 0440, $sudoers_path; - print FILE $sudoers_content; - close FILE; - } - - return; -} - -setup_sudoers(); - -=head1 NAME - -spacewalk-setup-sudoers - utility to clear sudo configuration from previous version of -Spacewalk / Satellite - -=head1 SYNOPSIS - -B - -=head1 DESCRIPTION - -B is a utility to clear sudo configuration from previous version of -Spacewalk / Satellite. New configuration is properly put into b. - -Ordinarily, spacewalk-setup-sudoers is called by spacewalk-setup(1) during -initial Spacewalk / Satellite configuration or upgrade. - -=head1 SEE ALSO - -B(1) - Spacewalk setup program - -=cut diff --git a/spacewalk/setup/lib/Spacewalk/Setup.pm b/spacewalk/setup/lib/Spacewalk/Setup.pm index 7ff72ddbe492..ee42ec90b278 100644 --- a/spacewalk/setup/lib/Spacewalk/Setup.pm +++ b/spacewalk/setup/lib/Spacewalk/Setup.pm @@ -672,6 +672,7 @@ sub print_progress { err_code => 1, system_opts => 1, }); + print "Running " . join(" ", @{$params{system_opts}}) . "\n"; local *LOGFILE; open(LOGFILE, ">>", $params{log_file_name}) or do { @@ -893,7 +894,9 @@ sub postgresql_reportdb_setup { } $ENV{PGSSLROOTCERT} = $answers->{'report-db-ca-cert'}; - $ENV{PGSSLMODE} = "verify-full"; + if ($answers->{'report-db-host'} ne 'localhost') { + $ENV{PGSSLMODE} = "verify-full"; + } write_rhn_conf($answers, 'externaldb-admin-user','externaldb-admin-password', 'report-db-backend', 'report-db-host', 'report-db-port', 'report-db-name', 'report-db-user', 'report-db-password', 'report-db-ssl-enabled'); diff --git a/spacewalk/setup/share/sudoers.clear b/spacewalk/setup/share/sudoers.clear deleted file mode 100644 index fbb593bc4435..000000000000 --- a/spacewalk/setup/share/sudoers.clear +++ /dev/null @@ -1,5 +0,0 @@ -(^[ \t]*#.*\n)*^[ \t]*Cmnd_Alias[ \t]+INSTALL_RHN(.+\\\n)*.+\n+ -(^[ \t]*#.*\n)*(^[ \t]*(apache|tomcat|wwwrun).+INSTALL_RHN[ \t]*\n)+ -^([ \t]*#.+\n)*Cmnd_Alias[ \t]+CONFIG_RHN(.+\\\n)*.+\n -^([ \t]*#.*\n)*[ \t]*((apache|tomcat).+CONFIG_RHN[ \t]*\n)+ -^([ \t]*#.*\n)*[ \t]*(Defaults[ \t]*:[ \t]*(apache|tomcat)\b.+![ \t]*requiretty[ \t]*\n)+ diff --git a/spacewalk/setup/spacewalk-setup.changes.cbosdo.local-reportdb b/spacewalk/setup/spacewalk-setup.changes.cbosdo.local-reportdb new file mode 100644 index 000000000000..372a906b5d98 --- /dev/null +++ b/spacewalk/setup/spacewalk-setup.changes.cbosdo.local-reportdb @@ -0,0 +1 @@ +- Don't force ssl verification to setup reportdb using localhost diff --git a/spacewalk/setup/spacewalk-setup.changes.mcalmer.master b/spacewalk/setup/spacewalk-setup.changes.mcalmer.master new file mode 100644 index 000000000000..b94d61e46d67 --- /dev/null +++ b/spacewalk/setup/spacewalk-setup.changes.mcalmer.master @@ -0,0 +1,2 @@ +- drop spacewalk-setup-sudoers which does only cleanups which should be + applied already since several years. The functionality is obsolete diff --git a/spacewalk/setup/spacewalk-setup.changes.mcalmer.store-ca-in-db b/spacewalk/setup/spacewalk-setup.changes.mcalmer.store-ca-in-db new file mode 100644 index 000000000000..4df7a8d1248e --- /dev/null +++ b/spacewalk/setup/spacewalk-setup.changes.mcalmer.store-ca-in-db @@ -0,0 +1 @@ +- remove storing CA in DB directly as it is now part of mgr-ssl-cert-setup (bsc#1212856) diff --git a/spacewalk/setup/spacewalk-setup.changes.oholecek.tomcat-install-check b/spacewalk/setup/spacewalk-setup.changes.oholecek.tomcat-install-check new file mode 100644 index 000000000000..808a0993a282 --- /dev/null +++ b/spacewalk/setup/spacewalk-setup.changes.oholecek.tomcat-install-check @@ -0,0 +1 @@ +- Do not rely on rpm runtime status, rather check rhn.conf if is configured (bsc#1210935) diff --git a/spacewalk/setup/spacewalk-setup.spec b/spacewalk/setup/spacewalk-setup.spec index ef4e91bbc2ea..5206fb63bc92 100644 --- a/spacewalk/setup/spacewalk-setup.spec +++ b/spacewalk/setup/spacewalk-setup.spec @@ -160,7 +160,6 @@ install -d -m 755 %{buildroot}/%{_datadir}/spacewalk/setup/ install -d -m 755 %{buildroot}/%{_sysconfdir}/salt/master.d/ install -d -m 755 %{buildroot}/%{_sysconfdir}/tomcat/conf.d/ install -m 0755 share/embedded_diskspace_check.py %{buildroot}/%{_datadir}/spacewalk/setup/ -install -m 0644 share/sudoers.* %{buildroot}/%{_datadir}/spacewalk/setup/ install -m 0644 share/mod_ssl.conf.* %{buildroot}/%{_datadir}/spacewalk/setup/ install -m 0644 share/tomcat_java_opts.conf %{buildroot}/%{_sysconfdir}/tomcat/conf.d/ %if 0%{?suse_version} @@ -181,9 +180,7 @@ install -d -m 755 %{buildroot}/%{misc_path}/spacewalk mkdir -p $RPM_BUILD_ROOT%{_mandir}/man8 /usr/bin/pod2man --section=8 $RPM_BUILD_ROOT/%{_bindir}/spacewalk-make-mount-points | gzip > $RPM_BUILD_ROOT%{_mandir}/man8/spacewalk-make-mount-points.8.gz -/usr/bin/pod2man --section=1 $RPM_BUILD_ROOT/%{_bindir}/spacewalk-setup-sudoers| gzip > $RPM_BUILD_ROOT%{_mandir}/man1/spacewalk-setup-sudoers.1.gz /usr/bin/pod2man --section=1 $RPM_BUILD_ROOT/%{_bindir}/spacewalk-setup-httpd | gzip > $RPM_BUILD_ROOT%{_mandir}/man1/spacewalk-setup-httpd.1.gz -/usr/bin/pod2man --section=1 $RPM_BUILD_ROOT/%{_bindir}/spacewalk-setup-sudoers| gzip > $RPM_BUILD_ROOT%{_mandir}/man1/spacewalk-setup-sudoers.1.gz # Sphinx built manpage %define SPHINX_BASE_DIR %(echo %{SOURCE0}| sed -e 's/\.tar\.gz//' | sed 's@.*/@@') install -m 0644 %{_builddir}/%{SPHINX_BASE_DIR}/out/spacewalk-cobbler-setup.1 $RPM_BUILD_ROOT%{_mandir}/man1/spacewalk-setup-cobbler.1 @@ -194,18 +191,17 @@ install -Dd -m 0755 %{buildroot}%{_prefix}/share/salt-formulas/states install -Dd -m 0755 %{buildroot}%{_prefix}/share/salt-formulas/metadata %post -if [ $1 == 1 -a -e /etc/tomcat/server.xml ]; then -#just during new installation. during upgrade the changes are already applied +if [ -f /etc/rhn/rhn.conf -a $(filesize /etc/rhn/rhn.conf) -gt 1 ]; then + # rhn.conf is configured, this is an upgrade + # during upgrade, setup new connectionTimeout if the user didn't change it. Keeping it until SUMA 4.2 is maintained CURRENT_DATE=$(date +"%%Y-%%m-%%dT%%H:%%M:%%S.%%3N") cp /etc/tomcat/server.xml /etc/tomcat/server.xml.$CURRENT_DATE - xsltproc %{_datadir}/spacewalk/setup/server.xml.xsl /etc/tomcat/server.xml.$CURRENT_DATE > /etc/tomcat/server.xml -fi - -if [ $1 == 2 -a -e /etc/tomcat/server.xml ]; then -#during upgrade, setup new connectionTimeout if the user didn't change it. Keeping it until SUMA 4.2 is maintained + xsltproc %{_datadir}/spacewalk/setup/server_update.xml.xsl /etc/tomcat/server.xml.$CURRENT_DATE > /etc/tomcat/server.xml +else + # rhn.conf does not exists or is empty, this is new installation or update of new installation CURRENT_DATE=$(date +"%%Y-%%m-%%dT%%H:%%M:%%S.%%3N") cp /etc/tomcat/server.xml /etc/tomcat/server.xml.$CURRENT_DATE - xsltproc %{_datadir}/spacewalk/setup/server_update.xml.xsl /etc/tomcat/server.xml.$CURRENT_DATE > /etc/tomcat/server.xml + xsltproc %{_datadir}/spacewalk/setup/server.xml.xsl /etc/tomcat/server.xml.$CURRENT_DATE > /etc/tomcat/server.xml fi if [ -e /etc/zypp/credentials.d/SCCcredentials ]; then @@ -218,14 +214,6 @@ if [ -d /var/cache/salt/master/thin ]; then rm -rf /var/cache/salt/master/thin fi -# sudoers file is now in /etc/sudoers.d/spacewalk -if [ -f /etc/sudoers.d/spacewalk -a -f /etc/sudoers.d/susemanager ]; then - # do not fail if one is just a link to the other one - cp /etc/sudoers.d/spacewalk /etc/sudoers.d/spacewalk.tmp - rm -f /etc/sudoers.d/spacewalk /etc/sudoers.d/susemanager - mv /etc/sudoers.d/spacewalk.tmp /etc/sudoers.d/spacewalk -fi - if grep 'authn_spacewalk' /etc/cobbler/modules.conf > /dev/null 2>&1; then sed -i 's/module = authn_spacewalk/module = authentication.spacewalk/' /etc/cobbler/modules.conf fi @@ -291,7 +279,6 @@ make test %{_bindir}/spacewalk-setup-httpd %{_bindir}/spacewalk-make-mount-points %{_bindir}/spacewalk-setup-cobbler -%{_bindir}/spacewalk-setup-sudoers %{_mandir}/man[13]/*.[13]* %dir %attr(0755, root, root) %{_prefix}/share/salt-formulas/ %dir %attr(0755, root, root) %{_prefix}/share/salt-formulas/states/ diff --git a/spacewalk/uyuni-setup-reportdb/bin/uyuni-setup-reportdb b/spacewalk/uyuni-setup-reportdb/bin/uyuni-setup-reportdb index 801d7727c6d4..bd59cac6fe79 100755 --- a/spacewalk/uyuni-setup-reportdb/bin/uyuni-setup-reportdb +++ b/spacewalk/uyuni-setup-reportdb/bin/uyuni-setup-reportdb @@ -112,7 +112,6 @@ if [ -x /usr/bin/lsof ]; then LSOF="/usr/bin/lsof" fi RUNUSER=runuser -FQDN=$(hostname -f) SSL_CERT=/etc/pki/tls/certs/spacewalk.crt SSL_KEY=/etc/pki/tls/private/pg-spacewalk.key CA_CERT=/etc/pki/trust/anchors/LOCAL-RHN-ORG-TRUSTED-SSL-CERT @@ -126,7 +125,7 @@ create() { if $LOCAL ; then ADDRESS="127.0.0.1" REMOTE="127.0.0.1/32,::1/128" - FQDN="localhost" + HOST="localhost" else [ ! -s "$SSL_CERT" ] && { echo "SSL Certificate ($SSL_CERT) is required to setup the reporting database" >&2 @@ -254,7 +253,7 @@ report_db_backend = postgresql report_db_user = $PGUSER report_db_password = $PGPASSWORD report_db_name = $PGNAME -report_db_host = $FQDN +report_db_host = $HOST report_db_port = $PORT report_db_ssl_enabled = 1 report_db_sslrootcert = $CA_CERT @@ -264,11 +263,7 @@ EOF rhn_reconfig "report_db_user" "$PGUSER" rhn_reconfig "report_db_password" "$PGPASSWORD" rhn_reconfig "report_db_name" "$PGNAME" - if [ $EXTERNALDB = "0" ] ; then - rhn_reconfig "report_db_host" "$FQDN" - else - rhn_reconfig "report_db_host" "$HOST" - fi + rhn_reconfig "report_db_host" "$HOST" rhn_reconfig "report_db_port" "$PORT" if ! $LOCAL ; then rhn_reconfig "report_db_ssl_enabled" "1" @@ -289,8 +284,7 @@ EOF if $LSOF /proc > /dev/null ; then while [ -f "$PG_PIDFILE" ] ; do # wait for postmaster to be ready - $LSOF -t -p $(head -1 "$PG_PIDFILE" 2>/dev/null) -a "$PG_SOCKET" > /dev/null \ - && break + pg_isready -q -U $(grep -oP '^db_user ?= ?\K.*' $RHN_CONF) && break sleep 1 done fi @@ -617,12 +611,14 @@ while true ; do shift done -case $HOST in - "localhost"|$(hostname -s)|$(hostname -f)|"") - EXTERNALDB=0 ;; - *) - EXTERNALDB=1 ;; -esac +EXTERNALDB=0 +if [ -n "$EXTERNALDB_ADMIN_USER" ]; then + EXTERNALDB=1 +fi + +if [ -z "$HOST" ]; then + HOST=$(hostname -f) +fi case $1 in create) create diff --git a/spacewalk/uyuni-setup-reportdb/uyuni-setup-reportdb.changes.mbussolotto.pg_wait b/spacewalk/uyuni-setup-reportdb/uyuni-setup-reportdb.changes.mbussolotto.pg_wait new file mode 100644 index 000000000000..55a4d0cde790 --- /dev/null +++ b/spacewalk/uyuni-setup-reportdb/uyuni-setup-reportdb.changes.mbussolotto.pg_wait @@ -0,0 +1 @@ +- use pg_isactive to wait for postgres diff --git a/susemanager-utils/supportutils-plugin-susemanager-client/supportutils-plugin-susemanager-client.changes.mc.Manager-4.3-crypto-policy-in-supportconfig b/susemanager-utils/supportutils-plugin-susemanager-client/supportutils-plugin-susemanager-client.changes.mc.Manager-4.3-crypto-policy-in-supportconfig new file mode 100644 index 000000000000..2c166805cd28 --- /dev/null +++ b/susemanager-utils/supportutils-plugin-susemanager-client/supportutils-plugin-susemanager-client.changes.mc.Manager-4.3-crypto-policy-in-supportconfig @@ -0,0 +1 @@ +- write configured crypto-policy in supportconfig diff --git a/susemanager-utils/supportutils-plugin-susemanager-client/supportutils-plugin-susemanager-client.changes.mc.payg b/susemanager-utils/supportutils-plugin-susemanager-client/supportutils-plugin-susemanager-client.changes.mc.payg new file mode 100644 index 000000000000..3c173a4f0aca --- /dev/null +++ b/susemanager-utils/supportutils-plugin-susemanager-client/supportutils-plugin-susemanager-client.changes.mc.payg @@ -0,0 +1 @@ +- add cloud and payg checks diff --git a/susemanager-utils/supportutils-plugin-susemanager-client/susemanagerclient b/susemanager-utils/supportutils-plugin-susemanager-client/susemanagerclient index 16cd07e7340b..e5bc8b4019c2 100755 --- a/susemanager-utils/supportutils-plugin-susemanager-client/susemanagerclient +++ b/susemanager-utils/supportutils-plugin-susemanager-client/susemanagerclient @@ -92,11 +92,20 @@ plugin_command "salt-minion --versions-report" plugin_command "cp /var/log/zypper.log $LOG" +section_header "Crypto Policy" + +if [ -f /etc/crypto-policies/config ]; then + plugin_command "cat /etc/crypto-policies/config" +elif [ $(cat /proc/sys/crypto/fips_enabled) -ne 0 ]; then + plugin_message "FIPS" +else + plugin_command "grep -v '#' /usr/share/crypto-policies/default-config" +fi + section_header "Proxy Containers Configuration Files" plugin_command "ls -l /etc/uyuni/proxy/" - section_header "Proxy Containers Systems Status" systemd_status() { @@ -139,3 +148,7 @@ if which podman >/dev/null 2>&1; then plugin_command "podman logs $CONTAINER" done fi + +section_header "Cloud / PAYG" +plugin_command "test -e /usr/bin/instance-flavor-check && /usr/bin/instance-flavor-check" +validate_rpm_if_installed "python-instance-billing-flavor-check" diff --git a/susemanager-utils/supportutils-plugin-susemanager-proxy/supportutils-plugin-susemanager-proxy.changes.mc.Manager-4.3-crypto-policy-in-supportconfig b/susemanager-utils/supportutils-plugin-susemanager-proxy/supportutils-plugin-susemanager-proxy.changes.mc.Manager-4.3-crypto-policy-in-supportconfig new file mode 100644 index 000000000000..2c166805cd28 --- /dev/null +++ b/susemanager-utils/supportutils-plugin-susemanager-proxy/supportutils-plugin-susemanager-proxy.changes.mc.Manager-4.3-crypto-policy-in-supportconfig @@ -0,0 +1 @@ +- write configured crypto-policy in supportconfig diff --git a/susemanager-utils/supportutils-plugin-susemanager-proxy/susemanagerproxy b/susemanager-utils/supportutils-plugin-susemanager-proxy/susemanagerproxy index 0f5f27f8e4e3..a420484a6e7b 100755 --- a/susemanager-utils/supportutils-plugin-susemanager-proxy/susemanagerproxy +++ b/susemanager-utils/supportutils-plugin-susemanager-proxy/susemanagerproxy @@ -86,6 +86,15 @@ section_header "SSL Configuration" pconf_files $(spacewalk-cfg-get documentroot)/pub/RHN-ORG-TRUSTED-SSL-CERT \ /etc/apache2/ssl.crt/server.crt +section_header "Crypto Policy" + +if [ -f /etc/crypto-policies/config ]; then + plugin_command "cat /etc/crypto-policies/config" +elif [ $(cat /proc/sys/crypto/fips_enabled) -ne 0 ]; then + plugin_message "FIPS" +else + plugin_command "grep -v '#' /usr/share/crypto-policies/default-config" +fi plugin_command "zypper --no-refresh ls" plugin_command "zypper --no-refresh lr -u" diff --git a/susemanager-utils/supportutils-plugin-susemanager/supportutils-plugin-susemanager.changes.mc.Manager-4.3-crypto-policy-in-supportconfig b/susemanager-utils/supportutils-plugin-susemanager/supportutils-plugin-susemanager.changes.mc.Manager-4.3-crypto-policy-in-supportconfig new file mode 100644 index 000000000000..2c166805cd28 --- /dev/null +++ b/susemanager-utils/supportutils-plugin-susemanager/supportutils-plugin-susemanager.changes.mc.Manager-4.3-crypto-policy-in-supportconfig @@ -0,0 +1 @@ +- write configured crypto-policy in supportconfig diff --git a/susemanager-utils/supportutils-plugin-susemanager/supportutils-plugin-susemanager.changes.mc.payg b/susemanager-utils/supportutils-plugin-susemanager/supportutils-plugin-susemanager.changes.mc.payg new file mode 100644 index 000000000000..3c173a4f0aca --- /dev/null +++ b/susemanager-utils/supportutils-plugin-susemanager/supportutils-plugin-susemanager.changes.mc.payg @@ -0,0 +1 @@ +- add cloud and payg checks diff --git a/susemanager-utils/supportutils-plugin-susemanager/susemanager b/susemanager-utils/supportutils-plugin-susemanager/susemanager index 128cfc8ddb18..0216920003d6 100755 --- a/susemanager-utils/supportutils-plugin-susemanager/susemanager +++ b/susemanager-utils/supportutils-plugin-susemanager/susemanager @@ -62,6 +62,16 @@ plugin_command "/bin/ls -l --time-style=long-iso /etc/ssl/certs/" plugin_command "/bin/ls -l --time-style=long-iso $(spacewalk-cfg-get documentroot)/pub/ | grep -i trusted" +section_header "Crypto Policy" + +if [ -f /etc/crypto-policies/config ]; then + plugin_command "cat /etc/crypto-policies/config" +elif [ $(cat /proc/sys/crypto/fips_enabled) -ne 0 ]; then + plugin_message "FIPS" +else + plugin_command "grep -v '#' /usr/share/crypto-policies/default-config" +fi + plugin_command "psql --version" plugin_command "cat /var/lib/pgsql/data/PG_VERSION" @@ -74,8 +84,24 @@ plugin_command "echo \"select username scc_org from susecredentials sc join suse plugin_command "echo \"Number of elements in table susesaltevent. If the next number is too high, please verify the large scale tuning guide property 'java.salt_event_thread_pool_size'.\"" plugin_command "echo \"select count(*) from susesaltevent;\" | spacewalk-sql --select-mode-direct -" +plugin_command "grep \"Client bootstrap script\" /srv/www/htdocs/pub/bootstrap/*.sh" + +section_header "Cloud / PAYG" +plugin_command "/usr/bin/instance-flavor-check" +if [ -e /usr/bin/instance-flavor-check -a $(/usr/bin/instance-flavor-check) == "PAYG" ]; then + validate_rpm "python-instance-billing-flavor-check" + validate_rpm "billing-data-service" + validate_rpm "csp-billing-adapter-service" + validate_rpm "python3-csp-billing-adapter" + validate_rpm "python3-csp-billing-adapter-local" + validate_rpm "python3-csp-billing-adapter-amazon" + validate_rpm "suma-amazon-adapter-config-llc" + validate_rpm "suma-amazon-adapter-config-ltd" + validate_rpm "python3-csp-billing-adapter-azure" + validate_rpm "suma-azure-adapter-config-llc" + validate_rpm "suma-azure-adapter-config-ltd" +fi plugin_command "/sbin/supportconfig-sumalog $LOG" plugin_command "cp /var/log/zypper.log $LOG" -plugin_command "grep \"Client bootstrap script\" /srv/www/htdocs/pub/bootstrap/*.sh" diff --git a/susemanager-utils/susemanager-sls/modules/pillar/suma_minion.py b/susemanager-utils/susemanager-sls/modules/pillar/suma_minion.py index 9ddc7049b5e9..952b082f7684 100644 --- a/susemanager-utils/susemanager-sls/modules/pillar/suma_minion.py +++ b/susemanager-utils/susemanager-sls/modules/pillar/suma_minion.py @@ -14,7 +14,6 @@ # Import python libs from __future__ import absolute_import from enum import Enum -from contextlib import contextmanager import os import logging import yaml @@ -87,8 +86,7 @@ def _is_salt_ssh(opts): return "__master_opts__" in opts -@contextmanager -def _get_cursor(): +def _get_cursor(func): def _connect_db(): options = { "host": "localhost", @@ -131,13 +129,28 @@ def _connect_db(): except psycopg2.OperationalError as err: log.error("Error on getting database pillar: %s", err.args) return - try: - yield cursor - except psycopg2.DatabaseError as err: - log.error("Error on getting database pillar: %s", err.args) - finally: - if _is_salt_ssh(__opts__): - cnx.close() + retry = 0 + while True: + try: + if retry: + cnx = _connect_db() + log.debug("Reconnected to the DB") + if not _is_salt_ssh(__opts__): + __context__["suma_minion_cnx"] = cnx + cursor = cnx.cursor() + + func(cursor) + break + except psycopg2.DatabaseError as err: + retry += 1 + if retry == 3: + log.error("Error on getting database pillar, giving up: %s", err.args) + break + else: + log.error("Error on getting database pillar, trying again: %s", err.args) + finally: + if _is_salt_ssh(__opts__): + cnx.close() def ext_pillar(minion_id, pillar, *args): @@ -147,20 +160,29 @@ def ext_pillar(minion_id, pillar, *args): log.debug('Getting pillar data for the minion "{0}"'.format(minion_id)) ret = {} + group_formulas = {} + system_formulas = {} # Load the pillar from the legacy files ret = load_static_pillars(ret) # Load the global pillar from DB - with _get_cursor() as cursor: + def _load_db_pillar(cursor): + nonlocal ret + nonlocal group_formulas + nonlocal system_formulas ret = load_global_pillars(cursor, ret) ret = load_org_pillars(minion_id, cursor, ret) group_formulas, ret = load_group_pillars(minion_id, cursor, ret) - system_formulas, ret= load_system_pillars(minion_id, cursor, ret) + system_formulas, ret = load_system_pillars(minion_id, cursor, ret) + + _get_cursor(_load_db_pillar) # Including formulas into pillar data try: - ret.update(formula_pillars(system_formulas, group_formulas, ret)) + ret = salt.utils.dictupdate.merge(ret, + formula_pillars(system_formulas, group_formulas, ret), + strategy='recurse') except Exception as error: log.error('Error accessing formula pillar data: %s', error) diff --git a/susemanager-utils/susemanager-sls/modules/roster/uyuni.py b/susemanager-utils/susemanager-sls/modules/roster/uyuni.py index f320ffe8c6dd..54c555a41a76 100644 --- a/susemanager-utils/susemanager-sls/modules/roster/uyuni.py +++ b/susemanager-utils/susemanager-sls/modules/roster/uyuni.py @@ -89,7 +89,9 @@ def __init__(self, db_config, uyuni_roster_config): ) ) - log.trace("db_connect string: %s", self.db_connect_str) + log.trace("db_connect dbname: %s", db_config["db"]) + log.trace("db_connect user: %s", db_config["user"]) + log.trace("db_connect host: %s", db_config["host"]) log.debug("ssh_pre_flight_script: %s", self.ssh_pre_flight_script) log.debug("ssh_push_port_https: %d", self.ssh_push_port_https) log.debug("ssh_push_sudo_user: %s", self.ssh_push_sudo_user) diff --git a/susemanager-utils/susemanager-sls/salt/bootstrap/remove_traditional_stack.sls b/susemanager-utils/susemanager-sls/salt/bootstrap/remove_traditional_stack.sls index 39c846749170..d649b474609c 100644 --- a/susemanager-utils/susemanager-sls/salt/bootstrap/remove_traditional_stack.sls +++ b/susemanager-utils/susemanager-sls/salt/bootstrap/remove_traditional_stack.sls @@ -32,16 +32,9 @@ remove_traditional_stack_all: - mgr-osad - spacewalksd - mgr-daemon - - rhnlib - rhnmd {%- if grains['os_family'] == 'Suse' %} - zypp-plugin-spacewalk -{%- elif grains['os_family'] == 'RedHat' or grains['os_family'] == 'openEuler' %} - - yum-rhn-plugin - - rhnsd - - rhn-check - - rhn-setup - - rhn-client-tools {%- elif grains['os_family'] == 'Debian' %} - apt-transport-spacewalk {%- endif %} diff --git a/susemanager-utils/susemanager-sls/salt/channels/init.sls b/susemanager-utils/susemanager-sls/salt/channels/init.sls index 5a70365c5cb2..1a3f7a18c22b 100644 --- a/susemanager-utils/susemanager-sls/salt/channels/init.sls +++ b/susemanager-utils/susemanager-sls/salt/channels/init.sls @@ -145,7 +145,7 @@ install_gnupg_debian: {%- endif %} {%- if not salt['pillar.get']('susemanager:distupgrade:dryrun', False) %} -{%- if grains['os_family'] == 'Suse' and grains['osmajorrelease']|int > 11 and not grains['oscodename'] == 'openSUSE Leap 15.3' %} +{%- if grains['os_family'] == 'Suse' and grains['osmajorrelease']|int > 11 and "opensuse" not in grains['oscodename']|lower %} mgrchannels_install_products: product.all_installed: - require: diff --git a/susemanager-utils/susemanager-sls/salt/cleanup_minion/init.sls b/susemanager-utils/susemanager-sls/salt/cleanup_minion/init.sls index 6229cc42a4eb..1b31d07b7186 100644 --- a/susemanager-utils/susemanager-sls/salt/cleanup_minion/init.sls +++ b/susemanager-utils/susemanager-sls/salt/cleanup_minion/init.sls @@ -53,6 +53,7 @@ mgr_remove_salt_master_key: file.absent: - name: {{ salt_config_dir }}/pki/minion_master.pub +{%- if salt['pillar.get']('contact_method') not in ['ssh-push', 'ssh-push-tunnel'] %} mgr_disable_salt: cmd.run: - name: systemctl disable {{ salt_minion_name }} @@ -68,3 +69,4 @@ mgr_stop_salt: - require: - file: mgr_remove_salt_config {% endif %} +{% endif %} diff --git a/susemanager-utils/susemanager-sls/salt/packages/init.sls b/susemanager-utils/susemanager-sls/salt/packages/init.sls index 4c66cb6940c6..6c80070dadf1 100644 --- a/susemanager-utils/susemanager-sls/salt/packages/init.sls +++ b/susemanager-utils/susemanager-sls/salt/packages/init.sls @@ -1,3 +1,7 @@ +include: + - util.syncstates + - .packages_{{ grains['machine_id'] }} + {%- if grains['os_family'] == 'Suse' and grains['osmajorrelease']|int > 11 and not grains['oscodename'] == 'openSUSE Leap 15.3'%} mgr_install_products: product.all_installed: @@ -11,6 +15,16 @@ mgr_install_products: {%- endif %} {%- endif %} -include: - - util.syncstates - - .packages_{{ grains['machine_id'] }} +{%- if grains['os_family'] == 'Suse' and grains['instance_id'] is defined %} +{# install flavor check tool in cloud instances to be able to detect payg instances #} +mgr_install_flavor_check: + pkg.installed: + - name: python-instance-billing-flavor-check + - require: + - file: mgrchannels_* +{%- if grains.get('__suse_reserved_saltutil_states_support', False) %} + - saltutil: sync_states +{%- else %} + - mgrcompat: sync_states +{%- endif %} +{%- endif %} diff --git a/susemanager-utils/susemanager-sls/src/grains/public_cloud.py b/susemanager-utils/susemanager-sls/src/grains/public_cloud.py index ecc23a92d6d4..05e7a6ac208a 100644 --- a/susemanager-utils/susemanager-sls/src/grains/public_cloud.py +++ b/susemanager-utils/susemanager-sls/src/grains/public_cloud.py @@ -25,6 +25,7 @@ # Import python libs import os import socket +import subprocess from multiprocessing.pool import ThreadPool import logging @@ -141,8 +142,20 @@ def instance_id(): log.error("Skipping") return ret + def is_payg_instance(): ret = {} - if os.path.isfile('/usr/sbin/registercloudguest'): + flavor_check = "/usr/bin/instance-flavor-check" + if not os.path.isfile(flavor_check) or not os.access(flavor_check, os.X_OK): + return ret + + try: + result = subprocess.run(flavor_check, check=False, stdout=subprocess.PIPE, universal_newlines=True).stdout.strip() + except subprocess.CalledProcessError: + return ret + + if result == "PAYG": ret['is_payg_instance'] = True + return ret + diff --git a/susemanager-utils/susemanager-sls/susemanager-sls.changes.agraul.no-products-for-opensuse b/susemanager-utils/susemanager-sls/susemanager-sls.changes.agraul.no-products-for-opensuse new file mode 100644 index 000000000000..9d9fd9a0d68f --- /dev/null +++ b/susemanager-utils/susemanager-sls/susemanager-sls.changes.agraul.no-products-for-opensuse @@ -0,0 +1 @@ +- Don't install product packages on openSUSE clients diff --git a/susemanager-utils/susemanager-sls/susemanager-sls.changes.mackdk.4.3-integrate-payg-check b/susemanager-utils/susemanager-sls/susemanager-sls.changes.mackdk.4.3-integrate-payg-check new file mode 100644 index 000000000000..77bf9da21353 --- /dev/null +++ b/susemanager-utils/susemanager-sls/susemanager-sls.changes.mackdk.4.3-integrate-payg-check @@ -0,0 +1 @@ +- Integrate instance-flavor-check to detect if the instance is PAYG diff --git a/susemanager-utils/susemanager-sls/susemanager-sls.changes.mcalmer.fix-cleanup-minion-saltssh b/susemanager-utils/susemanager-sls/susemanager-sls.changes.mcalmer.fix-cleanup-minion-saltssh new file mode 100644 index 000000000000..1d13eda31144 --- /dev/null +++ b/susemanager-utils/susemanager-sls/susemanager-sls.changes.mcalmer.fix-cleanup-minion-saltssh @@ -0,0 +1 @@ +- do not disable salt-minion on salt-ssh managed clients diff --git a/susemanager-utils/susemanager-sls/susemanager-sls.changes.mcalmer.rhui-via-payg b/susemanager-utils/susemanager-sls/susemanager-sls.changes.mcalmer.rhui-via-payg new file mode 100644 index 000000000000..c20db540b903 --- /dev/null +++ b/susemanager-utils/susemanager-sls/susemanager-sls.changes.mcalmer.rhui-via-payg @@ -0,0 +1 @@ +- keep original traditional stack tools for RHEL7 RHUI connection diff --git a/susemanager-utils/susemanager-sls/susemanager-sls.changes.nadvornik.pillar-fix b/susemanager-utils/susemanager-sls/susemanager-sls.changes.nadvornik.pillar-fix new file mode 100644 index 000000000000..e5d364e52d11 --- /dev/null +++ b/susemanager-utils/susemanager-sls/susemanager-sls.changes.nadvornik.pillar-fix @@ -0,0 +1 @@ +- Retry loading of pillars from DB on connection error diff --git a/susemanager-utils/susemanager-sls/susemanager-sls.changes.oholecek.recurse_formula_pillar b/susemanager-utils/susemanager-sls/susemanager-sls.changes.oholecek.recurse_formula_pillar new file mode 100644 index 000000000000..c2e13e6cc6a2 --- /dev/null +++ b/susemanager-utils/susemanager-sls/susemanager-sls.changes.oholecek.recurse_formula_pillar @@ -0,0 +1 @@ +- Use recurse stratedy to merge formula pillar with existing pillars diff --git a/susemanager-utils/susemanager-sls/susemanager-sls.changes.rmestre.mask-uyuni-roster-module-password-on-logs b/susemanager-utils/susemanager-sls/susemanager-sls.changes.rmestre.mask-uyuni-roster-module-password-on-logs new file mode 100644 index 000000000000..646167c7bfdb --- /dev/null +++ b/susemanager-utils/susemanager-sls/susemanager-sls.changes.rmestre.mask-uyuni-roster-module-password-on-logs @@ -0,0 +1 @@ +- Mask uyuni roster module password on logs diff --git a/susemanager-utils/susemanager-sls/test/test_pillar_suma_minion.py b/susemanager-utils/susemanager-sls/test/test_pillar_suma_minion.py index 81d637cf28eb..aa87aef84796 100644 --- a/susemanager-utils/susemanager-sls/test/test_pillar_suma_minion.py +++ b/susemanager-utils/susemanager-sls/test/test_pillar_suma_minion.py @@ -34,6 +34,9 @@ "bind" ] +def cursor_callback(cursor): + assert cursor is not None + @pytest.fixture(autouse=True) def data_paths(): ''' @@ -92,8 +95,7 @@ def test_reading_postgres_opts_in__get_cursor(): with patch.object(suma_minion, "__opts__", test_opts), patch( "suma_minion.psycopg2.connect", pg_connect_mock ), patch.dict(suma_minion.__context__, {}): - with suma_minion._get_cursor() as cursor: - assert cursor is not None + suma_minion._get_cursor(cursor_callback) assert pg_connect_mock.call_args_list[0][1] == { "host": "test_host", "user": "test_user", @@ -107,9 +109,7 @@ def test_reading_postgres_opts_in__get_cursor(): with patch.object(suma_minion, "__opts__", {"__master_opts__": test_opts}), patch( "suma_minion.psycopg2.connect", pg_connect_mock ), patch.dict(suma_minion.__context__, {}): - assert cursor is not None - with suma_minion._get_cursor() as cursor: - assert cursor is not None + suma_minion._get_cursor(cursor_callback) assert pg_connect_mock.call_args_list[0][1] == { "host": "test_host", "user": "test_user", @@ -137,8 +137,7 @@ def test_using_context_in__get_cursor(): "suma_minion.psycopg2.connect", pg_connect_mock ), patch.dict(suma_minion.__context__, {}): # Check if it creates new connection if it's not in the context - with suma_minion._get_cursor() as cursor: - assert cursor is not None + suma_minion._get_cursor(cursor_callback) assert pg_connect_mock.call_args_list[0][1] == { "host": "test_host", "user": "test_user", @@ -150,8 +149,7 @@ def test_using_context_in__get_cursor(): pg_connect_mock.reset_mock() # Check if it reuses the connection from the context - with suma_minion._get_cursor() as cursor: - assert cursor is not None + suma_minion._get_cursor(cursor_callback) pg_connect_mock.assert_not_called() @@ -168,16 +166,14 @@ def test_using_context_in__get_cursor(): suma_minion.__context__, {"suma_minion_cnx": pg_cnx_mock} ): # Check if it reuses the connection from the context - with suma_minion._get_cursor() as cursor: - assert cursor is not None + suma_minion._get_cursor(cursor_callback) pg_cnx_mock.cursor.assert_called_once() pg_connect_mock.assert_not_called() # Check if it tries to recoonect if the connection in the context is not alive - with suma_minion._get_cursor() as cursor: - assert cursor is not None + suma_minion._get_cursor(cursor_callback) assert pg_connect_mock.call_args_list[0][1] == { "host": "test_host", diff --git a/susemanager/bin/mgr-setup b/susemanager/bin/mgr-setup index 3f4f6384d349..797a0dc45706 100755 --- a/susemanager/bin/mgr-setup +++ b/susemanager/bin/mgr-setup @@ -46,6 +46,10 @@ if [ ! $? -eq 0 ]; then exit 1 fi +if [[ ! -z "$TZ" ]]; then + timedatectl set-timezone $TZ +fi + TMPDIR="/var/spacewalk/tmp" DO_MIGRATION=0 DO_SETUP=0 @@ -53,6 +57,7 @@ LOGFILE="0" WAIT_BETWEEN_STEPS=0 MANAGER_FORCE_INSTALL=0 PROGRAM="/usr/lib/susemanager/bin/mgr-setup" +NON_INTERACTIVE=0 MIGRATION_ENV="/root/migration_env.sh" SETUP_ENV="/root/setup_env.sh" @@ -100,6 +105,7 @@ helper script to do migration or setup of $PRODUCT_NAME -s fresh setup of the $PRODUCT_NAME installation -w wait between steps (in case you do -r -m) -l LOGFILE write a log to LOGFILE + -n Don't ask anything, use default values -h this help screen @@ -118,6 +124,19 @@ wait_step() { fi; } +ask_input() { + # Ask for input if the variable is not already defined, could be set using an env variable + # Set to an empty string if running in non-interactive mode + VARIABLE=$1 + if [ -z ${!VARIABLE+x} ]; then + if [ $NON_INTERACTIVE -eq 0 ]; then + echo -n "$VARIABLE="; read $VARIABLE + else + declare $VARIABLE= + fi + fi +} + setup_swap() { SWAP=`LANG=C free | grep Swap: | sed -e "s/ \+/\t/g" | cut -f 2` @@ -129,8 +148,11 @@ if [ $SWAP -eq 0 ]; then echo "Not enough space on /. Not adding swap space. Good luck..." else FSTYPE=`df -T / | tail -1 | awk '{print $2}'` + # Ignore for overlay too if [ $FSTYPE == "btrfs" ]; then echo "Will *NOT* create swapfile on btrfs. Make sure you have enough RAM!" + elif [ $FSTYPE == "overlay" ]; then + echo "Will *NOT* create swapfile in a container!" else if [ -f /SWAPFILE ]; then swapoff /SWAPFILE @@ -150,25 +172,10 @@ fi } setup_mail () { - -# fix hostname for postfix -REALHOSTNAME=`hostname -f` -if [ -z "$REALHOSTNAME" ]; then - for i in `ip -f inet -o addr show scope global | awk '{print $4}' | awk -F \/ '{print $1}'`; do - for j in `dig +noall +answer +time=2 +tries=1 -x $i | awk '{print $5}' | sed 's/\.$//'`; do - if [ -n "$j" ]; then - REALHOSTNAME=$j - break 2 - fi - done - done -fi -if [ -n "$REALHOSTNAME" ]; then - echo "$REALHOSTNAME" > /etc/hostname -fi -# bsc#979664 - SUSE Manager requires a working mail system -systemctl --quiet enable postfix 2>&1 -systemctl restart postfix + postconf -e myhostname=$HOSTNAME + # bsc#979664 - SUSE Manager requires a working mail system + systemctl --quiet enable postfix 2>&1 + systemctl restart postfix } setup_hostname() { @@ -316,47 +323,52 @@ check_mksubvolume() { } check_btrfs_dirs() { -DIR="/var/spacewalk" -if [ ! -d $DIR ]; then - FSTYPE=`df -T \`dirname $DIR\` | tail -1 | awk '{print $2}'` - echo -n "Filesystem type for $DIR is $FSTYPE - " - if [ $FSTYPE == "btrfs" ]; then - check_mksubvolume - echo "creating nCoW subvolume." - mksubvolume --nocow $DIR +ROOT_FSTYPE=`df -T / | tail -1 | awk '{print $2}'` +if [ $ROOT_FSTYPE == "overlay" ]; then + echo "Skipping btrfs check in containers" +else + DIR="/var/spacewalk" + if [ ! -d $DIR ]; then + FSTYPE=`df -T \`dirname $DIR\` | tail -1 | awk '{print $2}'` + echo -n "Filesystem type for $DIR is $FSTYPE - " + if [ $FSTYPE == "btrfs" ]; then + check_mksubvolume + echo "creating nCoW subvolume." + mksubvolume --nocow $DIR + else + echo "ok." + fi else - echo "ok." + echo "$DIR already exists. Leaving it untouched." fi -else - echo "$DIR already exists. Leaving it untouched." -fi -DIR="/var/cache" -if [ ! -d $DIR ]; then - mkdir $DIR -fi -FSTYPE=`df -T $DIR | tail -1 | awk '{print $2}'` -echo -n "Filesystem type for $DIR is $FSTYPE - " -if [ $FSTYPE == "btrfs" ]; then - TESTDIR=`basename $DIR` - btrfs subvolume list /var | grep "$TESTDIR" > /dev/null - if [ ! $? -eq 0 ]; then - check_mksubvolume - echo "creating subvolume." - mv $DIR ${DIR}.sav - mksubvolume $DIR - touch ${DIR}.sav/foobar.dummy - if [ ! -d $DIR ]; then - mkdir $DIR + DIR="/var/cache" + if [ ! -d $DIR ]; then + mkdir $DIR + fi + FSTYPE=`df -T $DIR | tail -1 | awk '{print $2}'` + echo -n "Filesystem type for $DIR is $FSTYPE - " + if [ $FSTYPE == "btrfs" ]; then + TESTDIR=`basename $DIR` + btrfs subvolume list /var | grep "$TESTDIR" > /dev/null + if [ ! $? -eq 0 ]; then + check_mksubvolume + echo "creating subvolume." + mv $DIR ${DIR}.sav + mksubvolume $DIR + touch ${DIR}.sav/foobar.dummy + if [ ! -d $DIR ]; then + mkdir $DIR + fi + mv ${DIR}.sav/* $DIR + rmdir ${DIR}.sav + rm -f $DIR/foobar.dummy + else + echo "subvolume for $DIR already exists. Fine." fi - mv ${DIR}.sav/* $DIR - rmdir ${DIR}.sav - rm -f $DIR/foobar.dummy else - echo "subvolume for $DIR already exists. Fine." + echo "ok." fi -else - echo "ok." fi } @@ -437,6 +449,7 @@ report-db-user=$REPORT_DB_USER report-db-password=$REPORT_DB_PASS enable-tftp=$MANAGER_ENABLE_TFTP product_name=$PRODUCT_NAME +hostname=$HOSTNAME " > /root/spacewalk-answers if [ -n "$SCC_USER" ]; then @@ -808,43 +821,43 @@ do_migration() { } do_setup() { - NO_SSL= if [ -f $SETUP_ENV ]; then . $SETUP_ENV else # ask for the needed values if the setup_env file does not exist - echo -n "MANAGER_USER="; read MANAGER_USER - echo -n "MANAGER_PASS="; read MANAGER_PASS - echo -n "MANAGER_ADMIN_EMAIL="; read MANAGER_ADMIN_EMAIL - echo -n "CERT_CNAMES=" ; read CERT_CNAMES - echo -n "CERT_O=" ; read CERT_O - echo -n "CERT_OU=" ; read CERT_OU - echo -n "CERT_CITY=" ; read CERT_CITY - echo -n "CERT_STATE=" ; read CERT_STATE - echo -n "CERT_COUNTRY=" ; read CERT_COUNTRY - echo -n "CERT_EMAIL=" ; read CERT_EMAIL - echo -n "CERT_PASS=" ; read CERT_PASS - echo -n "LOCAL_DB=" ; read LOCAL_DB - echo -n "DB_BACKEND=" ; read DB_BACKEND - echo -n "MANAGER_DB_NAME=" ; read MANAGER_DB_NAME - echo -n "MANAGER_DB_HOST=" ; read MANAGER_DB_HOST - echo -n "MANAGER_DB_PORT=" ; read MANAGER_DB_PORT - echo -n "MANAGER_DB_CA_CERT=" ; read MANAGER_DB_CA_CERT - echo -n "MANAGER_DB_PROTOCOL="; read MANAGER_DB_PROTOCOL - echo -n "MANAGER_ENABLE_TFTP="; read MANAGER_ENABLE_TFTP - echo -n "EXTERNALDB_ADMIN_USER=" ; read EXTERNALDB_ADMIN_USER - echo -n "EXTERNALDB_ADMIN_PASS=" ; read EXTERNALDB_ADMIN_PASS - echo -n "EXTERNALDB_PROVIDER="; read EXTERNALDB_PROVIDER - echo -n "SCC_USER=" ; read SCC_USER - echo -n "SCC_PASS=" ; read SCC_PASS - echo -n "ISS_PARENT=" ; read ISS_PARENT - echo -n "ACTIVATE_SLP=" ; read ACTIVATE_SLP - echo -n "REPORT_DB_NAME=" ; read REPORT_DB_NAME - echo -n "REPORT_DB_HOST=" ; read REPORT_DB_HOST - echo -n "REPORT_DB_PORT=" ; read REPORT_DB_PORT - echo -n "REPORT_DB_USER=" ; read REPORT_DB_USER - echo -n "REPORT_DB_PASS=" ; read REPORT_DB_PASS - echo -n "REPORT_DB_CA_CERT=" ; read REPORT_DB_CA_CERT + ask_input MANAGER_USER + ask_input MANAGER_PASS + ask_input MANAGER_ADMIN_EMAIL + ask_input CERT_CNAMES + ask_input CERT_O + ask_input CERT_OU + ask_input CERT_CITY + ask_input CERT_STATE + ask_input CERT_COUNTRY + ask_input CERT_EMAIL + ask_input CERT_PASS + ask_input LOCAL_DB + ask_input DB_BACKEND + ask_input MANAGER_DB_NAME + ask_input MANAGER_DB_HOST + ask_input MANAGER_DB_PORT + ask_input MANAGER_DB_CA_CERT + ask_input MANAGER_DB_PROTOCOL + ask_input MANAGER_ENABLE_TFTP + ask_input EXTERNALDB_ADMIN_USER + ask_input EXTERNALDB_ADMIN_PASS + ask_input EXTERNALDB_PROVIDER + ask_input SCC_USER + ask_input SCC_PASS + ask_input ISS_PARENT + ask_input ACTIVATE_SLP + ask_input REPORT_DB_NAME + ask_input REPORT_DB_HOST + ask_input REPORT_DB_PORT + ask_input REPORT_DB_USER + ask_input REPORT_DB_PASS + ask_input REPORT_DB_CA_CERT + ask_input UYUNI_FQDN fi; if [ -z "$SYS_DB_PASS" ]; then SYS_DB_PASS=`dd if=/dev/urandom bs=16 count=4 2> /dev/null | md5sum | cut -b 1-8` @@ -878,6 +891,13 @@ do_setup() { EXTERNALDB=1 ;; esac + if [ -z "$NO_SSL" ]; then + NO_SSL= + fi + if [ -n "$UYUNI_FQDN" ]; then + HOSTNAME=$UYUNI_FQDN + fi + check_re_install echo "Do not delete this file unless you know what you are doing!" > $MANAGER_COMPLETE setup_swap @@ -888,6 +908,11 @@ do_setup() { setup_spacewalk + # In the container case, we have the MIRROR_PATH environment variable at setup + if [ -n "$MIRROR_PATH" ]; then + echo "server.susemanager.fromdir = $MIRROR_PATH" >> /etc/rhn/rhn.conf + fi + if [ -n "$ISS_PARENT" ]; then local certname=`echo "MASTER-$ISS_PARENT-TRUSTED-SSL-CERT" | sed 's/\./_/g'` curl -s -S -o /usr/share/rhn/$certname "http://$ISS_PARENT/pub/RHN-ORG-TRUSTED-SSL-CERT" @@ -963,6 +988,9 @@ do -w) WAIT_BETWEEN_STEPS=1 ;; + -n) + NON_INTERACTIVE=1 + ;; *) echo echo "Option \"$p\" is not recognized. Type \"$PROGRAM -h\" for help." diff --git a/susemanager/bin/susemanager-upgrade.sh b/susemanager/bin/susemanager-upgrade.sh deleted file mode 100755 index 13ab5f527559..000000000000 --- a/susemanager/bin/susemanager-upgrade.sh +++ /dev/null @@ -1,134 +0,0 @@ -#! /bin/bash -# -# Copyright (C) 2014 Novell, Inc. -# This software is licensed to you under the GNU General Public License, -# version 2 (GPLv2). There is NO WARRANTY for this software, express or -# implied, including the implied warranties of MERCHANTABILITY or FITNESS -# FOR A PARTICULAR PURPOSE. You should have received a copy of GPLv2 -# along with this software; if not, see -# http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt. - -LOGFILE="/var/log/susemanager-upgrade.log" -# set -x -exec > >(tee -a $LOGFILE) 2>&1 - -if [ $UID -ne 0 ]; then - echo "You must run this as root." - exit -fi - -read_value() { - local key=$1 - local val=$( egrep -m1 "^$key[[:space:]]*=" /etc/rhn/rhn.conf | sed "s/^$key[[:space:]]*=[[:space:]]*\(.*\)/\1/" || echo "" ) - echo $val - return 0 - -} - -is_embedded_db() { - if [ "$DBHOST" = "localhost" ]; then - return 0 - else - return 1 - fi -} - -exists_pg_db() { - EXISTS=$(su - postgres -c 'psql -t -c "select datname from pg_database where datname='"'$DBNAME'"';"') - if [ "x$EXISTS" == "x $DBNAME" ] ; then - return 0 - else - return 1 - fi -} - -exists_plpgsql() { - EXISTS=$(su - postgres -c 'psql -At -c "select lanname from pg_catalog.pg_language where lanname='"'plpgsql'"';"'" $DBNAME") - if [ "x$EXISTS" == "xplpgsql" ] ; then - return 0 - else - return 1 - fi -} - -exists_pltclu() { - if is_embedded_db ; then - EXISTS=$(su - postgres -c 'psql -At -c "select lanname from pg_catalog.pg_language where lanname='"'pltclu'"';"'" $DBNAME") - else - EXISTS=$(echo "select lanname from pg_catalog.pg_language where lanname='pltclu';" | spacewalk-sql --select-mode - | grep pltclu | sed 's/^[[:space:]]*\(pltclu\)[[:space:]]*$/\1/') - fi - if [ "x$EXISTS" == "xpltclu" ] ; then - return 0 - else - return 1 - fi -} - -upgrade_pg() { - - if ! db_exists ; then - echo "Database does not exist or is not running" - exit 1 - fi - if ! is_embedded_db ; then - if ! exists_pltclu ; then - echo "SUSE Manager is not running with an embedded DB and your installation miss the 'pltclu' extension." - echo "Please install it before you continue" - exit 1 - fi - return 0 - fi - rcpostgresql status || rcpostgresql start - if ! exists_pg_db ; then - echo "Database does not exist." - exit 1 - fi - if ! exists_plpgsql ; then - su - postgres -c "createlang plpgsql '$DBNAME'" - fi - if ! exists_pltclu ; then - su - postgres -c "createlang pltclu '$DBNAME'" - fi -} - -db_exists() { - EXISTS=$(echo "select label from rhnVersionInfo;" | spacewalk-sql --select-mode - | grep "schema") - if [ -z "$EXISTS" ]; then - return 1 - else - return 0 - fi -} - -upgrade_schema() { - spacewalk-schema-upgrade -y || exit 1 -} - -upgrade_post_db() { - sed -i '/.*\/usr\/sbin\/mgr-ncc-sync,\\.*/d' /etc/sudoers -} - -DBBACKEND=`read_value db_backend` -DBNAME=`read_value db_name` -DBHOST=`read_value db_host` -DBUSER=`read_value db_user` - -if [ "$DBBACKEND" != "postgresql" ]; then - echo "Unknown database backend '$DBBACKEND'" - exit 1 -fi - -if [ "$DBBACKEND" = "postgresql" -a ! -e "/usr/bin/psql" ]; then - echo "/usr/bin/psql not found" - exit 1 -fi - -rcapache2 status && spacewalk-service stop - -upgrade_pg - -upgrade_schema - -upgrade_post_db - -spacewalk-service start diff --git a/susemanager/empty-repo.conf b/susemanager/empty-repo.conf new file mode 100644 index 000000000000..82b468721cff --- /dev/null +++ b/susemanager/empty-repo.conf @@ -0,0 +1,2 @@ +RewriteRule ^/pub/repositories/empty/(.*)$ /gpg/repositories/empty/$1 [L,PT] +RewriteRule ^/pub/repositories/empty-deb/(.*)$ /gpg/repositories/empty-deb/$1 [L,PT] diff --git a/susemanager/src/mgr-salt-ssh b/susemanager/src/mgr-salt-ssh index 62a5db579fe8..ed14bbd0b5de 100755 --- a/susemanager/src/mgr-salt-ssh +++ b/susemanager/src/mgr-salt-ssh @@ -20,6 +20,8 @@ if __name__ == "__main__": os.chdir(tempfile.gettempdir()) try: chugid("salt", "salt") + # Change HOME according to salt user + os.environ["HOME"] = os.path.expanduser("~salt") except (KeyError, CommandExecutionError): print("Error: Unable to setuid to `salt` user!", file=sys.stderr) exit(1) diff --git a/susemanager/src/mgr_bootstrap_data.py b/susemanager/src/mgr_bootstrap_data.py index 1babbf2ff324..ec38dcc7dd07 100644 --- a/susemanager/src/mgr_bootstrap_data.py +++ b/susemanager/src/mgr_bootstrap_data.py @@ -923,19 +923,19 @@ 'DEST' : DOCUMENT_ROOT + '/pub/repositories/sle/15/0/bootstrap/' }, 'SLE-15-SP1-aarch64' : { - 'PDID' : [1769, 1709], 'BETAPDID' : [1925], 'PKGLIST' : ONLYSLE15 + PKGLIST15_SALT + PKGLIST15_X86_ARM, + 'PDID' : [1769, 1709, 2216], 'BETAPDID' : [1925], 'PKGLIST' : ONLYSLE15 + PKGLIST15_SALT + PKGLIST15_X86_ARM, 'DEST' : DOCUMENT_ROOT + '/pub/repositories/sle/15/1/bootstrap/' }, 'SLE-15-SP1-ppc64le' : { - 'PDID' : [1770, 1710], 'BETAPDID' : [1926], 'PKGLIST' : ONLYSLE15 + PKGLIST15_SALT + PKGLIST15_PPC, + 'PDID' : [1770, 1710, 2217], 'BETAPDID' : [1926], 'PKGLIST' : ONLYSLE15 + PKGLIST15_SALT + PKGLIST15_PPC, 'DEST' : DOCUMENT_ROOT + '/pub/repositories/sle/15/1/bootstrap/' }, 'SLE-15-SP1-s390x' : { - 'PDID' : [1771, 1711], 'BETAPDID' : [1927], 'PKGLIST' : ONLYSLE15 + PKGLIST15_SALT + PKGLIST15_Z, + 'PDID' : [1771, 1711, 2218], 'BETAPDID' : [1927], 'PKGLIST' : ONLYSLE15 + PKGLIST15_SALT + PKGLIST15_Z, 'DEST' : DOCUMENT_ROOT + '/pub/repositories/sle/15/1/bootstrap/' }, 'SLE-15-SP1-x86_64' : { - 'PDID' : [1772, 1712], 'BETAPDID' : [1928], 'PKGLIST' : ONLYSLE15 + PKGLIST15_SALT + PKGLIST15_X86_ARM, + 'PDID' : [1772, 1712, 2219], 'BETAPDID' : [1928], 'PKGLIST' : ONLYSLE15 + PKGLIST15_SALT + PKGLIST15_X86_ARM, 'DEST' : DOCUMENT_ROOT + '/pub/repositories/sle/15/1/bootstrap/' }, 'SUMA-40-PROXY-x86_64' : { @@ -943,19 +943,19 @@ 'DEST' : DOCUMENT_ROOT + '/pub/repositories/sle/15/1/bootstrap/' }, 'SLE-15-SP2-aarch64' : { - 'PDID' : [1943, 1709], 'BETAPDID' : [1925], 'PKGLIST' : ONLYSLE15 + PKGLIST15_SALT + PKGLIST15_X86_ARM, + 'PDID' : [1943, 1709, 2372], 'BETAPDID' : [1925], 'PKGLIST' : ONLYSLE15 + PKGLIST15_SALT + PKGLIST15_X86_ARM, 'DEST' : DOCUMENT_ROOT + '/pub/repositories/sle/15/2/bootstrap/' }, 'SLE-15-SP2-ppc64le' : { - 'PDID' : [1944, 1710], 'BETAPDID' : [1926], 'PKGLIST' : ONLYSLE15 + PKGLIST15_SALT + PKGLIST15_PPC, + 'PDID' : [1944, 1710, 2373], 'BETAPDID' : [1926], 'PKGLIST' : ONLYSLE15 + PKGLIST15_SALT + PKGLIST15_PPC, 'DEST' : DOCUMENT_ROOT + '/pub/repositories/sle/15/2/bootstrap/' }, 'SLE-15-SP2-s390x' : { - 'PDID' : [1945, 1711], 'BETAPDID' : [1927], 'PKGLIST' : ONLYSLE15 + PKGLIST15_SALT + PKGLIST15_Z, + 'PDID' : [1945, 1711, 2374], 'BETAPDID' : [1927], 'PKGLIST' : ONLYSLE15 + PKGLIST15_SALT + PKGLIST15_Z, 'DEST' : DOCUMENT_ROOT + '/pub/repositories/sle/15/2/bootstrap/' }, 'SLE-15-SP2-x86_64' : { - 'PDID' : [1946, 1712], 'BETAPDID' : [1928], 'PKGLIST' : ONLYSLE15 + PKGLIST15_SALT + PKGLIST15_X86_ARM, + 'PDID' : [1946, 1712, 2375], 'BETAPDID' : [1928], 'PKGLIST' : ONLYSLE15 + PKGLIST15_SALT + PKGLIST15_X86_ARM, 'DEST' : DOCUMENT_ROOT + '/pub/repositories/sle/15/2/bootstrap/' }, 'SUMA-41-PROXY-x86_64' : { @@ -963,23 +963,23 @@ 'DEST' : DOCUMENT_ROOT + '/pub/repositories/sle/15/2/bootstrap/' }, 'SLE-15-SP3-aarch64' : { - 'PDID' : [2142, 1709], 'BETAPDID' : [1925], 'PKGLIST' : ONLYSLE15 + PKGLIST15_SALT + PKGLIST15_X86_ARM, + 'PDID' : [2142, 1709, 2567], 'BETAPDID' : [1925], 'PKGLIST' : ONLYSLE15 + PKGLIST15_SALT + PKGLIST15_X86_ARM, 'DEST' : DOCUMENT_ROOT + '/pub/repositories/sle/15/3/bootstrap/' }, 'SLE-15-SP3-ppc64le' : { - 'PDID' : [2143, 1710], 'BETAPDID' : [1926], 'PKGLIST' : ONLYSLE15 + PKGLIST15_SALT + PKGLIST15_PPC, + 'PDID' : [2143, 1710, 2568], 'BETAPDID' : [1926], 'PKGLIST' : ONLYSLE15 + PKGLIST15_SALT + PKGLIST15_PPC, 'DEST' : DOCUMENT_ROOT + '/pub/repositories/sle/15/3/bootstrap/' }, 'SLE-15-SP3-s390x' : { - 'PDID' : [2144, 1711], 'BETAPDID' : [1927], 'PKGLIST' : ONLYSLE15 + PKGLIST15_SALT + PKGLIST15_Z, + 'PDID' : [2144, 1711, 2569], 'BETAPDID' : [1927], 'PKGLIST' : ONLYSLE15 + PKGLIST15_SALT + PKGLIST15_Z, 'DEST' : DOCUMENT_ROOT + '/pub/repositories/sle/15/3/bootstrap/' }, 'SLE-15-SP3-x86_64' : { - 'PDID' : [2145, 1712], 'BETAPDID' : [1928], 'PKGLIST' : ONLYSLE15 + PKGLIST15_SALT + PKGLIST15_X86_ARM, + 'PDID' : [2145, 1712, 2570], 'BETAPDID' : [1928], 'PKGLIST' : ONLYSLE15 + PKGLIST15_SALT + PKGLIST15_X86_ARM, 'DEST' : DOCUMENT_ROOT + '/pub/repositories/sle/15/3/bootstrap/' }, 'SUMA-42-PROXY-x86_64' : { - 'PDID' : [2145, 2225], 'BETAPDID' : [], 'PKGLIST' : ONLYSLE15 + PKGLIST15_SALT_OPT_BUNDLE + PKGLIST15_X86_ARM, + 'PDID' : [2145, 2225, 2223], 'BETAPDID' : [], 'PKGLIST' : ONLYSLE15 + PKGLIST15_SALT_OPT_BUNDLE + PKGLIST15_X86_ARM, 'DEST' : DOCUMENT_ROOT + '/pub/repositories/sle/15/3/bootstrap/' }, 'SLE-15-SP4-aarch64' : { diff --git a/susemanager/susemanager.changes.mackdk.fix-bootstrap-repo-data-ltss b/susemanager/susemanager.changes.mackdk.fix-bootstrap-repo-data-ltss new file mode 100644 index 000000000000..22b41d47d8ff --- /dev/null +++ b/susemanager/susemanager.changes.mackdk.fix-bootstrap-repo-data-ltss @@ -0,0 +1 @@ +- Require LTSS channel for SUSE Manager Proxy 4.2 (bsc#1214187) diff --git a/susemanager/susemanager.changes.mbussolotto.ignore_overlay b/susemanager/susemanager.changes.mbussolotto.ignore_overlay new file mode 100644 index 000000000000..fa22552a5eb1 --- /dev/null +++ b/susemanager/susemanager.changes.mbussolotto.ignore_overlay @@ -0,0 +1 @@ +- Skip swap creation and BTRFS check when we have overlayfs diff --git a/susemanager/susemanager.changes.mc.fix-bootstrap-data b/susemanager/susemanager.changes.mc.fix-bootstrap-data new file mode 100644 index 000000000000..c25c61d18f73 --- /dev/null +++ b/susemanager/susemanager.changes.mc.fix-bootstrap-data @@ -0,0 +1 @@ +- require LTSS channels for SLE 15 SP1, SLE 15 SP2 and SLE 15 SP3 (bsc#1213432) diff --git a/susemanager/susemanager.changes.mcalmer.cleanup-sudo-config b/susemanager/susemanager.changes.mcalmer.cleanup-sudo-config new file mode 100644 index 000000000000..8e434ba8f58c --- /dev/null +++ b/susemanager/susemanager.changes.mcalmer.cleanup-sudo-config @@ -0,0 +1 @@ +- drop unused susemanager-upgrade.sh diff --git a/susemanager/susemanager.changes.meaksh.fix-home-env-in-mgr-salt-ssh-to-avoid-gitfs-issues b/susemanager/susemanager.changes.meaksh.fix-home-env-in-mgr-salt-ssh-to-avoid-gitfs-issues new file mode 100644 index 000000000000..8330bb4a953a --- /dev/null +++ b/susemanager/susemanager.changes.meaksh.fix-home-env-in-mgr-salt-ssh-to-avoid-gitfs-issues @@ -0,0 +1 @@ +- Make mgr-salt-ssh to properly fix HOME environment to avoid issues with gitfs (bsc#1210994) diff --git a/susemanager/susemanager.spec b/susemanager/susemanager.spec index 5ea49028fd0a..ec684d3c25cc 100644 --- a/susemanager/susemanager.spec +++ b/susemanager/susemanager.spec @@ -30,7 +30,6 @@ %global salt_group root %global serverdir %{_sharedstatedir} %global wwwroot %{_localstatedir}/www -%global wwwdocroot %{wwwroot}/html %endif %if 0%{?suse_version} @@ -41,9 +40,10 @@ %global salt_group salt %global serverdir /srv %global wwwroot %{serverdir}/www -%global wwwdocroot %{wwwroot}/htdocs %endif +%global reporoot %{_datarootdir}/susemanager/gpg/ + %global debug_package %{nil} Name: susemanager @@ -156,6 +156,7 @@ Requires: spacewalk-backend-sql Requires: spacewalk-common Requires: susemanager-build-keys Requires: susemanager-sync-data +Requires: uyuni-build-keys BuildRequires: docbook-utils %description tools @@ -189,13 +190,15 @@ install -m 0644 etc/logrotate.d/susemanager-tools %{buildroot}/%{_sysconfdir}/lo install -m 0644 etc/slp.reg.d/susemanager.reg %{buildroot}/%{_sysconfdir}/slp.reg.d make -C src install PREFIX=$RPM_BUILD_ROOT PYTHON_BIN=%{pythonX} MANDIR=%{_mandir} install -d -m 755 %{buildroot}/%{wwwroot}/os-images/ +mkdir -p %{buildroot}/etc/apache2/conf.d +install empty-repo.conf %{buildroot}/etc/apache2/conf.d/empty-repo.conf # empty repo for rhel base channels -mkdir -p %{buildroot}%{wwwdocroot}/pub/repositories/ -cp -r pub/empty %{buildroot}%{wwwdocroot}/pub/repositories/ +mkdir -p %{buildroot}%{reporoot}/repositories/ +cp -r pub/empty %{buildroot}%{reporoot}/repositories/ # empty repo for Ubuntu base fake channel -cp -r pub/empty-deb %{buildroot}%{wwwdocroot}/pub/repositories/ +cp -r pub/empty-deb %{buildroot}%{reporoot}/repositories/ # YaST configuration mkdir -p %{buildroot}%{_datadir}/YaST2/clients @@ -324,11 +327,13 @@ sed -i '/You can access .* via https:\/\//d' /tmp/motd 2> /dev/null ||: %dir %{pythonsmroot}/susemanager %dir %{_prefix}/share/rhn/ %dir %{_datadir}/susemanager -%dir %{wwwdocroot}/pub -%dir %{wwwdocroot}/pub/repositories -%dir %{wwwdocroot}/pub/repositories/empty -%dir %{wwwdocroot}/pub/repositories/empty/repodata -%dir %{wwwdocroot}/pub/repositories/empty-deb +%dir %{reporoot} +%dir %{reporoot}/repositories +%dir %{reporoot}/repositories/empty +%dir %{reporoot}/repositories/empty/repodata +%dir %{reporoot}/repositories/empty-deb +%dir /etc/apache2 +%dir /etc/apache2/conf.d %config(noreplace) %{_sysconfdir}/logrotate.d/susemanager-tools %{_prefix}/share/rhn/config-defaults/rhn_*.conf %attr(0755,root,root) %{_bindir}/mgr-salt-ssh @@ -351,8 +356,9 @@ sed -i '/You can access .* via https:\/\//d' /tmp/motd 2> /dev/null ||: %{_datadir}/susemanager/__pycache__/ %endif %{_mandir}/man8/mgr-sync.8* -%{wwwdocroot}/pub/repositories/empty/repodata/*.xml* -%{wwwdocroot}/pub/repositories/empty-deb/Packages -%{wwwdocroot}/pub/repositories/empty-deb/Release +%{reporoot}/repositories/empty/repodata/*.xml* +%{reporoot}/repositories/empty-deb/Packages +%{reporoot}/repositories/empty-deb/Release +/etc/apache2/conf.d/empty-repo.conf %changelog diff --git a/testsuite/.rubocop_todo.yml b/testsuite/.rubocop_todo.yml index badd81174a5d..778958c7ae13 100644 --- a/testsuite/.rubocop_todo.yml +++ b/testsuite/.rubocop_todo.yml @@ -281,13 +281,18 @@ Lint/UselessAssignment: # Offense count: 9 # Configuration parameters: IgnoredMethods. Metrics/AbcSize: - Max: 46 + Enabled: false # Offense count: 6 # Configuration parameters: CountComments, ExcludedMethods. # ExcludedMethods: refine Metrics/BlockLength: - Max: 67 + Max: 74 + +# Offense count: 4 +# Configuration parameters: IgnoredMethods. +Metrics/CyclomaticComplexity: + Enabled: false # Offense count: 21 # Configuration parameters: CountComments, ExcludedMethods. diff --git a/testsuite/Gemfile b/testsuite/Gemfile index 53707340615a..2935ba3be875 100644 --- a/testsuite/Gemfile +++ b/testsuite/Gemfile @@ -13,6 +13,8 @@ gem 'rack-test', "~> 2.0" gem 'nokogiri', "~> 1.12.0" gem 'rake', "~> 13.0" gem 'jwt', "~> 2.6" +# mini_mime > 1.1.2, requires ruby 2.6 +gem 'mini_mime', '1.1.2' gem 'mime-types', "~> 3.4" gem 'xmlrpc', "~> 0.3" gem 'faraday', '1.10.0' diff --git a/testsuite/documentation/cucumber-steps.md b/testsuite/documentation/cucumber-steps.md index a34470bf0dd1..84fcf15ebd53 100644 --- a/testsuite/documentation/cucumber-steps.md +++ b/testsuite/documentation/cucumber-steps.md @@ -292,7 +292,7 @@ The radio button can be identified by name, id or label text. ```gherkin When I check "manageWithSSH" When I uncheck "role_org_admin" - When I check "container_build_host" if not checked + When I check "Container Build Host" if not checked ``` The check box can be identified by name, id or label text. @@ -413,8 +413,9 @@ Note that the text area variant handles the new lines characters while the other When I restart the spacewalk service When I wait until "salt-minion" service is up and running on "rhlike_minion" Then service "bind" is enabled on "proxy" - Then service "dhcpd" is running on "proxy" + And service "dhcpd" is running on "proxy" When I restart the "bind" service on "sle_minion" + And I reload the "apache2" service on "proxy" ``` * File removal @@ -466,10 +467,10 @@ Note that the text area variant handles the new lines characters while the other When I execute mgr-sync "list channels -e" with user "admin" and password "admin" ``` -* Execute mgr-bootstrap +* Execute mgr-bootstrap to create a bootstrap script ```gherkin - When I execute mgr-bootstrap "--script=bootstrap-test.sh" + When I execute mgr-bootstrap "--activation-keys=1-AK-KEY-NAME --script=bootstrap-test.sh" ``` * Execute mgr-create-bootstrap-repo @@ -702,11 +703,11 @@ of the underlying libraries, have a look at When implementing a step, to run a command on a target, use: ```ruby -$server.run("uptime") -$minion.run("uptime", check_errors: false) -$minion.run("uptime", check_errors: true) -$minion.run("uptime", check_errors: true, timeout: 300) -$minion.run("uptime", check_errors: false, timeout: 500, user: 'root') +get_target('server').run("uptime") +get_target('sle_minion').run("uptime", check_errors: false) +get_target('sle_minion').run("uptime", check_errors: true) +get_target('sle_minion').run("uptime", check_errors: true, timeout: 300) +get_target('sle_minion').run("uptime", check_errors: false, timeout: 500, user: 'root') ``` Arguments taken by method ```run``` are: @@ -724,7 +725,7 @@ retry several times until ```DEFAULT_TIMEOUT```. When implementing a step, to get the FQDN of the host, use: ```ruby - STDOUT.puts $minion.full_hostname + STDOUT.puts get_target('sle_minion').full_hostname ``` ### Converting between host name and target diff --git a/testsuite/documentation/pitfalls.md b/testsuite/documentation/pitfalls.md index e76eb4f4323c..d319f1290aa7 100644 --- a/testsuite/documentation/pitfalls.md +++ b/testsuite/documentation/pitfalls.md @@ -20,19 +20,19 @@ Put the complexity in the step. Keep the feature free of how the test is execute ```ruby When(/^I start database with the command "(.*?)"$/) do |start_command| - $output, _code = $server.run(start_command) + $output, _code = get_target('server').run(start_command) end When(/^when I stop the database with the command "(.*?)"$/) do |stop_command| - $output, _code = $server.run(stop_command) + $output, _code = get_target('server').run(stop_command) end When(/^when I check the database status with the command "(.*?)"$/) do |check_command| - $output, _code = $server.run(check_command) + $output, _code = get_target('server').run(check_command) end When(/^I stop the database with the command "(.*?)"$/) do |stop_command| - $output, _code = $server.run(stop_command) + $output, _code = get_target('server').run(stop_command) end ``` @@ -43,7 +43,7 @@ stop databases itself and want to be explicit just use `When I run the command X ```ruby When(/^I start database with the command "(.*?)"$/) do |start_command| - $output, _code = $server.run(start_command) + $output, _code = get_target('server').run(start_command) end # do something with $output then diff --git a/testsuite/ext-tools/maintenance_json_generator.py b/testsuite/ext-tools/maintenance_json_generator.py index 14628c574ccf..ba57549cad63 100644 --- a/testsuite/ext-tools/maintenance_json_generator.py +++ b/testsuite/ext-tools/maintenance_json_generator.py @@ -46,7 +46,6 @@ "centos7_client": "/SUSE_Updates_RES_7-CLIENT-TOOLS_x86_64/", "centos7_minion": "/SUSE_Updates_RES_7-CLIENT-TOOLS_x86_64", "rocky8_minion": "/SUSE_Updates_RES_8-CLIENT-TOOLS_x86_64/", - "ubuntu1804_minion": "/SUSE_Updates_Ubuntu_18.04-CLIENT-TOOLS_x86_64/", "ubuntu2004_minion": "/SUSE_Updates_Ubuntu_20.04-CLIENT-TOOLS_x86_64/", "ubuntu2204_minion": "/SUSE_Updates_Ubuntu_22.04-CLIENT-TOOLS_x86_64/", "debian10_minion": "/SUSE_Updates_Debian_10-CLIENT-TOOLS_x86_64/", diff --git a/testsuite/features/build_validation/add_MU_repositories/monitoring_server_add_maintenance_update_repositories.feature b/testsuite/features/build_validation/add_MU_repositories/monitoring_server_add_maintenance_update_repositories.feature new file mode 100644 index 000000000000..667d5ea4f6fe --- /dev/null +++ b/testsuite/features/build_validation/add_MU_repositories/monitoring_server_add_maintenance_update_repositories.feature @@ -0,0 +1,41 @@ +# Copyright (c) 2023 SUSE LLC +# Licensed under the terms of the MIT license. + +@monitoring_server +Feature: Add a Maintenance Update custom channel and the custom repositories for monitoring_server + + Scenario: Log in as admin user + Given I am authorized for the "Admin" section + + Scenario: Add the custom child channel for monitoring_server + When I follow the left menu "Software > Manage > Channels" + And I follow "Create Channel" + And I enter "Custom Channel for monitoring_server" as "Channel Name" + And I enter "custom_channel_monitoring_server" as "Channel Label" + And I select the parent channel for the "sle15sp4_minion" from "Parent Channel" + And I enter "Custom channel" as "Channel Summary" + And I click on "Create Channel" + Then I should see a "Channel Custom Channel for monitoring_server created" text + + Scenario: Add the Maintenance update repositories for sle15sp4_minion + When I create the MU repositories for "sle15sp4_minion" + + Scenario: Add the custom repositories to the custom channel for monitoring_server + When I follow the left menu "Software > Manage > Channels" + And I enter "monitoring_server" as the filtered channel name + And I click on the filter button + And I follow "Custom Channel for monitoring_server" + And I follow "Repositories" in the content area + And I select the MU repositories for "sle15sp4_minion" from the list + And I click on "Save Repositories" + Then I should see a "repository information was successfully updated" text + + Scenario: Synchronize the repositories in the custom channel for monitoring_server + When I follow the left menu "Software > Manage > Channels" + And I enter "monitoring_server" as the filtered channel name + And I click on the filter button + And I follow "Custom Channel for monitoring_server" + And I follow "Repositories" in the content area + And I follow "Sync" + And I click on "Sync Now" + Then I should see a "Repository sync scheduled" text or "No repositories are currently associated with this channel" text diff --git a/testsuite/features/build_validation/add_activation_keys/add_activation_key.template b/testsuite/features/build_validation/add_activation_keys/add_activation_key.template index e5fdc34ef2b1..859ed604e68d 100644 --- a/testsuite/features/build_validation/add_activation_keys/add_activation_key.template +++ b/testsuite/features/build_validation/add_activation_keys/add_activation_key.template @@ -1,4 +1,4 @@ -# Copyright (c) 2010-2022 SUSE LLC +# Copyright (c) 2010-2023 SUSE LLC # Licensed under the terms of the MIT license. @ @@ -7,5 +7,5 @@ Feature: Create an activation key for As the testing user I want to use activation keys - Scenario: Create an activation key with the channel and child channels for a + Scenario: Create an activation key with the channel and child channels for When I create an activation key including custom channels for "" via API diff --git a/testsuite/features/build_validation/add_non_MU_repositories/alma9_minion_build_clm.feature b/testsuite/features/build_validation/add_non_MU_repositories/alma9_minion_build_clm.feature index 669eb231e728..354641ad8ff4 100644 --- a/testsuite/features/build_validation/add_non_MU_repositories/alma9_minion_build_clm.feature +++ b/testsuite/features/build_validation/add_non_MU_repositories/alma9_minion_build_clm.feature @@ -15,6 +15,7 @@ Feature: Add the Alma 9 distribution custom repositories Then I should see a "ruby-3.1" text And I should see a "php-8.1" text +@susemanager Scenario: Create a CLM project to remove AppStream metadata from Alma 9 When I follow the left menu "Content Lifecycle > Projects" And I follow "Create Project" @@ -44,3 +45,35 @@ Feature: Add the Alma 9 distribution custom repositories And I enter "Initial build" as "message" And I click the environment build button Then I should see a "Version 1: Initial build" text + +@uyuni + Scenario: Create a CLM project to remove AppStream metadata from Alma 9 + When I follow the left menu "Content Lifecycle > Projects" + And I follow "Create Project" + And I enter "Remove AppStream metadata from Alma 9" as "name" + And I enter "no-appstream-alma-9" as "label" + And I click on "Create" + Then I should see a "Content Lifecycle Project - Remove AppStream metadata from Alma 9" text + When I click on "Attach/Detach Sources" + And I wait until I do not see "Loading" text + And I select "AlmaLinux 9 (x86_64)" from "selectedBaseChannel" + And I check "Uyuni Client Tools for AlmaLinux 9 (x86_64)" + And I check "Custom Channel for alma9_minion" + And I check "AlmaLinux 9 AppStream (x86_64)" + And I click on "Save" + Then I should see a "AlmaLinux 9 AppStream (x86_64)" text + When I click on "Attach/Detach Filters" + And I check "php-8.1: enable module php:8.1" + And I check "ruby-3.1: enable module ruby:3.1" + And I click on "Save" + Then I should see a "php-8.1: enable module php:8.1" text + When I click on "Add Environment" + And I enter "result" as "name" + And I enter "result" as "label" + And I enter "Filtered channels without AppStream channels" as "description" + And I click on "Save" + Then I should see a "not built" text + When I click on "Build" + And I enter "Initial build" as "message" + And I click the environment build button + Then I should see a "Version 1: Initial build" text diff --git a/testsuite/features/build_validation/add_non_MU_repositories/liberty9_minion_build_clm.feature b/testsuite/features/build_validation/add_non_MU_repositories/liberty9_minion_build_clm.feature index 99cefeae7b62..38ca0fe48486 100644 --- a/testsuite/features/build_validation/add_non_MU_repositories/liberty9_minion_build_clm.feature +++ b/testsuite/features/build_validation/add_non_MU_repositories/liberty9_minion_build_clm.feature @@ -1,6 +1,7 @@ # Copyright (c) 2023 SUSE LLC # Licensed under the terms of the MIT license. +@susemanager @liberty9_minion Feature: Add the Liberty Linux 9 distribution custom repositories In order to use Liberty Linux 9 channels with Appstream modules diff --git a/testsuite/features/build_validation/add_non_MU_repositories/oracle9_minion_build_clm.feature b/testsuite/features/build_validation/add_non_MU_repositories/oracle9_minion_build_clm.feature index af46f4982f2e..898b49d5e1b8 100644 --- a/testsuite/features/build_validation/add_non_MU_repositories/oracle9_minion_build_clm.feature +++ b/testsuite/features/build_validation/add_non_MU_repositories/oracle9_minion_build_clm.feature @@ -15,6 +15,7 @@ Feature: Add the Oracle 9 distribution custom repositories Then I should see a "ruby-3.1" text And I should see a "php-8.1" text +@susemanager Scenario: Create a CLM project to remove AppStream metadata from Oracle 9 When I follow the left menu "Content Lifecycle > Projects" And I follow "Create Project" @@ -26,6 +27,7 @@ Feature: Add the Oracle 9 distribution custom repositories And I wait until I do not see "Loading" text And I select "oraclelinux9 for x86_64" from "selectedBaseChannel" # "oraclelinux9-appstream for x86_64" is already checked + And I check "Uyuni Client Tools for Oracle Linux 9 (x86_64)" And I check "Custom Channel for oracle9_minion" And I click on "Save" Then I should see a "EL9-Manager-Tools-Pool for x86_64 OL9" text @@ -44,3 +46,35 @@ Feature: Add the Oracle 9 distribution custom repositories And I enter "Initial build" as "message" And I click the environment build button Then I should see a "Version 1: Initial build" text + +@uyuni + Scenario: Create a CLM project to remove AppStream metadata from Oracle 9 + When I follow the left menu "Content Lifecycle > Projects" + And I follow "Create Project" + And I enter "Remove AppStream metadata from Oracle 9" as "name" + And I enter "no-appstream-oracle-9" as "label" + And I click on "Create" + Then I should see a "Content Lifecycle Project - Remove AppStream metadata from Oracle 9" text + When I click on "Attach/Detach Sources" + And I wait until I do not see "Loading" text + And I select "Oracle Linux 9 (x86_64)" from "selectedBaseChannel" + And I check "Uyuni Client Tools for Oracle Linux 9 (x86_64)" + And I check "Oracle Linux 9 AppStream (x86_64)" + And I check "Custom Channel for oracle9_minion" + And I click on "Save" + Then I should see a "Oracle Linux 9 AppStream (x86_64)" text + When I click on "Attach/Detach Filters" + And I check "php-8.1: enable module php:8.1" + And I check "ruby-3.1: enable module ruby:3.1" + And I click on "Save" + Then I should see a "php-8.1: enable module php:8.1" text + When I click on "Add Environment" + And I enter "result" as "name" + And I enter "result" as "label" + And I enter "Filtered channels without AppStream channels" as "description" + And I click on "Save" + Then I should see a "not built" text + When I click on "Build" + And I enter "Initial build" as "message" + And I click the environment build button + Then I should see a "Version 1: Initial build" text diff --git a/testsuite/features/build_validation/add_non_MU_repositories/rocky8_minion_add_iso_and_build_clm.feature b/testsuite/features/build_validation/add_non_MU_repositories/rocky8_minion_add_iso_and_build_clm.feature index 24ff8ca97c17..3c7a614551dd 100644 --- a/testsuite/features/build_validation/add_non_MU_repositories/rocky8_minion_add_iso_and_build_clm.feature +++ b/testsuite/features/build_validation/add_non_MU_repositories/rocky8_minion_add_iso_and_build_clm.feature @@ -13,6 +13,7 @@ Feature: Add the Rocky 8 distribution custom repositories Scenario: Log in as admin user Given I am authorized for the "Admin" section +@susemanager Scenario: Add a child channel for Rocky 8 DVD repositories When I follow the left menu "Software > Manage > Channels" And I follow "Create Channel" @@ -23,6 +24,17 @@ Feature: Add the Rocky 8 distribution custom repositories And I click on "Create Channel" Then I should see a "Channel Custom Channel for Rocky 8 DVD created" text +@uyuni + Scenario: Add a child channel for Rocky 8 DVD repositories + When I follow the left menu "Software > Manage > Channels" + And I follow "Create Channel" + And I enter "Custom Channel for Rocky 8 DVD" as "Channel Name" + And I enter "rocky-8-iso" as "Channel Label" + And I select "Rocky Linux 8 (x86_64)" from "Parent Channel" + And I enter "Custom channel" as "Channel Summary" + And I click on "Create Channel" + Then I should see a "Channel Custom Channel for Rocky 8 DVD created" text + Scenario: Add the Rocky 8 Appstream DVD repository When I follow the left menu "Software > Manage > Repositories" And I follow "Create Repository" @@ -66,6 +78,7 @@ Feature: Add the Rocky 8 distribution custom repositories Then I should see a "ruby-2.7" text And I should see a "python-3.6" text +@susemanager Scenario: Create a CLM project to remove AppStream metadata from Rocky 8 When I follow the left menu "Content Lifecycle > Projects" And I follow "Create Project" @@ -96,3 +109,36 @@ Feature: Add the Rocky 8 distribution custom repositories And I enter "Initial build" as "message" And I click the environment build button Then I should see a "Version 1: Initial build" text + +@uyuni + Scenario: Create a CLM project to remove AppStream metadata from Rocky 8 + When I follow the left menu "Content Lifecycle > Projects" + And I follow "Create Project" + And I enter "Remove AppStream metadata from Rocky 8" as "name" + And I enter "no-appstream-8" as "label" + And I click on "Create" + Then I should see a "Content Lifecycle Project - Remove AppStream metadata from Rocky 8" text + When I click on "Attach/Detach Sources" + And I wait until I do not see "Loading" text + And I select "Rocky Linux 8 (x86_64)" from "selectedBaseChannel" + And I check "Uyuni Client Tools for Rocky Linux 8 (x86_64)" + And I check "Rocky Linux 8 - AppStream (x86_64)" + And I check "Custom Channel for Rocky 8 DVD" + And I check "Custom Channel for rocky8_minion" + And I click on "Save" + Then I should see a "Custom Channel for Rocky 8 DVD" text + When I click on "Attach/Detach Filters" + And I check "python-3.6: enable module python36:3.6" + And I check "ruby-2.7: enable module ruby:2.7" + And I click on "Save" + Then I should see a "python-3.6: enable module python36:3.6" text + When I click on "Add Environment" + And I enter "result" as "name" + And I enter "result" as "label" + And I enter "Filtered channels without AppStream channels" as "description" + And I click on "Save" + Then I should see a "not built" text + When I click on "Build" + And I enter "Initial build" as "message" + And I click the environment build button + Then I should see a "Version 1: Initial build" text diff --git a/testsuite/features/build_validation/add_non_MU_repositories/rocky9_minion_build_clm.feature b/testsuite/features/build_validation/add_non_MU_repositories/rocky9_minion_build_clm.feature index 6ee86b5dad10..ba0da2f126f5 100644 --- a/testsuite/features/build_validation/add_non_MU_repositories/rocky9_minion_build_clm.feature +++ b/testsuite/features/build_validation/add_non_MU_repositories/rocky9_minion_build_clm.feature @@ -15,6 +15,7 @@ Feature: Add the Rocky 9 distribution custom repositories Then I should see a "ruby-3.1" text And I should see a "php-8.1" text +@susemanager Scenario: Create a CLM project to remove AppStream metadata from Rocky 9 When I follow the left menu "Content Lifecycle > Projects" And I follow "Create Project" @@ -44,3 +45,35 @@ Feature: Add the Rocky 9 distribution custom repositories And I enter "Initial build" as "message" And I click the environment build button Then I should see a "Version 1: Initial build" text + +@uyuni + Scenario: Create a CLM project to remove AppStream metadata from Rocky 9 + When I follow the left menu "Content Lifecycle > Projects" + And I follow "Create Project" + And I enter "Remove AppStream metadata from Rocky 9" as "name" + And I enter "no-appstream-9" as "label" + And I click on "Create" + Then I should see a "Content Lifecycle Project - Remove AppStream metadata from Rocky 9" text + When I click on "Attach/Detach Sources" + And I wait until I do not see "Loading" text + And I select "Rocky Linux 9 (x86_64)" from "selectedBaseChannel" + And I check "Uyuni Client Tools for Rocky Linux 9 (x86_64)" + And I check "Rocky Linux 9 AppStream (x86_64)" + And I check "Custom Channel for rocky9_minion" + And I click on "Save" + Then I should see a "Rocky Linux 9 AppStream (x86_64)" text + When I click on "Attach/Detach Filters" + And I check "php-8.1: enable module php:8.1" + And I check "ruby-3.1: enable module ruby:3.1" + And I click on "Save" + Then I should see a "php-8.1: enable module php:8.1" text + When I click on "Add Environment" + And I enter "result" as "name" + And I enter "result" as "label" + And I enter "Filtered channels without AppStream channels" as "description" + And I click on "Save" + Then I should see a "not built" text + When I click on "Build" + And I enter "Initial build" as "message" + And I click the environment build button + Then I should see a "Version 1: Initial build" text diff --git a/testsuite/features/build_validation/add_non_MU_repositories/ubuntu1804_minion_add_common_repositories.feature b/testsuite/features/build_validation/add_non_MU_repositories/ubuntu1804_minion_add_common_repositories.feature deleted file mode 100644 index b99d6e740903..000000000000 --- a/testsuite/features/build_validation/add_non_MU_repositories/ubuntu1804_minion_add_common_repositories.feature +++ /dev/null @@ -1,49 +0,0 @@ -# Copyright 2021-2023 SUSE LLC -# Licensed under the terms of the MIT license. - -@ubuntu1804_minion -Feature: Add Ubuntu common channels and schedule their synchronization - In order to use external repositories for Ubuntu that are not in SCC - As an authorized user - I want to declare channels with these repositories and synchronize them - - Scenario: Log in as admin user - Given I am authorized for the "Admin" section - - Scenario: Add common channels for Ubuntu 18.04 main - When I use spacewalk-common-channel to add channel "ubuntu-1804-amd64-main" with arch "amd64-deb" - And I follow the left menu "Software > Manage > Channels" - And I follow "Ubuntu 18.04 LTS AMD64 Main" - And I follow "Repositories" in the content area - And I select the "External - Ubuntu 18.04 LTS AMD64 Main" repo - And I click on "Save Repositories" - Then I should see a "repository information was successfully updated" text - When I follow "Sync" - And I click on "Sync Now" - Then I should see a "Repository sync scheduled for Ubuntu 18.04 LTS AMD64 Main." text - - Scenario: Add common channels for Ubuntu 18.04 updates - When I use spacewalk-common-channel to add channel "ubuntu-1804-amd64-main-updates" with arch "amd64-deb" - And I follow the left menu "Software > Manage > Channels" - And I follow "Ubuntu 18.04 LTS AMD64 Main Updates" - And I follow "Repositories" in the content area - And I select the "External - Ubuntu 18.04 LTS AMD64 Main Updates" repo - And I click on "Save Repositories" - Then I should see a "repository information was successfully updated" text - When I follow "Sync" - And I click on "Sync Now" - Then I should see a "Repository sync scheduled for Ubuntu 18.04 LTS AMD64 Main Updates." text - - Scenario: Add common channels for Ubuntu 18.04 security - When I use spacewalk-common-channel to add channel "ubuntu-1804-amd64-main-security" with arch "amd64-deb" - And I follow the left menu "Software > Manage > Channels" - And I follow "Ubuntu 18.04 LTS AMD64 Main Security" - And I follow "Repositories" in the content area - And I select the "External - Ubuntu 18.04 LTS AMD64 Main Security" repo - And I click on "Save Repositories" - Then I should see a "repository information was successfully updated" text - When I follow "Sync" - And I click on "Sync Now" - Then I should see a "Repository sync scheduled for Ubuntu 18.04 LTS AMD64 Main Security." text - - # No common channels for Ubuntu 20.04 diff --git a/testsuite/features/build_validation/containerization/proxy_as_pod_basic_tests.feature b/testsuite/features/build_validation/containerization/proxy_as_pod_basic_tests.feature index 3a33942c8889..355907a37371 100644 --- a/testsuite/features/build_validation/containerization/proxy_as_pod_basic_tests.feature +++ b/testsuite/features/build_validation/containerization/proxy_as_pod_basic_tests.feature @@ -73,7 +73,7 @@ Feature: Register and test a Containerized Proxy And I enter "linux" as "password" And I select the hostname of "containerized_proxy" from "proxies" And I click on "Bootstrap" - And I wait until I see "Successfully bootstrapped host!" text + And I wait until I see "Bootstrap process initiated." text Scenario: Check the new bootstrapped minion in System Overview page When I follow the left menu "Salt > Keys" @@ -107,7 +107,7 @@ Feature: Register and test a Containerized Proxy And the system ID for "sle15sp4_minion" should be correct And the system name for "sle15sp4_minion" should be correct And the uptime for "sle15sp4_minion" should be correct - And I should see several text fields for "sle15sp4_minion" + And I should see several text fields Scenario: Install a patch on the Salt minion When I follow "Software" in the content area @@ -259,7 +259,7 @@ Feature: Register and test a Containerized Proxy And I enter "linux" as "password" And I select the hostname of "proxy" from "proxies" And I click on "Bootstrap" - And I wait until I see "Successfully bootstrapped host!" text + And I wait until I see "Bootstrap process initiated." text Scenario: Cleanup: Check the new bootstrapped minion in System Overview page When I follow the left menu "Salt > Keys" diff --git a/testsuite/features/build_validation/core/allcli_sanity.feature b/testsuite/features/build_validation/core/allcli_sanity.feature index 74c18a9d9f2e..f9d38e6d1737 100644 --- a/testsuite/features/build_validation/core/allcli_sanity.feature +++ b/testsuite/features/build_validation/core/allcli_sanity.feature @@ -285,20 +285,6 @@ Feature: Sanity checks And "rocky9_ssh_minion" should communicate with the server using public interface And the clock from "rocky9_ssh_minion" should be exact -@ubuntu1804_minion - Scenario: The Ubuntu 18.04 Salt minion is healthy - Then "ubuntu1804_minion" should have a FQDN - And reverse resolution should work for "ubuntu1804_minion" - And "ubuntu1804_minion" should communicate with the server using public interface - And the clock from "ubuntu1804_minion" should be exact - -@ubuntu1804_ssh_minion - Scenario: The Ubuntu 18.04 Salt SSH minion is healthy - Then "ubuntu1804_ssh_minion" should have a FQDN - And reverse resolution should work for "ubuntu1804_ssh_minion" - And "ubuntu1804_ssh_minion" should communicate with the server using public interface - And the clock from "ubuntu1804_ssh_minion" should be exact - @ubuntu2004_minion Scenario: The Ubuntu 20.04 minion is healthy Then "ubuntu2004_minion" should have a FQDN diff --git a/testsuite/features/build_validation/create_bootstrap_repositories/create_bootstrap_repository.template b/testsuite/features/build_validation/create_bootstrap_repositories/create_bootstrap_repository.template index 676d96621874..3602e683c03a 100644 --- a/testsuite/features/build_validation/create_bootstrap_repositories/create_bootstrap_repository.template +++ b/testsuite/features/build_validation/create_bootstrap_repositories/create_bootstrap_repository.template @@ -2,7 +2,7 @@ # Licensed under the terms of the MIT license. @ -Feature: Create bootstrap repositories +Feature: Create bootstrap repository for In order to be able to enroll clients with MU repositories As the system administrator I create all bootstrap repos with --with-custom-channels option diff --git a/testsuite/features/build_validation/create_bootstrap_repositories/srv_create_bootstrap_repositories.feature b/testsuite/features/build_validation/create_bootstrap_repositories/srv_create_bootstrap_repositories.feature index 52f615afe285..a9c964e3d3cb 100644 --- a/testsuite/features/build_validation/create_bootstrap_repositories/srv_create_bootstrap_repositories.feature +++ b/testsuite/features/build_validation/create_bootstrap_repositories/srv_create_bootstrap_repositories.feature @@ -86,10 +86,6 @@ Feature: Create bootstrap repositories Scenario: Create the bootstrap repository for a Rocky 9 Salt minion When I create the bootstrap repository for "rocky9_minion" on the server -@ubuntu1804_minion - Scenario: Create the bootstrap repository for a Ubuntu 18.04 Salt minion - When I create the bootstrap repository for "ubuntu1804_minion" on the server - @ubuntu2004_minion Scenario: Create the bootstrap repository for a Ubuntu 20.04 minion When I create the bootstrap repository for "ubuntu2004_minion" on the server diff --git a/testsuite/features/build_validation/init_clients/alma9_minion.feature b/testsuite/features/build_validation/init_clients/alma9_minion.feature index 302795b36f05..daecdfb712df 100644 --- a/testsuite/features/build_validation/init_clients/alma9_minion.feature +++ b/testsuite/features/build_validation/init_clients/alma9_minion.feature @@ -21,7 +21,7 @@ Feature: Bootstrap a Alma 9 Salt minion And I select "1-alma9_minion_key" from "activationKeys" And I select the hostname of "proxy" from "proxies" if present And I click on "Bootstrap" - And I wait until I see "Successfully bootstrapped host!" text + And I wait until I see "Bootstrap process initiated." text And I wait until onboarding is completed for "alma9_minion" @proxy diff --git a/testsuite/features/build_validation/init_clients/alma9_ssh_minion.feature b/testsuite/features/build_validation/init_clients/alma9_ssh_minion.feature index fce17ac212c6..bc8e4cfdff79 100644 --- a/testsuite/features/build_validation/init_clients/alma9_ssh_minion.feature +++ b/testsuite/features/build_validation/init_clients/alma9_ssh_minion.feature @@ -22,7 +22,7 @@ Feature: Bootstrap a Alma 9 Salt SSH minion And I select "1-alma9_ssh_minion_key" from "activationKeys" And I select the hostname of "proxy" from "proxies" if present And I click on "Bootstrap" - And I wait until I see "Successfully bootstrapped host!" text + And I wait until I see "Bootstrap process initiated." text And I wait until onboarding is completed for "alma9_ssh_minion" @proxy diff --git a/testsuite/features/build_validation/init_clients/centos7_minion.feature b/testsuite/features/build_validation/init_clients/centos7_minion.feature index 97d1a9873656..5b6781ba37e8 100644 --- a/testsuite/features/build_validation/init_clients/centos7_minion.feature +++ b/testsuite/features/build_validation/init_clients/centos7_minion.feature @@ -21,7 +21,7 @@ Feature: Bootstrap a CentOS 7 Salt minion And I select "1-centos7_minion_key" from "activationKeys" And I select the hostname of "proxy" from "proxies" if present And I click on "Bootstrap" - And I wait until I see "Successfully bootstrapped host!" text + And I wait until I see "Bootstrap process initiated." text And I wait until onboarding is completed for "centos7_minion" @proxy diff --git a/testsuite/features/build_validation/init_clients/centos7_ssh_minion.feature b/testsuite/features/build_validation/init_clients/centos7_ssh_minion.feature index a15c44e30b20..ae58899496e2 100644 --- a/testsuite/features/build_validation/init_clients/centos7_ssh_minion.feature +++ b/testsuite/features/build_validation/init_clients/centos7_ssh_minion.feature @@ -22,7 +22,7 @@ Feature: Bootstrap a CentOS 7 Salt SSH minion And I select "1-centos7_ssh_minion_key" from "activationKeys" And I select the hostname of "proxy" from "proxies" if present And I click on "Bootstrap" - And I wait until I see "Successfully bootstrapped host!" text + And I wait until I see "Bootstrap process initiated." text And I wait until onboarding is completed for "centos7_ssh_minion" @proxy diff --git a/testsuite/features/build_validation/init_clients/debian10_minion.feature b/testsuite/features/build_validation/init_clients/debian10_minion.feature index f0cad0235269..93394c644517 100644 --- a/testsuite/features/build_validation/init_clients/debian10_minion.feature +++ b/testsuite/features/build_validation/init_clients/debian10_minion.feature @@ -23,7 +23,7 @@ Feature: Bootstrap a Debian 10 Salt minion And I select "1-debian10_minion_key" from "activationKeys" And I select the hostname of "proxy" from "proxies" if present And I click on "Bootstrap" - And I wait until I see "Successfully bootstrapped host!" text + And I wait until I see "Bootstrap process initiated." text And I wait until onboarding is completed for "debian10_minion" @proxy diff --git a/testsuite/features/build_validation/init_clients/debian10_ssh_minion.feature b/testsuite/features/build_validation/init_clients/debian10_ssh_minion.feature index 0d1765e568ed..e15a81333926 100644 --- a/testsuite/features/build_validation/init_clients/debian10_ssh_minion.feature +++ b/testsuite/features/build_validation/init_clients/debian10_ssh_minion.feature @@ -24,7 +24,7 @@ Feature: Bootstrap a Debian 10 Salt SSH minion And I select the hostname of "proxy" from "proxies" if present And I check "manageWithSSH" And I click on "Bootstrap" - And I wait until I see "Successfully bootstrapped host!" text + And I wait until I see "Bootstrap process initiated." text And I wait until onboarding is completed for "debian10_ssh_minion" Scenario: Check events history for failures on SSH-managed Debian 10 minion diff --git a/testsuite/features/build_validation/init_clients/debian11_minion.feature b/testsuite/features/build_validation/init_clients/debian11_minion.feature index 17fb28a794b4..d30b18106265 100644 --- a/testsuite/features/build_validation/init_clients/debian11_minion.feature +++ b/testsuite/features/build_validation/init_clients/debian11_minion.feature @@ -23,7 +23,7 @@ Feature: Bootstrap a Debian 11 Salt minion And I select "1-debian11_minion_key" from "activationKeys" And I select the hostname of "proxy" from "proxies" if present And I click on "Bootstrap" - And I wait until I see "Successfully bootstrapped host!" text + And I wait until I see "Bootstrap process initiated." text And I wait until onboarding is completed for "debian11_minion" @proxy diff --git a/testsuite/features/build_validation/init_clients/debian11_ssh_minion.feature b/testsuite/features/build_validation/init_clients/debian11_ssh_minion.feature index 7dfd868e3adf..00e42d87dd35 100644 --- a/testsuite/features/build_validation/init_clients/debian11_ssh_minion.feature +++ b/testsuite/features/build_validation/init_clients/debian11_ssh_minion.feature @@ -24,7 +24,7 @@ Feature: Bootstrap a Debian 11 Salt SSH minion And I select the hostname of "proxy" from "proxies" if present And I check "manageWithSSH" And I click on "Bootstrap" - And I wait until I see "Successfully bootstrapped host!" text + And I wait until I see "Bootstrap process initiated." text And I wait until onboarding is completed for "debian11_ssh_minion" Scenario: Check events history for failures on SSH-managed Debian 11 minion diff --git a/testsuite/features/build_validation/init_clients/liberty9_minion.feature b/testsuite/features/build_validation/init_clients/liberty9_minion.feature index 11adbb9dd2a3..823c9ec182f0 100644 --- a/testsuite/features/build_validation/init_clients/liberty9_minion.feature +++ b/testsuite/features/build_validation/init_clients/liberty9_minion.feature @@ -4,6 +4,7 @@ # 1) bootstrap a new Liberty Linux 9 minion # 2) subscribe it to a base channel for testing +@susemanager @liberty9_minion Feature: Bootstrap a Liberty Linux 9 Salt minion @@ -21,7 +22,7 @@ Feature: Bootstrap a Liberty Linux 9 Salt minion And I select "1-liberty9_minion_key" from "activationKeys" And I select the hostname of "proxy" from "proxies" if present And I click on "Bootstrap" - And I wait until I see "Successfully bootstrapped host!" text + And I wait until I see "Bootstrap process initiated." text And I wait until onboarding is completed for "liberty9_minion" @proxy diff --git a/testsuite/features/build_validation/init_clients/liberty9_ssh_minion.feature b/testsuite/features/build_validation/init_clients/liberty9_ssh_minion.feature index 65738e61f02d..31df30aa6214 100644 --- a/testsuite/features/build_validation/init_clients/liberty9_ssh_minion.feature +++ b/testsuite/features/build_validation/init_clients/liberty9_ssh_minion.feature @@ -4,6 +4,7 @@ # 1) bootstrap a new Liberty Linux 9 minion via salt-ssh # 2) subscribe it to a base channel for testing +@susemanager @liberty9_ssh_minion Feature: Bootstrap a Liberty Linux 9 Salt SSH minion @@ -22,7 +23,7 @@ Feature: Bootstrap a Liberty Linux 9 Salt SSH minion And I select "1-liberty9_ssh_minion_key" from "activationKeys" And I select the hostname of "proxy" from "proxies" if present And I click on "Bootstrap" - And I wait until I see "Successfully bootstrapped host!" text + And I wait until I see "Bootstrap process initiated." text And I wait until onboarding is completed for "liberty9_ssh_minion" @proxy diff --git a/testsuite/features/build_validation/init_clients/monitoring_server.feature b/testsuite/features/build_validation/init_clients/monitoring_server.feature index 71508218c9ac..0f602d509d92 100644 --- a/testsuite/features/build_validation/init_clients/monitoring_server.feature +++ b/testsuite/features/build_validation/init_clients/monitoring_server.feature @@ -20,7 +20,7 @@ Feature: Bootstrap the monitoring server And I select "1-monitoring_server_key" from "activationKeys" And I select the hostname of "proxy" from "proxies" if present And I click on "Bootstrap" - And I wait until I see "Successfully bootstrapped host!" text + And I wait until I see "Bootstrap process initiated." text And I wait until onboarding is completed for "monitoring_server" Scenario: Check the new bootstrapped monitoring server in System Overview page diff --git a/testsuite/features/build_validation/init_clients/opensuse154arm_minion.feature b/testsuite/features/build_validation/init_clients/opensuse154arm_minion.feature index 6ed9428175c3..c308514121a6 100644 --- a/testsuite/features/build_validation/init_clients/opensuse154arm_minion.feature +++ b/testsuite/features/build_validation/init_clients/opensuse154arm_minion.feature @@ -20,7 +20,7 @@ Feature: Bootstrap a openSUSE 15.4 ARM Salt minion And I select "1-opensuse154arm_minion_key" from "activationKeys" And I select the hostname of "proxy" from "proxies" if present And I click on "Bootstrap" - And I wait until I see "Successfully bootstrapped host!" text + And I wait until I see "Bootstrap process initiated." text And I wait until onboarding is completed for "opensuse154arm_minion" Scenario: Check the new bootstrapped openSUSE 15.4 ARM minion in System Overview page diff --git a/testsuite/features/build_validation/init_clients/opensuse154arm_ssh_minion.feature b/testsuite/features/build_validation/init_clients/opensuse154arm_ssh_minion.feature index da401ade5825..0f2ab11d187b 100644 --- a/testsuite/features/build_validation/init_clients/opensuse154arm_ssh_minion.feature +++ b/testsuite/features/build_validation/init_clients/opensuse154arm_ssh_minion.feature @@ -19,7 +19,7 @@ Feature: Bootstrap a openSUSE 15.4 ARM Salt SSH minion And I select "1-opensuse154arm_ssh_minion_key" from "activationKeys" And I select the hostname of "proxy" from "proxies" if present And I click on "Bootstrap" - And I wait until I see "Successfully bootstrapped host!" text + And I wait until I see "Bootstrap process initiated." text And I wait until onboarding is completed for "opensuse154arm_ssh_minion" @proxy diff --git a/testsuite/features/build_validation/init_clients/opensuse155arm_minion.feature b/testsuite/features/build_validation/init_clients/opensuse155arm_minion.feature index 9fb8fa3f8880..b0ee45e1c320 100644 --- a/testsuite/features/build_validation/init_clients/opensuse155arm_minion.feature +++ b/testsuite/features/build_validation/init_clients/opensuse155arm_minion.feature @@ -20,7 +20,7 @@ Feature: Bootstrap a openSUSE 15.5 ARM Salt minion And I select "1-opensuse155arm_minion_key" from "activationKeys" And I select the hostname of "proxy" from "proxies" if present And I click on "Bootstrap" - And I wait until I see "Successfully bootstrapped host!" text + And I wait until I see "Bootstrap process initiated." text And I wait until onboarding is completed for "opensuse155arm_minion" Scenario: Check the new bootstrapped openSUSE 15.5 ARM minion in System Overview page diff --git a/testsuite/features/build_validation/init_clients/opensuse155arm_ssh_minion.feature b/testsuite/features/build_validation/init_clients/opensuse155arm_ssh_minion.feature index 634155482081..cdcbcd961df5 100644 --- a/testsuite/features/build_validation/init_clients/opensuse155arm_ssh_minion.feature +++ b/testsuite/features/build_validation/init_clients/opensuse155arm_ssh_minion.feature @@ -19,7 +19,7 @@ Feature: Bootstrap a openSUSE 15.5 ARM Salt SSH minion And I select "1-opensuse155arm_ssh_minion_key" from "activationKeys" And I select the hostname of "proxy" from "proxies" if present And I click on "Bootstrap" - And I wait until I see "Successfully bootstrapped host!" text + And I wait until I see "Bootstrap process initiated." text And I wait until onboarding is completed for "opensuse155arm_ssh_minion" @proxy diff --git a/testsuite/features/build_validation/init_clients/oracle9_minion.feature b/testsuite/features/build_validation/init_clients/oracle9_minion.feature index 3c7807d6068e..82e0b11beda9 100644 --- a/testsuite/features/build_validation/init_clients/oracle9_minion.feature +++ b/testsuite/features/build_validation/init_clients/oracle9_minion.feature @@ -21,7 +21,7 @@ Feature: Bootstrap a Oracle 9 Salt minion And I select "1-oracle9_minion_key" from "activationKeys" And I select the hostname of "proxy" from "proxies" if present And I click on "Bootstrap" - And I wait until I see "Successfully bootstrapped host!" text + And I wait until I see "Bootstrap process initiated." text And I wait until onboarding is completed for "oracle9_minion" @proxy diff --git a/testsuite/features/build_validation/init_clients/oracle9_ssh_minion.feature b/testsuite/features/build_validation/init_clients/oracle9_ssh_minion.feature index 01705cb060a9..e3387e49e686 100644 --- a/testsuite/features/build_validation/init_clients/oracle9_ssh_minion.feature +++ b/testsuite/features/build_validation/init_clients/oracle9_ssh_minion.feature @@ -22,7 +22,7 @@ Feature: Bootstrap a Oracle 9 Salt SSH minion And I select "1-oracle9_ssh_minion_key" from "activationKeys" And I select the hostname of "proxy" from "proxies" if present And I click on "Bootstrap" - And I wait until I see "Successfully bootstrapped host!" text + And I wait until I see "Bootstrap process initiated." text And I wait until onboarding is completed for "oracle9_ssh_minion" @proxy diff --git a/testsuite/features/build_validation/init_clients/proxy.feature b/testsuite/features/build_validation/init_clients/proxy.feature index 922051021b11..5c087906e17a 100644 --- a/testsuite/features/build_validation/init_clients/proxy.feature +++ b/testsuite/features/build_validation/init_clients/proxy.feature @@ -1,4 +1,4 @@ -# Copyright (c) 2020-2022 SUSE LLC +# Copyright (c) 2020-2023 SUSE LLC # Licensed under the terms of the MIT license. # # The scenarios in this feature are skipped if there is no proxy @@ -31,7 +31,7 @@ Feature: Setup SUSE Manager proxy And I enter "linux" as "password" And I select "1-proxy_key" from "activationKeys" And I click on "Bootstrap" - And I wait until I see "Successfully bootstrapped host!" text + And I wait until I see "Bootstrap process initiated." text And I wait until onboarding is completed for "proxy" # bsc#1085436 - Apache returns 403 Forbidden after a zypper refresh on minion @@ -41,17 +41,33 @@ Feature: Setup SUSE Manager proxy Scenario: Detect latest Salt changes on the proxy When I query latest Salt changes on "proxy" - Scenario: Copy the keys and configure the proxy + Scenario: Copy the server keys to the proxy When I copy server's keys to the proxy - And I configure the proxy + + Scenario: Configure the proxy + When I configure the proxy And I allow all SSL protocols on the proxy's apache + And I reload the "apache2.service" service on "proxy" + And file "/etc/sysconfig/apache2" should contain "proxy" on "proxy" + And file "/etc/sysconfig/apache2" should contain "rewrite" on "proxy" + And file "/etc/sysconfig/apache2" should contain "version" on "proxy" + And file "/etc/sysconfig/apache2" should contain "ssl" on "proxy" + And file "/etc/sysconfig/apache2" should contain "access_compat" on "proxy" + And file "/etc/sysconfig/apache2" should contain "wsgi" on "proxy" Then I should see "proxy" via spacecmd And service "salt-broker" is active on "proxy" +@susemanager Scenario: Check proxy system details When I am on the Systems overview page of this "proxy" Then I should see "proxy" short hostname And I wait until I see "SUSE Manager Proxy" text, refreshing the page +@uyuni + Scenario: Check proxy system details + When I am on the Systems overview page of this "proxy" + Then I should see "proxy" short hostname + And I wait until I see "Uyuni Proxy" text, refreshing the page + Scenario: Check events history for failures on the proxy When I check for failed events on history event page diff --git a/testsuite/features/build_validation/init_clients/rhel9_minion.feature b/testsuite/features/build_validation/init_clients/rhel9_minion.feature index 5bb841e27c2e..844c9deca34d 100644 --- a/testsuite/features/build_validation/init_clients/rhel9_minion.feature +++ b/testsuite/features/build_validation/init_clients/rhel9_minion.feature @@ -21,7 +21,7 @@ Feature: Bootstrap a Rhel 9 Salt minion And I select "1-rhel9_minion_key" from "activationKeys" And I select the hostname of "proxy" from "proxies" if present And I click on "Bootstrap" - And I wait until I see "Successfully bootstrapped host!" text + And I wait until I see "Bootstrap process initiated." text And I wait until onboarding is completed for "rhel9_minion" @proxy diff --git a/testsuite/features/build_validation/init_clients/rhel9_ssh_minion.feature b/testsuite/features/build_validation/init_clients/rhel9_ssh_minion.feature index e4fcc281ce4d..90fd068c73f8 100644 --- a/testsuite/features/build_validation/init_clients/rhel9_ssh_minion.feature +++ b/testsuite/features/build_validation/init_clients/rhel9_ssh_minion.feature @@ -21,7 +21,7 @@ Feature: Bootstrap a Rhel 9 SSH minion And I select "1-rhel9_ssh_minion_key" from "activationKeys" And I select the hostname of "proxy" from "proxies" if present And I click on "Bootstrap" - And I wait until I see "Successfully bootstrapped host!" text + And I wait until I see "Bootstrap process initiated." text And I wait until onboarding is completed for "rhel9_ssh_minion" @proxy diff --git a/testsuite/features/build_validation/init_clients/rocky8_minion.feature b/testsuite/features/build_validation/init_clients/rocky8_minion.feature index cb3da29e52dc..b2c4eb635e6b 100644 --- a/testsuite/features/build_validation/init_clients/rocky8_minion.feature +++ b/testsuite/features/build_validation/init_clients/rocky8_minion.feature @@ -21,7 +21,7 @@ Feature: Bootstrap a Rocky 8 Salt minion And I select "1-rocky8_minion_key" from "activationKeys" And I select the hostname of "proxy" from "proxies" if present And I click on "Bootstrap" - And I wait until I see "Successfully bootstrapped host!" text + And I wait until I see "Bootstrap process initiated." text And I wait until onboarding is completed for "rocky8_minion" @proxy diff --git a/testsuite/features/build_validation/init_clients/rocky8_ssh_minion.feature b/testsuite/features/build_validation/init_clients/rocky8_ssh_minion.feature index c6a247a50d5d..f583ea733eee 100644 --- a/testsuite/features/build_validation/init_clients/rocky8_ssh_minion.feature +++ b/testsuite/features/build_validation/init_clients/rocky8_ssh_minion.feature @@ -22,7 +22,7 @@ Feature: Bootstrap a Rocky 8 Salt SSH minion And I select "1-rocky8_ssh_minion_key" from "activationKeys" And I select the hostname of "proxy" from "proxies" if present And I click on "Bootstrap" - And I wait until I see "Successfully bootstrapped host!" text + And I wait until I see "Bootstrap process initiated." text And I wait until onboarding is completed for "rocky8_ssh_minion" @proxy diff --git a/testsuite/features/build_validation/init_clients/rocky9_minion.feature b/testsuite/features/build_validation/init_clients/rocky9_minion.feature index 447ca7467602..d7b968bcf896 100644 --- a/testsuite/features/build_validation/init_clients/rocky9_minion.feature +++ b/testsuite/features/build_validation/init_clients/rocky9_minion.feature @@ -21,7 +21,7 @@ Feature: Bootstrap a Rocky 9 Salt minion And I select "1-rocky9_minion_key" from "activationKeys" And I select the hostname of "proxy" from "proxies" if present And I click on "Bootstrap" - And I wait until I see "Successfully bootstrapped host!" text + And I wait until I see "Bootstrap process initiated." text And I wait until onboarding is completed for "rocky9_minion" @proxy diff --git a/testsuite/features/build_validation/init_clients/rocky9_ssh_minion.feature b/testsuite/features/build_validation/init_clients/rocky9_ssh_minion.feature index bc4738f24c8c..87597a82b9c3 100644 --- a/testsuite/features/build_validation/init_clients/rocky9_ssh_minion.feature +++ b/testsuite/features/build_validation/init_clients/rocky9_ssh_minion.feature @@ -22,7 +22,7 @@ Feature: Bootstrap a Rocky 9 Salt SSH minion And I select "1-rocky9_ssh_minion_key" from "activationKeys" And I select the hostname of "proxy" from "proxies" if present And I click on "Bootstrap" - And I wait until I see "Successfully bootstrapped host!" text + And I wait until I see "Bootstrap process initiated." text And I wait until onboarding is completed for "rocky9_ssh_minion" @proxy diff --git a/testsuite/features/build_validation/init_clients/sle12sp4_minion.feature b/testsuite/features/build_validation/init_clients/sle12sp4_minion.feature index ba040808d6eb..f5ba62bbf55a 100644 --- a/testsuite/features/build_validation/init_clients/sle12sp4_minion.feature +++ b/testsuite/features/build_validation/init_clients/sle12sp4_minion.feature @@ -20,7 +20,7 @@ Feature: Bootstrap a SLES 12 SP4 Salt minion And I select "1-sle12sp4_minion_key" from "activationKeys" And I select the hostname of "proxy" from "proxies" if present And I click on "Bootstrap" - And I wait until I see "Successfully bootstrapped host!" text + And I wait until I see "Bootstrap process initiated." text And I wait until onboarding is completed for "sle12sp4_minion" Scenario: Check the new bootstrapped SLES 12 SP4 minion in System Overview page diff --git a/testsuite/features/build_validation/init_clients/sle12sp4_ssh_minion.feature b/testsuite/features/build_validation/init_clients/sle12sp4_ssh_minion.feature index 1f5d7d9e971d..c1d970afa1aa 100644 --- a/testsuite/features/build_validation/init_clients/sle12sp4_ssh_minion.feature +++ b/testsuite/features/build_validation/init_clients/sle12sp4_ssh_minion.feature @@ -19,7 +19,7 @@ Feature: Bootstrap a SLES 12 SP4 Salt SSH minion And I select "1-sle12sp4_ssh_minion_key" from "activationKeys" And I select the hostname of "proxy" from "proxies" if present And I click on "Bootstrap" - And I wait until I see "Successfully bootstrapped host!" text + And I wait until I see "Bootstrap process initiated." text And I wait until onboarding is completed for "sle12sp4_ssh_minion" @proxy diff --git a/testsuite/features/build_validation/init_clients/sle12sp5_minion.feature b/testsuite/features/build_validation/init_clients/sle12sp5_minion.feature index 55b138d5ab07..7f6d1b2c9af2 100644 --- a/testsuite/features/build_validation/init_clients/sle12sp5_minion.feature +++ b/testsuite/features/build_validation/init_clients/sle12sp5_minion.feature @@ -20,7 +20,7 @@ Feature: Bootstrap a SLES 12 SP5 Salt minion And I select "1-sle12sp5_minion_key" from "activationKeys" And I select the hostname of "proxy" from "proxies" if present And I click on "Bootstrap" - And I wait until I see "Successfully bootstrapped host!" text + And I wait until I see "Bootstrap process initiated." text And I wait until onboarding is completed for "sle12sp5_minion" Scenario: Check the new bootstrapped SLES 12 SP5 minion in System Overview page diff --git a/testsuite/features/build_validation/init_clients/sle12sp5_ssh_minion.feature b/testsuite/features/build_validation/init_clients/sle12sp5_ssh_minion.feature index d250b3c5d37f..f92c4b270b19 100644 --- a/testsuite/features/build_validation/init_clients/sle12sp5_ssh_minion.feature +++ b/testsuite/features/build_validation/init_clients/sle12sp5_ssh_minion.feature @@ -19,7 +19,7 @@ Feature: Bootstrap a SLES 12 SP5 Salt SSH minion And I select "1-sle12sp5_ssh_minion_key" from "activationKeys" And I select the hostname of "proxy" from "proxies" if present And I click on "Bootstrap" - And I wait until I see "Successfully bootstrapped host!" text + And I wait until I see "Bootstrap process initiated." text And I wait until onboarding is completed for "sle12sp5_ssh_minion" @proxy diff --git a/testsuite/features/build_validation/init_clients/sle15sp1_minion.feature b/testsuite/features/build_validation/init_clients/sle15sp1_minion.feature index c6928151ba3e..239a0e96d378 100644 --- a/testsuite/features/build_validation/init_clients/sle15sp1_minion.feature +++ b/testsuite/features/build_validation/init_clients/sle15sp1_minion.feature @@ -20,7 +20,7 @@ Feature: Bootstrap a SLES 15 SP1 Salt minion And I select "1-sle15sp1_minion_key" from "activationKeys" And I select the hostname of "proxy" from "proxies" if present And I click on "Bootstrap" - And I wait until I see "Successfully bootstrapped host!" text + And I wait until I see "Bootstrap process initiated." text And I wait until onboarding is completed for "sle15sp1_minion" Scenario: Check the new bootstrapped SLES 15 SP1 minion in System Overview page diff --git a/testsuite/features/build_validation/init_clients/sle15sp1_ssh_minion.feature b/testsuite/features/build_validation/init_clients/sle15sp1_ssh_minion.feature index 769257930298..935483670b4b 100644 --- a/testsuite/features/build_validation/init_clients/sle15sp1_ssh_minion.feature +++ b/testsuite/features/build_validation/init_clients/sle15sp1_ssh_minion.feature @@ -19,7 +19,7 @@ Feature: Bootstrap a SLES 15 SP1 Salt SSH minion And I select "1-sle15sp1_ssh_minion_key" from "activationKeys" And I select the hostname of "proxy" from "proxies" if present And I click on "Bootstrap" - And I wait until I see "Successfully bootstrapped host!" text + And I wait until I see "Bootstrap process initiated." text And I wait until onboarding is completed for "sle15sp1_ssh_minion" @proxy diff --git a/testsuite/features/build_validation/init_clients/sle15sp2_minion.feature b/testsuite/features/build_validation/init_clients/sle15sp2_minion.feature index 6691f66bb86e..69680b671ad8 100644 --- a/testsuite/features/build_validation/init_clients/sle15sp2_minion.feature +++ b/testsuite/features/build_validation/init_clients/sle15sp2_minion.feature @@ -20,7 +20,7 @@ Feature: Bootstrap a SLES 15 SP2 Salt minion And I select "1-sle15sp2_minion_key" from "activationKeys" And I select the hostname of "proxy" from "proxies" if present And I click on "Bootstrap" - And I wait until I see "Successfully bootstrapped host!" text + And I wait until I see "Bootstrap process initiated." text And I wait until onboarding is completed for "sle15sp2_minion" Scenario: Check the new bootstrapped SLES 15 SP2 minion in System Overview page diff --git a/testsuite/features/build_validation/init_clients/sle15sp2_ssh_minion.feature b/testsuite/features/build_validation/init_clients/sle15sp2_ssh_minion.feature index c22e32b684e6..d78c70c9a1c7 100644 --- a/testsuite/features/build_validation/init_clients/sle15sp2_ssh_minion.feature +++ b/testsuite/features/build_validation/init_clients/sle15sp2_ssh_minion.feature @@ -19,7 +19,7 @@ Feature: Bootstrap a SLES 15 SP2 Salt SSH minion And I select "1-sle15sp2_ssh_minion_key" from "activationKeys" And I select the hostname of "proxy" from "proxies" if present And I click on "Bootstrap" - And I wait until I see "Successfully bootstrapped host!" text + And I wait until I see "Bootstrap process initiated." text And I wait until onboarding is completed for "sle15sp2_ssh_minion" @proxy diff --git a/testsuite/features/build_validation/init_clients/sle15sp3_minion.feature b/testsuite/features/build_validation/init_clients/sle15sp3_minion.feature index 53803f7f5b3f..c89b75c21c73 100644 --- a/testsuite/features/build_validation/init_clients/sle15sp3_minion.feature +++ b/testsuite/features/build_validation/init_clients/sle15sp3_minion.feature @@ -20,7 +20,7 @@ Feature: Bootstrap a SLES 15 SP3 Salt minion And I select "1-sle15sp3_minion_key" from "activationKeys" And I select the hostname of "proxy" from "proxies" if present And I click on "Bootstrap" - And I wait until I see "Successfully bootstrapped host!" text + And I wait until I see "Bootstrap process initiated." text And I wait until onboarding is completed for "sle15sp3_minion" Scenario: Check the new bootstrapped SLES 15 SP3 minion in System Overview page diff --git a/testsuite/features/build_validation/init_clients/sle15sp3_ssh_minion.feature b/testsuite/features/build_validation/init_clients/sle15sp3_ssh_minion.feature index b2fd06d9f3b8..e76c1bde3c52 100644 --- a/testsuite/features/build_validation/init_clients/sle15sp3_ssh_minion.feature +++ b/testsuite/features/build_validation/init_clients/sle15sp3_ssh_minion.feature @@ -19,7 +19,7 @@ Feature: Bootstrap a SLES 15 SP3 Salt SSH minion And I select "1-sle15sp3_ssh_minion_key" from "activationKeys" And I select the hostname of "proxy" from "proxies" if present And I click on "Bootstrap" - And I wait until I see "Successfully bootstrapped host!" text + And I wait until I see "Bootstrap process initiated." text And I wait until onboarding is completed for "sle15sp3_ssh_minion" @proxy diff --git a/testsuite/features/build_validation/init_clients/sle15sp4_minion.feature b/testsuite/features/build_validation/init_clients/sle15sp4_minion.feature index 3d22707f1d9d..544b3cdb0753 100644 --- a/testsuite/features/build_validation/init_clients/sle15sp4_minion.feature +++ b/testsuite/features/build_validation/init_clients/sle15sp4_minion.feature @@ -20,7 +20,7 @@ Feature: Bootstrap a SLES 15 SP4 Salt minion And I select "1-sle15sp4_minion_key" from "activationKeys" And I select the hostname of "proxy" from "proxies" if present And I click on "Bootstrap" - And I wait until I see "Successfully bootstrapped host!" text + And I wait until I see "Bootstrap process initiated." text And I wait until onboarding is completed for "sle15sp4_minion" Scenario: Check the new bootstrapped SLES 15 SP4 minion in System Overview page diff --git a/testsuite/features/build_validation/init_clients/sle15sp4_ssh_minion.feature b/testsuite/features/build_validation/init_clients/sle15sp4_ssh_minion.feature index 99c89cbc398d..dfe31602cc15 100644 --- a/testsuite/features/build_validation/init_clients/sle15sp4_ssh_minion.feature +++ b/testsuite/features/build_validation/init_clients/sle15sp4_ssh_minion.feature @@ -19,7 +19,7 @@ Feature: Bootstrap a SLES 15 SP4 Salt SSH minion And I select "1-sle15sp4_ssh_minion_key" from "activationKeys" And I select the hostname of "proxy" from "proxies" if present And I click on "Bootstrap" - And I wait until I see "Successfully bootstrapped host!" text + And I wait until I see "Bootstrap process initiated." text And I wait until onboarding is completed for "sle15sp4_ssh_minion" @proxy diff --git a/testsuite/features/build_validation/init_clients/sle15sp5_minion.feature b/testsuite/features/build_validation/init_clients/sle15sp5_minion.feature index 2dea2e1023f3..a05f67329d9a 100644 --- a/testsuite/features/build_validation/init_clients/sle15sp5_minion.feature +++ b/testsuite/features/build_validation/init_clients/sle15sp5_minion.feature @@ -20,7 +20,7 @@ Feature: Bootstrap a SLES 15 SP5 Salt minion And I select "1-sle15sp5_minion_key" from "activationKeys" And I select the hostname of "proxy" from "proxies" if present And I click on "Bootstrap" - And I wait until I see "Successfully bootstrapped host!" text + And I wait until I see "Bootstrap process initiated." text And I wait until onboarding is completed for "sle15sp5_minion" Scenario: Check the new bootstrapped SLES 15 SP5 minion in System Overview page diff --git a/testsuite/features/build_validation/init_clients/sle15sp5_ssh_minion.feature b/testsuite/features/build_validation/init_clients/sle15sp5_ssh_minion.feature index 8ca2f86d461c..6adddc3b9a19 100644 --- a/testsuite/features/build_validation/init_clients/sle15sp5_ssh_minion.feature +++ b/testsuite/features/build_validation/init_clients/sle15sp5_ssh_minion.feature @@ -19,7 +19,7 @@ Feature: Bootstrap a SLES 15 SP5 Salt SSH minion And I select "1-sle15sp5_ssh_minion_key" from "activationKeys" And I select the hostname of "proxy" from "proxies" if present And I click on "Bootstrap" - And I wait until I see "Successfully bootstrapped host!" text + And I wait until I see "Bootstrap process initiated." text And I wait until onboarding is completed for "sle15sp5_ssh_minion" @proxy diff --git a/testsuite/features/build_validation/init_clients/slemicro51_minion.feature b/testsuite/features/build_validation/init_clients/slemicro51_minion.feature index 07fbb79d70b8..328005121195 100644 --- a/testsuite/features/build_validation/init_clients/slemicro51_minion.feature +++ b/testsuite/features/build_validation/init_clients/slemicro51_minion.feature @@ -20,7 +20,7 @@ Feature: Bootstrap a SLE Micro 5.1 Salt minion And I select "1-slemicro51_minion_key" from "activationKeys" And I select the hostname of "proxy" from "proxies" if present And I click on "Bootstrap" - And I wait until I see "Successfully bootstrapped host!" text + And I wait until I see "Bootstrap process initiated." text Scenario: Reboot the SLE Micro 5.1 minion and wait until reboot is completed When I reboot the "slemicro51_minion" minion through SSH diff --git a/testsuite/features/build_validation/init_clients/slemicro51_ssh_minion.feature b/testsuite/features/build_validation/init_clients/slemicro51_ssh_minion.feature index 46edd8bdb141..324cbe64d6a9 100644 --- a/testsuite/features/build_validation/init_clients/slemicro51_ssh_minion.feature +++ b/testsuite/features/build_validation/init_clients/slemicro51_ssh_minion.feature @@ -19,7 +19,7 @@ Feature: Bootstrap a SLE Micro 5.1 Salt SSH minion And I select "1-slemicro51_ssh_minion_key" from "activationKeys" And I select the hostname of "proxy" from "proxies" if present And I click on "Bootstrap" - And I wait until I see "Successfully bootstrapped host!" text + And I wait until I see "Bootstrap process initiated." text And I wait until onboarding is completed for "slemicro51_ssh_minion" @proxy diff --git a/testsuite/features/build_validation/init_clients/slemicro52_minion.feature b/testsuite/features/build_validation/init_clients/slemicro52_minion.feature index 645f2de78cc2..539559ac88fc 100644 --- a/testsuite/features/build_validation/init_clients/slemicro52_minion.feature +++ b/testsuite/features/build_validation/init_clients/slemicro52_minion.feature @@ -20,7 +20,7 @@ Feature: Bootstrap a SLE Micro 5.2 Salt minion And I select "1-slemicro52_minion_key" from "activationKeys" And I select the hostname of "proxy" from "proxies" if present And I click on "Bootstrap" - And I wait until I see "Successfully bootstrapped host!" text + And I wait until I see "Bootstrap process initiated." text Scenario: Reboot the SLE Micro 5.2 minion and wait until reboot is completed When I reboot the "slemicro52_minion" minion through SSH diff --git a/testsuite/features/build_validation/init_clients/slemicro52_ssh_minion.feature b/testsuite/features/build_validation/init_clients/slemicro52_ssh_minion.feature index e79e94b44e49..f0e3ec2b6ae4 100644 --- a/testsuite/features/build_validation/init_clients/slemicro52_ssh_minion.feature +++ b/testsuite/features/build_validation/init_clients/slemicro52_ssh_minion.feature @@ -19,7 +19,7 @@ Feature: Bootstrap a SLE Micro 5.2 Salt SSH minion And I select "1-slemicro52_ssh_minion_key" from "activationKeys" And I select the hostname of "proxy" from "proxies" if present And I click on "Bootstrap" - And I wait until I see "Successfully bootstrapped host!" text + And I wait until I see "Bootstrap process initiated." text And I wait until onboarding is completed for "slemicro52_ssh_minion" @proxy diff --git a/testsuite/features/build_validation/init_clients/slemicro53_minion.feature b/testsuite/features/build_validation/init_clients/slemicro53_minion.feature index 3202b6105b88..887b8f46f0d2 100644 --- a/testsuite/features/build_validation/init_clients/slemicro53_minion.feature +++ b/testsuite/features/build_validation/init_clients/slemicro53_minion.feature @@ -20,7 +20,7 @@ Feature: Bootstrap a SLE Micro 5.3 Salt minion And I select "1-slemicro53_minion_key" from "activationKeys" And I select the hostname of "proxy" from "proxies" if present And I click on "Bootstrap" - And I wait until I see "Successfully bootstrapped host!" text + And I wait until I see "Bootstrap process initiated." text Scenario: Reboot the SLE Micro 5.3 minion and wait until reboot is completed When I reboot the "slemicro53_minion" minion through SSH diff --git a/testsuite/features/build_validation/init_clients/slemicro53_ssh_minion.feature b/testsuite/features/build_validation/init_clients/slemicro53_ssh_minion.feature index 114779dad1ac..14eba449917c 100644 --- a/testsuite/features/build_validation/init_clients/slemicro53_ssh_minion.feature +++ b/testsuite/features/build_validation/init_clients/slemicro53_ssh_minion.feature @@ -19,7 +19,7 @@ Feature: Bootstrap a SLE Micro 5.3 Salt SSH minion And I select "1-slemicro53_ssh_minion_key" from "activationKeys" And I select the hostname of "proxy" from "proxies" if present And I click on "Bootstrap" - And I wait until I see "Successfully bootstrapped host!" text + And I wait until I see "Bootstrap process initiated." text And I wait until onboarding is completed for "slemicro53_ssh_minion" @proxy diff --git a/testsuite/features/build_validation/init_clients/slemicro54_minion.feature b/testsuite/features/build_validation/init_clients/slemicro54_minion.feature index d5f3405f2876..69c76e5cef09 100644 --- a/testsuite/features/build_validation/init_clients/slemicro54_minion.feature +++ b/testsuite/features/build_validation/init_clients/slemicro54_minion.feature @@ -20,7 +20,7 @@ Feature: Bootstrap a SLE Micro 5.4 Salt minion And I select "1-slemicro54_minion_key" from "activationKeys" And I select the hostname of "proxy" from "proxies" if present And I click on "Bootstrap" - And I wait until I see "Successfully bootstrapped host!" text + And I wait until I see "Bootstrap process initiated." text Scenario: Reboot the SLE Micro 5.4 minion and wait until reboot is completed When I reboot the "slemicro54_minion" minion through SSH diff --git a/testsuite/features/build_validation/init_clients/slemicro54_ssh_minion.feature b/testsuite/features/build_validation/init_clients/slemicro54_ssh_minion.feature index 4dea9c8fa60f..e97c1eca0908 100644 --- a/testsuite/features/build_validation/init_clients/slemicro54_ssh_minion.feature +++ b/testsuite/features/build_validation/init_clients/slemicro54_ssh_minion.feature @@ -19,7 +19,7 @@ Feature: Bootstrap a SLE Micro 5.4 Salt SSH minion And I select "1-slemicro54_ssh_minion_key" from "activationKeys" And I select the hostname of "proxy" from "proxies" if present And I click on "Bootstrap" - And I wait until I see "Successfully bootstrapped host!" text + And I wait until I see "Bootstrap process initiated." text And I wait until onboarding is completed for "slemicro54_ssh_minion" @proxy diff --git a/testsuite/features/build_validation/init_clients/ubuntu1804_minion.feature b/testsuite/features/build_validation/init_clients/ubuntu1804_minion.feature deleted file mode 100644 index 95263754f153..000000000000 --- a/testsuite/features/build_validation/init_clients/ubuntu1804_minion.feature +++ /dev/null @@ -1,45 +0,0 @@ -# Copyright (c) 2020-2022 SUSE LLC -# Licensed under the terms of the MIT license. -# -# 1) bootstrap a new Ubuntu minion -# 2) subscribe it to a base channel for testing - -@ubuntu1804_minion -Feature: Bootstrap a Ubuntu 18.04 Salt minion - - Scenario: Clean up sumaform leftovers on a Ubuntu 18.04 Salt minion - When I perform a full salt minion cleanup on "ubuntu1804_minion" - - Scenario: Log in as admin user - Given I am authorized for the "Admin" section - - Scenario: Bootstrap a Ubuntu 18.04 minion - When I follow the left menu "Systems > Bootstrapping" - Then I should see a "Bootstrap Minions" text - When I enter the hostname of "ubuntu1804_minion" as "hostname" - And I enter "root" as "user" - And I enter "linux" as "password" - And I enter "22" as "port" - And I select "1-ubuntu1804_minion_key" from "activationKeys" - And I select the hostname of "proxy" from "proxies" if present - And I click on "Bootstrap" - And I wait until I see "Successfully bootstrapped host!" text - And I wait until onboarding is completed for "ubuntu1804_minion" - -@proxy - Scenario: Check connection from Ubuntu 18.04 minion to proxy - Given I am on the Systems overview page of this "ubuntu1804_minion" - When I follow "Details" in the content area - And I follow "Connection" in the content area - Then I should see "proxy" short hostname - -@proxy - Scenario: Check registration on proxy of Ubuntu 18.04 minion - Given I am on the Systems overview page of this "proxy" - When I follow "Details" in the content area - And I follow "Proxy" in the content area - Then I should see "ubuntu1804_minion" hostname - - Scenario: Check events history for failures on Ubuntu 18.04 minion - Given I am on the Systems overview page of this "ubuntu1804_minion" - Then I check for failed events on history event page diff --git a/testsuite/features/build_validation/init_clients/ubuntu1804_ssh_minion.feature b/testsuite/features/build_validation/init_clients/ubuntu1804_ssh_minion.feature deleted file mode 100644 index 9390281297c6..000000000000 --- a/testsuite/features/build_validation/init_clients/ubuntu1804_ssh_minion.feature +++ /dev/null @@ -1,32 +0,0 @@ -# Copyright (c) 2020-2022 SUSE LLC -# Licensed under the terms of the MIT license. -# -# 1) bootstrap a new Ubuntu minion via salt-ssh -# 2) subscribe it to a base channel for testing - -@ubuntu1804_ssh_minion -Feature: Bootstrap a Ubuntu 18.04 Salt SSH minion - - Scenario: Clean up sumaform leftovers on a 18.04 Salt SSH minion - When I perform a full salt minion cleanup on "ubuntu1804_ssh_minion" - - Scenario: Log in as admin user - Given I am authorized for the "Admin" section - - Scenario: Bootstrap a SSH-managed Ubuntu 18.04 minion - When I follow the left menu "Systems > Bootstrapping" - Then I should see a "Bootstrap Minions" text - When I enter the hostname of "ubuntu1804_ssh_minion" as "hostname" - And I enter "root" as "user" - And I enter "linux" as "password" - And I enter "22" as "port" - And I select "1-ubuntu1804_ssh_minion_key" from "activationKeys" - And I select the hostname of "proxy" from "proxies" if present - And I check "manageWithSSH" - And I click on "Bootstrap" - And I wait until I see "Successfully bootstrapped host!" text - And I wait until onboarding is completed for "ubuntu1804_ssh_minion" - - Scenario: Check events history for failures on SSH-managed Ubuntu 18.04 minion - Given I am on the Systems overview page of this "ubuntu1804_ssh_minion" - Then I check for failed events on history event page diff --git a/testsuite/features/build_validation/init_clients/ubuntu2004_minion.feature b/testsuite/features/build_validation/init_clients/ubuntu2004_minion.feature index 3af831cd726a..9649abf2f6a7 100644 --- a/testsuite/features/build_validation/init_clients/ubuntu2004_minion.feature +++ b/testsuite/features/build_validation/init_clients/ubuntu2004_minion.feature @@ -24,7 +24,7 @@ Feature: Bootstrap a Ubuntu 20.04 Salt minion And I select "1-ubuntu2004_minion_key" from "activationKeys" And I select the hostname of "proxy" from "proxies" if present And I click on "Bootstrap" - And I wait until I see "Successfully bootstrapped host!" text + And I wait until I see "Bootstrap process initiated." text And I wait until onboarding is completed for "ubuntu2004_minion" @proxy diff --git a/testsuite/features/build_validation/init_clients/ubuntu2004_ssh_minion.feature b/testsuite/features/build_validation/init_clients/ubuntu2004_ssh_minion.feature index 078b019f4ebc..109dbc6cd351 100644 --- a/testsuite/features/build_validation/init_clients/ubuntu2004_ssh_minion.feature +++ b/testsuite/features/build_validation/init_clients/ubuntu2004_ssh_minion.feature @@ -24,7 +24,7 @@ Feature: Bootstrap a Ubuntu 20.04 Salt SSH minion And I select the hostname of "proxy" from "proxies" if present And I check "manageWithSSH" And I click on "Bootstrap" - And I wait until I see "Successfully bootstrapped host!" text + And I wait until I see "Bootstrap process initiated." text And I wait until onboarding is completed for "ubuntu2004_ssh_minion" Scenario: Check events history for failures on SSH-managed Ubuntu 20.04 minion diff --git a/testsuite/features/build_validation/init_clients/ubuntu2204_minion.feature b/testsuite/features/build_validation/init_clients/ubuntu2204_minion.feature index f3c508367e67..6896fd21deb2 100644 --- a/testsuite/features/build_validation/init_clients/ubuntu2204_minion.feature +++ b/testsuite/features/build_validation/init_clients/ubuntu2204_minion.feature @@ -24,7 +24,7 @@ Feature: Bootstrap a Ubuntu 22.04 Salt minion And I select "1-ubuntu2204_minion_key" from "activationKeys" And I select the hostname of "proxy" from "proxies" And I click on "Bootstrap" - And I wait until I see "Successfully bootstrapped host!" text + And I wait until I see "Bootstrap process initiated." text And I wait until onboarding is completed for "ubuntu2204_minion" @proxy diff --git a/testsuite/features/build_validation/init_clients/ubuntu2204_ssh_minion.feature b/testsuite/features/build_validation/init_clients/ubuntu2204_ssh_minion.feature index 96befdda5234..3195dc212fa8 100644 --- a/testsuite/features/build_validation/init_clients/ubuntu2204_ssh_minion.feature +++ b/testsuite/features/build_validation/init_clients/ubuntu2204_ssh_minion.feature @@ -24,7 +24,7 @@ Feature: Bootstrap a Ubuntu 22.04 Salt SSH minion And I select the hostname of "proxy" from "proxies" And I check "manageWithSSH" And I click on "Bootstrap" - And I wait until I see "Successfully bootstrapped host!" text + And I wait until I see "Bootstrap process initiated." text And I wait until onboarding is completed for "ubuntu2204_ssh_minion" Scenario: Check events history for failures on SSH-managed Ubuntu 22.04 minion diff --git a/testsuite/features/build_validation/reposync/srv_sync_all_products.feature b/testsuite/features/build_validation/reposync/srv_sync_all_products.feature index b10314a8743c..17dda0e1e491 100644 --- a/testsuite/features/build_validation/reposync/srv_sync_all_products.feature +++ b/testsuite/features/build_validation/reposync/srv_sync_all_products.feature @@ -22,6 +22,11 @@ Feature: Synchronize products in the products page of the Setup Wizard When I click the Add Product button And I wait until I see "SUSE Linux Enterprise Server 12 SP4 x86_64" product has been added +@uyuni +@sle12sp4_minion + Scenario: Add SUSE Linux Enterprise Server 12 SP4 Uyuni Client tools + When I use spacewalk-common-channel to add channel "sles12-sp4-uyuni-client-devel" with arch "x86_64" + @sle12sp5_minion Scenario: Add SUSE Linux Enterprise Server 12 SP5 When I follow the left menu "Admin > Setup Wizard > Products" @@ -32,6 +37,11 @@ Feature: Synchronize products in the products page of the Setup Wizard When I click the Add Product button And I wait until I see "SUSE Linux Enterprise Server 12 SP5 x86_64" product has been added +@uyuni +@sle12sp5_minion + Scenario: Add SUSE Linux Enterprise Server 12 SP5 Uyuni Client tools + When I use spacewalk-common-channel to add channel "sles12-sp5-uyuni-client-devel" with arch "x86_64" + @sle15sp1_minion Scenario: Add SUSE Linux Enterprise Server 15 SP1 When I follow the left menu "Admin > Setup Wizard > Products" @@ -45,6 +55,11 @@ Feature: Synchronize products in the products page of the Setup Wizard When I click the Add Product button And I wait until I see "SUSE Linux Enterprise Server 15 SP1 x86_64" product has been added +@uyuni +@sle15sp1_minion + Scenario: Add SUSE Linux Enterprise Server 15 SP1 Uyuni Client tools + When I use spacewalk-common-channel to add channel "sles15-sp1-devel-uyuni-client" with arch "x86_64" + @sle15sp2_minion Scenario: Add SUSE Linux Enterprise Server 15 SP2 When I follow the left menu "Admin > Setup Wizard > Products" @@ -53,6 +68,8 @@ Feature: Synchronize products in the products page of the Setup Wizard And I select "SUSE Linux Enterprise Server 15 SP2 x86_64" as a product Then I should see the "SUSE Linux Enterprise Server 15 SP2 x86_64" selected When I open the sub-list of the product "SUSE Linux Enterprise Server 15 SP2 x86_64" + And I select "SUSE Linux Enterprise Server LTSS 15 SP2 x86_64" as a product + Then I should see the "SUSE Linux Enterprise Server LTSS 15 SP2 x86_64" selected And I open the sub-list of the product "Basesystem Module 15 SP2 x86_64" And I select "Desktop Applications Module 15 SP2 x86_64" as a product Then I should see the "Desktop Applications Module 15 SP2 x86_64" selected @@ -62,6 +79,11 @@ Feature: Synchronize products in the products page of the Setup Wizard When I click the Add Product button And I wait until I see "SUSE Linux Enterprise Server 15 SP2 x86_64" product has been added +@uyuni +@sle15sp2_minion + Scenario: Add SUSE Linux Enterprise Server 15 SP2 Uyuni Client tools + When I use spacewalk-common-channel to add channel "sles15-sp2-devel-uyuni-client" with arch "x86_64" + @sle15sp3_minion Scenario: Add SUSE Linux Enterprise Server 15 SP3 When I follow the left menu "Admin > Setup Wizard > Products" @@ -70,6 +92,8 @@ Feature: Synchronize products in the products page of the Setup Wizard And I select "SUSE Linux Enterprise Server 15 SP3 x86_64" as a product Then I should see the "SUSE Linux Enterprise Server 15 SP3 x86_64" selected When I open the sub-list of the product "SUSE Linux Enterprise Server 15 SP3 x86_64" + And I select "SUSE Linux Enterprise Server LTSS 15 SP3 x86_64" as a product + Then I should see the "SUSE Linux Enterprise Server LTSS 15 SP3 x86_64" selected And I open the sub-list of the product "Basesystem Module 15 SP3 x86_64" And I select "Desktop Applications Module 15 SP3 x86_64" as a product Then I should see the "Desktop Applications Module 15 SP3 x86_64" selected @@ -80,6 +104,11 @@ Feature: Synchronize products in the products page of the Setup Wizard And I wait until I see "Selected channels/products were scheduled successfully for syncing." text And I wait until I see "SUSE Linux Enterprise Server 15 SP3 x86_64" product has been added +@uyuni +@sle15sp3_minion + Scenario: Add SUSE Linux Enterprise Server 15 SP3 Uyuni Client tools + When I use spacewalk-common-channel to add channel "sles15-sp3-devel-uyuni-client" with arch "x86_64" + @sle15sp4_minion Scenario: Add SUSE Linux Enterprise Server 15 SP4 When I follow the left menu "Admin > Setup Wizard > Products" @@ -98,6 +127,11 @@ Feature: Synchronize products in the products page of the Setup Wizard And I wait until I see "Selected channels/products were scheduled successfully for syncing." text And I wait until I see "SUSE Linux Enterprise Server 15 SP4 x86_64" product has been added +@uyuni +@sle15sp4_minion + Scenario: Add SUSE Linux Enterprise Server 15 SP4 Uyuni Client tools + When I use spacewalk-common-channel to add channel "sles15-sp4-devel-uyuni-client" with arch "x86_64" + @sle15sp5_minion Scenario: Add SUSE Linux Enterprise Server 15 SP5 When I follow the left menu "Admin > Setup Wizard > Products" @@ -116,6 +150,12 @@ Scenario: Add SUSE Linux Enterprise Server 15 SP5 And I wait until I see "Selected channels/products were scheduled successfully for syncing." text And I wait until I see "SUSE Linux Enterprise Server 15 SP5 x86_64" product has been added +@uyuni +@sle15sp5_minion + Scenario: Add SUSE Linux Enterprise Server 15 SP5 Uyuni Client tools + When I use spacewalk-common-channel to add channel "sles15-sp5-devel-uyuni-client" with arch "x86_64" + +@susemanager @slemicro51_minion Scenario: Add SUSE Linux Enterprise Micro 5.1 When I follow the left menu "Admin > Setup Wizard > Products" @@ -130,6 +170,24 @@ Scenario: Add SUSE Linux Enterprise Server 15 SP5 And I wait until I see "Selected channels/products were scheduled successfully for syncing." text And I wait until I see "SUSE Linux Enterprise Micro 5.1 x86_64" product has been added +@uyuni +@slemicro51_minion + Scenario: Add SUSE Linux Enterprise Micro 5.1 + When I follow the left menu "Admin > Setup Wizard > Products" + And I wait until I do not see "Loading" text + And I enter "SUSE Linux Enterprise Micro 5.1" as the filtered product description + And I select "SUSE Linux Enterprise Micro 5.1 x86_64" as a product + Then I should see the "SUSE Linux Enterprise Micro 5.1 x86_64" selected + When I click the Add Product button + And I wait until I see "Selected channels/products were scheduled successfully for syncing." text + And I wait until I see "SUSE Linux Enterprise Micro 5.1 x86_64" product has been added + +@uyuni +@slemicro51_minion + Scenario: Add SUSE Linux Enterprise Micro 5.1 Uyuni Client tools + When I use spacewalk-common-channel to add channel "suse-microos-5.1-pool-x86_64 suse-microos-5.1-devel-uyuni-client" with arch "x86_64" + +@susemanager @slemicro52_minion Scenario: Add SUSE Linux Enterprise Micro 5.2 When I follow the left menu "Admin > Setup Wizard > Products" @@ -144,6 +202,24 @@ Scenario: Add SUSE Linux Enterprise Server 15 SP5 And I wait until I see "Selected channels/products were scheduled successfully for syncing." text And I wait until I see "SUSE Linux Enterprise Micro 5.2 x86_64" product has been added +@uyuyni +@slemicro52_minion + Scenario: Add SUSE Linux Enterprise Micro 5.2 + When I follow the left menu "Admin > Setup Wizard > Products" + And I wait until I do not see "Loading" text + And I enter "SUSE Linux Enterprise Micro 5.2" as the filtered product description + And I select "SUSE Linux Enterprise Micro 5.2 x86_64" as a product + Then I should see the "SUSE Linux Enterprise Micro 5.2 x86_64" selected + When I click the Add Product button + And I wait until I see "Selected channels/products were scheduled successfully for syncing." text + And I wait until I see "SUSE Linux Enterprise Micro 5.2 x86_64" product has been added + +@uyuni +@slemicro52_minion + Scenario: Add SUSE Linux Enterprise Micro 5.2 Uyuni Client tools + When I use spacewalk-common-channel to add channel "suse-microos-5.2-pool-x86_64 suse-microos-5.2-devel-uyuni-client" with arch "x86_64" + +@susemanager @slemicro53_minion Scenario: Add SUSE Linux Enterprise Micro 5.3 When I follow the left menu "Admin > Setup Wizard > Products" @@ -158,6 +234,24 @@ Scenario: Add SUSE Linux Enterprise Server 15 SP5 And I wait until I see "Selected channels/products were scheduled successfully for syncing." text And I wait until I see "SUSE Linux Enterprise Micro 5.3 x86_64" product has been added +@uyuni +@slemicro53_minion + Scenario: Add SUSE Linux Enterprise Micro 5.3 + When I follow the left menu "Admin > Setup Wizard > Products" + And I wait until I do not see "Loading" text + And I enter "SUSE Linux Enterprise Micro 5.3" as the filtered product description + And I select "SUSE Linux Enterprise Micro 5.3 x86_64" as a product + Then I should see the "SUSE Linux Enterprise Micro 5.3 x86_64" selected + When I click the Add Product button + And I wait until I see "Selected channels/products were scheduled successfully for syncing." text + And I wait until I see "SUSE Linux Enterprise Micro 5.3 x86_64" product has been added + +@uyuni +@slemicro53_minion + Scenario: Add SUSE Linux Enterprise Micro 5.3 Uyuni Client tools + When I use spacewalk-common-channel to add channel "sle-micro-5.3-pool-x86_64 sle-micro-5.3-devel-uyuni-client" with arch "x86_64" + +@susemanager @slemicro54_minion Scenario: Add SUSE Linux Enterprise Micro 5.4 When I follow the left menu "Admin > Setup Wizard > Products" @@ -172,6 +266,25 @@ Scenario: Add SUSE Linux Enterprise Server 15 SP5 And I wait until I see "Selected channels/products were scheduled successfully for syncing." text And I wait until I see "SUSE Linux Enterprise Micro 5.4 x86_64" product has been added +# disabled until a new Uyuni version will be released +# @uyuni +# @slemicro54_minion +# Scenario: Add SUSE Linux Enterprise Micro 5.4 +# When I follow the left menu "Admin > Setup Wizard > Products" +# And I wait until I do not see "Loading" text +# And I enter "SUSE Linux Enterprise Micro 5.4" as the filtered product description +# And I select "SUSE Linux Enterprise Micro 5.4 x86_64" as a product +# Then I should see the "SUSE Linux Enterprise Micro 5.4 x86_64" selected +# When I click the Add Product button +# And I wait until I see "Selected channels/products were scheduled successfully for syncing." text +# And I wait until I see "SUSE Linux Enterprise Micro 5.4 x86_64" product has been added + +# @uyuni +# @slemicro54_minion +# Scenario: Add SUSE Linux Enterprise Micro 5.4 Uyuni Client tools +# When I use spacewalk-common-channel to add channel "sle-micro-5.4-pool-x86_64 sle-micro-5.4-devel-uyuni-client" with arch "x86_64" + +@susemanager @opensuse154arm_minion Scenario: Add openSUSE 15.4 for ARM When I follow the left menu "Admin > Setup Wizard > Products" @@ -183,6 +296,12 @@ Scenario: Add SUSE Linux Enterprise Server 15 SP5 And I wait until I see "Selected channels/products were scheduled successfully for syncing." text And I wait until I see "openSUSE Leap 15.4 aarch64" product has been added +@uyuni +@opensuse154arm_minion + Scenario: Add openSUSE 15.4 for ARM Uyuni Client tools + When I use spacewalk-common-channel to add channel "opensuse_leap15_4 opensuse_leap15_4-backports-updates opensuse_leap15_4-non-oss opensuse_leap15_4-non-oss-updates opensuse_leap15_4-sle-updates opensuse_leap15_4-updates opensuse_leap15_4-uyuni-client-devel" with arch "aarch64" + +@susemanager @opensuse155arm_minion Scenario: Add openSUSE 15.5 for ARM When I follow the left menu "Admin > Setup Wizard > Products" @@ -194,6 +313,12 @@ Scenario: Add SUSE Linux Enterprise Server 15 SP5 And I wait until I see "Selected channels/products were scheduled successfully for syncing." text And I wait until I see "openSUSE Leap 15.5 aarch64" product has been added +@uyuni +@opensuse155arm_minion + Scenario: Add openSUSE 15.5 for ARM Uyuni Client tools + When I use spacewalk-common-channel to add channel "opensuse_leap15_5 opensuse_leap15_5-backports-updates opensuse_leap15_5-non-oss opensuse_leap15_5-non-oss-updates opensuse_leap15_5-sle-updates opensuse_leap15_5-updates opensuse_leap15_5-uyuni-client-devel" with arch "aarch64" + +@susemanager @alma9_minion Scenario: Add Alma Linux 9 When I follow the left menu "Admin > Setup Wizard > Products" @@ -204,6 +329,12 @@ Scenario: Add SUSE Linux Enterprise Server 15 SP5 When I click the Add Product button And I wait until I see "AlmaLinux 9 x86_64" product has been added +@uyuni +@alma9_minion + Scenario: Add Alma Linux 9 + When I use spacewalk-common-channel to add channel "almalinux9 almalinux9-appstream almalinux9-extras almalinux9-uyuni-client-devel" with arch "x86_64" + +@susemanager @centos7_minion Scenario: Add SUSE Linux Enterprise Server with Expanded Support 7 When I follow the left menu "Admin > Setup Wizard > Products" @@ -214,6 +345,12 @@ Scenario: Add SUSE Linux Enterprise Server 15 SP5 When I click the Add Product button And I wait until I see "SUSE Linux Enterprise Server with Expanded Support 7" product has been added +@uyuni +@centos7_minion + Scenario: Add CentOS 7 + When I use spacewalk-common-channel to add channel "centos7 centos7-extras centos7-uyuni-client-devel" with arch "x86_64" + +@susemanager @liberty9_minion Scenario: Add Liberty Linux 9 When I follow the left menu "Admin > Setup Wizard > Products" @@ -229,6 +366,7 @@ Scenario: Add SUSE Linux Enterprise Server 15 SP5 When I click the Add Product button And I wait until I see "SUSE Liberty Linux 9" product has been added +@susemanager @oracle9_minion Scenario: Add Oracle Linux 9 When I follow the left menu "Admin > Setup Wizard > Products" @@ -239,6 +377,11 @@ Scenario: Add SUSE Linux Enterprise Server 15 SP5 When I click the Add Product button And I wait until I see "Oracle Linux 9 x86_64" product has been added +@uyuni +@oracle9_minion + Scenario: Add Oracle Linux 9 + When I use spacewalk-common-channel to add channel "oraclelinux9 oraclelinux9-appstream oraclelinux9-uyuni-client-devel" with arch "x86_64" + @rhel9_minion Scenario: Add RHEL 9 When I follow the left menu "Admin > Setup Wizard > Products" @@ -249,6 +392,7 @@ Scenario: Add SUSE Linux Enterprise Server 15 SP5 When I click the Add Product button And I wait until I see "RHEL and Liberty 9 Base" product has been added +@susemanager @rocky8_minion Scenario: Add SUSE Linux Enterprise Server with Expanded Support 8 When I follow the left menu "Admin > Setup Wizard > Products" @@ -262,6 +406,12 @@ Scenario: Add SUSE Linux Enterprise Server 15 SP5 When I click the Add Product button And I wait until I see "RHEL or SLES ES or CentOS 8 Base" product has been added +@uyuni +@rocky8_minion + Scenario: Add Rocky Linux 8 + When I use spacewalk-common-channel to add channel "rockylinux8 rockylinux8-appstream rockylinux8-extras rockylinux8-uyuni-client-devel" with arch "x86_64" + +@susemanager @rocky9_minion Scenario: Add Rocky Linux 9 When I follow the left menu "Admin > Setup Wizard > Products" @@ -272,16 +422,6 @@ Scenario: Add SUSE Linux Enterprise Server 15 SP5 When I click the Add Product button And I wait until I see "Rocky Linux 9 x86_64" product has been added -@ubuntu1804_minion - Scenario: Add Ubuntu 18.04 - When I follow the left menu "Admin > Setup Wizard > Products" - And I wait until I do not see "Loading" text - And I enter "Ubuntu 18.04" as the filtered product description - And I select "Ubuntu 18.04" as a product - Then I should see the "Ubuntu 18.04" selected - When I click the Add Product button - And I wait until I see "Ubuntu 18.04" product has been added - @ubuntu2004_minion Scenario: Add Ubuntu 20.04 When I follow the left menu "Admin > Setup Wizard > Products" @@ -292,6 +432,12 @@ Scenario: Add SUSE Linux Enterprise Server 15 SP5 When I click the Add Product button And I wait until I see "Ubuntu 20.04" product has been added +@uyuni +@ubuntu2004_minion + Scenario: Add Ubuntu 20.04 + When I use spacewalk-common-channel to add channel "ubuntu-2004-pool-amd64-uyuni ubuntu-2004-amd64-main-uyuni ubuntu-2004-amd64-main-updates-uyuni ubuntu-2004-amd64-main-security-uyuni ubuntu-2004-amd64-universe-uyuni ubuntu-2004-amd64-universe-updates-uyuni ubuntu-2004-amd64-universe-security-uyuni ubuntu-2004-amd64-universe-backports-uyuni ubuntu-2004-amd64-uyuni-client-devel" with arch "amd64-deb" + +@susemanager @ubuntu2204_minion Scenario: Add Ubuntu 22.04 When I follow the left menu "Admin > Setup Wizard > Products" @@ -302,6 +448,12 @@ Scenario: Add SUSE Linux Enterprise Server 15 SP5 When I click the Add Product button And I wait until I see "Ubuntu 22.04" product has been added +@uyuni +@ubuntu2204_minion + Scenario: Add Ubuntu 22.04 + When I use spacewalk-common-channel to add channel "ubuntu-2204-pool-amd64-uyuni ubuntu-2204-amd64-main-uyuni ubuntu-2204-amd64-main-updates-uyuni ubuntu-2204-amd64-main-security-uyuni ubuntu-2204-amd64-universe-uyuni ubuntu-2204-amd64-universe-updates-uyuni ubuntu-2204-amd64-universe-security-uyuni ubuntu-2204-amd64-universe-backports-uyuni ubuntu-2204-amd64-uyuni-client-devel" with arch "amd64-deb" + +@susemanager @debian10_minion Scenario: Add Debian 10 When I follow the left menu "Admin > Setup Wizard > Products" @@ -312,6 +464,12 @@ Scenario: Add SUSE Linux Enterprise Server 15 SP5 When I click the Add Product button And I wait until I see "Debian 10" product has been added +@uyuni +@debian10_minion + Scenario: Add Debian 10 + When I use spacewalk-common-channel to add channel "debian-10-pool-amd64-uyuni debian-10-amd64-main-updates-uyuni debian-10-amd64-main-security-uyuni debian-10-amd64-uyuni-client-devel" with arch "amd64-deb" + +@susemanager @debian11_minion Scenario: Add Debian 11 When I follow the left menu "Admin > Setup Wizard > Products" @@ -322,6 +480,12 @@ Scenario: Add SUSE Linux Enterprise Server 15 SP5 When I click the Add Product button And I wait until I see "Debian 11" product has been added +@uyuni +@debian11_minion + Scenario: Add Debian 11 + When I use spacewalk-common-channel to add channel "debian-11-pool-amd64-uyuni debian-11-amd64-main-updates-uyuni debian-11-amd64-main-security-uyuni debian-11-amd64-uyuni-client-devel" with arch "amd64-deb" + +@susemanager @proxy Scenario: Add SUSE Manager Proxy 4.3 When I follow the left menu "Admin > Setup Wizard > Products" @@ -333,6 +497,12 @@ Scenario: Add SUSE Linux Enterprise Server 15 SP5 And I wait until I see "Selected channels/products were scheduled successfully for syncing." text And I wait until I see "SUSE Manager Proxy 4.3 x86_64" product has been added +@uyuni +@proxy + Scenario: Add Uyuni Leap 15.4 Proxy, inlcuding Uyuni Client Tools + When I use spacewalk-common-channel to add channel "opensuse_leap15_4 opensuse_leap15_4-non-oss opensuse_leap15_4-non-oss-updates opensuse_leap15_4-updates opensuse_leap15_4-backports-updates opensuse_leap15_4-sle-updates uyuni-proxy-stable-leap-154 opensuse_leap15_4-uyuni-client-devel" with arch "x86_64" + +@susemanager @proxy Scenario: Add SUSE Manager Retail Branch Server 4.3 When I follow the left menu "Admin > Setup Wizard > Products" diff --git a/testsuite/features/build_validation/retail/proxy_branch_network.feature b/testsuite/features/build_validation/retail/proxy_branch_network.feature index 0156a01b9687..d682e334e80b 100644 --- a/testsuite/features/build_validation/retail/proxy_branch_network.feature +++ b/testsuite/features/build_validation/retail/proxy_branch_network.feature @@ -197,6 +197,7 @@ Feature: Prepare the branch server for PXE booting And I click on "Schedule Hardware Refresh" Then I should see a "You have successfully scheduled a hardware profile refresh" text When I wait until event "Hardware List Refresh scheduled by admin" is completed + And I wait until there is no Salt job calling the module "hardware.profileupdate" on "proxy" And I follow "Details" in the content area And I follow "Hardware" in the content area Then I should see a "proxy.example.org" text diff --git a/testsuite/features/build_validation/retail/sle12sp5_buildhost_build_kiwi_image.feature b/testsuite/features/build_validation/retail/sle12sp5_buildhost_build_kiwi_image.feature index 3e81863e287c..faa5408c278a 100644 --- a/testsuite/features/build_validation/retail/sle12sp5_buildhost_build_kiwi_image.feature +++ b/testsuite/features/build_validation/retail/sle12sp5_buildhost_build_kiwi_image.feature @@ -36,6 +36,7 @@ Feature: Prepare buildhost and build OS image for SLES 12 SP5 And I select "1-sle12sp5_minion_key" from "activationKey" And I enter the image filename for "sle12sp5_terminal" relative to profiles as "path" And I click on "create-btn" + And I wait until no Salt job is running on "sle12sp5_buildhost" # WORKAROUND # Remove as soon as the issue is fixed @@ -53,6 +54,7 @@ Feature: Prepare buildhost and build OS image for SLES 12 SP5 Then I should see a "[OS Image Build Host]" text When I wait until the image build "suse_os_image_12" is completed And I wait until the image inspection for "sle12sp5_terminal" is completed + And I wait until no Salt job is running on "sle12sp5_buildhost" And I am on the image store of the Kiwi image for organization "1" Then I should see the name of the image for "sle12sp5_terminal" diff --git a/testsuite/features/build_validation/smoke_tests/smoke_tests.template b/testsuite/features/build_validation/smoke_tests/smoke_tests.template index 8d765b339754..95329270c0c7 100644 --- a/testsuite/features/build_validation/smoke_tests/smoke_tests.template +++ b/testsuite/features/build_validation/smoke_tests/smoke_tests.template @@ -30,7 +30,7 @@ Feature: Smoke tests for And the IPv6 address for "" should be correct And the system ID for "" should be correct And the system name for "" should be correct - And I should see several text fields for "" + And I should see several text fields # TODO: remove the "skip" tags when Rocky and Alma have patches available. @skip_for_rocky9 @@ -181,6 +181,7 @@ Feature: Smoke tests for Scenario: Test on Grafana When I visit the grafana dashboards of this "monitoring_server" And I wait until I do not see "Loading Grafana" text + And I wait until I see "General" text And I check radio button "View as list" When I follow "Client Systems" Then I should see "" hostname diff --git a/testsuite/features/core/allcli_sanity.feature b/testsuite/features/core/allcli_sanity.feature index 4949116b4fca..e28d0750c9f5 100644 --- a/testsuite/features/core/allcli_sanity.feature +++ b/testsuite/features/core/allcli_sanity.feature @@ -6,8 +6,7 @@ Feature: Sanity checks I want to be sure to use a sane environment Scenario: The server is healthy - Then "server" should have a FQDN - And reverse resolution should work for "server" + Then reverse resolution should work for "server" And the clock from "server" should be exact And service "apache2" is enabled on "server" And service "apache2" is active on "server" diff --git a/testsuite/features/core/srv_channels_add.feature b/testsuite/features/core/srv_channels_add.feature index 20a94fc833b6..2baa076144c8 100644 --- a/testsuite/features/core/srv_channels_add.feature +++ b/testsuite/features/core/srv_channels_add.feature @@ -3,7 +3,7 @@ # # This feature can cause failures in: # - features/core/srv_create_activationkey.feature -# - features/core/srv_create_repository.feature +# - features/reposync/srv_create_repository.feature # - features/init_client/sle_minion.feature # - features/init_client/sle_ssh_minion.feature # - features/init_client/min_rhlike.feature diff --git a/testsuite/features/core/srv_create_activationkey.feature b/testsuite/features/core/srv_create_activationkey.feature index b66100505860..7db6a3f541ca 100644 --- a/testsuite/features/core/srv_create_activationkey.feature +++ b/testsuite/features/core/srv_create_activationkey.feature @@ -95,3 +95,12 @@ Feature: Create activation keys And I enter "20" as "usageLimit" And I select "Push via SSH tunnel" from "contact-method" And I click on "Create Activation Key" + + Scenario: Create an activation key for the Proxy + When I follow the left menu "Systems > Activation Keys" + And I follow "Create Key" + And I wait until I do not see "Loading..." text + And I enter "Proxy Key x86_64" as "description" + And I enter "PROXY-KEY-x86_64" as "key" + And I click on "Create Activation Key" + Then I should see a "Activation key Proxy Key x86_64 has been created" text diff --git a/testsuite/features/finishing/srv_smdba.feature b/testsuite/features/finishing/srv_smdba.feature index 427d733a7790..1bc01c6f2b7d 100644 --- a/testsuite/features/finishing/srv_smdba.feature +++ b/testsuite/features/finishing/srv_smdba.feature @@ -58,11 +58,11 @@ Feature: SMDBA database helper tool Given a postgresql database is running And there is no such "/smdba-backup-test" directory When I create backup directory "/smdba-backup-test" with UID "root" and GID "root" - And I issue command "smdba backup-hot --enable=on --backup-dir=/smdba-backup-test" + And I take a backup with smdba in folder "/smdba-backup-test" Then I should see error message that asks "/smdba-backup-test" belong to the same UID/GID as "/var/lib/pgsql/data" directory And I remove backup directory "/smdba-backup-test" When I create backup directory "/smdba-backup-test" with UID "postgres" and GID "postgres" - And I issue command "smdba backup-hot --enable=on --backup-dir=/smdba-backup-test" + And I take a backup with smdba in folder "/smdba-backup-test" Then I should see error message that asks "/smdba-backup-test" has same permissions as "/var/lib/pgsql/data" directory And I remove backup directory "/smdba-backup-test" @@ -71,7 +71,7 @@ Feature: SMDBA database helper tool And there is no such "/smdba-backup-test" directory When I create backup directory "/smdba-backup-test" with UID "postgres" and GID "postgres" And I change Access Control List on "/smdba-backup-test" directory to "0700" - And I issue command "smdba backup-hot --enable=on --backup-dir=/smdba-backup-test" + And I take a backup with smdba in folder "/smdba-backup-test" Then base backup is taken And in "/smdba-backup-test" directory there is "base.tar.gz" file and at least one backup checkpoint file And parameter "archive_command" in the configuration file "/var/lib/pgsql/data/postgresql.conf" is "/usr/bin/smdba-pgarchive" diff --git a/testsuite/features/github_validation/init_clients/sle_ssh_minion.feature b/testsuite/features/github_validation/init_clients/sle_ssh_minion.feature index 528d96518940..0958f997dc76 100644 --- a/testsuite/features/github_validation/init_clients/sle_ssh_minion.feature +++ b/testsuite/features/github_validation/init_clients/sle_ssh_minion.feature @@ -11,12 +11,12 @@ Feature: Bootstrap a Salt host managed via salt-ssh When I follow the left menu "Systems > Bootstrapping" Then I should see a "Bootstrap Minions" text When I check "manageWithSSH" - And I enter the hostname of "opensusessh" as "hostname" + And I enter the hostname of "ssh_minion" as "hostname" And I enter "linux" as "password" And I click on "Bootstrap" - And I wait until I see "Successfully bootstrapped host!" text + And I wait until I see "Bootstrap process initiated." text And I follow the left menu "Systems > System List > All" - And I wait until I see the name of "opensusessh", refreshing the page + And I wait until I see the name of "ssh_minion", refreshing the page Scenario: Subscribe the SSH minion to a base channel Given I am on the Systems overview page of this "ssh_minion" @@ -31,4 +31,3 @@ Feature: Bootstrap a Salt host managed via salt-ssh When I click on "Confirm" Then I should see a "Changing the channels has been scheduled." text And I wait until event "Subscribe channels scheduled by admin" is completed - diff --git a/testsuite/features/init_clients/allcli_update_activationkeys.feature b/testsuite/features/init_clients/allcli_update_activationkeys.feature index 3480e53e79b0..f6873a318002 100644 --- a/testsuite/features/init_clients/allcli_update_activationkeys.feature +++ b/testsuite/features/init_clients/allcli_update_activationkeys.feature @@ -43,8 +43,10 @@ Feature: Update activation keys Then I should see a "Repository sync scheduled for Fake-RPM-SUSE-Channel." text And I wait until the channel "fake-rpm-suse-channel" has been synced And I disable source package syncing - + +@skip_if_github_validation @scc_credentials +@susemanager Scenario: Update SLE key with synced base product When I follow the left menu "Systems > Activation Keys" And I follow "SUSE Test Key x86_64" in the content area @@ -66,7 +68,27 @@ Feature: Update activation keys When I click on "Update Activation Key" Then I should see a "Activation key SUSE Test Key x86_64 has been modified" text +@skip_if_github_validation +@uyuni + Scenario: Update openSUSE Leap key with synced base product + When I follow the left menu "Systems > Activation Keys" + And I follow "SUSE Test Key x86_64" in the content area + And I wait until I do not see "Loading..." text + And I select "openSUSE Leap 15.4 (x86_64)" from "selectedBaseChannel" + And I wait until I do not see "Loading..." text + And I check "openSUSE 15.4 non oss (x86_64)" + And I check "openSUSE Leap 15.4 non oss Updates (x86_64)" + And I check "openSUSE Leap 15.4 Updates (x86_64)" + And I check "Update repository of openSUSE Leap 15.4 Backports (x86_64)" + And I check "Update repository with updates from SUSE Linux Enterprise 15 for openSUSE Leap 15.4 (x86_64)" + And I check "Uyuni Client Tools for openSUSE Leap 15.4 (x86_64)" + And I check "Fake-RPM-SUSE-Channel" + When I click on "Update Activation Key" + Then I should see a "Activation key SUSE Test Key x86_64 has been modified" text + +@skip_if_github_validation @scc_credentials +@susemanager Scenario: Update SSH key with synced base product When I follow the left menu "Systems > Activation Keys" And I follow "SUSE SSH Test Key x86_64" in the content area @@ -79,7 +101,27 @@ Feature: Update activation keys And I click on "Update Activation Key" Then I should see a "Activation key SUSE SSH Test Key x86_64 has been modified" text +@skip_if_github_validation +@uyuni + Scenario: Update SSH key with synced base product + When I follow the left menu "Systems > Activation Keys" + And I follow "SUSE SSH Test Key x86_64" in the content area + And I wait until I do not see "Loading..." text + And I select "openSUSE Leap 15.4 (x86_64)" from "selectedBaseChannel" + And I wait until I do not see "Loading..." text + And I check "openSUSE 15.4 non oss (x86_64)" + And I check "openSUSE Leap 15.4 non oss Updates (x86_64)" + And I check "openSUSE Leap 15.4 Updates (x86_64)" + And I check "Update repository of openSUSE Leap 15.4 Backports (x86_64)" + And I check "Update repository with updates from SUSE Linux Enterprise 15 for openSUSE Leap 15.4 (x86_64)" + And I check "Uyuni Client Tools for openSUSE Leap 15.4 (x86_64)" + And I check "Fake-RPM-SUSE-Channel" + And I click on "Update Activation Key" + Then I should see a "Activation key SUSE SSH Test Key x86_64 has been modified" text + +@skip_if_github_validation @scc_credentials +@susemanager Scenario: Update SSH tunnel key with synced base product When I follow the left menu "Systems > Activation Keys" And I follow "SUSE SSH Tunnel Test Key x86_64" in the content area @@ -91,3 +133,58 @@ Feature: Update activation keys And I check "Fake-RPM-SUSE-Channel" And I click on "Update Activation Key" Then I should see a "Activation key SUSE SSH Tunnel Test Key x86_64 has been modified" text + +@skip_if_github_validation +@uyuni + Scenario: Update SSH tunnel key with synced base product + When I follow the left menu "Systems > Activation Keys" + And I follow "SUSE SSH Tunnel Test Key x86_64" in the content area + And I wait until I do not see "Loading..." text + And I select "openSUSE Leap 15.4 (x86_64)" from "selectedBaseChannel" + And I wait until I do not see "Loading..." text + And I check "openSUSE 15.4 non oss (x86_64)" + And I check "openSUSE Leap 15.4 non oss Updates (x86_64)" + And I check "openSUSE Leap 15.4 Updates (x86_64)" + And I check "Update repository of openSUSE Leap 15.4 Backports (x86_64)" + And I check "Update repository with updates from SUSE Linux Enterprise 15 for openSUSE Leap 15.4 (x86_64)" + And I check "Uyuni Client Tools for openSUSE Leap 15.4 (x86_64)" + And I check "Fake-RPM-SUSE-Channel" + And I click on "Update Activation Key" + Then I should see a "Activation key SUSE SSH Tunnel Test Key x86_64 has been modified" text + +@skip_if_github_validation +@scc_credentials +@susemanager + Scenario: Update the Proxy key with synced base product + When I follow the left menu "Systems > Activation Keys" + And I follow "Proxy Key x86_64" in the content area + And I wait until I do not see "Loading..." text + And I select "SLE-Product-SUSE-Manager-Proxy-4.3-Pool" from "selectedBaseChannel" + And I wait until I do not see "Loading..." text + And I include the recommended child channels + And I wait until "SLE-Module-Basesystem15-SP4-Pool for x86_64 Proxy 4.3" has been checked + And I wait until "SLE-Module-Basesystem15-SP4-Updates for x86_64 Proxy 4.3" has been checked + And I wait until "SLE-Module-Server-Applications15-SP4-Pool for x86_64 Proxy 4.3" has been checked + And I wait until "SLE-Module-Server-Applications15-SP4-Updates for x86_64 Proxy 4.3" has been checked + And I wait until "SLE-Module-SUSE-Manager-Proxy-4.3-Pool for x86_64" has been checked + And I wait until "SLE-Module-SUSE-Manager-Proxy-4.3-Updates for x86_64" has been checked + When I click on "Update Activation Key" + Then I should see a "Activation key Proxy Key x86_64 has been modified" text + +@skip_if_github_validation +@uyuni + Scenario: Update the Proxy key with synced base product + When I follow the left menu "Systems > Activation Keys" + And I follow "Proxy Key x86_64" in the content area + And I wait until I do not see "Loading..." text + And I select "openSUSE Leap 15.4 (x86_64)" from "selectedBaseChannel" + And I wait until I do not see "Loading..." text + And I check "openSUSE 15.4 non oss (x86_64)" + And I check "openSUSE Leap 15.4 non oss Updates (x86_64)" + And I check "openSUSE Leap 15.4 Updates (x86_64)" + And I check "Update repository of openSUSE Leap 15.4 Backports (x86_64)" + And I check "Update repository with updates from SUSE Linux Enterprise 15 for openSUSE Leap 15.4 (x86_64)" + And I check "Uyuni Client Tools for openSUSE Leap 15.4 (x86_64)" + And I check "Uyuni Proxy Devel for openSUSE Leap 15.4 (x86_64)" + When I click on "Update Activation Key" + Then I should see a "Activation key Proxy Key x86_64 has been modified" text diff --git a/testsuite/features/init_clients/buildhost_bootstrap.feature b/testsuite/features/init_clients/buildhost_bootstrap.feature index e08ba58790a6..c4e76d001b5d 100644 --- a/testsuite/features/init_clients/buildhost_bootstrap.feature +++ b/testsuite/features/init_clients/buildhost_bootstrap.feature @@ -1,8 +1,8 @@ -# Copyright (c) 2016-2022 SUSE LLC +# Copyright (c) 2016-2023 SUSE LLC # Licensed under the terms of the MIT license. @buildhost -Feature: Bootstrap a Salt build host via the GUI +Feature: Bootstrap a build host via the GUI Scenario: Log in as admin user Given I am authorized for the "Admin" section @@ -10,11 +10,12 @@ Feature: Bootstrap a Salt build host via the GUI Scenario: Update the SLES activation key When I follow the left menu "Systems > Activation Keys" And I follow "SUSE Test Key x86_64" in the content area - And I check "container_build_host" - And I check "osimage_build_host" + And I wait until I see "Container Build Host" text + And I check "Container Build Host" + And I check "OS Image Build Host" And I click on "Update Activation Key" - Scenario: Bootstrap a SLES build host + Scenario: Bootstrap a build host When I follow the left menu "Systems > Bootstrapping" Then I should see a "Bootstrap Minions" text When I enter the hostname of "build_host" as "hostname" @@ -24,7 +25,7 @@ Feature: Bootstrap a Salt build host via the GUI And I select "1-SUSE-KEY-x86_64" from "activationKeys" And I select the hostname of "proxy" from "proxies" if present And I click on "Bootstrap" - And I wait until I see "Successfully bootstrapped host!" text + And I wait until I see "Bootstrap process initiated." text Scenario: Check the new bootstrapped build host in System Overview page When I follow the left menu "Salt > Keys" @@ -63,6 +64,7 @@ Feature: Bootstrap a Salt build host via the GUI Scenario: Cleanup: Restore the SLES activation key to its original state When I follow the left menu "Systems > Activation Keys" And I follow "SUSE Test Key x86_64" in the content area - And I uncheck "container_build_host" - And I uncheck "osimage_build_host" + And I wait until I see "Container Build Host" text + And I uncheck "Container Build Host" + And I uncheck "OS Image Build Host" And I click on "Update Activation Key" diff --git a/testsuite/features/init_clients/min_deblike_salt.feature b/testsuite/features/init_clients/min_deblike_salt.feature index d11490067d5d..8d052b3eb8ef 100644 --- a/testsuite/features/init_clients/min_deblike_salt.feature +++ b/testsuite/features/init_clients/min_deblike_salt.feature @@ -20,7 +20,7 @@ Feature: Bootstrap a Debian-like minion and do some basic operations on it And I select "1-DEBLIKE-KEY" from "activationKeys" And I select the hostname of "proxy" from "proxies" if present And I click on "Bootstrap" - And I wait until I see "Successfully bootstrapped host!" text + And I wait until I see "Bootstrap process initiated." text And I follow the left menu "Systems > System List > All" And I wait until I see the name of "deblike_minion", refreshing the page And I wait until onboarding is completed for "deblike_minion" diff --git a/testsuite/features/init_clients/min_rhlike_salt.feature b/testsuite/features/init_clients/min_rhlike_salt.feature index 38f713842e7e..348ef0222653 100644 --- a/testsuite/features/init_clients/min_rhlike_salt.feature +++ b/testsuite/features/init_clients/min_rhlike_salt.feature @@ -20,7 +20,7 @@ Feature: Bootstrap a Red Hat-like minion and do some basic operations on it And I select "1-RH-LIKE-KEY" from "activationKeys" And I select the hostname of "proxy" from "proxies" if present And I click on "Bootstrap" - And I wait until I see "Successfully bootstrapped host!" text + And I wait until I see "Bootstrap process initiated." text And I follow the left menu "Systems > System List > All" And I wait until I see the name of "rhlike_minion", refreshing the page And I wait until onboarding is completed for "rhlike_minion" diff --git a/testsuite/features/init_clients/min_virthost.feature b/testsuite/features/init_clients/min_virthost.feature index 567aef36480c..0e57b759923b 100644 --- a/testsuite/features/init_clients/min_virthost.feature +++ b/testsuite/features/init_clients/min_virthost.feature @@ -31,7 +31,7 @@ Feature: Bootstrap a virtualization host minion and set it up for virtualization And I select "1-KVM-TEST" from "activationKeys" And I select the hostname of "proxy" from "proxies" if present And I click on "Bootstrap" - And I wait until I see "Successfully bootstrapped host!" text + And I wait until I see "Bootstrap process initiated." text And I wait until onboarding is completed for "kvm_server" Scenario: Show the KVM host system overview diff --git a/testsuite/features/core/proxy_branch_network.feature b/testsuite/features/init_clients/proxy_branch_network.feature similarity index 98% rename from testsuite/features/core/proxy_branch_network.feature rename to testsuite/features/init_clients/proxy_branch_network.feature index ed03a2b9d389..e49a45b5cb50 100644 --- a/testsuite/features/core/proxy_branch_network.feature +++ b/testsuite/features/init_clients/proxy_branch_network.feature @@ -202,7 +202,7 @@ Feature: Setup Uyuni for Retail branch network Scenario: Disable repositories after installing branch services When I disable repositories after installing branch server # WORKAROUND: the following event fails because the proxy needs 10 minutes to become responsive again - # And I wait until event "Package List Refresh scheduled by (none)" is completed + # And I wait until event "Package List Refresh scheduled by (system)" is completed And I wait for "700" seconds @proxy @@ -225,6 +225,7 @@ Feature: Setup Uyuni for Retail branch network And I click on "Schedule Hardware Refresh" Then I should see a "You have successfully scheduled a hardware profile refresh" text When I wait until event "Hardware List Refresh scheduled by admin" is completed + And I wait until there is no Salt job calling the module "hardware.profileupdate" on "proxy" And I follow "Details" in the content area And I follow "Hardware" in the content area Then I should see a "proxy.example.org" text diff --git a/testsuite/features/core/proxy_register_as_minion_with_gui.feature b/testsuite/features/init_clients/proxy_register_as_minion_with_gui.feature similarity index 61% rename from testsuite/features/core/proxy_register_as_minion_with_gui.feature rename to testsuite/features/init_clients/proxy_register_as_minion_with_gui.feature index 00394047b21d..33d5d596d30a 100644 --- a/testsuite/features/core/proxy_register_as_minion_with_gui.feature +++ b/testsuite/features/init_clients/proxy_register_as_minion_with_gui.feature @@ -1,4 +1,4 @@ -# Copyright (c) 2017-2022 SUSE LLC +# Copyright (c) 2017-2023 SUSE LLC # Licensed under the terms of the MIT license. # # The scenarios in this feature are skipped if there is no proxy @@ -30,8 +30,9 @@ Feature: Setup Uyuni proxy And I enter "22" as "port" And I enter "root" as "user" And I enter "linux" as "password" + And I select "1-PROXY-KEY-x86_64" from "activationKeys" And I click on "Bootstrap" - And I wait until I see "Successfully bootstrapped host!" text + And I wait until I see "Bootstrap process initiated." text Scenario: Wait until the proxy appears When I wait until onboarding is completed for "proxy" @@ -62,3 +63,25 @@ Feature: Setup Uyuni proxy Scenario: Check events history for failures on the proxy Given I am on the Systems overview page of this "proxy" Then I check for failed events on history event page + +@uyuni + Scenario: Assign the correct channels to the proxy + Given I am on the Systems overview page of this "proxy" + When I follow "Software" in the content area + And I follow "Software Channels" in the content area + And I wait until I do not see "Loading..." text + And I check radio button "openSUSE Leap 15.4 (x86_64)" + And I wait until I do not see "Loading..." text + And I check "openSUSE 15.4 non oss (x86_64)" + And I check "openSUSE Leap 15.4 non oss Updates (x86_64)" + And I check "openSUSE Leap 15.4 Updates (x86_64)" + And I check "Update repository of openSUSE Leap 15.4 Backports (x86_64)" + And I check "Update repository with updates from SUSE Linux Enterprise 15 for openSUSE Leap 15.4 (x86_64)" + And I check "Uyuni Client Tools for openSUSE Leap 15.4 (x86_64)" + And I check "Uyuni Proxy Devel for openSUSE Leap 15.4 (x86_64)" + And I click on "Next" + Then I should see a "Confirm Software Channel Change" text + When I click on "Confirm" + Then I should see a "Changing the channels has been scheduled." text + When I follow "scheduled" in the content area + And I wait until I see "1 system successfully completed this action." text, refreshing the page diff --git a/testsuite/features/core/proxy_register_as_minion_with_script.feature b/testsuite/features/init_clients/proxy_register_as_minion_with_script.feature similarity index 65% rename from testsuite/features/core/proxy_register_as_minion_with_script.feature rename to testsuite/features/init_clients/proxy_register_as_minion_with_script.feature index 0b529f4b5237..88ba88fe6c2b 100644 --- a/testsuite/features/core/proxy_register_as_minion_with_script.feature +++ b/testsuite/features/init_clients/proxy_register_as_minion_with_script.feature @@ -1,4 +1,4 @@ -# Copyright (c) 2017-2022 SUSE LLC +# Copyright (c) 2017-2023 SUSE LLC # Licensed under the terms of the MIT license. # # The scenarios in this feature are skipped if there is no proxy @@ -22,7 +22,7 @@ Feature: Setup Uyuni proxy @skip_if_salt_bundle Scenario: Create the bootstrap script for the proxy and use it - When I execute mgr-bootstrap "--script=bootstrap-proxy.sh" + When I execute mgr-bootstrap "--activation-keys=1-PROXY-KEY-x86_64 --script=bootstrap-proxy.sh" Then I should get "* bootstrap script (written):" And I should get " '/srv/www/htdocs/pub/bootstrap/bootstrap-proxy.sh'" When I fetch "pub/bootstrap/bootstrap-proxy.sh" to "proxy" @@ -30,7 +30,7 @@ Feature: Setup Uyuni proxy @salt_bundle Scenario: Create the bundle-aware bootstrap script for the proxy and use it - When I execute mgr-bootstrap "--script=bootstrap-proxy.sh --force-bundle" + When I execute mgr-bootstrap "--activation-keys=1-PROXY-KEY-x86_64 --script=bootstrap-proxy.sh --force-bundle" Then I should get "* bootstrap script (written):" And I should get " '/srv/www/htdocs/pub/bootstrap/bootstrap-proxy.sh'" When I fetch "pub/bootstrap/bootstrap-proxy.sh" to "proxy" @@ -73,3 +73,25 @@ Feature: Setup Uyuni proxy Scenario: Cleanup: remove proxy bootstrap scripts When I run "rm /srv/www/htdocs/pub/bootstrap/bootstrap-proxy.sh" on "server" And I run "rm /root/bootstrap-proxy.sh" on "proxy" + +@uyuni + Scenario: Assign the correct channels to the proxy + Given I am on the Systems overview page of this "proxy" + When I follow "Software" in the content area + And I follow "Software Channels" in the content area + And I wait until I do not see "Loading..." text + And I check radio button "openSUSE Leap 15.4 (x86_64)" + And I wait until I do not see "Loading..." text + And I check "openSUSE 15.4 non oss (x86_64)" + And I check "openSUSE Leap 15.4 non oss Updates (x86_64)" + And I check "openSUSE Leap 15.4 Updates (x86_64)" + And I check "Update repository of openSUSE Leap 15.4 Backports (x86_64)" + And I check "Update repository with updates from SUSE Linux Enterprise 15 for openSUSE Leap 15.4 (x86_64)" + And I check "Uyuni Client Tools for openSUSE Leap 15.4 (x86_64)" + And I check "Uyuni Proxy Devel for openSUSE Leap 15.4 (x86_64)" + And I click on "Next" + Then I should see a "Confirm Software Channel Change" text + When I click on "Confirm" + Then I should see a "Changing the channels has been scheduled." text + When I follow "scheduled" in the content area + And I wait until I see "1 system successfully completed this action." text, refreshing the page diff --git a/testsuite/features/core/proxy_register_as_pod.feature b/testsuite/features/init_clients/proxy_register_as_pod.feature similarity index 100% rename from testsuite/features/core/proxy_register_as_pod.feature rename to testsuite/features/init_clients/proxy_register_as_pod.feature diff --git a/testsuite/features/init_clients/sle_minion.feature b/testsuite/features/init_clients/sle_minion.feature index e1d671237a81..ee9c10f35b0c 100644 --- a/testsuite/features/init_clients/sle_minion.feature +++ b/testsuite/features/init_clients/sle_minion.feature @@ -17,7 +17,7 @@ Feature: Bootstrap a Salt minion via the GUI And I select "1-SUSE-KEY-x86_64" from "activationKeys" And I select the hostname of "proxy" from "proxies" if present And I click on "Bootstrap" - And I wait until I see "Successfully bootstrapped host!" text + And I wait until I see "Bootstrap process initiated." text Scenario: Check the new bootstrapped minion in System List page When I follow the left menu "Salt > Keys" @@ -30,7 +30,7 @@ Feature: Bootstrap a Salt minion via the GUI @proxy Scenario: Check connection from minion to proxy - Given I navigate to the Systems overview page of this "sle_minion" + Given I am on the Systems overview page of this "sle_minion" When I follow "Details" in the content area And I follow "Connection" in the content area Then I should see "proxy" short hostname diff --git a/testsuite/features/init_clients/sle_ssh_minion.feature b/testsuite/features/init_clients/sle_ssh_minion.feature index 1adf21685c8d..241dc81a8784 100644 --- a/testsuite/features/init_clients/sle_ssh_minion.feature +++ b/testsuite/features/init_clients/sle_ssh_minion.feature @@ -1,4 +1,4 @@ -# Copyright (c) 2016-2022 SUSE LLC +# Copyright (c) 2016-2023 SUSE LLC # Licensed under the terms of the MIT license. @ssh_minion @@ -7,7 +7,7 @@ Feature: Bootstrap a Salt host managed via salt-ssh Scenario: Log in as admin user Given I am authorized for the "Admin" section - Scenario: Register this SSH minion for service pack migration + Scenario: Bootstrap a SLES SSH minion When I follow the left menu "Systems > Bootstrapping" Then I should see a "Bootstrap Minions" text When I check "manageWithSSH" @@ -15,7 +15,7 @@ Feature: Bootstrap a Salt host managed via salt-ssh And I enter "linux" as "password" And I select the hostname of "proxy" from "proxies" if present And I click on "Bootstrap" - And I wait until I see "Successfully bootstrapped host!" text + And I wait until I see "Bootstrap process initiated." text And I follow the left menu "Systems > System List > All" And I wait until I see the name of "ssh_minion", refreshing the page And I wait until onboarding is completed for "ssh_minion" diff --git a/testsuite/features/profiles/Makefile b/testsuite/features/profiles/Makefile index 6e1851a9a402..4fe3a24fbd95 100644 --- a/testsuite/features/profiles/Makefile +++ b/testsuite/features/profiles/Makefile @@ -5,8 +5,8 @@ TEMPLATE_DOCKER_DIR = Docker TEMPLATE_KIWI_DIR = Kiwi DEFAULT_REPO = download.suse.de/ibs -REPO_NUE = download.suse.de/ibs -REPO_PRV = minima-mirror.mgr.prv.suse.net +REPO_NUE = minima-mirror-ci-bv.mgr.suse.de +REPO_PRV = minima-mirror-ci-bv.mgr.prv.suse.net REPO_AWS = ip-172-16-1-175.eu-central-1.compute.internal @@ -30,7 +30,8 @@ internal_nue: clean-internal_nue cp -r $(TEMPLATE_KIWI_DIR) $@/ ; \ find $@ -type f | xargs sed -i 's/$(REGISTRY_PLACEHOLDER_AUTH)/$(REG_REPLACEMENT_NUE_AUTH)/g' ; \ find $@ -type f | xargs sed -i 's/$(REGISTRY_PLACEHOLDER_NOAUTH)/$(REG_REPLACEMENT_NUE_NOAUTH)/g' ; \ - find $@ -type f | xargs sed -i 's|$(DEFAULT_REPO)|$(REPO_NUE)|g' ; \ + find $@ -type f | xargs sed -i 's|$(DEFAULT_REPO)/SUSE/|$(REPO_NUE)/SUSE/|g' ; \ + find $@ -type f | xargs sed -i 's|$(DEFAULT_REPO)|$(REPO_NUE)/ibs|g' ; \ fi internal_prv: clean-internal_prv diff --git a/testsuite/features/profiles/internal_nue/Docker/authprofile/sles15sp4.repo b/testsuite/features/profiles/internal_nue/Docker/authprofile/sles15sp4.repo index 67690d205283..5a1259b09503 100644 --- a/testsuite/features/profiles/internal_nue/Docker/authprofile/sles15sp4.repo +++ b/testsuite/features/profiles/internal_nue/Docker/authprofile/sles15sp4.repo @@ -2,5 +2,5 @@ name=sles15sp4 enabled=1 autorefresh=0 -baseurl=http://download.suse.de/ibs/SUSE/Products/SLE-Module-Basesystem/15-SP4/x86_64/product/ +baseurl=http://minima-mirror-ci-bv.mgr.suse.de/SUSE/Products/SLE-Module-Basesystem/15-SP4/x86_64/product/ type=rpm-md diff --git a/testsuite/features/profiles/internal_nue/Docker/serverhost/sles15sp4.repo b/testsuite/features/profiles/internal_nue/Docker/serverhost/sles15sp4.repo index 67690d205283..5a1259b09503 100644 --- a/testsuite/features/profiles/internal_nue/Docker/serverhost/sles15sp4.repo +++ b/testsuite/features/profiles/internal_nue/Docker/serverhost/sles15sp4.repo @@ -2,5 +2,5 @@ name=sles15sp4 enabled=1 autorefresh=0 -baseurl=http://download.suse.de/ibs/SUSE/Products/SLE-Module-Basesystem/15-SP4/x86_64/product/ +baseurl=http://minima-mirror-ci-bv.mgr.suse.de/SUSE/Products/SLE-Module-Basesystem/15-SP4/x86_64/product/ type=rpm-md diff --git a/testsuite/features/profiles/internal_nue/Docker/sles15sp4.repo b/testsuite/features/profiles/internal_nue/Docker/sles15sp4.repo index 67690d205283..5a1259b09503 100644 --- a/testsuite/features/profiles/internal_nue/Docker/sles15sp4.repo +++ b/testsuite/features/profiles/internal_nue/Docker/sles15sp4.repo @@ -2,5 +2,5 @@ name=sles15sp4 enabled=1 autorefresh=0 -baseurl=http://download.suse.de/ibs/SUSE/Products/SLE-Module-Basesystem/15-SP4/x86_64/product/ +baseurl=http://minima-mirror-ci-bv.mgr.suse.de/SUSE/Products/SLE-Module-Basesystem/15-SP4/x86_64/product/ type=rpm-md diff --git a/testsuite/features/profiles/internal_nue/Kiwi/POS_Image-JeOS6_42/config.xml b/testsuite/features/profiles/internal_nue/Kiwi/POS_Image-JeOS6_42/config.xml index a76c87140620..588107cead06 100644 --- a/testsuite/features/profiles/internal_nue/Kiwi/POS_Image-JeOS6_42/config.xml +++ b/testsuite/features/profiles/internal_nue/Kiwi/POS_Image-JeOS6_42/config.xml @@ -32,19 +32,19 @@ - + - + - + - + - + diff --git a/testsuite/features/profiles/internal_nue/Kiwi/POS_Image-JeOS6_head/config.xml b/testsuite/features/profiles/internal_nue/Kiwi/POS_Image-JeOS6_head/config.xml index 370dae36c5e3..23fcd5a5079d 100644 --- a/testsuite/features/profiles/internal_nue/Kiwi/POS_Image-JeOS6_head/config.xml +++ b/testsuite/features/profiles/internal_nue/Kiwi/POS_Image-JeOS6_head/config.xml @@ -32,19 +32,19 @@ - + - + - + - + - + diff --git a/testsuite/features/profiles/internal_nue/Kiwi/POS_Image-JeOS7_41/config.xml b/testsuite/features/profiles/internal_nue/Kiwi/POS_Image-JeOS7_41/config.xml index 07238d4c3a35..3c990d95ba6d 100644 --- a/testsuite/features/profiles/internal_nue/Kiwi/POS_Image-JeOS7_41/config.xml +++ b/testsuite/features/profiles/internal_nue/Kiwi/POS_Image-JeOS7_41/config.xml @@ -33,37 +33,37 @@ in that case, sync those repos in Uyuni, and add them to the activation key; finally, re-enable option '- -ignore-repos-used-for-build' in file 'kiwi-image-build.sls' --> - + - + - + - + - + - + - + - + - + - + - + diff --git a/testsuite/features/profiles/internal_nue/Kiwi/POS_Image-JeOS7_42/config.xml b/testsuite/features/profiles/internal_nue/Kiwi/POS_Image-JeOS7_42/config.xml index face8da86044..f38504d3f0cf 100644 --- a/testsuite/features/profiles/internal_nue/Kiwi/POS_Image-JeOS7_42/config.xml +++ b/testsuite/features/profiles/internal_nue/Kiwi/POS_Image-JeOS7_42/config.xml @@ -33,37 +33,37 @@ in that case, sync those repos in Uyuni, and add them to the activation key; finally, re-enable option '- -ignore-repos-used-for-build' in file 'kiwi-image-build.sls' --> - + - + - + - + - + - + - + - + - + - + - + diff --git a/testsuite/features/profiles/internal_nue/Kiwi/POS_Image-JeOS7_head/config.xml b/testsuite/features/profiles/internal_nue/Kiwi/POS_Image-JeOS7_head/config.xml index 5aa9d4173356..3a8f57acee1d 100644 --- a/testsuite/features/profiles/internal_nue/Kiwi/POS_Image-JeOS7_head/config.xml +++ b/testsuite/features/profiles/internal_nue/Kiwi/POS_Image-JeOS7_head/config.xml @@ -29,37 +29,37 @@ in that case, sync those repos in Uyuni, and add them to the activation key; finally, re-enable option '- -ignore-repos-used-for-build' in file 'kiwi-image-build.sls' --> - + - + - + - + - + - + - + - + - + - + - + diff --git a/testsuite/features/profiles/internal_nue/Kiwi/POS_Image-JeOS7_uyuni/config.xml b/testsuite/features/profiles/internal_nue/Kiwi/POS_Image-JeOS7_uyuni/config.xml index e0ba6eae46a0..feb64fc34f4a 100644 --- a/testsuite/features/profiles/internal_nue/Kiwi/POS_Image-JeOS7_uyuni/config.xml +++ b/testsuite/features/profiles/internal_nue/Kiwi/POS_Image-JeOS7_uyuni/config.xml @@ -29,34 +29,34 @@ in that case, sync those repos in Uyuni, and add them to the activation key; finally, re-enable option '- -ignore-repos-used-for-build' in file 'kiwi-image-build.sls' --> - + - + - + - + - + - + - + - + - + - + diff --git a/testsuite/features/profiles/internal_prv/Docker/authprofile/add_packages.sh b/testsuite/features/profiles/internal_prv/Docker/authprofile/add_packages.sh index 7eb91e4afe44..ad3ae25e0c00 100755 --- a/testsuite/features/profiles/internal_prv/Docker/authprofile/add_packages.sh +++ b/testsuite/features/profiles/internal_prv/Docker/authprofile/add_packages.sh @@ -2,7 +2,7 @@ set -e # temporarily disable non-working repo -zypper mr --disable TFake-RPM-SUSE-Channel || : +zypper mr --disable Fake-RPM-SUSE-Channel || : zypper --non-interactive --gpg-auto-import-keys ref # install, configure, and start avahi diff --git a/testsuite/features/profiles/internal_prv/Docker/authprofile/sles15sp4.repo b/testsuite/features/profiles/internal_prv/Docker/authprofile/sles15sp4.repo index ecbc03e16841..3122f4aeac6a 100644 --- a/testsuite/features/profiles/internal_prv/Docker/authprofile/sles15sp4.repo +++ b/testsuite/features/profiles/internal_prv/Docker/authprofile/sles15sp4.repo @@ -2,5 +2,5 @@ name=sles15sp4 enabled=1 autorefresh=0 -baseurl=http://minima-mirror.mgr.prv.suse.net/SUSE/Products/SLE-Module-Basesystem/15-SP4/x86_64/product/ +baseurl=http://minima-mirror-ci-bv.mgr.prv.suse.net/SUSE/Products/SLE-Module-Basesystem/15-SP4/x86_64/product/ type=rpm-md diff --git a/testsuite/features/profiles/internal_prv/Docker/serverhost/sles15sp4.repo b/testsuite/features/profiles/internal_prv/Docker/serverhost/sles15sp4.repo index ecbc03e16841..3122f4aeac6a 100644 --- a/testsuite/features/profiles/internal_prv/Docker/serverhost/sles15sp4.repo +++ b/testsuite/features/profiles/internal_prv/Docker/serverhost/sles15sp4.repo @@ -2,5 +2,5 @@ name=sles15sp4 enabled=1 autorefresh=0 -baseurl=http://minima-mirror.mgr.prv.suse.net/SUSE/Products/SLE-Module-Basesystem/15-SP4/x86_64/product/ +baseurl=http://minima-mirror-ci-bv.mgr.prv.suse.net/SUSE/Products/SLE-Module-Basesystem/15-SP4/x86_64/product/ type=rpm-md diff --git a/testsuite/features/profiles/internal_prv/Docker/sles15sp4.repo b/testsuite/features/profiles/internal_prv/Docker/sles15sp4.repo index ecbc03e16841..3122f4aeac6a 100644 --- a/testsuite/features/profiles/internal_prv/Docker/sles15sp4.repo +++ b/testsuite/features/profiles/internal_prv/Docker/sles15sp4.repo @@ -2,5 +2,5 @@ name=sles15sp4 enabled=1 autorefresh=0 -baseurl=http://minima-mirror.mgr.prv.suse.net/SUSE/Products/SLE-Module-Basesystem/15-SP4/x86_64/product/ +baseurl=http://minima-mirror-ci-bv.mgr.prv.suse.net/SUSE/Products/SLE-Module-Basesystem/15-SP4/x86_64/product/ type=rpm-md diff --git a/testsuite/features/profiles/internal_prv/Kiwi/POS_Image-JeOS6_42/config.xml b/testsuite/features/profiles/internal_prv/Kiwi/POS_Image-JeOS6_42/config.xml index f224dc2f77ee..0f3e1bbef89d 100644 --- a/testsuite/features/profiles/internal_prv/Kiwi/POS_Image-JeOS6_42/config.xml +++ b/testsuite/features/profiles/internal_prv/Kiwi/POS_Image-JeOS6_42/config.xml @@ -32,19 +32,19 @@ - + - + - + - + - + diff --git a/testsuite/features/profiles/internal_prv/Kiwi/POS_Image-JeOS6_head/config.xml b/testsuite/features/profiles/internal_prv/Kiwi/POS_Image-JeOS6_head/config.xml index bc079c84ac34..b6f1eb862007 100644 --- a/testsuite/features/profiles/internal_prv/Kiwi/POS_Image-JeOS6_head/config.xml +++ b/testsuite/features/profiles/internal_prv/Kiwi/POS_Image-JeOS6_head/config.xml @@ -32,19 +32,19 @@ - + - + - + - + - + diff --git a/testsuite/features/profiles/internal_prv/Kiwi/POS_Image-JeOS7_41/config.xml b/testsuite/features/profiles/internal_prv/Kiwi/POS_Image-JeOS7_41/config.xml index 0b5b84a30f26..7ef782c5be1e 100644 --- a/testsuite/features/profiles/internal_prv/Kiwi/POS_Image-JeOS7_41/config.xml +++ b/testsuite/features/profiles/internal_prv/Kiwi/POS_Image-JeOS7_41/config.xml @@ -33,37 +33,37 @@ in that case, sync those repos in Uyuni, and add them to the activation key; finally, re-enable option '- -ignore-repos-used-for-build' in file 'kiwi-image-build.sls' --> - + - + - + - + - + - + - + - + - + - + - + diff --git a/testsuite/features/profiles/internal_prv/Kiwi/POS_Image-JeOS7_42/config.xml b/testsuite/features/profiles/internal_prv/Kiwi/POS_Image-JeOS7_42/config.xml index 384ce7825107..16fbd8ae83f7 100644 --- a/testsuite/features/profiles/internal_prv/Kiwi/POS_Image-JeOS7_42/config.xml +++ b/testsuite/features/profiles/internal_prv/Kiwi/POS_Image-JeOS7_42/config.xml @@ -33,37 +33,37 @@ in that case, sync those repos in Uyuni, and add them to the activation key; finally, re-enable option '- -ignore-repos-used-for-build' in file 'kiwi-image-build.sls' --> - + - + - + - + - + - + - + - + - + - + - + diff --git a/testsuite/features/profiles/internal_prv/Kiwi/POS_Image-JeOS7_head/config.xml b/testsuite/features/profiles/internal_prv/Kiwi/POS_Image-JeOS7_head/config.xml index a490b5965279..bfbd4ddac999 100644 --- a/testsuite/features/profiles/internal_prv/Kiwi/POS_Image-JeOS7_head/config.xml +++ b/testsuite/features/profiles/internal_prv/Kiwi/POS_Image-JeOS7_head/config.xml @@ -29,37 +29,37 @@ in that case, sync those repos in Uyuni, and add them to the activation key; finally, re-enable option '- -ignore-repos-used-for-build' in file 'kiwi-image-build.sls' --> - + - + - + - + - + - + - + - + - + - + - + diff --git a/testsuite/features/profiles/internal_prv/Kiwi/POS_Image-JeOS7_uyuni/config.xml b/testsuite/features/profiles/internal_prv/Kiwi/POS_Image-JeOS7_uyuni/config.xml index 30b08c7305a1..8078c513db85 100644 --- a/testsuite/features/profiles/internal_prv/Kiwi/POS_Image-JeOS7_uyuni/config.xml +++ b/testsuite/features/profiles/internal_prv/Kiwi/POS_Image-JeOS7_uyuni/config.xml @@ -29,34 +29,34 @@ in that case, sync those repos in Uyuni, and add them to the activation key; finally, re-enable option '- -ignore-repos-used-for-build' in file 'kiwi-image-build.sls' --> - + - + - + - + - + - + - + - + - + - + diff --git a/testsuite/features/core/srv_create_repository.feature b/testsuite/features/reposync/srv_create_repository.feature similarity index 100% rename from testsuite/features/core/srv_create_repository.feature rename to testsuite/features/reposync/srv_create_repository.feature diff --git a/testsuite/features/reposync/srv_enable_sync_products.feature b/testsuite/features/reposync/srv_enable_sync_products.feature index 4176f44b41f8..f264c30c906f 100644 --- a/testsuite/features/reposync/srv_enable_sync_products.feature +++ b/testsuite/features/reposync/srv_enable_sync_products.feature @@ -6,10 +6,17 @@ Feature: Be able to list available products and enable them As root user I want to be able to list available products and enable them +@susemanager Scenario: List available products When I execute mgr-sync "list products" with user "admin" and password "admin" Then I should get "[ ] SUSE Linux Enterprise Desktop 15 SP3 x86_64" +@uyuni + Scenario: List available products + When I execute mgr-sync "list products" with user "admin" and password "admin" + Then I should get "[ ] openSUSE Leap 15.4 x86_64" + +@susemanager Scenario: List all available products When I execute mgr-sync "list products -e" Then I should get "[ ] SUSE Linux Enterprise Desktop 15 SP3 x86_64" diff --git a/testsuite/features/reposync/srv_sync_channels.feature b/testsuite/features/reposync/srv_sync_channels.feature index d8360f5b0978..f2de2353061b 100644 --- a/testsuite/features/reposync/srv_sync_channels.feature +++ b/testsuite/features/reposync/srv_sync_channels.feature @@ -7,6 +7,7 @@ Feature: Be able to list available channels and enable them As root user I want to be able to list available channels and enable them +@susemanager Scenario: List available channels # Order matters here, refresh first When I refresh SCC @@ -15,6 +16,7 @@ Feature: Be able to list available channels and enable them And I should get " [ ] SLE-Product-SLES15-SP4-Updates for x86_64 SUSE Linux Enterprise Server 15 SP4 x86_64 [sle-product-sles15-sp4-updates-x86_64]" And I should get " [ ] SLE15-SP4-Installer-Updates for x86_64 SUSE Linux Enterprise Server 15 SP4 x86_64 [sle15-sp4-installer-updates-x86_64]" +@susemanager Scenario: List available mandatory channels When I execute mgr-sync "list channels -e --no-optional" Then I should get "[ ] SLE-Product-SLES15-SP4-Pool for x86_64 SUSE Linux Enterprise Server 15 SP4 x86_64 [sle-product-sles15-sp4-pool-x86_64]" @@ -35,6 +37,7 @@ Feature: Be able to list available channels and enable them And I should get " [ ] (R) SUSE Manager Client Tools for RHEL, Liberty and Clones 7 x86_64" And I should get " [ ] (R) SUSE Manager Client Tools for SLE 15 x86_64" +@susemanager Scenario: List products with filter When I execute mgr-sync "list products --expand --filter x86_64" Then I should get "[ ] SUSE Linux Enterprise Server 15 SP4 x86_64" diff --git a/testsuite/features/reposync/srv_sync_products.feature b/testsuite/features/reposync/srv_sync_products.feature index 2e3062624d5b..b9e45c7e4d73 100644 --- a/testsuite/features/reposync/srv_sync_products.feature +++ b/testsuite/features/reposync/srv_sync_products.feature @@ -16,12 +16,13 @@ Feature: Synchronize products in the products page of the Setup Wizard Scenario: Use the products and architecture filters When I follow the left menu "Admin > Setup Wizard > Products" And I wait until I do not see "Loading" text - And I enter "RHEL" as the filtered product description + And I enter "RHEL or SLES ES" as the filtered product description Then I should see a "RHEL or SLES ES or CentOS 8 Base" text When I select "x86_64" in the dropdown list of the architecture filter Then I should see a "RHEL or SLES ES or CentOS 8 Base" text @scc_credentials +@susemanager Scenario: View the channels list in the products page When I follow the left menu "Admin > Setup Wizard > Products" And I wait until I do not see "Loading" text @@ -61,33 +62,36 @@ Feature: Synchronize products in the products page of the Setup Wizard And I wait until I see "SUSE Linux Enterprise Server 15 SP4 x86_64" product has been added Then the SLE15 SP4 product should be added -@scc_credentials @uyuni - Scenario: Add SLES 15 SP4 product with recommended sub-products + Scenario: Add openSUSE Leap 15.4 product, including Uyuni Client Tools + When I use spacewalk-common-channel to add channel "opensuse_leap15_4 opensuse_leap15_4-non-oss opensuse_leap15_4-non-oss-updates opensuse_leap15_4-updates opensuse_leap15_4-backports-updates opensuse_leap15_4-sle-updates uyuni-proxy-devel-leap opensuse_leap15_4-uyuni-client" with arch "x86_64" + +@proxy +@susemanager + Scenario: Add SUSE Manager Proxy 4.3 When I follow the left menu "Admin > Setup Wizard > Products" And I wait until I do not see "Loading" text - And I enter "SUSE Linux Enterprise Server 15 SP4" as the filtered product description - And I wait until I see "SUSE Linux Enterprise Server 15 SP4 x86_64" text - And I open the sub-list of the product "SUSE Linux Enterprise Server 15 SP4 x86_64" - And I open the sub-list of the product "Basesystem Module 15 SP4 x86_64" - And I open the sub-list of the product "Desktop Applications Module 15 SP4 x86_64" - Then I should see that the "Basesystem Module 15 SP4 x86_64" product is "recommended" - And I should see that the "Server Applications Module 15 SP4 x86_64" product is "recommended" - When I select "SUSE Linux Enterprise Server 15 SP4 x86_64" as a product - Then I should see the "SUSE Linux Enterprise Server 15 SP4 x86_64" selected - And I should see the "Basesystem Module 15 SP4 x86_64" selected - And I should see the "Server Applications Module 15 SP4 x86_64" selected - When I select "Desktop Applications Module 15 SP4 x86_64" as a product - And I select "Development Tools Module 15 SP4 x86_64" as a product - Then I should see the "Desktop Applications Module 15 SP4 x86_64" selected - And I should see the "Development Tools Module 15 SP4 x86_64" selected - When I select "Containers Module 15 SP4 x86_64" as a product - Then I should see the "Containers Module 15 SP4 x86_64" selected + And I enter "SUSE Manager Proxy 4.3" as the filtered product description + And I select "SUSE Manager Proxy 4.3 x86_64" as a product + Then I should see the "SUSE Manager Proxy 4.3 x86_64" selected When I click the Add Product button - And I wait until I see "SUSE Linux Enterprise Server 15 SP4 x86_64" product has been added - Then the SLE15 SP4 product should be added + And I wait until I see "Selected channels/products were scheduled successfully for syncing." text + And I wait until I see "SUSE Manager Proxy 4.3 x86_64" product has been added + +@proxy +@susemanager + Scenario: Add SUSE Manager Retail Branch Server + When I follow the left menu "Admin > Setup Wizard > Products" + And I wait until I do not see "Loading" text + And I enter "SUSE Manager Retail Branch Server 4.3" as the filtered product description + And I select "SUSE Manager Retail Branch Server 4.3 x86_64" as a product + Then I should see the "SUSE Manager Retail Branch Server 4.3 x86_64" selected + When I click the Add Product button + And I wait until I see "Selected channels/products were scheduled successfully for syncing." text + And I wait until I see "SUSE Manager Retail Branch Server 4.3 x86_64" product has been added @scc_credentials +@susemanager Scenario: Installer update channels got enabled when products were added When I execute mgr-sync "list channels" with user "admin" and password "admin" And I should get " [I] SLE15-SP4-Installer-Updates for x86_64 SUSE Linux Enterprise Server 15 SP4 x86_64 [sle15-sp4-installer-updates-x86_64]" diff --git a/testsuite/features/reposync/srv_wait_for_reposync.feature b/testsuite/features/reposync/srv_wait_for_reposync.feature index 053c4b402d1f..c85c86e77fe9 100644 --- a/testsuite/features/reposync/srv_wait_for_reposync.feature +++ b/testsuite/features/reposync/srv_wait_for_reposync.feature @@ -1,4 +1,4 @@ -# Copyright (c) 2019-2022 SUSE LLC +# Copyright (c) 2019-2023 SUSE LLC # Licensed under the terms of the MIT license. Feature: Wait for reposync activity to finish in CI context @@ -17,8 +17,8 @@ Feature: Wait for reposync activity to finish in CI context When I kill all running spacewalk-repo-sync, excepted the ones needed to bootstrap @uyuni - Scenario: Enable SLES15 SP4 Uyuni client tools for creating bootstrap repositories - When I use spacewalk-common-channel to add channel "sle-product-sles15-sp4-pool-x86_64 sles15-sp4-uyuni-client" with arch "x86_64" + Scenario: Sync openSUSE Leap 15.4 product, including Uyuni Client Tools + When I call spacewalk-repo-sync to sync the parent channel "opensuse_leap15_4-x86_64" Scenario: Wait until all synchronized channels have finished When I wait until all synchronized channels have finished diff --git a/testsuite/features/secondary/allcli_overview_systems_details.feature b/testsuite/features/secondary/allcli_overview_systems_details.feature index 824896707ab7..8ed7bdcc31a5 100644 --- a/testsuite/features/secondary/allcli_overview_systems_details.feature +++ b/testsuite/features/secondary/allcli_overview_systems_details.feature @@ -8,11 +8,12 @@ Feature: The system details of each minion and client provides an overview of th Given I am authorized for the "Admin" section @sle_minion Scenario: SLE minion hardware refresh - Given I am on the Systems overview page of this "sle_minion" + Given I navigate to the Systems overview page of this "sle_minion" When I follow "Hardware" And I click on "Schedule Hardware Refresh" Then I should see a "You have successfully scheduled a hardware profile refresh" text - And I wait until event "Hardware List Refresh scheduled by admin" is completed + When I wait until event "Hardware List Refresh scheduled by admin" is completed + And I wait until there is no Salt job calling the module "hardware.profileupdate" on "sle_minion" @sle_minion Scenario: Minion grains are displayed correctly on the details page @@ -25,7 +26,7 @@ Feature: The system details of each minion and client provides an overview of th And the system ID for "sle_minion" should be correct And the system name for "sle_minion" should be correct And the uptime for "sle_minion" should be correct - And I should see several text fields for "sle_minion" + And I should see several text fields @rhlike_minion Scenario: Red Hat-like minion hardware refresh @@ -33,7 +34,8 @@ Feature: The system details of each minion and client provides an overview of th When I follow "Hardware" And I click on "Schedule Hardware Refresh" Then I should see a "You have successfully scheduled a hardware profile refresh" text - And I wait until event "Hardware List Refresh scheduled by admin" is completed + When I wait until event "Hardware List Refresh scheduled by admin" is completed + And I wait until there is no Salt job calling the module "hardware.profileupdate" on "rhlike_minion" @rhlike_minion Scenario: Red Hat-like minion grains are displayed correctly on the details page @@ -46,7 +48,7 @@ Feature: The system details of each minion and client provides an overview of th And the system ID for "rhlike_minion" should be correct And the system name for "rhlike_minion" should be correct And the uptime for "rhlike_minion" should be correct - And I should see several text fields for "rhlike_minion" + And I should see several text fields @deblike_minion Scenario: Debian-like minion hardware refresh @@ -54,7 +56,8 @@ Feature: The system details of each minion and client provides an overview of th When I follow "Hardware" And I click on "Schedule Hardware Refresh" Then I should see a "You have successfully scheduled a hardware profile refresh" text - And I wait until event "Hardware List Refresh scheduled by admin" is completed + When I wait until event "Hardware List Refresh scheduled by admin" is completed + And I wait until there is no Salt job calling the module "hardware.profileupdate" on "deblike_minion" @deblike_minion Scenario: Debian-like minion grains are displayed correctly on the details page @@ -67,7 +70,7 @@ Feature: The system details of each minion and client provides an overview of th And the system ID for "deblike_minion" should be correct And the system name for "deblike_minion" should be correct And the uptime for "deblike_minion" should be correct - And I should see several text fields for "deblike_minion" + And I should see several text fields @ssh_minion Scenario: SSH-managed minion hardware refresh @@ -77,7 +80,7 @@ Feature: The system details of each minion and client provides an overview of th Then I should see a "You have successfully scheduled a hardware profile refresh" text And I wait until event "Hardware List Refresh scheduled by admin" is completed -@ssh_minion + @ssh_minion Scenario: SSH-managed minion grains are displayed correctly on the details page Given I am on the Systems overview page of this "ssh_minion" Then the hostname for "ssh_minion" should be correct @@ -88,4 +91,4 @@ Feature: The system details of each minion and client provides an overview of th And the system ID for "ssh_minion" should be correct And the system name for "ssh_minion" should be correct And the uptime for "ssh_minion" should be correct - And I should see several text fields for "ssh_minion" + And I should see several text fields diff --git a/testsuite/features/secondary/allcli_system_group.feature b/testsuite/features/secondary/allcli_system_group.feature index 78e748ded1ec..109e26cf7f59 100644 --- a/testsuite/features/secondary/allcli_system_group.feature +++ b/testsuite/features/secondary/allcli_system_group.feature @@ -60,9 +60,13 @@ Feature: Manage a group of systems And I should see "rhlike_minion" as link And I should see "sle_minion" as link - Scenario: Install some formula on the server - When I manually install the "locale" formula on the server - And I synchronize all Salt dynamic modules on "sle_minion" + #container already has locale formula installed + @skip_if_container_server + Scenario: Install the locale formula package on the server + When I manually install the "locale" formula on the server + + Scenario: I synchronize all Salt dynamic modules on "sle_minion" + When I synchronize all Salt dynamic modules on "sle_minion" Scenario: New formula page is rendered for the system group When I follow the left menu "Systems > System Groups" @@ -101,6 +105,7 @@ Feature: Manage a group of systems # Red Hat-like minion is intentionally not removed from group + @skip_if_container_server Scenario: Cleanup: uninstall formula from the server When I manually uninstall the "locale" formula from the server diff --git a/testsuite/features/secondary/buildhost_docker_auth_registry.feature b/testsuite/features/secondary/buildhost_docker_auth_registry.feature index 343ae8614b6e..889c6f69b8aa 100644 --- a/testsuite/features/secondary/buildhost_docker_auth_registry.feature +++ b/testsuite/features/secondary/buildhost_docker_auth_registry.feature @@ -41,6 +41,7 @@ Feature: Build image with authenticated registry # Verify the status of images in the authenticated image store When I wait at most 600 seconds until image "auth_registry_profile" with version "latest" is built successfully via API And I wait at most 300 seconds until image "auth_registry_profile" with version "latest" is inspected successfully via API + And I wait until no Salt job is running on "build_host" And I refresh the page Then table row for "auth_registry_profile" should contain "1" And the list of packages of image "auth_registry_profile" with version "latest" is not empty diff --git a/testsuite/features/secondary/buildhost_docker_build_image.feature b/testsuite/features/secondary/buildhost_docker_build_image.feature index 754f82807013..8456a4215933 100644 --- a/testsuite/features/secondary/buildhost_docker_build_image.feature +++ b/testsuite/features/secondary/buildhost_docker_build_image.feature @@ -83,36 +83,42 @@ Feature: Build container images And I wait at most 600 seconds until image "suse_real_key" with version "latest" is built successfully via API And I wait at most 300 seconds until image "suse_real_key" with version "latest" is inspected successfully via API Then the list of packages of image "suse_real_key" with version "latest" is not empty + When I wait until no Salt job is running on "build_host" Scenario: Build suse_key images with different versions When I schedule the build of image "suse_key" with version "Latest_key-activation1" via API calls And I wait at most 600 seconds until image "suse_key" with version "Latest_key-activation1" is built successfully via API And I wait at most 300 seconds until image "suse_key" with version "Latest_key-activation1" is inspected successfully via API Then the list of packages of image "suse_key" with version "Latest_key-activation1" is not empty - + When I wait until no Salt job is running on "build_host" + Scenario: Build suse_simple image with different versions When I schedule the build of image "suse_simple" with version "Latest_simple" via API calls And I wait at most 600 seconds until image "suse_simple" with version "Latest_simple" is built successfully via API And I wait at most 300 seconds until image "suse_simple" with version "Latest_simple" is inspected successfully via API Then the list of packages of image "suse_simple" with version "Latest_simple" is not empty + When I wait until no Salt job is running on "build_host" Scenario: Delete image via API calls When I delete the image "suse_key" with version "Latest_key-activation1" via API calls And I delete the image "suse_simple" with version "Latest_simple" via API calls Then the image "suse_simple" with version "Latest_key-activation1" doesn't exist via API calls And the image "suse_simple" with version "Latest_simple" doesn't exist via API calls + When I wait until no Salt job is running on "build_host" Scenario: Rebuild suse_simple image When I schedule the build of image "suse_simple" with version "Latest_simple" via API calls And I wait at most 600 seconds until image "suse_simple" with version "Latest_simple" is built successfully via API And I wait at most 300 seconds until image "suse_simple" with version "Latest_simple" is inspected successfully via API Then the list of packages of image "suse_simple" with version "Latest_simple" is not empty + When I wait until no Salt job is running on "build_host" Scenario: Rebuild suse_key image When I schedule the build of image "suse_key" with version "Latest_key-activation1" via API calls And I wait at most 600 seconds until image "suse_key" with version "Latest_key-activation1" is built successfully via API And I wait at most 300 seconds until image "suse_key" with version "Latest_key-activation1" is inspected successfully via API Then the list of packages of image "suse_key" with version "Latest_key-activation1" is not empty + When I wait until no Salt job is running on "build_host" Scenario: Build an image via the GUI When I follow the left menu "Images > Build" @@ -120,6 +126,7 @@ Feature: Build container images And I enter "GUI_BUILT_IMAGE" as "version" And I select the hostname of "build_host" from "buildHostId" And I click on "submit-btn" + And I wait until no Salt job is running on "build_host" Then I wait until I see "GUI_BUILT_IMAGE" text And I wait at most 600 seconds until image "suse_real_key" with version "GUI_BUILT_IMAGE" is built successfully via API And I wait at most 300 seconds until image "suse_real_key" with version "GUI_BUILT_IMAGE" is inspected successfully via API @@ -131,6 +138,7 @@ Feature: Build container images And I enter "GUI_DOCKERADMIN" as "version" And I select the hostname of "build_host" from "buildHostId" And I click on "submit-btn" + And I wait until no Salt job is running on "build_host" Then I wait until I see "GUI_DOCKERADMIN" text And I wait at most 600 seconds until image "suse_real_key" with version "GUI_DOCKERADMIN" is built successfully via API And I wait at most 300 seconds until image "suse_real_key" with version "GUI_DOCKERADMIN" is inspected successfully via API diff --git a/testsuite/features/secondary/buildhost_osimage_build_image.feature b/testsuite/features/secondary/buildhost_osimage_build_image.feature index 0b347fe30c57..2831f3fb4df7 100644 --- a/testsuite/features/secondary/buildhost_osimage_build_image.feature +++ b/testsuite/features/secondary/buildhost_osimage_build_image.feature @@ -29,6 +29,7 @@ Feature: Build OS images And I select "1-SUSE-KEY-x86_64" from "activationKey" And I enter the image filename for "pxeboot_minion" relative to profiles as "path" And I click on "create-btn" + And I wait until no Salt job is running on "build_host" # WORKAROUND # Remove as soon as the issue is fixed @@ -50,6 +51,7 @@ Feature: Build OS images Then I should see a "[OS Image Build Host]" text When I wait until the image build "suse_os_image" is completed And I wait until the image inspection for "pxeboot_minion" is completed + And I wait until no Salt job is running on "build_host" And I am on the image store of the Kiwi image for organization "1" Then I should see the name of the image for "pxeboot_minion" diff --git a/testsuite/features/secondary/min_activationkey.feature b/testsuite/features/secondary/min_activationkey.feature index 136638b1d5b5..6db4ce4bf6d4 100644 --- a/testsuite/features/secondary/min_activationkey.feature +++ b/testsuite/features/secondary/min_activationkey.feature @@ -70,7 +70,7 @@ Feature: Bootstrap a Salt minion via the GUI with an activation key And I select "1-MINION-TEST" from "activationKeys" And I select the hostname of "proxy" from "proxies" if present And I click on "Bootstrap" - And I wait until I see "Successfully bootstrapped host!" text + And I wait until I see "Bootstrap process initiated." text And I follow the left menu "Systems > System List > All" And I wait until I see the name of "sle_minion", refreshing the page And I wait until onboarding is completed for "sle_minion" diff --git a/testsuite/features/secondary/min_baremetal_discovery.feature b/testsuite/features/secondary/min_baremetal_discovery.feature index 8ba15a7a0e85..17b6cc660695 100644 --- a/testsuite/features/secondary/min_baremetal_discovery.feature +++ b/testsuite/features/secondary/min_baremetal_discovery.feature @@ -147,7 +147,7 @@ Feature: Bare metal discovery And I select "1-SUSE-KEY-x86_64" from "activationKeys" And I select the hostname of "proxy" from "proxies" if present And I click on "Bootstrap" - And I wait until I see "Successfully bootstrapped host!" text + And I wait until I see "Bootstrap process initiated." text Scenario: Cleanup: remove remaining systems from SSM after bare metal tests When I follow "clear-ssm" diff --git a/testsuite/features/secondary/min_bootstrap_reactivation.feature b/testsuite/features/secondary/min_bootstrap_reactivation.feature index 7cc6ea75a153..3baf8f8e8eb4 100644 --- a/testsuite/features/secondary/min_bootstrap_reactivation.feature +++ b/testsuite/features/secondary/min_bootstrap_reactivation.feature @@ -53,7 +53,7 @@ Feature: Bootstrapping with reactivation key And I enter the reactivation key of "sle_minion" And I select "1-SUSE-KEY-x86_64" from "activationKeys" And I click on "Bootstrap" - And I wait until I see "Successfully bootstrapped host!" text + And I wait until I see "Bootstrap process initiated." text And I follow the left menu "Systems > System List > All" And I wait until I see the name of "sle_minion", refreshing the page And I wait until onboarding is completed for "sle_minion" @@ -84,7 +84,7 @@ Feature: Bootstrapping with reactivation key And I select "1-SUSE-KEY-x86_64" from "activationKeys" And I select the hostname of "proxy" from "proxies" if present And I click on "Bootstrap" - And I wait until I see "Successfully bootstrapped host!" text + And I wait until I see "Bootstrap process initiated." text And I follow the left menu "Systems > System List > All" And I wait until I see the name of "sle_minion", refreshing the page And I wait until onboarding is completed for "sle_minion" diff --git a/testsuite/features/secondary/min_bootstrap_ssh_key.feature b/testsuite/features/secondary/min_bootstrap_ssh_key.feature index 094e36377d5a..f5b545846107 100644 --- a/testsuite/features/secondary/min_bootstrap_ssh_key.feature +++ b/testsuite/features/secondary/min_bootstrap_ssh_key.feature @@ -55,7 +55,7 @@ Feature: Bootstrap a Salt minion via the GUI using SSH key And I enter "linux" as "privKeyPwd" And I select the hostname of "proxy" from "proxies" if present And I click on "Bootstrap" - And I wait until I see "Successfully bootstrapped host!" text + And I wait until I see "Bootstrap process initiated." text Scenario: Check new minion bootstrapped with SSH key in System Overview page When I follow the left menu "Salt > Keys" diff --git a/testsuite/features/secondary/min_check_patches_install.feature b/testsuite/features/secondary/min_check_patches_install.feature index 4102ee2b9b0b..4c9018635851 100644 --- a/testsuite/features/secondary/min_check_patches_install.feature +++ b/testsuite/features/secondary/min_check_patches_install.feature @@ -22,7 +22,8 @@ Feature: Display patches Scenario: Check all patches exist When I follow the left menu "Patches > Patch List > Relevant" Then I should see an update in the list - And I should see a "virgo-dummy-3456" link + When I wait until I see "virgo-dummy" text, refreshing the page + Then I should see a "virgo-dummy-3456" link Scenario: Check SLES release 6789 patches When I follow the left menu "Patches > Patch List > Relevant" diff --git a/testsuite/features/secondary/min_deblike_ssh.feature b/testsuite/features/secondary/min_deblike_ssh.feature index 670b3473a3f6..a7136e18347f 100644 --- a/testsuite/features/secondary/min_deblike_ssh.feature +++ b/testsuite/features/secondary/min_deblike_ssh.feature @@ -38,7 +38,7 @@ Feature: Bootstrap a SSH-managed Debian-like minion and do some basic operations And I enter "linux" as "password" And I select the hostname of "proxy" from "proxies" if present And I click on "Bootstrap" - And I wait until I see "Successfully bootstrapped host!" text + And I wait until I see "Bootstrap process initiated." text And I follow the left menu "Systems > System List > All" And I wait until I see the name of "deblike_minion", refreshing the page And I wait until onboarding is completed for "deblike_minion" @@ -107,7 +107,7 @@ Feature: Bootstrap a SSH-managed Debian-like minion and do some basic operations And I enter "linux" as "password" And I select the hostname of "proxy" from "proxies" if present And I click on "Bootstrap" - And I wait until I see "Successfully bootstrapped host!" text + And I wait until I see "Bootstrap process initiated." text And I follow the left menu "Systems > System List > All" And I wait until I see the name of "deblike_minion", refreshing the page And I wait until onboarding is completed for "deblike_minion" diff --git a/testsuite/features/secondary/min_move_from_and_to_proxy.feature b/testsuite/features/secondary/min_move_from_and_to_proxy.feature index d08ec4685e3b..a91c34fc0ed3 100644 --- a/testsuite/features/secondary/min_move_from_and_to_proxy.feature +++ b/testsuite/features/secondary/min_move_from_and_to_proxy.feature @@ -31,7 +31,7 @@ Feature: Move a minion from a proxy to direct connection And I select "1-SUSE-KEY-x86_64" from "activationKeys" And I select the hostname of "proxy" from "proxies" if present And I click on "Bootstrap" - And I wait until I see "Successfully bootstrapped host!" text + And I wait until I see "Bootstrap process initiated." text And I wait until onboarding is completed for "sle_minion" Scenario: Check the new bootstrapped minion in System Overview page diff --git a/testsuite/features/secondary/min_project_lotus.feature b/testsuite/features/secondary/min_project_lotus.feature index abe6e162bb7a..559c10fb13f7 100644 --- a/testsuite/features/secondary/min_project_lotus.feature +++ b/testsuite/features/secondary/min_project_lotus.feature @@ -126,6 +126,6 @@ Feature: Project Lotus Scenario: Cleanup: Remove custom repository for PTFs When I follow the left menu "Software > Manage > Repositories" And I follow "sles15sp4_ptf_repo" - And I follow this "Delete Repository" link + And I follow "Delete Repository" And I click on "Delete Repository" Then I should see a "Repository deleted successfully" text diff --git a/testsuite/features/secondary/min_rhlike_ssh.feature b/testsuite/features/secondary/min_rhlike_ssh.feature index db1759e6130c..93860b6a6ce6 100644 --- a/testsuite/features/secondary/min_rhlike_ssh.feature +++ b/testsuite/features/secondary/min_rhlike_ssh.feature @@ -37,7 +37,7 @@ Feature: Bootstrap a SSH-managed Red Hat-like minion and do some basic operation And I enter "linux" as "password" And I select the hostname of "proxy" from "proxies" if present And I click on "Bootstrap" - And I wait until I see "Successfully bootstrapped host!" text + And I wait until I see "Bootstrap process initiated." text And I follow the left menu "Systems > System List > All" And I wait until I see the name of "rhlike_minion", refreshing the page And I wait until onboarding is completed for "rhlike_minion" @@ -107,7 +107,7 @@ Feature: Bootstrap a SSH-managed Red Hat-like minion and do some basic operation And I enter "linux" as "password" And I select the hostname of "proxy" from "proxies" if present And I click on "Bootstrap" - And I wait until I see "Successfully bootstrapped host!" text + And I wait until I see "Bootstrap process initiated." text And I follow the left menu "Systems > System List > All" And I wait until I see the name of "rhlike_minion", refreshing the page And I wait until onboarding is completed for "rhlike_minion" diff --git a/testsuite/features/secondary/min_salt_formulas.feature b/testsuite/features/secondary/min_salt_formulas.feature index 646adcee0577..d5177dcc453e 100644 --- a/testsuite/features/secondary/min_salt_formulas.feature +++ b/testsuite/features/secondary/min_salt_formulas.feature @@ -11,9 +11,13 @@ Feature: Use salt formulas Scenario: Log in as admin user Given I am authorized for the "Admin" section + #container already has locale formula installed + @skip_if_container_server Scenario: Install the locale formula package on the server When I manually install the "locale" formula on the server - And I synchronize all Salt dynamic modules on "sle_minion" + + Scenario: I synchronize all Salt dynamic modules on "sle_minion" + When I synchronize all Salt dynamic modules on "sle_minion" Scenario: The new formula appears on the server When I follow the left menu "Salt > Formula Catalog" @@ -161,6 +165,7 @@ Feature: Use salt formulas And the keymap on "sle_minion" should be "us" And the language on "sle_minion" should be "en_US.UTF-8" + @skip_if_container_server Scenario: Cleanup: uninstall formula package from the server When I manually uninstall the "locale" formula from the server diff --git a/testsuite/features/secondary/min_salt_formulas_advanced.feature b/testsuite/features/secondary/min_salt_formulas_advanced.feature index d8794257f593..b390639c80b2 100644 --- a/testsuite/features/secondary/min_salt_formulas_advanced.feature +++ b/testsuite/features/secondary/min_salt_formulas_advanced.feature @@ -14,6 +14,7 @@ Feature: Use advanced features of Salt formulas When I install "form.yml" to custom formula metadata directory "testform" And I install "metadata.yml" to custom formula metadata directory "testform" When I follow the left menu "Salt > Formula Catalog" + And I enter "testform" as the filtered formula name Then I should see a "testform" text Scenario: Assign test formula to minion via group formula diff --git a/testsuite/features/secondary/min_salt_mgrcompat_state.feature b/testsuite/features/secondary/min_salt_mgrcompat_state.feature index 4322d2f04969..069c142b7d6d 100644 --- a/testsuite/features/secondary/min_salt_mgrcompat_state.feature +++ b/testsuite/features/secondary/min_salt_mgrcompat_state.feature @@ -27,7 +27,8 @@ Feature: Verify that Salt mgrcompat state works when the new module.run syntax i When I follow "Hardware" And I click on "Schedule Hardware Refresh" Then I should see a "You have successfully scheduled a hardware profile refresh" text - And I wait until event "Hardware List Refresh scheduled by admin" is completed + When I wait until event "Hardware List Refresh scheduled by admin" is completed + And I wait until there is no Salt job calling the module "hardware.profileupdate" on "sle_minion" Scenario: Remove saltutil grain and mgrcompat module from minion and schedule Hardware Refresh Given I remove "minion/extmods/states/mgrcompat.py" from salt cache on "sle_minion" @@ -38,7 +39,8 @@ Feature: Verify that Salt mgrcompat state works when the new module.run syntax i When I follow "Hardware" And I click on "Schedule Hardware Refresh" Then I should see a "You have successfully scheduled a hardware profile refresh" text - And I wait until event "Hardware List Refresh scheduled by admin" is completed + When I wait until event "Hardware List Refresh scheduled by admin" is completed + And I wait until there is no Salt job calling the module "hardware.profileupdate" on "sle_minion" Scenario: Delete SLES minion system profile before mgrcompat test Given I am on the Systems overview page of this "sle_minion" @@ -59,7 +61,7 @@ Feature: Verify that Salt mgrcompat state works when the new module.run syntax i And I enter "linux" as "password" And I select the hostname of "proxy" from "proxies" if present And I click on "Bootstrap" - And I wait until I see "Successfully bootstrapped host!" text + And I wait until I see "Bootstrap process initiated." text And I wait until onboarding is completed for "sle_minion" Scenario: Check if onboarding for the minion with the new module.run syntax was successful @@ -78,7 +80,8 @@ Feature: Verify that Salt mgrcompat state works when the new module.run syntax i And I follow "Hardware" And I click on "Schedule Hardware Refresh" Then I should see a "You have successfully scheduled a hardware profile refresh" text - And I wait until event "Hardware List Refresh scheduled by admin" is completed + When I wait until event "Hardware List Refresh scheduled by admin" is completed + And I wait until there is no Salt job calling the module "hardware.profileupdate" on "sle_minion" Scenario: Cleanup: Delete profile of the minion and disable new module.run syntax Given I am on the Systems overview page of this "sle_minion" @@ -101,5 +104,5 @@ Feature: Verify that Salt mgrcompat state works when the new module.run syntax i And I select "1-SUSE-KEY-x86_64" from "activationKeys" And I select the hostname of "proxy" from "proxies" if present And I click on "Bootstrap" - And I wait until I see "Successfully bootstrapped host!" text + And I wait until I see "Bootstrap process initiated." text And I wait until onboarding is completed for "sle_minion" diff --git a/testsuite/features/secondary/min_salt_minion_details.feature b/testsuite/features/secondary/min_salt_minion_details.feature index 8ac412278a4d..bf83f3028c64 100644 --- a/testsuite/features/secondary/min_salt_minion_details.feature +++ b/testsuite/features/secondary/min_salt_minion_details.feature @@ -23,7 +23,8 @@ Feature: Verify the minion registration And I follow "Hardware" in the content area And I click on "Schedule Hardware Refresh" Then I should see a "You have successfully scheduled a hardware profile refresh" text - And I wait until event "Hardware List Refresh scheduled by admin" is completed + When I wait until event "Hardware List Refresh scheduled by admin" is completed + And I wait until there is no Salt job calling the module "hardware.profileupdate" on "sle_minion" Scenario: Check that Update Properties button works When I follow "Details" in the content area diff --git a/testsuite/features/secondary/min_salt_minions_page.feature b/testsuite/features/secondary/min_salt_minions_page.feature index 5d325f301cbe..5e40216e202a 100644 --- a/testsuite/features/secondary/min_salt_minions_page.feature +++ b/testsuite/features/secondary/min_salt_minions_page.feature @@ -86,5 +86,5 @@ Feature: Management of minion keys And I select "1-SUSE-KEY-x86_64" from "activationKeys" And I select the hostname of "proxy" from "proxies" if present And I click on "Bootstrap" - And I wait until I see "Successfully bootstrapped host!" text + And I wait until I see "Bootstrap process initiated." text And I wait until onboarding is completed for "sle_minion" diff --git a/testsuite/features/secondary/min_ssh_tunnel.feature b/testsuite/features/secondary/min_ssh_tunnel.feature index a63541e9ace1..629afd41cd6f 100644 --- a/testsuite/features/secondary/min_ssh_tunnel.feature +++ b/testsuite/features/secondary/min_ssh_tunnel.feature @@ -13,6 +13,9 @@ Feature: Register a Salt system to be managed via SSH tunnel Scenario: Log in as admin user Given I am authorized for the "Admin" section + Scenario: Pre-requisite: remove package before ssh tunnel test + When I remove package "milkyway-dummy" from this "ssh_minion" without error control + Scenario: Delete the Salt minion for SSH tunnel bootstrap Given I am on the Systems overview page of this "ssh_minion" When I follow "Delete System" @@ -32,7 +35,7 @@ Feature: Register a Salt system to be managed via SSH tunnel And I select the hostname of "proxy" from "proxies" if present And I check "manageWithSSH" And I click on "Bootstrap" - And I wait until I see "Successfully bootstrapped host!" text + And I wait until I see "Bootstrap process initiated." text And I wait until onboarding is completed for "ssh_minion" Scenario: The contact method is SSH tunnel on this minion @@ -45,7 +48,7 @@ Feature: Register a Salt system to be managed via SSH tunnel And I follow "Install" And I enter "milkyway-dummy" as the filtered package name And I click on the filter button - And I check "milkyway-dummy" in the list + And I check row with "milkyway-dummy" and arch of "ssh_minion" And I click on "Install Selected Packages" And I click on "Confirm" Then I should see a "1 package install has been scheduled for" text @@ -57,6 +60,7 @@ Feature: Register a Salt system to be managed via SSH tunnel And I follow "List / Remove" And I enter "milkyway-dummy" as the filtered package name And I click on the filter button + And I wait until I see "milkyway-dummy" text And I check "milkyway-dummy" in the list And I click on "Remove Packages" And I click on "Confirm" diff --git a/testsuite/features/secondary/minkvm_guests.feature b/testsuite/features/secondary/minkvm_guests.feature index 93b8e4c9b9cd..106fae0fa36c 100644 --- a/testsuite/features/secondary/minkvm_guests.feature +++ b/testsuite/features/secondary/minkvm_guests.feature @@ -10,7 +10,7 @@ @scope_virtualization @virthost_kvm @scope_cobbler -Feature: Be able to manage KVM virtual machines via the GUI +Feature: Manage KVM virtual machines via the GUI Scenario: Log in as admin user Given I am authorized for the "Admin" section @@ -61,11 +61,11 @@ Feature: Be able to manage KVM virtual machines via the GUI Scenario: Edit a KVM virtual machine When I click on "Edit" in row "test-vm" - And I wait until I do not see "Loading..." text + # WORKAROUND: bsc#1213220 Virtualization page stuck on Loading + And I wait until I do not see "Loading..." text, refreshing the page Then I should see "1024" in field identified by "memory" And I should see "1" in field identified by "vcpu" And option "VNC" is selected as "graphicsType" - And option "test-net0" is selected as "network0_source" And option "virtio" is selected as "disk0_bus" When I enter "512" as "memory" And I enter "2" as "vcpu" @@ -83,7 +83,8 @@ Feature: Be able to manage KVM virtual machines via the GUI Scenario: Add a network interface to a KVM virtual machine When I click on "Edit" in row "test-vm" - And I wait until I do not see "Loading..." text + # WORKAROUND: bsc#1213220 Virtualization page stuck on Loading + And I wait until I do not see "Loading..." text, refreshing the page And I click on "add_network" And I select "test-net1" from "network1_source" And I click on "Update" @@ -92,7 +93,8 @@ Feature: Be able to manage KVM virtual machines via the GUI Scenario: Delete a network interface from a KVM virtual machine When I click on "Edit" in row "test-vm" - And I wait until I do not see "Loading..." text + # WORKAROUND: bsc#1213220 Virtualization page stuck on Loading + And I wait until I do not see "Loading..." text, refreshing the page And I click on "remove_network1" And I click on "Update" Then I should see a "Hosted Virtual Systems" text @@ -100,7 +102,8 @@ Feature: Be able to manage KVM virtual machines via the GUI Scenario: Add a disk and a cdrom to a KVM virtual machine When I click on "Edit" in row "test-vm" - And I wait until I do not see "Loading..." text + # WORKAROUND: bsc#1213220 Virtualization page stuck on Loading + And I wait until I do not see "Loading..." text, refreshing the page And I click on "add_disk" And I click on "add_disk" And I select "CDROM" from "disk2_device" @@ -114,7 +117,8 @@ Feature: Be able to manage KVM virtual machines via the GUI When I click on "Edit" in row "test-vm" And I wait until I do not see "Loading..." text And I store "" into file "/tmp/test-image.iso" on "kvm_server" - And I wait until I do not see "Loading..." text + # WORKAROUND: bsc#1213220 Virtualization page stuck on Loading + And I wait until I do not see "Loading..." text, refreshing the page And I enter "/tmp/test-image.iso" as "disk2_source_file" And I click on "Update" Then I should see a "Hosted Virtual Systems" text @@ -122,7 +126,8 @@ Feature: Be able to manage KVM virtual machines via the GUI Scenario: Delete a disk from a KVM virtual machine When I click on "Edit" in row "test-vm" - And I wait until I do not see "Loading..." text + # WORKAROUND: bsc#1213220 Virtualization page stuck on Loading + And I wait until I do not see "Loading..." text, refreshing the page And I click on "remove_disk2" And I click on "Update" Then I should see a "Hosted Virtual Systems" text @@ -256,7 +261,8 @@ Feature: Be able to manage KVM virtual machines via the GUI Scenario: Delete a virtual volume When I follow "Storage" - And I wait until I do not see "Loading..." text + # WORKAROUND: bsc#1213220 Virtualization page stuck on Loading + And I wait until I do not see "Loading..." text, refreshing the page And I open the sub-list of the product "tmp" And I click on "Delete" in tree item "test-net0.xml" And I click on "Delete" in "Delete Virtual Storage Volume" modal diff --git a/testsuite/features/secondary/minssh_move_from_and_to_proxy.feature b/testsuite/features/secondary/minssh_move_from_and_to_proxy.feature index dfbaf28e2d90..c354b6f83039 100644 --- a/testsuite/features/secondary/minssh_move_from_and_to_proxy.feature +++ b/testsuite/features/secondary/minssh_move_from_and_to_proxy.feature @@ -36,7 +36,7 @@ Feature: Move a SSH minion from a proxy to direct connection And I select "1-SUSE-SSH-KEY-x86_64" from "activationKeys" And I select the hostname of "proxy" from "proxies" if present And I click on "Bootstrap" - And I wait until I see "Successfully bootstrapped host!" text + And I wait until I see "Bootstrap process initiated." text And I wait until onboarding is completed for "ssh_minion" Scenario: Check initial connection from minion to proxy diff --git a/testsuite/features/secondary/proxy_as_pod_basic_tests.feature b/testsuite/features/secondary/proxy_as_pod_basic_tests.feature index 02bb53183d59..a7f60c74e56d 100644 --- a/testsuite/features/secondary/proxy_as_pod_basic_tests.feature +++ b/testsuite/features/secondary/proxy_as_pod_basic_tests.feature @@ -85,7 +85,7 @@ Feature: Register and test a Containerized Proxy And I enter "linux" as "password" And I select the hostname of "containerized_proxy" from "proxies" And I click on "Bootstrap" - And I wait until I see "Successfully bootstrapped host!" text + And I wait until I see "Bootstrap process initiated." text Scenario: Check the new bootstrapped minion in System Overview page When I follow the left menu "Salt > Keys" @@ -119,7 +119,7 @@ Feature: Register and test a Containerized Proxy And the system ID for "sle_minion" should be correct And the system name for "sle_minion" should be correct And the uptime for "sle_minion" should be correct - And I should see several text fields for "sle_minion" + And I should see several text fields Scenario: Install a patch on the Salt minion When I follow "Software" in the content area @@ -272,7 +272,7 @@ Feature: Register and test a Containerized Proxy And I select "1-SUSE-KEY-x86_64" from "activationKeys" And I select the hostname of "proxy" from "proxies" And I click on "Bootstrap" - And I wait until I see "Successfully bootstrapped host!" text + And I wait until I see "Bootstrap process initiated." text Scenario: Cleanup: Check the new bootstrapped minion in System Overview page When I follow the left menu "Salt > Keys" diff --git a/testsuite/features/secondary/proxy_cobbler_pxeboot.feature b/testsuite/features/secondary/proxy_cobbler_pxeboot.feature index 2c26453cac9c..faafa7ee9810 100644 --- a/testsuite/features/secondary/proxy_cobbler_pxeboot.feature +++ b/testsuite/features/secondary/proxy_cobbler_pxeboot.feature @@ -100,8 +100,10 @@ Feature: PXE boot a terminal with Cobbler And I set the default PXE menu entry to the local boot on the "proxy" And I wait at most 1200 seconds until Salt master sees "pxeboot_minion" as "unaccepted" And I accept "pxeboot_minion" key in the Salt master - And I am on the Systems page - And I wait until I see the name of "pxeboot_minion", refreshing the page + + Scenario: Assure the PXE boot minion is onboarded + Given I am on the Systems page + When I wait until I see the name of "pxeboot_minion", refreshing the page And I wait until onboarding is completed for "pxeboot_minion" Then "pxeboot_minion" should have been reformatted diff --git a/testsuite/features/secondary/proxy_retail_pxeboot_and_mass_import.feature b/testsuite/features/secondary/proxy_retail_pxeboot_and_mass_import.feature index 119bb20f4d7d..33d4048309dc 100644 --- a/testsuite/features/secondary/proxy_retail_pxeboot_and_mass_import.feature +++ b/testsuite/features/secondary/proxy_retail_pxeboot_and_mass_import.feature @@ -191,15 +191,17 @@ Feature: PXE boot a Retail terminal When I reboot the Retail terminal "pxeboot_minion" And I wait at most 180 seconds until Salt master sees "pxeboot_minion" as "unaccepted" And I accept "pxeboot_minion" key in the Salt master - And I follow the left menu "Systems > System List > All" - And I wait until I see the name of "pxeboot_minion", refreshing the page + + Scenario: Assure the PXE boot minion is onboarded + Given I am on the Systems page + When I wait until I see the name of "pxeboot_minion", refreshing the page And I follow this "pxeboot_minion" link # Workaround: Increase timeout temporarily get rid of timeout issues - And I wait at most 350 seconds until event "Apply states [saltboot] scheduled by (none)" is completed + And I wait at most 350 seconds until event "Apply states [saltboot] scheduled by (system)" is completed And I follow "Software" in the content area And I follow "Software Channels" in the content area And I wait until radio button "SLE-Product-SLES15-SP4-Pool for x86_64" is checked, refreshing the page - And I wait until event "Package List Refresh scheduled by (none)" is completed + And I wait until event "Package List Refresh scheduled by (system)" is completed Then "pxeboot_minion" should have been reformatted Scenario: Check connection from terminal to branch server diff --git a/testsuite/features/secondary/srv_cobbler_buildiso.feature b/testsuite/features/secondary/srv_cobbler_buildiso.feature index 0a78a7defced..18c3a3325e4a 100644 --- a/testsuite/features/secondary/srv_cobbler_buildiso.feature +++ b/testsuite/features/secondary/srv_cobbler_buildiso.feature @@ -8,6 +8,7 @@ Feature: Cobbler buildiso Scenario: Start Cobbler monitoring When I start local monitoring of Cobbler + And I backup Cobbler settings file Scenario: Log in as testing user in the cobbler buildiso context Given I am authorized as "testing" with password "testing" diff --git a/testsuite/features/secondary/srv_cobbler_distro.feature b/testsuite/features/secondary/srv_cobbler_distro.feature index c9d0f9e16ad2..49eac353df69 100644 --- a/testsuite/features/secondary/srv_cobbler_distro.feature +++ b/testsuite/features/secondary/srv_cobbler_distro.feature @@ -7,6 +7,7 @@ Feature: Cobbler and distribution autoinstallation Scenario: Start Cobbler monitoring When I start local monitoring of Cobbler + And I backup Cobbler settings file Scenario: Log in as testing user Given I am authorized as "testing" with password "testing" @@ -65,7 +66,7 @@ Feature: Cobbler and distribution autoinstallation Scenario: Update a distribution via the API When I update a kickstart tree via the API When I follow the left menu "Systems > Autoinstallation > Distributions" - And I follow this "fedora_kickstart_distro_api" link + And I follow "fedora_kickstart_distro_api" Then option "Generic RPM" is selected as "installtype" And I should see "self_update=0" in field identified by "kernelopts" And I should see "self_update=1" in field identified by "postkernelopts" diff --git a/testsuite/features/secondary/srv_cobbler_profile.feature b/testsuite/features/secondary/srv_cobbler_profile.feature index 03b5059496a9..ad2c249203ce 100644 --- a/testsuite/features/secondary/srv_cobbler_profile.feature +++ b/testsuite/features/secondary/srv_cobbler_profile.feature @@ -14,6 +14,7 @@ Feature: Edit Cobbler profiles Scenario: Copy cobbler profiles on the server When I copy autoinstall mocked files on server + And I backup Cobbler settings file Scenario: Log in as testing user Given I am authorized as "testing" with password "testing" diff --git a/testsuite/features/secondary/srv_cobbler_sync.feature b/testsuite/features/secondary/srv_cobbler_sync.feature index 3b53eef3e89e..c45729d8b9e9 100644 --- a/testsuite/features/secondary/srv_cobbler_sync.feature +++ b/testsuite/features/secondary/srv_cobbler_sync.feature @@ -10,6 +10,7 @@ Feature: Run Cobbler Sync via WebUI Scenario: Start Cobbler monitoring When I start local monitoring of Cobbler + And I backup Cobbler settings file @uyuni Scenario: Check that the Cobbler Settings Page exists diff --git a/testsuite/features/secondary/srv_payg_ssh_connection.feature b/testsuite/features/secondary/srv_payg_ssh_connection.feature index e53a899bd1af..db1742e285c9 100644 --- a/testsuite/features/secondary/srv_payg_ssh_connection.feature +++ b/testsuite/features/secondary/srv_payg_ssh_connection.feature @@ -10,21 +10,21 @@ Feature: Pay as you go Given I am authorized for the "Admin" section Scenario: Enter minimal information for payg ssh connection data - When I follow the left menu "Admin > Setup Wizard > Pay-as-you-go" - And I click on "Add Pay-as-you-go" + When I follow the left menu "Admin > Setup Wizard > PAYG Connections" + And I click on "Add PAYG Connection" And I enter "My Instance" as "description" And I enter "my-host.local" as "host" And I enter "root" as "username" And I click on "Create" - Then I should see a "Pay-as-you-go my-host.local created successfully" text + Then I should see a "PAYG my-host.local created successfully" text And I should see a "My Instance" text in element "Info-panel-wrapper" And I should see a "my-host.local" text in element "Instance-panel-wrapper" And I should see a "root" text in element "Instance-panel-wrapper" And I should see a "Delete" button Scenario: Enter full information for payg ssh connection data - When I follow the left menu "Admin > Setup Wizard > Pay-as-you-go" - And I click on "Add Pay-as-you-go" + When I follow the left menu "Admin > Setup Wizard > PAYG Connections" + And I click on "Add PAYG Connection" And I enter "My Full Instance" as "description" And I enter "my-host-full.local" as "host" And I enter "21" as "port" @@ -39,7 +39,7 @@ Feature: Pay as you go And I enter "b_keyFull" as "bastion_key" And I enter "b_keyPasswordFull" as "bastion_key_password" And I click on "Create" - Then I should see a "Pay-as-you-go my-host-full.local created successfully" text + Then I should see a "PAYG my-host-full.local created successfully" text And I should see a "My Full Instance" text in element "Info-panel-wrapper" And I should see a "my-host-full.local" text in element "Instance-panel-wrapper" And I should see a "21" text in element "Instance-panel-wrapper" @@ -56,23 +56,23 @@ Feature: Pay as you go And I should see a "Delete" button Scenario: Check pay-as-you-go list - When I follow the left menu "Admin > Setup Wizard > Pay-as-you-go" + When I follow the left menu "Admin > Setup Wizard > PAYG Connections" Then I should see a "my-host.local" link And I should see a "My Instance" text And I should see a "my-host-full.local" link And I should see a "My Full Instance" text Scenario: Edit connection description - When I follow the left menu "Admin > Setup Wizard > Pay-as-you-go" + When I follow the left menu "Admin > Setup Wizard > PAYG Connections" And I follow "my-host-full.local" And I click on "Edit Information" And I enter "My new Full Instance" as "description" And I click on "Save" in "Information" modal - Then I should see a "Pay-as-you-go properties updated successfully" text + Then I should see a "PAYG properties updated successfully" text And I should see a "My new Full Instance" text in element "Info-panel-wrapper" Scenario: Edit instance ssh connection data - When I follow the left menu "Admin > Setup Wizard > Pay-as-you-go" + When I follow the left menu "Admin > Setup Wizard > PAYG Connections" And I follow "my-host-full.local" And I click on "Edit Instance" And I enter "221" as "port" @@ -81,7 +81,7 @@ Feature: Pay as you go And I enter "newKeyFull" as "key" And I enter "newKeyPasswordFull" as "key_password" And I click on "Save" in "Instance SSH connection" modal - Then I should see a "Pay-as-you-go properties updated successfully" text + Then I should see a "PAYG properties updated successfully" text And I should see a "221" text in element "Instance-panel-wrapper" And I should see a "NewRootFull" text in element "Instance-panel-wrapper" And I should not see a "NewPasswordFull" text in element "Instance-panel-wrapper" @@ -89,7 +89,7 @@ Feature: Pay as you go And I should not see a "newKeyPasswordFull" text in element "Instance-panel-wrapper" Scenario: Edit bastion ssh connection data - When I follow the left menu "Admin > Setup Wizard > Pay-as-you-go" + When I follow the left menu "Admin > Setup Wizard > PAYG Connections" And I follow "my-host-full.local" And I click on "Edit Bastion" And I enter "my-new-bastion.local" as "bastion_host" @@ -99,7 +99,7 @@ Feature: Pay as you go And I enter "b_new_keyFull" as "bastion_key" And I enter "b_new_keyPasswordFull" as "bastion_key_password" And I click on "Save" in "Bastion SSH connection" modal - Then I should see a "Pay-as-you-go properties updated successfully" text + Then I should see a "PAYG properties updated successfully" text And I should see a "my-new-bastion.local" text in element "Bastion-panel-wrapper" And I should see a "222" text in element "Bastion-panel-wrapper" And I should see a "b_new_rootFull" text in element "Bastion-panel-wrapper" @@ -108,17 +108,17 @@ Feature: Pay as you go And I should not see a "b_new_keyPasswordFull" text in element "Bastion-panel-wrapper" Scenario: Cleanup: delete minimal information for payg ssh connection data - When I follow the left menu "Admin > Setup Wizard > Pay-as-you-go" + When I follow the left menu "Admin > Setup Wizard > PAYG Connections" And I follow "my-host.local" And I click on "Delete" - And I click on "Delete" in "Delete Pay-as-you-go" modal + And I click on "Delete" in "Delete PAYG Connection" modal Then I should not see a "my-host.local" link And I should not see a "my-host.local" text Scenario: Cleanup: delete full information for payg ssh connection data - When I follow the left menu "Admin > Setup Wizard > Pay-as-you-go" + When I follow the left menu "Admin > Setup Wizard > PAYG Connections" And I follow "my-host-full.local" And I click on "Delete" - And I click on "Delete" in "Delete Pay-as-you-go" modal + And I click on "Delete" in "Delete PAYG Connection" modal Then I should not see a "my-bastion.local" link And I should not see a "my-host.local" text diff --git a/testsuite/features/secondary/srv_rename_hostname.feature b/testsuite/features/secondary/srv_rename_hostname.feature index 76fdbcb837b4..05e65bef3b73 100644 --- a/testsuite/features/secondary/srv_rename_hostname.feature +++ b/testsuite/features/secondary/srv_rename_hostname.feature @@ -10,7 +10,7 @@ @skip_if_cloud @skip_if_container_server Feature: Reconfigure the server's hostname - As admin + As admin user In order to change the server's hostname I want to use the tool spacewalk-hostname-rename. @@ -18,16 +18,27 @@ Feature: Reconfigure the server's hostname Given I am authorized for the "Admin" section Scenario: Change hostname and reboot server - #Command prerequisites When I change the server's short hostname from hosts and hostname files And I reboot the server through SSH And I run spacewalk-hostname-rename command on the server - - Scenario: Change hostname back + + Scenario: Do some minimal smoke test on the renamed server + Given I am on the Systems overview page of this "sle_minion" + When I follow "Details" in the content area + And I follow "Remote Command" in the content area + And I enter as remote command this script in + """ + #!/bin/bash + date + """ + And I click on "Schedule" + And I follow "Events" in the content area + And I follow "Pending" in the content area + And I wait at most 180 seconds until I do not see "Remote Command on" text, refreshing the page + And I follow "History" in the content area + And I wait until I see the event "Remote Command on" completed during last minute, refreshing the page + + Scenario: Change hostname back and reboot server When I change back the server's hostname And I reboot the server through SSH And I run spacewalk-hostname-rename command on the server - - Scenario: Cleanup after hostname rename test - When I clean up the server's hosts file - And I restart the spacewalk service diff --git a/testsuite/features/step_definitions/api_common.rb b/testsuite/features/step_definitions/api_common.rb index cfe75553ceac..0e196ee1b360 100644 --- a/testsuite/features/step_definitions/api_common.rb +++ b/testsuite/features/step_definitions/api_common.rb @@ -14,9 +14,9 @@ end $api_test = if $debug_mode - ApiTestXmlrpc.new($server.full_hostname) + ApiTestXmlrpc.new(get_target('server').full_hostname) else - $product == 'Uyuni' ? ApiTestHttp.new($server.full_hostname, ssl_verify) : ApiTestXmlrpc.new($server.full_hostname) + product == 'Uyuni' ? ApiTestHttp.new(get_target('server').full_hostname, ssl_verify) : ApiTestXmlrpc.new(get_target('server').full_hostname) end ## system namespace @@ -27,7 +27,7 @@ refute_nil($client_id, "Could not find system with hostname #{system_name}") end -When(/^I call system\.bootstrap\(\) on host "([^"]*)" and salt\-ssh "([^"]*)"$/) do |host, salt_ssh_enabled| +When(/^I call system\.bootstrap\(\) on host "([^"]*)" and salt-ssh "([^"]*)"$/) do |host, salt_ssh_enabled| system_name = get_system_name(host) salt_ssh = (salt_ssh_enabled == 'enabled') akey = salt_ssh ? '1-SUSE-SSH-KEY-x86_64' : '1-SUSE-KEY-x86_64' @@ -45,11 +45,10 @@ assert(exception_thrown, 'Exception must be thrown for non-existing host.') end -When(/^I call system\.bootstrap\(\) on a Salt minion with saltSSH = true, \ -but with activation key with default contact method, I should get an API fault$/) do +When(/^I call system\.bootstrap\(\) on a Salt minion with saltSSH = true, but with activation key with default contact method, I should get an API fault$/) do exception_thrown = false begin - $api_test.system.bootstrap_system($minion.full_hostname, '1-SUSE-KEY-x86_64', true) + $api_test.system.bootstrap_system(get_target('sle_minion').full_hostname, '1-SUSE-KEY-x86_64', true) rescue exception_thrown = true end @@ -80,7 +79,7 @@ end When(/^I wait for the OpenSCAP audit to finish$/) do - @sle_id = $api_test.system.retrieve_server_id($minion.full_hostname) + @sle_id = $api_test.system.retrieve_server_id(get_target('sle_minion').full_hostname) begin repeat_until_timeout(message: 'Process did not complete') do scans = $api_test.system.scap.list_xccdf_scans(@sle_id) @@ -142,7 +141,7 @@ ## channel namespace When(/^I create a repo with label "([^"]*)" and url$/) do |label| - url = "http://#{$server.full_hostname}/pub/AnotherRepo/" + url = "http://#{get_target('server').full_hostname}/pub/AnotherRepo/" assert($api_test.channel.software.create_repo(label, url)) end @@ -239,18 +238,19 @@ When(/^I create an activation key including custom channels for "([^"]*)" via API$/) do |client| # Create a key with the base channel for this client id = description = "#{client}_key" - base_channel = LABEL_BY_BASE_CHANNEL[BASE_CHANNEL_BY_CLIENT[client]] - key = $api_test.activationkey.create(id, description, base_channel, 100) + base_channel = BASE_CHANNEL_BY_CLIENT[product][client] + base_channel_label = LABEL_BY_BASE_CHANNEL[product][base_channel] + key = $api_test.activationkey.create(id, description, base_channel_label, 100) raise StandardError, 'Error creating activation key via the API' if key.nil? STDOUT.puts "Activation key #{key} created" unless key.nil? is_ssh_minion = client.include? 'ssh_minion' - $api_test.activationkey.set_details(key, description, base_channel, 100, is_ssh_minion ? 'ssh-push' : 'default') + $api_test.activationkey.set_details(key, description, base_channel_label, 100, is_ssh_minion ? 'ssh-push' : 'default') entitlements = client.include?('buildhost') ? ['osimage_build_host'] : '' $api_test.activationkey.set_entitlement(key, entitlements) unless entitlements.empty? # Get the list of child channels for this base channel - child_channels = $api_test.channel.software.list_child_channels(base_channel) + child_channels = $api_test.channel.software.list_child_channels(base_channel_label) # Filter out the custom channels # This is needed because we might have both a traditional custom channel and a Salt custom channel @@ -261,7 +261,6 @@ client.sub! 'ssh_minion', 'minion' client.sub! 'buildhost', 'minion' client.sub! 'terminal', 'minion' - client.sub! 'monitoring_server', 'sle15sp4_minion' custom_channel = if client.include? 'alma9' 'no-appstream-alma-9-result-custom_channel_alma9_minion' elsif client.include? 'liberty9' @@ -481,18 +480,18 @@ def wait_action_complete(actionid, timeout: DEFAULT_TIMEOUT) ## audit namespace -When(/^I call audit\.list_systems_by_patch_status\(\) with CVE identifier "([^\"]*)"$/) do |cve_identifier| +When(/^I call audit\.list_systems_by_patch_status\(\) with CVE identifier "([^"]*)"$/) do |cve_identifier| @result_list = $api_test.audit.list_systems_by_patch_status(cve_identifier) || [] end -Then(/^I should get status "([^\"]+)" for system "([0-9]+)"$/) do |status, system| +Then(/^I should get status "([^"]+)" for system "([0-9]+)"$/) do |status, system| @result = @result_list.select { |item| item['system_id'] == system.to_i } refute_empty(@result) @result = @result[0] assert_equal(status, @result['patch_status']) end -Then(/^I should get status "([^\"]+)" for "([^\"]+)"$/) do |status, host| +Then(/^I should get status "([^"]+)" for "([^"]+)"$/) do |status, host| node = get_target(host) step %(I should get status "#{status}" for system "#{get_system_id(node)}") end @@ -549,7 +548,7 @@ def wait_action_complete(actionid, timeout: DEFAULT_TIMEOUT) @get_file_revision_result = $api_test.configchannel.get_file_revision(channel, file_path, revision.to_i) end -Then(/^I should get file contents "([^\"]*)"$/) do |contents| +Then(/^I should get file contents "([^"]*)"$/) do |contents| assert_equal(contents, @get_file_revision_result['contents']) end diff --git a/testsuite/features/step_definitions/cobbler_steps.rb b/testsuite/features/step_definitions/cobbler_steps.rb index 61798f793daa..92a2c41b6441 100644 --- a/testsuite/features/step_definitions/cobbler_steps.rb +++ b/testsuite/features/step_definitions/cobbler_steps.rb @@ -11,7 +11,7 @@ end When(/^I restart cobbler on the server$/) do - $server.run('systemctl restart cobblerd.service') + get_target('server').run('systemctl restart cobblerd.service') end Given(/^I am logged in via the Cobbler API as user "([^"]*)" with password "([^"]*)"$/) do |user, pwd| @@ -66,12 +66,11 @@ end When(/^I remove kickstart profiles and distros$/) do - host = $server.full_hostname # ------------------------------- # Cleanup kickstart distros and their profiles, if any. # Get all distributions: created from UI or from API. - distros = $server.run('cobbler distro list')[0].split + distros = get_target('server').run('cobbler distro list')[0].split # The name of distros created in the UI has the form: distro_label + suffix user_details = $api_test.user.get_details('testing') @@ -84,17 +83,16 @@ # Remove profiles and distros created with the API. # We have already deleted the profiles from the UI; delete all the remaning ones. - profiles = $server.run('cobbler profile list')[0].split - profiles.each { |profile| $server.run("cobbler profile remove --name '#{profile}'") } - distros_api.each { |distro| $server.run("cobbler distro remove --name '#{distro}'") } + profiles = get_target('server').run('cobbler profile list')[0].split + profiles.each { |profile| get_target('server').run("cobbler profile remove --name '#{profile}'") } + distros_api.each { |distro| get_target('server').run("cobbler distro remove --name '#{distro}'") } end # cobbler reports When(/^I trigger cobbler system record on the "([^"]*)"$/) do |host| space = 'spacecmd -u admin -p admin' - system_name = get_system_name(host) - $server.run("#{space} clear_caches") - out, _code = $server.run("#{space} system_details #{system_name}") + get_target('server').run("#{space} clear_caches") + out, _code = get_target('server').run("#{space} system_details #{get_target(host).full_hostname}") unless out.include? 'ssh-push-tunnel' steps %( Given I am authorized as "testing" with password "testing" @@ -109,28 +107,28 @@ Then(/^the cobbler report should contain "([^"]*)" for "([^"]*)"$/) do |text, host| node = get_target(host) - output, _code = $server.run("cobbler system report --name #{node.full_hostname}:1", check_errors: false) + output, _code = get_target('server').run("cobbler system report --name #{node.full_hostname}:1", check_errors: false) raise "Not found:\n#{output}" unless output.include?(text) end Then(/^the cobbler report should contain "([^"]*)" for cobbler system name "([^"]*)"$/) do |text, name| - output, _code = $server.run("cobbler system report --name #{name}", check_errors: false) + output, _code = get_target('server').run("cobbler system report --name #{name}", check_errors: false) raise "Not found:\n#{output}" unless output.include?(text) end # buildiso When(/^I prepare Cobbler for the buildiso command$/) do tmp_dir = '/var/cache/cobbler/buildiso' - $server.run("mkdir -p #{tmp_dir}") + get_target('server').run("mkdir -p #{tmp_dir}") # we need bootloaders for the buildiso command - out, code = $server.run('cobbler mkloaders', verbose: true) + out, code = get_target('server').run('cobbler mkloaders', verbose: true) raise "error in cobbler mkloaders.\nLogs:\n#{out}" if code.nonzero? end When(/^I run Cobbler buildiso for distro "([^"]*)" and all profiles$/) do |distro| tmp_dir = '/var/cache/cobbler/buildiso' iso_dir = '/var/cache/cobbler' - out, code = $server.run("cobbler buildiso --tempdir=#{tmp_dir} --iso #{iso_dir}/profile_all.iso --distro=#{distro}", verbose: true) + out, code = get_target('server').run("cobbler buildiso --tempdir=#{tmp_dir} --iso #{iso_dir}/profile_all.iso --distro=#{distro}", verbose: true) raise "error in cobbler buildiso.\nLogs:\n#{out}" if code.nonzero? profiles = %w[orchid flame pearl] @@ -138,10 +136,10 @@ cobbler_profiles = [] profiles.each do |profile| # get all profiles from Cobbler - result_cobbler, code = $server.run("cobbler profile list | grep -o #{profile}", verbose: true) + result_cobbler, code = get_target('server').run("cobbler profile list | grep -o #{profile}", verbose: true) cobbler_profiles.push(result_cobbler) if code.zero? # get all profiles from isolinux.cfg - result_isolinux, code = $server.run("cat #{tmp_dir}/isolinux/isolinux.cfg | grep -o #{profile} | cut -c -6 | head -n 1") + result_isolinux, _code = get_target('server').run("cat #{tmp_dir}/isolinux/isolinux.cfg | grep -o #{profile} | cut -c -6 | head -n 1") unless result_isolinux.empty? isolinux_profiles.push(result_isolinux) end @@ -152,17 +150,17 @@ When(/^I run Cobbler buildiso for distro "([^"]*)" and profile "([^"]*)"$/) do |distro, profile| tmp_dir = '/var/cache/cobbler/buildiso' iso_dir = '/var/cache/cobbler' - out, code = $server.run("cobbler buildiso --tempdir=#{tmp_dir} --iso #{iso_dir}/#{profile}.iso --distro=#{distro} --profile=#{profile}", verbose: true) + out, code = get_target('server').run("cobbler buildiso --tempdir=#{tmp_dir} --iso #{iso_dir}/#{profile}.iso --distro=#{distro} --profile=#{profile}", verbose: true) raise "error in cobbler buildiso.\nLogs:\n#{out}" if code.nonzero? end When(/^I run Cobbler buildiso for distro "([^"]*)" and profile "([^"]*)" without dns entries$/) do |distro, profile| tmp_dir = '/var/cache/cobbler/buildiso' iso_dir = '/var/cache/cobbler' - out, code = $server.run("cobbler buildiso --tempdir=#{tmp_dir} --iso #{iso_dir}/#{profile}.iso --distro=#{distro} --profile=#{profile} --exclude-dns", verbose: true) + out, code = get_target('server').run("cobbler buildiso --tempdir=#{tmp_dir} --iso #{iso_dir}/#{profile}.iso --distro=#{distro} --profile=#{profile} --exclude-dns", verbose: true) raise "error in cobbler buildiso.\nLogs:\n#{out}" if code.nonzero? - result, code = $server.run("cat #{tmp_dir}/isolinux/isolinux.cfg | grep -o nameserver", check_errors: false) + result, code = get_target('server').run("cat #{tmp_dir}/isolinux/isolinux.cfg | grep -o nameserver", check_errors: false) # we have to fail here if the command suceeds raise "error in Cobbler buildiso, nameserver parameter found in isolinux.cfg but should not be found.\nLogs:\n#{result}" if code.zero? end @@ -174,55 +172,60 @@ tmp_dir = '/var/cache/cobbler/buildiso' iso_dir = '/var/cache/cobbler' source_dir = "/var/cache/cobbler/source_#{param}" - $server.run("mv #{tmp_dir} #{source_dir}") - $server.run("mkdir -p #{tmp_dir}") - out, code = $server.run("cobbler buildiso --tempdir=#{tmp_dir} --iso #{iso_dir}/#{param}.iso --distro=#{distro} --#{param} --source=#{source_dir}", verbose: true) + get_target('server').run("mv #{tmp_dir} #{source_dir}") + get_target('server').run("mkdir -p #{tmp_dir}") + out, code = get_target('server').run("cobbler buildiso --tempdir=#{tmp_dir} --iso #{iso_dir}/#{param}.iso --distro=#{distro} --#{param} --source=#{source_dir}", verbose: true) raise "error in cobbler buildiso.\nLogs:\n#{out}" if code.nonzero? end When(/^I check Cobbler buildiso ISO "([^"]*)" with xorriso$/) do |name| tmp_dir = '/var/cache/cobbler' - out, code = $server.run("cat >#{tmp_dir}/test_image <<-EOF + out, code = get_target('server').run("cat >#{tmp_dir}/test_image <<-EOF BIOS UEFI EOF") xorriso = "xorriso -indev #{tmp_dir}/#{name}.iso -report_el_torito 2>/dev/null" - iso_filter = "awk '/^El Torito boot img[[:space:]]+:[[:space:]]+[0-9]+[[:space:]]+[a-zA-Z]+[[:space:]]+y/{print $7}'" + iso_filter = 'awk \'/^El Torito boot img[[:space:]]+:[[:space:]]+[0-9]+[[:space:]]+[a-zA-Z]+[[:space:]]+y/{print $7}\'' iso_file = "#{tmp_dir}/xorriso_#{name}" - out, code = $server.run("#{xorriso} | #{iso_filter} >> #{iso_file}") + out, code = get_target('server').run("#{xorriso} | #{iso_filter} >> #{iso_file}") raise "error while executing xorriso.\nLogs:\n#{out}" if code.nonzero? - out, code = $server.run("diff #{tmp_dir}/test_image #{tmp_dir}/xorriso_#{name}") + out, code = get_target('server').run("diff #{tmp_dir}/test_image #{tmp_dir}/xorriso_#{name}") raise "error in verifying Cobbler buildiso image with xorriso.\nLogs:\n#{out}" if code.nonzero? end # xorriso When(/^I cleanup xorriso temp files$/) do - $server.run('rm /var/cache/cobbler/xorriso_*', check_errors: false) + get_target('server').run('rm /var/cache/cobbler/xorriso_*', check_errors: false) end # cobbler settings Given(/^cobbler settings are successfully migrated$/) do - out, code = $server.run('cobbler-settings migrate -t /etc/cobbler/settings.yaml') + out, code = get_target('server').run('cobbler-settings migrate -t /etc/cobbler/settings.yaml') raise "error when running cobbler-settings to migrate current settings.\nLogs:\n#{out}" if code.nonzero? end # cobbler parameters Then(/^I add the Cobbler parameter "([^"]*)" with value "([^"]*)" to item "(distro|profile|system)" with name "([^"]*)"$/) do |param, value, item, name| - result, code = $server.run("cobbler #{item} edit --name=#{name} --#{param}=#{value}", verbose: true) + result, code = get_target('server').run("cobbler #{item} edit --name=#{name} --#{param}=#{value}", verbose: true) puts("cobbler #{item} edit --name #{name} #{param}=#{value}") raise "error in adding parameter and value to Cobbler #{item}.\nLogs:\n#{result}" if code.nonzero? end When(/^I check the Cobbler parameter "([^"]*)" with value "([^"]*)" in the isolinux.cfg$/) do |param, value| tmp_dir = '/var/cache/cobbler/buildiso' - result, code = $server.run("cat #{tmp_dir}/isolinux/isolinux.cfg | grep -o #{param}=#{value}") + result, code = get_target('server').run("cat #{tmp_dir}/isolinux/isolinux.cfg | grep -o #{param}=#{value}") raise "error while verifying isolinux.cfg parameter for Cobbler buildiso.\nLogs:\n#{result}" if code.nonzero? end +# backup step +When(/^I backup Cobbler settings file$/) do + get_target('server').run('cp /etc/cobbler/settings.yaml /etc/cobbler/settings.yaml.bak 2> /dev/null', check_errors: false) +end + # cleanup steps When(/^I cleanup after Cobbler buildiso$/) do - result, code = $server.run('rm -Rf /var/cache/cobbler') + result, code = get_target('server').run('rm -Rf /var/cache/cobbler') raise "Error during Cobbler buildiso cleanup.\nLogs:\n#{result}" if code.nonzero? end @@ -230,45 +233,45 @@ cleanup_command = 'rm /var/lib/cobbler/collections/**/*.json 2> /dev/null && ' \ 'rm -r /srv/tftpboot 2> /dev/null && ' \ 'cp /etc/cobbler/settings.yaml.bak /etc/cobbler/settings.yaml 2> /dev/null' - $server.run(cleanup_command.to_s, check_errors: false) - result, code = $server.run('systemctl restart apache') + get_target('server').run(cleanup_command.to_s, check_errors: false) + result, code = get_target('server').run('systemctl restart apache') raise "Error while restarting apache cleanup.\nLogs:\n#{result}" if code.nonzero? - result, code = $server.run('systemctl restart apache && systemctl restart cobblerd') + result, code = get_target('server').run('systemctl restart apache && systemctl restart cobblerd') raise "Error while restarting cobblerd.\nLogs:\n#{result}" if code.nonzero? - step %(I wait until "cobblerd" service is active on "server") + step 'I wait until "cobblerd" service is active on "server"' end # cobbler commands When(/^I copy autoinstall mocked files on server$/) do target_dirs = '/var/autoinstall/Fedora_12_i386/images/pxeboot /var/autoinstall/SLES15-SP4-x86_64/DVD1/boot/x86_64/loader /var/autoinstall/mock' - $server.run("mkdir -p #{target_dirs}") + get_target('server').run("mkdir -p #{target_dirs}") base_dir = File.dirname(__FILE__) + '/../upload_files/autoinstall/cobbler/' source_dir = '/var/autoinstall/' return_codes = [] - return_codes << file_inject($server, base_dir + 'fedora12/vmlinuz', source_dir + 'Fedora_12_i386/images/pxeboot/vmlinuz') - return_codes << file_inject($server, base_dir + 'fedora12/initrd.img', source_dir + 'Fedora_12_i386/images/pxeboot/initrd.img') - return_codes << file_inject($server, base_dir + 'mock/empty.xml', source_dir + 'mock/empty.xml') - return_codes << file_inject($server, base_dir + 'sles15sp4/initrd', source_dir + 'SLES15-SP4-x86_64/DVD1/boot/x86_64/loader/initrd') - return_codes << file_inject($server, base_dir + 'sles15sp4/linux', source_dir + 'SLES15-SP4-x86_64/DVD1/boot/x86_64/loader/linux') + return_codes << file_inject(get_target('server'), base_dir + 'fedora12/vmlinuz', source_dir + 'Fedora_12_i386/images/pxeboot/vmlinuz') + return_codes << file_inject(get_target('server'), base_dir + 'fedora12/initrd.img', source_dir + 'Fedora_12_i386/images/pxeboot/initrd.img') + return_codes << file_inject(get_target('server'), base_dir + 'mock/empty.xml', source_dir + 'mock/empty.xml') + return_codes << file_inject(get_target('server'), base_dir + 'sles15sp4/initrd', source_dir + 'SLES15-SP4-x86_64/DVD1/boot/x86_64/loader/initrd') + return_codes << file_inject(get_target('server'), base_dir + 'sles15sp4/linux', source_dir + 'SLES15-SP4-x86_64/DVD1/boot/x86_64/loader/linux') raise 'File injection failed' unless return_codes.all?(&:zero?) end When(/^I run Cobbler sync (with|without) error checking$/) do |checking| if checking == 'with' - out, _code = $server.run('cobbler sync') + out, _code = get_target('server').run('cobbler sync') raise 'cobbler sync failed' if out.include? 'Push failed' else - _out, _code = $server.run('cobbler sync') + _out, _code = get_target('server').run('cobbler sync') end end When(/^I start local monitoring of Cobbler$/) do cobbler_conf_file = '/etc/cobbler/logging_config.conf' cobbler_log_file = '/var/log/cobbler/cobbler_debug.log' - $server.run("rm #{cobbler_log_file}", check_errors: false) - _result, code = $server.run("test -f #{cobbler_conf_file}.old", check_errors: false) + get_target('server').run("rm #{cobbler_log_file}", check_errors: false) + _result, code = get_target('server').run("test -f #{cobbler_conf_file}.old", check_errors: false) if !code.zero? handler_name = 'FileLogger02' formatter_name = 'JSONlogfile' @@ -289,9 +292,9 @@ "line_number=`awk \"/\\\[logger_root\\\]/{ print NR; exit }\" #{cobbler_conf_file}` && " \ "sed -e \"$(($line_number + 2))s/$/,#{handler_name}/\" -i #{cobbler_conf_file} && " \ "echo -e #{handler_class} >> #{cobbler_conf_file}" - $server.run("#{command} && systemctl restart cobblerd") + get_target('server').run("#{command} && systemctl restart cobblerd") else - $server.run('systemctl restart cobblerd') + get_target('server').run('systemctl restart cobblerd') end # give cobbler a few seconds to come up sleep 3 @@ -300,13 +303,13 @@ Then(/^the local logs for Cobbler should not contain errors$/) do cobbler_log_file = '/var/log/cobbler/cobbler_debug.log' local_file = '/tmp/cobbler_debug.log' - return_code = file_extract($server, cobbler_log_file, local_file) + return_code = file_extract(get_target('server'), cobbler_log_file, local_file) raise 'File extraction failed' unless return_code.zero? - file_data = File.read(local_file).gsub!("\n", ',').chop.gsub('"', " ' ").gsub("\\''", '"') + file_data = File.read(local_file).gsub!("\n", ',').chop.gsub('"', ' \' ').gsub('\\\'\'', '"') file_data = "[#{file_data}]" data_hash = JSON.parse(file_data) output = data_hash.select { |key, _hash| key['levelname'] == 'ERROR' } - $server.run("cp #{cobbler_log_file} #{cobbler_log_file}$(date +\"%Y_%m_%d_%I_%M_%p\")") unless output.empty? + get_target('server').run("cp #{cobbler_log_file} #{cobbler_log_file}$(date +\"%Y_%m_%d_%I_%M_%p\")") unless output.empty? raise "Errors in Cobbler logs:\n #{output}" unless output.empty? end diff --git a/testsuite/features/step_definitions/command_steps.rb b/testsuite/features/step_definitions/command_steps.rb index 2704bb975bbd..934d8855c1f9 100644 --- a/testsuite/features/step_definitions/command_steps.rb +++ b/testsuite/features/step_definitions/command_steps.rb @@ -38,31 +38,31 @@ end Then(/^I turn off disable_local_repos for all clients/) do - $server.run("echo \"mgr_disable_local_repos: False\" > /srv/pillar/disable_local_repos_off.sls") - step %(I install a salt pillar top file for "salt_bundle_config, disable_local_repos_off" with target "*" on the server) + get_target('server').run('echo "mgr_disable_local_repos: False" > /srv/pillar/disable_local_repos_off.sls') + step 'I install a salt pillar top file for "salt_bundle_config, disable_local_repos_off" with target "*" on the server' end Then(/^"([^"]*)" should communicate with the server using public interface/) do |host| node = get_target(host) - _result, return_code = node.run("ping -c 1 -I #{node.public_interface} #{$server.public_ip}", check_errors: false) + _result, return_code = node.run("ping -c 1 -I #{node.public_interface} #{get_target('server').public_ip}", check_errors: false) unless return_code.zero? sleep 2 - puts "re-try ping" - node.run("ping -c 1 -I #{node.public_interface} #{$server.public_ip}") + puts 're-try ping' + node.run("ping -c 1 -I #{node.public_interface} #{get_target('server').public_ip}") end - $server.run("ping -c 1 #{node.public_ip}") + get_target('server').run("ping -c 1 #{node.public_ip}") end Then(/^"([^"]*)" should not communicate with the server using private interface/) do |host| node = get_target(host) - node.run_until_fail("ping -c 1 -I #{node.private_interface} #{$server.public_ip}") + node.run_until_fail("ping -c 1 -I #{node.private_interface} #{get_target('server').public_ip}") # commented out as a machine with the same IP address might exist somewhere in our engineering network - # $server.run_until_fail("ping -c 1 #{node.private_ip}") + # get_target('server').run_until_fail("ping -c 1 #{node.private_ip}") end Then(/^the clock from "([^"]*)" should be exact$/) do |host| node = get_target(host) - clock_node, _rc = node.run("date +'%s'") + clock_node, _rc = node.run('date +\'%s\'') clock_controller = `date +'%s'` difference = clock_node.to_i - clock_controller.to_i raise "clocks differ by #{difference} seconds" unless difference.abs < 2 @@ -70,77 +70,77 @@ Then(/^it should be possible to reach the test packages$/) do url = 'https://download.opensuse.org/repositories/systemsmanagement:/Uyuni:/Test-Packages:/Updates/rpm/x86_64/orion-dummy-1.1-1.1.x86_64.rpm' - $server.run("curl --insecure --location #{url} --output /dev/null") + get_target('server').run("curl --insecure --location #{url} --output /dev/null") end Then(/^it should be possible to use the HTTP proxy$/) do url = 'https://www.suse.com' proxy = "suma2:P4$$wordWith%and&@#{$server_http_proxy}" - $server.run("curl --insecure --proxy '#{proxy}' --proxy-anyauth --location '#{url}' --output /dev/null") + get_target('server').run("curl --insecure --proxy '#{proxy}' --proxy-anyauth --location '#{url}' --output /dev/null") end Then(/^it should be possible to use the custom download endpoint$/) do url = "#{$custom_download_endpoint}/rhn/manager/download/fake-rpm-suse-channel/repodata/repomd.xml" - $server.run("curl --ipv4 --location #{url} --output /dev/null") + get_target('server').run("curl --ipv4 --location #{url} --output /dev/null") end Then(/^it should be possible to reach the build sources$/) do - if $product == 'Uyuni' + if product == 'Uyuni' # TODO: move that internal resource to some other external location log 'Sanity check not implemented, move resource to external network first' else url = 'http://download.suse.de/ibs/SUSE/Products/SLE-SERVER/12-SP4/x86_64/product/media.1/products.key' - $server.run("curl --insecure --location #{url} --output /dev/null") + get_target('server').run("curl --insecure --location #{url} --output /dev/null") end end Then(/^it should be possible to reach the Docker profiles$/) do git_profiles = ENV['GITPROFILES'] - url = git_profiles.sub(/github\.com/, "raw.githubusercontent.com") - .sub(/\.git#:/, "/master/") - .sub(/$/, "/Docker/Dockerfile") - $server.run("curl --insecure --location #{url} --output /dev/null") + url = git_profiles.sub(/github\.com/, 'raw.githubusercontent.com') + .sub(/\.git#:/, '/master/') + .sub(/$/, '/Docker/Dockerfile') + get_target('server').run("curl --insecure --location #{url} --output /dev/null") end Then(/^it should be possible to reach the authenticated registry$/) do unless $auth_registry.nil? || $auth_registry.empty? url = "https://#{$auth_registry}" - $server.run("curl --insecure --location #{url} --output /dev/null") + get_target('server').run("curl --insecure --location #{url} --output /dev/null") end end Then(/^it should be possible to reach the not authenticated registry$/) do unless $no_auth_registry.nil? || $no_auth_registry.empty? url = "https://#{$no_auth_registry}" - $server.run("curl --insecure --location #{url} --output /dev/null") + get_target('server').run("curl --insecure --location #{url} --output /dev/null") end end # Channels When(/^I delete these channels with spacewalk\-remove\-channel:$/) do |table| - channels_cmd = "spacewalk-remove-channel " - table.raw.each { |x| channels_cmd = channels_cmd + " -c " + x[0] } - $command_output, return_code = $server.run(channels_cmd, check_errors: false) + channels_cmd = 'spacewalk-remove-channel ' + table.raw.each { |x| channels_cmd = channels_cmd + ' -c ' + x[0] } + $command_output, return_code = get_target('server').run(channels_cmd, check_errors: false) end When(/^I list channels with spacewalk\-remove\-channel$/) do - $command_output, return_code = $server.run("spacewalk-remove-channel -l") - raise "Unable to run spacewalk-remove-channel -l command on server" unless return_code.zero? + $command_output, return_code = get_target('server').run('spacewalk-remove-channel -l') + raise 'Unable to run spacewalk-remove-channel -l command on server' unless return_code.zero? end When(/^I add "([^"]*)" channel$/) do |channel| - $server.run("echo -e \"admin\nadmin\n\" | mgr-sync add channel #{channel}", buffer_size: 1_000_000) + get_target('server').run("echo -e \"admin\nadmin\n\" | mgr-sync add channel #{channel}", buffer_size: 1_000_000) end When(/^I use spacewalk\-common\-channel to add channel "([^"]*)" with arch "([^"]*)"$/) do |child_channel, arch| command = "spacewalk-common-channels -u admin -p admin -a #{arch} #{child_channel}" - $command_output, _code = $server.run(command) + $command_output, _code = get_target('server').run(command) end When(/^I use spacewalk\-repo\-sync to sync channel "([^"]*)"$/) do |channel| command = "spacewalk-repo-sync -c #{channel}" - $command_output, _code = $server.run(command) + $command_output, _code = get_target('server').run(command) end Then(/^I should get "([^"]*)"$/) do |value| @@ -169,8 +169,8 @@ end When(/^I wait for "([^"]*)" to be (uninstalled|installed) on "([^"]*)"$/) do |package, status, host| - if package.include?("suma") && $product == "Uyuni" - package.gsub! "suma", "uyuni" + if package.include?('suma') && product == 'Uyuni' + package.gsub! 'suma', 'uyuni' end node = get_target(host) if deb_host?(host) @@ -195,13 +195,13 @@ When(/^I query latest Salt changes on "(.*?)"$/) do |host| node = get_target(host) - salt = $use_salt_bundle ? "venv-salt-minion" : "salt" + salt = use_salt_bundle ? 'venv-salt-minion' : 'salt' if host == 'server' salt = 'salt' end result, return_code = node.run("LANG=en_US.UTF-8 rpm -q --changelog #{salt}") result.split("\n")[0, 15].each do |line| - line.force_encoding("UTF-8") + line.force_encoding('UTF-8') log line end end @@ -209,15 +209,15 @@ When(/^I query latest Salt changes on Debian-like system "(.*?)"$/) do |host| node = get_target(host) salt = - if $use_salt_bundle - "venv-salt-minion" + if use_salt_bundle + 'venv-salt-minion' else - "salt" + 'salt' end - changelog_file = $use_salt_bundle ? "changelog.gz" : "changelog.Debian.gz" + changelog_file = use_salt_bundle ? 'changelog.gz' : 'changelog.Debian.gz' result, return_code = node.run("zcat /usr/share/doc/#{salt}/#{changelog_file}") result.split("\n")[0, 15].each do |line| - line.force_encoding("UTF-8") + line.force_encoding('UTF-8') log line end end @@ -245,7 +245,7 @@ elsif host.include? 'minion' or host.include? 'build' cmd = 'salt' end - $server.run_until_ok("#{cmd} #{system_name} state.highstate") + get_target('server').run_until_ok("#{cmd} #{system_name} state.highstate") end When(/^I wait until "([^"]*)" service is active on "([^"]*)"$/) do |service, host| @@ -263,13 +263,13 @@ When(/^I wait until "([^"]*)" exporter service is active on "([^"]*)"$/) do |service, host| node = get_target(host) # necessary since Debian-like OSes use different names for the services - separator = deb_host?(host) ? "-" : "_" + separator = deb_host?(host) ? '-' : '_' cmd = "systemctl is-active prometheus-#{service}#{separator}exporter" node.run_until_ok(cmd) end When(/^I enable product "([^"]*)"$/) do |prd| - list_output, _code = $server.run("mgr-sync list products", check_errors: false, buffer_size: 1_000_000) + list_output, _code = get_target('server').run('mgr-sync list products', check_errors: false, buffer_size: 1_000_000) executed = false linenum = 0 list_output.each_line do |line| @@ -277,14 +277,14 @@ linenum += 1 next unless line.include? prd executed = true - $command_output, _code = $server.run("echo '#{linenum}' | mgr-sync add product", check_errors: false, buffer_size: 1_000_000) + $command_output, _code = get_target('server').run("echo '#{linenum}' | mgr-sync add product", check_errors: false, buffer_size: 1_000_000) break end raise $command_output.to_s unless executed end When(/^I enable product "([^"]*)" without recommended$/) do |prd| - list_output, _code = $server.run("mgr-sync list products", check_errors: false, buffer_size: 1_000_000) + list_output, _code = get_target('server').run('mgr-sync list products', check_errors: false, buffer_size: 1_000_000) executed = false linenum = 0 list_output.each_line do |line| @@ -292,31 +292,31 @@ linenum += 1 next unless line.include? prd executed = true - $command_output, _code = $server.run("echo '#{linenum}' | mgr-sync add product --no-recommends", check_errors: false, buffer_size: 1_000_000) + $command_output, _code = get_target('server').run("echo '#{linenum}' | mgr-sync add product --no-recommends", check_errors: false, buffer_size: 1_000_000) break end raise $command_output.to_s unless executed end When(/^I execute mgr\-sync "([^"]*)" with user "([^"]*)" and password "([^"]*)"$/) do |arg1, u, p| - $command_output, _code = $server.run("echo -e '#{u}\n#{p}\n' | mgr-sync #{arg1}", check_errors: false, buffer_size: 1_000_000) + $command_output, _code = get_target('server').run("echo -e '#{u}\n#{p}\n' | mgr-sync #{arg1}", check_errors: false, buffer_size: 1_000_000) end When(/^I execute mgr\-sync "([^"]*)"$/) do |arg1| - $command_output, _code = $server.run("mgr-sync #{arg1}", buffer_size: 1_000_000) + $command_output, _code = get_target('server').run("mgr-sync #{arg1}", buffer_size: 1_000_000) end When(/^I remove the mgr\-sync cache file$/) do - $command_output, _code = $server.run('rm -f ~/.mgr-sync') + $command_output, _code = get_target('server').run('rm -f ~/.mgr-sync') end When(/^I refresh SCC$/) do refresh_timeout = 600 - $server.run('echo -e "admin\nadmin\n" | mgr-sync refresh', timeout: refresh_timeout) + get_target('server').run('echo -e "admin\nadmin\n" | mgr-sync refresh', timeout: refresh_timeout) end When(/^I execute mgr\-sync refresh$/) do - $command_output, _code = $server.run('mgr-sync refresh', check_errors: false) + $command_output, _code = get_target('server').run('mgr-sync refresh', check_errors: false) end # This function waits for all the reposyncs to complete. @@ -327,7 +327,7 @@ reposync_not_running_streak = 0 reposync_left_running_streak = 0 while reposync_not_running_streak <= 60 - command_output, _code = $server.run('ps axo pid,cmd | grep spacewalk-repo-sync | grep -v grep', check_errors: false) + command_output, _code = get_target('server').run('ps axo pid,cmd | grep spacewalk-repo-sync | grep -v grep', check_errors: false) if command_output.empty? reposync_not_running_streak += 1 reposync_left_running_streak = 0 @@ -354,7 +354,7 @@ reposync_not_running_streak = 0 reposync_left_running_streak = 0 while reposync_not_running_streak <= 60 - command_output, _code = $server.run('ps axo pid,cmd | grep spacewalk-repo-sync | grep -v grep', check_errors: false) + command_output, _code = get_target('server').run('ps axo pid,cmd | grep spacewalk-repo-sync | grep -v grep', check_errors: false) if command_output.empty? reposync_not_running_streak += 1 reposync_left_running_streak = 0 @@ -369,42 +369,42 @@ $channels_synchronized.add(channel) log "Reposync of channel #{channel} left running" if (reposync_left_running_streak % 60).zero? reposync_left_running_streak += 1 + + raise 'We have a reposync process that still running after 2 hours' if reposync_left_running_streak > 7200 sleep 1 next end reposync_left_running_streak = 0 pid = process.split(' ')[0] - $server.run("kill #{pid}", check_errors: false) + get_target('server').run("kill #{pid}", check_errors: false) log "Reposync of channel #{channel} killed" - - raise 'We have a reposync process that still running after 2 hours' if reposync_left_running_streak > 7200 end end Then(/^the reposync logs should not report errors$/) do - result, code = $server.run('grep -i "ERROR:" /var/log/rhn/reposync/*.log', check_errors: false) + result, code = get_target('server').run('grep -i "ERROR:" /var/log/rhn/reposync/*.log', check_errors: false) raise "Errors during reposync:\n#{result}" if code.zero? end Then(/^the "([^"]*)" reposync logs should not report errors$/) do |list| - logfiles = list.split(",") + logfiles = list.split(',') logfiles.each do |logs| - _result, code = $server.run("test -f /var/log/rhn/reposync/#{logs}.log", check_errors: false) + _result, code = get_target('server').run("test -f /var/log/rhn/reposync/#{logs}.log", check_errors: false) if code.zero? - result, code = $server.run("grep -i 'ERROR:' /var/log/rhn/reposync/#{logs}.log", check_errors: false) + result, code = get_target('server').run("grep -i 'ERROR:' /var/log/rhn/reposync/#{logs}.log", check_errors: false) raise "Errors during #{logs} reposync:\n#{result}" if code.zero? end end end Then(/^"([^"]*)" package should have been stored$/) do |pkg| - $server.run("find /var/spacewalk/packages -name #{pkg}") + get_target('server').run("find /var/spacewalk/packages -name #{pkg}") end Then(/^solver file for "([^"]*)" should reference "([^"]*)"$/) do |channel, pkg| - repeat_until_timeout(timeout: 300, message: "Reference #{pkg} not found in file.") do - _result, code = $server.run("dumpsolv /var/cache/rhn/repodata/#{channel}/solv | grep #{pkg}", check_errors: false) + repeat_until_timeout(timeout: 600, message: "Reference #{pkg} not found in file.") do + _result, code = get_target('server').run("dumpsolv /var/cache/rhn/repodata/#{channel}/solv | grep #{pkg}", check_errors: false) break if code.zero? end end @@ -414,22 +414,22 @@ repeat_until_timeout(timeout: 7200, message: 'Channel not fully synced') do # solv is the last file to be written when the server synchronizes a channel, # therefore we wait until it exist - _result, code = $server.run("test -f /var/cache/rhn/repodata/#{channel}/solv", check_errors: false) + _result, code = get_target('server').run("test -f /var/cache/rhn/repodata/#{channel}/solv", check_errors: false) if code.zero? # We want to check if no .new files exists. # On a re-sync, the old files stay, the new one have this suffix until it's ready. - _result, new_code = $server.run("test -f /var/cache/rhn/repodata/#{channel}/solv.new", check_errors: false) + _result, new_code = get_target('server').run("test -f /var/cache/rhn/repodata/#{channel}/solv.new", check_errors: false) unless new_code.zero? break if withpkg.empty? - _result, solv_code = $server.run("dumpsolv /var/cache/rhn/repodata/#{channel}/solv | grep 'repo size: 0 solvables'", check_errors: false) + _result, solv_code = get_target('server').run("dumpsolv /var/cache/rhn/repodata/#{channel}/solv | grep 'repo size: 0 solvables'", check_errors: false) break unless solv_code.zero? end else # maybe a debian repo? - _result, code = $server.run("test -f /var/cache/rhn/repodata/#{channel}/Release", check_errors: false) + _result, code = get_target('server').run("test -f /var/cache/rhn/repodata/#{channel}/Release", check_errors: false) if code.zero? break if withpkg.empty? - _result, solv_code = $server.run("test -s /var/cache/rhn/repodata/#{channel}/Packages", check_errors: false) + _result, solv_code = get_target('server').run("test -s /var/cache/rhn/repodata/#{channel}/Packages", check_errors: false) break if solv_code.zero? end end @@ -449,18 +449,17 @@ end When(/^I execute mgr\-bootstrap "([^"]*)"$/) do |arg1| - arch = 'x86_64' - $command_output, _code = $server.run("mgr-bootstrap --activation-keys=1-SUSE-KEY-#{arch} #{arg1}") + $command_output, _code = get_target('server').run("mgr-bootstrap #{arg1}") end When(/^I fetch "([^"]*)" to "([^"]*)"$/) do |file, host| node = get_target(host) - node.run("wget http://#{$server.full_hostname}/#{file}") + node.run("curl -s -O http://#{$server.full_hostname}/#{file}") end When(/^I wait until file "([^"]*)" contains "([^"]*)" on server$/) do |file, content| repeat_until_timeout(message: "#{content} not found in file #{file}", report_result: true) do - output, _code = $server.run("grep #{content} #{file}", check_errors: false) + output, _code = get_target('server').run("grep #{content} #{file}", check_errors: false) break if output =~ /#{content}/ sleep 2 "\n-----\n#{output}\n-----\n" @@ -468,13 +467,13 @@ end Then(/^file "([^"]*)" should contain "([^"]*)" on server$/) do |file, content| - output, _code = $server.run("grep -F '#{content}' #{file}", check_errors: false) + output, _code = get_target('server').run("grep -F '#{content}' #{file}", check_errors: false) raise "'#{content}' not found in file #{file}" if output !~ /#{content}/ "\n-----\n#{output}\n-----\n" end Then(/^the tomcat logs should not contain errors$/) do - output, _code = $server.run('cat /var/log/tomcat/*') + output, _code = get_target('server').run('cat /var/log/tomcat/*') msgs = %w[ERROR NullPointer] msgs.each do |msg| raise "-#{msg}- msg found on tomcat logs" if output.include? msg @@ -482,7 +481,7 @@ end Then(/^the taskomatic logs should not contain errors$/) do - output, _code = $server.run('cat /var/log/rhn/rhn_taskomatic_daemon.log') + output, _code = get_target('server').run('cat /var/log/rhn/rhn_taskomatic_daemon.log') msgs = %w[NullPointer] msgs.each do |msg| raise "-#{msg}- msg found on taskomatic logs" if output.include? msg @@ -490,28 +489,28 @@ end Then(/^the log messages should not contain out of memory errors$/) do - output, code = $server.run('grep -i "Out of memory: Killed process" /var/log/messages', check_errors: false) + output, code = get_target('server').run('grep -i "Out of memory: Killed process" /var/log/messages', check_errors: false) raise "Out of memory errors in /var/log/messages:\n#{output}" if code.zero? end When(/^I restart the spacewalk service$/) do - $server.run('spacewalk-service restart') + get_target('server').run('spacewalk-service restart') end When(/^I shutdown the spacewalk service$/) do - $server.run('spacewalk-service stop') + get_target('server').run('spacewalk-service stop') end When(/^I execute spacewalk-debug on the server$/) do - $server.run('spacewalk-debug') - code = file_extract($server, "/tmp/spacewalk-debug.tar.bz2", "spacewalk-debug.tar.bz2") - raise "Download debug file failed" unless code.zero? + get_target('server').run('spacewalk-debug') + code = file_extract(get_target('server'), '/tmp/spacewalk-debug.tar.bz2', 'spacewalk-debug.tar.bz2') + raise 'Download debug file failed' unless code.zero? end When(/^I extract the log files from all our active nodes$/) do - $nodes.each do |node| + $node_by_host.each do |_host, node| # the salt_migration_minion is not available anymore - next if node.nil? || node == $salt_migration_minion + next if node.nil? || node == get_target('salt_migration_minion') STDOUT.puts "Node: #{node.full_hostname}" extract_logs_from_node(node) @@ -528,7 +527,7 @@ base_url = base_url.strip.split('=')[1].delete '"' real_uri = URI.parse(base_url) log 'Real protocol: ' + real_uri.scheme + ' host: ' + real_uri.host + ' port: ' + real_uri.port.to_s - normal_download_endpoint = "https://#{$proxy.full_hostname}:443" + normal_download_endpoint = "https://#{get_target('proxy').full_hostname}:443" expected_uri = URI.parse(type == 'custom' ? $custom_download_endpoint : normal_download_endpoint) log 'Expected protocol: ' + expected_uri.scheme + ' host: ' + expected_uri.host + ' port: ' + expected_uri.port.to_s raise 'Some parameters are not as expected' unless real_uri.scheme == expected_uri.scheme && real_uri.host == expected_uri.host && real_uri.port == expected_uri.port @@ -550,49 +549,49 @@ end Then(/^the PXE default profile should be enabled$/) do - step %(I wait until file "/srv/tftpboot/pxelinux.cfg/default" contains "ONTIMEOUT pxe-default-profile" on server) + step 'I wait until file "/srv/tftpboot/pxelinux.cfg/default" contains "ONTIMEOUT pxe-default-profile" on server' end Then(/^the PXE default profile should be disabled$/) do - step %(I wait until file "/srv/tftpboot/pxelinux.cfg/default" contains "ONTIMEOUT local" on server) + step 'I wait until file "/srv/tftpboot/pxelinux.cfg/default" contains "ONTIMEOUT local" on server' end When(/^the server starts mocking an IPMI host$/) do %w[ipmisim1.emu lan.conf fake_ipmi_host.sh].each do |file| source = File.dirname(__FILE__) + '/../upload_files/' + file dest = '/etc/ipmi/' + file - return_code = file_inject($server, source, dest) + return_code = file_inject(get_target('server'), source, dest) raise 'File injection failed' unless return_code.zero? end - $server.run('chmod +x /etc/ipmi/fake_ipmi_host.sh') - $server.run('ipmi_sim -n < /dev/null > /dev/null &') + get_target('server').run('chmod +x /etc/ipmi/fake_ipmi_host.sh') + get_target('server').run('ipmi_sim -n < /dev/null > /dev/null &') end When(/^the server stops mocking an IPMI host$/) do - $server.run('pkill ipmi_sim') - $server.run('pkill fake_ipmi_host.sh || :') + get_target('server').run('pkill ipmi_sim') + get_target('server').run('pkill fake_ipmi_host.sh || :') end When(/^the server starts mocking a Redfish host$/) do - $server.run('mkdir -p /root/Redfish-Mockup-Server/') + get_target('server').run('mkdir -p /root/Redfish-Mockup-Server/') %w[redfishMockupServer.py rfSsdpServer.py].each do |file| source = File.dirname(__FILE__) + '/../upload_files/Redfish-Mockup-Server/' + file dest = '/root/Redfish-Mockup-Server/' + file - return_code = file_inject($server, source, dest) + return_code = file_inject(get_target('server'), source, dest) raise 'File injection failed' unless return_code.zero? end - $server.run('curl --output DSP2043_2019.1.zip https://www.dmtf.org/sites/default/files/standards/documents/DSP2043_2019.1.zip') - $server.run('unzip DSP2043_2019.1.zip') + $server.run('curl --output /root/DSP2043_2019.1.zip https://www.dmtf.org/sites/default/files/standards/documents/DSP2043_2019.1.zip') + $server.run('unzip /root/DSP2043_2019.1.zip -d /root/') cmd = "/usr/bin/python3 /root/Redfish-Mockup-Server/redfishMockupServer.py " \ - "-H #{$server.full_hostname} -p 8443 " \ + "-H #{get_target('server').full_hostname} -p 8443 " \ "-S -D /root/DSP2043_2019.1/public-catfish/ " \ "--ssl --cert /etc/pki/tls/certs/spacewalk.crt --key /etc/pki/tls/private/spacewalk.key " \ "< /dev/null > /dev/null 2>&1 &" - $server.run(cmd) + get_target('server').run(cmd) end When(/^the server stops mocking a Redfish host$/) do - $server.run('pkill -e -f /root/Redfish-Mockup-Server/redfishMockupServer.py') + get_target('server').run('pkill -e -f /root/Redfish-Mockup-Server/redfishMockupServer.py') end When(/^I install a user-defined state for "([^"]*)" on the server$/) do |host| @@ -600,23 +599,23 @@ # copy state file to server file = 'user_defined_state.sls' source = File.dirname(__FILE__) + '/../upload_files/' + file - dest = "/srv/salt/" + file - return_code = file_inject($server, source, dest) + dest = '/srv/salt/' + file + return_code = file_inject(get_target('server'), source, dest) raise 'File injection failed' unless return_code.zero? # generate top file and copy it to server script = "base:\n" \ " '#{system_name}':\n" \ " - user_defined_state\n" path = generate_temp_file('top.sls', script) - return_code = file_inject($server, path, '/srv/salt/top.sls') + return_code = file_inject(get_target('server'), path, '/srv/salt/top.sls') raise 'File injection failed' unless return_code.zero? `rm #{path}` # make both files readeable by salt - $server.run('chgrp salt /srv/salt/*') + get_target('server').run('chgrp salt /srv/salt/*') end When(/^I uninstall the user-defined state from the server$/) do - $server.run('rm /srv/salt/{user_defined_state.sls,top.sls}') + get_target('server').run('rm /srv/salt/{user_defined_state.sls,top.sls}') end When(/^I uninstall the managed file from "([^"]*)"$/) do |host| @@ -629,12 +628,12 @@ case host when 'server' - $server.run("configure-tftpsync.sh #{ENV['PROXY']}") + get_target('server').run("configure-tftpsync.sh #{ENV['PROXY']}") when 'proxy' cmd = "configure-tftpsync.sh --non-interactive --tftpbootdir=/srv/tftpboot \ --server-fqdn=#{ENV['SERVER']} \ --proxy-fqdn='proxy.example.org'" - $proxy.run(cmd) + get_target('proxy').run(cmd) else log "Host #{host} not supported" end @@ -647,9 +646,9 @@ target = '/srv/tftpboot/pxelinux.cfg/default' case entry when 'local boot' - script = "-e 's/^TIMEOUT .*/TIMEOUT 1/' -e 's/ONTIMEOUT .*/ONTIMEOUT local/'" + script = '-e \'s/^TIMEOUT .*/TIMEOUT 1/\' -e \'s/ONTIMEOUT .*/ONTIMEOUT local/\'' when 'target profile' - script = "-e 's/^TIMEOUT .*/TIMEOUT 1/' -e 's/ONTIMEOUT .*/ONTIMEOUT 15-sp4-cobbler:1:SUSETest/'" + script = '-e \'s/^TIMEOUT .*/TIMEOUT 1/\' -e \'s/ONTIMEOUT .*/ONTIMEOUT 15-sp4-cobbler:1:SUSETest/\'' else log "Entry #{entry} not supported" end @@ -657,20 +656,20 @@ end When(/^I clean the search index on the server$/) do - output, _code = $server.run('/usr/sbin/rhn-search cleanindex', check_errors: false) + output, _code = get_target('server').run('/usr/sbin/rhn-search cleanindex', check_errors: false) log 'Search reindex finished.' if output.include?('Index files have been deleted and database has been cleaned up, ready to reindex') raise 'The output includes an error log' if output.include?('ERROR') - step %(I wait until rhn-search is responding) + step 'I wait until rhn-search is responding' end When(/^I wait until rhn-search is responding$/) do - step %(I wait until "rhn-search" service is active on "server") + step 'I wait until "rhn-search" service is active on "server"' repeat_until_timeout(timeout: 60, message: 'rhn-search is not responding properly.') do begin - log "Search by hostname: #{$minion.hostname}" - result = $api_test.system.search.hostname($minion.hostname) + log "Search by hostname: #{get_target('sle_minion').hostname}" + result = $api_test.system.search.hostname(get_target('sle_minion').hostname) log result - break if $minion.full_hostname.include? result.first['hostname'] + break if get_target('sle_minion').full_hostname.include? result.first['hostname'] rescue StandardError => e log "rhn-search still not responding.\nError message: #{e.message}" sleep 3 @@ -680,10 +679,10 @@ Then(/^I wait until mgr-sync refresh is finished$/) do # mgr-sync refresh is a slow operation, we don't use the default timeout - cmd = "spacecmd -u admin -p admin api sync.content.listProducts" - repeat_until_timeout(timeout: 1800, message: "'mgr-sync refresh' did not finish") do - result, code = $server.run(cmd, check_errors: false) - break if result.include? "SLES" + cmd = 'spacecmd -u admin -p admin api sync.content.listProducts' + repeat_until_timeout(timeout: 1800, message: '\'mgr-sync refresh\' did not finish') do + result, code = get_target('server').run(cmd, check_errors: false) + break if result.include? 'SLES' sleep 5 end end @@ -759,7 +758,7 @@ When(/^I wait until file "(.*)" exists on server$/) do |file| repeat_until_timeout do - break if file_exists?($server, file) + break if file_exists?(get_target('server'), file) sleep(1) end end @@ -772,25 +771,29 @@ end When(/^I call spacewalk\-repo\-sync for channel "(.*?)" with a custom url "(.*?)"$/) do |arg1, arg2| - @command_output, _code = $server.run("spacewalk-repo-sync -c #{arg1} -u #{arg2}", check_errors: false) + @command_output, _code = get_target('server').run("spacewalk-repo-sync -c #{arg1} -u #{arg2}", check_errors: false) end When(/^I call spacewalk\-repo\-sync to sync the channel "(.*?)"$/) do |channel| - @command_output, _code = $server.run("spacewalk-repo-sync -c #{channel}", check_errors: false) + @command_output, _code = get_target('server').run("spacewalk-repo-sync -c #{channel}", check_errors: false) +end + +When(/^I call spacewalk\-repo\-sync to sync the parent channel "(.*?)"$/) do |channel| + @command_output, _code = get_target('server').run("spacewalk-repo-sync -p #{channel}", check_errors: false) end When(/^I get "(.*?)" file details for channel "(.*?)" via spacecmd$/) do |arg1, arg2| - @command_output, _code = $server.run("spacecmd -u admin -p admin -q -- configchannel_filedetails #{arg2} '#{arg1}'", check_errors: false) + @command_output, _code = get_target('server').run("spacecmd -u admin -p admin -q -- configchannel_filedetails #{arg2} '#{arg1}'", check_errors: false) end # Repositories and packages management When(/^I migrate the non-SUMA repositories on "([^"]*)"$/) do |host| node = get_target(host) - salt_call = $use_salt_bundle ? "venv-salt-call" : "salt-call" + salt_call = use_salt_bundle ? 'venv-salt-call' : 'salt-call' # use sumaform states to migrate to latest SP the system repositories: node.run("#{salt_call} --local --file-root /root/salt/ state.apply repos") # disable again the non-SUMA repositories: - node.run("for repo in $(zypper lr | awk 'NR>7 && !/susemanager:/ {print $3}'); do zypper mr -d $repo; done") + node.run('for repo in $(zypper lr | awk \'NR>7 && !/susemanager:/ {print $3}\'); do zypper mr -d $repo; done') # node.run('salt-call state.apply channels.disablelocalrepos') does not work end @@ -835,18 +838,18 @@ end When(/^I enable source package syncing$/) do - cmd = "echo 'server.sync_source_packages = 1' >> /etc/rhn/rhn.conf" - $server.run(cmd) + cmd = 'echo \'server.sync_source_packages = 1\' >> /etc/rhn/rhn.conf' + get_target('server').run(cmd) end When(/^I disable source package syncing$/) do - cmd = "sed -i 's/^server.sync_source_packages = 1.*//g' /etc/rhn/rhn.conf" - $server.run(cmd) + cmd = 'sed -i \'s/^server.sync_source_packages = 1.*//g\' /etc/rhn/rhn.conf' + get_target('server').run(cmd) end When(/^I install pattern "([^"]*)" on this "([^"]*)"$/) do |pattern, host| - if pattern.include?("suma") && $product == "Uyuni" - pattern.gsub! "suma", "uyuni" + if pattern.include?('suma') && product == 'Uyuni' + pattern.gsub! 'suma', 'uyuni' end node = get_target(host) node.run('zypper ref') @@ -855,8 +858,8 @@ end When(/^I remove pattern "([^"]*)" from this "([^"]*)"$/) do |pattern, host| - if pattern.include?("suma") && $product == "Uyuni" - pattern.gsub! "suma", "uyuni" + if pattern.include?('suma') && product == 'Uyuni' + pattern.gsub! 'suma', 'uyuni' end node = get_target(host) node.run('zypper ref') @@ -937,16 +940,16 @@ end When(/^I install package tftpboot-installation on the server$/) do - output, _code = $server.run('find /var/spacewalk/packages -name tftpboot-installation-SLE-15-SP4-x86_64-*.noarch.rpm') + output, _code = get_target('server').run('find /var/spacewalk/packages -name tftpboot-installation-SLE-15-SP4-x86_64-*.noarch.rpm') packages = output.split("\n") pattern = '/tftpboot-installation-([^/]+)*.noarch.rpm' # Reverse sort the package name to get the latest version first and install it package = packages.min { |a, b| b.match(pattern)[0] <=> a.match(pattern)[0] } - $server.run("rpm -i #{package}", check_errors: false) + get_target('server').run("rpm -i #{package}", check_errors: false) end When(/^I reset tftp defaults on the proxy$/) do - $proxy.run("echo 'TFTP_USER=\"tftp\"\nTFTP_OPTIONS=\"\"\nTFTP_DIRECTORY=\"/srv/tftpboot\"\n' > /etc/sysconfig/tftp") + get_target('proxy').run("echo 'TFTP_USER=\"tftp\"\nTFTP_OPTIONS=\"\"\nTFTP_DIRECTORY=\"/srv/tftpboot\"\n' > /etc/sysconfig/tftp") end When(/^I wait until the package "(.*?)" has been cached on this "(.*?)"$/) do |pkg_name, host| @@ -963,9 +966,10 @@ end When(/^I create the bootstrap repository for "([^"]*)" on the server$/) do |host| - base_channel = BASE_CHANNEL_BY_CLIENT[host] - channel = CHANNEL_TO_SYNC_BY_BASE_CHANNEL[base_channel] - parent_channel = PARENT_CHANNEL_TO_SYNC_BY_BASE_CHANNEL[base_channel] + base_channel = BASE_CHANNEL_BY_CLIENT[product][host] + channel = CHANNEL_TO_SYNC_BY_BASE_CHANNEL[product][base_channel] + parent_channel = PARENT_CHANNEL_TO_SYNC_BY_BASE_CHANNEL[product][base_channel] + get_target('server').wait_while_process_running('mgr-create-bootstrap-repo') cmd = if parent_channel.nil? "mgr-create-bootstrap-repo --create #{channel} --with-custom-channels --flush" else @@ -973,64 +977,120 @@ end log 'Creating the boostrap repository on the server:' log ' ' + cmd - $server.run(cmd) + get_target('server').run(cmd) end When(/^I install "([^"]*)" product on the proxy$/) do |product| - out, = $proxy.run("zypper ref && zypper --non-interactive install --auto-agree-with-licenses --force-resolution -t product #{product}") + out, = get_target('proxy').run("zypper ref && zypper --non-interactive install --auto-agree-with-licenses --force-resolution -t product #{product}") log "Installed #{product} product: #{out}" end When(/^I install proxy pattern on the proxy$/) do - pattern = $product == 'Uyuni' ? 'uyuni_proxy' : 'suma_proxy' + pattern = product == 'Uyuni' ? 'uyuni_proxy' : 'suma_proxy' cmd = "zypper --non-interactive install -t pattern #{pattern}" - $proxy.run(cmd, timeout: 600, successcodes: [0, 100, 101, 102, 103, 106]) + get_target('proxy').run(cmd, timeout: 600, successcodes: [0, 100, 101, 102, 103, 106]) end When(/^I let squid use avahi on the proxy$/) do file = '/usr/share/rhn/proxy-template/squid.conf' key = 'dns_multicast_local' val = 'on' - $proxy.run("grep '^#{key}' #{file} && sed -i -e 's/^#{key}.*$/#{key} #{val}/' #{file} || echo '#{key} #{val}' >> #{file}") + get_target('proxy').run("grep '^#{key}' #{file} && sed -i -e 's/^#{key}.*$/#{key} #{val}/' #{file} || echo '#{key} #{val}' >> #{file}") key = 'ignore_unknown_nameservers' val = 'off' - $proxy.run("grep '^#{key}' #{file} && sed -i -e 's/^#{key}.*$/#{key} #{val}/' #{file} || echo '#{key} #{val}' >> #{file}") + get_target('proxy').run("grep '^#{key}' #{file} && sed -i -e 's/^#{key}.*$/#{key} #{val}/' #{file} || echo '#{key} #{val}' >> #{file}") end When(/^I open avahi port on the proxy$/) do - $proxy.run('firewall-offline-cmd --zone=public --add-service=mdns') + get_target('proxy').run('firewall-offline-cmd --zone=public --add-service=mdns') end When(/^I copy server\'s keys to the proxy$/) do - %w[RHN-ORG-PRIVATE-SSL-KEY RHN-ORG-TRUSTED-SSL-CERT rhn-ca-openssl.cnf].each do |file| - return_code = file_extract($server, '/root/ssl-build/' + file, '/tmp/' + file) - raise 'File extraction failed' unless return_code.zero? - $proxy.run('mkdir -p /root/ssl-build') - return_code = file_inject($proxy, '/tmp/' + file, '/root/ssl-build/' + file) - raise 'File injection failed' unless return_code.zero? + _out, code = $server.run_local("systemctl is-active k3s", check_errors: false) + if code.zero? + # Server running in Kubernetes doesn't know anything about SSL CA + certificate = "apiVersion: cert-manager.io/v1\\n"\ + "kind: Certificate\\n"\ + "metadata:\\n"\ + " name: uyuni-proxy\\n"\ + "spec:\\n"\ + " secretName: uyuni-proxy-cert\\n"\ + " subject:\\n"\ + " countries: ['DE']\\n"\ + " provinces: ['Bayern']\\n"\ + " localities: ['Nuernberg']\\n"\ + " organizations: ['SUSE']\\n"\ + " organizationalUnits: ['SUSE']\\n"\ + " emailAddresses:\\n"\ + " - galaxy-noise@suse.de\\n"\ + " commonName: #{$proxy.full_hostname}\\n"\ + " dnsNames:\\n"\ + " - #{$proxy.full_hostname}\\n"\ + " issuerRef:\\n"\ + " name: uyuni-ca-issuer\\n"\ + " kind: Issuer" + _out, return_code = $server.run_local("echo -e \"#{certificate}\" | kubectl apply -f -") + raise 'Failed to define proxy Certificate resource' unless return_code.zero? + # cert-manager takes some time to generate the secret, wait for it before continuing + repeat_until_timeout(timeout: 600, message: "Kubernetes uyuni-proxy-cert secret has not been defined") do + _result, code = $server.run_local("kubectl get secret uyuni-proxy-cert", check_errors: false) + break if code.zero? + sleep 1 + end + _out, return_code = $server.run_local("kubectl get secret uyuni-proxy-cert -o jsonpath='{.data.tls\\.crt}' | base64 -d >/tmp/proxy.crt") + raise 'Failed to store proxy certificate' unless return_code.zero? + _out, return_code = $server.run_local("kubectl get secret uyuni-proxy-cert -o jsonpath='{.data.tls\\.key}' | base64 -d >/tmp/proxy.key") + raise 'Failed to store proxy key' unless return_code.zero? + _out, return_code = $server.run_local("kubectl get secret uyuni-proxy-cert -o jsonpath='{.data.ca\\.crt}' | base64 -d >/tmp/ca.crt") + raise 'Failed to store CA certificate' unless return_code.zero? + + %w[proxy.crt proxy.key ca.crt].each do |file| + return_code, = $server.extract_file("/tmp/#{file}", "/tmp/#{file}") + raise 'File extraction failed' unless return_code.zero? + return_code = file_inject($proxy, "/tmp/#{file}", "/tmp/#{file}") + raise 'File injection failed' unless return_code.zero? + end + else + %w[RHN-ORG-PRIVATE-SSL-KEY RHN-ORG-TRUSTED-SSL-CERT rhn-ca-openssl.cnf].each do |file| + return_code = file_extract($server, '/root/ssl-build/' + file, '/tmp/' + file) + raise 'File extraction failed' unless return_code.zero? + $proxy.run('mkdir -p /root/ssl-build') + return_code = file_inject($proxy, '/tmp/' + file, '/root/ssl-build/' + file) + raise 'File injection failed' unless return_code.zero? + end end end When(/^I configure the proxy$/) do + _out, code = $server.run_local("systemctl is-active k3s", check_errors: false) + # prepare the settings file - settings = "RHN_PARENT=#{$server.full_hostname}\n" \ + settings = "RHN_PARENT=#{get_target('server').full_hostname}\n" \ "HTTP_PROXY=''\n" \ "VERSION=''\n" \ "TRACEBACK_EMAIL=galaxy-noise@suse.de\n" \ - "USE_EXISTING_CERTS=n\n" \ "INSTALL_MONITORING=n\n" \ - "SSL_PASSWORD=spacewalk\n" \ - "SSL_ORG=SUSE\n" \ - "SSL_ORGUNIT=SUSE\n" \ - "SSL_COMMON=#{$proxy.full_hostname}\n" \ - "SSL_CITY=Nuremberg\n" \ - "SSL_STATE=Bayern\n" \ - "SSL_COUNTRY=DE\n" \ - "SSL_EMAIL=galaxy-noise@suse.de\n" \ - "SSL_CNAME_ASK=proxy.example.org\n" \ "POPULATE_CONFIG_CHANNEL=y\n" \ "RHN_USER=admin\n" \ "ACTIVATE_SLP=y\n" + if code.zero? + settings += "USE_EXISTING_CERTS=y\n" \ + "CA_CERT=/tmp/ca.crt\n" \ + "SERVER_KEY=/tmp/proxy.key\n" \ + "SERVER_CERT=/tmp/proxy.crt\n" + else + settings += "USE_EXISTING_CERTS=n\n" \ + "INSTALL_MONITORING=n\n" \ + "SSL_PASSWORD=spacewalk\n" \ + "SSL_ORG=SUSE\n" \ + "SSL_ORGUNIT=SUSE\n" \ + "SSL_COMMON=#{$proxy.full_hostname}\n" \ + "SSL_CITY=Nuremberg\n" \ + "SSL_STATE=Bayern\n" \ + "SSL_COUNTRY=DE\n" \ + "SSL_EMAIL=galaxy-noise@suse.de\n" \ + "SSL_CNAME_ASK=proxy.example.org\n" + end path = generate_temp_file('config-answers.txt', settings) step 'I copy "' + path + '" to "proxy"' `rm #{path}` @@ -1038,62 +1098,62 @@ filename = File.basename(path) cmd = "configure-proxy.sh --non-interactive --rhn-user=admin --rhn-password=admin --answer-file=#{filename}" proxy_timeout = 600 - $proxy.run(cmd, timeout: proxy_timeout) + get_target('proxy').run(cmd, timeout: proxy_timeout, verbose: true) end When(/^I allow all SSL protocols on the proxy's apache$/) do file = '/etc/apache2/ssl-global.conf' key = 'SSLProtocol' val = 'all -SSLv2 -SSLv3' - $proxy.run("grep '#{key}' #{file} && sed -i -e 's/#{key}.*$/#{key} #{val}/' #{file}") - $proxy.run("systemctl reload apache2.service") + get_target('proxy').run("grep '#{key}' #{file} && sed -i -e 's/#{key}.*$/#{key} #{val}/' #{file}") + get_target('proxy').run('systemctl reload apache2.service', verbose: true) end When(/^I restart squid service on the proxy$/) do # We need to restart squid when we add a CNAME to the certificate - $proxy.run("systemctl restart squid.service") + get_target('proxy').run('systemctl restart squid.service') end When(/^I create channel "([^"]*)" from spacecmd of type "([^"]*)"$/) do |name, type| command = "spacecmd -u admin -p admin -- configchannel_create -n #{name} -t #{type}" - $server.run(command) + get_target('server').run(command) end When(/^I update init.sls from spacecmd with content "([^"]*)" for channel "([^"]*)"$/) do |content, label| filepath = "/tmp/#{label}" - $server.run("echo -e \"#{content}\" > #{filepath}", timeout: 600) + get_target('server').run("echo -e \"#{content}\" > #{filepath}", timeout: 600) command = "spacecmd -u admin -p admin -- configchannel_updateinitsls -c #{label} -f #{filepath} -y" - $server.run(command) - file_delete($server, filepath) + get_target('server').run(command) + file_delete(get_target('server'), filepath) end When(/^I update init.sls from spacecmd with content "([^"]*)" for channel "([^"]*)" and revision "([^"]*)"$/) do |content, label, revision| filepath = "/tmp/#{label}" - $server.run("echo -e \"#{content}\" > #{filepath}", timeout: 600) + get_target('server').run("echo -e \"#{content}\" > #{filepath}", timeout: 600) command = "spacecmd -u admin -p admin -- configchannel_updateinitsls -c #{label} -f #{filepath} -r #{revision} -y" - $server.run(command) - file_delete($server, filepath) + get_target('server').run(command) + file_delete(get_target('server'), filepath) end When(/^I schedule apply configchannels for "([^"]*)"$/) do |host| system_name = get_system_name(host) - $server.run('spacecmd -u admin -p admin clear_caches') + get_target('server').run('spacecmd -u admin -p admin clear_caches') command = "spacecmd -y -u admin -p admin -- system_scheduleapplyconfigchannels #{system_name}" - $server.run(command) + get_target('server').run(command) end # WORKAROUND # Work around issue https://github.com/SUSE/spacewalk/issues/10360 # Remove as soon as the issue is fixed When(/^I let Kiwi build from external repositories$/) do - $server.run("sed -i 's/--ignore-repos-used-for-build//' /usr/share/susemanager/salt/images/kiwi-image-build.sls") + get_target('server').run('sed -i \'s/--ignore-repos-used-for-build//\' /usr/share/susemanager/salt/images/kiwi-image-build.sls') end When(/^I refresh packages list via spacecmd on "([^"]*)"$/) do |client| node = get_system_name(client) - $server.run("spacecmd -u admin -p admin clear_caches") + get_target('server').run('spacecmd -u admin -p admin clear_caches') command = "spacecmd -u admin -p admin system_schedulepackagerefresh #{node}" - $server.run(command) + get_target('server').run(command) end When(/^I refresh the packages list via package manager on "([^"]*)"$/) do |host| @@ -1110,17 +1170,17 @@ current_time = Time.now.strftime('%Y%m%d%H%M') timeout_time = (Time.now + long_wait_delay + round_minute).strftime('%Y%m%d%H%M') node = get_system_name(client) - $server.run("spacecmd -u admin -p admin clear_caches") + get_target('server').run('spacecmd -u admin -p admin clear_caches') # Gather all the ids of package refreshes existing at SUMA - refreshes, = $server.run("spacecmd -u admin -p admin schedule_list | grep 'Package List Refresh' | cut -f1 -d' '", check_errors: false) - node_refreshes = "" + refreshes, = get_target('server').run('spacecmd -u admin -p admin schedule_list | grep \'Package List Refresh\' | cut -f1 -d\' \'', check_errors: false) + node_refreshes = '' refreshes.split(' ').each do |refresh_id| next unless refresh_id.match('/[0-9]{1,4}/') - refresh_result, = $server.run("spacecmd -u admin -p admin schedule_details #{refresh_id}") # Filter refreshes for specific system + refresh_result, = get_target('server').run("spacecmd -u admin -p admin schedule_details #{refresh_id}") # Filter refreshes for specific system next unless refresh_result.include? node node_refreshes += "^#{refresh_id}|" end - cmd = "spacecmd -u admin -p admin schedule_list #{current_time} #{timeout_time} | egrep '#{node_refreshes.delete_suffix('|')}'" + cmd = "spacecmd -u admin -p admin schedule_list #{current_time} #{timeout_time} | egrep '#{node_refreshes.delete_suffix('\|')}'" repeat_until_timeout(timeout: long_wait_delay, message: "'refresh package list' did not finish") do result, code = $server.run(cmd, check_errors: false) sleep 1 @@ -1132,9 +1192,9 @@ When(/^spacecmd should show packages "([^"]*)" installed on "([^"]*)"$/) do |packages, client| node = get_system_name(client) - $server.run("spacecmd -u admin -p admin clear_caches") + get_target('server').run('spacecmd -u admin -p admin clear_caches') command = "spacecmd -u admin -p admin system_listinstalledpackages #{node}" - result, _code = $server.run(command, check_errors: false) + result, _code = get_target('server').run(command, check_errors: false) packages.split(' ').each do |package| pkg = package.strip raise "package #{pkg} is not installed" unless result.include? pkg @@ -1143,10 +1203,10 @@ When(/^I wait until package "([^"]*)" is installed on "([^"]*)" via spacecmd$/) do |pkg, client| node = get_system_name(client) - $server.run("spacecmd -u admin -p admin clear_caches") + get_target('server').run('spacecmd -u admin -p admin clear_caches') command = "spacecmd -u admin -p admin system_listinstalledpackages #{node}" repeat_until_timeout(timeout: 600, message: "package #{pkg} is not installed yet") do - result, _code = $server.run(command, check_errors: false) + result, _code = get_target('server').run(command, check_errors: false) break if result.include? pkg sleep 1 end @@ -1154,10 +1214,10 @@ When(/^I wait until package "([^"]*)" is removed from "([^"]*)" via spacecmd$/) do |pkg, client| node = get_system_name(client) - $server.run("spacecmd -u admin -p admin clear_caches") + get_target('server').run('spacecmd -u admin -p admin clear_caches') command = "spacecmd -u admin -p admin system_listinstalledpackages #{node}" repeat_until_timeout(timeout: 600, message: "package #{pkg} is still present") do - result, code = $server.run(command, check_errors: false) + result, code = get_target('server').run(command, check_errors: false) sleep 1 break unless result.include? pkg end @@ -1169,7 +1229,7 @@ os_family = node.os_family repositories = 'tools_pool_repo tools_update_repo' if os_family =~ /^opensuse/ || os_family =~ /^sles/ - if $product != 'Uyuni' + if product != 'Uyuni' repositories.concat(' tools_additional_repo') # Needed because in SLES15SP3 and openSUSE 15.3 and higher, firewalld will replace this package. # But the tools_update_repo's priority doesn't allow to cope with the obsoletes option from firewalld. @@ -1183,7 +1243,7 @@ When(/^I apply "([^"]*)" local salt state on "([^"]*)"$/) do |state, host| node = get_target(host) - salt_call = $use_salt_bundle ? "venv-salt-call" : "salt-call" + salt_call = use_salt_bundle ? 'venv-salt-call' : 'salt-call' if host == 'server' salt_call = 'salt-call' end @@ -1195,36 +1255,36 @@ end When(/^I copy unset package file on server$/) do - base_dir = File.dirname(__FILE__) + "/../upload_files/unset_package/" - return_code = file_inject($server, base_dir + 'subscription-tools-1.0-0.noarch.rpm', '/root/subscription-tools-1.0-0.noarch.rpm') + base_dir = File.dirname(__FILE__) + '/../upload_files/unset_package/' + return_code = file_inject(get_target('server'), base_dir + 'subscription-tools-1.0-0.noarch.rpm', '/root/subscription-tools-1.0-0.noarch.rpm') raise 'File injection failed' unless return_code.zero? end When(/^I copy vCenter configuration file on server$/) do - base_dir = File.dirname(__FILE__) + "/../upload_files/virtualization/" - return_code = file_inject($server, base_dir + 'vCenter.json', '/var/tmp/vCenter.json') + base_dir = File.dirname(__FILE__) + '/../upload_files/virtualization/' + return_code = file_inject(get_target('server'), base_dir + 'vCenter.json', '/var/tmp/vCenter.json') raise 'File injection failed' unless return_code.zero? end When(/^I export software channels "([^"]*)" with ISS v2 to "([^"]*)"$/) do |channel, path| - $server.run("inter-server-sync export --channels=#{channel} --outputDir=#{path}") + get_target('server').run("inter-server-sync export --channels=#{channel} --outputDir=#{path}") end When(/^I export config channels "([^"]*)" with ISS v2 to "([^"]*)"$/) do |channel, path| - $server.run("inter-server-sync export --configChannels=#{channel} --outputDir=#{path}") + get_target('server').run("inter-server-sync export --configChannels=#{channel} --outputDir=#{path}") end When(/^I import data with ISS v2 from "([^"]*)"$/) do |path| - $server.run("inter-server-sync import --importDir=#{path}") + get_target('server').run("inter-server-sync import --importDir=#{path}") end Then(/^"(.*?)" folder on server is ISS v2 export directory$/) do |folder| - raise "Folder #{folder} not found" unless file_exists?($server, folder + "/sql_statements.sql.gz") + raise "Folder #{folder} not found" unless file_exists?(get_target('server'), folder + '/sql_statements.sql.gz') end Then(/^export folder "(.*?)" shouldn't exist on "(.*?)"$/) do |folder, host| node = get_target(host) - raise "Folder exists" if folder_exists?(node, folder) + raise 'Folder exists' if folder_exists?(node, folder) end When(/^I ensure folder "(.*?)" doesn't exist on "(.*?)"$/) do |folder, host| @@ -1236,12 +1296,12 @@ Given(/^I can connect to the ReportDB on the Server$/) do # connect and quit database - _result, return_code = $server.run(reportdb_server_query('\\q')) + _result, return_code = get_target('server').run(reportdb_server_query('\\q')) raise 'Couldn\'t connect to the ReportDB on the server' unless return_code.zero? end Given(/^I have a user with admin access to the ReportDB$/) do - users_and_permissions, return_code = $server.run(reportdb_server_query('\\du')) + users_and_permissions, return_code = get_target('server').run(reportdb_server_query('\\du')) raise 'Couldn\'t connect to the ReportDB on the server' unless return_code.zero? # extract only the line for the suma user suma_user_permissions = users_and_permissions[/pythia_susemanager(.*)}/] @@ -1254,13 +1314,13 @@ file = 'create_user_reportdb.exp' source = "#{File.dirname(__FILE__)}/../upload_files/#{file}" dest = "/tmp/#{file}" - return_code = file_inject($server, source, dest) + return_code = file_inject(get_target('server'), source, dest) raise 'File injection in server failed' unless return_code.zero? - $server.run("expect -f /tmp/#{file} #{$reportdb_ro_user}") + get_target('server').run("expect -f /tmp/#{file} #{$reportdb_ro_user}") end Then(/^I should see the read-only user listed on the ReportDB user accounts$/) do - users_and_permissions, _code = $server.run(reportdb_server_query('\\du')) + users_and_permissions, _code = get_target('server').run(reportdb_server_query('\\du')) raise 'Couldn\'t find the newly created user on the ReportDB' unless users_and_permissions.include? $reportdb_ro_user end @@ -1268,19 +1328,19 @@ file = 'delete_user_reportdb.exp' source = "#{File.dirname(__FILE__)}/../upload_files/#{file}" dest = "/tmp/#{file}" - return_code = file_inject($server, source, dest) + return_code = file_inject(get_target('server'), source, dest) raise 'File injection in server failed' unless return_code.zero? - $server.run("expect -f /tmp/#{file} #{$reportdb_ro_user}") + get_target('server').run("expect -f /tmp/#{file} #{$reportdb_ro_user}") end Then(/^I shouldn't see the read-only user listed on the ReportDB user accounts$/) do - users_and_permissions, _code = $server.run(reportdb_server_query('\\du')) + users_and_permissions, _code = get_target('server').run(reportdb_server_query('\\du')) raise 'Created read-only user on the ReportDB remains listed' if users_and_permissions.include? $reportdb_ro_user end When(/^I connect to the ReportDB with read-only user from external machine$/) do # connection from the controller to the reportdb in the server - $reportdb_ro_conn = PG.connect(host: $server.public_ip, port: 5432, dbname: 'reportdb', user: $reportdb_ro_user, password: 'linux') + $reportdb_ro_conn = PG.connect(host: get_target('server').public_ip, port: 5432, dbname: 'reportdb', user: $reportdb_ro_user, password: 'linux') end Then(/^I should be able to query the ReportDB$/) do @@ -1318,14 +1378,14 @@ Then(/^I should be able to connect to the ReportDB with the ReportDB admin user$/) do # connection from the controller to the reportdb in the server - reportdb_admin_conn = PG.connect(host: $server.public_ip, port: 5432, dbname: 'reportdb', user: $reportdb_admin_user, password: $reportdb_admin_password) + reportdb_admin_conn = PG.connect(host: get_target('server').public_ip, port: 5432, dbname: 'reportdb', user: $reportdb_admin_user, password: $reportdb_admin_password) raise 'Couldn\'t connect to ReportDB with admin from external machine' unless reportdb_admin_conn.status.zero? end Then(/^I should not be able to connect to product database with the ReportDB admin user$/) do - dbname = $product.delete(' ').downcase + dbname = product.delete(' ').downcase assert_raises PG::ConnectionBad do - PG.connect(host: $server.public_ip, port: 5432, dbname: dbname, user: $reportdb_admin_user, password: $reportdb_admin_password) + PG.connect(host: get_target('server').public_ip, port: 5432, dbname: dbname, user: $reportdb_admin_user, password: $reportdb_admin_password) end end @@ -1356,27 +1416,27 @@ Then(/^I flush firewall on "([^"]*)"$/) do |target| node = get_target(target) - node.run("iptables -F INPUT") + node.run('iptables -F INPUT') end When(/^I generate the configuration "([^"]*)" of Containerized Proxy on the server$/) do |file_path| # Doc: https://www.uyuni-project.org/uyuni-docs/en/uyuni/reference/spacecmd/proxy_container.html command = "echo spacewalk > cert_pass && spacecmd -u admin -p admin proxy_container_config_generate_cert" \ - " -- -o #{file_path} -p 8022 #{$proxy.full_hostname.sub('pxy', 'pod-pxy')} #{$server.full_hostname}" \ + " -- -o #{file_path} -p 8022 #{get_target('proxy').full_hostname.sub('pxy', 'pod-pxy')} #{get_target('server').full_hostname}" \ " 2048 galaxy-noise@suse.de --ca-pass cert_pass" \ " && rm cert_pass" - $server.run(command) + get_target('server').run(command) end When(/^I add avahi hosts in Containerized Proxy configuration$/) do - if $server.full_hostname.include? 'tf.local' - hosts_list = "" + if get_target('server').full_hostname.include? 'tf.local' + hosts_list = '' $host_by_node.each do |node, _host| hosts_list += "--add-host=#{node.full_hostname}:#{node.public_ip} " end hosts_list = escape_regex(hosts_list) regex = "s/^#?EXTRA_POD_ARGS=.*$/EXTRA_POD_ARGS=#{hosts_list}/g;" - $proxy.run("sed -i.bak -Ee '#{regex}' /etc/sysconfig/uyuni-proxy-systemd-services") + get_target('proxy').run("sed -i.bak -Ee '#{regex}' /etc/sysconfig/uyuni-proxy-systemd-services") log "Avahi hosts added: #{hosts_list}" log 'The Development team has not been working to support avahi in Containerized Proxy, yet. This is best effort.' else @@ -1396,7 +1456,7 @@ end Then(/^port "([^"]*)" should be (open|closed)$/) do |port, selection| - _output, code = $server.run("ss --listening --numeric | grep :#{port}", check_errors: false, verbose: true) + _output, code = get_target('server').run("ss --listening --numeric | grep :#{port}", check_errors: false, verbose: true) port_opened = code.zero? if selection == 'closed' raise "Port '#{port}' open although it should not be!" if port_opened @@ -1407,19 +1467,17 @@ # rebooting via SSH When(/^I reboot the server through SSH$/) do - init_string = "ssh:#{$server.public_ip}" - temp_server = twopence_init(init_string) - temp_server.extend(LavandaBasic) + temp_server = twopence_init('server') temp_server.run('reboot > /dev/null 2> /dev/null &') default_timeout = 300 - check_shutdown($server.public_ip, default_timeout) - check_restart($server.public_ip, temp_server, default_timeout) + check_shutdown(get_target('server').public_ip, default_timeout) + check_restart(get_target('server').public_ip, temp_server, default_timeout) - repeat_until_timeout(timeout: default_timeout, message: "Spacewalk didn't come up") do + repeat_until_timeout(timeout: default_timeout, message: 'Spacewalk didn\'t come up') do out, code = temp_server.run('spacewalk-service status', check_errors: false, timeout: 10) - if !out.to_s.include? "dead" and out.to_s.include? "running" - log "Server spacewalk service is up" + if !out.to_s.include? 'dead' and out.to_s.include? 'running' + log 'Server spacewalk service is up' break end sleep 1 @@ -1431,7 +1489,7 @@ node.run('reboot > /dev/null 2> /dev/null &') reboot_timeout = 120 check_shutdown(node.public_ip, reboot_timeout) - check_restart($server.public_ip, node, reboot_timeout) + check_restart(get_target('server').public_ip, node, reboot_timeout) end When(/^I reboot the "([^"]*)" minion through the web UI$/) do |host| @@ -1453,56 +1511,59 @@ end end +# changing hostname When(/^I change the server's short hostname from hosts and hostname files$/) do - old_hostname = $server.hostname + server_node = get_target('server') + old_hostname = server_node.hostname new_hostname = old_hostname + '2' - log "New short hostname: #{new_hostname}" - - $server.run("sed -i 's/#{old_hostname}/#{new_hostname}/g' /etc/hostname && - echo '#{$server.public_ip} #{$server.full_hostname} #{old_hostname}' >> /etc/hosts && - echo '#{$server.public_ip} #{new_hostname}#{$server.full_hostname.delete_prefix($server.hostname)} #{new_hostname}' >> /etc/hosts") + log "Old hostname: #{old_hostname} - New hostname: #{new_hostname}" + server_node.run("sed -i 's/#{old_hostname}/#{new_hostname}/g' /etc/hostname && + hostname #{new_hostname} && + echo '#{server_node.public_ip} #{server_node.full_hostname} #{old_hostname}' >> /etc/hosts && + echo '#{server_node.public_ip} #{new_hostname}#{server_node.full_hostname.delete_prefix(server_node.hostname)} #{new_hostname}' >> /etc/hosts") + get_target('server', refresh: true) # This will refresh the attributes of this node end -# changing hostname When(/^I run spacewalk-hostname-rename command on the server$/) do - temp_server = twopence_init("ssh:#{$server.public_ip}") - temp_server.extend(LavandaBasic) - command = "spacecmd --nossl -q api api.getVersion -u admin -p admin; " \ - "spacewalk-hostname-rename #{$server.public_ip} " \ - "--ssl-country=DE --ssl-state=Bayern --ssl-city=Nuremberg " \ - "--ssl-org=SUSE --ssl-orgunit=SUSE --ssl-email=galaxy-noise@suse.de " \ - "--ssl-ca-password=spacewalk" - out_spacewalk, result_code = temp_server.run(command, check_errors: false) + server_node = get_target('server') + command = 'spacecmd --nossl -q api api.getVersion -u admin -p admin; ' \ + "spacewalk-hostname-rename #{server_node.public_ip} " \ + '--ssl-country=DE --ssl-state=Bayern --ssl-city=Nuremberg ' \ + '--ssl-org=SUSE --ssl-orgunit=SUSE --ssl-email=galaxy-noise@suse.de ' \ + '--ssl-ca-password=spacewalk' + out_spacewalk, result_code = server_node.run(command, check_errors: false) log "#{out_spacewalk}" + server_node = get_target('server', refresh: true) # This will refresh the attributes of this node + default_timeout = 300 - repeat_until_timeout(timeout: default_timeout, message: "Spacewalk didn't come up") do - out, code = temp_server.run('spacewalk-service status', check_errors: false, timeout: 10) - if !out.to_s.include? "dead" and out.to_s.include? "running" - log "Server: spacewalk service is up" + repeat_until_timeout(timeout: default_timeout, message: 'Spacewalk didn\'t come up') do + out, _code = server_node.run('spacewalk-service status', check_errors: false, timeout: 10) + if !out.to_s.include? 'dead' and out.to_s.include? 'running' + log 'Server: spacewalk service is up' break end sleep 1 end - raise "Error while running spacewalk-hostname-rename command - see logs above" unless result_code.zero? - raise "Error in the output logs - see logs above" if out_spacewalk.include? "No such file or directory" + raise 'Error while running spacewalk-hostname-rename command - see logs above' unless result_code.zero? + raise 'Error in the output logs - see logs above' if out_spacewalk.include? 'No such file or directory' end When(/^I change back the server's hostname$/) do - init_string = "ssh:#{$server.public_ip}" - temp_server = twopence_init(init_string) - temp_server.extend(LavandaBasic) - temp_server.run("echo '#{$server.full_hostname}' > /etc/hostname ") -end - -When(/^I clean up the server's hosts file$/) do - command = "sed -i '$d' /etc/hosts && sed -i '$d' /etc/hosts" - $server.run(command) + server_node = get_target('server') + old_hostname = server_node.hostname + new_hostname = old_hostname.delete_suffix('2') + log "Old hostname: #{old_hostname} - New hostname: #{new_hostname}" + server_node.run("sed -i 's/#{old_hostname}/#{new_hostname}/g' /etc/hostname && + hostname #{new_hostname} && + sed -i \'$d\' /etc/hosts && + sed -i \'$d\' /etc/hosts") + get_target('server', refresh: true) # This will refresh the attributes of this node end When(/^I enable firewall ports for monitoring on this "([^"]*)"$/) do |host| add_ports = '' - for port in [9100, 9117, 9187] do + [9100, 9117, 9187].each do |port| add_ports += "firewall-cmd --add-port=#{port}/tcp --permanent && " end cmd = "#{add_ports.rstrip!} firewall-cmd --reload" @@ -1515,27 +1576,34 @@ When(/^I restart the "([^"]*)" service on "([^"]*)"$/) do |service, minion| node = get_target(minion) - node.run("systemctl restart #{service}", check_errors: true) + node.run("systemctl restart #{service}", check_errors: true, verbose: true) +end + +When(/^I reload the "([^"]*)" service on "([^"]*)"$/) do |service, minion| + node = get_target(minion) + node.run("systemctl reload #{service}", check_errors: true, verbose: true) end When(/^I delete the system "([^"]*)" via spacecmd$/) do |minion| node = get_system_name(minion) command = "spacecmd -u admin -p admin -y system_delete #{node}" - $server.run(command, check_errors: true, verbose: true) + get_target('server').run(command, check_errors: true, verbose: true) end When(/^I execute "([^"]*)" on the "([^"]*)"$/) do |command, host| node = get_target(host) - command_output, _code = node.run(command, check_errors: true, verbose: true) + node.run(command, check_errors: true, verbose: true) end When(/^I check the cloud-init status on "([^"]*)"$/) do |host| node = get_target(host) - _hostname, local, remote, node_code = node.test_and_store_results_together('hostname', 'root', 500) - command_output, _code = node.run("cloud-init status --wait", check_errors: true, verbose: false) + node.test_and_store_results_together('hostname', 'root', 500) + node.run('cloud-init status --wait', check_errors: true, verbose: false) - until command_output.include?("done") - command_output, code = node.run("cloud-init status --wait", check_errors: true, verbose: false) + repeat_until_timeout(report_result: true) do + command_output, code = node.run('cloud-init status --wait', check_errors: true, verbose: false) + break if command_output.include?('done') + sleep 2 raise StandardError 'Error during cloud-init.' if code == 1 end end diff --git a/testsuite/features/step_definitions/common_steps.rb b/testsuite/features/step_definitions/common_steps.rb index 26f0b089b218..0c67cfd6eb67 100644 --- a/testsuite/features/step_definitions/common_steps.rb +++ b/testsuite/features/step_definitions/common_steps.rb @@ -26,12 +26,12 @@ iso_path = url.sub(/^http:.*\/pub/, '/mirror/pub') else iso_path = "/tmp/#{name}.iso" - $server.run("wget --no-check-certificate -O #{iso_path} #{url}", timeout: 1500) + get_target('server').run("wget --no-check-certificate -O #{iso_path} #{url}", timeout: 1500) end mount_point = "/srv/www/htdocs/#{name}" - $server.run("mkdir -p #{mount_point}") - $server.run("grep #{iso_path} /etc/fstab || echo '#{iso_path} #{mount_point} iso9660 loop,ro,_netdev 0 0' >> /etc/fstab") - $server.run("umount #{iso_path}; mount #{iso_path}") + get_target('server').run("mkdir -p #{mount_point}") + get_target('server').run("grep #{iso_path} /etc/fstab || echo '#{iso_path} #{mount_point} iso9660 loop,ro,_netdev 0 0' >> /etc/fstab") + get_target('server').run("umount #{iso_path}; mount #{iso_path}") end Then(/^the hostname for "([^"]*)" should be correct$/) do |host| @@ -72,9 +72,9 @@ ipv6_addresses_list.map! { |ip_line| ip_line.slice(/2[:0-9a-f]*|fe80:[:0-9a-f]*/) } # confirms that the IPv6 address shown on the page is part of that list and, therefore, valid - ipv6_address = find(:xpath, "//td[text()='IPv6 Address:']/following-sibling::td[1]").text + ipv6_address = find(:xpath, '//td[text()=\'IPv6 Address:\']/following-sibling::td[1]').text log "IPv6 address: #{ipv6_address}" - raise unless ipv6_addresses_list.include? ipv6_address + raise "List of IPv6 addresses: #{ipv6_addresses_list} doesn't include #{ipv6_address}" unless ipv6_addresses_list.include? ipv6_address end Then(/^the system ID for "([^"]*)" should be correct$/) do |host| @@ -98,27 +98,26 @@ # the moment.js library being used has some weird rules, which these conditionals follow if (uptime[:days] >= 1 && rounded_uptime_days < 2) || (uptime[:days] < 1 && rounded_uptime_hours >= 22) # shows "a day ago" after 22 hours and before it's been 1.5 days - step %(I should see a "a day ago" text) + step 'I should see a "a day ago" text' elsif rounded_uptime_hours > 1 && rounded_uptime_hours <= 21 step %(I should see a "#{rounded_uptime_hours} hours ago" text) elsif rounded_uptime_minutes >= 45 && rounded_uptime_hours == 1 # shows "an hour ago" from 45 minutes onwards up to 1.5 hours - step %(I should see a "an hour ago" text) + step 'I should see a "an hour ago" text' elsif rounded_uptime_minutes > 1 && rounded_uptime_hours <= 1 step %(I should see a "#{rounded_uptime_minutes} minutes ago" text) elsif uptime[:seconds] >= 45 && rounded_uptime_minutes == 1 - step %(I should see a "a minute ago" text) + step 'I should see a "a minute ago" text' elsif uptime[:seconds] < 45 - step %(I should see a "a few seconds ago" text) + step 'I should see a "a few seconds ago" text' elsif rounded_uptime_days < 25 step %(I should see a "#{rounded_uptime_days} days ago" text) # shows "a month ago" from 25 days onwards else - step %(I should see a "a month ago" text) + step 'I should see a "a month ago" text' end end -Then(/^I should see several text fields for "([^"]*)"$/) do |host| - node = get_target(host) - steps %(Then I should see a "UUID" text +Then(/^I should see several text fields$/) do + steps 'Then I should see a "UUID" text And I should see a "Virtualization" text And I should see a "Installed Products" text And I should see a "Checked In" text @@ -128,7 +127,7 @@ And I should see a "Maintenance Schedule" text And I should see a "Description" text And I should see a "Location" text - ) + ' end # events @@ -142,12 +141,16 @@ # same name in the events history - however, that's the best we have so far. steps %( When I follow "Events" + And I wait until I see "Pending Events" text And I follow "Pending" + And I wait until I see "Pending Events" text And I wait at most #{pickup_timeout} seconds until I do not see "#{event}" text, refreshing the page And I follow "History" And I wait until I see "System History" text And I wait until I see "#{event}" text, refreshing the page And I follow first "#{event}" + And I wait until I see "This action will be executed after" text + And I wait until I see "#{event}" text And I wait at most #{complete_timeout} seconds until the event is completed, refreshing the page ) end @@ -205,7 +208,7 @@ # bare metal When(/^I check the ram value of the "([^"]*)"$/) do |host| node = get_target(host) - get_ram_value = "grep MemTotal /proc/meminfo |awk '{print $2}'" + get_ram_value = 'grep MemTotal /proc/meminfo |awk \'{print $2}\'' ram_value, _local, _remote, _code = node.test_and_store_results_together(get_ram_value, 'root', 600) ram_value = ram_value.gsub(/\s+/, '') ram_mb = ram_value.to_i / 1024 @@ -223,7 +226,7 @@ Then(/^I should see the CPU frequency of the "([^"]*)"$/) do |host| node = get_target(host) - get_cpu_freq = "cat /proc/cpuinfo | grep -i 'CPU MHz'" # | awk '{print $4}'" + get_cpu_freq = 'cat /proc/cpuinfo | grep -i \'CPU MHz\'' # | awk '{print $4}'" cpu_freq, _local, _remote, _code = node.test_and_store_results_together(get_cpu_freq, 'root', 600) get_cpu = cpu_freq.gsub(/\s+/, '') cpu = get_cpu.split('.') @@ -232,7 +235,7 @@ end Then(/^I should see the power is "([^"]*)"$/) do |status| - within(:xpath, "//*[@for='powerStatus']/..") do + within(:xpath, '//*[@for=\'powerStatus\']/..') do repeat_until_timeout(message: "power is not #{status}") do break if has_content?(status) find(:xpath, '//button[@value="Get status"]').click @@ -247,10 +250,10 @@ # systemspage Given(/^I am on the Systems page$/) do - steps %( + steps ' And I follow the left menu "Systems > System List > All" And I wait until I do not see "Loading..." text - ) + ' end When(/^I attach the file "(.*)" to "(.*)"$/) do |path, field| @@ -275,7 +278,7 @@ # rubocop:disable Metrics/BlockLength # WORKAROUND for https://github.com/SUSE/spacewalk/issues/20318 When(/^I install the needed packages for highstate in build host$/) do - packages = "bea-stax + packages = 'bea-stax bea-stax-api btrfsmaintenance btrfsprogs @@ -454,8 +457,8 @@ xml-commons-apis xml-commons-resolver xorriso - xtables-plugins" - $build_host.run("zypper --non-interactive in #{packages}", timeout: 600) + xtables-plugins' + get_target('build_host').run("zypper --non-interactive in #{packages}", timeout: 600) end # rubocop:enable Metrics/BlockLength @@ -472,8 +475,8 @@ Then(/^"(\d+)" channels should be enabled on "([^"]*)"$/) do |count, host| node = get_target(host) - node.run("zypper lr -E | tail -n +5", verbose: true) - out, _code = node.run("zypper lr -E | tail -n +5 | wc -l") + node.run('zypper lr -E | tail -n +5', verbose: true) + out, _code = node.run('zypper lr -E | tail -n +5 | wc -l') raise "Expected #{count} channels enabled but found #{out}." unless count.to_i == out.to_i end @@ -500,14 +503,14 @@ end Given(/^metadata generation finished for "([^"]*)"$/) do |channel| - $server.run_until_ok("ls /var/cache/rhn/repodata/#{channel}/*updateinfo.xml.gz") + get_target('server').run_until_ok("ls /var/cache/rhn/repodata/#{channel}/*updateinfo.xml.gz") end When(/^I push package "([^"]*)" into "([^"]*)" channel$/) do |arg1, arg2| - srvurl = "http://#{ENV['SERVER']}/APP" + srvurl = "https://#{ENV['SERVER']}/APP" command = "rhnpush --server=#{srvurl} -u admin -p admin --nosig -c #{arg2} #{arg1} " - $server.run(command, timeout: 500) - $server.run('ls -lR /var/spacewalk/packages', timeout: 500) + get_target('server').run(command, timeout: 500) + get_target('server').run('ls -lR /var/spacewalk/packages', timeout: 500) end Then(/^I should see package "([^"]*)" in channel "([^"]*)"$/) do |pkg, channel| @@ -520,12 +523,12 @@ end When(/^I schedule a task to update ReportDB$/) do - steps %( + steps ' When I follow the left menu "Admin > Task Schedules" And I follow "update-reporting-default" And I follow "mgr-update-reporting-bunch" And I click on "Single Run Schedule" Then I should see a "bunch was scheduled" text And I wait until the table contains "FINISHED" or "SKIPPED" followed by "FINISHED" in its first rows - ) + ' end diff --git a/testsuite/features/step_definitions/content_lifecycle_steps.rb b/testsuite/features/step_definitions/content_lifecycle_steps.rb index f0eaecb4c6d2..2227b65b4223 100644 --- a/testsuite/features/step_definitions/content_lifecycle_steps.rb +++ b/testsuite/features/step_definitions/content_lifecycle_steps.rb @@ -10,7 +10,7 @@ When(/^I click promote from Development to QA$/) do begin - promote_first = first(:xpath, "//button[contains(., 'Promote')]") + promote_first = first(:xpath, '//button[contains(., \'Promote\')]') promote_first.click rescue Capybara::ElementNotFound => e raise "Click on promote from Development failed: #{e}" @@ -19,7 +19,7 @@ When(/^I click promote from QA to Production$/) do begin - promote_second = find_all(:xpath, "//button[contains(., 'Promote')]", minimum: 2)[1] + promote_second = find_all(:xpath, '//button[contains(., \'Promote\')]', minimum: 2)[1] promote_second.click rescue Capybara::ElementNotFound => e raise "Click on promote from QA failed: #{e}" @@ -46,15 +46,15 @@ When(/^I add the "([^"]*)" channel to sources$/) do |channel| within(:xpath, "//span[text()='#{channel}']/../..") do - raise "Add channel failed" unless find(:xpath, './/input[@type="checkbox"]').set(true) + raise 'Add channel failed' unless find(:xpath, './/input[@type="checkbox"]').set(true) end end When(/^I click the "([^\"]*)" item (.*?) button$/) do |name, action| button = case action - when /details/ then "i[contains(@class, 'fa-list')]" - when /edit/ then "i[contains(@class, 'fa-edit')]" - when /delete/ then "i[contains(@class, 'fa-trash')]" + when /details/ then 'i[contains(@class, \'fa-list\')]' + when /edit/ then 'i[contains(@class, \'fa-edit\')]' + when /delete/ then 'i[contains(@class, \'fa-trash\')]' else raise "Unknown element with description '#{action}'" end xpath = "//td[contains(text(), '#{name}')]/ancestor::tr/td/div/button/#{button}" @@ -93,31 +93,31 @@ When(/^I add "([^\"]*)" calendar file as url$/) do |file| source = File.dirname(__FILE__) + '/../upload_files/' + file - dest = "/srv/www/htdocs/pub/" + file - return_code = file_inject($server, source, dest) + dest = '/srv/www/htdocs/pub/' + file + return_code = file_inject(get_target('server'), source, dest) raise 'File injection failed' unless return_code.zero? - $server.run("chmod 644 #{dest}") - url = "https://#{$server.full_hostname}/pub/" + file + get_target('server').run("chmod 644 #{dest}") + url = "https://#{get_target('server').full_hostname}/pub/" + file log "URL: #{url}" step %(I enter "#{url}" as "calendar-data-text") end When(/^I deploy testing playbooks and inventory files to "([^"]*)"$/) do |host| target = get_target(host) - dest = "/srv/playbooks/orion_dummy/" + dest = '/srv/playbooks/orion_dummy/' target.run("mkdir -p #{dest}") source = File.dirname(__FILE__) + '/../upload_files/ansible/playbooks/orion_dummy/playbook_orion_dummy.yml' - return_code = file_inject(target, source, dest + "playbook_orion_dummy.yml") + return_code = file_inject(target, source, dest + 'playbook_orion_dummy.yml') raise 'File injection failed' unless return_code.zero? source = File.dirname(__FILE__) + '/../upload_files/ansible/playbooks/orion_dummy/hosts' - return_code = file_inject(target, source, dest + "hosts") + return_code = file_inject(target, source, dest + 'hosts') raise 'File injection failed' unless return_code.zero? source = File.dirname(__FILE__) + '/../upload_files/ansible/playbooks/orion_dummy/file.txt' - return_code = file_inject(target, source, dest + "file.txt") + return_code = file_inject(target, source, dest + 'file.txt') raise 'File injection failed' unless return_code.zero? - dest = "/srv/playbooks/" + dest = '/srv/playbooks/' source = File.dirname(__FILE__) + '/../upload_files/ansible/playbooks/playbook_ping.yml' - return_code = file_inject(target, source, dest + "playbook_ping.yml") + return_code = file_inject(target, source, dest + 'playbook_ping.yml') raise 'File injection failed' unless return_code.zero? end diff --git a/testsuite/features/step_definitions/datepicker_steps.rb b/testsuite/features/step_definitions/datepicker_steps.rb index f4571fd0ca9b..9561b2b88bae 100644 --- a/testsuite/features/step_definitions/datepicker_steps.rb +++ b/testsuite/features/step_definitions/datepicker_steps.rb @@ -50,7 +50,7 @@ def get_future_time(minutes_to_add) end Then(/^the date picker title should be "([^"]*)"$/) do |arg1| - step %(I open the date picker) if has_no_css?('.date-time-picker-popup') + step 'I open the date picker' if has_no_css?('.date-time-picker-popup') switch = find('.date-time-picker-popup .react-datepicker__current-month') raise unless switch.has_content?(arg1) end @@ -71,13 +71,13 @@ def get_future_time(minutes_to_add) When(/^I pick (\d+) minutes from now as schedule time$/) do |arg1| action_time = get_future_time(arg1) - raise unless find(:xpath, "//*[@id='date_timepicker_widget_input']", wait: 2) + raise unless find(:xpath, '//*[@id=\'date_timepicker_widget_input\']', wait: 2) step %(I enter "#{action_time}" as "date_timepicker_widget_input") end When(/^I schedule action to (\d+) minutes from now$/) do |minutes| - action_time = (DateTime.now + Rational(1,1440) * minutes.to_i + Rational(59,86400)).strftime("%Y-%m-%dT%H:%M%:z") + action_time = (DateTime.now + Rational(1,1440) * minutes.to_i + Rational(59,86400)).strftime('%Y-%m-%dT%H:%M%:z') execute_script("window.schedulePage.setScheduleTime('#{action_time}')") end diff --git a/testsuite/features/step_definitions/docker_steps.rb b/testsuite/features/step_definitions/docker_steps.rb index 845717ad656e..986add34c435 100644 --- a/testsuite/features/step_definitions/docker_steps.rb +++ b/testsuite/features/step_definitions/docker_steps.rb @@ -12,9 +12,9 @@ def retrieve_build_host_id systems = $api_test.system.list_systems refute_nil(systems) build_host_id = systems - .select { |s| s['name'] == $build_host.full_hostname } + .select { |s| s['name'] == get_target('build_host').full_hostname } .map { |s| s['id'] }.first - refute_nil(build_host_id, "Build host #{$build_host.full_hostname} is not yet registered?") + refute_nil(build_host_id, "Build host #{get_target('build_host').full_hostname} is not yet registered?") build_host_id end @@ -78,10 +78,10 @@ def retrieve_build_host_id # so it should be used only in the first image building scenario When(/^I wait at most (\d+) seconds until all "([^"]*)" container images are built correctly on the Image List page$/) do |timeout, count| repeat_until_timeout(timeout: timeout.to_i, message: 'at least one image was not built correctly') do - step %(I follow the left menu "Images > Image List") - step %(I wait until I do not see "There are no entries to show." text) - raise 'error detected while building images' if has_xpath?("//tr[td[text()='Container Image']][td//*[contains(@title, 'Failed')]]") - break if has_xpath?("//tr[td[text()='Container Image']][td//*[contains(@title, 'Built')]]", count: count) + step 'I follow the left menu "Images > Image List"' + step 'I wait until I do not see "There are no entries to show." text' + raise 'error detected while building images' if has_xpath?('//tr[td[text()=\'Container Image\']][td//*[contains(@title, \'Failed\')]]') + break if has_xpath?('//tr[td[text()=\'Container Image\']][td//*[contains(@title, \'Built\')]]', count: count) sleep 5 end end diff --git a/testsuite/features/step_definitions/file_management_steps.rb b/testsuite/features/step_definitions/file_management_steps.rb index 8766a7110ea7..c86bd605ddc5 100644 --- a/testsuite/features/step_definitions/file_management_steps.rb +++ b/testsuite/features/step_definitions/file_management_steps.rb @@ -6,7 +6,7 @@ # generic file management steps When(/^I destroy "([^"]*)" directory on server$/) do |directory| - $server.run("rm -rf #{directory}") + get_target('server').run("rm -rf #{directory}") end When(/^I destroy "([^"]*)" directory on "([^"]*)"$/) do |directory, host| @@ -20,7 +20,7 @@ end Then(/^file "([^"]*)" should exist on server$/) do |filename| - $server.run("test -f #{filename}") + get_target('server').run("test -f #{filename}") end Then(/^file "([^"]*)" should exist on "([^"]*)"$/) do |filename, host| @@ -34,7 +34,7 @@ end Then(/^file "([^"]*)" should not exist on server$/) do |filename| - $server.run("test ! -f #{filename}") + get_target('server').run("test ! -f #{filename}") end Then(/^file "([^"]*)" should not exist on "([^"]*)"$/) do |filename, host| @@ -49,14 +49,14 @@ When(/^I bootstrap "([^"]*)" using bootstrap script with activation key "([^"]*)" from the (server|proxy)$/) do |host, key, target_type| # Use server if proxy is not defined as proxy is not mandatory - target = $proxy - if target_type.include? 'server' or $proxy.nil? + target = get_target('proxy') + if target_type.include? 'server' or get_target('proxy').nil? log 'WARN: Bootstrapping to server, because proxy is not defined.' unless target_type.include? 'server' - target = $server + target = get_target('server') end # Prepare bootstrap script for different types of clients - force_bundle = $use_salt_bundle ? '--force-bundle' : '' + force_bundle = use_salt_bundle ? '--force-bundle' : '' node = get_target(host) gpg_keys = get_gpg_keys(node, target) @@ -79,10 +79,10 @@ return_code = file_inject(target, source, dest) raise 'File injection failed' unless return_code.zero? system_name = get_system_name(host) - output, = target.run("expect -f /tmp/#{boostrap_script} #{system_name}", verbose: true) + output, = target.run("sed -i '/^set timeout /c\\set timeout #{DEFAULT_TIMEOUT}' /tmp/#{boostrap_script} && expect -f /tmp/#{boostrap_script} #{system_name}", verbose: true) unless output.include? '-bootstrap complete-' - log output - raise "Bootstrap didn't finish properly" + log output.encode('utf-8', invalid: :replace, undef: :replace, replace: '_') + raise 'Bootstrap didn\'t finish properly' end end @@ -94,5 +94,5 @@ Then(/^I remove server hostname from hosts file on "([^"]*)"$/) do |host| node = get_target(host) - node.run("sed -i \'s/#{$server.full_hostname}//\' /etc/hosts") + node.run("sed -i \'s/#{get_target('server').full_hostname}//\' /etc/hosts") end diff --git a/testsuite/features/step_definitions/lock_packages_on_client.rb b/testsuite/features/step_definitions/lock_packages_on_client.rb index f52d08a8294c..be9a8d631b99 100644 --- a/testsuite/features/step_definitions/lock_packages_on_client.rb +++ b/testsuite/features/step_definitions/lock_packages_on_client.rb @@ -15,20 +15,20 @@ Then(/^package "(.*?)" is reported as locked$/) do |pkg| find(:xpath, "(//a[text()='#{pkg}'])[1]") - locked_pkgs = all(:xpath, "//i[@class='fa fa-lock']/../a") + locked_pkgs = all(:xpath, '//i[@class=\'fa fa-lock\']/../a') raise 'No packages locked' if locked_pkgs.empty? raise "Package #{pkg} not found as locked" unless locked_pkgs.find { |a| a.text =~ /^#{pkg}/ } end Then(/^package "(.*?)" is reported as unlocked$/) do |pkg| find(:xpath, "(//a[text()='#{pkg}'])[1]") - locked_pkgs = all(:xpath, "//i[@class='fa fa-lock']/../a") + locked_pkgs = all(:xpath, '//i[@class=\'fa fa-lock\']/../a') raise "Package #{pkg} found as locked" if locked_pkgs.find { |a| a.text =~ /^#{pkg}/ } end Then(/^the package scheduled is "(.*?)"$/) do |pkg| - match = find(:xpath, "//li[@class='list-group-item']//li") + match = find(:xpath, '//li[@class=\'list-group-item\']//li') raise 'List of packages not found' unless match raise "Package #{pkg} not found" unless match.text =~ /^#{pkg}/ diff --git a/testsuite/features/step_definitions/navigation_steps.rb b/testsuite/features/step_definitions/navigation_steps.rb index ed095647bc65..073187c8e642 100644 --- a/testsuite/features/step_definitions/navigation_steps.rb +++ b/testsuite/features/step_definitions/navigation_steps.rb @@ -110,6 +110,7 @@ end When(/^I wait until I see the name of "([^"]*)", refreshing the page$/) do |host| + raise 'Overview System page didn\'t load' unless has_content?('Download CSV') || has_content?('Keys') system_name = get_system_name(host) step %(I wait until I see the "#{system_name}" system, refreshing the page) end @@ -201,7 +202,7 @@ end When(/^I select the parent channel for the "([^"]*)" from "([^"]*)"$/) do |client, from| - select(BASE_CHANNEL_BY_CLIENT[client], from: from, exact: false) + select(BASE_CHANNEL_BY_CLIENT[product][client], from: from, exact: false) end When(/^I select "([^"]*)" from drop-down in table line with "([^"]*)"$/) do |value, line| @@ -392,7 +393,7 @@ ensure visit Capybara.app_host end - raise "Button 'Sign In' not visible" unless find_button('Sign In').visible? + raise 'Button \'Sign In\' not visible' unless find_button('Sign In').visible? end When(/^I go to the home page$/) do @@ -408,9 +409,9 @@ Given(/^I am authorized for the "([^"]*)" section$/) do |section| case section when 'Admin' - step %(I am authorized as "admin" with password "admin") + step 'I am authorized as "admin" with password "admin"' when 'Images' - step %(I am authorized as "kiwikiwi" with password "kiwikiwi") + step 'I am authorized as "kiwikiwi" with password "kiwikiwi"' else log "Section #{section} not supported" end @@ -452,9 +453,8 @@ system_name = get_system_name(host) rescue raise "Host #{host} not found" if if_present.empty? - log "Host #{host} is not deployed, not trying to select it" - return + next end step %(I select "#{system_name}" from "#{field}") end @@ -483,7 +483,7 @@ Then(/^the table row for "([^"]*)" should( not)? contain "([^"]*)" icon$/) do |row, should_not, icon| case icon when 'retracted' - content_selector = "i[class*='errata-retracted']" + content_selector = 'i[class*=\'errata-retracted\']' else raise "Unsupported icon '#{icon}' in the step definition" end @@ -530,34 +530,36 @@ end next if all(:xpath, "//header//span[text()='#{user}']", wait: 0).any? - find(:xpath, "//header//i[@class='fa fa-sign-out']").click if all(:xpath, "//header//i[@class='fa fa-sign-out']", wait: 0).any? + find(:xpath, '//header//i[@class=\'fa fa-sign-out\']').click if all(:xpath, '//header//i[@class=\'fa fa-sign-out\']', wait: 0).any? + raise 'Login page is not correctly loaded' unless has_field?('username') fill_in('username', with: user) fill_in('password', with: passwd) click_button_and_wait('Sign In', match: :first) - step %(I should be logged in) + step 'I should be logged in' end Given(/^I am authorized$/) do - step %(I am authorized as "testing" with password "testing") + step 'I am authorized as "testing" with password "testing"' end When(/^I sign out$/) do - find(:xpath, "//a[@href='/rhn/Logout.do']").click + find(:xpath, '//a[@href=\'/rhn/Logout.do\']').click end Then(/^I should not be authorized$/) do - raise 'User is authorized' if has_xpath?("//a[@href='/rhn/Logout.do']") + raise 'User is authorized' if has_xpath?('//a[@href=\'/rhn/Logout.do\']') end Then(/^I should be logged in$/) do - xpath_query = "//a[@href='/rhn/Logout.do']" - raise 'User is not logged in' unless find(:xpath, xpath_query) + xpath_query = '//a[@href=\'/rhn/Logout.do\']' + # Check if the user is logged in, using the specified wait_time + raise 'User is not logged in' unless has_selector?(:xpath, xpath_query, wait: Capybara.default_max_wait_time * 2) end Then(/^I am logged in$/) do - raise 'User is not logged in' unless find(:xpath, "//a[@href='/rhn/Logout.do']").visible? + raise 'User is not logged in' unless find(:xpath, '//a[@href=\'/rhn/Logout.do\']').visible? # text = "You have just created your first #{product} user. To finalize your installation please use the Setup Wizard" # Workaround: Ignore the fact that the message is not shown # TODO: restore this as soon as the related issue is fixed: https://github.com/SUSE/spacewalk/issues/19369 @@ -570,7 +572,7 @@ end When(/^I check test channel$/) do - step %(I check "Fake Base Channel" in the list) + step 'I check "Fake Base Channel" in the list' end When(/^I check "([^"]*)" patch$/) do |arg1| @@ -700,11 +702,11 @@ repeat_until_timeout(timeout: 800, message: 'Task does not look FINISHED yet') do visit current_url # get all texts in the table column under the "Status" header - status_tds = "//tr/td[count(//th[contains(*/text(), 'Status')]/preceding-sibling::*) + 1]" + status_tds = '//tr/td[count(//th[contains(*/text(), \'Status\')]/preceding-sibling::*) + 1]' statuses = all(:xpath, status_tds).map(&:text) # get all texts in the table column under the "Start time" header - start_time_tds = "//tr/td[count(//th[contains(*/text(), 'Start Time')]/preceding-sibling::*) + 1]" + start_time_tds = '//tr/td[count(//th[contains(*/text(), \'Start Time\')]/preceding-sibling::*) + 1]' start_times = all(:xpath, start_time_tds).map(&:text) # disregard any number of initial unimportant rows, that is: @@ -763,7 +765,7 @@ end Then(/^I should not see a warning sign$/) do - raise 'Warning detected' unless page.has_no_xpath?("//*[contains(@class, 'fa fa-li fa-exclamation-triangle text-warning')]") + raise 'Warning detected' unless page.has_no_xpath?('//*[contains(@class, \'fa fa-li fa-exclamation-triangle text-warning\')]') end Then(/^I select the "([^"]*)" repo$/) do |repo| @@ -779,7 +781,7 @@ end When(/^I check the first patch in the list$/) do - step %(I check the first row in the list) + step 'I check the first row in the list' end When(/^I click on the red confirmation button$/) do @@ -787,7 +789,7 @@ end When(/^I click on the clear SSM button$/) do - find_and_wait_click(:xpath, "//*[@id='clear-ssm']").click + find_and_wait_click(:xpath, '//*[@id=\'clear-ssm\']').click end When(/^I click on the filter button$/) do @@ -813,31 +815,35 @@ When(/^I enter the hostname of "([^"]*)" as the filtered system name$/) do |host| system_name = get_system_name(host) - find("input[placeholder='Filter by System Name: ']").set(system_name) + find('input[placeholder=\'Filter by System Name: \']').set(system_name) end When(/^I enter "([^"]*)" as the filtered package name$/) do |input| - find("input[placeholder='Filter by Package Name: ']").set(input) + find('input[placeholder=\'Filter by Package Name: \']').set(input) end When(/^I enter "([^"]*)" as the filtered synopsis$/) do |input| - find("input[placeholder='Filter by Synopsis: ']").set(input) + find('input[placeholder=\'Filter by Synopsis: \']').set(input) end When(/^I enter "([^"]*)" as the filtered channel name$/) do |input| - find("input[placeholder='Filter by Channel Name: ']").set(input) + find('input[placeholder=\'Filter by Channel Name: \']').set(input) end When(/^I enter "([^"]*)" as the filtered product description$/) do |input| - find("input[name='product-description-filter']").set(input) + find('input[name=\'product-description-filter\']').set(input) end When(/^I enter "([^"]*)" as the filtered XCCDF result type$/) do |input| - find("input[placeholder='Filter by Result: ']").set(input) + find('input[placeholder=\'Filter by Result: \']').set(input) end When(/^I enter "([^"]*)" as the filtered snippet name$/) do |input| - find("input[placeholder='Filter by Snippet Name: ']").set(input) + find('input[placeholder=\'Filter by Snippet Name: \']').set(input) +end + +When(/^I enter "([^"]*)" as the filtered formula name$/) do |input| + find('input[placeholder=\'Filter by formula name\']').set(input) end When(/^I enter the package for "([^"]*)" as the filtered package name$/) do |host| @@ -876,8 +882,8 @@ When(/^I check the first row in the list$/) do within(:xpath, '//section') do - row = find(:xpath, "//div[@class='table-responsive']/table/tbody/tr[.//td]", match: :first) - row.find(:xpath, ".//input[@type='checkbox']", match: :first).set(true) + row = find(:xpath, '//div[@class=\'table-responsive\']/table/tbody/tr[.//td]', match: :first) + row.find(:xpath, './/input[@type=\'checkbox\']', match: :first).set(true) end end @@ -964,7 +970,7 @@ end Then(/^I should see a Sign Out link$/) do - raise unless has_xpath?("//a[@href='/rhn/Logout.do']") + raise unless has_xpath?('//a[@href=\'/rhn/Logout.do\']') end Then(/^I should see (\d+) "([^"]*)" fields in "([^"]*)" form$/) do |count, name, id| @@ -1016,7 +1022,7 @@ # Check the Blackbox Exporter in the Prometheus formula When(/^I check the blackbox exporter$/) do - step %(I check "prometheus#blackbox_exporter#enabled") + step 'I check "prometheus#blackbox_exporter#enabled"' end # Navigate to a service endpoint @@ -1047,11 +1053,11 @@ end When(/^I select the next maintenance window$/) do - find(:xpath, "//select[@id='maintenance-window-select']/option", match: :first).select_option + find(:xpath, '//select[@id=\'maintenance-window-select\']/option', match: :first).select_option end When(/^I enter the server hostname as the redfish server address$/) do - step %(I enter "#{$server.full_hostname}:8443" as "powerAddress") + step %(I enter "#{get_target('server').full_hostname}:8443" as "powerAddress") end When(/^I clear browser cookies$/) do @@ -1059,7 +1065,7 @@ end When(/^I close the modal dialog$/) do - find(:xpath, "//*[contains(@class, 'modal-header')]/button[contains(@class, 'close')]").click + find(:xpath, '//*[contains(@class, \'modal-header\')]/button[contains(@class, \'close\')]').click end When(/^I refresh the page$/) do @@ -1073,7 +1079,7 @@ end When(/^I make a list of the existing systems$/) do - system_elements_list = find_all(:xpath, "//td[contains(@class, 'sortedCol')]") + system_elements_list = find_all(:xpath, '//td[contains(@class, \'sortedCol\')]') $systems_list = [] system_elements_list.each { |el| $systems_list << el.text } end @@ -1102,13 +1108,13 @@ # Confirm user has landed on a system's overview page Then(/^I should land on system's overview page$/) do - steps %( + steps ' Then I should see a "System Status" text And I should see a "System Info" text And I should see a "System Events" text And I should see a "System Properties" text And I should see a "Subscribed Channels" text - ) + ' end # In case of a search reindex not having finished yet, keep retrying until successful search or timeout @@ -1130,7 +1136,7 @@ end When(/^I enter "([^"]*)" hostname on grafana's host field$/) do |host| - step %(I click on "var-hostname") + step 'I click on "var-hostname"' system_name = get_system_name(host) step %(I enter "#{system_name}" as "Enter variable value") send_keys(:return) @@ -1139,7 +1145,7 @@ Then(/^I should see "([^"]*)" hostname as first search result$/) do |host| system_name = get_system_name(host) within(:xpath, '//section') do - row = find(:xpath, "//div[@class='table-responsive']/table/tbody/tr[.//td]", match: :first) + row = find(:xpath, '//div[@class=\'table-responsive\']/table/tbody/tr[.//td]', match: :first) within(row) do raise "Text '#{system_name}' not found" unless has_text?(system_name) end @@ -1151,7 +1157,7 @@ end Then(/^I should see left menu empty$/) do - raise StandardError, 'The left menu is not empty.' unless page.has_no_xpath?("//*[contains(@class, 'level1')]/*/*[contains(@class, 'nodeLink')]") + raise StandardError, 'The left menu is not empty.' unless page.has_no_xpath?('//*[contains(@class, \'level1\')]/*/*[contains(@class, \'nodeLink\')]') end Then(/^I should see the text "(.*?)" in the (Operating System|Architecture|Channel Label) field/) do |text, field| @@ -1162,10 +1168,10 @@ now = Time.now execute_script 'window.stop()' # find row with corresponding task name - page.find_all(:xpath, "//table[@class='table table-responsive']//tr").each do |tr| + page.find_all(:xpath, '//table[@class=\'table table-responsive\']//tr').each do |tr| next unless tr.has_text?(task_name) # if task name is found, iterate through the columns to find the timestamp - page.find_all(:xpath, "//table[@class='table table-responsive']//td").each do |td| + page.find_all(:xpath, '//table[@class=\'table table-responsive\']//td').each do |td| # if a text matching the format xx:xx is found, get and save the text next unless td.text.match(/\d{2}:\d{2}/) # Text from cell, parsed to a Time object must match now +- 5 seconds diff --git a/testsuite/features/step_definitions/retail_steps.rb b/testsuite/features/step_definitions/retail_steps.rb index 2ef7db9b89e8..f591ba9f0132 100644 --- a/testsuite/features/step_definitions/retail_steps.rb +++ b/testsuite/features/step_definitions/retail_steps.rb @@ -46,7 +46,7 @@ def compute_kiwi_profile_filename(host) case image when 'sles15sp3', 'sles15sp3o', 'sles15sp4', 'sles15sp4o' # 'Kiwi/POS_Image-JeOS7_42' for 4.2 branch - $product == 'Uyuni' ? 'Kiwi/POS_Image-JeOS7_uyuni' : 'Kiwi/POS_Image-JeOS7_head' + product == 'Uyuni' ? 'Kiwi/POS_Image-JeOS7_uyuni' : 'Kiwi/POS_Image-JeOS7_head' when 'sles15sp2', 'sles15sp2o' 'Kiwi/POS_Image-JeOS7_41' when 'sles15sp1', 'sles15sp1o' @@ -64,7 +64,7 @@ def compute_kiwi_profile_name(host) case image when 'sles15sp3', 'sles15sp3o', 'sles15sp4', 'sles15sp4o' # 'POS_Image_JeOS7_42' for 4.2 branch - $product == 'Uyuni' ? 'POS_Image_JeOS7_uyuni' : 'POS_Image_JeOS7_head' + product == 'Uyuni' ? 'POS_Image_JeOS7_uyuni' : 'POS_Image_JeOS7_head' when 'sles15sp2', 'sles15sp2o' 'POS_Image_JeOS7_41' when 'sles15sp1', 'sles15sp1o' @@ -92,12 +92,12 @@ def compute_kiwi_profile_version(host) end When(/^I (enable|disable) repositories (before|after) installing branch server$/) do |action, _when| - os_version = $proxy.os_version - os_family = $proxy.os_family + os_version = get_target('proxy').os_version + os_family = get_target('proxy').os_family # Distribution repos = 'os_pool_repo os_update_repo testing_overlay_devel_repo' - log $proxy.run("zypper mr --#{action} #{repos}") + log get_target('proxy').run("zypper mr --#{action} #{repos}") # Server Applications, proxy product and modules, proxy devel if os_family =~ /^sles/ && os_version =~ /^15/ @@ -109,34 +109,34 @@ def compute_kiwi_profile_version(host) elsif os_family =~ /^opensuse/ repos = 'proxy_pool_repo' end - log $proxy.run("zypper mr --#{action} #{repos}") + log get_target('proxy').run("zypper mr --#{action} #{repos}") end When(/^I start tftp on the proxy$/) do - case $product + case product # TODO: Should we handle this in Sumaform? when 'Uyuni' - step %(I enable repositories before installing branch server) + step 'I enable repositories before installing branch server' cmd = 'zypper --non-interactive --ignore-unknown remove atftp && ' \ 'zypper --non-interactive install tftp && ' \ 'systemctl enable tftp.service && ' \ 'systemctl start tftp.service' - $proxy.run(cmd) - step %(I disable repositories after installing branch server) + get_target('proxy').run(cmd) + step 'I disable repositories after installing branch server' else cmd = 'systemctl enable tftp.service && systemctl start tftp.service' - $proxy.run(cmd) + get_target('proxy').run(cmd) end end When(/^I stop tftp on the proxy$/) do - $proxy.run('systemctl stop tftp.service') + get_target('proxy').run('systemctl stop tftp.service') end When(/^I set up the private network on the terminals$/) do proxy = net_prefix + ADDRESSES['proxy'] # /etc/sysconfig/network/ifcfg-eth1 and /etc/resolv.conf - nodes = [$minion] + nodes = [get_target('sle_minion')] conf = "STARTMODE='auto'\\nBOOTPROTO='dhcp'" file = '/etc/sysconfig/network/ifcfg-eth1' script2 = "-e '/^#/d' -e 's/^search /search example.org /' -e '$anameserver #{proxy}' -e '/^nameserver /d'" @@ -146,13 +146,13 @@ def compute_kiwi_profile_version(host) node.run("echo -e \"#{conf}\" > #{file} && sed -i #{script2} #{file2} && ifup eth1") end # /etc/sysconfig/network-scripts/ifcfg-eth1 and /etc/sysconfig/network - nodes = [$rhlike_minion] + nodes = [get_target('rhlike_minion')] file = '/etc/sysconfig/network-scripts/ifcfg-eth1' conf2 = 'GATEWAYDEV=eth0' file2 = '/etc/sysconfig/network' nodes.each do |node| next if node.nil? - domain, _code = node.run("grep '^search' /etc/resolv.conf | sed 's/^search//'") + domain, _code = node.run('grep \'^search\' /etc/resolv.conf | sed \'s/^search//\'') conf = "DOMAIN='#{domain.strip}'\\nDEVICE='eth1'\\nSTARTMODE='auto'\\nBOOTPROTO='dhcp'\\nDNS1='#{proxy}'" service = if node.os_family =~ /^rocky/ @@ -163,7 +163,7 @@ def compute_kiwi_profile_version(host) node.run("echo -e \"#{conf}\" > #{file} && echo -e \"#{conf2}\" > #{file2} && systemctl restart #{service}") end # /etc/netplan/01-netcfg.yaml - nodes = [$deblike_minion] + nodes = [get_target('deblike_minion')] source = File.dirname(__FILE__) + '/../upload_files/01-netcfg.yaml' dest = '/etc/netplan/01-netcfg.yaml' nodes.each do |node| @@ -174,7 +174,7 @@ def compute_kiwi_profile_version(host) end # PXE boot minion if $pxeboot_mac - step %(I restart the network on the PXE boot minion) + step 'I restart the network on the PXE boot minion' end end @@ -212,11 +212,11 @@ def compute_kiwi_profile_version(host) file = 'restart-network-pxeboot.exp' source = File.dirname(__FILE__) + '/../upload_files/' + file dest = '/tmp/' + file - return_code = file_inject($proxy, source, dest) + return_code = file_inject(get_target('proxy'), source, dest) raise 'File injection failed' unless return_code.zero? # We have no direct access to the PXE boot minion # so we run the command from the proxy - $proxy.run("expect -f /tmp/#{file} #{ipv6}") + get_target('proxy').run("expect -f /tmp/#{file} #{ipv6}") end When(/^I reboot the (Retail|Cobbler) terminal "([^"]*)"$/) do |context, host| @@ -236,19 +236,19 @@ def compute_kiwi_profile_version(host) file = 'reboot-pxeboot.exp' source = File.dirname(__FILE__) + '/../upload_files/' + file dest = '/tmp/' + file - return_code = file_inject($proxy, source, dest) + return_code = file_inject(get_target('proxy'), source, dest) raise 'File injection failed' unless return_code.zero? - $proxy.run("expect -f /tmp/#{file} #{ipv6} #{context}") + get_target('proxy').run("expect -f /tmp/#{file} #{ipv6} #{context}") end When(/^I create bootstrap script for "([^"]+)" hostname and set the activation key "([^"]*)" in the bootstrap script on the proxy$/) do |host, key| # WORKAROUND: Revert once pxeboot autoinstallation contains venv-salt-minion - # force_bundle = $use_salt_bundle ? '--force-bundle' : '' - # $proxy.run("mgr-bootstrap #{force_bundle}") - $proxy.run("mgr-bootstrap --hostname=#{host}") + # force_bundle = use_salt_bundle ? '--force-bundle' : '' + # get_target('proxy').run("mgr-bootstrap #{force_bundle}") + get_target('proxy').run("mgr-bootstrap --hostname=#{host}") - $proxy.run("sed -i '/^ACTIVATION_KEYS=/c\\ACTIVATION_KEYS=#{key}' /srv/www/htdocs/pub/bootstrap/bootstrap.sh") - output, _code = $proxy.run('cat /srv/www/htdocs/pub/bootstrap/bootstrap.sh') + get_target('proxy').run("sed -i '/^ACTIVATION_KEYS=/c\\ACTIVATION_KEYS=#{key}' /srv/www/htdocs/pub/bootstrap/bootstrap.sh") + output, _code = get_target('proxy').run('cat /srv/www/htdocs/pub/bootstrap/bootstrap.sh') raise "Key: #{key} not included" unless output.include? key raise "Hostname: #{host} not included" unless output.include? host end @@ -257,44 +257,44 @@ def compute_kiwi_profile_version(host) file = 'bootstrap-pxeboot.exp' source = File.dirname(__FILE__) + '/../upload_files/' + file dest = '/tmp/' + file - return_code = file_inject($proxy, source, dest) + return_code = file_inject(get_target('proxy'), source, dest) raise 'File injection failed' unless return_code.zero? ipv4 = net_prefix + ADDRESSES['pxeboot_minion'] - $proxy.run("expect -f /tmp/#{file} #{ipv4}", verbose: true) + get_target('proxy').run("expect -f /tmp/#{file} #{ipv4}", verbose: true) end When(/^I accept key of pxeboot minion in the Salt master$/) do - $server.run('salt-key -y --accept=pxeboot.example.org') + get_target('server').run('salt-key -y --accept=pxeboot.example.org') end When(/^I install the GPG key of the test packages repository on the PXE boot minion$/) do file = 'uyuni.key' source = File.dirname(__FILE__) + '/../upload_files/' + file dest = '/tmp/' + file - return_code = file_inject($server, source, dest) + return_code = file_inject(get_target('server'), source, dest) raise 'File injection failed' unless return_code.zero? system_name = get_system_name('pxeboot_minion') - $server.run("salt-cp #{system_name} #{dest} #{dest}") - $server.run("salt #{system_name} cmd.run 'rpmkeys --import #{dest}'") + get_target('server').run("salt-cp #{system_name} #{dest} #{dest}") + get_target('server').run("salt #{system_name} cmd.run 'rpmkeys --import #{dest}'") end When(/^I wait until Salt client is inactive on the PXE boot minion$/) do file = 'wait-end-of-cleanup-pxeboot.exp' source = File.dirname(__FILE__) + '/../upload_files/' + file dest = '/tmp/' + file - return_code = file_inject($proxy, source, dest) + return_code = file_inject(get_target('proxy'), source, dest) raise 'File injection failed' unless return_code.zero? ipv4 = net_prefix + ADDRESSES['pxeboot_minion'] - $proxy.run("expect -f /tmp/#{file} #{ipv4}") + get_target('proxy').run("expect -f /tmp/#{file} #{ipv4}") end When(/^I prepare the retail configuration file on server$/) do source = File.dirname(__FILE__) + '/../upload_files/massive-import-terminals.yml' dest = '/tmp/massive-import-terminals.yml' - return_code = file_inject($server, source, dest) + return_code = file_inject(get_target('server'), source, dest) raise "File #{file} couldn't be copied to server" unless return_code.zero? - sed_values = "s//#{$proxy.full_hostname}/; " + sed_values = "s//#{get_target('proxy').full_hostname}/; " sed_values << "s//#{net_prefix}/; " sed_values << "s//#{ADDRESSES['proxy']}/; " sed_values << "s//#{ADDRESSES['range begin']}/; " @@ -304,12 +304,12 @@ def compute_kiwi_profile_version(host) sed_values << "s//#{ADDRESSES['sle_minion']}/; " sed_values << "s//#{get_mac_address('sle_minion')}/; " sed_values << "s//#{compute_kiwi_profile_name('pxeboot_minion')}/" - $server.run("sed -i '#{sed_values}' #{dest}") + get_target('server').run("sed -i '#{sed_values}' #{dest}") end When(/^I import the retail configuration using retail_yaml command$/) do filepath = '/tmp/massive-import-terminals.yml' - $server.run("retail_yaml --api-user admin --api-pass admin --from-yaml #{filepath}") + get_target('server').run("retail_yaml --api-user admin --api-pass admin --from-yaml #{filepath}") end # Click on the terminal @@ -531,7 +531,7 @@ def compute_kiwi_profile_version(host) end When(/^I press "Remove" in the routers section$/) do - cname_xpath = "//div[@id='dhcpd#subnets#0#routers#0']/button" + cname_xpath = '//div[@id=\'dhcpd#subnets#0#routers#0\']/button' find(:xpath, cname_xpath).click end @@ -563,7 +563,7 @@ def compute_kiwi_profile_version(host) When(/^I am on the image store of the Kiwi image for organization "([^"]*)"$/) do |org| # There is no navigation step to access this URL, so we must use a visit call (https://github.com/SUSE/spacewalk/issues/15256) - visit("https://#{$server.full_hostname}/os-images/#{org}/") + visit("https://#{get_target('server').full_hostname}/os-images/#{org}/") end Then(/^I should see the name of the image for "([^"]*)"$/) do |host| @@ -573,6 +573,6 @@ def compute_kiwi_profile_version(host) Then(/^the image for "([^"]*)" should exist on the branch server$/) do |host| image = compute_kiwi_profile_name(host) - images, _code = $proxy.run('ls /srv/saltboot/image/') + images, _code = get_target('proxy').run('ls /srv/saltboot/image/') raise "Image #{image} for #{host} does not exist" unless images.include? image end diff --git a/testsuite/features/step_definitions/salt_steps.rb b/testsuite/features/step_definitions/salt_steps.rb index 1d683c6b91cf..e2f9929fb209 100644 --- a/testsuite/features/step_definitions/salt_steps.rb +++ b/testsuite/features/step_definitions/salt_steps.rb @@ -14,7 +14,7 @@ # 300 is the default 1st keepalive interval for the minion # where it realizes the connection is stuck repeat_until_timeout(timeout: 300, retries: 3, message: "Master can not communicate with #{minion}", report_result: true) do - out, _code = $server.run("salt #{system_name} test.ping") + out, _code = get_target('server').run("salt #{system_name} test.ping") if out.include?(system_name) && out.include?('True') finished = Time.now log "Took #{finished.to_i - start.to_i} seconds to contact the minion" @@ -26,12 +26,12 @@ end When(/^I get the contents of the remote file "(.*?)"$/) do |filename| - $output, _code = $server.run("cat #{filename}") + $output, _code = get_target('server').run("cat #{filename}") end When(/^I stop salt-minion on "(.*?)"$/) do |minion| node = get_target(minion) - pkgname = $use_salt_bundle ? "venv-salt-minion" : "salt-minion" + pkgname = use_salt_bundle ? 'venv-salt-minion' : 'salt-minion' os_version = node.os_version os_family = node.os_family if os_family =~ /^sles/ && os_version =~ /^11/ @@ -43,7 +43,7 @@ When(/^I start salt-minion on "(.*?)"$/) do |minion| node = get_target(minion) - pkgname = $use_salt_bundle ? "venv-salt-minion" : "salt-minion" + pkgname = use_salt_bundle ? 'venv-salt-minion' : 'salt-minion' os_version = node.os_version os_family = node.os_family if os_family =~ /^sles/ && os_version =~ /^11/ @@ -55,7 +55,7 @@ When(/^I restart salt-minion on "(.*?)"$/) do |minion| node = get_target(minion) - pkgname = $use_salt_bundle ? "venv-salt-minion" : "salt-minion" + pkgname = use_salt_bundle ? 'venv-salt-minion' : 'salt-minion' os_version = node.os_version os_family = node.os_family if os_family =~ /^sles/ && os_version =~ /^11/ @@ -67,7 +67,7 @@ When(/^I refresh salt-minion grains on "(.*?)"$/) do |minion| node = get_target(minion) - salt_call = $use_salt_bundle ? "venv-salt-call" : "salt-call" + salt_call = use_salt_bundle ? 'venv-salt-call' : 'salt-call' node.run("#{salt_call} saltutil.refresh_grains") end @@ -76,7 +76,7 @@ repeat_until_timeout(timeout: key_timeout.to_i, message: "Minion '#{minion}' is not listed among #{key_type} keys on Salt master") do system_name = get_system_name(minion) unless system_name.empty? - output, return_code = $server.run(cmd, check_errors: false) + output, return_code = get_target('server').run(cmd, check_errors: false) break if return_code.zero? && output.include?(system_name) end sleep 1 @@ -84,15 +84,15 @@ end When(/^I wait until Salt client is inactive on "([^"]*)"$/) do |minion| - salt_minion = $use_salt_bundle ? "venv-salt-minion" : "salt-minion" + salt_minion = use_salt_bundle ? 'venv-salt-minion' : 'salt-minion' step %(I wait until "#{salt_minion}" service is inactive on "#{minion}") end When(/^I wait until no Salt job is running on "([^"]*)"$/) do |minion| target = get_target(minion) - salt_call = $use_salt_bundle ? "venv-salt-call" : "salt-call" - repeat_until_timeout(message: "A Salt job is still running on #{minion}") do - output, _code = target.run("#{salt_call} -lquiet saltutil.running") + salt_call = use_salt_bundle ? 'venv-salt-call' : 'salt-call' + repeat_until_timeout(timeout: 600, message: "A Salt job is still running on #{minion}") do + output, _code = target.run("#{salt_call} -lquiet saltutil.running", verbose: true) break if output == "local:\n" sleep 3 end @@ -100,21 +100,21 @@ When(/^I delete "([^"]*)" key in the Salt master$/) do |host| system_name = get_system_name(host) - $output, _code = $server.run("salt-key -y -d #{system_name}", check_errors: false) + $output, _code = get_target('server').run("salt-key -y -d #{system_name}", check_errors: false) end When(/^I accept "([^"]*)" key in the Salt master$/) do |host| system_name = get_system_name(host) - $server.run("salt-key -y --accept=#{system_name}*") + get_target('server').run("salt-key -y --accept=#{system_name}*") end When(/^I list all Salt keys shown on the Salt master$/) do - $server.run("salt-key --list-all", check_errors: false, verbose: true) + get_target('server').run('salt-key --list-all', check_errors: false, verbose: true) end When(/^I get OS information of "([^"]*)" from the Master$/) do |host| system_name = get_system_name(host) - $output, _code = $server.run("salt #{system_name} grains.get osfullname") + $output, _code = get_target('server').run("salt #{system_name} grains.get osfullname") end Then(/^it should contain a "([^"]*?)" text$/) do |content| @@ -130,21 +130,21 @@ When(/^I apply state "([^"]*)" to "([^"]*)"$/) do |state, host| system_name = get_system_name(host) - $server.run("salt #{system_name} state.apply #{state}", verbose: true) + get_target('server').run("salt #{system_name} state.apply #{state}", verbose: true) end Then(/^salt\-api should be listening on local port (\d+)$/) do |port| - $output, _code = $server.run("ss -ntl | grep #{port}") + $output, _code = get_target('server').run("ss -ntl | grep #{port}") assert_match(/127.0.0.1:#{port}/, $output) end Then(/^salt\-master should be listening on public port (\d+)$/) do |port| - $output, _code = $server.run("ss -ntl | grep #{port}") + $output, _code = get_target('server').run("ss -ntl | grep #{port}") assert_match(/(0.0.0.0|\*|\[::\]):#{port}/, $output) end Then(/^the system should have a base channel set$/) do - step %(I should not see a "This system has no Base Software Channel. You can select a Base Channel from the list below." text) + step 'I should not see a "This system has no Base Software Channel. You can select a Base Channel from the list below." text' end Then(/^"(.*?)" should not be registered$/) do |host| @@ -159,7 +159,7 @@ Then(/^"(.*?)" should have been reformatted$/) do |host| system_name = get_system_name(host) - output, _code = $server.run("salt #{system_name} file.file_exists /intact") + output, _code = get_target('server').run("salt #{system_name} file.file_exists /intact") raise "Minion #{host} is intact" unless output.include? 'False' end @@ -198,39 +198,42 @@ end # Salt formulas + +@skip_if_container_server When(/^I manually install the "([^"]*)" formula on the server$/) do |package| - $server.run("zypper --non-interactive refresh") - $server.run("zypper --non-interactive install --force #{package}-formula") + get_target('server').run('zypper --non-interactive refresh') + get_target('server').run("zypper --non-interactive install --force #{package}-formula") end +@skip_if_container_server When(/^I manually uninstall the "([^"]*)" formula from the server$/) do |package| - $server.run("zypper --non-interactive remove #{package}-formula") + get_target('server').run("zypper --non-interactive remove #{package}-formula") # Remove automatically installed dependency if needed if package == 'uyuni-config' - $server.run("zypper --non-interactive remove #{package}-modules") + get_target('server').run("zypper --non-interactive remove #{package}-modules") end end When(/^I synchronize all Salt dynamic modules on "([^"]*)"$/) do |host| system_name = get_system_name(host) - $server.run("salt #{system_name} saltutil.sync_all") + get_target('server').run("salt #{system_name} saltutil.sync_all") end When(/^I remove "([^"]*)" from salt cache on "([^"]*)"$/) do |filename, host| node = get_target(host) - salt_cache = $use_salt_bundle ? "/var/cache/venv-salt-minion/" : "/var/cache/salt/" + salt_cache = use_salt_bundle ? '/var/cache/venv-salt-minion/' : '/var/cache/salt/' file_delete(node, "#{salt_cache}#{filename}") end When(/^I remove "([^"]*)" from salt minion config directory on "([^"]*)"$/) do |filename, host| node = get_target(host) - salt_config = $use_salt_bundle ? "/etc/venv-salt-minion/minion.d/" : "/etc/salt/minion.d/" + salt_config = use_salt_bundle ? '/etc/venv-salt-minion/minion.d/' : '/etc/salt/minion.d/' file_delete(node, "#{salt_config}#{filename}") end When(/^I configure salt minion on "([^"]*)"$/) do |host| content = %( -master: #{$server.full_hostname} +master: #{get_target('server').full_hostname} server_id_use_crc: adler32 enable_legacy_startup_events: False enable_fqdns_grains: False @@ -242,7 +245,7 @@ end When(/^I store "([^"]*)" into file "([^"]*)" in salt minion config directory on "([^"]*)"$/) do |content, filename, host| - salt_config = $use_salt_bundle ? "/etc/venv-salt-minion/minion.d/" : "/etc/salt/minion.d/" + salt_config = use_salt_bundle ? '/etc/venv-salt-minion/minion.d/' : '/etc/salt/minion.d/' step %(I store "#{content}" into file "#{salt_config}#{filename}" on "#{host}") end @@ -287,31 +290,37 @@ Then(/^the keymap on "([^"]*)" should be "([^"]*)"$/) do |minion, keymap| node = get_target(minion) - output, _code = node.run("grep 'KEYMAP=' /etc/vconsole.conf") + output, _code = node.run('grep \'KEYMAP=\' /etc/vconsole.conf') raise "The keymap #{keymap} is different to the output: #{output.strip}" unless output.strip == "KEYMAP=#{keymap}" end Then(/^the language on "([^"]*)" should be "([^"]*)"$/) do |minion, language| node = get_target(minion) - output, _code = node.run("grep 'RC_LANG=' /etc/sysconfig/language") + output, _code = node.run('grep \'RC_LANG=\' /etc/sysconfig/language') unless output.strip == "RC_LANG=\"#{language}\"" - output, _code = node.run("grep 'LANG=' /etc/locale.conf") + output, _code = node.run('grep \'LANG=\' /etc/locale.conf') raise "The language #{language} is different to the output: #{output.strip}" unless output.strip == "LANG=#{language}" end end When(/^I refresh the pillar data$/) do - $server.run("salt '#{$minion.full_hostname}' saltutil.refresh_pillar wait=True") + get_target('server').run("salt '#{get_target('sle_minion').full_hostname}' saltutil.refresh_pillar wait=True") end When(/^I wait until there is no pillar refresh salt job active$/) do - repeat_until_timeout(message: "pillar refresh job still active") do - output, = $server.run("salt-run jobs.active") - break unless output.include?("saltutil.refresh_pillar") + repeat_until_timeout(message: 'pillar refresh job still active') do + output, = get_target('server').run('salt-run jobs.active') + break unless output.include?('saltutil.refresh_pillar') sleep 1 end end +When(/^I wait until there is no Salt job calling the module "([^"]*)" on "([^"]*)"$/) do |salt_module, minion| + target = get_target(minion) + salt_call = use_salt_bundle ? 'venv-salt-call' : 'salt-call' + target.run_until_fail("#{salt_call} -lquiet saltutil.running | grep #{salt_module}", timeout: 600) +end + def pillar_get(key, minion) system_name = get_system_name(minion) if minion == 'sle_minion' @@ -321,7 +330,7 @@ def pillar_get(key, minion) else raise 'Invalid target' end - $server.run("#{cmd} #{system_name} pillar.get #{key}") + get_target('server').run("#{cmd} #{system_name} pillar.get #{key}") end Then(/^the pillar data for "([^"]*)" should be "([^"]*)" on "([^"]*)"$/) do |key, value, minion| @@ -354,7 +363,7 @@ def pillar_get(key, minion) end Given(/^I try to download "([^"]*)" from channel "([^"]*)"$/) do |rpm, channel| - url = "https://#{$server.full_hostname}/rhn/manager/download/#{channel}/getPackage/#{rpm}" + url = "https://#{get_target('server').full_hostname}/rhn/manager/download/#{channel}/getPackage/#{rpm}" url = "#{url}?#{@token}" if @token @download_path = nil @download_error = nil @@ -394,7 +403,7 @@ def pillar_get(key, minion) When(/^I see "([^"]*)" fingerprint$/) do |host| node = get_target(host) - salt_call = $use_salt_bundle ? "venv-salt-call" : "salt-call" + salt_call = use_salt_bundle ? 'venv-salt-call' : 'salt-call' output, _code = node.run("#{salt_call} --local key.finger") fing = output.split("\n")[1].strip! raise "Text: #{fing} not found" unless has_content?(fing) @@ -420,7 +429,7 @@ def pillar_get(key, minion) When(/^I list packages with "(.*?)"$/) do |str| find('input#package-search').set(str) - repeat_until_timeout(timeout: 60, retries: 30, message: "Search button not enabled", report_result: true) do + repeat_until_timeout(timeout: 60, retries: 30, message: 'Search button not enabled', report_result: true) do break unless find('button#search').disabled? sleep 1 end @@ -451,10 +460,10 @@ def pillar_get(key, minion) file = 'salt_event_parser.py' source = "#{File.dirname(__FILE__)}/../upload_files/#{file}" dest = "/tmp/#{file}" - return_code = file_inject($server, source, dest) + return_code = file_inject(get_target('server'), source, dest) raise 'File injection failed' unless return_code.zero? # print failures from salt event log - output, _code = $server.run("python3 /tmp/#{file}") + output, _code = get_target('server').run("python3 /tmp/#{file}") count_failures = output.to_s.scan(/false/).length output = output.join.to_s if output.respond_to?(:join) # Ignore the error if there is only the expected failure from min_salt_lock_packages.feature @@ -466,13 +475,13 @@ def pillar_get(key, minion) # salt-ssh steps When(/^I install Salt packages from "(.*?)"$/) do |host| target = get_target(host) - pkgs = $use_salt_bundle ? "venv-salt-minion" : "salt salt-minion" + pkgs = use_salt_bundle ? 'venv-salt-minion' : 'salt salt-minion' if suse_host?(host) target.run("test -e /usr/bin/zypper && zypper --non-interactive install -y #{pkgs}", check_errors: false) elsif rh_host?(host) target.run("test -e /usr/bin/yum && yum -y install #{pkgs}", check_errors: false) elsif deb_host?(host) - pkgs = "salt-common salt-minion" if $product != 'Uyuni' + pkgs = 'salt-common salt-minion' if product != 'Uyuni' target.run("test -e /usr/bin/apt && apt -y install #{pkgs}", check_errors: false) end end @@ -488,8 +497,8 @@ def pillar_get(key, minion) # minion bootstrap steps Then(/^I run spacecmd listevents for "([^"]*)"$/) do |host| system_name = get_system_name(host) - $server.run('spacecmd -u admin -p admin clear_caches') - $server.run("spacecmd -u admin -p admin system_listevents #{system_name}") + get_target('server').run('spacecmd -u admin -p admin clear_caches') + get_target('server').run("spacecmd -u admin -p admin system_listevents #{system_name}") end When(/^I enter KVM Server password$/) do @@ -498,22 +507,22 @@ def pillar_get(key, minion) When(/^I perform a full salt minion cleanup on "([^"]*)"$/) do |host| node = get_target(host) - if $use_salt_bundle + if use_salt_bundle if rh_host?(host) - node.run("yum -y remove --setopt=clean_requirements_on_remove=1 venv-salt-minion", check_errors: false) + node.run('yum -y remove --setopt=clean_requirements_on_remove=1 venv-salt-minion', check_errors: false) elsif deb_host?(host) - node.run("apt-get --assume-yes remove venv-salt-minion && apt-get --assume-yes purge venv-salt-minion && apt-get --assume-yes autoremove", check_errors: false) + node.run('apt-get --assume-yes remove venv-salt-minion && apt-get --assume-yes purge venv-salt-minion && apt-get --assume-yes autoremove', check_errors: false) else - node.run("zypper --non-interactive remove --clean-deps -y venv-salt-minion", check_errors: false) + node.run('zypper --non-interactive remove --clean-deps -y venv-salt-minion', check_errors: false) end node.run('rm -Rf /root/salt /var/cache/venv-salt-minion /run/venv-salt-minion /var/venv-salt-minion.log /etc/venv-salt-minion /var/tmp/.root*', check_errors: false) else if rh_host?(host) - node.run("yum -y remove --setopt=clean_requirements_on_remove=1 salt salt-minion", check_errors: false) + node.run('yum -y remove --setopt=clean_requirements_on_remove=1 salt salt-minion', check_errors: false) elsif deb_host?(host) - node.run("apt-get --assume-yes remove salt-common salt-minion && apt-get --assume-yes purge salt-common salt-minion && apt-get --assume-yes autoremove", check_errors: false) + node.run('apt-get --assume-yes remove salt-common salt-minion && apt-get --assume-yes purge salt-common salt-minion && apt-get --assume-yes autoremove', check_errors: false) else - node.run("zypper --non-interactive remove --clean-deps -y salt salt-minion", check_errors: false) + node.run('zypper --non-interactive remove --clean-deps -y salt salt-minion', check_errors: false) end node.run('rm -Rf /root/salt /var/cache/salt/minion /var/run/salt /run/salt /var/log/salt /etc/salt /var/tmp/.root*', check_errors: false) end @@ -521,7 +530,7 @@ def pillar_get(key, minion) end When(/^I install a salt pillar top file for "([^"]*)" with target "([^"]*)" on the server$/) do |files, host| - system_name = host == "*" ? "*" : get_system_name(host) + system_name = host == '*' ? '*' : get_system_name(host) script = "base:\n" \ " '#{system_name}':\n" files.split(/, */).each do |file| @@ -538,35 +547,35 @@ def pillar_get(key, minion) content = "pkg_download_point_protocol: #{uri.scheme}\n"\ "pkg_download_point_host: #{uri.host}\n"\ "pkg_download_point_port: #{uri.port}" - $server.run("echo -e \"#{content}\" > #{filepath}") + get_target('server').run("echo -e \"#{content}\" > #{filepath}") end When(/^I delete the package download endpoint pillar file from the server$/) do filepath = '/srv/pillar/pkg_endpoint.sls' - return_code = file_delete($server, filepath) + return_code = file_delete(get_target('server'), filepath) raise 'File deletion failed' unless return_code.zero? end When(/^I install "([^"]*)" to custom formula metadata directory "([^"]*)"$/) do |file, formula| source = File.dirname(__FILE__) + '/../upload_files/' + file - dest = "/srv/formula_metadata/" + formula + '/' + file + dest = '/srv/formula_metadata/' + formula + '/' + file - $server.run("mkdir -p /srv/formula_metadata/" + formula) - return_code = file_inject($server, source, dest) + get_target('server').run('mkdir -p /srv/formula_metadata/' + formula) + return_code = file_inject(get_target('server'), source, dest) raise 'File injection failed' unless return_code.zero? - $server.run("chmod 644 " + dest) + get_target('server').run('chmod 644 ' + dest) end When(/^I migrate "([^"]*)" from salt-minion to venv-salt-minion$/) do |host| node = get_target(host) system_name = node.full_hostname migrate = "salt #{system_name} state.apply util.mgr_switch_to_venv_minion" - $server.run(migrate, check_errors: true, verbose: true) + get_target('server').run(migrate, check_errors: true, verbose: true) end When(/^I purge salt-minion on "([^"]*)" after a migration$/) do |host| node = get_target(host) system_name = node.full_hostname cleanup = %(salt #{system_name} state.apply util.mgr_switch_to_venv_minion pillar='{"mgr_purge_non_venv_salt_files": True, "mgr_purge_non_venv_salt": True}') - $server.run(cleanup, check_errors: true, verbose: true) + get_target('server').run(cleanup, check_errors: true, verbose: true) end diff --git a/testsuite/features/step_definitions/setup_steps.rb b/testsuite/features/step_definitions/setup_steps.rb index 6aec20e3b247..aff4267d9ca3 100644 --- a/testsuite/features/step_definitions/setup_steps.rb +++ b/testsuite/features/step_definitions/setup_steps.rb @@ -54,7 +54,7 @@ When(/^I wait for the trash icon to appear for "([^"]*)"$/) do |user| within(:xpath, "//h3[contains(text(), '#{user}')]/../..") do repeat_until_timeout(message: 'Trash icon is still greyed out') do - break unless find('i.fa-trash-o')[:style].include? "not-allowed" + break unless find('i.fa-trash-o')[:style].include? 'not-allowed' sleep 1 end end @@ -74,7 +74,7 @@ When(/^I select "(.*?)" in the dropdown list of the architecture filter$/) do |architecture| # let the the select2js box filter open the hidden options - xpath_query = "//div[@id='s2id_product-arch-filter']/ul/li/input" + xpath_query = '//div[@id=\'s2id_product-arch-filter\']/ul/li/input' raise "xpath: #{xpath_query} not found" unless find(:xpath, xpath_query).click # select the desired option raise "Architecture #{architecture} not found" unless find(:xpath, "//div[@id='select2-drop']/ul/li/div[contains(text(), '#{architecture}')]").click @@ -83,7 +83,7 @@ When(/^I (deselect|select) "([^\"]*)" as a product$/) do |select, product| # click on the checkbox to select the product xpath = "//span[contains(text(), '#{product}')]/ancestor::div[contains(@class, 'product-details-wrapper')]/div/input[@type='checkbox']" - raise "xpath: #{xpath} not found" unless find(:xpath, xpath).set(select == "select") + raise "xpath: #{xpath} not found" unless find(:xpath, xpath).set(select == 'select') end When(/^I wait at most (\d+) seconds until the tree item "([^"]+)" has no sub-list$/) do |timeout, item| @@ -129,7 +129,7 @@ Then(/^I should see the "(.*?)" selected$/) do |product| xpath = "//span[contains(text(), '#{product}')]/ancestor::div[contains(@class, 'product-details-wrapper')]" within(:xpath, xpath) do - raise "#{find(:xpath, '.')['data-identifier']} is not checked" unless find(:xpath, "./div/input[@type='checkbox']").checked? + raise "#{find(:xpath, '.')['data-identifier']} is not checked" unless find(:xpath, './div/input[@type=\'checkbox\']').checked? end end @@ -149,11 +149,11 @@ end When(/^I click the Add Product button$/) do - raise "xpath: button#addProducts not found" unless find('button#addProducts').click + raise 'xpath: button#addProducts not found' unless find('button#addProducts').click end Then(/^the SLE15 (SP3|SP4) product should be added$/) do |sp_version| - output, _code = $server.run('echo -e "admin\nadmin\n" | mgr-sync list channels', check_errors: false, buffer_size: 1_000_000) + output, _code = get_target('server').run('echo -e "admin\nadmin\n" | mgr-sync list channels', check_errors: false, buffer_size: 1_000_000) STDOUT.puts "Products list:\n#{output}" match = "[I] SLE-Product-SLES15-#{sp_version}-Pool for x86_64 SUSE Linux Enterprise Server 15 #{sp_version} x86_64 [sle-product-sles15-#{sp_version.downcase}-pool-x86_64]" raise "Not included:\n #{match}" unless output.include? match @@ -209,11 +209,11 @@ end Then(/^I should see "([^"]*)" via spacecmd$/) do |host| - command = "spacecmd -u admin -p admin system_list" + command = 'spacecmd -u admin -p admin system_list' system_name = get_system_name(host) repeat_until_timeout(message: "system #{system_name} is not in the list yet") do - $server.run("spacecmd -u admin -p admin clear_caches") - result, _code = $server.run(command, check_errors: false, verbose: true) + get_target('server').run('spacecmd -u admin -p admin clear_caches') + result, _code = get_target('server').run(command, check_errors: false, verbose: true) break if result.include? system_name sleep 1 end @@ -225,7 +225,7 @@ end When(/^I remember when I scheduled an action$/) do - moment = "schedule_action" + moment = 'schedule_action' val = DateTime.now if defined?($moments) $moments[moment] = val @@ -241,8 +241,8 @@ match = elements[0].text.match(/#{text}\s*(\d+\/\d+\/\d+ \d+:\d+:\d+ (AM|PM)+ [^\s]+)/) raise "No element found matching text '#{text}'" if match.nil? text_time = DateTime.strptime("#{match.captures[0]}", '%m/%d/%C %H:%M:%S %p %Z') - raise "Time the action was scheduled not found in memory" unless defined?($moments) and $moments["schedule_action"] - initial = $moments["schedule_action"] + raise 'Time the action was scheduled not found in memory' unless defined?($moments) and $moments['schedule_action'] + initial = $moments['schedule_action'] after = initial + Rational(1, 1440) * minutes.to_i raise "#{text_time.to_s} is not #{minutes} minutes later than '#{initial.to_s}'" unless (text_time + Rational(1, 1440)) >= after end @@ -258,7 +258,7 @@ def token(secret, claims = {}) end def server_secret - rhnconf, _code = $server.run('cat /etc/rhn/rhn.conf', check_errors: false) + rhnconf, _code = get_target('server').run('cat /etc/rhn/rhn.conf', check_errors: false) data = /server.secret_key\s*=\s*(\h+)$/.match(rhnconf) data[1].strip end @@ -293,10 +293,10 @@ def server_secret Then(/^I should see the toggler "([^"]*)"$/) do |target_status| case target_status when 'enabled' - xpath = "//i[contains(@class, 'fa-toggle-on')]" + xpath = '//i[contains(@class, \'fa-toggle-on\')]' raise "xpath: #{xpath} not found" unless find(:xpath, xpath) when 'disabled' - xpath = "//i[contains(@class, 'fa-toggle-off')]" + xpath = '//i[contains(@class, \'fa-toggle-off\')]' raise "xpath: #{xpath} not found" unless find(:xpath, xpath) else raise 'Invalid target status.' @@ -306,10 +306,10 @@ def server_secret When(/^I click on the "([^"]*)" toggler$/) do |target_status| case target_status when 'enabled' - xpath = "//i[contains(@class, 'fa-toggle-on')]" + xpath = '//i[contains(@class, \'fa-toggle-on\')]' raise "xpath: #{xpath} not found" unless find(:xpath, xpath).click when 'disabled' - xpath = "//i[contains(@class, 'fa-toggle-off')]" + xpath = '//i[contains(@class, \'fa-toggle-off\')]' raise "xpath: #{xpath} not found" unless find(:xpath, xpath).click else raise 'Invalid target status.' @@ -337,7 +337,7 @@ def server_secret xpath = "//label[contains(text(), '#{target_channel}')]" channel_checkbox_id = find(:xpath, xpath)['for'] - "disabled".eql?(is_disabled) || raise('Invalid disabled flag value') + 'disabled'.eql?(is_disabled) || raise('Invalid disabled flag value') case target_status when 'selected' @@ -390,10 +390,10 @@ def server_secret badge_xpath = "//i[contains(@class, 'fa-bell')]/following-sibling::*[text()='#{table_notifications_count}']" if table_notifications_count == '0' - log "All notification-messages are read, I expect no notification badge" + log 'All notification-messages are read, I expect no notification badge' raise "xpath: #{badge_xpath} found" if has_xpath?(badge_xpath) else - log "Unread notification-messages count = " + table_notifications_count + log 'Unread notification-messages count = ' + table_notifications_count raise "xpath: #{badge_xpath} not found" unless find(:xpath, badge_xpath) end end @@ -425,10 +425,10 @@ def server_secret Then(/^I check the first notification message$/) do if count_table_items == '0' - log "There are no notification messages, nothing to do then" + log 'There are no notification messages, nothing to do then' else within(:xpath, '//section') do - row = find(:xpath, "//div[@class=\"table-responsive\"]/table/tbody/tr[.//td]", match: :first) + row = find(:xpath, '//div[@class="table-responsive"]/table/tbody/tr[.//td]', match: :first) row.find(:xpath, './/input[@type="checkbox"]', match: :first).set(true) end end @@ -439,7 +439,7 @@ def server_secret xpath_for_delete_button = "//button[@title='#{target_button}']" raise "xpath: #{xpath_for_delete_button} not found" unless find(:xpath, xpath_for_delete_button).click - step %(I wait until I see "1 message deleted successfully." text) + step 'I wait until I see "1 message deleted successfully." text' end end @@ -448,18 +448,18 @@ def server_secret xpath_for_read_button = "//button[@title='#{target_button}']" raise "xpath: #{xpath_for_read_button} not found" unless find(:xpath, xpath_for_read_button).click - step %(I wait until I see "1 message read status updated successfully." text) + step 'I wait until I see "1 message read status updated successfully." text' end end When(/^I check for failed events on history event page$/) do - steps %( + steps ' When I follow "Events" in the content area And I follow "History" in the content area Then I should see a "System History" text - ) - failings = "" - event_table_xpath = "//div[@class='table-responsive']/table/tbody" + ' + failings = '' + event_table_xpath = '//div[@class=\'table-responsive\']/table/tbody' rows = find(:xpath, event_table_xpath) rows.all('tr').each do |tr| if tr.all(:css, '.fa.fa-times-circle-o.fa-1-5x.text-danger').any? diff --git a/testsuite/features/step_definitions/smdba_steps.rb b/testsuite/features/step_definitions/smdba_steps.rb index a7c489c05870..e9b41d94a8ac 100644 --- a/testsuite/features/step_definitions/smdba_steps.rb +++ b/testsuite/features/step_definitions/smdba_steps.rb @@ -5,35 +5,35 @@ ### and access to the database. Given(/^a postgresql database is running$/) do - $output, _code = $server.run('file /var/lib/pgsql/data/postgresql.conf', check_errors: false) + $output, _code = get_target('server').run('file /var/lib/pgsql/data/postgresql.conf', check_errors: false) unless $output.include? 'ASCII text' log 'Tests require Postgresql database, skipping...' pending end - smdba_db_status, _code = $server.run('smdba db-status', check_errors: false) + smdba_db_status, _code = get_target('server').run('smdba db-status', check_errors: false) if smdba_db_status.include? 'online' log 'Database is running' else - $server.run('smdba db-start') - smdba_db_status, _code = $server.run('smdba db-status', check_errors: false) + get_target('server').run('smdba db-start') + smdba_db_status, _code = get_target('server').run('smdba db-status', check_errors: false) assert_includes(smdba_db_status, 'online') end end Given(/^there is no such "(.*?)" directory$/) do |bkp_dir| - $server.run("test -d #{bkp_dir} && rm -rf #{bkp_dir}", check_errors: false) + get_target('server').run("test -d #{bkp_dir} && rm -rf #{bkp_dir}", check_errors: false) end When(/^I start database with the command "(.*?)"$/) do |start_command| - $output, _code = $server.run(start_command) + $output, _code = get_target('server').run(start_command) end When(/^I stop the database with the command "(.*?)"$/) do |stop_command| - $output, _code = $server.run(stop_command) + $output, _code = get_target('server').run(stop_command) end When(/^I check the database status with the command "(.*?)"$/) do |check_command| - $output, _code = $server.run(check_command) + $output, _code = get_target('server').run(check_command) end When(/^I see that the database is "(.*?)" or "(.*?)" as it might already running$/) do |scs_status, fl_status| @@ -49,14 +49,14 @@ end When(/^I configure "(.*?)" parameter "(.*?)" to "(.*?)"$/) do |config_file, param, value| - $server.run("sed -i '/wal_level/d' #{config_file}", check_errors: false) - $server.run("echo \"#{param} = #{value}\" >> #{config_file}", check_errors: false) - local_output, _code = $server.run("cat #{config_file} | grep #{param}", check_errors: false) + get_target('server').run("sed -i '/wal_level/d' #{config_file}", check_errors: false) + get_target('server').run("echo \"#{param} = #{value}\" >> #{config_file}", check_errors: false) + local_output, _code = get_target('server').run("cat #{config_file} | grep #{param}", check_errors: false) assert_includes(local_output, value) end Then(/^I check internally configuration for "(.*?)" option$/) do |_config_key| - $current_checked_config_value, _code = $server.run("cd /;sudo -u postgres psql -c 'show wal_level;'", check_errors: false) + $current_checked_config_value, _code = get_target('server').run('cd /;sudo -u postgres psql -c \'show wal_level;\'', check_errors: false) end Then(/^the configuration should be set to "(.*?)"$/) do |value| @@ -68,7 +68,7 @@ end Then(/^I issue command "(.*?)"$/) do |command| - $output, _code = $server.run(command, check_errors: false) + $output, _code = get_target('server').run(command, check_errors: false) end Then(/^tablespace "([^"]*)" should be listed$/) do |ts| @@ -88,16 +88,16 @@ # Given(/^database "(.*?)" has no table "(.*?)"$/) do |dbname, tbl| $db = dbname - out, err, _code = $server.run("sudo -u postgres psql -d #{$db} -c 'drop table dummy'", separated_results: true, check_errors: false) + out, err, _code = get_target('server').run("sudo -u postgres psql -d #{$db} -c 'drop table dummy'", separated_results: true, check_errors: false) refute_includes(out, 'DROP TABLE') assert_includes(err, "table \"#{tbl}\" does not exist") end When(/^I create backup directory "(.*?)" with UID "(.*?)" and GID "(.*?)"$/) do |bkp_dir, uid, gid| - $server.run("mkdir /#{bkp_dir};chown #{uid}:#{gid} /#{bkp_dir}") + get_target('server').run("mkdir /#{bkp_dir};chown #{uid}:#{gid} /#{bkp_dir}") bkp_dir.sub!('/', '') log 'Backup directory:' - log $server.run("ls -la / | /usr/bin/grep #{bkp_dir}", check_errors: false)[0] + log get_target('server').run("ls -la / | /usr/bin/grep #{bkp_dir}", check_errors: false)[0] end Then(/^I should see error message that asks "(.*?)" belong to the same UID\/GID as "(.*?)" directory$/) do |bkp_dir, data_dir| @@ -111,34 +111,39 @@ end Then(/^I remove backup directory "(.*?)"$/) do |bkp_dir| - $server.run("test -d #{bkp_dir} && rm -rf #{bkp_dir}") + get_target('server').run("test -d #{bkp_dir} && rm -rf #{bkp_dir}") end When(/^I change Access Control List on "(.*?)" directory to "(.*?)"$/) do |bkp_dir, acl_octal| bkp_dir.sub!('/', '') - $server.run("test -d /#{bkp_dir} && chmod #{acl_octal} /#{bkp_dir}") + get_target('server').run("test -d /#{bkp_dir} && chmod #{acl_octal} /#{bkp_dir}") log "Backup directory, ACL to \"#{acl_octal}\":" - log $server.run("ls -la / | /usr/bin/grep #{bkp_dir}", check_errors: false)[0] + log get_target('server').run("ls -la / | /usr/bin/grep #{bkp_dir}", check_errors: false)[0] log "\n*** Taking backup, this might take a while ***\n" end +Then(/^I take a backup with smdba in folder "(.*?)"$/) do |backup_dir| + command = "smdba backup-hot --enable=on --backup-dir=#{backup_dir}" + $output, _code = get_target('server').run(command, timeout: 600, check_errors: true) +end + Then(/^base backup is taken$/) do assert_includes($output, 'Finished') end Then(/^in "(.*?)" directory there is "(.*?)" file and at least one backup checkpoint file$/) do |bkp_dir, archive_file| refute_includes( - $server.run("test -f #{bkp_dir}/#{archive_file} && echo \"exists\" || echo \"missing\"", check_errors: false), + get_target('server').run("test -f #{bkp_dir}/#{archive_file} && echo \"exists\" || echo \"missing\"", check_errors: false), 'missing' ) refute_includes( - $server.run("ls #{bkp_dir}/*.backup 1>/dev/null 2>/dev/null && echo \"exists\" || echo \"missing\"", check_errors: false), + get_target('server').run("ls #{bkp_dir}/*.backup 1>/dev/null 2>/dev/null && echo \"exists\" || echo \"missing\"", check_errors: false), 'missing' ) end Then(/^parameter "(.*?)" in the configuration file "(.*?)" is "(.*?)"$/) do |param, cfg_file, fuzzy_value| - $output, _code = $server.run("cat #{cfg_file} | grep #{param}") + $output, _code = get_target('server').run("cat #{cfg_file} | grep #{param}") assert_includes($output, fuzzy_value) end @@ -147,17 +152,17 @@ end When(/^I set a checkpoint$/) do - $server.run("sudo -u postgres psql -d #{$db} -c 'checkpoint' 2>/dev/null", check_errors: false) + get_target('server').run("sudo -u postgres psql -d #{$db} -c 'checkpoint' 2>/dev/null", check_errors: false) end When(/^in the database I create dummy table "(.*?)" with column "(.*?)" and value "(.*?)"$/) do |tbl, clm, val| fn = '/tmp/smdba-data-test.sql' - $server.run("echo \"create table #{tbl} (#{clm} varchar);insert into #{tbl} (#{clm}) values (\'#{val}\');\" > #{fn}", check_errors: false) - $server.run("sudo -u postgres psql -d #{$db} -c 'drop table dummy' 2>/dev/null", check_errors: false) - $server.run("sudo -u postgres psql -d #{$db} -af #{fn}", check_errors: false) - $server.run("file -f #{fn} && rm #{fn}") + get_target('server').run("echo \"create table #{tbl} (#{clm} varchar);insert into #{tbl} (#{clm}) values (\'#{val}\');\" > #{fn}", check_errors: false) + get_target('server').run("sudo -u postgres psql -d #{$db} -c 'drop table dummy' 2>/dev/null", check_errors: false) + get_target('server').run("sudo -u postgres psql -d #{$db} -af #{fn}", check_errors: false) + get_target('server').run("file -f #{fn} && rm #{fn}") assert_includes( - $server.run("sudo -u postgres psql -d #{$db} -c 'select * from dummy' 2>/dev/null", check_errors: false)[0], + get_target('server').run("sudo -u postgres psql -d #{$db} -c 'select * from dummy' 2>/dev/null", check_errors: false)[0], val ) log "Table \"#{tbl}\" has been created with some dummy data inside" @@ -165,13 +170,13 @@ When(/^I restore database from the backup$/) do log "\n*** Restoring database from the backup. This will may take a while. ***\n\n" - output, code = $server.run('smdba backup-restore') + output, code = get_target('server').run('smdba backup-restore') log "#{output}\n\n" raise 'Restore Failed' unless code.zero? end Then(/^I disable backup in the directory "(.*?)"$/) do |_arg1| assert_includes( - $server.run('smdba backup-hot --enable=off', check_errors: false)[0], 'Finished' + get_target('server').run('smdba backup-hot --enable=off', check_errors: false)[0], 'Finished' ) end diff --git a/testsuite/features/step_definitions/vm_steps.rb b/testsuite/features/step_definitions/vm_steps.rb index fc4bcdf7d086..403649a3774f 100644 --- a/testsuite/features/step_definitions/vm_steps.rb +++ b/testsuite/features/step_definitions/vm_steps.rb @@ -93,7 +93,7 @@ when 'test-net0', 'test-net1' netdef = '' \ " #{net_name}" \ - " " \ + ' ' \ " " \ " " \ ' ' \ @@ -104,9 +104,11 @@ when 'salt-sles', 'salt-leap', 'salt-rhlike', 'salt-deblike' netdef = '' \ " #{net_name}" \ - " " \ + ' ' \ " " \ '' + else + raise "#{net_name} case is not implemented." end # Some networks like the default one may already be defined. diff --git a/testsuite/features/support/code_coverage.rb b/testsuite/features/support/code_coverage.rb index 2165e9d9dae5..d03dbb2cad0a 100644 --- a/testsuite/features/support/code_coverage.rb +++ b/testsuite/features/support/code_coverage.rb @@ -34,7 +34,7 @@ def push_feature_coverage(feature_name) package_name = package.attr('name') package.xpath('.//sourcefile').each do |sourcefile| sourcefile_name = sourcefile.attr('name') - counter_class = sourcefile.xpath(".//counter[@type='CLASS']") + counter_class = sourcefile.xpath('.//counter[@type=\'CLASS\']') next if counter_class.nil? || counter_class.attr('covered').to_s == '' next unless Integer(counter_class.attr('covered').to_s).positive? @@ -69,8 +69,8 @@ def jacoco_dump(feature_name, html = false, xml = true, source = false) sourcefiles = source ? '--sourcefiles /tmp/uyuni-master/java/code/src' : '' classfiles = '--classfiles /srv/tomcat/webapps/rhn/WEB-INF/lib/rhn.jar' dump_path = "/tmp/jacoco-#{feature_name}.exec" - $server.run("#{cli} dump --address localhost --destfile #{dump_path} --port 6300 --reset") - $server.run("#{cli} report #{dump_path} #{html_report} #{xml_report} #{sourcefiles} #{classfiles}") - file_extract($server, "/srv/www/htdocs/pub/jacoco-#{feature_name}.xml", "/tmp/jacoco-#{feature_name}.xml") + get_target('server').run("#{cli} dump --address localhost --destfile #{dump_path} --port 6300 --reset") + get_target('server').run("#{cli} report #{dump_path} #{html_report} #{xml_report} #{sourcefiles} #{classfiles}") + file_extract(get_target('server'), "/srv/www/htdocs/pub/jacoco-#{feature_name}.xml", "/tmp/jacoco-#{feature_name}.xml") end end diff --git a/testsuite/features/support/commonlib.rb b/testsuite/features/support/commonlib.rb index 7b135caf9d6a..ff57ca50f89d 100644 --- a/testsuite/features/support/commonlib.rb +++ b/testsuite/features/support/commonlib.rb @@ -37,7 +37,7 @@ def compute_channels_to_leave_running os_family = node.os_family next unless ['sles', 'rocky'].include?(os_family) os_version = os_version.split('.')[0] if os_family == 'rocky' - log "Can't build list of reposyncs to leave running" unless %w[15-SP3 15-SP4 8].include? os_version + log 'Can\'t build list of reposyncs to leave running' unless %w[15-SP3 15-SP4 15.4 8].include? os_version do_not_kill += CHANNEL_TO_SYNCH_BY_OS_VERSION[os_version] end do_not_kill.uniq @@ -45,24 +45,24 @@ def compute_channels_to_leave_running def count_table_items # count table items using the table counter component - items_label_xpath = "//span[contains(text(), 'Items ')]" + items_label_xpath = '//span[contains(text(), \'Items \')]' raise unless (items_label = find(:xpath, items_label_xpath).text) items_label.split('of ')[1].strip end def product - _product_raw, code = $server.run('rpm -q patterns-uyuni_server', check_errors: false) + _product_raw, code = get_target('server').run('rpm -q patterns-uyuni_server', check_errors: false) return 'Uyuni' if code.zero? - _product_raw, code = $server.run('rpm -q patterns-suma_server', check_errors: false) + _product_raw, code = get_target('server').run('rpm -q patterns-suma_server', check_errors: false) return 'SUSE Manager' if code.zero? raise 'Could not determine product' end def product_version - product_raw, code = $server.run('rpm -q patterns-uyuni_server', check_errors: false) + product_raw, code = get_target('server').run('rpm -q patterns-uyuni_server', check_errors: false) m = product_raw.match(/patterns-uyuni_server-(.*)-.*/) return m[1] if code.zero? && !m.nil? - product_raw, code = $server.run('rpm -q patterns-suma_server', check_errors: false) + product_raw, code = get_target('server').run('rpm -q patterns-suma_server', check_errors: false) m = product_raw.match(/patterns-suma_server-(.*)-.*/) return m[1] if code.zero? && !m.nil? raise 'Could not determine product version' @@ -70,16 +70,16 @@ def product_version def use_salt_bundle # Use venv-salt-minion in Uyuni, or SUMA Head, 4.2 and 4.3 - $product == 'Uyuni' || %w[head 4.3 4.2].include?($product_version) + product == 'Uyuni' || %w[head 4.3 4.2].include?(product_version) end # create salt pillar file in the default pillar_roots location def inject_salt_pillar_file(source, file) dest = '/srv/pillar/' + file - return_code = file_inject($server, source, dest) + return_code = file_inject(get_target('server'), source, dest) raise 'File injection failed' unless return_code.zero? # make file readable by salt - $server.run("chgrp salt #{dest}") + get_target('server').run("chgrp salt #{dest}") return_code end @@ -129,7 +129,7 @@ def format_detail(message, last_result, report_result) def click_button_and_wait(locator = nil, **options) click_button(locator, options) begin - raise 'Timeout: Waiting AJAX transition (click link)' unless has_no_css?('.senna-loading', wait: 5) + raise 'Timeout: Waiting AJAX transition (click link)' unless has_no_css?('.senna-loading', wait: 20) rescue StandardError, Capybara::ExpectationNotMet => e STDOUT.puts e.message # Skip errors related to .senna-loading element end @@ -138,7 +138,7 @@ def click_button_and_wait(locator = nil, **options) def click_link_and_wait(locator = nil, **options) click_link(locator, options) begin - raise 'Timeout: Waiting AJAX transition (click link)' unless has_no_css?('.senna-loading', wait: 5) + raise 'Timeout: Waiting AJAX transition (click link)' unless has_no_css?('.senna-loading', wait: 20) rescue StandardError, Capybara::ExpectationNotMet => e STDOUT.puts e.message # Skip errors related to .senna-loading element end @@ -147,7 +147,7 @@ def click_link_and_wait(locator = nil, **options) def click_link_or_button_and_wait(locator = nil, **options) click_link_or_button(locator, options) begin - raise 'Timeout: Waiting AJAX transition (click link)' unless has_no_css?('.senna-loading', wait: 5) + raise 'Timeout: Waiting AJAX transition (click link)' unless has_no_css?('.senna-loading', wait: 20) rescue StandardError, Capybara::ExpectationNotMet => e STDOUT.puts e.message # Skip errors related to .senna-loading element end @@ -158,7 +158,7 @@ module CapybaraNodeElementExtension def click super begin - raise 'Timeout: Waiting AJAX transition (click link)' unless has_no_css?('.senna-loading', wait: 5) + raise 'Timeout: Waiting AJAX transition (click link)' unless has_no_css?('.senna-loading', wait: 20) rescue StandardError, Capybara::ExpectationNotMet => e STDOUT.puts e.message # Skip errors related to .senna-loading element end @@ -244,7 +244,7 @@ def get_system_id(node) def check_shutdown(host, time_out) cmd = "ping -c1 #{host}" - repeat_until_timeout(timeout: time_out, message: "machine didn't reboot") do + repeat_until_timeout(timeout: time_out, message: 'machine didn\'t reboot') do _out = `#{cmd}` if $CHILD_STATUS.exitstatus.nonzero? STDOUT.puts "machine: #{host} went down" @@ -257,7 +257,7 @@ def check_shutdown(host, time_out) def check_restart(host, node, time_out) cmd = "ping -c1 #{host}" - repeat_until_timeout(timeout: time_out, message: "machine didn't come up") do + repeat_until_timeout(timeout: time_out, message: 'machine didn\'t come up') do _out = `#{cmd}` if $CHILD_STATUS.exitstatus.zero? STDOUT.puts "machine: #{host} network is up" @@ -266,7 +266,7 @@ def check_restart(host, node, time_out) sleep 1 end end - repeat_until_timeout(timeout: time_out, message: "machine didn't come up") do + repeat_until_timeout(timeout: time_out, message: 'machine didn\'t come up') do _out, code = node.run('ls', check_errors: false, timeout: 10) if code.zero? STDOUT.puts "machine: #{host} ssh is up" @@ -300,7 +300,7 @@ def get_os_version(node) [os_version, os_family] end -def get_gpg_keys(node, target = $server) +def get_gpg_keys(node, target = get_target('server')) os_version, os_family = get_os_version(node) if os_family =~ /^sles/ # HACK: SLE 15 uses SLE 12 GPG key @@ -328,3 +328,101 @@ def add_context(key, value) $context[$feature_scope] = {} unless $context.key?($feature_scope) $context[$feature_scope].merge!({ key => value }) end + +# This function gets the system name, as displayed in systems list +# * for the usual clients, it is the full hostname, e.g. suma-41-min-sle15.tf.local +# * for the PXE booted clients, it is derived from the branch name, the hardware type, +# and a fingerprint, e.g. example.Intel-Genuine-None-d6df84cca6f478cdafe824e35bbb6e3b +def get_system_name(host) + case host + # The PXE boot minion and the terminals are not directly accessible on the network, + # therefore they are not represented by a twopence node + when 'pxeboot_minion' + output, _code = get_target('server').run('salt-key') + system_name = + output.split.find do |word| + word =~ /example.Intel-Genuine-None-/ || word =~ /example.pxeboot-/ || word =~ /example.Intel/ || word =~ /pxeboot-/ + end + system_name = 'pxeboot.example.org' if system_name.nil? + when 'sle12sp5_terminal' + output, _code = get_target('server').run('salt-key') + system_name = + output.split.find do |word| + word =~ /example.sle12sp5terminal-/ + end + system_name = 'sle12sp5terminal.example.org' if system_name.nil? + when 'sle15sp4_terminal' + output, _code = get_target('server').run('salt-key') + system_name = + output.split.find do |word| + word =~ /example.sle15sp4terminal-/ + end + system_name = 'sle15sp4terminal.example.org' if system_name.nil? + when 'containerized_proxy' + system_name = get_target('proxy').full_hostname.sub('pxy', 'pod-pxy') + else + begin + node = get_target(host) + system_name = node.full_hostname + rescue NotImplementedError => e + # If the node for that host is not defined, just return the host parameter as system_name + warn e.message + system_name = host + end + end + system_name +end + +# Get MAC address of system +def get_mac_address(host) + if host == 'pxeboot_minion' + mac = ENV['PXEBOOT_MAC'] + else + node = get_target(host) + output, _code = node.run('ip link show dev eth1') + mac = output.split("\n")[1].split[1] + end + mac +end + +# This function returns the net prefix, caching it +def net_prefix + $net_prefix = $private_net.sub(%r{\.0+/24$}, '.') if $net_prefix.nil? && !$private_net.nil? + $net_prefix +end + +# This function tests whether a file exists on a node +def file_exists?(node, file) + _out, local, _remote, code = node.test_and_store_results_together("test -f #{file}", 'root', 500) + code.zero? && local.zero? +end + +# This function tests whether a folder exists on a node +def folder_exists?(node, file) + _out, local, _remote, code = node.test_and_store_results_together("test -d #{file}", 'root', 500) + code.zero? && local.zero? +end + +# This function deletes a file from a node +def file_delete(node, file) + _out, _local, _remote, code = node.test_and_store_results_together("rm #{file}", 'root', 500) + code +end + +# This function deletes a file from a node +def folder_delete(node, folder) + _out, _local, _remote, code = node.test_and_store_results_together("rm -rf #{folder}", 'root', 500) + code +end + +# This function extracts a file from a node +def file_extract(node, remote_file, local_file) + code, _remote = node.extract_file(remote_file, local_file, 'root', false) + code +end + +# This function injects a file into a node +def file_inject(node, local_file, remote_file) + code, _remote = node.inject_file(local_file, remote_file, 'root', false) + code +end diff --git a/testsuite/features/support/constants.rb b/testsuite/features/support/constants.rb index 68ea24bcc433..db70d9c78201 100644 --- a/testsuite/features/support/constants.rb +++ b/testsuite/features/support/constants.rb @@ -1,6 +1,69 @@ # Copyright (c) 2019-2023 SUSE LLC # Licensed under the terms of the MIT license. +ENV_VAR_BY_HOST = { 'localhost' => 'HOSTNAME', + 'proxy' => 'PROXY', + 'server' => 'SERVER', + 'kvm_server' => 'VIRTHOST_KVM_URL', + 'sle_minion' => 'MINION', + 'ssh_minion' => 'SSH_MINION', + 'rhlike_minion' => 'RHLIKE_MINION', + 'deblike_minion' => 'DEBLIKE_MINION', + 'build_host' => 'BUILD_HOST', + 'salt_migration_minion' => 'MIN_NESTED', + # Build Validation environment + 'sle12sp4_minion' => 'SLE12SP4_MINION', + 'sle12sp4_ssh_minion' => 'SLE12SP4_SSHMINION', + 'sle12sp5_minion' => 'SLE12SP5_MINION', + 'sle12sp5_ssh_minion' => 'SLE12SP5_SSHMINION', + 'sle15sp1_minion' => 'SLE15SP1_MINION', + 'sle15sp1_ssh_minion' => 'SLE15SP1_SSHMINION', + 'sle15sp2_minion' => 'SLE15SP2_MINION', + 'sle15sp2_ssh_minion' => 'SLE15SP2_SSHMINION', + 'sle15sp3_minion' => 'SLE15SP3_MINION', + 'sle15sp3_ssh_minion' => 'SLE15SP3_SSHMINION', + 'sle15sp4_minion' => 'SLE15SP4_MINION', + 'sle15sp4_ssh_minion' => 'SLE15SP4_SSHMINION', + 'sle15sp5_minion' => 'SLE15SP5_MINION', + 'sle15sp5_ssh_minion' => 'SLE15SP5_SSHMINION', + 'slemicro51_minion' => 'SLEMICRO51_MINION', + 'slemicro51_ssh_minion' => 'SLEMICRO51_SSHMINION', + 'slemicro52_minion' => 'SLEMICRO52_MINION', + 'slemicro52_ssh_minion' => 'SLEMICRO52_SSHMINION', + 'slemicro53_minion' => 'SLEMICRO53_MINION', + 'slemicro53_ssh_minion' => 'SLEMICRO53_SSHMINION', + 'slemicro54_minion' => 'SLEMICRO54_MINION', + 'slemicro54_ssh_minion' => 'SLEMICRO54_SSHMINION', + 'alma9_minion' => 'ALMA9_MINION', + 'alma9_ssh_minion' => 'ALMA9_SSHMINION', + 'centos7_minion' => 'CENTOS7_MINION', + 'centos7_ssh_minion' => 'CENTOS7_SSHMINION', + 'liberty9_minion' => 'LIBERTY9_MINION', + 'liberty9_ssh_minion' => 'LIBERTY9_SSHMINION', + 'oracle9_minion' => 'ORACLE9_MINION', + 'oracle9_ssh_minion' => 'ORACLE9_SSHMINION', + 'rhel9_minion' => 'RHEL9_MINION', + 'rhel9_ssh_minion' => 'RHEL9_SSHMINION', + 'rocky8_minion' => 'ROCKY8_MINION', + 'rocky8_ssh_minion' => 'ROCKY8_SSHMINION', + 'rocky9_minion' => 'ROCKY9_MINION', + 'rocky9_ssh_minion' => 'ROCKY9_SSHMINION', + 'ubuntu2004_minion' => 'UBUNTU2004_MINION', + 'ubuntu2004_ssh_minion' => 'UBUNTU2004_SSHMINION', + 'ubuntu2204_minion' => 'UBUNTU2204_MINION', + 'ubuntu2204_ssh_minion' => 'UBUNTU2204_SSHMINION', + 'debian10_minion' => 'DEBIAN10_MINION', + 'debian10_ssh_minion' => 'DEBIAN10_SSHMINION', + 'debian11_minion' => 'DEBIAN11_MINION', + 'debian11_ssh_minion' => 'DEBIAN11_SSHMINION', + 'opensuse154arm_minion' => 'OPENSUSE154ARM_MINION', + 'opensuse154arm_ssh_minion' => 'OPENSUSE154ARM_SSHMINION', + 'opensuse155arm_minion' => 'OPENSUSE155ARM_MINION', + 'opensuse155arm_ssh_minion' => 'OPENSUSE155ARM_SSHMINION', + 'sle12sp5_buildhost' => 'SLE12SP5_BUILDHOST', + 'sle15sp4_buildhost' => 'SLE15SP4_BUILDHOST', + 'monitoring_server' => 'MONITORING_SERVER' }.freeze + ADDRESSES = { 'network' => '0', 'sle_minion' => '3', 'pxeboot_minion' => '4', @@ -112,8 +175,6 @@ 'rocky8_ssh_minion' => 'autoconf', 'rocky9_minion' => 'autoconf', 'rocky9_ssh_minion' => 'autoconf', - 'ubuntu1804_minion' => 'bison', - 'ubuntu1804_ssh_minion' => 'bison', 'ubuntu2004_minion' => 'bison', 'ubuntu2004_ssh_minion' => 'bison', 'ubuntu2204_minion' => 'bison', @@ -135,162 +196,326 @@ sle_base_channel = if ENV['PROVIDER'].include? 'podman' 'Fake Base Channel' + elsif ENV['SERVER'].include?('uyuni') || ENV['SERVER'].include?('suma-pr') + elsif ENV['SERVER'].include?('uyuni') || ENV['SERVER'].include?('suma-pr') + 'openSUSE Leap 15.4 (x86_64)' else 'SLES15-SP4-Pool' end -BASE_CHANNEL_BY_CLIENT = { 'proxy' => 'SLE-Product-SUSE-Manager-Proxy-4.3-Pool', - 'sle_minion' => sle_base_channel, - 'ssh_minion' => 'SLES15-SP4-Pool', - 'rhlike_minion' => 'RHEL8-Pool for x86_64', - 'deblike_minion' => 'ubuntu-2004-amd64-main', - 'sle12sp4_minion' => 'SLES12-SP4-Pool', - 'sle12sp4_ssh_minion' => 'SLES12-SP4-Pool', - 'sle12sp5_minion' => 'SLES12-SP5-Pool', - 'sle12sp5_ssh_minion' => 'SLES12-SP5-Pool', - 'sle12sp5_buildhost' => 'SLES12-SP5-Pool', - 'sle12sp5_terminal' => 'SLES12-SP5-Pool', - 'sle15sp1_minion' => 'SLES15-SP1-Pool', - 'sle15sp1_ssh_minion' => 'SLES15-SP1-Pool', - 'sle15sp2_minion' => 'SLES15-SP2-Pool', - 'sle15sp2_ssh_minion' => 'SLES15-SP2-Pool', - 'sle15sp3_minion' => 'SLES15-SP3-Pool', - 'sle15sp3_ssh_minion' => 'SLES15-SP3-Pool', - 'sle15sp4_minion' => 'SLES15-SP4-Pool', - 'sle15sp4_ssh_minion' => 'SLES15-SP4-Pool', - 'sle15sp5_minion' => 'SLES15-SP5-Pool', - 'sle15sp5_ssh_minion' => 'SLES15-SP5-Pool', - 'slemicro51_minion' => 'SUSE-MicroOS-5.1-Pool for x86_64', - 'slemicro51_ssh_minion' => 'SUSE-MicroOS-5.1-Pool for x86_64', - 'slemicro52_minion' => 'SUSE-MicroOS-5.2-Pool for x86_64', - 'slemicro52_ssh_minion' => 'SUSE-MicroOS-5.2-Pool for x86_64', - 'slemicro53_minion' => 'SLE-Micro-5.3-Pool for x86_64', - 'slemicro53_ssh_minion' => 'SLE-Micro-5.3-Pool for x86_64', - 'slemicro54_minion' => 'SLE-Micro-5.4-Pool for x86_64', - 'slemicro54_ssh_minion' => 'SLE-Micro-5.4-Pool for x86_64', - 'sle15sp4_buildhost' => 'SLES15-SP4-Pool', - 'monitoring_server' => 'SLES15-SP4-Pool', - 'sle15sp4_terminal' => 'SLES15-SP4-Pool', - 'alma9_minion' => 'almalinux9 for x86_64', - 'alma9_ssh_minion' => 'almalinux9 for x86_64', - 'centos7_minion' => 'RHEL x86_64 Server 7', - 'centos7_ssh_minion' => 'RHEL x86_64 Server 7', - 'liberty9_minion' => 'EL9-Pool for x86_64', - 'liberty9_ssh_minion' => 'EL9-Pool for x86_64', - 'oracle9_minion' => 'oraclelinux9 for x86_64', - 'oracle9_ssh_minion' => 'oraclelinux9 for x86_64', - 'rhel9_minion' => 'EL9-Pool for x86_64', - 'rhel9_ssh_minion' => 'EL9-Pool for x86_64', - 'rocky8_minion' => 'RHEL8-Pool for x86_64', - 'rocky8_ssh_minion' => 'RHEL8-Pool for x86_64', - 'rocky9_minion' => 'rockylinux-9 for x86_64', - 'rocky9_ssh_minion' => 'rockylinux-9 for x86_64', - 'ubuntu1804_minion' => 'ubuntu-18.04-pool', - 'ubuntu1804_ssh_minion' => 'ubuntu-18.04-pool', - 'ubuntu2004_minion' => 'ubuntu-2004-amd64-main', - 'ubuntu2004_ssh_minion' => 'ubuntu-2004-amd64-main', - 'ubuntu2204_minion' => 'ubuntu-2204-amd64-main', - 'ubuntu2204_ssh_minion' => 'ubuntu-2204-amd64-main', - 'debian10_minion' => 'debian-10-pool', - 'debian10_ssh_minion' => 'debian-10-pool', - 'debian11_minion' => 'debian-11-pool', - 'debian11_ssh_minion' => 'debian-11-pool', - 'opensuse154arm_minion' => 'openSUSE-Leap-15.4-Pool for aarch64', - 'opensuse154arm_ssh_minion' => 'openSUSE-Leap-15.4-Pool for aarch64', - 'opensuse155arm_minion' => 'openSUSE-Leap-15.5-Pool for aarch64', - 'opensuse155arm_ssh_minion' => 'openSUSE-Leap-15.5-Pool for aarch64' }.freeze +# Names of our base/parent channels +# The keys are the Twopence targets +# The values can be found in the webUI under Software -> Manage -> Channels -> Create Channel +# Then have a look at the the Parent Channel selections +BASE_CHANNEL_BY_CLIENT = { 'SUSE Manager' => + { + 'proxy' => 'SLE-Product-SUSE-Manager-Proxy-4.3-Pool', + 'sle_minion' => sle_base_channel, + 'ssh_minion' => 'SLES15-SP4-Pool', + 'rhlike_minion' => 'RHEL8-Pool for x86_64', + 'deblike_minion' => 'ubuntu-2004-amd64-main', + 'sle12sp4_minion' => 'SLES12-SP4-Pool', + 'sle12sp4_ssh_minion' => 'SLES12-SP4-Pool', + 'sle12sp5_minion' => 'SLES12-SP5-Pool', + 'sle12sp5_ssh_minion' => 'SLES12-SP5-Pool', + 'sle12sp5_buildhost' => 'SLES12-SP5-Pool', + 'sle12sp5_terminal' => 'SLES12-SP5-Pool', + 'sle15sp1_minion' => 'SLES15-SP1-Pool', + 'sle15sp1_ssh_minion' => 'SLES15-SP1-Pool', + 'sle15sp2_minion' => 'SLES15-SP2-Pool', + 'sle15sp2_ssh_minion' => 'SLES15-SP2-Pool', + 'sle15sp3_minion' => 'SLES15-SP3-Pool', + 'sle15sp3_ssh_minion' => 'SLES15-SP3-Pool', + 'sle15sp4_minion' => 'SLES15-SP4-Pool', + 'sle15sp4_ssh_minion' => 'SLES15-SP4-Pool', + 'sle15sp5_minion' => 'SLES15-SP5-Pool', + 'sle15sp5_ssh_minion' => 'SLES15-SP5-Pool', + 'slemicro51_minion' => 'SUSE-MicroOS-5.1-Pool for x86_64', + 'slemicro51_ssh_minion' => 'SUSE-MicroOS-5.1-Pool for x86_64', + 'slemicro52_minion' => 'SUSE-MicroOS-5.2-Pool for x86_64', + 'slemicro52_ssh_minion' => 'SUSE-MicroOS-5.2-Pool for x86_64', + 'slemicro53_minion' => 'SLE-Micro-5.3-Pool for x86_64', + 'slemicro53_ssh_minion' => 'SLE-Micro-5.3-Pool for x86_64', + 'slemicro54_minion' => 'SLE-Micro-5.4-Pool for x86_64', + 'slemicro54_ssh_minion' => 'SLE-Micro-5.4-Pool for x86_64', + 'sle15sp4_buildhost' => 'SLES15-SP4-Pool', + 'monitoring_server' => 'SLES15-SP4-Pool', + 'sle15sp4_terminal' => 'SLES15-SP4-Pool', + 'alma9_minion' => 'almalinux9 for x86_64', + 'alma9_ssh_minion' => 'almalinux9 for x86_64', + 'centos7_minion' => 'RHEL x86_64 Server 7', + 'centos7_ssh_minion' => 'RHEL x86_64 Server 7', + 'liberty9_minion' => 'EL9-Pool for x86_64', + 'liberty9_ssh_minion' => 'EL9-Pool for x86_64', + 'oracle9_minion' => 'oraclelinux9 for x86_64', + 'oracle9_ssh_minion' => 'oraclelinux9 for x86_64', + 'rhel9_minion' => 'EL9-Pool for x86_64', + 'rhel9_ssh_minion' => 'EL9-Pool for x86_64', + 'rocky8_minion' => 'RHEL8-Pool for x86_64', + 'rocky8_ssh_minion' => 'RHEL8-Pool for x86_64', + 'rocky9_minion' => 'rockylinux-9 for x86_64', + 'rocky9_ssh_minion' => 'rockylinux-9 for x86_64', + 'ubuntu2004_minion' => 'ubuntu-2004-amd64-main', + 'ubuntu2004_ssh_minion' => 'ubuntu-2004-amd64-main', + 'ubuntu2204_minion' => 'ubuntu-2204-amd64-main', + 'ubuntu2204_ssh_minion' => 'ubuntu-2204-amd64-main', + 'debian10_minion' => 'debian-10-pool', + 'debian10_ssh_minion' => 'debian-10-pool', + 'debian11_minion' => 'debian-11-pool', + 'debian11_ssh_minion' => 'debian-11-pool', + 'opensuse154arm_minion' => 'openSUSE-Leap-15.4-Pool for aarch64', + 'opensuse154arm_ssh_minion' => 'openSUSE-Leap-15.4-Pool for aarch64', + 'opensuse155arm_minion' => 'openSUSE-Leap-15.5-Pool for aarch64', + 'opensuse155arm_ssh_minion' => 'openSUSE-Leap-15.5-Pool for aarch64' + }, + 'Uyuni' => + { + 'proxy' => 'openSUSE Leap 15.4 (x86_64)', + 'sle_minion' => sle_base_channel, + 'ssh_minion' => 'SLES15-SP4-Pool', + 'rhlike_minion' => 'RHEL8-Pool for x86_64', + 'deblike_minion' => 'ubuntu-2004-amd64-main', + 'sle12sp4_minion' => 'SLES12-SP4-Pool', + 'sle12sp4_ssh_minion' => 'SLES12-SP4-Pool', + 'sle12sp5_minion' => 'SLES12-SP5-Pool', + 'sle12sp5_ssh_minion' => 'SLES12-SP5-Pool', + 'sle12sp5_buildhost' => 'SLES12-SP5-Pool', + 'sle12sp5_terminal' => 'SLES12-SP5-Pool', + 'sle15sp1_minion' => 'SLES15-SP1-Pool', + 'sle15sp1_ssh_minion' => 'SLES15-SP1-Pool', + 'sle15sp2_minion' => 'SLES15-SP2-Pool', + 'sle15sp2_ssh_minion' => 'SLES15-SP2-Pool', + 'sle15sp3_minion' => 'SLES15-SP3-Pool', + 'sle15sp3_ssh_minion' => 'SLES15-SP3-Pool', + 'sle15sp4_minion' => 'SLES15-SP4-Pool', + 'sle15sp4_ssh_minion' => 'SLES15-SP4-Pool', + 'sle15sp5_minion' => 'SLES15-SP5-Pool', + 'sle15sp5_ssh_minion' => 'SLES15-SP5-Pool', + 'slemicro51_minion' => 'SUSE-MicroOS-5.1-Pool for x86_64', + 'slemicro51_ssh_minion' => 'SUSE-MicroOS-5.1-Pool for x86_64', + 'slemicro52_minion' => 'SUSE-MicroOS-5.2-Pool for x86_64', + 'slemicro52_ssh_minion' => 'SUSE-MicroOS-5.2-Pool for x86_64', + 'slemicro53_minion' => 'SLE-Micro-5.3-Pool for x86_64', + 'slemicro53_ssh_minion' => 'SLE-Micro-5.3-Pool for x86_64', + 'slemicro54_minion' => 'SLE-Micro-5.4-Pool for x86_64', + 'slemicro54_ssh_minion' => 'SLE-Micro-5.4-Pool for x86_64', + 'sle15sp4_buildhost' => 'SLES15-SP4-Pool', + 'monitoring_server' => 'SLES15-SP4-Pool', + 'sle15sp4_terminal' => 'SLES15-SP4-Pool', + 'alma9_minion' => 'AlmaLinux 9 (x86_64)', + 'alma9_ssh_minion' => 'AlmaLinux 9 (x86_64)', + 'centos7_minion' => 'CentOS 7 (x86_64)', + 'centos7_ssh_minion' => 'CentOS 7 (x86_64)', + 'liberty9_minion' => 'EL9-Pool for x86_64', + 'liberty9_ssh_minion' => 'EL9-Pool for x86_64', + 'oracle9_minion' => 'Oracle Linux 9 (x86_64)', + 'oracle9_ssh_minion' => 'Oracle Linux 9 (x86_64)', + 'rhel9_minion' => 'EL9-Pool for x86_64', + 'rhel9_ssh_minion' => 'EL9-Pool for x86_64', + 'rocky8_minion' => 'Rocky Linux 8 (x86_64)', + 'rocky8_ssh_minion' => 'Rocky Linux 8 (x86_64)', + 'rocky9_minion' => 'Rocky Linux 9 (x86_64)', + 'rocky9_ssh_minion' => 'Rocky Linux 9 (x86_64)', + 'ubuntu2004_minion' => 'Ubuntu 20.04 LTS AMD64 Base for Uyuni', + 'ubuntu2004_ssh_minion' => 'Ubuntu 20.04 LTS AMD64 Base for Uyuni', + 'ubuntu2204_minion' => 'Ubuntu 22.04 LTS AMD64 Base for Uyuni', + 'ubuntu2204_ssh_minion' => 'Ubuntu 22.04 LTS AMD64 Base for Uyuni', + 'debian10_minion' => 'Debian 10 (buster) pool for amd64 for Uyuni', + 'debian10_ssh_minion' => 'Debian 10 (buster) pool for amd64 for Uyuni', + 'debian11_minion' => 'Debian 11 (bullseye) pool for amd64 for Uyuni', + 'debian11_ssh_minion' => 'Debian 11 (bullseye) pool for amd64 for Uyuni', + 'opensuse154arm_minion' => 'openSUSE Leap 15.4 (aarch64)', + 'opensuse154arm_ssh_minion' => 'openSUSE Leap 15.4 (aarch64)', + 'opensuse155arm_minion' => 'openSUSE Leap 15.5 (aarch64)', + 'opensuse155arm_ssh_minion' => 'openSUSE Leap 15.5 (aarch64)' + } }.freeze # Used for creating activation keys -# The values can be found under Admin -> Setup Wizard -> Products +# The keys are the values of BASE_CHANNEL_BY_CLIENT +# The values can be found under Admin -> Setup Wizard -> Products for SUMA # Select the desired product and have a look at its product channels # The required product has to be synced before. -LABEL_BY_BASE_CHANNEL = { 'SLE-Product-SUSE-Manager-Proxy-4.3-Pool' => 'sle-product-suse-manager-proxy-4.3-pool-x86_64', - 'SLES12-SP4-Pool' => 'sles12-sp4-pool-x86_64', - 'SLES12-SP5-Pool' => 'sles12-sp5-pool-x86_64', - 'SLES15-SP1-Pool' => 'sle-product-sles15-sp1-pool-x86_64', - 'SLES15-SP2-Pool' => 'sle-product-sles15-sp2-pool-x86_64', - 'SLES15-SP3-Pool' => 'sle-product-sles15-sp3-pool-x86_64', - 'SLES15-SP4-Pool' => 'sle-product-sles15-sp4-pool-x86_64', - 'SLES15-SP5-Pool' => 'sle-product-sles15-sp5-pool-x86_64', - 'SUSE-MicroOS-5.1-Pool for x86_64' => 'suse-microos-5.1-pool-x86_64', - 'SUSE-MicroOS-5.2-Pool for x86_64' => 'suse-microos-5.2-pool-x86_64', - 'SLE-Micro-5.3-Pool for x86_64' => 'sle-micro-5.3-pool-x86_64', - 'SLE-Micro-5.4-Pool for x86_64' => 'sle-micro-5.4-pool-x86_64', - 'almalinux9 for x86_64' => 'no-appstream-alma-9-result-almalinux9-x86_64', - 'Fake Base Channel' => 'fake_base_channel', - 'RHEL x86_64 Server 7' => 'rhel-x86_64-server-7', - 'EL9-Pool for x86_64' => 'no-appstream-liberty-9-result-el9-pool-x86_64', - 'oraclelinux9 for x86_64' => 'no-appstream-oracle-9-result-oraclelinux9-x86_64', - 'RHEL8-Pool for x86_64' => 'no-appstream-8-result-rhel8-pool-x86_64', - 'rockylinux-9 for x86_64' => 'no-appstream-9-result-rockylinux-9-x86_64', - 'ubuntu-18.04-pool' => 'ubuntu-18.04-pool-amd64', - 'ubuntu-2004-amd64-main' => 'ubuntu-2004-amd64-main-amd64', - 'ubuntu-2204-amd64-main' => 'ubuntu-2204-amd64-main-amd64', - 'debian-10-pool' => 'debian-10-pool-amd64', - 'debian-11-pool' => 'debian-11-pool-amd64', - 'openSUSE-Leap-15.4-Pool for aarch64' => 'opensuse-leap-15.4-pool-aarch64', - 'openSUSE-Leap-15.5-Pool for aarch64' => 'opensuse-leap-15.5-pool-aarch64' }.freeze +# For Uyuni, you have to use `spacewalk-common-channels -l` to get the proper values +LABEL_BY_BASE_CHANNEL = { 'SUSE Manager' => + { + 'SLE-Product-SUSE-Manager-Proxy-4.3-Pool' => 'sle-product-suse-manager-proxy-4.3-pool-x86_64', + 'SLES12-SP4-Pool' => 'sles12-sp4-pool-x86_64', + 'SLES12-SP5-Pool' => 'sles12-sp5-pool-x86_64', + 'SLES15-SP1-Pool' => 'sle-product-sles15-sp1-pool-x86_64', + 'SLES15-SP2-Pool' => 'sle-product-sles15-sp2-pool-x86_64', + 'SLES15-SP3-Pool' => 'sle-product-sles15-sp3-pool-x86_64', + 'SLES15-SP4-Pool' => 'sle-product-sles15-sp4-pool-x86_64', + 'SLES15-SP5-Pool' => 'sle-product-sles15-sp5-pool-x86_64', + 'SUSE-MicroOS-5.1-Pool for x86_64' => 'suse-microos-5.1-pool-x86_64', + 'SUSE-MicroOS-5.2-Pool for x86_64' => 'suse-microos-5.2-pool-x86_64', + 'SLE-Micro-5.3-Pool for x86_64' => 'sle-micro-5.3-pool-x86_64', + 'SLE-Micro-5.4-Pool for x86_64' => 'sle-micro-5.4-pool-x86_64', + 'almalinux9 for x86_64' => 'no-appstream-alma-9-result-almalinux9-x86_64', + 'Fake Base Channel' => 'fake_base_channel', + 'RHEL x86_64 Server 7' => 'rhel-x86_64-server-7', + 'EL9-Pool for x86_64' => 'no-appstream-liberty-9-result-el9-pool-x86_64', + 'oraclelinux9 for x86_64' => 'no-appstream-oracle-9-result-oraclelinux9-x86_64', + 'RHEL8-Pool for x86_64' => 'no-appstream-8-result-rhel8-pool-x86_64', + 'rockylinux-9 for x86_64' => 'no-appstream-9-result-rockylinux-9-x86_64', + 'ubuntu-2004-amd64-main' => 'ubuntu-2004-amd64-main-amd64', + 'ubuntu-2204-amd64-main' => 'ubuntu-2204-amd64-main-amd64', + 'debian-10-pool' => 'debian-10-pool-amd64', + 'debian-11-pool' => 'debian-11-pool-amd64', + 'openSUSE-Leap-15.4-Pool for aarch64' => 'opensuse-leap-15.4-pool-aarch64', + 'openSUSE-Leap-15.5-Pool for aarch64' => 'opensuse-leap-15.5-pool-aarch64' + }, + 'Uyuni' => + { + 'openSUSE Leap 15.4 (x86_64)' => 'opensuse_leap15_4-x86_64', + 'SLES12-SP4-Pool' => 'sles12-sp4-pool-x86_64', + 'SLES12-SP5-Pool' => 'sles12-sp5-pool-x86_64', + 'SLES15-SP1-Pool' => 'sle-product-sles15-sp1-pool-x86_64', + 'SLES15-SP2-Pool' => 'sle-product-sles15-sp2-pool-x86_64', + 'SLES15-SP3-Pool' => 'sle-product-sles15-sp3-pool-x86_64', + 'SLES15-SP4-Pool' => 'sle-product-sles15-sp4-pool-x86_64', + 'SLES15-SP5-Pool' => 'sle-product-sles15-sp5-pool-x86_64', + 'SUSE-MicroOS-5.1-Pool for x86_64' => 'suse-microos-5.1-pool-x86_64', + 'SUSE-MicroOS-5.2-Pool for x86_64' => 'suse-microos-5.2-pool-x86_64', + 'SLE-Micro-5.3-Pool for x86_64' => 'sle-micro-5.3-pool-x86_64', + 'SLE-Micro-5.4-Pool for x86_64' => 'sle-micro-5.4-pool-x86_64', + 'AlmaLinux 9 (x86_64)' => 'no-appstream-alma-9-result-almalinux9-x86_64', + 'Fake Base Channel' => 'fake_base_channel', + 'CentOS 7 (x86_64)' => 'centos7-x86_64', + 'EL9-Pool for x86_64' => 'no-appstream-liberty-9-result-el9-pool-x86_64', + 'Oracle Linux 9 (x86_64)' => 'no-appstream-oracle-9-result-oraclelinux9-x86_64', + 'Rocky Linux 8 (x86_64)' => 'no-appstream-8-result-rockylinux8-x86_64', + 'Rocky Linux 9 (x86_64)' => 'no-appstream-9-result-rockylinux9-x86_64', + 'Ubuntu 20.04 LTS AMD64 Base for Uyuni' => 'ubuntu-20.04-pool-amd64-uyuni', + 'Ubuntu 22.04 LTS AMD64 Base for Uyuni' => 'ubuntu-22.04-pool-amd64-uyuni', + 'Debian 10 (buster) pool for amd64 for Uyuni' => 'debian-10-pool-amd64-uyuni', + 'Debian 11 (bullseye) pool for amd64 for Uyuni' => 'debian-11-pool-amd64-uyuni', + 'openSUSE Leap 15.4 (aarch64)' => 'opensuse_leap15_4-aarch64', + 'openSUSE Leap 15.5 (aarch64)' => 'opensuse_leap15_5-aarch64' + } }.freeze # Used for creating bootstrap repositories +# The keys are the values of BASE_CHANNEL_BY_CLIENT # The values can be found out on the server by running 'mgr-create-bootstrap-repo' # Then select the correct name for the product you want -CHANNEL_TO_SYNC_BY_BASE_CHANNEL = { 'SLE-Product-SUSE-Manager-Proxy-4.3-Pool' => 'SUMA-43-PROXY-x86_64', - 'SLES12-SP4-Pool' => 'SLE-12-SP4-x86_64', - 'SLES12-SP5-Pool' => 'SLE-12-SP5-x86_64', - 'SLES15-SP1-Pool' => 'SLE-15-SP1-x86_64', - 'SLES15-SP2-Pool' => 'SLE-15-SP2-x86_64', - 'SLES15-SP3-Pool' => 'SLE-15-SP3-x86_64', - 'SLES15-SP4-Pool' => 'SLE-15-SP4-x86_64', - 'SLES15-SP5-Pool' => 'SLE-15-SP5-x86_64', - 'SUSE-MicroOS-5.1-Pool for x86_64' => 'SLE-MICRO-5.1-x86_64', - 'SUSE-MicroOS-5.2-Pool for x86_64' => 'SLE-MICRO-5.2-x86_64', - 'SLE-Micro-5.3-Pool for x86_64' => 'SLE-MICRO-5.3-x86_64', - 'SLE-Micro-5.4-Pool for x86_64' => 'SLE-MICRO-5.4-x86_64', - 'almalinux9 for x86_64' => 'almalinux-9-x86_64', - 'Fake Base Channel' => 'fake_base_channel-x86_64', - 'RHEL x86_64 Server 7' => 'RES7-x86_64', - 'EL9-Pool for x86_64' => 'SUSE-LibertyLinux9-x86_64', - 'oraclelinux9 for x86_64' => 'oracle-9-x86_64', - 'RHEL8-Pool for x86_64' => 'SLE-ES8-x86_64', - 'rockylinux-9 for x86_64' => 'rockylinux-9-x86_64', - 'ubuntu-18.04-pool' => 'ubuntu-18.04-amd64', - 'ubuntu-2004-amd64-main' => 'ubuntu-20.04-amd64', - 'ubuntu-2204-amd64-main' => 'ubuntu-22.04-amd64', - 'debian-10-pool' => 'debian10-amd64', - 'debian-11-pool' => 'debian11-amd64', - 'openSUSE-Leap-15.4-Pool for aarch64' => 'openSUSE-Leap-15.4-aarch64', - 'openSUSE-Leap-15.5-Pool for aarch64' => 'openSUSE-Leap-15.5-aarch64' }.freeze +CHANNEL_TO_SYNC_BY_BASE_CHANNEL = { 'SUSE Manager' => + { + 'SLE-Product-SUSE-Manager-Proxy-4.3-Pool' => 'SUMA-43-PROXY-x86_64', + 'SLES12-SP4-Pool' => 'SLE-12-SP4-x86_64', + 'SLES12-SP5-Pool' => 'SLE-12-SP5-x86_64', + 'SLES15-SP1-Pool' => 'SLE-15-SP1-x86_64', + 'SLES15-SP2-Pool' => 'SLE-15-SP2-x86_64', + 'SLES15-SP3-Pool' => 'SLE-15-SP3-x86_64', + 'SLES15-SP4-Pool' => 'SLE-15-SP4-x86_64', + 'SLES15-SP5-Pool' => 'SLE-15-SP5-x86_64', + 'SUSE-MicroOS-5.1-Pool for x86_64' => 'SLE-MICRO-5.1-x86_64', + 'SUSE-MicroOS-5.2-Pool for x86_64' => 'SLE-MICRO-5.2-x86_64', + 'SLE-Micro-5.3-Pool for x86_64' => 'SLE-MICRO-5.3-x86_64', + 'SLE-Micro-5.4-Pool for x86_64' => 'SLE-MICRO-5.4-x86_64', + 'almalinux9 for x86_64' => 'almalinux-9-x86_64', + 'Fake Base Channel' => 'fake_base_channel-x86_64', + 'RHEL x86_64 Server 7' => 'RES7-x86_64', + 'EL9-Pool for x86_64' => 'SUSE-LibertyLinux9-x86_64', + 'oraclelinux9 for x86_64' => 'oracle-9-x86_64', + 'RHEL8-Pool for x86_64' => 'SLE-ES8-x86_64', + 'rockylinux-9 for x86_64' => 'rockylinux-9-x86_64', + 'ubuntu-2004-amd64-main' => 'ubuntu-20.04-amd64', + 'ubuntu-2204-amd64-main' => 'ubuntu-22.04-amd64', + 'debian-10-pool' => 'debian10-amd64', + 'debian-11-pool' => 'debian11-amd64', + 'openSUSE-Leap-15.4-Pool for aarch64' => 'openSUSE-Leap-15.4-aarch64', + 'openSUSE-Leap-15.5-Pool for aarch64' => 'openSUSE-Leap-15.5-aarch64' + }, + 'Uyuni' => + { + 'openSUSE Leap 15.4 (x86_64)' => 'openSUSE-Leap-15.4-x86_64-uyuni', + 'SLES12-SP4-Pool' => 'SLE-12-SP4-x86_64', + 'SLES12-SP5-Pool' => 'SLE-12-SP5-x86_64', + 'SLES15-SP1-Pool' => 'SLE-15-SP1-x86_64', + 'SLES15-SP2-Pool' => 'SLE-15-SP2-x86_64', + 'SLES15-SP3-Pool' => 'SLE-15-SP3-x86_64', + 'SLES15-SP4-Pool' => 'SLE-15-SP4-x86_64', + 'SLES15-SP5-Pool' => 'SLE-15-SP5-x86_64', + 'SUSE-MicroOS-5.1-Pool for x86_64' => 'SLE-MICRO-5.1-x86_64', + 'SUSE-MicroOS-5.2-Pool for x86_64' => 'SLE-MICRO-5.2-x86_64', + 'SLE-Micro-5.3-Pool for x86_64' => 'SLE-MICRO-5.3-x86_64', + 'SLE-Micro-5.4-Pool for x86_64' => 'SLE-MICRO-5.4-x86_64', + 'AlmaLinux 9 (x86_64)' => 'almalinux-9-x86_64-uyuni', + 'Fake Base Channel' => 'fake_base_channel-x86_64', + 'CentOS 7 (x86_64)' => 'centos-7-x86_64-uyuni', + 'EL9-Pool for x86_64' => 'SUSE-LibertyLinux9-x86_64', + 'Oracle Linux 9 (x86_64)' => 'oracle-9-x86_64-uyuni', + 'Rocky Linux 8 (x86_64)' => 'rockylinux-8-x86_64-uyuni', + 'Rocky Linux 9 (x86_64)' => 'rockylinux-9-x86_64-uyuni', + 'Ubuntu 20.04 LTS AMD64 Base for Uyuni' => 'ubuntu-20.04-amd64-uyuni', + 'Ubuntu 22.04 LTS AMD64 Base for Uyuni' => 'ubuntu-22.04-amd64-uyuni', + 'Debian 10 (buster) pool for amd64 for Uyuni' => 'debian10-amd64-uyuni', + 'Debian 11 (bullseye) pool for amd64 for Uyuni' => 'debian11-amd64-uyuni', + 'openSUSE Leap 15.4 (aarch64)' => 'openSUSE-Leap-15.4-aarch64-uyuni', + 'openSUSE Leap 15.5 (aarch64)' => 'openSUSE-Leap-15.5-aarch64-uyuni' + } }.freeze # Used for creating bootstrap repositories -# The values can be found under Admin -> Setup Wizard -> Products +# The values can be found under Admin -> Setup Wizard -> Products for SUMA # Select the desired product and have a look at its product channels # The required product has to be synced before. -PARENT_CHANNEL_TO_SYNC_BY_BASE_CHANNEL = { 'SLE-Product-SUSE-Manager-Proxy-4.3-Pool' => 'sle-product-suse-manager-proxy-4.3-pool-x86_64', - 'SLES12-SP4-Pool' => nil, - 'SLES12-SP5-Pool' => nil, - 'SLES15-SP1-Pool' => 'sle-product-sles15-sp1-pool-x86_64', - 'SLES15-SP2-Pool' => 'sle-product-sles15-sp2-pool-x86_64', - 'SLES15-SP3-Pool' => 'sle-product-sles15-sp3-pool-x86_64', - 'SLES15-SP4-Pool' => 'sle-product-sles15-sp4-pool-x86_64', - 'SLES15-SP5-Pool' => 'sle-product-sles15-sp5-pool-x86_64', - 'SUSE-MicroOS-5.1-Pool for x86_64' => 'suse-microos-5.1-pool-x86_64', - 'SUSE-MicroOS-5.2-Pool for x86_64' => 'suse-microos-5.2-pool-x86_64', - 'SLE-Micro-5.3-Pool for x86_64' => 'sle-micro-5.3-pool-x86_64', - 'SLE-Micro-5.4-Pool for x86_64' => 'sle-micro-5.4-pool-x86_64', - 'almalinux9 for x86_64' => nil, - 'Fake Base Channel' => nil, - 'RHEL x86_64 Server 7' => 'rhel-x86_64-server-7', - 'EL9-Pool for x86_64' => 'el9-pool-x86_64', - 'oraclelinux9 for x86_64' => nil, - 'RHEL8-Pool for x86_64' => nil, - 'rockylinux-9 for x86_64' => nil, - 'ubuntu-18.04-pool' => nil, - 'ubuntu-2004-amd64-main' => nil, - 'ubuntu-2204-amd64-main' => nil, - 'debian-10-pool' => 'debian-10-pool-amd64', - 'debian-11-pool' => 'debian-11-pool-amd64', - 'openSUSE-Leap-15.4-Pool for aarch64' => nil, - 'openSUSE-Leap-15.5-Pool for aarch64' => nil }.freeze +# For Uyuni, you have to use `spacewalk-common-channels -l` with the appended architecture +# e.g. almalinux9 -> almalinux9-x86_64 +PARENT_CHANNEL_TO_SYNC_BY_BASE_CHANNEL = { 'SUSE Manager' => + { + 'SLE-Product-SUSE-Manager-Proxy-4.3-Pool' => 'sle-product-suse-manager-proxy-4.3-pool-x86_64', + 'SLES12-SP4-Pool' => nil, + 'SLES12-SP5-Pool' => nil, + 'SLES15-SP1-Pool' => 'sle-product-sles15-sp1-pool-x86_64', + 'SLES15-SP2-Pool' => 'sle-product-sles15-sp2-pool-x86_64', + 'SLES15-SP3-Pool' => 'sle-product-sles15-sp3-pool-x86_64', + 'SLES15-SP4-Pool' => 'sle-product-sles15-sp4-pool-x86_64', + 'SLES15-SP5-Pool' => 'sle-product-sles15-sp5-pool-x86_64', + 'SUSE-MicroOS-5.1-Pool for x86_64' => 'suse-microos-5.1-pool-x86_64', + 'SUSE-MicroOS-5.2-Pool for x86_64' => 'suse-microos-5.2-pool-x86_64', + 'SLE-Micro-5.3-Pool for x86_64' => 'sle-micro-5.3-pool-x86_64', + 'SLE-Micro-5.4-Pool for x86_64' => 'sle-micro-5.4-pool-x86_64', + 'almalinux9 for x86_64' => nil, + 'Fake Base Channel' => nil, + 'RHEL x86_64 Server 7' => 'rhel-x86_64-server-7', + 'EL9-Pool for x86_64' => 'el9-pool-x86_64', + 'oraclelinux9 for x86_64' => nil, + 'RHEL8-Pool for x86_64' => nil, + 'rockylinux-9 for x86_64' => nil, + 'ubuntu-2004-amd64-main' => nil, + 'ubuntu-2204-amd64-main' => nil, + 'debian-10-pool' => 'debian-10-pool-amd64', + 'debian-11-pool' => 'debian-11-pool-amd64', + 'openSUSE-Leap-15.4-Pool for aarch64' => nil, + 'openSUSE-Leap-15.5-Pool for aarch64' => nil + }, + 'Uyuni' => + { + 'openSUSE Leap 15.4 (x86_64)' => nil, + 'SLES12-SP4-Pool' => nil, + 'SLES12-SP5-Pool' => nil, + 'SLES15-SP1-Pool' => 'sle-product-sles15-sp1-pool-x86_64', + 'SLES15-SP2-Pool' => 'sle-product-sles15-sp2-pool-x86_64', + 'SLES15-SP3-Pool' => 'sle-product-sles15-sp3-pool-x86_64', + 'SLES15-SP4-Pool' => 'sle-product-sles15-sp4-pool-x86_64', + 'SLES15-SP5-Pool' => 'sle-product-sles15-sp5-pool-x86_64', + 'SUSE-MicroOS-5.1-Pool for x86_64' => 'suse-microos-5.1-pool-x86_64', + 'SUSE-MicroOS-5.2-Pool for x86_64' => 'suse-microos-5.2-pool-x86_64', + 'SLE-Micro-5.3-Pool for x86_64' => 'sle-micro-5.3-pool-x86_64', + 'SLE-Micro-5.4-Pool for x86_64' => 'sle-micro-5.4-pool-x86_64', + 'almalinux9 for x86_64' => nil, + 'Fake Base Channel' => nil, + 'RHEL x86_64 Server 7' => 'centos-7-x86_64-uyuni', + 'EL9-Pool for x86_64' => 'el9-pool-x86_64', + 'oraclelinux9 for x86_64' => nil, + 'RHEL8-Pool for x86_64' => nil, + 'rockylinux-9 for x86_64' => nil, + 'ubuntu-2004-amd64-main' => nil, + 'ubuntu-2204-amd64-main' => nil, + 'debian-10-pool' => 'debian10-amd64-uyuni', + 'debian-11-pool' => 'debian11-amd64-uyuni', + 'openSUSE-Leap-15.4-Pool for aarch64' => nil, + 'openSUSE-Leap-15.5-Pool for aarch64' => nil + } }.freeze PKGARCH_BY_CLIENT = { 'proxy' => 'x86_64', 'sle_minion' => 'x86_64', @@ -334,8 +559,6 @@ 'rocky8_ssh_minion' => 'x86_64', 'rocky9_minion' => 'x86_64', 'rocky9_ssh_minion' => 'x86_64', - 'ubuntu1804_minion' => 'amd64', - 'ubuntu1804_ssh_minion' => 'amd64', 'ubuntu2004_minion' => 'amd64', 'ubuntu2004_ssh_minion' => 'amd64', 'ubuntu2204_minion' => 'amd64', @@ -422,6 +645,23 @@ sle-module-devtools15-sp4-updates-x86_64 sle-module-containers15-sp4-pool-x86_64 sle-module-containers15-sp4-updates-x86_64 + sle-module-suse-manager-proxy-4.3-pool-x86_64 + sle-module-suse-manager-proxy-4.3-updates-x86_64 + sle-module-server-applications15-sp4-pool-x86_64-proxy-4.3 + sle-module-server-applications15-sp4-updates-x86_64-proxy-4.3 + sle-module-basesystem15-sp4-pool-x86_64-proxy-4.3 + sle-module-basesystem15-sp4-updates-x86_64-proxy-4.3 + sle-product-suse-manager-proxy-4.3-pool-x86_64 + sle-product-suse-manager-proxy-4.3-updates-x86_64 + sle-product-suse-manager-retail-branch-server-4.3-pool-x86_64 + sle-product-suse-manager-retail-branch-server-4.3-updates-x86_64 + sle-module-suse-manager-retail-branch-server-4.3-pool-x86_64 + sle-module-suse-manager-retail-branch-server-4.3-updates-x86_64 + sle-module-basesystem15-sp4-pool-x86_64-smrbs-4.3 + sle-module-basesystem15-sp4-updates-x86_64-smrbs-4.3 + sle-module-suse-manager-proxy-4.3-pool-x86_64-smrbs + sle-module-suse-manager-proxy-4.3-updates-x86_64-smrbs + sle-module-server-applications15-sp4-updates-x86_64-smrbs-4.3 ], '8' => %w[ diff --git a/testsuite/features/support/env.rb b/testsuite/features/support/env.rb index 4ce81dcd97a3..2f0bb26edf73 100644 --- a/testsuite/features/support/env.rb +++ b/testsuite/features/support/env.rb @@ -15,6 +15,7 @@ require 'multi_test' require 'set' require_relative 'code_coverage' +require_relative 'twopence_env' ## code coverage analysis # SimpleCov.start @@ -35,15 +36,27 @@ # Context per feature $context = {} +# Other global variables +$pxeboot_mac = ENV['PXEBOOT_MAC'] +$pxeboot_image = ENV['PXEBOOT_IMAGE'] || 'sles15sp3o' +$sle12sp5_terminal_mac = ENV['SLE12SP5_TERMINAL_MAC'] +$sle15sp4_terminal_mac = ENV['SLE15SP4_TERMINAL_MAC'] +$private_net = ENV['PRIVATENET'] if ENV['PRIVATENET'] +$mirror = ENV['MIRROR'] +$server_http_proxy = ENV['SERVER_HTTP_PROXY'] if ENV['SERVER_HTTP_PROXY'] +$custom_download_endpoint = ENV['CUSTOM_DOWNLOAD_ENDPOINT'] if ENV['CUSTOM_DOWNLOAD_ENDPOINT'] +$no_auth_registry = ENV['NO_AUTH_REGISTRY'] if ENV['NO_AUTH_REGISTRY'] +$auth_registry = ENV['AUTH_REGISTRY'] if ENV['AUTH_REGISTRY'] + # maximal wait before giving up # the tests return much before that delay in case of success STDOUT.sync = true STARTTIME = Time.new.to_i Capybara.default_max_wait_time = ENV['CAPYBARA_TIMEOUT'] ? ENV['CAPYBARA_TIMEOUT'].to_i : 10 DEFAULT_TIMEOUT = ENV['DEFAULT_TIMEOUT'] ? ENV['DEFAULT_TIMEOUT'].to_i : 250 -$is_cloud_provider = ENV["PROVIDER"].include? 'aws' -$is_container_provider = ENV["PROVIDER"].include? 'podman' -$is_container_server = ['k3s', 'podman'].include? ENV.fetch("CONTAINER_RUNTIME", '') +$is_cloud_provider = ENV['PROVIDER'].include? 'aws' +$is_container_provider = ENV['PROVIDER'].include? 'podman' +$is_container_server = %w[k3s podman].include? ENV.fetch('CONTAINER_RUNTIME', '') $is_using_build_image = ENV.fetch('IS_USING_BUILD_IMAGE') { false } $is_using_scc_repositories = (ENV.fetch('IS_USING_SCC_REPOSITORIES', 'False') != 'False') @@ -55,11 +68,6 @@ $build_validation = true end -def enable_assertions - # include assertion globally - World(MiniTest::Assertions) -end - # Fix a problem with minitest and cucumber options passed through rake MultiTest.disable_autorun @@ -105,7 +113,7 @@ def enable_assertions STDOUT.puts "Capybara APP Host: #{Capybara.app_host}:#{Capybara.server_port}" # enable minitest assertions in steps -enable_assertions +World(MiniTest::Assertions) # Init CodeCoverage Handler $code_coverage = CodeCoverage.new(ENV['REDIS_HOST'], ENV['REDIS_PORT'], ENV['REDIS_USERNAME'], ENV['REDIS_PASSWORD']) if $code_coverage_mode @@ -121,19 +129,19 @@ def enable_assertions log "This scenario took: #{current_epoch - @scenario_start_time} seconds" if scenario.failed? begin - Dir.mkdir("screenshots") unless File.directory?("screenshots") + Dir.mkdir('screenshots') unless File.directory?('screenshots') path = "screenshots/#{scenario.name.tr(' ./', '_')}.png" # only click on Details when we have errors during bootstrapping and more Details available click_button('Details') if has_content?('Bootstrap Minions') && has_content?('Details') page.driver.browser.save_screenshot(path) attach path, 'image/png' - attach current_url, 'text/plain' + attach "#{Time.at(@scenario_start_time).strftime('%H:%M:%S:%L')} - #{Time.at(current_epoch).strftime('%H:%M:%S:%L')} | Current URL: #{current_url}", 'text/plain' rescue StandardError => e warn e.message ensure - debug_server_on_realtime_failure + print_server_logs previous_url = current_url - step %(I am authorized for the "Admin" section) + step 'I am authorized for the "Admin" section' visit previous_url end end @@ -169,7 +177,7 @@ def process_code_coverage After('@scope_cobbler') do |scenario| if scenario.failed? STDOUT.puts '=> /var/log/cobbler/cobbler.log' - out, _code = $server.run("tail -n20 /var/log/cobbler/cobbler.log") + out, _code = get_target('server').run('tail -n20 /var/log/cobbler/cobbler.log') out.each_line do |line| STDOUT.puts line.to_s end @@ -180,7 +188,7 @@ def process_code_coverage AfterStep do if has_css?('.senna-loading', wait: 0) log 'WARN: Step ends with an ajax transition not finished, let\'s wait a bit!' - log 'Timeout: Waiting AJAX transition' unless has_no_css?('.senna-loading', wait: 20) + log 'Timeout: Waiting AJAX transition' unless has_no_css?('.senna-loading', wait: 40) end end @@ -192,19 +200,19 @@ def process_code_coverage # do some tests only if the corresponding node exists Before('@proxy') do - skip_this_scenario unless $proxy + skip_this_scenario unless ENV.key? ENV_VAR_BY_HOST['proxy'] end Before('@sle_minion') do - skip_this_scenario unless $minion + skip_this_scenario unless ENV.key? ENV_VAR_BY_HOST['sle_minion'] end Before('@rhlike_minion') do - skip_this_scenario unless $rhlike_minion + skip_this_scenario unless ENV.key? ENV_VAR_BY_HOST['rhlike_minion'] end Before('@deblike_minion') do - skip_this_scenario unless $deblike_minion + skip_this_scenario unless ENV.key? ENV_VAR_BY_HOST['deblike_minion'] end Before('@pxeboot_minion') do @@ -212,183 +220,175 @@ def process_code_coverage end Before('@ssh_minion') do - skip_this_scenario unless $ssh_minion + skip_this_scenario unless ENV.key? ENV_VAR_BY_HOST['ssh_minion'] end Before('@buildhost') do - skip_this_scenario unless $build_host + skip_this_scenario unless ENV.key? ENV_VAR_BY_HOST['build_host'] end Before('@virthost_kvm') do - skip_this_scenario unless $kvm_server + skip_this_scenario unless ENV.key? ENV_VAR_BY_HOST['kvm_server'] end Before('@alma9_minion') do - skip_this_scenario unless $alma9_minion + skip_this_scenario unless ENV.key? ENV_VAR_BY_HOST['alma9_minion'] end Before('@alma9_ssh_minion') do - skip_this_scenario unless $alma9_ssh_minion + skip_this_scenario unless ENV.key? ENV_VAR_BY_HOST['alma9_ssh_minion'] end Before('@centos7_minion') do - skip_this_scenario unless $centos7_minion + skip_this_scenario unless ENV.key? ENV_VAR_BY_HOST['centos7_minion'] end Before('@centos7_ssh_minion') do - skip_this_scenario unless $centos7_ssh_minion + skip_this_scenario unless ENV.key? ENV_VAR_BY_HOST['centos7_ssh_minion'] end Before('@liberty9_minion') do - skip_this_scenario unless $liberty9_minion + skip_this_scenario unless ENV.key? ENV_VAR_BY_HOST['liberty9_minion'] end Before('@liberty9_ssh_minion') do - skip_this_scenario unless $liberty9_ssh_minion + skip_this_scenario unless ENV.key? ENV_VAR_BY_HOST['liberty9_ssh_minion'] end Before('@oracle9_minion') do - skip_this_scenario unless $oracle9_minion + skip_this_scenario unless ENV.key? ENV_VAR_BY_HOST['oracle9_minion'] end Before('@oracle9_ssh_minion') do - skip_this_scenario unless $oracle9_ssh_minion + skip_this_scenario unless ENV.key? ENV_VAR_BY_HOST['oracle9_ssh_minion'] end Before('@rhel9_minion') do - skip_this_scenario unless $rhel9_minion + skip_this_scenario unless ENV.key? ENV_VAR_BY_HOST['rhel9_minion'] end Before('@rhel9_ssh_minion') do - skip_this_scenario unless $rhel9_ssh_minion + skip_this_scenario unless ENV.key? ENV_VAR_BY_HOST['rhel9_ssh_minion'] end Before('@rocky8_minion') do - skip_this_scenario unless $rocky8_minion + skip_this_scenario unless ENV.key? ENV_VAR_BY_HOST['rocky8_minion'] end Before('@rocky8_ssh_minion') do - skip_this_scenario unless $rocky8_ssh_minion + skip_this_scenario unless ENV.key? ENV_VAR_BY_HOST['rocky8_ssh_minion'] end Before('@rocky9_minion') do - skip_this_scenario unless $rocky9_minion + skip_this_scenario unless ENV.key? ENV_VAR_BY_HOST['rocky9_minion'] end Before('@rocky9_ssh_minion') do - skip_this_scenario unless $rocky9_ssh_minion -end - -Before('@ubuntu1804_minion') do - skip_this_scenario unless $ubuntu1804_minion -end - -Before('@ubuntu1804_ssh_minion') do - skip_this_scenario unless $ubuntu1804_ssh_minion + skip_this_scenario unless ENV.key? ENV_VAR_BY_HOST['rocky9_ssh_minion'] end Before('@ubuntu2004_minion') do - skip_this_scenario unless $ubuntu2004_minion + skip_this_scenario unless ENV.key? ENV_VAR_BY_HOST['ubuntu2004_minion'] end Before('@ubuntu2004_ssh_minion') do - skip_this_scenario unless $ubuntu2004_ssh_minion + skip_this_scenario unless ENV.key? ENV_VAR_BY_HOST['ubuntu2004_ssh_minion'] end Before('@ubuntu2204_minion') do - skip_this_scenario unless $ubuntu2204_minion + skip_this_scenario unless ENV.key? ENV_VAR_BY_HOST['ubuntu2204_minion'] end Before('@ubuntu2204_ssh_minion') do - skip_this_scenario unless $ubuntu2204_ssh_minion + skip_this_scenario unless ENV.key? ENV_VAR_BY_HOST['ubuntu2204_ssh_minion'] end Before('@debian10_minion') do - skip_this_scenario unless $debian10_minion + skip_this_scenario unless ENV.key? ENV_VAR_BY_HOST['debian10_minion'] end Before('@debian10_ssh_minion') do - skip_this_scenario unless $debian10_ssh_minion + skip_this_scenario unless ENV.key? ENV_VAR_BY_HOST['debian10_ssh_minion'] end Before('@debian11_minion') do - skip_this_scenario unless $debian11_minion + skip_this_scenario unless ENV.key? ENV_VAR_BY_HOST['debian11_minion'] end Before('@debian11_ssh_minion') do - skip_this_scenario unless $debian11_ssh_minion + skip_this_scenario unless ENV.key? ENV_VAR_BY_HOST['debian11_ssh_minion'] end Before('@sle12sp4_minion') do - skip_this_scenario unless $sle12sp4_minion + skip_this_scenario unless ENV.key? ENV_VAR_BY_HOST['sle12sp4_minion'] end Before('@sle12sp4_ssh_minion') do - skip_this_scenario unless $sle12sp4_ssh_minion + skip_this_scenario unless ENV.key? ENV_VAR_BY_HOST['sle12sp4_ssh_minion'] end Before('@sle12sp5_minion') do - skip_this_scenario unless $sle12sp5_minion + skip_this_scenario unless ENV.key? ENV_VAR_BY_HOST['sle12sp5_minion'] end Before('@sle12sp5_ssh_minion') do - skip_this_scenario unless $sle12sp5_ssh_minion + skip_this_scenario unless ENV.key? ENV_VAR_BY_HOST['sle12sp5_ssh_minion'] end Before('@sle15sp1_minion') do - skip_this_scenario unless $sle15sp1_minion + skip_this_scenario unless ENV.key? ENV_VAR_BY_HOST['sle15sp1_minion'] end Before('@sle15sp1_ssh_minion') do - skip_this_scenario unless $sle15sp1_ssh_minion + skip_this_scenario unless ENV.key? ENV_VAR_BY_HOST['sle15sp1_ssh_minion'] end Before('@sle15sp2_minion') do - skip_this_scenario unless $sle15sp2_minion + skip_this_scenario unless ENV.key? ENV_VAR_BY_HOST['sle15sp2_minion'] end Before('@sle15sp2_ssh_minion') do - skip_this_scenario unless $sle15sp2_ssh_minion + skip_this_scenario unless ENV.key? ENV_VAR_BY_HOST['sle15sp2_ssh_minion'] end Before('@sle15sp3_minion') do - skip_this_scenario unless $sle15sp3_minion + skip_this_scenario unless ENV.key? ENV_VAR_BY_HOST['sle15sp3_minion'] end Before('@sle15sp3_ssh_minion') do - skip_this_scenario unless $sle15sp3_ssh_minion + skip_this_scenario unless ENV.key? ENV_VAR_BY_HOST['sle15sp3_ssh_minion'] end Before('@sle15sp4_minion') do - skip_this_scenario unless $sle15sp4_minion + skip_this_scenario unless ENV.key? ENV_VAR_BY_HOST['sle15sp4_minion'] end Before('@sle15sp4_ssh_minion') do - skip_this_scenario unless $sle15sp4_ssh_minion + skip_this_scenario unless ENV.key? ENV_VAR_BY_HOST['sle15sp4_ssh_minion'] end Before('@sle15sp5_minion') do - skip_this_scenario unless $sle15sp5_minion + skip_this_scenario unless ENV.key? ENV_VAR_BY_HOST['sle15sp5_minion'] end Before('@sle15sp5_ssh_minion') do - skip_this_scenario unless $sle15sp5_ssh_minion + skip_this_scenario unless ENV.key? ENV_VAR_BY_HOST['sle15sp5_ssh_minion'] end Before('@opensuse154arm_minion') do - skip_this_scenario unless $opensuse154arm_minion + skip_this_scenario unless ENV.key? ENV_VAR_BY_HOST['opensuse154arm_minion'] end Before('@opensuse154arm_ssh_minion') do - skip_this_scenario unless $opensuse154arm_ssh_minion + skip_this_scenario unless ENV.key? ENV_VAR_BY_HOST['opensuse154arm_ssh_minion'] end Before('@opensuse155arm_minion') do - skip_this_scenario unless $opensuse155arm_minion + skip_this_scenario unless ENV.key? ENV_VAR_BY_HOST['opensuse155arm_minion'] end Before('@opensuse155arm_ssh_minion') do - skip_this_scenario unless $opensuse155arm_ssh_minion + skip_this_scenario unless ENV.key? ENV_VAR_BY_HOST['opensuse155arm_ssh_minion'] end Before('@slemicro') do |scenario| @@ -396,39 +396,39 @@ def process_code_coverage end Before('@slemicro51_minion') do - skip_this_scenario unless $slemicro51_minion + skip_this_scenario unless ENV.key? ENV_VAR_BY_HOST['slemicro51_minion'] end Before('@slemicro51_ssh_minion') do - skip_this_scenario unless $slemicro51_ssh_minion + skip_this_scenario unless ENV.key? ENV_VAR_BY_HOST['slemicro51_ssh_minion'] end Before('@slemicro52_minion') do - skip_this_scenario unless $slemicro52_minion + skip_this_scenario unless ENV.key? ENV_VAR_BY_HOST['slemicro52_minion'] end Before('@slemicro52_ssh_minion') do - skip_this_scenario unless $slemicro52_ssh_minion + skip_this_scenario unless ENV.key? ENV_VAR_BY_HOST['slemicro52_ssh_minion'] end Before('@slemicro53_minion') do - skip_this_scenario unless $slemicro53_minion + skip_this_scenario unless ENV.key? ENV_VAR_BY_HOST['slemicro53_minion'] end Before('@slemicro53_ssh_minion') do - skip_this_scenario unless $slemicro53_ssh_minion + skip_this_scenario unless ENV.key? ENV_VAR_BY_HOST['slemicro53_ssh_minion'] end Before('@slemicro54_minion') do - skip_this_scenario unless $slemicro54_minion + skip_this_scenario unless ENV.key? ENV_VAR_BY_HOST['slemicro54_minion'] end Before('@slemicro54_ssh_minion') do - skip_this_scenario unless $slemicro54_ssh_minion + skip_this_scenario unless ENV.key? ENV_VAR_BY_HOST['slemicro54_ssh_minion'] end Before('@sle12sp5_buildhost') do - skip_this_scenario unless $sle12sp5_buildhost + skip_this_scenario unless ENV.key? ENV_VAR_BY_HOST['sle12sp5_buildhost'] end Before('@sle12sp5_terminal') do @@ -436,11 +436,11 @@ def process_code_coverage end Before('@sle15sp4_buildhost') do - skip_this_scenario unless $sle15sp4_buildhost + skip_this_scenario unless ENV.key? ENV_VAR_BY_HOST['sle15sp4_buildhost'] end Before('@monitoring_server') do - skip_this_scenario unless $monitoring_server + skip_this_scenario unless ENV.key? ENV_VAR_BY_HOST['monitoring_server'] end Before('@sle15sp4_terminal') do @@ -464,11 +464,11 @@ def process_code_coverage # TODO: remove these 2 "skip" tags when Rocky and Alma have patches available. Before('@skip_for_alma9') do - skip_this_scenario if $alma9_minion || $alma9_ssh_minion + skip_this_scenario if ENV.key?(ENV_VAR_BY_HOST['alma9_minion']) || ENV.key?(ENV_VAR_BY_HOST['alma9_ssh_minion']) end Before('@skip_for_rocky9') do - skip_this_scenario if $rocky9_minion || $rocky_ssh_minion + skip_this_scenario if ENV.key?(ENV_VAR_BY_HOST['rocky9_minion']) || ENV.key?(ENV_VAR_BY_HOST['rocky_ssh_minion']) end Before('@skip_for_sle_micro') do |scenario| @@ -492,22 +492,22 @@ def process_code_coverage # do some tests only if the server is using SUSE Manager Before('@susemanager') do - skip_this_scenario unless $product == 'SUSE Manager' + skip_this_scenario unless product == 'SUSE Manager' end # do some tests only if the server is using Uyuni Before('@uyuni') do - skip_this_scenario unless $product == 'Uyuni' + skip_this_scenario unless product == 'Uyuni' end # do some tests only if we are using salt bundle Before('@salt_bundle') do - skip_this_scenario unless $use_salt_bundle + skip_this_scenario unless use_salt_bundle end # do some tests only if we are using salt bundle Before('@skip_if_salt_bundle') do - skip_this_scenario if $use_salt_bundle + skip_this_scenario if use_salt_bundle end # do test only if HTTP proxy for Uyuni is defined @@ -546,15 +546,15 @@ def process_code_coverage end # have more infos about the errors -def debug_server_on_realtime_failure +def print_server_logs STDOUT.puts '=> /var/log/rhn/rhn_web_ui.log' - out, _code = $server.run("tail -n20 /var/log/rhn/rhn_web_ui.log | awk -v limit=\"$(date --date='5 minutes ago' '+%Y-%m-%d %H:%M:%S')\" ' $0 > limit'") + out, _code = get_target('server').run('tail -n20 /var/log/rhn/rhn_web_ui.log | awk -v limit="$(date --date=\'5 minutes ago\' \'+%Y-%m-%d %H:%M:%S\')" \' $0 > limit\'') out.each_line do |line| STDOUT.puts line.to_s end STDOUT.puts STDOUT.puts '=> /var/log/rhn/rhn_web_api.log' - out, _code = $server.run("tail -n20 /var/log/rhn/rhn_web_api.log | awk -v limit=\"$(date --date='5 minutes ago' '+%Y-%m-%d %H:%M:%S')\" ' $0 > limit'") + out, _code = get_target('server').run('tail -n20 /var/log/rhn/rhn_web_api.log | awk -v limit="$(date --date=\'5 minutes ago\' \'+%Y-%m-%d %H:%M:%S\')" \' $0 > limit\'') out.each_line do |line| STDOUT.puts line.to_s end diff --git a/testsuite/features/support/lavanda.rb b/testsuite/features/support/lavanda.rb index 79e8bbe9c3d3..b81ed507e991 100644 --- a/testsuite/features/support/lavanda.rb +++ b/testsuite/features/support/lavanda.rb @@ -5,8 +5,8 @@ require 'timeout' # Extend the objects node VMs with useful methods needed for testsuite. -# All function added here will be available like $server.run -# or $minion.run_until_ok etc. +# All function added here will be available like get_target('server').run +# or get_target('sle_minion').run_until_ok etc. module LavandaBasic # init the hostnames, only one time def init_hostname(hostname) @@ -77,6 +77,12 @@ def init_os_version(os_version) @in_os_version = os_version end + ## + # Initializes the @in_has_uyunictl variable to true. + def init_has_uyunictl + @in_has_uyunictl = true + end + # getter functions, executed on testsuite def hostname raise 'empty hostname, something wrong' if @in_hostname.empty? @@ -145,6 +151,27 @@ def os_version # buffer_size: The maximum buffer size in bytes. Defaults to 65536. # verbose: Whether to log the output of the command in case of success. Defaults to false. def run(cmd, separated_results: false, check_errors: true, timeout: DEFAULT_TIMEOUT, user: 'root', successcodes: [0], buffer_size: 65536, verbose: false) + cmd_prefixed = cmd + if @in_has_uyunictl + cmd_prefixed = "uyunictl exec -i '#{cmd.gsub(/'/, '\'"\'"\'')}'" + print "#{cmd_prefixed}\n" + end + run_local(cmd_prefixed, separated_results: separated_results, check_errors: check_errors, timeout: timeout, user: user, successcodes: successcodes, buffer_size: buffer_size, verbose: verbose) + end + + ## + # It runs a command, and returns the output, error, and exit code. + # + # Args: + # cmd: The command to run. + # separated_results: Whether the results should be stored separately. Defaults to false. + # check_errors: Whether to check for errors or not. Defaults to true. + # timeout: The timeout to be used, in seconds. Defaults to 250 or the value of the DEFAULT_TIMEOUT environment variable. + # user: The user to be used to run the command. Defaults to root. + # successcodes: An array with the values to be accepted as success codes from the command run. + # buffer_size: The maximum buffer size in bytes. Defaults to 65536. + # verbose: Whether to log the output of the command in case of success. Defaults to false. + def run_local(cmd, separated_results: false, check_errors: true, timeout: DEFAULT_TIMEOUT, user: 'root', successcodes: [0], buffer_size: 65536, verbose: false) if separated_results out, err, _lo, _rem, code = test_and_store_results_separately(cmd, user, timeout, buffer_size) else @@ -166,8 +193,8 @@ def run(cmd, separated_results: false, check_errors: true, timeout: DEFAULT_TIME # # Args: # cmd: The command to run. - def run_until_ok(cmd) - repeat_until_timeout(report_result: true) do + def run_until_ok(cmd, timeout: DEFAULT_TIMEOUT) + repeat_until_timeout(timeout: timeout, report_result: true) do result, code = run(cmd, check_errors: false) break if code.zero? sleep 2 @@ -180,8 +207,8 @@ def run_until_ok(cmd) # # Args: # cmd: The command to run. - def run_until_fail(cmd) - repeat_until_timeout(report_result: true) do + def run_until_fail(cmd, timeout: DEFAULT_TIMEOUT) + repeat_until_timeout(timeout: timeout, report_result: true) do result, code = run(cmd, check_errors: false) break if code.nonzero? sleep 2 @@ -202,4 +229,75 @@ def wait_while_process_running(process) result end end + + def inject(local_file, remote_file, user = "root", dots = true) + if @in_has_uyunictl + tmp_folder, _code = run_local("mktemp -d") + tmp_file = File.join(tmp_folder.strip, File.basename(local_file)) + code, _remote = inject_file(local_file, tmp_file, user, dots) + if code.zero? + _out, code = run_local("uyunictl cp --user #{user} #{tmp_file} server:#{remote_file}") + raise "Failed to copy #{tmp_file} to container" unless code.zero? + end + run_local("rm -r #{tmp_folder}") + else + code, _remote = inject_file(local_file, remote_file, user, dots) + end + code + end + + def extract(remote_file, local_file, user = "root", dots = true) + if @in_has_uyunictl + tmp_folder, _code = run_local("mktemp -d") + tmp_file = File.join(tmp_folder.strip, File.basename(remote_file)) + _out, code = run_local("uyunictl cp --user #{user} server:#{remote_file} #{tmp_file}") + raise "Failed to extract #{remote_file} from container" unless code.zero? + code, _remote = extract_file(tmp_file, local_file, user, dots) + raise "Failed to extract #{tmp_file} from host" unless code.zero? + run_local("rm -r #{tmp_folder}") + else + code, _local = extract_file(remote_file, local_file, user, dots) + end + code + end + + def file_exists(file) + if @in_has_uyunictl + _out, code = run_local("uyunictl exec -- 'test -f #{file}'", check_errors: false) + exists = code.zero? + else + _out, local, _remote, code = test_and_store_results_together("test -f #{file}", 'root', 500) + exists = code.zero? && local.zero? + end + exists + end + + def folder_exists(file) + if @in_has_uyunictl + _out, code = run_local("uyunictl exec -- 'test -d #{file}'", check_errors: false) + exists = code.zero? + else + _out, local, _remote, code = test_and_store_results_together("test -d #{file}", 'root', 500) + exists = code.zero? && local.zero? + end + exists + end + + def file_delete(file) + if @in_has_uyunictl + _out, code = run_local("uyunictl exec -- 'rm #{file}'") + else + _out, _local, _remote, code = test_and_store_results_together("rm #{file}", 'root', 500) + end + code + end + + def folder_delete(folder) + if @in_has_uyunictl + _out, code = run_local("uyunictl exec -- 'rm -rf #{folder}'") + else + _out, _local, _remote, code = test_and_store_results_together("rm-rf #{folder}", 'root', 500) + end + code + end end diff --git a/testsuite/features/support/namespaces/system.rb b/testsuite/features/support/namespaces/system.rb index 039fe17165ca..9fc541e9703f 100644 --- a/testsuite/features/support/namespaces/system.rb +++ b/testsuite/features/support/namespaces/system.rb @@ -72,10 +72,10 @@ def list_latest_upgradable_packages(server) # activation_key: The activation key to use for the system. # salt_ssh: Boolean value determining if the system is SSH managed or not. def bootstrap_system(host, activation_key, salt_ssh) - if $proxy.nil? + if get_target('proxy').nil? @test.call('system.bootstrap', sessionKey: @test.token, host: host, sshPort: 22, sshUser: 'root', sshPassword: 'linux', activationKey: activation_key, saltSSH: salt_ssh) else - proxy = @test.call('system.searchByName', sessionKey: @test.token, regexp: $proxy.full_hostname) + proxy = @test.call('system.searchByName', sessionKey: @test.token, regexp: get_target('proxy').full_hostname) proxy_id = proxy.map { |s| s['id'] }.first @test.call('system.bootstrap', sessionKey: @test.token, host: host, sshPort: 22, sshUser: 'root', sshPassword: 'linux', activationKey: activation_key, proxyId: proxy_id, saltSSH: salt_ssh) end diff --git a/testsuite/features/support/twopence_env.rb b/testsuite/features/support/twopence_env.rb new file mode 100644 index 000000000000..b98d5435d9a1 --- /dev/null +++ b/testsuite/features/support/twopence_env.rb @@ -0,0 +1,42 @@ +# Copyright (c) 2016-2023 SUSE LLC. +# Licensed under the terms of the MIT license. + +require 'require_all' +require 'twopence' +require_all 'features/support' + +# Raise a warning if any of these environment variables is missing +raise 'Server IP address or domain name variable empty' if ENV['SERVER'].nil? + +warn 'Proxy IP address or domain name variable empty' if ENV['PROXY'].nil? +unless $build_validation + warn 'Minion IP address or domain name variable empty' if ENV['MINION'].nil? + warn 'Buildhost IP address or domain name variable empty' if ENV['BUILD_HOST'].nil? + warn 'Red Hat-like minion IP address or domain name variable empty' if ENV['RHLIKE_MINION'].nil? + warn 'Debian-like minion IP address or domain name variable empty' if ENV['DEBLIKE_MINION'].nil? + warn 'SSH minion IP address or domain name variable empty' if ENV['SSH_MINION'].nil? + warn 'PXE boot MAC address variable empty' if ENV['PXEBOOT_MAC'].nil? + warn 'KVM server minion IP address or domain name variable empty' if ENV['VIRTHOST_KVM_URL'].nil? + warn 'Nested VM hostname empty' if ENV['MIN_NESTED'].nil? + warn 'Nested VM MAC address empty' if ENV['MAC_MIN_NESTED'].nil? +end + +# Dictionaries to obtain host or node from the Twopence objects +$node_by_host = {} +$host_by_node = {} + +# Preserve FQDN before initialization +$named_nodes = {} + +# Define SCC credentials through the environment variable +if ENV['SCC_CREDENTIALS'] + scc_username, scc_password = ENV['SCC_CREDENTIALS'].split('|') + $scc_credentials = !scc_username.to_s.empty? && !scc_password.to_s.empty? +end + +# Get the Twopence node passing the host (includes lazy initialization) +def get_target(host, refresh: false) + node = $node_by_host[host] + node = twopence_init(host) if node.nil? || refresh == true + node +end diff --git a/testsuite/features/support/twopence_init.rb b/testsuite/features/support/twopence_init.rb index 611eb0b6c9d0..128a698970d5 100644 --- a/testsuite/features/support/twopence_init.rb +++ b/testsuite/features/support/twopence_init.rb @@ -139,25 +139,38 @@ def twopence_init(target) node.extend(LavandaBasic) end +_out, code = $server.run('which uyunictl', check_errors: false) +if code.zero? + $server.init_has_uyunictl +end + # Initialize hostname $nodes.each do |node| next if node.nil? - hostname, local, remote, code = node.test_and_store_results_together('hostname', 'root', 500) - # special handling for nested VMs since they will only be crated later in the test suite - # we to a late hostname initialization in a special step for those - next if hostname.empty? || node == $salt_migration_minion - - raise "Cannot connect to get hostname for '#{$named_nodes[node.hash]}'. Response code: #{code}, local: #{local}, remote: #{remote}" if code.nonzero? || remote.nonzero? || local.nonzero? - raise "No hostname for '#{$named_nodes[node.hash]}'. Response code: #{code}" if hostname.empty? - node.init_hostname(hostname) - - fqdn, local, remote, code = node.test_and_store_results_together('hostname -f', 'root', 500) - raise "Cannot connect to get FQDN for '#{$named_nodes[node.hash]}'. Response code: #{code}, local: #{local}, remote: #{remote}" if code.nonzero? || remote.nonzero? || local.nonzero? - raise "No FQDN for '#{$named_nodes[node.hash]}'. Response code: #{code}" if fqdn.empty? - node.init_full_hostname(fqdn) + if node == $server + fqdn, code = node.run('sed -n \'s/^java.hostname *= *\(.\+\)$/\1/p\' /etc/rhn/rhn.conf') + raise "Cannot connect to get FQDN for '#{$named_nodes[node.hash]}'. Response code: #{code}, local: #{local}, remote: #{remote}" if code.nonzero? + raise "No FQDN for '#{$named_nodes[node.hash]}'. Response code: #{code}" if fqdn.empty? + node.init_full_hostname(fqdn) + node.init_hostname(fqdn.split(".")[0]) + else + hostname, local, remote, code = node.test_and_store_results_together('hostname', 'root', 500) + # special handling for nested VMs since they will only be crated later in the test suite + # we to a late hostname initialization in a special step for those + next if hostname.empty? || node == $salt_migration_minion + + raise "Cannot connect to get hostname for '#{$named_nodes[node.hash]}'. Response code: #{code}, local: #{local}, remote: #{remote}" if code.nonzero? || remote.nonzero? || local.nonzero? + raise "No hostname for '#{$named_nodes[node.hash]}'. Response code: #{code}" if hostname.empty? + node.init_hostname(hostname) + + fqdn, local, remote, code = node.test_and_store_results_together('hostname -f', 'root', 500) + raise "Cannot connect to get FQDN for '#{$named_nodes[node.hash]}'. Response code: #{code}, local: #{local}, remote: #{remote}" if code.nonzero? || remote.nonzero? || local.nonzero? + raise "No FQDN for '#{$named_nodes[node.hash]}'. Response code: #{code}" if fqdn.empty? + node.init_full_hostname(fqdn) + end - STDOUT.puts "Host '#{$named_nodes[node.hash]}' is alive with determined hostname #{hostname.strip} and FQDN #{fqdn.strip}" unless $build_validation + STDOUT.puts "Host '#{$named_nodes[node.hash]}' is alive with determined hostname #{node.hostname} and FQDN #{node.full_hostname}" unless $build_validation os_version, os_family = get_os_version(node) node.init_os_family(os_family) node.init_os_version(os_version) @@ -199,13 +212,8 @@ def get_system_name(host) when 'containerized_proxy' system_name = $proxy.full_hostname.sub('pxy', 'pod-pxy') else - begin - node = get_target(host) - system_name = node.full_hostname - rescue RuntimeError - # If the node for that host is not defined, just return the host parameter as system_name - system_name = host - end + node = get_target(host) + system_name = node.full_hostname end system_name end @@ -230,38 +238,32 @@ def net_prefix # This function tests whether a file exists on a node def file_exists?(node, file) - _out, local, _remote, code = node.test_and_store_results_together("test -f #{file}", 'root', 500) - code.zero? && local.zero? + node.file_exists(file) end # This function tests whether a folder exists on a node def folder_exists?(node, file) - _out, local, _remote, code = node.test_and_store_results_together("test -d #{file}", 'root', 500) - code.zero? && local.zero? + node.folder_exists(file) end # This function deletes a file from a node def file_delete(node, file) - _out, _local, _remote, code = node.test_and_store_results_together("rm #{file}", 'root', 500) - code + node.file_delete(file) end # This function deletes a file from a node def folder_delete(node, folder) - _out, _local, _remote, code = node.test_and_store_results_together("rm -rf #{folder}", 'root', 500) - code + node.folder_delete(folder) end # This function extracts a file from a node def file_extract(node, remote_file, local_file) - code, _remote = node.extract_file(remote_file, local_file, 'root', false) - code + node.extract(remote_file, local_file, 'root', false) end # This function injects a file into a node def file_inject(node, local_file, remote_file) - code, _remote = node.inject_file(local_file, remote_file, 'root', false) - code + node.inject(local_file, remote_file, 'root', false) end # Other global variables @@ -364,7 +366,7 @@ def client_public_ip(host) raise "Cannot resolve node for host '#{host}'" if node.nil? %w[br0 eth0 eth1 ens0 ens1 ens2 ens3 ens4 ens5 ens6].each do |dev| - output, code = node.run("ip address show dev #{dev} | grep 'inet '", check_errors: false) + output, code = node.run_local("ip address show dev #{dev} | grep 'inet '", check_errors: false) next unless code.zero? node.init_public_interface(dev) diff --git a/testsuite/podman_runner/06_start_server.sh b/testsuite/podman_runner/06_start_server.sh index c602972a1305..a79a5fef823b 100755 --- a/testsuite/podman_runner/06_start_server.sh +++ b/testsuite/podman_runner/06_start_server.sh @@ -2,5 +2,5 @@ set -xe src_dir=$(cd $(dirname "$0")/../.. && pwd -P) -sudo -i podman run --rm --tmpfs /run -v ${src_dir}/schema/spacewalk/spacewalk-schema-upgrade:/usr/bin/spacewalk-schema-upgrade -v${src_dir}/testsuite:/testsuite -v ${src_dir}/schema/spacewalk/upgrade/:/etc/sysconfig/rhn/schema-upgrade/ -v ${src_dir}/schema/reportdb/upgrade/:/etc/sysconfig/rhn/reportdb-schema-upgrade/ -v ${src_dir}/web:/web -v ${src_dir}/branding:/branding -v ${src_dir}/java:/java -v /sys/fs/cgroup:/sys/fs/cgroup:rw -v /tmp/test-all-in-one:/tmp --cgroupns=host --add-host=download.opensuse.org:195.135.221.134 -h uyuni-server-all-in-one-test -p 8443:443 -p 8080:80 -p 4505:4505 -p 4506:4506 -d --name=uyuni-server-all-in-one-test --network uyuni-network-1 ghcr.io/$UYUNI_PROJECT/uyuni/ci-test-server-all-in-one-dev:$UYUNI_VERSION +sudo -i podman run --rm --tmpfs /run -v ${src_dir}/schema/spacewalk/spacewalk-schema-upgrade:/usr/bin/spacewalk-schema-upgrade -v${src_dir}/testsuite:/testsuite -v ${src_dir}/schema/spacewalk/upgrade/:/etc/sysconfig/rhn/schema-upgrade/ -v ${src_dir}/schema/reportdb/upgrade/:/etc/sysconfig/rhn/reportdb-schema-upgrade/ -v ${src_dir}/web:/web -v ${src_dir}/branding:/branding -v ${src_dir}/java:/java -v /sys/fs/cgroup:/sys/fs/cgroup:rw -v /tmp/test-all-in-one:/tmp --cgroupns=host --add-host=download.opensuse.org:195.135.221.134 --add-host=registry.npmjs.org:104.16.31.34 --add-host=registry.yarnpkg.com:104.16.29.34 -h uyuni-server-all-in-one-test -p 8443:443 -p 8080:80 -p 4505:4505 -p 4506:4506 -d --name=uyuni-server-all-in-one-test --network uyuni-network-1 ghcr.io/$UYUNI_PROJECT/uyuni/ci-test-server-all-in-one-dev:$UYUNI_VERSION diff --git a/testsuite/podman_runner/07_manager_setup.sh b/testsuite/podman_runner/07_manager_setup.sh index ec7e20cdb345..74fe4ff88fac 100755 --- a/testsuite/podman_runner/07_manager_setup.sh +++ b/testsuite/podman_runner/07_manager_setup.sh @@ -1,6 +1,19 @@ #!/bin/bash set -xe + +src_dir=$(cd $(dirname "$0")/../.. && pwd -P) + sudo -i podman exec uyuni-server-all-in-one-test bash -c "/usr/lib/susemanager/bin/mgr-setup -l /var/log/susemanager_setup.log -s" sudo -i podman exec uyuni-server-all-in-one-test bash -c "/usr/bin/spacewalk-schema-upgrade -y" -# Make sure latest sql migration scripts have been executed -sudo -i podman exec uyuni-server-all-in-one-test bash -c "/testsuite/podman_runner/run_db_migrations.sh" + +# Make sure latest sql migration scripts have been executed for both the main and the reporting database +available_schemas=("spacewalk" "reportdb") +for schema in ${available_schemas[@]}; do + specfile=$(find ${src_dir}/schema/${schema}/ -name *.spec) + # Use Perl extended regexp and look-around assertions to extract only the values from the spec properties + schema_name=$(grep -oP "Name:\s+\K(.*)$" ${specfile}) + schema_version=$(grep -oP "Version:\s+\K(.*)$" ${specfile}) + + sudo -i podman exec uyuni-server-all-in-one-test bash -c "/testsuite/podman_runner/run_db_migrations.sh ${schema_name} ${schema_version}" +done + diff --git a/testsuite/podman_runner/08_build_server_code.sh b/testsuite/podman_runner/08_build_server_code.sh index ace82a41e6b6..121c619a8e41 100755 --- a/testsuite/podman_runner/08_build_server_code.sh +++ b/testsuite/podman_runner/08_build_server_code.sh @@ -2,7 +2,7 @@ set -xe sudo -i podman exec uyuni-server-all-in-one-test bash -c "cp /testsuite/podman_runner/debug_logging.properties /etc/tomcat/logging.properties" sudo -i podman exec uyuni-server-all-in-one-test bash -c "cd /java && ant -f manager-build.xml ivy refresh-branding-jar deploy-local" -sudo -i podman exec uyuni-server-all-in-one-test bash -c "cd /web/html/src;[ -d dist ] || mkdir dist;yarn install --force --ignore-optional --production=true --frozen-lockfile;yarn autoclean --force;yarn build:novalidate; rsync -a dist/ /srv/www/htdocs/" +sudo -i podman exec uyuni-server-all-in-one-test bash -c "set -xe;cd /web/html/src;[ -d dist ] || mkdir dist;yarn install --force --ignore-optional --production=true --frozen-lockfile;yarn autoclean --force;yarn build:novalidate; rsync -a dist/ /srv/www/htdocs/" sudo -i podman exec uyuni-server-all-in-one-test bash -c "rctomcat restart" diff --git a/testsuite/podman_runner/run_db_migrations.sh b/testsuite/podman_runner/run_db_migrations.sh index 36b1290447aa..1b36fa2eef59 100755 --- a/testsuite/podman_runner/run_db_migrations.sh +++ b/testsuite/podman_runner/run_db_migrations.sh @@ -1,7 +1,30 @@ #!/bin/bash -e -for i in $(ls /etc/sysconfig/rhn/schema-upgrade/ | tail -n1);do - for j in $(ls /etc/sysconfig/rhn/schema-upgrade/$i);do - echo $i;spacewalk-sql /etc/sysconfig/rhn/schema-upgrade/$i/$j; + +if [ $# -ne 2 ]; +then + echo "Usage: $0 " + echo "where" + echo " schema_name name of the schema to update (susemanager-schema or uyuni-reportdb-schema)" + echo " schema_version version of the schema currently installed" + exit 1 +fi + +if [[ "$1" == "susemanager-schema" ]]; +then + upgrade_dir="/etc/sysconfig/rhn/schema-upgrade/" + additional_params="" +elif [[ "$1" == "uyuni-reportdb-schema" ]]; +then + upgrade_dir="/etc/sysconfig/rhn/reportdb-schema-upgrade/" + additional_params="--reportdb" +else + echo "Unknown schema $1. Use either susemanager-schema or uyuni-reportdb-schema." + exit 1 +fi + +for i in $(find ${upgrade_dir} -name "$1-$2-to-*"); do + echo $(basename $i) + for j in $(find $i -name *.sql); do + echo -e "\t$(basename $j)"; spacewalk-sql ${additional_params} $j | sed 's/^/\t\t/'; done; done - diff --git a/testsuite/run_sets/build_validation/build_validation_add_non_MU_channels.yml b/testsuite/run_sets/build_validation/build_validation_add_non_MU_channels.yml index dc6cf5de512d..6243a4f24e2a 100644 --- a/testsuite/run_sets/build_validation/build_validation_add_non_MU_channels.yml +++ b/testsuite/run_sets/build_validation/build_validation_add_non_MU_channels.yml @@ -1,6 +1,5 @@ ## Add non_MU repositories BEGIN ### -- features/build_validation/add_non_MU_repositories/ubuntu1804_minion_add_common_repositories.feature - features/build_validation/add_non_MU_repositories/alma9_minion_build_clm.feature - features/build_validation/add_non_MU_repositories/centos7_minion_add_iso.feature - features/build_validation/add_non_MU_repositories/liberty9_minion_build_clm.feature diff --git a/testsuite/run_sets/build_validation/build_validation_add_non_MU_repositories/build_validation_ubuntu1804_minion_add_common_repositories.yml b/testsuite/run_sets/build_validation/build_validation_add_non_MU_repositories/build_validation_ubuntu1804_minion_add_common_repositories.yml deleted file mode 100644 index b87f21f89266..000000000000 --- a/testsuite/run_sets/build_validation/build_validation_add_non_MU_repositories/build_validation_ubuntu1804_minion_add_common_repositories.yml +++ /dev/null @@ -1,5 +0,0 @@ -## Add non MU repositories for ubuntu1804 BEGIN ### - -- features/build_validation/add_non_MU_repositories/ubuntu1804_minion_add_common_repositories.feature - -## Add non MU repositories END ### diff --git a/testsuite/run_sets/build_validation/build_validation_init_clients.yml b/testsuite/run_sets/build_validation/build_validation_init_clients.yml index 4752577ce739..eb7f773d43aa 100644 --- a/testsuite/run_sets/build_validation/build_validation_init_clients.yml +++ b/testsuite/run_sets/build_validation/build_validation_init_clients.yml @@ -33,8 +33,6 @@ - features/build_validation/init_clients/rocky9_minion.feature - features/build_validation/init_clients/rocky9_ssh_minion.feature -- features/build_validation/init_clients/ubuntu1804_minion.feature -- features/build_validation/init_clients/ubuntu1804_ssh_minion.feature - features/build_validation/init_clients/ubuntu2004_minion.feature - features/build_validation/init_clients/ubuntu2004_ssh_minion.feature - features/build_validation/init_clients/ubuntu2204_minion.feature diff --git a/testsuite/run_sets/core.yml b/testsuite/run_sets/core.yml index 541c79e8dc03..f2cf12da8911 100644 --- a/testsuite/run_sets/core.yml +++ b/testsuite/run_sets/core.yml @@ -14,16 +14,8 @@ - features/core/srv_organization_credentials.feature - features/core/srv_user_preferences.feature - features/core/srv_channels_add.feature -- features/core/srv_create_repository.feature - features/core/srv_create_activationkey.feature - features/core/srv_osimage.feature - features/core/srv_docker.feature -# initialize Uyuni proxy - # one of: proxy_register_as_minion_with_script.feature - # proxy_register_as_minion_with_gui.feature - # proxy_register_as_pod.feature -- features/core/proxy_register_as_minion_with_script.feature -- features/core/proxy_branch_network.feature - ## Core features END ### diff --git a/testsuite/run_sets/github_validation/github_validation_proxy.yml b/testsuite/run_sets/github_validation/github_validation_proxy.yml index fea3ce0f04d5..17ec42db8c68 100644 --- a/testsuite/run_sets/github_validation/github_validation_proxy.yml +++ b/testsuite/run_sets/github_validation/github_validation_proxy.yml @@ -8,11 +8,11 @@ # IMMUTABLE ORDER -# initialize Uyuni proxy - # one of: proxy_register_as_trad_with_script.feature - # proxy_register_as_minion_with_script.feature +# Proxy + # one of: proxy_register_as_minion_with_script.feature # proxy_register_as_minion_with_gui.feature -- features/core/proxy_register_as_pod.feature -- features/core/proxy_branch_network.feature + # proxy_register_as_pod.feature +- features/init_clients/proxy_register_as_minion_with_script.feature +- features/init_clients/proxy_branch_network.feature ## Core features END ### diff --git a/testsuite/run_sets/init_clients.yml b/testsuite/run_sets/init_clients.yml index 1c7738761964..c38a7fd6a1ee 100644 --- a/testsuite/run_sets/init_clients.yml +++ b/testsuite/run_sets/init_clients.yml @@ -8,6 +8,14 @@ - features/init_clients/allcli_update_activationkeys.feature - features/init_clients/srv_check_reposync.feature + +# Proxy + # one of: proxy_register_as_minion_with_script.feature + # proxy_register_as_minion_with_gui.feature + # proxy_register_as_pod.feature +- features/init_clients/proxy_register_as_minion_with_script.feature +- features/init_clients/proxy_branch_network.feature + - features/init_clients/sle_minion.feature - features/init_clients/sle_ssh_minion.feature - features/init_clients/min_rhlike_salt.feature diff --git a/testsuite/run_sets/refhost.yml b/testsuite/run_sets/refhost.yml index cd09326b7421..02ee8f32dd25 100644 --- a/testsuite/run_sets/refhost.yml +++ b/testsuite/run_sets/refhost.yml @@ -12,7 +12,7 @@ - features/core/allcli_sanity.feature - features/core/srv_first_settings.feature - features/core/srv_channels_add.feature -- features/core/srv_create_repository.feature +- features/reposync/srv_create_repository.feature - features/core/srv_create_activationkey.feature - features/core/srv_docker.feature diff --git a/testsuite/run_sets/reposync.yml b/testsuite/run_sets/reposync.yml index 87664f936ab5..a6423908d0c9 100644 --- a/testsuite/run_sets/reposync.yml +++ b/testsuite/run_sets/reposync.yml @@ -13,5 +13,6 @@ - features/reposync/srv_sync_products.feature - features/reposync/srv_enable_sync_products.feature - features/reposync/srv_wait_for_reposync.feature +- features/reposync/srv_create_repository.feature ## Channels and Product synchronization features END ### diff --git a/utils/spacewalk-common-channels.ini b/utils/spacewalk-common-channels.ini index 1c87a8d5298b..0341db0c27a0 100644 --- a/utils/spacewalk-common-channels.ini +++ b/utils/spacewalk-common-channels.ini @@ -3486,6 +3486,15 @@ checksum = sha256 base_channels = debian-10-pool-amd64-uyuni repo_url = http://security-cdn.debian.org/debian-security/dists/buster/updates/main/binary-amd64/ +[debian-10-amd64-main-backports-uyuni] +label = debian-10-amd64-main-backports-uyuni +name = Debian 10 (buster) AMD64 Main Backports for Uyuni +archs = amd64-deb +repo_type = deb +checksum = sha256 +base_channels = debian-10-pool-amd64-uyuni +repo_url = http://deb.debian.org/debian/dists/buster-backports/main/binary-amd64/ + [debian-10-amd64-uyuni-client-devel] label = debian-10-amd64-uyuni-client-devel name = Uyuni Client Tools for Debian 10 Buster AMD64 (Development) @@ -3533,6 +3542,15 @@ checksum = sha256 base_channels = debian-11-pool-amd64-uyuni repo_url = http://security.debian.org/debian-security/dists/bullseye-security/updates/main/binary-amd64/ +[debian-11-amd64-main-backports-uyuni] +label = debian-11-amd64-main-backports-uyuni +name = Debian 11 (bullseye) AMD64 Main Backports for Uyuni +archs = amd64-deb +repo_type = deb +checksum = sha256 +base_channels = debian-11-pool-amd64-uyuni +repo_url = http://deb.debian.org/debian/dists/bullseye-backports/main/binary-amd64/ + [debian-11-amd64-uyuni-client-devel] label = debian-11-amd64-uyuni-client-devel name = Uyuni Client Tools for Debian 11 Bullseye AMD64 (Development) diff --git a/utils/spacewalk-hostname-rename b/utils/spacewalk-hostname-rename index cde5ff6c0723..66931e5890c7 100755 --- a/utils/spacewalk-hostname-rename +++ b/utils/spacewalk-hostname-rename @@ -638,6 +638,10 @@ if [ -e $MGR_SYNC_CONF ]; then fi print_status 0 # just simulate end +echo -n "Changing postfix settings ... " | tee -a $LOG +postconf -e myhostname=$HOSTNAME +systemctl restart postfix + echo -n "Starting spacewalk services ... " | tee -a $LOG if [ "$DB_SERVICE" != "" ] then diff --git a/utils/spacewalk-utils.changes.stdevel.debian-backports b/utils/spacewalk-utils.changes.stdevel.debian-backports new file mode 100644 index 000000000000..269fc37e5e2a --- /dev/null +++ b/utils/spacewalk-utils.changes.stdevel.debian-backports @@ -0,0 +1 @@ +- Add missing Debian 10 and 11 backports repositories for spacewalk-common-channels diff --git a/uyuni/base/uyuni-base.changes.vzhestkov.fix-uyuni-base-server-subpackage b/uyuni/base/uyuni-base.changes.vzhestkov.fix-uyuni-base-server-subpackage new file mode 100644 index 000000000000..e9f2527c1a70 --- /dev/null +++ b/uyuni/base/uyuni-base.changes.vzhestkov.fix-uyuni-base-server-subpackage @@ -0,0 +1 @@ +- Only build 'uyuni-base-server' package for server and not for client tools diff --git a/uyuni/base/uyuni-base.spec b/uyuni/base/uyuni-base.spec index 754032325b62..2ec5edee5301 100644 --- a/uyuni/base/uyuni-base.spec +++ b/uyuni/base/uyuni-base.spec @@ -60,7 +60,7 @@ Requires(pre): httpd %description common Basic filesystem hierarchy for Uyuni server and proxy. -%if ! (0%{?suse_version} == 1110) +%if 0%{?suse_version} >= 1500 || 0%{?rhel} >= 9 %package server Summary: Base structure for Uyuni server Group: System/Fhs @@ -98,12 +98,12 @@ Basic filesystem hierarchy for Uyuni proxy. %install mkdir -p %{buildroot}/etc/rhn mkdir -p %{buildroot}/usr/share/rhn/proxy -%if ! (0%{?suse_version} == 1110) +%if 0%{?suse_version} >= 1500 || 0%{?rhel} >= 9 mkdir -p %{buildroot}/var/spacewalk %endif mkdir -p %{buildroot}/%{_prefix}/share/rhn/config-defaults -%if !(0%{?suse_version} == 1110) +%if 0%{?suse_version} >= 1500 || 0%{?rhel} >= 9 %pre server getent group susemanager >/dev/null || %{_sbindir}/groupadd -r susemanager getent passwd salt >/dev/null && %{_sbindir}/usermod -a -G susemanager salt @@ -119,7 +119,7 @@ getent passwd %{apache_user} >/dev/null && %{_sbindir}/usermod -a -G susemanager %dir %{_prefix}/share/rhn %dir %attr(755,root,%{apache_group}) %{_prefix}/share/rhn/config-defaults -%if ! (0%{?suse_version} == 1110) +%if 0%{?suse_version} >= 1500 || 0%{?rhel} >= 9 %files server %defattr(-,root,root) %dir %attr(755,%{apache_user}, root) /var/spacewalk diff --git a/web/README.md b/web/README.md index f9126941112e..9cf6cdfbce15 100644 --- a/web/README.md +++ b/web/README.md @@ -10,6 +10,13 @@ The `web` subdirectory consists of roughly the following main chunks: - `web/html/src/components`, `web/html/src/core`, `web/html/src/manager`, `web/html/src/utils`: Source code for the web UI. - `web/html/dist`: Output directory for the frontend build, do not check this directory in nor modify it directly, your changes will be overwritten by the next build. +## Frontend development quick start + + - Install [Node](https://nodejs.org/en/download) + - Install [Yarn](https://classic.yarnpkg.com/en/docs/install) + - In the repository root, run `yarn install` + - Run development against a server of your choice `yarn proxy https://server.example.com` + ## Scripts We use [Yarn](https://yarnpkg.com/) as the package manager and script runner for the frontend codebase. All scripts are scoped to `web/html/src`. diff --git a/web/html/src/.eslintrc.js b/web/html/src/.eslintrc.js index 0b19db91dbfa..4846dd5dac16 100644 --- a/web/html/src/.eslintrc.js +++ b/web/html/src/.eslintrc.js @@ -53,7 +53,7 @@ module.exports = { ["^\\u0000"], // HMR needs to be imported before everything else ["^react-hot-loader/root"], - ["^react$"], + ["^react$", "^react-dom$"], // Fullcalendar needs to be imported before its plugins ["^@fullcalendar/react"], // Packages diff --git a/web/html/src/components/FormulaForm.tsx b/web/html/src/components/FormulaForm.tsx index 179229a02b0c..f1613b69d36d 100644 --- a/web/html/src/components/FormulaForm.tsx +++ b/web/html/src/components/FormulaForm.tsx @@ -20,8 +20,8 @@ import { Loading } from "./utils"; const capitalize = Utils.capitalize; -const defaultMessageTexts = { - pillar_only_formula_saved:

{t("Formula saved. Applying the highstate is not needed for this formula.")}

, +const defaultMessageMap = { + pillar_only_formula_saved: t("Formula saved. Applying the highstate is not needed for this formula."), }; export enum SectionState { @@ -134,10 +134,9 @@ class FormulaForm extends React.Component { else { if (data.formula_list.filter((formula) => formula === data.formula_name).length > 1) { this.state.warnings.push( - t( - 'Multiple Group formulas detected. Only one formula for "{0}" can be used on each system!', - capitalize(data.formula_name) - ) + t('Multiple Group formulas detected. Only one formula for "{name}" can be used on each system!', { + name: capitalize(data.formula_name), + }) ); } const rawLayout = data.layout; @@ -166,10 +165,10 @@ class FormulaForm extends React.Component { if (data.errors) { const messages: string[] = []; if (data.errors.required && data.errors.required.length > 0) { - messages.push(t("Please input required fields: {0}", data.errors.required.join(", "))); + messages.push(t("Please input required fields: {fields}", { fields: data.errors.required.join(", ") })); } if (data.errors.invalid && data.errors.invalid.length > 0) { - messages.push(t("Invalid format of fields: {0}", data.errors.invalid.join(", "))); + messages.push(t("Invalid format of fields: {fields}", { fields: data.errors.invalid.join(", ") })); } this.setState({ messages: [], @@ -205,11 +204,8 @@ class FormulaForm extends React.Component { } }; - getMessageText = (msg) => { - if (!this.props.messageTexts[msg] && defaultMessageTexts[msg]) { - return defaultMessageTexts[msg]; - } - return this.props.messageTexts[msg] ? this.props.messageTexts[msg] : msg; + getMessageText = (msg: string) => { + return this.props.messageTexts[msg] || defaultMessageMap[msg] || msg; }; render() { diff --git a/web/html/src/components/ace-editor.tsx b/web/html/src/components/ace-editor.tsx index bbf047ad7c49..4f01b177e5ed 100644 --- a/web/html/src/components/ace-editor.tsx +++ b/web/html/src/components/ace-editor.tsx @@ -1,5 +1,4 @@ import * as React from "react"; - import ReactDOM from "react-dom"; type Props = { diff --git a/web/html/src/components/dialog/ActionConfirm.tsx b/web/html/src/components/dialog/ActionConfirm.tsx index 4fbce9e552be..21fc5b1a5c80 100644 --- a/web/html/src/components/dialog/ActionConfirm.tsx +++ b/web/html/src/components/dialog/ActionConfirm.tsx @@ -68,26 +68,27 @@ export class ActionConfirm extends React.Component { )} {this.props.selected.length === 1 && ( - {t( - "Are you sure you want to {0} {1} ", - this.state.force && this.props.forceName - ? this.props.forceName.toLowerCase() - : this.props.name.toLowerCase(), - this.props.itemName.toLowerCase() - )} + {/* TODO: Here and below, this translation logic needs to be changed to whole sentences from parents */} + {t("Are you sure you want to {action} {name}", { + action: + this.state.force && this.props.forceName + ? this.props.forceName.toLowerCase() + : this.props.name.toLowerCase(), + name: this.props.itemName.toLowerCase(), + })} {this.props.selected[0].name}? )} {this.props.selected.length > 1 && ( - {t( - "Are you sure you want to {0} the selected {1}s? ({2} {1}s selected)", - this.state.force && this.props.forceName - ? this.props.forceName.toLowerCase() - : this.props.name.toLowerCase(), - this.props.itemName.toLowerCase(), - this.props.selected.length - )} + {t("Are you sure you want to {action} the selected {name}s? ({count} {name}s selected)", { + action: + this.state.force && this.props.forceName + ? this.props.forceName.toLowerCase() + : this.props.name.toLowerCase(), + name: this.props.itemName.toLowerCase(), + count: this.props.selected.length, + })} ? )} diff --git a/web/html/src/components/messages.tsx b/web/html/src/components/messages.tsx index 1322fcbad74f..29ccbcbae0cd 100644 --- a/web/html/src/components/messages.tsx +++ b/web/html/src/components/messages.tsx @@ -82,7 +82,7 @@ export class Messages extends React.Component { var msgs = items.map((item, index) => (
- {Array.isArray(item.text) ? item.text.map((txt, i) =>
{txt}
) : item.text} + {item.text}
)); diff --git a/web/html/src/components/package/PackageListActionScheduler.tsx b/web/html/src/components/package/PackageListActionScheduler.tsx index dba1ca1f3bef..3968a289eefb 100644 --- a/web/html/src/components/package/PackageListActionScheduler.tsx +++ b/web/html/src/components/package/PackageListActionScheduler.tsx @@ -79,13 +79,17 @@ export class PackageListActionScheduler extends React.Component { const msg = MessagesUtils.info( this.state.actionChain ? ( - {t( - "Action has been successfully added to the action chain '{0}'.", - {this.state.actionChain.text} - )} + {t("Action has been successfully added to the action chain '{name}'.", { + name: this.state.actionChain.text, + link: (str) => {str}, + })} ) : ( - {t("The action has been {0}.", {t("scheduled")})} + + {t("The action has been scheduled.", { + link: (str) => {str}, + })} + ) ); diff --git a/web/html/src/components/pagination.tsx b/web/html/src/components/pagination.tsx index 15537a771d17..468b9be8c6f1 100644 --- a/web/html/src/components/pagination.tsx +++ b/web/html/src/components/pagination.tsx @@ -90,28 +90,31 @@ const PageSelector = (props: PageSelectorProps) => { if (props.lastPage > 1) { return (
- {t("Page")} -   - -   - {t("of")} -   - {props.lastPage} + {t("Page of {total}", { + dropdown: () => ( + + ), + total: props.lastPage, + })}
); } else { - return
{t("Page {0} of {1}", props.currentValue, props.lastPage)}
; + return ( +
+ {t("Page {current} of {total}", { current: props.currentValue, total: props.lastPage })} +
+ ); } }; diff --git a/web/html/src/components/salt-state-popup.tsx b/web/html/src/components/salt-state-popup.tsx index 54820162a83a..8e3d8e47c196 100644 --- a/web/html/src/components/salt-state-popup.tsx +++ b/web/html/src/components/salt-state-popup.tsx @@ -47,7 +47,7 @@ class SaltStatePopup extends React.Component { title = this.props.saltState && ( {icon} - {t("Configuration Channel: {0}", this.props.saltState.name)} + {t("Configuration Channel: {name}", { name: this.props.saltState.name })} ); diff --git a/web/html/src/components/states-picker.tsx b/web/html/src/components/states-picker.tsx index 2f5313703ca8..e1f0c9e5c1da 100644 --- a/web/html/src/components/states-picker.tsx +++ b/web/html/src/components/states-picker.tsx @@ -381,10 +381,9 @@ class StatesPicker extends React.Component @@ -399,12 +398,11 @@ class StatesPicker extends React.Component {this.state.rank ? (
-

{t("Edit {0} Ranks", this.props.type === "state" ? t("State") : t("Channel"))}

+

{this.props.type === "state" ? t("Edit State Ranks") : t("Edit Channel Ranks")}

- {t( - "Edit the ranking of the {0} by dragging them.", - this.props.type === "state" ? t("states") : t("configuration channels") - )} + {this.props.type === "state" + ? t("Edit the ranking of the states by dragging them.") + : t("Edit the ranking of the configuration channels by dragging them.")}

- {t("Items {0} - {1} of {2}", props.fromItem, props.toItem, props.itemCount)}   + + {t("Items {from} - {to} of {total}", { from: props.fromItem, to: props.toItem, total: props.itemCount })} +    + {props.selectable && props.selectedCount > 0 && ( - {t("({0} selected)", props.selectedCount)}  + {t("({selectedCount} selected)", { selectedCount: props.selectedCount })}  diff --git a/web/html/src/components/table/SelectSearchField.tsx b/web/html/src/components/table/SelectSearchField.tsx new file mode 100644 index 000000000000..5d8b31c1306c --- /dev/null +++ b/web/html/src/components/table/SelectSearchField.tsx @@ -0,0 +1,31 @@ +import { useState } from "react"; + +import { Select } from "components/input"; + +const ALL_OPTION = { value: "ALL", label: t("All") }; + +export const SelectSearchField = ({ label, criteria, options, onSearch }) => { + const [searchValue, setSearchValue] = useState(criteria || ""); + + const handleSearchValueChange = (value) => { + setSearchValue(value); + onSearch?.(value === ALL_OPTION.value ? "" : value); + }; + + const allOptions = [ALL_OPTION].concat(options); + + // Avoid invalid value selected when changing field. + if (!allOptions.some((it) => it.value === searchValue)) { + handleSearchValueChange(ALL_OPTION.value); + } + + return ( + onSearch?.(e.target.value)} + name={name} + /> +
+ ); +}; + +export const TableFilter = (props) => { + // Dummy model and onChange to reuse the Select component as it requires a Form + const model = {}; + const onChange = () => {}; + + const [selectedFilter, setSelectedFilter] = useState(props.field || ""); + const handleChangeFilter = (value) => { + setSelectedFilter(value); + props.onSearchField?.(value); + }; + + return ( +
+
+ handleActionTypeChange(value)} - /> - ); -}; diff --git a/web/html/src/manager/recurring/search/recurring-actions-search-target-type-filter.tsx b/web/html/src/manager/recurring/search/recurring-actions-search-target-type-filter.tsx deleted file mode 100644 index 79b288066a4a..000000000000 --- a/web/html/src/manager/recurring/search/recurring-actions-search-target-type-filter.tsx +++ /dev/null @@ -1,24 +0,0 @@ -import { useState } from "react"; - -import { Select } from "components/input"; - -import { ALL_OPTION, TARGET_TYPE_OPTIONS } from "./recurring-actions-search-utils"; - -export const TargetTypeFilter = (props) => { - const [targetType, setTargetType] = useState(ALL_OPTION.value); - - const handleTargetTypeChange = (value) => { - setTargetType(value); - props.onSearch?.(value === ALL_OPTION.value ? "" : value); - }; - - return ( - props.onSearch?.(e.target.value)} - name={props.name} - /> -
- ); -}; +import { SEARCH_FIELD_OPTIONS } from "./recurring-actions-search-utils"; export const RecurringActionsSearch = (props) => { - // Dummy model and onChange to reuse the Select component as it requires a Form - let model = {}; - const onChange = () => {}; - - const [filterValue, setFilterValue] = useState(""); - const handleChangeSearchField = (value) => { - setFilterValue(value); - props.onSearchField?.(value); - }; - - return ( - -
-